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