[Oisf-devel] [COMMIT] OISF branch, master, updated. suricata-3.1-13-ge9a2a34

OISF Git noreply at openinfosecfoundation.org
Mon Jun 20 21:16:35 UTC 2016


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "OISF".

The branch, master has been updated
       via  e9a2a341ceda1f1c23918949f483508144a22aea (commit)
       via  f0e22c91cb23415d3c095b016040d7bb7542c4a7 (commit)
       via  604542081221a95c8904dcdde9d599b30c87c55a (commit)
       via  46ac5ed7b74a971ced9efc7a41b09b2b1c6331b6 (commit)
       via  18de4c9654aff7d48904511946d34964f74caab7 (commit)
       via  9b80c21d787b5e7b4c221c91b71619e6e8eb11f0 (commit)
       via  03d46f13691d67494c6923bfd24a688ce1cc428d (commit)
       via  507027845d6afac10236eb14b671ae189146e5c1 (commit)
       via  45fa25eb0ca96612298389aa1041d58599bb5c86 (commit)
       via  33f876900124d45dd033f148ee0f013bd3467d00 (commit)
       via  54bc4718108b85d8b06a95845f4590a883421849 (commit)
       via  b1d191b478bf6d90ae4971fd30fbe14a63dd036a (commit)
       via  6c7bf006b747bfc3edaedb489e65cdbf06e0b7e2 (commit)
      from  0e9134930d4840de49295d65a5a2e7c81dd103ee (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit e9a2a341ceda1f1c23918949f483508144a22aea
Author: Andreas Herz <andi at geekosphere.org>
Date:   Tue Jun 14 23:14:40 2016 +0200

    util-threshold-config: parse suppress rules with spaces in ip list
    
    This modified regex allows spaces witihn the ip list for supress rules
    like [10.0.0.1, 10.0.0.2]

commit f0e22c91cb23415d3c095b016040d7bb7542c4a7
Author: Jason Ish <ish at unx.ca>
Date:   Mon Jun 13 12:44:28 2016 -0600

    privs: add capability CAP_SYS_NICE.
    
    Allows the setting of thread priorities after dropping privileges.

commit 604542081221a95c8904dcdde9d599b30c87c55a
Author: Victor Julien <victor at inliniac.net>
Date:   Fri Jun 10 09:56:23 2016 +0200

    detect: reduce verbosity, don't warn on empty files

commit 46ac5ed7b74a971ced9efc7a41b09b2b1c6331b6
Author: Victor Julien <victor at inliniac.net>
Date:   Fri Jun 10 09:31:30 2016 +0200

    pfring: move output to 'Perf' level

commit 18de4c9654aff7d48904511946d34964f74caab7
Author: Victor Julien <victor at inliniac.net>
Date:   Mon Jun 13 13:32:28 2016 +0200

    offloading: work around missing TOE support

commit 9b80c21d787b5e7b4c221c91b71619e6e8eb11f0
Author: Victor Julien <victor at inliniac.net>
Date:   Mon Jun 13 12:55:29 2016 +0200

    offloading: distinguish between csum and the rest
    
    As AF_PACKET handles csum offloading don't check for this type of
    offloading. Other methods like pcap and netmap do require it to be
    turned off.
    
    Improve disable command suggestion wording.

commit 03d46f13691d67494c6923bfd24a688ce1cc428d
Author: Victor Julien <victor at inliniac.net>
Date:   Mon Jun 13 12:36:27 2016 +0200

    offloading: reduce verbosity

commit 507027845d6afac10236eb14b671ae189146e5c1
Author: Victor Julien <victor at inliniac.net>
Date:   Mon Jun 13 12:33:51 2016 +0200

    afpacket: update offloading warning

commit 45fa25eb0ca96612298389aa1041d58599bb5c86
Author: Victor Julien <victor at inliniac.net>
Date:   Mon Jun 13 10:16:33 2016 +0200

    offloading: improve checks on FreeBSD
    
    Move FreeBSD specific (but not netmap specific) checks from the netmap
    code to the general ioctl wrapper code.
    
    Warn from the check functions now, so callers no longer need to.

commit 33f876900124d45dd033f148ee0f013bd3467d00
Author: Victor Julien <victor at inliniac.net>
Date:   Mon Jun 13 08:59:26 2016 +0200

    offloading: move linux specific into their own func

commit 54bc4718108b85d8b06a95845f4590a883421849
Author: Victor Julien <victor at inliniac.net>
Date:   Sun Jun 12 10:37:28 2016 +0200

    offloading: check for more offloading on Linux

commit b1d191b478bf6d90ae4971fd30fbe14a63dd036a
Author: Victor Julien <victor at inliniac.net>
Date:   Sat Jun 11 16:12:26 2016 +0200

    netmap: fix enabling promisc mode on FreeBSD
    
    In FreeBSD setting the IFF_PROMISC flag has no effect. Instead we
    need to set the IFF_PPROMISC flag.

commit 6c7bf006b747bfc3edaedb489e65cdbf06e0b7e2
Author: Victor Julien <victor at inliniac.net>
Date:   Sat Jun 11 11:30:16 2016 +0000

    netmap: redo config parsing
    
    Normally we parse the config per interface only. But to properly
    setup the bridge, netmap also needs the config of it's peering
    interface. Instead of using a complicated peering scheme like in
    afpacket, simply parse the peers config too.

-----------------------------------------------------------------------

Summary of changes:
 src/detect.c                |  16 +--
 src/runmode-af-packet.c     |   5 +-
 src/runmode-netmap.c        | 243 +++++++++++++++++++-------------------
 src/source-netmap.c         | 193 +++++++-----------------------
 src/source-netmap.h         |  27 +++--
 src/source-pcap.c           |  11 +-
 src/source-pfring.c         |  12 +-
 src/util-error.c            |   1 +
 src/util-error.h            |   1 +
 src/util-ioctl.c            | 279 +++++++++++++++++++++++++++++++++++++-------
 src/util-ioctl.h            |  11 +-
 src/util-privs.c            |   4 +-
 src/util-threshold-config.c |   2 +-
 13 files changed, 451 insertions(+), 354 deletions(-)


hooks/post-receive
-- 
OISF


More information about the Oisf-devel mailing list