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 **/
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"
31 #include <sys/types.h>
32 #include <sys/un.h>
34 #include <curl/curl.h>
36 #include <yajl/yajl_parse.h>
37 #if HAVE_YAJL_YAJL_VERSION_H
38 # include <yajl/yajl_version.h>
39 #endif
41 #if defined(YAJL_MAJOR) && (YAJL_MAJOR > 1)
42 # define HAVE_YAJL_V2 1
43 #endif
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))
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 /* }}} */
62 struct cj_s /* {{{ */
63 {
64 char *instance;
65 char *host;
67 char *sock;
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;
82 CURL *curl;
83 char curl_errbuf[CURL_ERROR_SIZE];
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; /* }}} */
101 #if HAVE_YAJL_V2
102 typedef size_t yajl_len_t;
103 #else
104 typedef unsigned int yajl_len_t;
105 #endif
107 static int cj_read (user_data_t *ud);
108 static void cj_submit (cj_t *db, cj_key_t *key, value_t *value);
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;
117 len = size * nmemb;
119 if (len <= 0)
120 return (len);
122 db = user_data;
123 if (db == NULL)
124 return (0);
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
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 */
141 static int cj_get_type (cj_key_t *key)
142 {
143 const data_set_t *ds;
145 ds = plugin_get_ds (key->type);
146 if (ds == NULL)
147 {
148 static char type[DATA_MAX_NAME_LEN] = "!!!invalid!!!";
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 }
158 return -1;
159 }
160 else if (ds->ds_num > 1)
161 {
162 static c_complain_t complaint = C_COMPLAIN_INIT_STATIC;
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 }
171 return ds->ds[0].type;
172 }
174 static int cj_cb_map_key (void *ctx, const unsigned char *val,
175 yajl_len_t len);
177 static void cj_cb_inc_array_index (void *ctx, _Bool update_key)
178 {
179 cj_t *db = (cj_t *)ctx;
181 if (!db->state[db->depth].in_array)
182 return;
184 db->state[db->depth].index++;
186 if (update_key)
187 {
188 char name[DATA_MAX_NAME_LEN];
190 ssnprintf (name, sizeof (name), "%d", db->state[db->depth].index - 1);
192 cj_cb_map_key (ctx, (unsigned char *)name, (yajl_len_t) strlen (name));
193 }
194 }
196 /* yajl callbacks */
197 #define CJ_CB_ABORT 0
198 #define CJ_CB_CONTINUE 1
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 }
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 }
212 static int cj_cb_number (void *ctx,
213 const char *number, yajl_len_t number_len)
214 {
215 char buffer[number_len + 1];
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;
223 /* Create a null-terminated version of the string. */
224 memcpy (buffer, number, number_len);
225 buffer[sizeof (buffer) - 1] = 0;
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 }
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 }
250 cj_submit (db, key, &vt);
251 return (CJ_CB_CONTINUE);
252 } /* int cj_cb_number */
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;
263 tree = db->state[db->depth-1].tree;
265 if (tree != NULL)
266 {
267 cj_key_t *value = NULL;
268 char *name;
269 size_t name_len;
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;
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 }
297 return (CJ_CB_CONTINUE);
298 }
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 */
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 }
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 }
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 }
333 static int cj_cb_end_map (void *ctx)
334 {
335 return cj_cb_end (ctx);
336 }
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 }
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 }
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 };
370 /* end yajl callbacks */
372 static void cj_key_free (cj_key_t *key) /* {{{ */
373 {
374 if (key == NULL)
375 return;
377 sfree (key->path);
378 sfree (key->type);
379 sfree (key->instance);
381 sfree (key);
382 } /* }}} void cj_key_free */
384 static void cj_tree_free (c_avl_tree_t *tree) /* {{{ */
385 {
386 char *name;
387 void *value;
389 while (c_avl_pick (tree, (void *) &name, (void *) &value) == 0)
390 {
391 cj_key_t *key = (cj_key_t *)value;
393 if (CJ_IS_KEY(key))
394 cj_key_free (key);
395 else
396 cj_tree_free ((c_avl_tree_t *)value);
398 sfree (name);
399 }
401 c_avl_destroy (tree);
402 } /* }}} void cj_tree_free */
404 static void cj_free (void *arg) /* {{{ */
405 {
406 cj_t *db;
408 DEBUG ("curl_json plugin: cj_free (arg = %p);", arg);
410 db = (cj_t *) arg;
412 if (db == NULL)
413 return;
415 if (db->curl != NULL)
416 curl_easy_cleanup (db->curl);
417 db->curl = NULL;
419 if (db->tree != NULL)
420 cj_tree_free (db->tree);
421 db->tree = NULL;
423 sfree (db->instance);
424 sfree (db->host);
426 sfree (db->sock);
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);
436 sfree (db);
437 } /* }}} void cj_free */
439 /* Configuration handling functions {{{ */
441 static c_avl_tree_t *cj_avl_create(void)
442 {
443 return c_avl_create ((int (*) (const void *, const void *)) strcmp);
444 }
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 }
455 *dest = curl_slist_append(*dest, ci->values[0].value.string);
456 if (*dest == NULL)
457 return (-1);
459 return (0);
460 } /* }}} int cj_config_append_string */
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;
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 }
477 key = calloc (1, sizeof (*key));
478 if (key == NULL)
479 {
480 ERROR ("curl_json plugin: calloc failed.");
481 return (-1);
482 }
483 key->magic = CJ_KEY_MAGIC;
485 if (strcasecmp ("Key", ci->key) == 0)
486 {
487 status = cf_util_get_string (ci, &key->path);
488 if (status != 0)
489 {
490 sfree (key);
491 return (status);
492 }
493 }
494 else
495 {
496 ERROR ("curl_json plugin: cj_config: "
497 "Invalid key: %s", ci->key);
498 cj_key_free (key);
499 return (-1);
500 }
502 status = 0;
503 for (i = 0; i < ci->children_num; i++)
504 {
505 oconfig_item_t *child = ci->children + i;
507 if (strcasecmp ("Type", child->key) == 0)
508 status = cf_util_get_string (child, &key->type);
509 else if (strcasecmp ("Instance", child->key) == 0)
510 status = cf_util_get_string (child, &key->instance);
511 else
512 {
513 WARNING ("curl_json plugin: Option `%s' not allowed here.", child->key);
514 status = -1;
515 }
517 if (status != 0)
518 break;
519 } /* for (i = 0; i < ci->children_num; i++) */
521 if (status != 0)
522 {
523 cj_key_free (key);
524 return (-1);
525 }
527 if (key->type == NULL)
528 {
529 WARNING ("curl_json plugin: `Type' missing in `Key' block.");
530 cj_key_free (key);
531 return (-1);
532 }
534 /* store path in a tree that will match the json map structure, example:
535 * "httpd/requests/count",
536 * "httpd/requests/current" ->
537 * { "httpd": { "requests": { "count": $key, "current": $key } } }
538 */
539 char *ptr;
540 char *name;
541 c_avl_tree_t *tree;
543 if (db->tree == NULL)
544 db->tree = cj_avl_create();
546 tree = db->tree;
547 ptr = key->path;
548 if (*ptr == '/')
549 ++ptr;
551 name = ptr;
552 while ((ptr = strchr (name, '/')) != NULL)
553 {
554 char ent[PATH_MAX];
555 c_avl_tree_t *value;
556 size_t len;
558 len = ptr - name;
559 if (len == 0)
560 break;
562 len = COUCH_MIN(len, sizeof (ent)-1);
563 sstrncpy (ent, name, len+1);
565 if (c_avl_get (tree, ent, (void *) &value) != 0)
566 {
567 value = cj_avl_create ();
568 c_avl_insert (tree, strdup (ent), value);
569 }
571 tree = value;
572 name = ptr + 1;
573 }
575 if (strlen (name) == 0)
576 {
577 ERROR ("curl_json plugin: invalid key: %s", key->path);
578 cj_key_free (key);
579 return (-1);
580 }
582 c_avl_insert (tree, strdup (name), key);
583 return (status);
584 } /* }}} int cj_config_add_key */
586 static int cj_init_curl (cj_t *db) /* {{{ */
587 {
588 db->curl = curl_easy_init ();
589 if (db->curl == NULL)
590 {
591 ERROR ("curl_json plugin: curl_easy_init failed.");
592 return (-1);
593 }
595 curl_easy_setopt (db->curl, CURLOPT_NOSIGNAL, 1L);
596 curl_easy_setopt (db->curl, CURLOPT_WRITEFUNCTION, cj_curl_callback);
597 curl_easy_setopt (db->curl, CURLOPT_WRITEDATA, db);
598 curl_easy_setopt (db->curl, CURLOPT_USERAGENT, COLLECTD_USERAGENT);
599 curl_easy_setopt (db->curl, CURLOPT_ERRORBUFFER, db->curl_errbuf);
600 curl_easy_setopt (db->curl, CURLOPT_URL, db->url);
601 curl_easy_setopt (db->curl, CURLOPT_FOLLOWLOCATION, 1L);
602 curl_easy_setopt (db->curl, CURLOPT_MAXREDIRS, 50L);
604 if (db->user != NULL)
605 {
606 #ifdef HAVE_CURLOPT_USERNAME
607 curl_easy_setopt (db->curl, CURLOPT_USERNAME, db->user);
608 curl_easy_setopt (db->curl, CURLOPT_PASSWORD,
609 (db->pass == NULL) ? "" : db->pass);
610 #else
611 size_t credentials_size;
613 credentials_size = strlen (db->user) + 2;
614 if (db->pass != NULL)
615 credentials_size += strlen (db->pass);
617 db->credentials = malloc (credentials_size);
618 if (db->credentials == NULL)
619 {
620 ERROR ("curl_json plugin: malloc failed.");
621 return (-1);
622 }
624 ssnprintf (db->credentials, credentials_size, "%s:%s",
625 db->user, (db->pass == NULL) ? "" : db->pass);
626 curl_easy_setopt (db->curl, CURLOPT_USERPWD, db->credentials);
627 #endif
629 if (db->digest)
630 curl_easy_setopt (db->curl, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);
631 }
633 curl_easy_setopt (db->curl, CURLOPT_SSL_VERIFYPEER, (long) db->verify_peer);
634 curl_easy_setopt (db->curl, CURLOPT_SSL_VERIFYHOST,
635 db->verify_host ? 2L : 0L);
636 if (db->cacert != NULL)
637 curl_easy_setopt (db->curl, CURLOPT_CAINFO, db->cacert);
638 if (db->headers != NULL)
639 curl_easy_setopt (db->curl, CURLOPT_HTTPHEADER, db->headers);
640 if (db->post_body != NULL)
641 curl_easy_setopt (db->curl, CURLOPT_POSTFIELDS, db->post_body);
643 #ifdef HAVE_CURLOPT_TIMEOUT_MS
644 if (db->timeout >= 0)
645 curl_easy_setopt (db->curl, CURLOPT_TIMEOUT_MS, (long) db->timeout);
646 else if (db->interval > 0)
647 curl_easy_setopt (db->curl, CURLOPT_TIMEOUT_MS, (long) CDTIME_T_TO_MS(db->timeout));
648 else
649 curl_easy_setopt (db->curl, CURLOPT_TIMEOUT_MS, (long) CDTIME_T_TO_MS(plugin_get_interval()));
650 #endif
652 return (0);
653 } /* }}} int cj_init_curl */
655 static int cj_config_add_url (oconfig_item_t *ci) /* {{{ */
656 {
657 cj_t *db;
658 int status = 0;
659 int i;
661 if ((ci->values_num != 1)
662 || (ci->values[0].type != OCONFIG_TYPE_STRING))
663 {
664 WARNING ("curl_json plugin: The `URL' block "
665 "needs exactly one string argument.");
666 return (-1);
667 }
669 db = calloc (1, sizeof (*db));
670 if (db == NULL)
671 {
672 ERROR ("curl_json plugin: calloc failed.");
673 return (-1);
674 }
676 db->timeout = -1;
678 if (strcasecmp ("URL", ci->key) == 0)
679 status = cf_util_get_string (ci, &db->url);
680 else if (strcasecmp ("Sock", ci->key) == 0)
681 status = cf_util_get_string (ci, &db->sock);
682 else
683 {
684 ERROR ("curl_json plugin: cj_config: "
685 "Invalid key: %s", ci->key);
686 cj_free (db);
687 return (-1);
688 }
689 if (status != 0)
690 {
691 sfree (db);
692 return (status);
693 }
695 /* Fill the `cj_t' structure.. */
696 for (i = 0; i < ci->children_num; i++)
697 {
698 oconfig_item_t *child = ci->children + i;
700 if (strcasecmp ("Instance", child->key) == 0)
701 status = cf_util_get_string (child, &db->instance);
702 else if (strcasecmp ("Host", child->key) == 0)
703 status = cf_util_get_string (child, &db->host);
704 else if (db->url && strcasecmp ("User", child->key) == 0)
705 status = cf_util_get_string (child, &db->user);
706 else if (db->url && strcasecmp ("Password", child->key) == 0)
707 status = cf_util_get_string (child, &db->pass);
708 else if (strcasecmp ("Digest", child->key) == 0)
709 status = cf_util_get_boolean (child, &db->digest);
710 else if (db->url && strcasecmp ("VerifyPeer", child->key) == 0)
711 status = cf_util_get_boolean (child, &db->verify_peer);
712 else if (db->url && strcasecmp ("VerifyHost", child->key) == 0)
713 status = cf_util_get_boolean (child, &db->verify_host);
714 else if (db->url && strcasecmp ("CACert", child->key) == 0)
715 status = cf_util_get_string (child, &db->cacert);
716 else if (db->url && strcasecmp ("Header", child->key) == 0)
717 status = cj_config_append_string ("Header", &db->headers, child);
718 else if (db->url && strcasecmp ("Post", child->key) == 0)
719 status = cf_util_get_string (child, &db->post_body);
720 else if (strcasecmp ("Key", child->key) == 0)
721 status = cj_config_add_key (db, child);
722 else if (strcasecmp ("Interval", child->key) == 0)
723 status = cf_util_get_cdtime(child, &db->interval);
724 else if (strcasecmp ("Timeout", child->key) == 0)
725 status = cf_util_get_int (child, &db->timeout);
726 else
727 {
728 WARNING ("curl_json plugin: Option `%s' not allowed here.", child->key);
729 status = -1;
730 }
732 if (status != 0)
733 break;
734 }
736 if (status == 0)
737 {
738 if (db->tree == NULL)
739 {
740 WARNING ("curl_json plugin: No (valid) `Key' block within `%s' \"`%s'\".",
741 db->url ? "URL" : "Sock", db->url ? db->url : db->sock);
742 status = -1;
743 }
744 if (status == 0 && db->url)
745 status = cj_init_curl (db);
746 }
748 /* If all went well, register this database for reading */
749 if (status == 0)
750 {
751 user_data_t ud;
752 char *cb_name;
754 if (db->instance == NULL)
755 db->instance = strdup("default");
757 DEBUG ("curl_json plugin: Registering new read callback: %s",
758 db->instance);
760 memset (&ud, 0, sizeof (ud));
761 ud.data = (void *) db;
762 ud.free_func = cj_free;
764 cb_name = ssnprintf_alloc ("curl_json-%s-%s",
765 db->instance, db->url ? db->url : db->sock);
767 plugin_register_complex_read (/* group = */ NULL, cb_name, cj_read,
768 /* interval = */ db->interval,
769 &ud);
770 sfree (cb_name);
771 }
772 else
773 {
774 cj_free (db);
775 return (-1);
776 }
778 return (0);
779 }
780 /* }}} int cj_config_add_database */
782 static int cj_config (oconfig_item_t *ci) /* {{{ */
783 {
784 int success;
785 int errors;
786 int status;
787 int i;
789 success = 0;
790 errors = 0;
792 for (i = 0; i < ci->children_num; i++)
793 {
794 oconfig_item_t *child = ci->children + i;
796 if (strcasecmp ("Sock", child->key) == 0
797 || strcasecmp ("URL", child->key) == 0)
798 {
799 status = cj_config_add_url (child);
800 if (status == 0)
801 success++;
802 else
803 errors++;
804 }
805 else
806 {
807 WARNING ("curl_json plugin: Option `%s' not allowed here.", child->key);
808 errors++;
809 }
810 }
812 if ((success == 0) && (errors > 0))
813 {
814 ERROR ("curl_json plugin: All statements failed.");
815 return (-1);
816 }
818 return (0);
819 } /* }}} int cj_config */
821 /* }}} End of configuration handling functions */
823 static void cj_submit (cj_t *db, cj_key_t *key, value_t *value) /* {{{ */
824 {
825 value_list_t vl = VALUE_LIST_INIT;
826 char *host;
828 vl.values = value;
829 vl.values_len = 1;
831 if ((db->host == NULL)
832 || (strcmp ("", db->host) == 0)
833 || (strcmp (CJ_DEFAULT_HOST, db->host) == 0))
834 host = hostname_g;
835 else
836 host = db->host;
838 if (key->instance == NULL)
839 {
840 int i, len = 0;
841 for (i = 0; i < db->depth; i++)
842 len += ssnprintf(vl.type_instance+len, sizeof(vl.type_instance)-len,
843 i ? "-%s" : "%s", db->state[i+1].name);
844 }
845 else
846 sstrncpy (vl.type_instance, key->instance, sizeof (vl.type_instance));
848 sstrncpy (vl.host, host, sizeof (vl.host));
849 sstrncpy (vl.plugin, "curl_json", sizeof (vl.plugin));
850 sstrncpy (vl.plugin_instance, db->instance, sizeof (vl.plugin_instance));
851 sstrncpy (vl.type, key->type, sizeof (vl.type));
853 if (db->interval > 0)
854 vl.interval = db->interval;
856 plugin_dispatch_values (&vl);
857 } /* }}} int cj_submit */
859 static int cj_sock_perform (cj_t *db) /* {{{ */
860 {
861 char errbuf[1024];
862 struct sockaddr_un sa_unix = { 0 };
863 sa_unix.sun_family = AF_UNIX;
864 sstrncpy (sa_unix.sun_path, db->sock, sizeof (sa_unix.sun_path));
866 int fd = socket (AF_UNIX, SOCK_STREAM, 0);
867 if (fd < 0)
868 return (-1);
869 if (connect (fd, (struct sockaddr *)&sa_unix, sizeof(sa_unix)) < 0)
870 {
871 ERROR ("curl_json plugin: connect(%s) failed: %s",
872 (db->sock != NULL) ? db->sock : "<null>",
873 sstrerror(errno, errbuf, sizeof (errbuf)));
874 close (fd);
875 return (-1);
876 }
878 ssize_t red;
879 do {
880 unsigned char buffer[4096];
881 red = read (fd, buffer, sizeof(buffer));
882 if (red < 0) {
883 ERROR ("curl_json plugin: read(%s) failed: %s",
884 (db->sock != NULL) ? db->sock : "<null>",
885 sstrerror(errno, errbuf, sizeof (errbuf)));
886 close (fd);
887 return (-1);
888 }
889 if (!cj_curl_callback (buffer, red, 1, db))
890 break;
891 } while (red > 0);
892 close (fd);
893 return (0);
894 } /* }}} int cj_sock_perform */
897 static int cj_curl_perform(cj_t *db) /* {{{ */
898 {
899 int status;
900 long rc;
901 char *url;
902 url = db->url;
904 status = curl_easy_perform (db->curl);
905 if (status != CURLE_OK)
906 {
907 ERROR ("curl_json plugin: curl_easy_perform failed with status %i: %s (%s)",
908 status, db->curl_errbuf, url);
909 return (-1);
910 }
912 curl_easy_getinfo(db->curl, CURLINFO_EFFECTIVE_URL, &url);
913 curl_easy_getinfo(db->curl, CURLINFO_RESPONSE_CODE, &rc);
915 /* The response code is zero if a non-HTTP transport was used. */
916 if ((rc != 0) && (rc != 200))
917 {
918 ERROR ("curl_json plugin: curl_easy_perform failed with "
919 "response code %ld (%s)", rc, url);
920 return (-1);
921 }
922 return (0);
923 } /* }}} int cj_curl_perform */
925 static int cj_perform (cj_t *db) /* {{{ */
926 {
927 int status;
928 yajl_handle yprev = db->yajl;
930 db->yajl = yajl_alloc (&ycallbacks,
931 #if HAVE_YAJL_V2
932 /* alloc funcs = */ NULL,
933 #else
934 /* alloc funcs = */ NULL, NULL,
935 #endif
936 /* context = */ (void *)db);
937 if (db->yajl == NULL)
938 {
939 ERROR ("curl_json plugin: yajl_alloc failed.");
940 db->yajl = yprev;
941 return (-1);
942 }
944 if (db->url)
945 status = cj_curl_perform (db);
946 else
947 status = cj_sock_perform (db);
948 if (status < 0)
949 {
950 yajl_free (db->yajl);
951 db->yajl = yprev;
952 return (-1);
953 }
955 #if HAVE_YAJL_V2
956 status = yajl_complete_parse(db->yajl);
957 #else
958 status = yajl_parse_complete(db->yajl);
959 #endif
960 if (status != yajl_status_ok)
961 {
962 unsigned char *errmsg;
964 errmsg = yajl_get_error (db->yajl, /* verbose = */ 0,
965 /* jsonText = */ NULL, /* jsonTextLen = */ 0);
966 ERROR ("curl_json plugin: yajl_parse_complete failed: %s",
967 (char *) errmsg);
968 yajl_free_error (db->yajl, errmsg);
969 yajl_free (db->yajl);
970 db->yajl = yprev;
971 return (-1);
972 }
974 yajl_free (db->yajl);
975 db->yajl = yprev;
976 return (0);
977 } /* }}} int cj_perform */
979 static int cj_read (user_data_t *ud) /* {{{ */
980 {
981 cj_t *db;
983 if ((ud == NULL) || (ud->data == NULL))
984 {
985 ERROR ("curl_json plugin: cj_read: Invalid user data.");
986 return (-1);
987 }
989 db = (cj_t *) ud->data;
991 db->depth = 0;
992 memset (&db->state, 0, sizeof(db->state));
993 db->state[db->depth].tree = db->tree;
994 db->key = NULL;
996 return cj_perform (db);
997 } /* }}} int cj_read */
999 static int cj_init (void) /* {{{ */
1000 {
1001 /* Call this while collectd is still single-threaded to avoid
1002 * initialization issues in libgcrypt. */
1003 curl_global_init (CURL_GLOBAL_SSL);
1004 return (0);
1005 } /* }}} int cj_init */
1007 void module_register (void)
1008 {
1009 plugin_register_complex_config ("curl_json", cj_config);
1010 plugin_register_init ("curl_json", cj_init);
1011 } /* void module_register */
1013 /* vim: set sw=2 sts=2 et fdm=marker : */