[Oisf-devel] [COMMIT] OISF branch, master, updated. suricata-1.3.1-82-g5ffe7e2

noreply at openinfosecfoundation.org noreply at openinfosecfoundation.org
Thu Sep 6 05:52:28 UTC 2012


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  5ffe7e21c3a2ed553c60e628a42439ef1fbb66cd (commit)
       via  073b251df7e545f032724b9e8ef70ab216f4c5e5 (commit)
       via  d1569337a7766a796f232a5e3a623c923c94b8b4 (commit)
       via  0eeccb4b176b3a0a4c2717f14fd0bd668520e6fa (commit)
       via  efc3faaa0a28a969c2838f73300dd8ac04671947 (commit)
       via  eb5dbc305fb21059427ac0331783a99ed0a88ba4 (commit)
       via  95cd8bf67e8794c6df1d90debf1deccfe9c9dbe9 (commit)
       via  c9cc137de54862a520cc83c6f5243db7e790376c (commit)
      from  a48d6cb2071f3b507da85f4d03322811eb6cf183 (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 5ffe7e21c3a2ed553c60e628a42439ef1fbb66cd
Author: Eric Leblond <eric at regit.org>
Date:   Wed Sep 5 14:09:57 2012 +0200

    decode: use pointer inside packet area as param
    
    DecodeTeredo, DecodeIPv6InIPv6 and DecodeIPv4inIPv6 were calling
    DecodeTunnel with packet being a pseudo packet and data being
    data from initial packet:
            DecodeTunnel(tv, dtv, tp, start, blen,
                         pq, IPPROTO_IPV6);
    In decoding functions, arithmetic was done on pkt to set some values?
    It was resulting in field of packet  pointing outside of the scope of
    packet data.
    This patch switch to what has been done in DecodeGre(), I mean:
            DecodeTunnel(tv, dtv, tp, GET_PKT_DATA(tp),
                         GET_PKT_LEN(tp), pq, IPPROTO_IP);
    Data buffer is then relative to the packet and the arithmetic is
    correct.

commit 073b251df7e545f032724b9e8ef70ab216f4c5e5
Author: Eric Leblond <eric at regit.org>
Date:   Wed Sep 5 08:56:33 2012 +0200

    affinity: drop capability after setting thread prio
    
    Setting thread priority can require privilege if a low nice value
    has to be set up.

commit d1569337a7766a796f232a5e3a623c923c94b8b4
Author: Eric Leblond <eric at regit.org>
Date:   Wed Sep 5 08:53:41 2012 +0200

    affinity: add call to setup function in threads
    
    Threads created through TMThreadSpawn need to call the affinity
    function by themselves.

commit 0eeccb4b176b3a0a4c2717f14fd0bd668520e6fa
Author: Eric Leblond <eric at regit.org>
Date:   Tue Sep 4 17:48:14 2012 +0200

    affinity: tag management threads as such
    
    The management threads were not tagged for CPU affinity and thus
    the setting was not applied.

commit efc3faaa0a28a969c2838f73300dd8ac04671947
Author: Eric Leblond <eric at regit.org>
Date:   Wed Sep 5 09:21:28 2012 +0200

    affinity: add log message

commit eb5dbc305fb21059427ac0331783a99ed0a88ba4
Author: Victor Julien <victor at inliniac.net>
Date:   Thu Sep 6 07:43:00 2012 +0200

    Add threshold.config example to EXTRA_DIST as well.

commit 95cd8bf67e8794c6df1d90debf1deccfe9c9dbe9
Author: Eric Leblond <eric at regit.org>
Date:   Wed Sep 5 17:08:54 2012 +0200

    Add threshold.config file.
    
    This patch adds an example file and modify Makefile to have it
    installed by 'make install-conf' command.

commit c9cc137de54862a520cc83c6f5243db7e790376c
Author: Victor Julien <victor at inliniac.net>
Date:   Thu Sep 6 07:30:31 2012 +0200

    Add --enable-luajit option to configure

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

Summary of changes:
 Makefile.am         |    3 ++-
 configure.ac        |   51 ++++++++++++++++++++++++++++-----------------------
 src/counters.c      |   13 +++++++++++++
 src/decode-ipv6.c   |    6 ++++--
 src/decode-teredo.c |    2 +-
 src/detect-engine.c |    6 ++++++
 src/flow-manager.c  |    5 +++++
 src/tm-threads.c    |   39 +++++++++++++++++++++------------------
 threshold.config    |   22 ++++++++++++++++++++++
 9 files changed, 102 insertions(+), 45 deletions(-)
 create mode 100644 threshold.config


hooks/post-receive
-- 
OISF


More information about the Oisf-devel mailing list