[Oisf-devel] [COMMIT] OISF branch, master, updated. suricata-4.0.1-73-g83f220a

OISF Git noreply at openinfosecfoundation.org
Tue Nov 28 13:38:34 UTC 2017


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  83f220a6b088e5e8e539d2cbfdb41ff66f7bdd66 (commit)
       via  d0846cc561910ecc14404e0a17b80fa61f45fe79 (commit)
       via  73d1e4bc84d535298fe888309ad5a35b20cba6ae (commit)
       via  93b120e70d807780c1c33320f5c3ba919050e197 (commit)
       via  71c3141ec64a69e9645a68770e31330608114afd (commit)
       via  f1da18ec1a15eda070493134c3d6853d47cd5808 (commit)
       via  5748df3eed4d02b3048c1208e8c2b15ebd5fb6fa (commit)
       via  223a38aeeeb74dc2b939378981aec26317611223 (commit)
       via  81408df0cf5d5ae1d2f5068b9f3b0ec87a69e203 (commit)
       via  7ed1debc968ce17d874640f0c106c39af6119a0e (commit)
       via  17c4623975138535f819229a643be43805f3bbae (commit)
       via  2a237bdfcacb81d9d3b0fe173577f79b41db1813 (commit)
       via  e1d1a7f2acc8642789bc51d0f8681cab361ef53e (commit)
      from  ddd3c0b1dfd60c989121877ead6266d3231cc7dc (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 83f220a6b088e5e8e539d2cbfdb41ff66f7bdd66
Author: Victor Julien <victor at inliniac.net>
Date:   Tue Nov 28 10:28:07 2017 +0100

    detect/depth: reject rules with depth smaller than content

commit d0846cc561910ecc14404e0a17b80fa61f45fe79
Author: Jason Ish <ish at unx.ca>
Date:   Tue Nov 21 14:01:21 2017 -0600

    detect-parse: string copy not required
    
    Without using pcre, copies of the strings are no longer
    required.

commit 73d1e4bc84d535298fe888309ad5a35b20cba6ae
Author: Jason Ish <ish at unx.ca>
Date:   Tue Sep 13 11:03:06 2016 -0600

    detect-parse: don't use pcre for rule parsing
    
    Don't use pcre for the high level rule parsing, instead
    using a tokenizing parser for breaking out the rule
    into keywords and options.
    
    Much faster, especially on older CPUs. Should also allow
    us to provide better context where a rule parse error
    occurs.

commit 93b120e70d807780c1c33320f5c3ba919050e197
Author: Victor Julien <victor at inliniac.net>
Date:   Mon Nov 27 17:36:38 2017 +0100

    runmodes: config test is offline

commit 71c3141ec64a69e9645a68770e31330608114afd
Author: Victor Julien <victor at inliniac.net>
Date:   Mon Nov 27 15:57:16 2017 +0100

    afl: enable afl dumps by envvar
    
    If SC_AFL_DUMP_FILES is set the inputs are stored to disk.

commit f1da18ec1a15eda070493134c3d6853d47cd5808
Author: Victor Julien <victor at inliniac.net>
Date:   Mon Nov 27 10:03:46 2017 +0100

    http: allow shinking in HTPRealloc

commit 5748df3eed4d02b3048c1208e8c2b15ebd5fb6fa
Author: Pierre Chifflier <chifflier at wzdftpd.net>
Date:   Fri Nov 24 08:15:33 2017 +0100

    Add support for PCAP LINKTYPE_IPV4

commit 223a38aeeeb74dc2b939378981aec26317611223
Author: Victor Julien <victor at inliniac.net>
Date:   Sun Nov 26 21:29:46 2017 +0100

    mingw: service init compile warning fix

commit 81408df0cf5d5ae1d2f5068b9f3b0ec87a69e203
Author: Victor Julien <victor at inliniac.net>
Date:   Sun Nov 26 11:36:19 2017 +0100

    output: clean up log API unittests
    
    Disable for MinGW as the setenv/getenv implementations seems to
    be undeterministic.

commit 7ed1debc968ce17d874640f0c106c39af6119a0e
Author: Victor Julien <victor at inliniac.net>
Date:   Sun Nov 26 10:30:47 2017 +0100

    flow: optimize Flow structure layout
    
    Shrink structure with 8 bytes by moving new ttl fields into an
    existing 'gap'.
    
    Also fixes a strange ASAN issue in GCC 5.4.0 in unittests.

commit 17c4623975138535f819229a643be43805f3bbae
Author: Victor Julien <victor at inliniac.net>
Date:   Sat Nov 25 14:30:58 2017 +0100

    thresholds: simplify config parsing

commit 2a237bdfcacb81d9d3b0fe173577f79b41db1813
Author: Victor Julien <victor at inliniac.net>
Date:   Mon Jul 17 11:19:20 2017 +0200

    detect: make glob.h optional
    
    glob.h is not available on MinGW.
    
    Simply use the input on the rule list as a literal pattern.

commit e1d1a7f2acc8642789bc51d0f8681cab361ef53e
Author: Victor Julien <victor at inliniac.net>
Date:   Sun Oct 8 15:27:00 2017 +0200

    detect: fix flow bypass flag handling

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

Summary of changes:
 configure.ac                |   2 +-
 src/app-layer-htp-mem.c     |  16 ++-
 src/app-layer-parser.c      |  67 +++++----
 src/decode.h                |   1 +
 src/detect-depth.c          |   6 +
 src/detect-parse.c          | 322 ++++++++++++++++++++++++++------------------
 src/detect-parse.h          |   1 -
 src/detect.c                |  26 +++-
 src/flow.h                  |  10 +-
 src/runmode-unittests.c     |   1 -
 src/runmodes.c              |   1 +
 src/source-pcap-file.c      |   1 +
 src/suricata.c              |   1 -
 src/util-conf.c             |   3 +-
 src/util-debug.c            | 101 ++++++--------
 src/util-threshold-config.c |  87 ++----------
 src/win32-service.c         |   2 +-
 17 files changed, 332 insertions(+), 316 deletions(-)


hooks/post-receive
-- 
OISF


More information about the Oisf-devel mailing list