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