suricata
util-action.c File Reference
#include "suricata-common.h"
#include "action-globals.h"
#include "conf.h"
#include "conf-yaml-loader.h"
#include "detect.h"
#include "detect-engine.h"
#include "detect-engine-sigorder.h"
#include "util-unittest.h"
#include "util-action.h"
#include "util-unittest-helper.h"
#include "util-debug.h"
Include dependency graph for util-action.c:

Go to the source code of this file.

Functions

uint8_t ActionOrderVal (uint8_t action)
 Return the priority associated to an action (to order sigs as specified at config) action_order_sigs has this priority by index val so action_order_sigs[0] has to be inspected first. This function is called from detect-engine-sigorder. More...
 
int ActionInitConfig (void)
 Load the action order from config. If none is provided, it will be default to ACTION_PASS, ACTION_DROP, ACTION_REJECT, ACTION_ALERT (pass has the highest prio) More...
 
void UtilActionRegisterTests (void)
 

Variables

uint8_t action_order_sigs [4] = {ACTION_PASS, ACTION_DROP, ACTION_REJECT, ACTION_ALERT}
 

Detailed Description

Function Documentation

◆ ActionInitConfig()

int ActionInitConfig ( void  )

Load the action order from config. If none is provided, it will be default to ACTION_PASS, ACTION_DROP, ACTION_REJECT, ACTION_ALERT (pass has the highest prio)

Return values
0on success; -1 on fatal error;

Definition at line 98 of file util-action.c.

References ConfGetNode(), next, SCLogDebug, TAILQ_FOREACH, and ConfNode_::val.

Here is the call graph for this function:

◆ ActionOrderVal()

uint8_t ActionOrderVal ( uint8_t  action)

Return the priority associated to an action (to order sigs as specified at config) action_order_sigs has this priority by index val so action_order_sigs[0] has to be inspected first. This function is called from detect-engine-sigorder.

Parameters
actioncan be one of ACTION_PASS, ACTION_DROP, ACTION_REJECT or ACTION_ALERT
Return values
uint8_tthe priority (order of this actions)

Definition at line 53 of file util-action.c.

References action_order_sigs, ACTION_REJECT, ACTION_REJECT_BOTH, and ACTION_REJECT_DST.

◆ UtilActionRegisterTests()

void UtilActionRegisterTests ( void  )

Definition at line 427 of file util-action.c.

References UtRegisterTest().

Here is the call graph for this function:

Variable Documentation

◆ action_order_sigs

uint8_t action_order_sigs[4] = {ACTION_PASS, ACTION_DROP, ACTION_REJECT, ACTION_ALERT}

Definition at line 40 of file util-action.c.

Referenced by ActionOrderVal().