curl*: remove unneeded option declarations
[collectd.git] / src / curl.c
1 /**
2  * collectd - src/curl.c
3  * Copyright (C) 2006-2009  Florian octo Forster
4  * Copyright (C) 2009       Aman Gupta
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  *   Florian octo Forster <octo at collectd.org>
21  *   Aman Gupta <aman at tmm1.net>
22  **/
23
24 #include "collectd.h"
25 #include "common.h"
26 #include "plugin.h"
27 #include "configfile.h"
28 #include "utils_match.h"
29 #include "utils_time.h"
30
31 #include <curl/curl.h>
32
33 /*
34  * Data types
35  */
36 struct web_match_s;
37 typedef struct web_match_s web_match_t;
38 struct web_match_s /* {{{ */
39 {
40   char *regex;
41   char *exclude_regex;
42   int dstype;
43   char *type;
44   char *instance;
45
46   cu_match_t *match;
47
48   web_match_t *next;
49 }; /* }}} */
50
51 struct web_page_s;
52 typedef struct web_page_s web_page_t;
53 struct web_page_s /* {{{ */
54 {
55   char *instance;
56
57   char *url;
58   char *user;
59   char *pass;
60   char *credentials;
61   _Bool digest;
62   _Bool verify_peer;
63   _Bool verify_host;
64   char *cacert;
65   struct curl_slist *headers;
66   char *post_body;
67   _Bool response_time;
68   _Bool response_code;
69
70   CURL *curl;
71   char curl_errbuf[CURL_ERROR_SIZE];
72   char *buffer;
73   size_t buffer_size;
74   size_t buffer_fill;
75
76   web_match_t *matches;
77
78   web_page_t *next;
79 }; /* }}} */
80
81 /*
82  * Global variables;
83  */
84 /* static CURLM *curl = NULL; */
85 static web_page_t *pages_g = NULL;
86
87 /*
88  * Private functions
89  */
90 static size_t cc_curl_callback (void *buf, /* {{{ */
91     size_t size, size_t nmemb, void *user_data)
92 {
93   web_page_t *wp;
94   size_t len;
95
96   len = size * nmemb;
97   if (len <= 0)
98     return (len);
99
100   wp = user_data;
101   if (wp == NULL)
102     return (0);
103
104   if ((wp->buffer_fill + len) >= wp->buffer_size)
105   {
106     char *temp;
107     size_t temp_size;
108
109     temp_size = wp->buffer_fill + len + 1;
110     temp = (char *) realloc (wp->buffer, temp_size);
111     if (temp == NULL)
112     {
113       ERROR ("curl plugin: realloc failed.");
114       return (0);
115     }
116     wp->buffer = temp;
117     wp->buffer_size = temp_size;
118   }
119
120   memcpy (wp->buffer + wp->buffer_fill, (char *) buf, len);
121   wp->buffer_fill += len;
122   wp->buffer[wp->buffer_fill] = 0;
123
124   return (len);
125 } /* }}} size_t cc_curl_callback */
126
127 static void cc_web_match_free (web_match_t *wm) /* {{{ */
128 {
129   if (wm == NULL)
130     return;
131
132   sfree (wm->regex);
133   sfree (wm->type);
134   sfree (wm->instance);
135   match_destroy (wm->match);
136   cc_web_match_free (wm->next);
137   sfree (wm);
138 } /* }}} void cc_web_match_free */
139
140 static void cc_web_page_free (web_page_t *wp) /* {{{ */
141 {
142   if (wp == NULL)
143     return;
144
145   if (wp->curl != NULL)
146     curl_easy_cleanup (wp->curl);
147   wp->curl = NULL;
148
149   sfree (wp->instance);
150
151   sfree (wp->url);
152   sfree (wp->user);
153   sfree (wp->pass);
154   sfree (wp->credentials);
155   sfree (wp->cacert);
156   sfree (wp->post_body);
157   curl_slist_free_all (wp->headers);
158
159   sfree (wp->buffer);
160
161   cc_web_match_free (wp->matches);
162   cc_web_page_free (wp->next);
163   sfree (wp);
164 } /* }}} void cc_web_page_free */
165
166 static int cc_config_append_string (const char *name, struct curl_slist **dest, /* {{{ */
167     oconfig_item_t *ci)
168 {
169   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
170   {
171     WARNING ("curl plugin: `%s' needs exactly one string argument.", name);
172     return (-1);
173   }
174
175   *dest = curl_slist_append(*dest, ci->values[0].value.string);
176   if (*dest == NULL)
177     return (-1);
178
179   return (0);
180 } /* }}} int cc_config_append_string */
181
182 static int cc_config_add_match_dstype (int *dstype_ret, /* {{{ */
183     oconfig_item_t *ci)
184 {
185   int dstype;
186
187   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
188   {
189     WARNING ("curl plugin: `DSType' needs exactly one string argument.");
190     return (-1);
191   }
192
193   if (strncasecmp ("Gauge", ci->values[0].value.string,
194         strlen ("Gauge")) == 0)
195   {
196     dstype = UTILS_MATCH_DS_TYPE_GAUGE;
197     if (strcasecmp ("GaugeAverage", ci->values[0].value.string) == 0)
198       dstype |= UTILS_MATCH_CF_GAUGE_AVERAGE;
199     else if (strcasecmp ("GaugeMin", ci->values[0].value.string) == 0)
200       dstype |= UTILS_MATCH_CF_GAUGE_MIN;
201     else if (strcasecmp ("GaugeMax", ci->values[0].value.string) == 0)
202       dstype |= UTILS_MATCH_CF_GAUGE_MAX;
203     else if (strcasecmp ("GaugeLast", ci->values[0].value.string) == 0)
204       dstype |= UTILS_MATCH_CF_GAUGE_LAST;
205     else
206       dstype = 0;
207   }
208   else if (strncasecmp ("Counter", ci->values[0].value.string,
209         strlen ("Counter")) == 0)
210   {
211     dstype = UTILS_MATCH_DS_TYPE_COUNTER;
212     if (strcasecmp ("CounterSet", ci->values[0].value.string) == 0)
213       dstype |= UTILS_MATCH_CF_COUNTER_SET;
214     else if (strcasecmp ("CounterAdd", ci->values[0].value.string) == 0)
215       dstype |= UTILS_MATCH_CF_COUNTER_ADD;
216     else if (strcasecmp ("CounterInc", ci->values[0].value.string) == 0)
217       dstype |= UTILS_MATCH_CF_COUNTER_INC;
218     else
219       dstype = 0;
220   }
221 else if (strncasecmp ("Derive", ci->values[0].value.string,
222         strlen ("Derive")) == 0)
223   {
224     dstype = UTILS_MATCH_DS_TYPE_DERIVE;
225     if (strcasecmp ("DeriveSet", ci->values[0].value.string) == 0)
226       dstype |= UTILS_MATCH_CF_DERIVE_SET;
227     else if (strcasecmp ("DeriveAdd", ci->values[0].value.string) == 0)
228       dstype |= UTILS_MATCH_CF_DERIVE_ADD;
229     else if (strcasecmp ("DeriveInc", ci->values[0].value.string) == 0)
230       dstype |= UTILS_MATCH_CF_DERIVE_INC;
231     else
232       dstype = 0;
233   }
234 else if (strncasecmp ("Absolute", ci->values[0].value.string,
235         strlen ("Absolute")) == 0)
236   {
237     dstype = UTILS_MATCH_DS_TYPE_ABSOLUTE;
238     if (strcasecmp ("AbsoluteSet", ci->values[0].value.string) == 0) /* Absolute DS is reset-on-read so no sense doin anything else but set */
239       dstype |= UTILS_MATCH_CF_ABSOLUTE_SET;
240     else
241       dstype = 0;
242   }
243
244   else
245   {
246     dstype = 0;
247   }
248
249   if (dstype == 0)
250   {
251     WARNING ("curl plugin: `%s' is not a valid argument to `DSType'.",
252         ci->values[0].value.string);
253     return (-1);
254   }
255
256   *dstype_ret = dstype;
257   return (0);
258 } /* }}} int cc_config_add_match_dstype */
259
260 static int cc_config_add_match (web_page_t *page, /* {{{ */
261     oconfig_item_t *ci)
262 {
263   web_match_t *match;
264   int status;
265   int i;
266
267   if (ci->values_num != 0)
268   {
269     WARNING ("curl plugin: Ignoring arguments for the `Match' block.");
270   }
271
272   match = (web_match_t *) malloc (sizeof (*match));
273   if (match == NULL)
274   {
275     ERROR ("curl plugin: malloc failed.");
276     return (-1);
277   }
278   memset (match, 0, sizeof (*match));
279
280   status = 0;
281   for (i = 0; i < ci->children_num; i++)
282   {
283     oconfig_item_t *child = ci->children + i;
284
285     if (strcasecmp ("Regex", child->key) == 0)
286       status = cf_util_get_string (child, &match->regex);
287     else if (strcasecmp ("ExcludeRegex", child->key) == 0)
288       status = cf_util_get_string (child, &match->exclude_regex);
289     else if (strcasecmp ("DSType", child->key) == 0)
290       status = cc_config_add_match_dstype (&match->dstype, child);
291     else if (strcasecmp ("Type", child->key) == 0)
292       status = cf_util_get_string (child, &match->type);
293     else if (strcasecmp ("Instance", child->key) == 0)
294       status = cf_util_get_string (child, &match->instance);
295     else
296     {
297       WARNING ("curl plugin: Option `%s' not allowed here.", child->key);
298       status = -1;
299     }
300
301     if (status != 0)
302       break;
303   } /* for (i = 0; i < ci->children_num; i++) */
304
305   while (status == 0)
306   {
307     if (match->regex == NULL)
308     {
309       WARNING ("curl plugin: `Regex' missing in `Match' block.");
310       status = -1;
311     }
312
313     if (match->type == NULL)
314     {
315       WARNING ("curl plugin: `Type' missing in `Match' block.");
316       status = -1;
317     }
318
319     if (match->dstype == 0)
320     {
321       WARNING ("curl plugin: `DSType' missing in `Match' block.");
322       status = -1;
323     }
324
325     break;
326   } /* while (status == 0) */
327
328   if (status != 0)
329     return (status);
330
331   match->match = match_create_simple (match->regex, match->exclude_regex,
332       match->dstype);
333   if (match->match == NULL)
334   {
335     ERROR ("curl plugin: tail_match_add_match_simple failed.");
336     cc_web_match_free (match);
337     return (-1);
338   }
339   else
340   {
341     web_match_t *prev;
342
343     prev = page->matches;
344     while ((prev != NULL) && (prev->next != NULL))
345       prev = prev->next;
346
347     if (prev == NULL)
348       page->matches = match;
349     else
350       prev->next = match;
351   }
352
353   return (0);
354 } /* }}} int cc_config_add_match */
355
356 static int cc_page_init_curl (web_page_t *wp) /* {{{ */
357 {
358   wp->curl = curl_easy_init ();
359   if (wp->curl == NULL)
360   {
361     ERROR ("curl plugin: curl_easy_init failed.");
362     return (-1);
363   }
364
365   curl_easy_setopt (wp->curl, CURLOPT_NOSIGNAL, 1L);
366   curl_easy_setopt (wp->curl, CURLOPT_WRITEFUNCTION, cc_curl_callback);
367   curl_easy_setopt (wp->curl, CURLOPT_WRITEDATA, wp);
368   curl_easy_setopt (wp->curl, CURLOPT_USERAGENT, COLLECTD_USERAGENT);
369   curl_easy_setopt (wp->curl, CURLOPT_ERRORBUFFER, wp->curl_errbuf);
370   curl_easy_setopt (wp->curl, CURLOPT_URL, wp->url);
371   curl_easy_setopt (wp->curl, CURLOPT_FOLLOWLOCATION, 1L);
372   curl_easy_setopt (wp->curl, CURLOPT_MAXREDIRS, 50L);
373
374   if (wp->user != NULL)
375   {
376     size_t credentials_size;
377
378     credentials_size = strlen (wp->user) + 2;
379     if (wp->pass != NULL)
380       credentials_size += strlen (wp->pass);
381
382     wp->credentials = (char *) malloc (credentials_size);
383     if (wp->credentials == NULL)
384     {
385       ERROR ("curl plugin: malloc failed.");
386       return (-1);
387     }
388
389     ssnprintf (wp->credentials, credentials_size, "%s:%s",
390         wp->user, (wp->pass == NULL) ? "" : wp->pass);
391     curl_easy_setopt (wp->curl, CURLOPT_USERPWD, wp->credentials);
392
393     if (wp->digest)
394       curl_easy_setopt (wp->curl, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);
395   }
396
397   curl_easy_setopt (wp->curl, CURLOPT_SSL_VERIFYPEER, (long) wp->verify_peer);
398   curl_easy_setopt (wp->curl, CURLOPT_SSL_VERIFYHOST,
399       wp->verify_host ? 2L : 0L);
400   if (wp->cacert != NULL)
401     curl_easy_setopt (wp->curl, CURLOPT_CAINFO, wp->cacert);
402   if (wp->headers != NULL)
403     curl_easy_setopt (wp->curl, CURLOPT_HTTPHEADER, wp->headers);
404   if (wp->post_body != NULL)
405     curl_easy_setopt (wp->curl, CURLOPT_POSTFIELDS, wp->post_body);
406
407   return (0);
408 } /* }}} int cc_page_init_curl */
409
410 static int cc_config_add_page (oconfig_item_t *ci) /* {{{ */
411 {
412   web_page_t *page;
413   int status;
414   int i;
415
416   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
417   {
418     WARNING ("curl plugin: `Page' blocks need exactly one string argument.");
419     return (-1);
420   }
421
422   page = (web_page_t *) malloc (sizeof (*page));
423   if (page == NULL)
424   {
425     ERROR ("curl plugin: malloc failed.");
426     return (-1);
427   }
428   memset (page, 0, sizeof (*page));
429   page->url = NULL;
430   page->user = NULL;
431   page->pass = NULL;
432   page->digest = 0;
433   page->verify_peer = 1;
434   page->verify_host = 1;
435   page->response_time = 0;
436   page->response_code = 0;
437
438   page->instance = strdup (ci->values[0].value.string);
439   if (page->instance == NULL)
440   {
441     ERROR ("curl plugin: strdup failed.");
442     sfree (page);
443     return (-1);
444   }
445
446   /* Process all children */
447   status = 0;
448   for (i = 0; i < ci->children_num; i++)
449   {
450     oconfig_item_t *child = ci->children + i;
451
452     if (strcasecmp ("URL", child->key) == 0)
453       status = cf_util_get_string (child, &page->url);
454     else if (strcasecmp ("User", child->key) == 0)
455       status = cf_util_get_string (child, &page->user);
456     else if (strcasecmp ("Password", child->key) == 0)
457       status = cf_util_get_string (child, &page->pass);
458     else if (strcasecmp ("Digest", child->key) == 0)
459       status = cf_util_get_boolean (child, &page->digest);
460     else if (strcasecmp ("VerifyPeer", child->key) == 0)
461       status = cf_util_get_boolean (child, &page->verify_peer);
462     else if (strcasecmp ("VerifyHost", child->key) == 0)
463       status = cf_util_get_boolean (child, &page->verify_host);
464     else if (strcasecmp ("MeasureResponseTime", child->key) == 0)
465       status = cf_util_get_boolean (child, &page->response_time);
466     else if (strcasecmp ("MeasureResponseCode", child->key) == 0)
467       status = cf_util_get_boolean (child, &page->response_code);
468     else if (strcasecmp ("CACert", child->key) == 0)
469       status = cf_util_get_string (child, &page->cacert);
470     else if (strcasecmp ("Match", child->key) == 0)
471       /* Be liberal with failing matches => don't set `status'. */
472       cc_config_add_match (page, child);
473     else if (strcasecmp ("Header", child->key) == 0)
474       status = cc_config_append_string ("Header", &page->headers, child);
475     else if (strcasecmp ("Post", child->key) == 0)
476       status = cf_util_get_string (child, &page->post_body);
477     else
478     {
479       WARNING ("curl plugin: Option `%s' not allowed here.", child->key);
480       status = -1;
481     }
482
483     if (status != 0)
484       break;
485   } /* for (i = 0; i < ci->children_num; i++) */
486
487   /* Additionial sanity checks and libCURL initialization. */
488   while (status == 0)
489   {
490     if (page->url == NULL)
491     {
492       WARNING ("curl plugin: `URL' missing in `Page' block.");
493       status = -1;
494     }
495
496     if (page->matches == NULL && !page->response_time && !page->response_code)
497     {
498       assert (page->instance != NULL);
499       WARNING ("curl plugin: No (valid) `Match' block "
500           "or MeasureResponseTime or MeasureResponseCode within "
501           "`Page' block `%s'.", page->instance);
502       status = -1;
503     }
504
505     if (status == 0)
506       status = cc_page_init_curl (page);
507
508     break;
509   } /* while (status == 0) */
510
511   if (status != 0)
512   {
513     cc_web_page_free (page);
514     return (status);
515   }
516
517   /* Add the new page to the linked list */
518   if (pages_g == NULL)
519     pages_g = page;
520   else
521   {
522     web_page_t *prev;
523
524     prev = pages_g;
525     while ((prev != NULL) && (prev->next != NULL))
526       prev = prev->next;
527     prev->next = page;
528   }
529
530   return (0);
531 } /* }}} int cc_config_add_page */
532
533 static int cc_config (oconfig_item_t *ci) /* {{{ */
534 {
535   int success;
536   int errors;
537   int status;
538   int i;
539
540   success = 0;
541   errors = 0;
542
543   for (i = 0; i < ci->children_num; i++)
544   {
545     oconfig_item_t *child = ci->children + i;
546
547     if (strcasecmp ("Page", child->key) == 0)
548     {
549       status = cc_config_add_page (child);
550       if (status == 0)
551         success++;
552       else
553         errors++;
554     }
555     else
556     {
557       WARNING ("curl plugin: Option `%s' not allowed here.", child->key);
558       errors++;
559     }
560   }
561
562   if ((success == 0) && (errors > 0))
563   {
564     ERROR ("curl plugin: All statements failed.");
565     return (-1);
566   }
567
568   return (0);
569 } /* }}} int cc_config */
570
571 static int cc_init (void) /* {{{ */
572 {
573   if (pages_g == NULL)
574   {
575     INFO ("curl plugin: No pages have been defined.");
576     return (-1);
577   }
578   return (0);
579 } /* }}} int cc_init */
580
581 static void cc_submit (const web_page_t *wp, const web_match_t *wm, /* {{{ */
582     const cu_match_value_t *mv)
583 {
584   value_t values[1];
585   value_list_t vl = VALUE_LIST_INIT;
586
587   values[0] = mv->value;
588
589   vl.values = values;
590   vl.values_len = 1;
591   sstrncpy (vl.host, hostname_g, sizeof (vl.host));
592   sstrncpy (vl.plugin, "curl", sizeof (vl.plugin));
593   sstrncpy (vl.plugin_instance, wp->instance, sizeof (vl.plugin_instance));
594   sstrncpy (vl.type, wm->type, sizeof (vl.type));
595   if (wm->instance != NULL)
596     sstrncpy (vl.type_instance, wm->instance, sizeof (vl.type_instance));
597
598   plugin_dispatch_values (&vl);
599 } /* }}} void cc_submit */
600
601 static void cc_submit_response_code (const web_page_t *wp, long code) /* {{{ */
602 {
603   value_t values[1];
604   value_list_t vl = VALUE_LIST_INIT;
605
606   values[0].gauge = code;
607
608   vl.values = values;
609   vl.values_len = 1;
610   sstrncpy (vl.host, hostname_g, sizeof (vl.host));
611   sstrncpy (vl.plugin, "curl", sizeof (vl.plugin));
612   sstrncpy (vl.plugin_instance, wp->instance, sizeof (vl.plugin_instance));
613   sstrncpy (vl.type, "response_code", sizeof (vl.type));
614
615   plugin_dispatch_values (&vl);
616 } /* }}} void cc_submit_response_code */
617
618 static void cc_submit_response_time (const web_page_t *wp, /* {{{ */
619     cdtime_t response_time)
620 {
621   value_t values[1];
622   value_list_t vl = VALUE_LIST_INIT;
623
624   values[0].gauge = CDTIME_T_TO_DOUBLE (response_time);
625
626   vl.values = values;
627   vl.values_len = 1;
628   sstrncpy (vl.host, hostname_g, sizeof (vl.host));
629   sstrncpy (vl.plugin, "curl", sizeof (vl.plugin));
630   sstrncpy (vl.plugin_instance, wp->instance, sizeof (vl.plugin_instance));
631   sstrncpy (vl.type, "response_time", sizeof (vl.type));
632
633   plugin_dispatch_values (&vl);
634 } /* }}} void cc_submit_response_time */
635
636 static int cc_read_page (web_page_t *wp) /* {{{ */
637 {
638   web_match_t *wm;
639   int status;
640   cdtime_t start = 0;
641
642   if (wp->response_time)
643     start = cdtime ();
644
645   wp->buffer_fill = 0;
646   status = curl_easy_perform (wp->curl);
647   if (status != CURLE_OK)
648   {
649     ERROR ("curl plugin: curl_easy_perform failed with staus %i: %s",
650         status, wp->curl_errbuf);
651     return (-1);
652   }
653
654   if (wp->response_time)
655     cc_submit_response_time (wp, cdtime() - start);
656
657   if(wp->response_code)
658   {
659     long response_code = 0;
660     status = curl_easy_getinfo(wp->curl, CURLINFO_RESPONSE_CODE, &response_code);
661     if(status != CURLE_OK) {
662       ERROR ("curl plugin: Fetching response code failed with staus %i: %s",
663         status, wp->curl_errbuf);
664     } else {
665       cc_submit_response_code(wp, response_code);
666     }
667   }
668
669   for (wm = wp->matches; wm != NULL; wm = wm->next)
670   {
671     cu_match_value_t *mv;
672
673     status = match_apply (wm->match, wp->buffer);
674     if (status != 0)
675     {
676       WARNING ("curl plugin: match_apply failed.");
677       continue;
678     }
679
680     mv = match_get_user_data (wm->match);
681     if (mv == NULL)
682     {
683       WARNING ("curl plugin: match_get_user_data returned NULL.");
684       continue;
685     }
686
687     cc_submit (wp, wm, mv);
688   } /* for (wm = wp->matches; wm != NULL; wm = wm->next) */
689
690   return (0);
691 } /* }}} int cc_read_page */
692
693 static int cc_read (void) /* {{{ */
694 {
695   web_page_t *wp;
696
697   for (wp = pages_g; wp != NULL; wp = wp->next)
698     cc_read_page (wp);
699
700   return (0);
701 } /* }}} int cc_read */
702
703 static int cc_shutdown (void) /* {{{ */
704 {
705   cc_web_page_free (pages_g);
706   pages_g = NULL;
707
708   return (0);
709 } /* }}} int cc_shutdown */
710
711 void module_register (void)
712 {
713   plugin_register_complex_config ("curl", cc_config);
714   plugin_register_init ("curl", cc_init);
715   plugin_register_read ("curl", cc_read);
716   plugin_register_shutdown ("curl", cc_shutdown);
717 } /* void module_register */
718
719 /* vim: set sw=2 sts=2 et fdm=marker : */