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