suricata
detect-tcp-ack.c
Go to the documentation of this file.
1 /* Copyright (C) 2007-2016 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  * \author Victor Julien <victor@inliniac.net>
23  *
24  * Implements the "ack" keyword.
25  */
26 
27 #include "suricata-common.h"
28 #include "decode.h"
29 #include "detect.h"
30 
31 #include "detect-parse.h"
32 #include "detect-engine.h"
33 #include "detect-engine-mpm.h"
36 #include "detect-engine-build.h"
37 
38 #include "detect-tcp-ack.h"
39 
40 #include "util-byte.h"
41 #include "util-unittest.h"
42 #include "util-unittest-helper.h"
43 #include "util-debug.h"
44 
45 /* prototypes */
46 static int DetectAckSetup(DetectEngineCtx *, Signature *, const char *);
47 static int DetectAckMatch(DetectEngineThreadCtx *,
48  Packet *, const Signature *, const SigMatchCtx *);
49 #ifdef UNITTESTS
50 static void DetectAckRegisterTests(void);
51 #endif
52 static void DetectAckFree(DetectEngineCtx *, void *);
53 static int PrefilterSetupTcpAck(DetectEngineCtx *de_ctx, SigGroupHead *sgh);
54 static bool PrefilterTcpAckIsPrefilterable(const Signature *s);
55 
57 {
58  sigmatch_table[DETECT_ACK].name = "tcp.ack";
60  sigmatch_table[DETECT_ACK].desc = "check for a specific TCP acknowledgement number";
61  sigmatch_table[DETECT_ACK].url = "/rules/header-keywords.html#ack";
62  sigmatch_table[DETECT_ACK].Match = DetectAckMatch;
63  sigmatch_table[DETECT_ACK].Setup = DetectAckSetup;
64  sigmatch_table[DETECT_ACK].Free = DetectAckFree;
65 
66  sigmatch_table[DETECT_ACK].SupportsPrefilter = PrefilterTcpAckIsPrefilterable;
67  sigmatch_table[DETECT_ACK].SetupPrefilter = PrefilterSetupTcpAck;
68 #ifdef UNITTESTS
69  sigmatch_table[DETECT_ACK].RegisterTests = DetectAckRegisterTests;
70 #endif
71 }
72 
73 /**
74  * \internal
75  * \brief This function is used to match packets with a given Ack number
76  *
77  * \param t pointer to thread vars
78  * \param det_ctx pointer to the pattern matcher thread
79  * \param p pointer to the current packet
80  * \param m pointer to the sigmatch that we will cast into DetectAckData
81  *
82  * \retval 0 no match
83  * \retval 1 match
84  */
85 static int DetectAckMatch(DetectEngineThreadCtx *det_ctx,
86  Packet *p, const Signature *s, const SigMatchCtx *ctx)
87 {
89  const DetectAckData *data = (const DetectAckData *)ctx;
90 
91  /* This is only needed on TCP packets */
92  if (!(PacketIsTCP(p))) {
93  return 0;
94  }
95 
96  return (data->ack == TCP_GET_RAW_ACK(PacketGetTCP(p))) ? 1 : 0;
97 }
98 
99 /**
100  * \internal
101  * \brief this function is used to add the ack option into the signature
102  *
103  * \param de_ctx pointer to the Detection Engine Context
104  * \param s pointer to the Current Signature
105  * \param m pointer to the Current SigMatch
106  * \param optstr pointer to the user provided options
107  *
108  * \retval 0 on Success
109  * \retval -1 on Failure
110  */
111 static int DetectAckSetup(DetectEngineCtx *de_ctx, Signature *s, const char *optstr)
112 {
113  DetectAckData *data = NULL;
114 
115  data = SCMalloc(sizeof(DetectAckData));
116  if (unlikely(data == NULL))
117  goto error;
118 
119  if (StringParseUint32(&data->ack, 10, 0, optstr) < 0) {
120  goto error;
121  }
122 
124  de_ctx, s, DETECT_ACK, (SigMatchCtx *)data, DETECT_SM_LIST_MATCH) == NULL) {
125  goto error;
126  }
128 
129  return 0;
130 
131 error:
132  if (data)
133  SCFree(data);
134  return -1;
135 
136 }
137 
138 /**
139  * \internal
140  * \brief this function will free memory associated with ack option
141  *
142  * \param data pointer to ack configuration data
143  */
144 static void DetectAckFree(DetectEngineCtx *de_ctx, void *ptr)
145 {
146  DetectAckData *data = (DetectAckData *)ptr;
147  SCFree(data);
148 }
149 
150 /* prefilter code */
151 
152 static void
153 PrefilterPacketAckMatch(DetectEngineThreadCtx *det_ctx, Packet *p, const void *pectx)
154 {
156  const PrefilterPacketHeaderCtx *ctx = pectx;
157 
158  if (!PrefilterPacketHeaderExtraMatch(ctx, p))
159  return;
160 
161  if (p->proto == IPPROTO_TCP && PacketIsTCP(p) &&
162  (TCP_GET_RAW_ACK(PacketGetTCP(p)) == ctx->v1.u32[0])) {
163  SCLogDebug("packet matches TCP ack %u", ctx->v1.u32[0]);
164  PrefilterAddSids(&det_ctx->pmq, ctx->sigs_array, ctx->sigs_cnt);
165  }
166 }
167 
168 static void
169 PrefilterPacketAckSet(PrefilterPacketHeaderValue *v, void *smctx)
170 {
171  const DetectAckData *a = smctx;
172  v->u32[0] = a->ack;
173 }
174 
175 static bool
176 PrefilterPacketAckCompare(PrefilterPacketHeaderValue v, void *smctx)
177 {
178  const DetectAckData *a = smctx;
179  if (v.u32[0] == a->ack)
180  return true;
181  return false;
182 }
183 
184 static int PrefilterSetupTcpAck(DetectEngineCtx *de_ctx, SigGroupHead *sgh)
185 {
187  PrefilterPacketAckSet, PrefilterPacketAckCompare, PrefilterPacketAckMatch);
188 }
189 
190 static bool PrefilterTcpAckIsPrefilterable(const Signature *s)
191 {
192  const SigMatch *sm;
193  for (sm = s->init_data->smlists[DETECT_SM_LIST_MATCH] ; sm != NULL; sm = sm->next) {
194  switch (sm->type) {
195  case DETECT_ACK:
196  return true;
197  }
198  }
199  return false;
200 }
201 
202 #ifdef UNITTESTS
203 #include "detect-engine-alert.h"
204 /**
205  * \internal
206  * \brief This test tests sameip success and failure.
207  */
208 static int DetectAckSigTest01(void)
209 {
210  ThreadVars th_v;
211  memset(&th_v, 0, sizeof(th_v));
212  DetectEngineThreadCtx *det_ctx = NULL;
213 
214  /* TCP w/ack=42 */
215  Packet *p1 = UTHBuildPacket(NULL, 0, IPPROTO_TCP);
216  p1->l4.hdrs.tcph->th_ack = htonl(42);
217 
218  /* TCP w/ack=100 */
219  Packet *p2 = UTHBuildPacket(NULL, 0, IPPROTO_TCP);
220  p2->l4.hdrs.tcph->th_ack = htonl(100);
221 
222  /* ICMP */
223  Packet *p3 = UTHBuildPacket(NULL, 0, IPPROTO_ICMP);
224 
227  de_ctx->flags |= DE_QUIET;
228 
229  /* These three are crammed in here as there is no Parse */
230  Signature *s = DetectEngineAppendSig(de_ctx, "alert tcp any any -> any any "
231  "(msg:\"Testing ack\";ack:foo;sid:1;)");
232  FAIL_IF_NOT_NULL(s);
233  s = DetectEngineAppendSig(de_ctx, "alert tcp any any -> any any "
234  "(msg:\"Testing ack\";ack:9999999999;sid:1;)");
235  FAIL_IF_NOT_NULL(s);
236  s = DetectEngineAppendSig(de_ctx, "alert tcp any any -> any any "
237  "(msg:\"Testing ack\";ack:-100;sid:1;)");
238  FAIL_IF_NOT_NULL(s);
239 
240  s = DetectEngineAppendSig(de_ctx, "alert tcp any any -> any any "
241  "(msg:\"Testing ack\";ack:41;sid:1;)");
242  FAIL_IF_NULL(s);
243  s = DetectEngineAppendSig(de_ctx, "alert tcp any any -> any any "
244  "(msg:\"Testing ack\";ack:42;sid:2;)");
245  FAIL_IF_NULL(s);
246 
248  DetectEngineThreadCtxInit(&th_v, (void *)de_ctx, (void *)&det_ctx);
249 
250  SigMatchSignatures(&th_v, de_ctx, det_ctx, p1);
251  FAIL_IF(PacketAlertCheck(p1, 1));
253 
254  SigMatchSignatures(&th_v, de_ctx, det_ctx, p2);
255  FAIL_IF(PacketAlertCheck(p2, 1));
256  FAIL_IF(PacketAlertCheck(p2, 2));
257 
258  SigMatchSignatures(&th_v, de_ctx, det_ctx, p3);
259  FAIL_IF(PacketAlertCheck(p3, 1));
260  FAIL_IF(PacketAlertCheck(p3, 2));
261 
262  UTHFreePacket(p1);
263  UTHFreePacket(p2);
264  UTHFreePacket(p3);
265 
266  DetectEngineThreadCtxDeinit(&th_v, (void *)det_ctx);
268  StatsThreadCleanup(&th_v);
269  PASS;
270 }
271 
272 /**
273  * \internal
274  * \brief This function registers unit tests for DetectAck
275  */
276 static void DetectAckRegisterTests(void)
277 {
278  UtRegisterTest("DetectAckSigTest01", DetectAckSigTest01);
279 }
280 #endif /* UNITTESTS */
util-byte.h
SigTableElmt_::url
const char * url
Definition: detect.h:1460
Packet_::proto
uint8_t proto
Definition: decode.h:523
detect-engine.h
FAIL_IF_NULL
#define FAIL_IF_NULL(expr)
Fail a test if expression evaluates to NULL.
Definition: util-unittest.h:89
SIG_MASK_REQUIRE_REAL_PKT
#define SIG_MASK_REQUIRE_REAL_PKT
Definition: detect.h:316
SignatureInitData_::smlists
struct SigMatch_ * smlists[DETECT_SM_LIST_MAX]
Definition: detect.h:642
SigTableElmt_::desc
const char * desc
Definition: detect.h:1459
sigmatch_table
SigTableElmt * sigmatch_table
Definition: detect-parse.c:79
SigTableElmt_::Free
void(* Free)(DetectEngineCtx *, void *)
Definition: detect.h:1444
SigTableElmt_::name
const char * name
Definition: detect.h:1457
PKT_IS_PSEUDOPKT
#define PKT_IS_PSEUDOPKT(p)
return 1 if the packet is a pseudo packet
Definition: decode.h:1323
SigGroupHead_
Container for matching data for a signature group.
Definition: detect.h:1627
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:279
PacketAlertCheck
int PacketAlertCheck(Packet *p, uint32_t sid)
Check if a certain sid alerted, this is used in the test functions.
Definition: detect-engine-alert.c:142
DetectEngineThreadCtx_::pmq
PrefilterRuleStore pmq
Definition: detect.h:1347
ctx
struct Thresholds ctx
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:932
DetectEngineCtxFree
void DetectEngineCtxFree(DetectEngineCtx *)
Free a DetectEngineCtx::
Definition: detect-engine.c:2634
DE_QUIET
#define DE_QUIET
Definition: detect.h:330
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:365
SigMatchSignatures
void SigMatchSignatures(ThreadVars *tv, DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, Packet *p)
wrapper for old tests
Definition: detect.c:2416
DetectEngineAppendSig
Signature * DetectEngineAppendSig(DetectEngineCtx *, const char *)
Parse and append a Signature into the Detection Engine Context signature list.
Definition: detect-parse.c:3439
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1439
detect-engine-prefilter.h
util-unittest.h
util-unittest-helper.h
FAIL_IF_NOT
#define FAIL_IF_NOT(expr)
Fail a test if expression evaluates to false.
Definition: util-unittest.h:82
TCPHdr_::th_ack
uint32_t th_ack
Definition: decode-tcp.h:153
SigTableElmt_::SetupPrefilter
int(* SetupPrefilter)(DetectEngineCtx *de_ctx, struct SigGroupHead_ *sgh)
Definition: detect.h:1442
PrefilterPacketHeaderCtx_
Definition: detect-engine-prefilter-common.h:35
decode.h
FAIL_IF_NOT_NULL
#define FAIL_IF_NOT_NULL(expr)
Fail a test if expression evaluates to non-NULL.
Definition: util-unittest.h:96
util-debug.h
PASS
#define PASS
Pass the test.
Definition: util-unittest.h:105
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:18
DetectEngineThreadCtx_
Definition: detect.h:1244
PrefilterPacketHeaderValue::u32
uint32_t u32[4]
Definition: detect-engine-prefilter-common.h:26
detect-engine-mpm.h
SCSigMatchAppendSMToList
SigMatch * SCSigMatchAppendSMToList(DetectEngineCtx *de_ctx, Signature *s, uint16_t type, SigMatchCtx *ctx, const int list)
Append a SigMatch to the list type.
Definition: detect-parse.c:388
detect.h
ThreadVars_
Per thread variable structure.
Definition: threadvars.h:58
DetectEngineThreadCtxInit
TmEcode DetectEngineThreadCtxInit(ThreadVars *tv, void *initdata, void **data)
initialize thread specific detection engine context
Definition: detect-engine.c:3364
SigMatch_::next
struct SigMatch_ * next
Definition: detect.h:360
StringParseUint32
int StringParseUint32(uint32_t *res, int base, size_t len, const char *str)
Definition: util-byte.c:316
DETECT_SM_LIST_MATCH
@ DETECT_SM_LIST_MATCH
Definition: detect.h:117
DetectAckData_::ack
uint32_t ack
Definition: detect-tcp-ack.h:31
DETECT_ACK
@ DETECT_ACK
Definition: detect-engine-register.h:36
Signature_::flags
uint32_t flags
Definition: detect.h:669
Packet_
Definition: decode.h:501
detect-engine-build.h
detect-engine-alert.h
Packet_::l4
struct PacketL4 l4
Definition: decode.h:601
Signature_::init_data
SignatureInitData * init_data
Definition: detect.h:747
PrefilterSetupPacketHeader
int PrefilterSetupPacketHeader(DetectEngineCtx *de_ctx, SigGroupHead *sgh, int sm_type, SignatureMask mask, 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:470
SigTableElmt_::Match
int(* Match)(DetectEngineThreadCtx *, Packet *, const Signature *, const SigMatchCtx *)
Definition: detect.h:1419
SigGroupBuild
int SigGroupBuild(DetectEngineCtx *de_ctx)
Convert the signature list into the runtime match structure.
Definition: detect-engine-build.c:2194
SigMatchCtx_
Used to start a pointer to SigMatch context Should never be dereferenced without casting to something...
Definition: detect.h:351
DetectAckRegister
void DetectAckRegister(void)
Registration function for ack: keyword.
Definition: detect-tcp-ack.c:56
FAIL_IF
#define FAIL_IF(expr)
Fail a test if expression evaluates to true.
Definition: util-unittest.h:71
SigTableElmt_::alias
const char * alias
Definition: detect.h:1458
suricata-common.h
SigMatch_::type
uint16_t type
Definition: detect.h:357
DetectEngineThreadCtxDeinit
TmEcode DetectEngineThreadCtxDeinit(ThreadVars *tv, void *data)
Definition: detect-engine.c:3596
SCMalloc
#define SCMalloc(sz)
Definition: util-mem.h:47
PacketL4::L4Hdrs::tcph
TCPHdr * tcph
Definition: decode.h:469
detect-tcp-ack.h
SCFree
#define SCFree(p)
Definition: util-mem.h:61
SigTableElmt_::SupportsPrefilter
bool(* SupportsPrefilter)(const Signature *s)
Definition: detect.h:1441
UTHFreePacket
void UTHFreePacket(Packet *p)
UTHFreePacket: function to release the allocated data from UTHBuildPacket and the packet itself.
Definition: util-unittest-helper.c:473
detect-parse.h
Signature_
Signature container.
Definition: detect.h:668
SigMatch_
a single match condition for a signature
Definition: detect.h:356
PacketL4::hdrs
union PacketL4::L4Hdrs hdrs
DetectEngineCtxInit
DetectEngineCtx * DetectEngineCtxInit(void)
Definition: detect-engine.c:2595
PrefilterPacketHeaderValue
Definition: detect-engine-prefilter-common.h:23
DetectEngineCtx_::flags
uint8_t flags
Definition: detect.h:934
detect-engine-prefilter-common.h
TCP_GET_RAW_ACK
#define TCP_GET_RAW_ACK(tcph)
Definition: decode-tcp.h:81
StatsThreadCleanup
void StatsThreadCleanup(ThreadVars *tv)
Definition: counters.c:1324
DEBUG_VALIDATE_BUG_ON
#define DEBUG_VALIDATE_BUG_ON(exp)
Definition: util-validate.h:102
DetectAckData_
ack data
Definition: detect-tcp-ack.h:30
SigTableElmt_::RegisterTests
void(* RegisterTests)(void)
Definition: detect.h:1446
SIG_FLAG_REQUIRE_PACKET
#define SIG_FLAG_REQUIRE_PACKET
Definition: detect.h:254