FD.io VPP  v18.04-17-g3a0d853
Vector Packet Processing
node_funcs.c File Reference
+ Include dependency graph for node_funcs.c:

Go to the source code of this file.

Data Structures

struct  vnet_policer_trace_t
 
struct  policer_classify_trace_t
 

Macros

#define foreach_vnet_policer_error
 
#define TEST_CODE   1
 
#define foreach_policer_classify_error
 

Enumerations

enum  vnet_policer_error_t { VNET_POLICER_N_ERROR }
 
enum  policer_classify_error_t { POLICER_CLASSIFY_N_ERROR }
 

Functions

static u8format_policer_trace (u8 *s, va_list *args)
 
static uword vnet_policer_inline (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, vnet_policer_index_t which)
 
uword vnet_policer_by_sw_if_index (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
 
uword vnet_policer_by_opaque (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
 
uword vnet_policer_by_either (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
 
void vnet_policer_node_funcs_reference (void)
 
 VLIB_NODE_FUNCTION_MULTIARCH (policer_by_sw_if_index_node, vnet_policer_by_sw_if_index)
 
int test_policer_add_del (u32 rx_sw_if_index, u8 *config_name, int is_add)
 
static clib_error_ttest_policer_command_fn (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
 
static u8format_policer_classify_trace (u8 *s, va_list *args)
 
static uword policer_classify_inline (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, policer_classify_table_id_t tid)
 
static uword ip4_policer_classify (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
 
 VLIB_NODE_FUNCTION_MULTIARCH (ip4_policer_classify_node, ip4_policer_classify)
 
static uword ip6_policer_classify (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
 
 VLIB_NODE_FUNCTION_MULTIARCH (ip6_policer_classify_node, ip6_policer_classify)
 
static uword l2_policer_classify (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
 
 VLIB_NODE_FUNCTION_MULTIARCH (l2_policer_classify_node, l2_policer_classify)
 
static clib_error_tpolicer_classify_init (vlib_main_t *vm)
 

Variables

static char * vnet_policer_error_strings []
 
static vlib_node_registration_t policer_by_sw_if_index_node
 (constructor) VLIB_REGISTER_NODE (policer_by_sw_if_index_node) More...
 
static vlib_cli_command_t test_patch_command
 (constructor) VLIB_CLI_COMMAND (test_patch_command) More...
 
static char * policer_classify_error_strings []
 
vlib_node_registration_t ip4_policer_classify_node
 (constructor) VLIB_REGISTER_NODE (ip4_policer_classify_node) More...
 
vlib_node_registration_t ip6_policer_classify_node
 (constructor) VLIB_REGISTER_NODE (ip6_policer_classify_node) More...
 
vlib_node_registration_t l2_policer_classify_node
 (constructor) VLIB_REGISTER_NODE (l2_policer_classify_node) More...
 

Macro Definition Documentation

#define foreach_policer_classify_error
Value:
_(MISS, "Policer classify misses") \
_(HIT, "Policer classify hits") \
_(CHAIN_HIT, "Polcier classify hits after chain walk") \
_(DROP, "Policer classify action drop")
DROP
Definition: error.def:41

Definition at line 490 of file node_funcs.c.

#define foreach_vnet_policer_error
Value:
_(TRANSMIT, "Packets Transmitted") \
_(DROP, "Packets Dropped")
DROP
Definition: error.def:41

Definition at line 49 of file node_funcs.c.

#define TEST_CODE   1

Definition at line 301 of file node_funcs.c.

Enumeration Type Documentation

Enumerator
POLICER_CLASSIFY_N_ERROR 

Definition at line 496 of file node_funcs.c.

Enumerator
VNET_POLICER_N_ERROR 

Definition at line 53 of file node_funcs.c.

Function Documentation

static u8* format_policer_classify_trace ( u8 s,
va_list *  args 
)
static

Definition at line 477 of file node_funcs.c.

+ Here is the call graph for this function:

static u8* format_policer_trace ( u8 s,
va_list *  args 
)
static

Definition at line 38 of file node_funcs.c.

+ Here is the call graph for this function:

static uword ip4_policer_classify ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t frame 
)
static

Definition at line 788 of file node_funcs.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static uword ip6_policer_classify ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t frame 
)
static

Definition at line 813 of file node_funcs.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static uword l2_policer_classify ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t frame 
)
static

Definition at line 838 of file node_funcs.c.

+ Here is the call graph for this function:

static clib_error_t* policer_classify_init ( vlib_main_t vm)
static

Definition at line 862 of file node_funcs.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static uword policer_classify_inline ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t frame,
policer_classify_table_id_t  tid 
)
inlinestatic

Definition at line 511 of file node_funcs.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

int test_policer_add_del ( u32  rx_sw_if_index,
u8 config_name,
int  is_add 
)

Definition at line 331 of file node_funcs.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static clib_error_t* test_policer_command_fn ( vlib_main_t vm,
unformat_input_t input,
vlib_cli_command_t cmd 
)
static

Definition at line 382 of file node_funcs.c.

+ Here is the call graph for this function:

VLIB_NODE_FUNCTION_MULTIARCH ( policer_by_sw_if_index_node  ,
vnet_policer_by_sw_if_index   
)
VLIB_NODE_FUNCTION_MULTIARCH ( ip4_policer_classify_node  ,
ip4_policer_classify   
)
VLIB_NODE_FUNCTION_MULTIARCH ( ip6_policer_classify_node  ,
ip6_policer_classify   
)
VLIB_NODE_FUNCTION_MULTIARCH ( l2_policer_classify_node  ,
l2_policer_classify   
)
uword vnet_policer_by_either ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t frame 
)

Definition at line 289 of file node_funcs.c.

+ Here is the call graph for this function:

uword vnet_policer_by_opaque ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t frame 
)

Definition at line 282 of file node_funcs.c.

+ Here is the call graph for this function:

uword vnet_policer_by_sw_if_index ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t frame 
)

Definition at line 274 of file node_funcs.c.

+ Here is the call graph for this function:

static uword vnet_policer_inline ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t frame,
vnet_policer_index_t  which 
)
inlinestatic

Definition at line 68 of file node_funcs.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void vnet_policer_node_funcs_reference ( void  )

Definition at line 296 of file node_funcs.c.

+ Here is the caller graph for this function:

Variable Documentation

vlib_node_registration_t ip4_policer_classify_node
Initial value:
= {
.function = ip4_policer_classify,
.name = "ip4-policer-classify",
.vector_size = sizeof (u32),
.next_nodes = {
},
}
static char * policer_classify_error_strings[]
Definition: node_funcs.c:504
static uword ip4_policer_classify(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: node_funcs.c:788
#define ARRAY_LEN(x)
Definition: clib.h:59
unsigned int u32
Definition: types.h:88
static u8 * format_policer_classify_trace(u8 *s, va_list *args)
Definition: node_funcs.c:477

(constructor) VLIB_REGISTER_NODE (ip4_policer_classify_node)

Definition at line 796 of file node_funcs.c.

vlib_node_registration_t ip6_policer_classify_node
Initial value:
= {
.function = ip6_policer_classify,
.name = "ip6-policer-classify",
.vector_size = sizeof (u32),
.next_nodes = {
},
}
static char * policer_classify_error_strings[]
Definition: node_funcs.c:504
#define ARRAY_LEN(x)
Definition: clib.h:59
unsigned int u32
Definition: types.h:88
static uword ip6_policer_classify(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: node_funcs.c:813
static u8 * format_policer_classify_trace(u8 *s, va_list *args)
Definition: node_funcs.c:477

(constructor) VLIB_REGISTER_NODE (ip6_policer_classify_node)

Definition at line 821 of file node_funcs.c.

vlib_node_registration_t l2_policer_classify_node
Initial value:
= {
.function = l2_policer_classify,
.name = "l2-policer-classify",
.vector_size = sizeof (u32),
.next_nodes = {
},
}
static uword l2_policer_classify(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: node_funcs.c:838
static char * policer_classify_error_strings[]
Definition: node_funcs.c:504
#define ARRAY_LEN(x)
Definition: clib.h:59
unsigned int u32
Definition: types.h:88
static u8 * format_policer_classify_trace(u8 *s, va_list *args)
Definition: node_funcs.c:477

(constructor) VLIB_REGISTER_NODE (l2_policer_classify_node)

Definition at line 845 of file node_funcs.c.

vlib_node_registration_t policer_by_sw_if_index_node
static
Initial value:
= {
.name = "policer-by-sw-if-index",
.vector_size = sizeof (u32),
.format_trace = format_policer_trace,
.error_strings = vnet_policer_error_strings,
.n_next_nodes = VNET_POLICER_N_NEXT,
.next_nodes = {
[VNET_POLICER_NEXT_TRANSMIT] = "ethernet-input",
[VNET_POLICER_NEXT_DROP] = "error-drop",
},
}
static char * vnet_policer_error_strings[]
Definition: node_funcs.c:61
uword vnet_policer_by_sw_if_index(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: node_funcs.c:274
#define ARRAY_LEN(x)
Definition: clib.h:59
unsigned int u32
Definition: types.h:88
static u8 * format_policer_trace(u8 *s, va_list *args)
Definition: node_funcs.c:38

(constructor) VLIB_REGISTER_NODE (policer_by_sw_if_index_node)

Definition at line 306 of file node_funcs.c.

char* policer_classify_error_strings[]
static
Initial value:
= {
#define _(sym,string)
}
#define foreach_policer_classify_error
Definition: node_funcs.c:490

Definition at line 504 of file node_funcs.c.

vlib_cli_command_t test_patch_command
static
Initial value:
= {
.path = "test policer",
.short_help =
"intfc <intfc> policer <policer-config-name> [del]",
}
static clib_error_t * test_policer_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: node_funcs.c:382

(constructor) VLIB_CLI_COMMAND (test_patch_command)

Definition at line 456 of file node_funcs.c.

char* vnet_policer_error_strings[]
static
Initial value:
= {
#define _(sym,string)
}
#define foreach_vnet_policer_error
Definition: node_funcs.c:49

Definition at line 61 of file node_funcs.c.