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
|
/*
* Copyright (c) 2002-2012 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 "msg-format.h"
#include "cfg.h"
#include "plugin.h"
#include "plugin-types.h"
void
msg_format_inject_parse_error(LogMessage *msg, const guchar *data, gsize length)
{
gchar buf[2048];
log_msg_clear(msg);
msg->timestamps[LM_TS_STAMP] = msg->timestamps[LM_TS_RECVD];
log_msg_set_value(msg, LM_V_HOST, "", 0);
g_snprintf(buf, sizeof(buf), "Error processing log message: %.*s", (gint) length, data);
log_msg_set_value(msg, LM_V_MESSAGE, buf, -1);
log_msg_set_value(msg, LM_V_PROGRAM, "syslog-ng", 9);
g_snprintf(buf, sizeof(buf), "%d", (int) getpid());
log_msg_set_value(msg, LM_V_PID, buf, -1);
msg->pri = LOG_SYSLOG | LOG_ERR;
}
void
msg_format_options_defaults(MsgFormatOptions *options)
{
options->flags = LP_EXPECT_HOSTNAME | LP_STORE_LEGACY_MSGHDR;
options->recv_time_zone = NULL;
options->recv_time_zone_info = NULL;
options->bad_hostname = NULL;
options->default_pri = 0xFFFF;
options->sdata_param_value_max = 65535;
}
/* NOTE: _init needs to be idempotent when called multiple times w/o invoking _destroy */
void
msg_format_options_init(MsgFormatOptions *options, GlobalConfig *cfg)
{
Plugin *p;
if (options->initialized)
return;
if (cfg->bad_hostname_compiled)
options->bad_hostname = &cfg->bad_hostname;
if (options->recv_time_zone == NULL)
options->recv_time_zone = g_strdup(cfg->recv_time_zone);
if (options->recv_time_zone_info == NULL)
options->recv_time_zone_info = time_zone_info_new(options->recv_time_zone);
if (!options->format)
options->format = g_strdup("syslog");
p = plugin_find(cfg, LL_CONTEXT_FORMAT, options->format);
if (p)
options->format_handler = plugin_construct(p, cfg, LL_CONTEXT_FORMAT, options->format);
options->initialized = TRUE;
}
void
msg_format_options_destroy(MsgFormatOptions *options)
{
if (options->format)
{
g_free(options->format);
options->format = NULL;
}
if (options->recv_time_zone)
{
g_free(options->recv_time_zone);
options->recv_time_zone = NULL;
}
if (options->recv_time_zone_info)
{
time_zone_info_free(options->recv_time_zone_info);
options->recv_time_zone_info = NULL;
}
options->initialized = FALSE;
}
CfgFlagHandler msg_format_flag_handlers[] =
{
{ "no-parse", CFH_SET, offsetof(MsgFormatOptions, flags), LP_NOPARSE },
{ "check-hostname", CFH_SET, offsetof(MsgFormatOptions, flags), LP_CHECK_HOSTNAME },
{ "syslog-protocol", CFH_SET, offsetof(MsgFormatOptions, flags), LP_SYSLOG_PROTOCOL },
{ "assume-utf8", CFH_SET, offsetof(MsgFormatOptions, flags), LP_ASSUME_UTF8 },
{ "validate-utf8", CFH_SET, offsetof(MsgFormatOptions, flags), LP_VALIDATE_UTF8 },
{ "sanitize-utf8", CFH_SET, offsetof(MsgFormatOptions, flags), LP_SANITIZE_UTF8 },
{ "no-multi-line", CFH_SET, offsetof(MsgFormatOptions, flags), LP_NO_MULTI_LINE },
{ "store-legacy-msghdr", CFH_SET, offsetof(MsgFormatOptions, flags), LP_STORE_LEGACY_MSGHDR },
{ "dont-store-legacy-msghdr", CFH_CLEAR, offsetof(MsgFormatOptions, flags), LP_STORE_LEGACY_MSGHDR },
{ "expect-hostname", CFH_SET, offsetof(MsgFormatOptions, flags), LP_EXPECT_HOSTNAME },
{ "no-hostname", CFH_CLEAR, offsetof(MsgFormatOptions, flags), LP_EXPECT_HOSTNAME },
{ NULL },
};
gboolean
msg_format_options_process_flag(MsgFormatOptions *options, gchar *flag)
{
return cfg_process_flag(msg_format_flag_handlers, options, flag);
}
|