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);
311 hdr_offset +=
sizeof(
UDPHdr);
325 hdr_offset +=
sizeof(
TCPHdr);
369 "192.168.1.5",
"192.168.1.1",
390 memset(&th_v, 0,
sizeof(th_v));
407 uint8_t ipproto,
const char *
src,
const char *
dst)
425 uint8_t ipproto,
const char *
src,
const char *
dst)
443 uint8_t ipproto, uint16_t sport, uint16_t dport)
446 "192.168.1.5",
"192.168.1.1",
462 for (; i < numpkts; i++) {
501 uint8_t *data, uint32_t data_len)
508 StreamingBufferSegment seg;
571 int UTHGenericTest(
Packet **pkt,
int numpkts,
const char *sigs[], uint32_t sids[], uint32_t *results,
int numsigs)
575 if (pkt == NULL || sigs == NULL || numpkts == 0
576 || sids == NULL || results == NULL || numsigs == 0) {
577 SCLogError(
"Arguments invalid, that the pointer/arrays are not NULL, and the number of "
578 "signatures and packets is > 0");
613 if (p == NULL || sids == NULL) {
615 "packet is NULL, and if the array contain sids is set");
621 for (; i < numsigs; i++) {
623 if (r != results[i]) {
624 SCLogInfo(
"Sid %" PRIu32
" matched %" PRIu32
" times, and not %" PRIu32
" as expected",
625 sids[i], r, results[i]);
628 SCLogInfo(
"Sid %" PRIu32
" matched %" PRIu32
" times, as expected", sids[i], r);
650 for (
int i = 0; i < numsigs; i++) {
651 if (sigs[i] == NULL) {
689 memset(&th_v, 0,
sizeof(th_v));
694 for (
int i = 0; i < num_packets; i++) {
727 memset(&th_v, 0,
sizeof(th_v));
734 for (
int i = 0; i < num_packets; i++)
767 memset(&th_v, 0,
sizeof(th_v));
771 printf(
"de_ctx == NULL: ");
780 printf(
"signature == NULL: ");
789 printf(
"signature didn't alert: ");
820 memset(&th_v, 0,
sizeof(th_v));
862 memset(&fls, 0,
sizeof(fls));
865 uint8_t payload[] =
"Payload";
866 for (; i < end; i++) {
869 p->
src.addr_data32[0] = i;
870 p->
dst.addr_data32[0] = i + 1;
872 p->
src.addr_data32[0] = i + 1;
873 p->
dst.addr_data32[0] = i;
876 if (p->
flow != NULL) {
919 static int CheckUTHTestPacket(
Packet *p, uint8_t ipproto)
921 uint16_t sport = 41424;
923 uint8_t payload[] =
"Payload";
925 uint8_t
len =
sizeof(payload);
933 if (strncmp((
char *)payload, (
char *)p->
payload,
len) != 0)
940 if (p->
proto != ipproto)
945 const UDPHdr *udph = PacketGetUDP(p);
955 const TCPHdr *tcph = PacketGetTCP(p);
970 void *
UTHmemsearch(
const void *big,
size_t big_len,
const void *little,
size_t little_len) {
971 return memmem(big, big_len, little, little_len);
975 void *
UTHmemsearch(
const void *big,
size_t big_len,
const void *little,
size_t little_len) {
976 return BasicSearch(big, big_len, little, little_len);
983 static int UTHBuildPacketRealTest01(
void)
985 uint8_t payload[] =
"Payload";
988 "192.168.1.5",
"192.168.1.1", 41424, 80);
990 int ret = CheckUTHTestPacket(p, IPPROTO_TCP);
999 static int UTHBuildPacketRealTest02(
void)
1001 uint8_t payload[] =
"Payload";
1004 "192.168.1.5",
"192.168.1.1", 41424, 80);
1006 int ret = CheckUTHTestPacket(p, IPPROTO_UDP);
1014 static int UTHBuildPacketTest01(
void)
1016 uint8_t payload[] =
"Payload";
1020 int ret = CheckUTHTestPacket(p, IPPROTO_TCP);
1029 static int UTHBuildPacketTest02(
void)
1031 uint8_t payload[] =
"Payload";
1035 int ret = CheckUTHTestPacket(p, IPPROTO_UDP);
1044 static int UTHBuildPacketOfFlowsTest01(
void)
1066 static int UTHBuildPacketSrcDstTest01(
void)
1068 uint8_t payload[] =
"Payload";
1071 "192.168.1.5",
"192.168.1.1");
1073 int ret = CheckUTHTestPacket(p, IPPROTO_TCP);
1082 static int UTHBuildPacketSrcDstTest02(
void)
1084 uint8_t payload[] =
"Payload";
1087 "192.168.1.5",
"192.168.1.1");
1089 int ret = CheckUTHTestPacket(p, IPPROTO_UDP);
1098 static int UTHBuildPacketSrcDstPortsTest01(
void)
1100 uint8_t payload[] =
"Payload";
1105 int ret = CheckUTHTestPacket(p, IPPROTO_TCP);
1114 static int UTHBuildPacketSrcDstPortsTest02(
void)
1116 uint8_t payload[] =
"Payload";
1121 int ret = CheckUTHTestPacket(p, IPPROTO_UDP);
1132 UtRegisterTest(
"UTHBuildPacketRealTest01", UTHBuildPacketRealTest01);
1133 UtRegisterTest(
"UTHBuildPacketRealTest02", UTHBuildPacketRealTest02);
1136 UtRegisterTest(
"UTHBuildPacketSrcDstTest01", UTHBuildPacketSrcDstTest01);
1137 UtRegisterTest(
"UTHBuildPacketSrcDstTest02", UTHBuildPacketSrcDstTest02);
1139 UTHBuildPacketSrcDstPortsTest01);
1141 UTHBuildPacketSrcDstPortsTest02);
1142 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.