2 * Copyright (c) 1983, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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 * 4. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
32 * Copyright (c) 1996-1999 by Internet Software Consortium.
34 * Permission to use, copy, modify, and distribute this software for any
35 * purpose with or without fee is hereby granted, provided that the above
36 * copyright notice and this permission notice appear in all copies.
38 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
39 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
40 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
41 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
42 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
43 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
44 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
48 #ifndef _ARPA_NAMESER_H_
49 #define _ARPA_NAMESER_H_
51 #include <sys/param.h>
52 #include <sys/types.h>
56 * Define constants based on RFC 883, RFC 1034, RFC 1035
58 #define NS_PACKETSZ 512 /*%< default UDP packet size */
59 #define NS_MAXDNAME 1025 /*%< maximum domain name */
60 #define NS_MAXMSG 65535 /*%< maximum message size */
61 #define NS_MAXCDNAME 255 /*%< maximum compressed domain name */
62 #define NS_MAXLABEL 63 /*%< maximum length of domain label */
63 #define NS_HFIXEDSZ 12 /*%< #/bytes of fixed data in header */
64 #define NS_QFIXEDSZ 4 /*%< #/bytes of fixed data in query */
65 #define NS_RRFIXEDSZ 10 /*%< #/bytes of fixed data in r record */
66 #define NS_INT32SZ 4 /*%< #/bytes of data in a uint32_t */
67 #define NS_INT16SZ 2 /*%< #/bytes of data in a uint16_t */
68 #define NS_INT8SZ 1 /*%< #/bytes of data in a uint8_t */
69 #define NS_INADDRSZ 4 /*%< IPv4 T_A */
70 #define NS_IN6ADDRSZ 16 /*%< IPv6 T_AAAA */
71 #define NS_CMPRSFLGS 0xc0 /*%< Flag bits indicating name compression. */
72 #define NS_DEFAULTPORT 53 /*%< For both TCP and UDP. */
74 * These can be expanded with synonyms, just keep ns_parse.c:ns_parserecord()
77 typedef enum __ns_sect
{
78 ns_s_qd
= 0, /*%< Query: Question. */
79 ns_s_zn
= 0, /*%< Update: Zone. */
80 ns_s_an
= 1, /*%< Query: Answer. */
81 ns_s_pr
= 1, /*%< Update: Prerequisites. */
82 ns_s_ns
= 2, /*%< Query: Name servers. */
83 ns_s_ud
= 2, /*%< Update: Update. */
84 ns_s_ar
= 3, /*%< Query|Update: Additional records. */
89 * This is a message handle. It is caller allocated and has no dynamic data.
90 * This structure is intended to be opaque to all but ns_parse.c, thus the
91 * leading _'s on the member names. Use the accessor functions, not the _'s.
93 typedef struct __ns_msg
{
94 const unsigned char *_msg
, *_eom
;
95 uint16_t _id
, _flags
, _counts
[ns_s_max
];
96 const unsigned char *_sections
[ns_s_max
];
99 const unsigned char *_msg_ptr
;
102 /* Private data structure - do not use from outside library. */
103 struct _ns_flagdata
{ int mask
, shift
; };
104 extern const struct _ns_flagdata _ns_flagdata
[];
106 /* Accessor macros - this is part of the public interface. */
108 #define ns_msg_id(handle) ((handle)._id + 0)
109 #define ns_msg_base(handle) ((handle)._msg + 0)
110 #define ns_msg_end(handle) ((handle)._eom + 0)
111 #define ns_msg_size(handle) ((handle)._eom - (handle)._msg)
112 #define ns_msg_count(handle, section) ((handle)._counts[section] + 0)
115 * This is a parsed record. It is caller allocated and has no dynamic data.
117 typedef struct __ns_rr
{
118 char name
[NS_MAXDNAME
];
123 const unsigned char * rdata
;
126 /* Accessor macros - this is part of the public interface. */
127 #define ns_rr_name(rr) (((rr).name[0] != '\0') ? (rr).name : ".")
128 #define ns_rr_type(rr) ((ns_type)((rr).type + 0))
129 #define ns_rr_class(rr) ((ns_class)((rr).rr_class + 0))
130 #define ns_rr_ttl(rr) ((rr).ttl + 0)
131 #define ns_rr_rdlen(rr) ((rr).rdlength + 0)
132 #define ns_rr_rdata(rr) ((rr).rdata + 0)
135 * These don't have to be in the same order as in the packet flags word,
136 * and they can even overlap in some cases, but they will need to be kept
137 * in synch with ns_parse.c:ns_flagdata[].
139 typedef enum __ns_flag
{
140 ns_f_qr
, /*%< Question/Response. */
141 ns_f_opcode
, /*%< Operation code. */
142 ns_f_aa
, /*%< Authoritative Answer. */
143 ns_f_tc
, /*%< Truncation occurred. */
144 ns_f_rd
, /*%< Recursion Desired. */
145 ns_f_ra
, /*%< Recursion Available. */
147 ns_f_ad
, /*%< Authentic Data (DNSSEC). */
148 ns_f_cd
, /*%< Checking Disabled (DNSSEC). */
149 ns_f_rcode
, /*%< Response code. */
154 * Currently defined opcodes.
156 typedef enum __ns_opcode
{
157 ns_o_query
= 0, /*%< Standard query. */
158 ns_o_iquery
= 1, /*%< Inverse query (deprecated/unsupported). */
159 ns_o_status
= 2, /*%< Name server status query (unsupported). */
160 /* Opcode 3 is undefined/reserved. */
161 ns_o_notify
= 4, /*%< Zone change notification. */
162 ns_o_update
= 5, /*%< Zone update message. */
167 * Currently defined response codes.
169 typedef enum __ns_rcode
{
170 ns_r_noerror
= 0, /*%< No error occurred. */
171 ns_r_formerr
= 1, /*%< Format error. */
172 ns_r_servfail
= 2, /*%< Server failure. */
173 ns_r_nxdomain
= 3, /*%< Name error. */
174 ns_r_notimpl
= 4, /*%< Unimplemented. */
175 ns_r_refused
= 5, /*%< Operation refused. */
176 /* these are for BIND_UPDATE */
177 ns_r_yxdomain
= 6, /*%< Name exists */
178 ns_r_yxrrset
= 7, /*%< RRset exists */
179 ns_r_nxrrset
= 8, /*%< RRset does not exist */
180 ns_r_notauth
= 9, /*%< Not authoritative for zone */
181 ns_r_notzone
= 10, /*%< Zone of record different from zone section */
183 /* The following are EDNS extended rcodes */
185 /* The following are TSIG errors */
192 typedef enum __ns_update_operation
{
196 } ns_update_operation
;
199 * This structure is used for TSIG authenticated messages
202 char name
[NS_MAXDNAME
], alg
[NS_MAXDNAME
];
206 typedef struct ns_tsig_key ns_tsig_key
;
209 * This structure is used for TSIG authenticated TCP messages
211 struct ns_tcp_tsig_state
{
215 unsigned char sig
[NS_PACKETSZ
];
218 typedef struct ns_tcp_tsig_state ns_tcp_tsig_state
;
220 #define NS_TSIG_FUDGE 300
221 #define NS_TSIG_TCP_COUNT 100
222 #define NS_TSIG_ALG_HMAC_MD5 "HMAC-MD5.SIG-ALG.REG.INT"
224 #define NS_TSIG_ERROR_NO_TSIG -10
225 #define NS_TSIG_ERROR_NO_SPACE -11
226 #define NS_TSIG_ERROR_FORMERR -12
229 * Currently defined type values for resources and queries.
231 typedef enum __ns_type
285 ns_t_nsec3param
= 51,
294 ns_t_openpgpkey
= 61,
324 * Values for class field
326 typedef enum __ns_class
{
327 ns_c_invalid
= 0, /*%< Cookie. */
328 ns_c_in
= 1, /*%< Internet. */
329 ns_c_2
= 2, /*%< unallocated/unsupported. */
330 ns_c_chaos
= 3, /*%< MIT Chaos-net. */
331 ns_c_hs
= 4, /*%< MIT Hesiod. */
332 /* Query class values which do not appear in resource records */
333 ns_c_none
= 254, /*%< for prereq. sections in update requests */
334 ns_c_any
= 255, /*%< Wildcard match. */
338 /* Certificate type values in CERT resource records. */
339 typedef enum __ns_cert_types
{
340 cert_t_pkix
= 1, /*%< PKIX (X.509v3) */
341 cert_t_spki
= 2, /*%< SPKI */
342 cert_t_pgp
= 3, /*%< PGP */
343 cert_t_url
= 253, /*%< URL private type */
344 cert_t_oid
= 254 /*%< OID private type */
348 * EDNS0 extended flags and option codes, host order.
350 #define NS_OPT_DNSSEC_OK 0x8000U
351 #define NS_OPT_NSID 3
354 * Inline versions of get/put short/long. Pointer is advanced.
356 #define NS_GET16(s, cp) do { \
357 const unsigned char *t_cp = (const unsigned char *)(cp); \
358 (s) = ((uint16_t)t_cp[0] << 8) \
359 | ((uint16_t)t_cp[1]) \
361 (cp) += NS_INT16SZ; \
364 #define NS_GET32(l, cp) do { \
365 const unsigned char *t_cp = (const unsigned char *)(cp); \
366 (l) = ((uint32_t)t_cp[0] << 24) \
367 | ((uint32_t)t_cp[1] << 16) \
368 | ((uint32_t)t_cp[2] << 8) \
369 | ((uint32_t)t_cp[3]) \
371 (cp) += NS_INT32SZ; \
374 #define NS_PUT16(s, cp) do { \
375 uint16_t t_s = (uint16_t)(s); \
376 unsigned char *t_cp = (unsigned char *)(cp); \
377 *t_cp++ = t_s >> 8; \
379 (cp) += NS_INT16SZ; \
382 #define NS_PUT32(l, cp) do { \
383 uint32_t t_l = (uint32_t)(l); \
384 unsigned char *t_cp = (unsigned char *)(cp); \
385 *t_cp++ = t_l >> 24; \
386 *t_cp++ = t_l >> 16; \
387 *t_cp++ = t_l >> 8; \
389 (cp) += NS_INT32SZ; \
393 int ns_msg_getflag (ns_msg
, int) __THROW
;
394 unsigned int ns_get16 (const unsigned char *) __THROW
;
395 unsigned long ns_get32 (const unsigned char *) __THROW
;
396 void ns_put16 (unsigned int, unsigned char *) __THROW
;
397 void ns_put32 (unsigned long, unsigned char *) __THROW
;
398 int ns_initparse (const unsigned char *, int, ns_msg
*) __THROW
;
399 int ns_skiprr (const unsigned char *, const unsigned char *,
400 ns_sect
, int) __THROW
;
401 int ns_parserr (ns_msg
*, ns_sect
, int, ns_rr
*) __THROW
;
402 int ns_sprintrr (const ns_msg
*, const ns_rr
*,
403 const char *, const char *, char *, size_t)
405 int ns_sprintrrf (const unsigned char *, size_t, const char *,
406 ns_class
, ns_type
, unsigned long,
407 const unsigned char *, size_t, const char *,
408 const char *, char *, size_t) __THROW
;
409 int ns_format_ttl (unsigned long, char *, size_t) __THROW
;
410 int ns_parse_ttl (const char *, unsigned long *) __THROW
;
411 uint32_t ns_datetosecs (const char *, int *) __THROW
;
412 int ns_name_ntol (const unsigned char *, unsigned char *, size_t)
414 int ns_name_ntop (const unsigned char *, char *, size_t) __THROW
;
415 int ns_name_pton (const char *, unsigned char *, size_t) __THROW
;
416 int ns_name_unpack (const unsigned char *, const unsigned char *,
417 const unsigned char *, unsigned char *, size_t)
419 int ns_name_pack (const unsigned char *, unsigned char *, int,
420 const unsigned char **, const unsigned char **)
422 int ns_name_uncompress (const unsigned char *,
423 const unsigned char *,
424 const unsigned char *,
425 char *, size_t) __THROW
;
426 int ns_name_compress (const char *, unsigned char *, size_t,
427 const unsigned char **,
428 const unsigned char **) __THROW
;
429 int ns_name_skip (const unsigned char **, const unsigned char *)
431 void ns_name_rollback (const unsigned char *,
432 const unsigned char **,
433 const unsigned char **) __THROW
;
434 int ns_samedomain (const char *, const char *) __THROW
;
435 int ns_subdomain (const char *, const char *) __THROW
;
436 int ns_makecanon (const char *, char *, size_t) __THROW
;
437 int ns_samename (const char *, const char *) __THROW
;
440 #include <arpa/nameser_compat.h>
442 #endif /* !_ARPA_NAMESER_H_ */