source: rtems-libbsd/freebsd-userspace/lib/libc/nameser/ns_parse.c @ 028aaaf

4.1155-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since 028aaaf was 028aaaf, checked in by Joel Sherrill <joel.sherrill@…>, on 07/11/12 at 21:01:37

freebsd-userspace: All files in old libnetworking/libc now present

But they don't all compile. Multiple issues left to address.

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