Go to the documentation of this file.
51 #if defined(UNITTESTS) || defined(FUZZ)
58 printf(
"FlowAlloc failed\n");
62 memset(f, 0x00,
sizeof(
Flow));
66 if (family == AF_INET) {
68 }
else if (family == AF_INET6) {
73 if (family == AF_INET) {
74 if (inet_pton(AF_INET,
src, &in) != 1) {
75 printf(
"invalid address %s\n",
src);
79 f->src.addr_data32[0] = in.s_addr;
85 if (family == AF_INET) {
86 if (inet_pton(AF_INET,
dst, &in) != 1) {
87 printf(
"invalid address %s\n",
dst);
91 f->dst.addr_data32[0] = in.s_addr;
105 if (remove(name) != 0) {
106 if (errno != ENOENT) {
107 printf(
"failed remove, errno=%d\n", errno);
111 FILE *fd = fopen(name,
"wb");
113 printf(
"failed open, errno=%d\n", errno);
116 if (fwrite (data, 1, size, fd) != size) {
128 PacketSetIPV4(p, (uint8_t *)ip4h);
133 PacketSetIPV6(p, (uint8_t *)ip6h);
138 PacketSetTCP(p, (uint8_t *)tcph);
151 if (inet_pton(AF_INET,
str, &in) != 1) {
152 printf(
"invalid IPv6 address %s\n",
str);
155 return (uint32_t)in.s_addr;
173 uint8_t ipproto,
const char *
src,
const char *
dst,
174 uint16_t sport, uint16_t dport)
194 ip6h->s_ip6_nxt = ipproto;
198 if (inet_pton(AF_INET6,
src, &in) != 1)
200 p->
src.addr_data32[0] = in[0];
201 p->
src.addr_data32[1] = in[1];
202 p->
src.addr_data32[2] = in[2];
203 p->
src.addr_data32[3] = in[3];
205 ip6h->s_ip6_src[0] = in[0];
206 ip6h->s_ip6_src[1] = in[1];
207 ip6h->s_ip6_src[2] = in[2];
208 ip6h->s_ip6_src[3] = in[3];
210 if (inet_pton(AF_INET6,
dst, &in) != 1)
212 p->
dst.addr_data32[0] = in[0];
213 p->
dst.addr_data32[1] = in[1];
214 p->
dst.addr_data32[2] = in[2];
215 p->
dst.addr_data32[3] = in[3];
217 ip6h->s_ip6_dst[0] = in[0];
218 ip6h->s_ip6_dst[1] = in[1];
219 ip6h->s_ip6_dst[2] = in[2];
220 ip6h->s_ip6_dst[3] = in[3];
225 memset(tcph, 0,
sizeof(
TCPHdr));
261 uint8_t ipproto,
const char *
src,
const char *
dst,
262 uint16_t sport, uint16_t dport)
272 p->src.family = AF_INET;
273 p->dst.family = AF_INET;
274 p->payload = payload;
278 if (inet_pton(AF_INET,
src, &in) != 1)
280 p->src.addr_data32[0] = in.s_addr;
281 if (ipproto == IPPROTO_TCP || ipproto == IPPROTO_UDP || ipproto ==
IPPROTO_SCTP)
284 if (inet_pton(AF_INET,
dst, &in) != 1)
286 p->dst.addr_data32[0] = in.s_addr;
287 if (ipproto == IPPROTO_TCP || ipproto == IPPROTO_UDP || ipproto ==
IPPROTO_SCTP)
294 ip4h->s_ip_src.s_addr = p->src.addr_data32[0];
295 ip4h->s_ip_dst.s_addr = p->dst.addr_data32[0];
300 int hdr_offset =
sizeof(
IPV4Hdr);
309 hdr_offset +=
sizeof(
UDPHdr);
319 hdr_offset +=
sizeof(
TCPHdr);
363 "192.168.1.5",
"192.168.1.1",
384 memset(&th_v, 0,
sizeof(th_v));
401 uint8_t ipproto,
const char *
src,
const char *
dst)
419 uint8_t ipproto,
const char *
src,
const char *
dst)
437 uint8_t ipproto, uint16_t sport, uint16_t dport)
440 "192.168.1.5",
"192.168.1.1",
456 for (; i < numpkts; i++) {
495 uint8_t *data, uint32_t data_len)
502 StreamingBufferSegment seg;
565 int UTHGenericTest(
Packet **pkt,
int numpkts,
const char *sigs[], uint32_t sids[], uint32_t *results,
int numsigs)
569 if (pkt == NULL || sigs == NULL || numpkts == 0
570 || sids == NULL || results == NULL || numsigs == 0) {
571 SCLogError(
"Arguments invalid, that the pointer/arrays are not NULL, and the number of "
572 "signatures and packets is > 0");
607 if (p == NULL || sids == NULL) {
609 "packet is NULL, and if the array contain sids is set");
615 for (; i < numsigs; i++) {
617 if (r != results[i]) {
618 SCLogInfo(
"Sid %" PRIu32
" matched %" PRIu32
" times, and not %" PRIu32
" as expected",
619 sids[i], r, results[i]);
622 SCLogInfo(
"Sid %" PRIu32
" matched %" PRIu32
" times, as expected", sids[i], r);
644 for (
int i = 0; i < numsigs; i++) {
645 if (sigs[i] == NULL) {
683 memset(&th_v, 0,
sizeof(th_v));
688 for (
int i = 0; i < num_packets; i++) {
721 memset(&th_v, 0,
sizeof(th_v));
728 for (
int i = 0; i < num_packets; i++)
761 memset(&th_v, 0,
sizeof(th_v));
765 printf(
"de_ctx == NULL: ");
774 printf(
"signature == NULL: ");
783 printf(
"signature didn't alert: ");
814 memset(&th_v, 0,
sizeof(th_v));
856 memset(&fls, 0,
sizeof(fls));
859 uint8_t payload[] =
"Payload";
860 for (; i < end; i++) {
863 p->
src.addr_data32[0] = i;
864 p->
dst.addr_data32[0] = i + 1;
866 p->
src.addr_data32[0] = i + 1;
867 p->
dst.addr_data32[0] = i;
870 if (p->
flow != NULL) {
913 static int CheckUTHTestPacket(
Packet *p, uint8_t ipproto)
915 uint16_t sport = 41424;
917 uint8_t payload[] =
"Payload";
919 uint8_t
len =
sizeof(payload);
927 if (strncmp((
char *)payload, (
char *)p->
payload,
len) != 0)
934 if (p->
proto != ipproto)
939 const UDPHdr *udph = PacketGetUDP(p);
949 const TCPHdr *tcph = PacketGetTCP(p);
964 void *
UTHmemsearch(
const void *big,
size_t big_len,
const void *little,
size_t little_len) {
965 return memmem(big, big_len, little, little_len);
969 void *
UTHmemsearch(
const void *big,
size_t big_len,
const void *little,
size_t little_len) {
970 return BasicSearch(big, big_len, little, little_len);
977 static int UTHBuildPacketRealTest01(
void)
979 uint8_t payload[] =
"Payload";
982 "192.168.1.5",
"192.168.1.1", 41424, 80);
984 int ret = CheckUTHTestPacket(p, IPPROTO_TCP);
993 static int UTHBuildPacketRealTest02(
void)
995 uint8_t payload[] =
"Payload";
998 "192.168.1.5",
"192.168.1.1", 41424, 80);
1000 int ret = CheckUTHTestPacket(p, IPPROTO_UDP);
1008 static int UTHBuildPacketTest01(
void)
1010 uint8_t payload[] =
"Payload";
1014 int ret = CheckUTHTestPacket(p, IPPROTO_TCP);
1023 static int UTHBuildPacketTest02(
void)
1025 uint8_t payload[] =
"Payload";
1029 int ret = CheckUTHTestPacket(p, IPPROTO_UDP);
1038 static int UTHBuildPacketOfFlowsTest01(
void)
1060 static int UTHBuildPacketSrcDstTest01(
void)
1062 uint8_t payload[] =
"Payload";
1065 "192.168.1.5",
"192.168.1.1");
1067 int ret = CheckUTHTestPacket(p, IPPROTO_TCP);
1076 static int UTHBuildPacketSrcDstTest02(
void)
1078 uint8_t payload[] =
"Payload";
1081 "192.168.1.5",
"192.168.1.1");
1083 int ret = CheckUTHTestPacket(p, IPPROTO_UDP);
1092 static int UTHBuildPacketSrcDstPortsTest01(
void)
1094 uint8_t payload[] =
"Payload";
1099 int ret = CheckUTHTestPacket(p, IPPROTO_TCP);
1108 static int UTHBuildPacketSrcDstPortsTest02(
void)
1110 uint8_t payload[] =
"Payload";
1115 int ret = CheckUTHTestPacket(p, IPPROTO_UDP);
1126 UtRegisterTest(
"UTHBuildPacketRealTest01", UTHBuildPacketRealTest01);
1127 UtRegisterTest(
"UTHBuildPacketRealTest02", UTHBuildPacketRealTest02);
1130 UtRegisterTest(
"UTHBuildPacketSrcDstTest01", UTHBuildPacketSrcDstTest01);
1131 UtRegisterTest(
"UTHBuildPacketSrcDstTest02", UTHBuildPacketSrcDstTest02);
1133 UTHBuildPacketSrcDstPortsTest01);
1135 UTHBuildPacketSrcDstPortsTest02);
1136 UtRegisterTest(
"UTHBuildPacketOfFlowsTest01", UTHBuildPacketOfFlowsTest01);
FlowQueuePrivate work_queue
int UTHParseSignature(const char *str, bool expect)
parser a sig and see if the expected result is correct
void * UTHmemsearch(const void *big, size_t big_len, const void *little, size_t little_len)
#define FAIL_IF_NULL(expr)
Fail a test if expression evaluates to NULL.
int UTHAddStreamToFlow(Flow *f, int direction, uint8_t *data, uint32_t data_len)
uint32_t FlowSpareGetPoolSize(void)
void UtRegisterTest(const char *name, int(*TestFn)(void))
Register unit test.
int PacketAlertCheck(Packet *p, uint32_t sid)
Check if a certain sid alerted, this is used in the test functions.
Packet * UTHBuildPacketSrcDst(uint8_t *payload, uint16_t payload_len, uint8_t ipproto, const char *src, const char *dst)
UTHBuildPacketSrcDst is a wrapper that build packets specifying IPs and defaulting ports.
void UTHSetIPV4Hdr(Packet *p, IPV4Hdr *ip4h)
uint32_t UTHSetIPv4Address(const char *str)
return the uint32_t for a ipv4 address string
main detection engine ctx
int UTHPacketMatchSigMpm(Packet *p, char *sig, uint16_t mpm_type)
StreamingBufferConfig sbcnf
void DetectEngineCtxFree(DetectEngineCtx *)
Free a DetectEngineCtx::
int PacketCopyDataOffset(Packet *p, uint32_t offset, const uint8_t *data, uint32_t datalen)
Copy data to Packet payload at given offset.
struct ICMPV4Hdr_ ICMPV4Hdr
void SCSigSignatureOrderingModuleCleanup(DetectEngineCtx *de_ctx)
De-registers all the signature ordering functions registered.
int UTHCheckPacketMatchResults(Packet *p, uint32_t sids[], uint32_t results[], int numsigs)
UTHCheckPacketMatches: function to check if a packet match some sids.
int UTHPacketMatchSig(Packet *p, const char *sig)
int StreamingBufferAppend(StreamingBuffer *sb, const StreamingBufferConfig *cfg, StreamingBufferSegment *seg, const uint8_t *data, uint32_t data_len)
void FlowHandlePacket(ThreadVars *tv, FlowLookupStruct *fls, Packet *p)
Entry point for packet flow handling.
void UTHSetTCPHdr(Packet *p, TCPHdr *tcph)
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.
void SigMatchSignatures(ThreadVars *tv, DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, Packet *p)
wrapper for old tests
Packet * UTHBuildPacketSrcDstPorts(uint8_t *payload, uint16_t payload_len, uint8_t ipproto, uint16_t sport, uint16_t dport)
UTHBuildPacketSrcDstPorts is a wrapper that build packets specifying src and dst ports and defaulting...
void SigCleanSignatures(DetectEngineCtx *de_ctx)
void UTHSetIPV6Hdr(Packet *p, IPV6Hdr *ip6h)
Signature * DetectEngineAppendSig(DetectEngineCtx *, const char *)
Parse and append a Signature into the Detection Engine Context signature list.
TcpStreamCnf stream_config
Packet * UTHBuildPacketReal(uint8_t *payload, uint16_t payload_len, uint8_t ipproto, const char *src, const char *dst, uint16_t sport, uint16_t dport)
UTHBuildPacketReal is a function that create tcp/udp packets for unittests specifying ip and port sou...
#define FAIL_IF_NOT(expr)
Fail a test if expression evaluates to false.
#define FLOWLOCK_UNLOCK(fb)
uint32_t UTHBuildPacketOfFlows(uint32_t start, uint32_t end, uint8_t dir)
void UTHAssignFlow(Packet *p, Flow *f)
void FlowInitConfig(bool quiet)
initialize the configuration
#define SET_PKT_LEN(p, len)
int UTHMatchPackets(DetectEngineCtx *de_ctx, Packet **p, int num_packets)
Flow * UTHBuildFlow(int family, const char *src, const char *dst, Port sp, Port dp)
#define FLOW_INITIALIZE(f)
Packet * UTHBuildPacketIPV6Real(uint8_t *payload, uint16_t payload_len, uint8_t ipproto, const char *src, const char *dst, uint16_t sport, uint16_t dport)
UTHBuildPacketReal is a function that create tcp/udp packets for unittests specifying ip and port sou...
#define FAIL_IF_NOT_NULL(expr)
Fail a test if expression evaluates to non-NULL.
#define PASS
Pass the test.
int UTHMatchPacketsWithResults(DetectEngineCtx *de_ctx, Packet **p, int num_packets, uint32_t sids[], uint32_t *results, int numsigs)
void SCSigOrderSignatures(DetectEngineCtx *de_ctx)
Orders the signatures.
void UTHRegisterTests(void)
int UTHAddSessionToFlow(Flow *f, uint32_t ts_isn, uint32_t tc_isn)
Per thread variable structure.
TmEcode DetectEngineThreadCtxInit(ThreadVars *tv, void *initdata, void **data)
initialize thread specific detection engine context
void SCSigRegisterSignatureOrderingFuncs(DetectEngineCtx *de_ctx)
Lets you register the Signature ordering functions. The order in which the functions are registered s...
void PacketFree(Packet *p)
Return a malloced packet.
int TestHelperBufferToFile(const char *name, const uint8_t *data, size_t size)
writes the contents of a buffer into a file
Flow * FlowQueuePrivateGetFromTop(FlowQueuePrivate *fqc)
Signature * SigInit(DetectEngineCtx *de_ctx, const char *sigstr)
Parses a signature and adds it to the Detection Engine Context.
int SigGroupCleanup(DetectEngineCtx *de_ctx)
uint8_t * BasicSearch(const uint8_t *haystack, uint32_t haystack_len, const uint8_t *needle, uint16_t needle_len)
Basic search improved. Limits are better handled, so it doesn't start searches that wont fit in the r...
#define STREAMING_BUFFER_INITIALIZER
#define SCLogInfo(...)
Macro used to log INFORMATIONAL messages.
int SigGroupBuild(DetectEngineCtx *de_ctx)
Convert the signature list into the runtime match structure.
void UTHFreeFlow(Flow *flow)
FlowQueuePrivate spare_queue
void FlowFree(Flow *f)
cleanup & free the memory of a flow
Packet * UTHBuildPacketIPV6SrcDst(uint8_t *payload, uint16_t payload_len, uint8_t ipproto, const char *src, const char *dst)
UTHBuildPacketSrcDst is a wrapper that build packets specifying IPs and defaulting ports (IPV6)
void FlowShutdown(void)
shutdown the flow engine
TmEcode DetectEngineThreadCtxDeinit(ThreadVars *tv, void *data)
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...
Packet * PacketGetFromAlloc(void)
Get a malloced packet.
#define SCLogError(...)
Macro used to log ERROR messages.
Structure to hold thread specific data for all decode modules.
void UTHFreePacket(Packet *p)
UTHFreePacket: function to release the allocated data from UTHBuildPacket and the packet itself.
void StreamTcpSessionCleanup(TcpSession *ssn)
Session cleanup function. Does not free the ssn.
Packet * UTHBuildPacketFromEth(uint8_t *raw_eth, uint16_t pktsize)
UTHBuildPacketFromEth is a wrapper that build a packet for the rawbytes.
DetectEngineCtx * DetectEngineCtxInit(void)
Flow * TestHelperBuildFlow(int family, const char *src, const char *dst, Port sp, Port dp)
int UTHAppendSigs(DetectEngineCtx *de_ctx, const char *sigs[], int numsigs)
UTHAppendSigs: Add sigs to the detection_engine checking for errors.
int UTHRemoveSessionFromFlow(Flow *f)
int DecodeEthernet(ThreadVars *tv, DecodeThreadVars *dtv, Packet *p, const uint8_t *pkt, uint32_t len)
void UTHFreePackets(Packet **p, int numpkts)
UTHFreePackets: function to release the allocated data from UTHBuildPacket and the packet itself.