resolv.h revision 3070
11539Srgrimes/*-
21539Srgrimes * Copyright (c) 1983, 1987, 1989, 1993
31539Srgrimes *	The Regents of the University of California.  All rights reserved.
41539Srgrimes *
51539Srgrimes * Redistribution and use in source and binary forms, with or without
61539Srgrimes * modification, are permitted provided that the following conditions
71539Srgrimes * are met:
81539Srgrimes * 1. Redistributions of source code must retain the above copyright
91539Srgrimes *    notice, this list of conditions and the following disclaimer.
101539Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
111539Srgrimes *    notice, this list of conditions and the following disclaimer in the
121539Srgrimes *    documentation and/or other materials provided with the distribution.
131539Srgrimes * 3. All advertising materials mentioning features or use of this software
141539Srgrimes *    must display the following acknowledgement:
151539Srgrimes *	This product includes software developed by the University of
161539Srgrimes *	California, Berkeley and its contributors.
171539Srgrimes * 4. Neither the name of the University nor the names of its contributors
181539Srgrimes *    may be used to endorse or promote products derived from this software
191539Srgrimes *    without specific prior written permission.
201539Srgrimes *
211539Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
221539Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
231539Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
241539Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
251539Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
261539Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
271539Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
281539Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
291539Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
301539Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
311539Srgrimes * SUCH DAMAGE.
321539Srgrimes *
331539Srgrimes * -
341539Srgrimes * Portions Copyright (c) 1993 by Digital Equipment Corporation.
351539Srgrimes *
361539Srgrimes * Permission to use, copy, modify, and distribute this software for any
371539Srgrimes * purpose with or without fee is hereby granted, provided that the above
381539Srgrimes * copyright notice and this permission notice appear in all copies, and that
391539Srgrimes * the name of Digital Equipment Corporation not be used in advertising or
401539Srgrimes * publicity pertaining to distribution of the document or software without
411539Srgrimes * specific, written prior permission.
421539Srgrimes *
431539Srgrimes * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
441539Srgrimes * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
451539Srgrimes * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
461539Srgrimes * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
471539Srgrimes * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
481539Srgrimes * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
491539Srgrimes * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
501539Srgrimes * SOFTWARE.
511539Srgrimes * -
521539Srgrimes * --Copyright--
533070Spst *
543070Spst *	@(#)resolv.h	8.1 (Berkeley) 6/2/93
553070Spst *	From Id: resolv.h,v 4.9.1.2 1993/05/17 09:59:01 vixie Exp
563070Spst *	$Id$
571539Srgrimes */
581539Srgrimes
591539Srgrimes#ifndef _RESOLV_H_
601539Srgrimes#define	_RESOLV_H_
611539Srgrimes
623070Spst#include <sys/param.h>
631539Srgrimes#include <sys/types.h>
643070Spst#include <sys/cdefs.h>
653070Spst#include <stdio.h>
663070Spst
671539Srgrimes/*
683070Spst * revision information.  this is the release date in YYYYMMDD format.
693070Spst * it can change every day so the right thing to do with it is use it
703070Spst * in preprocessor commands such as "#if (__RES > 19931104)".  do not
713070Spst * compare for equality; rather, use it to determine whether your resolver
723070Spst * is new enough to contain a certain feature.
733070Spst */
743070Spst
753070Spst#define	__RES	19940415
763070Spst
773070Spst/*
781539Srgrimes * Resolver configuration file.
791539Srgrimes * Normally not present, but may contain the address of the
801539Srgrimes * inital name server(s) to query and the domain search list.
811539Srgrimes */
821539Srgrimes
831539Srgrimes#ifndef _PATH_RESCONF
843070Spst#define	_PATH_RESCONF        "/etc/resolv.conf"
851539Srgrimes#endif
861539Srgrimes
871539Srgrimes/*
881539Srgrimes * Global defines and variables for resolver stub.
891539Srgrimes */
901539Srgrimes#define	MAXNS			3	/* max # name servers we'll track */
911539Srgrimes#define	MAXDFLSRCH		3	/* # default domain levels to try */
921539Srgrimes#define	MAXDNSRCH		6	/* max # domains in search path */
931539Srgrimes#define	LOCALDOMAINPARTS	2	/* min levels in name that is "local" */
941539Srgrimes
951539Srgrimes#define	RES_TIMEOUT		5	/* min. seconds between retries */
963070Spst#define	MAXRESOLVSORT		10	/* number of net to sort on */
973070Spst#define	RES_MAXNDOTS		15	/* should reflect bit field size */
981539Srgrimes
991539Srgrimesstruct __res_state {
1001539Srgrimes	int	retrans;	 	/* retransmition time interval */
1011539Srgrimes	int	retry;			/* number of times to retransmit */
1023070Spst	u_long	options;		/* option flags - see below. */
1031539Srgrimes	int	nscount;		/* number of name servers */
1043070Spst	struct sockaddr_in
1053070Spst		nsaddr_list[MAXNS];	/* address of name server */
1061539Srgrimes#define	nsaddr	nsaddr_list[0]		/* for backward compatibility */
1071539Srgrimes	u_short	id;			/* current packet id */
1081539Srgrimes	char	*dnsrch[MAXDNSRCH+1];	/* components of domain to search */
1091539Srgrimes	char	defdname[MAXDNAME];	/* default domain */
1103070Spst	u_long	pfcode;			/* RES_PRF_ flags - see below. */
1113070Spst	unsigned ndots:4;		/* threshold for initial abs. query */
1123070Spst	unsigned nsort:4;		/* number of elements in sort_list[] */
1133070Spst	char	unused[3];
1143070Spst	struct {
1153070Spst		struct in_addr	addr;
1163070Spst		u_int32_t	mask;
1173070Spst	} sort_list[MAXRESOLVSORT];
1181539Srgrimes};
1191539Srgrimes
1201539Srgrimes/*
1211539Srgrimes * Resolver options (keep these in synch with res_debug.c, please)
1221539Srgrimes */
1233070Spst#define	RES_INIT	0x00000001	/* address initialized */
1243070Spst#define	RES_DEBUG	0x00000002	/* print debug messages */
1253070Spst#define	RES_AAONLY	0x00000004	/* authoritative answers only */
1263070Spst#define	RES_USEVC	0x00000008	/* use virtual circuit */
1273070Spst#define	RES_PRIMARY	0x00000010	/* query primary server only */
1283070Spst#define	RES_IGNTC	0x00000020	/* ignore trucation errors */
1293070Spst#define	RES_RECURSE	0x00000040	/* recursion desired */
1303070Spst#define	RES_DEFNAMES	0x00000080	/* use default domain name */
1313070Spst#define	RES_STAYOPEN	0x00000100	/* Keep TCP socket open */
1323070Spst#define	RES_DNSRCH	0x00000200	/* search up local domain tree */
1333070Spst#define	RES_INSECURE1	0x00000400	/* type 1 security disabled */
1343070Spst#define	RES_INSECURE2	0x00000800	/* type 2 security disabled */
1351539Srgrimes
1363070Spst#define	RES_DEFAULT	(RES_RECURSE | RES_DEFNAMES | RES_DNSRCH)
1371539Srgrimes
1381539Srgrimes/*
1391539Srgrimes * Resolver "pfcode" values.  Used by dig.
1401539Srgrimes */
1413070Spst#define	RES_PRF_STATS	0x00000001
1423070Spst/*			0x00000002	*/
1433070Spst#define	RES_PRF_CLASS   0x00000004
1443070Spst#define	RES_PRF_CMD	0x00000008
1453070Spst#define	RES_PRF_QUES	0x00000010
1463070Spst#define	RES_PRF_ANS	0x00000020
1473070Spst#define	RES_PRF_AUTH	0x00000040
1483070Spst#define	RES_PRF_ADD	0x00000080
1493070Spst#define	RES_PRF_HEAD1	0x00000100
1503070Spst#define	RES_PRF_HEAD2	0x00000200
1513070Spst#define	RES_PRF_TTLID	0x00000400
1523070Spst#define	RES_PRF_HEADX	0x00000800
1533070Spst#define	RES_PRF_QUERY	0x00001000
1543070Spst#define	RES_PRF_REPLY	0x00002000
1553070Spst#define	RES_PRF_INIT    0x00004000
1563070Spst/*			0x00008000	*/
1571539Srgrimes
1583070Spst/* hooks are still experimental as of 4.9.2 */
1593070Spsttypedef enum { res_goahead, res_nextns, res_modified, res_done, res_error }
1603070Spst	res_sendhookact;
1611539Srgrimes
1623070Spsttypedef res_sendhookact (*res_send_qhook)__P((struct sockaddr_in * const *ns,
1633070Spst					      const u_char **query,
1643070Spst					      int *querylen,
1653070Spst					      u_char *ans,
1663070Spst					      int anssiz,
1673070Spst					      int *resplen));
1683070Spst
1693070Spsttypedef res_sendhookact (*res_send_rhook)__P((const struct sockaddr_in *ns,
1703070Spst					      const u_char *query,
1713070Spst					      int querylen,
1723070Spst					      u_char *ans,
1733070Spst					      int anssiz,
1743070Spst					      int *resplen));
1753070Spst
1761539Srgrimesextern struct __res_state _res;
1771539Srgrimes
1781539Srgrimes/* Private routines shared between libc/net, named, nslookup and others. */
1791539Srgrimes#define	dn_skipname	__dn_skipname
1801539Srgrimes#define	fp_query	__fp_query
1813070Spst#define	fp_nquery	__fp_nquery
1821539Srgrimes#define	hostalias	__hostalias
1831539Srgrimes#define	putlong		__putlong
1841539Srgrimes#define	putshort	__putshort
1853070Spst#define	p_class		__p_class
1863070Spst#define	p_time		__p_time
1873070Spst#define	p_type		__p_type
1883070Spst#define	p_cdnname	__p_cdnname
1893070Spst#define	p_cdname	__p_cdname
1903070Spst#define	p_fqname	__p_fqname
1913070Spst#define	p_rr		__p_rr
1923070Spst#define	p_option	__p_option
1933070Spst
1941539Srgrimes__BEGIN_DECLS
1951539Srgrimesint	 __dn_skipname __P((const u_char *, const u_char *));
1961539Srgrimesvoid	 __fp_resstat __P((struct __res_state *, FILE *));
1973070Spstvoid	 __fp_query __P((const u_char *, FILE *));
1983070Spstvoid	 __fp_nquery __P((const u_char *, int, FILE *));
1991539Srgrimeschar	*__hostalias __P((const char *));
2001539Srgrimesvoid	 __putlong __P((u_int32_t, u_char *));
2013070Spstvoid	 __putshort __P((u_int16_t, u_char *));
2021539Srgrimeschar	*__p_time __P((u_int32_t));
2033070Spstvoid	 __p_query __P((const u_char *));
2043070Spstconst u_char *__p_cdnname __P((const u_char *, const u_char *, int, FILE *));
2053070Spstconst u_char *__p_cdname __P((const u_char *, const u_char *, FILE *));
2063070Spstconst u_char *__p_fqname __P((const u_char *, const u_char *, FILE *));
2073070Spstconst u_char *__p_rr __P((const u_char *, const u_char *, FILE *));
2083070Spstconst char *__p_type __P((int));
2093070Spstconst char *__p_class __P((int));
2103070Spstconst char *__p_option __P((u_long option));
2113070Spstint	 dn_comp __P((const char *, u_char *, int, u_char **, u_char **));
2121539Srgrimesint	 dn_expand __P((const u_char *, const u_char *, const u_char *,
2133070Spst			char *, int));
2141539Srgrimesint	 res_init __P((void));
2153070Spstint	 res_query __P((const char *, int, int, u_char *, int));
2163070Spstint	 res_search __P((const char *, int, int, u_char *, int));
2173070Spstint	 res_querydomain __P((const char *, const char *, int, int,
2183070Spst			      u_char *, int));
2193070Spstint	 res_mkquery __P((int, const char *, int, int, const u_char *, int,
2203070Spst			  const u_char *, u_char *, int));
2213070Spstint	 res_send __P((const u_char *, int, u_char *, int));
2221539Srgrimes__END_DECLS
2231539Srgrimes
2241539Srgrimes#endif /* !_RESOLV_H_ */
225