Merge branch 'collectd-4.5' into collectd-4.6
[collectd.git] / src / bind.c
1 /**
2  * collectd - src/bind.c
3  * Copyright (C) 2009  Bruno PrĂ©mont
4  * Copyright (C) 2009  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  * Authors:
20  *   Bruno PrĂ©mont <bonbons at linux-vserver.org>
21  *   Florian Forster <octo at verplant.org>
22  **/
23
24 /* Set to C99 and POSIX code */
25 #ifndef _ISOC99_SOURCE
26 # define _ISOC99_SOURCE
27 #endif
28 #ifndef _POSIX_SOURCE
29 # define _POSIX_SOURCE
30 #endif
31 #ifndef _POSIX_C_SOURCE
32 # define _POSIX_C_SOURCE 200112L
33 #endif
34 #ifndef _REENTRANT
35 # define _REENTRANT
36 #endif
37 #ifndef _XOPEN_SOURCE
38 # define _XOPEN_SOURCE 600
39 #endif
40 #ifndef _BSD_SOURCE
41 # define _BSD_SOURCE
42 #endif
43
44 #include "collectd.h"
45 #include "common.h"
46 #include "plugin.h"
47 #include "configfile.h"
48
49 #include <curl/curl.h>
50 #include <libxml/parser.h>
51 #include <libxml/xpath.h>
52
53 #ifndef BIND_DEFAULT_URL
54 # define BIND_DEFAULT_URL "http://localhost:8053/"
55 #endif
56
57 /* 
58  * Some types used for the callback functions. `translation_table_ptr_t' and
59  * `list_info_ptr_t' are passed to the callbacks in the `void *user_data'
60  * pointer.
61  */
62 typedef int (*list_callback_t) (const char *name, value_t value,
63     time_t current_time, void *user_data);
64
65 struct cb_view_s
66 {
67   char *name;
68
69   int qtypes;
70   int resolver_stats;
71   int cacherrsets;
72
73   char **zones;
74   size_t zones_num;
75 };
76 typedef struct cb_view_s cb_view_t;
77
78 struct translation_info_s
79 {
80   const char *xml_name;
81   const char *type;
82   const char *type_instance;
83 };
84 typedef struct translation_info_s translation_info_t;
85
86 struct translation_table_ptr_s
87 {
88   const translation_info_t *table;
89   size_t table_length;
90   const char *plugin_instance;
91 };
92 typedef struct translation_table_ptr_s translation_table_ptr_t;
93
94 struct list_info_ptr_s
95 {
96   const char *plugin_instance;
97   const char *type;
98 };
99 typedef struct list_info_ptr_s list_info_ptr_t;
100
101 static char *url                   = NULL;
102 static int global_opcodes          = 1;
103 static int global_qtypes           = 1;
104 static int global_server_stats     = 1;
105 static int global_zone_maint_stats = 1;
106 static int global_resolver_stats   = 0;
107 static int global_memory_stats     = 1;
108
109 static cb_view_t *views = NULL;
110 static size_t     views_num = 0;
111
112 static CURL *curl = NULL;
113
114 static char  *bind_buffer = NULL;
115 static size_t bind_buffer_size = 0;
116 static size_t bind_buffer_fill = 0;
117 static char   bind_curl_error[CURL_ERROR_SIZE];
118
119 /* Translation table for the `nsstats' values. */
120 static const translation_info_t nsstats_translation_table[] = /* {{{ */
121 {
122   /* Requests */
123   { "Requestv4",       "dns_request",  "IPv4"        },
124   { "Requestv6",       "dns_request",  "IPv6"        },
125   { "ReqEdns0",        "dns_request",  "EDNS0"       },
126   { "ReqBadEDNSVer",   "dns_request",  "BadEDNSVer"  },
127   { "ReqTSIG",         "dns_request",  "TSIG"        },
128   { "ReqSIG0",         "dns_request",  "SIG0"        },
129   { "ReqBadSIG",       "dns_request",  "BadSIG"      },
130   { "ReqTCP",          "dns_request",  "TCP"         },
131   /* Rejects */
132   { "AuthQryRej",      "dns_reject",   "authorative" },
133   { "RecQryRej",       "dns_reject",   "recursive"   },
134   { "XfrRej",          "dns_reject",   "transfer"    },
135   { "UpdateRej",       "dns_reject",   "update"      },
136   /* Responses */
137   { "Response",        "dns_response", "normal"      },
138   { "TruncatedResp",   "dns_response", "truncated"   },
139   { "RespEDNS0",       "dns_response", "EDNS0"       },
140   { "RespTSIG",        "dns_response", "TSIG"        },
141   { "RespSIG0",        "dns_response", "SIG0"        },
142   /* Queries */
143   { "QryAuthAns",      "dns_query",    "authorative" },
144   { "QryNoauthAns",    "dns_query",    "nonauth"     },
145   { "QryReferral",     "dns_query",    "referral"    },
146   { "QryRecursion",    "dns_query",    "recursion"   },
147   { "QryDuplicate",    "dns_query",    "dupliate"    },
148   { "QryDropped",      "dns_query",    "dropped"     },
149   { "QryFailure",      "dns_query",    "failure"     },
150   /* Response codes */
151   { "QrySuccess",      "dns_rcode",    "tx-NOERROR"  },
152   { "QryNxrrset",      "dns_rcode",    "tx-NXRRSET"  },
153   { "QrySERVFAIL",     "dns_rcode",    "tx-SERVFAIL" },
154   { "QryFORMERR",      "dns_rcode",    "tx-FORMERR"  },
155   { "QryNXDOMAIN",     "dns_rcode",    "tx-NXDOMAIN" }
156 #if 0
157   { "XfrReqDone",      "type", "type_instance"       },
158   { "UpdateReqFwd",    "type", "type_instance"       },
159   { "UpdateRespFwd",   "type", "type_instance"       },
160   { "UpdateFwdFail",   "type", "type_instance"       },
161   { "UpdateDone",      "type", "type_instance"       },
162   { "UpdateFail",      "type", "type_instance"       },
163   { "UpdateBadPrereq", "type", "type_instance"       },
164 #endif
165 };
166 static int nsstats_translation_table_length =
167   STATIC_ARRAY_SIZE (nsstats_translation_table);
168 /* }}} */
169
170 /* Translation table for the `zonestats' values. */
171 static const translation_info_t zonestats_translation_table[] = /* {{{ */
172 {
173   /* Notify's */
174   { "NotifyOutv4",     "dns_notify",   "tx-IPv4"     },
175   { "NotifyOutv6",     "dns_notify",   "tx-IPv6"     },
176   { "NotifyInv4",      "dns_notify",   "rx-IPv4"     },
177   { "NotifyInv6",      "dns_notify",   "rx-IPv6"     },
178   { "NotifyRej",       "dns_notify",   "rejected"    },
179   /* SOA/AXFS/IXFS requests */
180   { "SOAOutv4",        "dns_opcode",   "SOA-IPv4"    },
181   { "SOAOutv6",        "dns_opcode",   "SOA-IPv6"    },
182   { "AXFRReqv4",       "dns_opcode",   "AXFR-IPv4"   },
183   { "AXFRReqv6",       "dns_opcode",   "AXFR-IPv6"   },
184   { "IXFRReqv4",       "dns_opcode",   "IXFR-IPv4"   },
185   { "IXFRReqv6",       "dns_opcode",   "IXFR-IPv6"   },
186   /* Domain transfers */
187   { "XfrSuccess",      "dns_transfer", "success"     },
188   { "XfrFail",         "dns_transfer", "failure"     }
189 };
190 static int zonestats_translation_table_length =
191   STATIC_ARRAY_SIZE (zonestats_translation_table);
192 /* }}} */
193
194 /* Translation table for the `resstats' values. */
195 static const translation_info_t resstats_translation_table[] = /* {{{ */
196 {
197   /* Generic resolver information */
198   { "Queryv4",         "dns_query",    "IPv4"        },
199   { "Queryv6",         "dns_query",    "IPv6"        },
200   { "Responsev4",      "dns_response", "IPv4"        },
201   { "Responsev6",      "dns_response", "IPv6"        },
202   /* Received response codes */
203   { "NXDOMAIN",        "dns_rcode",    "rx-NXDOMAIN" },
204   { "SERVFAIL",        "dns_rcode",    "rx-SERVFAIL" },
205   { "FORMERR",         "dns_rcode",    "rx-FORMERR"  },
206   { "OtherError",      "dns_rcode",    "rx-OTHER"    },
207   { "EDNS0Fail",       "dns_rcode",    "rx-EDNS0Fail"},
208   /* Received responses */
209   { "Mismatch",        "dns_response", "mismatch"    },
210   { "Truncated",       "dns_response", "truncated"   },
211   { "Lame",            "dns_response", "lame"        },
212   { "Retry",           "dns_query",    "retry"       },
213 #if 0
214   { "GlueFetchv4",     "type", "type_instance" },
215   { "GlueFetchv6",     "type", "type_instance" },
216   { "GlueFetchv4Fail", "type", "type_instance" },
217   { "GlueFetchv6Fail", "type", "type_instance" },
218 #endif
219   /* DNSSEC information */
220   { "ValAttempt",      "dns_resolver", "DNSSEC-attempt" },
221   { "ValOk",           "dns_resolver", "DNSSEC-okay"    },
222   { "ValNegOk",        "dns_resolver", "DNSSEC-negokay" },
223   { "ValFail",         "dns_resolver", "DNSSEC-fail"    }
224 };
225 static int resstats_translation_table_length =
226   STATIC_ARRAY_SIZE (resstats_translation_table);
227 /* }}} */
228
229 /* Translation table for the `memory/summary' values. */
230 static const translation_info_t memsummary_translation_table[] = /* {{{ */
231 {
232   { "TotalUse",        "memory",       "TotalUse"    },
233   { "InUse",           "memory",       "InUse"       },
234   { "BlockSize",       "memory",       "BlockSize"   },
235   { "ContextSize",     "memory",       "ContextSize" },
236   { "Lost",            "memory",       "Lost"        }
237 };
238 static int memsummary_translation_table_length =
239   STATIC_ARRAY_SIZE (memsummary_translation_table);
240 /* }}} */
241
242 static void remove_special (char *buffer, size_t buffer_size) /* {{{ */
243 {
244   size_t i;
245
246   for (i = 0; i < buffer_size; i++)
247   {
248     if (buffer[i] == 0)
249       return;
250     if ((!isalnum ((int) buffer[i])) && (buffer[i] != '-'))
251       buffer[i] = '_';
252   }
253 } /* }}} void remove_special */
254
255 static void submit (time_t ts, const char *plugin_instance, /* {{{ */
256     const char *type, const char *type_instance, value_t value)
257 {
258   value_t values[1];
259   value_list_t vl = VALUE_LIST_INIT;
260
261   values[0] = value;
262
263   vl.values = values;
264   vl.values_len = 1;
265   vl.time = ts;
266   sstrncpy(vl.host, hostname_g, sizeof(vl.host));
267   sstrncpy(vl.plugin, "bind", sizeof(vl.plugin));
268   if (plugin_instance) {
269     sstrncpy(vl.plugin_instance, plugin_instance,
270         sizeof(vl.plugin_instance));
271     remove_special (vl.plugin_instance, sizeof (vl.plugin_instance));
272   }
273   sstrncpy(vl.type, type, sizeof(vl.type));
274   if (type_instance) {
275     sstrncpy(vl.type_instance, type_instance,
276         sizeof(vl.type_instance));
277     remove_special (vl.plugin_instance, sizeof (vl.plugin_instance));
278   }
279   plugin_dispatch_values(&vl);
280 } /* }}} void submit */
281
282 static size_t bind_curl_callback (void *buf, size_t size, /* {{{ */
283     size_t nmemb, void __attribute__((unused)) *stream)
284 {
285   size_t len = size * nmemb;
286
287   if (len <= 0)
288     return (len);
289
290   if ((bind_buffer_fill + len) >= bind_buffer_size)
291   {
292     char *temp;
293
294     temp = realloc(bind_buffer, bind_buffer_fill + len + 1);
295     if (temp == NULL)
296     {
297       ERROR ("bind plugin: realloc failed.");
298       return (0);
299     }
300     bind_buffer = temp;
301     bind_buffer_size = bind_buffer_fill + len + 1;
302   }
303
304   memcpy (bind_buffer + bind_buffer_fill, (char *) buf, len);
305   bind_buffer_fill += len;
306   bind_buffer[bind_buffer_fill] = 0;
307
308   return (len);
309 } /* }}} size_t bind_curl_callback */
310
311 /*
312  * Callback, that's called with a translation table.
313  * (Plugin instance is fixed, type and type instance come from lookup table.)
314  */
315 static int bind_xml_table_callback (const char *name, value_t value, /* {{{ */
316     time_t current_time, void *user_data)
317 {
318   translation_table_ptr_t *table = (translation_table_ptr_t *) user_data;
319   size_t i;
320
321   if (table == NULL)
322     return (-1);
323
324   for (i = 0; i < table->table_length; i++)
325   {
326     if (strcmp (table->table[i].xml_name, name) != 0)
327       continue;
328
329     submit (current_time,
330         table->plugin_instance,
331         table->table[i].type,
332         table->table[i].type_instance,
333         value);
334     break;
335   }
336
337   return (0);
338 } /* }}} int bind_xml_table_callback */
339
340 /*
341  * Callback, that's used for lists.
342  * (Plugin instance and type are fixed, xml name is used as type instance.)
343  */
344 static int bind_xml_list_callback (const char *name, /* {{{ */
345     value_t value, time_t current_time, void *user_data)
346 {
347   list_info_ptr_t *list_info = (list_info_ptr_t *) user_data;
348
349   if (list_info == NULL)
350     return (-1);
351
352   submit (current_time,
353       list_info->plugin_instance,
354       list_info->type,
355       /* type instance = */ name,
356       value);
357
358   return (0);
359 } /* }}} int bind_xml_list_callback */
360
361 static int bind_xml_read_counter (xmlDoc *doc, xmlNode *node, /* {{{ */
362     counter_t *ret_value)
363 {
364   char *str_ptr, *end_ptr;
365   long long int value;
366
367   str_ptr = (char *) xmlNodeListGetString (doc, node->xmlChildrenNode, 1);
368   if (str_ptr == NULL)
369   {
370     ERROR ("bind plugin: bind_xml_read_counter: xmlNodeListGetString failed.");
371     return (-1);
372   }
373
374   errno = 0;
375   value = strtoll (str_ptr, &end_ptr, 10);
376   xmlFree(str_ptr);
377   if (str_ptr == end_ptr || errno)
378   {
379     if (errno && (value < 0))
380       ERROR ("bind plugin: bind_xml_read_counter: strtoll failed with underflow.");
381     else if (errno && (value > 0))
382       ERROR ("bind plugin: bind_xml_read_counter: strtoll failed with overflow.");
383     else
384       ERROR ("bind plugin: bind_xml_read_counter: strtoll failed.");
385     return (-1);
386   }
387
388   *ret_value = value;
389   return (0);
390 } /* }}} int bind_xml_read_counter */
391
392 static int bind_xml_read_gauge (xmlDoc *doc, xmlNode *node, /* {{{ */
393     gauge_t *ret_value)
394 {
395   char *str_ptr, *end_ptr;
396   double value;
397
398   str_ptr = (char *) xmlNodeListGetString (doc, node->xmlChildrenNode, 1);
399   if (str_ptr == NULL)
400   {
401     ERROR ("bind plugin: bind_xml_read_gauge: xmlNodeListGetString failed.");
402     return (-1);
403   }
404
405   errno = 0;
406   value = strtod (str_ptr, &end_ptr);
407   xmlFree(str_ptr);
408   if (str_ptr == end_ptr || errno)
409   {
410     if (errno && (value < 0))
411       ERROR ("bind plugin: bind_xml_read_gauge: strtod failed with underflow.");
412     else if (errno && (value > 0))
413       ERROR ("bind plugin: bind_xml_read_gauge: strtod failed with overflow.");
414     else
415       ERROR ("bind plugin: bind_xml_read_gauge: strtod failed.");
416     return (-1);
417   }
418
419   *ret_value = (gauge_t) value;
420   return (0);
421 } /* }}} int bind_xml_read_gauge */
422
423 static int bind_xml_read_timestamp (const char *xpath_expression, /* {{{ */
424     xmlDoc *doc, xmlXPathContext *xpathCtx, time_t *ret_value)
425 {
426   xmlXPathObject *xpathObj = NULL;
427   xmlNode *node;
428   char *str_ptr;
429   char *tmp;
430   struct tm tm;
431
432   xpathObj = xmlXPathEvalExpression (BAD_CAST xpath_expression, xpathCtx);
433   if (xpathObj == NULL)
434   {
435     ERROR ("bind plugin: Unable to evaluate XPath expression `%s'.",
436         xpath_expression);
437     return (-1);
438   }
439
440   if ((xpathObj->nodesetval == NULL) || (xpathObj->nodesetval->nodeNr < 1))
441   {
442     xmlXPathFreeObject (xpathObj);
443     return (-1);
444   }
445
446   if (xpathObj->nodesetval->nodeNr != 1)
447   {
448     NOTICE ("bind plugin: Evaluating the XPath expression `%s' returned "
449         "%i nodes. Only handling the first one.",
450         xpath_expression, xpathObj->nodesetval->nodeNr);
451   }
452
453   node = xpathObj->nodesetval->nodeTab[0];
454
455   if (node->xmlChildrenNode == NULL)
456   {
457     ERROR ("bind plugin: bind_xml_read_timestamp: "
458         "node->xmlChildrenNode == NULL");
459     xmlXPathFreeObject (xpathObj);
460     return (-1);
461   }
462
463   str_ptr = (char *) xmlNodeListGetString (doc, node->xmlChildrenNode, 1);
464   if (str_ptr == NULL)
465   {
466     ERROR ("bind plugin: bind_xml_read_timestamp: xmlNodeListGetString failed.");
467     xmlXPathFreeObject (xpathObj);
468     return (-1);
469   }
470
471   memset (&tm, 0, sizeof(tm));
472   tmp = strptime (str_ptr, "%Y-%m-%dT%T", &tm);
473   xmlFree(str_ptr);
474   if (tmp == NULL)
475   {
476     ERROR ("bind plugin: bind_xml_read_timestamp: strptime failed.");
477     xmlXPathFreeObject (xpathObj);
478     return (-1);
479   }
480
481   *ret_value = timegm(&tm);
482
483   xmlXPathFreeObject (xpathObj);
484   return (0);
485 } /* }}} int bind_xml_read_timestamp */
486
487 /* 
488  * bind_parse_generic_name_value
489  *
490  * Reads statistics in the form:
491  * <foo>
492  *   <name>QUERY</name>
493  *   <counter>123</counter>
494  * </foo>
495  */
496 static int bind_parse_generic_name_value (const char *xpath_expression, /* {{{ */
497     list_callback_t list_callback,
498     void *user_data,
499     xmlDoc *doc, xmlXPathContext *xpathCtx,
500     time_t current_time, int ds_type)
501 {
502   xmlXPathObject *xpathObj = NULL;
503   int num_entries;
504   int i;
505
506   xpathObj = xmlXPathEvalExpression(BAD_CAST xpath_expression, xpathCtx);
507   if (xpathObj == NULL)
508   {
509     ERROR("bind plugin: Unable to evaluate XPath expression `%s'.",
510         xpath_expression);
511     return (-1);
512   }
513
514   num_entries = 0;
515   /* Iterate over all matching nodes. */
516   for (i = 0; xpathObj->nodesetval && (i < xpathObj->nodesetval->nodeNr); i++)
517   {
518     xmlNode *name_node = NULL;
519     xmlNode *counter = NULL;
520     xmlNode *parent;
521     xmlNode *child;
522
523     parent = xpathObj->nodesetval->nodeTab[i];
524     DEBUG ("bind plugin: bind_parse_generic_name_value: parent->name = %s;",
525         (char *) parent->name);
526
527     /* Iterate over all child nodes. */
528     for (child = parent->xmlChildrenNode;
529         child != NULL;
530         child = child->next)
531     {
532       if (child->type != XML_ELEMENT_NODE)
533         continue;
534
535       if (xmlStrcmp (BAD_CAST "name", child->name) == 0)
536         name_node = child;
537       else if (xmlStrcmp (BAD_CAST "counter", child->name) == 0)
538         counter = child;
539     }
540
541     if ((name_node != NULL) && (counter != NULL))
542     {
543       char *name = (char *) xmlNodeListGetString (doc,
544           name_node->xmlChildrenNode, 1);
545       value_t value;
546       int status;
547
548       if (ds_type == DS_TYPE_GAUGE)
549         status = bind_xml_read_gauge (doc, counter, &value.gauge);
550       else
551         status = bind_xml_read_counter (doc, counter, &value.counter);
552       if (status != 0)
553         continue;
554
555       status = (*list_callback) (name, value, current_time, user_data);
556       if (status == 0)
557         num_entries++;
558
559       xmlFree (name);
560     }
561   }
562
563   DEBUG ("bind plugin: Found %d %s for XPath expression `%s'",
564       num_entries, (num_entries == 1) ? "entry" : "entries",
565       xpath_expression);
566
567   xmlXPathFreeObject(xpathObj);
568
569   return (0);
570 } /* }}} int bind_parse_generic_name_value */
571
572 /* 
573  * bind_parse_generic_value_list
574  *
575  * Reads statistics in the form:
576  * <foo>
577  *   <name0>123</name0>
578  *   <name1>234</name1>
579  *   <name2>345</name2>
580  *   :
581  * </foo>
582  */
583 static int bind_parse_generic_value_list (const char *xpath_expression, /* {{{ */
584     list_callback_t list_callback,
585     void *user_data,
586     xmlDoc *doc, xmlXPathContext *xpathCtx,
587     time_t current_time, int ds_type)
588 {
589   xmlXPathObject *xpathObj = NULL;
590   int num_entries;
591   int i;
592
593   xpathObj = xmlXPathEvalExpression(BAD_CAST xpath_expression, xpathCtx);
594   if (xpathObj == NULL)
595   {
596     ERROR("bind plugin: Unable to evaluate XPath expression `%s'.",
597         xpath_expression);
598     return (-1);
599   }
600
601   num_entries = 0;
602   /* Iterate over all matching nodes. */
603   for (i = 0; xpathObj->nodesetval && (i < xpathObj->nodesetval->nodeNr); i++)
604   {
605     xmlNode *child;
606
607     /* Iterate over all child nodes. */
608     for (child = xpathObj->nodesetval->nodeTab[i]->xmlChildrenNode;
609         child != NULL;
610         child = child->next)
611     {
612       char *node_name;
613       value_t value;
614       int status;
615
616       if (child->type != XML_ELEMENT_NODE)
617         continue;
618
619       node_name = (char *) child->name;
620
621       if (ds_type == DS_TYPE_GAUGE)
622         status = bind_xml_read_gauge (doc, child, &value.gauge);
623       else
624         status = bind_xml_read_counter (doc, child, &value.counter);
625       if (status != 0)
626         continue;
627
628       status = (*list_callback) (node_name, value, current_time, user_data);
629       if (status == 0)
630         num_entries++;
631     }
632   }
633
634   DEBUG ("bind plugin: Found %d %s for XPath expression `%s'",
635       num_entries, (num_entries == 1) ? "entry" : "entries",
636       xpath_expression);
637
638   xmlXPathFreeObject(xpathObj);
639
640   return (0);
641 } /* }}} int bind_parse_generic_value_list */
642
643 static int bind_xml_stats_handle_zone (int version, xmlDoc *doc, /* {{{ */
644     xmlXPathContext *path_ctx, xmlNode *node, cb_view_t *view,
645     time_t current_time)
646 {
647   xmlXPathObject *path_obj;
648   char *zone_name = NULL;
649   int i;
650   size_t j;
651
652   path_obj = xmlXPathEvalExpression (BAD_CAST "name", path_ctx);
653   if (path_obj == NULL)
654   {
655     ERROR ("bind plugin: xmlXPathEvalExpression failed.");
656     return (-1);
657   }
658
659   for (i = 0; path_obj->nodesetval && (i < path_obj->nodesetval->nodeNr); i++)
660   {
661     zone_name = (char *) xmlNodeListGetString (doc,
662         path_obj->nodesetval->nodeTab[i]->xmlChildrenNode, 1);
663     if (zone_name != NULL)
664       break;
665   }
666
667   if (zone_name == NULL)
668   {
669     ERROR ("bind plugin: Could not determine zone name.");
670     xmlXPathFreeObject (path_obj);
671     return (-1);
672   }
673
674   for (j = 0; j < view->zones_num; j++)
675   {
676     if (strcasecmp (zone_name, view->zones[j]) == 0)
677       break;
678   }
679
680   xmlFree (zone_name);
681   zone_name = NULL;
682
683   if (j >= views_num)
684   {
685     xmlXPathFreeObject (path_obj);
686     return (0);
687   }
688
689   zone_name = view->zones[j];
690
691   DEBUG ("bind plugin: bind_xml_stats_handle_zone: Found zone `%s'.",
692       zone_name);
693
694   { /* Parse the <counters> tag {{{ */
695     char plugin_instance[DATA_MAX_NAME_LEN];
696     translation_table_ptr_t table_ptr =
697     { 
698       nsstats_translation_table,
699       nsstats_translation_table_length,
700       plugin_instance
701     };
702
703     ssnprintf (plugin_instance, sizeof (plugin_instance), "%s-zone-%s",
704         view->name, zone_name);
705
706     bind_parse_generic_value_list (/* xpath = */ "counters",
707         /* callback = */ bind_xml_table_callback,
708         /* user_data = */ &table_ptr,
709         doc, path_ctx, current_time, DS_TYPE_COUNTER);
710   } /* }}} */
711
712   xmlXPathFreeObject (path_obj);
713
714   return (0);
715 } /* }}} int bind_xml_stats_handle_zone */
716
717 static int bind_xml_stats_search_zones (int version, xmlDoc *doc, /* {{{ */
718     xmlXPathContext *path_ctx, xmlNode *node, cb_view_t *view,
719     time_t current_time)
720 {
721   xmlXPathObject *zone_nodes = NULL;
722   xmlXPathContext *zone_path_context;
723   int i;
724
725   zone_path_context = xmlXPathNewContext (doc);
726   if (zone_path_context == NULL)
727   {
728     ERROR ("bind plugin: xmlXPathNewContext failed.");
729     return (-1);
730   }
731
732   zone_nodes = xmlXPathEvalExpression (BAD_CAST "zones/zone", path_ctx);
733   if (zone_nodes == NULL)
734   {
735     ERROR ("bind plugin: Cannot find any <view> tags.");
736     xmlXPathFreeContext (zone_path_context);
737     return (-1);
738   }
739
740   for (i = 0; i < zone_nodes->nodesetval->nodeNr; i++)
741   {
742     xmlNode *node;
743
744     node = zone_nodes->nodesetval->nodeTab[i];
745     assert (node != NULL);
746
747     zone_path_context->node = node;
748
749     bind_xml_stats_handle_zone (version, doc, zone_path_context, node, view,
750         current_time);
751   }
752
753   xmlXPathFreeObject (zone_nodes);
754   xmlXPathFreeContext (zone_path_context);
755   return (0);
756 } /* }}} int bind_xml_stats_search_zones */
757
758 static int bind_xml_stats_handle_view (int version, xmlDoc *doc, /* {{{ */
759     xmlXPathContext *path_ctx, xmlNode *node, time_t current_time)
760 {
761   xmlXPathObject *path_obj;
762   char *view_name = NULL;
763   cb_view_t *view;
764   int i;
765   size_t j;
766
767   path_obj = xmlXPathEvalExpression (BAD_CAST "name", path_ctx);
768   if (path_obj == NULL)
769   {
770     ERROR ("bind plugin: xmlXPathEvalExpression failed.");
771     return (-1);
772   }
773
774   for (i = 0; path_obj->nodesetval && (i < path_obj->nodesetval->nodeNr); i++)
775   {
776     view_name = (char *) xmlNodeListGetString (doc,
777         path_obj->nodesetval->nodeTab[i]->xmlChildrenNode, 1);
778     if (view_name != NULL)
779       break;
780   }
781
782   if (view_name == NULL)
783   {
784     ERROR ("bind plugin: Could not determine view name.");
785     xmlXPathFreeObject (path_obj);
786     return (-1);
787   }
788
789   for (j = 0; j < views_num; j++)
790   {
791     if (strcasecmp (view_name, views[j].name) == 0)
792       break;
793   }
794
795   xmlFree (view_name);
796   xmlXPathFreeObject (path_obj);
797
798   view_name = NULL;
799   path_obj = NULL;
800
801   if (j >= views_num)
802     return (0);
803
804   view = views + j;
805
806   DEBUG ("bind plugin: bind_xml_stats_handle_view: Found view `%s'.",
807       view->name);
808
809   if (view->qtypes != 0) /* {{{ */
810   {
811     char plugin_instance[DATA_MAX_NAME_LEN];
812     list_info_ptr_t list_info =
813     {
814       plugin_instance,
815       /* type = */ "dns_qtype_gauge"
816     };
817
818     ssnprintf (plugin_instance, sizeof (plugin_instance), "%s-qtypes",
819         view->name);
820
821     bind_parse_generic_name_value (/* xpath = */ "rdtype",
822         /* callback = */ bind_xml_list_callback,
823         /* user_data = */ &list_info,
824         doc, path_ctx, current_time, DS_TYPE_COUNTER);
825   } /* }}} */
826
827   if (view->resolver_stats != 0) /* {{{ */
828   {
829     char plugin_instance[DATA_MAX_NAME_LEN];
830     translation_table_ptr_t table_ptr =
831     { 
832       resstats_translation_table,
833       resstats_translation_table_length,
834       plugin_instance
835     };
836
837     ssnprintf (plugin_instance, sizeof (plugin_instance),
838         "%s-resolver_stats", view->name);
839
840     bind_parse_generic_name_value ("resstat",
841         /* callback = */ bind_xml_table_callback,
842         /* user_data = */ &table_ptr,
843         doc, path_ctx, current_time, DS_TYPE_COUNTER);
844   } /* }}} */
845
846   if (view->cacherrsets != 0) /* {{{ */
847   {
848     char plugin_instance[DATA_MAX_NAME_LEN];
849     list_info_ptr_t list_info =
850     {
851       plugin_instance,
852       /* type = */ "dns_qtype_gauge"
853     };
854
855     ssnprintf (plugin_instance, sizeof (plugin_instance), "%s-cache_rr_sets",
856         view->name);
857
858     bind_parse_generic_name_value (/* xpath = */ "cache/rrset",
859         /* callback = */ bind_xml_list_callback,
860         /* user_data = */ &list_info,
861         doc, path_ctx, current_time, DS_TYPE_GAUGE);
862   } /* }}} */
863
864   if (view->zones_num > 0)
865     bind_xml_stats_search_zones (version, doc, path_ctx, node, view,
866         current_time);
867
868   return (0);
869 } /* }}} int bind_xml_stats_handle_view */
870
871 static int bind_xml_stats_search_views (int version, xmlDoc *doc, /* {{{ */
872     xmlXPathContext *xpathCtx, xmlNode *statsnode, time_t current_time)
873 {
874   xmlXPathObject *view_nodes = NULL;
875   xmlXPathContext *view_path_context;
876   int i;
877
878   view_path_context = xmlXPathNewContext (doc);
879   if (view_path_context == NULL)
880   {
881     ERROR ("bind plugin: xmlXPathNewContext failed.");
882     return (-1);
883   }
884
885   view_nodes = xmlXPathEvalExpression (BAD_CAST "views/view", xpathCtx);
886   if (view_nodes == NULL)
887   {
888     ERROR ("bind plugin: Cannot find any <view> tags.");
889     xmlXPathFreeContext (view_path_context);
890     return (-1);
891   }
892
893   for (i = 0; i < view_nodes->nodesetval->nodeNr; i++)
894   {
895     xmlNode *node;
896
897     node = view_nodes->nodesetval->nodeTab[i];
898     assert (node != NULL);
899
900     view_path_context->node = node;
901
902     bind_xml_stats_handle_view (version, doc, view_path_context, node,
903         current_time);
904   }
905
906   xmlXPathFreeObject (view_nodes);
907   xmlXPathFreeContext (view_path_context);
908   return (0);
909 } /* }}} int bind_xml_stats_search_views */
910
911 static int bind_xml_stats (int version, xmlDoc *doc, /* {{{ */
912     xmlXPathContext *xpathCtx, xmlNode *statsnode)
913 {
914   time_t current_time = 0;
915   int status;
916
917   xpathCtx->node = statsnode;
918
919   /* TODO: Check `server/boot-time' to recognize server restarts. */
920
921   status = bind_xml_read_timestamp ("server/current-time",
922       doc, xpathCtx, &current_time);
923   if (status != 0)
924   {
925     ERROR ("bind plugin: Reading `server/current-time' failed.");
926     return (-1);
927   }
928   DEBUG ("bind plugin: Current server time is %i.", (int) current_time);
929
930   /* XPath:     server/requests/opcode
931    * Variables: QUERY, IQUERY, NOTIFY, UPDATE, ...
932    * Layout:
933    *   <opcode>
934    *     <name>A</name>
935    *     <counter>1</counter>
936    *   </opcode>
937    *   :
938    */
939   if (global_opcodes != 0)
940   {
941     list_info_ptr_t list_info =
942     {
943       /* plugin instance = */ "global-opcodes",
944       /* type = */ "dns_opcode"
945     };
946
947     bind_parse_generic_name_value (/* xpath = */ "server/requests/opcode",
948         /* callback = */ bind_xml_list_callback,
949         /* user_data = */ &list_info,
950         doc, xpathCtx, current_time, DS_TYPE_COUNTER);
951   }
952
953   /* XPath:     server/queries-in/rdtype
954    * Variables: RESERVED0, A, NS, CNAME, SOA, MR, PTR, HINFO, MX, TXT, RP,
955    *            X25, PX, AAAA, LOC, SRV, NAPTR, A6, DS, RRSIG, NSEC, DNSKEY,
956    *            SPF, TKEY, IXFR, AXFR, ANY, ..., Others
957    * Layout:
958    *   <rdtype>
959    *     <name>A</name>
960    *     <counter>1</counter>
961    *   </rdtype>
962    *   :
963    */
964   if (global_qtypes != 0)
965   {
966     list_info_ptr_t list_info =
967     {
968       /* plugin instance = */ "global-qtypes",
969       /* type = */ "dns_qtype"
970     };
971
972     bind_parse_generic_name_value (/* xpath = */ "server/queries-in/rdtype",
973         /* callback = */ bind_xml_list_callback,
974         /* user_data = */ &list_info,
975         doc, xpathCtx, current_time, DS_TYPE_COUNTER);
976   }
977   
978   /* XPath:     server/nsstats, server/nsstat
979    * Variables: Requestv4, Requestv6, ReqEdns0, ReqBadEDNSVer, ReqTSIG,
980    *            ReqSIG0, ReqBadSIG, ReqTCP, AuthQryRej, RecQryRej, XfrRej,
981    *            UpdateRej, Response, TruncatedResp, RespEDNS0, RespTSIG,
982    *            RespSIG0, QrySuccess, QryAuthAns, QryNoauthAns, QryReferral,
983    *            QryNxrrset, QrySERVFAIL, QryFORMERR, QryNXDOMAIN, QryRecursion,
984    *            QryDuplicate, QryDropped, QryFailure, XfrReqDone, UpdateReqFwd,
985    *            UpdateRespFwd, UpdateFwdFail, UpdateDone, UpdateFail,
986    *            UpdateBadPrereq
987    * Layout v1:
988    *   <nsstats>
989    *     <Requestv4>1</Requestv4>
990    *     <Requestv6>0</Requestv6>
991    *     :
992    *   </nsstats>
993    * Layout v2:
994    *   <nsstat>
995    *     <name>Requestv4</name>
996    *     <counter>1</counter>
997    *   </nsstat>
998    *   <nsstat>
999    *     <name>Requestv6</name>
1000    *     <counter>0</counter>
1001    *   </nsstat>
1002    *   :
1003    */
1004   if (global_server_stats)
1005   {
1006     translation_table_ptr_t table_ptr =
1007     { 
1008       nsstats_translation_table,
1009       nsstats_translation_table_length,
1010       /* plugin_instance = */ "global-server_stats"
1011     };
1012
1013     if (version == 1)
1014     {
1015       bind_parse_generic_value_list ("server/nsstats",
1016           /* callback = */ bind_xml_table_callback,
1017           /* user_data = */ &table_ptr,
1018           doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1019     }
1020     else
1021     {
1022       bind_parse_generic_name_value ("server/nsstat",
1023           /* callback = */ bind_xml_table_callback,
1024           /* user_data = */ &table_ptr,
1025           doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1026     }
1027   }
1028
1029   /* XPath:     server/zonestats, server/zonestat
1030    * Variables: NotifyOutv4, NotifyOutv6, NotifyInv4, NotifyInv6, NotifyRej,
1031    *            SOAOutv4, SOAOutv6, AXFRReqv4, AXFRReqv6, IXFRReqv4, IXFRReqv6,
1032    *            XfrSuccess, XfrFail
1033    * Layout v1:
1034    *   <zonestats>
1035    *     <NotifyOutv4>0</NotifyOutv4>
1036    *     <NotifyOutv6>0</NotifyOutv6>
1037    *     :
1038    *   </zonestats>
1039    * Layout v2:
1040    *   <zonestat>
1041    *     <name>NotifyOutv4</name>
1042    *     <counter>0</counter>
1043    *   </zonestat>
1044    *   <zonestat>
1045    *     <name>NotifyOutv6</name>
1046    *     <counter>0</counter>
1047    *   </zonestat>
1048    *   :
1049    */
1050   if (global_zone_maint_stats)
1051   {
1052     translation_table_ptr_t table_ptr =
1053     { 
1054       zonestats_translation_table,
1055       zonestats_translation_table_length,
1056       /* plugin_instance = */ "global-zone_maint_stats"
1057     };
1058
1059     if (version == 1)
1060     {
1061       bind_parse_generic_value_list ("server/zonestats",
1062           /* callback = */ bind_xml_table_callback,
1063           /* user_data = */ &table_ptr,
1064           doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1065     }
1066     else
1067     {
1068       bind_parse_generic_name_value ("server/zonestat",
1069           /* callback = */ bind_xml_table_callback,
1070           /* user_data = */ &table_ptr,
1071           doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1072     }
1073   }
1074
1075   /* XPath:     server/resstats
1076    * Variables: Queryv4, Queryv6, Responsev4, Responsev6, NXDOMAIN, SERVFAIL,
1077    *            FORMERR, OtherError, EDNS0Fail, Mismatch, Truncated, Lame,
1078    *            Retry, GlueFetchv4, GlueFetchv6, GlueFetchv4Fail,
1079    *            GlueFetchv6Fail, ValAttempt, ValOk, ValNegOk, ValFail
1080    * Layout v1:
1081    *   <resstats>
1082    *     <Queryv4>0</Queryv4>
1083    *     <Queryv6>0</Queryv6>
1084    *     :
1085    *   </resstats>
1086    * Layout v2:
1087    *   <resstat>
1088    *     <name>Queryv4</name>
1089    *     <counter>0</counter>
1090    *   </resstat>
1091    *   <resstat>
1092    *     <name>Queryv6</name>
1093    *     <counter>0</counter>
1094    *   </resstat>
1095    *   :
1096    */
1097   if (global_resolver_stats != 0)
1098   {
1099     translation_table_ptr_t table_ptr =
1100     { 
1101       resstats_translation_table,
1102       resstats_translation_table_length,
1103       /* plugin_instance = */ "global-resolver_stats"
1104     };
1105
1106     if (version == 1)
1107     {
1108       bind_parse_generic_value_list ("server/resstats",
1109           /* callback = */ bind_xml_table_callback,
1110           /* user_data = */ &table_ptr,
1111           doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1112     }
1113     else
1114     {
1115       bind_parse_generic_name_value ("server/resstat",
1116           /* callback = */ bind_xml_table_callback,
1117           /* user_data = */ &table_ptr,
1118           doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1119     }
1120   }
1121
1122   /* XPath:  memory/summary
1123    * Variables: TotalUse, InUse, BlockSize, ContextSize, Lost
1124    * Layout: v2:
1125    *   <summary>
1126    *     <TotalUse>6587096</TotalUse>
1127    *     <InUse>1345424</InUse>
1128    *     <BlockSize>5505024</BlockSize>
1129    *     <ContextSize>3732456</ContextSize>
1130    *     <Lost>0</Lost>
1131    *   </summary>
1132    */
1133   if (global_memory_stats != 0)
1134   {
1135     translation_table_ptr_t table_ptr =
1136     {
1137       memsummary_translation_table,
1138       memsummary_translation_table_length,
1139       /* plugin_instance = */ "global-memory_stats"
1140     };
1141
1142     bind_parse_generic_value_list ("memory/summary",
1143           /* callback = */ bind_xml_table_callback,
1144           /* user_data = */ &table_ptr,
1145           doc, xpathCtx, current_time, DS_TYPE_GAUGE);
1146   }
1147
1148   if (views_num > 0)
1149     bind_xml_stats_search_views (version, doc, xpathCtx, statsnode,
1150         current_time);
1151
1152   return 0;
1153 } /* }}} int bind_xml_stats */
1154
1155 static int bind_xml (const char *data) /* {{{ */
1156 {
1157   xmlDoc *doc = NULL;
1158   xmlXPathContext *xpathCtx = NULL;
1159   xmlXPathObject *xpathObj = NULL;
1160   int ret = -1;
1161   int i;
1162
1163   doc = xmlParseMemory (data, strlen (data));
1164   if (doc == NULL)
1165   {
1166     ERROR ("bind plugin: xmlParseMemory failed.");
1167     return (-1);
1168   }
1169
1170   xpathCtx = xmlXPathNewContext (doc);
1171   if (xpathCtx == NULL)
1172   {
1173     ERROR ("bind plugin: xmlXPathNewContext failed.");
1174     xmlFreeDoc (doc);
1175     return (-1);
1176   }
1177
1178   xpathObj = xmlXPathEvalExpression (BAD_CAST "/isc/bind/statistics", xpathCtx);
1179   if (xpathObj == NULL)
1180   {
1181     ERROR ("bind plugin: Cannot find the <statistics> tag.");
1182     xmlXPathFreeContext (xpathCtx);
1183     xmlFreeDoc (doc);
1184     return (-1);
1185   }
1186   else if (xpathObj->nodesetval == NULL)
1187   {
1188     ERROR ("bind plugin: xmlXPathEvalExpression failed.");
1189     xmlXPathFreeObject (xpathObj);
1190     xmlXPathFreeContext (xpathCtx);
1191     xmlFreeDoc (doc);
1192     return (-1);
1193   }
1194
1195   for (i = 0; i < xpathObj->nodesetval->nodeNr; i++)
1196   {
1197     xmlNode *node;
1198     char *attr_version;
1199     int parsed_version = 0;
1200
1201     node = xpathObj->nodesetval->nodeTab[i];
1202     assert (node != NULL);
1203
1204     attr_version = (char *) xmlGetProp (node, BAD_CAST "version");
1205     if (attr_version == NULL)
1206     {
1207       NOTICE ("bind plugin: Found <statistics> tag doesn't have a "
1208           "`version' attribute.");
1209       continue;
1210     }
1211     DEBUG ("bind plugin: Found: <statistics version=\"%s\">", attr_version);
1212
1213     /* At the time this plugin was written, version "1.0" was used by
1214      * BIND 9.5.0, version "2.0" was used by BIND 9.5.1 and 9.6.0. We assume
1215      * that "1.*" and "2.*" don't introduce structural changes, so we just
1216      * check for the first two characters here. */
1217     if (strncmp ("1.", attr_version, strlen ("1.")) == 0)
1218       parsed_version = 1;
1219     else if (strncmp ("2.", attr_version, strlen ("2.")) == 0)
1220       parsed_version = 2;
1221     else
1222     {
1223       /* TODO: Use the complaint mechanism here. */
1224       NOTICE ("bind plugin: Found <statistics> tag with version `%s'. "
1225           "Unfortunately I have no clue how to parse that. "
1226           "Please open a bug report for this.", attr_version);
1227       xmlFree (attr_version);
1228       continue;
1229     }
1230
1231     ret = bind_xml_stats (parsed_version,
1232         doc, xpathCtx, node);
1233
1234     xmlFree (attr_version);
1235     /* One <statistics> node ought to be enough. */
1236     break;
1237   }
1238
1239   xmlXPathFreeObject (xpathObj);
1240   xmlXPathFreeContext (xpathCtx);
1241   xmlFreeDoc (doc);
1242
1243   return (ret);
1244 } /* }}} int bind_xml */
1245
1246 static int bind_config_set_bool (const char *name, int *var, /* {{{ */
1247     oconfig_item_t *ci)
1248 {
1249   if ((ci->values_num != 1) || ( ci->values[0].type != OCONFIG_TYPE_BOOLEAN))
1250   {
1251     WARNING ("bind plugin: The `%s' option needs "
1252         "exactly one boolean argument.", name);
1253     return (-1);
1254   }
1255
1256   if (ci->values[0].value.boolean)
1257     *var = 1;
1258   else
1259     *var = 0;
1260   return 0;
1261 } /* }}} int bind_config_set_bool */
1262
1263 static int bind_config_add_view_zone (cb_view_t *view, /* {{{ */
1264     oconfig_item_t *ci)
1265 {
1266   char **tmp;
1267
1268   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
1269   {
1270     WARNING ("bind plugin: The `Zone' option needs "
1271         "exactly one string argument.");
1272     return (-1);
1273   }
1274
1275   tmp = (char **) realloc (view->zones,
1276       sizeof (char *) * (view->zones_num + 1));
1277   if (tmp == NULL)
1278   {
1279     ERROR ("bind plugin: realloc failed.");
1280     return (-1);
1281   }
1282   view->zones = tmp;
1283
1284   view->zones[view->zones_num] = strdup (ci->values[0].value.string);
1285   if (view->zones[view->zones_num] == NULL)
1286   {
1287     ERROR ("bind plugin: strdup failed.");
1288     return (-1);
1289   }
1290   view->zones_num++;
1291
1292   return (0);
1293 } /* }}} int bind_config_add_view_zone */
1294
1295 static int bind_config_add_view (oconfig_item_t *ci) /* {{{ */
1296 {
1297   cb_view_t *tmp;
1298   int i;
1299
1300   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
1301   {
1302     WARNING ("bind plugin: `View' blocks need exactly one string argument.");
1303     return (-1);
1304   }
1305
1306   tmp = (cb_view_t *) realloc (views, sizeof (*views) * (views_num + 1));
1307   if (tmp == NULL)
1308   {
1309     ERROR ("bind plugin: realloc failed.");
1310     return (-1);
1311   }
1312   views = tmp;
1313   tmp = views + views_num;
1314
1315   memset (tmp, 0, sizeof (*tmp));
1316   tmp->qtypes = 1;
1317   tmp->resolver_stats = 1;
1318   tmp->cacherrsets = 1;
1319   tmp->zones = NULL;
1320   tmp->zones_num = 0;
1321
1322   tmp->name = strdup (ci->values[0].value.string);
1323   if (tmp->name == NULL)
1324   {
1325     ERROR ("bind plugin: strdup failed.");
1326     free (tmp);
1327     return (-1);
1328   }
1329
1330   for (i = 0; i < ci->children_num; i++)
1331   {
1332     oconfig_item_t *child = ci->children + i;
1333
1334     if (strcasecmp ("QTypes", child->key) == 0)
1335       bind_config_set_bool ("QTypes", &tmp->qtypes, child);
1336     else if (strcasecmp ("ResolverStats", child->key) == 0)
1337       bind_config_set_bool ("ResolverStats", &tmp->resolver_stats, child);
1338     else if (strcasecmp ("CacheRRSets", child->key) == 0)
1339       bind_config_set_bool ("CacheRRSets", &tmp->cacherrsets, child);
1340     else if (strcasecmp ("Zone", child->key) == 0)
1341       bind_config_add_view_zone (tmp, child);
1342     else
1343     {
1344       WARNING ("bind plugin: Unknown configuration option "
1345           "`%s' in view `%s' will be ignored.", child->key, tmp->name);
1346     }
1347   } /* for (i = 0; i < ci->children_num; i++) */
1348
1349   views_num++;
1350   return (0);
1351 } /* }}} int bind_config_add_view */
1352
1353 static int bind_config (oconfig_item_t *ci) /* {{{ */
1354 {
1355   int i;
1356
1357   for (i = 0; i < ci->children_num; i++)
1358   {
1359     oconfig_item_t *child = ci->children + i;
1360
1361     if (strcasecmp ("Url", child->key) == 0) {
1362       if ((child->values_num != 1) || (child->values[0].type != OCONFIG_TYPE_STRING))
1363       {
1364         WARNING ("bind plugin: The `Url' option needs "
1365                  "exactly one string argument.");
1366         return (-1);
1367       }
1368
1369       url = strdup (child->values[0].value.string);
1370     } else if (strcasecmp ("OpCodes", child->key) == 0)
1371       bind_config_set_bool ("OpCodes", &global_opcodes, child);
1372     else if (strcasecmp ("QTypes", child->key) == 0)
1373       bind_config_set_bool ("QTypes", &global_qtypes, child);
1374     else if (strcasecmp ("ServerStats", child->key) == 0)
1375       bind_config_set_bool ("ServerStats", &global_server_stats, child);
1376     else if (strcasecmp ("ZoneMaintStats", child->key) == 0)
1377       bind_config_set_bool ("ZoneMaintStats", &global_zone_maint_stats, child);
1378     else if (strcasecmp ("ResolverStats", child->key) == 0)
1379       bind_config_set_bool ("ResolverStats", &global_resolver_stats, child);
1380     else if (strcasecmp ("MemoryStats", child->key) == 0)
1381       bind_config_set_bool ("MemoryStats", &global_memory_stats, child);
1382     else if (strcasecmp ("View", child->key) == 0)
1383       bind_config_add_view (child);
1384     else
1385     {
1386       WARNING ("bind plugin: Unknown configuration option "
1387           "`%s' will be ignored.", child->key);
1388     }
1389   }
1390
1391   return (0);
1392 } /* }}} int bind_config */
1393
1394 static int bind_init (void) /* {{{ */
1395 {
1396   if (curl != NULL)
1397     return (0);
1398
1399   curl = curl_easy_init ();
1400   if (curl == NULL)
1401   {
1402     ERROR ("bind plugin: bind_init: curl_easy_init failed.");
1403     return (-1);
1404   }
1405
1406   curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, bind_curl_callback);
1407   curl_easy_setopt (curl, CURLOPT_USERAGENT, PACKAGE_NAME"/"PACKAGE_VERSION);
1408   curl_easy_setopt (curl, CURLOPT_ERRORBUFFER, bind_curl_error);
1409   curl_easy_setopt (curl, CURLOPT_URL, (url != NULL) ? url : BIND_DEFAULT_URL);
1410
1411   return (0);
1412 } /* }}} int bind_init */
1413
1414 static int bind_read (void) /* {{{ */
1415 {
1416   int status;
1417
1418   if (curl == NULL)
1419   {
1420     ERROR ("bind plugin: I don't have a CURL object.");
1421     return (-1);
1422   }
1423
1424   bind_buffer_fill = 0;
1425   if (curl_easy_perform (curl) != 0)
1426   {
1427     ERROR ("bind plugin: curl_easy_perform failed: %s",
1428         bind_curl_error);
1429     return (-1);
1430   }
1431
1432   status = bind_xml (bind_buffer);
1433   if (status != 0)
1434     return (-1);
1435   else
1436     return (0);
1437 } /* }}} int bind_read */
1438
1439 static int bind_shutdown (void) /* {{{ */
1440 {
1441   if (curl != NULL)
1442   {
1443     curl_easy_cleanup (curl);
1444     curl = NULL;
1445   }
1446
1447   return (0);
1448 } /* }}} int bind_shutdown */
1449
1450 void module_register (void)
1451 {
1452   plugin_register_complex_config ("bind", bind_config);
1453   plugin_register_init ("bind", bind_init);
1454   plugin_register_read ("bind", bind_read);
1455   plugin_register_shutdown ("bind", bind_shutdown);
1456 } /* void module_register */
1457
1458 /* vim: set sw=2 sts=2 ts=8 et fdm=marker : */