3 * Copyright (C) 2006-2011 Florian octo Forster
4 * Copyright (C) 2009 Mirko Buffoni
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; only version 2 of the License is applicable.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * Florian octo Forster <octo at collectd.org>
21 * Mirko Buffoni <briareos at eswat.org>
29 #include "configfile.h"
31 #include "utils_dns.h"
45 struct counter_list_s *next;
47 typedef struct counter_list_s counter_list_t;
52 static const char *config_keys[] =
56 "SelectNumericQueryTypes"
58 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
59 static int select_numeric_qtype = 1;
61 #define PCAP_SNAPLEN 1460
62 static char *pcap_device = NULL;
64 static derive_t tr_queries;
65 static derive_t tr_responses;
66 static counter_list_t *qtype_list;
67 static counter_list_t *opcode_list;
68 static counter_list_t *rcode_list;
70 static pthread_t listen_thread;
71 static int listen_thread_init = 0;
72 /* The `traffic' mutex if for `tr_queries' and `tr_responses' */
73 static pthread_mutex_t traffic_mutex = PTHREAD_MUTEX_INITIALIZER;
74 static pthread_mutex_t qtype_mutex = PTHREAD_MUTEX_INITIALIZER;
75 static pthread_mutex_t opcode_mutex = PTHREAD_MUTEX_INITIALIZER;
76 static pthread_mutex_t rcode_mutex = PTHREAD_MUTEX_INITIALIZER;
81 static counter_list_t *counter_list_search (counter_list_t **list, unsigned int key)
83 counter_list_t *entry;
85 for (entry = *list; entry != NULL; entry = entry->next)
86 if (entry->key == key)
92 static counter_list_t *counter_list_create (counter_list_t **list,
93 unsigned int key, unsigned int value)
95 counter_list_t *entry;
97 entry = (counter_list_t *) malloc (sizeof (counter_list_t));
101 memset (entry, 0, sizeof (counter_list_t));
103 entry->value = value;
111 counter_list_t *last;
114 while (last->next != NULL)
123 static void counter_list_add (counter_list_t **list,
124 unsigned int key, unsigned int increment)
126 counter_list_t *entry;
128 entry = counter_list_search (list, key);
132 entry->value += increment;
136 counter_list_create (list, key, increment);
140 static int dns_config (const char *key, const char *value)
142 if (strcasecmp (key, "Interface") == 0)
144 if (pcap_device != NULL)
146 if ((pcap_device = strdup (value)) == NULL)
149 else if (strcasecmp (key, "IgnoreSource") == 0)
152 ignore_list_add_name (value);
154 else if (strcasecmp (key, "SelectNumericQueryTypes") == 0)
156 if ((value != NULL) && IS_FALSE (value))
157 select_numeric_qtype = 0;
159 select_numeric_qtype = 1;
169 static void dns_child_callback (const rfc1035_header_t *dns)
173 /* This is a query */
175 if (!select_numeric_qtype)
177 const char *str = qtype_str(dns->qtype);
178 if ((str == NULL) || (str[0] == '#'))
182 pthread_mutex_lock (&traffic_mutex);
183 tr_queries += dns->length;
184 pthread_mutex_unlock (&traffic_mutex);
188 pthread_mutex_lock (&qtype_mutex);
189 counter_list_add (&qtype_list, dns->qtype, 1);
190 pthread_mutex_unlock (&qtype_mutex);
195 /* This is a reply */
196 pthread_mutex_lock (&traffic_mutex);
197 tr_responses += dns->length;
198 pthread_mutex_unlock (&traffic_mutex);
200 pthread_mutex_lock (&rcode_mutex);
201 counter_list_add (&rcode_list, dns->rcode, 1);
202 pthread_mutex_unlock (&rcode_mutex);
205 /* FIXME: Are queries, replies or both interesting? */
206 pthread_mutex_lock (&opcode_mutex);
207 counter_list_add (&opcode_list, dns->opcode, 1);
208 pthread_mutex_unlock (&opcode_mutex);
211 static void *dns_child_loop (__attribute__((unused)) void *dummy)
214 char pcap_error[PCAP_ERRBUF_SIZE];
215 struct bpf_program fp;
219 /* Don't block any signals */
222 sigemptyset (&sigmask);
223 pthread_sigmask (SIG_SETMASK, &sigmask, NULL);
226 /* Passing `pcap_device == NULL' is okay and the same as passign "any" */
227 DEBUG ("dns plugin: Creating PCAP object..");
228 pcap_obj = pcap_open_live ((pcap_device != NULL) ? pcap_device : "any",
230 0 /* Not promiscuous */,
231 (int) CDTIME_T_TO_MS (interval_g / 2),
233 if (pcap_obj == NULL)
235 ERROR ("dns plugin: Opening interface `%s' "
237 (pcap_device != NULL) ? pcap_device : "any",
242 memset (&fp, 0, sizeof (fp));
243 if (pcap_compile (pcap_obj, &fp, "udp port 53", 1, 0) < 0)
245 ERROR ("dns plugin: pcap_compile failed");
248 if (pcap_setfilter (pcap_obj, &fp) < 0)
250 ERROR ("dns plugin: pcap_setfilter failed");
254 DEBUG ("dns plugin: PCAP object created.");
256 dnstop_set_pcap_obj (pcap_obj);
257 dnstop_set_callback (dns_child_callback);
259 status = pcap_loop (pcap_obj,
260 -1 /* loop forever */,
261 handle_pcap /* callback */,
262 NULL /* Whatever this means.. */);
264 ERROR ("dns plugin: Listener thread is exiting "
265 "abnormally: %s", pcap_geterr (pcap_obj));
267 DEBUG ("dns plugin: Child is exiting.");
269 pcap_close (pcap_obj);
270 listen_thread_init = 0;
274 } /* static void dns_child_loop (void) */
276 static int dns_init (void)
278 /* clean up an old thread */
281 pthread_mutex_lock (&traffic_mutex);
284 pthread_mutex_unlock (&traffic_mutex);
286 if (listen_thread_init != 0)
289 status = pthread_create (&listen_thread, NULL, dns_child_loop,
294 ERROR ("dns plugin: pthread_create failed: %s",
295 sstrerror (errno, errbuf, sizeof (errbuf)));
299 listen_thread_init = 1;
304 static void submit_derive (const char *type, const char *type_instance,
308 value_list_t vl = VALUE_LIST_INIT;
310 values[0].derive = value;
314 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
315 sstrncpy (vl.plugin, "dns", sizeof (vl.plugin));
316 sstrncpy (vl.type, type, sizeof (vl.type));
317 sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
319 plugin_dispatch_values (&vl);
320 } /* void submit_derive */
322 static void submit_octets (derive_t queries, derive_t responses)
325 value_list_t vl = VALUE_LIST_INIT;
327 values[0].derive = queries;
328 values[1].derive = responses;
332 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
333 sstrncpy (vl.plugin, "dns", sizeof (vl.plugin));
334 sstrncpy (vl.type, "dns_octets", sizeof (vl.type));
336 plugin_dispatch_values (&vl);
337 } /* void submit_octets */
339 static int dns_read (void)
341 unsigned int keys[T_MAX];
342 unsigned int values[T_MAX];
348 pthread_mutex_lock (&traffic_mutex);
349 values[0] = tr_queries;
350 values[1] = tr_responses;
351 pthread_mutex_unlock (&traffic_mutex);
353 if ((values[0] != 0) || (values[1] != 0))
354 submit_octets (values[0], values[1]);
356 pthread_mutex_lock (&qtype_mutex);
357 for (ptr = qtype_list, len = 0;
358 (ptr != NULL) && (len < T_MAX);
359 ptr = ptr->next, len++)
361 keys[len] = ptr->key;
362 values[len] = ptr->value;
364 pthread_mutex_unlock (&qtype_mutex);
366 for (i = 0; i < len; i++)
368 DEBUG ("dns plugin: qtype = %u; counter = %u;", keys[i], values[i]);
369 submit_derive ("dns_qtype", qtype_str (keys[i]), values[i]);
372 pthread_mutex_lock (&opcode_mutex);
373 for (ptr = opcode_list, len = 0;
374 (ptr != NULL) && (len < T_MAX);
375 ptr = ptr->next, len++)
377 keys[len] = ptr->key;
378 values[len] = ptr->value;
380 pthread_mutex_unlock (&opcode_mutex);
382 for (i = 0; i < len; i++)
384 DEBUG ("dns plugin: opcode = %u; counter = %u;", keys[i], values[i]);
385 submit_derive ("dns_opcode", opcode_str (keys[i]), values[i]);
388 pthread_mutex_lock (&rcode_mutex);
389 for (ptr = rcode_list, len = 0;
390 (ptr != NULL) && (len < T_MAX);
391 ptr = ptr->next, len++)
393 keys[len] = ptr->key;
394 values[len] = ptr->value;
396 pthread_mutex_unlock (&rcode_mutex);
398 for (i = 0; i < len; i++)
400 DEBUG ("dns plugin: rcode = %u; counter = %u;", keys[i], values[i]);
401 submit_derive ("dns_rcode", rcode_str (keys[i]), values[i]);
407 void module_register (void)
409 plugin_register_config ("dns", dns_config, config_keys, config_keys_num);
410 plugin_register_init ("dns", dns_init);
411 plugin_register_read ("dns", dns_read);
412 } /* void module_register */