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