2 * collectd - src/configfile.c
3 * Copyright (C) 2005-2011 Florian octo Forster
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:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
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.
24 * Florian octo Forster <octo at collectd.org>
25 * Sebastian tokkee Harl <sh at tokkee.org>
30 #include "liboconfig/oconfig.h"
32 #include "configfile.h"
33 #include "filter_chain.h"
35 #include "types_list.h"
36 #include "utils/common/common.h"
40 #endif /* HAVE_WORDEXP_H */
44 #endif /* HAVE_FNMATCH_H */
48 #endif /* HAVE_LIBGEN_H */
50 #define ESCAPE_NULL(str) ((str) == NULL ? "(null)" : (str))
55 typedef struct cf_callback {
57 int (*callback)(const char *, const char *);
61 struct cf_callback *next;
64 typedef struct cf_complex_callback_s {
66 int (*callback)(oconfig_item_t *);
68 struct cf_complex_callback_s *next;
69 } cf_complex_callback_t;
71 typedef struct cf_value_map_s {
73 int (*func)(oconfig_item_t *);
76 typedef struct cf_global_option_s {
79 bool from_cli; /* value set from CLI */
84 * Prototypes of callback functions
86 static int dispatch_value_typesdb(oconfig_item_t *ci);
87 static int dispatch_value_plugindir(oconfig_item_t *ci);
88 static int dispatch_loadplugin(oconfig_item_t *ci);
89 static int dispatch_block_plugin(oconfig_item_t *ci);
94 static cf_callback_t *first_callback;
95 static cf_complex_callback_t *complex_callback_head;
97 static cf_value_map_t cf_value_map[] = {{"TypesDB", dispatch_value_typesdb},
98 {"PluginDir", dispatch_value_plugindir},
99 {"LoadPlugin", dispatch_loadplugin},
100 {"Plugin", dispatch_block_plugin}};
101 static int cf_value_map_num = STATIC_ARRAY_SIZE(cf_value_map);
103 static cf_global_option_t cf_global_options[] = {
104 {"BaseDir", NULL, 0, PKGLOCALSTATEDIR},
105 {"PIDFile", NULL, 0, PIDFILE},
106 {"Hostname", NULL, 0, NULL},
107 {"FQDNLookup", NULL, 0, "true"},
108 {"Interval", NULL, 0, NULL},
109 {"ReadThreads", NULL, 0, "5"},
110 {"WriteThreads", NULL, 0, "5"},
111 {"WriteQueueLimitHigh", NULL, 0, NULL},
112 {"WriteQueueLimitLow", NULL, 0, NULL},
113 {"Timeout", NULL, 0, "2"},
114 {"AutoLoadPlugin", NULL, 0, "false"},
115 {"CollectInternalStats", NULL, 0, "false"},
116 {"PreCacheChain", NULL, 0, "PreCache"},
117 {"PostCacheChain", NULL, 0, "PostCache"},
118 {"MaxReadInterval", NULL, 0, "86400"}};
119 static int cf_global_options_num = STATIC_ARRAY_SIZE(cf_global_options);
121 static int cf_default_typesdb = 1;
124 * Functions to handle register/unregister, search, and other plugin related
127 static cf_callback_t *cf_search(const char *type) {
128 cf_callback_t *cf_cb;
133 for (cf_cb = first_callback; cf_cb != NULL; cf_cb = cf_cb->next)
134 if (strcasecmp(cf_cb->type, type) == 0)
140 static int cf_dispatch(const char *type, const char *orig_key,
141 const char *orig_value) {
142 cf_callback_t *cf_cb;
143 plugin_ctx_t old_ctx;
149 if (orig_key == NULL)
152 DEBUG("type = %s, key = %s, value = %s", ESCAPE_NULL(type), orig_key,
153 ESCAPE_NULL(orig_value));
155 if ((cf_cb = cf_search(type)) == NULL) {
156 WARNING("Found a configuration for the `%s' plugin, but "
157 "the plugin isn't loaded or didn't register "
158 "a configuration callback.",
163 if ((key = strdup(orig_key)) == NULL)
165 if ((value = strdup(orig_value)) == NULL) {
172 old_ctx = plugin_set_ctx(cf_cb->ctx);
174 for (i = 0; i < cf_cb->keys_num; i++) {
175 if ((cf_cb->keys[i] != NULL) && (strcasecmp(cf_cb->keys[i], key) == 0)) {
176 ret = (*cf_cb->callback)(key, value);
181 plugin_set_ctx(old_ctx);
183 if (i >= cf_cb->keys_num)
184 WARNING("Plugin `%s' did not register for value `%s'.", type, key);
190 } /* int cf_dispatch */
192 static int dispatch_global_option(const oconfig_item_t *ci) {
193 if (ci->values_num != 1) {
194 ERROR("configfile: Global option `%s' needs exactly one argument.",
199 if (ci->values[0].type == OCONFIG_TYPE_STRING)
200 return global_option_set(ci->key, ci->values[0].value.string, 0);
201 else if (ci->values[0].type == OCONFIG_TYPE_NUMBER) {
203 snprintf(tmp, sizeof(tmp), "%lf", ci->values[0].value.number);
204 return global_option_set(ci->key, tmp, 0);
205 } else if (ci->values[0].type == OCONFIG_TYPE_BOOLEAN) {
206 if (ci->values[0].value.boolean)
207 return global_option_set(ci->key, "true", 0);
209 return global_option_set(ci->key, "false", 0);
212 ERROR("configfile: Global option `%s' argument has unknown type.", ci->key);
215 } /* int dispatch_global_option */
217 static int dispatch_value_typesdb(oconfig_item_t *ci) {
218 assert(strcasecmp(ci->key, "TypesDB") == 0);
220 cf_default_typesdb = 0;
222 if (ci->values_num < 1) {
223 ERROR("configfile: `TypesDB' needs at least one argument.");
227 for (int i = 0; i < ci->values_num; ++i) {
228 if (OCONFIG_TYPE_STRING != ci->values[i].type) {
229 WARNING("configfile: TypesDB: Skipping %i. argument which "
235 read_types_list(ci->values[i].value.string);
238 } /* int dispatch_value_typesdb */
240 static int dispatch_value_plugindir(oconfig_item_t *ci) {
241 assert(strcasecmp(ci->key, "PluginDir") == 0);
243 if (ci->values_num != 1 || ci->values[0].type != OCONFIG_TYPE_STRING) {
244 ERROR("configfile: The `PluginDir' option needs exactly one string "
249 plugin_set_dir(ci->values[0].value.string);
253 static int dispatch_loadplugin(oconfig_item_t *ci) {
256 assert(strcasecmp(ci->key, "LoadPlugin") == 0);
258 if (ci->values_num != 1 || ci->values[0].type != OCONFIG_TYPE_STRING) {
259 ERROR("configfile: The `LoadPlugin' block needs exactly one string "
264 const char *name = ci->values[0].value.string;
265 if (strcmp("libvirt", name) == 0)
268 /* default to the global interval set before loading this plugin */
270 .interval = cf_get_default_interval(), .name = strdup(name),
272 if (ctx.name == NULL)
275 for (int i = 0; i < ci->children_num; ++i) {
276 oconfig_item_t *child = ci->children + i;
278 if (strcasecmp("Globals", child->key) == 0)
279 cf_util_get_boolean(child, &global);
280 else if (strcasecmp("Interval", child->key) == 0)
281 cf_util_get_cdtime(child, &ctx.interval);
282 else if (strcasecmp("FlushInterval", child->key) == 0)
283 cf_util_get_cdtime(child, &ctx.flush_interval);
284 else if (strcasecmp("FlushTimeout", child->key) == 0)
285 cf_util_get_cdtime(child, &ctx.flush_timeout);
287 WARNING("Ignoring unknown LoadPlugin option \"%s\" "
293 plugin_ctx_t old_ctx = plugin_set_ctx(ctx);
294 int ret_val = plugin_load(name, global);
295 /* reset to the "global" context */
296 plugin_set_ctx(old_ctx);
299 } /* int dispatch_value_loadplugin */
301 static int dispatch_value_plugin(const char *plugin, oconfig_item_t *ci) {
307 buffer_free = sizeof(buffer);
309 for (int i = 0; i < ci->values_num; i++) {
312 if (ci->values[i].type == OCONFIG_TYPE_STRING)
314 snprintf(buffer_ptr, buffer_free, " %s", ci->values[i].value.string);
315 else if (ci->values[i].type == OCONFIG_TYPE_NUMBER)
317 snprintf(buffer_ptr, buffer_free, " %lf", ci->values[i].value.number);
318 else if (ci->values[i].type == OCONFIG_TYPE_BOOLEAN)
319 status = snprintf(buffer_ptr, buffer_free, " %s",
320 ci->values[i].value.boolean ? "true" : "false");
322 if ((status < 0) || (status >= buffer_free))
324 buffer_free -= status;
325 buffer_ptr += status;
327 /* skip the initial space */
328 buffer_ptr = buffer + 1;
330 return cf_dispatch(plugin, ci->key, buffer_ptr);
331 } /* int dispatch_value_plugin */
333 static int dispatch_value(oconfig_item_t *ci) {
336 for (int i = 0; i < cf_value_map_num; i++)
337 if (strcasecmp(cf_value_map[i].key, ci->key) == 0) {
338 ret = cf_value_map[i].func(ci);
345 for (int i = 0; i < cf_global_options_num; i++)
346 if (strcasecmp(cf_global_options[i].key, ci->key) == 0) {
347 ret = dispatch_global_option(ci);
352 } /* int dispatch_value */
354 static int dispatch_block_plugin(oconfig_item_t *ci) {
355 assert(strcasecmp(ci->key, "Plugin") == 0);
357 if (ci->values_num < 1) {
358 ERROR("configfile: The `Plugin' block requires arguments.");
361 if (ci->values[0].type != OCONFIG_TYPE_STRING) {
362 ERROR("configfile: First argument of `Plugin' block should be a string.");
366 const char *name = ci->values[0].value.string;
367 if (strcmp("libvirt", name) == 0) {
368 /* TODO(octo): Remove this legacy. */
369 WARNING("The \"libvirt\" plugin has been renamed to \"virt\" to avoid "
370 "problems with the build system. "
371 "Your configuration is still using the old name. "
372 "Please change it to use \"virt\" as soon as possible. "
373 "This compatibility code will go away eventually.");
377 if (IS_TRUE(global_option_get("AutoLoadPlugin"))) {
378 plugin_ctx_t ctx = {0};
379 plugin_ctx_t old_ctx;
382 /* default to the global interval set before loading this plugin */
383 ctx.interval = cf_get_default_interval();
384 ctx.name = strdup(name);
386 old_ctx = plugin_set_ctx(ctx);
387 status = plugin_load(name, /* flags = */ false);
388 /* reset to the "global" context */
389 plugin_set_ctx(old_ctx);
392 ERROR("Automatically loading plugin \"%s\" failed "
399 /* Check for a complex callback first */
400 for (cf_complex_callback_t *cb = complex_callback_head; cb != NULL;
402 if (strcasecmp(name, cb->type) == 0) {
403 plugin_ctx_t old_ctx;
406 old_ctx = plugin_set_ctx(cb->ctx);
407 ret_val = (cb->callback(ci));
408 plugin_set_ctx(old_ctx);
413 /* Hm, no complex plugin found. Dispatch the values one by one */
414 for (int i = 0, ret = 0; i < ci->children_num; i++) {
415 if (ci->children[i].children == NULL) {
416 oconfig_item_t *child = ci -> children + i;
417 ret = dispatch_value_plugin(name, child);
419 ERROR("Plugin %s failed to handle option %s, return code: %i", name, child -> key, ret);
423 WARNING("There is a `%s' block within the "
424 "configuration for the %s plugin. "
425 "The plugin either only expects "
426 "\"simple\" configuration statements "
427 "or wasn't loaded using `LoadPlugin'."
428 " Please check your configuration.",
429 ci->children[i].key, name);
436 static int dispatch_block(oconfig_item_t *ci) {
437 if (strcasecmp(ci->key, "LoadPlugin") == 0)
438 return dispatch_loadplugin(ci);
439 else if (strcasecmp(ci->key, "Plugin") == 0)
440 return dispatch_block_plugin(ci);
441 else if (strcasecmp(ci->key, "Chain") == 0)
442 return fc_configure(ci);
447 static int cf_ci_replace_child(oconfig_item_t *dst, oconfig_item_t *src,
449 oconfig_item_t *temp;
452 assert(dst->children_num > offset);
454 /* Free the memory used by the replaced child. Usually that's the
455 * `Include "blah"' statement. */
456 temp = dst->children + offset;
457 for (int i = 0; i < temp->values_num; i++) {
458 if (temp->values[i].type == OCONFIG_TYPE_STRING) {
459 sfree(temp->values[i].value.string);
465 /* If (src->children_num == 0) the array size is decreased. If offset
466 * is _not_ the last element, (offset < (dst->children_num - 1)), then
467 * we need to move the trailing elements before resizing the array. */
468 if ((src->children_num == 0) && (offset < (dst->children_num - 1))) {
469 int nmemb = dst->children_num - (offset + 1);
470 memmove(dst->children + offset, dst->children + offset + 1,
471 sizeof(oconfig_item_t) * nmemb);
474 /* Resize the memory containing the children to be big enough to hold
476 if (dst->children_num + src->children_num - 1 == 0) {
477 dst->children_num = 0;
481 temp = realloc(dst->children,
482 sizeof(oconfig_item_t) *
483 (dst->children_num + src->children_num - 1));
485 ERROR("configfile: realloc failed.");
488 dst->children = temp;
490 /* If there are children behind the include statement, and they have
491 * not yet been moved because (src->children_num == 0), then move them
492 * to the end of the list, so that the new children have room before
494 if ((src->children_num > 0) && ((dst->children_num - (offset + 1)) > 0)) {
495 int nmemb = dst->children_num - (offset + 1);
496 int old_offset = offset + 1;
497 int new_offset = offset + src->children_num;
499 memmove(dst->children + new_offset, dst->children + old_offset,
500 sizeof(oconfig_item_t) * nmemb);
503 /* Last but not least: If there are new children, copy them to the
504 * memory reserved for them. */
505 if (src->children_num > 0) {
506 memcpy(dst->children + offset, src->children,
507 sizeof(oconfig_item_t) * src->children_num);
510 /* Update the number of children. */
511 dst->children_num += (src->children_num - 1);
514 } /* int cf_ci_replace_child */
516 static int cf_ci_append_children(oconfig_item_t *dst, oconfig_item_t *src) {
517 oconfig_item_t *temp;
519 if ((src == NULL) || (src->children_num == 0))
523 realloc(dst->children,
524 sizeof(oconfig_item_t) * (dst->children_num + src->children_num));
526 ERROR("configfile: realloc failed.");
529 dst->children = temp;
531 memcpy(dst->children + dst->children_num, src->children,
532 sizeof(oconfig_item_t) * src->children_num);
533 dst->children_num += src->children_num;
536 } /* int cf_ci_append_children */
538 #define CF_MAX_DEPTH 8
539 static oconfig_item_t *cf_read_generic(const char *path, const char *pattern,
542 static int cf_include_all(oconfig_item_t *root, int depth) {
543 for (int i = 0; i < root->children_num; i++) {
547 char *pattern = NULL;
549 if (strcasecmp(root->children[i].key, "Include") != 0)
552 old = root->children + i;
554 if ((old->values_num != 1) ||
555 (old->values[0].type != OCONFIG_TYPE_STRING)) {
556 ERROR("configfile: `Include' needs exactly one string argument.");
560 for (int j = 0; j < old->children_num; ++j) {
561 oconfig_item_t *child = old->children + j;
563 if (strcasecmp(child->key, "Filter") == 0)
564 cf_util_get_string(child, &pattern);
566 ERROR("configfile: Option `%s' not allowed in <Include> block.",
570 new = cf_read_generic(old->values[0].value.string, pattern, depth + 1);
576 /* Now replace the i'th child in `root' with `new'. */
577 if (cf_ci_replace_child(root, new, i) < 0) {
583 /* ... and go back to the new i'th child. */
588 } /* for (i = 0; i < root->children_num; i++) */
591 } /* int cf_include_all */
593 static oconfig_item_t *cf_read_file(const char *file, const char *pattern,
595 oconfig_item_t *root;
598 assert(depth < CF_MAX_DEPTH);
600 if (pattern != NULL) {
601 #if HAVE_FNMATCH_H && HAVE_LIBGEN_H
602 char *tmp = sstrdup(file);
603 char *filename = basename(tmp);
605 if ((filename != NULL) && (fnmatch(pattern, filename, 0) != 0)) {
606 DEBUG("configfile: Not including `%s' because it "
607 "does not match pattern `%s'.",
615 ERROR("configfile: Cannot apply pattern filter '%s' "
616 "to file '%s': functions basename() and / or "
617 "fnmatch() not available.",
619 #endif /* HAVE_FNMATCH_H && HAVE_LIBGEN_H */
622 root = oconfig_parse_file(file);
624 ERROR("configfile: Cannot read file `%s'.", file);
628 status = cf_include_all(root, depth);
635 } /* oconfig_item_t *cf_read_file */
637 static int cf_compare_string(const void *p1, const void *p2) {
638 return strcmp(*(const char **)p1, *(const char **)p2);
641 static oconfig_item_t *cf_read_dir(const char *dir, const char *pattern,
643 oconfig_item_t *root = NULL;
646 char **filenames = NULL;
647 int filenames_num = 0;
650 assert(depth < CF_MAX_DEPTH);
654 ERROR("configfile: opendir failed: %s", STRERRNO);
658 root = calloc(1, sizeof(*root));
660 ERROR("configfile: calloc failed.");
665 while ((de = readdir(dh)) != NULL) {
669 if ((de->d_name[0] == '.') || (de->d_name[0] == 0))
672 status = snprintf(name, sizeof(name), "%s/%s", dir, de->d_name);
673 if ((status < 0) || ((size_t)status >= sizeof(name))) {
674 ERROR("configfile: Not including `%s/%s' because its"
675 " name is too long.",
678 for (int i = 0; i < filenames_num; ++i)
686 tmp = realloc(filenames, filenames_num * sizeof(*filenames));
688 ERROR("configfile: realloc failed.");
690 for (int i = 0; i < filenames_num - 1; ++i)
698 filenames[filenames_num - 1] = sstrdup(name);
701 if (filenames == NULL) {
706 qsort((void *)filenames, filenames_num, sizeof(*filenames),
709 for (int i = 0; i < filenames_num; ++i) {
710 oconfig_item_t *temp;
711 char *name = filenames[i];
713 temp = cf_read_generic(name, pattern, depth);
715 /* An error should already have been reported. */
720 cf_ci_append_children(root, temp);
721 sfree(temp->children);
730 } /* oconfig_item_t *cf_read_dir */
735 * Path is stat'ed and either cf_read_file or cf_read_dir is called
738 * There are two versions of this function: If `wordexp' exists shell wildcards
739 * will be expanded and the function will include all matches found. If
740 * `wordexp' (or, more precisely, its header file) is not available the
741 * simpler function is used which does not do any such expansion.
744 static oconfig_item_t *cf_read_generic(const char *path, const char *pattern,
746 oconfig_item_t *root = NULL;
748 const char *path_ptr;
751 if (depth >= CF_MAX_DEPTH) {
752 ERROR("configfile: Not including `%s' because the maximum "
753 "nesting depth has been reached.",
758 status = wordexp(path, &we, WRDE_NOCMD);
760 ERROR("configfile: wordexp (%s) failed.", path);
764 root = calloc(1, sizeof(*root));
766 ERROR("configfile: calloc failed.");
770 /* wordexp() might return a sorted list already. That's not
771 * documented though, so let's make sure we get what we want. */
772 qsort((void *)we.we_wordv, we.we_wordc, sizeof(*we.we_wordv),
775 for (size_t i = 0; i < we.we_wordc; i++) {
776 oconfig_item_t *temp;
779 path_ptr = we.we_wordv[i];
781 status = stat(path_ptr, &statbuf);
783 WARNING("configfile: stat (%s) failed: %s", path_ptr, STRERRNO);
787 if (S_ISREG(statbuf.st_mode))
788 temp = cf_read_file(path_ptr, pattern, depth);
789 else if (S_ISDIR(statbuf.st_mode))
790 temp = cf_read_dir(path_ptr, pattern, depth);
792 WARNING("configfile: %s is neither a file nor a "
803 cf_ci_append_children(root, temp);
804 sfree(temp->children);
811 } /* oconfig_item_t *cf_read_generic */
812 /* #endif HAVE_WORDEXP_H */
814 #else /* if !HAVE_WORDEXP_H */
815 static oconfig_item_t *cf_read_generic(const char *path, const char *pattern,
820 if (depth >= CF_MAX_DEPTH) {
821 ERROR("configfile: Not including `%s' because the maximum "
822 "nesting depth has been reached.",
827 status = stat(path, &statbuf);
829 ERROR("configfile: stat (%s) failed: %s", path, STRERRNO);
833 if (S_ISREG(statbuf.st_mode))
834 return cf_read_file(path, pattern, depth);
835 else if (S_ISDIR(statbuf.st_mode))
836 return cf_read_dir(path, pattern, depth);
838 ERROR("configfile: %s is neither a file nor a directory.", path);
840 } /* oconfig_item_t *cf_read_generic */
841 #endif /* !HAVE_WORDEXP_H */
846 int global_option_set(const char *option, const char *value, bool from_cli) {
848 DEBUG("option = %s; value = %s;", option, value);
850 for (i = 0; i < cf_global_options_num; i++)
851 if (strcasecmp(cf_global_options[i].key, option) == 0)
854 if (i >= cf_global_options_num) {
855 ERROR("configfile: Cannot set unknown global option `%s'.", option);
859 if (cf_global_options[i].from_cli && (!from_cli)) {
860 DEBUG("configfile: Ignoring %s `%s' option because "
861 "it was overriden by a command-line option.",
866 sfree(cf_global_options[i].value);
869 cf_global_options[i].value = strdup(value);
871 cf_global_options[i].value = NULL;
873 cf_global_options[i].from_cli = from_cli;
878 const char *global_option_get(const char *option) {
880 for (i = 0; i < cf_global_options_num; i++)
881 if (strcasecmp(cf_global_options[i].key, option) == 0)
884 if (i >= cf_global_options_num) {
885 ERROR("configfile: Cannot get unknown global option `%s'.", option);
889 return (cf_global_options[i].value != NULL) ? cf_global_options[i].value
890 : cf_global_options[i].def;
891 } /* char *global_option_get */
893 long global_option_get_long(const char *option, long default_value) {
897 str = global_option_get(option);
899 return default_value;
902 value = strtol(str, /* endptr = */ NULL, /* base = */ 0);
904 return default_value;
907 } /* char *global_option_get_long */
909 cdtime_t global_option_get_time(const char *name, cdtime_t def) /* {{{ */
915 optstr = global_option_get(name);
920 v = strtod(optstr, &endptr);
921 if ((endptr == NULL) || (*endptr != 0) || (errno != 0))
926 return DOUBLE_TO_CDTIME_T(v);
927 } /* }}} cdtime_t global_option_get_time */
929 cdtime_t cf_get_default_interval(void) {
930 return global_option_get_time("Interval",
931 DOUBLE_TO_CDTIME_T(COLLECTD_DEFAULT_INTERVAL));
934 void cf_unregister(const char *type) {
935 for (cf_callback_t *prev = NULL, *this = first_callback; this != NULL;
936 prev = this, this = this->next)
937 if (strcasecmp(this->type, type) == 0) {
939 first_callback = this->next;
941 prev->next = this->next;
946 } /* void cf_unregister */
948 void cf_unregister_complex(const char *type) {
949 for (cf_complex_callback_t *prev = NULL, *this = complex_callback_head;
950 this != NULL; prev = this, this = this->next)
951 if (strcasecmp(this->type, type) == 0) {
953 complex_callback_head = this->next;
955 prev->next = this->next;
961 } /* void cf_unregister */
963 void cf_register(const char *type, int (*callback)(const char *, const char *),
964 const char **keys, int keys_num) {
965 cf_callback_t *cf_cb;
967 /* Remove this module from the list, if it already exists */
970 /* This pointer will be free'd in `cf_unregister' */
971 if ((cf_cb = malloc(sizeof(*cf_cb))) == NULL)
975 cf_cb->callback = callback;
977 cf_cb->keys_num = keys_num;
978 cf_cb->ctx = plugin_get_ctx();
980 cf_cb->next = first_callback;
981 first_callback = cf_cb;
982 } /* void cf_register */
984 int cf_register_complex(const char *type, int (*callback)(oconfig_item_t *)) {
985 cf_complex_callback_t *new;
987 new = malloc(sizeof(*new));
991 new->type = strdup(type);
992 if (new->type == NULL) {
997 new->callback = callback;
1000 new->ctx = plugin_get_ctx();
1002 if (complex_callback_head == NULL) {
1003 complex_callback_head = new;
1005 cf_complex_callback_t *last = complex_callback_head;
1006 while (last->next != NULL)
1012 } /* int cf_register_complex */
1014 int cf_read(const char *filename) {
1015 oconfig_item_t *conf;
1018 conf = cf_read_generic(filename, /* pattern = */ NULL, /* depth = */ 0);
1020 ERROR("Unable to read config file %s.", filename);
1022 } else if (conf->children_num == 0) {
1023 ERROR("Configuration file %s is empty.", filename);
1028 for (int i = 0; i < conf->children_num; i++) {
1029 if (conf->children[i].children == NULL) {
1030 if (dispatch_value(conf->children + i) != 0)
1033 if (dispatch_block(conf->children + i) != 0)
1040 /* Read the default types.db if no `TypesDB' option was given. */
1041 if (cf_default_typesdb) {
1042 if (read_types_list(PKGDATADIR "/types.db") != 0)
1050 /* Assures the config option is a string, duplicates it and returns the copy in
1051 * "ret_string". If necessary "*ret_string" is freed first. Returns zero upon
1053 int cf_util_get_string(const oconfig_item_t *ci, char **ret_string) /* {{{ */
1055 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
1056 P_ERROR("The `%s' option requires exactly one string argument.", ci->key);
1060 char *string = strdup(ci->values[0].value.string);
1064 if (*ret_string != NULL)
1066 *ret_string = string;
1069 } /* }}} int cf_util_get_string */
1071 /* Assures the config option is a string and copies it to the provided buffer.
1072 * Assures NUL-termination. */
1073 int cf_util_get_string_buffer(const oconfig_item_t *ci, char *buffer, /* {{{ */
1074 size_t buffer_size) {
1075 if ((ci == NULL) || (buffer == NULL) || (buffer_size < 1))
1078 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
1079 P_ERROR("The `%s' option requires exactly one string argument.", ci->key);
1083 strncpy(buffer, ci->values[0].value.string, buffer_size);
1084 buffer[buffer_size - 1] = '\0';
1087 } /* }}} int cf_util_get_string_buffer */
1089 /* Assures the config option is a number and returns it as an int. */
1090 int cf_util_get_int(const oconfig_item_t *ci, int *ret_value) /* {{{ */
1092 if ((ci == NULL) || (ret_value == NULL))
1095 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_NUMBER)) {
1096 P_ERROR("The `%s' option requires exactly one numeric argument.", ci->key);
1100 *ret_value = (int)ci->values[0].value.number;
1103 } /* }}} int cf_util_get_int */
1105 int cf_util_get_double(const oconfig_item_t *ci, double *ret_value) /* {{{ */
1107 if ((ci == NULL) || (ret_value == NULL))
1110 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_NUMBER)) {
1111 P_ERROR("The `%s' option requires exactly one numeric argument.", ci->key);
1115 *ret_value = ci->values[0].value.number;
1118 } /* }}} int cf_util_get_double */
1120 int cf_util_get_boolean(const oconfig_item_t *ci, bool *ret_bool) /* {{{ */
1122 if ((ci == NULL) || (ret_bool == NULL))
1125 if ((ci->values_num != 1) || ((ci->values[0].type != OCONFIG_TYPE_BOOLEAN) &&
1126 (ci->values[0].type != OCONFIG_TYPE_STRING))) {
1127 P_ERROR("The `%s' option requires exactly one boolean argument.", ci->key);
1131 switch (ci->values[0].type) {
1132 case OCONFIG_TYPE_BOOLEAN:
1133 *ret_bool = ci->values[0].value.boolean ? true : false;
1135 case OCONFIG_TYPE_STRING:
1136 P_WARNING("Using string value `%s' for boolean option `%s' is deprecated "
1137 "and will be removed in future releases. Use unquoted true or "
1139 ci->values[0].value.string, ci->key);
1141 if (IS_TRUE(ci->values[0].value.string))
1143 else if (IS_FALSE(ci->values[0].value.string))
1146 P_ERROR("Cannot parse string value `%s' of the `%s' option as a boolean "
1148 ci->values[0].value.string, ci->key);
1155 } /* }}} int cf_util_get_boolean */
1157 int cf_util_get_flag(const oconfig_item_t *ci, /* {{{ */
1158 unsigned int *ret_value, unsigned int flag) {
1161 if (ret_value == NULL)
1165 status = cf_util_get_boolean(ci, &b);
1172 *ret_value &= ~flag;
1176 } /* }}} int cf_util_get_flag */
1178 /* Assures that the config option is a string or a number if the correct range
1179 * of 1-65535. The string is then converted to a port number using
1180 * `service_name_to_port_number' and returned.
1181 * Returns the port number in the range [1-65535] or less than zero upon
1183 int cf_util_get_port_number(const oconfig_item_t *ci) /* {{{ */
1187 if ((ci->values_num != 1) || ((ci->values[0].type != OCONFIG_TYPE_STRING) &&
1188 (ci->values[0].type != OCONFIG_TYPE_NUMBER))) {
1189 P_ERROR("The `%s' option requires exactly one string argument.", ci->key);
1193 if (ci->values[0].type == OCONFIG_TYPE_STRING)
1194 return service_name_to_port_number(ci->values[0].value.string);
1196 assert(ci->values[0].type == OCONFIG_TYPE_NUMBER);
1197 tmp = (int)(ci->values[0].value.number + 0.5);
1198 if ((tmp < 1) || (tmp > 65535)) {
1199 P_ERROR("The `%s' option requires a service name or a port number. The "
1200 "number you specified, %i, is not in the valid range of 1-65535.",
1206 } /* }}} int cf_util_get_port_number */
1208 int cf_util_get_service(const oconfig_item_t *ci, char **ret_string) /* {{{ */
1214 if (ci->values_num != 1) {
1215 P_ERROR("The `%s` option requires exactly one argument.", ci->key);
1219 if (ci->values[0].type == OCONFIG_TYPE_STRING)
1220 return cf_util_get_string(ci, ret_string);
1221 if (ci->values[0].type != OCONFIG_TYPE_NUMBER) {
1222 P_ERROR("The `%s` option requires exactly one string or numeric argument.",
1227 status = cf_util_get_int(ci, &port);
1230 else if ((port < 1) || (port > 65535)) {
1231 P_ERROR("The port number given for the `%s` option is out of range (%i).",
1236 service = malloc(6);
1237 if (service == NULL) {
1238 P_ERROR("cf_util_get_service: Out of memory.");
1241 snprintf(service, 6, "%i", port);
1244 *ret_string = service;
1247 } /* }}} int cf_util_get_service */
1249 int cf_util_get_cdtime(const oconfig_item_t *ci, cdtime_t *ret_value) /* {{{ */
1251 if ((ci == NULL) || (ret_value == NULL))
1254 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_NUMBER)) {
1255 P_ERROR("The `%s' option requires exactly one numeric argument.", ci->key);
1259 if (ci->values[0].value.number < 0.0) {
1260 P_ERROR("The numeric argument of the `%s' option must not be negative.",
1265 *ret_value = DOUBLE_TO_CDTIME_T(ci->values[0].value.number);
1268 } /* }}} int cf_util_get_cdtime */