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