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
|
/*
* 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_clone_settings(StatefulParser *self, StatefulParser *cloned)
{
log_parser_clone_settings(&self->super, &cloned->super);
cloned->inject_mode = self->inject_mode;
}
void
stateful_parser_emit_synthetic(StatefulParser *self, LogMessage *msg)
{
if (self->inject_mode != LDBP_IM_INTERNAL)
{
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_emit_synthetic_list(StatefulParser *self, LogMessage **values, gsize len)
{
for (gint i = 0; i < len; i++)
{
LogMessage *msg = values[i];
stateful_parser_emit_synthetic(self, msg);
log_msg_unref(msg);
}
}
void
_queue(LogPipe *s, LogMessage *msg, const LogPathOptions *path_options)
{
StatefulParser *self = (StatefulParser *) s;
LogPathOptions local_path_options;
gboolean matched = TRUE;
log_path_options_chain(&local_path_options, path_options);
/* if we consume messages into our state, then let's consider these
* messages matched, even though we are dropping them */
local_path_options.matched = &matched;
log_parser_queue_method(s, msg, &local_path_options);
/* propagate our "matched" state */
if (path_options->matched && !matched && self->inject_mode != LDBP_IM_AGGREGATE_ONLY)
*path_options->matched = FALSE;
}
void
stateful_parser_init_instance(StatefulParser *self, GlobalConfig *cfg)
{
log_parser_init_instance(&self->super, cfg);
self->super.super.queue = _queue;
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;
else if (strcasecmp(inject_mode, "aggregate-only") == 0 || strcasecmp(inject_mode, "aggregate_only") == 0)
return LDBP_IM_AGGREGATE_ONLY;
return -1;
}
/* This function is called to populate the emitted_messages array. It only
* manipulates per-thread data structure so it does not require locks but
* does not mind them being locked either. */
void
stateful_parser_emitted_messages_add(StatefulParserEmittedMessages *self, LogMessage *msg)
{
if (self->num_emitted_messages < EXPECTED_NUMBER_OF_MESSAGES_EMITTED)
{
self->emitted_messages[self->num_emitted_messages++] = log_msg_ref(msg);
return;
}
if (!self->emitted_messages_overflow)
self->emitted_messages_overflow = g_ptr_array_new();
g_ptr_array_add(self->emitted_messages_overflow, log_msg_ref(msg));
}
/* This function is called to flush the accumulated list of messages that
* are generated during processing. We must not hold any locks within
* GroupingBy when doing this, as it will cause log_pipe_queue() calls to
* subsequent elements in the message pipeline, which in turn may recurse
* into PatternDB. This works as msg_emitter itself is per-thread
* (actually an auto variable on the stack), and this is called without
* locks held at the end of a process() invocation. */
void
stateful_parser_emitted_messages_flush(StatefulParserEmittedMessages *self, StatefulParser *parser)
{
stateful_parser_emit_synthetic_list(parser,
self->emitted_messages, self->num_emitted_messages);
self->num_emitted_messages = 0;
if (!self->emitted_messages_overflow)
return;
stateful_parser_emit_synthetic_list(parser, (LogMessage **) self->emitted_messages_overflow->pdata,
self->emitted_messages_overflow->len);
g_ptr_array_free(self->emitted_messages_overflow, TRUE);
self->emitted_messages_overflow = NULL;
}
|