Add BIND 9.2.4rc7.
[dragonfly.git] / contrib / bind-9.2.4rc7 / lib / bind / nameser / ns_parse.c
blobe438e81d8416aa0f6ae17532ea7d074f42f39ffc
1 /*
2 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3 * Copyright (c) 1996,1999 by Internet Software Consortium.
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
15 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 #ifndef lint
19 static const char rcsid[] = "$Id: ns_parse.c,v 1.3.2.2 2004/03/09 09:17:37 marka Exp $";
20 #endif
22 /* Import. */
24 #include "port_before.h"
26 #include <sys/types.h>
28 #include <netinet/in.h>
29 #include <arpa/nameser.h>
31 #include <errno.h>
32 #include <resolv.h>
33 #include <string.h>
35 #include "port_after.h"
37 /* Forward. */
39 static void setsection(ns_msg *msg, ns_sect sect);
41 /* Macros. */
43 #define RETERR(err) do { errno = (err); return (-1); } while (0)
45 /* Public. */
47 /* These need to be in the same order as the nres.h:ns_flag enum. */
48 struct _ns_flagdata _ns_flagdata[16] = {
49 { 0x8000, 15 }, /* qr. */
50 { 0x7800, 11 }, /* opcode. */
51 { 0x0400, 10 }, /* aa. */
52 { 0x0200, 9 }, /* tc. */
53 { 0x0100, 8 }, /* rd. */
54 { 0x0080, 7 }, /* ra. */
55 { 0x0040, 6 }, /* z. */
56 { 0x0020, 5 }, /* ad. */
57 { 0x0010, 4 }, /* cd. */
58 { 0x000f, 0 }, /* rcode. */
59 { 0x0000, 0 }, /* expansion (1/6). */
60 { 0x0000, 0 }, /* expansion (2/6). */
61 { 0x0000, 0 }, /* expansion (3/6). */
62 { 0x0000, 0 }, /* expansion (4/6). */
63 { 0x0000, 0 }, /* expansion (5/6). */
64 { 0x0000, 0 }, /* expansion (6/6). */
67 int ns_msg_getflag(ns_msg handle, int flag) {
68 return(((handle)._flags & _ns_flagdata[flag].mask) >> _ns_flagdata[flag].shift);
71 int
72 ns_skiprr(const u_char *ptr, const u_char *eom, ns_sect section, int count) {
73 const u_char *optr = ptr;
75 for ((void)NULL; count > 0; count--) {
76 int b, rdlength;
78 b = dn_skipname(ptr, eom);
79 if (b < 0)
80 RETERR(EMSGSIZE);
81 ptr += b/*Name*/ + NS_INT16SZ/*Type*/ + NS_INT16SZ/*Class*/;
82 if (section != ns_s_qd) {
83 if (ptr + NS_INT32SZ + NS_INT16SZ > eom)
84 RETERR(EMSGSIZE);
85 ptr += NS_INT32SZ/*TTL*/;
86 NS_GET16(rdlength, ptr);
87 ptr += rdlength/*RData*/;
90 if (ptr > eom)
91 RETERR(EMSGSIZE);
92 return (ptr - optr);
95 int
96 ns_initparse(const u_char *msg, int msglen, ns_msg *handle) {
97 const u_char *eom = msg + msglen;
98 int i;
100 memset(handle, 0x5e, sizeof *handle);
101 handle->_msg = msg;
102 handle->_eom = eom;
103 if (msg + NS_INT16SZ > eom)
104 RETERR(EMSGSIZE);
105 NS_GET16(handle->_id, msg);
106 if (msg + NS_INT16SZ > eom)
107 RETERR(EMSGSIZE);
108 NS_GET16(handle->_flags, msg);
109 for (i = 0; i < ns_s_max; i++) {
110 if (msg + NS_INT16SZ > eom)
111 RETERR(EMSGSIZE);
112 NS_GET16(handle->_counts[i], msg);
114 for (i = 0; i < ns_s_max; i++)
115 if (handle->_counts[i] == 0)
116 handle->_sections[i] = NULL;
117 else {
118 int b = ns_skiprr(msg, eom, (ns_sect)i,
119 handle->_counts[i]);
121 if (b < 0)
122 return (-1);
123 handle->_sections[i] = msg;
124 msg += b;
126 if (msg != eom)
127 RETERR(EMSGSIZE);
128 setsection(handle, ns_s_max);
129 return (0);
133 ns_parserr(ns_msg *handle, ns_sect section, int rrnum, ns_rr *rr) {
134 int b;
135 int tmp;
137 /* Make section right. */
138 if ((tmp = section) < 0 || section >= ns_s_max)
139 RETERR(ENODEV);
140 if (section != handle->_sect)
141 setsection(handle, section);
143 /* Make rrnum right. */
144 if (rrnum == -1)
145 rrnum = handle->_rrnum;
146 if (rrnum < 0 || rrnum >= handle->_counts[(int)section])
147 RETERR(ENODEV);
148 if (rrnum < handle->_rrnum)
149 setsection(handle, section);
150 if (rrnum > handle->_rrnum) {
151 b = ns_skiprr(handle->_msg_ptr, handle->_eom, section,
152 rrnum - handle->_rrnum);
154 if (b < 0)
155 return (-1);
156 handle->_msg_ptr += b;
157 handle->_rrnum = rrnum;
160 /* Do the parse. */
161 b = dn_expand(handle->_msg, handle->_eom,
162 handle->_msg_ptr, rr->name, NS_MAXDNAME);
163 if (b < 0)
164 return (-1);
165 handle->_msg_ptr += b;
166 if (handle->_msg_ptr + NS_INT16SZ + NS_INT16SZ > handle->_eom)
167 RETERR(EMSGSIZE);
168 NS_GET16(rr->type, handle->_msg_ptr);
169 NS_GET16(rr->rr_class, handle->_msg_ptr);
170 if (section == ns_s_qd) {
171 rr->ttl = 0;
172 rr->rdlength = 0;
173 rr->rdata = NULL;
174 } else {
175 if (handle->_msg_ptr + NS_INT32SZ + NS_INT16SZ > handle->_eom)
176 RETERR(EMSGSIZE);
177 NS_GET32(rr->ttl, handle->_msg_ptr);
178 NS_GET16(rr->rdlength, handle->_msg_ptr);
179 if (handle->_msg_ptr + rr->rdlength > handle->_eom)
180 RETERR(EMSGSIZE);
181 rr->rdata = handle->_msg_ptr;
182 handle->_msg_ptr += rr->rdlength;
184 if (++handle->_rrnum > handle->_counts[(int)section])
185 setsection(handle, (ns_sect)((int)section + 1));
187 /* All done. */
188 return (0);
191 /* Private. */
193 static void
194 setsection(ns_msg *msg, ns_sect sect) {
195 msg->_sect = sect;
196 if (sect == ns_s_max) {
197 msg->_rrnum = -1;
198 msg->_msg_ptr = NULL;
199 } else {
200 msg->_rrnum = 0;
201 msg->_msg_ptr = msg->_sections[(int)sect];