chiark / gitweb /
Copyright dates fixed; various TODOs added.
[adns] / src / adns.h
CommitLineData
5bb95567 1/*
3ff64957 2 * This file is part of adns, which is Copyright (C) 1997-1999 Ian Jackson
98db6da3 3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2, or (at your option)
7 * any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software Foundation,
3ff64957 16 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 * $Id: adns.h,v 1.39 1999/03/30 18:57:18 ian Exp $
5bb95567 19 */
5db99a2e 20
21#ifndef ADNS_H_INCLUDED
22#define ADNS_H_INCLUDED
23
d05cc330 24#include <stdio.h>
25
e7afa27f 26#include <sys/socket.h>
27#include <netinet/in.h>
28
8c3aa944 29/* All struct in_addr anywhere in adns are in NETWORK byte order. */
30
e7afa27f 31typedef struct adns__state *adns_state;
32typedef struct adns__query *adns_query;
5db99a2e 33
34typedef enum {
dfdbb32c 35 adns_if_noenv= 0x0001, /* do not look at environment */
36 adns_if_noerrprint= 0x0002, /* never print output to stderr (_debug overrides) */
37 adns_if_noserverwarn= 0x0004, /* do not warn to stderr about duff nameservers etc */
96e79df5 38 adns_if_debug= 0x0008, /* enable all output to stderr plus debug msgs */
dfdbb32c 39 adns_if_noautosys= 0x0010, /* do not make syscalls at every opportunity */
f318f883 40 adns_if_eintr= 0x0020, /* allow _wait and _synchronous to return EINTR */
5db99a2e 41} adns_initflags;
42
43typedef enum {
cd363ffd 44 adns_qf_search= 0x000001, /* use the searchlist */
45 adns_qf_usevc= 0x000002, /* use a virtual circuit (TCP connection) */
46 adns_qf_quoteok_query= 0x000010, /* allow quote-requiring chars in query domain */
47 adns_qf_quoteok_cname= 0x000020, /* allow ... in CNAME we go via */
48 adns_qf_quoteok_anshost= 0x000040, /* allow ... in answers expected to be hostnames */
49 adns_qf_cname_loose= 0x000100, /* allow refs to CNAMEs - without, get _s_cname */
50 adns_qf_cname_forbid= 0x000200, /* don't follow CNAMEs, instead give _s_cname */
51 adns__qf_internalmask= 0x0ff000
5db99a2e 52} adns_queryflags;
53
54typedef enum {
31d3a9d0 55 adns__rrt_typemask= 0x0ffff,
96e79df5 56 adns__qtf_deref= 0x10000, /* dereference domains and perhaps produce extra data */
57 adns__qtf_mail822= 0x20000, /* make mailboxes be in RFC822 rcpt field format */
96e79df5 58
31d3a9d0 59 adns_r_none= 0,
96e79df5 60
31d3a9d0 61 adns_r_a= 1,
96e79df5 62
31d3a9d0 63 adns_r_ns_raw= 2,
64 adns_r_ns= adns_r_ns_raw|adns__qtf_deref,
96e79df5 65
31d3a9d0 66 adns_r_cname= 5,
96e79df5 67
31d3a9d0 68 adns_r_soa_raw= 6,
96e79df5 69 adns_r_soa= adns_r_soa_raw|adns__qtf_mail822,
96e79df5 70
31d3a9d0 71 adns_r_ptr_raw= 12,
72 adns_r_ptr= adns_r_ptr_raw|adns__qtf_deref,
96e79df5 73
31d3a9d0 74 adns_r_hinfo= 13,
96e79df5 75
31d3a9d0 76 adns_r_mx_raw= 15,
77 adns_r_mx= adns_r_mx_raw|adns__qtf_deref,
96e79df5 78
31d3a9d0 79 adns_r_txt= 16,
96e79df5 80
31d3a9d0 81 adns_r_rp_raw= 17,
d05cc330 82 adns_r_rp= adns_r_rp_raw|adns__qtf_mail822,
cd363ffd 83
84 adns_r_addr= adns_r_a|adns__qtf_deref
96e79df5 85
5db99a2e 86} adns_rrtype;
87
e7afa27f 88/* In queries without qtf_anyquote, all domains must have standard
89 * legal syntax. In queries _with_ qtf_anyquote, domains in the query
90 * or response may contain any characters, quoted according to
91 * RFC1035 5.1. On input to adns, the char* is a pointer to the
92 * interior of a " delimited string, except that " may appear in it,
93 * and on output, the char* is a pointer to a string which would be
94 * legal either inside or outside " delimiters, and any characters
95 * not usually legal in domain names will be quoted as \X
96 * (if the character is 33-126 except \ and ") or \DDD.
97 *
96e79df5 98 * Do not ask for _raw records containing mailboxes without
99 * specifying _qf_anyquote.
e7afa27f 100 */
101
5db99a2e 102typedef enum {
103 adns_s_ok,
9b86645c 104
105 /* locally induced errors */
106 adns_s_nomemory,
107 adns_s_unknownrrtype,
108
109 /* remotely induced errors, detected locally */
dfdbb32c 110 adns_s_timeout,
48cb0b4b 111 adns_s_allservfail,
168e26fe 112 adns_s_norecurse,
9b86645c 113 adns_s_invalidresponse,
114 adns_s_unknownformat,
115
116 /* remotely induced errors, reported by remote server to us */
117 adns_s_rcodeservfail,
118 adns_s_rcodeformaterror,
119 adns_s_rcodenotimplemented,
120 adns_s_rcoderefused,
121 adns_s_rcodeunknown,
122
54ed1d64 123 adns_s_max_tempfail= 99,
9b86645c 124
125 /* remote configuration errors */
126 adns_s_inconsistent, /* PTR gives domain whose A does not exist and match */
127 adns_s_prohibitedcname, /* CNAME found where eg A expected (not if _qf_loosecname) */
128 adns_s_answerdomaininvalid,
129 adns_s_answerdomaintoolong,
130 adns_s_invaliddata,
131
132 adns_s_max_misconfig= 199,
133
9b86645c 134 /* permanent problems with the query */
135 adns_s_querydomainwrong,
136 adns_s_querydomaininvalid,
137 adns_s_querydomaintoolong,
138
139 adns_s_max_misquery= 299,
140
141 /* permanent errors */
5db99a2e 142 adns_s_nxdomain,
8312a1c2 143 adns_s_nodata,
9b86645c 144
5db99a2e 145} adns_status;
146
cd363ffd 147typedef struct {
148 int len;
149 union {
150 struct sockaddr sa;
151 struct sockaddr_in inet;
152 } addr;
bc01473e 153} adns_rr_addr;
cd363ffd 154
6927715a 155typedef struct {
26eb6bdc 156 char *host;
6927715a 157 adns_status astatus;
158 int naddrs; /* temp fail => -1, perm fail => 0, s_ok => >0 */
bc01473e 159 adns_rr_addr *addrs;
a1d2d0ed 160} adns_rr_hostaddr;
d05cc330 161
162typedef struct {
61093792 163 char *(array[2]);
d05cc330 164} adns_rr_strpair;
165
166typedef struct {
167 int i;
26eb6bdc 168 adns_rr_hostaddr ha;
a1d2d0ed 169} adns_rr_inthostaddr;
d05cc330 170
171typedef struct {
f2ad23ee 172 /* Used both for mx_raw, in which case i is the preference and str the domain,
173 * and for txt, in which case each entry has i for the `text' length,
174 * and str for the data (which will have had an extra nul appended
175 * so that if it was plain text it is now a null-terminated string).
176 */
d05cc330 177 int i;
178 char *str;
179} adns_rr_intstr;
180
181typedef struct {
61093792 182 adns_rr_intstr array[2];
183} adns_rr_intstrpair;
184
185typedef struct {
186 char *mname, *rname;
d05cc330 187 unsigned long serial, refresh, retry, expire, minimum;
188} adns_rr_soa;
6927715a 189
5617a135 190typedef struct {
5db99a2e 191 adns_status status;
192 char *cname; /* always NULL if query was for CNAME records */
1e9efa71 193 adns_rrtype type; /* guaranteed to be same as in query */
965c9782 194 int nrrs, rrsz;
5db99a2e 195 union {
965c9782 196 void *untyped;
197 unsigned char *bytes;
a1d2d0ed 198 char *(*str); /* ns_raw, cname, ptr, ptr_raw */
199 adns_rr_intstr *(*manyistr); /* txt (list of strings ends with i=-1, str=0) */
bc01473e 200 adns_rr_addr *addr; /* addr */
a1d2d0ed 201 struct in_addr *inaddr; /* a */
202 adns_rr_hostaddr *hostaddr; /* ns */
61093792 203 adns_rr_intstrpair *intstrpair; /* hinfo */
204 adns_rr_strpair *strpair; /* rp, rp_raw */
a1d2d0ed 205 adns_rr_inthostaddr *inthostaddr; /* mx */
206 adns_rr_intstr *intstr; /* mx_raw */
207 adns_rr_soa *soa; /* soa, soa_raw */
5db99a2e 208 } rrs;
5617a135 209} adns_answer;
5db99a2e 210
211/* Memory management:
212 * adns_state and adns_query are actually pointers to malloc'd state;
213 * On submission questions are copied, including the owner domain;
d05cc330 214 * Answers are malloc'd as a single piece of memory; pointers in the
215 * answer struct point into further memory in the answer.
5db99a2e 216 * query_io:
217 * Must always be non-null pointer;
218 * If *query_io is 0 to start with then any query may be returned;
219 * If *query_io is !0 adns_query then only that query may be returned.
9be46d86 220 * If the call is successful, *query_io, *answer_r, and *context_r
221 * will all be set.
5db99a2e 222 * Errors:
223 * Return values are 0 or an errno value;
224 * Seriously fatal system errors (eg, failure to create sockets,
225 * malloc failure, etc.) return errno values;
226 * Other errors (nameserver failure, timed out connections, &c)
227 * are returned in the status field of the answer. If status is
228 * nonzero then nrrs will be 0, otherwise it will be >0.
229 * type will always be the type requested;
5617a135 230 * If no (appropriate) requests are done adns_check returns EWOULDBLOCK;
231 * If no (appropriate) requests are outstanding adns_query and adns_wait return ESRCH;
5db99a2e 232 */
233
d6b271ae 234int adns_init(adns_state *newstate_r, adns_initflags flags,
235 FILE *diagfile /*0=>stderr*/);
236
237int adns_init_strcfg(adns_state *newstate_r, adns_initflags flags,
238 FILE *diagfile /*0=>discard*/, const char *configtext);
5db99a2e 239
240int adns_synchronous(adns_state ads,
241 const char *owner,
242 adns_rrtype type,
ebd44fbe 243 adns_queryflags flags,
9ab4dfce 244 adns_answer **answer_r);
5617a135 245
246/* NB: if you set adns_if_noautosys then _submit and _check do not
247 * make any system calls; you must use adns_callback (possibly after
248 * adns_interest) to actually get things to happen.
249 */
5db99a2e 250
251int adns_submit(adns_state ads,
252 const char *owner,
253 adns_rrtype type,
ebd44fbe 254 adns_queryflags flags,
5db99a2e 255 void *context,
e7afa27f 256 adns_query *query_r);
5db99a2e 257
e7afa27f 258int adns_check(adns_state ads,
5db99a2e 259 adns_query *query_io,
9ab4dfce 260 adns_answer **answer_r,
261 void **context_r);
5db99a2e 262
263int adns_wait(adns_state ads,
264 adns_query *query_io,
9ab4dfce 265 adns_answer **answer_r,
266 void **context_r);
3ff64957 267/* fixme: merge _check and _wait into one func with flags wait and `remove'(?) */
268/* fixme: include TTL in answer somehow */
269/* fixme: multithreading/locking */
270/* fixme: easy way to get lists of fd's */
5db99a2e 271
11c8bf9b 272void adns_cancel(adns_query query);
5db99a2e 273
61093792 274void adns_finish(adns_state);
98db6da3 275/* You may call this even if you have queries outstanding;
276 * they will be cancelled.
277 */
5db99a2e 278
5617a135 279int adns_callback(adns_state, int maxfd, const fd_set *readfds, const fd_set *writefds,
280 const fd_set *exceptfds);
281/* Gives adns flow-of-control for a bit. This will never block.
282 * If maxfd == -1 then adns will check (make nonblocking system calls on)
283 * all of its own filedescriptors; otherwise it will only use those
284 * < maxfd and specified in the fd_set's, as if select had returned them.
285 * Other fd's may be in the fd_sets, and will be ignored.
286 * _callback returns how many adns fd's were in the various sets, so
287 * you can tell if your select handling code has missed something and is going awol.
d05cc330 288 *
289 * May also return -1 if a critical syscall failed, setting errno.
e7afa27f 290 */
291
5617a135 292void adns_interest(adns_state, int *maxfd_io, fd_set *readfds_io,
293 fd_set *writefds_io, fd_set *exceptfds_io,
294 struct timeval **tv_mod, struct timeval *tv_buf);
295/* Find out file descriptors adns is interested in, and when it
296 * would like the opportunity to time something out. If you do not plan to
297 * block then tv_mod may be 0. Otherwise, tv_mod may point to 0 meaning
298 * you have no timeout of your own, in which case tv_buf must be non-null and
299 * _interest may fill it in and set *tv_mod=tv_buf.
300 * readfds, writefds, exceptfds and maxfd may not be 0.
e7afa27f 301 */
5db99a2e 302
303/* Example expected/legal calling sequences:
304 * adns_init
305 * adns_submit 1
306 * adns_submit 2
307 * adns_submit 3
308 * adns_wait 1
e7afa27f 309 * adns_check 3 -> EWOULDBLOCK
5db99a2e 310 * adns_wait 2
311 * adns_wait 3
312 * ....
313 * adns_finish
314 *
5617a135 315 * adns_init _noautosys
5db99a2e 316 * loop {
5db99a2e 317 * adns_interest
318 * select
319 * adns_callback
5617a135 320 * ...
321 * adns_submit / adns_check
322 * ...
5db99a2e 323 * }
324 */
325
1e9efa71 326adns_status adns_rr_info(adns_rrtype type,
327 const char **rrtname_r, const char **fmtname_r,
328 int *len_r,
329 const void *datap, char **data_r);
330/* Gets information in human-readable (but non-i18n) form
331 * for eg debugging purposes. type must be specified,
332 * and the official name of the corresponding RR type will
333 * be returned in *rrtname_r, and information about the processing
334 * style in *fmtname_r. The length of the table entry in an answer
335 * for that type will be returned in in *len_r.
336 * Any or all of rrtname_r, fmtname_r and len_r may be 0.
337 * If fmtname_r is non-null then *fmtname_r may be
338 * null on return, indicating that no special processing is
339 * involved.
340 *
341 * data_r be must be non-null iff datap is. In this case
342 * *data_r will be set to point to a human-readable text
343 * string representing the RR data. The text will have
344 * been obtained from malloc() and must be freed by the caller.
345 *
346 * Usually this routine will succeed. Possible errors include:
347 * adns_s_nomemory
9b86645c 348 * adns_s_rrtypeunknown
1e9efa71 349 * adns_s_invaliddata (*datap contained garbage)
350 * If an error occurs then no memory has been allocated,
351 * and *rrtname_r, *fmtname_r, *len_r and *data_r are undefined.
352 */
353
7f702335 354const char *adns_strerror(adns_status st);
355
5db99a2e 356#endif