3 * - overall query management (allocation, completion)
4 * - per-query memory management
5 * - query submission and cancellation (user-visible and internal)
9 * Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
11 * It is part of adns, which is
12 * Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
13 * Copyright (C) 1999 Tony Finch <dot@dotat.at>
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)
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.
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.
40 static 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. */
45 qu= malloc(sizeof(*qu)); if (!qu) return 0;
46 qu->answer= malloc(sizeof(*qu->answer)); if (!qu->answer) { free(qu); return 0; }
49 qu->state= query_tosend;
50 qu->back= qu->next= qu->parent= 0;
51 LIST_INIT(qu->children);
52 LINK_INIT(qu->siblings);
53 LIST_INIT(qu->allocations);
54 qu->interim_allocd= 0;
55 qu->preserved_allocd= 0;
56 qu->final_allocspace= 0;
61 adns__vbuf_init(&qu->vb);
64 qu->cname_dglen= qu->cname_begin= 0;
66 adns__vbuf_init(&qu->search_vb);
67 qu->search_origlen= qu->search_pos= qu->search_doneabs= 0;
74 timerclear(&qu->timeout);
75 qu->expires= now.tv_sec + MAXTTLBELIEVE;
77 memset(&qu->ctx,0,sizeof(qu->ctx));
79 qu->answer->status= adns_s_ok;
80 qu->answer->cname= qu->answer->owner= 0;
81 qu->answer->type= typei->type;
82 qu->answer->expires= -1;
84 qu->answer->rrs.untyped= 0;
85 qu->answer->rrsz= typei->rrsz;
90 static 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,
94 * and submits it. Cannot fail. Takes over the memory for qumsg_vb.
98 adns__vbuf_init(qumsg_vb);
100 qu->query_dgram= malloc(qu->vb.used);
101 if (!qu->query_dgram) { adns__query_fail(qu,adns_s_nomemory); return; }
104 qu->query_dglen= qu->vb.used;
105 memcpy(qu->query_dgram,qu->vb.buf,qu->vb.used);
107 adns__query_send(qu,now);
110 adns_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) {
116 qu= query_alloc(ads,typei,flags,now);
117 if (!qu) { adns__vbuf_free(qumsg_vb); return adns_s_nomemory; }
120 memcpy(&qu->ctx,ctx,sizeof(qu->ctx));
121 query_submit(ads,qu, typei,qumsg_vb,id,flags,now);
126 static 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) {
134 stat= adns__mkquery(ads,&qu->vb,&id, owner,ol, typei,flags);
136 if (stat == adns_s_querydomaintoolong && (flags & adns_qf_search)) {
137 adns__search_next(ads,qu,now);
140 adns__query_fail(qu,stat);
146 adns__vbuf_init(&qu->vb);
147 query_submit(ads,qu, typei,&vb_new,id, flags,now);
150 void adns__search_next(adns_state ads, adns_query qu, struct timeval now) {
151 const char *nextentry;
154 if (qu->search_doneabs<0) {
156 qu->search_doneabs= 1;
158 if (qu->search_pos >= ads->nsearchlist) {
159 if (qu->search_doneabs) {
160 stat= adns_s_nxdomain; goto x_fail;
164 qu->search_doneabs= 1;
167 nextentry= ads->searchlist[qu->search_pos++];
171 qu->search_vb.used= qu->search_origlen;
173 if (!adns__vbuf_append(&qu->search_vb,".",1) ||
174 !adns__vbuf_appendstr(&qu->search_vb,nextentry)) {
175 stat= adns_s_nomemory; goto x_fail;
179 free(qu->query_dgram);
180 qu->query_dgram= 0; qu->query_dglen= 0;
182 query_simple(ads,qu, qu->search_vb.buf, qu->search_vb.used, qu->typei, qu->flags, now);
186 adns__query_fail(qu,stat);
189 static int save_owner(adns_query qu, const char *owner, int ol) {
190 /* Returns 1 if OK, otherwise there was no memory. */
196 ans->owner= adns__alloc_preserved(qu,ol+1); if (!ans->owner) return 0;
198 memcpy(ans->owner,owner,ol);
203 int adns_submit(adns_state ads,
206 adns_queryflags flags,
208 adns_query *query_r) {
211 const typeinfo *typei;
216 adns__consistency(ads,0,cc_entex);
218 typei= adns__findtype(type);
219 if (!typei) return ENOSYS;
221 r= gettimeofday(&now,0); if (r) goto x_errno;
222 qu= query_alloc(ads,typei,flags,now); if (!qu) goto x_errno;
224 qu->ctx.ext= context;
226 memset(&qu->ctx.info,0,sizeof(qu->ctx.info));
231 if (!ol) { stat= adns_s_querydomaininvalid; goto x_adnsfail; }
232 if (ol>DNS_MAXDOMAIN+1) { stat= adns_s_querydomaintoolong; goto x_adnsfail; }
234 if (ol>=1 && owner[ol-1]=='.' && (ol<2 || owner[ol-2]!='\\')) {
235 flags &= ~adns_qf_search;
240 if (flags & adns_qf_search) {
241 r= adns__vbuf_append(&qu->search_vb,owner,ol);
242 if (!r) { stat= adns_s_nomemory; goto x_adnsfail; }
244 for (ndots=0, p=owner; (p= strchr(p,'.')); p++, ndots++);
245 qu->search_doneabs= (ndots >= ads->searchndots) ? -1 : 0;
246 qu->search_origlen= ol;
247 adns__search_next(ads,qu,now);
249 if (flags & adns_qf_owner) {
250 if (!save_owner(qu,owner,ol)) { stat= adns_s_nomemory; goto x_adnsfail; }
252 query_simple(ads,qu, owner,ol, typei,flags, now);
254 adns__autosys(ads,now);
255 adns__consistency(ads,qu,cc_entex);
259 adns__query_fail(qu,stat);
260 adns__consistency(ads,qu,cc_entex);
266 adns__consistency(ads,0,cc_entex);
270 int adns_submit_reverse_any(adns_state ads,
271 const struct sockaddr *addr,
274 adns_queryflags flags,
276 adns_query *query_r) {
277 const unsigned char *iaddr;
278 char *buf, *buf_free;
282 flags &= ~adns_qf_search;
284 if (addr->sa_family != AF_INET) return ENOSYS;
285 iaddr= (const unsigned char*) &(((const struct sockaddr_in*)addr) -> sin_addr);
287 lreq= strlen(zone) + 4*4 + 1;
288 if (lreq > sizeof(shortbuf)) {
289 buf= malloc(strlen(zone) + 4*4 + 1);
290 if (!buf) return errno;
296 sprintf(buf, "%d.%d.%d.%d.%s", iaddr[3], iaddr[2], iaddr[1], iaddr[0], zone);
298 r= adns_submit(ads,buf,type,flags,context,query_r);
303 int adns_submit_reverse(adns_state ads,
304 const struct sockaddr *addr,
306 adns_queryflags flags,
308 adns_query *query_r) {
309 if (type != adns_r_ptr && type != adns_r_ptr_raw) return EINVAL;
310 return adns_submit_reverse_any(ads,addr,"in-addr.arpa",type,flags,context,query_r);
313 int adns_synchronous(adns_state ads,
316 adns_queryflags flags,
317 adns_answer **answer_r) {
321 r= adns_submit(ads,owner,type,flags,0,&qu);
324 r= adns_wait(ads,&qu,answer_r,0);
325 if (r) adns_cancel(qu);
330 static void *alloc_common(adns_query qu, size_t sz) {
333 if (!sz) return qu; /* Any old pointer will do */
334 assert(!qu->final_allocspace);
335 an= malloc(MEM_ROUND(MEM_ROUND(sizeof(*an)) + sz));
337 LIST_LINK_TAIL(qu->allocations,an);
338 return (byte*)an + MEM_ROUND(sizeof(*an));
341 void *adns__alloc_interim(adns_query qu, size_t sz) {
345 rv= alloc_common(qu,sz);
347 qu->interim_allocd += sz;
351 void *adns__alloc_preserved(adns_query qu, size_t sz) {
355 rv= adns__alloc_interim(qu,sz);
357 qu->preserved_allocd += sz;
361 void *adns__alloc_mine(adns_query qu, size_t sz) {
362 return alloc_common(qu,MEM_ROUND(sz));
365 void adns__transfer_interim(adns_query from, adns_query to, void *block, size_t sz) {
369 an= (void*)((byte*)block - MEM_ROUND(sizeof(*an)));
371 assert(!to->final_allocspace);
372 assert(!from->final_allocspace);
374 LIST_UNLINK(from->allocations,an);
375 LIST_LINK_TAIL(to->allocations,an);
377 from->interim_allocd -= sz;
378 to->interim_allocd += sz;
380 if (to->expires > from->expires) to->expires= from->expires;
383 void *adns__alloc_final(adns_query qu, size_t sz) {
384 /* When we're in the _final stage, we _subtract_ from interim_alloc'd
385 * each allocation, and use final_allocspace to point to the next free
391 rp= qu->final_allocspace;
393 qu->interim_allocd -= sz;
394 assert(qu->interim_allocd>=0);
395 qu->final_allocspace= (byte*)rp + sz;
399 static void cancel_children(adns_query qu) {
400 adns_query cqu, ncqu;
402 for (cqu= qu->children.head; cqu; cqu= ncqu) {
403 ncqu= cqu->siblings.next;
408 void adns__reset_preserved(adns_query qu) {
409 assert(!qu->final_allocspace);
412 qu->answer->rrs.untyped= 0;
413 qu->interim_allocd= qu->preserved_allocd;
416 static void free_query_allocs(adns_query qu) {
420 for (an= qu->allocations.head; an; an= ann) { ann= an->next; free(an); }
421 LIST_INIT(qu->allocations);
422 adns__vbuf_free(&qu->vb);
423 adns__vbuf_free(&qu->search_vb);
424 free(qu->query_dgram);
427 void adns_cancel(adns_query qu) {
431 adns__consistency(ads,qu,cc_entex);
432 if (qu->parent) LIST_UNLINK_PART(qu->parent->children,qu,siblings.);
435 LIST_UNLINK(ads->udpw,qu);
438 LIST_UNLINK(ads->tcpw,qu);
441 LIST_UNLINK(ads->childw,qu);
444 LIST_UNLINK(ads->output,qu);
449 free_query_allocs(qu);
452 adns__consistency(ads,0,cc_entex);
455 void adns__update_expires(adns_query qu, unsigned long ttl, struct timeval now) {
458 assert(ttl <= MAXTTLBELIEVE);
459 max= now.tv_sec + ttl;
460 if (qu->expires < max) return;
464 static void makefinal_query(adns_query qu) {
470 if (qu->interim_allocd) {
471 ans= realloc(qu->answer, MEM_ROUND(MEM_ROUND(sizeof(*ans)) + qu->interim_allocd));
472 if (!ans) goto x_nomem;
476 qu->final_allocspace= (byte*)ans + MEM_ROUND(sizeof(*ans));
477 adns__makefinal_str(qu,&ans->cname);
478 adns__makefinal_str(qu,&ans->owner);
481 adns__makefinal_block(qu, &ans->rrs.untyped, ans->nrrs*ans->rrsz);
483 for (rrn=0; rrn<ans->nrrs; rrn++)
484 qu->typei->makefinal(qu, ans->rrs.bytes + rrn*ans->rrsz);
487 free_query_allocs(qu);
491 qu->preserved_allocd= 0;
492 qu->answer->cname= 0;
493 qu->answer->owner= 0;
494 adns__reset_preserved(qu); /* (but we just threw away the preserved stuff) */
496 qu->answer->status= adns_s_nomemory;
497 free_query_allocs(qu);
500 void adns__query_done(adns_query qu) {
504 assert(!qu->ads->bug_if_query_done_now);
510 if (qu->flags & adns_qf_owner && qu->flags & adns_qf_search &&
511 ans->status != adns_s_nomemory) {
512 if (!save_owner(qu, qu->search_vb.buf, qu->search_vb.used)) {
513 adns__query_fail(qu,adns_s_nomemory);
518 if (ans->nrrs && qu->typei->diff_needswap) {
519 if (!adns__vbuf_ensure(&qu->vb,qu->typei->rrsz)) {
520 adns__query_fail(qu,adns_s_nomemory);
523 adns__isort(ans->rrs.bytes, ans->nrrs, ans->rrsz,
525 (int(*)(void*, const void*, const void*))qu->typei->diff_needswap,
529 ans->expires= qu->expires;
532 LIST_UNLINK_PART(parent->children,qu,siblings.);
533 LIST_UNLINK(qu->ads->childw,parent);
534 qu->ctx.callback(parent,qu);
535 free_query_allocs(qu);
540 LIST_LINK_TAIL(qu->ads->output,qu);
541 qu->state= query_done;
545 void adns__query_fail(adns_query qu, adns_status stat) {
546 assert(!qu->ads->bug_if_query_done_now);
547 adns__reset_preserved(qu);
548 qu->answer->status= stat;
549 adns__query_done(qu);
552 void adns__makefinal_str(adns_query qu, char **strp) {
554 char *before, *after;
559 after= adns__alloc_final(qu,l);
560 memcpy(after,before,l);
564 void adns__makefinal_block(adns_query qu, void **blpp, size_t sz) {
565 void *before, *after;
569 after= adns__alloc_final(qu,sz);
570 memcpy(after,before,sz);