nameser.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:9k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* nameser.h - Domain Name Server protocol header file */
  2. /* Copyright 1984-1996 Wind River Systems, Inc. */
  3. /* $NetBSD: nameser.h,v 1.7 1994/10/26 00:56:45 cgd Exp $ */
  4. /*
  5.  * Copyright (c) 1983, 1989 Regents of the University of California.
  6.  * All rights reserved.
  7.  *
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in the
  15.  *    documentation and/or other materials provided with the distribution.
  16.  * 3. All advertising materials mentioning features or use of this software
  17.  *    must display the following acknowledgement:
  18.  * This product includes software developed by the University of
  19.  * California, Berkeley and its contributors.
  20.  * 4. Neither the name of the University nor the names of its contributors
  21.  *    may be used to endorse or promote products derived from this software
  22.  *    without specific prior written permission.
  23.  *
  24.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  25.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  27.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  28.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  30.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  31.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  32.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  33.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  34.  * SUCH DAMAGE.
  35.  *
  36.  * @(#)nameser.h 5.25 (Berkeley) 4/3/91
  37.  */
  38. /*
  39. modification history
  40. --------------------
  41. 01b,29apr97,jag Changed T_NULL to T_NULL_RR to fix conflict with loadCoffLib.h
  42. 01b,02apr97,jag Change types from u_int*_t to uint*_t.
  43. 01a,11dec96,jag created from BSD4.4. Corrected bitfields to meet ANSI spec.
  44.                 changed STATUS to DNS_STATUS.
  45. */
  46. #ifndef __INCnameserh
  47. #define __INCnameserh
  48. #ifdef __cplusplus
  49. extern "C" {
  50. #endif
  51. #define BYTE_ORDER      _BYTE_ORDER
  52. #define LITTLE_ENDIAN   _LITTLE_ENDIAN
  53. #define BIG_ENDIAN      _BIG_ENDIAN
  54. /*
  55.  * Define constants based on rfc883
  56.  */
  57. #define PACKETSZ 512 /* maximum packet size */
  58. #define MAXDNAME 256 /* maximum domain name */
  59. #define MAXCDNAME 255 /* maximum compressed domain name */
  60. #define MAXLABEL 63 /* maximum length of domain label */
  61. /* Number of bytes of fixed size data in query structure */
  62. #define QFIXEDSZ 4
  63. /* number of bytes of fixed size data in resource record */
  64. #define RRFIXEDSZ 10
  65. /*
  66.  * Internet nameserver port number
  67.  */
  68. #define NAMESERVER_PORT 53
  69. /*
  70.  * Currently defined opcodes
  71.  */
  72. #define QUERY 0x0 /* standard query */
  73. #define IQUERY 0x1 /* inverse query */
  74. #define DNS_STATUS 0x2          /* nameserver status query*/
  75. /* #define xxx 0x3    0x3 reserved */
  76. /* non standard */
  77. #define UPDATEA 0x9 /* add resource record */
  78. #define UPDATED 0xa /* delete a specific resource record */
  79. #define UPDATEDA 0xb /* delete all named resource record */
  80. #define UPDATEM 0xc /* modify a specific resource record */
  81. #define UPDATEMA 0xd /* modify all named resource record */
  82. #define ZONEINIT 0xe /* initial zone transfer */
  83. #define ZONEREF 0xf /* incremental zone referesh */
  84. /*
  85.  * Currently defined response codes
  86.  */
  87. #define NOERROR 0 /* no error */
  88. #define FORMERR 1 /* format error */
  89. #define SERVFAIL 2 /* server failure */
  90. #define NXDOMAIN 3 /* non existent domain */
  91. #define NOTIMP 4 /* not implemented */
  92. #define REFUSED 5 /* query refused */
  93. /* non standard */
  94. #define NOCHANGE 0xf /* update failed to change db */
  95. /*
  96.  * Type values for resources and queries
  97.  */
  98. #define T_A 1 /* host address */
  99. #define T_NS 2 /* authoritative server */
  100. #define T_MD 3 /* mail destination */
  101. #define T_MF 4 /* mail forwarder */
  102. #define T_CNAME 5 /* connonical name */
  103. #define T_SOA 6 /* start of authority zone */
  104. #define T_MB 7 /* mailbox domain name */
  105. #define T_MG 8 /* mail group member */
  106. #define T_MR 9 /* mail rename name */
  107. #define T_NULL_RR 10 /* null resource record */
  108. #define T_WKS 11 /* well known service */
  109. #define T_PTR 12 /* domain name pointer */
  110. #define T_HINFO 13 /* host information */
  111. #define T_MINFO 14 /* mailbox information */
  112. #define T_MX 15 /* mail routing information */
  113. #define T_TXT 16 /* text strings */
  114. #define T_RP 17 /* responsible person */
  115. #define T_AFSDB 18 /* AFS cell database */
  116. #define T_NSAP 22 /* NSAP address */
  117. #define T_NSAP_PTR 23 /* reverse lookup for NSAP */
  118. /* non standard */
  119. #define T_UINFO 100 /* user (finger) information */
  120. #define T_UID 101 /* user ID */
  121. #define T_GID 102 /* group ID */
  122. #define T_UNSPEC 103 /* Unspecified format (binary data) */
  123. #define T_SA 200 /* shuffle address */
  124. /* Query type values which do not appear in resource records */
  125. #define T_AXFR 252 /* transfer zone of authority */
  126. #define T_MAILB 253 /* transfer mailbox records */
  127. #define T_MAILA 254 /* transfer mail agent records */
  128. #define T_ANY 255 /* wildcard match */
  129. /*
  130.  * Values for class field
  131.  */
  132. #define C_IN 1 /* the arpa internet */
  133. #define C_CHAOS 3 /* for chaos net at MIT */
  134. #define C_HS 4 /* for Hesiod name server at MIT */
  135. /* Query class values which do not appear in resource records */
  136. #define C_ANY 255 /* wildcard match */
  137. /*
  138.  * Status return codes for T_UNSPEC conversion routines
  139.  */
  140. #define CONV_SUCCESS     0
  141. #define CONV_OVERFLOW   -1
  142. #define CONV_BADFMT     -2
  143. #define CONV_BADCKSUM   -3
  144. #define CONV_BADBUFLEN -4
  145. /*
  146.  * Structure for query header, the order of the fields is machine and
  147.  * compiler dependent, in our case, the bits within a byte are assignd 
  148.  * least significant first, while the order of transmition is most 
  149.  * significant first.  This requires a somewhat confusing rearrangement.
  150.  */
  151. #if ((CPU_FAMILY==I960) && (defined __GNUC__))
  152. #pragma align 1                 /* tell gcc960 not to optimize alignments */
  153. #endif  /* CPU_FAMILY==I960 */
  154. typedef struct 
  155.     {
  156. u_int id:16, /* fields (Bytes 1-2) query identification number */
  157. #if BYTE_ORDER == BIG_ENDIAN
  158. /* fields in third byte */
  159.        qr:1, /* response flag */
  160.        opcode:4, /* purpose of message */
  161.        aa:1, /* authoritive answer */
  162.        tc:1, /* truncated message */
  163.        rd:1, /* recursion desired */
  164. /* fields in fourth byte */
  165.        ra:1, /* recursion available */
  166.        pr:1, /* primary server required (non standard) */
  167.        unused:2, /* unused bits */
  168.        rcode:4; /* response code */
  169. #endif
  170. #if BYTE_ORDER == LITTLE_ENDIAN || BYTE_ORDER == PDP_ENDIAN
  171. /* fields in third byte */
  172.        rd:1, /* recursion desired */
  173.        tc:1, /* truncated message */
  174.        aa:1, /* authoritive answer */
  175.        opcode:4, /* purpose of message */
  176.        qr:1, /* response flag */
  177. /* fields in fourth byte */
  178.        rcode:4, /* response code */
  179.        unused:2, /* unused bits */
  180.        pr:1, /* primary server required (non standard) */
  181.        ra:1; /* recursion available */
  182. #endif
  183. /* remaining bytes */
  184. u_short qdcount; /* number of question entries */
  185. u_short ancount; /* number of answer entries */
  186. u_short nscount; /* number of authority entries */
  187. u_short arcount; /* number of resource entries */
  188.     } HEADER;
  189. /*
  190.  * Defines for handling compressed domain names
  191.  */
  192. #define INDIR_MASK 0xc0
  193. /*
  194.  * Structure for passing resource records around.
  195.  */
  196. struct rrec {
  197. int16_t r_zone; /* zone number */
  198. int16_t r_class; /* class number */
  199. int16_t r_type; /* type number */
  200. uint32_t r_ttl; /* time to live */
  201. int r_size; /* size of data area */
  202. char *r_data; /* pointer to data */
  203. };
  204. #if ((CPU_FAMILY==I960) && (defined __GNUC__))
  205. #pragma align 0                 /* turn off alignment requirement */
  206. #endif  /* CPU_FAMILY==I960 */
  207. extern uint16_t _getshort();
  208. extern uint32_t _getlong();
  209. /*
  210.  * Inline versions of get/put short/long.
  211.  * Pointer is advanced; we assume that both arguments
  212.  * are lvalues and will already be in registers.
  213.  * cp MUST be u_char *.
  214.  */
  215. #define GETSHORT(s, cp) { 
  216. register u_char *t_cp = (u_char *)(cp); 
  217. (s) = ((uint16_t)t_cp[0] << 8) 
  218.     | ((uint16_t)t_cp[1]) ;
  219. (cp) += sizeof(uint16_t); 
  220. }
  221. #define GETLONG(l, cp) { 
  222. register u_char *t_cp = (u_char *)(cp); 
  223. (l) = ((uint32_t)t_cp[0] << 24) 
  224.     | ((uint32_t)t_cp[1] << 16) 
  225.     | ((uint32_t)t_cp[2] << 8) 
  226.     | ((uint32_t)t_cp[3]) ;
  227. (cp) += sizeof(uint32_t); 
  228. }
  229. #define PUTSHORT(s, cp) { 
  230. register uint16_t t_s = (uint16_t)(s); 
  231. register u_char *t_cp = (u_char *)(cp); 
  232. *t_cp++ = t_s >> 8; 
  233. *t_cp   = t_s; 
  234. (cp) += sizeof(uint16_t); 
  235. }
  236. /*
  237.  * Warning: PUTLONG --no-longer-- destroys its first argument.  if you
  238.  * were depending on this "feature", you will lose.
  239.  */
  240. #define PUTLONG(l, cp) { 
  241. register uint32_t t_l = (uint32_t)(l); 
  242. register u_char *t_cp = (u_char *)(cp); 
  243. *t_cp++ = t_l >> 24; 
  244. *t_cp++ = t_l >> 16; 
  245. *t_cp++ = t_l >> 8; 
  246. *t_cp   = t_l; 
  247. (cp) += sizeof(uint32_t); 
  248. }
  249. #ifdef __cplusplus
  250. }
  251. #endif
  252. #endif /* __INCnameserh */