efc790319cebea5e3253cad748de71d4e8923aaa
1 #ifndef COLLECTD_UTILS_DNS_H
2 #define COLLECTD_UTILS_DNS_H 1
3 /*
4 * collectd - src/utils_dns.h
5 * Copyright (C) 2006 Florian octo Forster
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 *
11 * 1. Redistributions of source code must retain the above copyright notice,
12 * this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright notice,
14 * this list of conditions and the following disclaimer in the documentation
15 * and/or other materials provided with the distribution.
16 * 3. Neither the name of The Measurement Factory nor the names of its
17 * contributors may be used to endorse or promote products derived from this
18 * software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 *
32 * Authors:
33 * Florian octo Forster <octo at verplant.org>
34 */
36 #include "config.h"
38 #include <arpa/nameser.h>
39 #include <stdint.h>
41 #if HAVE_PCAP_H
42 # include <pcap.h>
43 #endif
45 #define T_MAX 65536
46 #define OP_MAX 16
47 #define C_MAX 65536
48 #define MAX_QNAME_SZ 512
50 struct rfc1035_header_s {
51 uint16_t id;
52 unsigned int qr:1;
53 unsigned int opcode:4;
54 unsigned int aa:1;
55 unsigned int tc:1;
56 unsigned int rd:1;
57 unsigned int ra:1;
58 unsigned int z:1;
59 unsigned int ad:1;
60 unsigned int cd:1;
61 unsigned int rcode:4;
62 uint16_t qdcount;
63 uint16_t ancount;
64 uint16_t nscount;
65 uint16_t arcount;
66 uint16_t qtype;
67 uint16_t qclass;
68 char qname[MAX_QNAME_SZ];
69 uint16_t length;
70 };
71 typedef struct rfc1035_header_s rfc1035_header_t;
73 extern int qtype_counts[T_MAX];
74 extern int opcode_counts[OP_MAX];
75 extern int qclass_counts[C_MAX];
77 #if HAVE_PCAP_H
78 void dnstop_set_pcap_obj (pcap_t *po);
79 #endif
80 void dnstop_set_callback (void (*cb) (const rfc1035_header_t *));
82 void ignore_list_add_name (const char *name);
83 #if HAVE_PCAP_H
84 void handle_pcap (u_char * udata, const struct pcap_pkthdr *hdr, const u_char * pkt);
85 #endif
87 const char *qtype_str(int t);
88 const char *opcode_str(int o);
89 const char *rcode_str (int r);
91 #endif /* !COLLECTD_UTILS_DNS_H */