suricata
flow.h
Go to the documentation of this file.
1 /* Copyright (C) 2007-2025 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 #ifndef SURICATA_FLOW_H
25 #define SURICATA_FLOW_H
26 
27 /* forward declaration for macset include */
28 typedef struct SCFlowStorageId SCFlowStorageId;
29 
30 #include "decode.h"
31 #include "util-time.h"
32 #include "util-exception-policy.h"
34 #include "util-var.h"
35 #include "util-optimize.h"
36 #include "util-validate.h"
37 #include "app-layer-protos.h"
38 #include "flow-bindgen.h"
39 
40 /* Part of the flow structure, so we declare it here.
41  * The actual declaration is in app-layer-parser.c */
43 
44 #define FLOW_QUIET true
45 
46 #define TOSERVER 0
47 #define TOCLIENT 1
48 
49 /* per flow flags */
50 
51 /** At least one packet from the source address was seen */
52 #define FLOW_TO_SRC_SEEN BIT_U64(0)
53 /** At least one packet from the destination address was seen */
54 #define FLOW_TO_DST_SEEN BIT_U64(1)
55 
56 /** next packet in toclient direction will act on updated app-layer state */
57 #define FLOW_TC_APP_UPDATE_NEXT BIT_U64(2)
58 
59 /** Flow is marked an elephant flow */
60 #define FLOW_IS_ELEPHANT_TOSERVER BIT_U64(3)
61 #define FLOW_IS_ELEPHANT_TOCLIENT BIT_U64(4)
62 
63 /** All packets in this flow should be accepted */
64 #define FLOW_ACTION_ACCEPT BIT_U64(5)
65 
66 /** Packet payloads belonging to this flow should not be inspected */
67 #define FLOW_NOPAYLOAD_INSPECTION BIT_U64(6)
68 
69 /** All packets in this flow should be dropped */
70 #define FLOW_ACTION_DROP BIT_U64(7)
71 
72 /** Sgh for toserver direction set (even if it's NULL) */
73 #define FLOW_SGH_TOSERVER BIT_U64(8)
74 /** Sgh for toclient direction set (even if it's NULL) */
75 #define FLOW_SGH_TOCLIENT BIT_U64(9)
76 
77 /** packet to server direction has been logged in drop file (only in IPS mode) */
78 #define FLOW_TOSERVER_DROP_LOGGED BIT_U64(10)
79 /** packet to client direction has been logged in drop file (only in IPS mode) */
80 #define FLOW_TOCLIENT_DROP_LOGGED BIT_U64(11)
81 
82 /** flow has alerts */
83 #define FLOW_HAS_ALERTS BIT_U64(12)
84 
85 /** Pattern matcher alproto detection done */
86 #define FLOW_TS_PM_ALPROTO_DETECT_DONE BIT_U64(13)
87 /** Probing parser alproto detection done */
88 #define FLOW_TS_PP_ALPROTO_DETECT_DONE BIT_U64(14)
89 /** Expectation alproto detection done */
90 #define FLOW_TS_PE_ALPROTO_DETECT_DONE BIT_U64(15)
91 /** Pattern matcher alproto detection done */
92 #define FLOW_TC_PM_ALPROTO_DETECT_DONE BIT_U64(16)
93 /** Probing parser alproto detection done */
94 #define FLOW_TC_PP_ALPROTO_DETECT_DONE BIT_U64(17)
95 /** Expectation alproto detection done */
96 #define FLOW_TC_PE_ALPROTO_DETECT_DONE BIT_U64(18)
97 #define FLOW_TIMEOUT_REASSEMBLY_DONE BIT_U64(19)
98 
99 /** flow is ipv4 */
100 #define FLOW_IPV4 BIT_U64(20)
101 /** flow is ipv6 */
102 #define FLOW_IPV6 BIT_U64(21)
103 
104 #define FLOW_PROTO_DETECT_TS_DONE BIT_U64(22)
105 #define FLOW_PROTO_DETECT_TC_DONE BIT_U64(23)
106 
107 /** Indicate that alproto detection for flow should be done again */
108 #define FLOW_CHANGE_PROTO BIT_U64(24)
109 
110 #define FLOW_WRONG_THREAD BIT_U64(25)
111 /** Protocol detection told us flow is picked up in wrong direction (midstream) */
112 #define FLOW_DIR_REVERSED BIT_U64(26)
113 /** Indicate that the flow did trigger an expectation creation */
114 #define FLOW_HAS_EXPECTATION BIT_U64(27)
115 
116 /** All packets in this flow should be passed */
117 #define FLOW_ACTION_PASS BIT_U64(28)
118 
119 #define FLOW_TS_APP_UPDATED BIT_U64(29)
120 #define FLOW_TC_APP_UPDATED BIT_U64(30)
121 
122 /** next packet in toserver direction will act on updated app-layer state */
123 #define FLOW_TS_APP_UPDATE_NEXT BIT_U64(31)
124 
125 /** Flow action issued by firewall */
126 #define FLOW_ACTION_BY_FIREWALL BIT_U64(32)
127 /** Flow action issued by exception policy */
128 #define FLOW_ACTION_BY_EXCEPTION_POLICY BIT_U64(33)
129 
130 /* File flags */
131 
132 #define FLOWFILE_INIT 0
133 
134 /** no magic on files in this flow */
135 #define FLOWFILE_NO_MAGIC_TS BIT_U16(0)
136 #define FLOWFILE_NO_MAGIC_TC BIT_U16(1)
137 
138 /** even if the flow has files, don't store 'm */
139 // defined in rust
140 // #define FLOWFILE_NO_STORE_TS BIT_U16(2)
141 // #define FLOWFILE_NO_STORE_TC BIT_U16(3)
142 /** no md5 on files in this flow */
143 #define FLOWFILE_NO_MD5_TS BIT_U16(4)
144 #define FLOWFILE_NO_MD5_TC BIT_U16(5)
145 
146 /** no sha1 on files in this flow */
147 #define FLOWFILE_NO_SHA1_TS BIT_U16(6)
148 #define FLOWFILE_NO_SHA1_TC BIT_U16(7)
149 
150 /** no sha256 on files in this flow */
151 #define FLOWFILE_NO_SHA256_TS BIT_U16(8)
152 #define FLOWFILE_NO_SHA256_TC BIT_U16(9)
153 
154 // vacancy(2)
155 
156 /** store files in the flow */
157 // defined in rust
158 // #define FLOWFILE_STORE_TS BIT_U16(12)
159 // #define FLOWFILE_STORE_TC BIT_U16(13)
160 
161 #define FLOWFILE_NONE_TS \
162  (FLOWFILE_NO_MAGIC_TS | FLOWFILE_NO_STORE_TS | FLOWFILE_NO_MD5_TS | FLOWFILE_NO_SHA1_TS | \
163  FLOWFILE_NO_SHA256_TS)
164 #define FLOWFILE_NONE_TC \
165  (FLOWFILE_NO_MAGIC_TC | FLOWFILE_NO_STORE_TC | FLOWFILE_NO_MD5_TC | FLOWFILE_NO_SHA1_TC | \
166  FLOWFILE_NO_SHA256_TC)
167 #define FLOWFILE_NONE (FLOWFILE_NONE_TS|FLOWFILE_NONE_TC)
168 
169 #define FLOW_IS_IPV4(f) \
170  (((f)->flags & FLOW_IPV4) == FLOW_IPV4)
171 #define FLOW_IS_IPV6(f) \
172  (((f)->flags & FLOW_IPV6) == FLOW_IPV6)
173 
174 #define FLOW_GET_SP(f) \
175  ((f)->flags & FLOW_DIR_REVERSED) ? (f)->dp : (f)->sp;
176 #define FLOW_GET_DP(f) \
177  ((f)->flags & FLOW_DIR_REVERSED) ? (f)->sp : (f)->dp;
178 
179 #define FLOW_COPY_IPV4_ADDR_TO_PACKET(fa, pa) do { \
180  (pa)->family = AF_INET; \
181  (pa)->addr_data32[0] = (fa)->addr_data32[0]; \
182  } while (0)
183 
184 #define FLOW_COPY_IPV6_ADDR_TO_PACKET(fa, pa) do { \
185  (pa)->family = AF_INET6; \
186  (pa)->addr_data32[0] = (fa)->addr_data32[0]; \
187  (pa)->addr_data32[1] = (fa)->addr_data32[1]; \
188  (pa)->addr_data32[2] = (fa)->addr_data32[2]; \
189  (pa)->addr_data32[3] = (fa)->addr_data32[3]; \
190  } while (0)
191 
192 /* Set the IPv4 addressesinto the Addrs of the Packet.
193  * Make sure p->ip4h is initialized and validated.
194  *
195  * We set the rest of the struct to 0 so we can
196  * prevent using memset. */
197 #define FLOW_SET_IPV4_SRC_ADDR_FROM_PACKET(ip4h, a) \
198  do { \
199  (a)->addr_data32[0] = (uint32_t)(ip4h)->s_ip_src.s_addr; \
200  (a)->addr_data32[1] = 0; \
201  (a)->addr_data32[2] = 0; \
202  (a)->addr_data32[3] = 0; \
203  } while (0)
204 
205 #define FLOW_SET_IPV4_DST_ADDR_FROM_PACKET(ip4h, a) \
206  do { \
207  (a)->addr_data32[0] = (uint32_t)(ip4h)->s_ip_dst.s_addr; \
208  (a)->addr_data32[1] = 0; \
209  (a)->addr_data32[2] = 0; \
210  (a)->addr_data32[3] = 0; \
211  } while (0)
212 
213 /* Set the IPv6 addressesinto the Addrs of the Packet.
214  * Make sure p->ip6h is initialized and validated. */
215 #define FLOW_SET_IPV6_SRC_ADDR_FROM_PACKET(ip6h, a) \
216  do { \
217  (a)->addr_data32[0] = (ip6h)->s_ip6_src[0]; \
218  (a)->addr_data32[1] = (ip6h)->s_ip6_src[1]; \
219  (a)->addr_data32[2] = (ip6h)->s_ip6_src[2]; \
220  (a)->addr_data32[3] = (ip6h)->s_ip6_src[3]; \
221  } while (0)
222 
223 #define FLOW_SET_IPV6_DST_ADDR_FROM_PACKET(ip6h, a) \
224  do { \
225  (a)->addr_data32[0] = (ip6h)->s_ip6_dst[0]; \
226  (a)->addr_data32[1] = (ip6h)->s_ip6_dst[1]; \
227  (a)->addr_data32[2] = (ip6h)->s_ip6_dst[2]; \
228  (a)->addr_data32[3] = (ip6h)->s_ip6_dst[3]; \
229  } while (0)
230 
231 /* pkt flow flags */
232 #define FLOW_PKT_TOSERVER 0x01
233 #define FLOW_PKT_TOCLIENT 0x02
234 #define FLOW_PKT_ESTABLISHED 0x04
235 #define FLOW_PKT_TOSERVER_FIRST 0x08
236 #define FLOW_PKT_TOCLIENT_FIRST 0x10
237 /** last pseudo packet in the flow. Can be used to trigger final clean,
238  * logging, etc. */
239 #define FLOW_PKT_LAST_PSEUDO 0x20
240 
241 #define FLOW_END_FLAG_EMERGENCY 0x01
242 #define FLOW_END_FLAG_TIMEOUT 0x02
243 #define FLOW_END_FLAG_FORCED 0x04
244 #define FLOW_END_FLAG_SHUTDOWN 0x08
245 #define FLOW_END_FLAG_TCPREUSE 0x10
246 
247 /** Mutex or RWLocks for the flow. */
248 //#define FLOWLOCK_RWLOCK
249 #define FLOWLOCK_MUTEX
250 
251 #ifdef FLOWLOCK_RWLOCK
252  #ifdef FLOWLOCK_MUTEX
253  #error Cannot enable both FLOWLOCK_RWLOCK and FLOWLOCK_MUTEX
254  #endif
255 #endif
256 
257 #ifdef FLOWLOCK_RWLOCK
258  #define FLOWLOCK_INIT(fb) SCRWLockInit(&(fb)->r, NULL)
259  #define FLOWLOCK_DESTROY(fb) SCRWLockDestroy(&(fb)->r)
260  #define FLOWLOCK_RDLOCK(fb) SCRWLockRDLock(&(fb)->r)
261  #define FLOWLOCK_WRLOCK(fb) SCRWLockWRLock(&(fb)->r)
262  #define FLOWLOCK_TRYRDLOCK(fb) SCRWLockTryRDLock(&(fb)->r)
263  #define FLOWLOCK_TRYWRLOCK(fb) SCRWLockTryWRLock(&(fb)->r)
264  #define FLOWLOCK_UNLOCK(fb) SCRWLockUnlock(&(fb)->r)
265 #elif defined FLOWLOCK_MUTEX
266  #define FLOWLOCK_INIT(fb) SCMutexInit(&(fb)->m, NULL)
267  #define FLOWLOCK_DESTROY(fb) SCMutexDestroy(&(fb)->m)
268  #define FLOWLOCK_RDLOCK(fb) SCMutexLock(&(fb)->m)
269  #define FLOWLOCK_WRLOCK(fb) SCMutexLock(&(fb)->m)
270  #define FLOWLOCK_TRYRDLOCK(fb) SCMutexTrylock(&(fb)->m)
271  #define FLOWLOCK_TRYWRLOCK(fb) SCMutexTrylock(&(fb)->m)
272  #define FLOWLOCK_UNLOCK(fb) SCMutexUnlock(&(fb)->m)
273 #else
274  #error Enable FLOWLOCK_RWLOCK or FLOWLOCK_MUTEX
275 #endif
276 
277 #define FLOW_IS_PM_DONE(f, dir) (((dir) & STREAM_TOSERVER) ? ((f)->flags & FLOW_TS_PM_ALPROTO_DETECT_DONE) : ((f)->flags & FLOW_TC_PM_ALPROTO_DETECT_DONE))
278 #define FLOW_IS_PP_DONE(f, dir) (((dir) & STREAM_TOSERVER) ? ((f)->flags & FLOW_TS_PP_ALPROTO_DETECT_DONE) : ((f)->flags & FLOW_TC_PP_ALPROTO_DETECT_DONE))
279 #define FLOW_IS_PE_DONE(f, dir) (((dir) & STREAM_TOSERVER) ? ((f)->flags & FLOW_TS_PE_ALPROTO_DETECT_DONE) : ((f)->flags & FLOW_TC_PE_ALPROTO_DETECT_DONE))
280 
281 #define FLOW_SET_PM_DONE(f, dir) (((dir) & STREAM_TOSERVER) ? ((f)->flags |= FLOW_TS_PM_ALPROTO_DETECT_DONE) : ((f)->flags |= FLOW_TC_PM_ALPROTO_DETECT_DONE))
282 #define FLOW_SET_PP_DONE(f, dir) (((dir) & STREAM_TOSERVER) ? ((f)->flags |= FLOW_TS_PP_ALPROTO_DETECT_DONE) : ((f)->flags |= FLOW_TC_PP_ALPROTO_DETECT_DONE))
283 #define FLOW_SET_PE_DONE(f, dir) (((dir) & STREAM_TOSERVER) ? ((f)->flags |= FLOW_TS_PE_ALPROTO_DETECT_DONE) : ((f)->flags |= FLOW_TC_PE_ALPROTO_DETECT_DONE))
284 
285 #define FLOW_RESET_PM_DONE(f, dir) (((dir) & STREAM_TOSERVER) ? ((f)->flags &= ~FLOW_TS_PM_ALPROTO_DETECT_DONE) : ((f)->flags &= ~FLOW_TC_PM_ALPROTO_DETECT_DONE))
286 #define FLOW_RESET_PP_DONE(f, dir) (((dir) & STREAM_TOSERVER) ? ((f)->flags &= ~FLOW_TS_PP_ALPROTO_DETECT_DONE) : ((f)->flags &= ~FLOW_TC_PP_ALPROTO_DETECT_DONE))
287 #define FLOW_RESET_PE_DONE(f, dir) (((dir) & STREAM_TOSERVER) ? ((f)->flags &= ~FLOW_TS_PE_ALPROTO_DETECT_DONE) : ((f)->flags &= ~FLOW_TC_PE_ALPROTO_DETECT_DONE))
288 
289 /* global flow config */
290 typedef struct FlowCnf_
291 {
292  uint32_t hash_rand;
293  uint32_t hash_size;
294  uint32_t prealloc;
295 
296  uint32_t timeout_new;
297  uint32_t timeout_est;
298 
300 
302 
303  SC_ATOMIC_DECLARE(uint64_t, memcap);
305 
306 /* Hash key for the flow hash */
307 typedef struct FlowKey_
308 {
311  uint8_t proto;
313  uint16_t livedev_id;
316 
317 typedef struct FlowAddress_ {
318  union {
319  uint32_t address_un_data32[4]; /* type-specific field */
320  uint16_t address_un_data16[8]; /* type-specific field */
321  uint8_t address_un_data8[16]; /* type-specific field */
324 
325 #define addr_data32 address.address_un_data32
326 #define addr_data16 address.address_un_data16
327 #define addr_data8 address.address_un_data8
328 
329 typedef unsigned short FlowStateType;
330 
331 /** Local Thread ID */
332 typedef uint16_t FlowThreadId;
333 
334 #include "util-storage.h"
335 
336 /**
337  * \brief Flow data structure.
338  *
339  * The flow is a global data structure that is created for new packets of a
340  * flow and then looked up for the following packets of a flow.
341  *
342  * Locking
343  *
344  * The flow is updated/used by multiple packets at the same time. This is why
345  * there is a flow-mutex. It's a mutex and not a spinlock because some
346  * operations on the flow can be quite expensive, thus spinning would be
347  * too expensive.
348  *
349  * The flow "header" (addresses, ports, proto, recursion level) are static
350  * after the initialization and remain read-only throughout the entire live
351  * of a flow. This is why we can access those without protection of the lock.
352  */
353 
354 typedef struct Flow_
355 {
356  /* flow "header", used for hashing and flow lookup. Static after init,
357  * so safe to look at without lock */
359  union {
360  Port sp; /**< tcp/udp source port */
361  struct {
362  uint8_t type; /**< icmp type */
363  uint8_t code; /**< icmp code */
365 
366  struct {
367  uint32_t spi; /**< esp spi */
368  } esp;
369  };
370  union {
371  Port dp; /**< tcp/udp destination port */
372  struct {
373  uint8_t type; /**< icmp type */
374  uint8_t code; /**< icmp code */
376  };
377  uint8_t proto; /**< ip proto of the flow */
380 
381  uint8_t vlan_idx;
382 
383  /* track toserver/toclient flow timeout needs */
384  union {
385  struct {
386  uint8_t ffr_ts:4;
387  uint8_t ffr_tc:4;
388  };
389  uint8_t ffr;
390  };
391 
392  /** Thread ID for the stream/detect portion of this flow */
394 
395  /** flow hash - the flow hash before hash table size mod. Used for calculating
396  * the flow_id. */
397  uint32_t flow_hash;
398 
399  /** Incoming interface */
400  uint16_t livedev_id;
401 
402  struct Flow_ *next; /* (hash) list next */
403 
404  uint64_t flags; /**< generic flags */
405 
406  uint16_t file_flags; /**< file tracking/extraction flags */
407 
408  /** destination port to be used in protocol detection. This is meant
409  * for use with STARTTLS and HTTP CONNECT detection */
410  uint16_t protodetect_dp; /**< 0 if not used */
411 
412  /** timeout in seconds by policy, add to Flow::lastts to get actual time this times out.
413  * Ignored in emergency mode. */
414  uint32_t timeout_policy;
415 
416  /** time stamp of last update (last packet). Set/updated under the
417  * flow and flow hash row locks, safe to read under either the
418  * flow lock or flow hash row lock. */
420 
422 
423  /** flow tenant id, used to setup flow timeout and stream pseudo
424  * packets with the correct tenant id set */
425  uint32_t tenant_id;
426 
429 
430  /* Parent flow id for protocol like ftp */
431  int64_t parent_id;
432 
433  /** protocol specific data pointer, e.g. for TcpSession */
434  void *protoctx;
435 
436 #ifdef FLOWLOCK_RWLOCK
437  SCRWLock r;
438 #elif defined FLOWLOCK_MUTEX
440 #else
441  #error Enable FLOWLOCK_RWLOCK or FLOWLOCK_MUTEX
442 #endif
443 
444  /** mapping to Flow's protocol specific protocols for timeouts
445  and state and free functions. */
446  uint8_t protomap;
447 
448  uint8_t flow_end_flags;
449  /* coccinelle: Flow:flow_end_flags:FLOW_END_FLAG_ */
450 
451  AppProto alproto; /**< \brief application level protocol */
454 
455  /** original application level protocol. Used to indicate the previous
456  protocol when changing to another protocol , e.g. with STARTTLS. */
458  /** expected app protocol: used in protocol change/upgrade like in
459  * STARTTLS. */
461 
462  /** detection engine ctx version used to inspect this flow. Set at initial
463  * inspection. If it doesn't match the currently in use de_ctx, the
464  * stored sgh ptrs are reset. */
465  uint32_t de_ctx_version;
466 
467  /** ttl tracking */
472 
473  /** which exception policies were applied, if any */
475 
476  /** application level storage ptrs.
477  *
478  */
479  AppLayerParserState *alparser; /**< parser internal state */
480  void *alstate; /**< application layer state */
481 
482  /** toclient sgh for this flow. Only use when FLOW_SGH_TOCLIENT flow flag
483  * has been set. */
485  /** toserver sgh for this flow. Only use when FLOW_SGH_TOSERVER flow flag
486  * has been set. */
488 
489  /* pointer to the var list */
491 
492  struct FlowBucket_ *fb;
493 
495 
496  uint32_t todstpktcnt;
497  uint32_t tosrcpktcnt;
498  uint64_t todstbytecnt;
499  uint64_t tosrcbytecnt;
500 
503 
504 enum FlowState {
509 #ifdef CAPTURE_OFFLOAD
510  FLOW_STATE_CAPTURE_BYPASSED,
511 #endif
512 };
513 #ifdef CAPTURE_OFFLOAD
514 #define FLOW_STATE_SIZE 5
515 #else
516 #define FLOW_STATE_SIZE 4
517 #endif
518 
519 typedef struct FlowProtoTimeout_ {
520  uint32_t new_timeout;
521  uint32_t est_timeout;
522  uint32_t closed_timeout;
525 
526 typedef struct FlowProtoFreeFunc_ {
527  void (*Freefunc)(void *);
529 
530 typedef struct FlowBypassInfo_ {
531  bool (* BypassUpdate)(Flow *f, void *data, time_t tsec);
532  void (* BypassFree)(void *data);
533  void *bypass_data;
534  uint64_t tosrcpktcnt;
535  uint64_t tosrcbytecnt;
536  uint64_t todstpktcnt;
537  uint64_t todstbytecnt;
539 
540 #include "flow-queue.h"
541 
542 typedef struct FlowLookupStruct_ // TODO name
543 {
544  /** thread store of spare queues */
550 
551 /** \brief prepare packet for a life with flow
552  * Set PKT_WANTS_FLOW flag to indicate workers should do a flow lookup
553  * and calc the hash value to be used in the lookup and autofp flow
554  * balancing. */
555 void FlowSetupPacket(Packet *p);
557 void FlowInitConfig(bool);
558 void FlowReset(void);
559 void FlowShutdown(void);
560 void FlowSetHasAlertsFlag(Flow *);
561 int FlowHasAlerts(const Flow *);
564 int FlowChangeProto(Flow *);
565 void FlowSwap(Flow *);
566 
567 void FlowRegisterTests(void);
568 int FlowSetProtoFreeFunc(uint8_t, void (*Free)(void *));
569 
570 static inline void FlowSetNoPayloadInspectionFlag(Flow *);
571 
572 int FlowGetPacketDirection(const Flow *, const Packet *);
573 
574 void FlowCleanupAppLayer(Flow *);
575 
576 void FlowUpdateState(Flow *f, enum FlowState s);
577 
578 int FlowSetMemcap(uint64_t size);
579 uint64_t FlowGetMemcap(void);
580 uint64_t FlowGetMemuse(void);
582 
584 void RegisterFlowBypassInfo(void);
585 
586 /** ----- Inline functions ----- */
587 static inline void *FlowGetAppState(const Flow *f)
588 {
589  return f->alstate;
590 }
591 
592 /** \brief Set the No payload inspection Flag without locking the flow.
593  *
594  * \param f Flow to set the flag in
595  */
596 static inline void FlowSetNoPayloadInspectionFlag(Flow *f)
597 {
598  SCEnter();
599 
600  SCLogDebug("flow %p", f);
602 
603  SCReturn;
604 }
605 
606 /** \brief Reference the flow
607  * \note This should only be called once for a destination
608  * pointer */
609 static inline void FlowReference(Flow **d, Flow *f)
610 {
611  if (likely(f != NULL)) {
612  DEBUG_VALIDATE_BUG_ON(*d == f);
613  if (*d == f)
614  return;
615  *d = f;
616  }
617 }
618 
619 static inline void FlowDeReference(Flow **d)
620 {
621  if (likely(*d != NULL)) {
622  *d = NULL;
623  }
624 }
625 
626 /** \brief create a flow id that is as unique as possible
627  * \retval flow_id unsigned 64bit id
628  */
629 static inline uint64_t FlowGetId(const Flow *f)
630 {
631  uint64_t id = (uint64_t)(SCTIME_SECS(f->startts) & 0xFFFF) << 48 |
632  (uint64_t)(SCTIME_USECS(f->startts) & 0xFFFF) << 32 | (uint64_t)f->flow_hash;
633  /* reduce to 51 bits as JavaScript and even JSON often seem to
634  * max out there. */
635  id &= 0x7ffffffffffffLL;
636  return id;
637 }
638 
639 static inline bool FlowIsBypassed(const Flow *f)
640 {
641  if (
642 #ifdef CAPTURE_OFFLOAD
643  f->flow_state == FLOW_STATE_CAPTURE_BYPASSED ||
644 #endif
646  return true;
647  }
648  return false;
649 }
650 
651 int FlowClearMemory(Flow *,uint8_t );
652 
653 void *FlowGetAppState(const Flow *f);
654 uint8_t FlowGetDisruptionFlags(const Flow *f, uint8_t flags);
655 
657 
658 #endif /* SURICATA_FLOW_H */
Flow_::ffr_tc
uint8_t ffr_tc
Definition: flow.h:387
FlowLookupStruct_::work_queue
FlowQueuePrivate work_queue
Definition: flow.h:547
Flow_::icmp_d
struct Flow_::@124::@130 icmp_d
FlowSetMemcap
int FlowSetMemcap(uint64_t size)
Update memcap value.
Definition: flow.c:107
FlowGetDisruptionFlags
uint8_t FlowGetDisruptionFlags(const Flow *f, uint8_t flags)
get 'disruption' flags: GAP/DEPTH/PASS
Definition: flow.c:1170
FlowBucket_
Definition: flow-hash.h:43
Flow_::ffr_ts
uint8_t ffr_ts
Definition: flow.h:386
Flow_::recursion_level
uint8_t recursion_level
Definition: flow.h:378
Flow_::flags
uint64_t flags
Definition: flow.h:404
FlowAddress_
Definition: flow.h:317
FLOW_STATE_ESTABLISHED
@ FLOW_STATE_ESTABLISHED
Definition: flow.h:506
FlowLookupStruct_::dtv
DecodeThreadVars * dtv
Definition: flow.h:546
Flow_::startts
SCTime_t startts
Definition: flow.h:494
SigGroupHead_
Container for matching data for a signature group.
Definition: detect.h:1699
FlowKey_::src
Address src
Definition: flow.h:309
FlowBypassInfo_
Definition: flow.h:530
FlowCnf_::emergency_recovery
uint32_t emergency_recovery
Definition: flow.h:299
Flow_::icmp_s
struct Flow_::@122::@128 icmp_s
FlowCnf_::hash_size
uint32_t hash_size
Definition: flow.h:293
FlowHandlePacket
void FlowHandlePacket(ThreadVars *, FlowLookupStruct *, Packet *)
Entry point for packet flow handling.
Definition: flow.c:562
FlowAddress_::address_un_data32
uint32_t address_un_data32[4]
Definition: flow.h:319
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:282
FlowLookupStruct
struct FlowLookupStruct_ FlowLookupStruct
Flow_::proto
uint8_t proto
Definition: flow.h:377
AppProto
uint16_t AppProto
Definition: app-layer-protos.h:87
FlowInitConfig
void FlowInitConfig(bool)
initialize the configuration
Definition: flow.c:576
FlowGetPacketDirection
int FlowGetPacketDirection(const Flow *, const Packet *)
determine the direction of the packet compared to the flow
Definition: flow.c:285
FlowClearMemory
int FlowClearMemory(Flow *, uint8_t)
Function clear the flow memory before queueing it to spare flow queue.
Definition: flow.c:1126
Flow_
Flow data structure.
Definition: flow.h:355
Flow_::protomap
uint8_t protomap
Definition: flow.h:446
FlowProtoTimeout_
Definition: flow.h:519
SCFlowStorageId
Definition: flow-storage.h:33
FLOW_NOPAYLOAD_INSPECTION
#define FLOW_NOPAYLOAD_INSPECTION
Definition: flow.h:67
FlowLookupStruct_
Definition: flow.h:543
Flow_::alproto_orig
AppProto alproto_orig
Definition: flow.h:457
Flow
struct Flow_ Flow
Flow data structure.
util-exception-policy-types.h
FlowProtoTimeout_::bypassed_timeout
uint32_t bypassed_timeout
Definition: flow.h:523
FlowBypassInfo_::tosrcbytecnt
uint64_t tosrcbytecnt
Definition: flow.h:535
Address_
Definition: decode.h:113
FlowSetupPacket
void FlowSetupPacket(Packet *p)
prepare packet for a life with flow Set PKT_WANTS_FLOW flag to indicate workers should do a flow look...
Definition: flow-hash.c:518
Flow_::max_ttl_toserver
uint8_t max_ttl_toserver
Definition: flow.h:469
Flow_::livedev_id
uint16_t livedev_id
Definition: flow.h:400
p
Packet * p
Definition: fuzz_iprep.c:21
Flow_::dp
Port dp
Definition: flow.h:371
Flow_::protoctx
void * protoctx
Definition: flow.h:434
FlowUnsetChangeProtoFlag
void FlowUnsetChangeProtoFlag(Flow *)
Unset flag to indicate to change proto for the flow.
Definition: flow.c:186
util-var.h
Storage
Definition: util-storage.h:40
FlowCnf_::prealloc
uint32_t prealloc
Definition: flow.h:294
Flow_::flow_state
FlowStateType flow_state
Definition: flow.h:421
Flow_::spi
uint32_t spi
Definition: flow.h:367
Flow_::sgh_toserver
const struct SigGroupHead_ * sgh_toserver
Definition: flow.h:487
FlowLookupStruct_::emerg_spare_sync_stamp
uint32_t emerg_spare_sync_stamp
Definition: flow.h:548
Flow_::tosrcbytecnt
uint64_t tosrcbytecnt
Definition: flow.h:499
FlowConfig
struct FlowCnf_ FlowConfig
Flow_::alparser
AppLayerParserState * alparser
Definition: flow.h:479
Flow_::dst
FlowAddress dst
Definition: flow.h:358
FlowProtoFreeFunc
struct FlowProtoFreeFunc_ FlowProtoFreeFunc
Flow_::fb
struct FlowBucket_ * fb
Definition: flow.h:492
FLOW_STATE_LOCAL_BYPASSED
@ FLOW_STATE_LOCAL_BYPASSED
Definition: flow.h:508
Flow_::min_ttl_toserver
uint8_t min_ttl_toserver
Definition: flow.h:468
Flow_::protodetect_dp
uint16_t protodetect_dp
Definition: flow.h:410
decode.h
Flow_::esp
struct Flow_::@122::@129 esp
FlowBypassInfo_::todstbytecnt
uint64_t todstbytecnt
Definition: flow.h:537
AppLayerParserState_
Definition: app-layer-parser.c:148
RegisterFlowBypassInfo
void RegisterFlowBypassInfo(void)
Definition: flow-util.c:241
FlowBypassInfo_::BypassUpdate
bool(* BypassUpdate)(Flow *f, void *data, time_t tsec)
Definition: flow.h:531
FlowBypassInfo_::BypassFree
void(* BypassFree)(void *data)
Definition: flow.h:532
Flow_::todstpktcnt
uint32_t todstpktcnt
Definition: flow.h:496
util-exception-policy.h
Flow_::lastts
SCTime_t lastts
Definition: flow.h:419
FlowSwap
void FlowSwap(Flow *)
swap the flow's direction
Definition: flow.c:245
FlowKey_::recursion_level
uint8_t recursion_level
Definition: flow.h:312
SCEnter
#define SCEnter(...)
Definition: util-debug.h:284
ThreadVars_
Per thread variable structure.
Definition: threadvars.h:58
FlowShutdown
void FlowShutdown(void)
shutdown the flow engine
Definition: flow.c:720
FlowGetMemuse
uint64_t FlowGetMemuse(void)
Definition: flow.c:128
Flow_::flow_end_flags
uint8_t flow_end_flags
Definition: flow.h:448
FlowCnf_
Definition: flow.h:291
FlowState
FlowState
Definition: flow.h:504
FlowBypassInfo_::todstpktcnt
uint64_t todstpktcnt
Definition: flow.h:536
FlowProtoTimeout_::new_timeout
uint32_t new_timeout
Definition: flow.h:520
FlowProtoTimeout_::closed_timeout
uint32_t closed_timeout
Definition: flow.h:522
util-time.h
FlowBypassInfo_::bypass_data
void * bypass_data
Definition: flow.h:533
Flow_::m
SCMutex m
Definition: flow.h:439
FlowBypassInfo
struct FlowBypassInfo_ FlowBypassInfo
FlowCnf_::timeout_new
uint32_t timeout_new
Definition: flow.h:296
FlowKey_::livedev_id
uint16_t livedev_id
Definition: flow.h:313
Flow_::todstbytecnt
uint64_t todstbytecnt
Definition: flow.h:498
Flow_::sgh_toclient
const struct SigGroupHead_ * sgh_toclient
Definition: flow.h:484
FlowChangeProto
int FlowChangeProto(Flow *)
Check if change proto flag is set for flow.
Definition: flow.c:196
FlowThreadId
uint16_t FlowThreadId
Definition: flow.h:332
FlowKey_::sp
Port sp
Definition: flow.h:310
SCReturn
#define SCReturn
Definition: util-debug.h:286
Packet_
Definition: decode.h:516
Flow_::type
uint8_t type
Definition: flow.h:362
FlowRegisterTests
void FlowRegisterTests(void)
Function to register the Flow Unitests.
Definition: flow.c:1534
Port
uint16_t Port
Definition: decode.h:219
SCTime_t
Definition: util-time.h:40
FlowProtoFreeFunc_::Freefunc
void(* Freefunc)(void *)
Definition: flow.h:527
FlowAddress_::address_un_data16
uint16_t address_un_data16[8]
Definition: flow.h:320
FlowCnf_::hash_rand
uint32_t hash_rand
Definition: flow.h:292
Flow_::vlan_idx
uint8_t vlan_idx
Definition: flow.h:381
FlowHandlePacketUpdate
void FlowHandlePacketUpdate(Flow *f, Packet *p, ThreadVars *tv, DecodeThreadVars *dtv)
Update Packet and Flow.
Definition: flow.c:423
Flow_::min_ttl_toclient
uint8_t min_ttl_toclient
Definition: flow.h:470
flow-queue.h
FlowCleanupAppLayer
void FlowCleanupAppLayer(Flow *)
Definition: flow.c:139
FlowBypassInfo_::tosrcpktcnt
uint64_t tosrcpktcnt
Definition: flow.h:534
Flow_::probing_parser_toclient_alproto_masks
uint32_t probing_parser_toclient_alproto_masks
Definition: flow.h:428
FlowCnf_::SC_ATOMIC_DECLARE
SC_ATOMIC_DECLARE(uint64_t, memcap)
Flow_::flow_hash
uint32_t flow_hash
Definition: flow.h:397
Flow_::alproto_expect
AppProto alproto_expect
Definition: flow.h:460
Flow_::src
FlowAddress src
Definition: flow.h:358
Flow_::flowvar
GenericVar * flowvar
Definition: flow.h:490
FlowReset
void FlowReset(void)
Definition: flow.c:702
Flow_::next
struct Flow_ * next
Definition: flow.h:402
Flow_::probing_parser_toserver_alproto_masks
uint32_t probing_parser_toserver_alproto_masks
Definition: flow.h:427
dtv
DecodeThreadVars * dtv
Definition: fuzz_decodepcapfile.c:34
FlowLookupStruct_::spare_queue
FlowQueuePrivate spare_queue
Definition: flow.h:545
FlowProtoTimeout
struct FlowProtoTimeout_ FlowProtoTimeout
Flow_::ffr
uint8_t ffr
Definition: flow.h:389
FlowStateType
unsigned short FlowStateType
Definition: flow.h:329
flags
uint8_t flags
Definition: decode-gre.h:0
Flow_::applied_exception_policy
uint8_t applied_exception_policy
Definition: flow.h:474
FLOW_STATE_NEW
@ FLOW_STATE_NEW
Definition: flow.h:505
Flow_::code
uint8_t code
Definition: flow.h:363
GenericVar_
Definition: util-var.h:53
FlowAddress
struct FlowAddress_ FlowAddress
FlowKey_::dst
Address dst
Definition: flow.h:309
SCTIME_SECS
#define SCTIME_SECS(t)
Definition: util-time.h:57
FlowGetMemcapExceptionPolicy
enum ExceptionPolicy FlowGetMemcapExceptionPolicy(void)
Definition: flow.c:134
VLAN_MAX_LAYERS
#define VLAN_MAX_LAYERS
Definition: decode-vlan.h:51
Flow_::max_ttl_toclient
uint8_t max_ttl_toclient
Definition: flow.h:471
Flow_::parent_id
int64_t parent_id
Definition: flow.h:431
FlowCnf_::timeout_est
uint32_t timeout_est
Definition: flow.h:297
Flow_::timeout_policy
uint32_t timeout_policy
Definition: flow.h:414
tv
ThreadVars * tv
Definition: fuzz_decodepcapfile.c:33
util-optimize.h
util-validate.h
FlowQueuePrivate_
Definition: flow-queue.h:40
FlowCnf_::memcap_policy
enum ExceptionPolicy memcap_policy
Definition: flow.h:301
FlowAddress_::address_un_data8
uint8_t address_un_data8[16]
Definition: flow.h:321
FlowKey_::proto
uint8_t proto
Definition: flow.h:311
FLOW_STATE_CLOSED
@ FLOW_STATE_CLOSED
Definition: flow.h:507
DecodeThreadVars_
Structure to hold thread specific data for all decode modules.
Definition: decode.h:995
Flow_::alproto_ts
AppProto alproto_ts
Definition: flow.h:452
Flow_::alstate
void * alstate
Definition: flow.h:480
flow-bindgen.h
SCRWLock
#define SCRWLock
Definition: threads-debug.h:364
FlowGetMemcap
uint64_t FlowGetMemcap(void)
Return memcap value.
Definition: flow.c:122
FlowKey_
Definition: flow.h:308
app-layer-protos.h
Flow_::vlan_id
uint16_t vlan_id[VLAN_MAX_LAYERS]
Definition: flow.h:379
likely
#define likely(expr)
Definition: util-optimize.h:32
FlowProtoTimeout_::est_timeout
uint32_t est_timeout
Definition: flow.h:521
Flow_::sp
Port sp
Definition: flow.h:360
FlowKey_::vlan_id
uint16_t vlan_id[VLAN_MAX_LAYERS]
Definition: flow.h:314
GetFlowBypassInfoID
SCFlowStorageId GetFlowBypassInfoID(void)
Definition: flow-util.c:223
Flow_::alproto_tc
AppProto alproto_tc
Definition: flow.h:453
FlowSetChangeProtoFlag
void FlowSetChangeProtoFlag(Flow *)
Set flag to indicate to change proto for the flow.
Definition: flow.c:177
Flow_::file_flags
uint16_t file_flags
Definition: flow.h:406
Flow_::alproto
AppProto alproto
application level protocol
Definition: flow.h:451
FlowUpdateState
void FlowUpdateState(Flow *f, enum FlowState s)
Definition: flow.c:1196
ExceptionPolicy
ExceptionPolicy
Definition: util-exception-policy-types.h:26
FlowKey_::dp
Port dp
Definition: flow.h:310
FlowAddress_::address
union FlowAddress_::@121 address
Flow_::storage
Storage storage[]
Definition: flow.h:501
FlowKey
struct FlowKey_ FlowKey
SCMutex
#define SCMutex
Definition: threads-debug.h:114
DEBUG_VALIDATE_BUG_ON
#define DEBUG_VALIDATE_BUG_ON(exp)
Definition: util-validate.h:109
FlowSetProtoFreeFunc
int FlowSetProtoFreeFunc(uint8_t, void(*Free)(void *))
Function to set the function to get protocol specific flow state.
Definition: flow.c:1154
Flow_::tenant_id
uint32_t tenant_id
Definition: flow.h:425
Flow_::tosrcpktcnt
uint32_t tosrcpktcnt
Definition: flow.h:497
FlowSetHasAlertsFlag
void FlowSetHasAlertsFlag(Flow *)
Set flag to indicate that flow has alerts.
Definition: flow.c:153
util-storage.h
Flow_::thread_id
FlowThreadId thread_id[2]
Definition: flow.h:393
FlowHasAlerts
int FlowHasAlerts(const Flow *)
Check if flow has alerts.
Definition: flow.c:164
SCTIME_USECS
#define SCTIME_USECS(t)
Definition: util-time.h:56
FlowProtoFreeFunc_
Definition: flow.h:526
Flow_::de_ctx_version
uint32_t de_ctx_version
Definition: flow.h:465