summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* changed imudp to utilize epoll(), where available.Rainer Gerhards2009-09-091-0/+3
| | | | | This shall provide slightly better performance (just slightly because we called select() rather infrequently on a busy system).
* added new config option $InputUnixListenSocketCreatePathRainer Gerhards2009-09-041-0/+5
| | | | | | | to permit the auto-creation of pathes to additional log sockets. This turns out to be useful if they reside on temporary file systems and rsyslogd starts up before the daemons that create these sockets (rsyslogd always creates the socket itself if it does not exist).
* Merge branch 'master' into javaRainer Gerhards2009-09-041-3/+22
|\ | | | | | | | | Conflicts: ChangeLog
| * Merge branch 'v4-devel'Rainer Gerhards2009-09-041-1/+11
| |\ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html doc/rsyslog_conf_global.html tools/syslogd.c
| | * Merge branch 'v4-beta' into v4-develRainer Gerhards2009-09-041-0/+2
| | |\
| | | * Merge branch 'v4-stable' into v4-betaRainer Gerhards2009-09-041-0/+2
| | | |\
| | | | * Merge branch 'v3-stable' into v4-stableRainer Gerhards2009-09-041-0/+2
| | | | |\ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: doc/rsyslog_conf.html
| | | | | * clarified use of $ActionsSendStreamDriver[AuthMode/PermittedPeers]Rainer Gerhards2009-09-041-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | in doc set (require TLS drivers)
| | * | | | added $LogRSyslogStatusMessages configuration directiveRainer Gerhards2009-09-041-0/+5
| | |/ / / | | | | | | | | | | | | | | | | | | | | ...permitting to turn off rsyslog start/stop/HUP messages. See Debian ticket http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=463793
| * | | | Merge branch 'v4-devel' into betaRainer Gerhards2009-09-031-1/+12
| |\| | |
| | * | | Merge branch 'v4-stable' into v4-betaRainer Gerhards2009-09-031-1/+12
| | |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| | | * | bugfix: reverse lookup reduction logic in imudp do DNS queries too oftenRainer Gerhards2009-09-031-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A comparison was done between the current and the former source address. However, this was done on the full sockaddr_storage structure and not on the host address only. This has now been changed for IPv4 and IPv6. The end result of this bug could be a higher UDP message loss rate than necessary (note that UDP message loss can not totally be avoided due to the UDP spec)
| | | * | preparing for 4.4.1 releasev4.4.1Rainer Gerhards2009-09-021-1/+1
| | | | |
* | | | | added --enable-gui configure switchRainer Gerhards2009-08-271-0/+5
|/ / / / | | | | | | | | | | | | | | | | ... which now permits to enable/disable GUI components. This also checks if Java is present and, if not, complains during ./configure.
* | | | Merge branch 'beta'Rainer Gerhards2009-08-271-0/+11
|\| | |
| * | | Merge branch 'v4-stable' into v4-betaRainer Gerhards2009-08-271-0/+16
| |\| | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog runtime/msg.c
| | * | bugfix (backport): omfwd segfaultRainer Gerhards2009-08-271-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Note that the orginal (higher version) patch states this happens only when debugging mode is turned on. That statement is wrong: if debug mode is turned off, the message is not being emitted, but the division by zero in the actual parameters still happens.
| * | | bugfix: message sanitation had some issuesRainer Gerhards2009-08-261-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - control character DEL was not properly escaped - NUL and LF characters were not properly stripped if no control character replacement was to be done - NUL characters in the message body were silently dropped (this was a regeression introduced by some of the recent optimizations)
| * | | very minor fix: removing invalid doc left-over from mergeRainer Gerhards2009-08-261-9/+0
| | | |
* | | | Merge branch 'beta'Rainer Gerhards2009-08-261-0/+11
|\ \ \ \
| * \ \ \ Merge branch 'v4-stable' into v4-develRainer Gerhards2009-08-251-9/+11
| |\ \ \ \ | | |/ / / | |/| / / | | |/ / | | | | | | | | Conflicts: ChangeLog runtime/msg.c
| | * | bugfix: invalid double-quoted PRI, among others in outgoing messagesRainer Gerhards2009-08-251-0/+3
| | | | | | | | | | | | | | | | | | | | This causes grief with all receivers. Bug tracker: http://bugzilla.adiscon.com/show_bug.cgi?id=147
| | * | features requiring Java are automatically disabled if Java is not presentRainer Gerhards2009-08-251-0/+2
| | | | | | | | | | | | | | | | (thanks to Michael Biebl for his help!)
| | * | bugfix: Java testing tools were required, even if testbench was disabledRainer Gerhards2009-08-241-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | This resulted in build errors if no Java was present on the build system, even though none of the selected option actually required Java. (I forgot to backport a similar fix to newer releases).
* | | | Merge branch 'beta'Rainer Gerhards2009-08-211-0/+5
|\| | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog
| * | | bugfix: strings improperly reused [backported from v5]Rainer Gerhards2009-08-211-0/+5
| | | | | | | | | | | | | | | | | | | | ... resulting in some message properties be populated with strings from previous messages. This was caused by an improper predicate check.
* | | | bugfix: strings improperly reusedRainer Gerhards2009-08-211-0/+3
| | | | | | | | | | | | | | | | | | | | ... resulting in some message properties be populated with strings from previous messages. This was caused by an improper predicate check.
* | | | Merge branch 'beta'Rainer Gerhards2009-08-211-13/+8
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| * | | preparing for 4.5.2v4.5.2Rainer Gerhards2009-08-211-1/+1
| | | |
| * | | Merge branch 'v4-devel' into v4-betaRainer Gerhards2009-08-211-1/+33
| |\ \ \
| * \ \ \ Merge branch 'v4-stable' into v4-betaRainer Gerhards2009-08-211-6/+10
| |\ \ \ \ | | | |/ / | | |/| | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| | * | | Merge branch 'v4.3.2' (v4-beta) into v4-stablev4.4.0Rainer Gerhards2009-08-211-1/+56
| | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html tests/Makefile.am
| | * \ \ \ Merge branch 'v3-stable' into v4-stableRainer Gerhards2009-07-131-1/+5
| | |\ \ \ \ | | | | |_|/ | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
* | | | | | Merge branch 'beta'Rainer Gerhards2009-08-201-0/+3
|\ \ \ \ \ \ | | |_|_|_|/ | |/| | | |
| * | | | | bugfix: hostnames with dashes in them were incorrectly treated as malformedRainer Gerhards2009-08-201-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ... thus causing them to be treated as TAG (this was a regression introduced from the "rfc3164 strict" change in 4.5.0).
* | | | | | bugfix: hostnames with dashes in them were incorrectly treated as malformedRainer Gerhards2009-08-201-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ... thus causing them to be treated as TAG (this was a regression introduced from the "rfc3164 strict" change in 4.5.0). Testbench has been updated to include a smaple message with a hostname containing a dash.
* | | | | | added new config option $ActionWriteAllMarkMessagesRainer Gerhards2009-08-201-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this option permites to process mark messages under all circumstances, even if an action was recently called. This can be useful to use mark messages as a kind of heartbeat.
* | | | | | preparing for 5.1.4 releasev5.1.4Rainer Gerhards2009-08-201-1/+12
| | | | | |
* | | | | | added important bug fix doc to current releaseRainer Gerhards2009-08-191-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the bug fix was imported from 4.5.1, but it is important enough to be highlighted in its own right.
* | | | | | Merge branch 'beta'Rainer Gerhards2009-08-191-0/+10
|\| | | | |
| * | | | | bugfix: potential segfault in output file writer (omfile)Rainer Gerhards2009-08-181-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In async write mode, we use modular arithmetic to index the output buffer array. However, the counter variables accidently were signed, thus resulting in negative indizes after integer overflow. That in turn could lead to segfaults, but was depending on the memory layout of the instance in question (which in turn depended on a number of variables, like compile settings but also configuration). The counters are now unsigned (as they always should have been) and so the dangling mis-indexing does no longer happen. This bug potentially affected all installations, even if only some may actually have seen a segfault.
* | | | | | Merge branch 'beta'Rainer Gerhards2009-08-181-0/+4
|\| | | | |
| * | | | | added $InputTCPMaxListeners directiveRainer Gerhards2009-08-171-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | permits to specify how many TCP servers shall be possible (default is 20).
| * | | | | bugfix: if tcp listen port could not be created, no error message was emittedRainer Gerhards2009-08-171-0/+2
| | | | | |
* | | | | | Merge branch 'beta'Rainer Gerhards2009-08-171-0/+3
|\| | | | |
| * | | | | legacy syslog parser changed so that it now accepts date stamps in wrong case.Rainer Gerhards2009-08-171-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | Some devices seem to create them and I do not see any harm in supporting that.
* | | | | | bugfix: discard action did not work (did not discard messages)Rainer Gerhards2009-07-301-0/+1
| | | | | |
* | | | | | bugfix: discard action caused segfaultRainer Gerhards2009-07-301-0/+3
| | | | | |
* | | | | | finishing touches for 5.1.3v5.1.3Rainer Gerhards2009-07-281-1/+1
| | | | | |
* | | | | | internal: added ability to terminate input modules not via pthread_cancel...Rainer Gerhards2009-07-201-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ... but an alternate approach via pthread_kill. This is somewhat safer as we do not need to think about the cancel-safeness of all libraries we use. However, not all inputs can easily supported, so this now is a feature that can be requested by the input module (the most important ones request it).