Merge branch 'collectd-4.6' into collectd-4.7
[collectd.git] / src / configfile.c
1 /**
2  * collectd - src/configfile.c
3  * Copyright (C) 2005-2009  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; either version 2 of the License, or (at your
8  * option) any later version.
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 verplant.org>
21  *   Sebastian tokkee Harl <sh at tokkee.org>
22  **/
23
24 #include "collectd.h"
25
26 #include "liboconfig/oconfig.h"
27
28 #include "common.h"
29 #include "plugin.h"
30 #include "configfile.h"
31 #include "types_list.h"
32 #include "utils_threshold.h"
33 #include "filter_chain.h"
34
35 #if HAVE_WORDEXP_H
36 # include <wordexp.h>
37 #endif /* HAVE_WORDEXP_H */
38
39 #define ESCAPE_NULL(str) ((str) == NULL ? "(null)" : (str))
40
41 /*
42  * Private types
43  */
44 typedef struct cf_callback
45 {
46         const char  *type;
47         int  (*callback) (const char *, const char *);
48         const char **keys;
49         int    keys_num;
50         struct cf_callback *next;
51 } cf_callback_t;
52
53 typedef struct cf_complex_callback_s
54 {
55         char *type;
56         int (*callback) (oconfig_item_t *);
57         struct cf_complex_callback_s *next;
58 } cf_complex_callback_t;
59
60 typedef struct cf_value_map_s
61 {
62         char *key;
63         int (*func) (const oconfig_item_t *);
64 } cf_value_map_t;
65
66 typedef struct cf_global_option_s
67 {
68         char *key;
69         char *value;
70         char *def;
71 } cf_global_option_t;
72
73 /*
74  * Prototypes of callback functions
75  */
76 static int dispatch_value_typesdb (const oconfig_item_t *ci);
77 static int dispatch_value_plugindir (const oconfig_item_t *ci);
78 static int dispatch_value_loadplugin (const oconfig_item_t *ci);
79
80 /*
81  * Private variables
82  */
83 static cf_callback_t *first_callback = NULL;
84 static cf_complex_callback_t *complex_callback_head = NULL;
85
86 static cf_value_map_t cf_value_map[] =
87 {
88         {"TypesDB",    dispatch_value_typesdb},
89         {"PluginDir",  dispatch_value_plugindir},
90         {"LoadPlugin", dispatch_value_loadplugin}
91 };
92 static int cf_value_map_num = STATIC_ARRAY_LEN (cf_value_map);
93
94 static cf_global_option_t cf_global_options[] =
95 {
96         {"BaseDir",     NULL, PKGLOCALSTATEDIR},
97         {"PIDFile",     NULL, PIDFILE},
98         {"Hostname",    NULL, NULL},
99         {"FQDNLookup",  NULL, "false"},
100         {"Interval",    NULL, "10"},
101         {"ReadThreads", NULL, "5"},
102         {"PreCacheChain",  NULL, "PreCache"},
103         {"PostCacheChain", NULL, "PostCache"}
104 };
105 static int cf_global_options_num = STATIC_ARRAY_LEN (cf_global_options);
106
107 static int cf_default_typesdb = 1;
108
109 /*
110  * Functions to handle register/unregister, search, and other plugin related
111  * stuff
112  */
113 static cf_callback_t *cf_search (const char *type)
114 {
115         cf_callback_t *cf_cb;
116
117         if (type == NULL)
118                 return (NULL);
119
120         for (cf_cb = first_callback; cf_cb != NULL; cf_cb = cf_cb->next)
121                 if (strcasecmp (cf_cb->type, type) == 0)
122                         break;
123
124         return (cf_cb);
125 }
126
127 static int cf_dispatch (const char *type, const char *orig_key,
128                 const char *orig_value)
129 {
130         cf_callback_t *cf_cb;
131         char *key;
132         char *value;
133         int ret;
134         int i;
135
136         DEBUG ("type = %s, key = %s, value = %s",
137                         ESCAPE_NULL(type),
138                         ESCAPE_NULL(orig_key),
139                         ESCAPE_NULL(orig_value));
140
141         if ((cf_cb = cf_search (type)) == NULL)
142         {
143                 WARNING ("Found a configuration for the `%s' plugin, but "
144                                 "the plugin isn't loaded or didn't register "
145                                 "a configuration callback.", type);
146                 return (-1);
147         }
148
149         if ((key = strdup (orig_key)) == NULL)
150                 return (1);
151         if ((value = strdup (orig_value)) == NULL)
152         {
153                 free (key);
154                 return (2);
155         }
156
157         ret = -1;
158
159         for (i = 0; i < cf_cb->keys_num; i++)
160         {
161                 if ((cf_cb->keys[i] != NULL)
162                                 && (strcasecmp (cf_cb->keys[i], key) == 0))
163                 {
164                         ret = (*cf_cb->callback) (key, value);
165                         break;
166                 }
167         }
168
169         if (i >= cf_cb->keys_num)
170                 WARNING ("Plugin `%s' did not register for value `%s'.", type, key);
171
172         free (key);
173         free (value);
174
175         DEBUG ("cf_dispatch: return (%i)", ret);
176
177         return (ret);
178 } /* int cf_dispatch */
179
180 static int dispatch_global_option (const oconfig_item_t *ci)
181 {
182         if (ci->values_num != 1)
183                 return (-1);
184         if (ci->values[0].type == OCONFIG_TYPE_STRING)
185                 return (global_option_set (ci->key, ci->values[0].value.string));
186         else if (ci->values[0].type == OCONFIG_TYPE_NUMBER)
187         {
188                 char tmp[128];
189                 ssnprintf (tmp, sizeof (tmp), "%lf", ci->values[0].value.number);
190                 return (global_option_set (ci->key, tmp));
191         }
192         else if (ci->values[0].type == OCONFIG_TYPE_BOOLEAN)
193         {
194                 if (ci->values[0].value.boolean)
195                         return (global_option_set (ci->key, "true"));
196                 else
197                         return (global_option_set (ci->key, "false"));
198         }
199
200         return (-1);
201 } /* int dispatch_global_option */
202
203 static int dispatch_value_typesdb (const oconfig_item_t *ci)
204 {
205         int i = 0;
206
207         assert (strcasecmp (ci->key, "TypesDB") == 0);
208
209         cf_default_typesdb = 0;
210
211         if (ci->values_num < 1) {
212                 ERROR ("configfile: `TypesDB' needs at least one argument.");
213                 return (-1);
214         }
215
216         for (i = 0; i < ci->values_num; ++i)
217         {
218                 if (OCONFIG_TYPE_STRING != ci->values[i].type) {
219                         WARNING ("configfile: TypesDB: Skipping %i. argument which "
220                                         "is not a string.", i + 1);
221                         continue;
222                 }
223
224                 read_types_list (ci->values[i].value.string);
225         }
226         return (0);
227 } /* int dispatch_value_typesdb */
228
229 static int dispatch_value_plugindir (const oconfig_item_t *ci)
230 {
231         assert (strcasecmp (ci->key, "PluginDir") == 0);
232         
233         if (ci->values_num != 1)
234                 return (-1);
235         if (ci->values[0].type != OCONFIG_TYPE_STRING)
236                 return (-1);
237
238         plugin_set_dir (ci->values[0].value.string);
239         return (0);
240 }
241
242 static int dispatch_value_loadplugin (const oconfig_item_t *ci)
243 {
244         assert (strcasecmp (ci->key, "LoadPlugin") == 0);
245
246         if (ci->values_num != 1)
247                 return (-1);
248         if (ci->values[0].type != OCONFIG_TYPE_STRING)
249                 return (-1);
250
251         return (plugin_load (ci->values[0].value.string));
252 } /* int dispatch_value_loadplugin */
253
254 static int dispatch_value_plugin (const char *plugin, oconfig_item_t *ci)
255 {
256         char  buffer[4096];
257         char *buffer_ptr;
258         int   buffer_free;
259         int i;
260
261         buffer_ptr = buffer;
262         buffer_free = sizeof (buffer);
263
264         for (i = 0; i < ci->values_num; i++)
265         {
266                 int status = -1;
267
268                 if (ci->values[i].type == OCONFIG_TYPE_STRING)
269                         status = ssnprintf (buffer_ptr, buffer_free, " %s",
270                                         ci->values[i].value.string);
271                 else if (ci->values[i].type == OCONFIG_TYPE_NUMBER)
272                         status = ssnprintf (buffer_ptr, buffer_free, " %lf",
273                                         ci->values[i].value.number);
274                 else if (ci->values[i].type == OCONFIG_TYPE_BOOLEAN)
275                         status = ssnprintf (buffer_ptr, buffer_free, " %s",
276                                         ci->values[i].value.boolean
277                                         ? "true" : "false");
278
279                 if ((status < 0) || (status >= buffer_free))
280                         return (-1);
281                 buffer_free -= status;
282                 buffer_ptr  += status;
283         }
284         /* skip the initial space */
285         buffer_ptr = buffer + 1;
286
287         return (cf_dispatch (plugin, ci->key, buffer_ptr));
288 } /* int dispatch_value_plugin */
289
290 static int dispatch_value (const oconfig_item_t *ci)
291 {
292         int ret = -2;
293         int i;
294
295         for (i = 0; i < cf_value_map_num; i++)
296                 if (strcasecmp (cf_value_map[i].key, ci->key) == 0)
297                 {
298                         ret = cf_value_map[i].func (ci);
299                         break;
300                 }
301
302         for (i = 0; i < cf_global_options_num; i++)
303                 if (strcasecmp (cf_global_options[i].key, ci->key) == 0)
304                 {
305                         ret = dispatch_global_option (ci);
306                         break;
307                 }
308
309         return (ret);
310 } /* int dispatch_value */
311
312 static int dispatch_block_plugin (oconfig_item_t *ci)
313 {
314         int i;
315         char *name;
316
317         cf_complex_callback_t *cb;
318
319         if (strcasecmp (ci->key, "Plugin") != 0)
320                 return (-1);
321         if (ci->values_num < 1)
322                 return (-1);
323         if (ci->values[0].type != OCONFIG_TYPE_STRING)
324                 return (-1);
325
326         name = ci->values[0].value.string;
327
328         /* Check for a complex callback first */
329         for (cb = complex_callback_head; cb != NULL; cb = cb->next)
330                 if (strcasecmp (name, cb->type) == 0)
331                         return (cb->callback (ci));
332
333         /* Hm, no complex plugin found. Dispatch the values one by one */
334         for (i = 0; i < ci->children_num; i++)
335         {
336                 if (ci->children[i].children == NULL)
337                         dispatch_value_plugin (name, ci->children + i);
338                 else
339                         {DEBUG ("No nested config blocks allowed for this plugin.");}
340         }
341
342         return (0);
343 }
344
345
346 static int dispatch_block (oconfig_item_t *ci)
347 {
348         if (strcasecmp (ci->key, "Plugin") == 0)
349                 return (dispatch_block_plugin (ci));
350         else if (strcasecmp (ci->key, "Threshold") == 0)
351                 return (ut_config (ci));
352         else if (strcasecmp (ci->key, "Chain") == 0)
353                 return (fc_configure (ci));
354
355         return (0);
356 }
357
358 static int cf_ci_replace_child (oconfig_item_t *dst, oconfig_item_t *src,
359                 int offset)
360 {
361         oconfig_item_t *temp;
362         int i;
363
364         assert (offset >= 0);
365         assert (dst->children_num > offset);
366
367         /* Free the memory used by the replaced child. Usually that's the
368          * `Include "blah"' statement. */
369         temp = dst->children + offset;
370         for (i = 0; i < temp->values_num; i++)
371         {
372                 if (temp->values[i].type == OCONFIG_TYPE_STRING)
373                 {
374                         sfree (temp->values[i].value.string);
375                 }
376         }
377         sfree (temp->values);
378         temp = NULL;
379
380         /* If (src->children_num == 0) the array size is decreased. If offset
381          * is _not_ the last element, (offset < (dst->children_num - 1)), then
382          * we need to move the trailing elements before resizing the array. */
383         if ((src->children_num == 0) && (offset < (dst->children_num - 1)))
384         {
385                 int nmemb = dst->children_num - (offset + 1);
386                 memmove (dst->children + offset, dst->children + offset + 1,
387                                 sizeof (oconfig_item_t) * nmemb);
388         }
389
390         /* Resize the memory containing the children to be big enough to hold
391          * all children. */
392         temp = (oconfig_item_t *) realloc (dst->children,
393                         sizeof (oconfig_item_t)
394                         * (dst->children_num + src->children_num - 1));
395         if (temp == NULL)
396         {
397                 ERROR ("configfile: realloc failed.");
398                 return (-1);
399         }
400         dst->children = temp;
401
402         /* If there are children behind the include statement, and they have
403          * not yet been moved because (src->children_num == 0), then move them
404          * to the end of the list, so that the new children have room before
405          * them. */
406         if ((src->children_num > 0)
407                         && ((dst->children_num - (offset + 1)) > 0))
408         {
409                 int nmemb = dst->children_num - (offset + 1);
410                 int old_offset = offset + 1;
411                 int new_offset = offset + src->children_num;
412
413                 memmove (dst->children + new_offset,
414                                 dst->children + old_offset,
415                                 sizeof (oconfig_item_t) * nmemb);
416         }
417
418         /* Last but not least: If there are new children, copy them to the
419          * memory reserved for them. */
420         if (src->children_num > 0)
421         {
422                 memcpy (dst->children + offset,
423                                 src->children,
424                                 sizeof (oconfig_item_t) * src->children_num);
425         }
426
427         /* Update the number of children. */
428         dst->children_num += (src->children_num - 1);
429
430         return (0);
431 } /* int cf_ci_replace_child */
432
433 static int cf_ci_append_children (oconfig_item_t *dst, oconfig_item_t *src)
434 {
435         oconfig_item_t *temp;
436
437         if ((src == NULL) || (src->children_num == 0))
438                 return (0);
439
440         temp = (oconfig_item_t *) realloc (dst->children,
441                         sizeof (oconfig_item_t)
442                         * (dst->children_num + src->children_num));
443         if (temp == NULL)
444         {
445                 ERROR ("configfile: realloc failed.");
446                 return (-1);
447         }
448         dst->children = temp;
449
450         memcpy (dst->children + dst->children_num,
451                         src->children,
452                         sizeof (oconfig_item_t)
453                         * src->children_num);
454         dst->children_num += src->children_num;
455
456         return (0);
457 } /* int cf_ci_append_children */
458
459 #define CF_MAX_DEPTH 8
460 static oconfig_item_t *cf_read_generic (const char *path, int depth);
461
462 static int cf_include_all (oconfig_item_t *root, int depth)
463 {
464         int i;
465
466         for (i = 0; i < root->children_num; i++)
467         {
468                 oconfig_item_t *new;
469                 oconfig_item_t *old;
470
471                 /* Ignore all blocks, including `Include' blocks. */
472                 if (root->children[i].children_num != 0)
473                         continue;
474
475                 if (strcasecmp (root->children[i].key, "Include") != 0)
476                         continue;
477
478                 old = root->children + i;
479
480                 if ((old->values_num != 1)
481                                 || (old->values[0].type != OCONFIG_TYPE_STRING))
482                 {
483                         ERROR ("configfile: `Include' needs exactly one string argument.");
484                         continue;
485                 }
486
487                 new = cf_read_generic (old->values[0].value.string, depth + 1);
488                 if (new == NULL)
489                         continue;
490
491                 /* Now replace the i'th child in `root' with `new'. */
492                 cf_ci_replace_child (root, new, i);
493
494                 /* ... and go back to the new i'th child. */
495                 --i;
496
497                 sfree (new->values);
498                 sfree (new);
499         } /* for (i = 0; i < root->children_num; i++) */
500
501         return (0);
502 } /* int cf_include_all */
503
504 static oconfig_item_t *cf_read_file (const char *file, int depth)
505 {
506         oconfig_item_t *root;
507
508         assert (depth < CF_MAX_DEPTH);
509
510         root = oconfig_parse_file (file);
511         if (root == NULL)
512         {
513                 ERROR ("configfile: Cannot read file `%s'.", file);
514                 return (NULL);
515         }
516
517         cf_include_all (root, depth);
518
519         return (root);
520 } /* oconfig_item_t *cf_read_file */
521
522 static int cf_compare_string (const void *p1, const void *p2)
523 {
524         return strcmp (*(const char **) p1, *(const char **) p2);
525 }
526
527 static oconfig_item_t *cf_read_dir (const char *dir, int depth)
528 {
529         oconfig_item_t *root = NULL;
530         DIR *dh;
531         struct dirent *de;
532         char **filenames = NULL;
533         int filenames_num = 0;
534         int status;
535         int i;
536
537         assert (depth < CF_MAX_DEPTH);
538
539         dh = opendir (dir);
540         if (dh == NULL)
541         {
542                 char errbuf[1024];
543                 ERROR ("configfile: opendir failed: %s",
544                                 sstrerror (errno, errbuf, sizeof (errbuf)));
545                 return (NULL);
546         }
547
548         root = (oconfig_item_t *) malloc (sizeof (oconfig_item_t));
549         if (root == NULL)
550         {
551                 ERROR ("configfile: malloc failed.");
552                 return (NULL);
553         }
554         memset (root, '\0', sizeof (oconfig_item_t));
555
556         while ((de = readdir (dh)) != NULL)
557         {
558                 char   name[1024];
559                 char **tmp;
560
561                 if ((de->d_name[0] == '.') || (de->d_name[0] == '\0'))
562                         continue;
563
564                 status = ssnprintf (name, sizeof (name), "%s/%s",
565                                 dir, de->d_name);
566                 if ((status < 0) || ((size_t) status >= sizeof (name)))
567                 {
568                         ERROR ("configfile: Not including `%s/%s' because its"
569                                         " name is too long.",
570                                         dir, de->d_name);
571                         for (i = 0; i < filenames_num; ++i)
572                                 free (filenames[i]);
573                         free (filenames);
574                         free (root);
575                         return (NULL);
576                 }
577
578                 ++filenames_num;
579                 tmp = (char **) realloc (filenames,
580                                 filenames_num * sizeof (*filenames));
581                 if (tmp == NULL) {
582                         ERROR ("configfile: realloc failed.");
583                         for (i = 0; i < filenames_num - 1; ++i)
584                                 free (filenames[i]);
585                         free (filenames);
586                         free (root);
587                         return (NULL);
588                 }
589                 filenames = tmp;
590
591                 filenames[filenames_num - 1] = sstrdup (name);
592         }
593
594         qsort ((void *) filenames, filenames_num, sizeof (*filenames),
595                         cf_compare_string);
596
597         for (i = 0; i < filenames_num; ++i)
598         {
599                 oconfig_item_t *temp;
600                 char *name = filenames[i];
601
602                 temp = cf_read_generic (name, depth);
603                 if (temp == NULL) {
604                         int j;
605                         for (j = i; j < filenames_num; ++j)
606                                 free (filenames[j]);
607                         free (filenames);
608                         oconfig_free (root);
609                         return (NULL);
610                 }
611
612                 cf_ci_append_children (root, temp);
613                 sfree (temp->children);
614                 sfree (temp);
615
616                 free (name);
617         }
618
619         free(filenames);
620         return (root);
621 } /* oconfig_item_t *cf_read_dir */
622
623 /* 
624  * cf_read_generic
625  *
626  * Path is stat'ed and either cf_read_file or cf_read_dir is called
627  * accordingly.
628  *
629  * There are two versions of this function: If `wordexp' exists shell wildcards
630  * will be expanded and the function will include all matches found. If
631  * `wordexp' (or, more precisely, it's header file) is not available the
632  * simpler function is used which does not do any such expansion.
633  */
634 #if HAVE_WORDEXP_H
635 static oconfig_item_t *cf_read_generic (const char *path, int depth)
636 {
637         oconfig_item_t *root = NULL;
638         int status;
639         const char *path_ptr;
640         wordexp_t we;
641         size_t i;
642
643         if (depth >= CF_MAX_DEPTH)
644         {
645                 ERROR ("configfile: Not including `%s' because the maximum "
646                                 "nesting depth has been reached.", path);
647                 return (NULL);
648         }
649
650         status = wordexp (path, &we, WRDE_NOCMD);
651         if (status != 0)
652         {
653                 ERROR ("configfile: wordexp (%s) failed.", path);
654                 return (NULL);
655         }
656
657         root = (oconfig_item_t *) malloc (sizeof (oconfig_item_t));
658         if (root == NULL)
659         {
660                 ERROR ("configfile: malloc failed.");
661                 return (NULL);
662         }
663         memset (root, '\0', sizeof (oconfig_item_t));
664
665         /* wordexp() might return a sorted list already. That's not
666          * documented though, so let's make sure we get what we want. */
667         qsort ((void *) we.we_wordv, we.we_wordc, sizeof (*we.we_wordv),
668                         cf_compare_string);
669
670         for (i = 0; i < we.we_wordc; i++)
671         {
672                 oconfig_item_t *temp;
673                 struct stat statbuf;
674
675                 path_ptr = we.we_wordv[i];
676
677                 status = stat (path_ptr, &statbuf);
678                 if (status != 0)
679                 {
680                         char errbuf[1024];
681                         ERROR ("configfile: stat (%s) failed: %s",
682                                         path_ptr,
683                                         sstrerror (errno, errbuf, sizeof (errbuf)));
684                         oconfig_free (root);
685                         return (NULL);
686                 }
687
688                 if (S_ISREG (statbuf.st_mode))
689                         temp = cf_read_file (path_ptr, depth);
690                 else if (S_ISDIR (statbuf.st_mode))
691                         temp = cf_read_dir (path_ptr, depth);
692                 else
693                 {
694                         ERROR ("configfile: %s is neither a file nor a "
695                                         "directory.", path);
696                         continue;
697                 }
698
699                 if (temp == NULL) {
700                         oconfig_free (root);
701                         return (NULL);
702                 }
703
704                 cf_ci_append_children (root, temp);
705                 sfree (temp->children);
706                 sfree (temp);
707         }
708
709         wordfree (&we);
710
711         return (root);
712 } /* oconfig_item_t *cf_read_generic */
713 /* #endif HAVE_WORDEXP_H */
714
715 #else /* if !HAVE_WORDEXP_H */
716 static oconfig_item_t *cf_read_generic (const char *path, int depth)
717 {
718         struct stat statbuf;
719         int status;
720
721         if (depth >= CF_MAX_DEPTH)
722         {
723                 ERROR ("configfile: Not including `%s' because the maximum "
724                                 "nesting depth has been reached.", path);
725                 return (NULL);
726         }
727
728         status = stat (path, &statbuf);
729         if (status != 0)
730         {
731                 char errbuf[1024];
732                 ERROR ("configfile: stat (%s) failed: %s",
733                                 path,
734                                 sstrerror (errno, errbuf, sizeof (errbuf)));
735                 return (NULL);
736         }
737
738         if (S_ISREG (statbuf.st_mode))
739                 return (cf_read_file (path, depth));
740         else if (S_ISDIR (statbuf.st_mode))
741                 return (cf_read_dir (path, depth));
742
743         ERROR ("configfile: %s is neither a file nor a directory.", path);
744         return (NULL);
745 } /* oconfig_item_t *cf_read_generic */
746 #endif /* !HAVE_WORDEXP_H */
747
748 /* 
749  * Public functions
750  */
751 int global_option_set (const char *option, const char *value)
752 {
753         int i;
754
755         DEBUG ("option = %s; value = %s;", option, value);
756
757         for (i = 0; i < cf_global_options_num; i++)
758                 if (strcasecmp (cf_global_options[i].key, option) == 0)
759                         break;
760
761         if (i >= cf_global_options_num)
762                 return (-1);
763
764         sfree (cf_global_options[i].value);
765
766         if (value != NULL)
767                 cf_global_options[i].value = strdup (value);
768         else
769                 cf_global_options[i].value = NULL;
770
771         return (0);
772 }
773
774 const char *global_option_get (const char *option)
775 {
776         int i;
777
778         for (i = 0; i < cf_global_options_num; i++)
779                 if (strcasecmp (cf_global_options[i].key, option) == 0)
780                         break;
781
782         if (i >= cf_global_options_num)
783                 return (NULL);
784         
785         return ((cf_global_options[i].value != NULL)
786                         ? cf_global_options[i].value
787                         : cf_global_options[i].def);
788 } /* char *global_option_get */
789
790 void cf_unregister (const char *type)
791 {
792         cf_callback_t *this, *prev;
793
794         for (prev = NULL, this = first_callback;
795                         this != NULL;
796                         prev = this, this = this->next)
797                 if (strcasecmp (this->type, type) == 0)
798                 {
799                         if (prev == NULL)
800                                 first_callback = this->next;
801                         else
802                                 prev->next = this->next;
803
804                         free (this);
805                         break;
806                 }
807 } /* void cf_unregister */
808
809 void cf_unregister_complex (const char *type)
810 {
811         cf_complex_callback_t *this, *prev;
812
813         for (prev = NULL, this = complex_callback_head;
814                         this != NULL;
815                         prev = this, this = this->next)
816                 if (strcasecmp (this->type, type) == 0)
817                 {
818                         if (prev == NULL)
819                                 complex_callback_head = this->next;
820                         else
821                                 prev->next = this->next;
822
823                         sfree (this->type);
824                         sfree (this);
825                         break;
826                 }
827 } /* void cf_unregister */
828
829 void cf_register (const char *type,
830                 int (*callback) (const char *, const char *),
831                 const char **keys, int keys_num)
832 {
833         cf_callback_t *cf_cb;
834
835         /* Remove this module from the list, if it already exists */
836         cf_unregister (type);
837
838         /* This pointer will be free'd in `cf_unregister' */
839         if ((cf_cb = (cf_callback_t *) malloc (sizeof (cf_callback_t))) == NULL)
840                 return;
841
842         cf_cb->type     = type;
843         cf_cb->callback = callback;
844         cf_cb->keys     = keys;
845         cf_cb->keys_num = keys_num;
846
847         cf_cb->next = first_callback;
848         first_callback = cf_cb;
849 } /* void cf_register */
850
851 int cf_register_complex (const char *type, int (*callback) (oconfig_item_t *))
852 {
853         cf_complex_callback_t *new;
854
855         new = (cf_complex_callback_t *) malloc (sizeof (cf_complex_callback_t));
856         if (new == NULL)
857                 return (-1);
858
859         new->type = strdup (type);
860         if (new->type == NULL)
861         {
862                 sfree (new);
863                 return (-1);
864         }
865
866         new->callback = callback;
867         new->next = NULL;
868
869         if (complex_callback_head == NULL)
870         {
871                 complex_callback_head = new;
872         }
873         else
874         {
875                 cf_complex_callback_t *last = complex_callback_head;
876                 while (last->next != NULL)
877                         last = last->next;
878                 last->next = new;
879         }
880
881         return (0);
882 } /* int cf_register_complex */
883
884 int cf_read (char *filename)
885 {
886         oconfig_item_t *conf;
887         int i;
888
889         conf = cf_read_generic (filename, 0 /* depth */);
890         if (conf == NULL)
891         {
892                 ERROR ("Unable to read config file %s.", filename);
893                 return (-1);
894         }
895
896         for (i = 0; i < conf->children_num; i++)
897         {
898                 if (conf->children[i].children == NULL)
899                         dispatch_value (conf->children + i);
900                 else
901                         dispatch_block (conf->children + i);
902         }
903
904         oconfig_free (conf);
905
906         /* Read the default types.db if no `TypesDB' option was given. */
907         if (cf_default_typesdb)
908                 read_types_list (PKGDATADIR"/types.db");
909
910         return (0);
911 } /* int cf_read */