summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* some more cleanup - action config line handlers are now defined in action.cRainer Gerhards2009-10-273-48/+28
| | | | As an artifact of early development, they were registered in syslogd.c
* action processing optimized for queue shutdownRainer Gerhards2009-10-272-24/+16
|
* updated project status & bumped version numberRainer Gerhards2009-10-274-6/+8
|
* preparing for 5.3.3v5.3.3Rainer Gerhards2009-10-273-7/+7
|
* removed no longer needed flag variableRainer Gerhards2009-10-272-11/+6
|
* fix compile bug with last commitRainer Gerhards2009-10-271-1/+0
|
* some cleanupRainer Gerhards2009-10-274-83/+4
|
* fixed race condition during queue shutdownRainer Gerhards2009-10-273-14/+21
| | | | | | | | Problems could happen if the queue worker needed to be cancelled and this cancellation happened inside queue-code (including wtp, wti). We have now solved this by disabling cancellation while in this code and only enabling it when working inside the user consumer. This exactly matches the use case for which cancellation may be needed.
* shuffled cancelability state to different spotRainer Gerhards2009-10-261-3/+8
| | | | ... but in anticipation of changing cancel processing altogether...
* added note on lock-free algorithm to design docRainer Gerhards2009-10-261-1/+4
|
* addressed some race issues during queue shutdownRainer Gerhards2009-10-264-24/+64
| | | | | | | these occured in very unusual scenarios where we had a DA-queue running in parallel and very lengthy actions. Then, in some situations, the shutdown could hang. The code needs some addition lab time, but is believed to be much better than any previous version.
* Merge branch 'master' into queuePartialDeleteBatchesRainer Gerhards2009-10-264-3/+34
|\
| * bugfix: potential abort if inputname property was not setRainer Gerhards2009-10-263-2/+8
| | | | | | | | | | | | primarily a problem of imdiag. Also added some fix for a potential situation during cancel processing. That one is not considered vital and may later be removed again.
| * added some info on the TLS/netstream subsystemRainer Gerhards2009-10-261-1/+26
| |
| * cosmetic: made "make check" log a bit easier to readRainer Gerhards2009-10-221-0/+1
| |
* | implemented solution for cancel at shutdown/unprocessed entriesRainer Gerhards2009-10-263-38/+26
| | | | | | | | | | We do now enqueue those objects that are left unprocessed. This enables us to delete the full batch, what is exactly what we need to do.
* | added note on importance of statement sequence to tls docRainer Gerhards2009-10-262-1/+10
| |
* | Begun to work on partial batch deletes...Rainer Gerhards2009-10-224-12/+28
|/ | | | | | | | ... but this brings a lot of problems with it. The issue is that we still have a sequential store and we do not know how we could delete the one entry right in the middle of processing. I keep this branch if we intend to move on with it - but for now I look into a different solution...
* enhanced test environment (including testbench)Rainer Gerhards2009-10-2242-103/+158
| | | | | | | | support for enhancing probability of memory addressing failure by using non-NULL default value for malloced memory (optional, only if requested by configure option). This helps to track down some otherwise undetected issues within the testbench and is expected to be very useful in the future.
* improved testbenchRainer Gerhards2009-10-2121-14/+80
| | | | | - added a test to check handling of damaged .qi files on startup - made sure each test identifies itself on startup
* bugfix (testbench): left-over from manual test removedRainer Gerhards2009-10-211-7/+0
|
* Merge branch 'v4-devel'Rainer Gerhards2009-10-211-2/+7
|\ | | | | | | | | Conflicts: runtime/wtp.c
| * Merge branch 'v4-beta' into v4-develRainer Gerhards2009-10-212-4/+7
| |\
| | * Merge branch 'v4-stable' into v4-betaRainer Gerhards2009-10-212-3/+6
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html plugins/imrelp/imrelp.c
| | | * bumped version numberRainer Gerhards2009-10-203-4/+6
| | | |
| | | * added imported bugfix to changelogRainer Gerhards2009-10-201-0/+2
| | | |
| | | * Merge branch 'v3-stable' into v4-stableRainer Gerhards2009-10-202-2/+1
| | | |\
| | | | * bugfix: potential hang condition on queue shutdownRainer Gerhards2009-10-202-2/+1
| | | | |
| | | * | Merge branch 'v3-stable' into v4-stableRainer Gerhards2009-10-143-5/+9
| | | |\| | | | | | | | | | | | | | | | | | | | | Conflicts: plugins/imrelp/imrelp.c
| | | * | preparing for 4.4.2 releasev4.4.2Rainer Gerhards2009-10-091-1/+1
| | | | |
| | * | | Merge branch 'aaron' into v4-betaRainer Gerhards2009-10-211-1/+1
| | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog
| | | * | | preparing for 4.5.5v4.5.5Rainer Gerhards2009-10-211-1/+1
| | | | | |
* | | | | | updated project statusRainer Gerhards2009-10-211-7/+7
| | | | | |
* | | | | | Merge branch 'newqueue'Rainer Gerhards2009-10-2117-482/+180
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog runtime/queue.c
| * | | | | | bugfix: message processing states were not set correctly in all casesRainer Gerhards2009-10-198-26/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | however, this had no negative effect, as the message processing state was not evaluated when a batch was deleted, and that was the only case where the state could be wrong.
| * | | | | | Merge branch 'master' into newqueueRainer Gerhards2009-10-1615-115/+184
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog
| * \ \ \ \ \ \ Merge branch 'master' into newqueueRainer Gerhards2009-10-158-111/+42
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: tools/syslogd.c
| * | | | | | | | new queue engine - initial commit (probably not 100% working!)Rainer Gerhards2009-10-1414-492/+141
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | simplified and thus speeded up the queue engine, also fixed some potential race conditions (in very unusual shutdown conditions) along the way. The threading model has seriously changes, so there may be some regressions. NOTE: the code passed basic tests, but there is still more work and testing to be done. This commit should be treated with care.
| * | | | | | | | added some debug settings plus improved shutdown sequenceRainer Gerhards2009-10-139-27/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ... non-working version!
* | | | | | | | | preparing for 5.3.2v5.3.2Rainer Gerhards2009-10-212-3/+3
| | | | | | | | |
* | | | | | | | | bugfix: segfault when starting up with an invalid .qi file for a disk queueRainer Gerhards2009-10-202-5/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Failed for both pure disk as well as DA queues. Now, we emit an error message and disable disk queueing facility.
* | | | | | | | | added some tests for IPv4-Only configurationRainer Gerhards2009-10-203-4/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We are "abusing" the parser tests to test the TCP/UDP reception handling. Thus we do not run the other tests through to an IPv4 only config. It acutally is not that parser that matters but rather the hope to find some init issues when running with only a single listening socket (in IPv6, we usually both have an IPv4 AND an IPv6 listening socket, what - as practice has shown - may hide listener setup errors).
* | | | | | | | | bugfix: first UDP listener was incorrectly assigned its rulesetRainer Gerhards2009-10-192-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this was a regression of the recent imudp multi-ruleset enhancement bug was not in any released version
* | | | | | | | | Merge branch 'david-segfault'Rainer Gerhards2009-10-197-2/+43
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | streamlined new addition to testbenchRainer Gerhards2009-10-195-4/+25
| | | | | | | | | |
| * | | | | | | | | added new testcase; fixed bug in testdriverRainer Gerhards2009-10-193-2/+22
| | |_|/ / / / / / | |/| | | | | | |
* | | | | | | | | my imfile cleanup was a bit too agressive ;)Rainer Gerhards2009-10-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ... so I moved the one line that some platforms need back in.
* | | | | | | | | fixed regression in new multi-ruleset imudp codeRainer Gerhards2009-10-192-7/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new code has not been released so far, so this does not fix any bug known to the "real world".
* | | | | | | | | cleanup: finally moved some config variables just to conf.cRainer Gerhards2009-10-193-27/+15
|/ / / / / / / /
* | | | | | | | some minor cleanup, consolidated some codeRainer Gerhards2009-10-163-33/+2
| | | | | | | |