2 * Copyright (c) 1985, 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 * 3. 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 * Portions Copyright (c) 1993 by Digital Equipment Corporation.
33 * Permission to use, copy, modify, and distribute this software for any
34 * purpose with or without fee is hereby granted, provided that the above
35 * copyright notice and this permission notice appear in all copies, and that
36 * the name of Digital Equipment Corporation not be used in advertising or
37 * publicity pertaining to distribution of the document or software without
38 * specific, written prior permission.
40 * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
41 * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
42 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
43 * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
44 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
45 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
46 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
51 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
52 * Portions Copyright (c) 1996-1999 by Internet Software Consortium.
54 * Permission to use, copy, modify, and distribute this software for any
55 * purpose with or without fee is hereby granted, provided that the above
56 * copyright notice and this permission notice appear in all copies.
58 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
59 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
60 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
61 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
62 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
63 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
64 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
67 #if defined(LIBC_SCCS) && !defined(lint)
68 static const char sccsid
[] = "@(#)res_mkquery.c 8.1 (Berkeley) 6/4/93";
69 static const char rcsid
[] = "$Id: res_mkquery.c,v 1.6.672.1 2008/04/03 02:12:21 marka Exp $";
70 #endif /* LIBC_SCCS and not lint */
72 #include "port_before.h"
73 #include <sys/types.h>
74 #include <sys/param.h>
75 #include <netinet/in.h>
76 #include <arpa/nameser.h>
81 #include "port_after.h"
83 /* Options. Leave them on. */
86 extern const char *_res_opcodes
[];
89 * Form all types of queries.
90 * Returns the size of the result or -1.
93 res_nmkquery(res_state statp
,
94 int op
, /*!< opcode of query */
95 const char *dname
, /*!< domain name */
96 int class, int type
, /*!< class and type of query */
97 const u_char
*data
, /*!< resource record data */
98 int datalen
, /*!< length of data */
99 const u_char
*newrr_in
, /*!< new rr for modify or append */
100 u_char
*buf
, /*!< buffer to put query */
101 int buflen
) /*!< size of buffer */
106 u_char
*dnptrs
[20], **dpp
, **lastdnptr
;
111 if (statp
->options
& RES_DEBUG
)
112 printf(";; res_nmkquery(%s, %s, %s, %s)\n",
113 _res_opcodes
[op
], dname
, p_class(class), p_type(type
));
116 * Initialize header fields.
118 if ((buf
== NULL
) || (buflen
< HFIXEDSZ
))
120 memset(buf
, 0, HFIXEDSZ
);
122 hp
->id
= htons(++statp
->id
);
124 hp
->rd
= (statp
->options
& RES_RECURSE
) != 0U;
131 lastdnptr
= dnptrs
+ NELEM(dnptrs
);
133 * perform opcode specific processing
136 case QUERY
: /*FALLTHROUGH*/
138 if (ep
- cp
< QFIXEDSZ
)
140 if ((n
= dn_comp(dname
, cp
, ep
- cp
- QFIXEDSZ
, dnptrs
,
148 hp
->qdcount
= htons(1);
149 if (op
== QUERY
|| data
== NULL
)
152 * Make an additional record for completion domain.
154 if ((ep
- cp
) < RRFIXEDSZ
)
156 n
= dn_comp((const char *)data
, cp
, ep
- cp
- RRFIXEDSZ
,
161 ns_put16(T_NULL
, cp
);
169 hp
->arcount
= htons(1);
174 * Initialize answer section
176 if (ep
- cp
< 1 + RRFIXEDSZ
+ datalen
)
178 *cp
++ = '\0'; /*%< no domain name */
185 ns_put16(datalen
, cp
);
188 memcpy(cp
, data
, datalen
);
191 hp
->ancount
= htons(1);
201 /* attach OPT pseudo-RR, as documented in RFC2671 (EDNS0). */
204 res_nopt(res_state statp
,
205 int n0
, /*%< current offset in buffer */
206 u_char
*buf
, /*%< buffer to put query */
207 int buflen
, /*%< size of buffer */
208 int anslen
) /*%< UDP answer buffer size */
215 if ((statp
->options
& RES_DEBUG
) != 0U)
216 printf(";; res_nopt()\n");
223 if ((ep
- cp
) < 1 + RRFIXEDSZ
)
226 *cp
++ = 0; /*%< "." */
227 ns_put16(ns_t_opt
, cp
); /*%< TYPE */
231 ns_put16(anslen
& 0xffff, cp
); /*%< CLASS = UDP payload size */
233 *cp
++ = NOERROR
; /*%< extended RCODE */
234 *cp
++ = 0; /*%< EDNS version */
236 if (statp
->options
& RES_USE_DNSSEC
) {
238 if (statp
->options
& RES_DEBUG
)
239 printf(";; res_opt()... ENDS0 DNSSEC\n");
241 flags
|= NS_OPT_DNSSEC_OK
;
246 ns_put16(0U, cp
); /*%< RDLEN */
249 hp
->arcount
= htons(ntohs(hp
->arcount
) + 1);
255 * Construct variable data (RDATA) block for OPT psuedo-RR, append it
256 * to the buffer, then update the RDLEN field (previously set to zero by
257 * res_nopt()) with the new RDATA length.
260 res_nopt_rdata(res_state statp
,
261 int n0
, /*%< current offset in buffer */
262 u_char
*buf
, /*%< buffer to put query */
263 int buflen
, /*%< size of buffer */
264 u_char
*rdata
, /*%< ptr to start of opt rdata */
265 u_short code
, /*%< OPTION-CODE */
266 u_short len
, /*%< OPTION-LENGTH */
267 u_char
*data
) /*%< OPTION_DATA */
272 if ((statp
->options
& RES_DEBUG
) != 0U)
273 printf(";; res_nopt_rdata()\n");
279 if ((ep
- cp
) < (4 + len
))
282 if (rdata
< (buf
+ 2) || rdata
>= ep
)
291 memcpy(cp
, data
, len
);
295 ns_put16(len
, rdata
- 2); /* Update RDLEN field */