fix test cases for CNAME search list bugfix
[adns] / src / query.c
CommitLineData
98db6da3 1/*
2 * query.c
3 * - overall query management (allocation, completion)
4 * - per-query memory management
5 * - query submission and cancellation (user-visible and internal)
6 */
7/*
a79ac5ba 8 * This file is
89435c42 9 * Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk>
a79ac5ba 10 *
11 * It is part of adns, which is
89435c42 12 * Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk>
c6826df6 13 * Copyright (C) 1999-2000 Tony Finch <dot@dotat.at>
98db6da3 14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2, or (at your option)
18 * any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software Foundation,
27 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28 */
d05cc330 29
48cb0b4b 30#include "internal.h"
6f17710a 31
98db6da3 32#include <stdlib.h>
33#include <unistd.h>
34#include <errno.h>
6f17710a 35
98db6da3 36#include <sys/time.h>
6f17710a 37
98db6da3 38#include "internal.h"
96e79df5 39
7e6a84a1 40static adns_query query_alloc(adns_state ads, const typeinfo *typei,
41 adns_queryflags flags, struct timeval now) {
42 /* Allocate a virgin query and return it. */
98db6da3 43 adns_query qu;
7e6a84a1 44
45 qu= malloc(sizeof(*qu)); if (!qu) return 0;
46 qu->answer= malloc(sizeof(*qu->answer)); if (!qu->answer) { free(qu); return 0; }
47
11c8bf9b 48 qu->ads= ads;
24d52b13 49 qu->state= query_tosend;
98db6da3 50 qu->back= qu->next= qu->parent= 0;
51 LIST_INIT(qu->children);
7e6a84a1 52 LINK_INIT(qu->siblings);
bc01473e 53 LIST_INIT(qu->allocations);
98db6da3 54 qu->interim_allocd= 0;
1be24aef 55 qu->preserved_allocd= 0;
11c8bf9b 56 qu->final_allocspace= 0;
98db6da3 57
11c8bf9b 58 qu->typei= typei;
7e6a84a1 59 qu->query_dgram= 0;
60 qu->query_dglen= 0;
98db6da3 61 adns__vbuf_init(&qu->vb);
62
63 qu->cname_dgram= 0;
64 qu->cname_dglen= qu->cname_begin= 0;
7e6a84a1 65
66 adns__vbuf_init(&qu->search_vb);
67 qu->search_origlen= qu->search_pos= qu->search_doneabs= 0;
68
8744cce8 69 qu->id= -2; /* will be overwritten with real id before we leave adns */
98db6da3 70 qu->flags= flags;
d0a057ac 71 qu->retries= 0;
98db6da3 72 qu->udpnextserver= 0;
d0a057ac 73 qu->udpsent= 0;
98db6da3 74 timerclear(&qu->timeout);
2c7b101b 75 qu->expires= now.tv_sec + MAXTTLBELIEVE;
98db6da3 76
7e6a84a1 77 memset(&qu->ctx,0,sizeof(qu->ctx));
78
98db6da3 79 qu->answer->status= adns_s_ok;
b2988d3e 80 qu->answer->cname= qu->answer->owner= 0;
11c8bf9b 81 qu->answer->type= typei->type;
7e6a84a1 82 qu->answer->expires= -1;
98db6da3 83 qu->answer->nrrs= 0;
763d28b9 84 qu->answer->rrs.untyped= 0;
11c8bf9b 85 qu->answer->rrsz= typei->rrsz;
96e79df5 86
7e6a84a1 87 return qu;
88}
89
90static void query_submit(adns_state ads, adns_query qu,
91 const typeinfo *typei, vbuf *qumsg_vb, int id,
92 adns_queryflags flags, struct timeval now) {
93 /* Fills in the query message in for a previously-allocated query,
fc86e61f 94 * and submits it. Cannot fail. Takes over the memory for qumsg_vb.
7e6a84a1 95 */
96
98db6da3 97 qu->vb= *qumsg_vb;
98 adns__vbuf_init(qumsg_vb);
7e6a84a1 99
100 qu->query_dgram= malloc(qu->vb.used);
101 if (!qu->query_dgram) { adns__query_fail(qu,adns_s_nomemory); return; }
102
103 qu->id= id;
104 qu->query_dglen= qu->vb.used;
105 memcpy(qu->query_dgram,qu->vb.buf,qu->vb.used);
98db6da3 106
24d52b13 107 adns__query_send(qu,now);
7e6a84a1 108}
109
110adns_status adns__internal_submit(adns_state ads, adns_query *query_r,
111 const typeinfo *typei, vbuf *qumsg_vb, int id,
112 adns_queryflags flags, struct timeval now,
113 const qcontext *ctx) {
114 adns_query qu;
115
116 qu= query_alloc(ads,typei,flags,now);
117 if (!qu) { adns__vbuf_free(qumsg_vb); return adns_s_nomemory; }
118 *query_r= qu;
98db6da3 119
7e6a84a1 120 memcpy(&qu->ctx,ctx,sizeof(qu->ctx));
121 query_submit(ads,qu, typei,qumsg_vb,id,flags,now);
122
11c8bf9b 123 return adns_s_ok;
7e6a84a1 124}
125
126static void query_simple(adns_state ads, adns_query qu,
127 const char *owner, int ol,
128 const typeinfo *typei, adns_queryflags flags,
129 struct timeval now) {
a880d9ba 130 vbuf vb_new;
7e6a84a1 131 int id;
132 adns_status stat;
98db6da3 133
a880d9ba 134 stat= adns__mkquery(ads,&qu->vb,&id, owner,ol, typei,flags);
135 if (stat) {
136 if (stat == adns_s_querydomaintoolong && (flags & adns_qf_search)) {
137 adns__search_next(ads,qu,now);
138 return;
139 } else {
140 adns__query_fail(qu,stat);
141 return;
142 }
143 }
144
145 vb_new= qu->vb;
146 adns__vbuf_init(&qu->vb);
147 query_submit(ads,qu, typei,&vb_new,id, flags,now);
7e6a84a1 148}
149
150void adns__search_next(adns_state ads, adns_query qu, struct timeval now) {
151 const char *nextentry;
152 adns_status stat;
153
154 if (qu->search_doneabs<0) {
155 nextentry= 0;
156 qu->search_doneabs= 1;
157 } else {
158 if (qu->search_pos >= ads->nsearchlist) {
159 if (qu->search_doneabs) {
85021e18 160 qu->search_vb.used= qu->search_origlen;
7e6a84a1 161 stat= adns_s_nxdomain; goto x_fail;
7e6a84a1 162 } else {
163 nextentry= 0;
164 qu->search_doneabs= 1;
165 }
166 } else {
167 nextentry= ads->searchlist[qu->search_pos++];
168 }
169 }
170
a5da6822 171 qu->search_vb.used= qu->search_origlen;
7e6a84a1 172 if (nextentry) {
173 if (!adns__vbuf_append(&qu->search_vb,".",1) ||
85021e18 174 !adns__vbuf_appendstr(&qu->search_vb,nextentry))
175 goto x_nomemory;
7e6a84a1 176 }
177
178 free(qu->query_dgram);
179 qu->query_dgram= 0; qu->query_dglen= 0;
180
181 query_simple(ads,qu, qu->search_vb.buf, qu->search_vb.used, qu->typei, qu->flags, now);
182 return;
85021e18 183
184x_nomemory:
185 stat= adns_s_nomemory;
7e6a84a1 186x_fail:
187 adns__query_fail(qu,stat);
48cb0b4b 188}
189
b2988d3e 190static int save_owner(adns_query qu, const char *owner, int ol) {
191 /* Returns 1 if OK, otherwise there was no memory. */
192 adns_answer *ans;
193
85021e18 194 if (!(qu->flags & adns_qf_owner)) return 1;
195
b2988d3e 196 ans= qu->answer;
197 assert(!ans->owner);
198
1be24aef 199 ans->owner= adns__alloc_preserved(qu,ol+1); if (!ans->owner) return 0;
b2988d3e 200
201 memcpy(ans->owner,owner,ol);
202 ans->owner[ol]= 0;
203 return 1;
204}
205
98db6da3 206int adns_submit(adns_state ads,
207 const char *owner,
208 adns_rrtype type,
edb95764 209 adns_queryflags flags,
98db6da3 210 void *context,
211 adns_query *query_r) {
7e6a84a1 212 int r, ol, ndots;
11c8bf9b 213 adns_status stat;
214 const typeinfo *typei;
215 struct timeval now;
7e6a84a1 216 adns_query qu;
217 const char *p;
98db6da3 218
2ac463bf 219 adns__consistency(ads,0,cc_entex);
1389dc72 220
11c8bf9b 221 typei= adns__findtype(type);
125de2a9 222 if (!typei) return ENOSYS;
98db6da3 223
7e6a84a1 224 r= gettimeofday(&now,0); if (r) goto x_errno;
225 qu= query_alloc(ads,typei,flags,now); if (!qu) goto x_errno;
226
227 qu->ctx.ext= context;
228 qu->ctx.callback= 0;
229 memset(&qu->ctx.info,0,sizeof(qu->ctx.info));
98db6da3 230
a5da6822 231 *query_r= qu;
232
98db6da3 233 ol= strlen(owner);
7e6a84a1 234 if (!ol) { stat= adns_s_querydomaininvalid; goto x_adnsfail; }
235 if (ol>DNS_MAXDOMAIN+1) { stat= adns_s_querydomaintoolong; goto x_adnsfail; }
98db6da3 236
7683abe2 237 if (ol>=1 && owner[ol-1]=='.' && (ol<2 || owner[ol-2]!='\\')) {
238 flags &= ~adns_qf_search;
30c317a4 239 qu->flags= flags;
7683abe2 240 ol--;
241 }
98db6da3 242
7e6a84a1 243 if (flags & adns_qf_search) {
244 r= adns__vbuf_append(&qu->search_vb,owner,ol);
245 if (!r) { stat= adns_s_nomemory; goto x_adnsfail; }
246
247 for (ndots=0, p=owner; (p= strchr(p,'.')); p++, ndots++);
248 qu->search_doneabs= (ndots >= ads->searchndots) ? -1 : 0;
7e6a84a1 249 qu->search_origlen= ol;
7e6a84a1 250 adns__search_next(ads,qu,now);
a5da6822 251 } else {
b2988d3e 252 if (flags & adns_qf_owner) {
253 if (!save_owner(qu,owner,ol)) { stat= adns_s_nomemory; goto x_adnsfail; }
254 }
a5da6822 255 query_simple(ads,qu, owner,ol, typei,flags, now);
7e6a84a1 256 }
ab898cf4 257 adns__autosys(ads,now);
2ac463bf 258 adns__consistency(ads,qu,cc_entex);
7e6a84a1 259 return 0;
260
261 x_adnsfail:
262 adns__query_fail(qu,stat);
2ac463bf 263 adns__consistency(ads,qu,cc_entex);
7e6a84a1 264 return 0;
265
266 x_errno:
267 r= errno;
268 assert(r);
2ac463bf 269 adns__consistency(ads,0,cc_entex);
7e6a84a1 270 return r;
96e79df5 271}
272
d2f6d877 273int adns_submit_reverse_any(adns_state ads,
274 const struct sockaddr *addr,
275 const char *zone,
276 adns_rrtype type,
277 adns_queryflags flags,
278 void *context,
279 adns_query *query_r) {
5e6342f0 280 const unsigned char *iaddr;
d2f6d877 281 char *buf, *buf_free;
282 char shortbuf[100];
283 int r, lreq;
5e6342f0 284
5e6342f0 285 flags &= ~adns_qf_search;
286
287 if (addr->sa_family != AF_INET) return ENOSYS;
288 iaddr= (const unsigned char*) &(((const struct sockaddr_in*)addr) -> sin_addr);
289
d2f6d877 290 lreq= strlen(zone) + 4*4 + 1;
291 if (lreq > sizeof(shortbuf)) {
292 buf= malloc(strlen(zone) + 4*4 + 1);
293 if (!buf) return errno;
294 buf_free= buf;
295 } else {
296 buf= shortbuf;
297 buf_free= 0;
298 }
299 sprintf(buf, "%d.%d.%d.%d.%s", iaddr[3], iaddr[2], iaddr[1], iaddr[0], zone);
5e6342f0 300
d2f6d877 301 r= adns_submit(ads,buf,type,flags,context,query_r);
302 free(buf_free);
303 return r;
304}
305
306int adns_submit_reverse(adns_state ads,
307 const struct sockaddr *addr,
308 adns_rrtype type,
309 adns_queryflags flags,
310 void *context,
311 adns_query *query_r) {
312 if (type != adns_r_ptr && type != adns_r_ptr_raw) return EINVAL;
313 return adns_submit_reverse_any(ads,addr,"in-addr.arpa",type,flags,context,query_r);
5e6342f0 314}
315
98db6da3 316int adns_synchronous(adns_state ads,
317 const char *owner,
318 adns_rrtype type,
edb95764 319 adns_queryflags flags,
98db6da3 320 adns_answer **answer_r) {
321 adns_query qu;
322 int r;
323
324 r= adns_submit(ads,owner,type,flags,0,&qu);
325 if (r) return r;
48cb0b4b 326
f318f883 327 r= adns_wait(ads,&qu,answer_r,0);
11c8bf9b 328 if (r) adns_cancel(qu);
96e79df5 329
f318f883 330 return r;
98db6da3 331}
332
c9afe7bb 333static void *alloc_common(adns_query qu, size_t sz) {
98db6da3 334 allocnode *an;
335
f47cdeec 336 if (!sz) return qu; /* Any old pointer will do */
98db6da3 337 assert(!qu->final_allocspace);
98db6da3 338 an= malloc(MEM_ROUND(MEM_ROUND(sizeof(*an)) + sz));
f2ad23ee 339 if (!an) return 0;
bc01473e 340 LIST_LINK_TAIL(qu->allocations,an);
98db6da3 341 return (byte*)an + MEM_ROUND(sizeof(*an));
342}
48cb0b4b 343
c9afe7bb 344void *adns__alloc_interim(adns_query qu, size_t sz) {
1be24aef 345 void *rv;
346
c9afe7bb 347 sz= MEM_ROUND(sz);
1be24aef 348 rv= alloc_common(qu,sz);
349 if (!rv) return 0;
c9afe7bb 350 qu->interim_allocd += sz;
1be24aef 351 return rv;
352}
353
354void *adns__alloc_preserved(adns_query qu, size_t sz) {
355 void *rv;
356
357 sz= MEM_ROUND(sz);
358 rv= adns__alloc_interim(qu,sz);
359 if (!rv) return 0;
360 qu->preserved_allocd += sz;
361 return rv;
c9afe7bb 362}
363
364void *adns__alloc_mine(adns_query qu, size_t sz) {
365 return alloc_common(qu,MEM_ROUND(sz));
366}
367
bc01473e 368void adns__transfer_interim(adns_query from, adns_query to, void *block, size_t sz) {
369 allocnode *an;
370
371 if (!block) return;
372 an= (void*)((byte*)block - MEM_ROUND(sizeof(*an)));
373
374 assert(!to->final_allocspace);
375 assert(!from->final_allocspace);
376
377 LIST_UNLINK(from->allocations,an);
378 LIST_LINK_TAIL(to->allocations,an);
379
647d5ec1 380 sz= MEM_ROUND(sz);
bc01473e 381 from->interim_allocd -= sz;
382 to->interim_allocd += sz;
2c7b101b 383
384 if (to->expires > from->expires) to->expires= from->expires;
bc01473e 385}
386
98db6da3 387void *adns__alloc_final(adns_query qu, size_t sz) {
388 /* When we're in the _final stage, we _subtract_ from interim_alloc'd
389 * each allocation, and use final_allocspace to point to the next free
390 * bit.
391 */
392 void *rp;
393
394 sz= MEM_ROUND(sz);
395 rp= qu->final_allocspace;
396 assert(rp);
397 qu->interim_allocd -= sz;
398 assert(qu->interim_allocd>=0);
399 qu->final_allocspace= (byte*)rp + sz;
400 return rp;
401}
402
61093792 403static void cancel_children(adns_query qu) {
404 adns_query cqu, ncqu;
405
406 for (cqu= qu->children.head; cqu; cqu= ncqu) {
407 ncqu= cqu->siblings.next;
408 adns_cancel(cqu);
409 }
61093792 410}
411
1be24aef 412void adns__reset_preserved(adns_query qu) {
9a2b67d4 413 assert(!qu->final_allocspace);
61093792 414 cancel_children(qu);
98db6da3 415 qu->answer->nrrs= 0;
763d28b9 416 qu->answer->rrs.untyped= 0;
1be24aef 417 qu->interim_allocd= qu->preserved_allocd;
d05cc330 418}
419
f318f883 420static void free_query_allocs(adns_query qu) {
421 allocnode *an, *ann;
f318f883 422
61093792 423 cancel_children(qu);
bc01473e 424 for (an= qu->allocations.head; an; an= ann) { ann= an->next; free(an); }
9f1041a6 425 LIST_INIT(qu->allocations);
f318f883 426 adns__vbuf_free(&qu->vb);
fc86e61f 427 adns__vbuf_free(&qu->search_vb);
b8d9a971 428 free(qu->query_dgram);
d94fa362 429 qu->query_dgram= 0;
f318f883 430}
431
26eb6bdc 432void adns_cancel(adns_query qu) {
1389dc72 433 adns_state ads;
434
435 ads= qu->ads;
2ac463bf 436 adns__consistency(ads,qu,cc_entex);
0b772fb9 437 if (qu->parent) LIST_UNLINK_PART(qu->parent->children,qu,siblings.);
f318f883 438 switch (qu->state) {
d0a057ac 439 case query_tosend:
440 LIST_UNLINK(ads->udpw,qu);
f318f883 441 break;
d0a057ac 442 case query_tcpw:
443 LIST_UNLINK(ads->tcpw,qu);
444 break;
445 case query_childw:
1389dc72 446 LIST_UNLINK(ads->childw,qu);
f318f883 447 break;
448 case query_done:
1389dc72 449 LIST_UNLINK(ads->output,qu);
f318f883 450 break;
451 default:
452 abort();
453 }
454 free_query_allocs(qu);
455 free(qu->answer);
456 free(qu);
2ac463bf 457 adns__consistency(ads,0,cc_entex);
f318f883 458}
bc01473e 459
2c7b101b 460void adns__update_expires(adns_query qu, unsigned long ttl, struct timeval now) {
461 time_t max;
462
463 assert(ttl <= MAXTTLBELIEVE);
464 max= now.tv_sec + ttl;
465 if (qu->expires < max) return;
466 qu->expires= max;
467}
468
bc01473e 469static void makefinal_query(adns_query qu) {
5c596e4d 470 adns_answer *ans;
f318f883 471 int rrn;
965c9782 472
f318f883 473 ans= qu->answer;
bc01473e 474
f318f883 475 if (qu->interim_allocd) {
f318f883 476 ans= realloc(qu->answer, MEM_ROUND(MEM_ROUND(sizeof(*ans)) + qu->interim_allocd));
bc01473e 477 if (!ans) goto x_nomem;
f2ad23ee 478 qu->answer= ans;
479 }
965c9782 480
f318f883 481 qu->final_allocspace= (byte*)ans + MEM_ROUND(sizeof(*ans));
965c9782 482 adns__makefinal_str(qu,&ans->cname);
b2988d3e 483 adns__makefinal_str(qu,&ans->owner);
f318f883 484
965c9782 485 if (ans->nrrs) {
f318f883 486 adns__makefinal_block(qu, &ans->rrs.untyped, ans->nrrs*ans->rrsz);
965c9782 487
f318f883 488 for (rrn=0; rrn<ans->nrrs; rrn++)
489 qu->typei->makefinal(qu, ans->rrs.bytes + rrn*ans->rrsz);
f318f883 490 }
2c7b101b 491
f318f883 492 free_query_allocs(qu);
bc01473e 493 return;
965c9782 494
bc01473e 495 x_nomem:
1be24aef 496 qu->preserved_allocd= 0;
bc01473e 497 qu->answer->cname= 0;
1be24aef 498 qu->answer->owner= 0;
499 adns__reset_preserved(qu); /* (but we just threw away the preserved stuff) */
500
501 qu->answer->status= adns_s_nomemory;
bc01473e 502 free_query_allocs(qu);
503}
504
505void adns__query_done(adns_query qu) {
506 adns_answer *ans;
507 adns_query parent;
508
cb32030b 509 cancel_children(qu);
510
d05cc330 511 qu->id= -1;
bc01473e 512 ans= qu->answer;
513
85021e18 514 if (qu->flags & adns_qf_search && ans->status != adns_s_nomemory) {
b2988d3e 515 if (!save_owner(qu, qu->search_vb.buf, qu->search_vb.used)) {
516 adns__query_fail(qu,adns_s_nomemory);
517 return;
518 }
519 }
520
bc01473e 521 if (ans->nrrs && qu->typei->diff_needswap) {
522 if (!adns__vbuf_ensure(&qu->vb,qu->typei->rrsz)) {
9b86645c 523 adns__query_fail(qu,adns_s_nomemory);
bc01473e 524 return;
525 }
526 adns__isort(ans->rrs.bytes, ans->nrrs, ans->rrsz,
8c3aa944 527 qu->vb.buf,
528 (int(*)(void*, const void*, const void*))qu->typei->diff_needswap,
529 qu->ads);
bc01473e 530 }
a095483e 531
2c7b101b 532 ans->expires= qu->expires;
bc01473e 533 parent= qu->parent;
534 if (parent) {
535 LIST_UNLINK_PART(parent->children,qu,siblings.);
cb32030b 536 LIST_UNLINK(qu->ads->childw,parent);
cd1bde2f 537 qu->ctx.callback(parent,qu);
bc01473e 538 free_query_allocs(qu);
b8d9a971 539 free(qu->answer);
bc01473e 540 free(qu);
bc01473e 541 } else {
542 makefinal_query(qu);
543 LIST_LINK_TAIL(qu->ads->output,qu);
0b772fb9 544 qu->state= query_done;
bc01473e 545 }
6f17710a 546}
547
11c8bf9b 548void adns__query_fail(adns_query qu, adns_status stat) {
1be24aef 549 adns__reset_preserved(qu);
965c9782 550 qu->answer->status= stat;
11c8bf9b 551 adns__query_done(qu);
6f17710a 552}
98db6da3 553
554void adns__makefinal_str(adns_query qu, char **strp) {
555 int l;
556 char *before, *after;
557
558 before= *strp;
9a2b67d4 559 if (!before) return;
98db6da3 560 l= strlen(before)+1;
561 after= adns__alloc_final(qu,l);
562 memcpy(after,before,l);
563 *strp= after;
564}
565
11c8bf9b 566void adns__makefinal_block(adns_query qu, void **blpp, size_t sz) {
9a2b67d4 567 void *before, *after;
98db6da3 568
9a2b67d4 569 before= *blpp;
570 if (!before) return;
98db6da3 571 after= adns__alloc_final(qu,sz);
9a2b67d4 572 memcpy(after,before,sz);
98db6da3 573 *blpp= after;
574}