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>
28 #include "utils_curl_stats.h"
29 #include "utils_match.h"
30 #include "utils_time.h"
32 #include <curl/curl.h>
38 typedef struct web_match_s web_match_t;
39 struct web_match_s /* {{{ */
53 typedef struct web_page_s web_page_t;
54 struct web_page_s /* {{{ */
67 struct curl_slist *headers;
75 char curl_errbuf[CURL_ERROR_SIZE];
88 /* static CURLM *curl = NULL; */
89 static web_page_t *pages_g = NULL;
94 static size_t cc_curl_callback(void *buf, /* {{{ */
95 size_t size, size_t nmemb, void *user_data) {
107 if ((wp->buffer_fill + len) >= wp->buffer_size) {
111 temp_size = wp->buffer_fill + len + 1;
112 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) /* {{{ */
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->plugin_name);
156 sfree(wp->credentials);
158 sfree(wp->post_body);
159 curl_slist_free_all(wp->headers);
160 curl_stats_destroy(wp->stats);
164 cc_web_match_free(wp->matches);
165 cc_web_page_free(wp->next);
167 } /* }}} void cc_web_page_free */
169 static int cc_config_append_string(const char *name,
170 struct curl_slist **dest, /* {{{ */
171 oconfig_item_t *ci) {
172 struct curl_slist *temp = NULL;
173 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
174 WARNING("curl plugin: `%s' needs exactly one string argument.", name);
178 temp = curl_slist_append(*dest, ci->values[0].value.string);
185 } /* }}} int cc_config_append_string */
187 static int cc_config_add_match_dstype(int *dstype_ret, /* {{{ */
188 oconfig_item_t *ci) {
191 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
192 WARNING("curl plugin: `DSType' needs exactly one string argument.");
196 if (strncasecmp("Gauge", ci->values[0].value.string, strlen("Gauge")) == 0) {
197 dstype = UTILS_MATCH_DS_TYPE_GAUGE;
198 if (strcasecmp("GaugeAverage", ci->values[0].value.string) == 0)
199 dstype |= UTILS_MATCH_CF_GAUGE_AVERAGE;
200 else if (strcasecmp("GaugeMin", ci->values[0].value.string) == 0)
201 dstype |= UTILS_MATCH_CF_GAUGE_MIN;
202 else if (strcasecmp("GaugeMax", ci->values[0].value.string) == 0)
203 dstype |= UTILS_MATCH_CF_GAUGE_MAX;
204 else if (strcasecmp("GaugeLast", ci->values[0].value.string) == 0)
205 dstype |= UTILS_MATCH_CF_GAUGE_LAST;
208 } else if (strncasecmp("Counter", ci->values[0].value.string,
209 strlen("Counter")) == 0) {
210 dstype = UTILS_MATCH_DS_TYPE_COUNTER;
211 if (strcasecmp("CounterSet", ci->values[0].value.string) == 0)
212 dstype |= UTILS_MATCH_CF_COUNTER_SET;
213 else if (strcasecmp("CounterAdd", ci->values[0].value.string) == 0)
214 dstype |= UTILS_MATCH_CF_COUNTER_ADD;
215 else if (strcasecmp("CounterInc", ci->values[0].value.string) == 0)
216 dstype |= UTILS_MATCH_CF_COUNTER_INC;
219 } else if (strncasecmp("Derive", ci->values[0].value.string,
220 strlen("Derive")) == 0) {
221 dstype = UTILS_MATCH_DS_TYPE_DERIVE;
222 if (strcasecmp("DeriveSet", ci->values[0].value.string) == 0)
223 dstype |= UTILS_MATCH_CF_DERIVE_SET;
224 else if (strcasecmp("DeriveAdd", ci->values[0].value.string) == 0)
225 dstype |= UTILS_MATCH_CF_DERIVE_ADD;
226 else if (strcasecmp("DeriveInc", ci->values[0].value.string) == 0)
227 dstype |= UTILS_MATCH_CF_DERIVE_INC;
230 } else if (strncasecmp("Absolute", ci->values[0].value.string,
231 strlen("Absolute")) == 0) {
232 dstype = UTILS_MATCH_DS_TYPE_ABSOLUTE;
233 if (strcasecmp("AbsoluteSet", ci->values[0].value.string) ==
234 0) /* Absolute DS is reset-on-read so no sense doin anything else but
236 dstype |= UTILS_MATCH_CF_ABSOLUTE_SET;
246 WARNING("curl plugin: `%s' is not a valid argument to `DSType'.",
247 ci->values[0].value.string);
251 *dstype_ret = dstype;
253 } /* }}} int cc_config_add_match_dstype */
255 static int cc_config_add_match(web_page_t *page, /* {{{ */
256 oconfig_item_t *ci) {
260 if (ci->values_num != 0) {
261 WARNING("curl plugin: Ignoring arguments for the `Match' block.");
264 match = calloc(1, sizeof(*match));
266 ERROR("curl plugin: calloc failed.");
271 for (int i = 0; i < ci->children_num; i++) {
272 oconfig_item_t *child = ci->children + i;
274 if (strcasecmp("Regex", child->key) == 0)
275 status = cf_util_get_string(child, &match->regex);
276 else if (strcasecmp("ExcludeRegex", child->key) == 0)
277 status = cf_util_get_string(child, &match->exclude_regex);
278 else if (strcasecmp("DSType", child->key) == 0)
279 status = cc_config_add_match_dstype(&match->dstype, child);
280 else if (strcasecmp("Type", child->key) == 0)
281 status = cf_util_get_string(child, &match->type);
282 else if (strcasecmp("Instance", child->key) == 0)
283 status = cf_util_get_string(child, &match->instance);
285 WARNING("curl plugin: Option `%s' not allowed here.", child->key);
291 } /* for (i = 0; i < ci->children_num; i++) */
293 while (status == 0) {
294 if (match->regex == NULL) {
295 WARNING("curl plugin: `Regex' missing in `Match' block.");
299 if (match->type == NULL) {
300 WARNING("curl plugin: `Type' missing in `Match' block.");
304 if (match->dstype == 0) {
305 WARNING("curl plugin: `DSType' missing in `Match' block.");
310 } /* while (status == 0) */
313 cc_web_match_free(match);
318 match_create_simple(match->regex, match->exclude_regex, match->dstype);
319 if (match->match == NULL) {
320 ERROR("curl plugin: match_create_simple failed.");
321 cc_web_match_free(match);
326 prev = page->matches;
327 while ((prev != NULL) && (prev->next != NULL))
331 page->matches = match;
337 } /* }}} int cc_config_add_match */
339 static int cc_page_init_curl(web_page_t *wp) /* {{{ */
341 wp->curl = curl_easy_init();
342 if (wp->curl == NULL) {
343 ERROR("curl plugin: curl_easy_init failed.");
347 curl_easy_setopt(wp->curl, CURLOPT_NOSIGNAL, 1L);
348 curl_easy_setopt(wp->curl, CURLOPT_WRITEFUNCTION, cc_curl_callback);
349 curl_easy_setopt(wp->curl, CURLOPT_WRITEDATA, wp);
350 curl_easy_setopt(wp->curl, CURLOPT_USERAGENT, COLLECTD_USERAGENT);
351 curl_easy_setopt(wp->curl, CURLOPT_ERRORBUFFER, wp->curl_errbuf);
352 curl_easy_setopt(wp->curl, CURLOPT_FOLLOWLOCATION, 1L);
353 curl_easy_setopt(wp->curl, CURLOPT_MAXREDIRS, 50L);
355 if (wp->user != NULL) {
356 #ifdef HAVE_CURLOPT_USERNAME
357 curl_easy_setopt(wp->curl, CURLOPT_USERNAME, wp->user);
358 curl_easy_setopt(wp->curl, CURLOPT_PASSWORD,
359 (wp->pass == NULL) ? "" : wp->pass);
361 size_t credentials_size;
363 credentials_size = strlen(wp->user) + 2;
364 if (wp->pass != NULL)
365 credentials_size += strlen(wp->pass);
367 wp->credentials = malloc(credentials_size);
368 if (wp->credentials == NULL) {
369 ERROR("curl plugin: malloc failed.");
373 snprintf(wp->credentials, credentials_size, "%s:%s", wp->user,
374 (wp->pass == NULL) ? "" : wp->pass);
375 curl_easy_setopt(wp->curl, CURLOPT_USERPWD, wp->credentials);
379 curl_easy_setopt(wp->curl, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);
382 curl_easy_setopt(wp->curl, CURLOPT_SSL_VERIFYPEER, (long)wp->verify_peer);
383 curl_easy_setopt(wp->curl, CURLOPT_SSL_VERIFYHOST, wp->verify_host ? 2L : 0L);
384 if (wp->cacert != NULL)
385 curl_easy_setopt(wp->curl, CURLOPT_CAINFO, wp->cacert);
386 if (wp->headers != NULL)
387 curl_easy_setopt(wp->curl, CURLOPT_HTTPHEADER, wp->headers);
388 if (wp->post_body != NULL)
389 curl_easy_setopt(wp->curl, CURLOPT_POSTFIELDS, wp->post_body);
391 #ifdef HAVE_CURLOPT_TIMEOUT_MS
392 if (wp->timeout >= 0)
393 curl_easy_setopt(wp->curl, CURLOPT_TIMEOUT_MS, (long)wp->timeout);
395 curl_easy_setopt(wp->curl, CURLOPT_TIMEOUT_MS,
396 (long)CDTIME_T_TO_MS(plugin_get_interval()));
400 } /* }}} int cc_page_init_curl */
402 static int cc_config_add_page(oconfig_item_t *ci) /* {{{ */
407 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
408 WARNING("curl plugin: `Page' blocks need exactly one string argument.");
412 page = calloc(1, sizeof(*page));
414 ERROR("curl plugin: calloc failed.");
417 page->plugin_name = NULL;
422 page->verify_peer = 1;
423 page->verify_host = 1;
424 page->response_time = 0;
425 page->response_code = 0;
429 page->instance = strdup(ci->values[0].value.string);
430 if (page->instance == NULL) {
431 ERROR("curl plugin: strdup failed.");
436 /* Process all children */
438 for (int i = 0; i < ci->children_num; i++) {
439 oconfig_item_t *child = ci->children + i;
441 if (strcasecmp("Plugin", child->key) == 0)
442 status = cf_util_get_string(child, &page->plugin_name);
443 else if (strcasecmp("URL", child->key) == 0)
444 status = cf_util_get_string(child, &page->url);
445 else if (strcasecmp("User", child->key) == 0)
446 status = cf_util_get_string(child, &page->user);
447 else if (strcasecmp("Password", child->key) == 0)
448 status = cf_util_get_string(child, &page->pass);
449 else if (strcasecmp("Digest", child->key) == 0)
450 status = cf_util_get_boolean(child, &page->digest);
451 else if (strcasecmp("VerifyPeer", child->key) == 0)
452 status = cf_util_get_boolean(child, &page->verify_peer);
453 else if (strcasecmp("VerifyHost", child->key) == 0)
454 status = cf_util_get_boolean(child, &page->verify_host);
455 else if (strcasecmp("MeasureResponseTime", child->key) == 0)
456 status = cf_util_get_boolean(child, &page->response_time);
457 else if (strcasecmp("MeasureResponseCode", child->key) == 0)
458 status = cf_util_get_boolean(child, &page->response_code);
459 else if (strcasecmp("CACert", child->key) == 0)
460 status = cf_util_get_string(child, &page->cacert);
461 else if (strcasecmp("Match", child->key) == 0)
462 /* Be liberal with failing matches => don't set `status'. */
463 cc_config_add_match(page, child);
464 else if (strcasecmp("Header", child->key) == 0)
465 status = cc_config_append_string("Header", &page->headers, child);
466 else if (strcasecmp("Post", child->key) == 0)
467 status = cf_util_get_string(child, &page->post_body);
468 else if (strcasecmp("Timeout", child->key) == 0)
469 status = cf_util_get_int(child, &page->timeout);
470 else if (strcasecmp("Statistics", child->key) == 0) {
471 page->stats = curl_stats_from_config(child);
472 if (page->stats == NULL)
475 WARNING("curl plugin: Option `%s' not allowed here.", child->key);
481 } /* for (i = 0; i < ci->children_num; i++) */
483 /* Additionial sanity checks and libCURL initialization. */
484 while (status == 0) {
485 if (page->url == NULL) {
486 WARNING("curl plugin: `URL' missing in `Page' block.");
490 if (page->matches == NULL && page->stats == NULL && !page->response_time &&
491 !page->response_code) {
492 assert(page->instance != NULL);
493 WARNING("curl plugin: No (valid) `Match' block "
494 "or Statistics or MeasureResponseTime or MeasureResponseCode "
495 "within `Page' block `%s'.",
501 status = cc_page_init_curl(page);
504 } /* while (status == 0) */
507 cc_web_page_free(page);
511 /* Add the new page to the linked list */
518 while (prev->next != NULL)
524 } /* }}} int cc_config_add_page */
526 static int cc_config(oconfig_item_t *ci) /* {{{ */
535 for (int i = 0; i < ci->children_num; i++) {
536 oconfig_item_t *child = ci->children + i;
538 if (strcasecmp("Page", child->key) == 0) {
539 status = cc_config_add_page(child);
545 WARNING("curl plugin: Option `%s' not allowed here.", child->key);
550 if ((success == 0) && (errors > 0)) {
551 ERROR("curl plugin: All statements failed.");
556 } /* }}} int cc_config */
558 static int cc_init(void) /* {{{ */
560 if (pages_g == NULL) {
561 INFO("curl plugin: No pages have been defined.");
564 curl_global_init(CURL_GLOBAL_SSL);
566 } /* }}} int cc_init */
568 static void cc_submit(const web_page_t *wp, const web_match_t *wm, /* {{{ */
570 value_list_t vl = VALUE_LIST_INIT;
574 sstrncpy(vl.plugin, (wp->plugin_name != NULL) ? wp->plugin_name : "curl",
576 sstrncpy(vl.plugin_instance, wp->instance, sizeof(vl.plugin_instance));
577 sstrncpy(vl.type, wm->type, sizeof(vl.type));
578 if (wm->instance != NULL)
579 sstrncpy(vl.type_instance, wm->instance, sizeof(vl.type_instance));
581 plugin_dispatch_values(&vl);
582 } /* }}} void cc_submit */
584 static void cc_submit_response_code(const web_page_t *wp, long code) /* {{{ */
586 value_list_t vl = VALUE_LIST_INIT;
588 vl.values = &(value_t){.gauge = (gauge_t)code};
590 sstrncpy(vl.plugin, (wp->plugin_name != NULL) ? wp->plugin_name : "curl",
592 sstrncpy(vl.plugin_instance, wp->instance, sizeof(vl.plugin_instance));
593 sstrncpy(vl.type, "response_code", sizeof(vl.type));
595 plugin_dispatch_values(&vl);
596 } /* }}} void cc_submit_response_code */
598 static void cc_submit_response_time(const web_page_t *wp, /* {{{ */
599 gauge_t response_time) {
600 value_list_t vl = VALUE_LIST_INIT;
602 vl.values = &(value_t){.gauge = response_time};
604 sstrncpy(vl.plugin, (wp->plugin_name != NULL) ? wp->plugin_name : "curl",
606 sstrncpy(vl.plugin_instance, wp->instance, sizeof(vl.plugin_instance));
607 sstrncpy(vl.type, "response_time", sizeof(vl.type));
609 plugin_dispatch_values(&vl);
610 } /* }}} void cc_submit_response_time */
612 static int cc_read_page(web_page_t *wp) /* {{{ */
617 if (wp->response_time)
622 curl_easy_setopt(wp->curl, CURLOPT_URL, wp->url);
624 status = curl_easy_perform(wp->curl);
625 if (status != CURLE_OK) {
626 ERROR("curl plugin: curl_easy_perform failed with status %i: %s", status,
631 if (wp->response_time)
632 cc_submit_response_time(wp, CDTIME_T_TO_DOUBLE(cdtime() - start));
633 if (wp->stats != NULL)
634 curl_stats_dispatch(wp->stats, wp->curl, NULL, "curl", wp->instance);
636 if (wp->response_code) {
637 long response_code = 0;
639 curl_easy_getinfo(wp->curl, CURLINFO_RESPONSE_CODE, &response_code);
640 if (status != CURLE_OK) {
641 ERROR("curl plugin: Fetching response code failed with status %i: %s",
642 status, wp->curl_errbuf);
644 cc_submit_response_code(wp, response_code);
648 for (web_match_t *wm = wp->matches; wm != NULL; wm = wm->next) {
649 cu_match_value_t *mv;
651 status = match_apply(wm->match, wp->buffer);
653 WARNING("curl plugin: match_apply failed.");
657 mv = match_get_user_data(wm->match);
659 WARNING("curl plugin: match_get_user_data returned NULL.");
663 cc_submit(wp, wm, mv->value);
664 match_value_reset(mv);
665 } /* for (wm = wp->matches; wm != NULL; wm = wm->next) */
668 } /* }}} int cc_read_page */
670 static int cc_read(void) /* {{{ */
672 for (web_page_t *wp = pages_g; wp != NULL; wp = wp->next)
676 } /* }}} int cc_read */
678 static int cc_shutdown(void) /* {{{ */
680 cc_web_page_free(pages_g);
684 } /* }}} int cc_shutdown */
686 void module_register(void) {
687 plugin_register_complex_config("curl", cc_config);
688 plugin_register_init("curl", cc_init);
689 plugin_register_read("curl", cc_read);
690 plugin_register_shutdown("curl", cc_shutdown);
691 } /* void module_register */