2 * ++Copyright++ 1985, 1993
4 * Copyright (c) 1985, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * Portions Copyright (c) 1993 by Digital Equipment Corporation.
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.
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
56 #if defined(LIBC_SCCS) && !defined(lint)
57 static char sccsid
[] = "@(#)res_mkquery.c 8.1 (Berkeley) 6/4/93";
58 static char rcsid
[] = "$Id$";
59 #endif /* LIBC_SCCS and not lint */
61 #include <sys/param.h>
62 #include <netinet/in.h>
63 #include <arpa/nameser.h>
68 #if defined(BSD) && (BSD >= 199103)
71 # include "../conf/portability.h"
74 #if defined(USE_OPTIONS_H)
75 # include <../conf/options.h>
79 * Form all types of queries.
80 * Returns the size of the result or -1.
83 res_mkquery(op
, dname
, class, type
, data
, datalen
, newrr_in
, buf
, buflen
)
84 int op
; /* opcode of query */
85 const char *dname
; /* domain name */
86 int class, type
; /* class and type of query */
87 const u_char
*data
; /* resource record data */
88 int datalen
; /* length of data */
89 const u_char
*newrr_in
; /* new rr for modify or append */
90 u_char
*buf
; /* buffer to put query */
91 int buflen
; /* size of buffer */
97 struct rrec
*newrr
= (struct rrec
*) newrr_in
;
99 u_char
*dnptrs
[20], **dpp
, **lastdnptr
;
101 if ((_res
.options
& RES_INIT
) == 0 && res_init() == -1) {
102 h_errno
= NETDB_INTERNAL
;
106 if (_res
.options
& RES_DEBUG
)
107 printf(";; res_mkquery(%d, %s, %d, %d)\n",
108 op
, dname
, class, type
);
111 * Initialize header fields.
113 if ((buf
== NULL
) || (buflen
< HFIXEDSZ
))
115 bzero(buf
, HFIXEDSZ
);
117 hp
->id
= htons(++_res
.id
);
119 hp
->rd
= (_res
.options
& RES_RECURSE
) != 0;
126 lastdnptr
= dnptrs
+ sizeof dnptrs
/ sizeof dnptrs
[0];
128 * perform opcode specific processing
131 case QUERY
: /*FALLTHROUGH*/
133 if ((buflen
-= QFIXEDSZ
) < 0)
135 if ((n
= dn_comp(dname
, cp
, buflen
, dnptrs
, lastdnptr
)) < 0)
139 __putshort(type
, cp
);
141 __putshort(class, cp
);
143 hp
->qdcount
= htons(1);
144 if (op
== QUERY
|| data
== NULL
)
147 * Make an additional record for completion domain.
150 n
= dn_comp((char *)data
, cp
, buflen
, dnptrs
, lastdnptr
);
155 __putshort(T_NULL
, cp
);
157 __putshort(class, cp
);
163 hp
->arcount
= htons(1);
168 * Initialize answer section
170 if (buflen
< 1 + RRFIXEDSZ
+ datalen
)
172 *cp
++ = '\0'; /* no domain name */
173 __putshort(type
, cp
);
175 __putshort(class, cp
);
179 __putshort(datalen
, cp
);
182 bcopy(data
, cp
, datalen
);
185 hp
->ancount
= htons(1);
190 * For UPDATEM/UPDATEMA, do UPDATED/UPDATEDA followed by UPDATEA
191 * (Record to be modified is followed by its replacement in msg.)
198 * The res code for UPDATED and UPDATEDA is the same; user
199 * calls them differently: specifies data for UPDATED; server
200 * ignores data if specified for UPDATEDA.
203 buflen
-= RRFIXEDSZ
+ datalen
;
204 if ((n
= dn_comp(dname
, cp
, buflen
, dnptrs
, lastdnptr
)) < 0)
207 __putshort(type
, cp
);
209 __putshort(class, cp
);
213 __putshort(datalen
, cp
);
216 bcopy(data
, cp
, datalen
);
219 if ( (op
== UPDATED
) || (op
== UPDATEDA
) ) {
220 hp
->ancount
= htons(0);
223 /* Else UPDATEM/UPDATEMA, so drop into code for UPDATEA */
225 case UPDATEA
: /* Add new resource record */
226 buflen
-= RRFIXEDSZ
+ datalen
;
227 if ((n
= dn_comp(dname
, cp
, buflen
, dnptrs
, lastdnptr
)) < 0)
230 __putshort(newrr
->r_type
, cp
);
232 __putshort(newrr
->r_class
, cp
);
236 __putshort(newrr
->r_size
, cp
);
239 bcopy(newrr
->r_data
, cp
, newrr
->r_size
);
242 hp
->ancount
= htons(0);
244 #endif /* ALLOW_UPDATES */