Reentrancy: Avoid reentrant callbacks
[adns] / src / internal.h
1 /*
2 * internal.h
3 * - declarations of private objects with external linkage (adns__*)
4 * - definitons of internal macros
5 * - comments regarding library data structures
6 */
7 /*
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.)
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 */
28
29 #ifndef ADNS_INTERNAL_H_INCLUDED
30 #define ADNS_INTERNAL_H_INCLUDED
31
32 #include "config.h"
33 typedef unsigned char byte;
34
35 #include <stdarg.h>
36 #include <assert.h>
37 #include <unistd.h>
38 #include <signal.h>
39 #include <errno.h>
40 #include <string.h>
41 #include <stdlib.h>
42
43 #include <sys/time.h>
44
45 #include "adns.h"
46 #include "dlist.h"
47
48 #ifdef ADNS_REGRESS_TEST
49 # include "hredirect.h"
50 #endif
51
52 /* Configuration and constants */
53
54 #define MAXSERVERS 5
55 #define MAXSORTLIST 15
56 #define UDPMAXRETRIES 15
57 #define UDPRETRYMS 2000
58 #define TCPWAITMS 30000
59 #define TCPCONNMS 14000
60 #define TCPIDLEMS 30000
61 #define MAXTTLBELIEVE (7*86400) /* any TTL > 7 days is capped */
62
63 #define DNS_PORT 53
64 #define DNS_MAXUDP 512
65 #define DNS_MAXLABEL 63
66 #define DNS_MAXDOMAIN 255
67 #define DNS_HDRSIZE 12
68 #define DNS_IDOFFSET 0
69 #define DNS_CLASS_IN 1
70
71 #define DNS_INADDR_ARPA "in-addr", "arpa"
72 #define DNS_IP6_ARPA "ip6", "arpa"
73
74 #define MAX_POLLFDS ADNS_POLLFDS_RECOMMENDED
75
76 /* Some preprocessor hackery */
77
78 #define GLUE(x, y) GLUE_(x, y)
79 #define GLUE_(x, y) x##y
80
81 /* C99 macro `...' must match at least one argument, so the naive definition
82 * `#define CAR(car, ...) car' won't work. But it's easy to arrange for the
83 * tail to be nonempty if we're just going to discard it anyway. */
84 #define CAR(...) CAR_(__VA_ARGS__, _)
85 #define CAR_(car, ...) car
86
87 /* Extracting the tail of an argument list is rather more difficult. The
88 * following trick is based on one by Laurent Deniau to count the number of
89 * arguments to a macro, simplified in two ways: (a) it only handles up to
90 * eight arguments, and (b) it only needs to distinguish the one-argument
91 * case from many arguments. */
92 #define CDR(...) CDR_(__VA_ARGS__, m, m, m, m, m, m, m, 1, _)(__VA_ARGS__)
93 #define CDR_(_1, _2, _3, _4, _5, _6, _7, _8, n, ...) CDR_##n
94 #define CDR_1(_)
95 #define CDR_m(_, ...) __VA_ARGS__
96
97 typedef enum {
98 cc_user,
99 cc_entex,
100 cc_freq
101 } consistency_checks;
102
103 typedef enum {
104 rcode_noerror,
105 rcode_formaterror,
106 rcode_servfail,
107 rcode_nxdomain,
108 rcode_notimp,
109 rcode_refused
110 } dns_rcode;
111
112 /* Shared data structures */
113
114 typedef struct {
115 int used, avail;
116 byte *buf;
117 } vbuf;
118
119 typedef struct {
120 adns_state ads;
121 adns_query qu;
122 int serv;
123 const byte *dgram;
124 int dglen, nsstart, nscount, arcount;
125 struct timeval now;
126 } parseinfo;
127
128 union gen_addr {
129 struct in_addr v4;
130 struct in6_addr v6;
131 };
132
133 struct af_addr { int af; union gen_addr addr; };
134
135 #define NREVDOMAINS 2 /* keep in sync with addrfam! */
136 struct revparse_state {
137 unsigned map; /* which domains are still live */
138 byte ipv[NREVDOMAINS][32]; /* address components so far */
139 };
140
141 union checklabel_state {
142 struct revparse_state ptr;
143 };
144
145 typedef struct {
146 void *ext;
147 void (*callback)(adns_query parent, adns_query child);
148
149 union {
150 struct {
151 adns_rrtype rev_rrtype;
152 struct af_addr addr;
153 } ptr;
154 } tinfo; /* type-specific state for the query itself: zero-init if you
155 * don't know better. */
156
157 union {
158 adns_rr_hostaddr *hostaddr;
159 } pinfo; /* state for use by parent's callback function */
160 } qcontext;
161
162 typedef struct typeinfo {
163 adns_rrtype typekey;
164 const char *rrtname;
165 const char *fmtname;
166 int fixed_rrsz;
167
168 void (*makefinal)(adns_query qu, void *data);
169 /* Change memory management of *data.
170 * Previously, used alloc_interim, now use alloc_final.
171 */
172
173 adns_status (*convstring)(vbuf *vb, const void *data);
174 /* Converts the RR data to a string representation in vbuf.
175 * vbuf will be appended to (it must have been initialised),
176 * and will not be null-terminated by convstring.
177 */
178
179 adns_status (*parse)(const parseinfo *pai, int cbyte,
180 int max, void *store_r);
181 /* Parse one RR, in dgram of length dglen, starting at cbyte and
182 * extending until at most max.
183 *
184 * The RR should be stored at *store_r, of length qu->typei->getrrsz().
185 *
186 * If there is an overrun which might indicate truncation, it should set
187 * *rdstart to -1; otherwise it may set it to anything else positive.
188 *
189 * nsstart is the offset of the authority section.
190 */
191
192 int (*diff_needswap)(adns_state ads,const void *datap_a,const void *datap_b);
193 /* Returns !0 if RR a should be strictly after RR b in the sort order,
194 * 0 otherwise. Must not fail.
195 */
196
197 adns_status (*checklabel)(adns_state ads, adns_queryflags flags,
198 union checklabel_state *cls, qcontext *ctx,
199 int labnum, const char *label, int lablen);
200 /* Check a label from the query domain string. The label is not
201 * necessarily null-terminated. The hook can refuse the query's submission
202 * by returning a nonzero status. State can be stored in *cls between
203 * calls, and useful information can be stashed in ctx->tinfo, to be stored
204 * with the query (e.g., it will be available to the parse hook). This
205 * hook can detect a first call because labnum is zero, and a final call
206 * because lablen is zero.
207 */
208
209 void (*postsort)(adns_state ads, void *array, int nrrs,int rrsz,
210 const struct typeinfo *typei);
211 /* Called immediately after the RRs have been sorted, and may rearrange
212 * them. (This is really for the benefit of SRV's bizarre weighting
213 * stuff.) May be 0 to mean nothing needs to be done.
214 */
215
216 int (*getrrsz)(const struct typeinfo *typei, adns_rrtype type);
217 /* Return the output resource-record element size; if this is null, then
218 * the rrsz member can be used.
219 */
220
221 void (*query_send)(adns_query qu, struct timeval now);
222 /* Send the query to nameservers, and hook it into the appropriate queue.
223 * Normal behaviour is to call adns__query_send, but this can be overridden
224 * for special effects.
225 */
226 } typeinfo;
227
228 adns_status adns__ckl_hostname(adns_state ads, adns_queryflags flags,
229 union checklabel_state *cls,
230 qcontext *ctx, int labnum,
231 const char *label, int lablen);
232 /* implemented in query.c, used by types.c as default
233 * and as part of implementation for some fancier types
234 * doesn't require any state */
235
236 typedef struct allocnode {
237 struct allocnode *next, *back;
238 size_t sz;
239 } allocnode;
240
241 union maxalign {
242 byte d[1];
243 struct in_addr ia;
244 long l;
245 void *p;
246 void (*fp)(void);
247 union maxalign *up;
248 } data;
249
250 struct adns__query {
251 adns_state ads;
252 enum { query_tosend, query_tcpw, query_childw, query_done } state;
253 adns_query back, next, parent;
254 struct { adns_query head, tail; } children;
255 struct { adns_query back, next; } siblings;
256 struct { allocnode *head, *tail; } allocations;
257 int interim_allocd, preserved_allocd;
258 void *final_allocspace;
259
260 const typeinfo *typei;
261 byte *query_dgram;
262 int query_dglen;
263
264 vbuf vb;
265 /* General-purpose messing-about buffer.
266 * Wherever a `big' interface is crossed, this may be corrupted/changed
267 * unless otherwise specified.
268 */
269
270 adns_answer *answer;
271 /* This is allocated when a query is submitted, to avoid being unable
272 * to relate errors to queries if we run out of memory. During
273 * query processing status, rrs is 0. cname is set if
274 * we found a cname (this corresponds to cname_dgram in the query
275 * structure). type is set from the word go. nrrs and rrs
276 * are set together, when we find how many rrs there are.
277 * owner is set during querying unless we're doing searchlist,
278 * in which case it is set only when we find an answer.
279 */
280
281 byte *cname_dgram;
282 int cname_dglen, cname_begin;
283 /* If non-0, has been allocated using . */
284
285 vbuf search_vb;
286 int search_origlen, search_pos, search_doneabs;
287 /* Used by the searching algorithm. The query domain in textual form
288 * is copied into the vbuf, and _origlen set to its length. Then
289 * we walk the searchlist, if we want to. _pos says where we are
290 * (next entry to try), and _doneabs says whether we've done the
291 * absolute query yet (0=not yet, 1=done, -1=must do straight away,
292 * but not done yet). If flags doesn't have adns_qf_search then
293 * the vbuf is initialised but empty and everything else is zero.
294 */
295
296 int id, flags, retries;
297 int udpnextserver;
298 unsigned long udpsent; /* bitmap indexed by server */
299 struct timeval timeout;
300 time_t expires; /* Earliest expiry time of any record we used. */
301
302 qcontext ctx;
303
304 /* Possible states:
305 *
306 * state Queue child id nextudpserver udpsent tcpfailed
307 *
308 * tosend NONE null >=0 0 zero zero
309 * tosend udpw null >=0 any nonzero zero
310 * tosend NONE null >=0 any nonzero zero
311 *
312 * tcpw tcpw null >=0 irrelevant any any
313 *
314 * child childw set >=0 irrelevant irrelevant irrelevant
315 * child NONE null >=0 irrelevant irrelevant irrelevant
316 * done output null -1 irrelevant irrelevant irrelevant
317 *
318 * Queries are only not on a queue when they are actually being processed.
319 * Queries in state tcpw/tcpw have been sent (or are in the to-send buffer)
320 * iff the tcp connection is in state server_ok.
321 *
322 * Internal queries (from adns__submit_internal) end up on intdone
323 * instead of output, and the callbacks are made on the way out of
324 * adns, to avoid reentrancy hazards.
325 *
326 * +------------------------+
327 * START -----> | tosend/NONE |
328 * +------------------------+
329 * / |\ \
330 * too big for UDP / UDP timeout \ \ send via UDP
331 * send via TCP / more retries \ \
332 * when conn'd / desired \ \
333 * | | |
334 * v | v
335 * +-----------+ +-------------+
336 * | tcpw/tcpw | ________ | tosend/udpw |
337 * +-----------+ \ +-------------+
338 * | | | UDP timeout | |
339 * | | | no more | |
340 * | | | retries | |
341 * \ | TCP died | desired | |
342 * \ \ no more | | |
343 * \ \ servers | TCP / |
344 * \ \ to try | timeout / |
345 * got \ \ v |_ | got
346 * reply \ _| +------------------+ / reply
347 * \ | done/output FAIL | /
348 * \ +------------------+ /
349 * \ /
350 * _| |_
351 * (..... got reply ....)
352 * / \
353 * need child query/ies / \ no child query
354 * / \
355 * |_ _|
356 * +---------------+ +----------------+
357 * | childw/childw | ----------------> | done/output OK |
358 * +---------------+ children done +----------------+
359 */
360 };
361
362 struct query_queue { adns_query head, tail; };
363
364 #define MAXUDP 2
365
366 struct adns__state {
367 adns_initflags iflags;
368 adns_logcallbackfn *logfn;
369 void *logfndata;
370 int configerrno;
371 struct query_queue udpw, tcpw, childw, output, intdone;
372 adns_query forallnext;
373 int nextid, tcpsocket;
374 struct udpsocket { int af; int fd; } udpsocket[MAXUDP];
375 int nudp;
376 vbuf tcpsend, tcprecv;
377 int nservers, nsortlist, nsearchlist, searchndots, tcpserver, tcprecv_skip;
378 enum adns__tcpstate {
379 server_disconnected, server_connecting,
380 server_ok, server_broken
381 } tcpstate;
382 struct timeval tcptimeout;
383 /* This will have tv_sec==0 if it is not valid. It will always be
384 * valid if tcpstate _connecting. When _ok, it will be nonzero if
385 * we are idle (ie, tcpw queue is empty), in which case it is the
386 * absolute time when we will close the connection.
387 */
388 struct sigaction stdsigpipe;
389 sigset_t stdsigmask;
390 struct pollfd pollfds_buf[MAX_POLLFDS];
391 adns_rr_addr servers[MAXSERVERS];
392 struct sortlist {
393 int af;
394 union gen_addr base, mask;
395 } sortlist[MAXSORTLIST];
396 char **searchlist;
397 unsigned short rand48xsubi[3];
398 };
399
400 /* From addrfam.c: */
401
402 extern int adns__af_supported_p(int af);
403 /* Return nonzero if the address family af known to the library and supported
404 * by the other addrfam operations. Note that the other operations will
405 * abort on an unrecognized address family rather than returning an error
406 * code.
407 */
408
409 extern int adns__genaddr_equal_p(int af, const union gen_addr *a,
410 int bf, const void *b);
411 /* b should point to a `struct in_addr' or equivalent for the address family
412 * bf. Returns nonzero if the two addresses are equal.
413 */
414
415 extern int adns__sockaddr_equal_p(const struct sockaddr *sa,
416 const struct sockaddr *sb);
417 /* Return nonzero if the two socket addresses are equal (in all significant
418 * respects).
419 */
420
421 extern int adns__addr_width(int af);
422 /* Return the width of addresses of family af, in bits. */
423
424 extern void adns__prefix_mask(int af, int len, union gen_addr *mask_r);
425 /* Store in mask_r an address mask for address family af, whose first len
426 * bits are set and the remainder are clear. This is what you want for
427 * converting a prefix length into a netmask.
428 */
429
430 extern int adns__guess_prefix_length(int af, const union gen_addr *addr);
431 /* Given a network base address, guess the appropriate prefix length based on
432 * the appropriate rules for the address family (e.g., for IPv4, this uses
433 * the old address classes).
434 */
435
436 extern int adns__addr_match_p(int addraf, const union gen_addr *addr,
437 int netaf, const union gen_addr *base,
438 const union gen_addr *mask);
439 /* Given an address af (with family addraf) and a network (with family netaf,
440 * base address base, and netmask mask), return nonzero if the address lies
441 * within the network.
442 */
443
444 extern void adns__sockaddr_extract(const struct sockaddr *sa,
445 union gen_addr *a_r, int *port_r);
446 /* Extract fields from the socket address, filling in *a_r and *port_r with
447 * the address and (integer, host byte-order) port number, respectively.
448 * Either (or, pointlessly, both) of a_r and port_r may be null to mean
449 * `don't care'.
450 */
451
452 extern void adns__sockaddr_inject(const union gen_addr *a, int port,
453 struct sockaddr *sa);
454 /* Inject fields into the socket adress sa. If a is not null, copy the
455 * address in; if port is not -1, then copy the port (converting from host
456 * byte-order). Assumes that sa->sa_family is already set correctly.
457 */
458
459 char *adns__sockaddr_ntoa(const struct sockaddr *sa, char *buf);
460 /* Convert sa to a string, and write it to buf, which must be at least
461 * ADNS_ADDR2TEXT_BUFLEN bytes long (unchecked). Return buf; can't fail.
462 */
463
464 extern int adns__make_reverse_domain(const struct sockaddr *sa,
465 const char *zone,
466 char **buf_io, size_t bufsz,
467 char **buf_free_r);
468 /* Construct a reverse domain string, given a socket address and a parent
469 * zone. If zone is null, then use the standard reverse-lookup zone for the
470 * address family. If the length of the resulting string is no larger than
471 * bufsz, then the result is stored starting at *buf_io; otherwise a new
472 * buffer is allocated is used, and a pointer to it is stored in both *buf_io
473 * and *buf_free_r (the latter of which should be null on entry). If
474 * something goes wrong, then an errno value is returned: ENOSYS if the
475 * address family of sa isn't recognized, or ENOMEM if the attempt to
476 * allocate an output buffer failed.
477 */
478
479 extern int adns__revparse_label(struct revparse_state *rps, int labnum,
480 const char *label, int lablen);
481 /* Parse a label in a reverse-domain name, given its index labnum (starting
482 * from zero), a pointer to its contents (which need not be null-terminated),
483 * and its length. The state in *rps is initialized implicitly when labnum
484 * is zero.
485 *
486 * Returns zero if the parse was successful, nonzero if the domain name is
487 * definitely invalid and the parse must be abandoned.
488 */
489
490 extern int adns__revparse_done(struct revparse_state *rps, int nlabels,
491 adns_rrtype *rrtype_r, struct af_addr *addr_r);
492 /* Finishes parsing a reverse-domain name, given the total number of labels
493 * in the name. On success, fills in the address in *addr_r, and the forward
494 * query type in *rrtype_r (because that turns out to be useful). Returns
495 * nonzero if the parse must be abandoned.
496 */
497
498 /* From setup.c: */
499
500 int adns__setnonblock(adns_state ads, int fd); /* => errno value */
501
502 /* From general.c: */
503
504 void adns__vlprintf(adns_state ads, const char *fmt, va_list al);
505 void adns__lprintf(adns_state ads, const char *fmt,
506 ...) PRINTFFORMAT(2,3);
507
508 void adns__vdiag(adns_state ads, const char *pfx, adns_initflags prevent,
509 int serv, adns_query qu, const char *fmt, va_list al);
510
511 void adns__debug(adns_state ads, int serv, adns_query qu,
512 const char *fmt, ...) PRINTFFORMAT(4,5);
513 void adns__warn(adns_state ads, int serv, adns_query qu,
514 const char *fmt, ...) PRINTFFORMAT(4,5);
515 void adns__diag(adns_state ads, int serv, adns_query qu,
516 const char *fmt, ...) PRINTFFORMAT(4,5);
517
518 int adns__vbuf_ensure(vbuf *vb, int want);
519 int adns__vbuf_appendstr(vbuf *vb, const char *data); /* doesn't include nul */
520 int adns__vbuf_append(vbuf *vb, const byte *data, int len);
521 /* 1=>success, 0=>realloc failed */
522 void adns__vbuf_appendq(vbuf *vb, const byte *data, int len);
523 void adns__vbuf_init(vbuf *vb);
524 void adns__vbuf_free(vbuf *vb);
525
526 const char *adns__diag_domain(adns_state ads, int serv, adns_query qu,
527 vbuf *vb,
528 const byte *dgram, int dglen, int cbyte);
529 /* Unpicks a domain in a datagram and returns a string suitable for
530 * printing it as. Never fails - if an error occurs, it will
531 * return some kind of string describing the error.
532 *
533 * serv may be -1 and qu may be 0. vb must have been initialised,
534 * and will be left in an arbitrary consistent state.
535 *
536 * Returns either vb->buf, or a pointer to a string literal. Do not modify
537 * vb before using the return value.
538 */
539
540 int adns__getrrsz_default(const typeinfo *typei, adns_rrtype type);
541 /* Default function for the `getrrsz' type hook; returns the `fixed_rrsz'
542 * value from the typeinfo entry.
543 */
544
545 void adns__isort(void *array, int nobjs, int sz, void *tempbuf,
546 int (*needswap)(void *context, const void *a, const void *b),
547 void *context);
548 /* Does an insertion sort of array which must contain nobjs objects
549 * each sz bytes long. tempbuf must point to a buffer at least
550 * sz bytes long. needswap should return !0 if a>b (strictly, ie
551 * wrong order) 0 if a<=b (ie, order is fine).
552 */
553
554 void adns__sigpipe_protect(adns_state);
555 void adns__sigpipe_unprotect(adns_state);
556 /* If SIGPIPE protection is not disabled, will block all signals except
557 * SIGPIPE, and set SIGPIPE's disposition to SIG_IGN. (And then restore.)
558 * Each call to _protect must be followed by a call to _unprotect before
559 * any significant amount of code gets to run, since the old signal mask
560 * is stored in the adns structure.
561 */
562
563 /* From transmit.c: */
564
565 adns_status adns__mkquery(adns_state ads, vbuf *vb, int *id_r,
566 const char *owner, int ol,
567 const typeinfo *typei, adns_rrtype type,
568 adns_queryflags flags);
569 /* Assembles a query packet in vb. A new id is allocated and returned.
570 */
571
572 adns_status adns__mkquery_frdgram(adns_state ads, vbuf *vb, int *id_r,
573 const byte *qd_dgram, int qd_dglen,
574 int qd_begin,
575 adns_rrtype type, adns_queryflags flags);
576 /* Same as adns__mkquery, but takes the owner domain from an existing datagram.
577 * That domain must be correct and untruncated.
578 */
579
580 void adns__querysend_tcp(adns_query qu, struct timeval now);
581 /* Query must be in state tcpw/tcpw; it will be sent if possible and
582 * no further processing can be done on it for now. The connection
583 * might be broken, but no reconnect will be attempted.
584 */
585
586 struct udpsocket *adns__udpsocket_by_af(adns_state ads, int af);
587 /* Find the UDP socket structure in ads which has the given address family.
588 * Return null if there isn't one.
589 *
590 * This is used during initialization, so ads is only partially filled in.
591 * The requirements are that nudp is set, and that udpsocket[i].af are
592 * defined for 0<=i<nudp.
593 */
594
595 void adns__query_send(adns_query qu, struct timeval now);
596 /* Query must be in state tosend/NONE; it will be moved to a new state,
597 * and no further processing can be done on it for now.
598 * (Resulting state is one of udp/timew, tcpwait/timew (if server not
599 * connected), tcpsent/timew, child/childw or done/output.)
600 * __query_send may decide to use either UDP or TCP depending whether
601 * _qf_usevc is set (or has become set) and whether the query is too
602 * large.
603 */
604
605 /* From query.c: */
606
607 adns_status adns__internal_submit(adns_state ads, adns_query *query_r,
608 adns_query parent,
609 const typeinfo *typei, adns_rrtype type,
610 vbuf *qumsg_vb, int id,
611 adns_queryflags flags, struct timeval now,
612 qcontext *ctx);
613 /* Submits a query (for internal use, called during external submits).
614 *
615 * The new query is returned in *query_r, or we return adns_s_nomemory.
616 *
617 * The query datagram should already have been assembled in qumsg_vb;
618 * the memory for it is _taken over_ by this routine whether it
619 * succeeds or fails (if it succeeds, the vbuf is reused for qu->vb).
620 *
621 * *ctx is copied byte-for-byte into the query. Before doing this, its tinfo
622 * field may be modified by type hooks.
623 *
624 * When the child query is done, ctx->callback will be called. The
625 * child will already have been taken off both the global list of
626 * queries in ads and the list of children in the parent. The child
627 * will be freed when the callback returns. The parent will have been
628 * taken off the global childw queue.
629 *
630 * The callback should either call adns__query_done, if it is
631 * complete, or adns__query_fail, if an error has occurred, in which
632 * case the other children (if any) will be cancelled. If the parent
633 * has more unfinished children (or has just submitted more) then the
634 * callback may choose to wait for them - it must then put the parent
635 * back on the childw queue.
636 */
637
638 void adns__search_next(adns_state ads, adns_query qu, struct timeval now);
639 /* Walks down the searchlist for a query with adns_qf_search.
640 * The query should have just had a negative response, or not had
641 * any queries sent yet, and should not be on any queue.
642 * The query_dgram if any will be freed and forgotten and a new
643 * one constructed from the search_* members of the query.
644 *
645 * Cannot fail (in case of error, calls adns__query_fail).
646 */
647
648 void *adns__alloc_interim(adns_query qu, size_t sz);
649 void *adns__alloc_preserved(adns_query qu, size_t sz);
650 /* Allocates some memory, and records which query it came from
651 * and how much there was.
652 *
653 * If an error occurs in the query, all the memory from _interim is
654 * simply freed. If the query succeeds, one large buffer will be made
655 * which is big enough for all these allocations, and then
656 * adns__alloc_final will get memory from this buffer.
657 *
658 * _alloc_interim can fail (and return 0).
659 * The caller must ensure that the query is failed.
660 *
661 * The memory from _preserved is is kept and transferred into the
662 * larger buffer - unless we run out of memory, in which case it too
663 * is freed. When you use _preserved you have to add code to the
664 * x_nomem error exit case in adns__makefinal_query to clear out the
665 * pointers you made to those allocations, because that's when they're
666 * thrown away; you should also make a note in the declaration of
667 * those pointer variables, to note that they are _preserved rather
668 * than _interim. If they're in the answer, note it here:
669 * answer->cname and answer->owner are _preserved.
670 */
671
672 void adns__transfer_interim(adns_query from, adns_query to, void *block);
673 /* Transfers an interim allocation from one query to another, so that
674 * the `to' query will have room for the data when we get to makefinal
675 * and so that the free will happen when the `to' query is freed
676 * rather than the `from' query.
677 *
678 * It is legal to call adns__transfer_interim with a null pointer; this
679 * has no effect.
680 *
681 * _transfer_interim also ensures that the expiry time of the `to' query
682 * is no later than that of the `from' query, so that child queries'
683 * TTLs get inherited by their parents.
684 */
685
686 void adns__free_interim(adns_query qu, void *p);
687 /* Forget about a block allocated by adns__alloc_interim.
688 */
689
690 void *adns__alloc_mine(adns_query qu, size_t sz);
691 /* Like _interim, but does not record the length for later
692 * copying into the answer. This just ensures that the memory
693 * will be freed when we're done with the query.
694 */
695
696 void *adns__alloc_final(adns_query qu, size_t sz);
697 /* Cannot fail, and cannot return 0.
698 */
699
700 void adns__makefinal_block(adns_query qu, void **blpp, size_t sz);
701 void adns__makefinal_str(adns_query qu, char **strp);
702
703 void adns__reset_preserved(adns_query qu);
704 /* Resets all of the memory management stuff etc. to take account of
705 * only the _preserved stuff from _alloc_preserved. Used when we find
706 * an error somewhere and want to just report the error (with perhaps
707 * CNAME, owner, etc. info), and also when we're halfway through RRs
708 * in a datagram and discover that we need to retry the query.
709 */
710
711 void adns__cancel(adns_query qu);
712 void adns__query_done(adns_query qu);
713 void adns__query_fail(adns_query qu, adns_status stat);
714 void adns__cancel_children(adns_query qu);
715
716 void adns__returning(adns_state ads, adns_query qu);
717 /* Must be called before returning from adns any time that we have
718 * progressed (including made, finished or destroyed) queries.
719 *
720 * Might reenter adns via internal query callbacks, so
721 * external-faciing functions which call adns__returning should
722 * normally be avoided in internal code. */
723
724 /* From reply.c: */
725
726 void adns__procdgram(adns_state ads, const byte *dgram, int len,
727 int serv, int viatcp, struct timeval now);
728 /* This function is allowed to cause new datagrams to be constructed
729 * and sent, or even new queries to be started. However,
730 * query-sending functions are not allowed to call any general event
731 * loop functions in case they accidentally call this.
732 *
733 * Ie, receiving functions may call sending functions.
734 * Sending functions may NOT call receiving functions.
735 */
736
737 /* From types.c: */
738
739 const typeinfo *adns__findtype(adns_rrtype type);
740
741 /* From parse.c: */
742
743 typedef struct {
744 adns_state ads;
745 adns_query qu;
746 int serv;
747 const byte *dgram;
748 int dglen, max, cbyte, namelen;
749 int *dmend_r;
750 } findlabel_state;
751
752 void adns__findlabel_start(findlabel_state *fls, adns_state ads,
753 int serv, adns_query qu,
754 const byte *dgram, int dglen, int max,
755 int dmbegin, int *dmend_rlater);
756 /* Finds labels in a domain in a datagram.
757 *
758 * Call this routine first.
759 * dmend_rlater may be null. ads (and of course fls) may not be.
760 * serv may be -1, qu may be null - they are for error reporting.
761 */
762
763 adns_status adns__findlabel_next(findlabel_state *fls,
764 int *lablen_r, int *labstart_r);
765 /* Then, call this one repeatedly.
766 *
767 * It will return adns_s_ok if all is well, and tell you the length
768 * and start of successive labels. labstart_r may be null, but
769 * lablen_r must not be.
770 *
771 * After the last label, it will return with *lablen_r zero.
772 * Do not then call it again; instead, just throw away the findlabel_state.
773 *
774 * *dmend_rlater will have been set to point to the next part of
775 * the datagram after the label (or after the uncompressed part,
776 * if compression was used). *namelen_rlater will have been set
777 * to the length of the domain name (total length of labels plus
778 * 1 for each intervening dot).
779 *
780 * If the datagram appears to be truncated, *lablen_r will be -1.
781 * *dmend_rlater, *labstart_r and *namelen_r may contain garbage.
782 * Do not call _next again.
783 *
784 * There may also be errors, in which case *dmend_rlater,
785 * *namelen_rlater, *lablen_r and *labstart_r may contain garbage.
786 * Do not then call findlabel_next again.
787 */
788
789 typedef enum {
790 pdf_quoteok= 0x001
791 } parsedomain_flags;
792
793 adns_status adns__parse_domain(adns_state ads, int serv, adns_query qu,
794 vbuf *vb, parsedomain_flags flags,
795 const byte *dgram, int dglen, int *cbyte_io,
796 int max);
797 /* vb must already have been initialised; it will be reset if necessary.
798 * If there is truncation, vb->used will be set to 0; otherwise
799 * (if there is no error) vb will be null-terminated.
800 * If there is an error vb and *cbyte_io may be left indeterminate.
801 *
802 * serv may be -1 and qu may be 0 - they are used for error reporting only.
803 */
804
805 adns_status adns__parse_domain_more(findlabel_state *fls, adns_state ads,
806 adns_query qu, vbuf *vb,
807 parsedomain_flags flags,
808 const byte *dgram);
809 /* Like adns__parse_domain, but you pass it a pre-initialised findlabel_state,
810 * for continuing an existing domain or some such of some kind. Also, unlike
811 * _parse_domain, the domain data will be appended to vb, rather than replacing
812 * the existing contents.
813 */
814
815 adns_status adns__findrr(adns_query qu, int serv,
816 const byte *dgram, int dglen, int *cbyte_io,
817 int *type_r, int *class_r, unsigned long *ttl_r,
818 int *rdlen_r, int *rdstart_r,
819 int *ownermatchedquery_r);
820 /* Finds the extent and some of the contents of an RR in a datagram
821 * and does some checks. The datagram is *dgram, length dglen, and
822 * the RR starts at *cbyte_io (which is updated afterwards to point
823 * to the end of the RR).
824 *
825 * The type, class, TTL and RRdata length and start are returned iff
826 * the corresponding pointer variables are not null. type_r, class_r
827 * and ttl_r may not be null. The TTL will be capped.
828 *
829 * If ownermatchedquery_r != 0 then the owner domain of this
830 * RR will be compared with that in the query (or, if the query
831 * has gone to a CNAME lookup, with the canonical name).
832 * In this case, *ownermatchedquery_r will be set to 0 or 1.
833 * The query datagram (or CNAME datagram) MUST be valid and not truncated.
834 *
835 * If there is truncation then *type_r will be set to -1 and
836 * *cbyte_io, *class_r, *rdlen_r, *rdstart_r and *eo_matched_r will be
837 * undefined.
838 *
839 * qu must obviously be non-null.
840 *
841 * If an error is returned then *type_r will be undefined too.
842 */
843
844 adns_status adns__findrr_anychk(adns_query qu, int serv,
845 const byte *dgram, int dglen, int *cbyte_io,
846 int *type_r, int *class_r,
847 unsigned long *ttl_r,
848 int *rdlen_r, int *rdstart_r,
849 const byte *eo_dgram, int eo_dglen,
850 int eo_cbyte, int *eo_matched_r);
851 /* Like adns__findrr_checked, except that the datagram and
852 * owner to compare with can be specified explicitly.
853 *
854 * If the caller thinks they know what the owner of the RR ought to
855 * be they can pass in details in eo_*: this is another (or perhaps
856 * the same datagram), and a pointer to where the putative owner
857 * starts in that datagram. In this case *eo_matched_r will be set
858 * to 1 if the datagram matched or 0 if it did not. Either
859 * both eo_dgram and eo_matched_r must both be non-null, or they
860 * must both be null (in which case eo_dglen and eo_cbyte will be ignored).
861 * The eo datagram and contained owner domain MUST be valid and
862 * untruncated.
863 */
864
865 void adns__update_expires(adns_query qu, unsigned long ttl,
866 struct timeval now);
867 /* Updates the `expires' field in the query, so that it doesn't exceed
868 * now + ttl.
869 */
870
871 int vbuf__append_quoted1035(vbuf *vb, const byte *buf, int len);
872
873 /* From event.c: */
874
875 void adns__tcp_broken(adns_state ads, const char *what, const char *why);
876 /* what and why may be both 0, or both non-0. */
877
878 void adns__tcp_tryconnect(adns_state ads, struct timeval now);
879
880 void adns__autosys(adns_state ads, struct timeval now);
881 /* Make all the system calls we want to if the application wants us to.
882 * Must not be called from within adns internal processing functions,
883 * lest we end up in recursive descent !
884 */
885
886 void adns__must_gettimeofday(adns_state ads, const struct timeval **now_io,
887 struct timeval *tv_buf);
888 /* Call with care - might reentrantly cause queries to be completed! */
889
890 int adns__pollfds(adns_state ads, struct pollfd pollfds_buf[MAX_POLLFDS]);
891 void adns__fdevents(adns_state ads,
892 const struct pollfd *pollfds, int npollfds,
893 int maxfd, const fd_set *readfds,
894 const fd_set *writefds, const fd_set *exceptfds,
895 struct timeval now, int *r_r);
896 int adns__internal_check(adns_state ads,
897 adns_query *query_io,
898 adns_answer **answer,
899 void **context_r);
900
901 void adns__timeouts(adns_state ads, int act,
902 struct timeval **tv_io, struct timeval *tvbuf,
903 struct timeval now);
904 /* If act is !0, then this will also deal with the TCP connection
905 * if previous events broke it or require it to be connected.
906 */
907
908 /* From check.c: */
909
910 void adns__consistency(adns_state ads, adns_query qu, consistency_checks cc);
911
912 /* Useful static inline functions: */
913
914 static inline int ctype_whitespace(int c) {
915 return c==' ' || c=='\n' || c=='\t';
916 }
917 static inline int ctype_digit(int c) { return c>='0' && c<='9'; }
918 static inline int ctype_alpha(int c) {
919 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z');
920 }
921 static inline int ctype_822special(int c) {
922 return strchr("()<>@,;:\\\".[]",c) != 0;
923 }
924 static inline int ctype_domainunquoted(int c) {
925 return ctype_alpha(c) || ctype_digit(c) || (strchr("-_/+",c) != 0);
926 }
927
928 static inline int errno_resources(int e) { return e==ENOMEM || e==ENOBUFS; }
929
930 /* Useful macros */
931
932 #define MEM_ROUND(sz) \
933 (( ((sz)+sizeof(union maxalign)-1) / sizeof(union maxalign) ) \
934 * sizeof(union maxalign) )
935
936 #define GETIL_B(cb) (((dgram)[(cb)++]) & 0x0ff)
937 #define GET_B(cb,tv) ((tv)= GETIL_B((cb)))
938 #define GET_W(cb,tv) ((tv)=0,(tv)|=(GETIL_B((cb))<<8), (tv)|=GETIL_B(cb), (tv))
939 #define GET_L(cb,tv) ( (tv)=0, \
940 (tv)|=(GETIL_B((cb))<<24), \
941 (tv)|=(GETIL_B((cb))<<16), \
942 (tv)|=(GETIL_B((cb))<<8), \
943 (tv)|=GETIL_B(cb), \
944 (tv) )
945
946 #endif