suricata
detect-quic-version.c
Go to the documentation of this file.
1 /* Copyright (C) 2021 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  * Implements the quic.version
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"
29 #include "detect-engine-mpm.h"
31 #include "detect-engine-uint.h"
32 #include "detect-quic-version.h"
33 #include "util-byte.h"
34 #include "util-unittest.h"
35 #include "rust.h"
36 
37 #ifdef UNITTESTS
38 static void DetectQuicVersionRegisterTests(void);
39 #endif
40 
41 #define BUFFER_NAME "quic_version"
42 #define KEYWORD_NAME "quic.version"
43 #define KEYWORD_ID DETECT_AL_QUIC_VERSION
44 
45 static int quic_version_id = 0;
46 
47 static int DetectQuicVersionSetup(DetectEngineCtx *, Signature *, const char *);
48 
49 static InspectionBuffer *GetVersionData(DetectEngineThreadCtx *det_ctx,
50  const DetectEngineTransforms *transforms, Flow *_f, const uint8_t _flow_flags, void *txv,
51  const int list_id)
52 {
53  InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
54  if (buffer->inspect == NULL) {
55  uint32_t b_len = 0;
56  const uint8_t *b = NULL;
57 
58  if (rs_quic_tx_get_version(txv, &b, &b_len) != 1)
59  return NULL;
60  if (b == NULL || b_len == 0)
61  return NULL;
62 
63  InspectionBufferSetup(det_ctx, list_id, buffer, b, b_len);
64  InspectionBufferApplyTransforms(buffer, transforms);
65  }
66  return buffer;
67 }
68 
69 /**
70  * \brief Registration function for quic.version: keyword
71  */
73 {
75  sigmatch_table[DETECT_AL_QUIC_VERSION].desc = "match Quic version";
76  sigmatch_table[DETECT_AL_QUIC_VERSION].url = "/rules/quic-keywords.html#quic-version";
77  sigmatch_table[DETECT_AL_QUIC_VERSION].Setup = DetectQuicVersionSetup;
79 #ifdef UNITTESTS
80  sigmatch_table[DETECT_AL_QUIC_VERSION].RegisterTests = DetectQuicVersionRegisterTests;
81 #endif
82 
84  GetVersionData, ALPROTO_QUIC, 1);
86  GetVersionData, ALPROTO_QUIC, 1);
87 
89  DetectEngineInspectBufferGeneric, GetVersionData);
91  DetectEngineInspectBufferGeneric, GetVersionData);
92 
93  quic_version_id = DetectBufferTypeGetByName(BUFFER_NAME);
94 }
95 
96 /**
97  * \internal
98  * \brief this function is used to add the parsed sigmatch into the current signature
99  *
100  * \param de_ctx pointer to the Detection Engine Context
101  * \param s pointer to the Current Signature
102  * \param rawstr pointer to the user provided options
103  *
104  * \retval 0 on Success
105  * \retval -1 on Failure
106  */
107 static int DetectQuicVersionSetup(DetectEngineCtx *de_ctx, Signature *s, const char *rawstr)
108 {
109  if (DetectBufferSetActiveList(de_ctx, s, quic_version_id) < 0)
110  return -1;
111 
113  return -1;
114 
115  return 0;
116 }
117 
118 #ifdef UNITTESTS
119 
120 /**
121  * \test QuicVersionTestParse01 is a test for a valid value
122  *
123  * \retval 1 on success
124  * \retval 0 on failure
125  */
126 static int QuicVersionTestParse01(void)
127 {
130 
132  de_ctx, "alert ip any any -> any any (quic.version; content:\"Q046\"; sid:1; rev:1;)");
133  FAIL_IF_NULL(sig);
134 
135  sig = DetectEngineAppendSig(
136  de_ctx, "alert ip any any -> any any (quic.version; content:\"|00|\"; sid:2; rev:1;)");
137  FAIL_IF_NULL(sig);
138 
140 
141  PASS;
142 }
143 
144 /**
145  * \test QuicVersionTestParse03 is a test for an invalid value
146  *
147  * \retval 1 on success
148  * \retval 0 on failure
149  */
150 static int QuicVersionTestParse03(void)
151 {
154 
156  de_ctx, "alert ip any any -> any any (quic.version:; sid:1; rev:1;)");
157  FAIL_IF_NOT_NULL(sig);
158 
160 
161  PASS;
162 }
163 
164 /**
165  * \brief this function registers unit tests for QuicVersion
166  */
167 void DetectQuicVersionRegisterTests(void)
168 {
169  UtRegisterTest("QuicVersionTestParse01", QuicVersionTestParse01);
170  UtRegisterTest("QuicVersionTestParse03", QuicVersionTestParse03);
171 }
172 
173 #endif /* UNITTESTS */
util-byte.h
detect-engine-uint.h
SigTableElmt_::url
const char * url
Definition: detect.h:1287
DetectSignatureSetAppProto
int DetectSignatureSetAppProto(Signature *s, AppProto alproto)
Definition: detect-parse.c:1737
detect-engine.h
DetectAppLayerMpmRegister2
void DetectAppLayerMpmRegister2(const char *name, int direction, int priority, PrefilterRegisterFunc PrefilterRegister, InspectionBufferGetDataPtr GetData, AppProto alproto, int tx_min_progress)
register a MPM engine
Definition: detect-engine-mpm.c:89
FAIL_IF_NULL
#define FAIL_IF_NULL(expr)
Fail a test if expression evaluates to NULL.
Definition: util-unittest.h:89
SIGMATCH_INFO_STICKY_BUFFER
#define SIGMATCH_INFO_STICKY_BUFFER
Definition: detect.h:1490
SigTableElmt_::desc
const char * desc
Definition: detect.h:1286
DetectEngineInspectBufferGeneric
uint8_t DetectEngineInspectBufferGeneric(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const 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:2174
KEYWORD_NAME
#define KEYWORD_NAME
Definition: detect-quic-version.c:42
SigTableElmt_::name
const char * name
Definition: detect.h:1284
DetectEngineTransforms
Definition: detect.h:403
UtRegisterTest
void UtRegisterTest(const char *name, int(*TestFn)(void))
Register unit test.
Definition: util-unittest.c:103
ALPROTO_QUIC
@ ALPROTO_QUIC
Definition: app-layer-protos.h:51
DetectBufferSetActiveList
int DetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
Definition: detect-engine.c:1387
InspectionBuffer
Definition: detect.h:368
DETECT_AL_QUIC_VERSION
@ DETECT_AL_QUIC_VERSION
Definition: detect-engine-register.h:310
Flow_
Flow data structure.
Definition: flow.h:349
SigTableElmt_::flags
uint16_t flags
Definition: detect.h:1278
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:832
DetectEngineCtxFree
void DetectEngineCtxFree(DetectEngineCtx *)
Free a DetectEngineCtx::
Definition: detect-engine.c:2586
rust.h
DetectEngineAppendSig
Signature * DetectEngineAppendSig(DetectEngineCtx *, const char *)
Parse and append a Signature into the Detection Engine Context signature list.
Definition: detect-parse.c:2602
SIG_FLAG_TOCLIENT
#define SIG_FLAG_TOCLIENT
Definition: detect.h:260
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1269
detect-engine-prefilter.h
util-unittest.h
InspectionBufferGet
InspectionBuffer * InspectionBufferGet(DetectEngineThreadCtx *det_ctx, const int list_id)
Definition: detect-engine.c:1531
DetectBufferTypeGetByName
int DetectBufferTypeGetByName(const char *name)
Definition: detect-engine.c:1124
QuicStringGetDataArgs::txv
void * txv
Definition: detect-quic-cyu-string.c:47
SIG_FLAG_TOSERVER
#define SIG_FLAG_TOSERVER
Definition: detect.h:259
FAIL_IF_NOT_NULL
#define FAIL_IF_NOT_NULL(expr)
Fail a test if expression evaluates to non-NULL.
Definition: util-unittest.h:96
PASS
#define PASS
Pass the test.
Definition: util-unittest.h:105
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:17
DetectEngineThreadCtx_
Definition: detect.h:1080
detect-engine-mpm.h
detect.h
detect-quic-version.h
PrefilterGenericMpmRegister
int PrefilterGenericMpmRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id)
Definition: detect-engine-prefilter.c:745
DetectAppLayerInspectEngineRegister2
void DetectAppLayerInspectEngineRegister2(const char *name, AppProto alproto, uint32_t dir, int progress, InspectEngineFuncPtr2 Callback2, InspectionBufferGetDataPtr GetData)
register inspect engine at start up time
Definition: detect-engine.c:216
conf.h
detect-engine-content-inspection.h
suricata-common.h
InspectionBufferApplyTransforms
void InspectionBufferApplyTransforms(InspectionBuffer *buffer, const DetectEngineTransforms *transforms)
Definition: detect-engine.c:1730
sigmatch_table
SigTableElmt sigmatch_table[DETECT_TBLSIZE]
Definition: detect-parse.c:129
BUFFER_NAME
#define BUFFER_NAME
Definition: detect-quic-version.c:41
InspectionBuffer::inspect
const uint8_t * inspect
Definition: detect.h:369
InspectionBufferSetup
void InspectionBufferSetup(DetectEngineThreadCtx *det_ctx, const int list_id, InspectionBuffer *buffer, const uint8_t *data, const uint32_t data_len)
setup the buffer with our initial data
Definition: detect-engine.c:1626
DetectQuicVersionRegister
void DetectQuicVersionRegister(void)
Registration function for quic.version: keyword.
Definition: detect-quic-version.c:72
detect-parse.h
Signature_
Signature container.
Definition: detect.h:587
DetectEngineCtxInit
DetectEngineCtx * DetectEngineCtxInit(void)
Definition: detect-engine.c:2547
SIGMATCH_NOOPT
#define SIGMATCH_NOOPT
Definition: detect.h:1466
SigTableElmt_::RegisterTests
void(* RegisterTests)(void)
Definition: detect.h:1276