summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* clarified cost and effect of SIGHUPv3.19.12Rainer Gerhards2008-10-161-0/+8
|
* increased maximum size of a configuration statement to 4K (was 1K)Rainer Gerhards2008-10-162-4/+6
|
* Merge branch 'v3-stable' into betaRainer Gerhards2008-10-092-0/+4
|\
| * Merge branch 'v2-stable' into v3-stableRainer Gerhards2008-10-092-0/+4
| |\ | | | | | | | | | | | | | | | Conflicts: syslogd.c
| | * bugfix: memory leaks in rsyslogd, primarily in singlethread modeFederico Nunez2008-10-091-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Thanks to Frederico Nunez for providing the fix. The actual patch was commited before this one - unfortunately I forgot to set the author correct when commiting it and then it was pushed to the online repository. Sorry for this ;) Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
| | * fixed memory leaksRainer Gerhards2008-10-092-1/+7
| | | | | | | | | | | | | | | | | | | | | - a big one in syslogd.c, which caused messages not to be freed when compiled for single-threading mode - a small one in the file output handler, outchannels, when a size-reached action was to be executed
* | | Merge branch 'v3-stable' into betaRainer Gerhards2008-10-092-1/+4
|\| |
| * | bugfix[minor]: light delay queue mark not properly handledRainer Gerhards2008-10-092-1/+4
| | | | | | | | | | | | | | | | | | if queue size reached light_delay mark, enqueuing could potentially be blocked for a longer period of time, which was not the behaviour desired.
* | | bugfix: subseconds where not correctly extracted from a timestampRainer Gerhards2008-10-022-1/+5
| | | | | | | | | | | | | | | if that timestamp did not contain any subsecond information (the resulting string was garbagge but should have been "0", what it now is).
* | | Merge branch 'v3-stable' into betaRainer Gerhards2008-10-029-13/+140
|\| | | | | | | | | | | | | | | | | Conflicts: runtime/net.c
| * | bugfix: rsyslogd could hang on HUPRainer Gerhards2008-10-022-3/+28
| | | | | | | | | | | | | | | | | | because getnameinfo() is not cancel-safe, but was not guarded against being cancelled. pthread_cancel() is routinely being called during HUP processing.
| * | added doc on how to build from source repositoryRainer Gerhards2008-10-017-8/+77
| | |
| * | added index.html as an entry point to the manualRainer Gerhards2008-09-242-0/+33
| | | | | | | | | | | | thanks to Michael Biebl for suggesting it
| * | doc fix: the gss-api output plugin is called omgssapiMichael Biebl2008-09-241-2/+2
| | | | | | | | | | | | Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* | | Merge branch 'v3-stable' into betaRainer Gerhards2008-09-234-6/+205
|\| |
| * | added doc on malformed messages, cause and how to work-around, to the doc setRainer Gerhards2008-09-234-6/+205
| | |
* | | Merge branch 'v3-stable' into betaRainer Gerhards2008-09-222-4/+7
|\| |
| * | doc bugfix: $ActionExecOnlyWhenPreviousIsSuspended was still misspelledRainer Gerhards2008-09-222-4/+7
| | | | | | | | | | | | | | | ... as $...OnlyIfPrev... in some parts of the documentation. Thanks to Lorenzo M. Catucci for reporting this bug.
* | | Merge branch 'v3-stable' into betaRainer Gerhards2008-09-222-3/+12
|\| | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| * | bugfix: imudp input module could cause segfault on HUPRainer Gerhards2008-09-222-2/+9
| | | | | | | | | | | | | | | It did not properly de-init a variable acting as a linked list head. That resulted in trying to access freed memory blocks after the HUP.
| * | bumped version numberRainer Gerhards2008-09-183-2/+4
| | |
| * | preparing for 3.18.4v3.18.4Rainer Gerhards2008-09-181-1/+1
| | |
* | | fixed duplicate error numberRainer Gerhards2008-09-121-1/+1
| | | | | | | | | | | | | | | This probably happened during a branch merge and was not detected. Fixed now, should not haved any harm.
* | | Merge branch 'v3-stable' into betaRainer Gerhards2008-09-126-12/+57
|\| | | | | | | | | | | | | | | | | | | | Conflicts: runtime/datetime.h runtime/rsyslog.h
| * | Merge branch 'v2-stable' into v3-stableRainer Gerhards2008-09-121-0/+8
| |\| | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog syslogd.c
| | * bugfix: copy&paste error lead to dangling ifRainer Gerhards2008-09-122-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | this caused a very minor issue with re-formatting a RFC3164 date when the message was invalidly formatted and had a colon immediately after the date. This was in the code for some years (even v1 had it) and I think it never had any effect at all in practice. Though, it should be fixed - but definitely nothing to worry about.
| * | bugfix: colon after date should be ignored, but was not.Rainer Gerhards2008-09-124-9/+34
| | | | | | | | | | | | | | | This has now been corrected. Required change to the internal ParseTIMESTAMP3164() interface.
| * | bugfix: option value for legacy -a option could not be specifiedMarius Tomaschewski2008-09-102-1/+4
| | | | | | | | | | | | | | | | | | resulting in strange operations. Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
| * | bugfix: incorrect default discard severity could cause message lossRainer Gerhards2008-09-103-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | default discard severity was incorrectly set to 4, which lead to discard-on-queue-full to be enabled by default. That could cause message loss where non was expected. The default has now been changed to the correct value of 8, which disables the functionality. This problem applied both to the main message queue and the action queues. Thanks to Raoul Bhatia for pointing out this problem.
| * | bugfix: error code -2025 was used for two different errors.Rainer Gerhards2008-09-042-1/+4
| | | | | | | | | | | | | | | | | | Queue full is now -2074 and -2025 is unique again. (did cause no real problem except for troubleshooting)
* | | Merge branch 'v3-stable' into betaRainer Gerhards2008-09-026-8/+77
|\| | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| * | doc bugfix: rsyslog.conf man page improved and minor nit fixedLukas Kuklinek2008-09-022-1/+51
| | | | | | | | | | | | Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
| * | bumped version numberRainer Gerhards2008-09-013-2/+4
| | |
| * | bugfix: order-of magnitude issue with base-10 size definitions in config ↵RB2008-09-012-5/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | file parser. Could lead to invalid sizes, constraints etc for e.g. queue files and any other object whose size was specified in base-10 entities. Did not apply to binary entities. Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
| * | bugfix: action was not called when system time was set backwardsvarmojfekoj2008-09-012-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | (until the previous time was reached again). There are still some side-effects when time is rolled back (A time rollback is really a bad thing to do, ideally the OS should issue pseudo time (like NetWare did) when the user tries to roll back time). Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* | | preparing for 3.19.11v3.19.11Rainer Gerhards2008-08-151-1/+2
| | |
* | | Merge branch 'v3-stable' into betaRainer Gerhards2008-08-154-11/+35
|\| | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/rsyslog_ng_comparison.html
| * | preparing for 3.18.3v3.18.3Rainer Gerhards2008-08-152-2/+2
| | |
| * | fixed cross-platform compile problem introduced with recent changeRainer Gerhards2008-08-152-7/+14
| | | | | | | | | | | | ...which fixed the imfile segfault issue.
| * | updated syslog-ng comparison thanks to WilliamRainer Gerhards2008-08-151-4/+4
| | |
| * | bugfix: imfile could cause a segfault upon rsyslogd HUP and terminationRainer Gerhards2008-08-144-7/+19
| | | | | | | | | | | | | | | Thanks to lperr for an excellent bug report that helped detect this problem.
* | | Merge branch 'v3-stable' into betaRainer Gerhards2008-08-136-7/+89
|\| | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html plugins/imuxsock/imuxsock.c
| * | disabled flow control for imuxsockRainer Gerhards2008-08-132-1/+5
| | | | | | | | | | | | | | | | | | It could cause system hangs under some circumstances. The devel (3.21.3 and above) will re-enable it and provide enhanced configurability to overcome the problems if they occur.
| * | enhanced ommysql to support custom port to connect to serverRainer Gerhards2008-08-125-5/+73
| | | | | | | | | | | | | | | | | | Port can be set via new $ActionOmmysqlServerPort config directive Note: this was a very minor change and thus deemed appropriate to be done in the stable release.
| * | bugfix: misspelled config directive + bumped version numberRainer Gerhards2008-08-124-3/+11
| | | | | | | | | | | | | | | | | | | | | | | | Previously was $MainMsgQueueWorkeTimeoutrThreadShutdown, is now $MainMsgQueueWorkerTimeoutThreadShutdown. Note that the misspelled directive is not preserved - if the misspelled directive was used (which I consider highly unlikely), the config file must be changed. Thanks to lperr for reporting the bug.
| * | preparing for 3.18.2 releasev3.18.2Rainer Gerhards2008-08-082-2/+2
| | |
* | | Merge branch 'v3-stable' into betaRainer Gerhards2008-08-073-2/+27
|\| | | | | | | | | | | | | | | | | Conflicts: omfwd.c
| * | Merge branch 'v2-stable' into v3-stableRainer Gerhards2008-08-073-2/+27
| |\| | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog doc/manual.html doc/rsyslog_conf.html omfwd.c
| | * bugfix: IPv6 addresses could not be specified in forwarding actionv2.0.6Rainer Gerhards2008-08-074-4/+26
| | | | | | | | | | | | | | | New syntax @[addr]:port introduced to enable that. Root problem was IPv6 addresses contain colons. (backport from 3.21.3)
* | | Merge branch 'v3-stable' into betaRainer Gerhards2008-07-2519-46/+51
|\| | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html