summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* preparing for 4.1.5 releasev4.1.5Rainer Gerhards2009-03-112-2/+2
|
* bugfix: parser did not correctly parse fields in UDP-received messagesRainer Gerhards2009-03-103-2/+5
|
* fixed newly introduced memory leakRainer Gerhards2009-03-041-1/+4
| | | | (bug created 30 minutes ago or so)
* some optimization on regex codeRainer Gerhards2009-03-041-26/+1
| | | | also some commented-out leftover removed
* added ERE support in filter conditionsRainer Gerhards2009-03-047-14/+54
| | | | new comparison operation "ereregex"
* Merge branch 'beta'Rainer Gerhards2009-02-2428-153/+144
|\ | | | | | | | | | | | | | | Conflicts: ChangeLog Makefile.am configure.ac doc/manual.html
| * decreased GNUtls version requirementRainer Gerhards2009-02-241-1/+1
| | | | | | | | | | | | | | rsyslog also works with some 1.x.x versions, but I have not details any longer. I developed with a v1 version for a while. To be on the save side, I request 2.0.0 (Michael Biebl was even more conservative with 2.4.2 - which he had at hand - and so I am changing this now).
| * reflected build system changes in change logRainer Gerhards2009-02-241-0/+3
| |
| * Improve mysql configure check (for unusual paths)Michael Biebl2009-02-242-6/+1
| | | | | | | | | | | | | | | | | | | | | | Remove AC_CHECK_HEADERS([mysql/mysql.h],...) as this was causing pain for users where the mysql headers are not installed in the system include directory. It was superfluous anyways, as we check for mysql_config and set the include path to the correct directory. Update ommysql.c to use #include <mysql.h>, as mysql_config will set the include path to /path/to/include/mysql/ so <mysql/mysql.h> would not work. Remove errmsg.h include as it is not used.
| * Separate macro file for atomic operationsMichael Biebl2009-02-242-46/+54
| | | | | | | | | | | | To unclutter configure.ac and to make it easier re-usable, move the check for atomic operations into a separate m4 macro file and call the macro RS_ATOMIC_OPERATIONS (RS for RSyslog)
| * Split the m4 macros into a separate directoryMichael Biebl2009-02-243-0/+4
| |
| * Use pkg-config for GnuTLS configure checkMichael Biebl2009-02-241-22/+2
| | | | | | | | | | | | Use PKG_CHECK_MODULES instead of libgnutls-config to get the compilation flags (vastly simpler). Set minimum version to 2.4.2, as that is the oldest version I could test with.
| * Call PKG_PROG_PKG_CONFIG m4 macro unconditionally.Michael Biebl2009-02-241-0/+2
| | | | | | | | | | | | | | As all the calls to PKG_CHECK_MODULES are conditional, it can happen that PKG_PROG_PKG_CONFIG is not called (i.e. if you not use --enable-relp). So we enforce a check for pkg-config by adding it to the global checks.
| * make all cflags and libs variables uppercaseMichael Biebl2009-02-2424-80/+80
| | | | | | | | | | | | 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.
| * prepared for 3.21.10 releasev3.21.10Rainer Gerhards2009-02-023-3/+3
| |
* | Merge branch 'lastmessage'Rainer Gerhards2009-02-024-7/+27
|\ \ | | | | | | | | | | | | Conflicts: ChangeLog
| * | added new config directive $RepeatedMsgContainsOriginalMsgRainer Gerhards2009-02-024-10/+25
| | | | | | | | | | | | | | | | | | so that the "last message repeated n times" messages, if generated, may have an alternate format that contains the message that is being repeated. Note that this is on an action-by-action basis.
| * | fixed type in format string (s as string indicator missing)varmojfekoj2009-01-121-1/+1
| | | | | | | | | | | | Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
| * | experimentally altered "last message repeated n times" to include msgRainer Gerhards2008-12-191-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was suggested by David Lang, to help identify the message that was repeated. A problem is that I do not have the expanded template at hand when the "last ... times" message is generated. Spending much time on this functionality is also probably not a good thing, as the whole functionality will be overhauled (and once this is done we will not at all have the output template at hand). So the approach is to use a single field - here msg - and inlcude it as a notation of what was repeated. This is far from being perfect, but eventually good enough. I will now wait for feedback before going any further.
* | | updated project status after 3.21.10 releaseRainer Gerhards2009-02-021-4/+4
| | |
* | | Merge branch 'beta'Rainer Gerhards2009-01-302-0/+12
|\ \ \ | | |/ | |/|
| * | added info if atomic ops are available to rsyslogd -v outputRainer Gerhards2009-01-302-0/+12
| | |
* | | Merge branch 'beta'Rainer Gerhards2009-01-303-1/+12
|\| |
| * | Merge branch 'v3-stable' into beta, conclude fix for raceRainer Gerhards2009-01-304-3/+13
| |\ \ | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog runtime/msg.c
| | * | finished adding race condition fix (mostly done by merge)Rainer Gerhards2009-01-301-0/+3
| | | |
| | * | Merge branch 'debian_lenny' into v3-stableRainer Gerhards2009-01-301-12/+7
| | |\ \
| | | * | fixed copy&paste errorRainer Gerhards2009-01-281-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | ... one should at least compile before comitting - sorry, been so eager to push that out.
| | | * | bugfix: proper message locking on message destructRainer Gerhards2009-01-271-12/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It looks like a race was introduced by not locking the message mutex in msgDestruct(). In theory, I thought, the decrement should be atomic, but the whole operation may be reordered. Also it has potential for task switches. If so, that would lead to a too-early destruction and thus a potential double free - exactly what we have seen from time to time. So I think this fix addresses the issue. I have also removed anything that looks like atomic operations are supported in this version - they are not. This was very late added, found to be non-portable and pulled from that release.
| | * | | bugfix: invalid mutex access in msg.cRainer Gerhards2009-01-304-3/+10
| | | | |
| * | | | bugfix: inconsistent use of mutex/atomic operations could cause segfaultRainer Gerhards2009-01-303-7/+11
| | | | | | | | | | | | | | | | | | | | | | | | | details are too many, for full analysis see blog post at: http://blog.gerhards.net/2009/01/rsyslog-data-race-analysis.html
* | | | | added useful internal doc linkRainer Gerhards2009-01-301-1/+2
| | | | |
* | | | | minor doc: updated project statusRainer Gerhards2009-01-291-4/+4
| | | | |
* | | | | preparing for 4.1.4 releasev4.1.4Rainer Gerhards2009-01-293-2/+10
| | | | |
* | | | | Merge branch 'drd-testing'Rainer Gerhards2009-01-293-2/+9
|\ \ \ \ \
| * | | | | bugfix: unitialized mutex was used in msg.c:getPRIRainer Gerhards2009-01-263-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was subtle, because getPRI is called as part of the debugging code (always executed) in syslogd.c:logmsg.
* | | | | | fixed atomic operationsRainer Gerhards2009-01-292-7/+6
| | | | | |
* | | | | | Merge branch 'beta'Rainer Gerhards2009-01-275-30/+86
|\ \ \ \ \ \ | |/ / / / / |/| / / / / | |/ / / / | | | | | Conflicts: tools/omfile.c
| * | | | Merge branch 'v3-stable' into betaRainer Gerhards2009-01-274-29/+80
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| | * | | prepared for 3.20.3 releasev3.20.3Rainer Gerhards2009-01-193-2/+4
| | | | |
| | * | | Merge branch 'debian_lenny' into v3-stableRainer Gerhards2009-01-122-0/+38
| | |\| | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog
| | | * | fixed a potential segfault condition with $AllowedSender directiveRainer Gerhards2009-01-122-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On HUP, the root pointers were not properly cleaned up. Thanks to Michael Biebel, olgoat, and Juha Koho for reporting and analyzing the bug.
| | * | | Merge branch 'debian_lenny' into v3-stableRainer Gerhards2008-12-183-29/+38
| | |\| |
| | | * | Merge branch 'v2-stable' into debian_lennyRainer Gerhards2008-12-183-22/+33
| | | |\ \
| | | | * | bugfix: "$CreateDirs off" also disabled file creationRainer Gerhards2008-12-182-20/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Thanks to William Tisater for analyzing this bug and providing a patch. The actual code change is heavily based on William's patch.
| | | * | | doc bugfix: some spelling errors in man pages correctedGeoff Simmons2008-12-182-9/+11
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
| * | | | | bugfix: the string "Do Die" was accidently emited upon exit in non-debug modevarmojfekoj2009-01-152-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* | | | | | updated project status after 3.20.3 releaseRainer Gerhards2009-01-191-4/+5
| | | | | |
* | | | | | doc bugfix: duplicate and invalid link to regex check toolRainer Gerhards2007-12-231-2/+1
| | | | | |
* | | | | | bufgix: $PreserveFQDN was not properly handled for locally emitted messagesRainer Gerhards2008-12-204-2/+33
| |_|_|_|/ |/| | | |
* | | | | preparing for 4.1.3 releasev4.1.3Rainer Gerhards2008-12-165-7/+9
| | | | |