2 * collectd - src/utils_dns.c
3 * Copyright (C) 2006 Florian octo Forster
4 * Copyright (C) 2002 The Measurement Factory, Inc.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:
10 * 1. Redistributions of source code must retain the above copyright notice,
11 * this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
14 * and/or other materials provided with the distribution.
15 * 3. Neither the name of The Measurement Factory nor the names of its
16 * contributors may be used to endorse or promote products derived from this
17 * software without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
32 * The Measurement Factory, Inc. <http://www.measurement-factory.com/>
33 * Florian octo Forster <octo at collectd.org>
36 #define _DEFAULT_SOURCE
44 # include <sys/socket.h>
48 # include <net/if_arp.h>
53 #if HAVE_NET_PPP_DEFS_H
54 # include <net/ppp_defs.h>
57 # include <net/if_ppp.h>
60 #if HAVE_NETINET_IN_SYSTM_H
61 # include <netinet/in_systm.h>
64 # include <netinet/in.h>
66 #if HAVE_NETINET_IP6_H
67 # include <netinet/ip6.h>
69 #if HAVE_NETINET_IP_COMPAT_H
70 # include <netinet/ip_compat.h>
72 #if HAVE_NETINET_IF_ETHER_H
73 # include <netinet/if_ether.h>
76 # include <netinet/ip.h>
78 #ifdef HAVE_NETINET_IP_VAR_H
79 # include <netinet/ip_var.h>
81 #if HAVE_NETINET_UDP_H
82 # include <netinet/udp.h>
86 # include <arpa/inet.h>
88 #if HAVE_ARPA_NAMESER_H
89 # include <arpa/nameser.h>
91 #if HAVE_ARPA_NAMESER_COMPAT_H
92 # include <arpa/nameser_compat.h>
103 #define PCAP_SNAPLEN 1460
104 #ifndef ETHER_HDR_LEN
105 #define ETHER_ADDR_LEN 6
106 #define ETHER_TYPE_LEN 2
107 #define ETHER_HDR_LEN (ETHER_ADDR_LEN * 2 + ETHER_TYPE_LEN)
109 #ifndef ETHERTYPE_8021Q
110 # define ETHERTYPE_8021Q 0x8100
112 #ifndef ETHERTYPE_IPV6
113 # define ETHERTYPE_IPV6 0x86DD
116 #ifndef PPP_ADDRESS_VAL
117 # define PPP_ADDRESS_VAL 0xff /* The address byte value */
119 #ifndef PPP_CONTROL_VAL
120 # define PPP_CONTROL_VAL 0x03 /* The control byte value */
123 #if HAVE_STRUCT_UDPHDR_UH_DPORT && HAVE_STRUCT_UDPHDR_UH_SPORT
124 # define UDP_DEST uh_dport
125 # define UDP_SRC uh_sport
126 #elif HAVE_STRUCT_UDPHDR_DEST && HAVE_STRUCT_UDPHDR_SOURCE
127 # define UDP_DEST dest
128 # define UDP_SRC source
130 # error "`struct udphdr' is unusable."
133 #if HAVE_NETINET_IP6_H && HAVE_STRUCT_IP6_EXT
137 #include "utils_dns.h"
144 struct in6_addr addr;
146 struct ip_list_s *next;
148 typedef struct ip_list_s ip_list_t;
150 typedef int (printer)(const char *, ...);
153 * flags/features for non-interactive mode
166 int qtype_counts[T_MAX];
167 int opcode_counts[OP_MAX];
168 int qclass_counts[C_MAX];
171 static pcap_t *pcap_obj = NULL;
174 static ip_list_t *IgnoreList = NULL;
177 static void (*Callback) (const rfc1035_header_t *) = NULL;
179 static int query_count_intvl = 0;
180 static int query_count_total = 0;
182 static struct bpf_timeval last_ts;
184 static struct timeval last_ts;
185 # endif /* __OpenBSD__ */
186 #endif /* HAVE_PCAP_H */
188 static int cmp_in6_addr (const struct in6_addr *a,
189 const struct in6_addr *b)
193 assert (sizeof (struct in6_addr) == 16);
195 for (i = 0; i < 16; i++)
196 if (a->s6_addr[i] != b->s6_addr[i])
202 return (a->s6_addr[i] > b->s6_addr[i] ? 1 : -1);
203 } /* int cmp_addrinfo */
205 static inline int ignore_list_match (const struct in6_addr *addr)
209 for (ptr = IgnoreList; ptr != NULL; ptr = ptr->next)
210 if (cmp_in6_addr (addr, &ptr->addr) == 0)
213 } /* int ignore_list_match */
215 static void ignore_list_add (const struct in6_addr *addr)
219 if (ignore_list_match (addr) != 0)
222 new = malloc (sizeof (ip_list_t));
229 memcpy (&new->addr, addr, sizeof (struct in6_addr));
230 new->next = IgnoreList;
233 } /* void ignore_list_add */
235 void ignore_list_add_name (const char *name)
237 struct addrinfo *ai_list;
238 struct addrinfo *ai_ptr;
239 struct in6_addr addr;
242 status = getaddrinfo (name, NULL, NULL, &ai_list);
246 for (ai_ptr = ai_list; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
248 if (ai_ptr->ai_family == AF_INET)
250 memset (&addr, '\0', sizeof (addr));
251 addr.s6_addr[10] = 0xFF;
252 addr.s6_addr[11] = 0xFF;
253 memcpy (addr.s6_addr + 12, &((struct sockaddr_in *) ai_ptr->ai_addr)->sin_addr, 4);
255 ignore_list_add (&addr);
259 ignore_list_add (&((struct sockaddr_in6 *) ai_ptr->ai_addr)->sin6_addr);
263 freeaddrinfo (ai_list);
267 static void in6_addr_from_buffer (struct in6_addr *ia,
268 const void *buf, size_t buf_len,
271 memset (ia, 0, sizeof (struct in6_addr));
272 if ((AF_INET == family) && (sizeof (uint32_t) == buf_len))
274 ia->s6_addr[10] = 0xFF;
275 ia->s6_addr[11] = 0xFF;
276 memcpy (ia->s6_addr + 12, buf, buf_len);
278 else if ((AF_INET6 == family) && (sizeof (struct in6_addr) == buf_len))
280 memcpy (ia, buf, buf_len);
282 } /* void in6_addr_from_buffer */
284 void dnstop_set_pcap_obj (pcap_t *po)
289 void dnstop_set_callback (void (*cb) (const rfc1035_header_t *))
294 #define RFC1035_MAXLABELSZ 63
296 rfc1035NameUnpack(const char *buf, size_t sz, off_t * off, char *name, size_t ns
302 static int loop_detect = 0;
304 return 4; /* compression loop */
306 return 4; /* probably compression loop */
312 /* blasted compression */
316 memcpy(&s, buf + (*off), sizeof(s));
321 return 1; /* message too short */
323 /* Make sure the pointer is inside this message */
325 return 2; /* bad compression ptr */
326 if (ptr < DNS_MSG_HDR_SZ)
327 return 2; /* bad compression ptr */
329 rc = rfc1035NameUnpack(buf, sz, &ptr, name + no, ns - no);
332 } else if (c > RFC1035_MAXLABELSZ) {
334 * "(The 10 and 01 combinations are reserved for future use.)"
336 return 3; /* reserved label/compression flags */
345 if ((*off) + len > sz)
346 return 4; /* message is too short */
347 if (no + len + 1 > ns)
348 return 5; /* qname would overflow name buffer */
349 memcpy(name + no, buf + (*off), len);
352 *(name + (no++)) = '.';
356 *(name + no - 1) = '\0';
357 /* make sure we didn't allow someone to overflow the name buffer */
363 handle_dns(const char *buf, int len)
371 /* The DNS header is 12 bytes long */
372 if (len < DNS_MSG_HDR_SZ)
375 memcpy(&us, buf + 0, 2);
378 memcpy(&us, buf + 2, 2);
380 qh.qr = (us >> 15) & 0x01;
381 qh.opcode = (us >> 11) & 0x0F;
382 qh.aa = (us >> 10) & 0x01;
383 qh.tc = (us >> 9) & 0x01;
384 qh.rd = (us >> 8) & 0x01;
385 qh.ra = (us >> 7) & 0x01;
386 qh.z = (us >> 6) & 0x01;
387 qh.ad = (us >> 5) & 0x01;
388 qh.cd = (us >> 4) & 0x01;
389 qh.rcode = us & 0x0F;
391 memcpy(&us, buf + 4, 2);
392 qh.qdcount = ntohs(us);
394 memcpy(&us, buf + 6, 2);
395 qh.ancount = ntohs(us);
397 memcpy(&us, buf + 8, 2);
398 qh.nscount = ntohs(us);
400 memcpy(&us, buf + 10, 2);
401 qh.arcount = ntohs(us);
403 offset = DNS_MSG_HDR_SZ;
404 memset(qh.qname, '\0', MAX_QNAME_SZ);
405 status = rfc1035NameUnpack(buf, len, &offset, qh.qname, MAX_QNAME_SZ);
408 INFO ("utils_dns: handle_dns: rfc1035NameUnpack failed "
409 "with status %i.", status);
412 if ('\0' == qh.qname[0])
413 sstrncpy (qh.qname, ".", sizeof (qh.qname));
414 while ((t = strchr(qh.qname, '\n')))
416 while ((t = strchr(qh.qname, '\r')))
418 for (t = qh.qname; *t; t++)
419 *t = tolower((int) *t);
421 memcpy(&us, buf + offset, 2);
422 qh.qtype = ntohs(us);
423 memcpy(&us, buf + offset + 2, 2);
424 qh.qclass = ntohs(us);
426 qh.length = (uint16_t) len;
429 qtype_counts[qh.qtype]++;
430 qclass_counts[qh.qclass]++;
431 opcode_counts[qh.opcode]++;
433 if (Callback != NULL)
440 handle_udp(const struct udphdr *udp, int len)
442 char buf[PCAP_SNAPLEN];
443 if ((ntohs (udp->UDP_DEST) != 53)
444 && (ntohs (udp->UDP_SRC) != 53))
446 memcpy(buf, udp + 1, len - sizeof(*udp));
447 if (0 == handle_dns(buf, len - sizeof(*udp)))
454 handle_ipv6 (struct ip6_hdr *ipv6, int len)
456 char buf[PCAP_SNAPLEN];
460 struct in6_addr c_src_addr;
461 uint16_t payload_len;
466 offset = sizeof (struct ip6_hdr);
467 nexthdr = ipv6->ip6_nxt;
468 c_src_addr = ipv6->ip6_src;
469 payload_len = ntohs (ipv6->ip6_plen);
471 if (ignore_list_match (&c_src_addr))
474 /* Parse extension headers. This only handles the standard headers, as
475 * defined in RFC 2460, correctly. Fragments are discarded. */
476 while ((IPPROTO_ROUTING == nexthdr) /* routing header */
477 || (IPPROTO_HOPOPTS == nexthdr) /* Hop-by-Hop options. */
478 || (IPPROTO_FRAGMENT == nexthdr) /* fragmentation header. */
479 || (IPPROTO_DSTOPTS == nexthdr) /* destination options. */
480 || (IPPROTO_AH == nexthdr) /* destination options. */
481 || (IPPROTO_ESP == nexthdr)) /* encapsulating security payload. */
483 struct ip6_ext ext_hdr;
484 uint16_t ext_hdr_len;
486 /* Catch broken packets */
487 if ((offset + sizeof (struct ip6_ext)) > (unsigned int)len)
490 /* Cannot handle fragments. */
491 if (IPPROTO_FRAGMENT == nexthdr)
494 memcpy (&ext_hdr, (char *) ipv6 + offset, sizeof (struct ip6_ext));
495 nexthdr = ext_hdr.ip6e_nxt;
496 ext_hdr_len = (8 * (ntohs (ext_hdr.ip6e_len) + 1));
498 /* This header is longer than the packets payload.. WTF? */
499 if (ext_hdr_len > payload_len)
502 offset += ext_hdr_len;
503 payload_len -= ext_hdr_len;
506 /* Catch broken and empty packets */
507 if (((offset + payload_len) > (unsigned int)len)
508 || (payload_len == 0)
509 || (payload_len > PCAP_SNAPLEN))
512 if (IPPROTO_UDP != nexthdr)
515 memcpy (buf, (char *) ipv6 + offset, payload_len);
516 if (handle_udp ((struct udphdr *) buf, payload_len) == 0)
519 return (1); /* Success */
520 } /* int handle_ipv6 */
521 /* #endif HAVE_IPV6 */
523 #else /* if !HAVE_IPV6 */
525 handle_ipv6 (__attribute__((unused)) void *pkg,
526 __attribute__((unused)) int len)
530 #endif /* !HAVE_IPV6 */
533 handle_ip(const struct ip *ip, int len)
535 char buf[PCAP_SNAPLEN];
536 int offset = ip->ip_hl << 2;
537 struct in6_addr c_src_addr;
538 struct in6_addr c_dst_addr;
541 return (handle_ipv6 ((void *) ip, len));
543 in6_addr_from_buffer (&c_src_addr, &ip->ip_src.s_addr, sizeof (ip->ip_src.s_addr), AF_INET);
544 in6_addr_from_buffer (&c_dst_addr, &ip->ip_dst.s_addr, sizeof (ip->ip_dst.s_addr), AF_INET);
545 if (ignore_list_match (&c_src_addr))
547 if (IPPROTO_UDP != ip->ip_p)
549 memcpy(buf, (void *) ip + offset, len - offset);
550 if (0 == handle_udp((struct udphdr *) buf, len - offset))
555 #if HAVE_NET_IF_PPP_H
557 handle_ppp(const u_char * pkt, int len)
559 char buf[PCAP_SNAPLEN];
561 unsigned short proto;
564 if (*pkt == PPP_ADDRESS_VAL && *(pkt + 1) == PPP_CONTROL_VAL) {
565 pkt += 2; /* ACFC not used */
571 proto = *pkt; /* PFC is used */
575 memcpy(&us, pkt, sizeof(us));
580 if (ETHERTYPE_IP != proto && PPP_IP != proto)
582 memcpy(buf, pkt, len);
583 return handle_ip((struct ip *) buf, len);
585 #endif /* HAVE_NET_IF_PPP_H */
588 handle_null(const u_char * pkt, int len)
591 memcpy(&family, pkt, sizeof(family));
592 if (AF_INET != family)
594 return handle_ip((struct ip *) (pkt + 4), len - 4);
599 handle_loop(const u_char * pkt, int len)
602 memcpy(&family, pkt, sizeof(family));
603 if (AF_INET != ntohl(family))
605 return handle_ip((struct ip *) (pkt + 4), len - 4);
612 handle_raw(const u_char * pkt, int len)
614 return handle_ip((struct ip *) pkt, len);
620 handle_ether(const u_char * pkt, int len)
622 char buf[PCAP_SNAPLEN];
623 struct ether_header *e = (void *) pkt;
624 unsigned short etype = ntohs(e->ether_type);
625 if (len < ETHER_HDR_LEN)
627 pkt += ETHER_HDR_LEN;
628 len -= ETHER_HDR_LEN;
629 if (ETHERTYPE_8021Q == etype) {
630 etype = ntohs(*(unsigned short *) (pkt + 2));
634 if ((ETHERTYPE_IP != etype)
635 && (ETHERTYPE_IPV6 != etype))
637 memcpy(buf, pkt, len);
638 if (ETHERTYPE_IPV6 == etype)
639 return (handle_ipv6 ((void *) buf, len));
641 return handle_ip((struct ip *) buf, len);
646 handle_linux_sll (const u_char *pkt, int len)
658 if ((0 > len) || ((unsigned int)len < sizeof (struct sll_header)))
661 hdr = (struct sll_header *) pkt;
662 pkt = (u_char *) (hdr + 1);
663 len -= sizeof (struct sll_header);
665 etype = ntohs (hdr->proto_type);
667 if ((ETHERTYPE_IP != etype)
668 && (ETHERTYPE_IPV6 != etype))
671 if (ETHERTYPE_IPV6 == etype)
672 return (handle_ipv6 ((void *) pkt, len));
674 return handle_ip((struct ip *) pkt, len);
676 #endif /* DLT_LINUX_SLL */
678 /* public function */
679 void handle_pcap(u_char *udata, const struct pcap_pkthdr *hdr, const u_char *pkt)
683 if (hdr->caplen < ETHER_HDR_LEN)
686 switch (pcap_datalink (pcap_obj))
689 status = handle_ether (pkt, hdr->caplen);
691 #if HAVE_NET_IF_PPP_H
693 status = handle_ppp (pkt, hdr->caplen);
698 status = handle_loop (pkt, hdr->caplen);
703 status = handle_raw (pkt, hdr->caplen);
708 status = handle_linux_sll (pkt, hdr->caplen);
712 status = handle_null (pkt, hdr->caplen);
716 ERROR ("handle_pcap: unsupported data link type %d",
717 pcap_datalink(pcap_obj));
720 } /* switch (pcap_datalink(pcap_obj)) */
729 #endif /* HAVE_PCAP_H */
731 const char *qtype_str(int t)
735 #if (defined (__NAMESER)) && (__NAMESER >= 19991001)
736 case ns_t_a: return ("A");
737 case ns_t_ns: return ("NS");
738 case ns_t_md: return ("MD");
739 case ns_t_mf: return ("MF");
740 case ns_t_cname: return ("CNAME");
741 case ns_t_soa: return ("SOA");
742 case ns_t_mb: return ("MB");
743 case ns_t_mg: return ("MG");
744 case ns_t_mr: return ("MR");
745 case ns_t_null: return ("NULL");
746 case ns_t_wks: return ("WKS");
747 case ns_t_ptr: return ("PTR");
748 case ns_t_hinfo: return ("HINFO");
749 case ns_t_minfo: return ("MINFO");
750 case ns_t_mx: return ("MX");
751 case ns_t_txt: return ("TXT");
752 case ns_t_rp: return ("RP");
753 case ns_t_afsdb: return ("AFSDB");
754 case ns_t_x25: return ("X25");
755 case ns_t_isdn: return ("ISDN");
756 case ns_t_rt: return ("RT");
757 case ns_t_nsap: return ("NSAP");
758 case ns_t_nsap_ptr: return ("NSAP-PTR");
759 case ns_t_sig: return ("SIG");
760 case ns_t_key: return ("KEY");
761 case ns_t_px: return ("PX");
762 case ns_t_gpos: return ("GPOS");
763 case ns_t_aaaa: return ("AAAA");
764 case ns_t_loc: return ("LOC");
765 case ns_t_nxt: return ("NXT");
766 case ns_t_eid: return ("EID");
767 case ns_t_nimloc: return ("NIMLOC");
768 case ns_t_srv: return ("SRV");
769 case ns_t_atma: return ("ATMA");
770 case ns_t_naptr: return ("NAPTR");
771 case ns_t_kx: return ("KX");
772 case ns_t_cert: return ("CERT");
773 case ns_t_a6: return ("A6");
774 case ns_t_dname: return ("DNAME");
775 case ns_t_sink: return ("SINK");
776 case ns_t_opt: return ("OPT");
777 # if __NAMESER >= 19991006
778 case ns_t_tsig: return ("TSIG");
780 case ns_t_ixfr: return ("IXFR");
781 case ns_t_axfr: return ("AXFR");
782 case ns_t_mailb: return ("MAILB");
783 case ns_t_maila: return ("MAILA");
784 case ns_t_any: return ("ANY");
785 case ns_t_zxfr: return ("ZXFR");
786 /* #endif __NAMESER >= 19991006 */
787 #elif (defined (__BIND)) && (__BIND >= 19950621)
788 case T_A: return ("A"); /* 1 ... */
789 case T_NS: return ("NS");
790 case T_MD: return ("MD");
791 case T_MF: return ("MF");
792 case T_CNAME: return ("CNAME");
793 case T_SOA: return ("SOA");
794 case T_MB: return ("MB");
795 case T_MG: return ("MG");
796 case T_MR: return ("MR");
797 case T_NULL: return ("NULL");
798 case T_WKS: return ("WKS");
799 case T_PTR: return ("PTR");
800 case T_HINFO: return ("HINFO");
801 case T_MINFO: return ("MINFO");
802 case T_MX: return ("MX");
803 case T_TXT: return ("TXT");
804 case T_RP: return ("RP");
805 case T_AFSDB: return ("AFSDB");
806 case T_X25: return ("X25");
807 case T_ISDN: return ("ISDN");
808 case T_RT: return ("RT");
809 case T_NSAP: return ("NSAP");
810 case T_NSAP_PTR: return ("NSAP_PTR");
811 case T_SIG: return ("SIG");
812 case T_KEY: return ("KEY");
813 case T_PX: return ("PX");
814 case T_GPOS: return ("GPOS");
815 case T_AAAA: return ("AAAA");
816 case T_LOC: return ("LOC");
817 case T_NXT: return ("NXT");
818 case T_EID: return ("EID");
819 case T_NIMLOC: return ("NIMLOC");
820 case T_SRV: return ("SRV");
821 case T_ATMA: return ("ATMA");
822 case T_NAPTR: return ("NAPTR"); /* ... 35 */
823 #if (__BIND >= 19960801)
824 case T_KX: return ("KX"); /* 36 ... */
825 case T_CERT: return ("CERT");
826 case T_A6: return ("A6");
827 case T_DNAME: return ("DNAME");
828 case T_SINK: return ("SINK");
829 case T_OPT: return ("OPT");
830 case T_APL: return ("APL");
831 case T_DS: return ("DS");
832 case T_SSHFP: return ("SSHFP");
833 case T_RRSIG: return ("RRSIG");
834 case T_NSEC: return ("NSEC");
835 case T_DNSKEY: return ("DNSKEY"); /* ... 48 */
836 case T_TKEY: return ("TKEY"); /* 249 */
837 #endif /* __BIND >= 19960801 */
838 case T_TSIG: return ("TSIG"); /* 250 ... */
839 case T_IXFR: return ("IXFR");
840 case T_AXFR: return ("AXFR");
841 case T_MAILB: return ("MAILB");
842 case T_MAILA: return ("MAILA");
843 case T_ANY: return ("ANY"); /* ... 255 */
844 #endif /* __BIND >= 19950621 */
846 ssnprintf (buf, sizeof (buf), "#%i", t);
853 const char *opcode_str (int o)
873 ssnprintf(buf, sizeof (buf), "Opcode%d", o);
879 const char *rcode_str (int rcode)
884 #if (defined (__NAMESER)) && (__NAMESER >= 19991006)
885 case ns_r_noerror: return ("NOERROR");
886 case ns_r_formerr: return ("FORMERR");
887 case ns_r_servfail: return ("SERVFAIL");
888 case ns_r_nxdomain: return ("NXDOMAIN");
889 case ns_r_notimpl: return ("NOTIMPL");
890 case ns_r_refused: return ("REFUSED");
891 case ns_r_yxdomain: return ("YXDOMAIN");
892 case ns_r_yxrrset: return ("YXRRSET");
893 case ns_r_nxrrset: return ("NXRRSET");
894 case ns_r_notauth: return ("NOTAUTH");
895 case ns_r_notzone: return ("NOTZONE");
896 case ns_r_max: return ("MAX");
897 case ns_r_badsig: return ("BADSIG");
898 case ns_r_badkey: return ("BADKEY");
899 case ns_r_badtime: return ("BADTIME");
900 /* #endif __NAMESER >= 19991006 */
901 #elif (defined (__BIND)) && (__BIND >= 19950621)
902 case NOERROR: return ("NOERROR");
903 case FORMERR: return ("FORMERR");
904 case SERVFAIL: return ("SERVFAIL");
905 case NXDOMAIN: return ("NXDOMAIN");
906 case NOTIMP: return ("NOTIMP");
907 case REFUSED: return ("REFUSED");
908 #if defined (YXDOMAIN) && defined (NXRRSET)
909 case YXDOMAIN: return ("YXDOMAIN");
910 case YXRRSET: return ("YXRRSET");
911 case NXRRSET: return ("NXRRSET");
912 case NOTAUTH: return ("NOTAUTH");
913 case NOTZONE: return ("NOTZONE");
914 #endif /* RFC2136 rcodes */
915 #endif /* __BIND >= 19950621 */
917 ssnprintf (buf, sizeof (buf), "RCode%i", rcode);
922 } /* const char *rcode_str (int rcode) */
926 main(int argc, char *argv[])
928 char errbuf[PCAP_ERRBUF_SIZE];
931 int readfile_state = 0;
932 struct bpf_program fp;
935 SubReport = Sources_report;
936 ignore_addr.s_addr = 0;
937 progname = strdup(strrchr(argv[0], '/') ? strchr(argv[0], '/') + 1 : argv[0]);
941 while ((x = getopt(argc, argv, "ab:f:i:pst")) != -1) {
956 bpf_program_str = strdup(optarg);
959 ignore_addr.s_addr = inet_addr(optarg);
974 device = strdup(argv[0]);
976 if (0 == stat(device, &sb))
978 if (readfile_state) {
979 pcap_obj = pcap_open_offline(device, errbuf);
981 pcap_obj = pcap_open_live(device, PCAP_SNAPLEN, promisc_flag, 1000, errbuf);
983 if (NULL == pcap_obj) {
984 fprintf(stderr, "pcap_open_*: %s\n", errbuf);
988 if (0 == isatty(1)) {
989 if (0 == readfile_state) {
990 fprintf(stderr, "Non-interactive mode requires savefile argument\n");
997 memset(&fp, '\0', sizeof(fp));
998 x = pcap_compile(pcap_obj, &fp, bpf_program_str, 1, 0);
1000 fprintf(stderr, "pcap_compile failed\n");
1003 x = pcap_setfilter(pcap_obj, &fp);
1005 fprintf(stderr, "pcap_setfilter failed\n");
1010 * non-blocking call added for Mac OS X bugfix. Sent by Max Horn.
1011 * ref http://www.tcpdump.org/lists/workers/2002/09/msg00033.html
1013 x = pcap_setnonblock(pcap_obj, 1, errbuf);
1015 fprintf(stderr, "pcap_setnonblock failed: %s\n", errbuf);
1019 switch (pcap_datalink(pcap_obj)) {
1021 handle_datalink = handle_ether;
1023 #if HAVE_NET_IF_PPP_H
1025 handle_datalink = handle_ppp;
1030 handle_datalink = handle_loop;
1035 handle_datalink = handle_raw;
1039 handle_datalink = handle_null;
1042 fprintf(stderr, "unsupported data link type %d\n",
1043 pcap_datalink(pcap_obj));
1050 if (readfile_state < 2) {
1052 * On some OSes select() might return 0 even when
1053 * there are packets to process. Thus, we always
1054 * ignore its return value and just call pcap_dispatch()
1057 if (0 == readfile_state) /* interactive */
1058 pcap_select(pcap_obj, 1, 0);
1059 x = pcap_dispatch(pcap_obj, 50, handle_pcap, NULL);
1061 if (0 == x && 1 == readfile_state) {
1062 /* block on keyboard until user quits */
1071 endwin(); /* klin, Thu Nov 28 08:56:51 2002 */
1073 while (pcap_dispatch(pcap_obj, 50, handle_pcap, NULL))
1076 Sources_report(); print_func("\n");
1077 Destinatioreport(); print_func("\n");
1078 Qtypes_report(); print_func("\n");
1079 Opcodes_report(); print_func("\n");
1080 Tld_report(); print_func("\n");
1081 Sld_report(); print_func("\n");
1082 Nld_report(); print_func("\n");
1083 SldBySource_report();
1086 pcap_close(pcap_obj);
1088 } /* static int main(int argc, char *argv[]) */
1091 * vim:shiftwidth=4:tabstop=8:softtabstop=4