summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* added one more test case for dynafile cacheRainer Gerhards2010-03-223-1/+55
|
* cleanup of debug message in testbenchRainer Gerhards2010-03-221-1/+0
|
* previous (experimental) patch was somewhat incorrect, fixedRainer Gerhards2010-03-221-1/+1
| | | | This is what caused the new test to fail...
* added testcase showcasing problems when dynafile can not be openedRainer Gerhards2010-03-223-16/+75
| | | | | note that so far no patch is provided. This has not yet been made part of "make check"
* exp: made omfile ensure that it is not called twice in parallel on the same ↵Rainer Gerhards2010-03-211-0/+9
| | | | | | | | | | | | file instance In theory, the rsyslog core should never call in parallel into an output module for the same instance. However, it looks like this seems to happen under (strange?) circumstances. I have now enhanced omfile so that it guards itself against being called in parallel on the same instance data. This is done to help troubleshooting and may stay as an interim solution if it proves to solve an anomaly we see in at least one installation (to trigger this problem, an extremely large traffic volume is needed).
* added some more tests for severely ill-formed snare messagesRainer Gerhards2010-03-217-6/+90
| | | | also improved nettester testbench tool a bit
* added parser test cases to testbenchRainer Gerhards2010-03-194-0/+26
|
* solved some race conditions in testbenchRainer Gerhards2010-03-192-1/+4
| | | | the test cases actually have some races, not the code to be tested
* slight improvement to testing toolsRainer Gerhards2010-03-193-9/+29
|
* fixed regression from previos (yet unrelease) $omfileFlushOnTXEnd fixtemp.4.6.1.10Rainer Gerhards2010-03-193-3/+6
| | | | | | | | The previous fix fixed an issue with on/off bying used in the exact wrong semantic. It corrected the situation, but failed to fix one spot where the wrong semantics were used. This is done with this commit. Note that this is NOT a bug seen in any released version.
* bugfix: invalid buffer write in (file) stream classRainer Gerhards2010-03-192-1/+7
| | | | | | | currently being accessed buffer could be overwritten with new data. While this probably did not cause access violations, it could case loss and/or duplication of some data (definitely a race with no deterministic outcome)
* bugfix: potential hang condition during filestream closeRainer Gerhards2010-03-192-4/+9
| | | | | predicate was not properly checked when waiting for the background file writer
* added additional test case for async writerRainer Gerhards2010-03-193-0/+43
|
* bugfix: improper synchronization when "$OMFileFlushOnTXEnd on" was usedRainer Gerhards2010-03-192-11/+38
| | | | | Internal data structures were not properly protected due to missing mutex calls.
* enabled imudp to send complete text of large messages to debug logRainer Gerhards2010-03-181-1/+1
| | | | | ... it turns out that this is sometimes extremely useful when debugging real-world problems at user sites.
* some cleanup, some additional comments and a bit more debug outputRainer Gerhards2010-03-185-19/+24
|
* added test for deadlock with dynafile writing and cache exhaustionRainer Gerhards2010-03-173-0/+82
| | | | | | Note that this introduces a test case that breaks the current code. This commit does NOT yet provide the necessary code patch. Thus "make check" does currently hang.
* added test to check for deadlock condition in async-written filesRainer Gerhards2010-03-173-0/+47
| | | | | | Note that this introduces a test case that breaks the current code. This commit does NOT yet provide the necessary code patch. Thus make check does currently hang.
* new feature: "." action type added to support writing files to relative pathesRainer Gerhards2010-03-173-3/+13
| | | | (this is primarily meant as a debug aid)
* bugfix(cosmetic): tried to close non-open fd, resulting in close(-1)Rainer Gerhards2010-03-161-2/+7
|
* reduced runtime requirements of inactive debug code a slight bitRainer Gerhards2010-03-161-10/+10
|
* enhanced dbgoprint() buffer sizeRainer Gerhards2010-03-161-1/+1
|
* bugfix: recent patch to fix small memory leak could cause invalid free.Rainer Gerhards2010-03-163-4/+6
| | | | This could only happen during config file parsing.
* added new, complex testcase to testbenchRainer Gerhards2010-03-163-8/+24
| | | | | this is an excerpt from some of the more intensen manual tests I am doing, stripped down to be useful inside the testbench.
* fix recently introduced minor nit in Makefile for testbenchRainer Gerhards2010-03-151-1/+0
|
* bugfix(minor): handling of extremely large strings in dbgprintf() fixedRainer Gerhards2010-03-152-0/+13
| | | | | | Previously, it could lead to garbagge output and, in extreme cases, also to segfaults. Note: this was a problem only when debug output was actually enabled, so it caused no problem in production use.
* added more parser test casesRainer Gerhards2010-03-113-2/+147
| | | | also improved testing tools to support new testcase structure
* added more tests to testbench and improved testing toolsRainer Gerhards2010-03-1115-8/+200
|
* added ability to work with larger message sizes to testbench toolsRainer Gerhards2010-03-102-11/+63
|
* testbench: new calling interface for tcpfloodRainer Gerhards2010-03-1014-34/+44
| | | | | this is a perquisite to support more flexible testing modes, which could not intelligently be implemented with the old interface
* Merge branch 'v4-stable' into v4-stable-nextRainer Gerhards2010-03-103-5/+14
|\
| * fixed regression introduced with previous commitRainer Gerhards2010-03-103-5/+14
| | | | | | | | | | | | disk queue mode did no longer work correctly. A side-effect of this commit here is slightly cleaned-up (and more elegant) code for circular files.
* | some cosmetic changesRainer Gerhards2010-03-105-9/+13
|/ | | | | | note that a buffer size calculation was done wrong, but this was cosmetic because our buffers currently all use byte size, so even though the formula was wrong, the result was correct.
* bugfixes and testbench improvementRainer Gerhards2010-03-1011-11/+164
| | | | | | | | | | - improved testbench - bugfix: potential data loss during file stream shutdown - bugfix: potential problems during file stream shutdown The shutdown/close sequence was not clean, what potentially (but unlikely) could lead to some issues. We have not been able to describe any fatal cases, but there was some bug potential. Sequence has now been straighted out.
* bugfix: potential problem (loop, abort) when file write error occuredRainer Gerhards2010-03-093-2/+11
| | | | | | | | | | When a write error occured in stream.c, variable iWritten had the error code but this was handled as if it were the actual number of bytes written. That was used in pointer arithmetic later on, and thus could lead to all sorts of problems. However, this could only happen if the error was EINTR or the file in question was a tty. All other cases were handled properly. Now, iWritten is reset to zero in such cases, resulting in proper retries.
* retain old $OMFileFlushOnTXEnd semanticsRainer Gerhards2010-03-092-4/+4
| | | | | required because due to bug the default was actually different than specified (or better said: spec was inconsistent in doc as well).
* bugfix: $omfileFlushOnTXEnd was turned on when set to off and vice versaRainer Gerhards2010-03-092-1/+3
|
* added new property replacer option "date-rfc3164-buggyday"Rainer Gerhards2010-03-0812-8/+74
| | | | | primarily to ease migration from syslog-ng. See property replacer doc for details. [backport from 5.5.3 because urgently needed by some]
* prepared 4.6.1v4.6.1Rainer Gerhards2010-03-043-3/+3
|
* streamlined BSD utmpx.h patchCristiano2010-03-041-14/+12
| | | | Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* cosmetic: ChangeLog updateRainer Gerhards2010-03-041-0/+8
| | | | including proper credits to Mandriva team.
* Fix Large File Support (LFS) support (bug #182)Yann Droneaud2010-03-043-23/+7
| | | | | | | | | - _FILE_OFFSET_BITS must be defined before including any other system headers otherwise it does nothing. - Don't define it in rsyslog.h, let it be defined in config.h, and let ./configure script enable LFS since Autoconf provides a portable macro to enable LFS support : AC_SYS_LARGEFILE
* Includes "config.h" before any other header.Yann Droneaud2010-03-046-1/+6
| | | | | | | For consistency, ./configure generated "config.h" must be the first header include through out the project. Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* reordered some include, because otherwise we get zlib-related errorsRainer Gerhards2010-03-031-2/+1
| | | | | on some platforms (namely Debian sid). This smells like a bug in zlib. Thanks to Michael Biebl for reporting the issue.
* bugfix: potential (but very impropable) segfaults in omfileRainer Gerhards2010-03-022-2/+23
| | | | | | | | | | | | - bugfix: potential segfault in omfile when a dynafile open failed In that case, a partial cache entry was written, and some internal pointers (iCurrElt) not correctly updated. In the next iteration, that could lead to a segfault, especially if iCurrElt then points to the then-partial record. Not very likely, but could happen in practice. - bugfix (theoretical): potential segfault in omfile under low memory condition. This is only a theoretical bug, because it would only happen when strdup() fails to allocate memory - which is highly unlikely and will probably lead to all other sorts of errors.
* solved compile problems on FreeBSD 9.0 (those caused by utmpx.h)Cristiano2010-03-021-7/+20
| | | | Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* cosmetic: bugfix in ChangeLog highlightedRainer Gerhards2010-03-011-0/+4
|
* Merge branch 'v3-stable' into v4-stableRainer Gerhards2010-03-012-7/+33
|\ | | | | | | | | Conflicts: runtime/ctok.c
| * bugfix: comment char ('#') in literal terminated script parsingRainer Gerhards2010-03-012-7/+33
| | | | | | | | | | ...and thus could not be used. but tracker: http://bugzilla.adiscon.com/show_bug.cgi?id=119
* | cleanup: removed debug messages that accidently made it into the commitRainer Gerhards2010-03-012-2/+1
| |