res_debug.c revision 186090
1132720Skan/*
2132720Skan * Copyright (c) 1985
3132720Skan *    The Regents of the University of California.  All rights reserved.
4132720Skan *
5132720Skan * Redistribution and use in source and binary forms, with or without
6132720Skan * modification, are permitted provided that the following conditions
7132720Skan * are met:
8132720Skan * 1. Redistributions of source code must retain the above copyright
9132720Skan *    notice, this list of conditions and the following disclaimer.
10132720Skan * 2. Redistributions in binary form must reproduce the above copyright
11132720Skan *    notice, this list of conditions and the following disclaimer in the
12132720Skan *    documentation and/or other materials provided with the distribution.
13132720Skan * 4. Neither the name of the University nor the names of its contributors
14132720Skan *    may be used to endorse or promote products derived from this software
15132720Skan *    without specific prior written permission.
16132720Skan *
17132720Skan * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18132720Skan * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19132720Skan * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20132720Skan * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21132720Skan * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22132720Skan * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23132720Skan * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24132720Skan * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25132720Skan * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26132720Skan * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27132720Skan * SUCH DAMAGE.
28132720Skan */
29132720Skan
30132720Skan/*
31132720Skan * Portions Copyright (c) 1993 by Digital Equipment Corporation.
32132720Skan *
33132720Skan * Permission to use, copy, modify, and distribute this software for any
34132720Skan * purpose with or without fee is hereby granted, provided that the above
35132720Skan * copyright notice and this permission notice appear in all copies, and that
36132720Skan * the name of Digital Equipment Corporation not be used in advertising or
37132720Skan * publicity pertaining to distribution of the document or software without
38132720Skan * specific, written prior permission.
39132720Skan *
40132720Skan * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
41132720Skan * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
42132720Skan * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
43132720Skan * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
44132720Skan * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
45132720Skan * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
46132720Skan * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
47132720Skan * SOFTWARE.
48132720Skan */
49132720Skan
50132720Skan/*
51132720Skan * Portions Copyright (c) 1995 by International Business Machines, Inc.
52132720Skan *
53132720Skan * International Business Machines, Inc. (hereinafter called IBM) grants
54132720Skan * permission under its copyrights to use, copy, modify, and distribute this
55132720Skan * Software with or without fee, provided that the above copyright notice and
56132720Skan * all paragraphs of this notice appear in all copies, and that the name of IBM
57132720Skan * not be used in connection with the marketing of any product incorporating
58132720Skan * the Software or modifications thereof, without specific, written prior
59132720Skan * permission.
60132720Skan *
61132720Skan * To the extent it has a right to do so, IBM grants an immunity from suit
62132720Skan * under its patents, if any, for the use, sale or manufacture of products to
63132720Skan * the extent that such products are used for performing Domain Name System
64132720Skan * dynamic updates in TCP/IP networks by means of the Software.  No immunity is
65132720Skan * granted for any product per se or for any other function of any product.
66132720Skan *
67132720Skan * THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES,
68132720Skan * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
69132720Skan * PARTICULAR PURPOSE.  IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL,
70132720Skan * DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING
71132720Skan * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN
72132720Skan * IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES.
73132720Skan */
74132720Skan
75132720Skan/*
76132720Skan * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
77132720Skan * Portions Copyright (c) 1996-1999 by Internet Software Consortium.
78132720Skan *
79132720Skan * Permission to use, copy, modify, and distribute this software for any
80132720Skan * purpose with or without fee is hereby granted, provided that the above
81132720Skan * copyright notice and this permission notice appear in all copies.
82132720Skan *
83132720Skan * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
84132720Skan * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
85132720Skan * MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR
86132720Skan * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
87132720Skan * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
88132720Skan * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
89132720Skan * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
90132720Skan */
91132720Skan
92132720Skan#if defined(LIBC_SCCS) && !defined(lint)
93132720Skanstatic const char sccsid[] = "@(#)res_debug.c	8.1 (Berkeley) 6/4/93";
94132720Skanstatic const char rcsid[] = "$Id: res_debug.c,v 1.10.18.6 2008/04/03 23:15:15 marka Exp $";
95132720Skan#endif /* LIBC_SCCS and not lint */
96132720Skan#include <sys/cdefs.h>
97132720Skan__FBSDID("$FreeBSD: head/lib/libc/resolv/res_debug.c 186090 2008-12-14 19:39:53Z ume $");
98132720Skan
99132720Skan#include "port_before.h"
100132720Skan
101132720Skan#include <sys/types.h>
102132720Skan#include <sys/param.h>
103132720Skan#include <sys/socket.h>
104132720Skan
105132720Skan#include <netinet/in.h>
106132720Skan#include <arpa/inet.h>
107132720Skan#include <arpa/nameser.h>
108132720Skan
109132720Skan#include <ctype.h>
110132720Skan#include <errno.h>
111132720Skan#include <math.h>
112132720Skan#include <netdb.h>
113132720Skan#include <resolv.h>
114132720Skan#include <resolv_mt.h>
115132720Skan#include <stdio.h>
116132720Skan#include <stdlib.h>
117132720Skan#include <string.h>
118132720Skan#include <time.h>
119132720Skan
120132720Skan#include "port_after.h"
121132720Skan
122132720Skan#ifdef SPRINTF_CHAR
123132720Skan# define SPRINTF(x) strlen(sprintf/**/x)
124132720Skan#else
125132720Skan# define SPRINTF(x) sprintf x
126132720Skan#endif
127132720Skan
128132720Skanextern const char *_res_opcodes[];
129132720Skanextern const char *_res_sectioncodes[];
130132720Skan
131132720Skan/*%
132132720Skan * Print the current options.
133132720Skan */
134132720Skanvoid
135132720Skanfp_resstat(const res_state statp, FILE *file) {
136132720Skan	u_long mask;
137132720Skan
138132720Skan	fprintf(file, ";; res options:");
139132720Skan	for (mask = 1;  mask != 0U;  mask <<= 1)
140132720Skan		if (statp->options & mask)
141132720Skan			fprintf(file, " %s", p_option(mask));
142132720Skan	putc('\n', file);
143132720Skan}
144132720Skan
145132720Skanstatic void
146132720Skando_section(const res_state statp,
147132720Skan	   ns_msg *handle, ns_sect section,
148132720Skan	   int pflag, FILE *file)
149132720Skan{
150132720Skan	int n, sflag, rrnum;
151132720Skan	static int buflen = 2048;
152132720Skan	char *buf;
153132720Skan	ns_opcode opcode;
154132720Skan	ns_rr rr;
155132720Skan
156132720Skan	/*
157132720Skan	 * Print answer records.
158132720Skan	 */
159132720Skan	sflag = (statp->pfcode & pflag);
160132720Skan	if (statp->pfcode && !sflag)
161132720Skan		return;
162132720Skan
163132720Skan	buf = malloc(buflen);
164132720Skan	if (buf == NULL) {
165132720Skan		fprintf(file, ";; memory allocation failure\n");
166132720Skan		return;
167132720Skan	}
168132720Skan
169132720Skan	opcode = (ns_opcode) ns_msg_getflag(*handle, ns_f_opcode);
170132720Skan	rrnum = 0;
171132720Skan	for (;;) {
172132720Skan		if (ns_parserr(handle, section, rrnum, &rr)) {
173132720Skan			if (errno != ENODEV)
174132720Skan				fprintf(file, ";; ns_parserr: %s\n",
175132720Skan					strerror(errno));
176132720Skan			else if (rrnum > 0 && sflag != 0 &&
177132720Skan				 (statp->pfcode & RES_PRF_HEAD1))
178132720Skan				putc('\n', file);
179132720Skan			goto cleanup;
180132720Skan		}
181132720Skan		if (rrnum == 0 && sflag != 0 && (statp->pfcode & RES_PRF_HEAD1))
182132720Skan			fprintf(file, ";; %s SECTION:\n",
183132720Skan				p_section(section, opcode));
184132720Skan		if (section == ns_s_qd)
185132720Skan			fprintf(file, ";;\t%s, type = %s, class = %s\n",
186132720Skan				ns_rr_name(rr),
187132720Skan				p_type(ns_rr_type(rr)),
188132720Skan				p_class(ns_rr_class(rr)));
189132720Skan		else if (section == ns_s_ar && ns_rr_type(rr) == ns_t_opt) {
190132720Skan			u_int16_t optcode, optlen, rdatalen = ns_rr_rdlen(rr);
191132720Skan			u_int32_t ttl = ns_rr_ttl(rr);
192132720Skan
193132720Skan			fprintf(file,
194132720Skan				"; EDNS: version: %u, udp=%u, flags=%04x\n",
195132720Skan				(ttl>>16)&0xff, ns_rr_class(rr), ttl&0xffff);
196132720Skan
197132720Skan			while (rdatalen >= 4) {
198132720Skan				const u_char *cp = ns_rr_rdata(rr);
199132720Skan				int i;
200132720Skan
201132720Skan				GETSHORT(optcode, cp);
202132720Skan				GETSHORT(optlen, cp);
203132720Skan
204132720Skan				if (optcode == NS_OPT_NSID) {
205132720Skan					fputs("; NSID: ", file);
206132720Skan					if (optlen == 0) {
207132720Skan						fputs("; NSID\n", file);
208132720Skan					} else {
209132720Skan						fputs("; NSID: ", file);
210132720Skan						for (i = 0; i < optlen; i++)
211132720Skan							fprintf(file, "%02x ",
212132720Skan								cp[i]);
213132720Skan						fputs(" (",file);
214132720Skan						for (i = 0; i < optlen; i++)
215132720Skan							fprintf(file, "%c",
216132720Skan								isprint(cp[i])?
217132720Skan								cp[i] : '.');
218132720Skan						fputs(")\n", file);
219132720Skan					}
220132720Skan				} else {
221132720Skan					if (optlen == 0) {
222132720Skan						fprintf(file, "; OPT=%u\n",
223132720Skan							optcode);
224132720Skan					} else {
225132720Skan						fprintf(file, "; OPT=%u: ",
226132720Skan							optcode);
227132720Skan						for (i = 0; i < optlen; i++)
228132720Skan							fprintf(file, "%02x ",
229132720Skan								cp[i]);
230132720Skan						fputs(" (",file);
231132720Skan						for (i = 0; i < optlen; i++)
232132720Skan							fprintf(file, "%c",
233132720Skan								isprint(cp[i]) ?
234132720Skan									cp[i] : '.');
235132720Skan						fputs(")\n", file);
236132720Skan					}
237132720Skan				}
238132720Skan				rdatalen -= 4 + optlen;
239132720Skan			}
240132720Skan		} else {
241132720Skan			n = ns_sprintrr(handle, &rr, NULL, NULL,
242132720Skan					buf, buflen);
243			if (n < 0) {
244				if (errno == ENOSPC) {
245					free(buf);
246					buf = NULL;
247					if (buflen < 131072)
248						buf = malloc(buflen += 1024);
249					if (buf == NULL) {
250						fprintf(file,
251					      ";; memory allocation failure\n");
252					      return;
253					}
254					continue;
255				}
256				fprintf(file, ";; ns_sprintrr: %s\n",
257					strerror(errno));
258				goto cleanup;
259			}
260			fputs(buf, file);
261			fputc('\n', file);
262		}
263		rrnum++;
264	}
265 cleanup:
266	if (buf != NULL)
267		free(buf);
268}
269
270/*%
271 * Print the contents of a query.
272 * This is intended to be primarily a debugging routine.
273 */
274void
275res_pquery(const res_state statp, const u_char *msg, int len, FILE *file) {
276	ns_msg handle;
277	int qdcount, ancount, nscount, arcount;
278	u_int opcode, rcode, id;
279
280	if (ns_initparse(msg, len, &handle) < 0) {
281		fprintf(file, ";; ns_initparse: %s\n", strerror(errno));
282		return;
283	}
284	opcode = ns_msg_getflag(handle, ns_f_opcode);
285	rcode = ns_msg_getflag(handle, ns_f_rcode);
286	id = ns_msg_id(handle);
287	qdcount = ns_msg_count(handle, ns_s_qd);
288	ancount = ns_msg_count(handle, ns_s_an);
289	nscount = ns_msg_count(handle, ns_s_ns);
290	arcount = ns_msg_count(handle, ns_s_ar);
291
292	/*
293	 * Print header fields.
294	 */
295	if ((!statp->pfcode) || (statp->pfcode & RES_PRF_HEADX) || rcode)
296		fprintf(file,
297			";; ->>HEADER<<- opcode: %s, status: %s, id: %d\n",
298			_res_opcodes[opcode], p_rcode(rcode), id);
299	if ((!statp->pfcode) || (statp->pfcode & RES_PRF_HEADX))
300		putc(';', file);
301	if ((!statp->pfcode) || (statp->pfcode & RES_PRF_HEAD2)) {
302		fprintf(file, "; flags:");
303		if (ns_msg_getflag(handle, ns_f_qr))
304			fprintf(file, " qr");
305		if (ns_msg_getflag(handle, ns_f_aa))
306			fprintf(file, " aa");
307		if (ns_msg_getflag(handle, ns_f_tc))
308			fprintf(file, " tc");
309		if (ns_msg_getflag(handle, ns_f_rd))
310			fprintf(file, " rd");
311		if (ns_msg_getflag(handle, ns_f_ra))
312			fprintf(file, " ra");
313		if (ns_msg_getflag(handle, ns_f_z))
314			fprintf(file, " ??");
315		if (ns_msg_getflag(handle, ns_f_ad))
316			fprintf(file, " ad");
317		if (ns_msg_getflag(handle, ns_f_cd))
318			fprintf(file, " cd");
319	}
320	if ((!statp->pfcode) || (statp->pfcode & RES_PRF_HEAD1)) {
321		fprintf(file, "; %s: %d",
322			p_section(ns_s_qd, opcode), qdcount);
323		fprintf(file, ", %s: %d",
324			p_section(ns_s_an, opcode), ancount);
325		fprintf(file, ", %s: %d",
326			p_section(ns_s_ns, opcode), nscount);
327		fprintf(file, ", %s: %d",
328			p_section(ns_s_ar, opcode), arcount);
329	}
330	if ((!statp->pfcode) || (statp->pfcode &
331		(RES_PRF_HEADX | RES_PRF_HEAD2 | RES_PRF_HEAD1))) {
332		putc('\n',file);
333	}
334	/*
335	 * Print the various sections.
336	 */
337	do_section(statp, &handle, ns_s_qd, RES_PRF_QUES, file);
338	do_section(statp, &handle, ns_s_an, RES_PRF_ANS, file);
339	do_section(statp, &handle, ns_s_ns, RES_PRF_AUTH, file);
340	do_section(statp, &handle, ns_s_ar, RES_PRF_ADD, file);
341	if (qdcount == 0 && ancount == 0 &&
342	    nscount == 0 && arcount == 0)
343		putc('\n', file);
344}
345
346const u_char *
347p_cdnname(const u_char *cp, const u_char *msg, int len, FILE *file) {
348	char name[MAXDNAME];
349	int n;
350
351	if ((n = dn_expand(msg, msg + len, cp, name, sizeof name)) < 0)
352		return (NULL);
353	if (name[0] == '\0')
354		putc('.', file);
355	else
356		fputs(name, file);
357	return (cp + n);
358}
359
360const u_char *
361p_cdname(const u_char *cp, const u_char *msg, FILE *file) {
362	return (p_cdnname(cp, msg, PACKETSZ, file));
363}
364
365/*%
366 * Return a fully-qualified domain name from a compressed name (with
367   length supplied).  */
368
369const u_char *
370p_fqnname(cp, msg, msglen, name, namelen)
371	const u_char *cp, *msg;
372	int msglen;
373	char *name;
374	int namelen;
375{
376	int n, newlen;
377
378	if ((n = dn_expand(msg, cp + msglen, cp, name, namelen)) < 0)
379		return (NULL);
380	newlen = strlen(name);
381	if (newlen == 0 || name[newlen - 1] != '.') {
382		if (newlen + 1 >= namelen)	/*%< Lack space for final dot */
383			return (NULL);
384		else
385			strcpy(name + newlen, ".");
386	}
387	return (cp + n);
388}
389
390/* XXX:	the rest of these functions need to become length-limited, too. */
391
392const u_char *
393p_fqname(const u_char *cp, const u_char *msg, FILE *file) {
394	char name[MAXDNAME];
395	const u_char *n;
396
397	n = p_fqnname(cp, msg, MAXCDNAME, name, sizeof name);
398	if (n == NULL)
399		return (NULL);
400	fputs(name, file);
401	return (n);
402}
403
404/*%
405 * Names of RR classes and qclasses.  Classes and qclasses are the same, except
406 * that C_ANY is a qclass but not a class.  (You can ask for records of class
407 * C_ANY, but you can't have any records of that class in the database.)
408 */
409const struct res_sym __p_class_syms[] = {
410	{C_IN,		"IN",		(char *)0},
411	{C_CHAOS,	"CH",		(char *)0},
412	{C_CHAOS,	"CHAOS",	(char *)0},
413	{C_HS,		"HS",		(char *)0},
414	{C_HS,		"HESIOD",	(char *)0},
415	{C_ANY,		"ANY",		(char *)0},
416	{C_NONE,	"NONE",		(char *)0},
417	{C_IN, 		(char *)0,	(char *)0}
418};
419
420/*%
421 * Names of message sections.
422 */
423static const struct res_sym __p_default_section_syms[] = {
424	{ns_s_qd,	"QUERY",	(char *)0},
425	{ns_s_an,	"ANSWER",	(char *)0},
426	{ns_s_ns,	"AUTHORITY",	(char *)0},
427	{ns_s_ar,	"ADDITIONAL",	(char *)0},
428	{0,		(char *)0,	(char *)0}
429};
430
431static const struct res_sym __p_update_section_syms[] = {
432	{S_ZONE,	"ZONE",		(char *)0},
433	{S_PREREQ,	"PREREQUISITE",	(char *)0},
434	{S_UPDATE,	"UPDATE",	(char *)0},
435	{S_ADDT,	"ADDITIONAL",	(char *)0},
436	{0,		(char *)0,	(char *)0}
437};
438
439const struct res_sym __p_key_syms[] = {
440	{NS_ALG_MD5RSA,		"RSA",		"RSA KEY with MD5 hash"},
441	{NS_ALG_DH,		"DH",		"Diffie Hellman"},
442	{NS_ALG_DSA,		"DSA",		"Digital Signature Algorithm"},
443	{NS_ALG_EXPIRE_ONLY,	"EXPIREONLY",	"No algorithm"},
444	{NS_ALG_PRIVATE_OID,	"PRIVATE",	"Algorithm obtained from OID"},
445	{0,			NULL,		NULL}
446};
447
448const struct res_sym __p_cert_syms[] = {
449	{cert_t_pkix,	"PKIX",		"PKIX (X.509v3) Certificate"},
450	{cert_t_spki,	"SPKI",		"SPKI certificate"},
451	{cert_t_pgp,	"PGP",		"PGP certificate"},
452	{cert_t_url,	"URL",		"URL Private"},
453	{cert_t_oid,	"OID",		"OID Private"},
454	{0,		NULL,		NULL}
455};
456
457/*%
458 * Names of RR types and qtypes.  Types and qtypes are the same, except
459 * that T_ANY is a qtype but not a type.  (You can ask for records of type
460 * T_ANY, but you can't have any records of that type in the database.)
461 */
462const struct res_sym __p_type_syms[] = {
463	{ns_t_a,	"A",		"address"},
464	{ns_t_ns,	"NS",		"name server"},
465	{ns_t_md,	"MD",		"mail destination (deprecated)"},
466	{ns_t_mf,	"MF",		"mail forwarder (deprecated)"},
467	{ns_t_cname,	"CNAME",	"canonical name"},
468	{ns_t_soa,	"SOA",		"start of authority"},
469	{ns_t_mb,	"MB",		"mailbox"},
470	{ns_t_mg,	"MG",		"mail group member"},
471	{ns_t_mr,	"MR",		"mail rename"},
472	{ns_t_null,	"NULL",		"null"},
473	{ns_t_wks,	"WKS",		"well-known service (deprecated)"},
474	{ns_t_ptr,	"PTR",		"domain name pointer"},
475	{ns_t_hinfo,	"HINFO",	"host information"},
476	{ns_t_minfo,	"MINFO",	"mailbox information"},
477	{ns_t_mx,	"MX",		"mail exchanger"},
478	{ns_t_txt,	"TXT",		"text"},
479	{ns_t_rp,	"RP",		"responsible person"},
480	{ns_t_afsdb,	"AFSDB",	"DCE or AFS server"},
481	{ns_t_x25,	"X25",		"X25 address"},
482	{ns_t_isdn,	"ISDN",		"ISDN address"},
483	{ns_t_rt,	"RT",		"router"},
484	{ns_t_nsap,	"NSAP",		"nsap address"},
485	{ns_t_nsap_ptr,	"NSAP_PTR",	"domain name pointer"},
486	{ns_t_sig,	"SIG",		"signature"},
487	{ns_t_key,	"KEY",		"key"},
488	{ns_t_px,	"PX",		"mapping information"},
489	{ns_t_gpos,	"GPOS",		"geographical position (withdrawn)"},
490	{ns_t_aaaa,	"AAAA",		"IPv6 address"},
491	{ns_t_loc,	"LOC",		"location"},
492	{ns_t_nxt,	"NXT",		"next valid name (unimplemented)"},
493	{ns_t_eid,	"EID",		"endpoint identifier (unimplemented)"},
494	{ns_t_nimloc,	"NIMLOC",	"NIMROD locator (unimplemented)"},
495	{ns_t_srv,	"SRV",		"server selection"},
496	{ns_t_atma,	"ATMA",		"ATM address (unimplemented)"},
497	{ns_t_tkey,	"TKEY",		"tkey"},
498	{ns_t_tsig,	"TSIG",		"transaction signature"},
499	{ns_t_ixfr,	"IXFR",		"incremental zone transfer"},
500	{ns_t_axfr,	"AXFR",		"zone transfer"},
501	{ns_t_zxfr,	"ZXFR",		"compressed zone transfer"},
502	{ns_t_mailb,	"MAILB",	"mailbox-related data (deprecated)"},
503	{ns_t_maila,	"MAILA",	"mail agent (deprecated)"},
504	{ns_t_naptr,	"NAPTR",	"URN Naming Authority"},
505	{ns_t_kx,	"KX",		"Key Exchange"},
506	{ns_t_cert,	"CERT",		"Certificate"},
507	{ns_t_a6,	"A6",		"IPv6 Address"},
508	{ns_t_dname,	"DNAME",	"dname"},
509	{ns_t_sink,	"SINK",		"Kitchen Sink (experimental)"},
510	{ns_t_opt,	"OPT",		"EDNS Options"},
511	{ns_t_any,	"ANY",		"\"any\""},
512	{0, 		NULL,		NULL}
513};
514
515/*%
516 * Names of DNS rcodes.
517 */
518const struct res_sym __p_rcode_syms[] = {
519	{ns_r_noerror,	"NOERROR",		"no error"},
520	{ns_r_formerr,	"FORMERR",		"format error"},
521	{ns_r_servfail,	"SERVFAIL",		"server failed"},
522	{ns_r_nxdomain,	"NXDOMAIN",		"no such domain name"},
523	{ns_r_notimpl,	"NOTIMP",		"not implemented"},
524	{ns_r_refused,	"REFUSED",		"refused"},
525	{ns_r_yxdomain,	"YXDOMAIN",		"domain name exists"},
526	{ns_r_yxrrset,	"YXRRSET",		"rrset exists"},
527	{ns_r_nxrrset,	"NXRRSET",		"rrset doesn't exist"},
528	{ns_r_notauth,	"NOTAUTH",		"not authoritative"},
529	{ns_r_notzone,	"NOTZONE",		"Not in zone"},
530	{ns_r_max,	"",			""},
531	{ns_r_badsig,	"BADSIG",		"bad signature"},
532	{ns_r_badkey,	"BADKEY",		"bad key"},
533	{ns_r_badtime,	"BADTIME",		"bad time"},
534	{0, 		NULL,			NULL}
535};
536
537int
538sym_ston(const struct res_sym *syms, const char *name, int *success) {
539	for ((void)NULL; syms->name != 0; syms++) {
540		if (strcasecmp (name, syms->name) == 0) {
541			if (success)
542				*success = 1;
543			return (syms->number);
544		}
545	}
546	if (success)
547		*success = 0;
548	return (syms->number);		/*%< The default value. */
549}
550
551const char *
552sym_ntos(const struct res_sym *syms, int number, int *success) {
553	char *unname = sym_ntos_unname;
554
555	for ((void)NULL; syms->name != 0; syms++) {
556		if (number == syms->number) {
557			if (success)
558				*success = 1;
559			return (syms->name);
560		}
561	}
562
563	sprintf(unname, "%d", number);		/*%< XXX nonreentrant */
564	if (success)
565		*success = 0;
566	return (unname);
567}
568
569const char *
570sym_ntop(const struct res_sym *syms, int number, int *success) {
571	char *unname = sym_ntop_unname;
572
573	for ((void)NULL; syms->name != 0; syms++) {
574		if (number == syms->number) {
575			if (success)
576				*success = 1;
577			return (syms->humanname);
578		}
579	}
580	sprintf(unname, "%d", number);		/*%< XXX nonreentrant */
581	if (success)
582		*success = 0;
583	return (unname);
584}
585
586/*%
587 * Return a string for the type.
588 */
589const char *
590p_type(int type) {
591	int success;
592	const char *result;
593	static char typebuf[20];
594
595	result = sym_ntos(__p_type_syms, type, &success);
596	if (success)
597		return (result);
598	if (type < 0 || type > 0xffff)
599		return ("BADTYPE");
600	sprintf(typebuf, "TYPE%d", type);
601	return (typebuf);
602}
603
604/*%
605 * Return a string for the type.
606 */
607const char *
608p_section(int section, int opcode) {
609	const struct res_sym *symbols;
610
611	switch (opcode) {
612	case ns_o_update:
613		symbols = __p_update_section_syms;
614		break;
615	default:
616		symbols = __p_default_section_syms;
617		break;
618	}
619	return (sym_ntos(symbols, section, (int *)0));
620}
621
622/*%
623 * Return a mnemonic for class.
624 */
625const char *
626p_class(int class) {
627	int success;
628	const char *result;
629	static char classbuf[20];
630
631	result = sym_ntos(__p_class_syms, class, &success);
632	if (success)
633		return (result);
634	if (class < 0 || class > 0xffff)
635		return ("BADCLASS");
636	sprintf(classbuf, "CLASS%d", class);
637	return (classbuf);
638}
639
640/*%
641 * Return a mnemonic for an option
642 */
643const char *
644p_option(u_long option) {
645	char *nbuf = p_option_nbuf;
646
647	switch (option) {
648	case RES_INIT:		return "init";
649	case RES_DEBUG:		return "debug";
650	case RES_AAONLY:	return "aaonly(unimpl)";
651	case RES_USEVC:		return "usevc";
652	case RES_PRIMARY:	return "primry(unimpl)";
653	case RES_IGNTC:		return "igntc";
654	case RES_RECURSE:	return "recurs";
655	case RES_DEFNAMES:	return "defnam";
656	case RES_STAYOPEN:	return "styopn";
657	case RES_DNSRCH:	return "dnsrch";
658	case RES_INSECURE1:	return "insecure1";
659	case RES_INSECURE2:	return "insecure2";
660	case RES_NOALIASES:	return "noaliases";
661	case RES_USE_INET6:	return "inet6";
662#ifdef RES_USE_EDNS0	/*%< KAME extension */
663	case RES_USE_EDNS0:	return "edns0";
664	case RES_NSID:		return "nsid";
665#endif
666#ifdef RES_USE_DNAME
667	case RES_USE_DNAME:	return "dname";
668#endif
669#ifdef RES_USE_DNSSEC
670	case RES_USE_DNSSEC:	return "dnssec";
671#endif
672#ifdef RES_NOTLDQUERY
673	case RES_NOTLDQUERY:	return "no-tld-query";
674#endif
675#ifdef RES_NO_NIBBLE2
676	case RES_NO_NIBBLE2:	return "no-nibble2";
677#endif
678				/* XXX nonreentrant */
679	default:		sprintf(nbuf, "?0x%lx?", (u_long)option);
680				return (nbuf);
681	}
682}
683
684/*%
685 * Return a mnemonic for a time to live.
686 */
687const char *
688p_time(u_int32_t value) {
689	char *nbuf = p_time_nbuf;
690
691	if (ns_format_ttl(value, nbuf, sizeof nbuf) < 0)
692		sprintf(nbuf, "%u", value);
693	return (nbuf);
694}
695
696/*%
697 * Return a string for the rcode.
698 */
699const char *
700p_rcode(int rcode) {
701	return (sym_ntos(__p_rcode_syms, rcode, (int *)0));
702}
703
704/*%
705 * Return a string for a res_sockaddr_union.
706 */
707const char *
708p_sockun(union res_sockaddr_union u, char *buf, size_t size) {
709	char ret[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:123.123.123.123"];
710
711	switch (u.sin.sin_family) {
712	case AF_INET:
713		inet_ntop(AF_INET, &u.sin.sin_addr, ret, sizeof ret);
714		break;
715#ifdef HAS_INET6_STRUCTS
716	case AF_INET6:
717		inet_ntop(AF_INET6, &u.sin6.sin6_addr, ret, sizeof ret);
718		break;
719#endif
720	default:
721		sprintf(ret, "[af%d]", u.sin.sin_family);
722		break;
723	}
724	if (size > 0U) {
725		strncpy(buf, ret, size - 1);
726		buf[size - 1] = '0';
727	}
728	return (buf);
729}
730
731/*%
732 * routines to convert between on-the-wire RR format and zone file format.
733 * Does not contain conversion to/from decimal degrees; divide or multiply
734 * by 60*60*1000 for that.
735 */
736
737static unsigned int poweroften[10] = {1, 10, 100, 1000, 10000, 100000,
738				      1000000,10000000,100000000,1000000000};
739
740/*% takes an XeY precision/size value, returns a string representation. */
741static const char *
742precsize_ntoa(prec)
743	u_int8_t prec;
744{
745	char *retbuf = precsize_ntoa_retbuf;
746	unsigned long val;
747	int mantissa, exponent;
748
749	mantissa = (int)((prec >> 4) & 0x0f) % 10;
750	exponent = (int)((prec >> 0) & 0x0f) % 10;
751
752	val = mantissa * poweroften[exponent];
753
754	(void) sprintf(retbuf, "%lu.%.2lu", val/100, val%100);
755	return (retbuf);
756}
757
758/*% converts ascii size/precision X * 10**Y(cm) to 0xXY.  moves pointer.  */
759static u_int8_t
760precsize_aton(const char **strptr) {
761	unsigned int mval = 0, cmval = 0;
762	u_int8_t retval = 0;
763	const char *cp;
764	int exponent;
765	int mantissa;
766
767	cp = *strptr;
768
769	while (isdigit((unsigned char)*cp))
770		mval = mval * 10 + (*cp++ - '0');
771
772	if (*cp == '.') {		/*%< centimeters */
773		cp++;
774		if (isdigit((unsigned char)*cp)) {
775			cmval = (*cp++ - '0') * 10;
776			if (isdigit((unsigned char)*cp)) {
777				cmval += (*cp++ - '0');
778			}
779		}
780	}
781	cmval = (mval * 100) + cmval;
782
783	for (exponent = 0; exponent < 9; exponent++)
784		if (cmval < poweroften[exponent+1])
785			break;
786
787	mantissa = cmval / poweroften[exponent];
788	if (mantissa > 9)
789		mantissa = 9;
790
791	retval = (mantissa << 4) | exponent;
792
793	*strptr = cp;
794
795	return (retval);
796}
797
798/*% converts ascii lat/lon to unsigned encoded 32-bit number.  moves pointer. */
799static u_int32_t
800latlon2ul(const char **latlonstrptr, int *which) {
801	const char *cp;
802	u_int32_t retval;
803	int deg = 0, min = 0, secs = 0, secsfrac = 0;
804
805	cp = *latlonstrptr;
806
807	while (isdigit((unsigned char)*cp))
808		deg = deg * 10 + (*cp++ - '0');
809
810	while (isspace((unsigned char)*cp))
811		cp++;
812
813	if (!(isdigit((unsigned char)*cp)))
814		goto fndhemi;
815
816	while (isdigit((unsigned char)*cp))
817		min = min * 10 + (*cp++ - '0');
818
819	while (isspace((unsigned char)*cp))
820		cp++;
821
822	if (!(isdigit((unsigned char)*cp)))
823		goto fndhemi;
824
825	while (isdigit((unsigned char)*cp))
826		secs = secs * 10 + (*cp++ - '0');
827
828	if (*cp == '.') {		/*%< decimal seconds */
829		cp++;
830		if (isdigit((unsigned char)*cp)) {
831			secsfrac = (*cp++ - '0') * 100;
832			if (isdigit((unsigned char)*cp)) {
833				secsfrac += (*cp++ - '0') * 10;
834				if (isdigit((unsigned char)*cp)) {
835					secsfrac += (*cp++ - '0');
836				}
837			}
838		}
839	}
840
841	while (!isspace((unsigned char)*cp))	/*%< if any trailing garbage */
842		cp++;
843
844	while (isspace((unsigned char)*cp))
845		cp++;
846
847 fndhemi:
848	switch (*cp) {
849	case 'N': case 'n':
850	case 'E': case 'e':
851		retval = ((unsigned)1<<31)
852			+ (((((deg * 60) + min) * 60) + secs) * 1000)
853			+ secsfrac;
854		break;
855	case 'S': case 's':
856	case 'W': case 'w':
857		retval = ((unsigned)1<<31)
858			- (((((deg * 60) + min) * 60) + secs) * 1000)
859			- secsfrac;
860		break;
861	default:
862		retval = 0;	/*%< invalid value -- indicates error */
863		break;
864	}
865
866	switch (*cp) {
867	case 'N': case 'n':
868	case 'S': case 's':
869		*which = 1;	/*%< latitude */
870		break;
871	case 'E': case 'e':
872	case 'W': case 'w':
873		*which = 2;	/*%< longitude */
874		break;
875	default:
876		*which = 0;	/*%< error */
877		break;
878	}
879
880	cp++;			/*%< skip the hemisphere */
881	while (!isspace((unsigned char)*cp))	/*%< if any trailing garbage */
882		cp++;
883
884	while (isspace((unsigned char)*cp))	/*%< move to next field */
885		cp++;
886
887	*latlonstrptr = cp;
888
889	return (retval);
890}
891
892/*%
893 * converts a zone file representation in a string to an RDATA on-the-wire
894 * representation. */
895int
896loc_aton(ascii, binary)
897	const char *ascii;
898	u_char *binary;
899{
900	const char *cp, *maxcp;
901	u_char *bcp;
902
903	u_int32_t latit = 0, longit = 0, alt = 0;
904	u_int32_t lltemp1 = 0, lltemp2 = 0;
905	int altmeters = 0, altfrac = 0, altsign = 1;
906	u_int8_t hp = 0x16;	/*%< default = 1e6 cm = 10000.00m = 10km */
907	u_int8_t vp = 0x13;	/*%< default = 1e3 cm = 10.00m */
908	u_int8_t siz = 0x12;	/*%< default = 1e2 cm = 1.00m */
909	int which1 = 0, which2 = 0;
910
911	cp = ascii;
912	maxcp = cp + strlen(ascii);
913
914	lltemp1 = latlon2ul(&cp, &which1);
915
916	lltemp2 = latlon2ul(&cp, &which2);
917
918	switch (which1 + which2) {
919	case 3:			/*%< 1 + 2, the only valid combination */
920		if ((which1 == 1) && (which2 == 2)) { /*%< normal case */
921			latit = lltemp1;
922			longit = lltemp2;
923		} else if ((which1 == 2) && (which2 == 1)) { /*%< reversed */
924			longit = lltemp1;
925			latit = lltemp2;
926		} else {	/*%< some kind of brokenness */
927			return (0);
928		}
929		break;
930	default:		/*%< we didn't get one of each */
931		return (0);
932	}
933
934	/* altitude */
935	if (*cp == '-') {
936		altsign = -1;
937		cp++;
938	}
939
940	if (*cp == '+')
941		cp++;
942
943	while (isdigit((unsigned char)*cp))
944		altmeters = altmeters * 10 + (*cp++ - '0');
945
946	if (*cp == '.') {		/*%< decimal meters */
947		cp++;
948		if (isdigit((unsigned char)*cp)) {
949			altfrac = (*cp++ - '0') * 10;
950			if (isdigit((unsigned char)*cp)) {
951				altfrac += (*cp++ - '0');
952			}
953		}
954	}
955
956	alt = (10000000 + (altsign * (altmeters * 100 + altfrac)));
957
958	while (!isspace((unsigned char)*cp) && (cp < maxcp)) /*%< if trailing garbage or m */
959		cp++;
960
961	while (isspace((unsigned char)*cp) && (cp < maxcp))
962		cp++;
963
964	if (cp >= maxcp)
965		goto defaults;
966
967	siz = precsize_aton(&cp);
968
969	while (!isspace((unsigned char)*cp) && (cp < maxcp))	/*%< if trailing garbage or m */
970		cp++;
971
972	while (isspace((unsigned char)*cp) && (cp < maxcp))
973		cp++;
974
975	if (cp >= maxcp)
976		goto defaults;
977
978	hp = precsize_aton(&cp);
979
980	while (!isspace((unsigned char)*cp) && (cp < maxcp))	/*%< if trailing garbage or m */
981		cp++;
982
983	while (isspace((unsigned char)*cp) && (cp < maxcp))
984		cp++;
985
986	if (cp >= maxcp)
987		goto defaults;
988
989	vp = precsize_aton(&cp);
990
991 defaults:
992
993	bcp = binary;
994	*bcp++ = (u_int8_t) 0;	/*%< version byte */
995	*bcp++ = siz;
996	*bcp++ = hp;
997	*bcp++ = vp;
998	PUTLONG(latit,bcp);
999	PUTLONG(longit,bcp);
1000	PUTLONG(alt,bcp);
1001
1002	return (16);		/*%< size of RR in octets */
1003}
1004
1005/*% takes an on-the-wire LOC RR and formats it in a human readable format. */
1006const char *
1007loc_ntoa(binary, ascii)
1008	const u_char *binary;
1009	char *ascii;
1010{
1011	static const char *error = "?";
1012	static char tmpbuf[sizeof
1013"1000 60 60.000 N 1000 60 60.000 W -12345678.00m 90000000.00m 90000000.00m 90000000.00m"];
1014	const u_char *cp = binary;
1015
1016	int latdeg, latmin, latsec, latsecfrac;
1017	int longdeg, longmin, longsec, longsecfrac;
1018	char northsouth, eastwest;
1019	const char *altsign;
1020	int altmeters, altfrac;
1021
1022	const u_int32_t referencealt = 100000 * 100;
1023
1024	int32_t latval, longval, altval;
1025	u_int32_t templ;
1026	u_int8_t sizeval, hpval, vpval, versionval;
1027
1028	char *sizestr, *hpstr, *vpstr;
1029
1030	versionval = *cp++;
1031
1032	if (ascii == NULL)
1033		ascii = tmpbuf;
1034
1035	if (versionval) {
1036		(void) sprintf(ascii, "; error: unknown LOC RR version");
1037		return (ascii);
1038	}
1039
1040	sizeval = *cp++;
1041
1042	hpval = *cp++;
1043	vpval = *cp++;
1044
1045	GETLONG(templ, cp);
1046	latval = (templ - ((unsigned)1<<31));
1047
1048	GETLONG(templ, cp);
1049	longval = (templ - ((unsigned)1<<31));
1050
1051	GETLONG(templ, cp);
1052	if (templ < referencealt) { /*%< below WGS 84 spheroid */
1053		altval = referencealt - templ;
1054		altsign = "-";
1055	} else {
1056		altval = templ - referencealt;
1057		altsign = "";
1058	}
1059
1060	if (latval < 0) {
1061		northsouth = 'S';
1062		latval = -latval;
1063	} else
1064		northsouth = 'N';
1065
1066	latsecfrac = latval % 1000;
1067	latval = latval / 1000;
1068	latsec = latval % 60;
1069	latval = latval / 60;
1070	latmin = latval % 60;
1071	latval = latval / 60;
1072	latdeg = latval;
1073
1074	if (longval < 0) {
1075		eastwest = 'W';
1076		longval = -longval;
1077	} else
1078		eastwest = 'E';
1079
1080	longsecfrac = longval % 1000;
1081	longval = longval / 1000;
1082	longsec = longval % 60;
1083	longval = longval / 60;
1084	longmin = longval % 60;
1085	longval = longval / 60;
1086	longdeg = longval;
1087
1088	altfrac = altval % 100;
1089	altmeters = (altval / 100);
1090
1091	sizestr = strdup(precsize_ntoa(sizeval));
1092	hpstr = strdup(precsize_ntoa(hpval));
1093	vpstr = strdup(precsize_ntoa(vpval));
1094
1095	sprintf(ascii,
1096	    "%d %.2d %.2d.%.3d %c %d %.2d %.2d.%.3d %c %s%d.%.2dm %sm %sm %sm",
1097		latdeg, latmin, latsec, latsecfrac, northsouth,
1098		longdeg, longmin, longsec, longsecfrac, eastwest,
1099		altsign, altmeters, altfrac,
1100		(sizestr != NULL) ? sizestr : error,
1101		(hpstr != NULL) ? hpstr : error,
1102		(vpstr != NULL) ? vpstr : error);
1103
1104	if (sizestr != NULL)
1105		free(sizestr);
1106	if (hpstr != NULL)
1107		free(hpstr);
1108	if (vpstr != NULL)
1109		free(vpstr);
1110
1111	return (ascii);
1112}
1113
1114
1115/*% Return the number of DNS hierarchy levels in the name. */
1116int
1117dn_count_labels(const char *name) {
1118	int i, len, count;
1119
1120	len = strlen(name);
1121	for (i = 0, count = 0; i < len; i++) {
1122		/* XXX need to check for \. or use named's nlabels(). */
1123		if (name[i] == '.')
1124			count++;
1125	}
1126
1127	/* don't count initial wildcard */
1128	if (name[0] == '*')
1129		if (count)
1130			count--;
1131
1132	/* don't count the null label for root. */
1133	/* if terminating '.' not found, must adjust */
1134	/* count to include last label */
1135	if (len > 0 && name[len-1] != '.')
1136		count++;
1137	return (count);
1138}
1139
1140/*%
1141 * Make dates expressed in seconds-since-Jan-1-1970 easy to read.
1142 * SIG records are required to be printed like this, by the Secure DNS RFC.
1143 */
1144char *
1145p_secstodate (u_long secs) {
1146	char *output = p_secstodate_output;
1147	time_t clock = secs;
1148	struct tm *time;
1149#ifdef HAVE_TIME_R
1150	struct tm res;
1151
1152	time = gmtime_r(&clock, &res);
1153#else
1154	time = gmtime(&clock);
1155#endif
1156	time->tm_year += 1900;
1157	time->tm_mon += 1;
1158	sprintf(output, "%04d%02d%02d%02d%02d%02d",
1159		time->tm_year, time->tm_mon, time->tm_mday,
1160		time->tm_hour, time->tm_min, time->tm_sec);
1161	return (output);
1162}
1163
1164u_int16_t
1165res_nametoclass(const char *buf, int *successp) {
1166	unsigned long result;
1167	char *endptr;
1168	int success;
1169
1170	result = sym_ston(__p_class_syms, buf, &success);
1171	if (success)
1172		goto done;
1173
1174	if (strncasecmp(buf, "CLASS", 5) != 0 ||
1175	    !isdigit((unsigned char)buf[5]))
1176		goto done;
1177	errno = 0;
1178	result = strtoul(buf + 5, &endptr, 10);
1179	if (errno == 0 && *endptr == '\0' && result <= 0xffffU)
1180		success = 1;
1181 done:
1182	if (successp)
1183		*successp = success;
1184	return (result);
1185}
1186
1187u_int16_t
1188res_nametotype(const char *buf, int *successp) {
1189	unsigned long result;
1190	char *endptr;
1191	int success;
1192
1193	result = sym_ston(__p_type_syms, buf, &success);
1194	if (success)
1195		goto done;
1196
1197	if (strncasecmp(buf, "type", 4) != 0 ||
1198	    !isdigit((unsigned char)buf[4]))
1199		goto done;
1200	errno = 0;
1201	result = strtoul(buf + 4, &endptr, 10);
1202	if (errno == 0 && *endptr == '\0' && result <= 0xffffU)
1203		success = 1;
1204 done:
1205	if (successp)
1206		*successp = success;
1207	return (result);
1208}
1209
1210/*
1211 * Weak aliases for applications that use certain private entry points,
1212 * and fail to include <resolv.h>.
1213 */
1214#undef fp_resstat
1215__weak_reference(__fp_resstat, fp_resstat);
1216#undef p_fqnname
1217__weak_reference(__p_fqnname, p_fqnname);
1218#undef sym_ston
1219__weak_reference(__sym_ston, sym_ston);
1220#undef sym_ntos
1221__weak_reference(__sym_ntos, sym_ntos);
1222#undef sym_ntop
1223__weak_reference(__sym_ntop, sym_ntop);
1224#undef dn_count_labels
1225__weak_reference(__dn_count_labels, dn_count_labels);
1226#undef p_secstodate
1227__weak_reference(__p_secstodate, p_secstodate);
1228
1229/*! \file */
1230