]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - 6/contrib/tcpdump/print-domain.c
Clone Kip's Xen on stable/6 tree so that I can work on improving FreeBSD/amd64
[FreeBSD/FreeBSD.git] / 6 / contrib / tcpdump / print-domain.c
1 /*
2  * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
3  *      The Regents of the University of California.  All rights reserved.
4  *
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
16  * written permission.
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.
20  *
21  * $FreeBSD$
22  */
23
24 #ifndef lint
25 static const char rcsid[] _U_ =
26     "@(#) $Header: /tcpdump/master/tcpdump/print-domain.c,v 1.89.2.1 2005/04/20 20:59:00 guy Exp $ (LBL)";
27 #endif
28
29 #ifdef HAVE_CONFIG_H
30 #include "config.h"
31 #endif
32
33 #include <tcpdump-stdinc.h>
34
35 #include "nameser.h"
36
37 #include <stdio.h>
38 #include <string.h>
39
40 #include "interface.h"
41 #include "addrtoname.h"
42 #include "extract.h"                    /* must come after interface.h */
43
44 static const char *ns_ops[] = {
45         "", " inv_q", " stat", " op3", " notify", " update", " op6", " op7",
46         " op8", " updataA", " updateD", " updateDA",
47         " updateM", " updateMA", " zoneInit", " zoneRef",
48 };
49
50 static const char *ns_resp[] = {
51         "", " FormErr", " ServFail", " NXDomain",
52         " NotImp", " Refused", " YXDomain", " YXRRSet",
53         " NXRRSet", " NotAuth", " NotZone", " Resp11",
54         " Resp12", " Resp13", " Resp14", " NoChange",
55 };
56
57 /* skip over a domain name */
58 static const u_char *
59 ns_nskip(register const u_char *cp)
60 {
61         register u_char i;
62
63         if (!TTEST2(*cp, 1))
64                 return (NULL);
65         i = *cp++;
66         while (i) {
67                 if ((i & INDIR_MASK) == INDIR_MASK)
68                         return (cp + 1);
69                 if ((i & INDIR_MASK) == EDNS0_MASK) {
70                         int bitlen, bytelen;
71
72                         if ((i & ~INDIR_MASK) != EDNS0_ELT_BITLABEL)
73                                 return(NULL); /* unknown ELT */
74                         if (!TTEST2(*cp, 1))
75                                 return (NULL);
76                         if ((bitlen = *cp++) == 0)
77                                 bitlen = 256;
78                         bytelen = (bitlen + 7) / 8;
79                         cp += bytelen;
80                 } else
81                         cp += i;
82                 if (!TTEST2(*cp, 1))
83                         return (NULL);
84                 i = *cp++;
85         }
86         return (cp);
87 }
88
89 /* print a <domain-name> */
90 static const u_char *
91 blabel_print(const u_char *cp)
92 {
93         int bitlen, slen, b;
94         const u_char *bitp, *lim;
95         char tc;
96
97         if (!TTEST2(*cp, 1))
98                 return(NULL);
99         if ((bitlen = *cp) == 0)
100                 bitlen = 256;
101         slen = (bitlen + 3) / 4;
102         lim = cp + 1 + slen;
103
104         /* print the bit string as a hex string */
105         printf("\\[x");
106         for (bitp = cp + 1, b = bitlen; bitp < lim && b > 7; b -= 8, bitp++) {
107                 TCHECK(*bitp);
108                 printf("%02x", *bitp);
109         }
110         if (b > 4) {
111                 TCHECK(*bitp);
112                 tc = *bitp++;
113                 printf("%02x", tc & (0xff << (8 - b)));
114         } else if (b > 0) {
115                 TCHECK(*bitp);
116                 tc = *bitp++;
117                 printf("%1x", ((tc >> 4) & 0x0f) & (0x0f << (4 - b)));
118         }
119         printf("/%d]", bitlen);
120         return lim;
121 trunc:
122         printf(".../%d]", bitlen);
123         return NULL;
124 }
125
126 static int
127 labellen(const u_char *cp)
128 {
129         register u_int i;
130
131         if (!TTEST2(*cp, 1))
132                 return(-1);
133         i = *cp;
134         if ((i & INDIR_MASK) == EDNS0_MASK) {
135                 int bitlen, elt;
136                 if ((elt = (i & ~INDIR_MASK)) != EDNS0_ELT_BITLABEL) {
137                         printf("<ELT %d>", elt);
138                         return(-1);
139                 }
140                 if (!TTEST2(*(cp + 1), 1))
141                         return(-1);
142                 if ((bitlen = *(cp + 1)) == 0)
143                         bitlen = 256;
144                 return(((bitlen + 7) / 8) + 1);
145         } else
146                 return(i);
147 }
148
149 static const u_char *
150 ns_nprint(register const u_char *cp, register const u_char *bp)
151 {
152         register u_int i, l;
153         register const u_char *rp = NULL;
154         register int compress = 0;
155         int chars_processed;
156         int elt;
157         int data_size = snapend - bp;
158
159         if ((l = labellen(cp)) == (u_int)-1)
160                 return(NULL);
161         if (!TTEST2(*cp, 1))
162                 return(NULL);
163         chars_processed = 1;
164         if (((i = *cp++) & INDIR_MASK) != INDIR_MASK) {
165                 compress = 0;
166                 rp = cp + l;
167         }
168
169         if (i != 0)
170                 while (i && cp < snapend) {
171                         if ((i & INDIR_MASK) == INDIR_MASK) {
172                                 if (!compress) {
173                                         rp = cp + 1;
174                                         compress = 1;
175                                 }
176                                 if (!TTEST2(*cp, 1))
177                                         return(NULL);
178                                 cp = bp + (((i << 8) | *cp) & 0x3fff);
179                                 if ((l = labellen(cp)) == (u_int)-1)
180                                         return(NULL);
181                                 if (!TTEST2(*cp, 1))
182                                         return(NULL);
183                                 i = *cp++;
184                                 chars_processed++;
185
186                                 /*
187                                  * If we've looked at every character in
188                                  * the message, this pointer will make
189                                  * us look at some character again,
190                                  * which means we're looping.
191                                  */
192                                 if (chars_processed >= data_size) {
193                                         printf("<LOOP>");
194                                         return (NULL);
195                                 }
196                                 continue;
197                         }
198                         if ((i & INDIR_MASK) == EDNS0_MASK) {
199                                 elt = (i & ~INDIR_MASK);
200                                 switch(elt) {
201                                 case EDNS0_ELT_BITLABEL:
202                                         if (blabel_print(cp) == NULL)
203                                                 return (NULL);
204                                         break;
205                                 default:
206                                         /* unknown ELT */
207                                         printf("<ELT %d>", elt);
208                                         return(NULL);
209                                 }
210                         } else {
211                                 if (fn_printn(cp, l, snapend))
212                                         return(NULL);
213                         }
214
215                         cp += l;
216                         chars_processed += l;
217                         putchar('.');
218                         if ((l = labellen(cp)) == (u_int)-1)
219                                 return(NULL);
220                         if (!TTEST2(*cp, 1))
221                                 return(NULL);
222                         i = *cp++;
223                         chars_processed++;
224                         if (!compress)
225                                 rp += l + 1;
226                 }
227         else
228                 putchar('.');
229         return (rp);
230 }
231
232 /* print a <character-string> */
233 static const u_char *
234 ns_cprint(register const u_char *cp)
235 {
236         register u_int i;
237
238         if (!TTEST2(*cp, 1))
239                 return (NULL);
240         i = *cp++;
241         if (fn_printn(cp, i, snapend))
242                 return (NULL);
243         return (cp + i);
244 }
245
246 /* http://www.iana.org/assignments/dns-parameters */
247 struct tok ns_type2str[] = {
248         { T_A,          "A" },                  /* RFC 1035 */
249         { T_NS,         "NS" },                 /* RFC 1035 */
250         { T_MD,         "MD" },                 /* RFC 1035 */
251         { T_MF,         "MF" },                 /* RFC 1035 */
252         { T_CNAME,      "CNAME" },              /* RFC 1035 */
253         { T_SOA,        "SOA" },                /* RFC 1035 */
254         { T_MB,         "MB" },                 /* RFC 1035 */
255         { T_MG,         "MG" },                 /* RFC 1035 */
256         { T_MR,         "MR" },                 /* RFC 1035 */
257         { T_NULL,       "NULL" },               /* RFC 1035 */
258         { T_WKS,        "WKS" },                /* RFC 1035 */
259         { T_PTR,        "PTR" },                /* RFC 1035 */
260         { T_HINFO,      "HINFO" },              /* RFC 1035 */
261         { T_MINFO,      "MINFO" },              /* RFC 1035 */
262         { T_MX,         "MX" },                 /* RFC 1035 */
263         { T_TXT,        "TXT" },                /* RFC 1035 */
264         { T_RP,         "RP" },                 /* RFC 1183 */
265         { T_AFSDB,      "AFSDB" },              /* RFC 1183 */
266         { T_X25,        "X25" },                /* RFC 1183 */
267         { T_ISDN,       "ISDN" },               /* RFC 1183 */
268         { T_RT,         "RT" },                 /* RFC 1183 */
269         { T_NSAP,       "NSAP" },               /* RFC 1706 */
270         { T_NSAP_PTR,   "NSAP_PTR" },
271         { T_SIG,        "SIG" },                /* RFC 2535 */
272         { T_KEY,        "KEY" },                /* RFC 2535 */
273         { T_PX,         "PX" },                 /* RFC 2163 */
274         { T_GPOS,       "GPOS" },               /* RFC 1712 */
275         { T_AAAA,       "AAAA" },               /* RFC 1886 */
276         { T_LOC,        "LOC" },                /* RFC 1876 */
277         { T_NXT,        "NXT" },                /* RFC 2535 */
278         { T_EID,        "EID" },                /* Nimrod */
279         { T_NIMLOC,     "NIMLOC" },             /* Nimrod */
280         { T_SRV,        "SRV" },                /* RFC 2782 */
281         { T_ATMA,       "ATMA" },               /* ATM Forum */
282         { T_NAPTR,      "NAPTR" },              /* RFC 2168, RFC 2915 */
283         { T_A6,         "A6" },                 /* RFC 2874 */
284         { T_DNAME,      "DNAME" },              /* RFC 2672 */
285         { T_OPT,        "OPT" },                /* RFC 2671 */
286         { T_UINFO,      "UINFO" },
287         { T_UID,        "UID" },
288         { T_GID,        "GID" },
289         { T_UNSPEC,     "UNSPEC" },
290         { T_UNSPECA,    "UNSPECA" },
291         { T_TKEY,       "TKEY" },               /* RFC 2930 */
292         { T_TSIG,       "TSIG" },               /* RFC 2845 */
293         { T_IXFR,       "IXFR" },               /* RFC 1995 */
294         { T_AXFR,       "AXFR" },               /* RFC 1035 */
295         { T_MAILB,      "MAILB" },              /* RFC 1035 */
296         { T_MAILA,      "MAILA" },              /* RFC 1035 */
297         { T_ANY,        "ANY" },
298         { 0,            NULL }
299 };
300
301 struct tok ns_class2str[] = {
302         { C_IN,         "IN" },         /* Not used */
303         { C_CHAOS,      "CHAOS" },
304         { C_HS,         "HS" },
305         { C_ANY,        "ANY" },
306         { 0,            NULL }
307 };
308
309 /* print a query */
310 static const u_char *
311 ns_qprint(register const u_char *cp, register const u_char *bp, int is_mdns)
312 {
313         register const u_char *np = cp;
314         register u_int i;
315
316         cp = ns_nskip(cp);
317
318         if (cp == NULL || !TTEST2(*cp, 4))
319                 return(NULL);
320
321         /* print the qtype and qclass (if it's not IN) */
322         i = EXTRACT_16BITS(cp);
323         cp += 2;
324         printf(" %s", tok2str(ns_type2str, "Type%d", i));
325         i = EXTRACT_16BITS(cp);
326         cp += 2;
327         if (is_mdns && i == (C_IN|C_CACHE_FLUSH))
328                 printf(" (Cache flush)");
329         else if (i != C_IN)
330                 printf(" %s", tok2str(ns_class2str, "(Class %d)", i));
331
332         fputs("? ", stdout);
333         cp = ns_nprint(np, bp);
334         return(cp ? cp + 4 : NULL);
335 }
336
337 /* print a reply */
338 static const u_char *
339 ns_rprint(register const u_char *cp, register const u_char *bp, int is_mdns)
340 {
341         register u_int class;
342         register u_short typ, len;
343         register const u_char *rp;
344
345         if (vflag) {
346                 putchar(' ');
347                 if ((cp = ns_nprint(cp, bp)) == NULL)
348                         return NULL;
349         } else
350                 cp = ns_nskip(cp);
351
352         if (cp == NULL || !TTEST2(*cp, 10))
353                 return (snapend);
354
355         /* print the type/qtype and class (if it's not IN) */
356         typ = EXTRACT_16BITS(cp);
357         cp += 2;
358         class = EXTRACT_16BITS(cp);
359         cp += 2;
360         if (is_mdns && class == (C_IN|C_CACHE_FLUSH))
361                 printf(" (Cache flush)");
362         else if (class != C_IN && typ != T_OPT)
363                 printf(" %s", tok2str(ns_class2str, "(Class %d)", class));
364
365         /* ignore ttl */
366         cp += 4;
367
368         len = EXTRACT_16BITS(cp);
369         cp += 2;
370
371         rp = cp + len;
372
373         printf(" %s", tok2str(ns_type2str, "Type%d", typ));
374         if (rp > snapend)
375                 return(NULL);
376
377         switch (typ) {
378         case T_A:
379                 if (!TTEST2(*cp, sizeof(struct in_addr)))
380                         return(NULL);
381                 printf(" %s", ipaddr_string(cp));
382                 break;
383
384         case T_NS:
385         case T_CNAME:
386         case T_PTR:
387 #ifdef T_DNAME
388         case T_DNAME:
389 #endif
390                 putchar(' ');
391                 if (ns_nprint(cp, bp) == NULL)
392                         return(NULL);
393                 break;
394
395         case T_SOA:
396                 if (!vflag)
397                         break;
398                 putchar(' ');
399                 if ((cp = ns_nprint(cp, bp)) == NULL)
400                         return(NULL);
401                 putchar(' ');
402                 if ((cp = ns_nprint(cp, bp)) == NULL)
403                         return(NULL);
404                 if (!TTEST2(*cp, 5 * 4))
405                         return(NULL);
406                 printf(" %u", EXTRACT_32BITS(cp));
407                 cp += 4;
408                 printf(" %u", EXTRACT_32BITS(cp));
409                 cp += 4;
410                 printf(" %u", EXTRACT_32BITS(cp));
411                 cp += 4;
412                 printf(" %u", EXTRACT_32BITS(cp));
413                 cp += 4;
414                 printf(" %u", EXTRACT_32BITS(cp));
415                 cp += 4;
416                 break;
417         case T_MX:
418                 putchar(' ');
419                 if (!TTEST2(*cp, 2))
420                         return(NULL);
421                 if (ns_nprint(cp + 2, bp) == NULL)
422                         return(NULL);
423                 printf(" %d", EXTRACT_16BITS(cp));
424                 break;
425
426         case T_TXT:
427                 while (cp < rp) {
428                         printf(" \"");
429                         cp = ns_cprint(cp);
430                         if (cp == NULL)
431                                 return(NULL);
432                         putchar('"');
433                 }
434                 break;
435
436         case T_SRV:
437                 putchar(' ');
438                 if (!TTEST2(*cp, 6))
439                         return(NULL);
440                 if (ns_nprint(cp + 6, bp) == NULL)
441                         return(NULL);
442                 printf(":%d %d %d", EXTRACT_16BITS(cp + 4),
443                         EXTRACT_16BITS(cp), EXTRACT_16BITS(cp + 2));
444                 break;
445
446 #ifdef INET6
447         case T_AAAA:
448                 if (!TTEST2(*cp, sizeof(struct in6_addr)))
449                         return(NULL);
450                 printf(" %s", ip6addr_string(cp));
451                 break;
452
453         case T_A6:
454             {
455                 struct in6_addr a;
456                 int pbit, pbyte;
457
458                 if (!TTEST2(*cp, 1))
459                         return(NULL);
460                 pbit = *cp;
461                 pbyte = (pbit & ~7) / 8;
462                 if (pbit > 128) {
463                         printf(" %u(bad plen)", pbit);
464                         break;
465                 } else if (pbit < 128) {
466                         if (!TTEST2(*(cp + 1), sizeof(a) - pbyte))
467                                 return(NULL);
468                         memset(&a, 0, sizeof(a));
469                         memcpy(&a.s6_addr[pbyte], cp + 1, sizeof(a) - pbyte);
470                         printf(" %u %s", pbit, ip6addr_string(&a));
471                 }
472                 if (pbit > 0) {
473                         putchar(' ');
474                         if (ns_nprint(cp + 1 + sizeof(a) - pbyte, bp) == NULL)
475                                 return(NULL);
476                 }
477                 break;
478             }
479 #endif /*INET6*/
480
481         case T_OPT:
482                 printf(" UDPsize=%u", class);
483                 break;
484
485         case T_UNSPECA:         /* One long string */
486                 if (!TTEST2(*cp, len))
487                         return(NULL);
488                 if (fn_printn(cp, len, snapend))
489                         return(NULL);
490                 break;
491
492         case T_TSIG:
493             {
494                 if (cp + len > snapend)
495                         return(NULL);
496                 if (!vflag)
497                         break;
498                 putchar(' ');
499                 if ((cp = ns_nprint(cp, bp)) == NULL)
500                         return(NULL);
501                 cp += 6;
502                 if (!TTEST2(*cp, 2))
503                         return(NULL);
504                 printf(" fudge=%u", EXTRACT_16BITS(cp));
505                 cp += 2;
506                 if (!TTEST2(*cp, 2))
507                         return(NULL);
508                 printf(" maclen=%u", EXTRACT_16BITS(cp));
509                 cp += 2 + EXTRACT_16BITS(cp);
510                 if (!TTEST2(*cp, 2))
511                         return(NULL);
512                 printf(" origid=%u", EXTRACT_16BITS(cp));
513                 cp += 2;
514                 if (!TTEST2(*cp, 2))
515                         return(NULL);
516                 printf(" error=%u", EXTRACT_16BITS(cp));
517                 cp += 2;
518                 if (!TTEST2(*cp, 2))
519                         return(NULL);
520                 printf(" otherlen=%u", EXTRACT_16BITS(cp));
521                 cp += 2;
522             }
523         }
524         return (rp);            /* XXX This isn't always right */
525 }
526
527 void
528 ns_print(register const u_char *bp, u_int length, int is_mdns)
529 {
530         register const HEADER *np;
531         register int qdcount, ancount, nscount, arcount;
532         register const u_char *cp;
533         u_int16_t b2;
534
535         np = (const HEADER *)bp;
536         TCHECK(*np);
537         /* get the byte-order right */
538         qdcount = EXTRACT_16BITS(&np->qdcount);
539         ancount = EXTRACT_16BITS(&np->ancount);
540         nscount = EXTRACT_16BITS(&np->nscount);
541         arcount = EXTRACT_16BITS(&np->arcount);
542
543         if (DNS_QR(np)) {
544                 /* this is a response */
545                 printf(" %d%s%s%s%s%s%s",
546                         EXTRACT_16BITS(&np->id),
547                         ns_ops[DNS_OPCODE(np)],
548                         ns_resp[DNS_RCODE(np)],
549                         DNS_AA(np)? "*" : "",
550                         DNS_RA(np)? "" : "-",
551                         DNS_TC(np)? "|" : "",
552                         DNS_AD(np)? "$" : "");
553
554                 if (qdcount != 1)
555                         printf(" [%dq]", qdcount);
556                 /* Print QUESTION section on -vv */
557                 cp = (const u_char *)(np + 1);
558                 while (qdcount--) {
559                         if (qdcount < EXTRACT_16BITS(&np->qdcount) - 1)
560                                 putchar(',');
561                         if (vflag > 1) {
562                                 fputs(" q:", stdout);
563                                 if ((cp = ns_qprint(cp, bp, is_mdns)) == NULL)
564                                         goto trunc;
565                         } else {
566                                 if ((cp = ns_nskip(cp)) == NULL)
567                                         goto trunc;
568                                 cp += 4;        /* skip QTYPE and QCLASS */
569                         }
570                 }
571                 printf(" %d/%d/%d", ancount, nscount, arcount);
572                 if (ancount--) {
573                         if ((cp = ns_rprint(cp, bp, is_mdns)) == NULL)
574                                 goto trunc;
575                         while (cp < snapend && ancount--) {
576                                 putchar(',');
577                                 if ((cp = ns_rprint(cp, bp, is_mdns)) == NULL)
578                                         goto trunc;
579                         }
580                 }
581                 if (ancount > 0)
582                         goto trunc;
583                 /* Print NS and AR sections on -vv */
584                 if (vflag > 1) {
585                         if (cp < snapend && nscount--) {
586                                 fputs(" ns:", stdout);
587                                 if ((cp = ns_rprint(cp, bp, is_mdns)) == NULL)
588                                         goto trunc;
589                                 while (cp < snapend && nscount--) {
590                                         putchar(',');
591                                         if ((cp = ns_rprint(cp, bp, is_mdns)) == NULL)
592                                                 goto trunc;
593                                 }
594                         }
595                         if (nscount > 0)
596                                 goto trunc;
597                         if (cp < snapend && arcount--) {
598                                 fputs(" ar:", stdout);
599                                 if ((cp = ns_rprint(cp, bp, is_mdns)) == NULL)
600                                         goto trunc;
601                                 while (cp < snapend && arcount--) {
602                                         putchar(',');
603                                         if ((cp = ns_rprint(cp, bp, is_mdns)) == NULL)
604                                                 goto trunc;
605                                 }
606                         }
607                         if (arcount > 0)
608                                 goto trunc;
609                 }
610         }
611         else {
612                 /* this is a request */
613                 printf(" %d%s%s%s", EXTRACT_16BITS(&np->id), ns_ops[DNS_OPCODE(np)],
614                     DNS_RD(np) ? "+" : "",
615                     DNS_CD(np) ? "%" : "");
616
617                 /* any weirdness? */
618                 b2 = EXTRACT_16BITS(((u_short *)np)+1);
619                 if (b2 & 0x6cf)
620                         printf(" [b2&3=0x%x]", b2);
621
622                 if (DNS_OPCODE(np) == IQUERY) {
623                         if (qdcount)
624                                 printf(" [%dq]", qdcount);
625                         if (ancount != 1)
626                                 printf(" [%da]", ancount);
627                 }
628                 else {
629                         if (ancount)
630                                 printf(" [%da]", ancount);
631                         if (qdcount != 1)
632                                 printf(" [%dq]", qdcount);
633                 }
634                 if (nscount)
635                         printf(" [%dn]", nscount);
636                 if (arcount)
637                         printf(" [%dau]", arcount);
638
639                 cp = (const u_char *)(np + 1);
640                 if (qdcount--) {
641                         cp = ns_qprint(cp, (const u_char *)np, is_mdns);
642                         if (!cp)
643                                 goto trunc;
644                         while (cp < snapend && qdcount--) {
645                                 cp = ns_qprint((const u_char *)cp,
646                                                (const u_char *)np,
647                                                is_mdns);
648                                 if (!cp)
649                                         goto trunc;
650                         }
651                 }
652                 if (qdcount > 0)
653                         goto trunc;
654
655                 /* Print remaining sections on -vv */
656                 if (vflag > 1) {
657                         if (ancount--) {
658                                 if ((cp = ns_rprint(cp, bp, is_mdns)) == NULL)
659                                         goto trunc;
660                                 while (cp < snapend && ancount--) {
661                                         putchar(',');
662                                         if ((cp = ns_rprint(cp, bp, is_mdns)) == NULL)
663                                                 goto trunc;
664                                 }
665                         }
666                         if (ancount > 0)
667                                 goto trunc;
668                         if (cp < snapend && nscount--) {
669                                 fputs(" ns:", stdout);
670                                 if ((cp = ns_rprint(cp, bp, is_mdns)) == NULL)
671                                         goto trunc;
672                                 while (nscount-- && cp < snapend) {
673                                         putchar(',');
674                                         if ((cp = ns_rprint(cp, bp, is_mdns)) == NULL)
675                                                 goto trunc;
676                                 }
677                         }
678                         if (nscount > 0)
679                                 goto trunc;
680                         if (cp < snapend && arcount--) {
681                                 fputs(" ar:", stdout);
682                                 if ((cp = ns_rprint(cp, bp, is_mdns)) == NULL)
683                                         goto trunc;
684                                 while (cp < snapend && arcount--) {
685                                         putchar(',');
686                                         if ((cp = ns_rprint(cp, bp, is_mdns)) == NULL)
687                                                 goto trunc;
688                                 }
689                         }
690                         if (arcount > 0)
691                                 goto trunc;
692                 }
693         }
694         printf(" (%d)", length);
695         return;
696
697   trunc:
698         printf("[|domain]");
699         return;
700 }