[Oisf-devel] [COMMIT] OISF branch, master, updated. suricata-2.1beta4-148-gaa09586

OISF Git noreply at openinfosecfoundation.org
Thu Jun 18 17:46:50 UTC 2015


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  aa095864d3a8bae4364a8a50a5793fe7e02d1e0a (commit)
       via  21db5ee691b349d3da1925b703ea5200d736e40a (commit)
       via  a5168d59770ea990a3276af83b69caad5faadeeb (commit)
       via  b3b7625be52dfedcbb759a951f69d409409d6d66 (commit)
       via  c0807c3df5b3655e80c741df7f23ff5784f2803d (commit)
       via  29fbcce50dc1cb1628398c3c60fb78adbb1607db (commit)
       via  4e7cb7b8630258d1715742ea30145ef9568319ec (commit)
       via  cf9ff6adbd4842010be805ac27f3d09ed7767643 (commit)
       via  df79c1019f6315154b1527fb190d57f9a865598f (commit)
       via  7451d3339689d6705fbaed307f44dbc3452a629e (commit)
       via  3ffa01d15098f236e2679c4a094fabce4a4c0b9e (commit)
      from  32563d51d155decb77fea6af8f3616feb7f01e7d (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 aa095864d3a8bae4364a8a50a5793fe7e02d1e0a
Author: Victor Julien <victor at inliniac.net>
Date:   Thu Jun 18 16:07:21 2015 +0200

    pfring runmode: remove set that is never read

commit 21db5ee691b349d3da1925b703ea5200d736e40a
Author: Victor Julien <victor at inliniac.net>
Date:   Thu Jun 18 15:47:02 2015 +0200

    counters: reduce global usage

commit a5168d59770ea990a3276af83b69caad5faadeeb
Author: Victor Julien <victor at inliniac.net>
Date:   Thu Jun 18 15:46:28 2015 +0200

    dce_opnum: improve memory handling on parsing error

commit b3b7625be52dfedcbb759a951f69d409409d6d66
Author: Victor Julien <victor at inliniac.net>
Date:   Thu Jun 18 15:34:46 2015 +0200

    htp: fix test

commit c0807c3df5b3655e80c741df7f23ff5784f2803d
Author: Victor Julien <victor at inliniac.net>
Date:   Thu Jun 18 15:27:04 2015 +0200

    fast log: clean up tests

commit 29fbcce50dc1cb1628398c3c60fb78adbb1607db
Author: Victor Julien <victor at inliniac.net>
Date:   Thu Jun 18 12:04:44 2015 +0200

    detect hsbd: simplify resize logic

commit 4e7cb7b8630258d1715742ea30145ef9568319ec
Author: Victor Julien <victor at inliniac.net>
Date:   Thu Jun 11 16:54:52 2015 +0200

    app-layer: update all protocols to accept NULL+EOF
    
    Update all non-HTTP protocol parsers to accept a NULL+EOF input.

commit cf9ff6adbd4842010be805ac27f3d09ed7767643
Author: Victor Julien <victor at inliniac.net>
Date:   Thu Jun 11 12:39:53 2015 +0200

    app-layer: improve EOF handling
    
    On receiving TCP end of stream packets (e.g. RST, but also sometimes FIN
    packets), in some cases the AppLayer parser would not be notified. This
    could happen in IDS mode, but would especially be an issue in IPS mode.
    
    This patch changes the logic of the AppLayer API to handle this. When no
    new data is available, and the stream ends, the AppLayer API now gets
    called with a NULL/0 input, but with the EOF flag set.
    
    This allows the AppLayer parser to call it's final routines still in the
    context of a real packet.

commit df79c1019f6315154b1527fb190d57f9a865598f
Author: Victor Julien <victor at inliniac.net>
Date:   Fri Jun 5 12:47:28 2015 +0200

    print: make PrintRawDataFp take a const arg

commit 7451d3339689d6705fbaed307f44dbc3452a629e
Author: Victor Julien <victor at inliniac.net>
Date:   Fri Jun 5 12:30:05 2015 +0200

    stream: update StreamMsg to don't have fixed size
    
    StreamMsg would have a fixed size buffer. This patch replaces the buffer
    by a dynamically allocated buffer.
    
    Preparation of allowing bigger and customizable buffer sizes.

commit 3ffa01d15098f236e2679c4a094fabce4a4c0b9e
Author: Victor Julien <victor at inliniac.net>
Date:   Fri Jun 5 09:54:44 2015 +0200

    stream: remove STREAMTCP_STREAM_FLAG_CLOSE_INITIATED logic

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

Summary of changes:
 src/alert-fastlog.c         |  15 +--
 src/app-layer-dcerpc-udp.c  |   4 +
 src/app-layer-dcerpc.c      |   4 +
 src/app-layer-dns-tcp.c     |  10 +-
 src/app-layer-dns-udp.c     |  12 +-
 src/app-layer-ftp.c         |   4 +
 src/app-layer-htp.c         |  82 ++++++------
 src/app-layer-modbus.c      |   8 ++
 src/app-layer-parser.c      |   2 +-
 src/app-layer-smb.c         |   4 +
 src/app-layer-smb2.c        |   4 +
 src/app-layer-smtp.c        |   4 +
 src/app-layer-ssh.c         |   8 ++
 src/app-layer-ssl.c         |   4 +
 src/counters.c              |  18 ++-
 src/detect-dce-opnum.c      |  26 ++--
 src/detect-engine-hsbd.c    |   6 +-
 src/runmode-pfring.c        |   2 -
 src/stream-tcp-private.h    |   3 +-
 src/stream-tcp-reassemble.c | 305 +++++++++-----------------------------------
 src/stream-tcp.c            |  39 ------
 src/stream.c                |  26 ++--
 src/stream.h                |  17 +--
 src/util-print.c            |   2 +-
 src/util-print.h            |   2 +-
 25 files changed, 213 insertions(+), 398 deletions(-)


hooks/post-receive
-- 
OISF


More information about the Oisf-devel mailing list