Merge branch 'collectd-5.4'
[collectd.git] / src / bind.c
1 /**
2  * collectd - src/bind.c
3  * Copyright (C) 2009       Bruno PrĂ©mont
4  * Copyright (C) 2009,2010  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 collectd.org>
22  **/
23
24 #include "config.h"
25
26 #if STRPTIME_NEEDS_STANDARDS
27 # ifndef _ISOC99_SOURCE
28 #  define _ISOC99_SOURCE 1
29 # endif
30 # ifndef _POSIX_C_SOURCE
31 #  define _POSIX_C_SOURCE 200112L
32 # endif
33 # ifndef _XOPEN_SOURCE
34 #  define _XOPEN_SOURCE 500
35 # endif
36 #endif /* STRPTIME_NEEDS_STANDARDS */
37
38 #include "collectd.h"
39 #include "common.h"
40 #include "plugin.h"
41 #include "configfile.h"
42
43 /* Some versions of libcurl don't include this themselves and then don't have
44  * fd_set available. */
45 #if HAVE_SYS_SELECT_H
46 # include <sys/select.h>
47 #endif
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 /* FIXME: Enabled by default for backwards compatibility. */
102 /* TODO: Remove time parsing code. */
103 static _Bool config_parse_time = 1;
104
105 static char *url                   = NULL;
106 static int global_opcodes          = 1;
107 static int global_qtypes           = 1;
108 static int global_server_stats     = 1;
109 static int global_zone_maint_stats = 1;
110 static int global_resolver_stats   = 0;
111 static int global_memory_stats     = 1;
112 static int timeout                 = -1;
113
114 static cb_view_t *views = NULL;
115 static size_t     views_num = 0;
116
117 static CURL *curl = NULL;
118
119 static char  *bind_buffer = NULL;
120 static size_t bind_buffer_size = 0;
121 static size_t bind_buffer_fill = 0;
122 static char   bind_curl_error[CURL_ERROR_SIZE];
123
124 /* Translation table for the `nsstats' values. */
125 static const translation_info_t nsstats_translation_table[] = /* {{{ */
126 {
127   /* Requests */
128   { "Requestv4",       "dns_request",  "IPv4"        },
129   { "Requestv6",       "dns_request",  "IPv6"        },
130   { "ReqEdns0",        "dns_request",  "EDNS0"       },
131   { "ReqBadEDNSVer",   "dns_request",  "BadEDNSVer"  },
132   { "ReqTSIG",         "dns_request",  "TSIG"        },
133   { "ReqSIG0",         "dns_request",  "SIG0"        },
134   { "ReqBadSIG",       "dns_request",  "BadSIG"      },
135   { "ReqTCP",          "dns_request",  "TCP"         },
136   /* Rejects */
137   { "AuthQryRej",      "dns_reject",   "authorative" },
138   { "RecQryRej",       "dns_reject",   "recursive"   },
139   { "XfrRej",          "dns_reject",   "transfer"    },
140   { "UpdateRej",       "dns_reject",   "update"      },
141   /* Responses */
142   { "Response",        "dns_response", "normal"      },
143   { "TruncatedResp",   "dns_response", "truncated"   },
144   { "RespEDNS0",       "dns_response", "EDNS0"       },
145   { "RespTSIG",        "dns_response", "TSIG"        },
146   { "RespSIG0",        "dns_response", "SIG0"        },
147   /* Queries */
148   { "QryAuthAns",      "dns_query",    "authorative" },
149   { "QryNoauthAns",    "dns_query",    "nonauth"     },
150   { "QryReferral",     "dns_query",    "referral"    },
151   { "QryRecursion",    "dns_query",    "recursion"   },
152   { "QryDuplicate",    "dns_query",    "dupliate"    },
153   { "QryDropped",      "dns_query",    "dropped"     },
154   { "QryFailure",      "dns_query",    "failure"     },
155   /* Response codes */
156   { "QrySuccess",      "dns_rcode",    "tx-NOERROR"  },
157   { "QryNxrrset",      "dns_rcode",    "tx-NXRRSET"  },
158   { "QrySERVFAIL",     "dns_rcode",    "tx-SERVFAIL" },
159   { "QryFORMERR",      "dns_rcode",    "tx-FORMERR"  },
160   { "QryNXDOMAIN",     "dns_rcode",    "tx-NXDOMAIN" }
161 #if 0
162   { "XfrReqDone",      "type", "type_instance"       },
163   { "UpdateReqFwd",    "type", "type_instance"       },
164   { "UpdateRespFwd",   "type", "type_instance"       },
165   { "UpdateFwdFail",   "type", "type_instance"       },
166   { "UpdateDone",      "type", "type_instance"       },
167   { "UpdateFail",      "type", "type_instance"       },
168   { "UpdateBadPrereq", "type", "type_instance"       },
169 #endif
170 };
171 static int nsstats_translation_table_length =
172   STATIC_ARRAY_SIZE (nsstats_translation_table);
173 /* }}} */
174
175 /* Translation table for the `zonestats' values. */
176 static const translation_info_t zonestats_translation_table[] = /* {{{ */
177 {
178   /* Notify's */
179   { "NotifyOutv4",     "dns_notify",   "tx-IPv4"     },
180   { "NotifyOutv6",     "dns_notify",   "tx-IPv6"     },
181   { "NotifyInv4",      "dns_notify",   "rx-IPv4"     },
182   { "NotifyInv6",      "dns_notify",   "rx-IPv6"     },
183   { "NotifyRej",       "dns_notify",   "rejected"    },
184   /* SOA/AXFS/IXFS requests */
185   { "SOAOutv4",        "dns_opcode",   "SOA-IPv4"    },
186   { "SOAOutv6",        "dns_opcode",   "SOA-IPv6"    },
187   { "AXFRReqv4",       "dns_opcode",   "AXFR-IPv4"   },
188   { "AXFRReqv6",       "dns_opcode",   "AXFR-IPv6"   },
189   { "IXFRReqv4",       "dns_opcode",   "IXFR-IPv4"   },
190   { "IXFRReqv6",       "dns_opcode",   "IXFR-IPv6"   },
191   /* Domain transfers */
192   { "XfrSuccess",      "dns_transfer", "success"     },
193   { "XfrFail",         "dns_transfer", "failure"     }
194 };
195 static int zonestats_translation_table_length =
196   STATIC_ARRAY_SIZE (zonestats_translation_table);
197 /* }}} */
198
199 /* Translation table for the `resstats' values. */
200 static const translation_info_t resstats_translation_table[] = /* {{{ */
201 {
202   /* Generic resolver information */
203   { "Queryv4",         "dns_query",    "IPv4"        },
204   { "Queryv6",         "dns_query",    "IPv6"        },
205   { "Responsev4",      "dns_response", "IPv4"        },
206   { "Responsev6",      "dns_response", "IPv6"        },
207   /* Received response codes */
208   { "NXDOMAIN",        "dns_rcode",    "rx-NXDOMAIN" },
209   { "SERVFAIL",        "dns_rcode",    "rx-SERVFAIL" },
210   { "FORMERR",         "dns_rcode",    "rx-FORMERR"  },
211   { "OtherError",      "dns_rcode",    "rx-OTHER"    },
212   { "EDNS0Fail",       "dns_rcode",    "rx-EDNS0Fail"},
213   /* Received responses */
214   { "Mismatch",        "dns_response", "mismatch"    },
215   { "Truncated",       "dns_response", "truncated"   },
216   { "Lame",            "dns_response", "lame"        },
217   { "Retry",           "dns_query",    "retry"       },
218 #if 0
219   { "GlueFetchv4",     "type", "type_instance" },
220   { "GlueFetchv6",     "type", "type_instance" },
221   { "GlueFetchv4Fail", "type", "type_instance" },
222   { "GlueFetchv6Fail", "type", "type_instance" },
223 #endif
224   /* DNSSEC information */
225   { "ValAttempt",      "dns_resolver", "DNSSEC-attempt" },
226   { "ValOk",           "dns_resolver", "DNSSEC-okay"    },
227   { "ValNegOk",        "dns_resolver", "DNSSEC-negokay" },
228   { "ValFail",         "dns_resolver", "DNSSEC-fail"    }
229 };
230 static int resstats_translation_table_length =
231   STATIC_ARRAY_SIZE (resstats_translation_table);
232 /* }}} */
233
234 /* Translation table for the `memory/summary' values. */
235 static const translation_info_t memsummary_translation_table[] = /* {{{ */
236 {
237   { "TotalUse",        "memory",       "TotalUse"    },
238   { "InUse",           "memory",       "InUse"       },
239   { "BlockSize",       "memory",       "BlockSize"   },
240   { "ContextSize",     "memory",       "ContextSize" },
241   { "Lost",            "memory",       "Lost"        }
242 };
243 static int memsummary_translation_table_length =
244   STATIC_ARRAY_SIZE (memsummary_translation_table);
245 /* }}} */
246
247 static void submit (time_t ts, const char *plugin_instance, /* {{{ */
248     const char *type, const char *type_instance, value_t value)
249 {
250   value_t values[1];
251   value_list_t vl = VALUE_LIST_INIT;
252
253   values[0] = value;
254
255   vl.values = values;
256   vl.values_len = 1;
257   if (config_parse_time)
258     vl.time = TIME_T_TO_CDTIME_T (ts);
259   sstrncpy(vl.host, hostname_g, sizeof(vl.host));
260   sstrncpy(vl.plugin, "bind", sizeof(vl.plugin));
261   if (plugin_instance) {
262     sstrncpy(vl.plugin_instance, plugin_instance,
263         sizeof(vl.plugin_instance));
264     replace_special (vl.plugin_instance, sizeof (vl.plugin_instance));
265   }
266   sstrncpy(vl.type, type, sizeof(vl.type));
267   if (type_instance) {
268     sstrncpy(vl.type_instance, type_instance,
269         sizeof(vl.type_instance));
270     replace_special (vl.type_instance, sizeof (vl.type_instance));
271   }
272   plugin_dispatch_values(&vl);
273 } /* }}} void submit */
274
275 static size_t bind_curl_callback (void *buf, size_t size, /* {{{ */
276     size_t nmemb, void __attribute__((unused)) *stream)
277 {
278   size_t len = size * nmemb;
279
280   if (len <= 0)
281     return (len);
282
283   if ((bind_buffer_fill + len) >= bind_buffer_size)
284   {
285     char *temp;
286
287     temp = realloc(bind_buffer, bind_buffer_fill + len + 1);
288     if (temp == NULL)
289     {
290       ERROR ("bind plugin: realloc failed.");
291       return (0);
292     }
293     bind_buffer = temp;
294     bind_buffer_size = bind_buffer_fill + len + 1;
295   }
296
297   memcpy (bind_buffer + bind_buffer_fill, (char *) buf, len);
298   bind_buffer_fill += len;
299   bind_buffer[bind_buffer_fill] = 0;
300
301   return (len);
302 } /* }}} size_t bind_curl_callback */
303
304 /*
305  * Callback, that's called with a translation table.
306  * (Plugin instance is fixed, type and type instance come from lookup table.)
307  */
308 static int bind_xml_table_callback (const char *name, value_t value, /* {{{ */
309     time_t current_time, void *user_data)
310 {
311   translation_table_ptr_t *table = (translation_table_ptr_t *) user_data;
312   size_t i;
313
314   if (table == NULL)
315     return (-1);
316
317   for (i = 0; i < table->table_length; i++)
318   {
319     if (strcmp (table->table[i].xml_name, name) != 0)
320       continue;
321
322     submit (current_time,
323         table->plugin_instance,
324         table->table[i].type,
325         table->table[i].type_instance,
326         value);
327     break;
328   }
329
330   return (0);
331 } /* }}} int bind_xml_table_callback */
332
333 /*
334  * Callback, that's used for lists.
335  * (Plugin instance and type are fixed, xml name is used as type instance.)
336  */
337 static int bind_xml_list_callback (const char *name, /* {{{ */
338     value_t value, time_t current_time, void *user_data)
339 {
340   list_info_ptr_t *list_info = (list_info_ptr_t *) user_data;
341
342   if (list_info == NULL)
343     return (-1);
344
345   submit (current_time,
346       list_info->plugin_instance,
347       list_info->type,
348       /* type instance = */ name,
349       value);
350
351   return (0);
352 } /* }}} int bind_xml_list_callback */
353
354 static int bind_xml_read_derive (xmlDoc *doc, xmlNode *node, /* {{{ */
355     derive_t *ret_value)
356 {
357   char *str_ptr;
358   value_t value;
359   int status;
360
361   str_ptr = (char *) xmlNodeListGetString (doc, node->xmlChildrenNode, 1);
362   if (str_ptr == NULL)
363   {
364     ERROR ("bind plugin: bind_xml_read_derive: xmlNodeListGetString failed.");
365     return (-1);
366   }
367
368   status = parse_value (str_ptr, &value, DS_TYPE_DERIVE);
369   if (status != 0)
370   {
371     ERROR ("bind plugin: Parsing string \"%s\" to derive value failed.",
372         str_ptr);
373     xmlFree(str_ptr);
374     return (-1);
375   }
376
377   xmlFree(str_ptr);
378   *ret_value = value.derive;
379   return (0);
380 } /* }}} int bind_xml_read_derive */
381
382 static int bind_xml_read_gauge (xmlDoc *doc, xmlNode *node, /* {{{ */
383     gauge_t *ret_value)
384 {
385   char *str_ptr, *end_ptr;
386   double value;
387
388   str_ptr = (char *) xmlNodeListGetString (doc, node->xmlChildrenNode, 1);
389   if (str_ptr == NULL)
390   {
391     ERROR ("bind plugin: bind_xml_read_gauge: xmlNodeListGetString failed.");
392     return (-1);
393   }
394
395   errno = 0;
396   value = strtod (str_ptr, &end_ptr);
397   xmlFree(str_ptr);
398   if (str_ptr == end_ptr || errno)
399   {
400     if (errno && (value < 0))
401       ERROR ("bind plugin: bind_xml_read_gauge: strtod failed with underflow.");
402     else if (errno && (value > 0))
403       ERROR ("bind plugin: bind_xml_read_gauge: strtod failed with overflow.");
404     else
405       ERROR ("bind plugin: bind_xml_read_gauge: strtod failed.");
406     return (-1);
407   }
408
409   *ret_value = (gauge_t) value;
410   return (0);
411 } /* }}} int bind_xml_read_gauge */
412
413 static int bind_xml_read_timestamp (const char *xpath_expression, /* {{{ */
414     xmlDoc *doc, xmlXPathContext *xpathCtx, time_t *ret_value)
415 {
416   xmlXPathObject *xpathObj = NULL;
417   xmlNode *node;
418   char *str_ptr;
419   char *tmp;
420   struct tm tm;
421
422   xpathObj = xmlXPathEvalExpression (BAD_CAST xpath_expression, xpathCtx);
423   if (xpathObj == NULL)
424   {
425     ERROR ("bind plugin: Unable to evaluate XPath expression `%s'.",
426         xpath_expression);
427     return (-1);
428   }
429
430   if ((xpathObj->nodesetval == NULL) || (xpathObj->nodesetval->nodeNr < 1))
431   {
432     xmlXPathFreeObject (xpathObj);
433     return (-1);
434   }
435
436   if (xpathObj->nodesetval->nodeNr != 1)
437   {
438     NOTICE ("bind plugin: Evaluating the XPath expression `%s' returned "
439         "%i nodes. Only handling the first one.",
440         xpath_expression, xpathObj->nodesetval->nodeNr);
441   }
442
443   node = xpathObj->nodesetval->nodeTab[0];
444
445   if (node->xmlChildrenNode == NULL)
446   {
447     ERROR ("bind plugin: bind_xml_read_timestamp: "
448         "node->xmlChildrenNode == NULL");
449     xmlXPathFreeObject (xpathObj);
450     return (-1);
451   }
452
453   str_ptr = (char *) xmlNodeListGetString (doc, node->xmlChildrenNode, 1);
454   if (str_ptr == NULL)
455   {
456     ERROR ("bind plugin: bind_xml_read_timestamp: xmlNodeListGetString failed.");
457     xmlXPathFreeObject (xpathObj);
458     return (-1);
459   }
460
461   memset (&tm, 0, sizeof(tm));
462   tmp = strptime (str_ptr, "%Y-%m-%dT%T", &tm);
463   xmlFree(str_ptr);
464   if (tmp == NULL)
465   {
466     ERROR ("bind plugin: bind_xml_read_timestamp: strptime failed.");
467     xmlXPathFreeObject (xpathObj);
468     return (-1);
469   }
470
471   *ret_value = mktime(&tm);
472
473   xmlXPathFreeObject (xpathObj);
474   return (0);
475 } /* }}} int bind_xml_read_timestamp */
476
477 /* 
478  * bind_parse_generic_name_value
479  *
480  * Reads statistics in the form:
481  * <foo>
482  *   <name>QUERY</name>
483  *   <counter>123</counter>
484  * </foo>
485  */
486 static int bind_parse_generic_name_value (const char *xpath_expression, /* {{{ */
487     list_callback_t list_callback,
488     void *user_data,
489     xmlDoc *doc, xmlXPathContext *xpathCtx,
490     time_t current_time, int ds_type)
491 {
492   xmlXPathObject *xpathObj = NULL;
493   int num_entries;
494   int i;
495
496   xpathObj = xmlXPathEvalExpression(BAD_CAST xpath_expression, xpathCtx);
497   if (xpathObj == NULL)
498   {
499     ERROR("bind plugin: Unable to evaluate XPath expression `%s'.",
500         xpath_expression);
501     return (-1);
502   }
503
504   num_entries = 0;
505   /* Iterate over all matching nodes. */
506   for (i = 0; xpathObj->nodesetval && (i < xpathObj->nodesetval->nodeNr); i++)
507   {
508     xmlNode *name_node = NULL;
509     xmlNode *counter = NULL;
510     xmlNode *parent;
511     xmlNode *child;
512
513     parent = xpathObj->nodesetval->nodeTab[i];
514     DEBUG ("bind plugin: bind_parse_generic_name_value: parent->name = %s;",
515         (char *) parent->name);
516
517     /* Iterate over all child nodes. */
518     for (child = parent->xmlChildrenNode;
519         child != NULL;
520         child = child->next)
521     {
522       if (child->type != XML_ELEMENT_NODE)
523         continue;
524
525       if (xmlStrcmp (BAD_CAST "name", child->name) == 0)
526         name_node = child;
527       else if (xmlStrcmp (BAD_CAST "counter", child->name) == 0)
528         counter = child;
529     }
530
531     if ((name_node != NULL) && (counter != NULL))
532     {
533       char *name = (char *) xmlNodeListGetString (doc,
534           name_node->xmlChildrenNode, 1);
535       value_t value;
536       int status;
537
538       if (ds_type == DS_TYPE_GAUGE)
539         status = bind_xml_read_gauge (doc, counter, &value.gauge);
540       else
541         status = bind_xml_read_derive (doc, counter, &value.derive);
542       if (status != 0)
543         continue;
544
545       status = (*list_callback) (name, value, current_time, user_data);
546       if (status == 0)
547         num_entries++;
548
549       xmlFree (name);
550     }
551   }
552
553   DEBUG ("bind plugin: Found %d %s for XPath expression `%s'",
554       num_entries, (num_entries == 1) ? "entry" : "entries",
555       xpath_expression);
556
557   xmlXPathFreeObject(xpathObj);
558
559   return (0);
560 } /* }}} int bind_parse_generic_name_value */
561
562 /* 
563  * bind_parse_generic_value_list
564  *
565  * Reads statistics in the form:
566  * <foo>
567  *   <name0>123</name0>
568  *   <name1>234</name1>
569  *   <name2>345</name2>
570  *   :
571  * </foo>
572  */
573 static int bind_parse_generic_value_list (const char *xpath_expression, /* {{{ */
574     list_callback_t list_callback,
575     void *user_data,
576     xmlDoc *doc, xmlXPathContext *xpathCtx,
577     time_t current_time, int ds_type)
578 {
579   xmlXPathObject *xpathObj = NULL;
580   int num_entries;
581   int i;
582
583   xpathObj = xmlXPathEvalExpression(BAD_CAST xpath_expression, xpathCtx);
584   if (xpathObj == NULL)
585   {
586     ERROR("bind plugin: Unable to evaluate XPath expression `%s'.",
587         xpath_expression);
588     return (-1);
589   }
590
591   num_entries = 0;
592   /* Iterate over all matching nodes. */
593   for (i = 0; xpathObj->nodesetval && (i < xpathObj->nodesetval->nodeNr); i++)
594   {
595     xmlNode *child;
596
597     /* Iterate over all child nodes. */
598     for (child = xpathObj->nodesetval->nodeTab[i]->xmlChildrenNode;
599         child != NULL;
600         child = child->next)
601     {
602       char *node_name;
603       value_t value;
604       int status;
605
606       if (child->type != XML_ELEMENT_NODE)
607         continue;
608
609       node_name = (char *) child->name;
610
611       if (ds_type == DS_TYPE_GAUGE)
612         status = bind_xml_read_gauge (doc, child, &value.gauge);
613       else
614         status = bind_xml_read_derive (doc, child, &value.derive);
615       if (status != 0)
616         continue;
617
618       status = (*list_callback) (node_name, value, current_time, user_data);
619       if (status == 0)
620         num_entries++;
621     }
622   }
623
624   DEBUG ("bind plugin: Found %d %s for XPath expression `%s'",
625       num_entries, (num_entries == 1) ? "entry" : "entries",
626       xpath_expression);
627
628   xmlXPathFreeObject(xpathObj);
629
630   return (0);
631 } /* }}} int bind_parse_generic_value_list */
632
633 /*
634  * bind_parse_generic_name_attr_value_list
635  *
636  * Reads statistics in the form:
637  * <foo>
638  *   <counter name="name0">123</counter>
639  *   <counter name="name1">234</counter>
640  *   <counter name="name2">345</counter>
641  *   :
642  * </foo>
643  */
644 static int bind_parse_generic_name_attr_value_list (const char *xpath_expression, /* {{{ */
645     list_callback_t list_callback,
646     void *user_data,
647     xmlDoc *doc, xmlXPathContext *xpathCtx,
648     time_t current_time, int ds_type)
649 {
650   xmlXPathObject *xpathObj = NULL;
651   int num_entries;
652   int i;
653
654   xpathObj = xmlXPathEvalExpression(BAD_CAST xpath_expression, xpathCtx);
655   if (xpathObj == NULL)
656   {
657     ERROR("bind plugin: Unable to evaluate XPath expression `%s'.",
658         xpath_expression);
659     return (-1);
660   }
661
662   num_entries = 0;
663   /* Iterate over all matching nodes. */
664   for (i = 0; xpathObj->nodesetval && (i < xpathObj->nodesetval->nodeNr); i++)
665   {
666     xmlNode *child;
667
668     /* Iterate over all child nodes. */
669     for (child = xpathObj->nodesetval->nodeTab[i]->xmlChildrenNode;
670         child != NULL;
671         child = child->next)
672     {
673       if (child->type != XML_ELEMENT_NODE)
674         continue;
675
676       if (strncmp ("counter", (char *) child->name, strlen ("counter")) != 0)
677         continue;
678
679       char *attr_name;
680       value_t value;
681       int status;
682
683       attr_name = (char *) xmlGetProp (child, BAD_CAST "name");
684       if (attr_name == NULL)
685       {
686         DEBUG ("bind plugin: found <counter> without name.");
687         continue;
688       }
689       if (ds_type == DS_TYPE_GAUGE)
690         status = bind_xml_read_gauge (doc, child, &value.gauge);
691       else
692         status = bind_xml_read_derive (doc, child, &value.derive);
693       if (status != 0)
694         continue;
695
696       status = (*list_callback) (attr_name, value, current_time, user_data);
697       if (status == 0)
698         num_entries++;
699     }
700   }
701
702   DEBUG ("bind plugin: Found %d %s for XPath expression `%s'",
703       num_entries, (num_entries == 1) ? "entry" : "entries",
704       xpath_expression);
705
706   xmlXPathFreeObject(xpathObj);
707
708   return (0);
709 } /* }}} int bind_parse_generic_name_attr_value_list */
710
711 static int bind_xml_stats_handle_zone (int version, xmlDoc *doc, /* {{{ */
712     xmlXPathContext *path_ctx, xmlNode *node, cb_view_t *view,
713     time_t current_time)
714 {
715   xmlXPathObject *path_obj;
716   char *zone_name = NULL;
717   int i;
718   size_t j;
719
720   if (version >= 3)
721   {
722     char *n = (char *) xmlGetProp (node, BAD_CAST "name");
723     char *c = (char *) xmlGetProp (node, BAD_CAST "rdataclass");
724     if (n && c)
725     {
726       zone_name = (char *) xmlMalloc(strlen(n) + strlen(c) + 2);
727       snprintf(zone_name, strlen(n) + strlen(c) + 2, "%s/%s", n, c);
728     }
729     xmlFree(n);
730     xmlFree(c);
731   }
732   else
733   {
734     path_obj = xmlXPathEvalExpression (BAD_CAST "name", path_ctx);
735     if (path_obj == NULL)
736     {
737       ERROR ("bind plugin: xmlXPathEvalExpression failed.");
738       return (-1);
739     }
740
741     for (i = 0; path_obj->nodesetval && (i < path_obj->nodesetval->nodeNr); i++)
742     {
743       zone_name = (char *) xmlNodeListGetString (doc,
744           path_obj->nodesetval->nodeTab[i]->xmlChildrenNode, 1);
745       if (zone_name != NULL)
746         break;
747     }
748     xmlXPathFreeObject (path_obj);
749   }
750
751   if (zone_name == NULL)
752   {
753     ERROR ("bind plugin: Could not determine zone name.");
754     return (-1);
755   }
756
757   for (j = 0; j < view->zones_num; j++)
758   {
759     if (strcasecmp (zone_name, view->zones[j]) == 0)
760       break;
761   }
762
763   xmlFree (zone_name);
764   zone_name = NULL;
765
766   if (j >= views->zones_num)
767     return (0);
768
769   zone_name = view->zones[j];
770
771   DEBUG ("bind plugin: bind_xml_stats_handle_zone: Found zone `%s'.",
772       zone_name);
773
774   { /* Parse the <counters> tag {{{ */
775     char plugin_instance[DATA_MAX_NAME_LEN];
776     translation_table_ptr_t table_ptr =
777     { 
778       nsstats_translation_table,
779       nsstats_translation_table_length,
780       plugin_instance
781     };
782
783     ssnprintf (plugin_instance, sizeof (plugin_instance), "%s-zone-%s",
784         view->name, zone_name);
785
786     if (version == 3)
787     {
788       list_info_ptr_t list_info =
789       {
790         plugin_instance,
791         /* type = */ "dns_qtype"
792       };
793       bind_parse_generic_name_attr_value_list (/* xpath = */ "counters[@type='rcode']",
794         /* callback = */ bind_xml_table_callback,
795         /* user_data = */ &table_ptr,
796         doc, path_ctx, current_time, DS_TYPE_COUNTER);
797       bind_parse_generic_name_attr_value_list (/* xpath = */ "counters[@type='qtype']",
798         /* callback = */ bind_xml_list_callback,
799         /* user_data = */ &list_info,
800         doc, path_ctx, current_time, DS_TYPE_COUNTER);
801     }
802     else
803     {
804       bind_parse_generic_value_list (/* xpath = */ "counters",
805           /* callback = */ bind_xml_table_callback,
806           /* user_data = */ &table_ptr,
807           doc, path_ctx, current_time, DS_TYPE_COUNTER);
808     }
809   } /* }}} */
810
811   return (0);
812 } /* }}} int bind_xml_stats_handle_zone */
813
814 static int bind_xml_stats_search_zones (int version, xmlDoc *doc, /* {{{ */
815     xmlXPathContext *path_ctx, xmlNode *node, cb_view_t *view,
816     time_t current_time)
817 {
818   xmlXPathObject *zone_nodes = NULL;
819   xmlXPathContext *zone_path_context;
820   int i;
821
822   zone_path_context = xmlXPathNewContext (doc);
823   if (zone_path_context == NULL)
824   {
825     ERROR ("bind plugin: xmlXPathNewContext failed.");
826     return (-1);
827   }
828
829   zone_nodes = xmlXPathEvalExpression (BAD_CAST "zones/zone", path_ctx);
830   if (zone_nodes == NULL)
831   {
832     ERROR ("bind plugin: Cannot find any <view> tags.");
833     xmlXPathFreeContext (zone_path_context);
834     return (-1);
835   }
836
837   for (i = 0; i < zone_nodes->nodesetval->nodeNr; i++)
838   {
839     xmlNode *node;
840
841     node = zone_nodes->nodesetval->nodeTab[i];
842     assert (node != NULL);
843
844     zone_path_context->node = node;
845
846     bind_xml_stats_handle_zone (version, doc, zone_path_context, node, view,
847         current_time);
848   }
849
850   xmlXPathFreeObject (zone_nodes);
851   xmlXPathFreeContext (zone_path_context);
852   return (0);
853 } /* }}} int bind_xml_stats_search_zones */
854
855 static int bind_xml_stats_handle_view (int version, xmlDoc *doc, /* {{{ */
856     xmlXPathContext *path_ctx, xmlNode *node, time_t current_time)
857 {
858   char *view_name = NULL;
859   cb_view_t *view;
860   int i;
861   size_t j;
862
863   if (version == 3)
864   {
865     view_name = (char*) xmlGetProp(node, BAD_CAST "name");
866
867     if (view_name == NULL)
868     {
869       ERROR ("bind plugin: Could not determine view name.");
870       return (-1);
871     }
872
873     for (j = 0; j < views_num; j++)
874     {
875       if (strcasecmp (view_name, views[j].name) == 0)
876         break;
877     }
878
879     xmlFree (view_name);
880     view_name = NULL;
881   }
882   else
883   {
884     xmlXPathObject *path_obj;
885     path_obj = xmlXPathEvalExpression (BAD_CAST "name", path_ctx);
886     if (path_obj == NULL)
887     {
888       ERROR ("bind plugin: xmlXPathEvalExpression failed.");
889       return (-1);
890     }
891
892     for (i = 0; path_obj->nodesetval && (i < path_obj->nodesetval->nodeNr); i++)
893     {
894       view_name = (char *) xmlNodeListGetString (doc,
895           path_obj->nodesetval->nodeTab[i]->xmlChildrenNode, 1);
896       if (view_name != NULL)
897         break;
898     }
899
900     if (view_name == NULL)
901     {
902       ERROR ("bind plugin: Could not determine view name.");
903       xmlXPathFreeObject (path_obj);
904       return (-1);
905     }
906
907     for (j = 0; j < views_num; j++)
908     {
909       if (strcasecmp (view_name, views[j].name) == 0)
910         break;
911     }
912
913     xmlFree (view_name);
914     xmlXPathFreeObject (path_obj);
915
916     view_name = NULL;
917     path_obj = NULL;
918   }
919
920
921   if (j >= views_num)
922     return (0);
923
924   view = views + j;
925
926   DEBUG ("bind plugin: bind_xml_stats_handle_view: Found view `%s'.",
927       view->name);
928
929   if (view->qtypes != 0) /* {{{ */
930   {
931     char plugin_instance[DATA_MAX_NAME_LEN];
932     list_info_ptr_t list_info =
933     {
934       plugin_instance,
935       /* type = */ "dns_qtype"
936     };
937
938     ssnprintf (plugin_instance, sizeof (plugin_instance), "%s-qtypes",
939         view->name);
940     if (version == 3)
941     {
942       bind_parse_generic_name_attr_value_list (/* xpath = */ "counters[@type='resqtype']",
943         /* callback = */ bind_xml_list_callback,
944         /* user_data = */ &list_info,
945         doc, path_ctx, current_time, DS_TYPE_COUNTER);
946     }
947     else
948     {
949       bind_parse_generic_name_value (/* xpath = */ "rdtype",
950         /* callback = */ bind_xml_list_callback,
951         /* user_data = */ &list_info,
952         doc, path_ctx, current_time, DS_TYPE_COUNTER);
953     }
954   } /* }}} */
955
956   if (view->resolver_stats != 0) /* {{{ */
957   {
958     char plugin_instance[DATA_MAX_NAME_LEN];
959     translation_table_ptr_t table_ptr =
960     { 
961       resstats_translation_table,
962       resstats_translation_table_length,
963       plugin_instance
964     };
965
966     ssnprintf (plugin_instance, sizeof (plugin_instance),
967         "%s-resolver_stats", view->name);
968     if (version == 3)
969     {
970       bind_parse_generic_name_attr_value_list ("counters[@type='resstats']",
971           /* callback = */ bind_xml_table_callback,
972           /* user_data = */ &table_ptr,
973           doc, path_ctx, current_time, DS_TYPE_COUNTER);
974     }
975     else
976     {
977       bind_parse_generic_name_value ("resstat",
978           /* callback = */ bind_xml_table_callback,
979           /* user_data = */ &table_ptr,
980           doc, path_ctx, current_time, DS_TYPE_COUNTER);
981     }
982   } /* }}} */
983
984   /* Record types in the cache */
985   if (view->cacherrsets != 0) /* {{{ */
986   {
987     char plugin_instance[DATA_MAX_NAME_LEN];
988     list_info_ptr_t list_info =
989     {
990       plugin_instance,
991       /* type = */ "dns_qtype_cached"
992     };
993
994     ssnprintf (plugin_instance, sizeof (plugin_instance), "%s-cache_rr_sets",
995         view->name);
996
997     bind_parse_generic_name_value (/* xpath = */ "cache/rrset",
998         /* callback = */ bind_xml_list_callback,
999         /* user_data = */ &list_info,
1000         doc, path_ctx, current_time, DS_TYPE_GAUGE);
1001   } /* }}} */
1002
1003   if (view->zones_num > 0)
1004     bind_xml_stats_search_zones (version, doc, path_ctx, node, view,
1005         current_time);
1006
1007   return (0);
1008 } /* }}} int bind_xml_stats_handle_view */
1009
1010 static int bind_xml_stats_search_views (int version, xmlDoc *doc, /* {{{ */
1011     xmlXPathContext *xpathCtx, xmlNode *statsnode, time_t current_time)
1012 {
1013   xmlXPathObject *view_nodes = NULL;
1014   xmlXPathContext *view_path_context;
1015   int i;
1016
1017   view_path_context = xmlXPathNewContext (doc);
1018   if (view_path_context == NULL)
1019   {
1020     ERROR ("bind plugin: xmlXPathNewContext failed.");
1021     return (-1);
1022   }
1023
1024   view_nodes = xmlXPathEvalExpression (BAD_CAST "views/view", xpathCtx);
1025   if (view_nodes == NULL)
1026   {
1027     ERROR ("bind plugin: Cannot find any <view> tags.");
1028     xmlXPathFreeContext (view_path_context);
1029     return (-1);
1030   }
1031
1032   for (i = 0; i < view_nodes->nodesetval->nodeNr; i++)
1033   {
1034     xmlNode *node;
1035
1036     node = view_nodes->nodesetval->nodeTab[i];
1037     assert (node != NULL);
1038
1039     view_path_context->node = node;
1040
1041     bind_xml_stats_handle_view (version, doc, view_path_context, node,
1042         current_time);
1043   }
1044
1045   xmlXPathFreeObject (view_nodes);
1046   xmlXPathFreeContext (view_path_context);
1047   return (0);
1048 } /* }}} int bind_xml_stats_search_views */
1049
1050 static void bind_xml_stats_v3 (xmlDoc *doc, /* {{{ */
1051     xmlXPathContext *xpathCtx, xmlNode *statsnode, time_t current_time)
1052 {
1053   /* XPath:     server/counters[@type='opcode']
1054    * Variables: QUERY, IQUERY, NOTIFY, UPDATE, ...
1055    * Layout v3:
1056    *   <counters type="opcode">
1057    *     <counter name="A">1</counter>
1058    *     :
1059    *   </counters>
1060    */
1061   if (global_opcodes != 0)
1062   {
1063     list_info_ptr_t list_info =
1064     {
1065       /* plugin instance = */ "global-opcodes",
1066       /* type = */ "dns_opcode"
1067     };
1068     bind_parse_generic_name_attr_value_list (/* xpath = */ "server/counters[@type='opcode']",
1069       /* callback = */ bind_xml_list_callback,
1070       /* user_data = */ &list_info,
1071       doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1072   }
1073
1074   /* XPath:     server/counters[@type='qtype']
1075    * Variables: RESERVED0, A, NS, CNAME, SOA, MR, PTR, HINFO, MX, TXT, RP,
1076    *            X25, PX, AAAA, LOC, SRV, NAPTR, A6, DS, RRSIG, NSEC, DNSKEY,
1077    *            SPF, TKEY, IXFR, AXFR, ANY, ..., Others
1078    * Layout v3:
1079    *   <counters type="opcode">
1080    *     <counter name="A">1</counter>
1081    *     :
1082    *   </counters>
1083    */
1084   if (global_qtypes != 0)
1085   {
1086     list_info_ptr_t list_info =
1087     {
1088       /* plugin instance = */ "global-qtypes",
1089       /* type = */ "dns_qtype"
1090     };
1091
1092     bind_parse_generic_name_attr_value_list (/* xpath = */ "server/counters[@type='qtype']",
1093         /* callback = */ bind_xml_list_callback,
1094         /* user_data = */ &list_info,
1095         doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1096   }
1097
1098   /* XPath:     server/counters[@type='nsstat']
1099    * Variables: Requestv4, Requestv6, ReqEdns0, ReqBadEDNSVer, ReqTSIG,
1100    *            ReqSIG0, ReqBadSIG, ReqTCP, AuthQryRej, RecQryRej, XfrRej,
1101    *            UpdateRej, Response, TruncatedResp, RespEDNS0, RespTSIG,
1102    *            RespSIG0, QrySuccess, QryAuthAns, QryNoauthAns, QryReferral,
1103    *            QryNxrrset, QrySERVFAIL, QryFORMERR, QryNXDOMAIN, QryRecursion,
1104    *            QryDuplicate, QryDropped, QryFailure, XfrReqDone, UpdateReqFwd,
1105    *            UpdateRespFwd, UpdateFwdFail, UpdateDone, UpdateFail,
1106    *            UpdateBadPrereq
1107    * Layout v3:
1108    *   <counters type="nsstat"
1109    *     <counter name="Requestv4">1</counter>
1110    *     <counter name="Requestv6">0</counter>
1111    *     :
1112    *   </counter>
1113    */
1114   if (global_server_stats)
1115   {
1116     translation_table_ptr_t table_ptr =
1117     {
1118       nsstats_translation_table,
1119       nsstats_translation_table_length,
1120       /* plugin_instance = */ "global-server_stats"
1121     };
1122
1123     bind_parse_generic_name_attr_value_list ("server/counters[@type='nsstat']",
1124         /* callback = */ bind_xml_table_callback,
1125         /* user_data = */ &table_ptr,
1126         doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1127   }
1128
1129   /* XPath:     server/zonestats, server/zonestat, server/counters[@type='zonestat']
1130    * Variables: NotifyOutv4, NotifyOutv6, NotifyInv4, NotifyInv6, NotifyRej,
1131    *            SOAOutv4, SOAOutv6, AXFRReqv4, AXFRReqv6, IXFRReqv4, IXFRReqv6,
1132    *            XfrSuccess, XfrFail
1133    * Layout v3:
1134    *   <counters type="zonestat"
1135    *     <counter name="NotifyOutv4">0</counter>
1136    *     <counter name="NotifyOutv6">0</counter>
1137    *     :
1138    *   </counter>
1139    */
1140   if (global_zone_maint_stats)
1141   {
1142     translation_table_ptr_t table_ptr =
1143     {
1144       zonestats_translation_table,
1145       zonestats_translation_table_length,
1146       /* plugin_instance = */ "global-zone_maint_stats"
1147     };
1148
1149     bind_parse_generic_name_attr_value_list ("server/counters[@type='zonestat']",
1150         /* callback = */ bind_xml_table_callback,
1151         /* user_data = */ &table_ptr,
1152         doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1153   }
1154
1155   /* XPath:     server/resstats, server/counters[@type='resstat']
1156    * Variables: Queryv4, Queryv6, Responsev4, Responsev6, NXDOMAIN, SERVFAIL,
1157    *            FORMERR, OtherError, EDNS0Fail, Mismatch, Truncated, Lame,
1158    *            Retry, GlueFetchv4, GlueFetchv6, GlueFetchv4Fail,
1159    *            GlueFetchv6Fail, ValAttempt, ValOk, ValNegOk, ValFail
1160    * Layout v3:
1161    *   <counters type="resstat"
1162    *     <counter name="Queryv4">0</counter>
1163    *     <counter name="Queryv6">0</counter>
1164    *     :
1165    *   </counter>
1166    */
1167   if (global_resolver_stats != 0)
1168   {
1169     translation_table_ptr_t table_ptr =
1170     {
1171       resstats_translation_table,
1172       resstats_translation_table_length,
1173       /* plugin_instance = */ "global-resolver_stats"
1174     };
1175
1176     bind_parse_generic_name_attr_value_list ("server/counters[@type='resstat']",
1177         /* callback = */ bind_xml_table_callback,
1178         /* user_data = */ &table_ptr,
1179         doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1180   }
1181 } /* }}} bind_xml_stats_v3 */
1182
1183 static void bind_xml_stats_v1_v2 (int version, xmlDoc *doc, /* {{{ */
1184     xmlXPathContext *xpathCtx, xmlNode *statsnode, time_t current_time)
1185 {
1186   /* XPath:     server/requests/opcode, server/counters[@type='opcode']
1187    * Variables: QUERY, IQUERY, NOTIFY, UPDATE, ...
1188    * Layout V1 and V2:
1189    *   <opcode>
1190    *     <name>A</name>
1191    *     <counter>1</counter>
1192    *   </opcode>
1193    *   :
1194    */
1195   if (global_opcodes != 0)
1196   {
1197     list_info_ptr_t list_info =
1198     {
1199       /* plugin instance = */ "global-opcodes",
1200       /* type = */ "dns_opcode"
1201     };
1202
1203     bind_parse_generic_name_value (/* xpath = */ "server/requests/opcode",
1204         /* callback = */ bind_xml_list_callback,
1205         /* user_data = */ &list_info,
1206         doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1207   }
1208
1209   /* XPath:     server/queries-in/rdtype, server/counters[@type='qtype']
1210    * Variables: RESERVED0, A, NS, CNAME, SOA, MR, PTR, HINFO, MX, TXT, RP,
1211    *            X25, PX, AAAA, LOC, SRV, NAPTR, A6, DS, RRSIG, NSEC, DNSKEY,
1212    *            SPF, TKEY, IXFR, AXFR, ANY, ..., Others
1213    * Layout v1 or v2:
1214    *   <rdtype>
1215    *     <name>A</name>
1216    *     <counter>1</counter>
1217    *   </rdtype>
1218    *   :
1219    */
1220   if (global_qtypes != 0)
1221   {
1222     list_info_ptr_t list_info =
1223     {
1224       /* plugin instance = */ "global-qtypes",
1225       /* type = */ "dns_qtype"
1226     };
1227
1228     bind_parse_generic_name_value (/* xpath = */ "server/queries-in/rdtype",
1229         /* callback = */ bind_xml_list_callback,
1230         /* user_data = */ &list_info,
1231         doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1232   }
1233
1234   /* XPath:     server/nsstats, server/nsstat, server/counters[@type='nsstat']
1235    * Variables: Requestv4, Requestv6, ReqEdns0, ReqBadEDNSVer, ReqTSIG,
1236    *            ReqSIG0, ReqBadSIG, ReqTCP, AuthQryRej, RecQryRej, XfrRej,
1237    *            UpdateRej, Response, TruncatedResp, RespEDNS0, RespTSIG,
1238    *            RespSIG0, QrySuccess, QryAuthAns, QryNoauthAns, QryReferral,
1239    *            QryNxrrset, QrySERVFAIL, QryFORMERR, QryNXDOMAIN, QryRecursion,
1240    *            QryDuplicate, QryDropped, QryFailure, XfrReqDone, UpdateReqFwd,
1241    *            UpdateRespFwd, UpdateFwdFail, UpdateDone, UpdateFail,
1242    *            UpdateBadPrereq
1243    * Layout v1:
1244    *   <nsstats>
1245    *     <Requestv4>1</Requestv4>
1246    *     <Requestv6>0</Requestv6>
1247    *     :
1248    *   </nsstats>
1249    * Layout v2:
1250    *   <nsstat>
1251    *     <name>Requestv4</name>
1252    *     <counter>1</counter>
1253    *   </nsstat>
1254    *   <nsstat>
1255    *     <name>Requestv6</name>
1256    *     <counter>0</counter>
1257    *   </nsstat>
1258    *   :
1259    */
1260   if (global_server_stats)
1261   {
1262     translation_table_ptr_t table_ptr =
1263     {
1264       nsstats_translation_table,
1265       nsstats_translation_table_length,
1266       /* plugin_instance = */ "global-server_stats"
1267     };
1268
1269     if (version == 1)
1270     {
1271       bind_parse_generic_value_list ("server/nsstats",
1272           /* callback = */ bind_xml_table_callback,
1273           /* user_data = */ &table_ptr,
1274           doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1275     }
1276     else
1277     {
1278       bind_parse_generic_name_value ("server/nsstat",
1279           /* callback = */ bind_xml_table_callback,
1280           /* user_data = */ &table_ptr,
1281           doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1282     }
1283   }
1284
1285   /* XPath:     server/zonestats, server/zonestat, server/counters[@type='zonestat']
1286    * Variables: NotifyOutv4, NotifyOutv6, NotifyInv4, NotifyInv6, NotifyRej,
1287    *            SOAOutv4, SOAOutv6, AXFRReqv4, AXFRReqv6, IXFRReqv4, IXFRReqv6,
1288    *            XfrSuccess, XfrFail
1289    * Layout v1:
1290    *   <zonestats>
1291    *     <NotifyOutv4>0</NotifyOutv4>
1292    *     <NotifyOutv6>0</NotifyOutv6>
1293    *     :
1294    *   </zonestats>
1295    * Layout v2:
1296    *   <zonestat>
1297    *     <name>NotifyOutv4</name>
1298    *     <counter>0</counter>
1299    *   </zonestat>
1300    *   <zonestat>
1301    *     <name>NotifyOutv6</name>
1302    *     <counter>0</counter>
1303    *   </zonestat>
1304    *   :
1305    */
1306   if (global_zone_maint_stats)
1307   {
1308     translation_table_ptr_t table_ptr =
1309     {
1310       zonestats_translation_table,
1311       zonestats_translation_table_length,
1312       /* plugin_instance = */ "global-zone_maint_stats"
1313     };
1314
1315     if (version == 1)
1316     {
1317       bind_parse_generic_value_list ("server/zonestats",
1318           /* callback = */ bind_xml_table_callback,
1319           /* user_data = */ &table_ptr,
1320           doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1321     }
1322     else
1323     {
1324       bind_parse_generic_name_value ("server/zonestat",
1325           /* callback = */ bind_xml_table_callback,
1326           /* user_data = */ &table_ptr,
1327           doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1328     }
1329   }
1330
1331   /* XPath:     server/resstats, server/counters[@type='resstat']
1332    * Variables: Queryv4, Queryv6, Responsev4, Responsev6, NXDOMAIN, SERVFAIL,
1333    *            FORMERR, OtherError, EDNS0Fail, Mismatch, Truncated, Lame,
1334    *            Retry, GlueFetchv4, GlueFetchv6, GlueFetchv4Fail,
1335    *            GlueFetchv6Fail, ValAttempt, ValOk, ValNegOk, ValFail
1336    * Layout v1:
1337    *   <resstats>
1338    *     <Queryv4>0</Queryv4>
1339    *     <Queryv6>0</Queryv6>
1340    *     :
1341    *   </resstats>
1342    * Layout v2:
1343    *   <resstat>
1344    *     <name>Queryv4</name>
1345    *     <counter>0</counter>
1346    *   </resstat>
1347    *   <resstat>
1348    *     <name>Queryv6</name>
1349    *     <counter>0</counter>
1350    *   </resstat>
1351    *   :
1352    */
1353   if (global_resolver_stats != 0)
1354   {
1355     translation_table_ptr_t table_ptr =
1356     {
1357       resstats_translation_table,
1358       resstats_translation_table_length,
1359       /* plugin_instance = */ "global-resolver_stats"
1360     };
1361
1362     if (version == 1)
1363     {
1364       bind_parse_generic_value_list ("server/resstats",
1365           /* callback = */ bind_xml_table_callback,
1366           /* user_data = */ &table_ptr,
1367           doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1368     }
1369     else
1370     {
1371       bind_parse_generic_name_value ("server/resstat",
1372           /* callback = */ bind_xml_table_callback,
1373           /* user_data = */ &table_ptr,
1374           doc, xpathCtx, current_time, DS_TYPE_COUNTER);
1375     }
1376   }
1377 } /* }}} bind_xml_stats_v1_v2 */
1378
1379 static int bind_xml_stats (int version, xmlDoc *doc, /* {{{ */
1380     xmlXPathContext *xpathCtx, xmlNode *statsnode)
1381 {
1382   time_t current_time = 0;
1383   int status;
1384
1385   xpathCtx->node = statsnode;
1386
1387   /* TODO: Check `server/boot-time' to recognize server restarts. */
1388
1389   status = bind_xml_read_timestamp ("server/current-time",
1390       doc, xpathCtx, &current_time);
1391   if (status != 0)
1392   {
1393     ERROR ("bind plugin: Reading `server/current-time' failed.");
1394     return (-1);
1395   }
1396   DEBUG ("bind plugin: Current server time is %i.", (int) current_time);
1397
1398   if (version == 3)
1399   {
1400     bind_xml_stats_v3(doc, xpathCtx, statsnode, current_time);
1401   }
1402   else
1403   {
1404     bind_xml_stats_v1_v2(version, doc, xpathCtx, statsnode, current_time);
1405   }
1406
1407   /* XPath:  memory/summary
1408    * Variables: TotalUse, InUse, BlockSize, ContextSize, Lost
1409    * Layout: v2 and v3:
1410    *   <summary>
1411    *     <TotalUse>6587096</TotalUse>
1412    *     <InUse>1345424</InUse>
1413    *     <BlockSize>5505024</BlockSize>
1414    *     <ContextSize>3732456</ContextSize>
1415    *     <Lost>0</Lost>
1416    *   </summary>
1417    */
1418   if (global_memory_stats != 0)
1419   {
1420     translation_table_ptr_t table_ptr =
1421     {
1422       memsummary_translation_table,
1423       memsummary_translation_table_length,
1424       /* plugin_instance = */ "global-memory_stats"
1425     };
1426
1427     bind_parse_generic_value_list ("memory/summary",
1428           /* callback = */ bind_xml_table_callback,
1429           /* user_data = */ &table_ptr,
1430           doc, xpathCtx, current_time, DS_TYPE_GAUGE);
1431   }
1432
1433   if (views_num > 0)
1434     bind_xml_stats_search_views (version, doc, xpathCtx, statsnode,
1435         current_time);
1436
1437   return 0;
1438 } /* }}} int bind_xml_stats */
1439
1440 static int bind_xml (const char *data) /* {{{ */
1441 {
1442   xmlDoc *doc = NULL;
1443   xmlXPathContext *xpathCtx = NULL;
1444   xmlXPathObject *xpathObj = NULL;
1445   int ret = -1;
1446   int i;
1447
1448   doc = xmlParseMemory (data, strlen (data));
1449   if (doc == NULL)
1450   {
1451     ERROR ("bind plugin: xmlParseMemory failed.");
1452     return (-1);
1453   }
1454
1455   xpathCtx = xmlXPathNewContext (doc);
1456   if (xpathCtx == NULL)
1457   {
1458     ERROR ("bind plugin: xmlXPathNewContext failed.");
1459     xmlFreeDoc (doc);
1460     return (-1);
1461   }
1462
1463   //
1464   // version 3.* of statistics XML (since BIND9.9)
1465   //
1466
1467   xpathObj = xmlXPathEvalExpression (BAD_CAST "/statistics", xpathCtx);
1468   if (xpathObj == NULL || xpathObj->nodesetval == NULL || xpathObj->nodesetval->nodeNr == 0)
1469   {
1470     DEBUG ("bind plugin: Statistics appears not to be v3");
1471     // we will fallback to v1 or v2 detection
1472     if (xpathObj != NULL) { xmlXPathFreeObject (xpathObj); }
1473   }
1474   else
1475   {
1476     for (i = 0; i < xpathObj->nodesetval->nodeNr; i++)
1477     {
1478       xmlNode *node;
1479       char *attr_version;
1480
1481       node = xpathObj->nodesetval->nodeTab[i];
1482       assert (node != NULL);
1483
1484       attr_version = (char *) xmlGetProp (node, BAD_CAST "version");
1485       if (attr_version == NULL)
1486       {
1487         NOTICE ("bind plugin: Found <statistics> tag doesn't have a "
1488             "`version' attribute.");
1489         continue;
1490       }
1491       DEBUG ("bind plugin: Found: <statistics version=\"%s\">", attr_version);
1492
1493       if (strncmp ("3.", attr_version, strlen ("3.")) != 0)
1494       {
1495         /* TODO: Use the complaint mechanism here. */
1496         NOTICE ("bind plugin: Found <statistics> tag with version `%s'. "
1497             "Unfortunately I have no clue how to parse that. "
1498             "Please open a bug report for this.", attr_version);
1499         xmlFree (attr_version);
1500         continue;
1501       }
1502       ret = bind_xml_stats (3, doc, xpathCtx, node);
1503
1504       xmlFree (attr_version);
1505       /* One <statistics> node ought to be enough. */
1506       break;
1507     }
1508
1509     // we are finished, early-return
1510     xmlXPathFreeObject (xpathObj);
1511     xmlXPathFreeContext (xpathCtx);
1512     xmlFreeDoc (doc);
1513
1514     return (ret);
1515   }
1516
1517   //
1518   // versions 1.* or 2.* of statistics XML
1519   //
1520
1521   xpathObj = xmlXPathEvalExpression (BAD_CAST "/isc/bind/statistics", xpathCtx);
1522   if (xpathObj == NULL)
1523   {
1524     ERROR ("bind plugin: Cannot find the <statistics> tag.");
1525     xmlXPathFreeContext (xpathCtx);
1526     xmlFreeDoc (doc);
1527     return (-1);
1528   }
1529   else if (xpathObj->nodesetval == NULL)
1530   {
1531     ERROR ("bind plugin: xmlXPathEvalExpression failed.");
1532     xmlXPathFreeObject (xpathObj);
1533     xmlXPathFreeContext (xpathCtx);
1534     xmlFreeDoc (doc);
1535     return (-1);
1536   }
1537
1538   for (i = 0; i < xpathObj->nodesetval->nodeNr; i++)
1539   {
1540     xmlNode *node;
1541     char *attr_version;
1542     int parsed_version = 0;
1543
1544     node = xpathObj->nodesetval->nodeTab[i];
1545     assert (node != NULL);
1546
1547     attr_version = (char *) xmlGetProp (node, BAD_CAST "version");
1548     if (attr_version == NULL)
1549     {
1550       NOTICE ("bind plugin: Found <statistics> tag doesn't have a "
1551           "`version' attribute.");
1552       continue;
1553     }
1554     DEBUG ("bind plugin: Found: <statistics version=\"%s\">", attr_version);
1555
1556     /* At the time this plugin was written, version "1.0" was used by
1557      * BIND 9.5.0, version "2.0" was used by BIND 9.5.1 and 9.6.0. We assume
1558      * that "1.*" and "2.*" don't introduce structural changes, so we just
1559      * check for the first two characters here. */
1560     if (strncmp ("1.", attr_version, strlen ("1.")) == 0)
1561       parsed_version = 1;
1562     else if (strncmp ("2.", attr_version, strlen ("2.")) == 0)
1563       parsed_version = 2;
1564     else
1565     {
1566       /* TODO: Use the complaint mechanism here. */
1567       NOTICE ("bind plugin: Found <statistics> tag with version `%s'. "
1568           "Unfortunately I have no clue how to parse that. "
1569           "Please open a bug report for this.", attr_version);
1570       xmlFree (attr_version);
1571       continue;
1572     }
1573
1574     ret = bind_xml_stats (parsed_version,
1575         doc, xpathCtx, node);
1576
1577     xmlFree (attr_version);
1578     /* One <statistics> node ought to be enough. */
1579     break;
1580   }
1581
1582   xmlXPathFreeObject (xpathObj);
1583   xmlXPathFreeContext (xpathCtx);
1584   xmlFreeDoc (doc);
1585
1586   return (ret);
1587 } /* }}} int bind_xml */
1588
1589 static int bind_config_set_bool (const char *name, int *var, /* {{{ */
1590     oconfig_item_t *ci)
1591 {
1592   if ((ci->values_num != 1) || ( ci->values[0].type != OCONFIG_TYPE_BOOLEAN))
1593   {
1594     WARNING ("bind plugin: The `%s' option needs "
1595         "exactly one boolean argument.", name);
1596     return (-1);
1597   }
1598
1599   if (ci->values[0].value.boolean)
1600     *var = 1;
1601   else
1602     *var = 0;
1603   return 0;
1604 } /* }}} int bind_config_set_bool */
1605
1606 static int bind_config_add_view_zone (cb_view_t *view, /* {{{ */
1607     oconfig_item_t *ci)
1608 {
1609   char **tmp;
1610
1611   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
1612   {
1613     WARNING ("bind plugin: The `Zone' option needs "
1614         "exactly one string argument.");
1615     return (-1);
1616   }
1617
1618   tmp = (char **) realloc (view->zones,
1619       sizeof (char *) * (view->zones_num + 1));
1620   if (tmp == NULL)
1621   {
1622     ERROR ("bind plugin: realloc failed.");
1623     return (-1);
1624   }
1625   view->zones = tmp;
1626
1627   view->zones[view->zones_num] = strdup (ci->values[0].value.string);
1628   if (view->zones[view->zones_num] == NULL)
1629   {
1630     ERROR ("bind plugin: strdup failed.");
1631     return (-1);
1632   }
1633   view->zones_num++;
1634
1635   return (0);
1636 } /* }}} int bind_config_add_view_zone */
1637
1638 static int bind_config_add_view (oconfig_item_t *ci) /* {{{ */
1639 {
1640   cb_view_t *tmp;
1641   int i;
1642
1643   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
1644   {
1645     WARNING ("bind plugin: `View' blocks need exactly one string argument.");
1646     return (-1);
1647   }
1648
1649   tmp = (cb_view_t *) realloc (views, sizeof (*views) * (views_num + 1));
1650   if (tmp == NULL)
1651   {
1652     ERROR ("bind plugin: realloc failed.");
1653     return (-1);
1654   }
1655   views = tmp;
1656   tmp = views + views_num;
1657
1658   memset (tmp, 0, sizeof (*tmp));
1659   tmp->qtypes = 1;
1660   tmp->resolver_stats = 1;
1661   tmp->cacherrsets = 1;
1662   tmp->zones = NULL;
1663   tmp->zones_num = 0;
1664
1665   tmp->name = strdup (ci->values[0].value.string);
1666   if (tmp->name == NULL)
1667   {
1668     ERROR ("bind plugin: strdup failed.");
1669     free (tmp);
1670     return (-1);
1671   }
1672
1673   for (i = 0; i < ci->children_num; i++)
1674   {
1675     oconfig_item_t *child = ci->children + i;
1676
1677     if (strcasecmp ("QTypes", child->key) == 0)
1678       bind_config_set_bool ("QTypes", &tmp->qtypes, child);
1679     else if (strcasecmp ("ResolverStats", child->key) == 0)
1680       bind_config_set_bool ("ResolverStats", &tmp->resolver_stats, child);
1681     else if (strcasecmp ("CacheRRSets", child->key) == 0)
1682       bind_config_set_bool ("CacheRRSets", &tmp->cacherrsets, child);
1683     else if (strcasecmp ("Zone", child->key) == 0)
1684       bind_config_add_view_zone (tmp, child);
1685     else
1686     {
1687       WARNING ("bind plugin: Unknown configuration option "
1688           "`%s' in view `%s' will be ignored.", child->key, tmp->name);
1689     }
1690   } /* for (i = 0; i < ci->children_num; i++) */
1691
1692   views_num++;
1693   return (0);
1694 } /* }}} int bind_config_add_view */
1695
1696 static int bind_config (oconfig_item_t *ci) /* {{{ */
1697 {
1698   int i;
1699
1700   for (i = 0; i < ci->children_num; i++)
1701   {
1702     oconfig_item_t *child = ci->children + i;
1703
1704     if (strcasecmp ("Url", child->key) == 0) {
1705       if ((child->values_num != 1) || (child->values[0].type != OCONFIG_TYPE_STRING))
1706       {
1707         WARNING ("bind plugin: The `Url' option needs "
1708                  "exactly one string argument.");
1709         return (-1);
1710       }
1711
1712       url = strdup (child->values[0].value.string);
1713     } else if (strcasecmp ("OpCodes", child->key) == 0)
1714       bind_config_set_bool ("OpCodes", &global_opcodes, child);
1715     else if (strcasecmp ("QTypes", child->key) == 0)
1716       bind_config_set_bool ("QTypes", &global_qtypes, child);
1717     else if (strcasecmp ("ServerStats", child->key) == 0)
1718       bind_config_set_bool ("ServerStats", &global_server_stats, child);
1719     else if (strcasecmp ("ZoneMaintStats", child->key) == 0)
1720       bind_config_set_bool ("ZoneMaintStats", &global_zone_maint_stats, child);
1721     else if (strcasecmp ("ResolverStats", child->key) == 0)
1722       bind_config_set_bool ("ResolverStats", &global_resolver_stats, child);
1723     else if (strcasecmp ("MemoryStats", child->key) == 0)
1724       bind_config_set_bool ("MemoryStats", &global_memory_stats, child);
1725     else if (strcasecmp ("View", child->key) == 0)
1726       bind_config_add_view (child);
1727     else if (strcasecmp ("ParseTime", child->key) == 0)
1728       cf_util_get_boolean (child, &config_parse_time);
1729     else if (strcasecmp ("Timeout", child->key) == 0)
1730       cf_util_get_int (child, &timeout);
1731     else
1732     {
1733       WARNING ("bind plugin: Unknown configuration option "
1734           "`%s' will be ignored.", child->key);
1735     }
1736   }
1737
1738   return (0);
1739 } /* }}} int bind_config */
1740
1741 static int bind_init (void) /* {{{ */
1742 {
1743   if (curl != NULL)
1744     return (0);
1745
1746   curl = curl_easy_init ();
1747   if (curl == NULL)
1748   {
1749     ERROR ("bind plugin: bind_init: curl_easy_init failed.");
1750     return (-1);
1751   }
1752
1753   curl_easy_setopt (curl, CURLOPT_NOSIGNAL, 1L);
1754   curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, bind_curl_callback);
1755   curl_easy_setopt (curl, CURLOPT_USERAGENT, COLLECTD_USERAGENT);
1756   curl_easy_setopt (curl, CURLOPT_ERRORBUFFER, bind_curl_error);
1757   curl_easy_setopt (curl, CURLOPT_URL, (url != NULL) ? url : BIND_DEFAULT_URL);
1758   curl_easy_setopt (curl, CURLOPT_FOLLOWLOCATION, 1L);
1759   curl_easy_setopt (curl, CURLOPT_MAXREDIRS, 50L);
1760 #ifdef HAVE_CURLOPT_TIMEOUT_MS
1761   curl_easy_setopt (curl, CURLOPT_TIMEOUT_MS, (timeout >= 0) ?
1762       (long) timeout : CDTIME_T_TO_MS(plugin_get_interval()));
1763 #endif
1764
1765
1766   return (0);
1767 } /* }}} int bind_init */
1768
1769 static int bind_read (void) /* {{{ */
1770 {
1771   int status;
1772
1773   if (curl == NULL)
1774   {
1775     ERROR ("bind plugin: I don't have a CURL object.");
1776     return (-1);
1777   }
1778
1779   bind_buffer_fill = 0;
1780   if (curl_easy_perform (curl) != CURLE_OK)
1781   {
1782     ERROR ("bind plugin: curl_easy_perform failed: %s",
1783         bind_curl_error);
1784     return (-1);
1785   }
1786
1787   status = bind_xml (bind_buffer);
1788   if (status != 0)
1789     return (-1);
1790   else
1791     return (0);
1792 } /* }}} int bind_read */
1793
1794 static int bind_shutdown (void) /* {{{ */
1795 {
1796   if (curl != NULL)
1797   {
1798     curl_easy_cleanup (curl);
1799     curl = NULL;
1800   }
1801
1802   return (0);
1803 } /* }}} int bind_shutdown */
1804
1805 void module_register (void)
1806 {
1807   plugin_register_complex_config ("bind", bind_config);
1808   plugin_register_init ("bind", bind_init);
1809   plugin_register_read ("bind", bind_read);
1810   plugin_register_shutdown ("bind", bind_shutdown);
1811 } /* void module_register */
1812
1813 /* vim: set sw=2 sts=2 ts=8 et fdm=marker : */