Victor Julien
c955254b4e
Adapt stream code to packet memory allocation changes.
15 years ago
Victor Julien
fadd6d6361
Add pseudo packet counter.
15 years ago
Victor Julien
f606621e8c
Fix the pseudo packet having the wrong proto set, causing massive fp's. Flag packets to be part of the established phase of a tcp session, so we won't prematurely inspect the app layer state.
15 years ago
Victor Julien
6482c34909
Increment flow use cnt for pseudo packets as the flow is not supposed to disappear while dealing with those packets.
15 years ago
Victor Julien
2072ad80af
Never create a pseudo packet based on a pseudo packet.
15 years ago
Victor Julien
61a9936d55
Inspect a pseudo packet upon receiving a RST so that we are sure both sides of the TCP session are inspected.
15 years ago
Gurvinder Singh
00f21f34e8
support for pseudo packet creation from reassembled stream segments
15 years ago
Victor Julien
8fa5a2c025
Split applayer and raw stream reassembly
...
Split stream reassembly in 2 parts: a part that sends ack'd data to the app
layer parsers as soon as it's available, and another part that queues up
data into larger chunks for raw inspection.
15 years ago
Victor Julien
b5a5ef14b9
Make sure we reuse a TCP session if we receive a valid 3WHS on a closed TCP session, can happen if a new session has the same tuple.
15 years ago
Eric Leblond
1db4aadd16
Supress usage of Packet declaration in tests.
...
For convenience, a massive usage of 'Packet p;' declaration has
been done in the tests function. Although this was completely
legal, this is not possible anymore because of the new Packet
allocation structure. This massive patch modifies all suricata
files to use a SCMalloc allocated pointer to Packet instead.
This patch has been done using coccinelle (http://coccinelle.lip6.fr )
which is a semantic patching tool. This ensures that things like call
to SCFree() should have not been forget because the semantic patch
explicitly forces the call to SCFree(p) before each return. With this
patch all unittests are running fine with a small and a big default
packet size.
15 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.
15 years ago
Eric Leblond
8471626916
Fix error message and adds information to config
...
This patch fixes a typo in an error message and add some
information to the checksum verification option.
15 years ago
Victor Julien
c64b9362cf
Remove unused stream flag.
15 years ago
Anoop Saldanha
e47a9b59e9
accept tcp packets with syn+urg+push
15 years ago
Gurvinder Singh
892dea31e4
added the counter for tcp.segment_memcap_drop to show the dropped segments count due to memory limit
15 years ago
Victor Julien
0eb0d48f35
Disable broken unittests and fix one.
15 years ago
Victor Julien
f1e6e80a1e
Properly set tmp_ra_base_seq in streams. By Gurvinder.
15 years ago
Gurvinder Singh
6a5bc52461
support for several tcp evasion attacks. Thanks to Judy Novak and G2 Inc for reporting them
15 years ago
Pablo Rincon
5c43db85ce
Drop streams on inline mode when a drop rule match from a reassembled stream and/or app layer inspection
15 years ago
Victor Julien
c25921edf0
Add config output for new stream settings.
16 years ago
Gurvinder Singh
7577823cdf
support for stopping the evasion, which is caused by the use of TCP RST packets for linux based systems
16 years ago
Gurvinder Singh
f0928a4555
support for enforcing the depth until when the reassembly will be performed
16 years ago
Gurvinder Singh
8b0ca4f628
support for seperate memcaps for reassembly and stream engine
16 years ago
Victor Julien
18c923318a
Fix bug where valid FIN packets would be rejected.
16 years ago
Victor Julien
05d382f533
Fix broken stream engine config initialization: due wrong casts settings could be overwritten in memory.
16 years ago
Victor Julien
580b09c2b8
Make sure we inspect all outstanding reassembled stream chunks (smsg) if the stream is shutting down. Make sure to do inspect signatures that use dsize against the tcp packet payload, even if that payload was already added to the stream. Likewise, the dsize signatures are not inspected against the reassembled stream.
16 years ago
Victor Julien
b8fec77f37
Fix tcp connections that are reset (RST packet) not always inspecting the reassembled stream. Update transaction id code to make sure both directions of a transaction are inspected before incrementing the inspect_id.
16 years ago
Anoop Saldanha
015385c6bd
changes to the dce parser stub data processed var. changed to stub data fresh var to indicate if the stub is fresh or not
16 years ago
Anoop Saldanha
45ea0d914e
dce stub content keywords support using dcepayload.c support for all dce related content keywords
16 years ago
Pablo Rincon
8cc525c939
UDP support at AppLayer message handling
16 years ago
Victor Julien
a0c1209a44
Inspect the reassembled stream together with the packet payload in the same direction.
16 years ago
Victor Julien
9f95ab7441
Make sure a stream that has a failing app layer inspection module no longer stops reassembly, but only app layer inspection. This way we can continue to inspect the reassembled stream.
16 years ago
Victor Julien
4e7df60b2f
Make pcap file mode read multiple packets per 'read'. Update threading model to deal with this.
16 years ago
William Metcalf
2eef905c07
GPL and Copyright header updates.
16 years ago
Gurvinder Singh
5fe1dc1d24
support for sslv2/sslv3 their unit tests and better stream no reassembly flag handling
16 years ago
Gerardo Iglesias Galvan
9f4fae5b1a
Fix inconsistent use of dynamic memory allocation
16 years ago
William Metcalf
ce01927515
Import of GPLv2 Header 050410
16 years ago
Victor Julien
070ed778b8
Libcap-ng support by Gurvinder Singh and myself. Basic support for per thread caps is added, but not activated as it doesn't seem to work yet. Work around for incompatibility between libnet 1.1 and libcap-ng added.
16 years ago
Gurvinder Singh
e0b4838471
fix bug 133, error caused by seq mismatch in fin_wait_2 state, whis was dicarding the packet which should be accepted
16 years ago
Victor Julien
0eabde4a9b
Gnu99 inline fixes for stream engine.
16 years ago
Victor Julien
eeb98c6900
Move SCSetThreadName to proper functions.
16 years ago
Gerardo Iglesias Galvan
9f35a24a1f
Set threads name. Fix bug #83
16 years ago
Victor Julien
ad02732907
Properly cleanup stream engine spinlocks and mutexes at shutdown. Fixes drd errors in unittests.
16 years ago
Pablo Rincon
2ce728d019
Adding support for ecn flags after the handshake
16 years ago
Victor Julien
2b3479577b
Fix ecn/cwr unittests
16 years ago
Victor Julien
5eb4095b9a
Comment ECN/CWR changes more.
16 years ago
Pablo Rincon
83ddc5813a
Support for ecn/cwr TCP sessions
16 years ago
Gurvinder Singh
8e444f1772
stream and application layer improvements
16 years ago
Victor Julien
f4ee4f5670
Properly clear list tail ptr in segment list.
16 years ago
Jason Ish
eab93e766a
Do policy lookup for defrag. Add unit test for a default host os policy. Update example config to use a default. Add 2 new policies to the stream to cover all the policies for stream and defrag.
16 years ago
Gurvinder Singh
7438f981da
stream memory leaks fixed and unit tests added
16 years ago
Pablo Rincon
25a3a5c6d8
Adding mem wrapper to debug runtime alloc()/free() functions. Fixing some memory leaks.
16 years ago
Jan Jezek
4e72ccf987
Fixed Win32 compilation, unit tests now compile.
16 years ago
Victor Julien
60685f8b3c
Make unittests run more quiet.
16 years ago
Pablo Rincon
d0404d8447
Renaming errors with naming conventions
16 years ago
Victor Julien
53977fded6
Small compilation fixes when debugging is disabled.
16 years ago
Victor Julien
6a53ab9c5a
Stream engine memory handling update
...
The stream engine memory handling needed updating as it didn't scale. Changes:
- pools can now be initialized to size 0, meaning unlimited
- stream engine uses a memcap setting. Sessions, segments and aldata is part
of this, app layer state isn't.
- memory is accounted using a global int that is spinlocked.
- a counter for sessions that have not been picked up because of memcap was
added.
- all reassembly errors are converted to debug msgs.
16 years ago
Victor Julien
f08d01a8e8
Set sensible tcp timeout defaults and no longer set the timeouts from the stream engine.
16 years ago
Victor Julien
0d34990d7f
Add OpenBSD's strlcpy and strlcat and replace all strcat/strcpy/strncat/strncpy by those calls.
16 years ago
Victor Julien
434da6b965
Set no reassembly flags on sessions we don't recognize the protocol for.
16 years ago
Gurvinder Singh
5c8d90afc8
memory leak fixes
16 years ago
Victor Julien
eb67bb442e
Fixup unittests that use buffers that simulate configuration files. They now include the YAML header.
16 years ago
Victor Julien
9ececacda3
Fix packet timestamp handling for encapsulated packets.
16 years ago
Victor Julien
c1283a6628
Fix app layer proto detection code not being thread safe.
16 years ago
Gurvinder Singh
fde948f488
bug 41 patch
16 years ago
Victor Julien
6b36e23e45
Fix not decreasing the flow use_cnt reference counter in some cases from the app layer detection code. This caused some streams to never fully time out and thus clutter up the flow table and session pool.
16 years ago
Gurvinder Singh
a66c6752d5
stream os_policy support
16 years ago
Gurvinder Singh
567bbf604b
stream reassembling fixes
16 years ago
Victor Julien
9b422c443e
Fix up initialization and hopefully make the SEQ macro's fix up an 64bit issue we're seeing...
16 years ago
Victor Julien
4824868766
Application layer detection improvements
...
- improve locking of application layer handling, making sure that the flow cannot be freed/cleared when the detection engine is still working with it.
- add a check to the app layer detection to make sure that a match function will only inspect an app layer state if it's of the right type.
16 years ago
Gurvinder Singh
0a85fd6787
htp error fixed
16 years ago
Gurvinder Singh
d8433c7255
fixed-pool-error-and-tcp-state-transition
16 years ago
Victor Julien
ecf86f9c23
Rename to Suricata.
16 years ago
Pablo Rincon
e26833be3f
Changing mutex/spinlocks/conditions naming types
16 years ago
Pablo Rincon
769022f4be
Adding support for Mac OS X, FreeBSD, centrailizing mutex/spins/conditions in a macro API, and some unittests
16 years ago
Gurvinder Singh
c1e485cc44
app layer error handling
16 years ago
Victor Julien
54b9663cd1
TCP streams: support falling back to 3WHS when we were led to believe we were in 4WHS mode. Add unittests.
16 years ago
Victor Julien
2af6ed0c8c
Support newly reported 4WHS TCP setup.
16 years ago
Gurvinder Singh
d2765511ce
async stream handling support
16 years ago
Anoop Saldanha
ceb7e495ae
refactoring perf stats code
16 years ago
Gurvinder Singh
e7952b1331
some changes in threading constants
16 years ago
Gurvinder Singh
40b8afdd56
support for thread exit constants
16 years ago
Gurvinder Singh
7895748606
add unit test for no stream reassembly
16 years ago
Gurvinder Singh
94674c58f3
unit tests for no packet & payload inspection
16 years ago
Gurvinder Singh
bbb385422d
function to set packet flags
16 years ago
Gurvinder Singh
cc0b4f7181
initial version to support detection byepass
16 years ago
Victor Julien
968d8df12b
More logging API usage. Changed logging macro's slightly so the vars inside them won't conflict with vars used by the calling function.
16 years ago
Victor Julien
bcc5bbef93
Yet more logging api usage changes.
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
be3bbe0a85
Fix segv in reassembly. Fix sequence gap handling tests.
16 years ago
Victor Julien
b3cb29b758
Fix engine lockup due to mutex locking error.
16 years ago
Victor Julien
5ecd187b6f
Tie app layer parsing to the stream engine.
16 years ago
Gurvinder Singh
c06b2849fb
fixed unit tests and add the comments
16 years ago
Gurvinder Singh
e88249ee24
small performance enhancement
16 years ago
Gurvinder Singh
37b4682407
target based paws handling
16 years ago
Gurvinder Singh
573027a1ec
PAWS support and one unittest
16 years ago
Gurvinder Singh
45cb8f5f0c
changed flag name
16 years ago
Gurvinder Singh
3350245f75
timestamp support
16 years ago
Victor Julien
597d0e9a20
Fix detection of failed thread startup. Cleanup startup output a bit.
16 years ago