2 * collectd - src/curl.c
3 * Copyright (C) 2006-2009 Florian octo Forster
4 * Copyright (C) 2009 Aman Gupta
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.
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.
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
20 * Florian octo Forster <octo at collectd.org>
21 * Aman Gupta <aman at tmm1.net>
27 #include "configfile.h"
28 #include "utils_match.h"
29 #include "utils_time.h"
31 #include <curl/curl.h>
37 typedef struct web_match_s web_match_t;
38 struct web_match_s /* {{{ */
52 typedef struct web_page_s web_page_t;
53 struct web_page_s /* {{{ */
65 struct curl_slist *headers;
72 char curl_errbuf[CURL_ERROR_SIZE];
85 /* static CURLM *curl = NULL; */
86 static web_page_t *pages_g = NULL;
91 static size_t cc_curl_callback (void *buf, /* {{{ */
92 size_t size, size_t nmemb, void *user_data)
105 if ((wp->buffer_fill + len) >= wp->buffer_size)
110 temp_size = wp->buffer_fill + len + 1;
111 temp = realloc (wp->buffer, temp_size);
114 ERROR ("curl plugin: realloc failed.");
118 wp->buffer_size = temp_size;
121 memcpy (wp->buffer + wp->buffer_fill, (char *) buf, len);
122 wp->buffer_fill += len;
123 wp->buffer[wp->buffer_fill] = 0;
126 } /* }}} size_t cc_curl_callback */
128 static void cc_web_match_free (web_match_t *wm) /* {{{ */
135 sfree (wm->instance);
136 match_destroy (wm->match);
137 cc_web_match_free (wm->next);
139 } /* }}} void cc_web_match_free */
141 static void cc_web_page_free (web_page_t *wp) /* {{{ */
146 if (wp->curl != NULL)
147 curl_easy_cleanup (wp->curl);
150 sfree (wp->instance);
155 sfree (wp->credentials);
157 sfree (wp->post_body);
158 curl_slist_free_all (wp->headers);
162 cc_web_match_free (wp->matches);
163 cc_web_page_free (wp->next);
165 } /* }}} void cc_web_page_free */
167 static int cc_config_append_string (const char *name, struct curl_slist **dest, /* {{{ */
170 struct curl_slist *temp = NULL;
171 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
173 WARNING ("curl plugin: `%s' needs exactly one string argument.", name);
177 temp = curl_slist_append(*dest, ci->values[0].value.string);
184 } /* }}} int cc_config_append_string */
186 static int cc_config_add_match_dstype (int *dstype_ret, /* {{{ */
191 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
193 WARNING ("curl plugin: `DSType' needs exactly one string argument.");
197 if (strncasecmp ("Gauge", ci->values[0].value.string,
198 strlen ("Gauge")) == 0)
200 dstype = UTILS_MATCH_DS_TYPE_GAUGE;
201 if (strcasecmp ("GaugeAverage", ci->values[0].value.string) == 0)
202 dstype |= UTILS_MATCH_CF_GAUGE_AVERAGE;
203 else if (strcasecmp ("GaugeMin", ci->values[0].value.string) == 0)
204 dstype |= UTILS_MATCH_CF_GAUGE_MIN;
205 else if (strcasecmp ("GaugeMax", ci->values[0].value.string) == 0)
206 dstype |= UTILS_MATCH_CF_GAUGE_MAX;
207 else if (strcasecmp ("GaugeLast", ci->values[0].value.string) == 0)
208 dstype |= UTILS_MATCH_CF_GAUGE_LAST;
212 else if (strncasecmp ("Counter", ci->values[0].value.string,
213 strlen ("Counter")) == 0)
215 dstype = UTILS_MATCH_DS_TYPE_COUNTER;
216 if (strcasecmp ("CounterSet", ci->values[0].value.string) == 0)
217 dstype |= UTILS_MATCH_CF_COUNTER_SET;
218 else if (strcasecmp ("CounterAdd", ci->values[0].value.string) == 0)
219 dstype |= UTILS_MATCH_CF_COUNTER_ADD;
220 else if (strcasecmp ("CounterInc", ci->values[0].value.string) == 0)
221 dstype |= UTILS_MATCH_CF_COUNTER_INC;
225 else if (strncasecmp ("Derive", ci->values[0].value.string,
226 strlen ("Derive")) == 0)
228 dstype = UTILS_MATCH_DS_TYPE_DERIVE;
229 if (strcasecmp ("DeriveSet", ci->values[0].value.string) == 0)
230 dstype |= UTILS_MATCH_CF_DERIVE_SET;
231 else if (strcasecmp ("DeriveAdd", ci->values[0].value.string) == 0)
232 dstype |= UTILS_MATCH_CF_DERIVE_ADD;
233 else if (strcasecmp ("DeriveInc", ci->values[0].value.string) == 0)
234 dstype |= UTILS_MATCH_CF_DERIVE_INC;
238 else if (strncasecmp ("Absolute", ci->values[0].value.string,
239 strlen ("Absolute")) == 0)
241 dstype = UTILS_MATCH_DS_TYPE_ABSOLUTE;
242 if (strcasecmp ("AbsoluteSet", ci->values[0].value.string) == 0) /* Absolute DS is reset-on-read so no sense doin anything else but set */
243 dstype |= UTILS_MATCH_CF_ABSOLUTE_SET;
255 WARNING ("curl plugin: `%s' is not a valid argument to `DSType'.",
256 ci->values[0].value.string);
260 *dstype_ret = dstype;
262 } /* }}} int cc_config_add_match_dstype */
264 static int cc_config_add_match (web_page_t *page, /* {{{ */
271 if (ci->values_num != 0)
273 WARNING ("curl plugin: Ignoring arguments for the `Match' block.");
276 match = calloc (1, sizeof (*match));
279 ERROR ("curl plugin: calloc failed.");
284 for (i = 0; i < ci->children_num; i++)
286 oconfig_item_t *child = ci->children + i;
288 if (strcasecmp ("Regex", child->key) == 0)
289 status = cf_util_get_string (child, &match->regex);
290 else if (strcasecmp ("ExcludeRegex", child->key) == 0)
291 status = cf_util_get_string (child, &match->exclude_regex);
292 else if (strcasecmp ("DSType", child->key) == 0)
293 status = cc_config_add_match_dstype (&match->dstype, child);
294 else if (strcasecmp ("Type", child->key) == 0)
295 status = cf_util_get_string (child, &match->type);
296 else if (strcasecmp ("Instance", child->key) == 0)
297 status = cf_util_get_string (child, &match->instance);
300 WARNING ("curl plugin: Option `%s' not allowed here.", child->key);
306 } /* for (i = 0; i < ci->children_num; i++) */
310 if (match->regex == NULL)
312 WARNING ("curl plugin: `Regex' missing in `Match' block.");
316 if (match->type == NULL)
318 WARNING ("curl plugin: `Type' missing in `Match' block.");
322 if (match->dstype == 0)
324 WARNING ("curl plugin: `DSType' missing in `Match' block.");
329 } /* while (status == 0) */
333 cc_web_match_free (match);
337 match->match = match_create_simple (match->regex, match->exclude_regex,
339 if (match->match == NULL)
341 ERROR ("curl plugin: tail_match_add_match_simple failed.");
342 cc_web_match_free (match);
349 prev = page->matches;
350 while ((prev != NULL) && (prev->next != NULL))
354 page->matches = match;
360 } /* }}} int cc_config_add_match */
362 static int cc_page_init_curl (web_page_t *wp) /* {{{ */
364 wp->curl = curl_easy_init ();
365 if (wp->curl == NULL)
367 ERROR ("curl plugin: curl_easy_init failed.");
371 curl_easy_setopt (wp->curl, CURLOPT_NOSIGNAL, 1L);
372 curl_easy_setopt (wp->curl, CURLOPT_WRITEFUNCTION, cc_curl_callback);
373 curl_easy_setopt (wp->curl, CURLOPT_WRITEDATA, wp);
374 curl_easy_setopt (wp->curl, CURLOPT_USERAGENT, COLLECTD_USERAGENT);
375 curl_easy_setopt (wp->curl, CURLOPT_ERRORBUFFER, wp->curl_errbuf);
376 curl_easy_setopt (wp->curl, CURLOPT_URL, wp->url);
377 curl_easy_setopt (wp->curl, CURLOPT_FOLLOWLOCATION, 1L);
378 curl_easy_setopt (wp->curl, CURLOPT_MAXREDIRS, 50L);
380 if (wp->user != NULL)
382 #ifdef HAVE_CURLOPT_USERNAME
383 curl_easy_setopt (wp->curl, CURLOPT_USERNAME, wp->user);
384 curl_easy_setopt (wp->curl, CURLOPT_PASSWORD,
385 (wp->pass == NULL) ? "" : wp->pass);
387 size_t credentials_size;
389 credentials_size = strlen (wp->user) + 2;
390 if (wp->pass != NULL)
391 credentials_size += strlen (wp->pass);
393 wp->credentials = malloc (credentials_size);
394 if (wp->credentials == NULL)
396 ERROR ("curl plugin: malloc failed.");
400 ssnprintf (wp->credentials, credentials_size, "%s:%s",
401 wp->user, (wp->pass == NULL) ? "" : wp->pass);
402 curl_easy_setopt (wp->curl, CURLOPT_USERPWD, wp->credentials);
406 curl_easy_setopt (wp->curl, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);
409 curl_easy_setopt (wp->curl, CURLOPT_SSL_VERIFYPEER, (long) wp->verify_peer);
410 curl_easy_setopt (wp->curl, CURLOPT_SSL_VERIFYHOST,
411 wp->verify_host ? 2L : 0L);
412 if (wp->cacert != NULL)
413 curl_easy_setopt (wp->curl, CURLOPT_CAINFO, wp->cacert);
414 if (wp->headers != NULL)
415 curl_easy_setopt (wp->curl, CURLOPT_HTTPHEADER, wp->headers);
416 if (wp->post_body != NULL)
417 curl_easy_setopt (wp->curl, CURLOPT_POSTFIELDS, wp->post_body);
419 #ifdef HAVE_CURLOPT_TIMEOUT_MS
420 if (wp->timeout >= 0)
421 curl_easy_setopt (wp->curl, CURLOPT_TIMEOUT_MS, (long) wp->timeout);
423 curl_easy_setopt (wp->curl, CURLOPT_TIMEOUT_MS, (long) CDTIME_T_TO_MS(plugin_get_interval()));
427 } /* }}} int cc_page_init_curl */
429 static int cc_config_add_page (oconfig_item_t *ci) /* {{{ */
435 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
437 WARNING ("curl plugin: `Page' blocks need exactly one string argument.");
441 page = calloc (1, sizeof (*page));
444 ERROR ("curl plugin: calloc failed.");
451 page->verify_peer = 1;
452 page->verify_host = 1;
453 page->response_time = 0;
454 page->response_code = 0;
457 page->instance = strdup (ci->values[0].value.string);
458 if (page->instance == NULL)
460 ERROR ("curl plugin: strdup failed.");
465 /* Process all children */
467 for (i = 0; i < ci->children_num; i++)
469 oconfig_item_t *child = ci->children + i;
471 if (strcasecmp ("URL", child->key) == 0)
472 status = cf_util_get_string (child, &page->url);
473 else if (strcasecmp ("User", child->key) == 0)
474 status = cf_util_get_string (child, &page->user);
475 else if (strcasecmp ("Password", child->key) == 0)
476 status = cf_util_get_string (child, &page->pass);
477 else if (strcasecmp ("Digest", child->key) == 0)
478 status = cf_util_get_boolean (child, &page->digest);
479 else if (strcasecmp ("VerifyPeer", child->key) == 0)
480 status = cf_util_get_boolean (child, &page->verify_peer);
481 else if (strcasecmp ("VerifyHost", child->key) == 0)
482 status = cf_util_get_boolean (child, &page->verify_host);
483 else if (strcasecmp ("MeasureResponseTime", child->key) == 0)
484 status = cf_util_get_boolean (child, &page->response_time);
485 else if (strcasecmp ("MeasureResponseCode", child->key) == 0)
486 status = cf_util_get_boolean (child, &page->response_code);
487 else if (strcasecmp ("CACert", child->key) == 0)
488 status = cf_util_get_string (child, &page->cacert);
489 else if (strcasecmp ("Match", child->key) == 0)
490 /* Be liberal with failing matches => don't set `status'. */
491 cc_config_add_match (page, child);
492 else if (strcasecmp ("Header", child->key) == 0)
493 status = cc_config_append_string ("Header", &page->headers, child);
494 else if (strcasecmp ("Post", child->key) == 0)
495 status = cf_util_get_string (child, &page->post_body);
496 else if (strcasecmp ("Timeout", child->key) == 0)
497 status = cf_util_get_int (child, &page->timeout);
500 WARNING ("curl plugin: Option `%s' not allowed here.", child->key);
506 } /* for (i = 0; i < ci->children_num; i++) */
508 /* Additionial sanity checks and libCURL initialization. */
511 if (page->url == NULL)
513 WARNING ("curl plugin: `URL' missing in `Page' block.");
517 if (page->matches == NULL && !page->response_time && !page->response_code)
519 assert (page->instance != NULL);
520 WARNING ("curl plugin: No (valid) `Match' block "
521 "or MeasureResponseTime or MeasureResponseCode within "
522 "`Page' block `%s'.", page->instance);
527 status = cc_page_init_curl (page);
530 } /* while (status == 0) */
534 cc_web_page_free (page);
538 /* Add the new page to the linked list */
546 while (prev->next != NULL)
552 } /* }}} int cc_config_add_page */
554 static int cc_config (oconfig_item_t *ci) /* {{{ */
564 for (i = 0; i < ci->children_num; i++)
566 oconfig_item_t *child = ci->children + i;
568 if (strcasecmp ("Page", child->key) == 0)
570 status = cc_config_add_page (child);
578 WARNING ("curl plugin: Option `%s' not allowed here.", child->key);
583 if ((success == 0) && (errors > 0))
585 ERROR ("curl plugin: All statements failed.");
590 } /* }}} int cc_config */
592 static int cc_init (void) /* {{{ */
596 INFO ("curl plugin: No pages have been defined.");
599 curl_global_init (CURL_GLOBAL_SSL);
601 } /* }}} int cc_init */
603 static void cc_submit (const web_page_t *wp, const web_match_t *wm, /* {{{ */
604 const cu_match_value_t *mv)
607 value_list_t vl = VALUE_LIST_INIT;
609 values[0] = mv->value;
613 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
614 sstrncpy (vl.plugin, "curl", sizeof (vl.plugin));
615 sstrncpy (vl.plugin_instance, wp->instance, sizeof (vl.plugin_instance));
616 sstrncpy (vl.type, wm->type, sizeof (vl.type));
617 if (wm->instance != NULL)
618 sstrncpy (vl.type_instance, wm->instance, sizeof (vl.type_instance));
620 plugin_dispatch_values (&vl);
621 } /* }}} void cc_submit */
623 static void cc_submit_response_code (const web_page_t *wp, long code) /* {{{ */
626 value_list_t vl = VALUE_LIST_INIT;
628 values[0].gauge = code;
632 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
633 sstrncpy (vl.plugin, "curl", sizeof (vl.plugin));
634 sstrncpy (vl.plugin_instance, wp->instance, sizeof (vl.plugin_instance));
635 sstrncpy (vl.type, "response_code", sizeof (vl.type));
637 plugin_dispatch_values (&vl);
638 } /* }}} void cc_submit_response_code */
640 static void cc_submit_response_time (const web_page_t *wp, /* {{{ */
641 cdtime_t response_time)
644 value_list_t vl = VALUE_LIST_INIT;
646 values[0].gauge = CDTIME_T_TO_DOUBLE (response_time);
650 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
651 sstrncpy (vl.plugin, "curl", sizeof (vl.plugin));
652 sstrncpy (vl.plugin_instance, wp->instance, sizeof (vl.plugin_instance));
653 sstrncpy (vl.type, "response_time", sizeof (vl.type));
655 plugin_dispatch_values (&vl);
656 } /* }}} void cc_submit_response_time */
658 static int cc_read_page (web_page_t *wp) /* {{{ */
664 if (wp->response_time)
668 status = curl_easy_perform (wp->curl);
669 if (status != CURLE_OK)
671 ERROR ("curl plugin: curl_easy_perform failed with status %i: %s",
672 status, wp->curl_errbuf);
676 if (wp->response_time)
677 cc_submit_response_time (wp, cdtime() - start);
679 if(wp->response_code)
681 long response_code = 0;
682 status = curl_easy_getinfo(wp->curl, CURLINFO_RESPONSE_CODE, &response_code);
683 if(status != CURLE_OK) {
684 ERROR ("curl plugin: Fetching response code failed with status %i: %s",
685 status, wp->curl_errbuf);
687 cc_submit_response_code(wp, response_code);
691 for (wm = wp->matches; wm != NULL; wm = wm->next)
693 cu_match_value_t *mv;
695 status = match_apply (wm->match, wp->buffer);
698 WARNING ("curl plugin: match_apply failed.");
702 mv = match_get_user_data (wm->match);
705 WARNING ("curl plugin: match_get_user_data returned NULL.");
709 cc_submit (wp, wm, mv);
710 match_value_reset (mv);
711 } /* for (wm = wp->matches; wm != NULL; wm = wm->next) */
714 } /* }}} int cc_read_page */
716 static int cc_read (void) /* {{{ */
720 for (wp = pages_g; wp != NULL; wp = wp->next)
724 } /* }}} int cc_read */
726 static int cc_shutdown (void) /* {{{ */
728 cc_web_page_free (pages_g);
732 } /* }}} int cc_shutdown */
734 void module_register (void)
736 plugin_register_complex_config ("curl", cc_config);
737 plugin_register_init ("curl", cc_init);
738 plugin_register_read ("curl", cc_read);
739 plugin_register_shutdown ("curl", cc_shutdown);
740 } /* void module_register */
742 /* vim: set sw=2 sts=2 et fdm=marker : */