summaryrefslogtreecommitdiffstats
path: root/runtime
Commit message (Collapse)AuthorAgeFilesLines
* program name filter ! in the configuration cannot be resetKiss Gabor (Bitman)2010-08-051-2/+1
| | | | Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* bugfix: comment char ('#') in literal terminated script parsingRainer Gerhards2010-03-011-7/+30
| | | | | ...and thus could not be used. but tracker: http://bugzilla.adiscon.com/show_bug.cgi?id=119
* correcting -q/-Q patch - was invalidRainer Gerhards2009-11-122-2/+5
| | | | | This is the correct patch. The previous one solved the segfault, but disabled the -q/Q options.
* bugfix: segfault on startup when -q or -Q option was givenRainer Gerhards2009-11-121-2/+2
| | | | | bug tracker: http://bugzilla.adiscon.com/show_bug.cgi?id=157 Thanks to Jonas Nogueira for reporting this bug.
* bugfix: potential hang condition on queue shutdownRainer Gerhards2009-10-201-2/+0
|
* bugfix: invalid mutex release in msg.cRainer Gerhards2009-06-241-0/+2
| | | | | Detected under threading debugger, seems not to have any impact on actual deployments.
* some minor bugfixesRainer Gerhards2009-06-181-1/+1
| | | | | | | | | | | | | | | - bugfix: invalid error message issued if $inlcudeConfig was on an empty set of files (e.g. *.conf, where none such files existed) thanks to Michael Biebl for reporting this bug - bugfix: when run in foreground (but not in debug mode), a debug message ("DoDie called") was emitted at shutdown. Removed. thanks to Michael Biebl for reporting this bug - bugfix: some garbagge was emitted to stderr on shutdown. This garbage consisted of file names, which were written during startup (key point: not a pointer error) thanks to Michael Biebl for reporting this bug - bugfix: startup and shutdown message were emitted to stdout thanks to Michael Biebl for reporting this bug
* fixed a regression of yesterday's patchRainer Gerhards2009-05-292-1/+2
| | | | | ... I know I should not have done this to a stable branch... Thankfully nothing was yet released.
* small enhancement: config validation run now exits with code 1 if an error ↵Rainer Gerhards2009-05-281-0/+6
| | | | | | | | | | is detected. This change is considered important but small enough to apply it directly to the stable version. [But it is a border case, the change requires more code than I had hoped. Thus I have NOT tried to actually catch all cases, this is left for the current devel releases, if necessary]
* Fix compiler warningsMichael Biebl2009-05-121-0/+1
| | | | Include <string.h> for memcpy and strlen.
* bugfix: light and full delay watermarks had invalid valuesRainer Gerhards2009-04-231-6/+8
| | | | | ... badly affecting performance for delayable inputs (but not causeing any other issues)
* Merge branch 'v3-stable' into betaRainer Gerhards2009-04-091-0/+2
|\ | | | | | | | | Conflicts: ChangeLog
| * Merge branch 'v2-stable' into v3-stableRainer Gerhards2009-04-091-0/+2
| |
* | Merge branch 'v3-stable' into betaRainer Gerhards2009-04-027-9/+109
|\| | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| * preparing for 3.20.5 releasev3.20.5Rainer Gerhards2009-04-021-0/+8
| |
| * Merge branch 'dapatch' into v3-stableRainer Gerhards2009-04-025-6/+98
| |\
| | * bugfix: potential abort with DA queue after high watermark is reachedRainer Gerhards2009-03-255-6/+98
| | | | | | | | | | | | | | | | | | There exists a race condition that can lead to a segfault. Thanks go to vbernetr, who performed the analysis and provided patch, which I only tweaked a very little bit.
| * | fixed bugs in RainerScriptvarmojfekoj2009-03-162-3/+3
| |/ | | | | | | | | | | | | | | - when converting a number and a string to a common type, both were actually converted to the other variable's type. - the value of rsCStrConvertToNumber() was miscalculated. Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* | make all cflags and libs variables uppercaseMichael Biebl2009-02-241-9/+9
| | | | | | | | | | | | pkg-config uses uppercase for its _CFLAGS and _LIBS variable names. So we follow suit and convert all _cflags and _libs variables to uppercase for more consistency.
* | added info if atomic ops are available to rsyslogd -v outputRainer Gerhards2009-01-301-0/+7
| |
* | Merge branch 'v3-stable' into beta, conclude fix for raceRainer Gerhards2009-01-302-2/+6
|\| | | | | | | | | | | Conflicts: ChangeLog runtime/msg.c
| * Merge branch 'debian_lenny' into v3-stableRainer Gerhards2009-01-301-12/+7
| |
| * bugfix: invalid mutex access in msg.cRainer Gerhards2009-01-302-2/+6
| |
* | bugfix: inconsistent use of mutex/atomic operations could cause segfaultRainer Gerhards2009-01-302-7/+8
| | | | | | | | | | details are too many, for full analysis see blog post at: http://blog.gerhards.net/2009/01/rsyslog-data-race-analysis.html
* | Merge branch 'v3-stable' into betaRainer Gerhards2009-01-271-0/+29
|\| | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| * Merge branch 'debian_lenny' into v3-stableRainer Gerhards2009-01-121-0/+29
| | | | | | | | | | Conflicts: ChangeLog
* | Merge branch 'v3-stable' into betaRainer Gerhards2008-12-048-3/+88
|\| | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| * bugfix: memory leaks in gtls netstream driverRainer Gerhards2008-12-032-1/+11
| |
| * minor: net.c did not compile if GSSAPI support was disabledRainer Gerhards2008-12-031-0/+2
| |
| * added interface function to nsd_gtls needed for ACL controlRainer Gerhards2008-12-011-0/+15
| | | | | | | | | | | | | | | | The legacy ACL system needs access to the remote sockaddr_storage data structure. This has been implemented for the ptcp driver and now follows for gtls. See recent commits for reason. We also moved up the version numbers in preparation of the release.
| * bugfix: $AllowedSender handled invalidly for plain TCP transportRainer Gerhards2008-11-295-2/+60
| |
* | Merge branch 'v3-stable' into betaRainer Gerhards2008-11-293-23/+54
|\| | | | | | | | | Conflicts: runtime/rsyslog.h
| * security bugfix: $AllowedSender was not honored,Rainer Gerhards2008-11-293-23/+54
| | | | | | | | ...all senders were permitted instead
* | Merge branch 'v3-stable' into betaRainer Gerhards2008-11-111-1/+9
|\| | | | | | | | | | | | | Conflicts: ChangeLog doc/manual.html
| * enhance: regex nomatch option "ZERO" has been addedRainer Gerhards2008-11-111-0/+2
| | | | | | | | | | | | This allows to return the string 0 if a regular expression is not found. This is probably useful for storing numerical values into database columns.
| * improved debug output for regular expressions inside property replacerRainer Gerhards2008-11-111-1/+7
| | | | | | | | | | | | RE's seem to be a big trouble spot and I would like to have more information inside the debug log. So I decided to add some additional debug strings permanently.
* | Merge branch 'master' into betaRainer Gerhards2008-11-1126-327/+622
|\ \ | |/ |/| | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| * Merge branch 'beta'Rainer Gerhards2008-10-211-13/+32
| |\
| * | added capability to support multiple module search pathes.Marius Tomaschewski2008-10-202-35/+77
| | | | | | | | | | | | Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
| * | Merge branch 'beta'Rainer Gerhards2008-10-161-3/+3
| |\ \ | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog
| * \ \ Merge branch 'beta'Rainer Gerhards2008-10-091-1/+1
| |\ \ \
| * \ \ \ Merge branch 'beta'Rainer Gerhards2008-10-021-1/+1
| |\ \ \ \
| * | | | | consolidated time calls during msg object creationRainer Gerhards2008-10-021-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ...this improves performance and consistency and also fixes a bug where subsecond time properties generated by imfile, imklog and internal messages could be slightly inconsistent.
| * | | | | fixed git merge bug (duplicate code could not be detected)Rainer Gerhards2008-10-021-19/+0
| | | | | |
| * | | | | Merge branch 'master' into helgrindRainer Gerhards2008-10-021-0/+21
| |\ \ \ \ \
| | * \ \ \ \ Merge branch 'beta'Rainer Gerhards2008-10-021-3/+24
| | |\ \ \ \ \
| * | | | | | | removed no longer needed mutex callsRainer Gerhards2008-10-021-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | problem source is that getnameinfo() is not cancel-safe, not that it is not thread-safe. It is now guarded against cancellation.
| * | | | | | | bugfix: segfault when main queue was in direct modeRainer Gerhards2008-10-011-1/+1
| | | | | | | |
| * | | | | | | prevent getnameinfo() from being cancelledRainer Gerhards2008-09-301-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ... but removed the mutex, as the problem seems to be in cancel processing, so the mutex is no longer necessary
| * | | | | | | improved threadingRainer Gerhards2008-09-305-13/+35
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - changed sequence when awakening thread - removed no longer needed condition variable - EXPERIMENTALLY added mutex guarding to hostname lookups this is to be removed if it does not have any verifyable useful effect