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