ChangeLog for 3.18.4 (v3-stable)

Version 3.18.4 (rgerhards), 2008-09-18

  • bugfix: order-of magnitude issue with base-10 size definitions
    in config 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. Thanks to
    RB for finding this bug and providing a patch.

  • bugfix: action was not called when system time was set backwards
    (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). Thanks to varmojfekoj for this
    patch.

  • doc bugfix: rsyslog.conf man page improved and minor nit fixed
    thanks to Lukas Kuklinek for the patch.

  • bugfix: error code -2025 was used for two different errors. queue full
    is now -2074 and -2025 is unique again. (did cause no real problem
    except for troubleshooting)

  • bugfix: 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: option value for legacy -a option could not be specified,
    resulting in strange operations. Thanks to Marius Tomaschewski
    for the patch.

  • bugfix: colon after date should be ignored, but was not. This has
    now been corrected. Required change to the internal ParseTIMESTAMP3164()
    interface.

Changelog for 3.21.4 (devel)

Version 3.21.4 [DEVEL] (rgerhards), 2008-09-04

  • removed compile time fixed message size limit (was 2K), limit can now
    be set via $MaxMessageSize global config directive (finally gotten rid
    of MAXLINE ;))

  • enhanced doc for $ActionExecOnlyEveryNthTimeTimeout
  • integrated a number of patches from 3.18.4, namely
    • bugfix: order-of magnitude issue with base-10 size definitions
      in config 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. Thanks to
      RB for finding this bug and providing a patch.

    • bugfix: action was not called when system time was set backwards
      (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). Thanks to varmojfekoj for this
      patch.

    • doc bugfix: rsyslog.conf man page improved and minor nit fixed
      thanks to Lukas Kuklinek for the patch.

ChangeLog for 3.19.11

Version 3.19.11 [BETA] (rgerhards), 2008-08-25

  • This is a refresh of the beta. No beta-specific fixes have been added.
  • included fixes from v3-stable (most importantly 3.18.3). Among
    others, these are:

    • bugfix: imfile could cause a segfault upon rsyslogd HUP and termination
      Thanks to lperr for an excellent bug report that helped detect this
      problem.

    • enhanced ommysql to support custom port to connect to server
      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, 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.

    • disabled flow control for imuxsock, as 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.

ChangeLog for 3.18.3

Version 3.18.3 (rgerhards), 2008-08-18

  • bugfix: imfile could cause a segfault upon rsyslogd HUP and termination
    Thanks to lperr for an excellent bug report that helped detect this
    problem.

  • enhanced ommysql to support custom port to connect to server
    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, 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.

  • disabled flow control for imuxsock, as 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.

ChangeLog for 3.21.3 (devel)

Version 3.21.3 [DEVEL] (rgerhards), 2008-08-13

  • added ability to specify flow control mode for imuxsock
  • added ability to execute actions only after the n-th call of the action
    This also lead to the addition of two new config directives:
    $ActionExecOnlyEveryNthTime and $ActionExecOnlyEveryNthTimeTimeout
    This feature is useful, for example, for alerting: it permits you to
    send an alert only after at least n occurences of a specific message
    have been seen by rsyslogd. This protectes against false positives
    due to waiting for additional confirmation.

  • bugfix: IPv6 addresses could not be specified in forwarding actions
    New syntax @[addr]:port introduced to enable that. Root problem was IPv6
    addresses contain colons.

  • somewhat enhanced debugging messages
  • imported from 3.18.3:
    • enhanced ommysql to support custom port to connect to server
      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, 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.

ChangeLog for 3.21.2 (devel)

Version 3.21.2 [DEVEL] (rgerhards), 2008-08-04

  • added $InputUnixListenSocketHostName config directive, which permits to
    override the hostname being used on a local unix socket. This is useful
    for differentiating “hosts” running in several jails. Feature was
    suggested by David Darville, thanks for the suggestion.

  • enhanced ommail to support multiple email recipients. This is done by
    specifying $ActionMailTo multiple times. Note that this introduces a
    small incompatibility to previous config file syntax: the recipient
    list is now reset for each action (we honestly believe that will
    not cause any problem – apologies if it does).

  • enhanced troubleshooting documentation

ChangeLog for 3.21.1 (devel)

Version 3.21.1 [DEVEL] (rgerhards), 2008-07-30

  • bugfix: no error was reported if the target of a $IncludeConfig
    could not be accessed.

  • added testbed for common config errors
  • enhanced config file checking – no active actions are detected
  • added -N rsyslogd command line option for a config validation run
    (which does not execute actual syslogd code and does not interfere
    with a running instance)

  • somewhat improved emergency configuration. It is now also selected
    if the config contains no active actions

  • rsyslogd error messages are now reported to stderr by default. can be
    turned off by the new “$ErrorMessagesToStderr off” directive

Thanks to HKS for suggesting the new features.

ChangeLog for 3.20.1 (v3-stable)

Version 3.20.1 [v3-stable] (rgerhards), 2008-112-04

  • security bugfix: $AllowedSender was not honoured, all senders were
    permitted instead (see security advisory)

  • enhance: regex nomatch option “ZERO” has been added
    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.

  • bugfix: memory leak in gtls netstream driver fixed
    memory was lost each time a TLS session was torn down. This could
    result in a considerable memory leak if it happened quite frequently
    (potential system crash condition)

  • doc update: documented how to specify multiple property replacer
    options + link to new online regex generator tool added

  • minor bufgfix: very small memory leak in gtls netstream driver
    around a handful of bytes (< 20) for each HUP
  • improved debug output for regular expressions inside property replacer
    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.
Scroll to top