suricata
detect-udphdr.c
Go to the documentation of this file.
1 /* Copyright (C) 2007-2019 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 Victor Julien <victor@inliniac.net>
22  *
23  */
24 
25 #include "suricata-common.h"
26 
27 #include "detect.h"
28 #include "detect-parse.h"
29 #include "detect-engine.h"
30 #include "detect-engine-mpm.h"
33 #include "detect-fast-pattern.h"
34 #include "detect-udphdr.h"
35 
36 /* prototypes */
37 static int DetectUdphdrSetup (DetectEngineCtx *, Signature *, const char *);
38 #ifdef UNITTESTS
39 void DetectUdphdrRegisterTests (void);
40 #endif
41 
42 static int g_udphdr_buffer_id = 0;
43 
44 static InspectionBuffer *GetData(DetectEngineThreadCtx *det_ctx,
45  const DetectEngineTransforms *transforms, Packet *p, const int list_id);
46 /**
47  * \brief Registration function for udp.hdr: keyword
48  */
50 {
51  sigmatch_table[DETECT_UDPHDR].name = "udp.hdr";
52  sigmatch_table[DETECT_UDPHDR].desc = "sticky buffer to match on the UDP header";
53  sigmatch_table[DETECT_UDPHDR].url = "/rules/header-keywords.html#udphdr";
54  sigmatch_table[DETECT_UDPHDR].Setup = DetectUdphdrSetup;
56 #ifdef UNITTESTS
58 #endif
59 
60  g_udphdr_buffer_id = DetectBufferTypeRegister("udp.hdr");
61  BUG_ON(g_udphdr_buffer_id < 0);
62 
64 
66 
68 }
69 
70 /**
71  * \brief set up the udp.hdr sticky buffer
72  *
73  * \param de_ctx pointer to the Detection Engine Context
74  * \param s pointer to the Current Signature
75  * \param _unused unused
76  *
77  * \retval 0 on Success
78  * \retval -1 on Failure
79  */
80 static int DetectUdphdrSetup (DetectEngineCtx *de_ctx, Signature *s, const char *_unused)
81 {
82  if (!(DetectProtoContainsProto(&s->proto, IPPROTO_UDP)))
83  return -1;
84 
86 
87  if (DetectBufferSetActiveList(de_ctx, s, g_udphdr_buffer_id) < 0)
88  return -1;
89 
90  return 0;
91 }
92 
93 static InspectionBuffer *GetData(DetectEngineThreadCtx *det_ctx,
94  const DetectEngineTransforms *transforms, Packet *p, const int list_id)
95 {
96  SCEnter();
97 
98  InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
99  if (buffer->inspect == NULL) {
100  if (!PacketIsUDP(p)) {
101  return NULL;
102  }
103  const UDPHdr *udph = PacketGetUDP(p);
104  if (((uint8_t *)udph + (ptrdiff_t)UDP_HEADER_LEN) >
105  ((uint8_t *)GET_PKT_DATA(p) + (ptrdiff_t)GET_PKT_LEN(p))) {
106  SCLogDebug("data out of range: %p > %p", ((uint8_t *)udph + (ptrdiff_t)UDP_HEADER_LEN),
107  ((uint8_t *)GET_PKT_DATA(p) + (ptrdiff_t)GET_PKT_LEN(p)));
108  return NULL;
109  }
110 
111  const uint32_t data_len = UDP_HEADER_LEN;
112  const uint8_t *data = (const uint8_t *)udph;
113 
114  InspectionBufferSetup(det_ctx, list_id, buffer, data, data_len);
115  InspectionBufferApplyTransforms(buffer, transforms);
116  }
117 
118  return buffer;
119 }
120 
121 #ifdef UNITTESTS
122 #include "tests/detect-udphdr.c"
123 #endif
SigTableElmt_::url
const char * url
Definition: detect.h:1304
detect-engine.h
SIGMATCH_INFO_STICKY_BUFFER
#define SIGMATCH_INFO_STICKY_BUFFER
Definition: detect.h:1509
SigTableElmt_::desc
const char * desc
Definition: detect.h:1303
sigmatch_table
SigTableElmt * sigmatch_table
Definition: detect-parse.c:127
SigTableElmt_::name
const char * name
Definition: detect.h:1301
DetectEngineTransforms
Definition: detect.h:408
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
DetectPktMpmRegister
void DetectPktMpmRegister(const char *name, int priority, int(*PrefilterRegister)(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id), InspectionBufferGetPktDataPtr GetData)
register a MPM engine
Definition: detect-engine-mpm.c:541
DetectBufferSetActiveList
int DetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
Definition: detect-engine.c:1354
InspectionBuffer
Definition: detect.h:373
SigTableElmt_::flags
uint16_t flags
Definition: detect.h:1295
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:841
DETECT_UDPHDR
@ DETECT_UDPHDR
Definition: detect-engine-register.h:293
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1286
detect-engine-prefilter.h
InspectionBufferGet
InspectionBuffer * InspectionBufferGet(DetectEngineThreadCtx *det_ctx, const int list_id)
Definition: detect-engine.c:1498
DetectBufferTypeSupportsPacket
void DetectBufferTypeSupportsPacket(const char *name)
Definition: detect-engine.c:1061
detect-udphdr.h
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:17
DetectEngineThreadCtx_
Definition: detect.h:1090
DetectPktInspectEngineRegister
void DetectPktInspectEngineRegister(const char *name, InspectionBufferGetPktDataPtr GetPktData, InspectionBufferPktInspectFunc Callback)
register inspect engine at start up time
Definition: detect-engine.c:128
SCEnter
#define SCEnter(...)
Definition: util-debug.h:271
GET_PKT_DATA
#define GET_PKT_DATA(p)
Definition: decode.h:211
detect-engine-mpm.h
detect.h
BUG_ON
#define BUG_ON(x)
Definition: suricata-common.h:300
Signature_::flags
uint32_t flags
Definition: detect.h:602
Packet_
Definition: decode.h:479
DetectUdphdrRegister
void DetectUdphdrRegister(void)
Registration function for udp.hdr: keyword.
Definition: detect-udphdr.c:49
GET_PKT_LEN
#define GET_PKT_LEN(p)
Definition: decode.h:210
detect-udphdr.c
PrefilterGenericMpmPktRegister
int PrefilterGenericMpmPktRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id)
Definition: detect-engine-prefilter.c:873
detect-engine-content-inspection.h
detect-fast-pattern.h
DetectBufferTypeRegister
int DetectBufferTypeRegister(const char *name)
Definition: detect-engine.c:1027
Signature_::proto
DetectProto proto
Definition: detect.h:620
suricata-common.h
InspectionBufferApplyTransforms
void InspectionBufferApplyTransforms(InspectionBuffer *buffer, const DetectEngineTransforms *transforms)
Definition: detect-engine.c:1697
UDPHdr_
Definition: decode-udp.h:42
InspectionBuffer::inspect
const uint8_t * inspect
Definition: detect.h:374
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:1593
detect-parse.h
Signature_
Signature container.
Definition: detect.h:601
DetectUdphdrRegisterTests
void DetectUdphdrRegisterTests(void)
this function registers unit tests for DetectUdphdr
Definition: detect-udphdr.c:44
UDP_HEADER_LEN
#define UDP_HEADER_LEN
Definition: decode-udp.h:27
SIGMATCH_NOOPT
#define SIGMATCH_NOOPT
Definition: detect.h:1485
DetectEngineInspectPktBufferGeneric
int DetectEngineInspectPktBufferGeneric(DetectEngineThreadCtx *det_ctx, const DetectEnginePktInspectionEngine *engine, const Signature *s, Packet *p, uint8_t *_alert_flags)
Do the content inspection & validation for a signature.
Definition: detect-engine.c:2236
SigTableElmt_::RegisterTests
void(* RegisterTests)(void)
Definition: detect.h:1293
DetectProtoContainsProto
int DetectProtoContainsProto(const DetectProto *dp, int proto)
see if a DetectProto contains a certain proto
Definition: detect-engine-proto.c:135
SIG_FLAG_REQUIRE_PACKET
#define SIG_FLAG_REQUIRE_PACKET
Definition: detect.h:250