X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fdns.c;h=c9beb166e8f0a6f09c076cd554d244ad031808d6;hb=fde47df2296257971379297ff6831d887e0acd39;hp=61b5a1bdf7152661890743c6dc37665d40f60816;hpb=085e0ec955713a12d2abf9bd181ffc2a360cba78;p=collectd.git diff --git a/src/dns.c b/src/dns.c index 61b5a1bd..c9beb166 100644 --- a/src/dns.c +++ b/src/dns.c @@ -1,11 +1,10 @@ /** * collectd - src/dns.c - * Copyright (C) 2006 Florian octo Forster + * Copyright (C) 2006,2007 Florian octo Forster * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the - * Free Software Foundation; either version 2 of the License, or (at your - * option) any later version. + * Free Software Foundation; only version 2 of the License is applicable. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of @@ -24,31 +23,21 @@ #include "common.h" #include "plugin.h" #include "configfile.h" -#include "utils_debug.h" -#if HAVE_PTHREAD_H -# include -#endif - -#if HAVE_SYS_POLL_H -# include -#endif - -#define MODULE_NAME "dns" - -#if HAVE_LIBPCAP -# define NAMED_HAVE_CONFIG 1 -#else -# define NAMED_HAVE_CONFIG 0 -#endif - -#if HAVE_LIBPCAP && HAVE_PTHREAD_H +#if HAVE_LIBPCAP && HAVE_LIBPTHREAD # include "utils_dns.h" -# define NAMED_HAVE_READ 1 +# include +# include +# include +# define DNS_HAVE_READ 1 #else -# define NAMED_HAVE_READ 0 +# define DNS_HAVE_READ 0 #endif +/* + * Private data types + */ +#if DNS_HAVE_READ struct counter_list_s { unsigned int key; @@ -56,67 +45,60 @@ struct counter_list_s struct counter_list_s *next; }; typedef struct counter_list_s counter_list_t; +#endif -static char *traffic_file = "dns/dns_traffic.rrd"; -static char *qtype_file = "dns/qtype-%s.rrd"; -static char *opcode_file = "dns/opcode-%s.rrd"; -static char *rcode_file = "dns/rcode-%s.rrd"; +/* + * Private variables + */ +static data_source_t octets_dsrc[2] = +{ + {"queries", DS_TYPE_COUNTER, 0, 125000000.0}, + {"responses", DS_TYPE_COUNTER, 0, 125000000.0} +}; -static char *traffic_ds_def[] = +static data_set_t octets_ds = { - /* Limit to 1GBit/s */ - "DS:queries:COUNTER:"COLLECTD_HEARTBEAT":0:125000000", - "DS:responses:COUNTER:"COLLECTD_HEARTBEAT":0:125000000", - NULL + "dns_octets", 2, octets_dsrc }; -static int traffic_ds_num = 2; -static char *qtype_ds_def[] = +static data_source_t counter_dsrc[1] = { - "DS:value:COUNTER:"COLLECTD_HEARTBEAT":0:65535", - NULL + {"value", DS_TYPE_COUNTER, 0, 65535.0} }; -static int qtype_ds_num = 1; -static char *opcode_ds_def[] = +static data_set_t qtype_ds = { - "DS:value:COUNTER:"COLLECTD_HEARTBEAT":0:65535", - NULL + "dns_qtype", 1, counter_dsrc }; -static int opcode_ds_num = 1; -static char *rcode_ds_def[] = +static data_set_t opcode_ds = { - "DS:value:COUNTER:"COLLECTD_HEARTBEAT":0:65535", - NULL + "dns_opcode", 1, counter_dsrc }; -static int rcode_ds_num = 1; -/* FIXME: Wouldn't other defines be better? -octo */ -#if NAMED_HAVE_CONFIG -#if HAVE_LIBPCAP -static char *config_keys[] = +static data_set_t rcode_ds = +{ + "dns_rcode", 1, counter_dsrc +}; + +#if DNS_HAVE_READ +static const char *config_keys[] = { "Interface", "IgnoreSource", NULL }; static int config_keys_num = 2; -#endif /* HAVE_LIBPCAP */ -#endif /* NAMED_HAVE_CONFIG */ -#if HAVE_LIBPCAP #define PCAP_SNAPLEN 1460 static char *pcap_device = NULL; -static unsigned int tr_queries; -static unsigned int tr_responses; +static counter_t tr_queries; +static counter_t tr_responses; static counter_list_t *qtype_list; static counter_list_t *opcode_list; static counter_list_t *rcode_list; -#endif -#if HAVE_PTHREAD_H static pthread_t listen_thread; static int listen_thread_init = 0; /* The `traffic' mutex if for `tr_queries' and `tr_responses' */ @@ -124,20 +106,24 @@ static pthread_mutex_t traffic_mutex = PTHREAD_MUTEX_INITIALIZER; static pthread_mutex_t qtype_mutex = PTHREAD_MUTEX_INITIALIZER; static pthread_mutex_t opcode_mutex = PTHREAD_MUTEX_INITIALIZER; static pthread_mutex_t rcode_mutex = PTHREAD_MUTEX_INITIALIZER; -#endif +#endif /* DNS_HAVE_READ */ +/* + * Private functions + */ +#if DNS_HAVE_READ static counter_list_t *counter_list_search (counter_list_t **list, unsigned int key) { counter_list_t *entry; - DBG ("counter_list_search (list = %p, key = %u)", + DEBUG ("counter_list_search (list = %p, key = %u)", (void *) *list, key); for (entry = *list; entry != NULL; entry = entry->next) if (entry->key == key) break; - DBG ("return (%p)", (void *) entry); + DEBUG ("return (%p)", (void *) entry); return (entry); } @@ -146,7 +132,7 @@ static counter_list_t *counter_list_create (counter_list_t **list, { counter_list_t *entry; - DBG ("counter_list_create (list = %p, key = %u, value = %u)", + DEBUG ("counter_list_create (list = %p, key = %u, value = %u)", (void *) *list, key, value); entry = (counter_list_t *) malloc (sizeof (counter_list_t)); @@ -172,7 +158,7 @@ static counter_list_t *counter_list_create (counter_list_t **list, last->next = entry; } - DBG ("return (%p)", (void *) entry); + DEBUG ("return (%p)", (void *) entry); return (entry); } @@ -181,7 +167,7 @@ static void counter_list_add (counter_list_t **list, { counter_list_t *entry; - DBG ("counter_list_add (list = %p, key = %u, increment = %u)", + DEBUG ("counter_list_add (list = %p, key = %u, increment = %u)", (void *) *list, key, increment); entry = counter_list_search (list, key); @@ -194,13 +180,11 @@ static void counter_list_add (counter_list_t **list, { counter_list_create (list, key, increment); } - DBG ("return ()"); + DEBUG ("return ()"); } -#if NAMED_HAVE_CONFIG -static int dns_config (char *key, char *value) +static int dns_config (const char *key, const char *value) { -#if HAVE_LIBPCAP if (strcasecmp (key, "Interface") == 0) { if (pcap_device != NULL) @@ -219,9 +203,7 @@ static int dns_config (char *key, char *value) } return (0); -#endif /* HAVE_LIBPCAP */ } -#endif /* NAMED_HAVE_CONFIG */ static void dns_child_callback (const rfc1035_header_t *dns) { @@ -260,7 +242,6 @@ static void *dns_child_loop (void *dummy) char pcap_error[PCAP_ERRBUF_SIZE]; struct bpf_program fp; - struct pollfd poll_fds[1]; int status; /* Don't block any signals */ @@ -271,15 +252,15 @@ static void *dns_child_loop (void *dummy) } /* Passing `pcap_device == NULL' is okay and the same as passign "any" */ - DBG ("Creating PCAP object.."); + DEBUG ("Creating PCAP object.."); pcap_obj = pcap_open_live (pcap_device, PCAP_SNAPLEN, 0 /* Not promiscuous */, - 0 /* no read timeout */, + interval_g, pcap_error); if (pcap_obj == NULL) { - syslog (LOG_ERR, "dns plugin: Opening interface `%s' " + ERROR ("dns plugin: Opening interface `%s' " "failed: %s", (pcap_device != NULL) ? pcap_device : "any", pcap_error); @@ -289,80 +270,41 @@ static void *dns_child_loop (void *dummy) memset (&fp, 0, sizeof (fp)); if (pcap_compile (pcap_obj, &fp, "udp port 53", 1, 0) < 0) { - DBG ("pcap_compile failed"); - syslog (LOG_ERR, "dns plugin: pcap_compile failed"); + DEBUG ("pcap_compile failed"); + ERROR ("dns plugin: pcap_compile failed"); return (NULL); } if (pcap_setfilter (pcap_obj, &fp) < 0) { - DBG ("pcap_setfilter failed"); - syslog (LOG_ERR, "dns plugin: pcap_setfilter failed"); + DEBUG ("pcap_setfilter failed"); + ERROR ("dns plugin: pcap_setfilter failed"); return (NULL); } - DBG ("PCAP object created."); + DEBUG ("PCAP object created."); dnstop_set_pcap_obj (pcap_obj); dnstop_set_callback (dns_child_callback); - /* Set up poll object */ - poll_fds[0].fd = pcap_fileno (pcap_obj); - poll_fds[0].events = POLLIN | POLLPRI; + status = pcap_loop (pcap_obj, + -1 /* loop forever */, + handle_pcap /* callback */, + NULL /* Whatever this means.. */); + if (status < 0) + ERROR ("dns plugin: Listener thread is exiting " + "abnormally: %s", pcap_geterr (pcap_obj)); - while (42) - { - DBG ("poll (...)"); - status = poll (poll_fds, 1, -1 /* wait forever for a change */); - - /* Signals are not caught, but this is very handy when - * attaching to the process with a debugger. -octo */ - if ((status < 0) && (errno == EINTR)) - { - errno = 0; - continue; - } - - if (status < 0) - { - syslog (LOG_ERR, "dns plugin: poll(2) failed: %s", - strerror (errno)); - break; - } - - if (poll_fds[0].revents & (POLLERR | POLLHUP | POLLNVAL)) - { - DBG ("pcap-device closed. Exiting."); - syslog (LOG_ERR, "dns plugin: pcap-device closed. Exiting."); - break; - } - else if (poll_fds[0].revents & (POLLIN | POLLPRI)) - { - status = pcap_dispatch (pcap_obj, - 10 /* Only handle 10 packets at a time */, - handle_pcap /* callback */, - NULL /* Whatever this means.. */); - if (status < 0) - { - DBG ("pcap_dispatch failed: %s", pcap_geterr (pcap_obj)); - syslog (LOG_ERR, "dns plugin: pcap_dispatch failed: %s", - pcap_geterr (pcap_obj)); - break; - } - } - } /* while (42) */ - - DBG ("child is exiting"); + DEBUG ("child is exiting"); pcap_close (pcap_obj); + listen_thread_init = 0; pthread_exit (NULL); return (NULL); } /* static void dns_child_loop (void) */ -static void dns_init (void) +static int dns_init (void) { -#if HAVE_LIBPCAP -#if HAVE_PTHREAD_H /* clean up an old thread */ int status; @@ -372,132 +314,59 @@ static void dns_init (void) pthread_mutex_unlock (&traffic_mutex); if (listen_thread_init != 0) - return; + return (-1); status = pthread_create (&listen_thread, NULL, dns_child_loop, (void *) 0); if (status != 0) { - syslog (LOG_ERR, "dns plugin: pthread_create failed: %s", - strerror (status)); - return; + char errbuf[1024]; + ERROR ("dns plugin: pthread_create failed: %s", + sstrerror (errno, errbuf, sizeof (errbuf))); + return (-1); } listen_thread_init = 1; -#endif -#endif -} - -static void traffic_write (char *host, char *inst, char *val) -{ - rrd_update_file (host, traffic_file, val, - traffic_ds_def, traffic_ds_num); -} - -static void qtype_write (char *host, char *inst, char *val) -{ - char file[512]; - int status; - status = snprintf (file, 512, qtype_file, inst); - if (status < 1) - return; - else if (status >= 512) - return; - - rrd_update_file (host, file, val, qtype_ds_def, qtype_ds_num); -} - -static void rcode_write (char *host, char *inst, char *val) -{ - char file[512]; - int status; - - status = snprintf (file, 512, rcode_file, inst); - if (status < 1) - return; - else if (status >= 512) - return; - - rrd_update_file (host, file, val, rcode_ds_def, rcode_ds_num); -} - -static void opcode_write (char *host, char *inst, char *val) -{ - char file[512]; - int status; - - status = snprintf (file, 512, opcode_file, inst); - if (status < 1) - return; - else if (status >= 512) - return; - - rrd_update_file (host, file, val, opcode_ds_def, opcode_ds_num); -} - -static void traffic_submit (unsigned int queries, unsigned int replies) -{ - char buffer[64]; - int status; - - status = snprintf (buffer, 64, "N:%u:%u", queries, replies); - if ((status < 1) || (status >= 64)) - return; - - plugin_submit ("dns_traffic", "-", buffer); -} - -static void qtype_submit (int qtype, unsigned int counter) -{ - char inst[32]; - char buffer[32]; - int status; - - strncpy (inst, qtype_str (qtype), 32); - inst[31] = '\0'; - - status = snprintf (buffer, 32, "N:%u", counter); - if ((status < 1) || (status >= 32)) - return; - - plugin_submit ("dns_qtype", inst, buffer); -} + return (0); +} /* int dns_init */ -static void rcode_submit (int rcode, unsigned int counter) +static void submit_counter (const char *type, const char *type_instance, + counter_t value) { - char inst[32]; - char buffer[32]; - int status; + value_t values[1]; + value_list_t vl = VALUE_LIST_INIT; - strncpy (inst, rcode_str (rcode), 32); - inst[31] = '\0'; + values[0].counter = value; - status = snprintf (buffer, 32, "N:%u", counter); - if ((status < 1) || (status >= 32)) - return; + vl.values = values; + vl.values_len = 1; + vl.time = time (NULL); + strcpy (vl.host, hostname_g); + strcpy (vl.plugin, "dns"); + strncpy (vl.type_instance, type_instance, sizeof (vl.type_instance)); - plugin_submit ("dns_rcode", inst, buffer); -} + plugin_dispatch_values (type, &vl); +} /* void submit_counter */ -static void opcode_submit (int opcode, unsigned int counter) +static void submit_octets (counter_t queries, counter_t responses) { - char inst[32]; - char buffer[32]; - int status; + value_t values[2]; + value_list_t vl = VALUE_LIST_INIT; - strncpy (inst, opcode_str (opcode), 32); - inst[31] = '\0'; + values[0].counter = queries; + values[1].counter = responses; - status = snprintf (buffer, 32, "N:%u", counter); - if ((status < 1) || (status >= 32)) - return; + vl.values = values; + vl.values_len = 2; + vl.time = time (NULL); + strcpy (vl.host, hostname_g); + strcpy (vl.plugin, "dns"); - plugin_submit ("dns_opcode", inst, buffer); -} + plugin_dispatch_values ("dns_octets", &vl); +} /* void submit_counter */ -#if NAMED_HAVE_READ -static void dns_read (void) +static int dns_read (void) { unsigned int keys[T_MAX]; unsigned int values[T_MAX]; @@ -510,7 +379,7 @@ static void dns_read (void) values[0] = tr_queries; values[1] = tr_responses; pthread_mutex_unlock (&traffic_mutex); - traffic_submit (values[0], values[1]); + submit_octets (values[0], values[1]); pthread_mutex_lock (&qtype_mutex); for (ptr = qtype_list, len = 0; @@ -524,8 +393,8 @@ static void dns_read (void) for (i = 0; i < len; i++) { - DBG ("qtype = %u; counter = %u;", keys[i], values[i]); - qtype_submit (keys[i], values[i]); + DEBUG ("qtype = %u; counter = %u;", keys[i], values[i]); + submit_counter ("dns_qtype", qtype_str (keys[i]), values[i]); } pthread_mutex_lock (&opcode_mutex); @@ -540,8 +409,8 @@ static void dns_read (void) for (i = 0; i < len; i++) { - DBG ("opcode = %u; counter = %u;", keys[i], values[i]); - opcode_submit (keys[i], values[i]); + DEBUG ("opcode = %u; counter = %u;", keys[i], values[i]); + submit_counter ("dns_opcode", opcode_str (keys[i]), values[i]); } pthread_mutex_lock (&rcode_mutex); @@ -556,22 +425,30 @@ static void dns_read (void) for (i = 0; i < len; i++) { - DBG ("rcode = %u; counter = %u;", keys[i], values[i]); - rcode_submit (keys[i], values[i]); + DEBUG ("rcode = %u; counter = %u;", keys[i], values[i]); + submit_counter ("dns_rcode", rcode_str (keys[i]), values[i]); } -} -#else /* if !NAMED_HAVE_READ */ -# define dns_read NULL + + return (0); +} /* int dns_read */ #endif -void module_register (void) +void module_register (modreg_e load) { - plugin_register (MODULE_NAME, dns_init, dns_read, NULL); - plugin_register ("dns_traffic", NULL, NULL, traffic_write); - plugin_register ("dns_qtype", NULL, NULL, qtype_write); - plugin_register ("dns_rcode", NULL, NULL, rcode_write); - plugin_register ("dns_opcode", NULL, NULL, opcode_write); - cf_register (MODULE_NAME, dns_config, config_keys, config_keys_num); -} + if (load & MR_DATASETS) + { + plugin_register_data_set (&octets_ds); + plugin_register_data_set (&qtype_ds); + plugin_register_data_set (&opcode_ds); + plugin_register_data_set (&rcode_ds); + } -#undef MODULE_NAME +#if DNS_HAVE_READ + if (load & MR_READ) + { + plugin_register_config ("dns", dns_config, config_keys, config_keys_num); + plugin_register_init ("dns", dns_init); + plugin_register_read ("dns", dns_read); + } +#endif +} /* void module_register */