1 |
|
---|
2 | #include "config_xor.h"
|
---|
3 |
|
---|
4 | #include <stdio.h>
|
---|
5 | #include <stdarg.h>
|
---|
6 | #include <string.h>
|
---|
7 | #include <time.h>
|
---|
8 | #include <limits.h>
|
---|
9 | #include <sys/types.h>
|
---|
10 |
|
---|
11 | #ifdef USE_LOGFILE_MONITOR
|
---|
12 |
|
---|
13 | #undef FIL__
|
---|
14 | #define FIL__ _("sh_log_evalrule.c")
|
---|
15 |
|
---|
16 | /* Debian/Ubuntu: libpcre3-dev */
|
---|
17 | #ifdef HAVE_PCRE_PCRE_H
|
---|
18 | #include <pcre/pcre.h>
|
---|
19 | #else
|
---|
20 | #include <pcre.h>
|
---|
21 | #endif
|
---|
22 |
|
---|
23 | #ifndef PCRE_NO_AUTO_CAPTURE
|
---|
24 | #define PCRE_NO_AUTO_CAPTURE 0
|
---|
25 | #endif
|
---|
26 |
|
---|
27 | #include "samhain.h"
|
---|
28 | #include "sh_pthread.h"
|
---|
29 | #include "sh_utils.h"
|
---|
30 | #include "sh_string.h"
|
---|
31 | #include "sh_log_check.h"
|
---|
32 | #include "sh_log_evalrule.h"
|
---|
33 | #include "zAVLTree.h"
|
---|
34 |
|
---|
35 | extern int flag_err_debug;
|
---|
36 |
|
---|
37 | /* #define DEBUG_EVALRULES */
|
---|
38 |
|
---|
39 | #ifdef DEBUG_EVALRULES
|
---|
40 | void DEBUG(const char *fmt, ...)
|
---|
41 | {
|
---|
42 | va_list ap;
|
---|
43 | va_start(ap, fmt);
|
---|
44 | vfprintf(stderr, fmt, ap); /* flawfinder: ignore *//* we control fmt string */
|
---|
45 | va_end(ap);
|
---|
46 | return;
|
---|
47 | }
|
---|
48 | #else
|
---|
49 | void DEBUG(const char *fmt, ...)
|
---|
50 | {
|
---|
51 | (void) fmt;
|
---|
52 | return;
|
---|
53 | }
|
---|
54 | #endif
|
---|
55 |
|
---|
56 | enum policies {
|
---|
57 | EVAL_REPORT,
|
---|
58 | EVAL_SUM
|
---|
59 | };
|
---|
60 |
|
---|
61 | struct sh_ceval /* Counter for summarizing */
|
---|
62 | {
|
---|
63 | sh_string * hostname;
|
---|
64 | sh_string * counted_str;
|
---|
65 | sh_string * filename;
|
---|
66 | unsigned long count;
|
---|
67 | time_t start;
|
---|
68 | time_t interval;
|
---|
69 | };
|
---|
70 |
|
---|
71 | void sh_ceval_free(void * item)
|
---|
72 | {
|
---|
73 | struct sh_ceval * counter = (struct sh_ceval *) item;
|
---|
74 | if (!counter)
|
---|
75 | return;
|
---|
76 | sh_string_destroy(&(counter->hostname));
|
---|
77 | sh_string_destroy(&(counter->counted_str));
|
---|
78 | sh_string_destroy(&(counter->filename));
|
---|
79 | SH_FREE(counter);
|
---|
80 | }
|
---|
81 |
|
---|
82 | struct sh_qeval /* Queue with definitions */
|
---|
83 | {
|
---|
84 | sh_string * label;
|
---|
85 | enum policies policy;
|
---|
86 | int severity;
|
---|
87 | time_t interval; /* if EVAL_SUM, interval */
|
---|
88 | struct sh_qeval * next;
|
---|
89 | };
|
---|
90 |
|
---|
91 | enum {
|
---|
92 | RFL_ISRULE = 1 << 0,
|
---|
93 | RFL_ISGROUP = 1 << 1,
|
---|
94 | RFL_KEEP = 1 << 2
|
---|
95 | };
|
---|
96 |
|
---|
97 | /*--------------------------------------------------------------*/
|
---|
98 |
|
---|
99 | struct sh_keep
|
---|
100 | {
|
---|
101 | sh_string * label; /* label of keep rule */
|
---|
102 | unsigned long delay; /* valid delay */
|
---|
103 | time_t last; /* seen at */
|
---|
104 | struct sh_keep * next;
|
---|
105 | };
|
---|
106 |
|
---|
107 | static struct sh_keep * keeplist = NULL;
|
---|
108 | static struct sh_keep * keeplast = NULL;
|
---|
109 | static unsigned long keepcount = 0;
|
---|
110 |
|
---|
111 | static void sh_keep_free(void * item)
|
---|
112 | {
|
---|
113 | struct sh_keep * keep = (struct sh_keep *) item;
|
---|
114 | if (!keep)
|
---|
115 | return;
|
---|
116 | sh_string_destroy(&(keep->label));
|
---|
117 | SH_FREE(keep);
|
---|
118 | }
|
---|
119 |
|
---|
120 | static void sh_keep_destroy()
|
---|
121 | {
|
---|
122 | struct sh_keep * keep;
|
---|
123 |
|
---|
124 | while (keeplist)
|
---|
125 | {
|
---|
126 | keep = keeplist;
|
---|
127 | keeplist = keep->next;
|
---|
128 | sh_keep_free(keep);
|
---|
129 | --keepcount;
|
---|
130 | }
|
---|
131 | keeplist = NULL;
|
---|
132 | keeplast = NULL;
|
---|
133 | keepcount = 0;
|
---|
134 | }
|
---|
135 |
|
---|
136 | static int sh_keep_add(sh_string * label, unsigned long delay, time_t last)
|
---|
137 | {
|
---|
138 | struct sh_keep * keep = SH_ALLOC(sizeof(struct sh_keep));
|
---|
139 |
|
---|
140 | keep->label = sh_string_copy(label);
|
---|
141 | keep->delay = delay;
|
---|
142 | keep->last = last;
|
---|
143 | keep->next = NULL;
|
---|
144 |
|
---|
145 | if (keeplast && keeplist)
|
---|
146 | {
|
---|
147 | keeplast->next = keep;
|
---|
148 | keeplast = keep;
|
---|
149 | }
|
---|
150 | else
|
---|
151 | {
|
---|
152 | keeplist = keep;
|
---|
153 | keeplast = keeplist;
|
---|
154 | }
|
---|
155 | ++keepcount;
|
---|
156 | return 0;
|
---|
157 | }
|
---|
158 |
|
---|
159 | int sh_keep_comp(const void * a, const void * b)
|
---|
160 | {
|
---|
161 | return ( (int)(((struct sh_keep *)a)->last) -
|
---|
162 | (int)(((struct sh_keep *)b)->last) );
|
---|
163 | }
|
---|
164 |
|
---|
165 | static sh_string * sh_keep_eval()
|
---|
166 | {
|
---|
167 | unsigned long count = 0;
|
---|
168 | sh_string * res = NULL;
|
---|
169 | time_t now = time(NULL);
|
---|
170 | struct sh_keep * keep = keeplist;
|
---|
171 | struct sh_keep * prev = keeplist;
|
---|
172 | struct sh_keep * arr;
|
---|
173 |
|
---|
174 | if (keepcount > 0)
|
---|
175 | {
|
---|
176 | arr = SH_ALLOC (keepcount * sizeof(struct sh_keep));
|
---|
177 |
|
---|
178 | while (count < keepcount && keep)
|
---|
179 | {
|
---|
180 | if ((now > keep->last) && ((unsigned long)(now - keep->last) <= keep->delay))
|
---|
181 | {
|
---|
182 | memcpy(&(arr[count]), keep, sizeof(struct sh_keep));
|
---|
183 | ++count;
|
---|
184 | prev = keep;
|
---|
185 | keep = keep->next;
|
---|
186 | }
|
---|
187 | else /* Too old or in future, delete it */
|
---|
188 | {
|
---|
189 | if (keep != keeplist)
|
---|
190 | {
|
---|
191 | prev->next = keep->next;
|
---|
192 | sh_keep_free(keep);
|
---|
193 | keep = prev->next;
|
---|
194 | --keepcount;
|
---|
195 | }
|
---|
196 | else /* list head */
|
---|
197 | {
|
---|
198 | keeplist = keep->next;
|
---|
199 | prev = keeplist;
|
---|
200 | sh_keep_free(keep);
|
---|
201 | keep = keeplist;
|
---|
202 | --keepcount;
|
---|
203 | }
|
---|
204 | }
|
---|
205 | }
|
---|
206 |
|
---|
207 | if (count > 0)
|
---|
208 | {
|
---|
209 | unsigned long i;
|
---|
210 | qsort(arr, count, sizeof(struct sh_keep), sh_keep_comp);
|
---|
211 | res = sh_string_copy(arr[0].label);
|
---|
212 | for (i = 1; i < count; ++i)
|
---|
213 | res = sh_string_add(res, arr[i].label);
|
---|
214 | }
|
---|
215 | SH_FREE(arr);
|
---|
216 | }
|
---|
217 | return res;
|
---|
218 | }
|
---|
219 |
|
---|
220 | struct sh_mkeep
|
---|
221 | {
|
---|
222 | sh_string * label; /* label of match rule */
|
---|
223 | pcre * rule; /* compiled regex for rule */
|
---|
224 | struct sh_qeval * queue; /* assigned queue */
|
---|
225 | struct sh_mkeep * next;
|
---|
226 | };
|
---|
227 |
|
---|
228 | struct sh_mkeep * mkeep_list = NULL;
|
---|
229 |
|
---|
230 | static struct sh_qeval * find_queue(const char * str);
|
---|
231 |
|
---|
232 | static int sh_keep_match_add(const char * str, const char * queue, const char * pattern)
|
---|
233 | {
|
---|
234 | unsigned int nfields = 1; /* seconds:label */
|
---|
235 | size_t lengths[1];
|
---|
236 | char * new = sh_util_strdup(str);
|
---|
237 | char ** splits = split_array_braced(new, _("CORRELATE"), &nfields, lengths);
|
---|
238 |
|
---|
239 | if (nfields == 1 && lengths[0] > 0)
|
---|
240 | {
|
---|
241 | struct sh_mkeep * mkeep = SH_ALLOC(sizeof(struct sh_mkeep));
|
---|
242 | const char * error;
|
---|
243 | int erroffset;
|
---|
244 | struct sh_qeval * rqueue = NULL;
|
---|
245 |
|
---|
246 | mkeep->rule = pcre_compile(pattern, PCRE_NO_AUTO_CAPTURE,
|
---|
247 | &error, &erroffset, NULL);
|
---|
248 | if (!(mkeep->rule))
|
---|
249 | {
|
---|
250 | sh_string * msg = sh_string_new(0);
|
---|
251 | sh_string_add_from_char(msg, _("Bad regex: "));
|
---|
252 | sh_string_add_from_char(msg, pattern);
|
---|
253 |
|
---|
254 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
255 | sh_error_handle(SH_ERR_ERR, FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
256 | sh_string_str(msg),
|
---|
257 | _("sh_keep_match_add"));
|
---|
258 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
259 | sh_string_destroy(&msg);
|
---|
260 |
|
---|
261 | SH_FREE(splits);
|
---|
262 | SH_FREE(mkeep);
|
---|
263 | SH_FREE(new);
|
---|
264 | return -1;
|
---|
265 | }
|
---|
266 |
|
---|
267 | if (0 != strcmp(queue, _("trash")))
|
---|
268 | {
|
---|
269 |
|
---|
270 | rqueue = find_queue(queue);
|
---|
271 | if (!rqueue)
|
---|
272 | {
|
---|
273 | pcre_free(mkeep->rule);
|
---|
274 | SH_FREE(splits);
|
---|
275 | SH_FREE(mkeep);
|
---|
276 | SH_FREE(new);
|
---|
277 | return -1;
|
---|
278 | }
|
---|
279 | }
|
---|
280 |
|
---|
281 | mkeep->queue = rqueue;
|
---|
282 | mkeep->label = sh_string_new_from_lchar(splits[0], strlen(splits[0]));
|
---|
283 | mkeep->next = mkeep_list;
|
---|
284 | mkeep_list = mkeep;
|
---|
285 | }
|
---|
286 | SH_FREE(new);
|
---|
287 | return 0;
|
---|
288 | }
|
---|
289 |
|
---|
290 | static void sh_keep_match_del()
|
---|
291 | {
|
---|
292 | struct sh_mkeep * mkeep = mkeep_list;
|
---|
293 | while (mkeep)
|
---|
294 | {
|
---|
295 | mkeep_list = mkeep->next;
|
---|
296 | sh_string_destroy(&(mkeep->label));
|
---|
297 | pcre_free(mkeep->rule);
|
---|
298 | mkeep = mkeep_list;
|
---|
299 | }
|
---|
300 | mkeep_list = NULL;
|
---|
301 | }
|
---|
302 |
|
---|
303 | static struct sh_mkeep ** dummy_mkeep;
|
---|
304 |
|
---|
305 | void sh_keep_match()
|
---|
306 | {
|
---|
307 | if (mkeep_list)
|
---|
308 | {
|
---|
309 | sh_string * res = sh_keep_eval();
|
---|
310 |
|
---|
311 | if (res)
|
---|
312 | {
|
---|
313 | struct sh_mkeep * mkeep = mkeep_list;
|
---|
314 |
|
---|
315 | dummy_mkeep = &mkeep;
|
---|
316 |
|
---|
317 | while (mkeep)
|
---|
318 | {
|
---|
319 | int val = pcre_exec(mkeep->rule, NULL,
|
---|
320 | sh_string_str(res), (int)sh_string_len(res),
|
---|
321 | 0, 0, NULL, 0);
|
---|
322 | if (val >= 0)
|
---|
323 | {
|
---|
324 | char * tmp;
|
---|
325 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
326 | tmp = sh_util_safe_name (sh_string_str(mkeep->label));
|
---|
327 | sh_error_handle (mkeep->queue->severity, FIL__, __LINE__, 0,
|
---|
328 | MSG_LOGMON_COR, tmp);
|
---|
329 | SH_FREE(tmp);
|
---|
330 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
331 | }
|
---|
332 | mkeep = mkeep->next;
|
---|
333 | }
|
---|
334 | sh_string_destroy(&res);
|
---|
335 | }
|
---|
336 | }
|
---|
337 | return;
|
---|
338 | }
|
---|
339 |
|
---|
340 | /*--------------------------------------------------------------*/
|
---|
341 |
|
---|
342 | struct sh_geval /* Group of rules (may be a single rule) */
|
---|
343 | {
|
---|
344 | sh_string * label; /* label for this group */
|
---|
345 | pcre * rule; /* compiled regex for rule */
|
---|
346 | pcre_extra * rule_extra;
|
---|
347 | int * ovector; /* captured substrings */
|
---|
348 | int ovecnum; /* how many captured */
|
---|
349 | int captures; /* (captures+1)*3 required */
|
---|
350 | int flags; /* bit flags */
|
---|
351 | unsigned long delay; /* delay for keep rules */
|
---|
352 | zAVLTree * counterlist; /* counters if EVAL_SUM */
|
---|
353 | struct sh_qeval * queue; /* queue for this rule */
|
---|
354 | struct sh_geval * nextrule; /* next rule in this group */
|
---|
355 | struct sh_geval * next; /* next group of rules */
|
---|
356 | struct sh_geval * gnext; /* grouplist next */
|
---|
357 | };
|
---|
358 |
|
---|
359 | struct sh_heval /* host-specific rules */
|
---|
360 | {
|
---|
361 | pcre * hostname; /* compiled regex for hostname */
|
---|
362 | pcre_extra * hostname_extra;
|
---|
363 | struct sh_geval * rulegroups; /* list of group of rules */
|
---|
364 | struct sh_heval * next;
|
---|
365 | };
|
---|
366 |
|
---|
367 | static struct sh_heval * hostlist = NULL;
|
---|
368 | static struct sh_qeval * queuelist = NULL;
|
---|
369 | static struct sh_geval * grouplist = NULL;
|
---|
370 |
|
---|
371 | /* These flags are set if we are within
|
---|
372 | * the define of a host/rule group.
|
---|
373 | */
|
---|
374 | static struct sh_heval * host_open = NULL;
|
---|
375 | static struct sh_geval * group_open = NULL;
|
---|
376 |
|
---|
377 | int sh_eval_gend (const char * str)
|
---|
378 | {
|
---|
379 | (void) str;
|
---|
380 | if (group_open) {
|
---|
381 | group_open = NULL;
|
---|
382 | return 0;
|
---|
383 | }
|
---|
384 | return -1;
|
---|
385 | }
|
---|
386 |
|
---|
387 | int sh_eval_gadd (const char * str)
|
---|
388 | {
|
---|
389 | struct sh_geval * ng;
|
---|
390 | struct sh_geval * tmp;
|
---|
391 | pcre * group;
|
---|
392 | pcre_extra * group_extra;
|
---|
393 | const char * error;
|
---|
394 | int erroffset;
|
---|
395 | unsigned int nfields = 2;
|
---|
396 | size_t lengths[2];
|
---|
397 | char * new = sh_util_strdup(str);
|
---|
398 | char ** splits = split_array(new, &nfields, ':', lengths);
|
---|
399 |
|
---|
400 | if (group_open)
|
---|
401 | group_open = NULL;
|
---|
402 |
|
---|
403 | if (nfields != 2)
|
---|
404 | {
|
---|
405 | SH_FREE(splits);
|
---|
406 | SH_FREE(new);
|
---|
407 | return -1;
|
---|
408 | }
|
---|
409 |
|
---|
410 | group = pcre_compile(splits[1], PCRE_NO_AUTO_CAPTURE,
|
---|
411 | &error, &erroffset, NULL);
|
---|
412 | if (!group)
|
---|
413 | {
|
---|
414 | sh_string * msg = sh_string_new(0);
|
---|
415 | sh_string_add_from_char(msg, _("Bad regex: "));
|
---|
416 | sh_string_add_from_char(msg, splits[1]);
|
---|
417 |
|
---|
418 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
419 | sh_error_handle(SH_ERR_ERR, FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
420 | sh_string_str(msg),
|
---|
421 | _("sh_eval_gadd"));
|
---|
422 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
423 | sh_string_destroy(&msg);
|
---|
424 |
|
---|
425 | SH_FREE(splits);
|
---|
426 | SH_FREE(new);
|
---|
427 | return -1;
|
---|
428 | }
|
---|
429 | group_extra = NULL; /* pcre_study(group, 0, &error); */
|
---|
430 |
|
---|
431 | ng = SH_ALLOC(sizeof(struct sh_geval));
|
---|
432 | ng->label = sh_string_new_from_lchar(splits[0], lengths[0]);
|
---|
433 | ng->flags = RFL_ISGROUP;
|
---|
434 |
|
---|
435 | ng->rule = group;
|
---|
436 | ng->rule_extra = group_extra;
|
---|
437 | ng->ovector = NULL;
|
---|
438 | ng->ovecnum = 0;
|
---|
439 | ng->captures = 0;
|
---|
440 | ng->counterlist = NULL;
|
---|
441 | ng->queue = NULL;
|
---|
442 | ng->nextrule = NULL;
|
---|
443 | ng->next = NULL;
|
---|
444 | ng->gnext = NULL;
|
---|
445 |
|
---|
446 | if (!host_open)
|
---|
447 | {
|
---|
448 | if (0 != sh_eval_hadd("^.*"))
|
---|
449 | {
|
---|
450 | pcre_free(group);
|
---|
451 | sh_string_destroy(&(ng->label));
|
---|
452 | SH_FREE(splits);
|
---|
453 | SH_FREE(new);
|
---|
454 | SH_FREE(ng);
|
---|
455 | return -1;
|
---|
456 | }
|
---|
457 | }
|
---|
458 |
|
---|
459 | /*
|
---|
460 | * Insert at end, to keep user-defined order
|
---|
461 | */
|
---|
462 |
|
---|
463 | if (host_open)
|
---|
464 | {
|
---|
465 | if (grouplist)
|
---|
466 | {
|
---|
467 | tmp = grouplist;
|
---|
468 | while (tmp->gnext != NULL) { tmp = tmp->gnext; }
|
---|
469 | tmp->gnext = ng;
|
---|
470 | } else {
|
---|
471 | grouplist = ng;
|
---|
472 | }
|
---|
473 |
|
---|
474 |
|
---|
475 | /*
|
---|
476 | * If there is an open host group, add it to its
|
---|
477 | * rulegroups
|
---|
478 | */
|
---|
479 |
|
---|
480 | if (host_open->rulegroups)
|
---|
481 | {
|
---|
482 | tmp = host_open->rulegroups;
|
---|
483 | while (tmp->next != NULL) { tmp = tmp->next; }
|
---|
484 | tmp->next = ng;
|
---|
485 | } else {
|
---|
486 | host_open->rulegroups = ng;
|
---|
487 | }
|
---|
488 | }
|
---|
489 |
|
---|
490 | group_open = ng;
|
---|
491 | SH_FREE(splits);
|
---|
492 | SH_FREE(new);
|
---|
493 | return 0;
|
---|
494 | }
|
---|
495 |
|
---|
496 | int sh_eval_hend (const char * str)
|
---|
497 | {
|
---|
498 | (void) str;
|
---|
499 | if (host_open) {
|
---|
500 | host_open = NULL;
|
---|
501 | return 0;
|
---|
502 | }
|
---|
503 | return -1;
|
---|
504 | }
|
---|
505 |
|
---|
506 | int sh_eval_hadd (const char * str)
|
---|
507 | {
|
---|
508 | struct sh_heval * nh;
|
---|
509 | struct sh_heval * tmp;
|
---|
510 | pcre * host;
|
---|
511 | pcre_extra * host_extra;
|
---|
512 | const char * error;
|
---|
513 | int erroffset;
|
---|
514 |
|
---|
515 | if (host_open)
|
---|
516 | host_open = NULL;
|
---|
517 |
|
---|
518 | host = pcre_compile(str, PCRE_NO_AUTO_CAPTURE,
|
---|
519 | &error, &erroffset, NULL);
|
---|
520 | if (!host)
|
---|
521 | {
|
---|
522 | sh_string * msg = sh_string_new(0);
|
---|
523 | sh_string_add_from_char(msg, _("Bad regex: "));
|
---|
524 | sh_string_add_from_char(msg, str);
|
---|
525 |
|
---|
526 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
527 | sh_error_handle(SH_ERR_ERR, FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
528 | sh_string_str(msg),
|
---|
529 | _("sh_eval_hadd"));
|
---|
530 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
531 | sh_string_destroy(&msg);
|
---|
532 |
|
---|
533 | return -1;
|
---|
534 | }
|
---|
535 | host_extra = NULL; /* pcre_study(host, 0, &error); */
|
---|
536 |
|
---|
537 | nh = SH_ALLOC(sizeof(struct sh_heval));
|
---|
538 | nh->hostname = host;
|
---|
539 | nh->hostname_extra = host_extra;
|
---|
540 | nh->rulegroups = NULL;
|
---|
541 |
|
---|
542 | /*
|
---|
543 | * Insert at end, to keep user-defined order
|
---|
544 | */
|
---|
545 | nh->next = NULL;
|
---|
546 | if (hostlist) {
|
---|
547 | tmp = hostlist;
|
---|
548 | while (tmp->next != NULL) { tmp = tmp->next; }
|
---|
549 | tmp->next = nh;
|
---|
550 | } else {
|
---|
551 | hostlist = nh;
|
---|
552 | }
|
---|
553 | host_open = nh;
|
---|
554 |
|
---|
555 | return 0;
|
---|
556 | }
|
---|
557 |
|
---|
558 | int sh_eval_qadd (const char * str)
|
---|
559 | {
|
---|
560 | struct sh_qeval * nq;
|
---|
561 | int severity;
|
---|
562 | unsigned int nfields = 4; /* label:interval:(report|sum):severity */
|
---|
563 | size_t lengths[4];
|
---|
564 | char * new = sh_util_strdup(str);
|
---|
565 | char ** splits = split_array(new, &nfields, ':', lengths);
|
---|
566 |
|
---|
567 | if (nfields != 4)
|
---|
568 | {
|
---|
569 | SH_FREE(splits);
|
---|
570 | SH_FREE(new);
|
---|
571 | return -1;
|
---|
572 | }
|
---|
573 |
|
---|
574 | if (strcmp(splits[2], _("sum")) && strcmp(splits[2], _("report")))
|
---|
575 | {
|
---|
576 | SH_FREE(splits);
|
---|
577 | SH_FREE(new);
|
---|
578 | return -1;
|
---|
579 | }
|
---|
580 |
|
---|
581 | if (!strcmp(splits[2], _("sum")) && atoi(splits[1]) < 0)
|
---|
582 | {
|
---|
583 | SH_FREE(splits);
|
---|
584 | SH_FREE(new);
|
---|
585 | return -1;
|
---|
586 | }
|
---|
587 |
|
---|
588 | if (!strcmp(splits[1], _("trash"))) /* predefined, reserved */
|
---|
589 | {
|
---|
590 | SH_FREE(splits);
|
---|
591 | SH_FREE(new);
|
---|
592 | return -1;
|
---|
593 | }
|
---|
594 |
|
---|
595 | severity = sh_error_convert_level (splits[3]);
|
---|
596 | if (severity < 0)
|
---|
597 | {
|
---|
598 | SH_FREE(splits);
|
---|
599 | SH_FREE(new);
|
---|
600 | return -1;
|
---|
601 | }
|
---|
602 |
|
---|
603 | nq = SH_ALLOC(sizeof(struct sh_qeval));
|
---|
604 | nq->label = sh_string_new_from_lchar(splits[0], lengths[0]);
|
---|
605 |
|
---|
606 | DEBUG("debug: splits[2] = %s, policy = %d\n",splits[2],nq->policy);
|
---|
607 | if (0 == strcmp(splits[2], _("report"))) {
|
---|
608 | nq->policy = EVAL_REPORT;
|
---|
609 | nq->interval = 0;
|
---|
610 | }
|
---|
611 | else {
|
---|
612 | nq->policy = EVAL_SUM;
|
---|
613 | nq->interval = (time_t) atoi(splits[1]);
|
---|
614 | }
|
---|
615 |
|
---|
616 | nq->severity = severity;
|
---|
617 | nq->next = queuelist;
|
---|
618 | queuelist = nq;
|
---|
619 |
|
---|
620 | SH_FREE(splits);
|
---|
621 | SH_FREE(new);
|
---|
622 | return 0;
|
---|
623 | }
|
---|
624 |
|
---|
625 | static struct sh_qeval * find_queue(const char * str)
|
---|
626 | {
|
---|
627 | struct sh_qeval * retval = queuelist;
|
---|
628 |
|
---|
629 | if (!str)
|
---|
630 | return NULL;
|
---|
631 |
|
---|
632 | while (retval)
|
---|
633 | {
|
---|
634 | if (0 == strcmp(str, sh_string_str(retval->label)))
|
---|
635 | break;
|
---|
636 | retval = retval->next;
|
---|
637 | }
|
---|
638 | return retval;
|
---|
639 | }
|
---|
640 |
|
---|
641 | char * get_keep(char * str, unsigned long * seconds)
|
---|
642 | {
|
---|
643 | char * res = NULL;
|
---|
644 | char * endptr = NULL;
|
---|
645 |
|
---|
646 | unsigned int nfields = 2; /* seconds:label */
|
---|
647 | size_t lengths[2];
|
---|
648 | char * new = sh_util_strdup(str);
|
---|
649 | char ** splits = split_array_braced(new, _("KEEP"), &nfields, lengths);
|
---|
650 |
|
---|
651 | if (nfields == 2 && lengths[0] > 0 && lengths[1] > 0)
|
---|
652 | {
|
---|
653 | *seconds = strtoul(splits[0], &endptr, 10);
|
---|
654 | if ((endptr == '\0' || endptr != splits[0]) && (*seconds != ULONG_MAX))
|
---|
655 | {
|
---|
656 | res = sh_util_strdup(splits[1]);
|
---|
657 | }
|
---|
658 | }
|
---|
659 | if (splits)
|
---|
660 | SH_FREE(splits);
|
---|
661 | SH_FREE(new);
|
---|
662 | return res;
|
---|
663 | }
|
---|
664 |
|
---|
665 | static struct sh_qeval ** dummy_queue;
|
---|
666 | static char ** dummy_dstr;
|
---|
667 |
|
---|
668 | int sh_eval_radd (const char * str)
|
---|
669 | {
|
---|
670 | struct sh_geval * nr;
|
---|
671 | struct sh_geval * tmp;
|
---|
672 | struct sh_qeval * queue = NULL;
|
---|
673 | pcre * rule;
|
---|
674 | pcre_extra * rule_extra;
|
---|
675 | const char * error;
|
---|
676 | int erroffset;
|
---|
677 | int captures = 0;
|
---|
678 | unsigned int nfields = 2; /* queue:regex */
|
---|
679 | size_t lengths[2];
|
---|
680 | char * new = sh_util_strdup(str);
|
---|
681 | char ** splits = split_array(new, &nfields, ':', lengths);
|
---|
682 |
|
---|
683 | int qpos = 0;
|
---|
684 | int rpos = 1;
|
---|
685 | unsigned long dsec = 0;
|
---|
686 | char * dstr = NULL;
|
---|
687 |
|
---|
688 | dummy_queue = &queue;
|
---|
689 | dummy_dstr = &dstr;
|
---|
690 |
|
---|
691 | if (nfields < 2 || nfields > 3)
|
---|
692 | {
|
---|
693 | SH_FREE(splits);
|
---|
694 | SH_FREE(new);
|
---|
695 | return -1;
|
---|
696 | }
|
---|
697 |
|
---|
698 | if (nfields == 3)
|
---|
699 | {
|
---|
700 | /* KEEP(nsec):queue:regex
|
---|
701 | */
|
---|
702 | dstr = get_keep(splits[0], &dsec);
|
---|
703 | if (!dstr)
|
---|
704 | {
|
---|
705 | /* CORRELATE:queue:regex
|
---|
706 | */
|
---|
707 | int retval = sh_keep_match_add(splits[0], splits[1], splits[2]);
|
---|
708 | SH_FREE(splits);
|
---|
709 | SH_FREE(new);
|
---|
710 | return retval;
|
---|
711 | }
|
---|
712 | ++qpos; ++rpos;
|
---|
713 | }
|
---|
714 |
|
---|
715 | if (0 != strcmp(splits[qpos], _("trash")))
|
---|
716 | {
|
---|
717 | queue = find_queue(splits[qpos]);
|
---|
718 | if (!queue)
|
---|
719 | {
|
---|
720 | SH_FREE(splits);
|
---|
721 | SH_FREE(new);
|
---|
722 | return -1;
|
---|
723 | }
|
---|
724 | }
|
---|
725 |
|
---|
726 | rule = pcre_compile(splits[rpos], 0,
|
---|
727 | &error, &erroffset, NULL);
|
---|
728 | if (!rule)
|
---|
729 | {
|
---|
730 | sh_string * msg = sh_string_new(0);
|
---|
731 | sh_string_add_from_char(msg, _("Bad regex: "));
|
---|
732 | sh_string_add_from_char(msg, splits[rpos]);
|
---|
733 |
|
---|
734 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
735 | sh_error_handle(SH_ERR_ERR, FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
736 | sh_string_str(msg),
|
---|
737 | _("sh_eval_radd"));
|
---|
738 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
739 | sh_string_destroy(&msg);
|
---|
740 |
|
---|
741 | SH_FREE(splits);
|
---|
742 | SH_FREE(new);
|
---|
743 | return -1;
|
---|
744 | }
|
---|
745 | rule_extra = NULL; /* pcre_study(rule, 0, &error); */
|
---|
746 | pcre_fullinfo(rule, rule_extra, PCRE_INFO_CAPTURECOUNT, &captures);
|
---|
747 |
|
---|
748 | if (flag_err_debug == SL_TRUE)
|
---|
749 | {
|
---|
750 | char * emsg = SH_ALLOC(SH_ERRBUF_SIZE);
|
---|
751 | if (dstr)
|
---|
752 | sl_snprintf(emsg, SH_ERRBUF_SIZE, _("Adding rule: |%s| with %d captures, keep(%lu,%s)"),
|
---|
753 | splits[rpos], captures, dsec, dstr);
|
---|
754 | else
|
---|
755 | sl_snprintf(emsg, SH_ERRBUF_SIZE, _("Adding rule: |%s| with %d captures"),
|
---|
756 | splits[rpos], captures);
|
---|
757 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
758 | sh_error_handle(SH_ERR_ALL, FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
759 | emsg, _("sh_eval_radd"));
|
---|
760 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
761 | SH_FREE(emsg);
|
---|
762 | }
|
---|
763 |
|
---|
764 | DEBUG("adding rule: |%s| with %d captures\n", splits[rpos], captures);
|
---|
765 |
|
---|
766 | SH_FREE(splits);
|
---|
767 | SH_FREE(new);
|
---|
768 |
|
---|
769 | nr = SH_ALLOC(sizeof(struct sh_geval));
|
---|
770 | nr->label = NULL;
|
---|
771 | nr->flags = RFL_ISRULE;
|
---|
772 | nr->delay = 0;
|
---|
773 |
|
---|
774 | nr->rule = rule;
|
---|
775 | nr->rule_extra = rule_extra;
|
---|
776 | nr->captures = captures;
|
---|
777 | nr->ovector = SH_ALLOC(sizeof(int) * (captures+1) * 3);
|
---|
778 | nr->ovecnum = 0;
|
---|
779 | nr->counterlist = NULL;
|
---|
780 | nr->queue = queue;
|
---|
781 | nr->nextrule = NULL;
|
---|
782 | nr->next = NULL;
|
---|
783 | nr->gnext = NULL;
|
---|
784 |
|
---|
785 |
|
---|
786 | if (dstr)
|
---|
787 | {
|
---|
788 | nr->label = sh_string_new_from_lchar(dstr, strlen(dstr));
|
---|
789 | nr->flags |= RFL_KEEP;
|
---|
790 | nr->delay = dsec;
|
---|
791 | SH_FREE(dstr);
|
---|
792 | }
|
---|
793 |
|
---|
794 | /*
|
---|
795 | * If there is an open group, add it to its
|
---|
796 | * rules
|
---|
797 | */
|
---|
798 | if (group_open)
|
---|
799 | {
|
---|
800 | if (flag_err_debug == SL_TRUE)
|
---|
801 | {
|
---|
802 | char * emsg = SH_ALLOC(SH_ERRBUF_SIZE);
|
---|
803 | sl_snprintf(emsg, SH_ERRBUF_SIZE, _("Adding rule to group |%s|"),
|
---|
804 | sh_string_str(group_open->label));
|
---|
805 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
806 | sh_error_handle(SH_ERR_ALL, FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
807 | emsg, _("sh_eval_radd"));
|
---|
808 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
809 | SH_FREE(emsg);
|
---|
810 | }
|
---|
811 |
|
---|
812 | DEBUG("adding rule to group |%s|\n", sh_string_str(group_open->label));
|
---|
813 |
|
---|
814 | if (group_open->nextrule)
|
---|
815 | {
|
---|
816 | tmp = group_open->nextrule;
|
---|
817 | while (tmp->nextrule != NULL) { tmp = tmp->nextrule; } /* next -> nextrule */
|
---|
818 | tmp->nextrule = nr; /* next -> nextrule */
|
---|
819 | } else {
|
---|
820 | group_open->nextrule = nr;
|
---|
821 | }
|
---|
822 | }
|
---|
823 |
|
---|
824 | /*
|
---|
825 | * ..else, add it to the currently open host (open the
|
---|
826 | * default host, if there is no open one)
|
---|
827 | */
|
---|
828 | else
|
---|
829 | {
|
---|
830 | if (!host_open)
|
---|
831 | {
|
---|
832 | if (0 != sh_eval_hadd("^.*"))
|
---|
833 | {
|
---|
834 | if (nr->label)
|
---|
835 | sh_string_destroy(&(nr->label));
|
---|
836 | SH_FREE(nr->ovector);
|
---|
837 | SH_FREE(nr);
|
---|
838 | return -1;
|
---|
839 | }
|
---|
840 | }
|
---|
841 |
|
---|
842 | if (host_open)
|
---|
843 | {
|
---|
844 | /*
|
---|
845 | * Add rule as member to grouplist, to facilitate cleanup
|
---|
846 | */
|
---|
847 |
|
---|
848 | DEBUG("adding solitary rule to grouplist\n");
|
---|
849 |
|
---|
850 | if (grouplist)
|
---|
851 | {
|
---|
852 | tmp = grouplist;
|
---|
853 | while (tmp->gnext != NULL) { tmp = tmp->gnext; }
|
---|
854 | tmp->gnext = nr;
|
---|
855 | } else {
|
---|
856 | grouplist = nr;
|
---|
857 | }
|
---|
858 |
|
---|
859 |
|
---|
860 | /*
|
---|
861 | * Add rule to host rulegroups
|
---|
862 | */
|
---|
863 | DEBUG("adding solitary rule to host rulegroups\n");
|
---|
864 |
|
---|
865 | if (host_open->rulegroups)
|
---|
866 | {
|
---|
867 | /* Second, third, ... rule go to host_open->rulegroups->next,
|
---|
868 | * since test_grules() iterates over nextrules
|
---|
869 | */
|
---|
870 | tmp = host_open->rulegroups;
|
---|
871 | while (tmp->next != NULL) { tmp = tmp->next; }
|
---|
872 | tmp->next = nr;
|
---|
873 | }
|
---|
874 | else
|
---|
875 | {
|
---|
876 | /* First rule goes to host_open->rulegroups */
|
---|
877 | host_open->rulegroups = nr;
|
---|
878 | }
|
---|
879 | }
|
---|
880 | else
|
---|
881 | {
|
---|
882 | if (nr->label)
|
---|
883 | sh_string_destroy(&(nr->label));
|
---|
884 | SH_FREE(nr->ovector);
|
---|
885 | SH_FREE(nr);
|
---|
886 | return -1;
|
---|
887 | }
|
---|
888 | }
|
---|
889 |
|
---|
890 | return 0;
|
---|
891 | }
|
---|
892 |
|
---|
893 | void sh_eval_cleanup()
|
---|
894 | {
|
---|
895 | struct sh_geval * gtmp;
|
---|
896 | struct sh_qeval * qtmp;
|
---|
897 | struct sh_heval * htmp;
|
---|
898 |
|
---|
899 | while (grouplist)
|
---|
900 | {
|
---|
901 | gtmp = grouplist;
|
---|
902 | grouplist = gtmp->gnext;
|
---|
903 |
|
---|
904 | if (gtmp->label) sh_string_destroy(&(gtmp->label));
|
---|
905 | if (gtmp->rule_extra) (*pcre_free)(gtmp->rule_extra);
|
---|
906 | if (gtmp->rule) (*pcre_free)(gtmp->rule);
|
---|
907 | if (gtmp->counterlist)
|
---|
908 | zAVLFreeTree(gtmp->counterlist, sh_ceval_free);
|
---|
909 | if (gtmp->ovector)
|
---|
910 | SH_FREE(gtmp->ovector);
|
---|
911 | #if 0
|
---|
912 | while (gtmp->nextrule)
|
---|
913 | {
|
---|
914 | tmp = gtmp->nextrule;
|
---|
915 | gtmp->nextrule = tmp->nextrule;
|
---|
916 |
|
---|
917 | if (tmp->rule_extra) (*pcre_free)(tmp->rule_extra);
|
---|
918 | if (tmp->rule) (*pcre_free)(tmp->rule);
|
---|
919 | if (tmp->counterlist)
|
---|
920 | zAVLFreeTree(tmp->counterlist, sh_ceval_free);
|
---|
921 | if (tmp->ovector)
|
---|
922 | SH_FREE(tmp->ovector);
|
---|
923 | SH_FREE(tmp);
|
---|
924 | }
|
---|
925 | #endif
|
---|
926 | SH_FREE(gtmp);
|
---|
927 | }
|
---|
928 |
|
---|
929 | qtmp = queuelist;
|
---|
930 | while (qtmp)
|
---|
931 | {
|
---|
932 | if (qtmp->label) sh_string_destroy(&(qtmp->label));
|
---|
933 | queuelist = qtmp->next;
|
---|
934 | SH_FREE(qtmp);
|
---|
935 | qtmp = queuelist;
|
---|
936 | }
|
---|
937 |
|
---|
938 | htmp = hostlist;
|
---|
939 | while (htmp)
|
---|
940 | {
|
---|
941 | if (htmp->hostname_extra) (*pcre_free)(htmp->hostname_extra);
|
---|
942 | if (htmp->hostname) (*pcre_free)(htmp->hostname);
|
---|
943 | hostlist = htmp->next;
|
---|
944 | SH_FREE(htmp);
|
---|
945 | htmp = hostlist;
|
---|
946 | }
|
---|
947 |
|
---|
948 | sh_keep_destroy();
|
---|
949 | sh_keep_match_del();
|
---|
950 |
|
---|
951 | return;
|
---|
952 | }
|
---|
953 |
|
---|
954 | /**********************************************************************
|
---|
955 | *
|
---|
956 | * Actual rule processing
|
---|
957 | *
|
---|
958 | **********************************************************************/
|
---|
959 |
|
---|
960 | /* Test a list of rules against msg; return matched rule, with ovector
|
---|
961 | * filled in
|
---|
962 | */
|
---|
963 | static struct sh_geval ** dummy1;
|
---|
964 |
|
---|
965 | static struct sh_geval * test_rule (struct sh_geval * rule, sh_string *msg, time_t tstamp)
|
---|
966 | {
|
---|
967 | int res;
|
---|
968 | volatile int count;
|
---|
969 | volatile time_t timestamp = tstamp;
|
---|
970 |
|
---|
971 | dummy1 = &rule;
|
---|
972 |
|
---|
973 | if (!rule)
|
---|
974 | DEBUG("debug: (NULL) rule\n");
|
---|
975 |
|
---|
976 | if (rule && sh_string_len(msg) < (size_t)INT_MAX)
|
---|
977 | {
|
---|
978 | count = 1;
|
---|
979 | do {
|
---|
980 |
|
---|
981 | if (flag_err_debug == SL_TRUE)
|
---|
982 | {
|
---|
983 | char * emsg = SH_ALLOC(SH_ERRBUF_SIZE);
|
---|
984 | sl_snprintf(emsg, SH_ERRBUF_SIZE, _("Check rule %d for |%s|"),
|
---|
985 | count, sh_string_str(msg));
|
---|
986 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
987 | sh_error_handle(SH_ERR_ALL, FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
988 | emsg, _("test_rule"));
|
---|
989 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
990 | SH_FREE(emsg);
|
---|
991 | }
|
---|
992 |
|
---|
993 | DEBUG("debug: check rule %d for <%s>\n", count, msg->str);
|
---|
994 | res = pcre_exec(rule->rule, rule->rule_extra,
|
---|
995 | sh_string_str(msg), (int)sh_string_len(msg), 0,
|
---|
996 | 0, rule->ovector, (3*(1+rule->captures)));
|
---|
997 | if (res >= 0)
|
---|
998 | {
|
---|
999 | rule->ovecnum = res;
|
---|
1000 |
|
---|
1001 | if (flag_err_debug == SL_TRUE)
|
---|
1002 | {
|
---|
1003 | char * emsg = SH_ALLOC(SH_ERRBUF_SIZE);
|
---|
1004 | if ( rule->flags & RFL_KEEP )
|
---|
1005 | sl_snprintf(emsg, SH_ERRBUF_SIZE, _("Rule %d matches, result = %d (keep)"),
|
---|
1006 | count, res);
|
---|
1007 | else
|
---|
1008 | sl_snprintf(emsg, SH_ERRBUF_SIZE, _("Rule %d matches, result = %d"),
|
---|
1009 | count, res);
|
---|
1010 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
1011 | sh_error_handle(SH_ERR_ALL, FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
1012 | emsg, _("test_rule"));
|
---|
1013 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
1014 | SH_FREE(emsg);
|
---|
1015 | }
|
---|
1016 |
|
---|
1017 | if ( rule->flags & RFL_KEEP )
|
---|
1018 | {
|
---|
1019 | DEBUG("debug: rule %d matches (keep)\n", count);
|
---|
1020 | sh_keep_add(rule->label, rule->delay,
|
---|
1021 | timestamp == 0 ? time(NULL) : timestamp);
|
---|
1022 | }
|
---|
1023 |
|
---|
1024 | break; /* return the matching rule; ovector is filled in */
|
---|
1025 | }
|
---|
1026 |
|
---|
1027 | if (flag_err_debug == SL_TRUE)
|
---|
1028 | {
|
---|
1029 | char * emsg = SH_ALLOC(SH_ERRBUF_SIZE);
|
---|
1030 | sl_snprintf(emsg, SH_ERRBUF_SIZE, _("Rule %d did not match"),
|
---|
1031 | count);
|
---|
1032 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
1033 | sh_error_handle(SH_ERR_ALL, FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
1034 | emsg, _("test_rule"));
|
---|
1035 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
1036 | SH_FREE(emsg);
|
---|
1037 | }
|
---|
1038 | DEBUG("debug: rule %d did not match\n", count);
|
---|
1039 |
|
---|
1040 | rule = rule->nextrule; ++count;
|
---|
1041 | } while (rule);
|
---|
1042 | }
|
---|
1043 | if (!rule)
|
---|
1044 | DEBUG("debug: no match found\n");
|
---|
1045 | /* If there was no match, this is NULL */
|
---|
1046 | return rule;
|
---|
1047 | }
|
---|
1048 |
|
---|
1049 | /* Test a (struct sh_geval *), which may be single rule or a group of rules,
|
---|
1050 | * against msg
|
---|
1051 | */
|
---|
1052 | static struct sh_geval ** dummy2;
|
---|
1053 | static struct sh_geval ** dummy3;
|
---|
1054 |
|
---|
1055 | static struct sh_geval * test_grules (struct sh_heval * host,
|
---|
1056 | sh_string * msg,
|
---|
1057 | time_t timestamp)
|
---|
1058 | {
|
---|
1059 | struct sh_geval * result = NULL;
|
---|
1060 | struct sh_geval * group = host->rulegroups;
|
---|
1061 |
|
---|
1062 | dummy2 = &result;
|
---|
1063 | dummy3 = &group;
|
---|
1064 |
|
---|
1065 | if (group && sh_string_len(msg) < (size_t)INT_MAX)
|
---|
1066 | {
|
---|
1067 | DEBUG("debug: if group\n");
|
---|
1068 | do {
|
---|
1069 | if( (group->label != NULL) && (0 != (group->flags & RFL_ISGROUP)))
|
---|
1070 | {
|
---|
1071 | /* this is a rule group */
|
---|
1072 |
|
---|
1073 | if (flag_err_debug == SL_TRUE)
|
---|
1074 | {
|
---|
1075 | char * emsg = SH_ALLOC(SH_ERRBUF_SIZE);
|
---|
1076 | sl_snprintf(emsg, SH_ERRBUF_SIZE, _("Checking group |%s| of rules against |%s|"),
|
---|
1077 | sh_string_str(group->label), sh_string_str(msg));
|
---|
1078 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
1079 | sh_error_handle(SH_ERR_ALL, FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
1080 | emsg, _("test_rule"));
|
---|
1081 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
1082 | SH_FREE(emsg);
|
---|
1083 | }
|
---|
1084 |
|
---|
1085 | DEBUG("debug: if group->label %s\n", sh_string_str(group->label));
|
---|
1086 | if (pcre_exec(group->rule, group->rule_extra,
|
---|
1087 | sh_string_str(msg), (int) sh_string_len(msg),
|
---|
1088 | 0, 0, NULL, 0) >= 0)
|
---|
1089 | {
|
---|
1090 | result = test_rule(group->nextrule, msg, timestamp);
|
---|
1091 | if (result)
|
---|
1092 | break;
|
---|
1093 | }
|
---|
1094 | }
|
---|
1095 | else
|
---|
1096 | {
|
---|
1097 | /* If there is no group label, the 'group' is actually a solitary
|
---|
1098 | * rule (not within any group).
|
---|
1099 | */
|
---|
1100 |
|
---|
1101 | if (flag_err_debug == SL_TRUE)
|
---|
1102 | {
|
---|
1103 | char * emsg = SH_ALLOC(SH_ERRBUF_SIZE);
|
---|
1104 | sl_snprintf(emsg, SH_ERRBUF_SIZE, _("Checking solitary rules"));
|
---|
1105 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
1106 | sh_error_handle(SH_ERR_ALL, FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
1107 | emsg, _("test_rule"));
|
---|
1108 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
1109 | SH_FREE(emsg);
|
---|
1110 | }
|
---|
1111 |
|
---|
1112 | DEBUG("debug: else (single rule)\n");
|
---|
1113 | result = test_rule(group, msg, timestamp);
|
---|
1114 | if (result)
|
---|
1115 | break;
|
---|
1116 | }
|
---|
1117 | group = group->next; /* next group of rules */
|
---|
1118 | } while (group);
|
---|
1119 | }
|
---|
1120 | return result;
|
---|
1121 | }
|
---|
1122 |
|
---|
1123 | /* Top-level find_rule() function
|
---|
1124 | */
|
---|
1125 | static struct sh_geval * find_rule (sh_string *host,
|
---|
1126 | sh_string *msg,
|
---|
1127 | time_t timestamp)
|
---|
1128 | {
|
---|
1129 | struct sh_geval * result = NULL;
|
---|
1130 | struct sh_heval * hlist = hostlist;
|
---|
1131 |
|
---|
1132 | if (hlist && sh_string_len(host) < (size_t)INT_MAX)
|
---|
1133 | {
|
---|
1134 | do {
|
---|
1135 | if (pcre_exec(hlist->hostname, hlist->hostname_extra,
|
---|
1136 | sh_string_str(host), (int) sh_string_len(host),
|
---|
1137 | 0, 0, NULL, 0) >= 0)
|
---|
1138 | {
|
---|
1139 | /* matching host, check rules/groups of rules */
|
---|
1140 | result = test_grules(hlist, msg, timestamp);
|
---|
1141 | if (result)
|
---|
1142 | break;
|
---|
1143 | }
|
---|
1144 | hlist = hlist->next;
|
---|
1145 | } while (hlist);
|
---|
1146 | }
|
---|
1147 | return result;
|
---|
1148 | }
|
---|
1149 |
|
---|
1150 | /* copy the message and replace captured substrings with '___'
|
---|
1151 | */
|
---|
1152 | static sh_string * replace_captures(const sh_string * message,
|
---|
1153 | int * ovector, int ovecnum)
|
---|
1154 | {
|
---|
1155 | sh_string * retval = sh_string_new_from_lchar(sh_string_str(message),
|
---|
1156 | sh_string_len(message));
|
---|
1157 |
|
---|
1158 | if (ovecnum > 1)
|
---|
1159 | {
|
---|
1160 | retval = sh_string_replace(retval, &(ovector[2]), (ovecnum-1), "___", 3);
|
---|
1161 | }
|
---|
1162 | return retval;
|
---|
1163 | }
|
---|
1164 |
|
---|
1165 | static void msg_report(int severity, struct sh_geval * rule, struct sh_logrecord * record)
|
---|
1166 | {
|
---|
1167 | char * tmp;
|
---|
1168 | char * msg;
|
---|
1169 | sh_string * mmm = NULL;
|
---|
1170 | char * ttt;
|
---|
1171 |
|
---|
1172 |
|
---|
1173 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
1174 | if (rule) {
|
---|
1175 | mmm = replace_captures(record->message, rule->ovector,
|
---|
1176 | rule->ovecnum);
|
---|
1177 | msg = sh_util_safe_name_keepspace (sh_string_str(mmm));
|
---|
1178 | }
|
---|
1179 | else {
|
---|
1180 | msg = sh_util_safe_name_keepspace (sh_string_str(record->message));
|
---|
1181 | }
|
---|
1182 | tmp = sh_util_safe_name (record->filename);
|
---|
1183 | ttt = sh_util_safe_name_keepspace (sh_string_str(record->timestr));
|
---|
1184 | sh_error_handle (severity, FIL__, __LINE__, 0, MSG_LOGMON_REP,
|
---|
1185 | msg,
|
---|
1186 | ttt,
|
---|
1187 | sh_string_str(record->host),
|
---|
1188 | tmp);
|
---|
1189 | SH_FREE(ttt);
|
---|
1190 | SH_FREE(msg);
|
---|
1191 | SH_FREE(tmp);
|
---|
1192 | if (mmm)
|
---|
1193 | sh_string_destroy(&mmm);
|
---|
1194 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
1195 | }
|
---|
1196 |
|
---|
1197 | static void sum_report(int severity, sh_string * host, sh_string * message, sh_string * path)
|
---|
1198 | {
|
---|
1199 | char * tmp;
|
---|
1200 | char * msg;
|
---|
1201 |
|
---|
1202 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
1203 | tmp = sh_util_safe_name (sh_string_str(path));
|
---|
1204 | msg = sh_util_safe_name_keepspace (sh_string_str(message));
|
---|
1205 | sh_error_handle (severity, FIL__, __LINE__, 0, MSG_LOGMON_SUM,
|
---|
1206 | msg,
|
---|
1207 | sh_string_str(host),
|
---|
1208 | tmp);
|
---|
1209 | SH_FREE(msg);
|
---|
1210 | SH_FREE(tmp);
|
---|
1211 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
1212 | }
|
---|
1213 |
|
---|
1214 | static zAVLKey sh_eval_getkey(void const *item)
|
---|
1215 | {
|
---|
1216 | return ((struct sh_ceval *)item)->hostname->str;
|
---|
1217 | }
|
---|
1218 |
|
---|
1219 | /* Find the counter, or initialize one if there is none already
|
---|
1220 | */
|
---|
1221 | static struct sh_ceval * find_counter(struct sh_geval * rule,
|
---|
1222 | sh_string * host, time_t interval)
|
---|
1223 | {
|
---|
1224 | struct sh_ceval * counter;
|
---|
1225 |
|
---|
1226 | if (!(rule->counterlist))
|
---|
1227 | {
|
---|
1228 | DEBUG("debug: allocate new counterlist AVL tree\n");
|
---|
1229 | rule->counterlist = zAVLAllocTree(sh_eval_getkey);
|
---|
1230 | }
|
---|
1231 |
|
---|
1232 | counter = (struct sh_ceval *) zAVLSearch (rule->counterlist,
|
---|
1233 | sh_string_str(host));
|
---|
1234 |
|
---|
1235 | if (!counter)
|
---|
1236 | {
|
---|
1237 | DEBUG("debug: no counter found\n");
|
---|
1238 |
|
---|
1239 | counter = SH_ALLOC(sizeof(struct sh_ceval));
|
---|
1240 | counter->hostname = sh_string_new_from_lchar(sh_string_str(host),
|
---|
1241 | sh_string_len(host));
|
---|
1242 | counter->counted_str = NULL;
|
---|
1243 | counter->filename = NULL;
|
---|
1244 | counter->count = 0;
|
---|
1245 | counter->start = time(NULL);
|
---|
1246 | counter->interval = interval;
|
---|
1247 |
|
---|
1248 | zAVLInsert(rule->counterlist, counter);
|
---|
1249 | }
|
---|
1250 | return counter;
|
---|
1251 |
|
---|
1252 | }
|
---|
1253 |
|
---|
1254 |
|
---|
1255 | /* process the counter for a SUM rule
|
---|
1256 | */
|
---|
1257 | static int process_counter(struct sh_ceval * counter,
|
---|
1258 | struct sh_geval * rule, struct sh_logrecord * record)
|
---|
1259 | {
|
---|
1260 | int retval = -1;
|
---|
1261 | time_t now;
|
---|
1262 |
|
---|
1263 | if (!(counter->counted_str))
|
---|
1264 | {
|
---|
1265 | counter->counted_str = replace_captures(record->message, rule->ovector,
|
---|
1266 | rule->ovecnum);
|
---|
1267 | counter->filename = sh_string_new_from_lchar(record->filename,
|
---|
1268 | strlen(record->filename));
|
---|
1269 | DEBUG("debug: counted_str after replace: %s\n",
|
---|
1270 | sh_string_str(counter->counted_str));
|
---|
1271 | }
|
---|
1272 |
|
---|
1273 | ++(counter->count);
|
---|
1274 | now = time(NULL); now -= counter->start;
|
---|
1275 | DEBUG("debug: count %lu, interval %lu, time %lu\n",
|
---|
1276 | counter->count, counter->interval, now);
|
---|
1277 | if (now >= counter->interval)
|
---|
1278 | {
|
---|
1279 | DEBUG("debug: report count\n");
|
---|
1280 | sum_report(rule->queue->severity, counter->hostname,
|
---|
1281 | counter->counted_str, counter->filename);
|
---|
1282 | counter->start = time(NULL);
|
---|
1283 | counter->count = 0;
|
---|
1284 | }
|
---|
1285 | return retval;
|
---|
1286 | }
|
---|
1287 |
|
---|
1288 | /* Process a rule
|
---|
1289 | */
|
---|
1290 | static int process_rule(struct sh_geval * rule, struct sh_logrecord * record)
|
---|
1291 | {
|
---|
1292 | int retval = -1;
|
---|
1293 | struct sh_qeval * queue = rule->queue;
|
---|
1294 |
|
---|
1295 | if (queue)
|
---|
1296 | {
|
---|
1297 | DEBUG("debug: queue policy = %d found\n", queue->policy);
|
---|
1298 | if (queue->policy == EVAL_REPORT)
|
---|
1299 | {
|
---|
1300 | DEBUG("debug: EVAL_REPORT host: %s, message: %s\n",
|
---|
1301 | sh_string_str(record->host),
|
---|
1302 | sh_string_str(record->message));
|
---|
1303 | msg_report(queue->severity, rule, record);
|
---|
1304 | retval = 0;
|
---|
1305 | }
|
---|
1306 | else if (queue->policy == EVAL_SUM)
|
---|
1307 | {
|
---|
1308 |
|
---|
1309 | struct sh_ceval * counter =
|
---|
1310 | find_counter(rule, record->host, queue->interval);
|
---|
1311 | DEBUG("debug: EVAL_SUM host: %s, message: %s\n",
|
---|
1312 | sh_string_str(record->host),
|
---|
1313 | sh_string_str(record->message));
|
---|
1314 | if (counter)
|
---|
1315 | {
|
---|
1316 | DEBUG("debug: counter found\n");
|
---|
1317 | retval = process_counter(counter, rule, record);
|
---|
1318 | }
|
---|
1319 | }
|
---|
1320 | }
|
---|
1321 | else
|
---|
1322 | {
|
---|
1323 | DEBUG("debug: no queue found -- trash\n");
|
---|
1324 | /* No queue means 'trash' */
|
---|
1325 | retval = 0;
|
---|
1326 | }
|
---|
1327 | return retval;
|
---|
1328 | }
|
---|
1329 |
|
---|
1330 | #define DEFAULT_SEVERITY (-1)
|
---|
1331 |
|
---|
1332 | int sh_eval_process_msg(struct sh_logrecord * record)
|
---|
1333 | {
|
---|
1334 | static unsigned long i = 0;
|
---|
1335 | if (record)
|
---|
1336 | {
|
---|
1337 | struct sh_geval * rule = find_rule (record->host,
|
---|
1338 | record->message,
|
---|
1339 | record->timestamp);
|
---|
1340 |
|
---|
1341 | if (rule)
|
---|
1342 | {
|
---|
1343 | DEBUG("debug: (%lu) rule found\n", i); ++i;
|
---|
1344 | return process_rule(rule, record);
|
---|
1345 | }
|
---|
1346 | else
|
---|
1347 | {
|
---|
1348 | DEBUG("debug: (%lu) no rule found\n", i); ++i;
|
---|
1349 | msg_report(DEFAULT_SEVERITY, NULL, record);
|
---|
1350 | }
|
---|
1351 | return 0;
|
---|
1352 | }
|
---|
1353 | return -1;
|
---|
1354 | }
|
---|
1355 |
|
---|
1356 | #endif
|
---|