1 /*	$MirOS: src/include/resolv.h,v 1.4 2013/10/31 20:06:08 tg Exp $ */
2 /*	$OpenBSD: resolv.h,v 1.16 2005/03/30 02:58:28 tedu Exp $	*/
3 
4 /*
5  * Copyright © 2013
6  *	Thorsten “mirabilos” Glaser <tg@mirbsd.org>
7  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. Neither the name of the project nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  */
34 
35 /*
36  * Copyright (c) 1983, 1987, 1989, 1993
37  *    The Regents of the University of California.  All rights reserved.
38  *
39  * Redistribution and use in source and binary forms, with or without
40  * modification, are permitted provided that the following conditions
41  * are met:
42  * 1. Redistributions of source code must retain the above copyright
43  *    notice, this list of conditions and the following disclaimer.
44  * 2. Redistributions in binary form must reproduce the above copyright
45  *    notice, this list of conditions and the following disclaimer in the
46  *    documentation and/or other materials provided with the distribution.
47  * 3. Neither the name of the University nor the names of its contributors
48  *    may be used to endorse or promote products derived from this software
49  *    without specific prior written permission.
50  *
51  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
52  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
53  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
54  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
55  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
56  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
57  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
58  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
59  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
60  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
61  * SUCH DAMAGE.
62  * -
63  * Portions Copyright (c) 1993 by Digital Equipment Corporation.
64  *
65  * Permission to use, copy, modify, and distribute this software for any
66  * purpose with or without fee is hereby granted, provided that the above
67  * copyright notice and this permission notice appear in all copies, and that
68  * the name of Digital Equipment Corporation not be used in advertising or
69  * publicity pertaining to distribution of the document or software without
70  * specific, written prior permission.
71  *
72  * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
73  * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
74  * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
75  * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
76  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
77  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
78  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
79  * SOFTWARE.
80  */
81 
82 /*
83  *	@(#)resolv.h	8.1 (Berkeley) 6/2/93
84  *	$From: resolv.h,v 8.17 1996/11/26 10:11:20 vixie Exp $
85  */
86 
87 #ifndef _RESOLV_H_
88 #define	_RESOLV_H_
89 
90 #include <sys/param.h>
91 #if (!defined(BSD)) || (BSD < 199306)
92 # include <sys/bitypes.h>
93 #else
94 # include <sys/types.h>
95 #endif
96 #include <sys/cdefs.h>
97 #include <sys/socket.h>
98 #include <stdio.h>
99 
100 /*
101  * Revision information.  This is the release date in YYYYMMDD format.
102  * It can change every day so the right thing to do with it is use it
103  * in preprocessor commands such as "#if (__RES > 19931104)".  Do not
104  * compare for equality; rather, use it to determine whether your resolver
105  * is new enough to contain a certain feature.
106  */
107 
108 #define	__RES	19960801
109 
110 /*
111  * Resolver configuration file.
112  * Normally not present, but may contain the address of the
113  * initial name server(s) to query and the domain search list.
114  */
115 
116 #ifndef _PATH_RESCONF
117 #define _PATH_RESCONF        "/etc/resolv.conf"
118 #endif
119 
120 /*
121  * Global defines and variables for resolver stub.
122  */
123 #define	MAXNS			3	/* max # name servers we'll track */
124 #define	MAXDFLSRCH		3	/* # default domain levels to try */
125 #define	MAXDNSRCH		6	/* max # domains in search path */
126 #define	LOCALDOMAINPARTS	2	/* min levels in name that is "local" */
127 #define MAXDNSLUS		4	/* max # of host lookup types */
128 
129 #define	RES_TIMEOUT		5	/* min. seconds between retries */
130 #define	MAXRESOLVSORT		10	/* number of net to sort on */
131 #define	RES_MAXNDOTS		15	/* should reflect bit field size */
132 
133 struct __res_state {
134 	int	retrans;	 	/* retransmission time interval */
135 	int	retry;			/* number of times to retransmit */
136 	unsigned int	options;	/* option flags - see below. */
137 	int	nscount;		/* number of name servers */
138 	struct sockaddr_in
139 		nsaddr_list[MAXNS];	/* address of name server */
140 #define	nsaddr	nsaddr_list[0]		/* for backward compatibility */
141 	unsigned short	id;		/* current message id */
142 	char	*dnsrch[MAXDNSRCH+1];	/* components of domain to search */
143 	char	defdname[256];		/* default domain (deprecated) */
144 	unsigned int	pfcode;		/* RES_PRF_ flags - see below. */
145 	unsigned ndots:4;		/* threshold for initial abs. query */
146 	unsigned nsort:4;		/* number of elements in sort_list[] */
147 	char	unused[3];
148 	struct {
149 		struct in_addr	addr;
150 		u_int32_t	mask;
151 	} sort_list[MAXRESOLVSORT];
152 	char    lookups[MAXDNSLUS];
153 	struct timespec	restimespec;
154 	time_t	reschktime;
155 };
156 
157 #if 1 /* INET6 */
158 /*
159  * replacement of __res_state, separated to keep binary compatibility.
160  */
161 struct __res_state_ext {
162 	struct sockaddr_storage nsaddr_list[MAXNS];
163 	struct {
164 		int	af;		/* address family for addr, mask */
165 		union {
166 			struct in_addr ina;
167 			struct in6_addr in6a;
168 		} addr, mask;
169 	} sort_list[MAXRESOLVSORT];
170 };
171 #endif
172 
173 
174 /*
175  * Resolver options (keep these in synch with res_debug.c, please)
176  */
177 #define RES_INIT	0x00000001	/* address initialized */
178 #define RES_DEBUG	0x00000002	/* print debug messages */
179 #define RES_AAONLY	0x00000004	/* authoritative answers only (!IMPL)*/
180 #define RES_USEVC	0x00000008	/* use virtual circuit */
181 #define RES_PRIMARY	0x00000010	/* query primary server only (!IMPL) */
182 #define RES_IGNTC	0x00000020	/* ignore trucation errors */
183 #define RES_RECURSE	0x00000040	/* recursion desired */
184 #define RES_DEFNAMES	0x00000080	/* use default domain name */
185 #define RES_STAYOPEN	0x00000100	/* Keep TCP socket open */
186 #define RES_DNSRCH	0x00000200	/* search up local domain tree */
187 #define	RES_INSECURE1	0x00000400	/* type 1 security disabled */
188 #define	RES_INSECURE2	0x00000800	/* type 2 security disabled */
189 #define	RES_NOALIASES	0x00001000	/* shuts off HOSTALIASES feature */
190 #define	RES_USE_INET6	0x00002000	/* use/map IPv6 in gethostbyname() */
191 /* KAME extensions: use higher bit to avoid conflict with ISC use */
192 #define	RES_USE_EDNS0	0x40000000	/* use EDNS0 */
193 /* DNSSEC extensions: use higher bit to avoid conflict with ISC use */
194 #define	RES_USE_DNSSEC	0x20000000	/* use DNSSEC using OK bit in OPT */
195 
196 #define RES_DEFAULT	(RES_RECURSE | RES_DEFNAMES | RES_DNSRCH)
197 
198 /*
199  * Resolver "pfcode" values.  Used by dig.
200  */
201 #define RES_PRF_STATS	0x00000001
202 /*			0x00000002	*/
203 #define RES_PRF_CLASS   0x00000004
204 #define RES_PRF_CMD	0x00000008
205 #define RES_PRF_QUES	0x00000010
206 #define RES_PRF_ANS	0x00000020
207 #define RES_PRF_AUTH	0x00000040
208 #define RES_PRF_ADD	0x00000080
209 #define RES_PRF_HEAD1	0x00000100
210 #define RES_PRF_HEAD2	0x00000200
211 #define RES_PRF_TTLID	0x00000400
212 #define RES_PRF_HEADX	0x00000800
213 #define RES_PRF_QUERY	0x00001000
214 #define RES_PRF_REPLY	0x00002000
215 #define RES_PRF_INIT    0x00004000
216 /*			0x00008000	*/
217 
218 /* hooks are still experimental as of 4.9.2 */
219 typedef enum { res_goahead, res_nextns, res_modified, res_done, res_error }
220 	res_sendhookact;
221 
222 typedef res_sendhookact (*res_send_qhook)(struct sockaddr_in * const *ns,
223 					      const unsigned char **query,
224 					      int *querylen,
225 					      unsigned char *ans,
226 					      int anssiz,
227 					      int *resplen);
228 
229 typedef res_sendhookact (*res_send_rhook)(const struct sockaddr_in *ns,
230 					      const unsigned char *query,
231 					      int querylen,
232 					      unsigned char *ans,
233 					      int anssiz,
234 					      int *resplen);
235 
236 struct res_sym {
237 	int	number;		/* Identifying number, like T_MX */
238 	char *	name;		/* Its symbolic name, like "MX" */
239 	char *	humanname;	/* Its fun name, like "mail exchanger" */
240 };
241 
242 extern struct __res_state _res;
243 #if 1 /* INET6 */
244 extern struct __res_state_ext _res_ext;
245 #endif
246 extern const struct res_sym __p_class_syms[];
247 extern const struct res_sym __p_type_syms[];
248 
249 /* Private routines shared between libc/net, named, nslookup and others. */
250 #define	res_hnok	__res_hnok
251 #define	res_ownok	__res_ownok
252 #define	res_mailok	__res_mailok
253 #define	res_dnok	__res_dnok
254 #define	sym_ston	__sym_ston
255 #define	sym_ntos	__sym_ntos
256 #define	sym_ntop	__sym_ntop
257 #define b64_ntop	__b64_ntop
258 #define	b64_pton	__b64_pton
259 #define	loc_ntoa	__loc_ntoa
260 #define	loc_aton	__loc_aton
261 #define	dn_skipname	__dn_skipname
262 #define	fp_resstat	__fp_resstat
263 #define	fp_query	__fp_query
264 #define	fp_nquery	__fp_nquery
265 #define	hostalias	__hostalias
266 #define	putlong		__putlong
267 #define	putshort	__putshort
268 #define p_class		__p_class
269 #define p_time		__p_time
270 #define p_type		__p_type
271 #define	p_query		__p_query
272 #define	p_cdnname	__p_cdnname
273 #define	p_cdname	__p_cdname
274 #define	p_fqnname	__p_fqnname
275 #define	p_fqname	__p_fqname
276 #define	p_rr		__p_rr
277 #define	p_option	__p_option
278 #define	p_secstodate	__p_secstodate
279 #define	dn_count_labels	__dn_count_labels
280 #define	dn_comp		__dn_comp
281 #define	res_randomid	__res_randomid
282 #define	res_send	__res_send
283 #define	res_isourserver	__res_isourserver
284 #define	res_nameinquery	__res_nameinquery
285 #define	res_queriesmatch __res_queriesmatch
286 #define	res_close	__res_close
287 #define	res_opt		__res_opt
288 
289 #ifdef BIND_RES_POSIX3
290 #define	dn_expand	__dn_expand
291 #define	res_init	__res_init
292 #define	res_query	__res_query
293 #define	res_search	__res_search
294 #define	res_querydomain	__res_querydomain
295 #define	res_mkquery	__res_mkquery
296 #endif
297 
298 __BEGIN_DECLS
299 int			res_hnok(const char *);
300 int			res_ownok(const char *);
301 int			res_mailok(const char *);
302 int			res_dnok(const char *);
303 int			sym_ston(const struct res_sym *, char *, int *);
304 const char *		sym_ntos(const struct res_sym *, int, int *);
305 const char *		sym_ntop(const struct res_sym *, int, int *);
306 int			b64_ntop(unsigned char const *, size_t, char *, size_t);
307 int			b64_pton(char const *, unsigned char *, size_t);
308 int			loc_aton(const char *, unsigned char *);
309 const char *		loc_ntoa(const unsigned char *, char *);
310 int			dn_skipname(const unsigned char *,
311 			    const unsigned char *);
312 void			fp_resstat(struct __res_state *, FILE *);
313 void			fp_query(const unsigned char *, FILE *);
314 void			fp_nquery(const unsigned char *, int, FILE *);
315 const char *		hostalias(const char *);
316 void			putlong(u_int32_t, unsigned char *);
317 void			putshort(u_int16_t, unsigned char *);
318 const char *		p_class(int);
319 const char *		p_time(u_int32_t);
320 const char *		p_type(int);
321 void			p_query(const unsigned char *);
322 const unsigned char *	p_cdnname(const unsigned char *, const unsigned char *,
323 			    int, FILE *);
324 const unsigned char *	p_cdname(const unsigned char *, const unsigned char *,
325 			    FILE *);
326 const unsigned char *	p_fqnname(const unsigned char *, const unsigned char *,
327 			    int, char *, int);
328 const unsigned char *	p_fqname(const unsigned char *, const unsigned char *,
329 			    FILE *);
330 const unsigned char *	p_rr(const unsigned char *, const unsigned char *,
331 			    FILE *);
332 const char *		p_option(unsigned long);
333 char *			p_secstodate(unsigned long);
334 int			dn_count_labels(char *);
335 int			dn_comp(const char *, unsigned char *, int,
336 			    unsigned char **, unsigned char **);
337 int			dn_expand(const unsigned char *, const unsigned char *,
338 			    const unsigned char *, char *, int);
339 int			res_init(void);
340 int			_res_init(int);
341 unsigned int		res_randomid(void);
342 int			res_query(const char *, int, int, unsigned char *, int)
343 			__attribute__((__bounded__(__string__, 4, 5)));
344 int			res_search(const char *, int, int, unsigned char *, int)
345 			    __attribute__((__bounded__(__string__, 4, 5)));
346 int			res_querydomain(const char *, const char *, int, int,
347 			    unsigned char *, int)
348 			__attribute__((__bounded__(__string__, 5, 6)));
349 int			res_mkquery(int, const char *, int, int,
350 			    const unsigned char *, int, const unsigned char *,
351 			    unsigned char *, int)
352 			__attribute__((__bounded__(__string__, 5, 6)))
353 			__attribute__((__bounded__(__string__, 8, 9)));
354 int			res_send(const unsigned char *, int, unsigned char *,
355 			    int)
356 			__attribute__((__bounded__(__string__, 3, 4)));
357 int			res_isourserver(const struct sockaddr_in *);
358 int			res_nameinquery(const char *, int, int,
359 			    const unsigned char *, const unsigned char *);
360 int			res_queriesmatch(const unsigned char *,
361 			    const unsigned char *, const unsigned char *,
362 			    const unsigned char *);
363 void			res_close(void);
364 __END_DECLS
365 
366 #endif /* !_RESOLV_H_ */
367