beta

ChangeLog for 5.3.5 (beta)

Version 5.3.5 [BETA] (rgerhards), 2009-11-13

  • some light performance enhancement by replacing time() call with much faster (at least under linux) gettimeofday() calls.
  • some improvement of omfile performance with dynafiles saved costly time() calls by employing a logical clock, which is sufficient for the use case
  • bugfix: omudpspoof miscalculated source and destination ports while this was probably not noticed for source ports, it resulted in almost all destination ports being wrong, except for the default port of 514, which by virtue of its binary representation was calculated correct (and probably thus the bug not earlier detected).
  • bugfixes imported from earlier releases
    • bugfix: named pipes did no longer work (they always got an open error)
      this was a regression from the omfile rewrite in 4.5.0

    • bugfix(testbench): sequence check was not always performed correctly, that could result in tests reporting success when they actually failed
  • improved testbench: added tests for UDP forwarding and omudpspoof
  • doc bugfix: omudpspoof had wrong config command names (“om” missing)
  • bugfix [imported from 4.4.3]: $ActionExecOnlyOnceEveryInterval did not work.
  • [inport v4] improved testbench, contains now tcp and gzip test cases
  • [import v4] added a so-called “On Demand Debug” mode, in which debug output can be generated only after the process has started, but not right from the beginning. This is assumed to be useful for hard-to-find bugs. Also improved the doc on the debug system.
  • bugfix: segfault on startup when -q or -Q option was given [imported from v3-stable]

ChangeLog for 4.5.6 (v4-beta)

Version 4.5.6 [v4-beta] (rgerhards), 2009-11-05

  • bugfix: named pipes did no longer work (they always got an open error) this was a regression from the omfile rewrite in 4.5.0
  • bugfix(minor): diag function returned wrong queue memeber count for the main queue if an active DA queue existed. This had no relevance to real deployments (assuming they are not running the debug/diagnostic module…), but sometimes caused grief and false alerts in the testbench.
  • included some important fixes from v4-stable:
    • bugfix: invalid handling of zero-sized messages
    • bugfix: zero-sized UDP messages are no longer processed
    • bugfix: random data could be appended to message
    • bugfix: reverse lookup reduction logic in imudp do DNS queries too often
  • bugfix(testbench): testcase did not properly wait for rsyslod shutdown thus some unpredictable behavior and a false negative test result could occur. [BACKPORTED from v5]
  • bugfix(testbench): sequence check was not always performed correctly, that could result in tests reporting success when they actually failed

ChangeLog for 4.5.5 (v4-beta)

Version 4.5.5 [v4-beta] (rgerhards), 2009-10-21

  • added $InputTCPServerNotifyOnConnectionClose config directive see doc for details
  • bugfix: debug string larger than 1K were improperly displayed. Max size is now 32K
  • bugfix: invalid storage class selected for some size config parameters. This resulted in wrong values. The most prominent victim was the directory creation mode, which was set to zero in some cases. For details, see related blog post:

    http://blog.gerhards.net/2009/10/another-note-on-hard-to-find-bugs.html

ChangeLog for 5.1.6 (v5-beta)

Version 5.1.6 [v5-beta] (rgerhards), 2009-10-15

  • feature imports from v4.5.6
  • bugfix: potential race condition when queue worker threads were terminated
  • bugfix: solved potential (temporary) stall of messages when the queue was almost empty and few new data added (caused testbench to sometimes hang!)
  • fixed some race condition in testbench
  • added more elaborate diagnostics to parts of the testbench
  • bugfixes imported from 4.5.4:
    • bugfix: potential segfault in stream writer on destruction
    • bugfix: potential race in object loader (obj.c) during use/release
    • bugfixes: potential problems in out file zip writer
  • included some important fixes from 4.4.2:
    • bugfix: invalid handling of zero-sized messages
    • bugfix: zero-sized UDP messages are no longer processed
    • bugfix: random data could be appended to message
    • bugfix: reverse lookup reduction logic in imudp do DNS queries too often

ChangeLog for 4.5.3 (v4-beta)

Version 4.5.3 [v4-beta] (rgerhards), 2009-09-17

  • bugfix: repeated messages were incorrectly processed
    this could lead to loss of the repeated message content. As a side-
    effect, it could probably also be possible that some segfault occurs
    (quite unlikely). The root cause was that some counters introduced
    during the malloc optimizations were not properly duplicated in
    MsgDup(). Note that repeated message processing is not enabled
    by default.

  • bugfix: message sanitation had some issues:
    • 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)
  • bugfix: strings improperly reused, resulting in some message properties
    be populated with strings from previous messages. This was caused by
    an improper predicate check. [backported from v5]

  • fixed some minor portability issues
  • bugfix: reverse lookup reduction logic in imudp do DNS queries too often
    [imported from 4.4.2]

ChangeLog for 5.1.5 (v5-beta)

Version 5.1.5 [v5-beta] (rgerhards), 2009-09-11

  • added new config option $ActionWriteAllMarkMessages 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.
  • bugfix: hostnames with dashes in them were incorrectly treated as malformed, 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.
  • bugfix: strings improperly reused, resulting in some message properties be populated with strings from previous messages. This was caused by an improper predicate check.

ChangeLog for 4.5.2 (beta)

Version 4.5.2 [v4-beta] (rgerhards), 2009-08-21

  • legacy syslog parser changed so that it now accepts date stamps in wrong case. Some devices seem to create them and I do not see any harm in supporting that.
  • added $InputTCPMaxListeners directive – permits to specify how many TCP servers shall be possible (default is 20).
  • bugfix: memory leak with some input modules. Those inputs that use parseAndSubmitMsg() leak two small memory blocks with every message. Typically, those process only relatively few messages, so the issue does most probably not have any effect in practice.
  • bugfix: if tcp listen port could not be created, no error message was emitted
  • bugfix: potential segfault in output file writer (omfile) 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.
  • bugfix: hostnames with dashes in them were incorrectly treated as malformed, thus causing them to be treated as TAG (this was a regression introduced from the “rfc3164 strict” change in 4.5.0).

ChangeLog for 4.3.2 (beta)

Version 4.3.2 [beta] (rgerhards), 2009-06-24

  • removed long-obsoleted property UxTradMsg
  • added a generic network stream server (in addition to rather specific syslog tcp server)
  • added ability for the UDP output action to rebind its send socket after sending n messages. New config directive $ActionSendUDPRebindInterval added for the purpose. By default, rebinding is disabled. This is considered useful for load balancers.
  • bugfix: imdiag/imtcp had a race condition
  • improved testbench (now much better code design and reuse)
  • added config switch –enable-testbench=no to turn off testbench

ChangeLog for 4.1.7 (beta)

Version 4.1.7 [BETA] (rgerhards), 2009-04-22

  • bugfix: $InputTCPMaxSessions config directive was accepted, but not honored. This resulted in a fixed upper limit of 200 connections.
  • bugfix: the default for $DirCreateMode was 0644, and as such wrong. It has now been changed to 0700. For some background, please see http://lists.adiscon.net/pipermail/rsyslog/2009-April/001986.html
  • bugfix: ompgsql did not detect problems in sql command execution this could cause loss of messages. The handling was correct if the connection broke, but not if there was a problem with statement execution. The most probable case for such a case would be invalid sql inside the template, and this is now much easier to diagnose.

ChangeLog for 3.21.10

Version 3.21.10 [BETA] (rgerhards), 2009-02-02

  • bugfix: inconsistent use of mutex/atomic operations could cause segfault
    details are too many, for full analysis see blog post at:
    http://blog.gerhards.net/2009/01/rsyslog-data-race-analysis.html

  • the string “Do Die” was accidently emited upon exit in non-debug mode
    This has now been corrected. Thanks to varmojfekoj for the patch.

  • some legacy options were not correctly processed.
    Thanks to varmojfekoj for the patch.

  • doc bugfix: v3-compatiblity document had typo in config directive
    thanks to Andrej for reporting this
Scroll to top