Regression for poll(2).
[adns] / src / adns.h
CommitLineData
5628df75 1/*
18d49d56 2 * adns.h
3 * - adns user-visible API (single-threaded, without any locking)
4 */
5/*
a719a4be 6 * This file is part of adns, which is Copyright (C) 1997-1999 Ian Jackson
e576be50 7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software Foundation,
a719a4be 20 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 *
22 * $Id$
e576be50 23 */
a17d3a1d 24
25#ifndef ADNS_H_INCLUDED
26#define ADNS_H_INCLUDED
27
4353a5c4 28#include <stdio.h>
29
964344fc 30#include <sys/socket.h>
31#include <netinet/in.h>
32
09957b1c 33/* All struct in_addr anywhere in adns are in NETWORK byte order. */
34
964344fc 35typedef struct adns__state *adns_state;
36typedef struct adns__query *adns_query;
a17d3a1d 37
38typedef enum {
37e28fde 39 adns_if_noenv= 0x0001, /* do not look at environment */
40 adns_if_noerrprint= 0x0002, /* never print output to stderr (_debug overrides) */
41 adns_if_noserverwarn= 0x0004, /* do not warn to stderr about duff nameservers etc */
ddfda861 42 adns_if_debug= 0x0008, /* enable all output to stderr plus debug msgs */
37e28fde 43 adns_if_noautosys= 0x0010, /* do not make syscalls at every opportunity */
88372443 44 adns_if_eintr= 0x0020, /* allow _wait and _synchronous to return EINTR */
ac868fa8 45 adns_if_nosigpipe= 0x0040, /* applic has SIGPIPE set to SIG_IGN, do not protect */
a17d3a1d 46} adns_initflags;
47
48typedef enum {
828d89bd 49 adns_qf_search= 0x000001, /* use the searchlist */
50 adns_qf_usevc= 0x000002, /* use a virtual circuit (TCP connection) */
22181a31 51 adns_qf_owner= 0x000004, /* fill in the owner field in the answer */
828d89bd 52 adns_qf_quoteok_query= 0x000010, /* allow quote-requiring chars in query domain */
53 adns_qf_quoteok_cname= 0x000020, /* allow ... in CNAME we go via */
54 adns_qf_quoteok_anshost= 0x000040, /* allow ... in answers expected to be hostnames */
55 adns_qf_cname_loose= 0x000100, /* allow refs to CNAMEs - without, get _s_cname */
56 adns_qf_cname_forbid= 0x000200, /* don't follow CNAMEs, instead give _s_cname */
57 adns__qf_internalmask= 0x0ff000
a17d3a1d 58} adns_queryflags;
59
60typedef enum {
350d37d9 61 adns__rrt_typemask= 0x0ffff,
ddfda861 62 adns__qtf_deref= 0x10000, /* dereference domains and perhaps produce extra data */
63 adns__qtf_mail822= 0x20000, /* make mailboxes be in RFC822 rcpt field format */
ddfda861 64
350d37d9 65 adns_r_none= 0,
ddfda861 66
350d37d9 67 adns_r_a= 1,
ddfda861 68
350d37d9 69 adns_r_ns_raw= 2,
70 adns_r_ns= adns_r_ns_raw|adns__qtf_deref,
ddfda861 71
350d37d9 72 adns_r_cname= 5,
ddfda861 73
350d37d9 74 adns_r_soa_raw= 6,
ddfda861 75 adns_r_soa= adns_r_soa_raw|adns__qtf_mail822,
ddfda861 76
350d37d9 77 adns_r_ptr_raw= 12,
78 adns_r_ptr= adns_r_ptr_raw|adns__qtf_deref,
ddfda861 79
350d37d9 80 adns_r_hinfo= 13,
ddfda861 81
350d37d9 82 adns_r_mx_raw= 15,
83 adns_r_mx= adns_r_mx_raw|adns__qtf_deref,
ddfda861 84
350d37d9 85 adns_r_txt= 16,
ddfda861 86
350d37d9 87 adns_r_rp_raw= 17,
4353a5c4 88 adns_r_rp= adns_r_rp_raw|adns__qtf_mail822,
828d89bd 89
90 adns_r_addr= adns_r_a|adns__qtf_deref
ddfda861 91
a17d3a1d 92} adns_rrtype;
93
9da4a044 94/* In queries without qf_quoteok_*, all domains must have standard
95 * legal syntax. In queries _with_ qf_quoteok_*, domains in the query
96 * or response may contain any characters, quoted according to RFC1035
97 * 5.1. On input to adns, the char* is a pointer to the interior of a
98 * " delimited string, except that " may appear in it, and on output,
99 * the char* is a pointer to a string which would be legal either
100 * inside or outside " delimiters, and any characters not usually
101 * legal in domain names will be quoted as \X (if the character is
102 * 33-126 except \ and ") or \DDD.
964344fc 103 *
ddfda861 104 * Do not ask for _raw records containing mailboxes without
105 * specifying _qf_anyquote.
964344fc 106 */
107
a17d3a1d 108typedef enum {
109 adns_s_ok,
ea1e31e3 110
111 /* locally induced errors */
112 adns_s_nomemory,
113 adns_s_unknownrrtype,
620c146d 114 adns_s_systemfail,
115
116 adns_s_max_localfail= 29,
ea1e31e3 117
118 /* remotely induced errors, detected locally */
37e28fde 119 adns_s_timeout,
4bec51a4 120 adns_s_allservfail,
ec477b9e 121 adns_s_norecurse,
ea1e31e3 122 adns_s_invalidresponse,
123 adns_s_unknownformat,
620c146d 124
125 adns_s_max_remotefail= 59,
ea1e31e3 126
127 /* remotely induced errors, reported by remote server to us */
128 adns_s_rcodeservfail,
129 adns_s_rcodeformaterror,
130 adns_s_rcodenotimplemented,
131 adns_s_rcoderefused,
132 adns_s_rcodeunknown,
620c146d 133
b9de380c 134 adns_s_max_tempfail= 99,
ea1e31e3 135
136 /* remote configuration errors */
137 adns_s_inconsistent, /* PTR gives domain whose A does not exist and match */
138 adns_s_prohibitedcname, /* CNAME found where eg A expected (not if _qf_loosecname) */
139 adns_s_answerdomaininvalid,
140 adns_s_answerdomaintoolong,
141 adns_s_invaliddata,
142
143 adns_s_max_misconfig= 199,
144
ea1e31e3 145 /* permanent problems with the query */
146 adns_s_querydomainwrong,
147 adns_s_querydomaininvalid,
148 adns_s_querydomaintoolong,
149
150 adns_s_max_misquery= 299,
151
152 /* permanent errors */
a17d3a1d 153 adns_s_nxdomain,
0ba0614a 154 adns_s_nodata,
ea1e31e3 155
a17d3a1d 156} adns_status;
157
e8c505a5 158typedef struct {
828d89bd 159 int len;
160 union {
161 struct sockaddr sa;
162 struct sockaddr_in inet;
163 } addr;
551ff40f 164} adns_rr_addr;
828d89bd 165
166typedef struct {
1dfe95d8 167 char *host;
84fe28db 168 adns_status astatus;
169 int naddrs; /* temp fail => -1, perm fail => 0, s_ok => >0 */
551ff40f 170 adns_rr_addr *addrs;
c7836bc9 171} adns_rr_hostaddr;
4353a5c4 172
173typedef struct {
9ec44266 174 char *(array[2]);
4353a5c4 175} adns_rr_strpair;
176
177typedef struct {
178 int i;
1dfe95d8 179 adns_rr_hostaddr ha;
c7836bc9 180} adns_rr_inthostaddr;
4353a5c4 181
182typedef struct {
e062dcae 183 /* Used both for mx_raw, in which case i is the preference and str the domain,
184 * and for txt, in which case each entry has i for the `text' length,
185 * and str for the data (which will have had an extra nul appended
186 * so that if it was plain text it is now a null-terminated string).
187 */
4353a5c4 188 int i;
189 char *str;
190} adns_rr_intstr;
191
192typedef struct {
9ec44266 193 adns_rr_intstr array[2];
194} adns_rr_intstrpair;
195
196typedef struct {
197 char *mname, *rname;
4353a5c4 198 unsigned long serial, refresh, retry, expire, minimum;
199} adns_rr_soa;
84fe28db 200
201typedef struct {
a17d3a1d 202 adns_status status;
203 char *cname; /* always NULL if query was for CNAME records */
22181a31 204 char *owner; /* only set if requested in query flags */
86e7b8d9 205 adns_rrtype type; /* guaranteed to be same as in query */
73dba56e 206 time_t expires; /* expiry time, defined only if _s_ok, nxdomain or nodata. NOT TTL! */
8e5b0abb 207 int nrrs, rrsz;
a17d3a1d 208 union {
8e5b0abb 209 void *untyped;
210 unsigned char *bytes;
c7836bc9 211 char *(*str); /* ns_raw, cname, ptr, ptr_raw */
212 adns_rr_intstr *(*manyistr); /* txt (list of strings ends with i=-1, str=0) */
551ff40f 213 adns_rr_addr *addr; /* addr */
c7836bc9 214 struct in_addr *inaddr; /* a */
215 adns_rr_hostaddr *hostaddr; /* ns */
9ec44266 216 adns_rr_intstrpair *intstrpair; /* hinfo */
217 adns_rr_strpair *strpair; /* rp, rp_raw */
c7836bc9 218 adns_rr_inthostaddr *inthostaddr; /* mx */
219 adns_rr_intstr *intstr; /* mx_raw */
220 adns_rr_soa *soa; /* soa, soa_raw */
a17d3a1d 221 } rrs;
e8c505a5 222} adns_answer;
a17d3a1d 223
224/* Memory management:
225 * adns_state and adns_query are actually pointers to malloc'd state;
226 * On submission questions are copied, including the owner domain;
4353a5c4 227 * Answers are malloc'd as a single piece of memory; pointers in the
228 * answer struct point into further memory in the answer.
a17d3a1d 229 * query_io:
230 * Must always be non-null pointer;
231 * If *query_io is 0 to start with then any query may be returned;
232 * If *query_io is !0 adns_query then only that query may be returned.
d3eea642 233 * If the call is successful, *query_io, *answer_r, and *context_r
234 * will all be set.
a17d3a1d 235 * Errors:
620c146d 236 * Return values are 0 or an errno value.
237 *
238 * For _init, _init_strcfg, _submit and _synchronous, system errors
239 * (eg, failure to create sockets, malloc failure, etc.) return errno
240 * values.
241 *
242 * For _wait and _check failures are reported in the answer
243 * structure, and only 0, ESRCH or (for _check) EWOULDBLOCK is
244 * returned: if no (appropriate) requests are done adns_check returns
245 * EWOULDBLOCK; if no (appropriate) requests are outstanding both
246 * adns_query and adns_wait return ESRCH.
247 *
248 * Additionally, _wait can return EINTR if you set adns_if_eintr.
249 *
250 * All other errors (nameserver failure, timed out connections, &c)
251 * are returned in the status field of the answer. After a
252 * successful _wait or _check, if status is nonzero then nrrs will be
253 * 0, otherwise it will be >0. type will always be the type
254 * requested.
a17d3a1d 255 */
256
36369543 257int adns_init(adns_state *newstate_r, adns_initflags flags,
258 FILE *diagfile /*0=>stderr*/);
259
260int adns_init_strcfg(adns_state *newstate_r, adns_initflags flags,
261 FILE *diagfile /*0=>discard*/, const char *configtext);
a17d3a1d 262
263int adns_synchronous(adns_state ads,
264 const char *owner,
265 adns_rrtype type,
72934832 266 adns_queryflags flags,
9d95094c 267 adns_answer **answer_r);
e8c505a5 268
269/* NB: if you set adns_if_noautosys then _submit and _check do not
620c146d 270 * make any system calls; you must use some of the asynch-io event
271 * processing functions to actually get things to happen.
e8c505a5 272 */
a17d3a1d 273
274int adns_submit(adns_state ads,
275 const char *owner,
276 adns_rrtype type,
72934832 277 adns_queryflags flags,
a17d3a1d 278 void *context,
964344fc 279 adns_query *query_r);
a17d3a1d 280
964344fc 281int adns_check(adns_state ads,
a17d3a1d 282 adns_query *query_io,
9d95094c 283 adns_answer **answer_r,
284 void **context_r);
a17d3a1d 285
286int adns_wait(adns_state ads,
287 adns_query *query_io,
9d95094c 288 adns_answer **answer_r,
289 void **context_r);
a17d3a1d 290
3955725c 291void adns_cancel(adns_query query);
a17d3a1d 292
620c146d 293/* The adns_query you get back from _submit is valid (ie, can be
294 * legitimately passed into adns functions) until it is returned by
295 * adns_check or adns_wait, or passed to adns_cancel. After that it
296 * must not be used. You can rely on it not being reused until the
297 * first adns_submit or _transact call using the same adns_state after
298 * it became invalid, so you may compare it for equality with other
299 * query handles until you next call _query or _transact.
e576be50 300 */
a17d3a1d 301
620c146d 302void adns_finish(adns_state ads);
e576be50 303/* You may call this even if you have queries outstanding;
304 * they will be cancelled.
305 */
a17d3a1d 306
964344fc 307
620c146d 308struct adns_query adns_forallqueries_begin(adns_state ads, void **context_r);
309struct adns_query adns_forallqueries_next(adns_state ads, adns_query, void **context_r);
310/* Iterator functions, which you can use to loop over the outstanding
311 * (submitted but not yet successfuly checked/waited) queries. Each
312 * function returns a query handle and a corresponding context pointer,
313 * or returns 0 setting *context_r to 0 if there are no (more) queries.
314 * There is no need to explicitly finish an iteration. context_r may be 0.
a8768e80 315 *
620c146d 316 * IMPORTANT: you MUST NOT call ANY other adns function with the same
317 * adns_state, or with a query in the same adns_state, while you are
318 * doing one of these iterations. After such a call the iterator
319 * value has undefined meaning and must not be used.
964344fc 320 */
a17d3a1d 321
620c146d 322/*
323 * Example expected/legal calling sequence for submit/check/wait:
a17d3a1d 324 * adns_init
325 * adns_submit 1
326 * adns_submit 2
327 * adns_submit 3
328 * adns_wait 1
964344fc 329 * adns_check 3 -> EWOULDBLOCK
a17d3a1d 330 * adns_wait 2
331 * adns_wait 3
332 * ....
333 * adns_finish
620c146d 334 */
335
336/*
337 * Entrypoints for generic asynch io:
338 * (these entrypoints are not very useful except in combination with *
339 * some of the other I/O model calls which can tell you which fds to
340 * be interested in):
341 *
342 * Note that any adns call may cause adns to open and close fds, so
343 * you must call beforeselect or beforepoll again just before
344 * blocking, or you may not have an up-to-date list of it's fds.
345 */
346
347int adns_processany(adns_state ads);
348/* Gives adns flow-of-control for a bit. This will never block, and
349 * can be used with any threading/asynch-io model. If some error
350 * occurred which might cause an event loop to spin then the errno
351 * value is returned.
352 */
353
354int adns_processreadable(adns_state ads, int fd, const struct timeval *now);
355int adns_processwriteable(adns_state ads, int fd, const struct timeval *now);
356int adns_processexceptional(adns_state ads, int fd, const struct timeval *now);
357/* Gives adns flow-of-control so that it can process incoming data
358 * from, or send outgoing data via, fd. Very like _processany. If it
359 * returns zero then fd will no longer be readable or writeable
360 * (unless of course more data has arrived since). adns will _only_
361 * that fd and only in the manner specified, regardless of whether
362 * adns_if_noautosys was specified.
363 *
364 * adns_processexceptional should be called when select(2) reports an
365 * exceptional condition, or poll(2) reports POLLPRI.
366 *
367 * It is fine to call _processreabable or _processwriteable when the
368 * fd is not ready, or with an fd that doesn't belong to adns; it will
369 * then just return 0.
370 *
371 * If some error occurred which might prevent an event loop to spin
372 * then the errno value is returned.
373 */
374
375void adns_processtimeouts(adns_state ads, const struct timeval *now);
376/* Gives adns flow-of-control so that it can process any timeouts
377 * which might have happened. Very like _processreadable/writeable.
378 *
379 * now may be 0; if it isn't, *now must be the current time, recently
380 * obtained from gettimeofday.
381 */
382
383void adns_firsttimeout(adns_state ads,
384 struct timeval **tv_mod, struct timeval *tv_buf,
385 struct timeval now);
386/* Asks adns when it would first like the opportunity to time
387 * something out. now must be the current time, from gettimeofday.
388 *
389 * If tv_mod points to 0 then tv_buf must be non-null, and
390 * _firsttimeout will fill in *tv_buf with the time until the first
391 * timeout, and make *tv_mod point to tv_buf. If adns doesn't have
392 * anything that might need timing out it will leave *tv_mod as 0.
393 *
394 * If *tv_mod is not 0 then tv_buf is not used. adns will update
395 * *tv_mod if it has any earlier timeout, and leave it alone if it
396 * doesn't.
397 *
398 * This call will not actually do any I/O, or change the fds that adns
399 * is using. It always succeeds and never blocks.
400 */
401
402void adns_globalsystemfailure(adns_state ads);
403/* If serious problem(s) happen which globally affect your ability to
404 * interact properly with adns, or adns's ability to function
405 * properly, you or adns can call this function.
406 *
407 * All currently outstanding queries will be made to fail with
408 * adns_s_systemfail, and adns will close any stream sockets it has
409 * open.
410 *
411 * This is used by adns, for example, if gettimeofday() fails.
412 * Without this the program's event loop might start to spin !
413 *
414 * This call will never block.
415 */
416
417/*
418 * Entrypoints for select-loop based asynch io:
419 */
420
421void adns_beforeselect(adns_state ads, int *maxfd, fd_set *readfds,
422 fd_set *writefds, fd_set *exceptfds,
423 struct timeval **tv_mod, struct timeval *tv_buf,
424 const struct timeval *now);
425/* Find out file descriptors adns is interested in, and when it would
426 * like the opportunity to time something out. If you do not plan to
427 * block then tv_mod may be 0. Otherwise, tv_mod and tv_buf are as
428 * for adns_firsttimeout. readfds, writefds, exceptfds and maxfd_io may
429 * not be 0.
430 *
431 * If *now is not 0 then this will never actually do any I/O, or
432 * change the fds that adns is using or the timeouts it wants. In any
433 * case it won't block.
434 */
435
436void adns_afterselect(adns_state ads, int maxfd, const fd_set *readfds,
437 const fd_set *writefds, const fd_set *exceptfds,
438 const struct timeval *now);
439/* Gives adns flow-of-control for a bit; intended for use after
440 * select. This is just a fancy way of calling adns_processreadable/
441 * writeable/timeouts as appropriate, as if select had returned the
442 * data being passed. Always succeeds.
443 */
444
445/*
446 * Example calling sequence:
a17d3a1d 447 *
e8c505a5 448 * adns_init _noautosys
a17d3a1d 449 * loop {
620c146d 450 * adns_beforeselect
a17d3a1d 451 * select
620c146d 452 * adns_afterselect
e8c505a5 453 * ...
454 * adns_submit / adns_check
455 * ...
a17d3a1d 456 * }
457 */
458
620c146d 459/*
460 * Entrypoints for poll-loop based asynch io:
461 */
462
463struct pollfd;
464/* In case your system doesn't have it or you forgot to include
465 * <sys/poll.h>, to stop the following declarations from causing
466 * problems. If your system doesn't have poll then the following
467 * entrypoints will not be defined in libadns. Sorry !
468 */
469
470int adns_beforepoll(adns_state ads, struct pollfd *fds, int *nfds_io, int *timeout_io,
471 const struct timeval *now);
472/* Finds out which fd's adns is interested in, and when it would like
473 * to be able to time things out. This is in a form suitable for use
474 * with poll(2).
475 *
476 * On entry, usually fds should point to at least *nfds_io structs.
477 * adns will fill up to that many structs will information for poll,
478 * and record in *nfds_io how many structs it filled. If it wants to
479 * listen for more structs then *nfds_io will be set to the number
480 * required and _beforepoll will return ERANGE.
481 *
620c146d 482 * You may call _beforepoll with fds==0 and *nfds_io 0, in which case
483 * adns will fill in the number of fds that it might be interested in
fc6a52ae 484 * in *nfds_io, and always return either 0 (if it is not interested in
485 * any fds) or ERANGE (if it is).
486 *
487 * NOTE that (unless timeout_io is 0) adns may acquire additional fds
488 * from one call to the next, so you must put adns_beforepoll in a
489 * loop, rather than assuming that the second call (with the buffer
490 * size requested by the first) will not return ERANGE.
620c146d 491 *
492 * adns only ever sets POLLIN, POLLOUT and POLLPRI in its pollfd
493 * structs, and only ever looks at those bits. POLLPRI is required to
fc6a52ae 494 * detect TCP Urgent Data (which should not be used by a DNS server)
620c146d 495 * so that adns can know that the TCP stream is now useless.
496 *
497 * In any case, *timeout_io should be a timeout value as for poll(2),
498 * which adns will modify downwards as required. If the caller does
fc6a52ae 499 * not plan to block then *timeout_io should be 0 on entry, or
500 * alternatively, timeout_io may be 0. (Alternatively, the caller may
501 * use _beforeselect with timeout_io==0 to find out about file
502 * descriptors, and use _firsttimeout is used to find out when adns
503 * might want to time something out.)
620c146d 504 *
505 * adns_beforepoll will return 0 on success, and will not fail for any
506 * reason other than the fds buffer being too small (ERANGE).
507 *
fc6a52ae 508 * This call will never actually do any I/O, or change the fds that
509 * adns is using or the timeouts it wants; and in any case it won't
510 * block.
620c146d 511 */
512
513#define ADNS_POLLFDS_RECOMMENDED 2
514/* If you allocate an fds buf with at least RECOMMENDED entries then
515 * you are unlikely to need to enlarge it. You are recommended to do
516 * so if it's convenient. However, you must be prepared for adns to
517 * require more space than this.
518 */
519
520void adns_afterpoll(adns_state ads, const struct pollfd *fds, int nfds,
521 const struct timeval *now);
522/* Gives adns flow-of-control for a bit; intended for use after
523 * poll(2). fds and nfds should be the results from poll(). pollfd
524 * structs mentioning fds not belonging to adns will be ignored.
525 */
526
527
86e7b8d9 528adns_status adns_rr_info(adns_rrtype type,
529 const char **rrtname_r, const char **fmtname_r,
530 int *len_r,
531 const void *datap, char **data_r);
532/* Gets information in human-readable (but non-i18n) form
533 * for eg debugging purposes. type must be specified,
534 * and the official name of the corresponding RR type will
535 * be returned in *rrtname_r, and information about the processing
536 * style in *fmtname_r. The length of the table entry in an answer
537 * for that type will be returned in in *len_r.
538 * Any or all of rrtname_r, fmtname_r and len_r may be 0.
539 * If fmtname_r is non-null then *fmtname_r may be
540 * null on return, indicating that no special processing is
541 * involved.
542 *
543 * data_r be must be non-null iff datap is. In this case
544 * *data_r will be set to point to a human-readable text
545 * string representing the RR data. The text will have
546 * been obtained from malloc() and must be freed by the caller.
547 *
548 * Usually this routine will succeed. Possible errors include:
549 * adns_s_nomemory
ea1e31e3 550 * adns_s_rrtypeunknown
86e7b8d9 551 * adns_s_invaliddata (*datap contained garbage)
552 * If an error occurs then no memory has been allocated,
553 * and *rrtname_r, *fmtname_r, *len_r and *data_r are undefined.
554 */
555
31144a72 556const char *adns_strerror(adns_status st);
9da4a044 557const char *adns_errabbrev(adns_status st);
620c146d 558/* Like strerror but for adns_status values. adns_errabbrev returns
559 * the abbreviation of the error - eg, for adns_s_timeout it returns
560 * "timeout". You MUST NOT call these functions with status values
561 * not returned by the same adns library.
562 */
31144a72 563
a17d3a1d 564#endif