1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821
|
/*
* Copyright (c) 2002-2014 Balabit
* Copyright (c) 1998-2012 Balázs Scheidler
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include "cfg.h"
#include "cfg-path.h"
#include "cfg-grammar.h"
#include "module-config.h"
#include "cfg-tree.h"
#include "messages.h"
#include "template/templates.h"
#include "userdb.h"
#include "logmsg/logmsg.h"
#include "dnscache.h"
#include "serialize.h"
#include "plugin.h"
#include "cfg-parser.h"
#include "stats/stats-registry.h"
#include "logproto/logproto-builtins.h"
#include "reloc.h"
#include "hostname.h"
#include "rcptid.h"
#include "resolved-configurable-paths.h"
#include "mainloop.h"
#include "timeutils/format.h"
#include "apphook.h"
#include <sys/types.h>
#include <signal.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <iv_work.h>
#include <openssl/sha.h>
#define CONFIG_HASH_LENGTH SHA256_DIGEST_LENGTH
#define CONFIG_HASH_STR_LENGTH (CONFIG_HASH_LENGTH * 2 + 1)
gint
cfg_ts_format_value(gchar *format)
{
if (strcmp(format, "rfc3164") == 0 || strcmp(format, "bsd") == 0)
return TS_FMT_BSD;
else if (strcmp(format, "rfc3339") == 0 || strcmp(format, "iso") == 0)
return TS_FMT_ISO;
else if (strcmp(format, "full") == 0)
return TS_FMT_FULL;
else if (strcmp(format, "unix") == 0 || strcmp(format, "utc") == 0)
return TS_FMT_UNIX;
else
{
msg_error("Invalid ts_format() value",
evt_tag_str("value", format));
return TS_FMT_BSD;
}
}
void
cfg_bad_hostname_set(GlobalConfig *self, gchar *bad_hostname_re)
{
if (self->bad_hostname_re)
g_free(self->bad_hostname_re);
self->bad_hostname_re = g_strdup(bad_hostname_re);
}
gint
cfg_lookup_mark_mode(const gchar *mark_mode)
{
if (!strcmp(mark_mode, "internal"))
return MM_INTERNAL;
if (!strcmp(mark_mode, "dst_idle") || !strcmp(mark_mode, "dst-idle"))
return MM_DST_IDLE;
if (!strcmp(mark_mode, "host_idle") || !strcmp(mark_mode, "host-idle"))
return MM_HOST_IDLE;
if (!strcmp(mark_mode, "periodical"))
return MM_PERIODICAL;
if (!strcmp(mark_mode, "none"))
return MM_NONE;
if (!strcmp(mark_mode, "global"))
return MM_GLOBAL;
return -1;
}
void
cfg_set_mark_mode(GlobalConfig *self, const gchar *mark_mode)
{
self->mark_mode = cfg_lookup_mark_mode(mark_mode);
}
gboolean
cfg_set_log_level(GlobalConfig *self, const gchar *log_level)
{
gint ll = msg_map_string_to_log_level(log_level);
if (ll < 0)
return FALSE;
configuration->log_level = ll;
return TRUE;
}
static void
_invoke_module_init(gchar *key, ModuleConfig *mc, gpointer *args)
{
GlobalConfig *cfg = (GlobalConfig *) args[0];
gboolean *result = (gboolean *) args[1];
if (!module_config_init(mc, cfg))
*result = FALSE;
}
static void
_invoke_module_deinit(gchar *key, ModuleConfig *mc, gpointer user_data)
{
GlobalConfig *cfg = (GlobalConfig *) user_data;
module_config_deinit(mc, cfg);
}
gboolean
cfg_load_module_with_args(GlobalConfig *cfg, const gchar *module_name, CfgArgs *args)
{
return plugin_load_module(&cfg->plugin_context, module_name, args);
}
gboolean
cfg_load_module(GlobalConfig *cfg, const gchar *module_name)
{
return cfg_load_module_with_args(cfg, module_name, NULL);
}
void
cfg_load_forced_modules(GlobalConfig *self)
{
static const gchar *module_list[] =
{
#if (!SYSLOG_NG_ENABLE_FORCED_SERVER_MODE)
"license"
#endif
};
if (!self->enable_forced_modules)
return;
int i;
for (i=0; i<sizeof(module_list)/sizeof(gchar *); ++i)
{
const gchar *name = module_list[i];
if (!cfg_load_module(self, name))
{
msg_error("Error loading module, forcing exit", evt_tag_str("module", name));
exit(1);
}
}
}
void
cfg_discover_candidate_modules(GlobalConfig *self)
{
if (self->use_plugin_discovery)
{
if (!plugin_has_discovery_run(&self->plugin_context))
plugin_discover_candidate_modules(&self->plugin_context);
}
}
gboolean
cfg_is_module_available(GlobalConfig *self, const gchar *module_name)
{
/* NOTE: if plugin discovery is disabled, the only way to know if a module
* is available is to actually load it */
if (!self->use_plugin_discovery)
return cfg_load_module(self, module_name);
else
return plugin_is_module_available(&self->plugin_context, module_name);
}
Plugin *
cfg_find_plugin(GlobalConfig *cfg, gint plugin_type, const gchar *plugin_name)
{
return plugin_find(&cfg->plugin_context, plugin_type, plugin_name);
}
static CfgTokenBlock *
_construct_plugin_prelude(GlobalConfig *cfg, Plugin *plugin, CFG_LTYPE *yylloc)
{
CfgTokenBlock *block;
CFG_STYPE token;
/* we inject two tokens to a new token-block:
* 1) the plugin type (in order to make it possible to support different
* plugins from the same grammar)
*
* 2) the keyword equivalent of the plugin name
*
* These tokens are automatically inserted into the token stream, so that
* the module specific grammar finds it there before any other token.
* These tokens are used to branch out for multiple different
* plugins within the same module, e.g. grammar.
*/
block = cfg_token_block_new();
/* add plugin->type as a token */
memset(&token, 0, sizeof(token));
token.type = LL_TOKEN;
token.token = plugin->type;
cfg_token_block_add_and_consume_token(block, &token);
/* start a new lexer context, so plugin specific keywords are recognized,
* we only do this to lookup the parser name. */
cfg_lexer_push_context(cfg->lexer, plugin->parser->context, plugin->parser->keywords, plugin->parser->name);
cfg_lexer_map_word_to_token(cfg->lexer, &token, yylloc, plugin->name);
cfg_lexer_pop_context(cfg->lexer);
/* add plugin name token */
cfg_token_block_add_and_consume_token(block, &token);
return block;
}
/* construct a plugin instance by parsing its relevant portion from the
* configuration file */
gpointer
cfg_parse_plugin(GlobalConfig *cfg, Plugin *plugin, CFG_LTYPE *yylloc, gpointer arg)
{
cfg_lexer_inject_token_block(cfg->lexer, _construct_plugin_prelude(cfg, plugin, yylloc));
return plugin_construct_from_config(plugin, cfg->lexer, arg);
}
static gboolean
cfg_init_modules(GlobalConfig *cfg)
{
gboolean result = TRUE;
gpointer args[] = { cfg, &result };
g_hash_table_foreach(cfg->module_config, (GHFunc) _invoke_module_init, args);
return result;
}
static void
cfg_deinit_modules(GlobalConfig *cfg)
{
g_hash_table_foreach(cfg->module_config, (GHFunc) _invoke_module_deinit, cfg);
}
/* Request that this configuration shuts down and terminates. Right now, as
* there's only one configuration executed in a syslog-ng process, it will
* cause the mainloop to exit. Should there be multiple configs running in
* the same process at a future point, this would only terminate one and
* continue with the rest.
*/
void
cfg_shutdown(GlobalConfig *cfg)
{
MainLoop *main_loop = main_loop_get_instance();
main_loop_exit(main_loop);
}
gboolean
cfg_is_shutting_down(GlobalConfig *cfg)
{
MainLoop *main_loop = main_loop_get_instance();
return main_loop_is_terminating(main_loop);
}
gboolean
cfg_init(GlobalConfig *cfg)
{
msg_apply_config_log_level(cfg->log_level);
if (cfg->file_template_name && !(cfg->file_template = cfg_tree_lookup_template(&cfg->tree, cfg->file_template_name)))
msg_error("Error resolving file template",
evt_tag_str("name", cfg->file_template_name));
if (cfg->proto_template_name && !(cfg->proto_template = cfg_tree_lookup_template(&cfg->tree, cfg->proto_template_name)))
msg_error("Error resolving protocol template",
evt_tag_str("name", cfg->proto_template_name));
if (cfg->bad_hostname_re)
{
gint regerr;
if ((regerr = regcomp(&cfg->bad_hostname, cfg->bad_hostname_re, REG_NOSUB | REG_EXTENDED)) != 0)
{
gchar buf[256];
regerror(regerr, &cfg->bad_hostname, buf, sizeof(buf));
msg_error("Error compiling bad_hostname regexp",
evt_tag_str("error", buf));
}
else
{
cfg->bad_hostname_compiled = TRUE;
}
}
if (!rcptid_init(cfg->state, cfg->use_uniqid))
return FALSE;
stats_reinit(&cfg->stats_options);
dns_caching_update_options(&cfg->dns_cache_options);
hostname_reinit(cfg->custom_domain);
host_resolve_options_init_globals(&cfg->host_resolve_options);
log_template_options_init(&cfg->template_options, cfg);
if (!cfg_init_modules(cfg))
return FALSE;
if (!cfg_tree_compile(&cfg->tree))
return FALSE;
app_config_pre_pre_init();
if (!cfg_tree_pre_config_init(&cfg->tree))
return FALSE;
app_config_pre_init();
if (!cfg_tree_start(&cfg->tree))
return FALSE;
/*
* TLDR: A half-initialized pipeline turned out to be really hard to deinitialize
* correctly when dedicated source/destination threads are spawned (because we
* would have to wait for workers to stop and guarantee some internal
* task/timer/fdwatch ordering in ivykis during this action).
* See: https://github.com/syslog-ng/syslog-ng/pull/3176#issuecomment-638849597
*/
g_assert(cfg_tree_post_config_init(&cfg->tree));
return TRUE;
}
gboolean
cfg_deinit(GlobalConfig *cfg)
{
cfg_deinit_modules(cfg);
rcptid_deinit();
return cfg_tree_stop(&cfg->tree);
}
void
cfg_set_version_without_validation(GlobalConfig *self, gint version)
{
self->user_version = version;
}
gboolean
cfg_set_version(GlobalConfig *self, gint version)
{
if (self->user_version != 0)
{
msg_warning("WARNING: The @version directive must be placed at the top of the main configuration file "
"(preferably as the very first line), preceding any @include directives and other configuration "
"elements, otherwise, the current version will be used. If you specify multiple @version directives "
"in your configuration, only the first one will be considered",
cfg_format_config_version_tag(self),
cfg_format_version_tag("ignored-version", version));
return TRUE;
}
cfg_set_version_without_validation(self, version);
if (cfg_is_config_version_older(self, VERSION_VALUE_3_0))
{
msg_error("ERROR: compatibility with configurations below 3.0 was dropped in " VERSION_3_13
", please update your configuration accordingly",
cfg_format_config_version_tag(self));
return FALSE;
}
if (cfg_is_config_version_older(self, VERSION_VALUE_LAST_SEMANTIC_CHANGE))
{
msg_warning("WARNING: Configuration file format is too old, syslog-ng is running in compatibility mode. "
"Please update it to use the " VERSION_PRODUCT_CURRENT " format at your time of convenience. "
"To upgrade the configuration, please review the warnings about incompatible changes printed "
"by syslog-ng, and once completed change the @version header at the top of the configuration "
"file",
cfg_format_config_version_tag(self));
}
else if (version_convert_from_user(self->user_version) > VERSION_VALUE_CURRENT)
{
if (cfg_is_experimental_feature_enabled(self))
{
msg_warning("WARNING: experimental behaviors of the future " VERSION_4_0 " are now enabled. This mode of "
"operation is meant to solicit feedback and allow the evaluation of the new features. USE THIS "
"MODE AT YOUR OWN RISK, please share feedback via GitHub, Gitter.im or email to the authors",
cfg_format_config_version_tag(self));
}
else
{
msg_warning("WARNING: Configuration file format is newer than the current version, please specify the "
"current version number (" VERSION_STR_CURRENT ") in the @version directive. "
"syslog-ng will operate at its highest supported version in this mode",
cfg_format_config_version_tag(self));
self->user_version = VERSION_VALUE_CURRENT;
}
}
if (cfg_is_config_version_older(self, VERSION_VALUE_3_3))
{
msg_warning("WARNING: global: the default value of log_fifo_size() has changed to 10000 in " VERSION_3_3
" to reflect log_iw_size() changes for tcp()/udp() window size changes",
cfg_format_config_version_tag(self));
}
return TRUE;
}
gboolean
cfg_set_current_version(GlobalConfig *self)
{
msg_info("Setting current version as config version", evt_tag_str("version", VERSION_STR_CURRENT));
return cfg_set_version(self, VERSION_VALUE_CURRENT);
}
gboolean
cfg_allow_config_dups(GlobalConfig *self)
{
const gchar *s;
if (cfg_is_config_version_older(self, VERSION_VALUE_3_3))
return TRUE;
s = cfg_args_get(self->globals, "allow-config-dups");
if (s && atoi(s))
{
return TRUE;
}
else
{
/* duplicate found, but allow-config-dups is not enabled, hint the user that he might want to use allow-config-dups */
msg_warning_once("WARNING: Duplicate configuration objects (sources, destinations, ...) are not allowed by default starting with syslog-ng 3.3, add \"@define allow-config-dups 1\" to your configuration to re-enable");
return FALSE;
}
}
static void
cfg_register_builtin_plugins(GlobalConfig *self)
{
log_proto_register_builtin_plugins(&self->plugin_context);
}
GlobalConfig *
cfg_new(gint version)
{
GlobalConfig *self = g_new0(GlobalConfig, 1);
self->module_config = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, (GDestroyNotify) module_config_free);
self->globals = cfg_args_new();
self->user_version = version;
self->config_hash = g_malloc0(CONFIG_HASH_LENGTH * sizeof(guint8));
self->flush_lines = 100;
self->mark_freq = 1200; /* 20 minutes */
self->mark_mode = MM_HOST_IDLE;
self->chain_hostnames = 0;
self->time_reopen = 60;
self->time_reap = 60;
self->log_fifo_size = 10000;
self->log_msg_size = 65536;
file_perm_options_global_defaults(&self->file_perm_options);
dns_cache_options_defaults(&self->dns_cache_options);
self->threaded = TRUE;
self->pass_unix_credentials = -1;
log_template_options_global_defaults(&self->template_options);
host_resolve_options_global_defaults(&self->host_resolve_options);
self->recv_time_zone = NULL;
self->keep_timestamp = TRUE;
self->log_level = -1;
self->use_uniqid = FALSE;
/* The rcptid part of use_uniqid() is used in trace messages, enable it
* explicitly. We don't care about performance if trace is enabled. */
if (trace_flag)
self->use_uniqid = TRUE;
stats_options_defaults(&self->stats_options);
healthcheck_stats_options_defaults(&self->healthcheck_options);
self->min_iw_size_per_reader = 100;
cfg_tree_init_instance(&self->tree, self);
plugin_context_init_instance(&self->plugin_context);
self->use_plugin_discovery = TRUE;
self->enable_forced_modules = TRUE;
cfg_register_builtin_plugins(self);
return self;
}
GlobalConfig *
cfg_new_snippet(void)
{
GlobalConfig *self = cfg_new(VERSION_VALUE_CURRENT);
self->use_plugin_discovery = FALSE;
self->enable_forced_modules = FALSE;
return self;
}
/* This function creates a GlobalConfig instance that shares the set of
* available plugins as a master one. */
GlobalConfig *
cfg_new_subordinate(GlobalConfig *master)
{
GlobalConfig *self = cfg_new_snippet();
plugin_context_copy_candidates(&self->plugin_context, &master->plugin_context);
return self;
}
void
cfg_set_global_paths(GlobalConfig *self)
{
gchar *include_path;
cfg_args_set(self->globals, "syslog-ng-root", get_installation_path_for(SYSLOG_NG_PATH_PREFIX));
cfg_args_set(self->globals, "syslog-ng-data", get_installation_path_for(SYSLOG_NG_PATH_DATADIR));
cfg_args_set(self->globals, "syslog-ng-include", get_installation_path_for(SYSLOG_NG_PATH_CONFIG_INCLUDEDIR));
cfg_args_set(self->globals, "syslog-ng-sysconfdir", get_installation_path_for(SYSLOG_NG_PATH_SYSCONFDIR));
cfg_args_set(self->globals, "scl-root", get_installation_path_for(SYSLOG_NG_PATH_SCLDIR));
cfg_args_set(self->globals, "module-path", resolved_configurable_paths.initial_module_path);
cfg_args_set(self->globals, "module-install-dir", resolved_configurable_paths.initial_module_path);
include_path = g_strdup_printf("%s:%s",
get_installation_path_for(SYSLOG_NG_PATH_SYSCONFDIR),
get_installation_path_for(SYSLOG_NG_PATH_CONFIG_INCLUDEDIR));
cfg_args_set(self->globals, "include-path", include_path);
g_free(include_path);
}
gboolean
cfg_run_parser(GlobalConfig *self, CfgLexer *lexer, CfgParser *parser, gpointer *result, gpointer arg)
{
gboolean res;
GlobalConfig *old_cfg;
CfgLexer *old_lexer;
old_cfg = configuration;
configuration = self;
old_lexer = self->lexer;
self->lexer = lexer;
cfg_set_global_paths(self);
res = cfg_parser_parse(parser, lexer, result, arg);
cfg_lexer_free(lexer);
self->lexer = NULL;
self->lexer = old_lexer;
configuration = old_cfg;
return res;
}
gboolean
cfg_run_parser_with_main_context(GlobalConfig *self, CfgLexer *lexer, CfgParser *parser, gpointer *result, gpointer arg,
const gchar *desc)
{
gboolean ret_val;
cfg_lexer_push_context(lexer, main_parser.context, main_parser.keywords, desc);
ret_val = cfg_run_parser(self, lexer, parser, result, arg);
return ret_val;
}
static void
cfg_dump_processed_config(GString *preprocess_output, gchar *output_filename)
{
FILE *output_file;
if (strcmp(output_filename, "-")==0)
{
fprintf(stdout, "%s", preprocess_output->str);
return;
}
output_file = fopen(output_filename, "w+");
if (!output_file)
{
msg_error("Error opening preprocess-into file",
evt_tag_str(EVT_TAG_FILENAME, output_filename),
evt_tag_error(EVT_TAG_OSERROR));
return;
}
fprintf(output_file, "%s", preprocess_output->str);
fclose(output_file);
}
static GString *
_load_file_into_string(const gchar *fname)
{
gchar *buff;
GString *content = g_string_new("");
if (g_file_get_contents(fname, &buff, NULL, NULL))
{
g_string_append(content, buff);
g_free(buff);
}
return content;
}
static void
_cfg_file_path_free(gpointer data)
{
CfgFilePath *self = (CfgFilePath *)data;
g_free(self->file_path);
g_free(self->path_type);
g_free(self);
}
static inline const gchar *
_format_config_hash(GlobalConfig *self, gchar *str, size_t str_size)
{
for (gsize i = 0; i < CONFIG_HASH_LENGTH; ++i)
{
g_snprintf(str + (i * 2), str_size - (i * 2), "%02x", self->config_hash[i]);
}
return str;
}
void
cfg_set_user_config_id(GlobalConfig *self, const gchar *id)
{
g_free(self->user_config_id);
self->user_config_id = g_strdup(id);
}
void
cfg_format_id(GlobalConfig *self, GString *id)
{
gchar buf[CONFIG_HASH_STR_LENGTH];
if (self->user_config_id)
g_string_printf(id, "%s (%s)", self->user_config_id, _format_config_hash(self, buf, sizeof(buf)));
else
g_string_assign(id, _format_config_hash(self, buf, sizeof(buf)));
}
static void
cfg_hash_config(GlobalConfig *self)
{
SHA256((const guchar *) self->preprocess_config->str, self->preprocess_config->len, self->config_hash);
}
gboolean
cfg_read_config(GlobalConfig *self, const gchar *fname, gchar *preprocess_into)
{
FILE *cfg_file;
gint res;
cfg_discover_candidate_modules(self);
cfg_load_forced_modules(self);
self->filename = fname;
if ((cfg_file = fopen(fname, "r")) != NULL)
{
CfgLexer *lexer;
self->preprocess_config = g_string_sized_new(8192);
self->original_config = _load_file_into_string(fname);
lexer = cfg_lexer_new(self, cfg_file, fname, self->preprocess_config);
res = cfg_run_parser(self, lexer, &main_parser, (gpointer *) &self, NULL);
fclose(cfg_file);
cfg_hash_config(self);
if (preprocess_into)
{
cfg_dump_processed_config(self->preprocess_config, preprocess_into);
}
if (self->user_version == 0)
{
msg_warning("WARNING: no version information provided in the configuration file. Please specify `current` "
"to use the latest version and silence this warning, or specify a specific version number using "
"@version as the first line in the configuration file.");
cfg_set_current_version(self);
}
if (res)
{
/* successfully parsed */
return TRUE;
}
}
else
{
msg_error("Error opening configuration file",
evt_tag_str(EVT_TAG_FILENAME, fname),
evt_tag_error(EVT_TAG_OSERROR));
}
return FALSE;
}
void
cfg_free(GlobalConfig *self)
{
g_assert(self->persist == NULL);
g_free(self->file_template_name);
g_free(self->proto_template_name);
log_template_unref(self->file_template);
log_template_unref(self->proto_template);
log_template_options_destroy(&self->template_options);
host_resolve_options_destroy(&self->host_resolve_options);
if (self->bad_hostname_compiled)
regfree(&self->bad_hostname);
g_free(self->recv_time_zone);
if (self->source_mangle_callback_list)
g_list_free(self->source_mangle_callback_list);
g_free(self->bad_hostname_re);
dns_cache_options_destroy(&self->dns_cache_options);
g_free(self->custom_domain);
plugin_context_deinit_instance(&self->plugin_context);
cfg_tree_free_instance(&self->tree);
g_hash_table_unref(self->module_config);
cfg_args_unref(self->globals);
if (self->state)
persist_state_free(self->state);
if (self->preprocess_config)
g_string_free(self->preprocess_config, TRUE);
if (self->original_config)
g_string_free(self->original_config, TRUE);
g_list_free_full(self->file_list, _cfg_file_path_free);
g_free(self->user_config_id);
g_free(self->config_hash);
g_free(self);
}
void
cfg_persist_config_move(GlobalConfig *src, GlobalConfig *dest)
{
if (dest->persist != NULL)
persist_config_free(dest->persist);
dest->persist = src->persist;
dest->state = src->state;
src->persist = NULL;
src->state = NULL;
}
void
cfg_persist_config_add(GlobalConfig *cfg, const gchar *name, gpointer value, GDestroyNotify destroy)
{
if (!value)
return;
if (!cfg->persist)
{
if (destroy)
destroy(value);
return;
}
persist_config_add(cfg->persist, name, value, destroy);
}
gpointer
cfg_persist_config_fetch(GlobalConfig *cfg, const gchar *name)
{
if (!cfg->persist)
return NULL;
return persist_config_fetch(cfg->persist, name);
}
gint
cfg_get_user_version(const GlobalConfig *cfg)
{
return cfg->user_version;
}
void register_source_mangle_callback(GlobalConfig *src, mangle_callback cb)
{
src->source_mangle_callback_list = g_list_append(src->source_mangle_callback_list, cb);
}
gboolean
is_source_mangle_callback_registered(GlobalConfig *src, mangle_callback cb)
{
return !!g_list_find(src->source_mangle_callback_list, cb);
}
void uregister_source_mangle_callback(GlobalConfig *src, mangle_callback cb)
{
src->source_mangle_callback_list = g_list_remove(src->source_mangle_callback_list, cb);
}
const gchar *
cfg_get_filename(const GlobalConfig *cfg)
{
return cfg->filename;
}
|