2 * collectd - src/write_http.c
3 * Copyright (C) 2009 Paul Sadauskas
4 * Copyright (C) 2009 Doug MacEachern
5 * Copyright (C) 2007-2009 Florian octo Forster
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; only version 2 of the License is applicable.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 * Florian octo Forster <octo at verplant.org>
22 * Doug MacEachern <dougm@hyperic.com>
23 * Paul Sadauskas <psadauskas@gmail.com>
29 #include "utils_cache.h"
30 #include "utils_parse_option.h"
31 #include "utils_format_json.h"
37 #include <curl/curl.h>
54 #define WH_FORMAT_COMMAND 0
55 #define WH_FORMAT_JSON 1
59 char curl_errbuf[CURL_ERROR_SIZE];
61 char send_buffer[4096];
62 size_t send_buffer_free;
63 size_t send_buffer_fill;
64 time_t send_buffer_init_time;
66 pthread_mutex_t send_lock;
68 typedef struct wh_callback_s wh_callback_t;
70 static void wh_reset_buffer (wh_callback_t *cb) /* {{{ */
72 memset (cb->send_buffer, 0, sizeof (cb->send_buffer));
73 cb->send_buffer_free = sizeof (cb->send_buffer);
74 cb->send_buffer_fill = 0;
75 cb->send_buffer_init_time = time (NULL);
77 if (cb->format == WH_FORMAT_JSON)
79 format_json_initialize (cb->send_buffer,
80 &cb->send_buffer_fill,
81 &cb->send_buffer_free);
83 } /* }}} wh_reset_buffer */
85 static int wh_send_buffer (wh_callback_t *cb) /* {{{ */
89 curl_easy_setopt (cb->curl, CURLOPT_POSTFIELDS, cb->send_buffer);
90 status = curl_easy_perform (cb->curl);
93 ERROR ("write_http plugin: curl_easy_perform failed with "
95 status, cb->curl_errbuf);
98 } /* }}} wh_send_buffer */
100 static int wh_callback_init (wh_callback_t *cb) /* {{{ */
102 struct curl_slist *headers;
104 if (cb->curl != NULL)
107 cb->curl = curl_easy_init ();
108 if (cb->curl == NULL)
110 ERROR ("curl plugin: curl_easy_init failed.");
114 curl_easy_setopt (cb->curl, CURLOPT_USERAGENT, PACKAGE_NAME"/"PACKAGE_VERSION);
117 headers = curl_slist_append (headers, "Accept: */*");
118 if (cb->format == WH_FORMAT_JSON)
119 headers = curl_slist_append (headers, "Content-Type: application/json");
121 headers = curl_slist_append (headers, "Content-Type: text/plain");
122 headers = curl_slist_append (headers, "Expect:");
123 curl_easy_setopt (cb->curl, CURLOPT_HTTPHEADER, headers);
125 curl_easy_setopt (cb->curl, CURLOPT_ERRORBUFFER, cb->curl_errbuf);
126 curl_easy_setopt (cb->curl, CURLOPT_URL, cb->location);
128 if (cb->user != NULL)
130 size_t credentials_size;
132 credentials_size = strlen (cb->user) + 2;
133 if (cb->pass != NULL)
134 credentials_size += strlen (cb->pass);
136 cb->credentials = (char *) malloc (credentials_size);
137 if (cb->credentials == NULL)
139 ERROR ("curl plugin: malloc failed.");
143 ssnprintf (cb->credentials, credentials_size, "%s:%s",
144 cb->user, (cb->pass == NULL) ? "" : cb->pass);
145 curl_easy_setopt (cb->curl, CURLOPT_USERPWD, cb->credentials);
146 curl_easy_setopt (cb->curl, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
149 curl_easy_setopt (cb->curl, CURLOPT_SSL_VERIFYPEER, cb->verify_peer);
150 curl_easy_setopt (cb->curl, CURLOPT_SSL_VERIFYHOST,
151 cb->verify_host ? 2 : 0);
152 if (cb->cacert != NULL)
153 curl_easy_setopt (cb->curl, CURLOPT_CAINFO, cb->cacert);
155 wh_reset_buffer (cb);
158 } /* }}} int wh_callback_init */
160 static int wh_flush_nolock (int timeout, wh_callback_t *cb) /* {{{ */
164 DEBUG ("write_http plugin: wh_flush_nolock: timeout = %i; "
165 "send_buffer_fill = %zu;",
166 timeout, cb->send_buffer_fill);
173 if ((cb->send_buffer_init_time + timeout) > now)
177 if (cb->format == WH_FORMAT_COMMAND)
179 if (cb->send_buffer_fill <= 0)
181 cb->send_buffer_init_time = time (NULL);
185 status = wh_send_buffer (cb);
186 wh_reset_buffer (cb);
188 else if (cb->format == WH_FORMAT_JSON)
190 if (cb->send_buffer_fill <= 2)
192 cb->send_buffer_init_time = time (NULL);
196 status = format_json_finalize (cb->send_buffer,
197 &cb->send_buffer_fill,
198 &cb->send_buffer_free);
201 ERROR ("write_http: wh_flush_nolock: "
202 "format_json_finalize failed.");
203 wh_reset_buffer (cb);
207 status = wh_send_buffer (cb);
208 wh_reset_buffer (cb);
212 ERROR ("write_http: wh_flush_nolock: "
213 "Unknown format: %i",
219 } /* }}} wh_flush_nolock */
221 static int wh_flush (int timeout, /* {{{ */
222 const char *identifier __attribute__((unused)),
223 user_data_t *user_data)
228 if (user_data == NULL)
231 cb = user_data->data;
233 pthread_mutex_lock (&cb->send_lock);
235 if (cb->curl == NULL)
237 status = wh_callback_init (cb);
240 ERROR ("write_http plugin: wh_callback_init failed.");
241 pthread_mutex_unlock (&cb->send_lock);
246 status = wh_flush_nolock (timeout, cb);
247 pthread_mutex_unlock (&cb->send_lock);
250 } /* }}} int wh_flush */
252 static void wh_callback_free (void *data) /* {{{ */
261 wh_flush_nolock (/* timeout = */ -1, cb);
263 curl_easy_cleanup (cb->curl);
264 sfree (cb->location);
267 sfree (cb->credentials);
271 } /* }}} void wh_callback_free */
273 static int wh_value_list_to_string (char *buffer, /* {{{ */
275 const data_set_t *ds, const value_list_t *vl,
281 gauge_t *rates = NULL;
283 assert (0 == strcmp (ds->type, vl->type));
285 memset (buffer, 0, buffer_size);
287 #define BUFFER_ADD(...) do { \
288 status = ssnprintf (buffer + offset, buffer_size - offset, \
295 else if (((size_t) status) >= (buffer_size - offset)) \
301 offset += ((size_t) status); \
304 BUFFER_ADD ("%lu", (unsigned long) vl->time);
306 for (i = 0; i < ds->ds_num; i++)
308 if (ds->ds[i].type == DS_TYPE_GAUGE)
309 BUFFER_ADD (":%f", vl->values[i].gauge);
310 else if (cb->store_rates)
313 rates = uc_get_rate (ds, vl);
316 WARNING ("write_http plugin: "
317 "uc_get_rate failed.");
320 BUFFER_ADD (":%g", rates[i]);
322 else if (ds->ds[i].type == DS_TYPE_COUNTER)
323 BUFFER_ADD (":%llu", vl->values[i].counter);
324 else if (ds->ds[i].type == DS_TYPE_DERIVE)
325 BUFFER_ADD (":%"PRIi64, vl->values[i].derive);
326 else if (ds->ds[i].type == DS_TYPE_ABSOLUTE)
327 BUFFER_ADD (":%"PRIu64, vl->values[i].absolute);
330 ERROR ("write_http plugin: Unknown data source type: %i",
335 } /* for ds->ds_num */
341 } /* }}} int wh_value_list_to_string */
343 static int wh_write_command (const data_set_t *ds, const value_list_t *vl, /* {{{ */
346 char key[10*DATA_MAX_NAME_LEN];
353 if (0 != strcmp (ds->type, vl->type)) {
354 ERROR ("write_http plugin: DS type does not match "
359 /* Copy the identifier to `key' and escape it. */
360 status = FORMAT_VL (key, sizeof (key), vl);
362 ERROR ("write_http plugin: error with format_name");
365 escape_string (key, sizeof (key));
367 /* Convert the values to an ASCII representation and put that into
369 status = wh_value_list_to_string (values, sizeof (values), ds, vl, cb);
371 ERROR ("write_http plugin: error with "
372 "wh_value_list_to_string");
376 command_len = (size_t) ssnprintf (command, sizeof (command),
377 "PUTVAL %s interval=%i %s\r\n",
378 key, vl->interval, values);
379 if (command_len >= sizeof (command)) {
380 ERROR ("write_http plugin: Command buffer too small: "
381 "Need %zu bytes.", command_len + 1);
385 pthread_mutex_lock (&cb->send_lock);
387 if (cb->curl == NULL)
389 status = wh_callback_init (cb);
392 ERROR ("write_http plugin: wh_callback_init failed.");
393 pthread_mutex_unlock (&cb->send_lock);
398 if (command_len >= cb->send_buffer_free)
400 status = wh_flush_nolock (/* timeout = */ -1, cb);
403 pthread_mutex_unlock (&cb->send_lock);
407 assert (command_len < cb->send_buffer_free);
409 /* `command_len + 1' because `command_len' does not include the
410 * trailing null byte. Neither does `send_buffer_fill'. */
411 memcpy (cb->send_buffer + cb->send_buffer_fill,
412 command, command_len + 1);
413 cb->send_buffer_fill += command_len;
414 cb->send_buffer_free -= command_len;
416 DEBUG ("write_http plugin: <%s> buffer %zu/%zu (%g%%) \"%s\"",
418 cb->send_buffer_fill, sizeof (cb->send_buffer),
419 100.0 * ((double) cb->send_buffer_fill) / ((double) sizeof (cb->send_buffer)),
422 /* Check if we have enough space for this command. */
423 pthread_mutex_unlock (&cb->send_lock);
426 } /* }}} int wh_write_command */
428 static int wh_write_json (const data_set_t *ds, const value_list_t *vl, /* {{{ */
433 pthread_mutex_lock (&cb->send_lock);
435 if (cb->curl == NULL)
437 status = wh_callback_init (cb);
440 ERROR ("write_http plugin: wh_callback_init failed.");
441 pthread_mutex_unlock (&cb->send_lock);
446 status = format_json_value_list (cb->send_buffer,
447 &cb->send_buffer_fill,
448 &cb->send_buffer_free,
449 ds, vl, cb->store_rates);
450 if (status == (-ENOMEM))
452 status = wh_flush_nolock (/* timeout = */ -1, cb);
455 wh_reset_buffer (cb);
456 pthread_mutex_unlock (&cb->send_lock);
460 status = format_json_value_list (cb->send_buffer,
461 &cb->send_buffer_fill,
462 &cb->send_buffer_free,
463 ds, vl, cb->store_rates);
467 pthread_mutex_unlock (&cb->send_lock);
471 DEBUG ("write_http plugin: <%s> buffer %zu/%zu (%g%%)",
473 cb->send_buffer_fill, sizeof (cb->send_buffer),
474 100.0 * ((double) cb->send_buffer_fill) / ((double) sizeof (cb->send_buffer)));
476 /* Check if we have enough space for this command. */
477 pthread_mutex_unlock (&cb->send_lock);
480 } /* }}} int wh_write_json */
482 static int wh_write (const data_set_t *ds, const value_list_t *vl, /* {{{ */
483 user_data_t *user_data)
488 if (user_data == NULL)
491 cb = user_data->data;
493 if (cb->format == WH_FORMAT_JSON)
494 status = wh_write_json (ds, vl, cb);
496 status = wh_write_command (ds, vl, cb);
499 } /* }}} int wh_write */
501 static int config_set_string (char **ret_string, /* {{{ */
506 if ((ci->values_num != 1)
507 || (ci->values[0].type != OCONFIG_TYPE_STRING))
509 WARNING ("write_http plugin: The `%s' config option "
510 "needs exactly one string argument.", ci->key);
514 string = strdup (ci->values[0].value.string);
517 ERROR ("write_http plugin: strdup failed.");
521 if (*ret_string != NULL)
523 *ret_string = string;
526 } /* }}} int config_set_string */
528 static int config_set_boolean (int *dest, oconfig_item_t *ci) /* {{{ */
530 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_BOOLEAN))
532 WARNING ("write_http plugin: The `%s' config option "
533 "needs exactly one boolean argument.", ci->key);
537 *dest = ci->values[0].value.boolean ? 1 : 0;
540 } /* }}} int config_set_boolean */
542 static int config_set_format (wh_callback_t *cb, /* {{{ */
547 if ((ci->values_num != 1)
548 || (ci->values[0].type != OCONFIG_TYPE_STRING))
550 WARNING ("write_http plugin: The `%s' config option "
551 "needs exactly one string argument.", ci->key);
555 string = ci->values[0].value.string;
556 if (strcasecmp ("Command", string) == 0)
557 cb->format = WH_FORMAT_COMMAND;
558 else if (strcasecmp ("JSON", string) == 0)
559 cb->format = WH_FORMAT_JSON;
562 ERROR ("write_http plugin: Invalid format string: %s",
568 } /* }}} int config_set_string */
570 static int wh_config_url (oconfig_item_t *ci) /* {{{ */
573 user_data_t user_data;
576 cb = malloc (sizeof (*cb));
579 ERROR ("write_http plugin: malloc failed.");
582 memset (cb, 0, sizeof (*cb));
586 cb->credentials = NULL;
590 cb->format = WH_FORMAT_COMMAND;
593 pthread_mutex_init (&cb->send_lock, /* attr = */ NULL);
595 config_set_string (&cb->location, ci);
596 if (cb->location == NULL)
599 for (i = 0; i < ci->children_num; i++)
601 oconfig_item_t *child = ci->children + i;
603 if (strcasecmp ("User", child->key) == 0)
604 config_set_string (&cb->user, child);
605 else if (strcasecmp ("Password", child->key) == 0)
606 config_set_string (&cb->pass, child);
607 else if (strcasecmp ("VerifyPeer", child->key) == 0)
608 config_set_boolean (&cb->verify_peer, child);
609 else if (strcasecmp ("VerifyHost", child->key) == 0)
610 config_set_boolean (&cb->verify_host, child);
611 else if (strcasecmp ("CACert", child->key) == 0)
612 config_set_string (&cb->cacert, child);
613 else if (strcasecmp ("Format", child->key) == 0)
614 config_set_format (cb, child);
615 else if (strcasecmp ("StoreRates", child->key) == 0)
616 config_set_boolean (&cb->store_rates, child);
619 ERROR ("write_http plugin: Invalid configuration "
620 "option: %s.", child->key);
624 DEBUG ("write_http: Registering write callback with URL %s",
627 memset (&user_data, 0, sizeof (user_data));
629 user_data.free_func = NULL;
630 plugin_register_flush ("write_http", wh_flush, &user_data);
632 user_data.free_func = wh_callback_free;
633 plugin_register_write ("write_http", wh_write, &user_data);
636 } /* }}} int wh_config_url */
638 static int wh_config (oconfig_item_t *ci) /* {{{ */
642 for (i = 0; i < ci->children_num; i++)
644 oconfig_item_t *child = ci->children + i;
646 if (strcasecmp ("URL", child->key) == 0)
647 wh_config_url (child);
650 ERROR ("write_http plugin: Invalid configuration "
651 "option: %s.", child->key);
656 } /* }}} int wh_config */
658 void module_register (void) /* {{{ */
660 plugin_register_complex_config ("write_http", wh_config);
661 } /* }}} void module_register */
663 /* vim: set fdm=marker sw=8 ts=8 tw=78 et : */