[Oisf-devel] [COMMIT] OISF branch, master, updated. suricata-4.0.0-beta1-78-g08e4908
OISF Git
noreply at openinfosecfoundation.org
Wed Jun 28 12:28:49 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 08e4908dbefca24a0d640ec97cd08c5f54b15dd7 (commit)
via 67b97c7948d80b401e129f16583c47ce783258bb (commit)
via fa742d1d14198c3931ee1bfba6ff8d02f2eeb41f (commit)
via 40991cab8222f40b6d0ad85312c021fb459dc2e5 (commit)
via 9dab3ec71e04081686c3632d0b0d28c953048a36 (commit)
via 87dbda1d1e24d97bf99d50aee3cf3e5460c249c0 (commit)
via 79ed8c2dd38ab7ba244ab8106796f672d95ca373 (commit)
via 8a0549c42e9b6b70c53bd3b01b57ba25c95a4953 (commit)
via efe11dc37e7f5be575981eefa50cb2891b62bb67 (commit)
via 4f677fd157baacd41383761f4bb8c33636a5f3f7 (commit)
via 4fe9292ed86ea8ad9f81cb88b63d9161ff884de0 (commit)
from fee0fdc5951e5e0f03c841a6e3c6a5497b9366f4 (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 08e4908dbefca24a0d640ec97cd08c5f54b15dd7
Author: Pierre Chifflier <chifflier at wzdftpd.net>
Date: Sun Oct 23 17:20:25 2016 +0200
Add NULL-terminator to app-layer template (fix #1930)
commit 67b97c7948d80b401e129f16583c47ce783258bb
Author: Victor Julien <victor at inliniac.net>
Date: Wed Jun 28 09:23:42 2017 +0200
log: destroy file mutex
commit fa742d1d14198c3931ee1bfba6ff8d02f2eeb41f
Author: Jason Ish <ish at unx.ca>
Date: Mon Jun 26 11:04:46 2017 -0600
log: wrap rotation and write in lock
The application log is subject to rotation, so the check for
rotation, the actual rotation and write needs to be done under
lock to ensure the file pointer is in a consisten state
at the time of write().
Fixes issue:
https://redmine.openinfosecfoundation.org/issues/2155
commit 40991cab8222f40b6d0ad85312c021fb459dc2e5
Author: Jason Ish <ish at unx.ca>
Date: Tue Jun 27 16:47:23 2017 -0600
rust/dns: handle multiple txt strings
Fix handling of TXT records when there are multiple strings
in a single TXT record. For now, conform to the C implementation
where an answer record is created for each string in a single
txt record.
Also removes the data_len field from the answer entry. In Rust,
the length is available from actual data, which after decoding
may actually be different than the encoded data length, so just
use the length from the actual data.
commit 9dab3ec71e04081686c3632d0b0d28c953048a36
Author: Victor Julien <victor at inliniac.net>
Date: Tue Jun 27 21:51:00 2017 +0200
rust: enable/disable yaml settings
Based on compile time settings, enable/disable app-layers
and loggers.
commit 87dbda1d1e24d97bf99d50aee3cf3e5460c249c0
Author: Pierre Chifflier <chifflier at wzdftpd.net>
Date: Tue Jun 20 16:11:58 2017 +0200
Add NTP event rules (commented) to the default config
commit 79ed8c2dd38ab7ba244ab8106796f672d95ca373
Author: Pierre Chifflier <chifflier at wzdftpd.net>
Date: Tue Jun 20 13:57:46 2017 +0200
Add event rules for NTP events
commit 8a0549c42e9b6b70c53bd3b01b57ba25c95a4953
Author: Pierre Chifflier <chifflier at wzdftpd.net>
Date: Mon Jun 19 13:40:42 2017 +0200
NTP: change parse function to return the number of parsed messages
commit efe11dc37e7f5be575981eefa50cb2891b62bb67
Author: Pierre Chifflier <chifflier at wzdftpd.net>
Date: Mon Jun 19 13:19:23 2017 +0200
Add NTP parser (rust-experimental)
commit 4f677fd157baacd41383761f4bb8c33636a5f3f7
Author: Pierre Chifflier <chifflier at wzdftpd.net>
Date: Mon Jun 19 13:20:07 2017 +0200
Rust gen-c-headers: keep 'const' attribute
commit 4fe9292ed86ea8ad9f81cb88b63d9161ff884de0
Author: Pierre Chifflier <chifflier at wzdftpd.net>
Date: Mon Jun 19 13:17:20 2017 +0200
Autotools: add switch to build experimental Rust parsers
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 38 ++-
rules/Makefile.am | 3 +-
rules/ntp-events.rules | 8 +
rust/Cargo.toml.in | 3 +
rust/Makefile.am | 4 +
rust/gen-c-headers.py | 10 +-
rust/src/core.rs | 5 +
rust/src/dns/dns.rs | 1 -
rust/src/dns/log.rs | 2 +-
rust/src/dns/parser.rs | 141 ++++++---
rust/src/lib.rs | 3 +
rust/src/{dns => ntp}/mod.rs | 7 +-
rust/src/ntp/ntp.rs | 393 ++++++++++++++++++++++++++
src/Makefile.am | 1 +
src/app-layer-detect-proto.c | 4 +
src/app-layer-ntp.c | 307 ++++++++++++++++++++
src/{detect-nfs-version.h => app-layer-ntp.h} | 16 +-
src/app-layer-parser.c | 2 +
src/app-layer-protos.c | 3 +
src/app-layer-protos.h | 1 +
src/app-layer-template.c | 3 +
src/util-debug.c | 7 +-
src/util-debug.h | 3 +
suricata.yaml.in | 14 +-
24 files changed, 920 insertions(+), 59 deletions(-)
create mode 100644 rules/ntp-events.rules
copy rust/src/{dns => ntp}/mod.rs (90%)
create mode 100644 rust/src/ntp/ntp.rs
create mode 100644 src/app-layer-ntp.c
copy src/{detect-nfs-version.h => app-layer-ntp.h} (69%)
hooks/post-receive
--
OISF
More information about the Oisf-devel
mailing list