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
|
/*
* Copyright (c) 2002-2013, 2015 Balabit
* Copyright (c) 1998-2013, 2015 Balázs Scheidler
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation, or (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; 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 "stateful-parser.h"
#include <string.h>
void
stateful_parser_set_inject_mode(StatefulParser *self, LogDBParserInjectMode inject_mode)
{
self->inject_mode = inject_mode;
}
void
stateful_parser_emit_synthetic(StatefulParser *self, LogMessage *msg)
{
if (self->inject_mode == LDBP_IM_PASSTHROUGH)
{
LogPathOptions path_options = LOG_PATH_OPTIONS_INIT;
path_options.ack_needed = FALSE;
log_pipe_forward_msg(&self->super.super, log_msg_ref(msg), &path_options);
}
else
{
msg_post_message(log_msg_ref(msg));
}
}
void
stateful_parser_init_instance(StatefulParser *self, GlobalConfig *cfg)
{
log_parser_init_instance(&self->super, cfg);
self->inject_mode = LDBP_IM_PASSTHROUGH;
}
void
stateful_parser_free_method(LogPipe *s)
{
log_parser_free_method(s);
}
int
stateful_parser_lookup_inject_mode(const gchar *inject_mode)
{
if (strcasecmp(inject_mode, "internal") == 0)
return LDBP_IM_INTERNAL;
else if (strcasecmp(inject_mode, "pass-through") == 0 || strcasecmp(inject_mode, "pass_through") == 0)
return LDBP_IM_PASSTHROUGH;
return -1;
}
|