home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / ircd4652.zip / ircd-df-4.6.5-os2 / include / nameser.h < prev    next >
C/C++ Source or Header  |  1997-12-28  |  8KB  |  249 lines

  1. /*
  2.  * Copyright (c) 1983, 1989 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that: (1) source distributions retain this entire copyright
  7.  * notice and comment, and (2) distributions including binaries display
  8.  * the following acknowledgement:  ``This product includes software
  9.  * developed by the University of California, Berkeley and its contributors''
  10.  * in the documentation or other materials provided with the distribution
  11.  * and in all advertising materials mentioning features or use of this
  12.  * software. Neither the name of the University nor the names of its
  13.  * contributors may be used to endorse or promote products derived
  14.  * from this software without specific prior written permission.
  15.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  16.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  17.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  18.  *
  19.  *    @(#)nameser.h    5.24 (Berkeley) 6/1/90
  20.  */
  21.  
  22. /*
  23.  * Define constants based on rfc883
  24.  */
  25. #define PACKETSZ    512        /* maximum packet size */
  26. #define MAXDNAME    256        /* maximum domain name */
  27. #define MAXCDNAME    255        /* maximum compressed domain name */
  28. #define MAXLABEL    63        /* maximum length of domain label */
  29.     /* Number of bytes of fixed size data in query structure */
  30. #define QFIXEDSZ    4
  31.     /* number of bytes of fixed size data in resource record */
  32. #define RRFIXEDSZ    10
  33.  
  34. /*
  35.  * Internet nameserver port number
  36.  */
  37. #define NAMESERVER_PORT    53
  38.  
  39. /*
  40.  * Currently defined opcodes
  41.  */
  42. #define QUERY        0x0        /* standard query */
  43. #define IQUERY        0x1        /* inverse query */
  44. #define STATUS        0x2        /* nameserver status query */
  45. /*#define xxx        0x3        /* 0x3 reserved */
  46.     /* non standard */
  47. #define UPDATEA        0x9        /* add resource record */
  48. #define UPDATED        0xa        /* delete a specific resource record */
  49. #define UPDATEDA    0xb        /* delete all nemed resource record */
  50. #define UPDATEM        0xc        /* modify a specific resource record */
  51. #define UPDATEMA    0xd        /* modify all named resource record */
  52.  
  53. #define ZONEINIT    0xe        /* initial zone transfer */
  54. #define ZONEREF        0xf        /* incremental zone referesh */
  55.  
  56. /*
  57.  * Currently defined response codes
  58.  */
  59. #ifdef    NOERROR                /* defined by solaris2 in */
  60. #undef    NOERROR                /* <sys/stream.h> to be -1 */
  61. #endif
  62. #define NOERROR        0        /* no error */
  63. #define FORMERR        1        /* format error */
  64. #define SERVFAIL    2        /* server failure */
  65. #define NXDOMAIN    3        /* non existent domain */
  66. #define NOTIMP        4        /* not implemented */
  67. #define REFUSED        5        /* query refused */
  68.     /* non standard */
  69. #define NOCHANGE    0xf        /* update failed to change db */
  70.  
  71. /*
  72.  * Type values for resources and queries
  73.  */
  74. #define T_A        1        /* host address */
  75. #define T_NS        2        /* authoritative server */
  76. #define T_MD        3        /* mail destination */
  77. #define T_MF        4        /* mail forwarder */
  78. #define T_CNAME        5        /* connonical name */
  79. #define T_SOA        6        /* start of authority zone */
  80. #define T_MB        7        /* mailbox domain name */
  81. #define T_MG        8        /* mail group member */
  82. #define T_MR        9        /* mail rename name */
  83. #define T_NULL        10        /* null resource record */
  84. #define T_WKS        11        /* well known service */
  85. #define T_PTR        12        /* domain name pointer */
  86. #define T_HINFO        13        /* host information */
  87. #define T_MINFO        14        /* mailbox information */
  88. #define T_MX        15        /* mail routing information */
  89. #define T_TXT        16        /* text strings */
  90.     /* non standard */
  91. #define T_UINFO        100        /* user (finger) information */
  92. #define T_UID        101        /* user ID */
  93. #define T_GID        102        /* group ID */
  94. #define T_UNSPEC    103        /* Unspecified format (binary data) */
  95.     /* Query type values which do not appear in resource records */
  96. #define T_AXFR        252        /* transfer zone of authority */
  97. #define T_MAILB        253        /* transfer mailbox records */
  98. #define T_MAILA        254        /* transfer mail agent records */
  99. #define T_ANY        255        /* wildcard match */
  100.  
  101. /*
  102.  * Values for class field
  103.  */
  104.  
  105. #define C_IN        1        /* the arpa internet */
  106. #define C_CHAOS        3        /* for chaos net at MIT */
  107. #define C_HS        4        /* for Hesiod name server at MIT */
  108.     /* Query class values which do not appear in resource records */
  109. #define C_ANY        255        /* wildcard match */
  110.  
  111. /*
  112.  * Status return codes for T_UNSPEC conversion routines
  113.  */
  114. #define CONV_SUCCESS 0
  115. #define CONV_OVERFLOW -1
  116. #define CONV_BADFMT -2
  117. #define CONV_BADCKSUM -3
  118. #define CONV_BADBUFLEN -4
  119.  
  120. #ifndef BYTE_ORDER
  121. #define    LITTLE_ENDIAN    1234    /* least-significant byte first (vax) */
  122. #define    BIG_ENDIAN    4321    /* most-significant byte first (IBM, net) */
  123. #define    PDP_ENDIAN    3412    /* LSB first in word, MSW first in long (pdp) */
  124.  
  125. #if defined(vax) || defined(ns32000) || defined(sun386) || defined(MIPSEL) || \
  126.     defined(BIT_ZERO_ON_RIGHT) || defined(sequent) || defined(i386) ||\
  127.     defined(___vax__) || defined(__ns32000__) || defined(__sun386__) ||\
  128.     defined(__alpha) || defined(_WIN32)
  129. #define BYTE_ORDER    LITTLE_ENDIAN
  130.  
  131. #endif
  132. #if defined(sel) || defined(pyr) || defined(mc68000) || defined(sparc) || \
  133.     defined(is68k) || defined(tahoe) || defined(ibm032) || defined(ibm370) || \
  134.     defined(MIPSEB) || defined(__hpux) || defined(__convex__) || \
  135.     defined(__pyr__) || defined(__mc68000__) || defined(__sparc__) ||\
  136.     defined(_IBMR2) || defined (BIT_ZERO_ON_LEFT)
  137. #define BYTE_ORDER    BIG_ENDIAN
  138. #endif
  139. #endif /* BYTE_ORDER */
  140.  
  141. #ifndef BYTE_ORDER
  142. /* you must determine what the correct bit order is for your compiler */
  143.     UNDEFINED_BIT_ORDER;
  144. #endif
  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.  
  152. typedef struct {
  153.     u_short    id;        /* query identification number */
  154. #if BYTE_ORDER == BIG_ENDIAN
  155.             /* fields in third byte */
  156.     u_char    qr:1;        /* response flag */
  157.     u_char    opcode:4;    /* purpose of message */
  158.     u_char    aa:1;        /* authoritive answer */
  159.     u_char    tc:1;        /* truncated message */
  160.     u_char    rd:1;        /* recursion desired */
  161.             /* fields in fourth byte */
  162.     u_char    ra:1;        /* recursion available */
  163.     u_char    pr:1;    /* primary server required (non standard) */
  164.     u_char    unused:2;    /* unused bits */
  165.     u_char    rcode:4;    /* response code */
  166. #endif
  167. #if BYTE_ORDER == LITTLE_ENDIAN || BYTE_ORDER == PDP_ENDIAN
  168.             /* fields in third byte */
  169.     u_char    rd:1;        /* recursion desired */
  170.     u_char    tc:1;        /* truncated message */
  171.     u_char    aa:1;        /* authoritive answer */
  172.     u_char    opcode:4;    /* purpose of message */
  173.     u_char    qr:1;        /* response flag */
  174.             /* fields in fourth byte */
  175.     u_char    rcode:4;    /* response code */
  176.     u_char    unused:2;    /* unused bits */
  177.     u_char    pr:1;    /* primary server required (non standard) */
  178.     u_char    ra:1;        /* recursion available */
  179. #endif
  180.             /* remaining bytes */
  181.     u_short    qdcount;    /* number of question entries */
  182.     u_short    ancount;    /* number of answer entries */
  183.     u_short    nscount;    /* number of authority entries */
  184.     u_short    arcount;    /* number of resource entries */
  185. } HEADER;
  186.  
  187. /*
  188.  * Defines for handling compressed domain names
  189.  */
  190. #define INDIR_MASK    0xc0
  191.  
  192. /*
  193.  * Structure for passing resource records around.
  194.  */
  195. struct rrec {
  196.     short    r_zone;            /* zone number */
  197.     short    r_class;        /* class number */
  198.     short    r_type;            /* type number */
  199. #ifdef    __alpha
  200.     u_int    r_ttl;            /* time to live */
  201. #else
  202.     u_long    r_ttl;            /* time to live */
  203. #endif
  204.     int    r_size;            /* size of data area */
  205.     char    *r_data;        /* pointer to data */
  206. };
  207.  
  208. extern    u_short    _getshort();
  209. #ifdef __alpha
  210. extern    u_int    _getlong();
  211. #else
  212. extern    u_long    _getlong();
  213. #endif
  214.  
  215. /*
  216.  * Inline versions of get/put short/long.
  217.  * Pointer is advanced; we assume that both arguments
  218.  * are lvalues and will already be in registers.
  219.  * cp MUST be u_char *.
  220.  */
  221. #define GETSHORT(s, cp) { \
  222.     (s) = *(cp)++ << 8; \
  223.     (s) |= *(cp)++; \
  224. }
  225.  
  226. #define GETLONG(l, cp) { \
  227.     (l) = *(cp)++ << 8; \
  228.     (l) |= *(cp)++; (l) <<= 8; \
  229.     (l) |= *(cp)++; (l) <<= 8; \
  230.     (l) |= *(cp)++; \
  231. }
  232.  
  233.  
  234. #define PUTSHORT(s, cp) { \
  235.     *(cp)++ = (s) >> 8; \
  236.     *(cp)++ = (s); \
  237. }
  238.  
  239. /*
  240.  * Warning: PUTLONG destroys its first argument.
  241.  */
  242. #define PUTLONG(l, cp) { \
  243.     (cp)[3] = l; \
  244.     (cp)[2] = (l >>= 8); \
  245.     (cp)[1] = (l >>= 8); \
  246.     (cp)[0] = l >> 8; \
  247.     (cp) += sizeof(u_long); \
  248. }
  249.