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