Various improvements and more code; post-crash.
[adns] / src / adns.h
CommitLineData
a17d3a1d 1/**/
2
3#ifndef ADNS_H_INCLUDED
4#define ADNS_H_INCLUDED
5
964344fc 6#include <sys/socket.h>
7#include <netinet/in.h>
8
9typedef struct adns__state *adns_state;
10typedef struct adns__query *adns_query;
a17d3a1d 11
12typedef enum {
37e28fde 13 adns_if_noenv= 0x0001, /* do not look at environment */
14 adns_if_noerrprint= 0x0002, /* never print output to stderr (_debug overrides) */
15 adns_if_noserverwarn= 0x0004, /* do not warn to stderr about duff nameservers etc */
16 adns_if_debug= 0x0008, /* enable all output to stderr plus debug msgs*/
17 adns_if_noautosys= 0x0010, /* do not make syscalls at every opportunity */
a17d3a1d 18} adns_initflags;
19
20typedef enum {
21 adns_f_search= 0x0001, /* use the searchlist */
22 adns_f_usevc= 0x0002, /* use a virtual circuit (TCP connection) */
964344fc 23 adns_f_anyquote= 0x0004,
a17d3a1d 24} adns_queryflags;
25
26typedef enum {
350d37d9 27 adns__rrt_typemask= 0x0ffff,
28 adns__qtf_deref= 0x10000, /* dereference domains and produce extra data */
29 adns__qtf_mailconv= 0x20000, /* put @ between first and second labels */
30 adns_r_none= 0,
31 adns_r_a= 1,
32 adns_r_ns_raw= 2,
33 adns_r_ns= adns_r_ns_raw|adns__qtf_deref,
34 adns_r_cname= 5,
35 adns_r_soa_raw= 6,
36 adns_r_soa= adns_r_soa_raw|adns__qtf_mailconv,
37 adns_r_null= 10,
38 adns_r_ptr_raw= 12,
39 adns_r_ptr= adns_r_ptr_raw|adns__qtf_deref,
40 adns_r_hinfo= 13,
41 adns_r_mx_raw= 15,
42 adns_r_mx= adns_r_mx_raw|adns__qtf_deref,
43 adns_r_txt= 16,
44 adns_r_rp_raw= 17,
45 adns_r_rp= adns_r_rp_raw|adns__qtf_mailconv
a17d3a1d 46} adns_rrtype;
47
964344fc 48/* In queries without qtf_anyquote, all domains must have standard
49 * legal syntax. In queries _with_ qtf_anyquote, domains in the query
50 * or response may contain any characters, quoted according to
51 * RFC1035 5.1. On input to adns, the char* is a pointer to the
52 * interior of a " delimited string, except that " may appear in it,
53 * and on output, the char* is a pointer to a string which would be
54 * legal either inside or outside " delimiters, and any characters
55 * not usually legal in domain names will be quoted as \X
56 * (if the character is 33-126 except \ and ") or \DDD.
57 *
58 * Do not ask for records containing mailboxes without
59 * specifying qtf_mailconv or qtf_anyquote.
60 */
61
a17d3a1d 62typedef enum {
63 adns_s_ok,
37e28fde 64 adns_s_timeout,
a17d3a1d 65 adns_s_unknownqtype,
350d37d9 66 adns_s_nolocalmem,
8402e34c 67 adns_s_connlost,
4bec51a4 68 adns_s_allservfail,
a17d3a1d 69 adns_s_max_tempfail= 99,
37e28fde 70 adns_s_inconsistent, /* PTR gives domain whose A does not match */
71 adns_s_badcname, /* CNAME found where actual record expected */
72 adns_s_max_misconfig= 199;
a17d3a1d 73 adns_s_nxdomain,
74 adns_s_norecord,
75 adns_s_invaliddomain
76} adns_status;
77
e8c505a5 78typedef struct {
84fe28db 79 char *dm;
80 adns_status astatus;
81 int naddrs; /* temp fail => -1, perm fail => 0, s_ok => >0 */
82 struct in_addr *addrs;
83} adns_dmaddr;
84
85typedef struct {
a17d3a1d 86 adns_status status;
87 char *cname; /* always NULL if query was for CNAME records */
88 adns_rrtype type;
89 int nrrs;
90 union {
9d95094c 91 struct in_addr inaddr[1]; /* a */
92 char (*str)[1]; /* ns_raw, cname, ptr, ptr_raw, txt */
84fe28db 93 adns_dmaddr dmaddr[1]; /* ns */
9d95094c 94 struct { char *a, *b; } strpair[1]; /* hinfo, rp, rp_raw */
84fe28db 95 struct { int pref; adns_dmaddrs dmaddr; } intdmaddr[1]; /* mx */
9d95094c 96 struct { int pref; char *str; } intstr[1]; /* mx_raw */
a17d3a1d 97 struct {
98 char *ns0, *rp;
99 unsigned long serial, refresh, retry, expire, minimum;
9d95094c 100 } soa[1]; /* soa, soa_raw */
a17d3a1d 101 /* NULL is empty */
102 } rrs;
e8c505a5 103} adns_answer;
a17d3a1d 104
105/* Memory management:
106 * adns_state and adns_query are actually pointers to malloc'd state;
107 * On submission questions are copied, including the owner domain;
108 * Answers are malloc'd as a single piece of memory.
109 * query_io:
110 * Must always be non-null pointer;
111 * If *query_io is 0 to start with then any query may be returned;
112 * If *query_io is !0 adns_query then only that query may be returned.
113 * Errors:
114 * Return values are 0 or an errno value;
115 * Seriously fatal system errors (eg, failure to create sockets,
116 * malloc failure, etc.) return errno values;
117 * Other errors (nameserver failure, timed out connections, &c)
118 * are returned in the status field of the answer. If status is
119 * nonzero then nrrs will be 0, otherwise it will be >0.
120 * type will always be the type requested;
e8c505a5 121 * If no (appropriate) requests are done adns_check returns EWOULDBLOCK;
122 * If no (appropriate) requests are outstanding adns_query and adns_wait return ESRCH;
a17d3a1d 123 * If malloc failure occurs during internal allocation or processing
e8c505a5 124 * ands_check and _wait set *answer to 0.
a17d3a1d 125 */
126
37e28fde 127int adns_init(adns_state *newstate_r, adns_initflags flags, FILE *diagfile/*0=>stderr*/);
a17d3a1d 128
129int adns_synchronous(adns_state ads,
130 const char *owner,
131 adns_rrtype type,
72934832 132 adns_queryflags flags,
9d95094c 133 adns_answer **answer_r);
72934832 134/* Will not return EINTR. */
e8c505a5 135
136/* NB: if you set adns_if_noautosys then _submit and _check do not
137 * make any system calls; you must use adns_callback (possibly after
138 * adns_interest) to actually get things to happen.
139 */
a17d3a1d 140
141int adns_submit(adns_state ads,
142 const char *owner,
143 adns_rrtype type,
72934832 144 adns_queryflags flags,
a17d3a1d 145 void *context,
964344fc 146 adns_query *query_r);
a17d3a1d 147
964344fc 148int adns_check(adns_state ads,
a17d3a1d 149 adns_query *query_io,
9d95094c 150 adns_answer **answer_r,
151 void **context_r);
a17d3a1d 152
153int adns_wait(adns_state ads,
154 adns_query *query_io,
9d95094c 155 adns_answer **answer_r,
156 void **context_r);
72934832 157/* Might return EINTR - if so, try again */
a17d3a1d 158
e8c505a5 159void adns_cancel(adns_state ads, adns_query query);
a17d3a1d 160
161int adns_finish(adns_state);
162
e8c505a5 163int adns_callback(adns_state, int maxfd, const fd_set *readfds, const fd_set *writefds,
164 const fd_set *exceptfds);
165/* Gives adns flow-of-control for a bit. This will never block.
166 * If maxfd == -1 then adns will check (make nonblocking system calls on)
167 * all of its own filedescriptors; otherwise it will only use those
168 * < maxfd and specified in the fd_set's, as if select had returned them.
169 * Other fd's may be in the fd_sets, and will be ignored.
170 * _callback returns how many adns fd's were in the various sets, so
171 * you can tell if your select handling code has missed something and is going awol.
964344fc 172 */
173
e8c505a5 174void adns_interest(adns_state, int *maxfd_io, fd_set *readfds_io,
175 fd_set *writefds_io, fd_set *exceptfds_io,
176 struct timeval **tv_mod, struct timeval *tv_buf);
177/* Find out file descriptors adns is interested in, and when it
178 * would like the opportunity to time something out. If you do not plan to
179 * block then tv_mod may be 0. Otherwise, tv_mod may point to 0 meaning
180 * you have no timeout of your own, in which case tv_buf must be non-null and
181 * _interest may fill it in and set *tv_mod=tv_buf.
182 * readfds, writefds, exceptfds and maxfd may not be 0.
964344fc 183 */
a17d3a1d 184
185/* Example expected/legal calling sequences:
186 * adns_init
187 * adns_submit 1
188 * adns_submit 2
189 * adns_submit 3
190 * adns_wait 1
964344fc 191 * adns_check 3 -> EWOULDBLOCK
a17d3a1d 192 * adns_wait 2
193 * adns_wait 3
194 * ....
195 * adns_finish
196 *
e8c505a5 197 * adns_init _noautosys
a17d3a1d 198 * loop {
a17d3a1d 199 * adns_interest
200 * select
201 * adns_callback
e8c505a5 202 * ...
203 * adns_submit / adns_check
204 * ...
a17d3a1d 205 * }
206 */
207
208#endif