Anoop Saldanha
e68d44b051
fix for #932 .
...
ipv6 tunnel decoder wrongly treats the tunneled ipv6 packets as an ipv4
packet.
12 years ago
Eric Leblond
c5bd04f102
unittest: recycle packet before exit
...
To avoid an issue with flow validation, we need to recycle the packet
before cleaning the flow.
12 years ago
Victor Julien
04f3f14541
ipv6: fix parsing of malformed ext hdr. Bug #908 .
12 years ago
Victor Julien
f4dcba6de3
In case of fragments, don't consider ports. Bug #847 .
12 years ago
Ken Steele
9c7b411a5d
More PacketGetFromMalloc() to allocate packets.
12 years ago
Victor Julien
1eed3f2233
ipv6: add event for ipv6 packet with icmpv4 header
12 years ago
Victor Julien
150b0c5ae0
ipv6: add option to detect HOP/DST headers with only padding. Detect unknown DST/HOP opts.
12 years ago
Anoop Saldanha
b33986c887
Add a packet src for every packet generated inside suricata.
13 years ago
Eric Leblond
e176be6fcc
Use unlikely for error treatment.
...
When handling error case on SCMallog, SCCalloc or SCStrdup
we are in an unlikely case. This patch adds the unlikely()
expression to indicate this to gcc.
This patch has been obtained via coccinelle. The transformation
is the following:
@istested@
identifier x;
statement S1;
identifier func =~ "(SCMalloc|SCStrdup|SCCalloc)";
@@
x = func(...)
... when != x
- if (x == NULL) S1
+ if (unlikely(x == NULL)) S1
13 years ago
Victor Julien
7a044a99ee
Defrag engine
...
Big rewrite of defrag engine to make it more scalable and fix some
locking logic flaws.
Now uses a hash of trackers similar to Flow and Host hashes.
13 years ago
Eric Leblond
5ffe7e21c3
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.
13 years ago
Eric Leblond
e6e339aacf
Add counters for IPv4 in IPv6 and IPv6 in IPv6
13 years ago
Eric Leblond
def0270de7
decode: decode IPv6-in-IPv6
...
This patch adds decoding of IPv6-in-IPv6. It also adds some events
for invalid packets.
This patch should fix #514 .
13 years ago
Eric Leblond
09fa0b9542
Add support for IPv4-in-IPv6
...
This patch adds support for IPv4-in-IPv6 and should fix #462 .
13 years ago
Victor Julien
b976ff228a
ipv6: fix an AH header parsing issue. Add decoder event for non-null reserved fields.
13 years ago
Victor Julien
98c30be2db
ipv6: improve handling of packets with duplicate (or more) ipv6 extension headers.
13 years ago
Victor Julien
07945f04ce
ipv6: make sure we pass the defragged packet from the ipv6 layer to the decoder.
13 years ago
Victor Julien
40fcae3aa0
Minor unittest fixes to make Coverity happy.
13 years ago
Victor Julien
a39529db5d
ipv6: fix routing header parsing leading to rejection of valid packets.
13 years ago
Victor Julien
374947c354
ipv6: properly deal with packets containing a FH header that has offset 0 and no more frags flag set.
13 years ago
Anoop Saldanha
a19a249230
Set the packet protocol only if it can parsed without error
13 years ago
Anoop Saldanha
b8997b415c
bug #403 - fix setting ip proto for ipv6 packets
13 years ago
Victor Julien
c4b34e6ef7
Fix various minor clang/scan-build warnings.
13 years ago
Victor Julien
34450b9b57
Don't parse layers / ext headers above ipv6 frag header. This is taken care of by defrag.
13 years ago
Eileen Donlon
1adf4b868c
set layer4 protocol when no ipv6 extension headers
14 years ago
Eric Leblond
acf10525f6
doc: add decode group and related documentation.
14 years ago
Eric Leblond
7425bf5ca6
Rename some decode event structure and macro.
...
This patch renames DECODER_SET_EVENT, DECODER_ISSET_EVENT and some
other structures to ENGINE equivalent to take into account the fact
the event list is now related to all engines and not only to decoder.
14 years ago
Eric Leblond
6b9d1012ff
Transform inet_ntop call into PrintInet one.
14 years ago
Gerardo Iglesias Galvan
db94f01831
Fix declaration hiding len parameter in IPv6 decoder
14 years ago
Victor Julien
e1d4e16645
Simplify packet decoding macro's.
14 years ago
Eric Leblond
8be92fdd99
SCTP support: add parsing of sctp
...
This patch adds support of SCTP in all part of the code in charge
of decoding packets.
14 years ago
Eric Leblond
dd038c1906
Modify files to avoid direct pckt payload access
...
This patch implements the needed modification of payload access
in a Packet structure to support the abstraction introduced by
the extended data system.
14 years ago
Victor Julien
4c3e17d4ab
Fix thresholding issues.
15 years ago
William Metcalf
2eef905c07
GPL and Copyright header updates.
15 years ago
Victor Julien
54c2804ce4
Fix malformed ipv6 packet causing an endless loop in exthdr decoding.
15 years ago
William Metcalf
ce01927515
Import of GPLv2 Header 050410
15 years ago
Jason Ish
6b562f7aa6
Issue 82 - fragment counters. - number of fragments - number reassembled - number of timeouts
15 years ago
Jason Ish
8f618b2121
- actually re-inject ipv6 re-assembled packets. - set the next header.
15 years ago
William Metcalf
8a64321340
raw pcap support additionl ipv4/6 validation
15 years ago
Jason Ish
6547725b39
consolidate more common code between ipv4 and ipv6.
15 years ago
Gurvinder Singh
b92886a79a
bug#18 and some minor changes
15 years ago
Victor Julien
ecf86f9c23
Rename to Suricata.
15 years ago
Jason Ish
0d92f0018b
First cut at IPv6 re-assembly. Only BSD policy for now, packets don't actually get passed to it yet though.
15 years ago
Anoop Saldanha
ceb7e495ae
refactoring perf stats code
16 years ago
Victor Julien
91bc83e5c6
More logging API usage changes.
16 years ago
Victor Julien
3a28171fbd
Another round of logging api usage updates.
16 years ago
Victor Julien
f4acd5a27e
First batch of fixes for new debug and logging API usage.
16 years ago
Victor Julien
57f71f7e4b
Pass the DecodeThreadVars to all Decoder functions properly. Improve the error handling.
16 years ago
Anoop Saldanha
244f5d547a
new registration functions for the stats api, with local thread storage for counter ids
16 years ago
Victor Julien
4ec31e0445
Fix short IPv4 packets not getting detected in the decoder. Set decode event on short ipv6 packets.
16 years ago