suricata
detect-ike-key-exchange-payload-length.c
Go to the documentation of this file.
1 /* Copyright (C) 2020 Open Information Security Foundation
2  *
3  * You can copy, redistribute or modify this Program under the terms of
4  * the GNU General Public License version 2 as published by the Free
5  * Software Foundation.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * version 2 along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15  * 02110-1301, USA.
16  */
17 
18 /**
19  *
20  * \author Frank Honza <frank.honza@dcso.de>
21  */
22 
23 #include "suricata-common.h"
24 #include "conf.h"
25 #include "detect.h"
26 #include "detect-parse.h"
27 #include "detect-engine.h"
30 #include "app-layer-parser.h"
31 #include "util-byte.h"
32 #include "detect-engine-uint.h"
33 
34 #include "rust-bindings.h"
35 
36 /**
37  * [ike.key_exchange_payload_length]:[=|<|>|<=|>=]<length>;
38  */
39 static int DetectIkeKeyExchangePayloadLengthSetup(DetectEngineCtx *, Signature *s, const char *str);
40 static void DetectIkeKeyExchangePayloadLengthFree(DetectEngineCtx *, void *);
41 static int g_ike_key_exch_payload_length_buffer_id = 0;
42 
43 static int DetectIkeKeyExchangePayloadLengthMatch(DetectEngineThreadCtx *, Flow *, uint8_t, void *,
44  void *, const Signature *, const SigMatchCtx *);
45 
46 /**
47  * \brief Registration function for ike.key_exchange_payload_length keyword.
48  */
50 {
51  sigmatch_table[DETECT_IKE_KEY_EXCHANGE_PAYLOAD_LENGTH].name = "ike.key_exchange_payload_length";
53  "match IKE key exchange payload length";
55  "/rules/ike-keywords.html#ike-key-exchange-payload-length";
57  DetectIkeKeyExchangePayloadLengthMatch;
59  DetectIkeKeyExchangePayloadLengthSetup;
61  DetectIkeKeyExchangePayloadLengthFree;
62 
63  DetectAppLayerInspectEngineRegister("ike.key_exchange_payload_length", ALPROTO_IKE,
65 
66  DetectAppLayerInspectEngineRegister("ike.key_exchange_payload_length", ALPROTO_IKE,
68 
69  g_ike_key_exch_payload_length_buffer_id =
70  DetectBufferTypeGetByName("ike.key_exchange_payload_length");
71 }
72 
73 /**
74  * \internal
75  * \brief Function to match key exchange payload length of a IKE state
76  *
77  * \param det_ctx Pointer to the pattern matcher thread.
78  * \param f Pointer to the current flow.
79  * \param flags Flags.
80  * \param state App layer state.
81  * \param txv Pointer to the Ike Transaction.
82  * \param s Pointer to the Signature.
83  * \param ctx Pointer to the sigmatch that we will cast into DetectU32Data.
84  *
85  * \retval 0 no match.
86  * \retval 1 match.
87  */
88 static int DetectIkeKeyExchangePayloadLengthMatch(DetectEngineThreadCtx *det_ctx, Flow *f,
89  uint8_t flags, void *state, void *txv, const Signature *s, const SigMatchCtx *ctx)
90 {
91  SCEnter();
92 
93  uint32_t length;
94  if (!rs_ike_state_get_key_exchange_payload_length(txv, &length))
95  SCReturnInt(0);
96  const DetectU32Data *du32 = (const DetectU32Data *)ctx;
97  return DetectU32Match(length, du32);
98 }
99 
100 /**
101  * \brief Function to add the parsed IKE key exchange payload length query into the current
102  * signature.
103  *
104  * \param de_ctx Pointer to the Detection Engine Context.
105  * \param s Pointer to the Current Signature.
106  * \param rawstr Pointer to the user provided flags options.
107  *
108  * \retval 0 on Success.
109  * \retval -1 on Failure.
110  */
111 static int DetectIkeKeyExchangePayloadLengthSetup(
112  DetectEngineCtx *de_ctx, Signature *s, const char *rawstr)
113 {
115  return -1;
116 
117  DetectU32Data *key_exchange_payload_length = DetectU32Parse(rawstr);
118  if (key_exchange_payload_length == NULL)
119  return -1;
120 
121  /* okay so far so good, lets get this into a SigMatch
122  * and put it in the Signature. */
123 
125  (SigMatchCtx *)key_exchange_payload_length,
126  g_ike_key_exch_payload_length_buffer_id) == NULL) {
127  goto error;
128  }
129  return 0;
130 
131 error:
132  DetectIkeKeyExchangePayloadLengthFree(de_ctx, key_exchange_payload_length);
133  return -1;
134 }
135 
136 /**
137  * \internal
138  * \brief Function to free memory associated with DetectU32Data.
139  *
140  * \param de_ptr Pointer to DetectU32Data.
141  */
142 static void DetectIkeKeyExchangePayloadLengthFree(DetectEngineCtx *de_ctx, void *ptr)
143 {
144  rs_detect_u32_free(ptr);
145 }
util-byte.h
detect-engine-uint.h
SigTableElmt_::url
const char * url
Definition: detect.h:1322
DetectSignatureSetAppProto
int DetectSignatureSetAppProto(Signature *s, AppProto alproto)
Definition: detect-parse.c:1770
detect-engine.h
ALPROTO_IKE
@ ALPROTO_IKE
Definition: app-layer-protos.h:55
DetectU32Match
int DetectU32Match(const uint32_t parg, const DetectUintData_u32 *du32)
Definition: detect-engine-uint.c:31
SigTableElmt_::desc
const char * desc
Definition: detect.h:1321
sigmatch_table
SigTableElmt * sigmatch_table
Definition: detect-parse.c:153
SigTableElmt_::Free
void(* Free)(DetectEngineCtx *, void *)
Definition: detect.h:1309
SigTableElmt_::name
const char * name
Definition: detect.h:1319
DetectU32Parse
DetectUintData_u32 * DetectU32Parse(const char *u32str)
This function is used to parse u32 options passed via some u32 keyword.
Definition: detect-engine-uint.c:45
Flow_
Flow data structure.
Definition: flow.h:354
ctx
struct Thresholds ctx
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:854
SigTableElmt_::AppLayerTxMatch
int(* AppLayerTxMatch)(DetectEngineThreadCtx *, Flow *, uint8_t flags, void *alstate, void *txv, const Signature *, const SigMatchCtx *)
Definition: detect.h:1290
SIG_FLAG_TOCLIENT
#define SIG_FLAG_TOCLIENT
Definition: detect.h:270
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1304
DetectBufferTypeGetByName
int DetectBufferTypeGetByName(const char *name)
Definition: detect-engine.c:1096
SIG_FLAG_TOSERVER
#define SIG_FLAG_TOSERVER
Definition: detect.h:269
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:18
DetectEngineThreadCtx_
Definition: detect.h:1109
SCEnter
#define SCEnter(...)
Definition: util-debug.h:271
detect.h
app-layer-parser.h
conf.h
DETECT_IKE_KEY_EXCHANGE_PAYLOAD_LENGTH
@ DETECT_IKE_KEY_EXCHANGE_PAYLOAD_LENGTH
Definition: detect-engine-register.h:329
detect-engine-content-inspection.h
SigMatchCtx_
Used to start a pointer to SigMatch context Should never be dereferenced without casting to something...
Definition: detect.h:346
flags
uint8_t flags
Definition: decode-gre.h:0
suricata-common.h
DetectU32Data
DetectUintData_u32 DetectU32Data
Definition: detect-engine-uint.h:41
DetectEngineInspectGenericList
uint8_t DetectEngineInspectGenericList(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const struct DetectEngineAppInspectionEngine_ *engine, const Signature *s, Flow *f, uint8_t flags, void *alstate, void *txv, uint64_t tx_id)
Do the content inspection & validation for a signature.
Definition: detect-engine.c:2114
str
#define str(s)
Definition: suricata-common.h:300
detect-parse.h
Signature_
Signature container.
Definition: detect.h:614
DetectAppLayerInspectEngineRegister
void DetectAppLayerInspectEngineRegister(const char *name, AppProto alproto, uint32_t dir, int progress, InspectEngineFuncPtr Callback, InspectionBufferGetDataPtr GetData)
Registers an app inspection engine.
Definition: detect-engine.c:242
SigMatchAppendSMToList
SigMatch * SigMatchAppendSMToList(DetectEngineCtx *de_ctx, Signature *s, uint16_t type, SigMatchCtx *ctx, const int list)
Append a SigMatch to the list type.
Definition: detect-parse.c:462
detect-ike-key-exchange-payload-length.h
DetectIkeKeyExchangePayloadLengthRegister
void DetectIkeKeyExchangePayloadLengthRegister(void)
Registration function for ike.key_exchange_payload_length keyword.
Definition: detect-ike-key-exchange-payload-length.c:49
SCReturnInt
#define SCReturnInt(x)
Definition: util-debug.h:275