summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | refactor: simplify JSON variable accessRainer Gerhards2013-10-236-60/+32
| | |
* | | refactor: use common code for message property description processingRainer Gerhards2013-10-2211-158/+170
| | | | | | | | | | | | in all cases except script var access -- this comes next...
* | | refactor: more simplification in property handlingRainer Gerhards2013-10-212-13/+9
| | |
* | | refactor: somewhat simplify property-name-to-id mappingRainer Gerhards2013-10-213-23/+6
| | |
* | | work a bit toward string handling unificationRainer Gerhards2013-10-218-130/+101
| | |
* | | prep work to support one-char variable namepacesRainer Gerhards2013-10-211-6/+6
|/ /
* | regression fix: global variable access did not workRainer Gerhards2013-10-211-2/+2
| |
* | regression fix: global variables could not be accessed via scriptRainer Gerhards2013-10-211-1/+1
| |
* | cleanup: remove (no longer?) needed structure memberRainer Gerhards2013-10-211-4/+0
| |
* | doc: document impstats ruleset parameterRainer Gerhards2013-10-202-0/+3
| |
* | impstats: initial shot at multi-ruleset supportRainer Gerhards2013-10-191-1/+39
| |
* | fix compiler warningRainer Gerhards2013-10-181-1/+1
| |
* | bugfix: imudp when using recvmmsg could report wrong sender IPRainer Gerhards2013-10-182-3/+6
| |
* | cosmetic: remove compiler warningsRainer Gerhards2013-10-181-3/+0
| |
* | bugfix: running imupd on multiple threads lead to segfault if recvmmsg is ↵Rainer Gerhards2013-10-182-34/+45
| | | | | | | | available
* | refactor config property filter decoding and fix some memleaksRainer Gerhards2013-10-181-15/+19
| | | | | | | | | | all leaks are cosmetic, happen only once during startup and in error cases. Do not affect performance at all (but valgrind testing ;)).
* | fix cosmetic memleak when property filter is disabledRainer Gerhards2013-10-182-0/+3
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-182-2/+11
|\| | | | | | | | | Conflicts: runtime/conf.c
| * bugfix: invalid property filter was not properly disabled in rulesetRainer Gerhards2013-10-183-2/+10
| | | | | | | | | | | | | | | | Note that this bugfix introduces a very slight memory leak, which is cosmetic, as it just holds data until termination that is no longer needed. It is just the part of the config that was invalid. We will "fix" this "issue" in the devel version first, as the fix is a bit too intrusive to do without hard need in the stable version.
* | refactor property-based filter decodingRainer Gerhards2013-10-183-105/+106
| | | | | | | | among others, provides *much* better error messages to user
* | slight optimizations: avoid unnecessary writesRainer Gerhards2013-10-181-2/+4
| | | | | | | | but this happens only during config load, so no real gain
* | doc: mention bugfix in ChangeLogRainer Gerhards2013-10-181-0/+3
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-181-0/+3
|\|
| * doc: add last bugfix to ChangeLogRainer Gerhards2013-10-181-0/+3
| |
| * bugfix: potential misadressing when trimming cstr'sRainer Gerhards2013-10-181-1/+1
| |
* | include invalid property name in property filter error messageRainer Gerhards2013-10-181-4/+4
| |
* | remove obsolete functionRainer Gerhards2013-10-182-21/+0
| |
* | bugfix: potential misadressing when trimming cstr'sRainer Gerhards2013-10-181-1/+1
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-180-0/+0
|\| | | | | | | | | Conflicts: runtime/libgcry.h
| * remove compiler warningRainer Gerhards2013-10-181-2/+2
| |
| * add missing function prototypeRainer Gerhards2013-10-181-0/+1
| |
| * cosmetic: remove compiler warningsRainer Gerhards2013-10-181-3/+4
| |
* | cosmetic: remove compiler warningsRainer Gerhards2013-10-181-3/+4
| |
* | remove unused variablesRainer Gerhards2013-10-181-2/+0
| |
* | remove compiler warningRainer Gerhards2013-10-181-2/+2
| |
* | remove no longer needed variableRainer Gerhards2013-10-181-1/+0
| |
* | bugfix: omelasticsearch did not compile on platforms without atomic instructionsRainer Gerhards2013-10-182-5/+7
| |
* | doc: mention imported bugfixRainer Gerhards2013-10-181-0/+3
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-182-1/+5
|\|
| * bugfix: segfault if re_extract() function was used and no match foundRainer Gerhards2013-10-182-1/+5
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-171-2/+2
|\|
| * doc: typo fixRainer Gerhards2013-10-171-2/+2
| | | | | | | | thanks to Xuri Nagarin for alerting us
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-162-3/+4
|\|
| * bugfix: omelasticsearch: failed.es counter was only maintained in bulk modeRainer Gerhards2013-10-162-3/+4
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-162-5/+24
|\| | | | | | | | | Conflicts: plugins/omelasticsearch/omelasticsearch.c
| * bugfix: omelasticsearch: did not correctly initialize stats countersRainer Gerhards2013-10-162-1/+10
| | | | | | | | | | | | | | | | This usually did not lead to any problems, because they are in static memory, which is initialized to zero by the OS when the plugin is loaded. But it may cause problems especially on systems that do not support atomic instructions - in this case the associated mutexes also did not get properly initialized.
| * omelasticsearch: add failed.httprequests stats counterRainer Gerhards2013-10-162-0/+7
| |
| * bugfix omelasticsearch: failed.http stats counter had incorrect countRainer Gerhards2013-10-161-5/+8
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-162-2/+2
|\|
| * require libestr 0.1.8, as there are bugs in previous versions that affect usRainer Gerhards2013-10-162-2/+2
| |