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