Merge pull request #2874 from elfiesmelfie/feat_virt_block_info
[collectd.git] / src / curl_json.c
1 /**
2  * collectd - src/curl_json.c
3  * Copyright (C) 2009       Doug MacEachern
4  * Copyright (C) 2006-2013  Florian octo 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  *   Doug MacEachern <dougm at hyperic.com>
21  *   Florian octo Forster <octo at collectd.org>
22  **/
23
24 #include "collectd.h"
25
26 #include "plugin.h"
27 #include "utils/avltree/avltree.h"
28 #include "utils/common/common.h"
29 #include "utils/curl_stats/curl_stats.h"
30 #include "utils_complain.h"
31
32 #include <sys/types.h>
33 #include <sys/un.h>
34
35 #include <curl/curl.h>
36
37 #include <yajl/yajl_parse.h>
38 #if HAVE_YAJL_YAJL_VERSION_H
39 #include <yajl/yajl_version.h>
40 #endif
41
42 #if defined(YAJL_MAJOR) && (YAJL_MAJOR > 1)
43 #define HAVE_YAJL_V2 1
44 #endif
45
46 #define CJ_DEFAULT_HOST "localhost"
47 #define CJ_ANY "*"
48 #define COUCH_MIN(x, y) ((x) < (y) ? (x) : (y))
49
50 struct cj_key_s;
51 typedef struct cj_key_s cj_key_t;
52 struct cj_key_s /* {{{ */
53 {
54   char *path;
55   char *type;
56   char *instance;
57 };
58 /* }}} */
59
60 /* cj_tree_entry_t is a union of either a metric configuration ("key") or a tree
61  * mapping array indexes / map keys to a descendant cj_tree_entry_t*. */
62 typedef struct {
63   enum { KEY, TREE } type;
64   union {
65     c_avl_tree_t *tree;
66     cj_key_t *key;
67   };
68 } cj_tree_entry_t;
69
70 /* cj_state_t is a stack providing the configuration relevant for the context
71  * that is currently being parsed. If entry->type == KEY, the parser should
72  * expect a metric (a numeric value). If entry->type == TREE, the parser should
73  * expect an array of map to descent into. If entry == NULL, no configuration
74  * exists for this part of the JSON structure. */
75 typedef struct {
76   cj_tree_entry_t *entry;
77   bool in_array;
78   int index;
79   char name[DATA_MAX_NAME_LEN];
80 } cj_state_t;
81
82 struct cj_s /* {{{ */
83 {
84   char *instance;
85   char *plugin_name;
86   char *host;
87
88   char *sock;
89
90   char *url;
91   char *user;
92   char *pass;
93   char *credentials;
94   bool digest;
95   bool verify_peer;
96   bool verify_host;
97   char *cacert;
98   struct curl_slist *headers;
99   char *post_body;
100   int timeout;
101   curl_stats_t *stats;
102
103   CURL *curl;
104   char curl_errbuf[CURL_ERROR_SIZE];
105
106   yajl_handle yajl;
107   c_avl_tree_t *tree;
108   int depth;
109   cj_state_t state[YAJL_MAX_DEPTH];
110 };
111 typedef struct cj_s cj_t; /* }}} */
112
113 #if HAVE_YAJL_V2
114 typedef size_t yajl_len_t;
115 #else
116 typedef unsigned int yajl_len_t;
117 #endif
118
119 static int cj_read(user_data_t *ud);
120 static void cj_submit_impl(cj_t *db, cj_key_t *key, value_t *value);
121
122 /* cj_submit is a function pointer to cj_submit_impl, allowing the unit-test to
123  * overwrite which function is called. */
124 static void (*cj_submit)(cj_t *, cj_key_t *, value_t *) = cj_submit_impl;
125
126 static size_t cj_curl_callback(void *buf, /* {{{ */
127                                size_t size, size_t nmemb, void *user_data) {
128   cj_t *db;
129   size_t len;
130   yajl_status status;
131
132   len = size * nmemb;
133
134   if (len == 0)
135     return len;
136
137   db = user_data;
138   if (db == NULL)
139     return 0;
140
141   status = yajl_parse(db->yajl, (unsigned char *)buf, len);
142   if (status == yajl_status_ok)
143     return len;
144 #if !HAVE_YAJL_V2
145   else if (status == yajl_status_insufficient_data)
146     return len;
147 #endif
148
149   unsigned char *msg =
150       yajl_get_error(db->yajl, /* verbose = */ 1,
151                      /* jsonText = */ (unsigned char *)buf, (unsigned int)len);
152   ERROR("curl_json plugin: yajl_parse failed: %s", msg);
153   yajl_free_error(db->yajl, msg);
154   return 0; /* abort write callback */
155 } /* }}} size_t cj_curl_callback */
156
157 static int cj_get_type(cj_key_t *key) {
158   if (key == NULL)
159     return -EINVAL;
160
161   const data_set_t *ds = plugin_get_ds(key->type);
162   if (ds == NULL) {
163     static char type[DATA_MAX_NAME_LEN] = "!!!invalid!!!";
164
165     assert(key->type != NULL);
166     if (strcmp(type, key->type) != 0) {
167       ERROR("curl_json plugin: Unable to look up DS type \"%s\".", key->type);
168       sstrncpy(type, key->type, sizeof(type));
169     }
170
171     return -1;
172   } else if (ds->ds_num > 1) {
173     static c_complain_t complaint = C_COMPLAIN_INIT_STATIC;
174
175     c_complain_once(
176         LOG_WARNING, &complaint,
177         "curl_json plugin: The type \"%s\" has more than one data source. "
178         "This is currently not supported. I will return the type of the "
179         "first data source, but this will likely lead to problems later on.",
180         key->type);
181   }
182
183   return ds->ds[0].type;
184 }
185
186 /* cj_load_key loads the configuration for "key" from the parent context and
187  * sets either .key or .tree in the current context. */
188 static int cj_load_key(cj_t *db, char const *key) {
189   if (db == NULL || key == NULL || db->depth <= 0)
190     return EINVAL;
191
192   sstrncpy(db->state[db->depth].name, key, sizeof(db->state[db->depth].name));
193
194   if (db->state[db->depth - 1].entry == NULL ||
195       db->state[db->depth - 1].entry->type != TREE) {
196     return 0;
197   }
198
199   c_avl_tree_t *tree = db->state[db->depth - 1].entry->tree;
200   cj_tree_entry_t *e = NULL;
201
202   if (c_avl_get(tree, key, (void *)&e) == 0) {
203     db->state[db->depth].entry = e;
204   } else if (c_avl_get(tree, CJ_ANY, (void *)&e) == 0) {
205     db->state[db->depth].entry = e;
206   } else {
207     db->state[db->depth].entry = NULL;
208   }
209
210   return 0;
211 }
212
213 static void cj_advance_array(cj_t *db) {
214   if (!db->state[db->depth].in_array)
215     return;
216
217   db->state[db->depth].index++;
218
219   char name[DATA_MAX_NAME_LEN];
220   snprintf(name, sizeof(name), "%d", db->state[db->depth].index);
221   cj_load_key(db, name);
222 }
223
224 /* yajl callbacks */
225 #define CJ_CB_ABORT 0
226 #define CJ_CB_CONTINUE 1
227
228 static int cj_cb_null(void *ctx) {
229   cj_advance_array(ctx);
230   return CJ_CB_CONTINUE;
231 }
232
233 static int cj_cb_number(void *ctx, const char *number, yajl_len_t number_len) {
234   cj_t *db = (cj_t *)ctx;
235
236   /* Create a null-terminated version of the string. */
237   char buffer[number_len + 1];
238   memcpy(buffer, number, number_len);
239   buffer[sizeof(buffer) - 1] = '\0';
240
241   if (db->state[db->depth].entry == NULL ||
242       db->state[db->depth].entry->type != KEY) {
243     if (db->state[db->depth].entry != NULL) {
244       NOTICE("curl_json plugin: Found \"%s\", but the configuration expects a "
245              "map.",
246              buffer);
247     }
248     cj_advance_array(ctx);
249     return CJ_CB_CONTINUE;
250   }
251
252   cj_key_t *key = db->state[db->depth].entry->key;
253
254   int type = cj_get_type(key);
255   value_t vt;
256   int status = parse_value(buffer, &vt, type);
257   if (status != 0) {
258     cj_advance_array(ctx);
259     return CJ_CB_CONTINUE;
260   }
261
262   cj_submit(db, key, &vt);
263   cj_advance_array(ctx);
264   return CJ_CB_CONTINUE;
265 } /* int cj_cb_number */
266
267 /* Queries the key-tree of the parent context for "in_name" and, if found,
268  * updates the "key" field of the current context. Otherwise, "key" is set to
269  * NULL. */
270 static int cj_cb_map_key(void *ctx, unsigned char const *in_name,
271                          yajl_len_t in_name_len) {
272   char name[in_name_len + 1];
273
274   memmove(name, in_name, in_name_len);
275   name[sizeof(name) - 1] = '\0';
276
277   if (cj_load_key(ctx, name) != 0)
278     return CJ_CB_ABORT;
279
280   return CJ_CB_CONTINUE;
281 }
282
283 static int cj_cb_string(void *ctx, const unsigned char *val, yajl_len_t len) {
284   /* Handle the string as if it was a number. */
285   return cj_cb_number(ctx, (const char *)val, len);
286 } /* int cj_cb_string */
287
288 static int cj_cb_boolean(void *ctx, int boolVal) {
289   if (boolVal)
290     return cj_cb_number(ctx, "1", 1);
291   else
292     return cj_cb_number(ctx, "0", 1);
293 } /* int cj_cb_boolean */
294
295 static int cj_cb_end(void *ctx) {
296   cj_t *db = (cj_t *)ctx;
297   memset(&db->state[db->depth], 0, sizeof(db->state[db->depth]));
298   db->depth--;
299   cj_advance_array(ctx);
300   return CJ_CB_CONTINUE;
301 }
302
303 static int cj_cb_start_map(void *ctx) {
304   cj_t *db = (cj_t *)ctx;
305
306   if ((db->depth + 1) >= YAJL_MAX_DEPTH) {
307     ERROR("curl_json plugin: %s depth exceeds max, aborting.",
308           db->url ? db->url : db->sock);
309     return CJ_CB_ABORT;
310   }
311   db->depth++;
312   return CJ_CB_CONTINUE;
313 }
314
315 static int cj_cb_end_map(void *ctx) { return cj_cb_end(ctx); }
316
317 static int cj_cb_start_array(void *ctx) {
318   cj_t *db = (cj_t *)ctx;
319
320   if ((db->depth + 1) >= YAJL_MAX_DEPTH) {
321     ERROR("curl_json plugin: %s depth exceeds max, aborting.",
322           db->url ? db->url : db->sock);
323     return CJ_CB_ABORT;
324   }
325   db->depth++;
326   db->state[db->depth].in_array = true;
327   db->state[db->depth].index = 0;
328
329   cj_load_key(db, "0");
330
331   return CJ_CB_CONTINUE;
332 }
333
334 static int cj_cb_end_array(void *ctx) {
335   cj_t *db = (cj_t *)ctx;
336   db->state[db->depth].in_array = false;
337   return cj_cb_end(ctx);
338 }
339
340 static yajl_callbacks ycallbacks = {
341     cj_cb_null,    /* null */
342     cj_cb_boolean, /* boolean */
343     NULL,          /* integer */
344     NULL,          /* double */
345     cj_cb_number,  cj_cb_string,      cj_cb_start_map, cj_cb_map_key,
346     cj_cb_end_map, cj_cb_start_array, cj_cb_end_array};
347
348 /* end yajl callbacks */
349
350 static void cj_key_free(cj_key_t *key) /* {{{ */
351 {
352   if (key == NULL)
353     return;
354
355   sfree(key->path);
356   sfree(key->type);
357   sfree(key->instance);
358
359   sfree(key);
360 } /* }}} void cj_key_free */
361
362 static void cj_tree_free(c_avl_tree_t *tree) /* {{{ */
363 {
364   char *name;
365   cj_tree_entry_t *e;
366
367   while (c_avl_pick(tree, (void *)&name, (void *)&e) == 0) {
368     sfree(name);
369
370     if (e->type == KEY)
371       cj_key_free(e->key);
372     else
373       cj_tree_free(e->tree);
374     sfree(e);
375   }
376
377   c_avl_destroy(tree);
378 } /* }}} void cj_tree_free */
379
380 static void cj_free(void *arg) /* {{{ */
381 {
382   cj_t *db;
383
384   DEBUG("curl_json plugin: cj_free (arg = %p);", arg);
385
386   db = (cj_t *)arg;
387
388   if (db == NULL)
389     return;
390
391   if (db->curl != NULL)
392     curl_easy_cleanup(db->curl);
393   db->curl = NULL;
394
395   if (db->tree != NULL)
396     cj_tree_free(db->tree);
397   db->tree = NULL;
398
399   sfree(db->instance);
400   sfree(db->plugin_name);
401   sfree(db->host);
402
403   sfree(db->sock);
404
405   sfree(db->url);
406   sfree(db->user);
407   sfree(db->pass);
408   sfree(db->credentials);
409   sfree(db->cacert);
410   sfree(db->post_body);
411   curl_slist_free_all(db->headers);
412   curl_stats_destroy(db->stats);
413
414   sfree(db);
415 } /* }}} void cj_free */
416
417 /* Configuration handling functions {{{ */
418
419 static c_avl_tree_t *cj_avl_create(void) {
420   return c_avl_create((int (*)(const void *, const void *))strcmp);
421 }
422
423 static int cj_config_append_string(const char *name,
424                                    struct curl_slist **dest, /* {{{ */
425                                    oconfig_item_t *ci) {
426   struct curl_slist *temp = NULL;
427   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
428     WARNING("curl_json plugin: `%s' needs exactly one string argument.", name);
429     return -1;
430   }
431
432   temp = curl_slist_append(*dest, ci->values[0].value.string);
433   if (temp == NULL)
434     return -1;
435
436   *dest = temp;
437
438   return 0;
439 } /* }}} int cj_config_append_string */
440
441 /* cj_append_key adds key to the configuration stored in db.
442  *
443  * For example:
444  * "httpd/requests/count",
445  * "httpd/requests/current" ->
446  * { "httpd": { "requests": { "count": $key, "current": $key } } }
447  */
448 static int cj_append_key(cj_t *db, cj_key_t *key) { /* {{{ */
449   if (db->tree == NULL)
450     db->tree = cj_avl_create();
451
452   c_avl_tree_t *tree = db->tree;
453
454   char const *start = key->path;
455   if (*start == '/')
456     ++start;
457
458   char const *end;
459   while ((end = strchr(start, '/')) != NULL) {
460     char name[PATH_MAX];
461
462     size_t len = end - start;
463     if (len == 0)
464       break;
465
466     len = COUCH_MIN(len, sizeof(name) - 1);
467     sstrncpy(name, start, len + 1);
468
469     cj_tree_entry_t *e;
470     if (c_avl_get(tree, name, (void *)&e) != 0) {
471       e = calloc(1, sizeof(*e));
472       if (e == NULL)
473         return ENOMEM;
474       e->type = TREE;
475       e->tree = cj_avl_create();
476
477       c_avl_insert(tree, strdup(name), e);
478     }
479
480     if (e->type != TREE)
481       return EINVAL;
482
483     tree = e->tree;
484     start = end + 1;
485   }
486
487   if (strlen(start) == 0) {
488     ERROR("curl_json plugin: invalid key: %s", key->path);
489     return -1;
490   }
491
492   cj_tree_entry_t *e = calloc(1, sizeof(*e));
493   if (e == NULL)
494     return ENOMEM;
495   e->type = KEY;
496   e->key = key;
497
498   c_avl_insert(tree, strdup(start), e);
499   return 0;
500 } /* }}} int cj_append_key */
501
502 static int cj_config_add_key(cj_t *db, /* {{{ */
503                              oconfig_item_t *ci) {
504   cj_key_t *key;
505   int status;
506
507   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
508     WARNING("curl_json plugin: The `Key' block "
509             "needs exactly one string argument.");
510     return -1;
511   }
512
513   key = calloc(1, sizeof(*key));
514   if (key == NULL) {
515     ERROR("curl_json plugin: calloc failed.");
516     return -1;
517   }
518
519   if (strcasecmp("Key", ci->key) == 0) {
520     status = cf_util_get_string(ci, &key->path);
521     if (status != 0) {
522       sfree(key);
523       return status;
524     }
525   } else {
526     ERROR("curl_json plugin: cj_config: "
527           "Invalid key: %s",
528           ci->key);
529     cj_key_free(key);
530     return -1;
531   }
532
533   status = 0;
534   for (int i = 0; i < ci->children_num; i++) {
535     oconfig_item_t *child = ci->children + i;
536
537     if (strcasecmp("Type", child->key) == 0)
538       status = cf_util_get_string(child, &key->type);
539     else if (strcasecmp("Instance", child->key) == 0)
540       status = cf_util_get_string(child, &key->instance);
541     else {
542       WARNING("curl_json plugin: Option `%s' not allowed here.", child->key);
543       status = -1;
544     }
545
546     if (status != 0)
547       break;
548   } /* for (i = 0; i < ci->children_num; i++) */
549
550   if (status != 0) {
551     cj_key_free(key);
552     return -1;
553   }
554
555   if (key->type == NULL) {
556     WARNING("curl_json plugin: `Type' missing in `Key' block.");
557     cj_key_free(key);
558     return -1;
559   }
560
561   status = cj_append_key(db, key);
562   if (status != 0) {
563     cj_key_free(key);
564     return -1;
565   }
566
567   return 0;
568 } /* }}} int cj_config_add_key */
569
570 static int cj_init_curl(cj_t *db) /* {{{ */
571 {
572   db->curl = curl_easy_init();
573   if (db->curl == NULL) {
574     ERROR("curl_json plugin: curl_easy_init failed.");
575     return -1;
576   }
577
578   curl_easy_setopt(db->curl, CURLOPT_NOSIGNAL, 1L);
579   curl_easy_setopt(db->curl, CURLOPT_WRITEFUNCTION, cj_curl_callback);
580   curl_easy_setopt(db->curl, CURLOPT_WRITEDATA, db);
581   curl_easy_setopt(db->curl, CURLOPT_USERAGENT, COLLECTD_USERAGENT);
582   curl_easy_setopt(db->curl, CURLOPT_ERRORBUFFER, db->curl_errbuf);
583   curl_easy_setopt(db->curl, CURLOPT_FOLLOWLOCATION, 1L);
584   curl_easy_setopt(db->curl, CURLOPT_MAXREDIRS, 50L);
585
586   if (db->user != NULL) {
587 #ifdef HAVE_CURLOPT_USERNAME
588     curl_easy_setopt(db->curl, CURLOPT_USERNAME, db->user);
589     curl_easy_setopt(db->curl, CURLOPT_PASSWORD,
590                      (db->pass == NULL) ? "" : db->pass);
591 #else
592     size_t credentials_size;
593
594     credentials_size = strlen(db->user) + 2;
595     if (db->pass != NULL)
596       credentials_size += strlen(db->pass);
597
598     db->credentials = malloc(credentials_size);
599     if (db->credentials == NULL) {
600       ERROR("curl_json plugin: malloc failed.");
601       return -1;
602     }
603
604     snprintf(db->credentials, credentials_size, "%s:%s", db->user,
605              (db->pass == NULL) ? "" : db->pass);
606     curl_easy_setopt(db->curl, CURLOPT_USERPWD, db->credentials);
607 #endif
608
609     if (db->digest)
610       curl_easy_setopt(db->curl, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);
611   }
612
613   curl_easy_setopt(db->curl, CURLOPT_SSL_VERIFYPEER, (long)db->verify_peer);
614   curl_easy_setopt(db->curl, CURLOPT_SSL_VERIFYHOST, db->verify_host ? 2L : 0L);
615   if (db->cacert != NULL)
616     curl_easy_setopt(db->curl, CURLOPT_CAINFO, db->cacert);
617   if (db->headers != NULL)
618     curl_easy_setopt(db->curl, CURLOPT_HTTPHEADER, db->headers);
619   if (db->post_body != NULL)
620     curl_easy_setopt(db->curl, CURLOPT_POSTFIELDS, db->post_body);
621
622 #ifdef HAVE_CURLOPT_TIMEOUT_MS
623   if (db->timeout >= 0)
624     curl_easy_setopt(db->curl, CURLOPT_TIMEOUT_MS, (long)db->timeout);
625   else
626     curl_easy_setopt(db->curl, CURLOPT_TIMEOUT_MS,
627                      (long)CDTIME_T_TO_MS(plugin_get_interval()));
628 #endif
629
630   return 0;
631 } /* }}} int cj_init_curl */
632
633 static int cj_config_add_url(oconfig_item_t *ci) /* {{{ */
634 {
635   cj_t *db;
636   int status = 0;
637   cdtime_t interval = 0;
638
639   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
640     WARNING("curl_json plugin: The `URL' block "
641             "needs exactly one string argument.");
642     return -1;
643   }
644
645   db = calloc(1, sizeof(*db));
646   if (db == NULL) {
647     ERROR("curl_json plugin: calloc failed.");
648     return -1;
649   }
650
651   db->timeout = -1;
652
653   if (strcasecmp("URL", ci->key) == 0)
654     status = cf_util_get_string(ci, &db->url);
655   else if (strcasecmp("Sock", ci->key) == 0)
656     status = cf_util_get_string(ci, &db->sock);
657   else {
658     ERROR("curl_json plugin: cj_config: "
659           "Invalid key: %s",
660           ci->key);
661     cj_free(db);
662     return -1;
663   }
664   if (status != 0) {
665     sfree(db);
666     return status;
667   }
668
669   /* Fill the `cj_t' structure.. */
670   for (int i = 0; i < ci->children_num; i++) {
671     oconfig_item_t *child = ci->children + i;
672
673     if (strcasecmp("Instance", child->key) == 0)
674       status = cf_util_get_string(child, &db->instance);
675     else if (strcasecmp("Plugin", child->key) == 0)
676       status = cf_util_get_string(child, &db->plugin_name);
677     else if (strcasecmp("Host", child->key) == 0)
678       status = cf_util_get_string(child, &db->host);
679     else if (db->url && strcasecmp("User", child->key) == 0)
680       status = cf_util_get_string(child, &db->user);
681     else if (db->url && strcasecmp("Password", child->key) == 0)
682       status = cf_util_get_string(child, &db->pass);
683     else if (strcasecmp("Digest", child->key) == 0)
684       status = cf_util_get_boolean(child, &db->digest);
685     else if (db->url && strcasecmp("VerifyPeer", child->key) == 0)
686       status = cf_util_get_boolean(child, &db->verify_peer);
687     else if (db->url && strcasecmp("VerifyHost", child->key) == 0)
688       status = cf_util_get_boolean(child, &db->verify_host);
689     else if (db->url && strcasecmp("CACert", child->key) == 0)
690       status = cf_util_get_string(child, &db->cacert);
691     else if (db->url && strcasecmp("Header", child->key) == 0)
692       status = cj_config_append_string("Header", &db->headers, child);
693     else if (db->url && strcasecmp("Post", child->key) == 0)
694       status = cf_util_get_string(child, &db->post_body);
695     else if (strcasecmp("Key", child->key) == 0)
696       status = cj_config_add_key(db, child);
697     else if (strcasecmp("Interval", child->key) == 0)
698       status = cf_util_get_cdtime(child, &interval);
699     else if (strcasecmp("Timeout", child->key) == 0)
700       status = cf_util_get_int(child, &db->timeout);
701     else if (strcasecmp("Statistics", child->key) == 0) {
702       db->stats = curl_stats_from_config(child);
703       if (db->stats == NULL)
704         status = -1;
705     } else {
706       WARNING("curl_json plugin: Option `%s' not allowed here.", child->key);
707       status = -1;
708     }
709
710     if (status != 0)
711       break;
712   }
713
714   if (status == 0) {
715     if (db->tree == NULL) {
716       WARNING("curl_json plugin: No (valid) `Key' block within `%s' \"`%s'\".",
717               db->url ? "URL" : "Sock", db->url ? db->url : db->sock);
718       status = -1;
719     }
720     if (status == 0 && db->url)
721       status = cj_init_curl(db);
722   }
723
724   /* If all went well, register this database for reading */
725   if (status == 0) {
726     char *cb_name;
727
728     if (db->instance == NULL)
729       db->instance = strdup("default");
730
731     DEBUG("curl_json plugin: Registering new read callback: %s", db->instance);
732
733     cb_name = ssnprintf_alloc("curl_json-%s-%s", db->instance,
734                               db->url ? db->url : db->sock);
735
736     plugin_register_complex_read(/* group = */ NULL, cb_name, cj_read, interval,
737                                  &(user_data_t){
738                                      .data = db, .free_func = cj_free,
739                                  });
740     sfree(cb_name);
741   } else {
742     cj_free(db);
743     return -1;
744   }
745
746   return 0;
747 }
748 /* }}} int cj_config_add_database */
749
750 static int cj_config(oconfig_item_t *ci) /* {{{ */
751 {
752   int success;
753   int errors;
754   int status;
755
756   success = 0;
757   errors = 0;
758
759   for (int i = 0; i < ci->children_num; i++) {
760     oconfig_item_t *child = ci->children + i;
761
762     if (strcasecmp("Sock", child->key) == 0 ||
763         strcasecmp("URL", child->key) == 0) {
764       status = cj_config_add_url(child);
765       if (status == 0)
766         success++;
767       else
768         errors++;
769     } else {
770       WARNING("curl_json plugin: Option `%s' not allowed here.", child->key);
771       errors++;
772     }
773   }
774
775   if ((success == 0) && (errors > 0)) {
776     ERROR("curl_json plugin: All statements failed.");
777     return -1;
778   }
779
780   return 0;
781 } /* }}} int cj_config */
782
783 /* }}} End of configuration handling functions */
784
785 static const char *cj_host(cj_t *db) /* {{{ */
786 {
787   if ((db->host == NULL) || (strcmp("", db->host) == 0) ||
788       (strcmp(CJ_DEFAULT_HOST, db->host) == 0))
789     return hostname_g;
790   return db->host;
791 } /* }}} cj_host */
792
793 static void cj_submit_impl(cj_t *db, cj_key_t *key, value_t *value) /* {{{ */
794 {
795   value_list_t vl = VALUE_LIST_INIT;
796
797   vl.values = value;
798   vl.values_len = 1;
799
800   if (key->instance == NULL) {
801     int len = 0;
802     for (int i = 0; i < db->depth; i++)
803       len += snprintf(vl.type_instance + len, sizeof(vl.type_instance) - len,
804                       i ? "-%s" : "%s", db->state[i + 1].name);
805   } else
806     sstrncpy(vl.type_instance, key->instance, sizeof(vl.type_instance));
807
808   sstrncpy(vl.host, cj_host(db), sizeof(vl.host));
809   sstrncpy(vl.plugin, (db->plugin_name != NULL) ? db->plugin_name : "curl_json",
810            sizeof(vl.plugin));
811   sstrncpy(vl.plugin_instance, db->instance, sizeof(vl.plugin_instance));
812   sstrncpy(vl.type, key->type, sizeof(vl.type));
813
814   plugin_dispatch_values(&vl);
815 } /* }}} int cj_submit_impl */
816
817 static int cj_sock_perform(cj_t *db) /* {{{ */
818 {
819   struct sockaddr_un sa_unix = {
820       .sun_family = AF_UNIX,
821   };
822   sstrncpy(sa_unix.sun_path, db->sock, sizeof(sa_unix.sun_path));
823
824   int fd = socket(AF_UNIX, SOCK_STREAM, 0);
825   if (fd < 0)
826     return -1;
827   if (connect(fd, (struct sockaddr *)&sa_unix, sizeof(sa_unix)) < 0) {
828     ERROR("curl_json plugin: connect(%s) failed: %s",
829           (db->sock != NULL) ? db->sock : "<null>", STRERRNO);
830     close(fd);
831     return -1;
832   }
833
834   ssize_t red;
835   do {
836     unsigned char buffer[4096];
837     red = read(fd, buffer, sizeof(buffer));
838     if (red < 0) {
839       ERROR("curl_json plugin: read(%s) failed: %s",
840             (db->sock != NULL) ? db->sock : "<null>", STRERRNO);
841       close(fd);
842       return -1;
843     }
844     if (!cj_curl_callback(buffer, red, 1, db))
845       break;
846   } while (red > 0);
847   close(fd);
848   return 0;
849 } /* }}} int cj_sock_perform */
850
851 static int cj_curl_perform(cj_t *db) /* {{{ */
852 {
853   int status;
854   long rc;
855   char *url;
856
857   curl_easy_setopt(db->curl, CURLOPT_URL, db->url);
858
859   status = curl_easy_perform(db->curl);
860   if (status != CURLE_OK) {
861     ERROR("curl_json plugin: curl_easy_perform failed with status %i: %s (%s)",
862           status, db->curl_errbuf, db->url);
863     return -1;
864   }
865   if (db->stats != NULL)
866     curl_stats_dispatch(db->stats, db->curl, cj_host(db), "curl_json",
867                         db->instance);
868
869   curl_easy_getinfo(db->curl, CURLINFO_EFFECTIVE_URL, &url);
870   curl_easy_getinfo(db->curl, CURLINFO_RESPONSE_CODE, &rc);
871
872   /* The response code is zero if a non-HTTP transport was used. */
873   if ((rc != 0) && (rc != 200)) {
874     ERROR("curl_json plugin: curl_easy_perform failed with "
875           "response code %ld (%s)",
876           rc, url);
877     return -1;
878   }
879   return 0;
880 } /* }}} int cj_curl_perform */
881
882 static int cj_perform(cj_t *db) /* {{{ */
883 {
884   int status;
885   yajl_handle yprev = db->yajl;
886
887   db->yajl = yajl_alloc(&ycallbacks,
888 #if HAVE_YAJL_V2
889                         /* alloc funcs = */ NULL,
890 #else
891                         /* alloc funcs = */ NULL, NULL,
892 #endif
893                         /* context = */ (void *)db);
894   if (db->yajl == NULL) {
895     ERROR("curl_json plugin: yajl_alloc failed.");
896     db->yajl = yprev;
897     return -1;
898   }
899
900   if (db->url)
901     status = cj_curl_perform(db);
902   else
903     status = cj_sock_perform(db);
904   if (status < 0) {
905     yajl_free(db->yajl);
906     db->yajl = yprev;
907     return -1;
908   }
909
910 #if HAVE_YAJL_V2
911   status = yajl_complete_parse(db->yajl);
912 #else
913   status = yajl_parse_complete(db->yajl);
914 #endif
915   if (status != yajl_status_ok) {
916     unsigned char *errmsg;
917
918     errmsg = yajl_get_error(db->yajl, /* verbose = */ 0,
919                             /* jsonText = */ NULL, /* jsonTextLen = */ 0);
920     ERROR("curl_json plugin: yajl_parse_complete failed: %s", (char *)errmsg);
921     yajl_free_error(db->yajl, errmsg);
922     yajl_free(db->yajl);
923     db->yajl = yprev;
924     return -1;
925   }
926
927   yajl_free(db->yajl);
928   db->yajl = yprev;
929   return 0;
930 } /* }}} int cj_perform */
931
932 static int cj_read(user_data_t *ud) /* {{{ */
933 {
934   cj_t *db;
935
936   if ((ud == NULL) || (ud->data == NULL)) {
937     ERROR("curl_json plugin: cj_read: Invalid user data.");
938     return -1;
939   }
940
941   db = (cj_t *)ud->data;
942
943   db->depth = 0;
944   memset(&db->state, 0, sizeof(db->state));
945
946   /* This is not a compound literal because EPEL6's GCC is not cool enough to
947    * handle anonymous unions within compound literals. */
948   cj_tree_entry_t root = {0};
949   root.type = TREE;
950   root.tree = db->tree;
951   db->state[0].entry = &root;
952
953   int status = cj_perform(db);
954
955   db->state[0].entry = NULL;
956
957   return status;
958 } /* }}} int cj_read */
959
960 static int cj_init(void) /* {{{ */
961 {
962   /* Call this while collectd is still single-threaded to avoid
963    * initialization issues in libgcrypt. */
964   curl_global_init(CURL_GLOBAL_SSL);
965   return 0;
966 } /* }}} int cj_init */
967
968 void module_register(void) {
969   plugin_register_complex_config("curl_json", cj_config);
970   plugin_register_init("curl_json", cj_init);
971 } /* void module_register */