]> git.ipfire.org Git - thirdparty/glibc.git/blame - resolv/res_debug.c
Remove __long_double_t.
[thirdparty/glibc.git] / resolv / res_debug.c
CommitLineData
28f540f4 1/*
b43b13ac 2 * Copyright (c) 1985
28f540f4 3 * The Regents of the University of California. All rights reserved.
0a463fa9 4 *
28f540f4
RM
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.
28f540f4
RM
13 * 4. 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.
0a463fa9 16 *
28f540f4
RM
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
27 * SUCH DAMAGE.
b43b13ac
UD
28 */
29
30/*
28f540f4 31 * Portions Copyright (c) 1993 by Digital Equipment Corporation.
0a463fa9 32 *
28f540f4
RM
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.
0a463fa9 39 *
28f540f4
RM
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
47 * SOFTWARE.
b43b13ac
UD
48 */
49
50/*
df21c858
UD
51 * Portions Copyright (c) 1995 by International Business Machines, Inc.
52 *
53 * International Business Machines, Inc. (hereinafter called IBM) grants
54 * permission under its copyrights to use, copy, modify, and distribute this
55 * Software with or without fee, provided that the above copyright notice and
56 * all paragraphs of this notice appear in all copies, and that the name of IBM
57 * not be used in connection with the marketing of any product incorporating
58 * the Software or modifications thereof, without specific, written prior
59 * permission.
60 *
61 * To the extent it has a right to do so, IBM grants an immunity from suit
62 * under its patents, if any, for the use, sale or manufacture of products to
63 * the extent that such products are used for performing Domain Name System
64 * dynamic updates in TCP/IP networks by means of the Software. No immunity is
65 * granted for any product per se or for any other function of any product.
66 *
67 * THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES,
68 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
69 * PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL,
70 * DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING
71 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN
72 * IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES.
b43b13ac
UD
73 */
74
75/*
76 * Portions Copyright (c) 1996-1999 by Internet Software Consortium.
77 *
78 * Permission to use, copy, modify, and distribute this software for any
79 * purpose with or without fee is hereby granted, provided that the above
80 * copyright notice and this permission notice appear in all copies.
81 *
82 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
83 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
84 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
85 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
86 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
87 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
88 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
89 * SOFTWARE.
28f540f4
RM
90 */
91
fa0bc87c 92#include <sys/types.h>
b43b13ac 93#include <sys/param.h>
fa0bc87c 94#include <sys/socket.h>
b43b13ac 95
28f540f4
RM
96#include <netinet/in.h>
97#include <arpa/inet.h>
98#include <arpa/nameser.h>
99
58e07151 100#include <ctype.h>
b43b13ac
UD
101#include <errno.h>
102#include <math.h>
3d61b63c 103#include <netdb.h>
b76e0659 104#include <resolv/resolv-internal.h>
df21c858 105#include <stdio.h>
b43b13ac
UD
106#include <stdlib.h>
107#include <string.h>
df21c858 108#include <time.h>
6781d8e6 109#include <shlib-compat.h>
df21c858 110
b43b13ac
UD
111#ifdef SPRINTF_CHAR
112# define SPRINTF(x) strlen(sprintf/**/x)
28f540f4 113#else
b43b13ac 114# define SPRINTF(x) sprintf x
28f540f4
RM
115#endif
116
6f9d8e68 117extern const char *_res_sectioncodes[] attribute_hidden;
28f540f4 118
6781d8e6
FW
119/* _res_opcodes was exported by accident as a variable. */
120#if SHLIB_COMPAT (libresolv, GLIBC_2_0, GLIBC_2_26)
121static const char *res_opcodes[] =
122#else
123static const char res_opcodes[][9] =
124#endif
d85f9967
FW
125 {
126 "QUERY",
127 "IQUERY",
128 "CQUERYM",
129 "CQUERYU", /* experimental */
130 "NOTIFY", /* experimental */
131 "UPDATE",
132 "6",
133 "7",
134 "8",
135 "9",
136 "10",
137 "11",
138 "12",
139 "13",
140 "ZONEINIT",
141 "ZONEREF",
142 };
6781d8e6
FW
143#if SHLIB_COMPAT (libresolv, GLIBC_2_0, GLIBC_2_26)
144strong_alias (res_opcodes, _res_opcodes)
145#endif
d85f9967 146
a7ff1da8
FW
147static const char *p_section(int section, int opcode);
148
b43b13ac
UD
149/*
150 * Print the current options.
151 */
152void
153fp_resstat(const res_state statp, FILE *file) {
154 u_long mask;
28f540f4 155
b43b13ac
UD
156 fprintf(file, ";; res options:");
157 for (mask = 1; mask != 0; mask <<= 1)
158 if (statp->options & mask)
159 fprintf(file, " %s", p_option(mask));
160 putc('\n', file);
28f540f4
RM
161}
162
b43b13ac 163static void
d85f9967 164do_section (int pfcode, ns_msg *handle, ns_sect section, int pflag, FILE *file)
28f540f4 165{
b43b13ac 166 int n, sflag, rrnum;
e685e07d
UD
167 static int buflen = 2048;
168 char *buf;
b43b13ac
UD
169 ns_opcode opcode;
170 ns_rr rr;
28f540f4
RM
171
172 /*
173 * Print answer records.
174 */
d85f9967
FW
175 sflag = (pfcode & pflag);
176 if (pfcode && !sflag)
b43b13ac
UD
177 return;
178
e685e07d
UD
179 buf = malloc(buflen);
180 if (buf == NULL) {
181 fprintf(file, ";; memory allocation failure\n");
182 return;
183 }
184
b43b13ac
UD
185 opcode = (ns_opcode) ns_msg_getflag(*handle, ns_f_opcode);
186 rrnum = 0;
187 for (;;) {
188 if (ns_parserr(handle, section, rrnum, &rr)) {
189 if (errno != ENODEV)
190 fprintf(file, ";; ns_parserr: %s\n",
191 strerror(errno));
192 else if (rrnum > 0 && sflag != 0 &&
d85f9967 193 (pfcode & RES_PRF_HEAD1))
b43b13ac 194 putc('\n', file);
e685e07d 195 goto cleanup;
b43b13ac 196 }
d85f9967 197 if (rrnum == 0 && sflag != 0 && (pfcode & RES_PRF_HEAD1))
b43b13ac
UD
198 fprintf(file, ";; %s SECTION:\n",
199 p_section(section, opcode));
200 if (section == ns_s_qd)
201 fprintf(file, ";;\t%s, type = %s, class = %s\n",
202 ns_rr_name(rr),
203 p_type(ns_rr_type(rr)),
204 p_class(ns_rr_class(rr)));
205 else {
206 n = ns_sprintrr(handle, &rr, NULL, NULL,
e685e07d 207 buf, buflen);
b43b13ac 208 if (n < 0) {
e685e07d
UD
209 if (errno == ENOSPC) {
210 free(buf);
211 buf = NULL;
212 if (buflen < 131072)
213 buf = malloc(buflen += 1024);
214 if (buf == NULL) {
215 fprintf(file,
f87dfb1f 216 ";; memory allocation failure\n");
e685e07d
UD
217 return;
218 }
219 continue;
220 }
b43b13ac
UD
221 fprintf(file, ";; ns_sprintrr: %s\n",
222 strerror(errno));
e685e07d 223 goto cleanup;
28f540f4 224 }
b43b13ac
UD
225 fputs(buf, file);
226 fputc('\n', file);
28f540f4 227 }
b43b13ac 228 rrnum++;
28f540f4 229 }
e685e07d 230 cleanup:
72e6cdfa 231 free(buf);
28f540f4
RM
232}
233
234/*
235 * Print the contents of a query.
236 * This is intended to be primarily a debugging routine.
237 */
238void
d85f9967
FW
239fp_nquery (const unsigned char *msg, int len, FILE *file)
240{
b43b13ac
UD
241 ns_msg handle;
242 int qdcount, ancount, nscount, arcount;
243 u_int opcode, rcode, id;
28f540f4 244
d85f9967
FW
245 /* There is no need to initialize _res: If _res is not yet
246 initialized, _res.pfcode is zero. But initialization will
247 leave it at zero, too. _res.pfcode is an unsigned long,
248 but the code here assumes that the flags fit into an int,
249 so use that. */
250 int pfcode = _res.pfcode;
251
b43b13ac
UD
252 if (ns_initparse(msg, len, &handle) < 0) {
253 fprintf(file, ";; ns_initparse: %s\n", strerror(errno));
3d61b63c 254 return;
b43b13ac
UD
255 }
256 opcode = ns_msg_getflag(handle, ns_f_opcode);
257 rcode = ns_msg_getflag(handle, ns_f_rcode);
258 id = ns_msg_id(handle);
259 qdcount = ns_msg_count(handle, ns_s_qd);
260 ancount = ns_msg_count(handle, ns_s_an);
261 nscount = ns_msg_count(handle, ns_s_ns);
262 arcount = ns_msg_count(handle, ns_s_ar);
28f540f4
RM
263
264 /*
265 * Print header fields.
266 */
d85f9967 267 if ((!pfcode) || (pfcode & RES_PRF_HEADX) || rcode)
b43b13ac
UD
268 fprintf(file,
269 ";; ->>HEADER<<- opcode: %s, status: %s, id: %d\n",
6781d8e6 270 res_opcodes[opcode], p_rcode(rcode), id);
d85f9967 271 if ((!pfcode) || (pfcode & RES_PRF_HEADX))
a2e1b046 272 putc(';', file);
d85f9967 273 if ((!pfcode) || (pfcode & RES_PRF_HEAD2)) {
28f540f4 274 fprintf(file, "; flags:");
b43b13ac 275 if (ns_msg_getflag(handle, ns_f_qr))
28f540f4 276 fprintf(file, " qr");
b43b13ac 277 if (ns_msg_getflag(handle, ns_f_aa))
28f540f4 278 fprintf(file, " aa");
b43b13ac 279 if (ns_msg_getflag(handle, ns_f_tc))
28f540f4 280 fprintf(file, " tc");
b43b13ac 281 if (ns_msg_getflag(handle, ns_f_rd))
28f540f4 282 fprintf(file, " rd");
b43b13ac 283 if (ns_msg_getflag(handle, ns_f_ra))
28f540f4 284 fprintf(file, " ra");
b43b13ac
UD
285 if (ns_msg_getflag(handle, ns_f_z))
286 fprintf(file, " ??");
287 if (ns_msg_getflag(handle, ns_f_ad))
df21c858 288 fprintf(file, " ad");
b43b13ac 289 if (ns_msg_getflag(handle, ns_f_cd))
df21c858 290 fprintf(file, " cd");
28f540f4 291 }
d85f9967 292 if ((!pfcode) || (pfcode & RES_PRF_HEAD1)) {
b43b13ac
UD
293 fprintf(file, "; %s: %d",
294 p_section(ns_s_qd, opcode), qdcount);
295 fprintf(file, ", %s: %d",
296 p_section(ns_s_an, opcode), ancount);
297 fprintf(file, ", %s: %d",
298 p_section(ns_s_ns, opcode), nscount);
299 fprintf(file, ", %s: %d",
300 p_section(ns_s_ar, opcode), arcount);
28f540f4 301 }
d85f9967 302 if ((!pfcode) || (pfcode &
28f540f4
RM
303 (RES_PRF_HEADX | RES_PRF_HEAD2 | RES_PRF_HEAD1))) {
304 putc('\n',file);
305 }
306 /*
b43b13ac 307 * Print the various sections.
28f540f4 308 */
d85f9967
FW
309 do_section (pfcode, &handle, ns_s_qd, RES_PRF_QUES, file);
310 do_section (pfcode, &handle, ns_s_an, RES_PRF_ANS, file);
311 do_section (pfcode, &handle, ns_s_ns, RES_PRF_AUTH, file);
312 do_section (pfcode, &handle, ns_s_ar, RES_PRF_ADD, file);
b43b13ac
UD
313 if (qdcount == 0 && ancount == 0 &&
314 nscount == 0 && arcount == 0)
315 putc('\n', file);
28f540f4 316}
d85f9967
FW
317libresolv_hidden_def (fp_nquery)
318
319void
320fp_query (const unsigned char *msg, FILE *file)
321{
322 fp_nquery (msg, PACKETSZ, file);
323}
324libresolv_hidden_def (fp_query)
325
326void
327p_query (const unsigned char *msg)
328{
329 fp_query (msg, stdout);
330}
28f540f4
RM
331
332const u_char *
b43b13ac 333p_cdnname(const u_char *cp, const u_char *msg, int len, FILE *file) {
28f540f4
RM
334 char name[MAXDNAME];
335 int n;
336
337 if ((n = dn_expand(msg, msg + len, cp, name, sizeof name)) < 0)
338 return (NULL);
339 if (name[0] == '\0')
340 putc('.', file);
341 else
342 fputs(name, file);
343 return (cp + n);
344}
6f9d8e68 345libresolv_hidden_def (p_cdnname)
28f540f4
RM
346
347const u_char *
b43b13ac 348p_cdname(const u_char *cp, const u_char *msg, FILE *file) {
28f540f4
RM
349 return (p_cdnname(cp, msg, PACKETSZ, file));
350}
351
df21c858
UD
352/* Return a fully-qualified domain name from a compressed name (with
353 length supplied). */
354
355const u_char *
41075ae3
JM
356p_fqnname (const u_char *cp, const u_char *msg, int msglen, char *name,
357 int namelen)
df21c858
UD
358{
359 int n, newlen;
360
361 if ((n = dn_expand(msg, cp + msglen, cp, name, namelen)) < 0)
362 return (NULL);
b43b13ac 363 newlen = strlen(name);
3121cc04 364 if (newlen == 0 || name[newlen - 1] != '.') {
b43b13ac 365 if (newlen + 1 >= namelen) /* Lack space for final dot */
df21c858
UD
366 return (NULL);
367 else
368 strcpy(name + newlen, ".");
3121cc04 369 }
df21c858
UD
370 return (cp + n);
371}
6f9d8e68 372libresolv_hidden_def (p_fqnname)
df21c858 373
b43b13ac 374/* XXX: the rest of these functions need to become length-limited, too. */
28f540f4
RM
375
376const u_char *
b43b13ac 377p_fqname(const u_char *cp, const u_char *msg, FILE *file) {
28f540f4 378 char name[MAXDNAME];
df21c858 379 const u_char *n;
28f540f4 380
b43b13ac 381 n = p_fqnname(cp, msg, MAXCDNAME, name, sizeof name);
df21c858 382 if (n == NULL)
28f540f4 383 return (NULL);
df21c858
UD
384 fputs(name, file);
385 return (n);
28f540f4
RM
386}
387
df21c858
UD
388/*
389 * Names of RR classes and qclasses. Classes and qclasses are the same, except
390 * that C_ANY is a qclass but not a class. (You can ask for records of class
391 * C_ANY, but you can't have any records of that class in the database.)
392 */
32738a22
UD
393extern const struct res_sym __p_class_syms[];
394libresolv_hidden_proto (__p_class_syms)
395const struct res_sym __p_class_syms[] = {
bf8c5424
FW
396 {C_IN, (char *) "IN"},
397 {C_CHAOS, (char *) "CHAOS"},
398 {C_HS, (char *) "HS"},
399 {C_HS, (char *) "HESIOD"},
400 {C_ANY, (char *) "ANY"},
401 {C_NONE, (char *) "NONE"},
402 {C_IN, NULL, NULL}
b43b13ac 403};
32738a22 404libresolv_hidden_data_def (__p_class_syms)
b43b13ac
UD
405
406/*
407 * Names of message sections.
408 */
6f9d8e68 409const struct res_sym __p_default_section_syms[] attribute_hidden = {
bf8c5424
FW
410 {ns_s_qd, (char *) "QUERY"},
411 {ns_s_an, (char *) "ANSWER"},
412 {ns_s_ns, (char *) "AUTHORITY"},
413 {ns_s_ar, (char *) "ADDITIONAL"},
414 {0, NULL, NULL}
b43b13ac
UD
415};
416
6f9d8e68 417const struct res_sym __p_update_section_syms[] attribute_hidden = {
bf8c5424
FW
418 {S_ZONE, (char *) "ZONE"},
419 {S_PREREQ, (char *) "PREREQUISITE"},
420 {S_UPDATE, (char *) "UPDATE"},
421 {S_ADDT, (char *) "ADDITIONAL"},
422 {0, NULL, NULL}
b43b13ac
UD
423};
424
df21c858 425/*
4f157746
FW
426 * Names of RR types and qtypes. The list is incomplete because its
427 * size is part of the ABI.
df21c858 428 */
32738a22
UD
429extern const struct res_sym __p_type_syms[];
430libresolv_hidden_proto (__p_type_syms)
431const struct res_sym __p_type_syms[] = {
bf8c5424
FW
432 {ns_t_a, (char *) "A", (char *) "address"},
433 {ns_t_ns, (char *) "NS", (char *) "name server"},
434 {ns_t_md, (char *) "MD", (char *) "mail destination (deprecated)"},
435 {ns_t_mf, (char *) "MF", (char *) "mail forwarder (deprecated)"},
436 {ns_t_cname, (char *) "CNAME", (char *) "canonical name"},
437 {ns_t_soa, (char *) "SOA", (char *) "start of authority"},
438 {ns_t_mb, (char *) "MB", (char *) "mailbox"},
439 {ns_t_mg, (char *) "MG", (char *) "mail group member"},
440 {ns_t_mr, (char *) "MR", (char *) "mail rename"},
441 {ns_t_null, (char *) "NULL", (char *) "null"},
442 {ns_t_wks, (char *) "WKS", (char *) "well-known service (deprecated)"},
443 {ns_t_ptr, (char *) "PTR", (char *) "domain name pointer"},
444 {ns_t_hinfo, (char *) "HINFO", (char *) "host information"},
445 {ns_t_minfo, (char *) "MINFO", (char *) "mailbox information"},
446 {ns_t_mx, (char *) "MX", (char *) "mail exchanger"},
447 {ns_t_txt, (char *) "TXT", (char *) "text"},
448 {ns_t_rp, (char *) "RP", (char *) "responsible person"},
449 {ns_t_afsdb, (char *) "AFSDB", (char *) "DCE or AFS server"},
450 {ns_t_x25, (char *) "X25", (char *) "X25 address"},
451 {ns_t_isdn, (char *) "ISDN", (char *) "ISDN address"},
452 {ns_t_rt, (char *) "RT", (char *) "router"},
453 {ns_t_nsap, (char *) "NSAP", (char *) "nsap address"},
454 {ns_t_nsap_ptr, (char *) "NSAP_PTR", (char *) "domain name pointer"},
455 {ns_t_sig, (char *) "SIG", (char *) "signature"},
456 {ns_t_key, (char *) "KEY", (char *) "key"},
457 {ns_t_px, (char *) "PX", (char *) "mapping information"},
458 {ns_t_gpos, (char *) "GPOS",
459 (char *) "geographical position (withdrawn)"},
460 {ns_t_aaaa, (char *) "AAAA", (char *) "IPv6 address"},
461 {ns_t_loc, (char *) "LOC", (char *) "location"},
462 {ns_t_nxt, (char *) "NXT", (char *) "next valid name (unimplemented)"},
463 {ns_t_eid, (char *) "EID", (char *) "endpoint identifier (unimplemented)"},
464 {ns_t_nimloc, (char *) "NIMLOC", (char *) "NIMROD locator (unimplemented)"},
465 {ns_t_srv, (char *) "SRV", (char *) "server selection"},
466 {ns_t_atma, (char *) "ATMA", (char *) "ATM address (unimplemented)"},
467 {ns_t_dname, (char *) "DNAME", (char *) "Non-terminal DNAME (for IPv6)"},
468 {ns_t_tsig, (char *) "TSIG", (char *) "transaction signature"},
469 {ns_t_ixfr, (char *) "IXFR", (char *) "incremental zone transfer"},
470 {ns_t_axfr, (char *) "AXFR", (char *) "zone transfer"},
bf8c5424
FW
471 {ns_t_mailb, (char *) "MAILB", (char *) "mailbox-related data (deprecated)"},
472 {ns_t_maila, (char *) "MAILA", (char *) "mail agent (deprecated)"},
473 {ns_t_naptr, (char *) "NAPTR", (char *) "URN Naming Authority"},
474 {ns_t_kx, (char *) "KX", (char *) "Key Exchange"},
475 {ns_t_cert, (char *) "CERT", (char *) "Certificate"},
476 {ns_t_any, (char *) "ANY", (char *) "\"any\""},
4f157746 477 {0, NULL, NULL}, /* Padding to preserve ABI. */
bf8c5424 478 {0, NULL, NULL}
b43b13ac 479};
32738a22 480libresolv_hidden_data_def (__p_type_syms)
b43b13ac
UD
481
482/*
483 * Names of DNS rcodes.
484 */
6f9d8e68 485const struct res_sym __p_rcode_syms[] attribute_hidden = {
bf8c5424
FW
486 {ns_r_noerror, (char *) "NOERROR", (char *) "no error"},
487 {ns_r_formerr, (char *) "FORMERR", (char *) "format error"},
488 {ns_r_servfail, (char *) "SERVFAIL", (char *) "server failed"},
489 {ns_r_nxdomain, (char *) "NXDOMAIN", (char *) "no such domain name"},
490 {ns_r_notimpl, (char *) "NOTIMP", (char *) "not implemented"},
491 {ns_r_refused, (char *) "REFUSED", (char *) "refused"},
492 {ns_r_yxdomain, (char *) "YXDOMAIN", (char *) "domain name exists"},
493 {ns_r_yxrrset, (char *) "YXRRSET", (char *) "rrset exists"},
494 {ns_r_nxrrset, (char *) "NXRRSET", (char *) "rrset doesn't exist"},
495 {ns_r_notauth, (char *) "NOTAUTH", (char *) "not authoritative"},
496 {ns_r_notzone, (char *) "NOTZONE", (char *) "Not in zone"},
497 {ns_r_max, (char *) "", (char *) ""},
498 {ns_r_badsig, (char *) "BADSIG", (char *) "bad signature"},
499 {ns_r_badkey, (char *) "BADKEY", (char *) "bad key"},
500 {ns_r_badtime, (char *) "BADTIME", (char *) "bad time"},
501 {0, NULL, NULL}
df21c858
UD
502};
503
504int
b43b13ac
UD
505sym_ston(const struct res_sym *syms, const char *name, int *success) {
506 for ((void)NULL; syms->name != 0; syms++) {
df21c858
UD
507 if (strcasecmp (name, syms->name) == 0) {
508 if (success)
509 *success = 1;
510 return (syms->number);
511 }
512 }
513 if (success)
514 *success = 0;
b43b13ac 515 return (syms->number); /* The default value. */
df21c858
UD
516}
517
518const char *
b43b13ac 519sym_ntos(const struct res_sym *syms, int number, int *success) {
df21c858
UD
520 static char unname[20];
521
b43b13ac 522 for ((void)NULL; syms->name != 0; syms++) {
e685e07d 523 if (number == syms->number) {
df21c858
UD
524 if (success)
525 *success = 1;
526 return (syms->name);
527 }
528 }
529
b43b13ac 530 sprintf(unname, "%d", number); /* XXX nonreentrant */
df21c858
UD
531 if (success)
532 *success = 0;
533 return (unname);
534}
6f9d8e68 535libresolv_hidden_def (sym_ntos)
df21c858 536
df21c858 537const char *
b43b13ac 538sym_ntop(const struct res_sym *syms, int number, int *success) {
df21c858
UD
539 static char unname[20];
540
b43b13ac 541 for ((void)NULL; syms->name != 0; syms++) {
df21c858
UD
542 if (number == syms->number) {
543 if (success)
544 *success = 1;
545 return (syms->humanname);
546 }
547 }
b43b13ac 548 sprintf(unname, "%d", number); /* XXX nonreentrant */
df21c858
UD
549 if (success)
550 *success = 0;
551 return (unname);
552}
553
28f540f4 554/*
b43b13ac 555 * Return a string for the type.
28f540f4
RM
556 */
557const char *
b43b13ac
UD
558p_type(int type) {
559 return (sym_ntos(__p_type_syms, type, (int *)0));
28f540f4 560}
6f9d8e68 561libresolv_hidden_def (p_type)
28f540f4
RM
562
563/*
b43b13ac 564 * Return a string for the type.
28f540f4 565 */
a7ff1da8 566static const char *
b43b13ac
UD
567p_section(int section, int opcode) {
568 const struct res_sym *symbols;
569
570 switch (opcode) {
571 case ns_o_update:
572 symbols = __p_update_section_syms;
573 break;
574 default:
575 symbols = __p_default_section_syms;
576 break;
577 }
578 return (sym_ntos(symbols, section, (int *)0));
579}
580
581/*
582 * Return a mnemonic for class.
583 */
584const char *
585p_class(int class) {
586 return (sym_ntos(__p_class_syms, class, (int *)0));
28f540f4 587}
6f9d8e68 588libresolv_hidden_def (p_class)
28f540f4
RM
589
590/*
591 * Return a mnemonic for an option
592 */
593const char *
b43b13ac 594p_option(u_long option) {
3d61b63c
RM
595 static char nbuf[40];
596
28f540f4
RM
597 switch (option) {
598 case RES_INIT: return "init";
599 case RES_DEBUG: return "debug";
c3ed8088 600 case RES_USEVC: return "use-vc";
28f540f4
RM
601 case RES_IGNTC: return "igntc";
602 case RES_RECURSE: return "recurs";
603 case RES_DEFNAMES: return "defnam";
604 case RES_STAYOPEN: return "styopn";
605 case RES_DNSRCH: return "dnsrch";
606 case RES_INSECURE1: return "insecure1";
607 case RES_INSECURE2: return "insecure2";
b1a36ceb 608 case RES_NOALIASES: return "noaliases";
b76e0659 609 case DEPRECATED_RES_USE_INET6: return "inet6";
ee778b56 610 case RES_ROTATE: return "rotate";
2d0671cb 611 case RES_USE_EDNS0: return "edns0";
b1a36ceb
AJ
612 case RES_SNGLKUP: return "single-request";
613 case RES_SNGLKUPREOP: return "single-request-reopen";
2d0671cb 614 case RES_USE_DNSSEC: return "dnssec";
f87dfb1f 615 case RES_NOTLDQUERY: return "no-tld-query";
aef16cc8 616 case RES_NORELOAD: return "no-reload";
b43b13ac 617 /* XXX nonreentrant */
3d61b63c
RM
618 default: sprintf(nbuf, "?0x%lx?", (u_long)option);
619 return (nbuf);
28f540f4
RM
620 }
621}
6f9d8e68 622libresolv_hidden_def (p_option)
28f540f4
RM
623
624/*
b43b13ac 625 * Return a mnemonic for a time to live.
28f540f4 626 */
845dcb57 627const char *
b43b13ac
UD
628p_time(u_int32_t value) {
629 static char nbuf[40]; /* XXX nonreentrant */
28f540f4 630
b43b13ac
UD
631 if (ns_format_ttl(value, nbuf, sizeof nbuf) < 0)
632 sprintf(nbuf, "%u", value);
28f540f4
RM
633 return (nbuf);
634}
ee188d55 635
b43b13ac
UD
636/*
637 * Return a string for the rcode.
638 */
639const char *
640p_rcode(int rcode) {
641 return (sym_ntos(__p_rcode_syms, rcode, (int *)0));
642}
6f9d8e68 643libresolv_hidden_def (p_rcode)
b43b13ac 644
ee188d55
RM
645/*
646 * routines to convert between on-the-wire RR format and zone file format.
647 * Does not contain conversion to/from decimal degrees; divide or multiply
648 * by 60*60*1000 for that.
649 */
650
6f9d8e68
UD
651static const unsigned int poweroften[10]=
652 { 1, 10, 100, 1000, 10000, 100000,
653 1000000,10000000,100000000,1000000000};
ee188d55
RM
654
655/* takes an XeY precision/size value, returns a string representation. */
656static const char *
db0a00d3 657precsize_ntoa (u_int8_t prec)
ee188d55 658{
b43b13ac 659 static char retbuf[sizeof "90000000.00"]; /* XXX nonreentrant */
ee188d55
RM
660 unsigned long val;
661 int mantissa, exponent;
662
663 mantissa = (int)((prec >> 4) & 0x0f) % 10;
664 exponent = (int)((prec >> 0) & 0x0f) % 10;
665
666 val = mantissa * poweroften[exponent];
667
668 (void) sprintf(retbuf, "%ld.%.2ld", val/100, val%100);
669 return (retbuf);
670}
671
672/* converts ascii size/precision X * 10**Y(cm) to 0xXY. moves pointer. */
673static u_int8_t
db0a00d3 674precsize_aton (const char **strptr)
ee188d55 675{
b43b13ac 676 unsigned int mval = 0, cmval = 0;
ee188d55 677 u_int8_t retval = 0;
0a463fa9 678 const char *cp;
b43b13ac
UD
679 int exponent;
680 int mantissa;
ee188d55
RM
681
682 cp = *strptr;
683
b43b13ac
UD
684 while (isdigit(*cp))
685 mval = mval * 10 + (*cp++ - '0');
686
687 if (*cp == '.') { /* centimeters */
ee188d55
RM
688 cp++;
689 if (isdigit(*cp)) {
b43b13ac 690 cmval = (*cp++ - '0') * 10;
ee188d55 691 if (isdigit(*cp)) {
b43b13ac 692 cmval += (*cp++ - '0');
ee188d55
RM
693 }
694 }
695 }
b43b13ac
UD
696 cmval = (mval * 100) + cmval;
697
698 for (exponent = 0; exponent < 9; exponent++)
699 if (cmval < poweroften[exponent+1])
700 break;
701
702 mantissa = cmval / poweroften[exponent];
703 if (mantissa > 9)
704 mantissa = 9;
ee188d55
RM
705
706 retval = (mantissa << 4) | exponent;
b43b13ac 707
ee188d55 708 *strptr = cp;
b43b13ac 709
ee188d55
RM
710 return (retval);
711}
712
713/* converts ascii lat/lon to unsigned encoded 32-bit number. moves pointer. */
714static u_int32_t
db0a00d3 715latlon2ul (const char **latlonstrptr, int *which)
ee188d55 716{
0a463fa9 717 const char *cp;
ee188d55
RM
718 u_int32_t retval;
719 int deg = 0, min = 0, secs = 0, secsfrac = 0;
720
721 cp = *latlonstrptr;
722
723 while (isdigit(*cp))
724 deg = deg * 10 + (*cp++ - '0');
725
726 while (isspace(*cp))
727 cp++;
728
729 if (!(isdigit(*cp)))
730 goto fndhemi;
731
732 while (isdigit(*cp))
733 min = min * 10 + (*cp++ - '0');
734
735 while (isspace(*cp))
736 cp++;
737
738 if (!(isdigit(*cp)))
739 goto fndhemi;
740
741 while (isdigit(*cp))
742 secs = secs * 10 + (*cp++ - '0');
743
744 if (*cp == '.') { /* decimal seconds */
745 cp++;
746 if (isdigit(*cp)) {
747 secsfrac = (*cp++ - '0') * 100;
748 if (isdigit(*cp)) {
749 secsfrac += (*cp++ - '0') * 10;
750 if (isdigit(*cp)) {
751 secsfrac += (*cp++ - '0');
752 }
753 }
754 }
755 }
756
757 while (!isspace(*cp)) /* if any trailing garbage */
758 cp++;
759
760 while (isspace(*cp))
761 cp++;
762
763 fndhemi:
764 switch (*cp) {
765 case 'N': case 'n':
766 case 'E': case 'e':
767 retval = ((unsigned)1<<31)
768 + (((((deg * 60) + min) * 60) + secs) * 1000)
769 + secsfrac;
770 break;
771 case 'S': case 's':
772 case 'W': case 'w':
773 retval = ((unsigned)1<<31)
774 - (((((deg * 60) + min) * 60) + secs) * 1000)
775 - secsfrac;
776 break;
777 default:
778 retval = 0; /* invalid value -- indicates error */
779 break;
780 }
781
782 switch (*cp) {
783 case 'N': case 'n':
784 case 'S': case 's':
785 *which = 1; /* latitude */
786 break;
787 case 'E': case 'e':
788 case 'W': case 'w':
789 *which = 2; /* longitude */
790 break;
791 default:
792 *which = 0; /* error */
793 break;
794 }
795
796 cp++; /* skip the hemisphere */
797
798 while (!isspace(*cp)) /* if any trailing garbage */
799 cp++;
800
801 while (isspace(*cp)) /* move to next field */
802 cp++;
803
804 *latlonstrptr = cp;
805
806 return (retval);
807}
808
809/* converts a zone file representation in a string to an RDATA on-the-wire
810 * representation. */
811int
9d46370c 812loc_aton (const char *ascii, u_char *binary)
ee188d55
RM
813{
814 const char *cp, *maxcp;
815 u_char *bcp;
816
817 u_int32_t latit = 0, longit = 0, alt = 0;
818 u_int32_t lltemp1 = 0, lltemp2 = 0;
819 int altmeters = 0, altfrac = 0, altsign = 1;
820 u_int8_t hp = 0x16; /* default = 1e6 cm = 10000.00m = 10km */
821 u_int8_t vp = 0x13; /* default = 1e3 cm = 10.00m */
822 u_int8_t siz = 0x12; /* default = 1e2 cm = 1.00m */
823 int which1 = 0, which2 = 0;
824
825 cp = ascii;
826 maxcp = cp + strlen(ascii);
827
828 lltemp1 = latlon2ul(&cp, &which1);
829
830 lltemp2 = latlon2ul(&cp, &which2);
831
832 switch (which1 + which2) {
833 case 3: /* 1 + 2, the only valid combination */
834 if ((which1 == 1) && (which2 == 2)) { /* normal case */
835 latit = lltemp1;
836 longit = lltemp2;
837 } else if ((which1 == 2) && (which2 == 1)) { /* reversed */
838 longit = lltemp1;
839 latit = lltemp2;
840 } else { /* some kind of brokenness */
df21c858 841 return (0);
ee188d55
RM
842 }
843 break;
844 default: /* we didn't get one of each */
df21c858 845 return (0);
ee188d55
RM
846 }
847
848 /* altitude */
849 if (*cp == '-') {
850 altsign = -1;
851 cp++;
852 }
0a463fa9 853
ee188d55
RM
854 if (*cp == '+')
855 cp++;
856
857 while (isdigit(*cp))
858 altmeters = altmeters * 10 + (*cp++ - '0');
859
860 if (*cp == '.') { /* decimal meters */
861 cp++;
862 if (isdigit(*cp)) {
863 altfrac = (*cp++ - '0') * 10;
864 if (isdigit(*cp)) {
865 altfrac += (*cp++ - '0');
866 }
867 }
868 }
869
870 alt = (10000000 + (altsign * (altmeters * 100 + altfrac)));
871
872 while (!isspace(*cp) && (cp < maxcp)) /* if trailing garbage or m */
873 cp++;
874
875 while (isspace(*cp) && (cp < maxcp))
876 cp++;
877
878 if (cp >= maxcp)
879 goto defaults;
880
881 siz = precsize_aton(&cp);
0a463fa9 882
ee188d55
RM
883 while (!isspace(*cp) && (cp < maxcp)) /* if trailing garbage or m */
884 cp++;
885
886 while (isspace(*cp) && (cp < maxcp))
887 cp++;
888
889 if (cp >= maxcp)
890 goto defaults;
891
892 hp = precsize_aton(&cp);
893
894 while (!isspace(*cp) && (cp < maxcp)) /* if trailing garbage or m */
895 cp++;
896
897 while (isspace(*cp) && (cp < maxcp))
898 cp++;
899
900 if (cp >= maxcp)
901 goto defaults;
902
903 vp = precsize_aton(&cp);
904
905 defaults:
906
907 bcp = binary;
908 *bcp++ = (u_int8_t) 0; /* version byte */
909 *bcp++ = siz;
910 *bcp++ = hp;
911 *bcp++ = vp;
912 PUTLONG(latit,bcp);
913 PUTLONG(longit,bcp);
914 PUTLONG(alt,bcp);
0a463fa9 915
ee188d55
RM
916 return (16); /* size of RR in octets */
917}
918
919/* takes an on-the-wire LOC RR and formats it in a human readable format. */
845dcb57 920const char *
9d46370c 921loc_ntoa (const u_char *binary, char *ascii)
ee188d55 922{
4442d58f 923 static const char error[] = "?";
b43b13ac
UD
924 static char tmpbuf[sizeof
925"1000 60 60.000 N 1000 60 60.000 W -12345678.00m 90000000.00m 90000000.00m 90000000.00m"];
926 const u_char *cp = binary;
ee188d55
RM
927
928 int latdeg, latmin, latsec, latsecfrac;
929 int longdeg, longmin, longsec, longsecfrac;
930 char northsouth, eastwest;
931 int altmeters, altfrac, altsign;
932
b43b13ac 933 const u_int32_t referencealt = 100000 * 100;
ee188d55
RM
934
935 int32_t latval, longval, altval;
936 u_int32_t templ;
937 u_int8_t sizeval, hpval, vpval, versionval;
0a463fa9 938
ee188d55
RM
939 char *sizestr, *hpstr, *vpstr;
940
941 versionval = *cp++;
942
b43b13ac
UD
943 if (ascii == NULL)
944 ascii = tmpbuf;
945
ee188d55 946 if (versionval) {
b43b13ac 947 (void) sprintf(ascii, "; error: unknown LOC RR version");
ee188d55
RM
948 return (ascii);
949 }
950
951 sizeval = *cp++;
952
953 hpval = *cp++;
954 vpval = *cp++;
955
956 GETLONG(templ, cp);
957 latval = (templ - ((unsigned)1<<31));
958
959 GETLONG(templ, cp);
960 longval = (templ - ((unsigned)1<<31));
961
962 GETLONG(templ, cp);
b43b13ac 963 if (templ < referencealt) { /* below WGS 84 spheroid */
ee188d55
RM
964 altval = referencealt - templ;
965 altsign = -1;
966 } else {
967 altval = templ - referencealt;
968 altsign = 1;
969 }
970
971 if (latval < 0) {
972 northsouth = 'S';
973 latval = -latval;
974 } else
975 northsouth = 'N';
976
977 latsecfrac = latval % 1000;
978 latval = latval / 1000;
979 latsec = latval % 60;
980 latval = latval / 60;
981 latmin = latval % 60;
982 latval = latval / 60;
983 latdeg = latval;
984
985 if (longval < 0) {
986 eastwest = 'W';
987 longval = -longval;
988 } else
989 eastwest = 'E';
990
991 longsecfrac = longval % 1000;
992 longval = longval / 1000;
993 longsec = longval % 60;
994 longval = longval / 60;
995 longmin = longval % 60;
996 longval = longval / 60;
997 longdeg = longval;
998
999 altfrac = altval % 100;
1000 altmeters = (altval / 100) * altsign;
1001
1002 if ((sizestr = strdup(precsize_ntoa(sizeval))) == NULL)
4442d58f 1003 sizestr = (char *) error;
ee188d55 1004 if ((hpstr = strdup(precsize_ntoa(hpval))) == NULL)
4442d58f 1005 hpstr = (char *) error;
ee188d55 1006 if ((vpstr = strdup(precsize_ntoa(vpval))) == NULL)
4442d58f 1007 vpstr = (char *) error;
ee188d55
RM
1008
1009 sprintf(ascii,
1010 "%d %.2d %.2d.%.3d %c %d %.2d %.2d.%.3d %c %d.%.2dm %sm %sm %sm",
1011 latdeg, latmin, latsec, latsecfrac, northsouth,
1012 longdeg, longmin, longsec, longsecfrac, eastwest,
1013 altmeters, altfrac, sizestr, hpstr, vpstr);
1014
4442d58f 1015 if (sizestr != (char *) error)
ee188d55 1016 free(sizestr);
4442d58f 1017 if (hpstr != (char *) error)
ee188d55 1018 free(hpstr);
4442d58f 1019 if (vpstr != (char *) error)
ee188d55
RM
1020 free(vpstr);
1021
1022 return (ascii);
1023}
6f9d8e68 1024libresolv_hidden_def (loc_ntoa)
df21c858
UD
1025
1026
1027/* Return the number of DNS hierarchy levels in the name. */
1028int
b43b13ac 1029dn_count_labels(const char *name) {
df21c858
UD
1030 int i, len, count;
1031
1032 len = strlen(name);
b43b13ac
UD
1033 for (i = 0, count = 0; i < len; i++) {
1034 /* XXX need to check for \. or use named's nlabels(). */
df21c858
UD
1035 if (name[i] == '.')
1036 count++;
1037 }
1038
1039 /* don't count initial wildcard */
1040 if (name[0] == '*')
1041 if (count)
1042 count--;
1043
1044 /* don't count the null label for root. */
1045 /* if terminating '.' not found, must adjust */
1046 /* count to include last label */
1047 if (len > 0 && name[len-1] != '.')
1048 count++;
1049 return (count);
1050}
cd5743fd 1051libresolv_hidden_def (__dn_count_labels)
df21c858
UD
1052
1053
0a463fa9
RM
1054/*
1055 * Make dates expressed in seconds-since-Jan-1-1970 easy to read.
df21c858
UD
1056 * SIG records are required to be printed like this, by the Secure DNS RFC.
1057 */
1058char *
b43b13ac
UD
1059p_secstodate (u_long secs) {
1060 /* XXX nonreentrant */
1061 static char output[15]; /* YYYYMMDDHHMMSS and null */
df21c858 1062 time_t clock = secs;
b43b13ac 1063 struct tm *time;
0a463fa9 1064
e685e07d 1065 struct tm timebuf;
4efdc6d9 1066 time = __gmtime_r(&clock, &timebuf);
b43b13ac
UD
1067 time->tm_year += 1900;
1068 time->tm_mon += 1;
df21c858 1069 sprintf(output, "%04d%02d%02d%02d%02d%02d",
b43b13ac
UD
1070 time->tm_year, time->tm_mon, time->tm_mday,
1071 time->tm_hour, time->tm_min, time->tm_sec);
df21c858
UD
1072 return (output);
1073}
cd5743fd 1074libresolv_hidden_def (__p_secstodate)