Home | History | Annotate | Line # | Download | only in arpa
nameser_compat.h revision 1.1.1.4
      1  1.1.1.4      ghen /*	$NetBSD: nameser_compat.h,v 1.1.1.4 2007/03/30 19:48:21 ghen Exp $	*/
      2  1.1.1.4      ghen 
      3      1.1  christos /* Copyright (c) 1983, 1989
      4      1.1  christos  *    The Regents of the University of California.  All rights reserved.
      5      1.1  christos  *
      6      1.1  christos  * Redistribution and use in source and binary forms, with or without
      7      1.1  christos  * modification, are permitted provided that the following conditions
      8      1.1  christos  * are met:
      9      1.1  christos  * 1. Redistributions of source code must retain the above copyright
     10      1.1  christos  *    notice, this list of conditions and the following disclaimer.
     11      1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     12      1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     13      1.1  christos  *    documentation and/or other materials provided with the distribution.
     14      1.1  christos  * 3. All advertising materials mentioning features or use of this software
     15      1.1  christos  *    must display the following acknowledgement:
     16      1.1  christos  * 	This product includes software developed by the University of
     17      1.1  christos  * 	California, Berkeley and its contributors.
     18      1.1  christos  * 4. Neither the name of the University nor the names of its contributors
     19      1.1  christos  *    may be used to endorse or promote products derived from this software
     20      1.1  christos  *    without specific prior written permission.
     21      1.1  christos  *
     22      1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23      1.1  christos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24      1.1  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25      1.1  christos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26      1.1  christos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27      1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28      1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29      1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30      1.1  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31      1.1  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32      1.1  christos  * SUCH DAMAGE.
     33      1.1  christos  */
     34      1.1  christos 
     35  1.1.1.3  christos /*%
     36      1.1  christos  *      from nameser.h	8.1 (Berkeley) 6/2/93
     37  1.1.1.4      ghen  *	Id: nameser_compat.h,v 1.5.18.3 2006/05/19 02:36:00 marka Exp
     38      1.1  christos  */
     39      1.1  christos 
     40      1.1  christos #ifndef _ARPA_NAMESER_COMPAT_
     41      1.1  christos #define	_ARPA_NAMESER_COMPAT_
     42      1.1  christos 
     43  1.1.1.3  christos #define	__BIND		19950621	/*%< (DEAD) interface version stamp. */
     44      1.1  christos #ifndef BYTE_ORDER
     45      1.1  christos #if (BSD >= 199103)
     46      1.1  christos # include <machine/endian.h>
     47      1.1  christos #else
     48      1.1  christos #ifdef __linux
     49      1.1  christos # include <endian.h>
     50      1.1  christos #else
     51  1.1.1.3  christos #define	LITTLE_ENDIAN	1234	/*%< least-significant byte first (vax, pc) */
     52  1.1.1.3  christos #define	BIG_ENDIAN	4321	/*%< most-significant byte first (IBM, net) */
     53  1.1.1.3  christos #define	PDP_ENDIAN	3412	/*%< LSB first in word, MSW first in long (pdp) */
     54      1.1  christos #if defined(vax) || defined(ns32000) || defined(sun386) || defined(i386) || \
     55  1.1.1.3  christos     defined(__i386__) || defined(__i386) || defined(__amd64__) || \
     56  1.1.1.3  christos     defined(__x86_64__) || defined(MIPSEL) || defined(_MIPSEL) || \
     57  1.1.1.3  christos     defined(BIT_ZERO_ON_RIGHT) || defined(__alpha__) || defined(__alpha) || \
     58      1.1  christos     (defined(__Lynx__) && defined(__x86__))
     59      1.1  christos #define BYTE_ORDER	LITTLE_ENDIAN
     60      1.1  christos #endif
     61      1.1  christos 
     62      1.1  christos #if defined(sel) || defined(pyr) || defined(mc68000) || defined(sparc) || \
     63      1.1  christos     defined(is68k) || defined(tahoe) || defined(ibm032) || defined(ibm370) || \
     64      1.1  christos     defined(MIPSEB) || defined(_MIPSEB) || defined(_IBMR2) || defined(DGUX) ||\
     65      1.1  christos     defined(apollo) || defined(__convex__) || defined(_CRAY) || \
     66      1.1  christos     defined(__hppa) || defined(__hp9000) || \
     67      1.1  christos     defined(__hp9000s300) || defined(__hp9000s700) || \
     68      1.1  christos     defined(__hp3000s900) || defined(__hpux) || defined(MPE) || \
     69  1.1.1.2  christos     defined (BIT_ZERO_ON_LEFT) || defined(m68k) || defined(__sparc) ||  \
     70      1.1  christos     (defined(__Lynx__) && \
     71      1.1  christos      (defined(__68k__) || defined(__sparc__) || defined(__powerpc__)))
     72      1.1  christos #define BYTE_ORDER	BIG_ENDIAN
     73      1.1  christos #endif
     74      1.1  christos #endif /* __linux */
     75      1.1  christos #endif /* BSD */
     76      1.1  christos #endif /* BYTE_ORDER */
     77      1.1  christos 
     78      1.1  christos #if !defined(BYTE_ORDER) || \
     79      1.1  christos     (BYTE_ORDER != BIG_ENDIAN && BYTE_ORDER != LITTLE_ENDIAN && \
     80      1.1  christos     BYTE_ORDER != PDP_ENDIAN)
     81      1.1  christos 	/* you must determine what the correct bit order is for
     82      1.1  christos 	 * your compiler - the next line is an intentional error
     83      1.1  christos 	 * which will force your compiles to bomb until you fix
     84      1.1  christos 	 * the above macros.
     85      1.1  christos 	 */
     86      1.1  christos   error "Undefined or invalid BYTE_ORDER";
     87      1.1  christos #endif
     88      1.1  christos 
     89  1.1.1.3  christos /*%
     90      1.1  christos  * Structure for query header.  The order of the fields is machine- and
     91      1.1  christos  * compiler-dependent, depending on the byte/bit order and the layout
     92      1.1  christos  * of bit fields.  We use bit fields only in int variables, as this
     93      1.1  christos  * is all ANSI requires.  This requires a somewhat confusing rearrangement.
     94      1.1  christos  */
     95      1.1  christos 
     96      1.1  christos typedef struct {
     97  1.1.1.3  christos 	unsigned	id :16;		/*%< query identification number */
     98      1.1  christos #if BYTE_ORDER == BIG_ENDIAN
     99      1.1  christos 			/* fields in third byte */
    100  1.1.1.3  christos 	unsigned	qr: 1;		/*%< response flag */
    101  1.1.1.3  christos 	unsigned	opcode: 4;	/*%< purpose of message */
    102  1.1.1.3  christos 	unsigned	aa: 1;		/*%< authoritive answer */
    103  1.1.1.3  christos 	unsigned	tc: 1;		/*%< truncated message */
    104  1.1.1.3  christos 	unsigned	rd: 1;		/*%< recursion desired */
    105      1.1  christos 			/* fields in fourth byte */
    106  1.1.1.3  christos 	unsigned	ra: 1;		/*%< recursion available */
    107  1.1.1.3  christos 	unsigned	unused :1;	/*%< unused bits (MBZ as of 4.9.3a3) */
    108  1.1.1.3  christos 	unsigned	ad: 1;		/*%< authentic data from named */
    109  1.1.1.3  christos 	unsigned	cd: 1;		/*%< checking disabled by resolver */
    110  1.1.1.3  christos 	unsigned	rcode :4;	/*%< response code */
    111      1.1  christos #endif
    112      1.1  christos #if BYTE_ORDER == LITTLE_ENDIAN || BYTE_ORDER == PDP_ENDIAN
    113      1.1  christos 			/* fields in third byte */
    114  1.1.1.3  christos 	unsigned	rd :1;		/*%< recursion desired */
    115  1.1.1.3  christos 	unsigned	tc :1;		/*%< truncated message */
    116  1.1.1.3  christos 	unsigned	aa :1;		/*%< authoritive answer */
    117  1.1.1.3  christos 	unsigned	opcode :4;	/*%< purpose of message */
    118  1.1.1.3  christos 	unsigned	qr :1;		/*%< response flag */
    119      1.1  christos 			/* fields in fourth byte */
    120  1.1.1.3  christos 	unsigned	rcode :4;	/*%< response code */
    121  1.1.1.3  christos 	unsigned	cd: 1;		/*%< checking disabled by resolver */
    122  1.1.1.3  christos 	unsigned	ad: 1;		/*%< authentic data from named */
    123  1.1.1.3  christos 	unsigned	unused :1;	/*%< unused bits (MBZ as of 4.9.3a3) */
    124  1.1.1.3  christos 	unsigned	ra :1;		/*%< recursion available */
    125      1.1  christos #endif
    126      1.1  christos 			/* remaining bytes */
    127  1.1.1.3  christos 	unsigned	qdcount :16;	/*%< number of question entries */
    128  1.1.1.3  christos 	unsigned	ancount :16;	/*%< number of answer entries */
    129  1.1.1.3  christos 	unsigned	nscount :16;	/*%< number of authority entries */
    130  1.1.1.3  christos 	unsigned	arcount :16;	/*%< number of resource entries */
    131      1.1  christos } HEADER;
    132      1.1  christos 
    133      1.1  christos #define PACKETSZ	NS_PACKETSZ
    134      1.1  christos #define MAXDNAME	NS_MAXDNAME
    135      1.1  christos #define MAXCDNAME	NS_MAXCDNAME
    136      1.1  christos #define MAXLABEL	NS_MAXLABEL
    137      1.1  christos #define	HFIXEDSZ	NS_HFIXEDSZ
    138      1.1  christos #define QFIXEDSZ	NS_QFIXEDSZ
    139      1.1  christos #define RRFIXEDSZ	NS_RRFIXEDSZ
    140      1.1  christos #define	INT32SZ		NS_INT32SZ
    141      1.1  christos #define	INT16SZ		NS_INT16SZ
    142      1.1  christos #define	INT8SZ		NS_INT8SZ
    143      1.1  christos #define	INADDRSZ	NS_INADDRSZ
    144      1.1  christos #define	IN6ADDRSZ	NS_IN6ADDRSZ
    145      1.1  christos #define	INDIR_MASK	NS_CMPRSFLGS
    146      1.1  christos #define NAMESERVER_PORT	NS_DEFAULTPORT
    147      1.1  christos 
    148      1.1  christos #define S_ZONE		ns_s_zn
    149      1.1  christos #define S_PREREQ	ns_s_pr
    150      1.1  christos #define S_UPDATE	ns_s_ud
    151      1.1  christos #define S_ADDT		ns_s_ar
    152      1.1  christos 
    153      1.1  christos #define QUERY		ns_o_query
    154      1.1  christos #define IQUERY		ns_o_iquery
    155      1.1  christos #define STATUS		ns_o_status
    156      1.1  christos #define	NS_NOTIFY_OP	ns_o_notify
    157      1.1  christos #define	NS_UPDATE_OP	ns_o_update
    158      1.1  christos 
    159      1.1  christos #define NOERROR		ns_r_noerror
    160      1.1  christos #define FORMERR		ns_r_formerr
    161      1.1  christos #define SERVFAIL	ns_r_servfail
    162      1.1  christos #define NXDOMAIN	ns_r_nxdomain
    163      1.1  christos #define NOTIMP		ns_r_notimpl
    164      1.1  christos #define REFUSED		ns_r_refused
    165      1.1  christos #define YXDOMAIN	ns_r_yxdomain
    166      1.1  christos #define YXRRSET		ns_r_yxrrset
    167      1.1  christos #define NXRRSET		ns_r_nxrrset
    168      1.1  christos #define NOTAUTH		ns_r_notauth
    169      1.1  christos #define NOTZONE		ns_r_notzone
    170      1.1  christos /*#define BADSIG		ns_r_badsig*/
    171      1.1  christos /*#define BADKEY		ns_r_badkey*/
    172      1.1  christos /*#define BADTIME		ns_r_badtime*/
    173      1.1  christos 
    174      1.1  christos 
    175      1.1  christos #define DELETE		ns_uop_delete
    176      1.1  christos #define ADD		ns_uop_add
    177      1.1  christos 
    178      1.1  christos #define T_A		ns_t_a
    179      1.1  christos #define T_NS		ns_t_ns
    180      1.1  christos #define T_MD		ns_t_md
    181      1.1  christos #define T_MF		ns_t_mf
    182      1.1  christos #define T_CNAME		ns_t_cname
    183      1.1  christos #define T_SOA		ns_t_soa
    184      1.1  christos #define T_MB		ns_t_mb
    185      1.1  christos #define T_MG		ns_t_mg
    186      1.1  christos #define T_MR		ns_t_mr
    187      1.1  christos #define T_NULL		ns_t_null
    188      1.1  christos #define T_WKS		ns_t_wks
    189      1.1  christos #define T_PTR		ns_t_ptr
    190      1.1  christos #define T_HINFO		ns_t_hinfo
    191      1.1  christos #define T_MINFO		ns_t_minfo
    192      1.1  christos #define T_MX		ns_t_mx
    193      1.1  christos #define T_TXT		ns_t_txt
    194      1.1  christos #define	T_RP		ns_t_rp
    195      1.1  christos #define T_AFSDB		ns_t_afsdb
    196      1.1  christos #define T_X25		ns_t_x25
    197      1.1  christos #define T_ISDN		ns_t_isdn
    198      1.1  christos #define T_RT		ns_t_rt
    199      1.1  christos #define T_NSAP		ns_t_nsap
    200      1.1  christos #define T_NSAP_PTR	ns_t_nsap_ptr
    201      1.1  christos #define	T_SIG		ns_t_sig
    202      1.1  christos #define	T_KEY		ns_t_key
    203      1.1  christos #define	T_PX		ns_t_px
    204      1.1  christos #define	T_GPOS		ns_t_gpos
    205      1.1  christos #define	T_AAAA		ns_t_aaaa
    206      1.1  christos #define	T_LOC		ns_t_loc
    207      1.1  christos #define	T_NXT		ns_t_nxt
    208      1.1  christos #define	T_EID		ns_t_eid
    209      1.1  christos #define	T_NIMLOC	ns_t_nimloc
    210      1.1  christos #define	T_SRV		ns_t_srv
    211      1.1  christos #define T_ATMA		ns_t_atma
    212      1.1  christos #define T_NAPTR		ns_t_naptr
    213      1.1  christos #define T_A6		ns_t_a6
    214      1.1  christos #define	T_TSIG		ns_t_tsig
    215      1.1  christos #define	T_IXFR		ns_t_ixfr
    216      1.1  christos #define T_AXFR		ns_t_axfr
    217      1.1  christos #define T_MAILB		ns_t_mailb
    218      1.1  christos #define T_MAILA		ns_t_maila
    219      1.1  christos #define T_ANY		ns_t_any
    220      1.1  christos 
    221      1.1  christos #define C_IN		ns_c_in
    222      1.1  christos #define C_CHAOS		ns_c_chaos
    223      1.1  christos #define C_HS		ns_c_hs
    224      1.1  christos /* BIND_UPDATE */
    225      1.1  christos #define C_NONE		ns_c_none
    226      1.1  christos #define C_ANY		ns_c_any
    227      1.1  christos 
    228      1.1  christos #define	GETSHORT		NS_GET16
    229      1.1  christos #define	GETLONG			NS_GET32
    230      1.1  christos #define	PUTSHORT		NS_PUT16
    231      1.1  christos #define	PUTLONG			NS_PUT32
    232      1.1  christos 
    233      1.1  christos #endif /* _ARPA_NAMESER_COMPAT_ */
    234  1.1.1.3  christos /*! \file */
    235