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