2 * collectd - src/curl_xml.c
3 * Copyright (C) 2009,2010 Amit Gupta
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; only version 2 of the License is applicable.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 * Amit Gupta <amit.gupta221 at gmail.com>
26 #include "utils_curl_stats.h"
27 #include "utils_llist.h"
29 #include <libxml/parser.h>
30 #include <libxml/tree.h>
31 #include <libxml/xpath.h>
32 #include <libxml/xpathInternals.h>
34 #include <curl/curl.h>
36 #define CX_DEFAULT_HOST "localhost"
39 * Private data structures
41 struct cx_values_s /* {{{ */
43 char path[DATA_MAX_NAME_LEN];
46 typedef struct cx_values_s cx_values_t;
49 struct cx_xpath_s /* {{{ */
55 char *instance_prefix;
60 typedef struct cx_xpath_s cx_xpath_t;
63 struct cx_namespace_s /* {{{ */
68 typedef struct cx_namespace_s cx_namespace_t;
86 struct curl_slist *headers;
89 cx_namespace_t *namespaces;
90 size_t namespaces_num;
93 char curl_errbuf[CURL_ERROR_SIZE];
98 llist_t *list; /* list of xpath blocks */
100 typedef struct cx_s cx_t; /* }}} */
105 static size_t cx_curl_callback(void *buf, /* {{{ */
106 size_t size, size_t nmemb, void *user_data) {
107 size_t len = size * nmemb;
112 ERROR("curl_xml plugin: cx_curl_callback: "
113 "user_data pointer is NULL.");
120 if ((db->buffer_fill + len) >= db->buffer_size) {
123 temp = realloc(db->buffer, db->buffer_fill + len + 1);
125 ERROR("curl_xml plugin: realloc failed.");
129 db->buffer_size = db->buffer_fill + len + 1;
132 memcpy(db->buffer + db->buffer_fill, (char *)buf, len);
133 db->buffer_fill += len;
134 db->buffer[db->buffer_fill] = 0;
137 } /* }}} size_t cx_curl_callback */
139 static void cx_xpath_free(cx_xpath_t *xpath) /* {{{ */
146 sfree(xpath->instance_prefix);
147 sfree(xpath->instance);
148 sfree(xpath->values);
150 } /* }}} void cx_xpath_free */
152 static void cx_list_free(llist_t *list) /* {{{ */
156 le = llist_head(list);
163 cx_xpath_free(le->value);
169 } /* }}} void cx_list_free */
171 static void cx_free(void *arg) /* {{{ */
175 DEBUG("curl_xml plugin: cx_free (arg = %p);", arg);
182 if (db->curl != NULL)
183 curl_easy_cleanup(db->curl);
186 if (db->list != NULL)
187 cx_list_free(db->list);
196 sfree(db->credentials);
198 sfree(db->post_body);
199 curl_slist_free_all(db->headers);
200 curl_stats_destroy(db->stats);
202 for (size_t i = 0; i < db->namespaces_num; i++) {
203 sfree(db->namespaces[i].prefix);
204 sfree(db->namespaces[i].url);
206 sfree(db->namespaces);
209 } /* }}} void cx_free */
211 static const char *cx_host(cx_t *db) /* {{{ */
213 if (db->host == NULL)
218 static int cx_config_append_string(const char *name,
219 struct curl_slist **dest, /* {{{ */
220 oconfig_item_t *ci) {
221 struct curl_slist *temp = NULL;
222 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
223 WARNING("curl_xml plugin: `%s' needs exactly one string argument.", name);
227 temp = curl_slist_append(*dest, ci->values[0].value.string);
234 } /* }}} int cx_config_append_string */
236 static int cx_check_type(const data_set_t *ds, cx_xpath_t *xpath) /* {{{ */
239 WARNING("curl_xml plugin: DataSet `%s' not defined.", xpath->type);
243 if (ds->ds_num != xpath->values_len) {
244 WARNING("curl_xml plugin: DataSet `%s' requires %zu values, but config "
246 xpath->type, ds->ds_num, xpath->values_len);
251 } /* }}} cx_check_type */
253 static xmlXPathObjectPtr
254 cx_evaluate_xpath(xmlXPathContextPtr xpath_ctx, /* {{{ */
256 xmlXPathObjectPtr xpath_obj;
258 /* XXX: When to free this? */
259 xpath_obj = xmlXPathEvalExpression(BAD_CAST expr, xpath_ctx);
260 if (xpath_obj == NULL) {
261 WARNING("curl_xml plugin: "
262 "Error unable to evaluate xpath expression \"%s\". Skipping...",
268 } /* }}} cx_evaluate_xpath */
270 static int cx_if_not_text_node(xmlNodePtr node) /* {{{ */
272 if (node->type == XML_TEXT_NODE || node->type == XML_ATTRIBUTE_NODE ||
273 node->type == XML_ELEMENT_NODE)
276 WARNING("curl_xml plugin: "
277 "Node \"%s\" doesn't seem to be a text node. Skipping...",
280 } /* }}} cx_if_not_text_node */
282 static int cx_handle_single_value_xpath(xmlXPathContextPtr xpath_ctx, /* {{{ */
283 cx_xpath_t *xpath, const data_set_t *ds,
284 value_list_t *vl, int index) {
285 xmlXPathObjectPtr values_node_obj;
286 xmlNodeSetPtr values_node;
291 cx_evaluate_xpath(xpath_ctx, BAD_CAST xpath->values[index].path);
292 if (values_node_obj == NULL)
293 return -1; /* Error already logged. */
295 values_node = values_node_obj->nodesetval;
296 tmp_size = (values_node) ? values_node->nodeNr : 0;
299 WARNING("curl_xml plugin: "
300 "relative xpath expression \"%s\" doesn't match any of the nodes. "
302 xpath->values[index].path);
303 xmlXPathFreeObject(values_node_obj);
308 WARNING("curl_xml plugin: "
309 "relative xpath expression \"%s\" is expected to return "
310 "only one node. Skipping...",
311 xpath->values[index].path);
312 xmlXPathFreeObject(values_node_obj);
316 /* ignoring the element if other than textnode/attribute*/
317 if (cx_if_not_text_node(values_node->nodeTab[0])) {
318 WARNING("curl_xml plugin: "
319 "relative xpath expression \"%s\" is expected to return "
320 "only text/attribute node which is not the case. Skipping...",
321 xpath->values[index].path);
322 xmlXPathFreeObject(values_node_obj);
326 node_value = (char *)xmlNodeGetContent(values_node->nodeTab[0]);
327 switch (ds->ds[index].type) {
328 case DS_TYPE_COUNTER:
329 vl->values[index].counter =
330 (counter_t)strtoull(node_value,
331 /* endptr = */ NULL, /* base = */ 0);
334 vl->values[index].derive =
335 (derive_t)strtoll(node_value,
336 /* endptr = */ NULL, /* base = */ 0);
338 case DS_TYPE_ABSOLUTE:
339 vl->values[index].absolute =
340 (absolute_t)strtoull(node_value,
341 /* endptr = */ NULL, /* base = */ 0);
344 vl->values[index].gauge = (gauge_t)strtod(node_value,
345 /* endptr = */ NULL);
349 xmlXPathFreeObject(values_node_obj);
352 /* We have reached here which means that
353 * we have got something to work */
355 } /* }}} int cx_handle_single_value_xpath */
357 static int cx_handle_all_value_xpaths(xmlXPathContextPtr xpath_ctx, /* {{{ */
358 cx_xpath_t *xpath, const data_set_t *ds,
360 value_t values[xpath->values_len];
363 assert(xpath->values_len > 0);
364 assert(xpath->values_len == vl->values_len);
365 assert(xpath->values_len == ds->ds_num);
368 for (size_t i = 0; i < xpath->values_len; i++) {
369 status = cx_handle_single_value_xpath(xpath_ctx, xpath, ds, vl, i);
371 return -1; /* An error has been printed. */
372 } /* for (i = 0; i < xpath->values_len; i++) */
374 plugin_dispatch_values(vl);
378 } /* }}} int cx_handle_all_value_xpaths */
380 static int cx_handle_instance_xpath(xmlXPathContextPtr xpath_ctx, /* {{{ */
381 cx_xpath_t *xpath, value_list_t *vl,
383 xmlXPathObjectPtr instance_node_obj = NULL;
384 xmlNodeSetPtr instance_node = NULL;
386 memset(vl->type_instance, 0, sizeof(vl->type_instance));
388 /* If the base xpath returns more than one block, the result is assumed to be
389 * a table. The `Instance' option is not optional in this case. Check for the
390 * condition and inform the user. */
391 if (is_table && (xpath->instance == NULL)) {
392 WARNING("curl_xml plugin: "
393 "Base-XPath %s is a table (more than one result was returned), "
394 "but no instance-XPath has been defined.",
399 /* instance has to be an xpath expression */
400 if (xpath->instance != NULL) {
403 instance_node_obj = cx_evaluate_xpath(xpath_ctx, BAD_CAST xpath->instance);
404 if (instance_node_obj == NULL)
405 return -1; /* error is logged already */
407 instance_node = instance_node_obj->nodesetval;
408 tmp_size = (instance_node) ? instance_node->nodeNr : 0;
413 "relative xpath expression for 'InstanceFrom' \"%s\" doesn't match "
414 "any of the nodes. Skipping the node.",
416 xmlXPathFreeObject(instance_node_obj);
421 WARNING("curl_xml plugin: "
422 "relative xpath expression for 'InstanceFrom' \"%s\" is expected "
423 "to return only one text node. Skipping the node.",
425 xmlXPathFreeObject(instance_node_obj);
429 /* ignoring the element if other than textnode/attribute */
430 if (cx_if_not_text_node(instance_node->nodeTab[0])) {
431 WARNING("curl_xml plugin: "
432 "relative xpath expression \"%s\" is expected to return only "
434 "which is not the case. Skipping the node.",
436 xmlXPathFreeObject(instance_node_obj);
439 } /* if (xpath->instance != NULL) */
441 if (xpath->instance_prefix != NULL) {
442 if (instance_node != NULL) {
443 char *node_value = (char *)xmlNodeGetContent(instance_node->nodeTab[0]);
444 snprintf(vl->type_instance, sizeof(vl->type_instance), "%s%s",
445 xpath->instance_prefix, node_value);
448 sstrncpy(vl->type_instance, xpath->instance_prefix,
449 sizeof(vl->type_instance));
451 /* If instance_prefix and instance_node are NULL, then
452 * don't set the type_instance */
453 if (instance_node != NULL) {
454 char *node_value = (char *)xmlNodeGetContent(instance_node->nodeTab[0]);
455 sstrncpy(vl->type_instance, node_value, sizeof(vl->type_instance));
460 /* Free `instance_node_obj' this late, because `instance_node' points to
461 * somewhere inside this structure. */
462 xmlXPathFreeObject(instance_node_obj);
465 } /* }}} int cx_handle_instance_xpath */
467 static int cx_handle_base_xpath(char const *plugin_instance, /* {{{ */
468 char const *host, xmlXPathContextPtr xpath_ctx,
469 const data_set_t *ds, char *base_xpath,
473 xmlXPathObjectPtr base_node_obj = NULL;
474 xmlNodeSetPtr base_nodes = NULL;
476 value_list_t vl = VALUE_LIST_INIT;
478 base_node_obj = cx_evaluate_xpath(xpath_ctx, BAD_CAST base_xpath);
479 if (base_node_obj == NULL)
480 return -1; /* error is logged already */
482 base_nodes = base_node_obj->nodesetval;
483 total_nodes = (base_nodes) ? base_nodes->nodeNr : 0;
485 if (total_nodes == 0) {
486 ERROR("curl_xml plugin: "
487 "xpath expression \"%s\" doesn't match any of the nodes. "
488 "Skipping the xpath block...",
490 xmlXPathFreeObject(base_node_obj);
494 /* If base_xpath returned multiple results, then */
495 /* Instance in the xpath block is required */
496 if (total_nodes > 1 && xpath->instance == NULL) {
497 ERROR("curl_xml plugin: "
498 "InstanceFrom is must in xpath block since the base xpath expression "
500 "returned multiple results. Skipping the xpath block...",
505 /* set the values for the value_list */
506 vl.values_len = ds->ds_num;
507 sstrncpy(vl.type, xpath->type, sizeof(vl.type));
508 sstrncpy(vl.plugin, "curl_xml", sizeof(vl.plugin));
509 sstrncpy(vl.host, host, sizeof(vl.host));
510 if (plugin_instance != NULL)
511 sstrncpy(vl.plugin_instance, plugin_instance, sizeof(vl.plugin_instance));
513 for (int i = 0; i < total_nodes; i++) {
516 xpath_ctx->node = base_nodes->nodeTab[i];
518 status = cx_handle_instance_xpath(xpath_ctx, xpath, &vl,
519 /* is_table = */ (total_nodes > 1));
521 continue; /* An error has already been reported. */
523 status = cx_handle_all_value_xpaths(xpath_ctx, xpath, ds, &vl);
525 continue; /* An error has been logged. */
526 } /* for (i = 0; i < total_nodes; i++) */
528 /* free up the allocated memory */
529 xmlXPathFreeObject(base_node_obj);
532 } /* }}} cx_handle_base_xpath */
534 static int cx_handle_parsed_xml(xmlDocPtr doc, /* {{{ */
535 xmlXPathContextPtr xpath_ctx, cx_t *db) {
537 const data_set_t *ds;
541 le = llist_head(db->list);
544 xpath = (cx_xpath_t *)le->value;
545 ds = plugin_get_ds(xpath->type);
547 if ((cx_check_type(ds, xpath) == 0) &&
548 (cx_handle_base_xpath(db->instance, cx_host(db), xpath_ctx, ds, le->key,
550 status = 0; /* we got atleast one success */
553 } /* while (le != NULL) */
556 } /* }}} cx_handle_parsed_xml */
558 static int cx_parse_stats_xml(xmlChar *xml, cx_t *db) /* {{{ */
562 xmlXPathContextPtr xpath_ctx;
565 doc = xmlParseDoc(xml);
567 ERROR("curl_xml plugin: Failed to parse the xml document - %s", xml);
571 xpath_ctx = xmlXPathNewContext(doc);
572 if (xpath_ctx == NULL) {
573 ERROR("curl_xml plugin: Failed to create the xml context");
578 for (size_t i = 0; i < db->namespaces_num; i++) {
579 cx_namespace_t const *ns = db->namespaces + i;
581 xmlXPathRegisterNs(xpath_ctx, BAD_CAST ns->prefix, BAD_CAST ns->url);
583 ERROR("curl_xml plugin: "
584 "unable to register NS with prefix=\"%s\" and href=\"%s\"\n",
585 ns->prefix, ns->url);
586 xmlXPathFreeContext(xpath_ctx);
592 status = cx_handle_parsed_xml(doc, xpath_ctx, db);
594 xmlXPathFreeContext(xpath_ctx);
597 } /* }}} cx_parse_stats_xml */
599 static int cx_curl_perform(cx_t *db, CURL *curl) /* {{{ */
608 curl_easy_setopt(db->curl, CURLOPT_URL, db->url);
610 status = curl_easy_perform(curl);
611 if (status != CURLE_OK) {
612 ERROR("curl_xml plugin: curl_easy_perform failed with status %i: %s (%s)",
613 status, db->curl_errbuf, db->url);
616 if (db->stats != NULL)
617 curl_stats_dispatch(db->stats, db->curl, cx_host(db), "curl_xml",
620 curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &url);
621 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &rc);
623 /* The response code is zero if a non-HTTP transport was used. */
624 if ((rc != 0) && (rc != 200)) {
626 "curl_xml plugin: curl_easy_perform failed with response code %ld (%s)",
633 status = cx_parse_stats_xml(BAD_CAST ptr, db);
637 } /* }}} int cx_curl_perform */
639 static int cx_read(user_data_t *ud) /* {{{ */
643 if ((ud == NULL) || (ud->data == NULL)) {
644 ERROR("curl_xml plugin: cx_read: Invalid user data.");
648 db = (cx_t *)ud->data;
650 return cx_curl_perform(db, db->curl);
651 } /* }}} int cx_read */
653 /* Configuration handling functions {{{ */
655 static int cx_config_add_values(const char *name, cx_xpath_t *xpath, /* {{{ */
656 oconfig_item_t *ci) {
657 if (ci->values_num < 1) {
658 WARNING("curl_xml plugin: `ValuesFrom' needs at least one argument.");
662 for (int i = 0; i < ci->values_num; i++)
663 if (ci->values[i].type != OCONFIG_TYPE_STRING) {
664 WARNING("curl_xml plugin: `ValuesFrom' needs only string argument.");
668 sfree(xpath->values);
670 xpath->values_len = 0;
671 xpath->values = malloc(sizeof(cx_values_t) * ci->values_num);
672 if (xpath->values == NULL)
674 xpath->values_len = (size_t)ci->values_num;
676 /* populate cx_values_t structure */
677 for (int i = 0; i < ci->values_num; i++) {
678 xpath->values[i].path_len = sizeof(ci->values[i].value.string);
679 sstrncpy(xpath->values[i].path, ci->values[i].value.string,
680 sizeof(xpath->values[i].path));
684 } /* }}} cx_config_add_values */
686 static int cx_config_add_xpath(cx_t *db, oconfig_item_t *ci) /* {{{ */
693 xpath = calloc(1, sizeof(*xpath));
695 ERROR("curl_xml plugin: calloc failed.");
699 status = cf_util_get_string(ci, &xpath->path);
701 cx_xpath_free(xpath);
705 /* error out if xpath->path is an empty string */
706 if (strlen(xpath->path) == 0) {
707 ERROR("curl_xml plugin: invalid xpath. "
708 "xpath value can't be an empty string");
709 cx_xpath_free(xpath);
714 for (int i = 0; i < ci->children_num; i++) {
715 oconfig_item_t *child = ci->children + i;
717 if (strcasecmp("Type", child->key) == 0)
718 status = cf_util_get_string(child, &xpath->type);
719 else if (strcasecmp("InstancePrefix", child->key) == 0)
720 status = cf_util_get_string(child, &xpath->instance_prefix);
721 else if (strcasecmp("InstanceFrom", child->key) == 0)
722 status = cf_util_get_string(child, &xpath->instance);
723 else if (strcasecmp("ValuesFrom", child->key) == 0)
724 status = cx_config_add_values("ValuesFrom", xpath, child);
726 WARNING("curl_xml plugin: Option `%s' not allowed here.", child->key);
732 } /* for (i = 0; i < ci->children_num; i++) */
735 cx_xpath_free(xpath);
739 if (xpath->type == NULL) {
740 WARNING("curl_xml plugin: `Type' missing in `xpath' block.");
741 cx_xpath_free(xpath);
745 if (db->list == NULL) {
746 db->list = llist_create();
747 if (db->list == NULL) {
748 ERROR("curl_xml plugin: list creation failed.");
749 cx_xpath_free(xpath);
754 name = strdup(xpath->path);
756 ERROR("curl_xml plugin: strdup failed.");
757 cx_xpath_free(xpath);
761 le = llentry_create(name, xpath);
763 ERROR("curl_xml plugin: llentry_create failed.");
764 cx_xpath_free(xpath);
769 llist_append(db->list, le);
771 } /* }}} int cx_config_add_xpath */
773 static int cx_config_add_namespace(cx_t *db, /* {{{ */
774 oconfig_item_t *ci) {
777 if ((ci->values_num != 2) || (ci->values[0].type != OCONFIG_TYPE_STRING) ||
778 (ci->values[1].type != OCONFIG_TYPE_STRING)) {
779 WARNING("curl_xml plugin: The `Namespace' option "
780 "needs exactly two string arguments.");
784 ns = realloc(db->namespaces,
785 sizeof(*db->namespaces) * (db->namespaces_num + 1));
787 ERROR("curl_xml plugin: realloc failed.");
791 ns = db->namespaces + db->namespaces_num;
792 memset(ns, 0, sizeof(*ns));
794 ns->prefix = strdup(ci->values[0].value.string);
795 ns->url = strdup(ci->values[1].value.string);
797 if ((ns->prefix == NULL) || (ns->url == NULL)) {
800 ERROR("curl_xml plugin: strdup failed.");
804 db->namespaces_num++;
806 } /* }}} int cx_config_add_namespace */
808 /* Initialize db->curl */
809 static int cx_init_curl(cx_t *db) /* {{{ */
811 db->curl = curl_easy_init();
812 if (db->curl == NULL) {
813 ERROR("curl_xml plugin: curl_easy_init failed.");
817 curl_easy_setopt(db->curl, CURLOPT_NOSIGNAL, 1L);
818 curl_easy_setopt(db->curl, CURLOPT_WRITEFUNCTION, cx_curl_callback);
819 curl_easy_setopt(db->curl, CURLOPT_WRITEDATA, db);
820 curl_easy_setopt(db->curl, CURLOPT_USERAGENT, COLLECTD_USERAGENT);
821 curl_easy_setopt(db->curl, CURLOPT_ERRORBUFFER, db->curl_errbuf);
822 curl_easy_setopt(db->curl, CURLOPT_FOLLOWLOCATION, 1L);
823 curl_easy_setopt(db->curl, CURLOPT_MAXREDIRS, 50L);
825 if (db->user != NULL) {
826 #ifdef HAVE_CURLOPT_USERNAME
827 curl_easy_setopt(db->curl, CURLOPT_USERNAME, db->user);
828 curl_easy_setopt(db->curl, CURLOPT_PASSWORD,
829 (db->pass == NULL) ? "" : db->pass);
831 size_t credentials_size;
833 credentials_size = strlen(db->user) + 2;
834 if (db->pass != NULL)
835 credentials_size += strlen(db->pass);
837 db->credentials = malloc(credentials_size);
838 if (db->credentials == NULL) {
839 ERROR("curl_xml plugin: malloc failed.");
843 snprintf(db->credentials, credentials_size, "%s:%s", db->user,
844 (db->pass == NULL) ? "" : db->pass);
845 curl_easy_setopt(db->curl, CURLOPT_USERPWD, db->credentials);
849 curl_easy_setopt(db->curl, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);
852 curl_easy_setopt(db->curl, CURLOPT_SSL_VERIFYPEER, db->verify_peer ? 1L : 0L);
853 curl_easy_setopt(db->curl, CURLOPT_SSL_VERIFYHOST, db->verify_host ? 2L : 0L);
854 if (db->cacert != NULL)
855 curl_easy_setopt(db->curl, CURLOPT_CAINFO, db->cacert);
856 if (db->headers != NULL)
857 curl_easy_setopt(db->curl, CURLOPT_HTTPHEADER, db->headers);
858 if (db->post_body != NULL)
859 curl_easy_setopt(db->curl, CURLOPT_POSTFIELDS, db->post_body);
861 #ifdef HAVE_CURLOPT_TIMEOUT_MS
862 if (db->timeout >= 0)
863 curl_easy_setopt(db->curl, CURLOPT_TIMEOUT_MS, (long)db->timeout);
865 curl_easy_setopt(db->curl, CURLOPT_TIMEOUT_MS,
866 (long)CDTIME_T_TO_MS(plugin_get_interval()));
870 } /* }}} int cx_init_curl */
872 static int cx_config_add_url(oconfig_item_t *ci) /* {{{ */
877 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
878 WARNING("curl_xml plugin: The `URL' block "
879 "needs exactly one string argument.");
883 db = calloc(1, sizeof(*db));
885 ERROR("curl_xml plugin: calloc failed.");
891 if (strcasecmp("URL", ci->key) == 0) {
892 status = cf_util_get_string(ci, &db->url);
898 ERROR("curl_xml plugin: cx_config: "
905 /* Fill the `cx_t' structure.. */
906 for (int i = 0; i < ci->children_num; i++) {
907 oconfig_item_t *child = ci->children + i;
909 if (strcasecmp("Instance", child->key) == 0)
910 status = cf_util_get_string(child, &db->instance);
911 else if (strcasecmp("Host", child->key) == 0)
912 status = cf_util_get_string(child, &db->host);
913 else if (strcasecmp("User", child->key) == 0)
914 status = cf_util_get_string(child, &db->user);
915 else if (strcasecmp("Password", child->key) == 0)
916 status = cf_util_get_string(child, &db->pass);
917 else if (strcasecmp("Digest", child->key) == 0)
918 status = cf_util_get_boolean(child, &db->digest);
919 else if (strcasecmp("VerifyPeer", child->key) == 0)
920 status = cf_util_get_boolean(child, &db->verify_peer);
921 else if (strcasecmp("VerifyHost", child->key) == 0)
922 status = cf_util_get_boolean(child, &db->verify_host);
923 else if (strcasecmp("CACert", child->key) == 0)
924 status = cf_util_get_string(child, &db->cacert);
925 else if (strcasecmp("xpath", child->key) == 0)
926 status = cx_config_add_xpath(db, child);
927 else if (strcasecmp("Header", child->key) == 0)
928 status = cx_config_append_string("Header", &db->headers, child);
929 else if (strcasecmp("Post", child->key) == 0)
930 status = cf_util_get_string(child, &db->post_body);
931 else if (strcasecmp("Namespace", child->key) == 0)
932 status = cx_config_add_namespace(db, child);
933 else if (strcasecmp("Timeout", child->key) == 0)
934 status = cf_util_get_int(child, &db->timeout);
935 else if (strcasecmp("Statistics", child->key) == 0) {
936 db->stats = curl_stats_from_config(child);
937 if (db->stats == NULL)
940 WARNING("curl_xml plugin: Option `%s' not allowed here.", child->key);
949 if (db->list == NULL) {
950 WARNING("curl_xml plugin: No (valid) `Key' block "
951 "within `URL' block `%s'.",
956 status = cx_init_curl(db);
959 /* If all went well, register this database for reading */
963 if (db->instance == NULL)
964 db->instance = strdup("default");
966 DEBUG("curl_xml plugin: Registering new read callback: %s", db->instance);
968 cb_name = ssnprintf_alloc("curl_xml-%s-%s", db->instance, db->url);
970 plugin_register_complex_read(/* group = */ "curl_xml", cb_name, cx_read,
973 .data = db, .free_func = cx_free,
982 } /* }}} int cx_config_add_url */
984 /* }}} End of configuration handling functions */
986 static int cx_config(oconfig_item_t *ci) /* {{{ */
995 for (int i = 0; i < ci->children_num; i++) {
996 oconfig_item_t *child = ci->children + i;
998 if (strcasecmp("URL", child->key) == 0) {
999 status = cx_config_add_url(child);
1005 WARNING("curl_xml plugin: Option `%s' not allowed here.", child->key);
1010 if ((success == 0) && (errors > 0)) {
1011 ERROR("curl_xml plugin: All statements failed.");
1016 } /* }}} int cx_config */
1018 static int cx_init(void) /* {{{ */
1020 /* Call this while collectd is still single-threaded to avoid
1021 * initialization issues in libgcrypt. */
1022 curl_global_init(CURL_GLOBAL_SSL);
1024 } /* }}} int cx_init */
1026 void module_register(void) {
1027 plugin_register_complex_config("curl_xml", cx_config);
1028 plugin_register_init("curl_xml", cx_init);
1029 } /* void module_register */