]>
The Tcpdump Group git mirrors - tcpdump/blob - print-domain.c
2 * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and
9 * this paragraph in its entirety in the documentation or other materials
10 * provided with the distribution, and (3) all advertising materials mentioning
11 * features or use of this software display the following acknowledgement:
12 * ``This product includes software developed by the University of California,
13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 * the University nor the names of its contributors may be used to endorse
15 * or promote products derived from this software without specific prior
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
23 static const char rcsid
[] =
24 "@(#) $Header: /tcpdump/master/tcpdump/print-domain.c,v 1.84 2003-04-04 03:49:25 fenner Exp $ (LBL)";
31 #include <tcpdump-stdinc.h>
38 #include "interface.h"
39 #include "addrtoname.h"
40 #include "extract.h" /* must come after interface.h */
42 static const char *ns_ops
[] = {
43 "", " inv_q", " stat", " op3", " notify", " update", " op6", " op7",
44 " op8", " updataA", " updateD", " updateDA",
45 " updateM", " updateMA", " zoneInit", " zoneRef",
48 static const char *ns_resp
[] = {
49 "", " FormErr", " ServFail", " NXDomain",
50 " NotImp", " Refused", " YXDomain", " YXRRSet",
51 " NXRRSet", " NotAuth", " NotZone", " Resp11",
52 " Resp12", " Resp13", " Resp14", " NoChange",
55 /* skip over a domain name */
57 ns_nskip(register const u_char
*cp
)
65 if ((i
& INDIR_MASK
) == INDIR_MASK
)
67 if ((i
& INDIR_MASK
) == EDNS0_MASK
) {
70 if ((i
& ~INDIR_MASK
) != EDNS0_ELT_BITLABEL
)
71 return(NULL
); /* unknown ELT */
74 if ((bitlen
= *cp
++) == 0)
76 bytelen
= (bitlen
+ 7) / 8;
87 /* print a <domain-name> */
89 blabel_print(const u_char
*cp
)
93 const u_char
*bitp
, *lim
;
98 if ((bitlen
= *cp
) == 0)
100 slen
= (bitlen
+ 3) / 4;
101 if ((lim
= cp
+ 1 + slen
) > snapend
) {
106 /* print the bit string as a hex string */
108 for (bitp
= cp
+ 1, b
= bitlen
; bitp
< lim
&& b
> 7; b
-= 8, bitp
++)
109 printf("%02x", *bitp
);
114 printf("%02x", tc
& (0xff << (8 - b
)));
117 printf("%1x", ((tc
>> 4) & 0x0f) & (0x0f << (4 - b
)));
119 printf("/%d]", bitlen
);
121 return(truncated
? NULL
: lim
);
125 labellen(const u_char
*cp
)
132 if ((i
& INDIR_MASK
) == EDNS0_MASK
) {
135 if ((elt
= (i
& ~INDIR_MASK
)) != EDNS0_ELT_BITLABEL
)
137 if (!TTEST2(*(cp
+ 1), 1))
139 if ((bitlen
= *(cp
+ 1)) == 0)
141 return(((bitlen
+ 7) / 8) + 1);
146 static const u_char
*
147 ns_nprint(register const u_char
*cp
, register const u_char
*bp
)
150 register const u_char
*rp
= NULL
;
151 register int compress
= 0;
154 int data_size
= snapend
- bp
;
156 if ((l
= labellen(cp
)) == (u_int
)-1)
161 if (((i
= *cp
++) & INDIR_MASK
) != INDIR_MASK
) {
167 while (i
&& cp
< snapend
) {
168 if ((i
& INDIR_MASK
) == INDIR_MASK
) {
175 cp
= bp
+ (((i
<< 8) | *cp
) & 0x3fff);
176 if ((l
= labellen(cp
)) == (u_int
)-1)
184 * If we've looked at every character in
185 * the message, this pointer will make
186 * us look at some character again,
187 * which means we're looping.
189 if (chars_processed
>= data_size
) {
195 if ((i
& INDIR_MASK
) == EDNS0_MASK
) {
196 elt
= (i
& ~INDIR_MASK
);
198 case EDNS0_ELT_BITLABEL
:
199 if (blabel_print(cp
) == NULL
)
204 printf("<ELT %d>", elt
);
208 if (fn_printn(cp
, l
, snapend
))
213 chars_processed
+= l
;
215 if ((l
= labellen(cp
)) == (u_int
)-1)
229 /* print a <character-string> */
230 static const u_char
*
231 ns_cprint(register const u_char
*cp
)
238 if (fn_printn(cp
, i
, snapend
))
243 /* http://www.iana.org/assignments/dns-parameters */
244 struct tok ns_type2str
[] = {
245 { T_A
, "A" }, /* RFC 1035 */
246 { T_NS
, "NS" }, /* RFC 1035 */
247 { T_MD
, "MD" }, /* RFC 1035 */
248 { T_MF
, "MF" }, /* RFC 1035 */
249 { T_CNAME
, "CNAME" }, /* RFC 1035 */
250 { T_SOA
, "SOA" }, /* RFC 1035 */
251 { T_MB
, "MB" }, /* RFC 1035 */
252 { T_MG
, "MG" }, /* RFC 1035 */
253 { T_MR
, "MR" }, /* RFC 1035 */
254 { T_NULL
, "NULL" }, /* RFC 1035 */
255 { T_WKS
, "WKS" }, /* RFC 1035 */
256 { T_PTR
, "PTR" }, /* RFC 1035 */
257 { T_HINFO
, "HINFO" }, /* RFC 1035 */
258 { T_MINFO
, "MINFO" }, /* RFC 1035 */
259 { T_MX
, "MX" }, /* RFC 1035 */
260 { T_TXT
, "TXT" }, /* RFC 1035 */
261 { T_RP
, "RP" }, /* RFC 1183 */
262 { T_AFSDB
, "AFSDB" }, /* RFC 1183 */
263 { T_X25
, "X25" }, /* RFC 1183 */
264 { T_ISDN
, "ISDN" }, /* RFC 1183 */
265 { T_RT
, "RT" }, /* RFC 1183 */
266 { T_NSAP
, "NSAP" }, /* RFC 1706 */
267 { T_NSAP_PTR
, "NSAP_PTR" },
268 { T_SIG
, "SIG" }, /* RFC 2535 */
269 { T_KEY
, "KEY" }, /* RFC 2535 */
270 { T_PX
, "PX" }, /* RFC 2163 */
271 { T_GPOS
, "GPOS" }, /* RFC 1712 */
272 { T_AAAA
, "AAAA" }, /* RFC 1886 */
273 { T_LOC
, "LOC" }, /* RFC 1876 */
274 { T_NXT
, "NXT" }, /* RFC 2535 */
275 { T_EID
, "EID" }, /* Nimrod */
276 { T_NIMLOC
, "NIMLOC" }, /* Nimrod */
277 { T_SRV
, "SRV" }, /* RFC 2782 */
278 { T_ATMA
, "ATMA" }, /* ATM Forum */
279 { T_NAPTR
, "NAPTR" }, /* RFC 2168, RFC 2915 */
280 { T_A6
, "A6" }, /* RFC 2874 */
281 { T_DNAME
, "DNAME" }, /* RFC 2672 */
282 { T_OPT
, "OPT" }, /* RFC 2671 */
283 { T_UINFO
, "UINFO" },
286 { T_UNSPEC
, "UNSPEC" },
287 { T_UNSPECA
, "UNSPECA" },
288 { T_TKEY
, "TKEY" }, /* RFC 2930 */
289 { T_TSIG
, "TSIG" }, /* RFC 2845 */
290 { T_IXFR
, "IXFR" }, /* RFC 1995 */
291 { T_AXFR
, "AXFR" }, /* RFC 1035 */
292 { T_MAILB
, "MAILB" }, /* RFC 1035 */
293 { T_MAILA
, "MAILA" }, /* RFC 1035 */
298 struct tok ns_class2str
[] = {
299 { C_IN
, "IN" }, /* Not used */
300 { C_CHAOS
, "CHAOS" },
307 static const u_char
*
308 ns_qprint(register const u_char
*cp
, register const u_char
*bp
)
310 register const u_char
*np
= cp
;
315 if (cp
== NULL
|| !TTEST2(*cp
, 4))
318 /* print the qtype and qclass (if it's not IN) */
319 i
= EXTRACT_16BITS(cp
);
321 printf(" %s", tok2str(ns_type2str
, "Type%d", i
));
322 i
= EXTRACT_16BITS(cp
);
325 printf(" %s", tok2str(ns_class2str
, "(Class %d)", i
));
328 cp
= ns_nprint(np
, bp
);
329 return(cp
? cp
+ 4 : NULL
);
333 static const u_char
*
334 ns_rprint(register const u_char
*cp
, register const u_char
*bp
)
336 register u_int
class;
337 register u_short typ
, len
;
338 register const u_char
*rp
;
342 if ((cp
= ns_nprint(cp
, bp
)) == NULL
)
347 if (cp
== NULL
|| !TTEST2(*cp
, 10))
350 /* print the type/qtype and class (if it's not IN) */
351 typ
= EXTRACT_16BITS(cp
);
353 class = EXTRACT_16BITS(cp
);
355 if (class != C_IN
&& typ
!= T_OPT
)
356 printf(" %s", tok2str(ns_class2str
, "(Class %d)", class));
361 len
= EXTRACT_16BITS(cp
);
366 printf(" %s", tok2str(ns_type2str
, "Type%d", typ
));
372 if (!TTEST2(*cp
, sizeof(struct in_addr
)))
374 printf(" %s", ipaddr_string(cp
));
384 if (ns_nprint(cp
, bp
) == NULL
)
392 if ((cp
= ns_nprint(cp
, bp
)) == NULL
)
395 if ((cp
= ns_nprint(cp
, bp
)) == NULL
)
397 if (!TTEST2(*cp
, 5 * 4))
399 printf(" %u", EXTRACT_32BITS(cp
));
401 printf(" %u", EXTRACT_32BITS(cp
));
403 printf(" %u", EXTRACT_32BITS(cp
));
405 printf(" %u", EXTRACT_32BITS(cp
));
407 printf(" %u", EXTRACT_32BITS(cp
));
414 if (ns_nprint(cp
+ 2, bp
) == NULL
)
416 printf(" %d", EXTRACT_16BITS(cp
));
433 if (ns_nprint(cp
+ 6, bp
) == NULL
)
435 printf(":%d %d %d", EXTRACT_16BITS(cp
+ 4),
436 EXTRACT_16BITS(cp
), EXTRACT_16BITS(cp
+ 2));
441 if (!TTEST2(*cp
, sizeof(struct in6_addr
)))
443 printf(" %s", ip6addr_string(cp
));
454 pbyte
= (pbit
& ~7) / 8;
456 printf(" %u(bad plen)", pbit
);
458 } else if (pbit
< 128) {
459 if (!TTEST2(*(cp
+ 1), sizeof(a
) - pbyte
))
461 memset(&a
, 0, sizeof(a
));
462 memcpy(&a
.s6_addr
[pbyte
], cp
+ 1, sizeof(a
) - pbyte
);
463 printf(" %u %s", pbit
, ip6addr_string(&a
));
467 if (ns_nprint(cp
+ 1 + sizeof(a
) - pbyte
, bp
) == NULL
)
475 printf(" UDPsize=%u", class);
478 case T_UNSPECA
: /* One long string */
479 if (!TTEST2(*cp
, len
))
481 if (fn_printn(cp
, len
, snapend
))
487 if (cp
+ len
> snapend
)
492 if ((cp
= ns_nprint(cp
, bp
)) == NULL
)
497 printf(" fudge=%u", EXTRACT_16BITS(cp
));
501 printf(" maclen=%u", EXTRACT_16BITS(cp
));
502 cp
+= 2 + EXTRACT_16BITS(cp
);
505 printf(" origid=%u", EXTRACT_16BITS(cp
));
509 printf(" error=%u", EXTRACT_16BITS(cp
));
513 printf(" otherlen=%u", EXTRACT_16BITS(cp
));
517 return (rp
); /* XXX This isn't always right */
521 ns_print(register const u_char
*bp
, u_int length
)
523 register const HEADER
*np
;
524 register int qdcount
, ancount
, nscount
, arcount
;
525 register const u_char
*cp
;
528 np
= (const HEADER
*)bp
;
530 /* get the byte-order right */
531 qdcount
= EXTRACT_16BITS(&np
->qdcount
);
532 ancount
= EXTRACT_16BITS(&np
->ancount
);
533 nscount
= EXTRACT_16BITS(&np
->nscount
);
534 arcount
= EXTRACT_16BITS(&np
->arcount
);
537 /* this is a response */
538 printf(" %d%s%s%s%s%s%s",
539 EXTRACT_16BITS(&np
->id
),
540 ns_ops
[DNS_OPCODE(np
)],
541 ns_resp
[DNS_RCODE(np
)],
542 DNS_AA(np
)? "*" : "",
543 DNS_RA(np
)? "" : "-",
544 DNS_TC(np
)? "|" : "",
545 DNS_CD(np
)? "%" : "");
548 printf(" [%dq]", qdcount
);
549 /* Print QUESTION section on -vv */
550 cp
= (const u_char
*)(np
+ 1);
552 if (qdcount
< EXTRACT_16BITS(&np
->qdcount
) - 1)
555 fputs(" q:", stdout
);
556 if ((cp
= ns_qprint(cp
, bp
)) == NULL
)
559 if ((cp
= ns_nskip(cp
)) == NULL
)
561 cp
+= 4; /* skip QTYPE and QCLASS */
564 printf(" %d/%d/%d", ancount
, nscount
, arcount
);
566 if ((cp
= ns_rprint(cp
, bp
)) == NULL
)
568 while (cp
< snapend
&& ancount
--) {
570 if ((cp
= ns_rprint(cp
, bp
)) == NULL
)
576 /* Print NS and AR sections on -vv */
578 if (cp
< snapend
&& nscount
--) {
579 fputs(" ns:", stdout
);
580 if ((cp
= ns_rprint(cp
, bp
)) == NULL
)
582 while (cp
< snapend
&& nscount
--) {
584 if ((cp
= ns_rprint(cp
, bp
)) == NULL
)
590 if (cp
< snapend
&& arcount
--) {
591 fputs(" ar:", stdout
);
592 if ((cp
= ns_rprint(cp
, bp
)) == NULL
)
594 while (cp
< snapend
&& arcount
--) {
596 if ((cp
= ns_rprint(cp
, bp
)) == NULL
)
605 /* this is a request */
606 printf(" %d%s%s%s", EXTRACT_16BITS(&np
->id
), ns_ops
[DNS_OPCODE(np
)],
607 DNS_RD(np
) ? "+" : "",
608 DNS_AD(np
) ? "$" : "");
611 b2
= EXTRACT_16BITS(((u_short
*)np
)+1);
613 printf(" [b2&3=0x%x]", b2
);
615 if (DNS_OPCODE(np
) == IQUERY
) {
617 printf(" [%dq]", qdcount
);
619 printf(" [%da]", ancount
);
623 printf(" [%da]", ancount
);
625 printf(" [%dq]", qdcount
);
628 printf(" [%dn]", nscount
);
630 printf(" [%dau]", arcount
);
632 cp
= (const u_char
*)(np
+ 1);
634 cp
= ns_qprint(cp
, (const u_char
*)np
);
637 while (cp
< snapend
&& qdcount
--) {
638 cp
= ns_qprint((const u_char
*)cp
,
647 /* Print remaining sections on -vv */
650 if ((cp
= ns_rprint(cp
, bp
)) == NULL
)
652 while (cp
< snapend
&& ancount
--) {
654 if ((cp
= ns_rprint(cp
, bp
)) == NULL
)
660 if (cp
< snapend
&& nscount
--) {
661 fputs(" ns:", stdout
);
662 if ((cp
= ns_rprint(cp
, bp
)) == NULL
)
664 while (nscount
-- && cp
< snapend
) {
666 if ((cp
= ns_rprint(cp
, bp
)) == NULL
)
672 if (cp
< snapend
&& arcount
--) {
673 fputs(" ar:", stdout
);
674 if ((cp
= ns_rprint(cp
, bp
)) == NULL
)
676 while (cp
< snapend
&& arcount
--) {
678 if ((cp
= ns_rprint(cp
, bp
)) == NULL
)
686 printf(" (%d)", length
);