resolv.h revision 10132
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.
358858Srgrimes *
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.
428858Srgrimes *
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
5610132Speter *	$Id: resolv.h,v 1.3 1995/05/30 04:54:44 rgrimes Exp $
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
7510132Speter#define	__RES	19950621
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 */
12310132Speter#define RES_INIT	0x00000001	/* address initialized */
12410132Speter#define RES_DEBUG	0x00000002	/* print debug messages */
12510132Speter#define RES_AAONLY	0x00000004	/* authoritative answers only (!IMPL)*/
12610132Speter#define RES_USEVC	0x00000008	/* use virtual circuit */
12710132Speter#define RES_PRIMARY	0x00000010	/* query primary server only (!IMPL) */
12810132Speter#define RES_IGNTC	0x00000020	/* ignore trucation errors */
12910132Speter#define RES_RECURSE	0x00000040	/* recursion desired */
13010132Speter#define RES_DEFNAMES	0x00000080	/* use default domain name */
13110132Speter#define RES_STAYOPEN	0x00000100	/* Keep TCP socket open */
13210132Speter#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 */
13510132Speter#define	RES_NOALIASES	0x00001000	/* shuts off HOSTALIASES feature */
1361539Srgrimes
13710132Speter#define RES_DEFAULT	(RES_RECURSE | RES_DEFNAMES | RES_DNSRCH)
1381539Srgrimes
1391539Srgrimes/*
1401539Srgrimes * Resolver "pfcode" values.  Used by dig.
1411539Srgrimes */
1423070Spst#define	RES_PRF_STATS	0x00000001
1433070Spst/*			0x00000002	*/
1443070Spst#define	RES_PRF_CLASS   0x00000004
1453070Spst#define	RES_PRF_CMD	0x00000008
1463070Spst#define	RES_PRF_QUES	0x00000010
1473070Spst#define	RES_PRF_ANS	0x00000020
1483070Spst#define	RES_PRF_AUTH	0x00000040
1493070Spst#define	RES_PRF_ADD	0x00000080
1503070Spst#define	RES_PRF_HEAD1	0x00000100
1513070Spst#define	RES_PRF_HEAD2	0x00000200
1523070Spst#define	RES_PRF_TTLID	0x00000400
1533070Spst#define	RES_PRF_HEADX	0x00000800
1543070Spst#define	RES_PRF_QUERY	0x00001000
1553070Spst#define	RES_PRF_REPLY	0x00002000
1563070Spst#define	RES_PRF_INIT    0x00004000
1573070Spst/*			0x00008000	*/
1581539Srgrimes
1593070Spst/* hooks are still experimental as of 4.9.2 */
1603070Spsttypedef enum { res_goahead, res_nextns, res_modified, res_done, res_error }
1613070Spst	res_sendhookact;
1621539Srgrimes
1633070Spsttypedef res_sendhookact (*res_send_qhook)__P((struct sockaddr_in * const *ns,
1643070Spst					      const u_char **query,
1653070Spst					      int *querylen,
1663070Spst					      u_char *ans,
1673070Spst					      int anssiz,
1683070Spst					      int *resplen));
1693070Spst
1703070Spsttypedef res_sendhookact (*res_send_rhook)__P((const struct sockaddr_in *ns,
1713070Spst					      const u_char *query,
1723070Spst					      int querylen,
1733070Spst					      u_char *ans,
1743070Spst					      int anssiz,
1753070Spst					      int *resplen));
1763070Spst
1771539Srgrimesextern struct __res_state _res;
1781539Srgrimes
1791539Srgrimes/* Private routines shared between libc/net, named, nslookup and others. */
1801539Srgrimes#define	dn_skipname	__dn_skipname
1811539Srgrimes#define	fp_query	__fp_query
1823070Spst#define	fp_nquery	__fp_nquery
1831539Srgrimes#define	hostalias	__hostalias
1841539Srgrimes#define	putlong		__putlong
1851539Srgrimes#define	putshort	__putshort
1863070Spst#define	p_class		__p_class
1873070Spst#define	p_time		__p_time
1883070Spst#define	p_type		__p_type
1893070Spst#define	p_cdnname	__p_cdnname
1903070Spst#define	p_cdname	__p_cdname
1913070Spst#define	p_fqname	__p_fqname
1923070Spst#define	p_rr		__p_rr
1933070Spst#define	p_option	__p_option
19410132Speter#define	res_randomid	__res_randomid
19510132Speter#define	res_isourserver	__res_isourserver
19610132Speter#define	res_nameinquery	__res_nameinquery
19710132Speter#define	res_queriesmatch __res_queriesmatch
1983070Spst
1991539Srgrimes__BEGIN_DECLS
2001539Srgrimesint	 __dn_skipname __P((const u_char *, const u_char *));
2011539Srgrimesvoid	 __fp_resstat __P((struct __res_state *, FILE *));
2023070Spstvoid	 __fp_query __P((const u_char *, FILE *));
2033070Spstvoid	 __fp_nquery __P((const u_char *, int, FILE *));
2041539Srgrimeschar	*__hostalias __P((const char *));
2051539Srgrimesvoid	 __putlong __P((u_int32_t, u_char *));
2063070Spstvoid	 __putshort __P((u_int16_t, u_char *));
2071539Srgrimeschar	*__p_time __P((u_int32_t));
2083070Spstvoid	 __p_query __P((const u_char *));
2093070Spstconst u_char *__p_cdnname __P((const u_char *, const u_char *, int, FILE *));
2103070Spstconst u_char *__p_cdname __P((const u_char *, const u_char *, FILE *));
2113070Spstconst u_char *__p_fqname __P((const u_char *, const u_char *, FILE *));
2123070Spstconst u_char *__p_rr __P((const u_char *, const u_char *, FILE *));
2133070Spstconst char *__p_type __P((int));
2143070Spstconst char *__p_class __P((int));
2153070Spstconst char *__p_option __P((u_long option));
2163070Spstint	 dn_comp __P((const char *, u_char *, int, u_char **, u_char **));
2171539Srgrimesint	 dn_expand __P((const u_char *, const u_char *, const u_char *,
2183070Spst			char *, int));
2191539Srgrimesint	 res_init __P((void));
22010132Speteru_int16_t res_randomid __P((void));
2213070Spstint	 res_query __P((const char *, int, int, u_char *, int));
2223070Spstint	 res_search __P((const char *, int, int, u_char *, int));
2233070Spstint	 res_querydomain __P((const char *, const char *, int, int,
2243070Spst			      u_char *, int));
2253070Spstint	 res_mkquery __P((int, const char *, int, int, const u_char *, int,
2263070Spst			  const u_char *, u_char *, int));
2273070Spstint	 res_send __P((const u_char *, int, u_char *, int));
22810132Speterint	 res_isourserver __P((const struct sockaddr_in *));
22910132Speterint	 res_nameinquery __P((const char *, int, int,
23010132Speter			      const u_char *, const u_char *));
23110132Speterint	 res_queriesmatch __P((const u_char *, const u_char *,
23210132Speter			       const u_char *, const u_char *));
2331539Srgrimes__END_DECLS
2341539Srgrimes
2351539Srgrimes#endif /* !_RESOLV_H_ */
236