summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* preparing for 6.2.2 releasev6.2.2Rainer Gerhards2012-06-133-3/+5
|
* added rpm spec files for rhel / centosAbby Edwards2012-06-1312-0/+1549
|
* Merge branch 'v5-stable' into v6-stableRainer Gerhards2012-06-113-5/+15
|\ | | | | | | | | Conflicts: ChangeLog
| * bugfix: "last message repeated n times" message was missing hostnameRainer Gerhards2012-06-113-5/+13
| | | | | | | | Thanks to Zdenek Salvet for finding this bug and to Bodik for reporting
* | bugfix: did not compile under solaris due to $uptime property codeRainer Gerhards2012-06-082-0/+7
| | | | | | | | For the time being, $uptime is not supported on Solaris
* | Merge branch 'v5-stable' into v6-stableRainer Gerhards2012-06-067-34/+62
|\| | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| * preparing for 5.8.12v5.8.12Rainer Gerhards2012-06-063-3/+3
| |
| * bugfix: property PROCID was empty instead of proper nilvalue if not presentRainer Gerhards2012-06-062-1/+5
| | | | | | | | | | | | If it is not present, it must have the nilvalue "-" as of RFC5424 closes: http://bugzilla.adiscon.com/show_bug.cgi?id=332 Thanks to John N for reporting this issue.
| * bugfix: potential hang due to mutex deadlockRainer Gerhards2012-06-064-33/+18
| | | | | | | | | | | | closes: http://bugzilla.adiscon.com/show_bug.cgi?id=316 Thanks to Andreas Piesk for reporting&analyzing this bug as well as providing patches and other help in resolving it.
| * fixing memleak in recent group resolve patchRainer Gerhards2012-06-062-3/+9
| | | | | | | | also added some error checking
| * call getgrnam_r repeatedly to get all group members.Alec Warner2012-06-061-3/+12
| |
| * add small delay (50ms) after sending shutdown messageRainer Gerhards2012-06-042-0/+9
| | | | | | | | | | | | There seem to be cases where the shutdown message is otherwise not processed, not even on an idle system. Thanks to Marcin for bringing this problem up.
* | bugfix: --enable-smcustbindcdr configure directive did not workUltrabug2012-06-042-7/+10
| | | | | | | | | | | | closes: http://bugzilla.adiscon.com/show_bug.cgi?id=330 Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* | Merge branch 'v5-stable' into v6-stableRainer Gerhards2012-06-017-16/+52
|\|
| * some better code to handle queue congestionRainer Gerhards2012-06-011-10/+15
| | | | | | | | | | This is a minor optimization to spare some cycles if the timeout is set to immediate discard
| * bugfix: delayble source could block action queue, ...Rainer Gerhards2012-06-012-1/+8
| | | | | | | | | | | | | | | | | | even if there was a disk queue associated with it. The root cause of this problem was that it makes no sense to delay messages once they arrive in the action queue - the "input" that is being held in that case is the main queue worker, what makes no sense. Thanks to Marcin for alerting us on this problem and providing instructions to reproduce it.
| * cosmetic: slightly improved debug outputRainer Gerhards2012-05-311-2/+2
| |
| * bugfix: if debug message could end up in log file when forkingTomas Heinrich2012-05-294-3/+13
| | | | | | | | | | | | | | | | | | | | | | if rsyslog was set to auto-background (thus fork, the default) and debug mode to stdout was enabled, debug messages ended up in the first log file opened. Currently, stdout logging is completely disabled in forking mode (but writing to the debug log file is still possible). This is a change in behaviour, which is under review. If it causes problems to you, please let us know. Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
| * bugfix/omudpspoof: problems, including abort, happend when run on multiple ↵Rainer Gerhards2012-05-142-0/+14
| | | | | | | | | | | | | | threads. Root cause is that libnet is not thread-safe. Omudpspoof now guards libnet calls with their own mutex.
* | Merge branch 'v5-stable' into v6-stableRainer Gerhards2012-05-102-11/+19
|\| | | | | | | | | Conflicts: ChangeLog
| * bugfix: disk queue was not persisted on shutdown, regression of fix toRainer Gerhards2012-05-102-12/+12
| | | | | | | | | | | | | | | | http://bugzilla.adiscon.com/show_bug.cgi?id=299 The new code also handles the case of shutdown of blocking light and full delayable sources somewhat smarter and permits, assuming sufficient timouts, to persist message up to the max queue capacity. Also some nits in debug instrumentation have been fixed.
* | preparing for 6.2.1v6.2.1Rainer Gerhards2012-05-103-3/+3
| |
* | Merge branch 'v5-stable' into v6-stableRainer Gerhards2012-05-104-16/+7
|\| | | | | | | | | Conflicts: ChangeLog
| * bugfix/tcpflood: sending small test files did not work correctlyRainer Gerhards2012-05-102-2/+5
| |
| * cleanup: removing no longer needed macrosRainer Gerhards2012-05-042-14/+1
| |
* | Merge branch 'v5-stable' into v6-stableRainer Gerhards2012-05-036-19/+120
|\| | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| * preparing for 5.8.11 releasev5.8.11Rainer Gerhards2012-05-033-3/+3
| |
| * ommysql: added support for new mysql_library_[init/exit]Rainer Gerhards2012-05-032-1/+27
| |
| * bugfix: ommysql did not properly init/exit the mysql runtime libraryRainer Gerhards2012-05-032-1/+14
| | | | | | | | | | | | | | This could lead to segfaults. Triggering condition: multiple action instances using ommysql. Thanks to Tomas Heinrich for reporting this problem and providing an initial patch (which my solution is based on, I need to add more code to clean the mess up).
| * bugfix: rsyslog did not terminate when delayable inputs were blockedRainer Gerhards2012-05-032-5/+47
| | | | | | | | | | | | | | ...due to unvailable sources. Fixes: http://bugzilla.adiscon.com/show_bug.cgi?id=299 Thanks to Marcin M for bringing up this problem and Andre Lorbach for helping to reproduce and fix it.
| * bugfix: inside queue.c, some thread cancel states were not correctly reset.Rainer Gerhards2012-05-032-5/+8
| | | | | | | | | | | | While this is a bug, we assume it did have no practical effect because the reset as it was done was set to the state the code actually had at this point. But better fix this...
| * debug: slightly improved debug info for input module startupRainer Gerhards2012-05-031-0/+1
| |
| * bugfix: active input in "light delay state" could block rsyslog terminationRainer Gerhards2012-04-272-0/+6
| | | | | | | | at least for prolonged period of time...
| * doc: correcting sample section of omudpspoofRainer Gerhards2012-04-201-8/+8
| | | | | | | | again, credits to Jo Rhett for reporting this issue
| * doc: omudpspoof doc had invalid directivesRainer Gerhards2012-04-201-2/+2
| | | | | | | | Thanks to Jo Rhett for reporting the bug.
* | Merge branch 'v5-stable' into v6-stableRainer Gerhards2012-04-192-2/+4
|\|
| * doc: added last bugfix to ChangeLogRainer Gerhards2012-04-191-0/+2
| |
| * bugfix: imptcp input name could not be setRainer Gerhards2012-04-191-2/+2
| | | | | | | | | | | | bugfix: imptcp input name could not be set config directive was accepted, but had no effect
* | Merge branch 'v5-stable' into v6-stableRainer Gerhards2012-04-184-8/+45
|\|
| * fixed compile bugRainer Gerhards2012-04-181-1/+1
| | | | | | | | | | actually a regression from last bugfix - I just wonder why the other machine did not complain :-S
| * bugfix: assigned ruleset was lost when using disk queuesRainer Gerhards2012-04-184-8/+45
| | | | | | | | | | | | This looked quite hard to diagnose for disk-assisted queues, as the pure memory part worked well, but ruleset info was lost for messages stored inside the disk queue.
* | doc: added new $uptime propertyRainer Gerhards2012-04-131-0/+4
| |
* | Add a system property, PROP_SYS_UPTIME, to place up-time markers into ↵Steven A. Falco2012-04-132-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | rsyslog output. Here is an example template, where this is used: $template CoincidentFileFormat,"[UP=%$uptime%sec] %TIMESTAMP% %HOSTNAME% %syslogtag%%msg:::sp-if-no-1st-sp%%msg:::drop-last-lf%\n" and here is an example line of output using the above template: [UP=20sec] Apr 12 21:50:00 atom kernel: imklog 5.8.7, log source = /proc/kmsg started.
* | Merge branch 'v5-stable' into v6-stableRainer Gerhards2012-04-126-136/+171
|\| | | | | | | | | Conflicts: ChangeLog
| * imuxsock: do not cache hostnameRainer Gerhards2012-04-122-11/+5
| |
| * Free also LocalDomain in glbl class destructorMarius Tomaschewski2012-04-111-0/+1
| | | | | | | | Signed-off-by: Marius Tomaschewski <mt@suse.com>
| * Allocate LocalDomain as new stringMarius Tomaschewski2012-04-111-0/+3
| | | | | | | | | | | | | | | | LocalDomain points to "" or the domain in LocalHostName, allocate as new string before passing to SetLocalDomain or free will fail later. Signed-off-by: Marius Tomaschewski <mt@suse.com>
| * doc: credits update for last bugfixRainer Gerhards2012-04-111-1/+2
| |
| * bugfix: hostname was not requeried on HUPRainer Gerhards2012-04-115-125/+161
| | | | | | | | Thanks to Marius Tomaschewski for reporting this bug.
* | Merge branch 'v5-stable' into v6-stableRainer Gerhards2012-04-073-5/+19
|\| | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html