suricata
detect-tcp-seq.c
Go to the documentation of this file.
1 /* Copyright (C) 2007-2010 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  * \file
20  *
21  * \author Brian Rectanus <brectanu@gmail.com>
22  *
23  * Implements the seq keyword.
24  */
25 
26 #include "suricata-common.h"
27 #include "decode.h"
28 #include "detect.h"
29 
30 #include "detect-parse.h"
31 #include "detect-engine.h"
34 #include "detect-engine-build.h"
35 
36 #include "detect-tcp-seq.h"
37 
38 #include "util-byte.h"
39 #include "util-unittest.h"
40 #include "util-unittest-helper.h"
41 #include "util-debug.h"
42 
43 static int DetectSeqSetup(DetectEngineCtx *, Signature *, const char *);
44 static int DetectSeqMatch(DetectEngineThreadCtx *,
45  Packet *, const Signature *, const SigMatchCtx *);
46 #ifdef UNITTESTS
47 static void DetectSeqRegisterTests(void);
48 #endif
49 static void DetectSeqFree(DetectEngineCtx *, void *);
50 static int PrefilterSetupTcpSeq(DetectEngineCtx *de_ctx, SigGroupHead *sgh);
51 static bool PrefilterTcpSeqIsPrefilterable(const Signature *s);
52 
54 {
55  sigmatch_table[DETECT_SEQ].name = "tcp.seq";
57  sigmatch_table[DETECT_SEQ].desc = "check for a specific TCP sequence number";
58  sigmatch_table[DETECT_SEQ].url = "/rules/header-keywords.html#seq";
59  sigmatch_table[DETECT_SEQ].Match = DetectSeqMatch;
60  sigmatch_table[DETECT_SEQ].Setup = DetectSeqSetup;
61  sigmatch_table[DETECT_SEQ].Free = DetectSeqFree;
62 #ifdef UNITTESTS
63  sigmatch_table[DETECT_SEQ].RegisterTests = DetectSeqRegisterTests;
64 #endif
65  sigmatch_table[DETECT_SEQ].SupportsPrefilter = PrefilterTcpSeqIsPrefilterable;
66  sigmatch_table[DETECT_SEQ].SetupPrefilter = PrefilterSetupTcpSeq;
67 }
68 
69 /**
70  * \internal
71  * \brief This function is used to match packets with a given Seq number
72  *
73  * \param t pointer to thread vars
74  * \param det_ctx pointer to the pattern matcher thread
75  * \param p pointer to the current packet
76  * \param m pointer to the sigmatch that we will cast into DetectSeqData
77  *
78  * \retval 0 no match
79  * \retval 1 match
80  */
81 static int DetectSeqMatch(DetectEngineThreadCtx *det_ctx,
82  Packet *p, const Signature *s, const SigMatchCtx *ctx)
83 {
84  const DetectSeqData *data = (const DetectSeqData *)ctx;
85 
86  /* This is only needed on TCP packets */
87  if (!(PKT_IS_TCP(p)) || PKT_IS_PSEUDOPKT(p)) {
88  return 0;
89  }
90 
91  return (data->seq == TCP_GET_SEQ(p)) ? 1 : 0;
92 }
93 
94 /**
95  * \internal
96  * \brief this function is used to add the seq option into the signature
97  *
98  * \param de_ctx pointer to the Detection Engine Context
99  * \param s pointer to the Current Signature
100  * \param optstr pointer to the user provided options
101  *
102  * \retval 0 on Success
103  * \retval -1 on Failure
104  */
105 static int DetectSeqSetup (DetectEngineCtx *de_ctx, Signature *s, const char *optstr)
106 {
107  DetectSeqData *data = NULL;
108 
109  data = SCMalloc(sizeof(DetectSeqData));
110  if (unlikely(data == NULL))
111  goto error;
112 
113  if (StringParseUint32(&data->seq, 10, 0, optstr) < 0) {
114  goto error;
115  }
116 
118  NULL) {
119  goto error;
120  }
122 
123  return 0;
124 
125 error:
126  if (data)
127  SCFree(data);
128  return -1;
129 
130 }
131 
132 /**
133  * \internal
134  * \brief this function will free memory associated with seq option
135  *
136  * \param data pointer to seq configuration data
137  */
138 static void DetectSeqFree(DetectEngineCtx *de_ctx, void *ptr)
139 {
140  DetectSeqData *data = (DetectSeqData *)ptr;
141  SCFree(data);
142 }
143 
144 /* prefilter code */
145 
146 static void
147 PrefilterPacketSeqMatch(DetectEngineThreadCtx *det_ctx, Packet *p, const void *pectx)
148 {
149  const PrefilterPacketHeaderCtx *ctx = pectx;
150 
151  if (!PrefilterPacketHeaderExtraMatch(ctx, p))
152  return;
153 
154  if ((p->proto) == IPPROTO_TCP && !(PKT_IS_PSEUDOPKT(p)) &&
155  (p->tcph != NULL) && (TCP_GET_SEQ(p) == ctx->v1.u32[0]))
156  {
157  SCLogDebug("packet matches TCP seq %u", ctx->v1.u32[0]);
158  PrefilterAddSids(&det_ctx->pmq, ctx->sigs_array, ctx->sigs_cnt);
159  }
160 }
161 
162 static void
163 PrefilterPacketSeqSet(PrefilterPacketHeaderValue *v, void *smctx)
164 {
165  const DetectSeqData *a = smctx;
166  v->u32[0] = a->seq;
167 }
168 
169 static bool
170 PrefilterPacketSeqCompare(PrefilterPacketHeaderValue v, void *smctx)
171 {
172  const DetectSeqData *a = smctx;
173  if (v.u32[0] == a->seq)
174  return true;
175  return false;
176 }
177 
178 static int PrefilterSetupTcpSeq(DetectEngineCtx *de_ctx, SigGroupHead *sgh)
179 {
181  PrefilterPacketSeqSet,
182  PrefilterPacketSeqCompare,
183  PrefilterPacketSeqMatch);
184 }
185 
186 static bool PrefilterTcpSeqIsPrefilterable(const Signature *s)
187 {
188  const SigMatch *sm;
189  for (sm = s->init_data->smlists[DETECT_SM_LIST_MATCH] ; sm != NULL; sm = sm->next) {
190  switch (sm->type) {
191  case DETECT_SEQ:
192  return true;
193  }
194  }
195  return false;
196 }
197 
198 
199 #ifdef UNITTESTS
200 
201 /**
202  * \test DetectSeqSigTest01 tests parses
203  */
204 static int DetectSeqSigTest01(void)
205 {
206  int result = 0;
208  if (de_ctx == NULL)
209  goto end;
210 
211  /* These three are crammed in here as there is no Parse */
212  if (SigInit(de_ctx,
213  "alert tcp any any -> any any "
214  "(msg:\"Testing seq\";seq:foo;sid:1;)") != NULL)
215  {
216  printf("invalid seq accepted: ");
217  goto cleanup;
218  }
219  if (SigInit(de_ctx,
220  "alert tcp any any -> any any "
221  "(msg:\"Testing seq\";seq:9999999999;sid:1;)") != NULL)
222  {
223  printf("overflowing seq accepted: ");
224  goto cleanup;
225  }
226  if (SigInit(de_ctx,
227  "alert tcp any any -> any any "
228  "(msg:\"Testing seq\";seq:-100;sid:1;)") != NULL)
229  {
230  printf("negative seq accepted: ");
231  goto cleanup;
232  }
233  result = 1;
234 
235 cleanup:
236  if (de_ctx) {
240  }
241 end:
242  return result;
243 }
244 
245 /**
246  * \test DetectSeqSigTest02 tests seq keyword
247  */
248 static int DetectSeqSigTest02(void)
249 {
250  int result = 0;
251  uint8_t *buf = (uint8_t *)"Hi all!";
252  uint16_t buflen = strlen((char *)buf);
253  Packet *p[3];
254  p[0] = UTHBuildPacket((uint8_t *)buf, buflen, IPPROTO_TCP);
255  p[1] = UTHBuildPacket((uint8_t *)buf, buflen, IPPROTO_TCP);
256  p[2] = UTHBuildPacket((uint8_t *)buf, buflen, IPPROTO_ICMP);
257  if (p[0] == NULL || p[1] == NULL ||p[2] == NULL)
258  goto end;
259 
260  /* TCP w/seq=42 */
261  p[0]->tcph->th_seq = htonl(42);
262 
263  /* TCP w/seq=100 */
264  p[1]->tcph->th_seq = htonl(100);
265 
266  const char *sigs[2];
267  sigs[0]= "alert tcp any any -> any any (msg:\"Testing seq\"; seq:41; sid:1;)";
268  sigs[1]= "alert tcp any any -> any any (msg:\"Testing seq\"; seq:42; sid:2;)";
269 
270  uint32_t sid[2] = {1, 2};
271 
272  uint32_t results[3][2] = {
273  /* packet 0 match sid 1 but should not match sid 2 */
274  {0, 1},
275  /* packet 1 should not match */
276  {0, 0},
277  /* packet 2 should not match */
278  {0, 0} };
279 
280  result = UTHGenericTest(p, 3, sigs, sid, (uint32_t *) results, 2);
281  UTHFreePackets(p, 3);
282 end:
283  return result;
284 }
285 
286 /**
287  * \internal
288  * \brief This function registers unit tests for DetectSeq
289  */
290 static void DetectSeqRegisterTests(void)
291 {
292  UtRegisterTest("DetectSeqSigTest01", DetectSeqSigTest01);
293  UtRegisterTest("DetectSeqSigTest02", DetectSeqSigTest02);
294 }
295 #endif /* UNITTESTS */
util-byte.h
SigTableElmt_::url
const char * url
Definition: detect.h:1299
Packet_::proto
uint8_t proto
Definition: decode.h:459
detect-engine.h
SignatureInitData_::smlists
struct SigMatch_ * smlists[DETECT_SM_LIST_MAX]
Definition: detect.h:581
SigTableElmt_::desc
const char * desc
Definition: detect.h:1298
DetectSeqData_::seq
uint32_t seq
Definition: detect-tcp-seq.h:31
SigTableElmt_::Free
void(* Free)(DetectEngineCtx *, void *)
Definition: detect.h:1286
SigTableElmt_::name
const char * name
Definition: detect.h:1296
PKT_IS_PSEUDOPKT
#define PKT_IS_PSEUDOPKT(p)
return 1 if the packet is a pseudo packet
Definition: decode.h:1075
SigGroupHead_
Container for matching data for a signature group.
Definition: detect.h:1448
unlikely
#define unlikely(expr)
Definition: util-optimize.h:35
UtRegisterTest
void UtRegisterTest(const char *name, int(*TestFn)(void))
Register unit test.
Definition: util-unittest.c:103
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
results
struct DetectRfbSecresult_ results[]
DetectEngineThreadCtx_::pmq
PrefilterRuleStore pmq
Definition: detect.h:1204
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:839
PrefilterPacketHeaderCtx_::sigs_array
SigIntId * sigs_array
Definition: detect-engine-prefilter-common.h:43
DetectEngineCtxFree
void DetectEngineCtxFree(DetectEngineCtx *)
Free a DetectEngineCtx::
Definition: detect-engine.c:2533
detect-tcp-seq.h
UTHBuildPacket
Packet * UTHBuildPacket(uint8_t *payload, uint16_t payload_len, uint8_t ipproto)
UTHBuildPacket is a wrapper that build packets with default ip and port fields.
Definition: util-unittest-helper.c:340
PrefilterPacketHeaderCtx_::sigs_cnt
uint32_t sigs_cnt
Definition: detect-engine-prefilter-common.h:42
SigCleanSignatures
void SigCleanSignatures(DetectEngineCtx *de_ctx)
Definition: detect-engine-build.c:54
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1281
detect-engine-prefilter.h
util-unittest.h
util-unittest-helper.h
SigTableElmt_::SetupPrefilter
int(* SetupPrefilter)(DetectEngineCtx *de_ctx, struct SigGroupHead_ *sgh)
Definition: detect.h:1284
DetectSeqRegister
void DetectSeqRegister(void)
Registration function for ack: keyword.
Definition: detect-tcp-seq.c:53
PKT_IS_TCP
#define PKT_IS_TCP(p)
Definition: decode.h:248
DetectSeqData_
seq data
Definition: detect-tcp-seq.h:30
PrefilterPacketHeaderCtx_
Definition: detect-engine-prefilter-common.h:35
decode.h
util-debug.h
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:17
DetectEngineThreadCtx_
Definition: detect.h:1095
TCPHdr_::th_seq
uint32_t th_seq
Definition: decode-tcp.h:145
PrefilterPacketHeaderValue::u32
uint32_t u32[4]
Definition: detect-engine-prefilter-common.h:26
detect.h
SigMatch_::next
struct SigMatch_ * next
Definition: detect.h:354
StringParseUint32
int StringParseUint32(uint32_t *res, int base, size_t len, const char *str)
Definition: util-byte.c:313
DETECT_SM_LIST_MATCH
@ DETECT_SM_LIST_MATCH
Definition: detect.h:114
SigInit
Signature * SigInit(DetectEngineCtx *de_ctx, const char *sigstr)
Parses a signature and adds it to the Detection Engine Context.
Definition: detect-parse.c:2314
DETECT_SEQ
@ DETECT_SEQ
Definition: detect-engine-register.h:37
TCP_GET_SEQ
#define TCP_GET_SEQ(p)
Definition: decode-tcp.h:114
SigGroupCleanup
int SigGroupCleanup(DetectEngineCtx *de_ctx)
Definition: detect-engine-build.c:2218
Signature_::flags
uint32_t flags
Definition: detect.h:597
Packet_
Definition: decode.h:437
detect-engine-build.h
Signature_::init_data
SignatureInitData * init_data
Definition: detect.h:665
SigTableElmt_::Match
int(* Match)(DetectEngineThreadCtx *, Packet *, const Signature *, const SigMatchCtx *)
Definition: detect.h:1264
PrefilterPacketHeaderCtx_::v1
PrefilterPacketHeaderValue v1
Definition: detect-engine-prefilter-common.h:36
SigMatchCtx_
Used to start a pointer to SigMatch context Should never be dereferenced without casting to something...
Definition: detect.h:345
SigTableElmt_::alias
const char * alias
Definition: detect.h:1297
suricata-common.h
SigMatch_::type
uint16_t type
Definition: detect.h:351
Packet_::tcph
TCPHdr * tcph
Definition: decode.h:567
sigmatch_table
SigTableElmt sigmatch_table[DETECT_TBLSIZE]
Definition: detect-parse.c:127
UTHGenericTest
int UTHGenericTest(Packet **pkt, int numpkts, const char *sigs[], uint32_t sids[], uint32_t *results, int numsigs)
UTHGenericTest: function that perform a generic check taking care of as maximum common unittest eleme...
Definition: util-unittest-helper.c:546
PrefilterSetupPacketHeader
int PrefilterSetupPacketHeader(DetectEngineCtx *de_ctx, SigGroupHead *sgh, int sm_type, void(*Set)(PrefilterPacketHeaderValue *v, void *), bool(*Compare)(PrefilterPacketHeaderValue v, void *), void(*Match)(DetectEngineThreadCtx *det_ctx, Packet *p, const void *pectx))
Definition: detect-engine-prefilter-common.c:417
SCMalloc
#define SCMalloc(sz)
Definition: util-mem.h:47
SCFree
#define SCFree(p)
Definition: util-mem.h:61
SigTableElmt_::SupportsPrefilter
bool(* SupportsPrefilter)(const Signature *s)
Definition: detect.h:1283
detect-parse.h
Signature_
Signature container.
Definition: detect.h:596
SigMatch_
a single match condition for a signature
Definition: detect.h:350
DetectEngineCtxInit
DetectEngineCtx * DetectEngineCtxInit(void)
Definition: detect-engine.c:2494
PrefilterPacketHeaderValue
Definition: detect-engine-prefilter-common.h:23
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:447
detect-engine-prefilter-common.h
SigTableElmt_::RegisterTests
void(* RegisterTests)(void)
Definition: detect.h:1288
SIG_FLAG_REQUIRE_PACKET
#define SIG_FLAG_REQUIRE_PACKET
Definition: detect.h:249
UTHFreePackets
void UTHFreePackets(Packet **p, int numpkts)
UTHFreePackets: function to release the allocated data from UTHBuildPacket and the packet itself.
Definition: util-unittest-helper.c:431