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
|
/*
* Copyright (c) 2023 OneIdentity LLC.
* Copyright (c) 2015 BalaBit
*
* 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 "groupingby.h"
#include "id-counter.h"
typedef struct _GroupingBy
{
GroupingParser super;
SyntheticMessage *synthetic_message;
FilterExprNode *trigger_condition_expr;
FilterExprNode *where_condition_expr;
FilterExprNode *having_condition_expr;
gchar *prefix;
guint clone_id;
IdCounter *id_counter;
} GroupingBy;
/* public functions */
void
grouping_by_set_trigger_condition(LogParser *s, FilterExprNode *filter_expr)
{
GroupingBy *self = (GroupingBy *) s;
self->trigger_condition_expr = filter_expr;
}
void
grouping_by_set_where_condition(LogParser *s, FilterExprNode *filter_expr)
{
GroupingBy *self = (GroupingBy *) s;
self->where_condition_expr = filter_expr;
}
void
grouping_by_set_having_condition(LogParser *s, FilterExprNode *filter_expr)
{
GroupingBy *self = (GroupingBy *) s;
self->having_condition_expr = filter_expr;
}
void
grouping_by_set_synthetic_message(LogParser *s, SyntheticMessage *message)
{
GroupingBy *self = (GroupingBy *) s;
if (self->synthetic_message)
synthetic_message_free(self->synthetic_message);
self->synthetic_message = message;
}
void
grouping_by_set_prefix(LogParser *s, const gchar *prefix)
{
GroupingBy *self = (GroupingBy *) s;
g_free(self->prefix);
self->prefix = g_strdup(prefix);
}
static gboolean
_evaluate_filter(FilterExprNode *expr, CorrelationContext *context)
{
return filter_expr_eval_with_context(expr,
(LogMessage **) context->messages->pdata,
context->messages->len, &DEFAULT_TEMPLATE_EVAL_OPTIONS);
}
static gboolean
_evaluate_having(GroupingBy *self, CorrelationContext *context)
{
if (!self->having_condition_expr)
return TRUE;
return _evaluate_filter(self->having_condition_expr, context);
}
static GroupingParserUpdateContextResult
_update_context(GroupingParser *s, CorrelationContext *context, LogMessage *msg)
{
GroupingBy *self = (GroupingBy *) s;
g_ptr_array_add(context->messages, log_msg_ref(msg));
if (self->trigger_condition_expr &&
_evaluate_filter(self->trigger_condition_expr, context))
return GP_CONTEXT_COMPLETE;
return GP_CONTEXT_UPDATED;
}
static LogMessage *
_aggregate_context(GroupingParser *s, CorrelationContext *context)
{
GroupingBy *self = (GroupingBy *) s;
LogMessage *msg = NULL;
if (!_evaluate_having(self, context))
{
msg_debug("groupingby() dropping context, because having() is FALSE",
evt_tag_str("key", context->key.session_id),
log_pipe_location_tag(&self->super.super.super.super));
return NULL;
}
msg = synthetic_message_generate_with_context(self->synthetic_message, context);
return msg;
}
static gboolean
_evaluate_where(GroupingParser *s, LogMessage **pmsg, const LogPathOptions *path_options)
{
GroupingBy *self = (GroupingBy *) s;
if (!self->where_condition_expr)
return TRUE;
return filter_expr_eval_root(self->where_condition_expr, pmsg, path_options);
}
static const gchar *
_format_persist_name(const LogPipe *s)
{
static gchar persist_name[512];
GroupingBy *self = (GroupingBy *)s;
if (s->persist_name)
g_snprintf(persist_name, sizeof(persist_name), "grouping-by.%s(clone=%d)", s->persist_name, self->clone_id);
else
g_snprintf(persist_name, sizeof(persist_name), "grouping-by(%s,scope=%d,clone=%d)",
self->super.key_template->template_str,
self->super.scope, self->clone_id);
return persist_name;
}
static gboolean
_init(LogPipe *s)
{
GroupingBy *self = (GroupingBy *) s;
GlobalConfig *cfg = log_pipe_get_config(s);
self->id_counter = NULL;
if (self->super.timeout < 1)
{
msg_error("timeout() needs to be specified explicitly and must be greater than 0 in the grouping-by() parser",
log_pipe_location_tag(s));
return FALSE;
}
if (!self->super.key_template)
{
msg_error("The key() option is mandatory for the grouping-by() parser",
log_pipe_location_tag(s));
return FALSE;
}
if (!self->synthetic_message)
{
msg_error("The aggregate() option for grouping-by() is mandatory",
log_pipe_location_tag(s));
return FALSE;
}
synthetic_message_set_prefix(self->synthetic_message, self->prefix);
if (self->trigger_condition_expr && !filter_expr_init(self->trigger_condition_expr, cfg))
return FALSE;
if (self->where_condition_expr && !filter_expr_init(self->where_condition_expr, cfg))
return FALSE;
if (self->having_condition_expr && !filter_expr_init(self->having_condition_expr, cfg))
return FALSE;
return grouping_parser_init_method(s);
}
static LogPipe *
_clone(LogPipe *s)
{
GroupingBy *self = (GroupingBy *) s;
GroupingBy *cloned;
cloned = (GroupingBy *) grouping_by_new(s->cfg);
grouping_parser_clone_settings(&self->super, &cloned->super);
grouping_by_set_synthetic_message(&cloned->super.super.super, self->synthetic_message);
grouping_by_set_trigger_condition(&cloned->super.super.super, filter_expr_clone(self->trigger_condition_expr));
grouping_by_set_where_condition(&cloned->super.super.super, filter_expr_clone(self->where_condition_expr));
grouping_by_set_having_condition(&cloned->super.super.super, filter_expr_clone(self->having_condition_expr));
grouping_by_set_prefix(&cloned->super.super.super, self->prefix);
id_counter_unref(cloned->id_counter);
cloned->id_counter = id_counter_ref(self->id_counter);
cloned->clone_id = id_counter_get_next_id(cloned->id_counter);
return &cloned->super.super.super.super;
}
static void
_free(LogPipe *s)
{
GroupingBy *self = (GroupingBy *) s;
id_counter_unref(self->id_counter);
g_free(self->prefix);
if (self->synthetic_message)
synthetic_message_free(self->synthetic_message);
filter_expr_unref(self->trigger_condition_expr);
filter_expr_unref(self->where_condition_expr);
filter_expr_unref(self->having_condition_expr);
grouping_parser_free_method(s);
}
LogParser *
grouping_by_new(GlobalConfig *cfg)
{
GroupingBy *self = g_new0(GroupingBy, 1);
self->id_counter = id_counter_new();
self->clone_id = id_counter_get_next_id(self->id_counter);
grouping_parser_init_instance(&self->super, cfg);
self->super.super.super.super.free_fn = _free;
self->super.super.super.super.init = _init;
self->super.super.super.super.clone = _clone;
self->super.super.super.super.generate_persist_name = _format_persist_name;
self->super.filter_messages = _evaluate_where;
self->super.update_context = _update_context;
self->super.aggregate_context = _aggregate_context;
return &self->super.super.super;
}
|