nameser_compat.h 8.9 KB

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