Merge branch 'collectd-5.4' into collectd-5.5
[collectd.git] / src / daemon / configfile.c
1 /**
2  * collectd - src/configfile.c
3  * Copyright (C) 2005-2011  Florian octo Forster
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  *
23  * Authors:
24  *   Florian octo Forster <octo at collectd.org>
25  *   Sebastian tokkee Harl <sh at tokkee.org>
26  **/
27
28 #include "collectd.h"
29
30 #include "liboconfig/oconfig.h"
31
32 #include "common.h"
33 #include "plugin.h"
34 #include "configfile.h"
35 #include "types_list.h"
36 #include "filter_chain.h"
37
38 #if HAVE_WORDEXP_H
39 # include <wordexp.h>
40 #endif /* HAVE_WORDEXP_H */
41
42 #if HAVE_FNMATCH_H
43 # include <fnmatch.h>
44 #endif /* HAVE_FNMATCH_H */
45
46 #if HAVE_LIBGEN_H
47 # include <libgen.h>
48 #endif /* HAVE_LIBGEN_H */
49
50 #define ESCAPE_NULL(str) ((str) == NULL ? "(null)" : (str))
51
52 /*
53  * Private types
54  */
55 typedef struct cf_callback
56 {
57         const char  *type;
58         int  (*callback) (const char *, const char *);
59         const char **keys;
60         int    keys_num;
61         plugin_ctx_t ctx;
62         struct cf_callback *next;
63 } cf_callback_t;
64
65 typedef struct cf_complex_callback_s
66 {
67         char *type;
68         int (*callback) (oconfig_item_t *);
69         plugin_ctx_t ctx;
70         struct cf_complex_callback_s *next;
71 } cf_complex_callback_t;
72
73 typedef struct cf_value_map_s
74 {
75         char *key;
76         int (*func) (oconfig_item_t *);
77 } cf_value_map_t;
78
79 typedef struct cf_global_option_s
80 {
81         char *key;
82         char *value;
83         char *def;
84 } cf_global_option_t;
85
86 /*
87  * Prototypes of callback functions
88  */
89 static int dispatch_value_typesdb (oconfig_item_t *ci);
90 static int dispatch_value_plugindir (oconfig_item_t *ci);
91 static int dispatch_loadplugin (oconfig_item_t *ci);
92 static int dispatch_block_plugin (oconfig_item_t *ci);
93
94 /*
95  * Private variables
96  */
97 static cf_callback_t *first_callback = NULL;
98 static cf_complex_callback_t *complex_callback_head = NULL;
99
100 static cf_value_map_t cf_value_map[] =
101 {
102         {"TypesDB",    dispatch_value_typesdb},
103         {"PluginDir",  dispatch_value_plugindir},
104         {"LoadPlugin", dispatch_loadplugin},
105         {"Plugin",     dispatch_block_plugin}
106 };
107 static int cf_value_map_num = STATIC_ARRAY_SIZE (cf_value_map);
108
109 static cf_global_option_t cf_global_options[] =
110 {
111         {"BaseDir",     NULL, PKGLOCALSTATEDIR},
112         {"PIDFile",     NULL, PIDFILE},
113         {"Hostname",    NULL, NULL},
114         {"FQDNLookup",  NULL, "true"},
115         {"Interval",    NULL, NULL},
116         {"ReadThreads", NULL, "5"},
117         {"WriteThreads", NULL, "5"},
118         {"WriteQueueLimitHigh", NULL, NULL},
119         {"WriteQueueLimitLow", NULL, NULL},
120         {"Timeout",     NULL, "2"},
121         {"AutoLoadPlugin", NULL, "false"},
122         {"CollectInternalStats", NULL, "false"},
123         {"PreCacheChain",  NULL, "PreCache"},
124         {"PostCacheChain", NULL, "PostCache"},
125         {"MaxReadInterval", NULL, "86400"}
126 };
127 static int cf_global_options_num = STATIC_ARRAY_SIZE (cf_global_options);
128
129 static int cf_default_typesdb = 1;
130
131 /*
132  * Functions to handle register/unregister, search, and other plugin related
133  * stuff
134  */
135 static cf_callback_t *cf_search (const char *type)
136 {
137         cf_callback_t *cf_cb;
138
139         if (type == NULL)
140                 return (NULL);
141
142         for (cf_cb = first_callback; cf_cb != NULL; cf_cb = cf_cb->next)
143                 if (strcasecmp (cf_cb->type, type) == 0)
144                         break;
145
146         return (cf_cb);
147 }
148
149 static int cf_dispatch (const char *type, const char *orig_key,
150                 const char *orig_value)
151 {
152         cf_callback_t *cf_cb;
153         plugin_ctx_t old_ctx;
154         char *key;
155         char *value;
156         int ret;
157         int i;
158
159         if (orig_key == NULL)
160                 return (EINVAL);
161
162         DEBUG ("type = %s, key = %s, value = %s",
163                         ESCAPE_NULL(type),
164                         orig_key,
165                         ESCAPE_NULL(orig_value));
166
167         if ((cf_cb = cf_search (type)) == NULL)
168         {
169                 WARNING ("Found a configuration for the `%s' plugin, but "
170                                 "the plugin isn't loaded or didn't register "
171                                 "a configuration callback.", type);
172                 return (-1);
173         }
174
175         if ((key = strdup (orig_key)) == NULL)
176                 return (1);
177         if ((value = strdup (orig_value)) == NULL)
178         {
179                 free (key);
180                 return (2);
181         }
182
183         ret = -1;
184
185         old_ctx = plugin_set_ctx (cf_cb->ctx);
186
187         for (i = 0; i < cf_cb->keys_num; i++)
188         {
189                 if ((cf_cb->keys[i] != NULL)
190                                 && (strcasecmp (cf_cb->keys[i], key) == 0))
191                 {
192                         ret = (*cf_cb->callback) (key, value);
193                         break;
194                 }
195         }
196
197         plugin_set_ctx (old_ctx);
198
199         if (i >= cf_cb->keys_num)
200                 WARNING ("Plugin `%s' did not register for value `%s'.", type, key);
201
202         free (key);
203         free (value);
204
205         return (ret);
206 } /* int cf_dispatch */
207
208 static int dispatch_global_option (const oconfig_item_t *ci)
209 {
210         if (ci->values_num != 1)
211                 return (-1);
212         if (ci->values[0].type == OCONFIG_TYPE_STRING)
213                 return (global_option_set (ci->key, ci->values[0].value.string));
214         else if (ci->values[0].type == OCONFIG_TYPE_NUMBER)
215         {
216                 char tmp[128];
217                 ssnprintf (tmp, sizeof (tmp), "%lf", ci->values[0].value.number);
218                 return (global_option_set (ci->key, tmp));
219         }
220         else if (ci->values[0].type == OCONFIG_TYPE_BOOLEAN)
221         {
222                 if (ci->values[0].value.boolean)
223                         return (global_option_set (ci->key, "true"));
224                 else
225                         return (global_option_set (ci->key, "false"));
226         }
227
228         return (-1);
229 } /* int dispatch_global_option */
230
231 static int dispatch_value_typesdb (oconfig_item_t *ci)
232 {
233         int i = 0;
234
235         assert (strcasecmp (ci->key, "TypesDB") == 0);
236
237         cf_default_typesdb = 0;
238
239         if (ci->values_num < 1) {
240                 ERROR ("configfile: `TypesDB' needs at least one argument.");
241                 return (-1);
242         }
243
244         for (i = 0; i < ci->values_num; ++i)
245         {
246                 if (OCONFIG_TYPE_STRING != ci->values[i].type) {
247                         WARNING ("configfile: TypesDB: Skipping %i. argument which "
248                                         "is not a string.", i + 1);
249                         continue;
250                 }
251
252                 read_types_list (ci->values[i].value.string);
253         }
254         return (0);
255 } /* int dispatch_value_typesdb */
256
257 static int dispatch_value_plugindir (oconfig_item_t *ci)
258 {
259         assert (strcasecmp (ci->key, "PluginDir") == 0);
260         
261         if (ci->values_num != 1)
262                 return (-1);
263         if (ci->values[0].type != OCONFIG_TYPE_STRING)
264                 return (-1);
265
266         plugin_set_dir (ci->values[0].value.string);
267         return (0);
268 }
269
270 static int dispatch_loadplugin (oconfig_item_t *ci)
271 {
272         int i;
273         const char *name;
274         unsigned int flags = 0;
275         plugin_ctx_t ctx;
276         plugin_ctx_t old_ctx;
277         int ret_val;
278
279         assert (strcasecmp (ci->key, "LoadPlugin") == 0);
280
281         if (ci->values_num != 1)
282                 return (-1);
283         if (ci->values[0].type != OCONFIG_TYPE_STRING)
284                 return (-1);
285
286         name = ci->values[0].value.string;
287         if (strcmp ("libvirt", name) == 0)
288                 name = "virt";
289
290         /* default to the global interval set before loading this plugin */
291         memset (&ctx, 0, sizeof (ctx));
292         ctx.interval = cf_get_default_interval ();
293
294         for (i = 0; i < ci->children_num; ++i) {
295                 if (strcasecmp("Globals", ci->children[i].key) == 0)
296                         cf_util_get_flag (ci->children + i, &flags, PLUGIN_FLAGS_GLOBAL);
297                 else if (strcasecmp ("Interval", ci->children[i].key) == 0) {
298                         if (cf_util_get_cdtime (ci->children + i, &ctx.interval) != 0) {
299                                 /* cf_util_get_cdtime will log an error */
300                                 continue;
301                         }
302                 }
303                 else {
304                         WARNING("Ignoring unknown LoadPlugin option \"%s\" "
305                                         "for plugin \"%s\"",
306                                         ci->children[i].key, ci->values[0].value.string);
307                 }
308         }
309
310         old_ctx = plugin_set_ctx (ctx);
311         ret_val = plugin_load (name, (uint32_t) flags);
312         /* reset to the "global" context */
313         plugin_set_ctx (old_ctx);
314
315         return (ret_val);
316 } /* int dispatch_value_loadplugin */
317
318 static int dispatch_value_plugin (const char *plugin, oconfig_item_t *ci)
319 {
320         char  buffer[4096];
321         char *buffer_ptr;
322         int   buffer_free;
323         int i;
324
325         buffer_ptr = buffer;
326         buffer_free = sizeof (buffer);
327
328         for (i = 0; i < ci->values_num; i++)
329         {
330                 int status = -1;
331
332                 if (ci->values[i].type == OCONFIG_TYPE_STRING)
333                         status = ssnprintf (buffer_ptr, buffer_free, " %s",
334                                         ci->values[i].value.string);
335                 else if (ci->values[i].type == OCONFIG_TYPE_NUMBER)
336                         status = ssnprintf (buffer_ptr, buffer_free, " %lf",
337                                         ci->values[i].value.number);
338                 else if (ci->values[i].type == OCONFIG_TYPE_BOOLEAN)
339                         status = ssnprintf (buffer_ptr, buffer_free, " %s",
340                                         ci->values[i].value.boolean
341                                         ? "true" : "false");
342
343                 if ((status < 0) || (status >= buffer_free))
344                         return (-1);
345                 buffer_free -= status;
346                 buffer_ptr  += status;
347         }
348         /* skip the initial space */
349         buffer_ptr = buffer + 1;
350
351         return (cf_dispatch (plugin, ci->key, buffer_ptr));
352 } /* int dispatch_value_plugin */
353
354 static int dispatch_value (oconfig_item_t *ci)
355 {
356         int ret = -2;
357         int i;
358
359         for (i = 0; i < cf_value_map_num; i++)
360                 if (strcasecmp (cf_value_map[i].key, ci->key) == 0)
361                 {
362                         ret = cf_value_map[i].func (ci);
363                         break;
364                 }
365
366         for (i = 0; i < cf_global_options_num; i++)
367                 if (strcasecmp (cf_global_options[i].key, ci->key) == 0)
368                 {
369                         ret = dispatch_global_option (ci);
370                         break;
371                 }
372
373         return (ret);
374 } /* int dispatch_value */
375
376 static int dispatch_block_plugin (oconfig_item_t *ci)
377 {
378         int i;
379         char *name;
380
381         cf_complex_callback_t *cb;
382
383         if (strcasecmp (ci->key, "Plugin") != 0)
384                 return (-1);
385         if (ci->values_num < 1)
386                 return (-1);
387         if (ci->values[0].type != OCONFIG_TYPE_STRING)
388                 return (-1);
389
390         name = ci->values[0].value.string;
391         if (strcmp ("libvirt", name) == 0)
392         {
393                 /* TODO(octo): Remove this legacy. */
394                 WARNING ("The \"libvirt\" plugin has been renamed to \"virt\" to avoid problems with the build system. "
395                                 "Your configuration is still using the old name. "
396                                 "Please change it to use \"virt\" as soon as possible. "
397                                 "This compatibility code will go away eventually.");
398                 name = "virt";
399         }
400
401         if (IS_TRUE (global_option_get ("AutoLoadPlugin")))
402         {
403                 plugin_ctx_t ctx;
404                 plugin_ctx_t old_ctx;
405                 int status;
406
407                 /* default to the global interval set before loading this plugin */
408                 memset (&ctx, 0, sizeof (ctx));
409                 ctx.interval = cf_get_default_interval ();
410
411                 old_ctx = plugin_set_ctx (ctx);
412                 status = plugin_load (name, /* flags = */ 0);
413                 /* reset to the "global" context */
414                 plugin_set_ctx (old_ctx);
415
416                 if (status != 0)
417                 {
418                         ERROR ("Automatically loading plugin \"%s\" failed "
419                                         "with status %i.", name, status);
420                         return (status);
421                 }
422         }
423
424         /* Check for a complex callback first */
425         for (cb = complex_callback_head; cb != NULL; cb = cb->next)
426         {
427                 if (strcasecmp (name, cb->type) == 0)
428                 {
429                         plugin_ctx_t old_ctx;
430                         int ret_val;
431
432                         old_ctx = plugin_set_ctx (cb->ctx);
433                         ret_val = (cb->callback (ci));
434                         plugin_set_ctx (old_ctx);
435                         return (ret_val);
436                 }
437         }
438
439         /* Hm, no complex plugin found. Dispatch the values one by one */
440         for (i = 0; i < ci->children_num; i++)
441         {
442                 if (ci->children[i].children == NULL)
443                         dispatch_value_plugin (name, ci->children + i);
444                 else
445                 {
446                         WARNING ("There is a `%s' block within the "
447                                         "configuration for the %s plugin. "
448                                         "The plugin either only expects "
449                                         "\"simple\" configuration statements "
450                                         "or wasn't loaded using `LoadPlugin'."
451                                         " Please check your configuration.",
452                                         ci->children[i].key, name);
453                 }
454         }
455
456         return (0);
457 }
458
459
460 static int dispatch_block (oconfig_item_t *ci)
461 {
462         if (strcasecmp (ci->key, "LoadPlugin") == 0)
463                 return (dispatch_loadplugin (ci));
464         else if (strcasecmp (ci->key, "Plugin") == 0)
465                 return (dispatch_block_plugin (ci));
466         else if (strcasecmp (ci->key, "Chain") == 0)
467                 return (fc_configure (ci));
468
469         return (0);
470 }
471
472 static int cf_ci_replace_child (oconfig_item_t *dst, oconfig_item_t *src,
473                 int offset)
474 {
475         oconfig_item_t *temp;
476         int i;
477
478         assert (offset >= 0);
479         assert (dst->children_num > offset);
480
481         /* Free the memory used by the replaced child. Usually that's the
482          * `Include "blah"' statement. */
483         temp = dst->children + offset;
484         for (i = 0; i < temp->values_num; i++)
485         {
486                 if (temp->values[i].type == OCONFIG_TYPE_STRING)
487                 {
488                         sfree (temp->values[i].value.string);
489                 }
490         }
491         sfree (temp->values);
492         temp = NULL;
493
494         /* If (src->children_num == 0) the array size is decreased. If offset
495          * is _not_ the last element, (offset < (dst->children_num - 1)), then
496          * we need to move the trailing elements before resizing the array. */
497         if ((src->children_num == 0) && (offset < (dst->children_num - 1)))
498         {
499                 int nmemb = dst->children_num - (offset + 1);
500                 memmove (dst->children + offset, dst->children + offset + 1,
501                                 sizeof (oconfig_item_t) * nmemb);
502         }
503
504         /* Resize the memory containing the children to be big enough to hold
505          * all children. */
506         if (dst->children_num + src->children_num - 1 == 0)
507         {
508                 dst->children_num = 0;
509                 return (0);
510         }
511
512         temp = (oconfig_item_t *) realloc (dst->children,
513                         sizeof (oconfig_item_t)
514                         * (dst->children_num + src->children_num - 1));
515         if (temp == NULL)
516         {
517                 ERROR ("configfile: realloc failed.");
518                 return (-1);
519         }
520         dst->children = temp;
521
522         /* If there are children behind the include statement, and they have
523          * not yet been moved because (src->children_num == 0), then move them
524          * to the end of the list, so that the new children have room before
525          * them. */
526         if ((src->children_num > 0)
527                         && ((dst->children_num - (offset + 1)) > 0))
528         {
529                 int nmemb = dst->children_num - (offset + 1);
530                 int old_offset = offset + 1;
531                 int new_offset = offset + src->children_num;
532
533                 memmove (dst->children + new_offset,
534                                 dst->children + old_offset,
535                                 sizeof (oconfig_item_t) * nmemb);
536         }
537
538         /* Last but not least: If there are new children, copy them to the
539          * memory reserved for them. */
540         if (src->children_num > 0)
541         {
542                 memcpy (dst->children + offset,
543                                 src->children,
544                                 sizeof (oconfig_item_t) * src->children_num);
545         }
546
547         /* Update the number of children. */
548         dst->children_num += (src->children_num - 1);
549
550         return (0);
551 } /* int cf_ci_replace_child */
552
553 static int cf_ci_append_children (oconfig_item_t *dst, oconfig_item_t *src)
554 {
555         oconfig_item_t *temp;
556
557         if ((src == NULL) || (src->children_num == 0))
558                 return (0);
559
560         temp = (oconfig_item_t *) realloc (dst->children,
561                         sizeof (oconfig_item_t)
562                         * (dst->children_num + src->children_num));
563         if (temp == NULL)
564         {
565                 ERROR ("configfile: realloc failed.");
566                 return (-1);
567         }
568         dst->children = temp;
569
570         memcpy (dst->children + dst->children_num,
571                         src->children,
572                         sizeof (oconfig_item_t)
573                         * src->children_num);
574         dst->children_num += src->children_num;
575
576         return (0);
577 } /* int cf_ci_append_children */
578
579 #define CF_MAX_DEPTH 8
580 static oconfig_item_t *cf_read_generic (const char *path,
581                 const char *pattern, int depth);
582
583 static int cf_include_all (oconfig_item_t *root, int depth)
584 {
585         int i;
586
587         for (i = 0; i < root->children_num; i++)
588         {
589                 oconfig_item_t *new;
590                 oconfig_item_t *old;
591
592                 char *pattern = NULL;
593
594                 int j;
595
596                 if (strcasecmp (root->children[i].key, "Include") != 0)
597                         continue;
598
599                 old = root->children + i;
600
601                 if ((old->values_num != 1)
602                                 || (old->values[0].type != OCONFIG_TYPE_STRING))
603                 {
604                         ERROR ("configfile: `Include' needs exactly one string argument.");
605                         continue;
606                 }
607
608                 for (j = 0; j < old->children_num; ++j)
609                 {
610                         oconfig_item_t *child = old->children + j;
611
612                         if (strcasecmp (child->key, "Filter") == 0)
613                                 cf_util_get_string (child, &pattern);
614                         else
615                                 ERROR ("configfile: Option `%s' not allowed in <Include> block.",
616                                                 child->key);
617                 }
618
619                 new = cf_read_generic (old->values[0].value.string, pattern, depth + 1);
620                 sfree (pattern);
621
622                 if (new == NULL)
623                         return (-1);
624
625                 /* Now replace the i'th child in `root' with `new'. */
626                 if (cf_ci_replace_child (root, new, i) < 0) {
627                         sfree (new->values);
628                         sfree (new);
629                         return (-1);
630                 }
631
632                 /* ... and go back to the new i'th child. */
633                 --i;
634
635                 sfree (new->values);
636                 sfree (new);
637         } /* for (i = 0; i < root->children_num; i++) */
638
639         return (0);
640 } /* int cf_include_all */
641
642 static oconfig_item_t *cf_read_file (const char *file,
643                 const char *pattern, int depth)
644 {
645         oconfig_item_t *root;
646         int status;
647
648         assert (depth < CF_MAX_DEPTH);
649
650         if (pattern != NULL) {
651 #if HAVE_FNMATCH_H && HAVE_LIBGEN_H
652                 char *tmp = sstrdup (file);
653                 char *filename = basename (tmp);
654
655                 if ((filename != NULL) && (fnmatch (pattern, filename, 0) != 0)) {
656                         DEBUG ("configfile: Not including `%s' because it "
657                                         "does not match pattern `%s'.",
658                                         filename, pattern);
659                         free (tmp);
660                         return (NULL);
661                 }
662
663                 free (tmp);
664 #else
665                 ERROR ("configfile: Cannot apply pattern filter '%s' "
666                                 "to file '%s': functions basename() and / or "
667                                 "fnmatch() not available.", pattern, file);
668 #endif /* HAVE_FNMATCH_H && HAVE_LIBGEN_H */
669         }
670
671         root = oconfig_parse_file (file);
672         if (root == NULL)
673         {
674                 ERROR ("configfile: Cannot read file `%s'.", file);
675                 return (NULL);
676         }
677
678         status = cf_include_all (root, depth);
679         if (status != 0)
680         {
681                 oconfig_free (root);
682                 return (NULL);
683         }
684
685         return (root);
686 } /* oconfig_item_t *cf_read_file */
687
688 static int cf_compare_string (const void *p1, const void *p2)
689 {
690         return strcmp (*(const char **) p1, *(const char **) p2);
691 }
692
693 static oconfig_item_t *cf_read_dir (const char *dir,
694                 const char *pattern, int depth)
695 {
696         oconfig_item_t *root = NULL;
697         DIR *dh;
698         struct dirent *de;
699         char **filenames = NULL;
700         int filenames_num = 0;
701         int status;
702         int i;
703
704         assert (depth < CF_MAX_DEPTH);
705
706         dh = opendir (dir);
707         if (dh == NULL)
708         {
709                 char errbuf[1024];
710                 ERROR ("configfile: opendir failed: %s",
711                                 sstrerror (errno, errbuf, sizeof (errbuf)));
712                 return (NULL);
713         }
714
715         root = (oconfig_item_t *) malloc (sizeof (oconfig_item_t));
716         if (root == NULL)
717         {
718                 ERROR ("configfile: malloc failed.");
719                 closedir (dh);
720                 return (NULL);
721         }
722         memset (root, 0, sizeof (oconfig_item_t));
723
724         while ((de = readdir (dh)) != NULL)
725         {
726                 char   name[1024];
727                 char **tmp;
728
729                 if ((de->d_name[0] == '.') || (de->d_name[0] == 0))
730                         continue;
731
732                 status = ssnprintf (name, sizeof (name), "%s/%s",
733                                 dir, de->d_name);
734                 if ((status < 0) || ((size_t) status >= sizeof (name)))
735                 {
736                         ERROR ("configfile: Not including `%s/%s' because its"
737                                         " name is too long.",
738                                         dir, de->d_name);
739                         closedir (dh);
740                         for (i = 0; i < filenames_num; ++i)
741                                 free (filenames[i]);
742                         free (filenames);
743                         free (root);
744                         return (NULL);
745                 }
746
747                 ++filenames_num;
748                 tmp = (char **) realloc (filenames,
749                                 filenames_num * sizeof (*filenames));
750                 if (tmp == NULL) {
751                         ERROR ("configfile: realloc failed.");
752                         closedir (dh);
753                         for (i = 0; i < filenames_num - 1; ++i)
754                                 free (filenames[i]);
755                         free (filenames);
756                         free (root);
757                         return (NULL);
758                 }
759                 filenames = tmp;
760
761                 filenames[filenames_num - 1] = sstrdup (name);
762         }
763
764         if (filenames == NULL)
765         {
766                 closedir (dh);
767                 return (root);
768         }
769
770         qsort ((void *) filenames, filenames_num, sizeof (*filenames),
771                         cf_compare_string);
772
773         for (i = 0; i < filenames_num; ++i)
774         {
775                 oconfig_item_t *temp;
776                 char *name = filenames[i];
777
778                 temp = cf_read_generic (name, pattern, depth);
779                 if (temp == NULL)
780                 {
781                         /* An error should already have been reported. */
782                         sfree (name);
783                         continue;
784                 }
785
786                 cf_ci_append_children (root, temp);
787                 sfree (temp->children);
788                 sfree (temp);
789
790                 free (name);
791         }
792
793         closedir (dh);
794         free(filenames);
795         return (root);
796 } /* oconfig_item_t *cf_read_dir */
797
798 /*
799  * cf_read_generic
800  *
801  * Path is stat'ed and either cf_read_file or cf_read_dir is called
802  * accordingly.
803  *
804  * There are two versions of this function: If `wordexp' exists shell wildcards
805  * will be expanded and the function will include all matches found. If
806  * `wordexp' (or, more precisely, it's header file) is not available the
807  * simpler function is used which does not do any such expansion.
808  */
809 #if HAVE_WORDEXP_H
810 static oconfig_item_t *cf_read_generic (const char *path,
811                 const char *pattern, int depth)
812 {
813         oconfig_item_t *root = NULL;
814         int status;
815         const char *path_ptr;
816         wordexp_t we;
817         size_t i;
818
819         if (depth >= CF_MAX_DEPTH)
820         {
821                 ERROR ("configfile: Not including `%s' because the maximum "
822                                 "nesting depth has been reached.", path);
823                 return (NULL);
824         }
825
826         status = wordexp (path, &we, WRDE_NOCMD);
827         if (status != 0)
828         {
829                 ERROR ("configfile: wordexp (%s) failed.", path);
830                 return (NULL);
831         }
832
833         root = (oconfig_item_t *) malloc (sizeof (oconfig_item_t));
834         if (root == NULL)
835         {
836                 ERROR ("configfile: malloc failed.");
837                 return (NULL);
838         }
839         memset (root, '\0', sizeof (oconfig_item_t));
840
841         /* wordexp() might return a sorted list already. That's not
842          * documented though, so let's make sure we get what we want. */
843         qsort ((void *) we.we_wordv, we.we_wordc, sizeof (*we.we_wordv),
844                         cf_compare_string);
845
846         for (i = 0; i < we.we_wordc; i++)
847         {
848                 oconfig_item_t *temp;
849                 struct stat statbuf;
850
851                 path_ptr = we.we_wordv[i];
852
853                 status = stat (path_ptr, &statbuf);
854                 if (status != 0)
855                 {
856                         char errbuf[1024];
857                         WARNING ("configfile: stat (%s) failed: %s",
858                                         path_ptr,
859                                         sstrerror (errno, errbuf, sizeof (errbuf)));
860                         continue;
861                 }
862
863                 if (S_ISREG (statbuf.st_mode))
864                         temp = cf_read_file (path_ptr, pattern, depth);
865                 else if (S_ISDIR (statbuf.st_mode))
866                         temp = cf_read_dir (path_ptr, pattern, depth);
867                 else
868                 {
869                         WARNING ("configfile: %s is neither a file nor a "
870                                         "directory.", path);
871                         continue;
872                 }
873
874                 if (temp == NULL) {
875                         oconfig_free (root);
876                         return (NULL);
877                 }
878
879                 cf_ci_append_children (root, temp);
880                 sfree (temp->children);
881                 sfree (temp);
882         }
883
884         wordfree (&we);
885
886         return (root);
887 } /* oconfig_item_t *cf_read_generic */
888 /* #endif HAVE_WORDEXP_H */
889
890 #else /* if !HAVE_WORDEXP_H */
891 static oconfig_item_t *cf_read_generic (const char *path,
892                 const char *pattern, int depth)
893 {
894         struct stat statbuf;
895         int status;
896
897         if (depth >= CF_MAX_DEPTH)
898         {
899                 ERROR ("configfile: Not including `%s' because the maximum "
900                                 "nesting depth has been reached.", path);
901                 return (NULL);
902         }
903
904         status = stat (path, &statbuf);
905         if (status != 0)
906         {
907                 char errbuf[1024];
908                 ERROR ("configfile: stat (%s) failed: %s",
909                                 path,
910                                 sstrerror (errno, errbuf, sizeof (errbuf)));
911                 return (NULL);
912         }
913
914         if (S_ISREG (statbuf.st_mode))
915                 return (cf_read_file (path, pattern, depth));
916         else if (S_ISDIR (statbuf.st_mode))
917                 return (cf_read_dir (path, pattern, depth));
918
919         ERROR ("configfile: %s is neither a file nor a directory.", path);
920         return (NULL);
921 } /* oconfig_item_t *cf_read_generic */
922 #endif /* !HAVE_WORDEXP_H */
923
924 /* 
925  * Public functions
926  */
927 int global_option_set (const char *option, const char *value)
928 {
929         int i;
930
931         DEBUG ("option = %s; value = %s;", option, value);
932
933         for (i = 0; i < cf_global_options_num; i++)
934                 if (strcasecmp (cf_global_options[i].key, option) == 0)
935                         break;
936
937         if (i >= cf_global_options_num)
938                 return (-1);
939
940         if (strcasecmp (option, "PIDFile") == 0 && pidfile_from_cli == 1)
941         {
942                 DEBUG ("Configfile: Ignoring `PIDFILE' option because "
943                         "command-line option `-P' take precedence.");
944                 return (0);
945         }
946
947         sfree (cf_global_options[i].value);
948
949         if (value != NULL)
950                 cf_global_options[i].value = strdup (value);
951         else
952                 cf_global_options[i].value = NULL;
953
954         return (0);
955 }
956
957 const char *global_option_get (const char *option)
958 {
959         int i;
960
961         for (i = 0; i < cf_global_options_num; i++)
962                 if (strcasecmp (cf_global_options[i].key, option) == 0)
963                         break;
964
965         if (i >= cf_global_options_num)
966                 return (NULL);
967         
968         return ((cf_global_options[i].value != NULL)
969                         ? cf_global_options[i].value
970                         : cf_global_options[i].def);
971 } /* char *global_option_get */
972
973 long global_option_get_long (const char *option, long default_value)
974 {
975         const char *str;
976         long value;
977
978         str = global_option_get (option);
979         if (NULL == str)
980                 return (default_value);
981
982         errno = 0;
983         value = strtol (str, /* endptr = */ NULL, /* base = */ 0);
984         if (errno != 0)
985                 return (default_value);
986
987         return (value);
988 } /* char *global_option_get_long */
989
990 cdtime_t global_option_get_time (const char *name, cdtime_t def) /* {{{ */
991 {
992         char const *optstr;
993         char *endptr = NULL;
994         double v;
995
996         optstr = global_option_get (name);
997         if (optstr == NULL)
998                 return (def);
999
1000         errno = 0;
1001         v = strtod (optstr, &endptr);
1002         if ((endptr == NULL) || (*endptr != 0) || (errno != 0))
1003                 return (def);
1004         else if (v <= 0.0)
1005                 return (def);
1006
1007         return (DOUBLE_TO_CDTIME_T (v));
1008 } /* }}} cdtime_t global_option_get_time */
1009
1010 cdtime_t cf_get_default_interval (void)
1011 {
1012         return (global_option_get_time ("Interval",
1013                                DOUBLE_TO_CDTIME_T (COLLECTD_DEFAULT_INTERVAL)));
1014 }
1015
1016 void cf_unregister (const char *type)
1017 {
1018         cf_callback_t *this, *prev;
1019
1020         for (prev = NULL, this = first_callback;
1021                         this != NULL;
1022                         prev = this, this = this->next)
1023                 if (strcasecmp (this->type, type) == 0)
1024                 {
1025                         if (prev == NULL)
1026                                 first_callback = this->next;
1027                         else
1028                                 prev->next = this->next;
1029
1030                         free (this);
1031                         break;
1032                 }
1033 } /* void cf_unregister */
1034
1035 void cf_unregister_complex (const char *type)
1036 {
1037         cf_complex_callback_t *this, *prev;
1038
1039         for (prev = NULL, this = complex_callback_head;
1040                         this != NULL;
1041                         prev = this, this = this->next)
1042                 if (strcasecmp (this->type, type) == 0)
1043                 {
1044                         if (prev == NULL)
1045                                 complex_callback_head = this->next;
1046                         else
1047                                 prev->next = this->next;
1048
1049                         sfree (this->type);
1050                         sfree (this);
1051                         break;
1052                 }
1053 } /* void cf_unregister */
1054
1055 void cf_register (const char *type,
1056                 int (*callback) (const char *, const char *),
1057                 const char **keys, int keys_num)
1058 {
1059         cf_callback_t *cf_cb;
1060
1061         /* Remove this module from the list, if it already exists */
1062         cf_unregister (type);
1063
1064         /* This pointer will be free'd in `cf_unregister' */
1065         if ((cf_cb = (cf_callback_t *) malloc (sizeof (cf_callback_t))) == NULL)
1066                 return;
1067
1068         cf_cb->type     = type;
1069         cf_cb->callback = callback;
1070         cf_cb->keys     = keys;
1071         cf_cb->keys_num = keys_num;
1072         cf_cb->ctx      = plugin_get_ctx ();
1073
1074         cf_cb->next = first_callback;
1075         first_callback = cf_cb;
1076 } /* void cf_register */
1077
1078 int cf_register_complex (const char *type, int (*callback) (oconfig_item_t *))
1079 {
1080         cf_complex_callback_t *new;
1081
1082         new = (cf_complex_callback_t *) malloc (sizeof (cf_complex_callback_t));
1083         if (new == NULL)
1084                 return (-1);
1085
1086         new->type = strdup (type);
1087         if (new->type == NULL)
1088         {
1089                 sfree (new);
1090                 return (-1);
1091         }
1092
1093         new->callback = callback;
1094         new->next = NULL;
1095
1096         new->ctx = plugin_get_ctx ();
1097
1098         if (complex_callback_head == NULL)
1099         {
1100                 complex_callback_head = new;
1101         }
1102         else
1103         {
1104                 cf_complex_callback_t *last = complex_callback_head;
1105                 while (last->next != NULL)
1106                         last = last->next;
1107                 last->next = new;
1108         }
1109
1110         return (0);
1111 } /* int cf_register_complex */
1112
1113 int cf_read (char *filename)
1114 {
1115         oconfig_item_t *conf;
1116         int i;
1117
1118         conf = cf_read_generic (filename, /* pattern = */ NULL, /* depth = */ 0);
1119         if (conf == NULL)
1120         {
1121                 ERROR ("Unable to read config file %s.", filename);
1122                 return (-1);
1123         }
1124         else if (conf->children_num == 0)
1125         {
1126                 ERROR ("Configuration file %s is empty.", filename);
1127                 oconfig_free (conf);
1128                 return (-1);
1129         }
1130
1131         for (i = 0; i < conf->children_num; i++)
1132         {
1133                 if (conf->children[i].children == NULL)
1134                         dispatch_value (conf->children + i);
1135                 else
1136                         dispatch_block (conf->children + i);
1137         }
1138
1139         oconfig_free (conf);
1140
1141         /* Read the default types.db if no `TypesDB' option was given. */
1142         if (cf_default_typesdb)
1143                 read_types_list (PKGDATADIR"/types.db");
1144
1145         return (0);
1146 } /* int cf_read */
1147
1148 /* Assures the config option is a string, duplicates it and returns the copy in
1149  * "ret_string". If necessary "*ret_string" is freed first. Returns zero upon
1150  * success. */
1151 int cf_util_get_string (const oconfig_item_t *ci, char **ret_string) /* {{{ */
1152 {
1153         char *string;
1154
1155         if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
1156         {
1157                 ERROR ("cf_util_get_string: The %s option requires "
1158                                 "exactly one string argument.", ci->key);
1159                 return (-1);
1160         }
1161
1162         string = strdup (ci->values[0].value.string);
1163         if (string == NULL)
1164                 return (-1);
1165
1166         if (*ret_string != NULL)
1167                 sfree (*ret_string);
1168         *ret_string = string;
1169
1170         return (0);
1171 } /* }}} int cf_util_get_string */
1172
1173 /* Assures the config option is a string and copies it to the provided buffer.
1174  * Assures null-termination. */
1175 int cf_util_get_string_buffer (const oconfig_item_t *ci, char *buffer, /* {{{ */
1176                 size_t buffer_size)
1177 {
1178         if ((ci == NULL) || (buffer == NULL) || (buffer_size < 1))
1179                 return (EINVAL);
1180
1181         if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
1182         {
1183                 ERROR ("cf_util_get_string_buffer: The %s option requires "
1184                                 "exactly one string argument.", ci->key);
1185                 return (-1);
1186         }
1187
1188         strncpy (buffer, ci->values[0].value.string, buffer_size);
1189         buffer[buffer_size - 1] = 0;
1190
1191         return (0);
1192 } /* }}} int cf_util_get_string_buffer */
1193
1194 /* Assures the config option is a number and returns it as an int. */
1195 int cf_util_get_int (const oconfig_item_t *ci, int *ret_value) /* {{{ */
1196 {
1197         if ((ci == NULL) || (ret_value == NULL))
1198                 return (EINVAL);
1199
1200         if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_NUMBER))
1201         {
1202                 ERROR ("cf_util_get_int: The %s option requires "
1203                                 "exactly one numeric argument.", ci->key);
1204                 return (-1);
1205         }
1206
1207         *ret_value = (int) ci->values[0].value.number;
1208
1209         return (0);
1210 } /* }}} int cf_util_get_int */
1211
1212 int cf_util_get_double (const oconfig_item_t *ci, double *ret_value) /* {{{ */
1213 {
1214         if ((ci == NULL) || (ret_value == NULL))
1215                 return (EINVAL);
1216
1217         if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_NUMBER))
1218         {
1219                 ERROR ("cf_util_get_double: The %s option requires "
1220                                 "exactly one numeric argument.", ci->key);
1221                 return (-1);
1222         }
1223
1224         *ret_value = ci->values[0].value.number;
1225
1226         return (0);
1227 } /* }}} int cf_util_get_double */
1228
1229 int cf_util_get_boolean (const oconfig_item_t *ci, _Bool *ret_bool) /* {{{ */
1230 {
1231         if ((ci == NULL) || (ret_bool == NULL))
1232                 return (EINVAL);
1233
1234         if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_BOOLEAN))
1235         {
1236                 ERROR ("cf_util_get_boolean: The %s option requires "
1237                                 "exactly one boolean argument.", ci->key);
1238                 return (-1);
1239         }
1240
1241         *ret_bool = ci->values[0].value.boolean ? 1 : 0;
1242
1243         return (0);
1244 } /* }}} int cf_util_get_boolean */
1245
1246 int cf_util_get_flag (const oconfig_item_t *ci, /* {{{ */
1247                 unsigned int *ret_value, unsigned int flag)
1248 {
1249         int status;
1250         _Bool b;
1251
1252         if (ret_value == NULL)
1253                 return (EINVAL);
1254
1255         b = 0;
1256         status = cf_util_get_boolean (ci, &b);
1257         if (status != 0)
1258                 return (status);
1259
1260         if (b)
1261         {
1262                 *ret_value |= flag;
1263         }
1264         else
1265         {
1266                 *ret_value &= ~flag;
1267         }
1268
1269         return (0);
1270 } /* }}} int cf_util_get_flag */
1271
1272 /* Assures that the config option is a string or a number if the correct range
1273  * of 1-65535. The string is then converted to a port number using
1274  * `service_name_to_port_number' and returned.
1275  * Returns the port number in the range [1-65535] or less than zero upon
1276  * failure. */
1277 int cf_util_get_port_number (const oconfig_item_t *ci) /* {{{ */
1278 {
1279         int tmp;
1280
1281         if ((ci->values_num != 1)
1282                         || ((ci->values[0].type != OCONFIG_TYPE_STRING)
1283                                 && (ci->values[0].type != OCONFIG_TYPE_NUMBER)))
1284         {
1285                 ERROR ("cf_util_get_port_number: The \"%s\" option requires "
1286                                 "exactly one string argument.", ci->key);
1287                 return (-1);
1288         }
1289
1290         if (ci->values[0].type == OCONFIG_TYPE_STRING)
1291                 return (service_name_to_port_number (ci->values[0].value.string));
1292
1293         assert (ci->values[0].type == OCONFIG_TYPE_NUMBER);
1294         tmp = (int) (ci->values[0].value.number + 0.5);
1295         if ((tmp < 1) || (tmp > 65535))
1296         {
1297                 ERROR ("cf_util_get_port_number: The \"%s\" option requires "
1298                                 "a service name or a port number. The number "
1299                                 "you specified, %i, is not in the valid "
1300                                 "range of 1-65535.",
1301                                 ci->key, tmp);
1302                 return (-1);
1303         }
1304
1305         return (tmp);
1306 } /* }}} int cf_util_get_port_number */
1307
1308 int cf_util_get_service (const oconfig_item_t *ci, char **ret_string) /* {{{ */
1309 {
1310         int port;
1311         char *service;
1312         int status;
1313
1314         if (ci->values_num != 1)
1315         {
1316                 ERROR ("cf_util_get_service: The %s option requires exactly "
1317                                 "one argument.", ci->key);
1318                 return (-1);
1319         }
1320
1321         if (ci->values[0].type == OCONFIG_TYPE_STRING)
1322                 return (cf_util_get_string (ci, ret_string));
1323         if (ci->values[0].type != OCONFIG_TYPE_NUMBER)
1324         {
1325                 ERROR ("cf_util_get_service: The %s option requires "
1326                                 "exactly one string or numeric argument.",
1327                                 ci->key);
1328         }
1329
1330         port = 0;
1331         status = cf_util_get_int (ci, &port);
1332         if (status != 0)
1333                 return (status);
1334         else if ((port < 1) || (port > 65535))
1335         {
1336                 ERROR ("cf_util_get_service: The port number given "
1337                                 "for the %s option is out of "
1338                                 "range (%i).", ci->key, port);
1339                 return (-1);
1340         }
1341
1342         service = malloc (6);
1343         if (service == NULL)
1344         {
1345                 ERROR ("cf_util_get_service: Out of memory.");
1346                 return (-1);
1347         }
1348         ssnprintf (service, 6, "%i", port);
1349
1350         sfree (*ret_string);
1351         *ret_string = service;
1352
1353         return (0);
1354 } /* }}} int cf_util_get_service */
1355
1356 int cf_util_get_cdtime (const oconfig_item_t *ci, cdtime_t *ret_value) /* {{{ */
1357 {
1358         if ((ci == NULL) || (ret_value == NULL))
1359                 return (EINVAL);
1360
1361         if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_NUMBER))
1362         {
1363                 ERROR ("cf_util_get_cdtime: The %s option requires "
1364                                 "exactly one numeric argument.", ci->key);
1365                 return (-1);
1366         }
1367
1368         if (ci->values[0].value.number < 0.0)
1369         {
1370                 ERROR ("cf_util_get_cdtime: The numeric argument of the %s "
1371                                 "option must not be negative.", ci->key);
1372                 return (-1);
1373         }
1374
1375         *ret_value = DOUBLE_TO_CDTIME_T (ci->values[0].value.number);
1376
1377         return (0);
1378 } /* }}} int cf_util_get_cdtime */
1379