source: rtems/cpukit/libnetworking/libc/res_mkquery.c @ 029c374c

4.104.114.95
Last change on this file since 029c374c was 029c374c, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/01/08 at 07:02:00

Stop using old-style function definitions.

  • Property mode set to 100644
File size: 6.3 KB
Line 
1/*
2 * Copyright (c) 1985, 1993
3 *    The Regents of the University of California.  All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
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 * 3. All advertising materials mentioning features or use of this software
14 *    must display the following acknowledgement:
15 *      This product includes software developed by the University of
16 *      California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 *    may be used to endorse or promote products derived from this software
19 *    without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
34/*
35 * Portions Copyright (c) 1993 by Digital Equipment Corporation.
36 *
37 * Permission to use, copy, modify, and distribute this software for any
38 * purpose with or without fee is hereby granted, provided that the above
39 * copyright notice and this permission notice appear in all copies, and that
40 * the name of Digital Equipment Corporation not be used in advertising or
41 * publicity pertaining to distribution of the document or software without
42 * specific, written prior permission.
43 *
44 * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
45 * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
46 * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
47 * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
48 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
49 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
50 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
51 * SOFTWARE.
52 */
53
54/*
55 * Portions Copyright (c) 1996 by Internet Software Consortium.
56 *
57 * Permission to use, copy, modify, and distribute this software for any
58 * purpose with or without fee is hereby granted, provided that the above
59 * copyright notice and this permission notice appear in all copies.
60 *
61 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
62 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
63 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
64 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
65 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
66 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
67 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
68 * SOFTWARE.
69 */
70
71#if HAVE_CONFIG_H
72#include "config.h"
73#endif
74
75#include <sys/types.h>
76#include <sys/param.h>
77#include <netinet/in.h>
78#include <arpa/nameser.h>
79#include <netdb.h>
80#include <resolv.h>
81#include <stdio.h>
82#include <string.h>
83
84#include "res_config.h"
85
86/*
87 * Form all types of queries.
88 * Returns the size of the result or -1.
89 */
90int
91res_mkquery(
92        int op,                 /* opcode of query */
93        const char *dname,      /* domain name */
94        int class, int type,    /* class and type of query */
95        const u_char *data,     /* resource record data */
96        int datalen,            /* length of data */
97        const u_char *newrr_in, /* new rr for modify or append */
98        u_char *buf,            /* buffer to put query */
99        int buflen)             /* size of buffer */
100{
101        register HEADER *hp;
102        register u_char *cp;
103        register int n;
104        u_char *dnptrs[20], **dpp, **lastdnptr;
105
106        if ((_res.options & RES_INIT) == 0 && res_init() == -1) {
107                h_errno = NETDB_INTERNAL;
108                return (-1);
109        }
110#ifdef DEBUG
111        if (_res.options & RES_DEBUG)
112                printf(";; res_mkquery(%d, %s, %d, %d)\n",
113                       op, dname, class, type);
114#endif
115        /*
116         * Initialize header fields.
117         */
118        if ((buf == NULL) || (buflen < HFIXEDSZ))
119                return (-1);
120        memset(buf, 0, HFIXEDSZ);
121        hp = (HEADER *) buf;
122        hp->id = htons(++_res.id);
123        hp->opcode = op;
124        hp->rd = (_res.options & RES_RECURSE) != 0;
125        hp->rcode = NOERROR;
126        cp = buf + HFIXEDSZ;
127        buflen -= HFIXEDSZ;
128        dpp = dnptrs;
129        *dpp++ = buf;
130        *dpp++ = NULL;
131        lastdnptr = dnptrs + sizeof dnptrs / sizeof dnptrs[0];
132        /*
133         * perform opcode specific processing
134         */
135        switch (op) {
136        case QUERY:     /*FALLTHROUGH*/
137        case NS_NOTIFY_OP:
138                if ((buflen -= QFIXEDSZ) < 0)
139                        return (-1);
140                if ((n = dn_comp(dname, cp, buflen, dnptrs, lastdnptr)) < 0)
141                        return (-1);
142                cp += n;
143                buflen -= n;
144                __putshort(type, cp);
145                cp += INT16SZ;
146                __putshort(class, cp);
147                cp += INT16SZ;
148                hp->qdcount = htons(1);
149                if (op == QUERY || data == NULL)
150                        break;
151                /*
152                 * Make an additional record for completion domain.
153                 */
154                buflen -= RRFIXEDSZ;
155                n = dn_comp((char *)data, cp, buflen, dnptrs, lastdnptr);
156                if (n < 0)
157                        return (-1);
158                cp += n;
159                buflen -= n;
160                __putshort(T_NULL, cp);
161                cp += INT16SZ;
162                __putshort(class, cp);
163                cp += INT16SZ;
164                __putlong(0, cp);
165                cp += INT32SZ;
166                __putshort(0, cp);
167                cp += INT16SZ;
168                hp->arcount = htons(1);
169                break;
170
171        case IQUERY:
172                /*
173                 * Initialize answer section
174                 */
175                if (buflen < 1 + RRFIXEDSZ + datalen)
176                        return (-1);
177                *cp++ = '\0';   /* no domain name */
178                __putshort(type, cp);
179                cp += INT16SZ;
180                __putshort(class, cp);
181                cp += INT16SZ;
182                __putlong(0, cp);
183                cp += INT32SZ;
184                __putshort(datalen, cp);
185                cp += INT16SZ;
186                if (datalen) {
187                        memcpy(cp, data, datalen);
188                        cp += datalen;
189                }
190                hp->ancount = htons(1);
191                break;
192
193        default:
194                return (-1);
195        }
196        return (cp - buf);
197}
Note: See TracBrowser for help on using the repository browser.