FD.io VPP  v20.01-48-g3e0dafb74
Vector Packet Processing
vnet_classify.c File Reference

N-tuple classifier. More...

+ Include dependency graph for vnet_classify.c:

Go to the source code of this file.

Data Structures

struct  tcpudp_header_t
 

Macros

#define foreach_tcp_proto_field
 
#define foreach_udp_proto_field
 
#define foreach_ip4_proto_field
 
#define foreach_ip6_proto_field
 
#define foreach_l2_input_next
 
#define foreach_l2_output_next   _(drop, DROP)
 
#define foreach_ip_next
 
#define foreach_acl_next   _(deny, DENY)
 
#define TEST_CODE   0
 

Functions

void mv (vnet_classify_table_t *t)
 
void rogue (vnet_classify_table_t *t)
 
void vnet_classify_register_unformat_l2_next_index_fn (unformat_function_t *fn)
 
void vnet_classify_register_unformat_ip_next_index_fn (unformat_function_t *fn)
 
void vnet_classify_register_unformat_acl_next_index_fn (unformat_function_t *fn)
 
void vnet_classify_register_unformat_policer_next_index_fn (unformat_function_t *fn)
 
void vnet_classify_register_unformat_opaque_index_fn (unformat_function_t *fn)
 
vnet_classify_table_tvnet_classify_new_table (vnet_classify_main_t *cm, u8 *mask, u32 nbuckets, u32 memory_size, u32 skip_n_vectors, u32 match_n_vectors)
 
void vnet_classify_delete_table_index (vnet_classify_main_t *cm, u32 table_index, int del_chain)
 
static vnet_classify_entry_t * vnet_classify_entry_alloc (vnet_classify_table_t *t, u32 log2_pages)
 
static void vnet_classify_entry_free (vnet_classify_table_t *t, vnet_classify_entry_t *v, u32 log2_pages)
 
static void make_working_copy (vnet_classify_table_t *t, vnet_classify_bucket_t *b)
 
static vnet_classify_entry_t * split_and_rehash (vnet_classify_table_t *t, vnet_classify_entry_t *old_values, u32 old_log2_pages, u32 new_log2_pages)
 
static vnet_classify_entry_t * split_and_rehash_linear (vnet_classify_table_t *t, vnet_classify_entry_t *old_values, u32 old_log2_pages, u32 new_log2_pages)
 
static void vnet_classify_entry_claim_resource (vnet_classify_entry_t *e)
 
static void vnet_classify_entry_release_resource (vnet_classify_entry_t *e)
 
int vnet_classify_add_del (vnet_classify_table_t *t, vnet_classify_entry_t *add_v, int is_add)
 
typedef CLIB_PACKED (struct { ethernet_header_t eh;ip4_header_t ip;})
 
vnet_classify_entry_t * vnet_classify_find_entry (vnet_classify_table_t *t, u8 *h, u64 hash, f64 now)
 
static u8format_classify_entry (u8 *s, va_list *args)
 
u8format_classify_table (u8 *s, va_list *args)
 
int vnet_classify_add_del_table (vnet_classify_main_t *cm, u8 *mask, u32 nbuckets, u32 memory_size, u32 skip, u32 match, u32 next_table_index, u32 miss_next_index, u32 *table_index, u8 current_data_flag, i16 current_data_offset, int is_add, int del_chain)
 
uword unformat_tcp_mask (unformat_input_t *input, va_list *args)
 
uword unformat_udp_mask (unformat_input_t *input, va_list *args)
 
uword unformat_l4_mask (unformat_input_t *input, va_list *args)
 
uword unformat_ip4_mask (unformat_input_t *input, va_list *args)
 
uword unformat_ip6_mask (unformat_input_t *input, va_list *args)
 
uword unformat_l3_mask (unformat_input_t *input, va_list *args)
 
uword unformat_l2_mask (unformat_input_t *input, va_list *args)
 
uword unformat_classify_mask (unformat_input_t *input, va_list *args)
 
uword unformat_l2_input_next_index (unformat_input_t *input, va_list *args)
 
uword unformat_l2_output_next_index (unformat_input_t *input, va_list *args)
 
uword unformat_ip_next_index (unformat_input_t *input, va_list *args)
 
uword unformat_acl_next_index (unformat_input_t *input, va_list *args)
 
uword unformat_policer_next_index (unformat_input_t *input, va_list *args)
 
static clib_error_tclassify_table_command_fn (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
 
static int filter_table_mask_compare (void *a1, void *a2)
 
static clib_error_tclassify_filter_command_fn (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
 
int vlib_enable_disable_pkt_trace_filter (int enable)
 Enable / disable packet trace filter. More...
 
static clib_error_tshow_classify_filter_command_fn (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
 
static u8format_vnet_classify_table (u8 *s, va_list *args)
 
static clib_error_tshow_classify_tables_command_fn (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
 
uword unformat_l4_match (unformat_input_t *input, va_list *args)
 
uword unformat_ip4_match (unformat_input_t *input, va_list *args)
 
uword unformat_ip6_match (unformat_input_t *input, va_list *args)
 
uword unformat_l3_match (unformat_input_t *input, va_list *args)
 
uword unformat_vlan_tag (unformat_input_t *input, va_list *args)
 
uword unformat_l2_match (unformat_input_t *input, va_list *args)
 
uword unformat_classify_match (unformat_input_t *input, va_list *args)
 
int vnet_classify_add_del_session (vnet_classify_main_t *cm, u32 table_index, u8 *match, u32 hit_next_index, u32 opaque_index, i32 advance, u8 action, u32 metadata, int is_add)
 
static clib_error_tclassify_session_command_fn (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
 
static uword unformat_opaque_sw_if_index (unformat_input_t *input, va_list *args)
 
static uword unformat_ip_next_node (unformat_input_t *input, va_list *args)
 
static uword unformat_acl_next_node (unformat_input_t *input, va_list *args)
 
static uword unformat_l2_input_next_node (unformat_input_t *input, va_list *args)
 
static uword unformat_l2_output_next_node (unformat_input_t *input, va_list *args)
 
static clib_error_tvnet_classify_init (vlib_main_t *vm)
 
int vnet_is_packet_traced (vlib_buffer_t *b, u32 classify_table_index, int func)
 

Variables

vnet_classify_main_t vnet_classify_main
 
static vlib_cli_command_t classify_table
 (constructor) VLIB_CLI_COMMAND (classify_table) More...
 
static vlib_cli_command_t classify_filter
 (constructor) VLIB_CLI_COMMAND (classify_filter) More...
 
static vlib_cli_command_t show_classify_filter
 (constructor) VLIB_CLI_COMMAND (show_classify_filter) More...
 
static vlib_cli_command_t show_classify_table_command
 (constructor) VLIB_CLI_COMMAND (show_classify_table_command) More...
 
static vlib_cli_command_t classify_session_command
 (constructor) VLIB_CLI_COMMAND (classify_session_command) More...
 

Detailed Description

N-tuple classifier.

Definition in file vnet_classify.c.

Macro Definition Documentation

◆ foreach_acl_next

#define foreach_acl_next   _(deny, DENY)

Definition at line 1448 of file vnet_classify.c.

◆ foreach_ip4_proto_field

#define foreach_ip4_proto_field
Value:
_(dst_address) \
_(tos) \
_(length) \
_(fragment_id) \
_(ttl) \
_(checksum)
vl_api_ip_proto_t protocol
Definition: lb_types.api:71
vl_api_address_union_t src_address
Definition: ip_types.api:98
u8 ttl
Definition: fib_types.api:26

Definition at line 811 of file vnet_classify.c.

◆ foreach_ip6_proto_field

#define foreach_ip6_proto_field
Value:
_(dst_address) \
_(payload_length) \
_(hop_limit) \
vl_api_ip_proto_t protocol
Definition: lb_types.api:71
vl_api_address_union_t src_address
Definition: ip_types.api:98

Definition at line 1028 of file vnet_classify.c.

◆ foreach_ip_next

#define foreach_ip_next
Value:
_(drop, DROP) \
_(rewrite, REWRITE)
DROP
Definition: error.def:41

Definition at line 1407 of file vnet_classify.c.

◆ foreach_l2_input_next

#define foreach_l2_input_next
Value:
_(drop, DROP) \
_(ethernet, ETHERNET_INPUT) \
_(ip4, IP4_INPUT) \
_(ip6, IP6_INPUT) \
_(li, LI)
u8 ip6[16]
Definition: one.api:477
DROP
Definition: error.def:41
u32 ip4
Definition: one.api:440

Definition at line 1323 of file vnet_classify.c.

◆ foreach_l2_output_next

#define foreach_l2_output_next   _(drop, DROP)

Definition at line 1367 of file vnet_classify.c.

◆ foreach_tcp_proto_field

#define foreach_tcp_proto_field
Value:
_(src) \
_(dst)
vl_api_address_t src
Definition: gre.api:60
vl_api_address_t dst
Definition: gre.api:61

Definition at line 803 of file vnet_classify.c.

◆ foreach_udp_proto_field

#define foreach_udp_proto_field
Value:
u16 src_port
Definition: udp.api:41
u16 dst_port
Definition: udp.api:42

Definition at line 807 of file vnet_classify.c.

◆ TEST_CODE

#define TEST_CODE   0

Definition at line 2975 of file vnet_classify.c.

Function Documentation

◆ classify_filter_command_fn()

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

Definition at line 1681 of file vnet_classify.c.

+ Here is the call graph for this function:

◆ classify_session_command_fn()

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

Definition at line 2718 of file vnet_classify.c.

+ Here is the call graph for this function:

◆ classify_table_command_fn()

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

Definition at line 1527 of file vnet_classify.c.

+ Here is the call graph for this function:

◆ CLIB_PACKED()

typedef CLIB_PACKED ( struct { ethernet_header_t eh;ip4_header_t ip;}  )

Definition at line 650 of file vnet_classify.c.

+ Here is the call graph for this function:

◆ filter_table_mask_compare()

static int filter_table_mask_compare ( void *  a1,
void *  a2 
)
static

Definition at line 1643 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ format_classify_entry()

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

Definition at line 670 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ format_classify_table()

u8* format_classify_table ( u8 s,
va_list *  args 
)

Definition at line 693 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ format_vnet_classify_table()

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

Definition at line 2124 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ make_working_copy()

static void make_working_copy ( vnet_classify_table_t t,
vnet_classify_bucket_t b 
)
inlinestatic

Definition at line 237 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mv()

void mv ( vnet_classify_table_t t)

Definition at line 76 of file vnet_classify.c.

◆ rogue()

void rogue ( vnet_classify_table_t t)

Definition at line 81 of file vnet_classify.c.

◆ show_classify_filter_command_fn()

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

Definition at line 2029 of file vnet_classify.c.

+ Here is the call graph for this function:

◆ show_classify_tables_command_fn()

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

Definition at line 2160 of file vnet_classify.c.

+ Here is the call graph for this function:

◆ split_and_rehash()

static vnet_classify_entry_t* split_and_rehash ( vnet_classify_table_t t,
vnet_classify_entry_t *  old_values,
u32  old_log2_pages,
u32  new_log2_pages 
)
static

Definition at line 292 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ split_and_rehash_linear()

static vnet_classify_entry_t* split_and_rehash_linear ( vnet_classify_table_t t,
vnet_classify_entry_t *  old_values,
u32  old_log2_pages,
u32  new_log2_pages 
)
static

Definition at line 343 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_acl_next_index()

uword unformat_acl_next_index ( unformat_input_t input,
va_list *  args 
)

Definition at line 1452 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_acl_next_node()

static uword unformat_acl_next_node ( unformat_input_t input,
va_list *  args 
)
static

Definition at line 2866 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_classify_mask()

uword unformat_classify_mask ( unformat_input_t input,
va_list *  args 
)

Definition at line 1233 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_classify_match()

uword unformat_classify_match ( unformat_input_t input,
va_list *  args 
)

Definition at line 2583 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_ip4_mask()

uword unformat_ip4_mask ( unformat_input_t input,
va_list *  args 
)

Definition at line 945 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_ip4_match()

uword unformat_ip4_match ( unformat_input_t input,
va_list *  args 
)

Definition at line 2247 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_ip6_mask()

uword unformat_ip6_mask ( unformat_input_t input,
va_list *  args 
)

Definition at line 1036 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_ip6_match()

uword unformat_ip6_match ( unformat_input_t input,
va_list *  args 
)

Definition at line 2343 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_ip_next_index()

uword unformat_ip_next_index ( unformat_input_t input,
va_list *  args 
)

Definition at line 1412 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_ip_next_node()

static uword unformat_ip_next_node ( unformat_input_t input,
va_list *  args 
)
static

Definition at line 2839 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_l2_input_next_index()

uword unformat_l2_input_next_index ( unformat_input_t input,
va_list *  args 
)

Definition at line 1331 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_l2_input_next_node()

static uword unformat_l2_input_next_node ( unformat_input_t input,
va_list *  args 
)
static

Definition at line 2893 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_l2_mask()

uword unformat_l2_mask ( unformat_input_t input,
va_list *  args 
)

Definition at line 1124 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_l2_match()

uword unformat_l2_match ( unformat_input_t input,
va_list *  args 
)

Definition at line 2466 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_l2_output_next_index()

uword unformat_l2_output_next_index ( unformat_input_t input,
va_list *  args 
)

Definition at line 1371 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_l2_output_next_node()

static uword unformat_l2_output_next_node ( unformat_input_t input,
va_list *  args 
)
static

Definition at line 2913 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_l3_mask()

uword unformat_l3_mask ( unformat_input_t input,
va_list *  args 
)

Definition at line 1107 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_l3_match()

uword unformat_l3_match ( unformat_input_t input,
va_list *  args 
)

Definition at line 2432 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_l4_mask()

uword unformat_l4_mask ( unformat_input_t input,
va_list *  args 
)

Definition at line 909 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_l4_match()

uword unformat_l4_match ( unformat_input_t input,
va_list *  args 
)

Definition at line 2216 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_opaque_sw_if_index()

static uword unformat_opaque_sw_if_index ( unformat_input_t input,
va_list *  args 
)
static

Definition at line 2824 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_policer_next_index()

uword unformat_policer_next_index ( unformat_input_t input,
va_list *  args 
)

Definition at line 1494 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_tcp_mask()

uword unformat_tcp_mask ( unformat_input_t input,
va_list *  args 
)

Definition at line 822 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_udp_mask()

uword unformat_udp_mask ( unformat_input_t input,
va_list *  args 
)

Definition at line 863 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unformat_vlan_tag()

uword unformat_vlan_tag ( unformat_input_t input,
va_list *  args 
)

Definition at line 2450 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vlib_enable_disable_pkt_trace_filter()

int vlib_enable_disable_pkt_trace_filter ( int  enable)

Enable / disable packet trace filter.

Definition at line 1921 of file vnet_classify.c.

◆ vnet_classify_add_del()

int vnet_classify_add_del ( vnet_classify_table_t t,
vnet_classify_entry_t *  add_v,
int  is_add 
)

Definition at line 424 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vnet_classify_add_del_session()

int vnet_classify_add_del_session ( vnet_classify_main_t cm,
u32  table_index,
u8 match,
u32  hit_next_index,
u32  opaque_index,
i32  advance,
u8  action,
u32  metadata,
int  is_add 
)

Definition at line 2661 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vnet_classify_add_del_table()

int vnet_classify_add_del_table ( vnet_classify_main_t cm,
u8 mask,
u32  nbuckets,
u32  memory_size,
u32  skip,
u32  match,
u32  next_table_index,
u32  miss_next_index,
u32 table_index,
u8  current_data_flag,
i16  current_data_offset,
int  is_add,
int  del_chain 
)

Definition at line 753 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vnet_classify_delete_table_index()

void vnet_classify_delete_table_index ( vnet_classify_main_t cm,
u32  table_index,
int  del_chain 
)

Definition at line 167 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vnet_classify_entry_alloc()

static vnet_classify_entry_t* vnet_classify_entry_alloc ( vnet_classify_table_t t,
u32  log2_pages 
)
static

Definition at line 193 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vnet_classify_entry_claim_resource()

static void vnet_classify_entry_claim_resource ( vnet_classify_entry_t *  e)
static

Definition at line 392 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vnet_classify_entry_free()

static void vnet_classify_entry_free ( vnet_classify_table_t t,
vnet_classify_entry_t *  v,
u32  log2_pages 
)
static

Definition at line 225 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vnet_classify_entry_release_resource()

static void vnet_classify_entry_release_resource ( vnet_classify_entry_t *  e)
static

Definition at line 408 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vnet_classify_find_entry()

vnet_classify_entry_t* vnet_classify_find_entry ( vnet_classify_table_t t,
u8 h,
u64  hash,
f64  now 
)

Definition at line 663 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vnet_classify_init()

static clib_error_t* vnet_classify_init ( vlib_main_t vm)
static

Definition at line 2933 of file vnet_classify.c.

+ Here is the call graph for this function:

◆ vnet_classify_new_table()

vnet_classify_table_t* vnet_classify_new_table ( vnet_classify_main_t cm,
u8 mask,
u32  nbuckets,
u32  memory_size,
u32  skip_n_vectors,
u32  match_n_vectors 
)

Definition at line 128 of file vnet_classify.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vnet_classify_register_unformat_acl_next_index_fn()

void vnet_classify_register_unformat_acl_next_index_fn ( unformat_function_t fn)

Definition at line 103 of file vnet_classify.c.

+ Here is the caller graph for this function:

◆ vnet_classify_register_unformat_ip_next_index_fn()

void vnet_classify_register_unformat_ip_next_index_fn ( unformat_function_t fn)

Definition at line 95 of file vnet_classify.c.

+ Here is the caller graph for this function:

◆ vnet_classify_register_unformat_l2_next_index_fn()

void vnet_classify_register_unformat_l2_next_index_fn ( unformat_function_t fn)

Definition at line 87 of file vnet_classify.c.

+ Here is the caller graph for this function:

◆ vnet_classify_register_unformat_opaque_index_fn()

void vnet_classify_register_unformat_opaque_index_fn ( unformat_function_t fn)

Definition at line 120 of file vnet_classify.c.

+ Here is the caller graph for this function:

◆ vnet_classify_register_unformat_policer_next_index_fn()

void vnet_classify_register_unformat_policer_next_index_fn ( unformat_function_t fn)

Definition at line 111 of file vnet_classify.c.

+ Here is the caller graph for this function:

◆ vnet_is_packet_traced()

int vnet_is_packet_traced ( vlib_buffer_t b,
u32  classify_table_index,
int  func 
)

Definition at line 2969 of file vnet_classify.c.

Variable Documentation

◆ classify_filter

vlib_cli_command_t classify_filter
static
Initial value:
=
{
.path = "classify filter",
.short_help =
"classify filter <intfc> | pcap mask <mask-value> match <match-value>\n"
" | trace mask <mask-value> match <match-value> [del]\n"
" [buckets <nn>] [memory-size <n>]",
}
static clib_error_t * classify_filter_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)

(constructor) VLIB_CLI_COMMAND (classify_filter)

Definition at line 2017 of file vnet_classify.c.

◆ classify_session_command

vlib_cli_command_t classify_session_command
static
Initial value:
= {
.path = "classify session",
.short_help =
"classify session [hit-next|l2-input-hit-next|l2-output-hit-next|"
"acl-hit-next <next_index>|policer-hit-next <policer_name>]"
"\n table-index <nn> match [hex] [l2] [l3 ip4] [opaque-index <index>]"
"\n [action set-ip4-fib-id|set-ip6-fib-id|set-sr-policy-index <n>] [del]",
}
static clib_error_t * classify_session_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)

(constructor) VLIB_CLI_COMMAND (classify_session_command)

Definition at line 2812 of file vnet_classify.c.

◆ classify_table

vlib_cli_command_t classify_table
static
Initial value:
=
{
.path = "classify table",
.short_help =
"classify table [miss-next|l2-miss_next|acl-miss-next <next_index>]"
"\n mask <mask-value> buckets <nn> [skip <n>] [match <n>]"
"\n [current-data-flag <n>] [current-data-offset <n>] [table <n>]"
"\n [memory-size <nn>[M][G]] [next-table <n>]"
"\n [del] [del-chain]",
}
static clib_error_t * classify_table_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)

(constructor) VLIB_CLI_COMMAND (classify_table)

Definition at line 1629 of file vnet_classify.c.

◆ show_classify_filter

vlib_cli_command_t show_classify_filter
static
Initial value:
=
{
.path = "show classify filter",
.short_help = "show classify filter [verbose [nn]]",
}
static clib_error_t * show_classify_filter_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)

(constructor) VLIB_CLI_COMMAND (show_classify_filter)

Definition at line 2112 of file vnet_classify.c.

◆ show_classify_table_command

vlib_cli_command_t show_classify_table_command
static
Initial value:
= {
.path = "show classify tables",
.short_help = "show classify tables [index <nn>]",
}
static clib_error_t * show_classify_tables_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)

(constructor) VLIB_CLI_COMMAND (show_classify_table_command)

Definition at line 2208 of file vnet_classify.c.

◆ vnet_classify_main

vnet_classify_main_t vnet_classify_main

Definition at line 29 of file vnet_classify.c.