Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | implement string arrays for config objects | Rainer Gerhards | 2012-10-01 | 1 | -25/+122 | |
| | | | | | | | | | | as a tester, imudp now supports binding to multiple options based on a string array | |||||
* | | cleanup | Rainer Gerhards | 2012-09-28 | 1 | -1/+0 | |
| | | ||||||
* | | implement RainerScript array-based string comparison operations | Rainer Gerhards | 2012-09-28 | 1 | -13/+77 | |
| | | ||||||
* | | rainerscript: add basic plumbing for arrays | Rainer Gerhards | 2012-09-28 | 1 | -1/+64 | |
| | | | | | | | | | | can be used in expressions, but always evaluate to the first element, only | |||||
* | | Implement RainerScript ruleset() statement | Rainer Gerhards | 2012-09-28 | 1 | -1/+1 | |
| | | ||||||
* | | Merge branch 'v6-devel' | Rainer Gerhards | 2012-09-27 | 1 | -21/+108 | |
|\| | | | | | | | | | | | | | | | | | Conflicts: ChangeLog action.c grammar/grammar.y runtime/modules.h runtime/rsconf.c | |||||
| * | bugfix: config errors did not always cause statement to fail | Rainer Gerhards | 2012-09-27 | 1 | -21/+108 | |
| | | | | | | | | This could lead to startup with invalid parameters. | |||||
| * | Free configuration objects after use | Miloslav Trmač | 2012-09-17 | 1 | -1/+2 | |
| | | | | | | | | Signed-off-by: Miloslav Trmač <mitr@redhat.com> | |||||
* | | fix invalid free in PoC == optimization | Rainer Gerhards | 2012-09-25 | 1 | -1/+3 | |
| | | ||||||
* | | slight optimization of == in string comparisons | Rainer Gerhards | 2012-09-25 | 1 | -9/+17 | |
| | | ||||||
* | | detect unreachable statements and emit warning message | Rainer Gerhards | 2012-09-25 | 1 | -0/+3 | |
| | | ||||||
* | | Merge branch 'master' into master-newruleset | Rainer Gerhards | 2012-09-25 | 1 | -1/+2 | |
|\ \ | | | | | | | | | | | | | Conflicts: runtime/modules.c | |||||
| * | | fix invalid free caused by optimized script execution | Rainer Gerhards | 2012-09-25 | 1 | -1/+2 | |
| | | | ||||||
* | | | fix small memory leak during script optimization | Rainer Gerhards | 2012-09-25 | 1 | -0/+2 | |
| | | | ||||||
* | | | fix optimizer-introduced memleak in action destruction | Rainer Gerhards | 2012-09-25 | 1 | -1/+1 | |
| | | | ||||||
* | | | Implement Script Optimizer: remove always-true PRIFILT | Rainer Gerhards | 2012-09-25 | 1 | -4/+44 | |
| | | | ||||||
* | | | cleanup & better debug output | Rainer Gerhards | 2012-09-24 | 1 | -2/+6 | |
| | | | | | | | | | | | | | | | - removed no longer needed function - debug log now contains action type for action objects | |||||
* | | | Clean up implementation of omdiscard-->STOP optimization | Rainer Gerhards | 2012-09-24 | 1 | -2/+3 | |
| | | | ||||||
* | | | PoC: optimize omdicard --> STOP | Rainer Gerhards | 2012-09-24 | 1 | -2/+18 | |
|/ / | ||||||
* | | Improve script execution speed for important string-comparisons | Rainer Gerhards | 2012-09-21 | 1 | -2/+7 | |
| | | ||||||
* | | Implement script optimization IF -> PRIFILT | Rainer Gerhards | 2012-09-21 | 1 | -19/+63 | |
| | | ||||||
* | | Implement script optimizer basic constant folding & NOP removal | Rainer Gerhards | 2012-09-21 | 1 | -31/+164 | |
| | | ||||||
* | | Add skeleton for RainerScript optimizer | Rainer Gerhards | 2012-09-20 | 1 | -0/+83 | |
| | | | | | | | | actual optimization is not yet done | |||||
* | | Implement RainerScript prifield() function | Rainer Gerhards | 2012-09-20 | 1 | -2/+61 | |
| | | ||||||
* | | Implement RainerScript field() function | Rainer Gerhards | 2012-09-20 | 1 | -7/+105 | |
| | | ||||||
* | | new ruleengine: implement native JSON in RainerScript | Rainer Gerhards | 2012-09-18 | 1 | -8/+46 | |
| | | ||||||
* | | new ruleengine: implement script concatenation (& operator) | Rainer Gerhards | 2012-09-17 | 1 | -0/+9 | |
| | | ||||||
* | | Add set/unset stmt to grammar & AST | Rainer Gerhards | 2012-09-13 | 1 | -0/+38 | |
| | | | | | | | | ... but not yet to executing engine | |||||
* | | Merge branch 'v6-devel' | Rainer Gerhards | 2012-09-13 | 1 | -0/+138 | |
|\| | | | | | | | | | Conflicts: ChangeLog | |||||
| * | Merge branch 'v6-stable' into v6-devel | Rainer Gerhards | 2012-09-13 | 1 | -0/+138 | |
| |\ | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog grammar/rainerscript.c grammar/rainerscript.h runtime/rule.c | |||||
| | * | Fixing string unescaping (new code from this morning's commit) | Rainer Gerhards | 2012-09-13 | 1 | -1/+1 | |
| | | | ||||||
| | * | bugfix: missing support for escape sequences in RainerScript | Rainer Gerhards | 2012-09-13 | 1 | -0/+139 | |
| | | | | | | | | | | | | | | | | | | | | | Only \' was supported. Now the usual set is supported. Note that v5 used \x as escape where x was any character (e.g. "\n" meant "n" and NOT LF). This also means there is some incompatibility to v5 for well-know sequences. Better break it now than later. | |||||
* | | | bugfix: abort when invalid property name was configured | Rainer Gerhards | 2012-09-12 | 1 | -1/+3 | |
| | | | ||||||
* | | | new ruleengine: fix memory leaks & a little cleanup | Rainer Gerhards | 2012-09-10 | 1 | -4/+4 | |
| | | | ||||||
* | | | new ruleengine: more cleanup | Rainer Gerhards | 2012-09-10 | 1 | -168/+1 | |
| | | | ||||||
* | | | new ruleengine: properly freeing stmt tree | Rainer Gerhards | 2012-09-06 | 1 | -1/+50 | |
| | | | ||||||
* | | | new ruleengine: restore action iterator functionality | Rainer Gerhards | 2012-09-06 | 1 | -2/+2 | |
| | | | ||||||
* | | | new ruleengine: implement rainerscript execution engine | Rainer Gerhards | 2012-09-06 | 1 | -1/+1 | |
| | | | ||||||
* | | | new ruleengine: legacy action object properly constructed | Rainer Gerhards | 2012-09-04 | 1 | -0/+25 | |
| | | | ||||||
* | | | new ruleengine: v6+ action object properly constructed | Rainer Gerhards | 2012-09-04 | 1 | -0/+17 | |
| | | | ||||||
* | | | new ruleengine: PROP and PRI legacy filter structures properly created | Rainer Gerhards | 2012-09-04 | 1 | -7/+79 | |
| | | | ||||||
* | | | new ruleengine: script block correctly built | Rainer Gerhards | 2012-09-04 | 1 | -36/+66 | |
| | | | ||||||
* | | | Merge branch 'master' into master-newruleset | Rainer Gerhards | 2012-09-04 | 1 | -1/+2 | |
|\ \ \ | ||||||
| * | | | Free configuration objects after use | Miloslav Trmač | 2012-09-04 | 1 | -1/+2 | |
| |/ / | | | | | | | | | | Signed-off-by: Miloslav Trmač <mitr@redhat.com> | |||||
* | | | new ruleengine: add &-operator (legacy action list) | Rainer Gerhards | 2012-09-04 | 1 | -2/+2 | |
| | | | ||||||
* | | | new ruleengine: first code for stmt handling | Rainer Gerhards | 2012-09-04 | 1 | -1/+53 | |
|/ / | ||||||
* | | milestone: LIST-type templates work, but no all options yet present | Rainer Gerhards | 2012-08-25 | 1 | -0/+18 | |
| | | ||||||
* | | milestone: base plumbing for LIST-type templates mostly in place | Rainer Gerhards | 2012-08-25 | 1 | -0/+39 | |
| | | ||||||
* | | milestone: module() can load module in legacy mode | Rainer Gerhards | 2012-06-20 | 1 | -1/+0 | |
| | | ||||||
* | | bugfix: small static memory leak in expression based filters | Rainer Gerhards | 2012-06-14 | 1 | -0/+1 | |
| | | | | | | | | function names were not freed upon config shutdown |