Project

General

Profile

Actions

Bug #3099

closed

Weird handling of IKEv2 flows when alerts happen

Added by Antti Tönkyrä over 4 years ago. Updated over 3 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Target version:
Affected Versions:
Effort:
Difficulty:
Label:

Description

IKEv2 parser in its current state makes it possible to cause a slight denial-of-service condition to single suricata capture thread when alert is hit.

alert ikev2 any any -> ikev2.server.ip.here any (msg:"SURICATA IKEv2"; sid:2; rev:1;)

My initial analysis follows.

It seems that the IKEv2 transaction vector for the flow in rust/src/ikev2/ikev2.rs (IKEV2State struct) gets filled with flows. Now let's say I fill it with 10000 IKEv2 exchanges that will amount to 10000 iterations (by get_tx_by_id) per new IKEv2 exchange and on top of that it seems that with every new IKEv2 exchange I make will cause get_tx_by_id be called 10 times. (so I get 100000 iterations per IKEv2 exchange which eats up fair bit of CPU time)

The flows are cleaned up as expected when flows timeout (which will clean up the transaction vector for that flow). Normally this would work but in this case the nature of IKE makes matters worse. Any new exchange will keep the flow alive (due to being srcip:500 <-> dstip:500) and this prevents the transaction vector from being cleaned up.

When alert does not happen, the connection is almost immediately cleaned up in AppLayerParserTransactionsCleanup (src/app-layer-parser.c) but the alert rule I described does cause us to hit goto next due to detect_flags_ts & APP_LAYER_TX_INSPECTED_FLAG being true. In non-alert case the transaction is freed by StateTransactionFree call before the next: goto label in AppLayerParserTransactionsCleanup function.

Tested on 4.1.4 and latest git head.

Actions #1

Updated by Andreas Herz over 4 years ago

  • Status changed from New to Assigned
  • Assignee set to OISF Dev
  • Target version set to 70
  • Private changed from No to Yes

Switched to private for now, Jason Ish can you take a look into that?

Actions #2

Updated by Victor Julien over 3 years ago

  • Target version changed from 70 to 6.0.0rc1
Actions #3

Updated by Victor Julien over 3 years ago

  • Target version changed from 6.0.0rc1 to 6.0.0
Actions #4

Updated by Jason Ish over 3 years ago

I believe this to be the same issue as https://redmine.openinfosecfoundation.org/issues/3877.

Actions #5

Updated by Victor Julien over 3 years ago

  • Status changed from Assigned to In Review
  • Assignee changed from OISF Dev to Jason Ish
Actions #6

Updated by Victor Julien over 3 years ago

  • Status changed from In Review to Closed
Actions #7

Updated by Victor Julien over 3 years ago

  • Private changed from Yes to No
Actions

Also available in: Atom PDF