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