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