Newer
Older
/* Copyright (C) 2014 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
#define DEBUG_MSG(qry, fmt...) QRDEBUG(qry, "plan", fmt)
#define QUERY_PROVIDES(q, name, cls, type) \
((q)->sclass == (cls) && (q)->stype == type && knot_dname_is_equal((q)->sname, name))
/** @internal LUT of query flag names. */
const knot_lookup_t query_flag_names[] = {
#define X(flag, _) { QUERY_ ## flag, #flag },
QUERY_FLAGS(X)
#undef X
const knot_lookup_t *kr_query_flag_names(void)
{
return query_flag_names;
}
static struct kr_query *query_create(knot_mm_t *pool, const knot_dname_t *name)
{
struct kr_query *qry = mm_alloc(pool, sizeof(struct kr_query));
if (qry == NULL) {
return NULL;
}
memset(qry, 0, sizeof(struct kr_query));
if (name != NULL) {
qry->sname = knot_dname_copy(name, pool);
if (qry->sname == NULL) {
mm_free(pool, qry);
return NULL;
}
static void query_free(knot_mm_t *pool, struct kr_query *qry)
kr_zonecut_deinit(&qry->zone_cut);
mm_free(pool, qry->sname);
mm_free(pool, qry);
}
int kr_rplan_init(struct kr_rplan *rplan, struct kr_request *request, knot_mm_t *pool)
if (rplan == NULL) {
return KNOT_EINVAL;
}
rplan->request = request;
array_init(rplan->pending);
array_init(rplan->resolved);
if (rplan == NULL) {
return;
}
for (size_t i = 0; i < rplan->pending.len; ++i) {
query_free(rplan->pool, rplan->pending.at[i]);
for (size_t i = 0; i < rplan->resolved.len; ++i) {
query_free(rplan->pool, rplan->resolved.at[i]);
array_clear_mm(rplan->pending, mm_free, rplan->pool);
array_clear_mm(rplan->resolved, mm_free, rplan->pool);
}
bool kr_rplan_empty(struct kr_rplan *rplan)
{
if (rplan == NULL) {
return true;
}
static struct kr_query *kr_rplan_push_query(struct kr_rplan *rplan,
struct kr_query *parent,
const knot_dname_t *name)
if (rplan == NULL) {
return NULL;
}
/* Make sure there's enough space */
int ret = array_reserve_mm(rplan->pending, rplan->pending.len + 1, kr_memreserve, rplan->pool);
if (ret != 0) {
return NULL;
}
struct kr_query *qry = query_create(rplan->pool, name);
if (qry == NULL) {
return NULL;
}
/* Class and type must be set outside this function. */
qry->flags = rplan->request->options;
qry->parent = parent;
qry->ns.ctx = rplan->request->ctx;
qry->ns.addr[0].ip.sa_family = AF_UNSPEC;
kr_zonecut_init(&qry->zone_cut, (const uint8_t *)"", rplan->pool);
qry->reorder = qry->flags & QUERY_REORDER_RR
? knot_wire_get_id(rplan->request->answer->wire)
: 0;
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
return qry;
}
struct kr_query *kr_rplan_push_empty(struct kr_rplan *rplan, struct kr_query *parent)
{
if (rplan == NULL) {
return NULL;
}
struct kr_query *qry = kr_rplan_push_query(rplan, parent, NULL);
if (qry == NULL) {
return NULL;
}
WITH_DEBUG {
DEBUG_MSG(parent, "plan '%s' type '%s'\n", "", "");
}
return qry;
}
struct kr_query *kr_rplan_push(struct kr_rplan *rplan, struct kr_query *parent,
const knot_dname_t *name, uint16_t cls, uint16_t type)
{
if (rplan == NULL || name == NULL) {
return NULL;
}
struct kr_query *qry = kr_rplan_push_query(rplan, parent, name);
if (qry == NULL) {
return NULL;
}
qry->sclass = cls;
qry->stype = type;
WITH_DEBUG {
char name_str[KNOT_DNAME_MAXLEN], type_str[16];
knot_dname_to_str(name_str, name, sizeof(name_str));
knot_rrtype_to_string(type, type_str, sizeof(type_str));
DEBUG_MSG(parent, "plan '%s' type '%s'\n", name_str, type_str);
return qry;
}
int kr_rplan_pop(struct kr_rplan *rplan, struct kr_query *qry)
{
if (rplan == NULL || qry == NULL) {
return KNOT_EINVAL;
}
/* Make sure there's enough space */
int ret = array_reserve_mm(rplan->resolved, rplan->resolved.len + 1, kr_memreserve, rplan->pool);
if (ret != 0) {
return ret;
}
/* Find the query, it will likely be on top */
for (size_t i = rplan->pending.len; i --> 0;) {
if (rplan->pending.at[i] == qry) {
array_del(rplan->pending, i);
array_push(rplan->resolved, qry);
break;
}
}
bool kr_rplan_satisfies(struct kr_query *closure, const knot_dname_t *name, uint16_t cls, uint16_t type)
{
if (QUERY_PROVIDES(closure, name, cls, type)) {
return true;
}
closure = closure->parent;
}
return false;
}
struct kr_query *kr_rplan_resolved(struct kr_rplan *rplan)
{
return array_tail(rplan->resolved);
}
#undef DEBUG_MSG