2 * ++Copyright++ 1985, 1990, 1993
4 * Copyright (c) 1985, 1990, 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
53 * Portions Copyright (c) 1995 by International Business Machines, Inc.
55 * International Business Machines, Inc. (hereinafter called IBM) grants
56 * permission under its copyrights to use, copy, modify, and distribute this
57 * Software with or without fee, provided that the above copyright notice and
58 * all paragraphs of this notice appear in all copies, and that the name of IBM
59 * not be used in connection with the marketing of any product incorporating
60 * the Software or modifications thereof, without specific, written prior
63 * To the extent it has a right to do so, IBM grants an immunity from suit
64 * under its patents, if any, for the use, sale or manufacture of products to
65 * the extent that such products are used for performing Domain Name System
66 * dynamic updates in TCP/IP networks by means of the Software. No immunity is
67 * granted for any product per se or for any other function of any product.
69 * THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES,
70 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
71 * PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL,
72 * DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING
73 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN
74 * IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES.
78 #if defined(LIBC_SCCS) && !defined(lint)
79 static char sccsid
[] = "@(#)res_debug.c 8.1 (Berkeley) 6/4/93";
80 static char rcsid
[] = "$Id$";
81 #endif /* LIBC_SCCS and not lint */
83 #include <sys/param.h>
84 #include <sys/types.h>
85 #include <sys/socket.h>
86 #include <netinet/in.h>
87 #include <arpa/inet.h>
88 #include <arpa/nameser.h>
96 #if defined(BSD) && (BSD >= 199103) && defined(AF_INET6)
100 # include "../conf/portability.h"
103 #if defined(USE_OPTIONS_H)
104 # include "../conf/options.h"
107 extern const char *_res_opcodes
[];
108 extern const char *_res_resultcodes
[];
110 /* XXX: we should use getservbyport() instead. */
115 static char nbuf
[20];
118 case 5: return "rje";
119 case 7: return "echo";
120 case 9: return "discard";
121 case 11: return "systat";
122 case 13: return "daytime";
123 case 15: return "netstat";
124 case 17: return "qotd";
125 case 19: return "chargen";
126 case 20: return "ftp-data";
127 case 21: return "ftp";
128 case 23: return "telnet";
129 case 25: return "smtp";
130 case 37: return "time";
131 case 39: return "rlp";
132 case 42: return "name";
133 case 43: return "whois";
134 case 53: return "domain";
135 case 57: return "apts";
136 case 59: return "apfs";
137 case 67: return "bootps";
138 case 68: return "bootpc";
139 case 69: return "tftp";
140 case 77: return "rje";
141 case 79: return "finger";
142 case 87: return "link";
143 case 95: return "supdup";
144 case 100: return "newacct";
145 case 101: return "hostnames";
146 case 102: return "iso-tsap";
147 case 103: return "x400";
148 case 104: return "x400-snd";
149 case 105: return "csnet-ns";
150 case 109: return "pop-2";
151 case 111: return "sunrpc";
152 case 113: return "auth";
153 case 115: return "sftp";
154 case 117: return "uucp-path";
155 case 119: return "nntp";
156 case 121: return "erpc";
157 case 123: return "ntp";
158 case 133: return "statsrv";
159 case 136: return "profile";
160 case 144: return "NeWS";
161 case 161: return "snmp";
162 case 162: return "snmp-trap";
163 case 170: return "print-srv";
164 default: (void) sprintf(nbuf
, "%d", wks
); return (nbuf
);
168 /* XXX: we should use getprotobynumber() instead. */
173 static char nbuf
[20];
176 case 1: return "icmp";
177 case 2: return "igmp";
178 case 3: return "ggp";
180 case 6: return "tcp";
181 case 7: return "ucl";
182 case 8: return "egp";
183 case 9: return "igp";
184 case 11: return "nvp-II";
185 case 12: return "pup";
186 case 16: return "chaos";
187 case 17: return "udp";
188 default: (void) sprintf(nbuf
, "%d", protonum
); return (nbuf
);
192 static const u_char
*
193 do_rrset(msg
, len
, cp
, cnt
, pflag
, file
, hs
)
195 const u_char
*cp
, *msg
;
203 * Print answer records.
205 sflag
= (_res
.pfcode
& pflag
);
206 if (n
= ntohs(cnt
)) {
207 if ((!_res
.pfcode
) ||
208 ((sflag
) && (_res
.pfcode
& RES_PRF_HEAD1
)))
211 if ((!_res
.pfcode
) || sflag
) {
212 cp
= p_rr(cp
, msg
, file
);
215 cp
+= __dn_skipname(cp
, cp
+ MAXCDNAME
);
219 dlen
= _getshort((u_char
*)cp
);
223 if ((cp
- msg
) > len
)
226 if ((!_res
.pfcode
) ||
227 ((sflag
) && (_res
.pfcode
& RES_PRF_HEAD1
)))
237 __fp_query(msg
, stdout
);
241 /* ultrix 4.0's packaging has some icky packaging. alias for it here.
242 * there is more junk of this kind over in res_comp.c.
253 * Print the current options.
254 * This is intended to be primarily a debugging routine.
257 __fp_resstat(statp
, file
)
258 struct __res_state
*statp
;
261 register u_long mask
;
263 fprintf(file
, ";; res options:");
266 for (mask
= 1; mask
!= 0; mask
<<= 1)
267 if (statp
->options
& mask
)
268 fprintf(file
, " %s", p_option(mask
));
273 * Print the contents of a query.
274 * This is intended to be primarily a debugging routine.
277 __fp_nquery(msg
, len
, file
)
282 register const u_char
*cp
, *endMark
;
283 register const HEADER
*hp
;
286 if ((_res
.options
& RES_INIT
) == 0 && res_init() == -1)
289 #define TruncTest(x) if (x >= endMark) goto trunc
290 #define ErrorTest(x) if (x == NULL) goto error
293 * Print header fields.
298 if ((!_res
.pfcode
) || (_res
.pfcode
& RES_PRF_HEADX
) || hp
->rcode
) {
299 fprintf(file
, ";; ->>HEADER<<- opcode: %s, status: %s, id: %d",
300 _res_opcodes
[hp
->opcode
],
301 _res_resultcodes
[hp
->rcode
],
305 if ((!_res
.pfcode
) || (_res
.pfcode
& RES_PRF_HEADX
))
307 if ((!_res
.pfcode
) || (_res
.pfcode
& RES_PRF_HEAD2
)) {
308 fprintf(file
, "; flags:");
310 fprintf(file
, " qr");
312 fprintf(file
, " aa");
314 fprintf(file
, " tc");
316 fprintf(file
, " rd");
318 fprintf(file
, " ra");
320 fprintf(file
, " UNUSED-BIT-ON");
322 fprintf(file
, " ad");
324 fprintf(file
, " cd");
326 if ((!_res
.pfcode
) || (_res
.pfcode
& RES_PRF_HEAD1
)) {
327 fprintf(file
, "; Ques: %d", ntohs(hp
->qdcount
));
328 fprintf(file
, ", Ans: %d", ntohs(hp
->ancount
));
329 fprintf(file
, ", Auth: %d", ntohs(hp
->nscount
));
330 fprintf(file
, ", Addit: %d", ntohs(hp
->arcount
));
332 if ((!_res
.pfcode
) || (_res
.pfcode
&
333 (RES_PRF_HEADX
| RES_PRF_HEAD2
| RES_PRF_HEAD1
))) {
337 * Print question records.
339 if (n
= ntohs(hp
->qdcount
)) {
340 if ((!_res
.pfcode
) || (_res
.pfcode
& RES_PRF_QUES
))
341 fprintf(file
, ";; QUESTIONS:\n");
343 if ((!_res
.pfcode
) || (_res
.pfcode
& RES_PRF_QUES
))
344 fprintf(file
, ";;\t");
346 if ((!_res
.pfcode
) || (_res
.pfcode
& RES_PRF_QUES
))
347 cp
= p_cdnname(cp
, msg
, len
, file
);
352 if ((n
= dn_expand(msg
, msg
+len
, cp
, name
,
360 if ((!_res
.pfcode
) || (_res
.pfcode
& RES_PRF_QUES
))
361 fprintf(file
, ", type = %s",
362 __p_type(_getshort((u_char
*)cp
)));
365 if ((!_res
.pfcode
) || (_res
.pfcode
& RES_PRF_QUES
))
366 fprintf(file
, ", class = %s\n",
367 __p_class(_getshort((u_char
*)cp
)));
369 if ((!_res
.pfcode
) || (_res
.pfcode
& RES_PRF_QUES
))
374 * Print authoritative answer records
377 cp
= do_rrset(msg
, len
, cp
, hp
->ancount
, RES_PRF_ANS
, file
,
382 * print name server records
385 cp
= do_rrset(msg
, len
, cp
, hp
->nscount
, RES_PRF_AUTH
, file
,
386 ";; AUTHORITY RECORDS:\n");
391 * print additional records
393 cp
= do_rrset(msg
, len
, cp
, hp
->arcount
, RES_PRF_ADD
, file
,
394 ";; ADDITIONAL RECORDS:\n");
398 fprintf(file
, "\n;; ...truncated\n");
401 fprintf(file
, "\n;; ...malformed\n");
405 __fp_query(msg
, file
)
409 fp_nquery(msg
, PACKETSZ
, file
);
413 __p_cdnname(cp
, msg
, len
, file
)
414 const u_char
*cp
, *msg
;
421 if ((n
= dn_expand(msg
, msg
+ len
, cp
, name
, sizeof name
)) < 0)
431 __p_cdname(cp
, msg
, file
)
432 const u_char
*cp
, *msg
;
435 return (p_cdnname(cp
, msg
, PACKETSZ
, file
));
439 /* Return a fully-qualified domain name from a compressed name (with
443 __p_fqnname(cp
, msg
, msglen
, name
, namelen
)
444 const u_char
*cp
, *msg
;
451 if ((n
= dn_expand(msg
, cp
+ msglen
, cp
, name
, namelen
)) < 0)
453 newlen
= strlen (name
);
454 if (newlen
== 0 || name
[newlen
- 1] != '.')
455 if (newlen
+1 >= namelen
) /* Lack space for final dot */
458 strcpy(name
+ newlen
, ".");
462 /* XXX: the rest of these functions need to become length-limited, too. (vix)
466 __p_fqname(cp
, msg
, file
)
467 const u_char
*cp
, *msg
;
473 n
= __p_fqnname(cp
, msg
, MAXCDNAME
, name
, sizeof name
);
481 * Print resource record fields in human readable form.
484 __p_rr(cp
, msg
, file
)
485 const u_char
*cp
, *msg
;
488 int type
, class, dlen
, n
, c
;
489 struct in_addr inaddr
;
490 const u_char
*cp1
, *cp2
;
494 char rrname
[MAXDNAME
]; /* The fqdn of this RR */
495 char base64_key
[MAX_KEY_BASE64
];
497 if ((_res
.options
& RES_INIT
) == 0 && res_init() == -1) {
498 h_errno
= NETDB_INTERNAL
;
501 cp
= __p_fqnname(cp
, msg
, MAXCDNAME
, rrname
, sizeof rrname
);
503 return (NULL
); /* compression error */
506 type
= _getshort((u_char
*)cp
);
508 class = _getshort((u_char
*)cp
);
510 tmpttl
= _getlong((u_char
*)cp
);
512 dlen
= _getshort((u_char
*)cp
);
515 if ((!_res
.pfcode
) || (_res
.pfcode
& RES_PRF_TTLID
))
516 fprintf(file
, "\t%lu", (u_long
)tmpttl
);
517 if ((!_res
.pfcode
) || (_res
.pfcode
& RES_PRF_CLASS
))
518 fprintf(file
, "\t%s", __p_class(class));
519 fprintf(file
, "\t%s", __p_type(type
));
521 * Print type specific data, if appropriate
528 bcopy(cp
, (char *)&inaddr
, INADDRSZ
);
530 fprintf(file
, "\t%s", inet_ntoa(inaddr
));
532 } else if (dlen
== 7) {
537 address
= inet_ntoa(inaddr
);
539 protocol
= *(u_char
*)cp
;
540 cp
+= sizeof (u_char
);
541 port
= _getshort((u_char
*)cp
);
543 fprintf(file
, "\t%s\t; proto %d, port %d",
544 address
, protocol
, port
);
558 if ((cp
= p_fqname(cp
, msg
, file
)) == NULL
)
565 (void) fputs("\t\"", file
);
566 if ((n
= (unsigned char) *cp
++) != 0) {
567 for (c
= n
; c
> 0 && cp
< cp2
; c
--) {
568 if (strchr("\n\"\\", *cp
))
569 (void) putc('\\', file
);
570 (void) putc(*cp
++, file
);
574 if (cp
< cp2
&& (n
= (unsigned char) *cp
++) != 0) {
575 (void) fputs ("\t\"", file
);
576 for (c
= n
; c
> 0 && cp
< cp2
; c
--) {
577 if (strchr("\n\"\\", *cp
))
578 (void) putc('\\', file
);
579 (void) putc(*cp
++, file
);
582 } else if (type
== T_HINFO
) {
583 (void) fputs("\"?\"", file
);
584 fprintf(file
, "\n;; *** Warning *** OS-type missing");
590 if ((cp
= p_fqname(cp
, msg
, file
)) == NULL
)
593 if ((cp
= p_fqname(cp
, msg
, file
)) == NULL
)
596 t
= _getlong((u_char
*)cp
); cp
+= INT32SZ
;
597 fprintf(file
, "\t\t\t%lu\t; serial\n", (u_long
)t
);
598 t
= _getlong((u_char
*)cp
); cp
+= INT32SZ
;
599 fprintf(file
, "\t\t\t%lu\t; refresh (%s)\n",
600 (u_long
)t
, __p_time(t
));
601 t
= _getlong((u_char
*)cp
); cp
+= INT32SZ
;
602 fprintf(file
, "\t\t\t%lu\t; retry (%s)\n",
603 (u_long
)t
, __p_time(t
));
604 t
= _getlong((u_char
*)cp
); cp
+= INT32SZ
;
605 fprintf(file
, "\t\t\t%lu\t; expire (%s)\n",
606 (u_long
)t
, __p_time(t
));
607 t
= _getlong((u_char
*)cp
); cp
+= INT32SZ
;
608 fprintf(file
, "\t\t\t%lu )\t; minimum (%s)",
609 (u_long
)t
, __p_time(t
));
615 fprintf(file
, "\t%d ", _getshort((u_char
*)cp
));
617 if ((cp
= p_fqname(cp
, msg
, file
)) == NULL
)
622 fprintf(file
, "\t%d ", _getshort((u_char
*)cp
));
624 if ((cp
= p_fqname(cp
, msg
, file
)) == NULL
)
627 if ((cp
= p_fqname(cp
, msg
, file
)) == NULL
)
633 (void) fputs("\t\"", file
);
634 if ((n
= (unsigned char) *cp
++) != 0) {
635 for (c
= n
; c
> 0 && cp
< cp2
; c
--) {
636 if (strchr("\n\"\\", *cp
))
637 (void) putc('\\', file
);
638 (void) putc(*cp
++, file
);
645 (void) putc('\t', file
);
649 if (n
= (unsigned char) *cp
++) {
650 for (c
= n
; c
> 0 && cp
< cp2
; c
--) {
651 if (strchr("\n\"\\", *cp
))
652 (void) putc('\\', file
);
653 (void) putc(*cp
++, file
);
663 (void) fprintf(file
, "\t%s", inet_nsap_ntoa(dlen
, cp
, NULL
));
668 char t
[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"];
670 fprintf(file
, "\t%s\n", inet_ntop(AF_INET6
, cp
, t
, sizeof t
));
678 (void) fprintf(file
, "\t%s\n", loc_ntoa(cp
, t
));
686 if ((cp
= p_fqname(cp
, msg
, file
)) == NULL
)
689 if ((cp
= p_fqname(cp
, msg
, file
)) == NULL
)
695 fputs((char *)cp
, file
);
702 fprintf(file
, "\t%u", _getlong((u_char
*)cp
));
708 if (dlen
< INT32SZ
+ 1)
710 bcopy(cp
, (char *)&inaddr
, INADDRSZ
);
712 fprintf(file
, "\t%s %s ( ",
715 cp
+= sizeof (u_char
);
718 while (cp
< cp1
+ dlen
) {
723 fputs("\n\t\t\t", file
);
726 fputs(dewks(n
), file
);
738 keyflags
= _getshort(cp
);
740 fprintf(file
,"0x%04x", keyflags
); /* flags */
741 fprintf(file
," %u", *cp
++); /* protocol */
742 fprintf(file
," %u (", *cp
++); /* algorithm */
744 n
= b64_ntop(cp
, (cp1
+ dlen
) - cp
,
745 base64_key
, sizeof base64_key
);
746 for (c
= 0; c
< n
; ++c
) {
748 fprintf(file
, "\n\t");
749 putc(base64_key
[c
], file
); /* public key data */
754 fprintf(file
, "\t; BAD BASE64");
760 type
= _getshort((u_char
*)cp
);
762 fprintf(file
, " %s", p_type(type
));
763 fprintf(file
, "\t%d", *cp
++); /* algorithm */
764 /* Check label value and print error if wrong. */
766 c
= dn_count_labels (rrname
);
768 fprintf(file
, "\t; LABELS WRONG (%d should be %d)\n\t",
771 n
= _getlong((u_char
*)cp
);
773 fprintf(file
, " %u", n
);
776 fprintf(file
, " (\n\t%s",
777 __p_secstodate(_getlong((u_char
*)cp
)));
780 fprintf(file
, " %s", __p_secstodate(_getlong((u_char
*)cp
)));
783 fprintf(file
," %u ", _getshort((u_char
*)cp
));
786 cp
= p_fqname(cp
, msg
, file
);
787 n
= b64_ntop(cp
, (cp1
+ dlen
) - cp
,
788 base64_key
, sizeof base64_key
);
789 for (c
= 0; c
< n
; c
++) {
791 fprintf (file
, "\n\t");
792 putc(base64_key
[c
], file
); /* signature */
797 fprintf(file
, "\t; BAD BASE64");
802 #ifdef ALLOW_T_UNSPEC
809 if (dlen
< NumBytes
) NumBytes
= dlen
;
810 fprintf(file
, "\tFirst %d bytes of hex data:",
812 for (i
= 0, DataPtr
= cp
; i
< NumBytes
; i
++, DataPtr
++)
813 fprintf(file
, " %x", *DataPtr
);
817 #endif /* ALLOW_T_UNSPEC */
820 fprintf(file
, "\t?%d?", type
);
824 fprintf(file
, "\t; dlen=%d, ttl %s\n", dlen
, __p_time(tmpttl
));
828 if (cp
- cp1
!= dlen
) {
830 ";; packet size error (found %lu, dlen was %d)\n",
831 (unsigned long) (cp
- cp1
), dlen
);
838 * Names of RR classes and qclasses. Classes and qclasses are the same, except
839 * that C_ANY is a qclass but not a class. (You can ask for records of class
840 * C_ANY, but you can't have any records of that class in the database.)
842 const struct res_sym __p_class_syms
[] = {
852 * Names of RR types and qtypes. Types and qtypes are the same, except
853 * that T_ANY is a qtype but not a type. (You can ask for records of type
854 * T_ANY, but you can't have any records of that type in the database.)
856 const struct res_sym __p_type_syms
[] = {
857 {T_A
, "A", "address"},
858 {T_NS
, "NS", "name server"},
859 {T_CNAME
, "CNAME", "canonical name"},
860 {T_SOA
, "SOA", "start of authority"},
861 {T_MB
, "MB", "mailbox"},
862 {T_MG
, "MG", "mail group member"},
863 {T_MR
, "MR", "mail rename"},
864 {T_NULL
, "NULL", "null"},
865 {T_WKS
, "WKS", "well-known service"},
866 {T_PTR
, "PTR", "domain name pointer"},
867 {T_HINFO
, "HINFO", "host information"},
868 {T_MINFO
, "MINFO", "mailbox information"},
869 {T_MX
, "MX", "mail exchanger"},
870 {T_TXT
, "TXT", "text"},
871 {T_RP
, "RP", "responsible person"},
872 {T_AFSDB
, "AFSDB", "DCE or AFS server"},
873 {T_X25
, "X25", "X25 address"},
874 {T_ISDN
, "ISDN", "ISDN address"},
875 {T_RT
, "RT", "router"},
876 {T_NSAP
, "NSAP", "nsap address"},
877 {T_NSAP_PTR
, "NSAP_PTR", "domain name pointer"},
878 {T_SIG
, "SIG", "signature"},
879 {T_KEY
, "KEY", "key"},
880 {T_NXT
, "NXT", "next valid name"},
881 {T_PX
, "PX", "mapping information"},
882 {T_GPOS
, "GPOS", "geographical position"},
883 {T_AAAA
, "AAAA", "IPv6 address"},
884 {T_LOC
, "LOC", "location"},
885 {T_AXFR
, "AXFR", "zone transfer"},
886 {T_MAILB
, "MAILB", "mailbox-related data"},
887 {T_MAILA
, "MAILA", "mail agent"},
888 {T_UINFO
, "UINFO", "user information"},
889 {T_UID
, "UID", "user ID"},
890 {T_GID
, "GID", "group ID"},
891 #ifdef ALLOW_T_UNSPEC
892 {T_UNSPEC
, "UNSPEC", "unspecified data"},
893 #endif /* ALLOW_T_UNSPEC */
894 {T_ANY
, "ANY", "\"any\""},
895 {0, (char *)0, (char *)0}
899 __sym_ston(syms
, name
, success
)
900 const struct res_sym
*syms
;
905 /* Changed to prevent warning. --drepper@gnu */
906 for (; syms
->name
!= 0; syms
++) {
908 for (NULL
; syms
->name
!= 0; syms
++) {
910 if (strcasecmp (name
, syms
->name
) == 0) {
913 return (syms
->number
);
918 return (syms
->number
); /* The default value. */
922 __sym_ntos(syms
, number
, success
)
923 const struct res_sym
*syms
;
927 static char unname
[20];
930 /* Changed to prevent warning. --drepper@gnu */
931 for (; syms
->name
!= 0; syms
++) {
933 for (NULL
; syms
->name
!= 0; syms
++) {
935 if (number
== syms
->number
) {
942 sprintf (unname
, "%d", number
);
950 __sym_ntop(syms
, number
, success
)
951 const struct res_sym
*syms
;
955 static char unname
[20];
958 /* Changed to prevent warning. --drepper@gnu */
959 for (; syms
->name
!= 0; syms
++) {
961 for (NULL
; syms
->name
!= 0; syms
++) {
963 if (number
== syms
->number
) {
966 return (syms
->humanname
);
969 sprintf(unname
, "%d", number
);
976 * Return a string for the type
982 return (__sym_ntos (__p_type_syms
, type
, (int *)0));
986 * Return a mnemonic for class
992 return (__sym_ntos (__p_class_syms
, class, (int *)0));
996 * Return a mnemonic for an option
1002 static char nbuf
[40];
1005 case RES_INIT
: return "init";
1006 case RES_DEBUG
: return "debug";
1007 case RES_AAONLY
: return "aaonly(unimpl)";
1008 case RES_USEVC
: return "usevc";
1009 case RES_PRIMARY
: return "primry(unimpl)";
1010 case RES_IGNTC
: return "igntc";
1011 case RES_RECURSE
: return "recurs";
1012 case RES_DEFNAMES
: return "defnam";
1013 case RES_STAYOPEN
: return "styopn";
1014 case RES_DNSRCH
: return "dnsrch";
1015 case RES_INSECURE1
: return "insecure1";
1016 case RES_INSECURE2
: return "insecure2";
1017 default: sprintf(nbuf
, "?0x%lx?", (u_long
)option
);
1023 * Return a mnemonic for a time to live
1029 static char nbuf
[40];
1030 int secs
, mins
, hours
, days
;
1034 strcpy(nbuf
, "0 secs");
1047 #define PLURALIZE(x) x, (x == 1) ? "" : "s"
1050 (void)sprintf(p
, "%d day%s", PLURALIZE(days
));
1056 (void)sprintf(p
, "%d hour%s", PLURALIZE(hours
));
1062 (void)sprintf(p
, "%d min%s", PLURALIZE(mins
));
1065 if (secs
|| ! (days
|| hours
|| mins
)) {
1066 if (days
|| hours
|| mins
)
1068 (void)sprintf(p
, "%d sec%s", PLURALIZE(secs
));
1074 * routines to convert between on-the-wire RR format and zone file format.
1075 * Does not contain conversion to/from decimal degrees; divide or multiply
1076 * by 60*60*1000 for that.
1079 static unsigned int poweroften
[10] = {1, 10, 100, 1000, 10000, 100000,
1080 1000000,10000000,100000000,1000000000};
1082 /* takes an XeY precision/size value, returns a string representation. */
1087 static char retbuf
[sizeof "90000000.00"];
1089 int mantissa
, exponent
;
1091 mantissa
= (int)((prec
>> 4) & 0x0f) % 10;
1092 exponent
= (int)((prec
>> 0) & 0x0f) % 10;
1094 val
= mantissa
* poweroften
[exponent
];
1096 (void) sprintf(retbuf
, "%ld.%.2ld", val
/100, val
%100);
1100 /* converts ascii size/precision X * 10**Y(cm) to 0xXY. moves pointer. */
1102 precsize_aton(strptr
)
1105 unsigned int mval
= 0, cmval
= 0;
1106 u_int8_t retval
= 0;
1108 register int exponent
;
1109 register int mantissa
;
1113 while (isdigit(*cp
))
1114 mval
= mval
* 10 + (*cp
++ - '0');
1116 if (*cp
== '.') { /* centimeters */
1119 cmval
= (*cp
++ - '0') * 10;
1121 cmval
+= (*cp
++ - '0');
1125 cmval
= (mval
* 100) + cmval
;
1127 for (exponent
= 0; exponent
< 9; exponent
++)
1128 if (cmval
< poweroften
[exponent
+1])
1131 mantissa
= cmval
/ poweroften
[exponent
];
1135 retval
= (mantissa
<< 4) | exponent
;
1142 /* converts ascii lat/lon to unsigned encoded 32-bit number. moves pointer. */
1144 latlon2ul(latlonstrptr
,which
)
1145 char **latlonstrptr
;
1150 int deg
= 0, min
= 0, secs
= 0, secsfrac
= 0;
1154 while (isdigit(*cp
))
1155 deg
= deg
* 10 + (*cp
++ - '0');
1157 while (isspace(*cp
))
1160 if (!(isdigit(*cp
)))
1163 while (isdigit(*cp
))
1164 min
= min
* 10 + (*cp
++ - '0');
1166 while (isspace(*cp
))
1169 if (!(isdigit(*cp
)))
1172 while (isdigit(*cp
))
1173 secs
= secs
* 10 + (*cp
++ - '0');
1175 if (*cp
== '.') { /* decimal seconds */
1178 secsfrac
= (*cp
++ - '0') * 100;
1180 secsfrac
+= (*cp
++ - '0') * 10;
1182 secsfrac
+= (*cp
++ - '0');
1188 while (!isspace(*cp
)) /* if any trailing garbage */
1191 while (isspace(*cp
))
1198 retval
= ((unsigned)1<<31)
1199 + (((((deg
* 60) + min
) * 60) + secs
) * 1000)
1204 retval
= ((unsigned)1<<31)
1205 - (((((deg
* 60) + min
) * 60) + secs
) * 1000)
1209 retval
= 0; /* invalid value -- indicates error */
1216 *which
= 1; /* latitude */
1220 *which
= 2; /* longitude */
1223 *which
= 0; /* error */
1227 cp
++; /* skip the hemisphere */
1229 while (!isspace(*cp
)) /* if any trailing garbage */
1232 while (isspace(*cp
)) /* move to next field */
1240 /* converts a zone file representation in a string to an RDATA on-the-wire
1241 * representation. */
1243 loc_aton(ascii
, binary
)
1247 const char *cp
, *maxcp
;
1250 u_int32_t latit
= 0, longit
= 0, alt
= 0;
1251 u_int32_t lltemp1
= 0, lltemp2
= 0;
1252 int altmeters
= 0, altfrac
= 0, altsign
= 1;
1253 u_int8_t hp
= 0x16; /* default = 1e6 cm = 10000.00m = 10km */
1254 u_int8_t vp
= 0x13; /* default = 1e3 cm = 10.00m */
1255 u_int8_t siz
= 0x12; /* default = 1e2 cm = 1.00m */
1256 int which1
= 0, which2
= 0;
1259 maxcp
= cp
+ strlen(ascii
);
1261 lltemp1
= latlon2ul(&cp
, &which1
);
1263 lltemp2
= latlon2ul(&cp
, &which2
);
1265 switch (which1
+ which2
) {
1266 case 3: /* 1 + 2, the only valid combination */
1267 if ((which1
== 1) && (which2
== 2)) { /* normal case */
1270 } else if ((which1
== 2) && (which2
== 1)) { /* reversed */
1273 } else { /* some kind of brokenness */
1277 default: /* we didn't get one of each */
1290 while (isdigit(*cp
))
1291 altmeters
= altmeters
* 10 + (*cp
++ - '0');
1293 if (*cp
== '.') { /* decimal meters */
1296 altfrac
= (*cp
++ - '0') * 10;
1298 altfrac
+= (*cp
++ - '0');
1303 alt
= (10000000 + (altsign
* (altmeters
* 100 + altfrac
)));
1305 while (!isspace(*cp
) && (cp
< maxcp
)) /* if trailing garbage or m */
1308 while (isspace(*cp
) && (cp
< maxcp
))
1314 siz
= precsize_aton(&cp
);
1316 while (!isspace(*cp
) && (cp
< maxcp
)) /* if trailing garbage or m */
1319 while (isspace(*cp
) && (cp
< maxcp
))
1325 hp
= precsize_aton(&cp
);
1327 while (!isspace(*cp
) && (cp
< maxcp
)) /* if trailing garbage or m */
1330 while (isspace(*cp
) && (cp
< maxcp
))
1336 vp
= precsize_aton(&cp
);
1341 *bcp
++ = (u_int8_t
) 0; /* version byte */
1346 PUTLONG(longit
,bcp
);
1349 return (16); /* size of RR in octets */
1352 /* takes an on-the-wire LOC RR and formats it in a human readable format. */
1354 loc_ntoa(binary
, ascii
)
1355 const u_char
*binary
;
1358 static char *error
= "?";
1359 register const u_char
*cp
= binary
;
1361 int latdeg
, latmin
, latsec
, latsecfrac
;
1362 int longdeg
, longmin
, longsec
, longsecfrac
;
1363 char northsouth
, eastwest
;
1364 int altmeters
, altfrac
, altsign
;
1366 const int referencealt
= 100000 * 100;
1368 int32_t latval
, longval
, altval
;
1370 u_int8_t sizeval
, hpval
, vpval
, versionval
;
1372 char *sizestr
, *hpstr
, *vpstr
;
1377 sprintf(ascii
, "; error: unknown LOC RR version");
1387 latval
= (templ
- ((unsigned)1<<31));
1390 longval
= (templ
- ((unsigned)1<<31));
1393 if (templ
< referencealt
) { /* below WGS 84 spheroid */
1394 altval
= referencealt
- templ
;
1397 altval
= templ
- referencealt
;
1407 latsecfrac
= latval
% 1000;
1408 latval
= latval
/ 1000;
1409 latsec
= latval
% 60;
1410 latval
= latval
/ 60;
1411 latmin
= latval
% 60;
1412 latval
= latval
/ 60;
1421 longsecfrac
= longval
% 1000;
1422 longval
= longval
/ 1000;
1423 longsec
= longval
% 60;
1424 longval
= longval
/ 60;
1425 longmin
= longval
% 60;
1426 longval
= longval
/ 60;
1429 altfrac
= altval
% 100;
1430 altmeters
= (altval
/ 100) * altsign
;
1432 if ((sizestr
= strdup(precsize_ntoa(sizeval
))) == NULL
)
1434 if ((hpstr
= strdup(precsize_ntoa(hpval
))) == NULL
)
1436 if ((vpstr
= strdup(precsize_ntoa(vpval
))) == NULL
)
1440 "%d %.2d %.2d.%.3d %c %d %.2d %.2d.%.3d %c %d.%.2dm %sm %sm %sm",
1441 latdeg
, latmin
, latsec
, latsecfrac
, northsouth
,
1442 longdeg
, longmin
, longsec
, longsecfrac
, eastwest
,
1443 altmeters
, altfrac
, sizestr
, hpstr
, vpstr
);
1445 if (sizestr
!= error
)
1456 /* Return the number of DNS hierarchy levels in the name. */
1458 __dn_count_labels(name
)
1465 for(i
= 0, count
= 0; i
< len
; i
++) {
1470 /* don't count initial wildcard */
1475 /* don't count the null label for root. */
1476 /* if terminating '.' not found, must adjust */
1477 /* count to include last label */
1478 if (len
> 0 && name
[len
-1] != '.')
1485 * Make dates expressed in seconds-since-Jan-1-1970 easy to read.
1486 * SIG records are required to be printed like this, by the Secure DNS RFC.
1489 __p_secstodate (secs
)
1492 static char output
[15]; /* YYYYMMDDHHMMSS and null */
1493 time_t clock
= secs
;
1496 time
= gmtime(&clock
);
1497 time
->tm_year
+= 1900;
1499 sprintf(output
, "%04d%02d%02d%02d%02d%02d",
1500 time
->tm_year
, time
->tm_mon
, time
->tm_mday
,
1501 time
->tm_hour
, time
->tm_min
, time
->tm_sec
);