chiark / gitweb /
Use struct sockaddr in several places; distinguish various places where
[adns.git] / src / adns.h
1 /*
2  * Copyright (C)1998 Ian Jackson.
3  * This version provided for review and comment only.
4  *
5  * $Id$
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. 
23  */
24
25 #ifndef ADNS_H_INCLUDED
26 #define ADNS_H_INCLUDED
27
28 #include <stdio.h>
29
30 #include <sys/socket.h>
31 #include <netinet/in.h>
32
33 typedef struct adns__state *adns_state;
34 typedef struct adns__query *adns_query;
35
36 typedef enum {
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 */
40   adns_if_debug=        0x0008, /* enable all output to stderr plus debug msgs */
41   adns_if_noautosys=    0x0010, /* do not make syscalls at every opportunity */
42 } adns_initflags;
43
44 typedef enum {
45   adns_qf_search=          0x000001, /* use the searchlist */
46   adns_qf_usevc=           0x000002, /* use a virtual circuit (TCP connection) */
47   adns_qf_quoteok_query=   0x000010, /* allow quote-requiring chars in query domain */
48   adns_qf_quoteok_cname=   0x000020, /* allow ... in CNAME we go via */
49   adns_qf_quoteok_anshost= 0x000040, /* allow ... in answers expected to be hostnames */
50   adns_qf_cname_loose=     0x000100, /* allow refs to CNAMEs - without, get _s_cname */
51   adns_qf_cname_forbid=    0x000200, /* don't follow CNAMEs, instead give _s_cname */
52   adns__qf_internalmask=   0x0ff000
53 } adns_queryflags;
54
55 typedef enum {
56   adns__rrt_typemask=  0x0ffff,
57   adns__qtf_deref=     0x10000, /* dereference domains and perhaps produce extra data */
58   adns__qtf_mail822=   0x20000, /* make mailboxes be in RFC822 rcpt field format */
59   
60   adns_r_none=               0,
61   
62   adns_r_a=                  1,
63   
64   adns_r_ns_raw=             2,
65   adns_r_ns=                    adns_r_ns_raw|adns__qtf_deref,
66   
67   adns_r_cname=              5,
68   
69   adns_r_soa_raw=            6,
70   adns_r_soa=                   adns_r_soa_raw|adns__qtf_mail822, 
71   
72   adns_r_ptr_raw=           12,
73   adns_r_ptr=                   adns_r_ptr_raw|adns__qtf_deref,
74   
75   adns_r_hinfo=             13,  
76   
77   adns_r_mx_raw=            15,
78   adns_r_mx=                    adns_r_mx_raw|adns__qtf_deref,
79   
80   adns_r_txt=               16,
81   
82   adns_r_rp_raw=            17,
83   adns_r_rp=                    adns_r_rp_raw|adns__qtf_mail822,
84
85   adns_r_addr=                  adns_r_a|adns__qtf_deref
86   
87 } adns_rrtype;
88
89 /* In queries without qtf_anyquote, all domains must have standard
90  * legal syntax.  In queries _with_ qtf_anyquote, domains in the query
91  * or response may contain any characters, quoted according to
92  * RFC1035 5.1.  On input to adns, the char* is a pointer to the
93  * interior of a " delimited string, except that " may appear in it,
94  * and on output, the char* is a pointer to a string which would be
95  * legal either inside or outside " delimiters, and any characters
96  * not usually legal in domain names will be quoted as \X
97  * (if the character is 33-126 except \ and ") or \DDD.
98  *
99  * Do not ask for _raw records containing mailboxes without
100  * specifying _qf_anyquote.
101  */
102
103 typedef enum {
104   /* fixme: think about error codes */
105   adns_s_ok,
106   adns_s_timeout,
107   adns_s_nolocalmem,
108   adns_s_allservfail,
109   adns_s_servfail,
110   adns_s_notimplemented,
111   adns_s_refused,
112   adns_s_reasonunknown,
113   adns_s_norecurse,
114   adns_s_serverfaulty,
115   adns_s_unknownreply,
116   adns_s_invaliddata,
117   adns_s_max_tempfail= 99,
118   adns_s_inconsistent, /* PTR gives domain whose A does not match */
119   adns_s_cname, /* CNAME found where data eg A expected (not if _qf_loosecname) */
120   adns_s_invalidanswerdomain,
121   /* fixme: implement _s_cname */
122   adns_s_max_remotemisconfig= 199,
123   adns_s_nxdomain,
124   adns_s_nodata,
125   adns_s_invalidquerydomain,
126   adns_s_domaintoolong,
127 } adns_status;
128
129 typedef struct {
130   int len;
131   union {
132     struct sockaddr sa;
133     struct sockaddr_in inet;
134   } addr;
135 } adns_addr;
136
137 typedef struct {
138   char *dm;
139   adns_status astatus;
140   int naddrs; /* temp fail => -1, perm fail => 0, s_ok => >0 */
141   adns_addr *addrs;
142 } adns_rr_dmaddr;
143
144 typedef struct {
145   char *a, *b;
146 } adns_rr_strpair;
147
148 typedef struct {
149   int i;
150   adns_rr_dmaddr dmaddr;
151 } adns_rr_intdmaddr;
152
153 typedef struct {
154   /* Used both for mx_raw, in which case i is the preference and str the domain,
155    * and for txt, in which case each entry has i for the `text' length,
156    * and str for the data (which will have had an extra nul appended
157    * so that if it was plain text it is now a null-terminated string).
158    */
159   int i;
160   char *str;
161 } adns_rr_intstr;
162
163 typedef struct {
164   char *ns0, *rp;
165   unsigned long serial, refresh, retry, expire, minimum;
166 } adns_rr_soa;
167
168 typedef struct {
169   adns_status status;
170   char *cname; /* always NULL if query was for CNAME records */
171   adns_rrtype type; /* guaranteed to be same as in query */
172   int nrrs, rrsz;
173   union {
174     void *untyped;
175     unsigned char *bytes;
176     char *(*str);                  /* ns_raw, cname, ptr, ptr_raw */
177     adns_rr_intstr *(*manyistr);   /* txt (list of strings ends with i=-1, str=0) */
178     adns_addr *addr;               /* addr */
179     struct in_addr *inaddr;        /* a */
180     adns_rr_dmaddr *dmaddr;        /* ns */
181     adns_rr_strpair *strpair;      /* hinfo ??fixme, rp, rp_raw */
182     adns_rr_intdmaddr *intdmaddr;  /* mx */
183     adns_rr_intstr *intstr;        /* mx_raw */
184     adns_rr_soa *soa;              /* soa, soa_raw */
185   } rrs;
186 } adns_answer;
187
188 /* Memory management:
189  *  adns_state and adns_query are actually pointers to malloc'd state;
190  *  On submission questions are copied, including the owner domain;
191  *  Answers are malloc'd as a single piece of memory; pointers in the
192  *  answer struct point into further memory in the answer.
193  * query_io:
194  *  Must always be non-null pointer;
195  *  If *query_io is 0 to start with then any query may be returned;
196  *  If *query_io is !0 adns_query then only that query may be returned.
197  *  If the call is successful, *query_io, *answer_r, and *context_r
198  *  will all be set.
199  * Errors:
200  *  Return values are 0 or an errno value;
201  *  Seriously fatal system errors (eg, failure to create sockets,
202  *  malloc failure, etc.) return errno values;
203  *  Other errors (nameserver failure, timed out connections, &c)
204  *  are returned in the status field of the answer.  If status is
205  *  nonzero then nrrs will be 0, otherwise it will be >0.
206  *  type will always be the type requested;
207  *  If no (appropriate) requests are done adns_check returns EWOULDBLOCK;
208  *  If no (appropriate) requests are outstanding adns_query and adns_wait return ESRCH;
209  */
210
211 int adns_init(adns_state *newstate_r, adns_initflags flags, FILE *diagfile/*0=>stderr*/);
212
213 int adns_synchronous(adns_state ads,
214                      const char *owner,
215                      adns_rrtype type,
216                      adns_queryflags flags,
217                      adns_answer **answer_r);
218 /* Will not return EINTR. */
219
220 /* NB: if you set adns_if_noautosys then _submit and _check do not
221  * make any system calls; you must use adns_callback (possibly after
222  * adns_interest) to actually get things to happen.
223  */
224
225 int adns_submit(adns_state ads,
226                 const char *owner,
227                 adns_rrtype type,
228                 adns_queryflags flags,
229                 void *context,
230                 adns_query *query_r);
231
232 int adns_check(adns_state ads,
233                adns_query *query_io,
234                adns_answer **answer_r,
235                void **context_r);
236
237 int adns_wait(adns_state ads,
238               adns_query *query_io,
239               adns_answer **answer_r,
240               void **context_r);
241 /* Might return EINTR - if so, try again */
242
243 void adns_cancel(adns_query query);
244
245 int adns_finish(adns_state);
246 /* You may call this even if you have queries outstanding;
247  * they will be cancelled.
248  */
249
250 int adns_callback(adns_state, int maxfd, const fd_set *readfds, const fd_set *writefds,
251                   const fd_set *exceptfds);
252 /* Gives adns flow-of-control for a bit.  This will never block.
253  * If maxfd == -1 then adns will check (make nonblocking system calls on)
254  * all of its own filedescriptors; otherwise it will only use those
255  * < maxfd and specified in the fd_set's, as if select had returned them.
256  * Other fd's may be in the fd_sets, and will be ignored.
257  * _callback returns how many adns fd's were in the various sets, so
258  * you can tell if your select handling code has missed something and is going awol.
259  *
260  * May also return -1 if a critical syscall failed, setting errno.
261  */
262
263 void adns_interest(adns_state, int *maxfd_io, fd_set *readfds_io,
264                    fd_set *writefds_io, fd_set *exceptfds_io,
265                    struct timeval **tv_mod, struct timeval *tv_buf);
266 /* Find out file descriptors adns is interested in, and when it
267  * would like the opportunity to time something out.  If you do not plan to
268  * block then tv_mod may be 0.  Otherwise, tv_mod may point to 0 meaning
269  * you have no timeout of your own, in which case tv_buf must be non-null and
270  * _interest may fill it in and set *tv_mod=tv_buf.
271  * readfds, writefds, exceptfds and maxfd may not be 0.
272  */
273
274 /* Example expected/legal calling sequences:
275  *  adns_init
276  *  adns_submit 1
277  *  adns_submit 2
278  *  adns_submit 3
279  *  adns_wait 1
280  *  adns_check 3 -> EWOULDBLOCK
281  *  adns_wait 2
282  *  adns_wait 3
283  *  ....
284  *  adns_finish
285  *
286  *  adns_init _noautosys
287  *  loop {
288  *   adns_interest
289  *   select
290  *   adns_callback
291  *   ...
292  *   adns_submit / adns_check
293  *   ...
294  *  }
295  */
296
297 adns_status adns_rr_info(adns_rrtype type,
298                          const char **rrtname_r, const char **fmtname_r,
299                          int *len_r,
300                          const void *datap, char **data_r);
301 /* Gets information in human-readable (but non-i18n) form
302  * for eg debugging purposes.  type must be specified,
303  * and the official name of the corresponding RR type will
304  * be returned in *rrtname_r, and information about the processing
305  * style in *fmtname_r.  The length of the table entry in an answer
306  * for that type will be returned in in *len_r.
307  * Any or all of rrtname_r, fmtname_r and len_r may be 0.
308  * If fmtname_r is non-null then *fmtname_r may be
309  * null on return, indicating that no special processing is
310  * involved.
311  *
312  * data_r be must be non-null iff datap is.  In this case
313  * *data_r will be set to point to a human-readable text
314  * string representing the RR data.  The text will have
315  * been obtained from malloc() and must be freed by the caller.
316  *
317  * Usually this routine will succeed.  Possible errors include:
318  *  adns_s_nomemory
319  *  adns_s_notimplemented (RR type not known)
320  *  adns_s_invaliddata (*datap contained garbage)
321  * If an error occurs then no memory has been allocated,
322  * and *rrtname_r, *fmtname_r, *len_r and *data_r are undefined.
323  */
324
325 const char *adns_strerror(adns_status st);
326
327 #endif