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