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