{GPL, other}: Relicense to MIT license.
[collectd.git] / src / powerdns.c
1 /**
2  * collectd - src/powerdns.c
3  * Copyright (C) 2007-2008  C-Ware, Inc.
4  * Copyright (C) 2008       Florian Forster
5  *
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.
9  *
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.
14  *
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
18  *
19  * Author:
20  *   Luke Heberling <lukeh at c-ware.com>
21  *   Florian Forster <octo at collectd.org>
22  *
23  * DESCRIPTION
24  *   Queries a PowerDNS control socket for statistics
25  **/
26
27 #include "collectd.h"
28 #include "common.h"
29 #include "plugin.h"
30 #include "configfile.h"
31 #include "utils_llist.h"
32
33 #include <sys/stat.h>
34 #include <unistd.h>
35 #include <stdlib.h>
36 #include <stdio.h>
37 #include <string.h>
38 #include <errno.h>
39 #include <sys/types.h>
40 #include <sys/socket.h>
41 #include <sys/un.h>
42
43 #ifndef UNIX_PATH_MAX
44 # define UNIX_PATH_MAX sizeof (((struct sockaddr_un *)0)->sun_path)
45 #endif
46 #define FUNC_ERROR(func) do { char errbuf[1024]; ERROR ("powerdns plugin: %s failed: %s", func, sstrerror (errno, errbuf, sizeof (errbuf))); } while (0)
47
48 #define SERVER_SOCKET  LOCALSTATEDIR"/run/pdns.controlsocket"
49 #define SERVER_COMMAND "SHOW * \n"
50
51 #define RECURSOR_SOCKET  LOCALSTATEDIR"/run/pdns_recursor.controlsocket"
52 #define RECURSOR_COMMAND "get noerror-answers nxdomain-answers " \
53   "servfail-answers sys-msec user-msec qa-latency cache-entries cache-hits " \
54   "cache-misses questions\n"
55
56 struct list_item_s;
57 typedef struct list_item_s list_item_t;
58
59 struct list_item_s
60 {
61   enum
62   {
63     SRV_AUTHORITATIVE,
64     SRV_RECURSOR
65   } server_type;
66   int (*func) (list_item_t *item);
67   char *instance;
68
69   char **fields;
70   int fields_num;
71   char *command;
72
73   struct sockaddr_un sockaddr;
74   int socktype;
75 };
76
77 struct statname_lookup_s
78 {
79   char *name;
80   char *type;
81   char *type_instance;
82 };
83 typedef struct statname_lookup_s statname_lookup_t;
84
85 /* Description of statistics returned by the recursor: {{{
86 all-outqueries      counts the number of outgoing UDP queries since starting
87 answers0-1          counts the number of queries answered within 1 milisecond
88 answers100-1000     counts the number of queries answered within 1 second
89 answers10-100       counts the number of queries answered within 100 miliseconds
90 answers1-10         counts the number of queries answered within 10 miliseconds
91 answers-slow        counts the number of queries answered after 1 second
92 cache-entries       shows the number of entries in the cache
93 cache-hits          counts the number of cache hits since starting
94 cache-misses        counts the number of cache misses since starting
95 chain-resends       number of queries chained to existing outstanding query
96 client-parse-errors counts number of client packets that could not be parsed
97 concurrent-queries  shows the number of MThreads currently running
98 dlg-only-drops      number of records dropped because of delegation only setting
99 negcache-entries    shows the number of entries in the Negative answer cache
100 noerror-answers     counts the number of times it answered NOERROR since starting
101 nsspeeds-entries    shows the number of entries in the NS speeds map
102 nsset-invalidations number of times an nsset was dropped because it no longer worked
103 nxdomain-answers    counts the number of times it answered NXDOMAIN since starting
104 outgoing-timeouts   counts the number of timeouts on outgoing UDP queries since starting
105 qa-latency          shows the current latency average
106 questions           counts all End-user initiated queries with the RD bit set
107 resource-limits     counts number of queries that could not be performed because of resource limits
108 server-parse-errors counts number of server replied packets that could not be parsed
109 servfail-answers    counts the number of times it answered SERVFAIL since starting
110 spoof-prevents      number of times PowerDNS considered itself spoofed, and dropped the data
111 sys-msec            number of CPU milliseconds spent in 'system' mode
112 tcp-client-overflow number of times an IP address was denied TCP access because it already had too many connections
113 tcp-outqueries      counts the number of outgoing TCP queries since starting
114 tcp-questions       counts all incoming TCP queries (since starting)
115 throttled-out       counts the number of throttled outgoing UDP queries since starting
116 throttle-entries    shows the number of entries in the throttle map
117 unauthorized-tcp    number of TCP questions denied because of allow-from restrictions
118 unauthorized-udp    number of UDP questions denied because of allow-from restrictions
119 unexpected-packets  number of answers from remote servers that were unexpected (might point to spoofing)
120 uptime              number of seconds process has been running (since 3.1.5)
121 user-msec           number of CPU milliseconds spent in 'user' mode
122 }}} */
123
124 const char* const default_server_fields[] = /* {{{ */
125 {
126   "latency"
127   "packetcache-hit",
128   "packetcache-miss",
129   "packetcache-size",
130   "query-cache-hit",
131   "query-cache-miss",
132   "recursing-answers",
133   "recursing-questions",
134   "tcp-answers",
135   "tcp-queries",
136   "udp-answers",
137   "udp-queries",
138 }; /* }}} */
139 int default_server_fields_num = STATIC_ARRAY_SIZE (default_server_fields);
140
141 statname_lookup_t lookup_table[] = /* {{{ */
142 {
143   /*********************
144    * Server statistics *
145    *********************/
146   /* Questions */
147   {"recursing-questions",    "dns_question", "recurse"},
148   {"tcp-queries",            "dns_question", "tcp"},
149   {"udp-queries",            "dns_question", "udp"},
150
151   /* Answers */
152   {"recursing-answers",      "dns_answer",   "recurse"},
153   {"tcp-answers",            "dns_answer",   "tcp"},
154   {"udp-answers",            "dns_answer",   "udp"},
155
156   /* Cache stuff */
157   {"packetcache-hit",        "cache_result", "packet-hit"},
158   {"packetcache-miss",       "cache_result", "packet-miss"},
159   {"packetcache-size",       "cache_size",   "packet"},
160   {"query-cache-hit",        "cache_result", "query-hit"},
161   {"query-cache-miss",       "cache_result", "query-miss"},
162
163   /* Latency */
164   {"latency",                "latency",      NULL},
165
166   /* Other stuff.. */
167   {"corrupt-packets",        "ipt_packets",  "corrupt"},
168   {"deferred-cache-inserts", "counter",      "cache-deferred_insert"},
169   {"deferred-cache-lookup",  "counter",      "cache-deferred_lookup"},
170   {"qsize-a",                "cache_size",   "answers"},
171   {"qsize-q",                "cache_size",   "questions"},
172   {"servfail-packets",       "ipt_packets",  "servfail"},
173   {"timedout-packets",       "ipt_packets",  "timeout"},
174   {"udp4-answers",           "dns_answer",   "udp4"},
175   {"udp4-queries",           "dns_question", "queries-udp4"},
176   {"udp6-answers",           "dns_answer",   "udp6"},
177   {"udp6-queries",           "dns_question", "queries-udp6"},
178
179   /***********************
180    * Recursor statistics *
181    ***********************/
182   /* Answers by return code */
183   {"noerror-answers",     "dns_rcode",    "NOERROR"},
184   {"nxdomain-answers",    "dns_rcode",    "NXDOMAIN"},
185   {"servfail-answers",    "dns_rcode",    "SERVFAIL"},
186
187   /* CPU utilization */
188   {"sys-msec",            "cpu",          "system"},
189   {"user-msec",           "cpu",          "user"},
190
191   /* Question-to-answer latency */
192   {"qa-latency",          "latency",      NULL},
193
194   /* Cache */
195   {"cache-entries",       "cache_size",   NULL},
196   {"cache-hits",          "cache_result", "hit"},
197   {"cache-misses",        "cache_result", "miss"},
198
199   /* Total number of questions.. */
200   {"questions",           "dns_qtype",    "total"},
201
202   /* All the other stuff.. */
203   {"all-outqueries",      "dns_question", "outgoing"},
204   {"answers0-1",          "dns_answer",   "0_1"},
205   {"answers1-10",         "dns_answer",   "1_10"},
206   {"answers10-100",       "dns_answer",   "10_100"},
207   {"answers100-1000",     "dns_answer",   "100_1000"},
208   {"answers-slow",        "dns_answer",   "slow"},
209   {"chain-resends",       "dns_question", "chained"},
210   {"client-parse-errors", "counter",      "drops-client_parse_error"},
211   {"concurrent-queries",  "dns_question", "concurrent"},
212   {"dlg-only-drops",      "counter",      "drops-delegation_only"},
213   {"negcache-entries",    "cache_size",   "negative"},
214   {"nsspeeds-entries",    "gauge",        "entries-ns_speeds"},
215   {"nsset-invalidations", "counter",      "ns_set_invalidation"},
216   {"outgoing-timeouts",   "counter",      "drops-timeout_outgoing"},
217   {"resource-limits",     "counter",      "drops-resource_limit"},
218   {"server-parse-errors", "counter",      "drops-server_parse_error"},
219   {"spoof-prevents",      "counter",      "drops-spoofed"},
220   {"tcp-client-overflow", "counter",      "denied-client_overflow_tcp"},
221   {"tcp-outqueries",      "dns_question", "outgoing-tcp"},
222   {"tcp-questions",       "dns_question", "incoming-tcp"},
223   {"throttled-out",       "dns_question", "outgoing-throttled"},
224   {"throttle-entries",    "gauge",        "entries-throttle"},
225   {"unauthorized-tcp",    "counter",      "denied-unauthorized_tcp"},
226   {"unauthorized-udp",    "counter",      "denied-unauthorized_udp"},
227   {"unexpected-packets",  "dns_answer",   "unexpected"}
228   /* {"uptime", "", ""} */
229 }; /* }}} */
230 int lookup_table_length = STATIC_ARRAY_SIZE (lookup_table);
231
232 static llist_t *list = NULL;
233
234 #define PDNS_LOCAL_SOCKPATH LOCALSTATEDIR"/run/"PACKAGE_NAME"-powerdns"
235 static char *local_sockpath = NULL;
236
237 /* TODO: Do this before 4.4:
238  * - Recursor:
239  *   - Complete list of known pdns -> collectd mappings.
240  * - Update the collectd.conf(5) manpage.
241  *
242  * -octo
243  */
244
245 /* <http://doc.powerdns.com/recursor-stats.html> */
246 static void submit (const char *plugin_instance, /* {{{ */
247     const char *pdns_type, const char *value)
248 {
249   value_list_t vl = VALUE_LIST_INIT;
250   value_t values[1];
251
252   const char *type = NULL;
253   const char *type_instance = NULL;
254   const data_set_t *ds;
255
256   int i;
257
258   for (i = 0; i < lookup_table_length; i++)
259     if (strcmp (lookup_table[i].name, pdns_type) == 0)
260       break;
261
262   if (lookup_table[i].type == NULL)
263     return;
264
265   if (i >= lookup_table_length)
266   {
267     INFO ("powerdns plugin: submit: Not found in lookup table: %s = %s;",
268         pdns_type, value);
269     return;
270   }
271
272   type = lookup_table[i].type;
273   type_instance = lookup_table[i].type_instance;
274
275   ds = plugin_get_ds (type);
276   if (ds == NULL)
277   {
278     ERROR ("powerdns plugin: The lookup table returned type `%s', "
279         "but I cannot find it via `plugin_get_ds'.",
280         type);
281     return;
282   }
283
284   if (ds->ds_num != 1)
285   {
286     ERROR ("powerdns plugin: type `%s' has %i data sources, "
287         "but I can only handle one.",
288         type, ds->ds_num);
289     return;
290   }
291
292   if (0 != parse_value (value, &values[0], ds->ds[0].type))
293   {
294     ERROR ("powerdns plugin: Cannot convert `%s' "
295         "to a number.", value);
296     return;
297   }
298
299   vl.values = values;
300   vl.values_len = 1;
301   sstrncpy (vl.host, hostname_g, sizeof (vl.host));
302   sstrncpy (vl.plugin, "powerdns", sizeof (vl.plugin));
303   sstrncpy (vl.type, type, sizeof (vl.type));
304   if (type_instance != NULL)
305     sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
306   sstrncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
307
308   plugin_dispatch_values (&vl);
309 } /* }}} static void submit */
310
311 static int powerdns_get_data_dgram (list_item_t *item, /* {{{ */
312     char **ret_buffer,
313     size_t *ret_buffer_size)
314 {
315   int sd;
316   int status;
317
318   char temp[4096];
319   char *buffer = NULL;
320   size_t buffer_size = 0;
321
322   struct sockaddr_un sa_unix;
323
324   struct timeval stv_timeout;
325   cdtime_t cdt_timeout;
326
327   sd = socket (PF_UNIX, item->socktype, 0);
328   if (sd < 0)
329   {
330     FUNC_ERROR ("socket");
331     return (-1);
332   }
333
334   memset (&sa_unix, 0, sizeof (sa_unix));
335   sa_unix.sun_family = AF_UNIX;
336   sstrncpy (sa_unix.sun_path,
337       (local_sockpath != NULL) ? local_sockpath : PDNS_LOCAL_SOCKPATH,
338       sizeof (sa_unix.sun_path));
339
340   status = unlink (sa_unix.sun_path);
341   if ((status != 0) && (errno != ENOENT))
342   {
343     FUNC_ERROR ("unlink");
344     close (sd);
345     return (-1);
346   }
347
348   do /* while (0) */
349   {
350     /* We need to bind to a specific path, because this is a datagram socket
351      * and otherwise the daemon cannot answer. */
352     status = bind (sd, (struct sockaddr *) &sa_unix, sizeof (sa_unix));
353     if (status != 0)
354     {
355       FUNC_ERROR ("bind");
356       break;
357     }
358
359     /* Make the socket writeable by the daemon.. */
360     status = chmod (sa_unix.sun_path, 0666);
361     if (status != 0)
362     {
363       FUNC_ERROR ("chmod");
364       break;
365     }
366
367     cdt_timeout = plugin_get_interval () * 3 / 4;
368     if (cdt_timeout < TIME_T_TO_CDTIME_T (2))
369       cdt_timeout = TIME_T_TO_CDTIME_T (2);
370
371     CDTIME_T_TO_TIMEVAL (cdt_timeout, &stv_timeout);
372
373     status = setsockopt (sd, SOL_SOCKET, SO_RCVTIMEO, &stv_timeout, sizeof (stv_timeout));
374     if (status != 0)
375     {
376       FUNC_ERROR ("setsockopt");
377       break;
378     }
379
380     status = connect (sd, (struct sockaddr *) &item->sockaddr,
381         sizeof (item->sockaddr));
382     if (status != 0)
383     {
384       FUNC_ERROR ("connect");
385       break;
386     }
387
388     status = send (sd, item->command, strlen (item->command), 0);
389     if (status < 0)
390     {
391       FUNC_ERROR ("send");
392       break;
393     }
394
395     status = recv (sd, temp, sizeof (temp), /* flags = */ 0);
396     if (status < 0)
397     {
398       FUNC_ERROR ("recv");
399       break;
400     }
401     buffer_size = status + 1;
402     status = 0;
403   } while (0);
404
405   close (sd);
406   unlink (sa_unix.sun_path);
407
408   if (status != 0)
409     return (-1);
410
411   assert (buffer_size > 0);
412   buffer = (char *) malloc (buffer_size);
413   if (buffer == NULL)
414   {
415     FUNC_ERROR ("malloc");
416     return (-1);
417   }
418
419   memcpy (buffer, temp, buffer_size - 1);
420   buffer[buffer_size - 1] = 0;
421
422   *ret_buffer = buffer;
423   *ret_buffer_size = buffer_size;
424
425   return (0);
426 } /* }}} int powerdns_get_data_dgram */
427
428 static int powerdns_get_data_stream (list_item_t *item, /* {{{ */
429     char **ret_buffer,
430     size_t *ret_buffer_size)
431 {
432   int sd;
433   int status;
434
435   char temp[4096];
436   char *buffer = NULL;
437   size_t buffer_size = 0;
438
439   sd = socket (PF_UNIX, item->socktype, 0);
440   if (sd < 0)
441   {
442     FUNC_ERROR ("socket");
443     return (-1);
444   }
445
446   struct timeval timeout;
447   timeout.tv_sec=5;
448   timeout.tv_usec=0;
449   status = setsockopt (sd, SOL_SOCKET, SO_RCVTIMEO, &timeout, sizeof (timeout));
450
451   status = connect (sd, (struct sockaddr *) &item->sockaddr,
452       sizeof (item->sockaddr));
453   if (status != 0)
454   {
455     FUNC_ERROR ("connect");
456     close (sd);
457     return (-1);
458   }
459
460   /* strlen + 1, because we need to send the terminating NULL byte, too. */
461   status = send (sd, item->command, strlen (item->command) + 1,
462       /* flags = */ 0);
463   if (status < 0)
464   {
465     FUNC_ERROR ("send");
466     close (sd);
467     return (-1);
468   }
469
470   while (42)
471   {
472     char *buffer_new;
473
474     status = recv (sd, temp, sizeof (temp), /* flags = */ 0);
475     if (status < 0)
476     {
477       FUNC_ERROR ("recv");
478       break;
479     }
480     else if (status == 0)
481       break;
482
483     buffer_new = (char *) realloc (buffer, buffer_size + status + 1);
484     if (buffer_new == NULL)
485     {
486       FUNC_ERROR ("realloc");
487       status = -1;
488       break;
489     }
490     buffer = buffer_new;
491
492     memcpy (buffer + buffer_size, temp, status);
493     buffer_size += status;
494     buffer[buffer_size] = 0;
495   } /* while (42) */
496   close (sd);
497   sd = -1;
498
499   if (status < 0)
500   {
501     sfree (buffer);
502   }
503   else
504   {
505     assert (status == 0);
506     *ret_buffer = buffer;
507     *ret_buffer_size = buffer_size;
508   }
509
510   return (status);
511 } /* }}} int powerdns_get_data_stream */
512
513 static int powerdns_get_data (list_item_t *item, char **ret_buffer,
514     size_t *ret_buffer_size)
515 {
516   if (item->socktype == SOCK_DGRAM)
517     return (powerdns_get_data_dgram (item, ret_buffer, ret_buffer_size));
518   else if (item->socktype == SOCK_STREAM)
519     return (powerdns_get_data_stream (item, ret_buffer, ret_buffer_size));
520   else
521   {
522     ERROR ("powerdns plugin: Unknown socket type: %i", (int) item->socktype);
523     return (-1);
524   }
525 } /* int powerdns_get_data */
526
527 static int powerdns_read_server (list_item_t *item) /* {{{ */
528 {
529   char *buffer = NULL;
530   size_t buffer_size = 0;
531   int status;
532
533   char *dummy;
534   char *saveptr;
535
536   char *key;
537   char *value;
538
539   const char* const *fields;
540   int fields_num;
541
542   if (item->command == NULL)
543     item->command = strdup (SERVER_COMMAND);
544   if (item->command == NULL)
545   {
546     ERROR ("powerdns plugin: strdup failed.");
547     return (-1);
548   }
549
550   status = powerdns_get_data (item, &buffer, &buffer_size);
551   if (status != 0)
552     return (-1);
553
554   if (item->fields_num != 0)
555   {
556     fields = (const char* const *) item->fields;
557     fields_num = item->fields_num;
558   }
559   else
560   {
561     fields = default_server_fields;
562     fields_num = default_server_fields_num;
563   }
564
565   assert (fields != NULL);
566   assert (fields_num > 0);
567
568   /* corrupt-packets=0,deferred-cache-inserts=0,deferred-cache-lookup=0,latency=0,packetcache-hit=0,packetcache-miss=0,packetcache-size=0,qsize-q=0,query-cache-hit=0,query-cache-miss=0,recursing-answers=0,recursing-questions=0,servfail-packets=0,tcp-answers=0,tcp-queries=0,timedout-packets=0,udp-answers=0,udp-queries=0,udp4-answers=0,udp4-queries=0,udp6-answers=0,udp6-queries=0, */
569   dummy = buffer;
570   saveptr = NULL;
571   while ((key = strtok_r (dummy, ",", &saveptr)) != NULL)
572   {
573     int i;
574
575     dummy = NULL;
576
577     value = strchr (key, '=');
578     if (value == NULL)
579       break;
580
581     *value = '\0';
582     value++;
583
584     if (value[0] == '\0')
585       continue;
586
587     /* Check if this item was requested. */
588     for (i = 0; i < fields_num; i++)
589       if (strcasecmp (key, fields[i]) == 0)
590         break;
591     if (i >= fields_num)
592       continue;
593
594     submit (item->instance, key, value);
595   } /* while (strtok_r) */
596
597   sfree (buffer);
598
599   return (0);
600 } /* }}} int powerdns_read_server */
601
602 /*
603  * powerdns_update_recursor_command
604  *
605  * Creates a string that holds the command to be sent to the recursor. This
606  * string is stores in the `command' member of the `list_item_t' passed to the
607  * function. This function is called by `powerdns_read_recursor'.
608  */
609 static int powerdns_update_recursor_command (list_item_t *li) /* {{{ */
610 {
611   char buffer[4096];
612   int status;
613
614   if (li == NULL)
615     return (0);
616
617   if (li->fields_num < 1)
618   {
619     sstrncpy (buffer, RECURSOR_COMMAND, sizeof (buffer));
620   }
621   else
622   {
623     sstrncpy (buffer, "get ", sizeof (buffer));
624     status = strjoin (&buffer[strlen("get ")], sizeof (buffer) - strlen ("get "),
625         li->fields, li->fields_num,
626         /* seperator = */ " ");
627     if (status < 0)
628     {
629       ERROR ("powerdns plugin: strjoin failed.");
630       return (-1);
631     }
632     buffer[sizeof (buffer) - 1] = 0;
633     int i = strlen (buffer);
634     if (i < sizeof (buffer) - 2)
635     {
636       buffer[i++] = ' ';
637       buffer[i++] = '\n';
638       buffer[i++] = '\0';
639     }
640   }
641
642   buffer[sizeof (buffer) - 1] = 0;
643   li->command = strdup (buffer);
644   if (li->command == NULL)
645   {
646     ERROR ("powerdns plugin: strdup failed.");
647     return (-1);
648   }
649
650   return (0);
651 } /* }}} int powerdns_update_recursor_command */
652
653 static int powerdns_read_recursor (list_item_t *item) /* {{{ */
654 {
655   char *buffer = NULL;
656   size_t buffer_size = 0;
657   int status;
658
659   char *dummy;
660
661   char *keys_list;
662   char *key;
663   char *key_saveptr;
664   char *value;
665   char *value_saveptr;
666
667   if (item->command == NULL)
668   {
669     status = powerdns_update_recursor_command (item);
670     if (status != 0)
671     {
672       ERROR ("powerdns plugin: powerdns_update_recursor_command failed.");
673       return (-1);
674     }
675
676     DEBUG ("powerdns plugin: powerdns_read_recursor: item->command = %s;",
677         item->command);
678   }
679   assert (item->command != NULL);
680
681   status = powerdns_get_data (item, &buffer, &buffer_size);
682   if (status != 0)
683   {
684     ERROR ("powerdns plugin: powerdns_get_data failed.");
685     return (-1);
686   }
687
688   keys_list = strdup (item->command);
689   if (keys_list == NULL)
690   {
691     FUNC_ERROR ("strdup");
692     sfree (buffer);
693     return (-1);
694   }
695
696   key_saveptr = NULL;
697   value_saveptr = NULL;
698
699   /* Skip the `get' at the beginning */
700   strtok_r (keys_list, " \t", &key_saveptr);
701
702   dummy = buffer;
703   while ((value = strtok_r (dummy, " \t\n\r", &value_saveptr)) != NULL)
704   {
705     dummy = NULL;
706
707     key = strtok_r (NULL, " \t", &key_saveptr);
708     if (key == NULL)
709       break;
710
711     submit (item->instance, key, value);
712   } /* while (strtok_r) */
713
714   sfree (buffer);
715   sfree (keys_list);
716
717   return (0);
718 } /* }}} int powerdns_read_recursor */
719
720 static int powerdns_config_add_string (const char *name, /* {{{ */
721     char **dest,
722     oconfig_item_t *ci)
723 {
724   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
725   {
726     WARNING ("powerdns plugin: `%s' needs exactly one string argument.",
727         name);
728     return (-1);
729   }
730
731   sfree (*dest);
732   *dest = strdup (ci->values[0].value.string);
733   if (*dest == NULL)
734     return (-1);
735
736   return (0);
737 } /* }}} int powerdns_config_add_string */
738
739 static int powerdns_config_add_collect (list_item_t *li, /* {{{ */
740     oconfig_item_t *ci)
741 {
742   int i;
743   char **temp;
744
745   if (ci->values_num < 1)
746   {
747     WARNING ("powerdns plugin: The `Collect' option needs "
748         "at least one argument.");
749     return (-1);
750   }
751
752   for (i = 0; i < ci->values_num; i++)
753     if (ci->values[i].type != OCONFIG_TYPE_STRING)
754     {
755       WARNING ("powerdns plugin: Only string arguments are allowed to "
756           "the `Collect' option.");
757       return (-1);
758     }
759
760   temp = (char **) realloc (li->fields,
761       sizeof (char *) * (li->fields_num + ci->values_num));
762   if (temp == NULL)
763   {
764     WARNING ("powerdns plugin: realloc failed.");
765     return (-1);
766   }
767   li->fields = temp;
768
769   for (i = 0; i < ci->values_num; i++)
770   {
771     li->fields[li->fields_num] = strdup (ci->values[i].value.string);
772     if (li->fields[li->fields_num] == NULL)
773     {
774       WARNING ("powerdns plugin: strdup failed.");
775       continue;
776     }
777     li->fields_num++;
778   }
779
780   /* Invalidate a previously computed command */
781   sfree (li->command);
782
783   return (0);
784 } /* }}} int powerdns_config_add_collect */
785
786 static int powerdns_config_add_server (oconfig_item_t *ci) /* {{{ */
787 {
788   char *socket_temp;
789
790   list_item_t *item;
791   int status;
792   int i;
793
794   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
795   {
796     WARNING ("powerdns plugin: `%s' needs exactly one string argument.",
797         ci->key);
798     return (-1);
799   }
800
801   item = (list_item_t *) malloc (sizeof (list_item_t));
802   if (item == NULL)
803   {
804     ERROR ("powerdns plugin: malloc failed.");
805     return (-1);
806   }
807   memset (item, '\0', sizeof (list_item_t));
808
809   item->instance = strdup (ci->values[0].value.string);
810   if (item->instance == NULL)
811   {
812     ERROR ("powerdns plugin: strdup failed.");
813     sfree (item);
814     return (-1);
815   }
816
817   /*
818    * Set default values for the members of list_item_t
819    */
820   if (strcasecmp ("Server", ci->key) == 0)
821   {
822     item->server_type = SRV_AUTHORITATIVE;
823     item->func = powerdns_read_server;
824     item->socktype = SOCK_STREAM;
825     socket_temp = strdup (SERVER_SOCKET);
826   }
827   else if (strcasecmp ("Recursor", ci->key) == 0)
828   {
829     item->server_type = SRV_RECURSOR;
830     item->func = powerdns_read_recursor;
831     item->socktype = SOCK_DGRAM;
832     socket_temp = strdup (RECURSOR_SOCKET);
833   }
834   else
835   {
836     /* We must never get here.. */
837     assert (0);
838     return (-1);
839   }
840
841   status = 0;
842   for (i = 0; i < ci->children_num; i++)
843   {
844     oconfig_item_t *option = ci->children + i;
845
846     if (strcasecmp ("Collect", option->key) == 0)
847       status = powerdns_config_add_collect (item, option);
848     else if (strcasecmp ("Socket", option->key) == 0)
849       status = powerdns_config_add_string ("Socket", &socket_temp, option);
850     else
851     {
852       ERROR ("powerdns plugin: Option `%s' not allowed here.", option->key);
853       status = -1;
854     }
855
856     if (status != 0)
857       break;
858   }
859
860   while (status == 0)
861   {
862     llentry_t *e;
863
864     if (socket_temp == NULL)
865     {
866       ERROR ("powerdns plugin: socket_temp == NULL.");
867       status = -1;
868       break;
869     }
870
871     item->sockaddr.sun_family = AF_UNIX;
872     sstrncpy (item->sockaddr.sun_path, socket_temp,
873       sizeof (item->sockaddr.sun_path));
874
875     e = llentry_create (item->instance, item);
876     if (e == NULL)
877     {
878       ERROR ("powerdns plugin: llentry_create failed.");
879       status = -1;
880       break;
881     }
882     llist_append (list, e);
883
884     break;
885   }
886
887   if (status != 0)
888   {
889     sfree (item);
890     return (-1);
891   }
892
893   DEBUG ("powerdns plugin: Add server: instance = %s;", item->instance);
894
895   return (0);
896 } /* }}} int powerdns_config_add_server */
897
898 static int powerdns_config (oconfig_item_t *ci) /* {{{ */
899 {
900   int i;
901
902   DEBUG ("powerdns plugin: powerdns_config (ci = %p);", (void *) ci);
903
904   if (list == NULL)
905   {
906     list = llist_create ();
907
908     if (list == NULL)
909     {
910       ERROR ("powerdns plugin: `llist_create' failed.");
911       return (-1);
912     }
913   }
914
915   for (i = 0; i < ci->children_num; i++)
916   {
917     oconfig_item_t *option = ci->children + i;
918
919     if ((strcasecmp ("Server", option->key) == 0)
920         || (strcasecmp ("Recursor", option->key) == 0))
921       powerdns_config_add_server (option);
922     else if (strcasecmp ("LocalSocket", option->key) == 0)
923     {
924       if ((option->values_num != 1) || (option->values[0].type != OCONFIG_TYPE_STRING))
925       {
926         WARNING ("powerdns plugin: `%s' needs exactly one string argument.", option->key);
927       }
928       else
929       {
930         char *temp = strdup (option->values[0].value.string);
931         if (temp == NULL)
932           return (1);
933         sfree (local_sockpath);
934         local_sockpath = temp;
935       }
936     }
937     else
938     {
939       ERROR ("powerdns plugin: Option `%s' not allowed here.", option->key);
940     }
941   } /* for (i = 0; i < ci->children_num; i++) */
942
943   return (0);
944 } /* }}} int powerdns_config */
945
946 static int powerdns_read (void)
947 {
948   llentry_t *e;
949
950   for (e = llist_head (list); e != NULL; e = e->next)
951   {
952     list_item_t *item = e->value;
953     item->func (item);
954   }
955
956   return (0);
957 } /* static int powerdns_read */
958
959 static int powerdns_shutdown (void)
960 {
961   llentry_t *e;
962
963   if (list == NULL)
964     return (0);
965
966   for (e = llist_head (list); e != NULL; e = e->next)
967   {
968     list_item_t *item = (list_item_t *) e->value;
969     e->value = NULL;
970
971     sfree (item->instance);
972     sfree (item->command);
973     sfree (item);
974   }
975
976   llist_destroy (list);
977   list = NULL;
978
979   return (0);
980 } /* static int powerdns_shutdown */
981
982 void module_register (void)
983 {
984   plugin_register_complex_config ("powerdns", powerdns_config);
985   plugin_register_read ("powerdns", powerdns_read);
986   plugin_register_shutdown ("powerdns", powerdns_shutdown );
987 } /* void module_register */
988
989 /* vim: set sw=2 sts=2 ts=8 fdm=marker : */