43 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__) 50 #define foreach_vpe_api_msg \ 51 _(CLASSIFY_ADD_DEL_TABLE, classify_add_del_table) \ 52 _(CLASSIFY_ADD_DEL_SESSION, classify_add_del_session) \ 53 _(CLASSIFY_TABLE_IDS,classify_table_ids) \ 54 _(CLASSIFY_TABLE_BY_INTERFACE, classify_table_by_interface) \ 55 _(CLASSIFY_TABLE_INFO,classify_table_info) \ 56 _(CLASSIFY_SESSION_DUMP,classify_session_dump) \ 57 _(POLICER_CLASSIFY_SET_INTERFACE, policer_classify_set_interface) \ 58 _(POLICER_CLASSIFY_DUMP, policer_classify_dump) \ 59 _(FLOW_CLASSIFY_SET_INTERFACE, flow_classify_set_interface) \ 60 _(FLOW_CLASSIFY_DUMP, flow_classify_dump) \ 61 _(INPUT_ACL_SET_INTERFACE, input_acl_set_interface) \ 62 _(CLASSIFY_SET_INTERFACE_IP_TABLE, classify_set_interface_ip_table) \ 63 _(CLASSIFY_SET_INTERFACE_L2_TABLES, classify_set_interface_l2_tables) \ 64 _(OUTPUT_ACL_SET_INTERFACE, output_acl_set_interface) 66 #define foreach_classify_add_del_table_field \ 88 #define _(a) a = ntohl(mp->a); 92 if (mask_len != match_n_vectors *
sizeof (
u32x4))
94 rv = VNET_API_ERROR_INVALID_VALUE;
103 rv = VNET_API_ERROR_NO_SUCH_TABLE;
118 skip_n_vectors, match_n_vectors,
119 next_table_index, miss_next_index, &table_index,
126 if (rv == 0 && mp->
is_add)
128 t = pool_elt_at_index (cm->tables, table_index);
129 rmp->skip_n_vectors = htonl(t->skip_n_vectors);
130 rmp->match_n_vectors = htonl(t->match_n_vectors);
131 rmp->new_table_index = htonl(table_index);
135 rmp->skip_n_vectors = ~0;
136 rmp->match_n_vectors = ~0;
137 rmp->new_table_index = ~0;
147 vl_api_classify_add_del_session_reply_t *rmp;
149 u32 table_index, hit_next_index, opaque_index, metadata, match_len;
164 rv = VNET_API_ERROR_NO_SUCH_TABLE;
172 rv = VNET_API_ERROR_INVALID_VALUE;
177 (cm, table_index, mp->
match, hit_next_index, opaque_index,
178 advance, action, metadata, mp->
is_add);
181 REPLY_MACRO (VL_API_CLASSIFY_ADD_DEL_SESSION_REPLY);
189 vl_api_policer_classify_set_interface_reply_t *rmp;
191 u32 sw_if_index, ip4_table_index, ip6_table_index, l2_table_index;
201 ip6_table_index, l2_table_index,
206 REPLY_MACRO (VL_API_POLICER_CLASSIFY_SET_INTERFACE_REPLY);
218 mp->_vl_msg_id = ntohs (VL_API_POLICER_CLASSIFY_DETAILS);
233 u32 filter_sw_if_index;
240 if (filter_sw_if_index
244 if (filter_sw_if_index != ~0)
252 for (i = 0; i <
vec_len (vec_tbl); i++)
254 if (
vec_elt (vec_tbl, i) == ~0)
280 vec_add1 (table_ids, ntohl(t - cm->tables));
287 rmp->_vl_msg_id = ntohs (VL_API_CLASSIFY_TABLE_IDS_REPLY);
289 rmp->
count = ntohl (count);
325 for (if_idx = 0; if_idx <
vec_len (vec_tbl); if_idx++)
327 if (
vec_elt (vec_tbl, if_idx) == ~0 || sw_if_index != if_idx)
368 if (table_id == t - cm->tables)
370 rmp = vl_msg_api_alloc_as_if_client
371 (sizeof (*rmp) + t->match_n_vectors * sizeof (u32x4));
372 rmp->_vl_msg_id = ntohs (VL_API_CLASSIFY_TABLE_INFO_REPLY);
373 rmp->context = mp->context;
374 rmp->table_id = ntohl(table_id);
375 rmp->nbuckets = ntohl(t->nbuckets);
376 rmp->match_n_vectors = ntohl(t->match_n_vectors);
377 rmp->skip_n_vectors = ntohl(t->skip_n_vectors);
378 rmp->active_sessions = ntohl(t->active_elements);
379 rmp->next_table_index = ntohl(t->next_table_index);
380 rmp->miss_next_index = ntohl(t->miss_next_index);
381 rmp->mask_length = ntohl(t->match_n_vectors * sizeof (u32x4));
382 clib_memcpy(rmp->mask, t->mask, t->match_n_vectors * sizeof(u32x4));
392 rmp->_vl_msg_id = ntohs ((VL_API_CLASSIFY_TABLE_INFO_REPLY));
394 rmp->retval = ntohl (VNET_API_ERROR_CLASSIFY_TABLE_NOT_FOUND);
404 vnet_classify_entry_t * e,
u32 context)
410 rmp->_vl_msg_id = ntohs (VL_API_CLASSIFY_SESSION_DETAILS);
414 rmp->
advance = ntohl (e->advance);
438 if (table_id == t - cm->tables)
440 vnet_classify_bucket_t * b;
441 vnet_classify_entry_t * v, * save_v;
444 for (i = 0; i < t->nbuckets; i++)
450 save_v = vnet_classify_get_entry (t, b->offset);
451 for (j = 0; j < (1<<b->log2_pages); j++)
453 for (k = 0; k < t->entries_per_page; k++)
455 v = vnet_classify_entry_at_index
456 (t, save_v, j*t->entries_per_page + k);
457 if (vnet_classify_entry_is_free (v))
460 send_classify_session_details
461 (reg, table_id, t->match_n_vectors * sizeof (u32x4),
477 vl_api_flow_classify_set_interface_reply_t *rmp;
488 ip6_table_index, mp->
is_add);
492 REPLY_MACRO (VL_API_FLOW_CLASSIFY_SET_INTERFACE_REPLY);
504 mp->_vl_msg_id = ntohs (VL_API_FLOW_CLASSIFY_DETAILS);
519 u32 filter_sw_if_index;
526 if (filter_sw_if_index
530 if (filter_sw_if_index != ~0)
538 for (i = 0; i <
vec_len (vec_tbl); i++)
540 if (
vec_elt (vec_tbl, i) == ~0)
553 vl_api_classify_set_interface_ip_table_reply_t *rmp;
568 REPLY_MACRO (VL_API_CLASSIFY_SET_INTERFACE_IP_TABLE_REPLY);
574 vl_api_classify_set_interface_l2_tables_reply_t *rmp;
576 u32 sw_if_index, ip4_table_index, ip6_table_index, other_table_index;
597 if (ip4_table_index != ~0 || ip6_table_index != ~0
598 || other_table_index != ~0)
611 REPLY_MACRO (VL_API_CLASSIFY_SET_INTERFACE_L2_TABLES_REPLY);
618 vl_api_input_acl_set_interface_reply_t *rmp;
629 ip6_table_index, l2_table_index, mp->
is_add);
633 REPLY_MACRO (VL_API_INPUT_ACL_SET_INTERFACE_REPLY);
640 vl_api_output_acl_set_interface_reply_t *rmp;
651 ip6_table_index, l2_table_index,
656 REPLY_MACRO (VL_API_OUTPUT_ACL_SET_INTERFACE_REPLY);
666 #define vl_msg_name_crc_list 668 #undef vl_msg_name_crc_list 673 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id); 674 foreach_vl_msg_name_crc_classify;
684 vl_msg_api_set_handlers(VL_API_##N, #n, \ 685 vl_api_##n##_t_handler, \ 687 vl_api_##n##_t_endian, \ 688 vl_api_##n##_t_print, \ 689 sizeof(vl_api_##n##_t), 1); #define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Reply for classify table session dump request.
policer_classify_main_t policer_classify_main
static void vl_api_classify_table_info_t_handler(vl_api_classify_table_info_t *mp)
static void send_classify_session_details(vl_api_registration_t *reg, u32 table_id, u32 match_length, vnet_classify_entry_t *e, u32 context)
Classify get table IDs request.
#define foreach_vpe_api_msg
static void vl_api_classify_add_del_table_t_handler(vl_api_classify_add_del_table_t *mp)
vl_api_interface_index_t sw_if_index
Set/unset policer classify interface.
int vnet_set_ip6_classify_intfc(vlib_main_t *vm, u32 sw_if_index, u32 table_index)
#define REPLY_MACRO2(t, body)
u32 * classify_table_index_by_sw_if_index[IN_OUT_ACL_N_TABLE_GROUPS][IN_OUT_ACL_N_TABLES]
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
static void vl_api_send_msg(vl_api_registration_t *rp, u8 *elem)
Classify add / del session request.
static void vl_api_output_acl_set_interface_t_handler(vl_api_output_acl_set_interface_t *mp)
void vnet_l2_input_classify_enable_disable(u32 sw_if_index, int enable_disable)
Enable/disable l2 input classification on a specific interface.
Add/Delete classification table request.
Reply for classify get table IDs request.
void * vl_msg_api_alloc(int nbytes)
vl_api_interface_index_t sw_if_index
static void send_policer_classify_details(u32 sw_if_index, u32 table_index, vl_api_registration_t *reg, u32 context)
#define clib_memcpy(d, s, n)
static void vl_api_input_acl_set_interface_t_handler(vl_api_input_acl_set_interface_t *mp)
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
vl_api_interface_index_t sw_if_index
vl_api_interface_index_t sw_if_index
Classify sessions dump request.
u32 * classify_table_index_by_sw_if_index[FLOW_CLASSIFY_N_TABLES]
static void send_flow_classify_details(u32 sw_if_index, u32 table_index, vl_api_registration_t *reg, u32 context)
Set/unset output ACL interface.
static void setup_message_id_table(api_main_t *am)
int vnet_l2_output_classify_set_tables(u32 sw_if_index, u32 ip4_table_index, u32 ip6_table_index, u32 other_table_index)
Set l2 per-protocol, per-interface output classification tables.
Reply for classify table id by interface index request.
int vnet_set_ip4_classify_intfc(vlib_main_t *vm, u32 sw_if_index, u32 table_index)
u32 * classify_table_index_by_sw_if_index[POLICER_CLASSIFY_N_TABLES]
vl_api_fib_path_type_t type
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)
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Flow classify operational state response.
vl_api_interface_index_t sw_if_index
#define foreach_classify_add_del_table_field
Set/unset l2 classification tables for an interface request.
u32 opaque_index[default=0xffffffff]
Add/Delete classification table response.
vl_api_flow_classify_table_t type
static clib_error_t * classify_api_hookup(vlib_main_t *vm)
int vnet_set_input_acl_intfc(vlib_main_t *vm, u32 sw_if_index, u32 ip4_table_index, u32 ip6_table_index, u32 l2_table_index, u32 is_add)
Get list of flow classify interfaces and tables.
flow_classify_main_t flow_classify_main
static void vl_api_flow_classify_set_interface_t_handler(vl_api_flow_classify_set_interface_t *mp)
API main structure, used by both vpp and binary API clients.
An API client registration, only in vpp/vlib.
#define BAD_SW_IF_INDEX_LABEL
static void vl_api_classify_set_interface_l2_tables_t_handler(vl_api_classify_set_interface_l2_tables_t *mp)
int vnet_set_flow_classify_intfc(vlib_main_t *vm, u32 sw_if_index, u32 ip4_table_index, u32 ip6_table_index, u32 is_add)
static void vl_api_classify_set_interface_ip_table_t_handler(vl_api_classify_set_interface_ip_table_t *mp)
sll srl srl sll sra u16x4 i
#define vec_free(V)
Free vector's memory (no header).
Set/unset the classification table for an interface request.
Set/unset flow classify interface.
int vnet_l2_input_classify_set_tables(u32 sw_if_index, u32 ip4_table_index, u32 ip6_table_index, u32 other_table_index)
Set l2 per-protocol, per-interface input classification tables.
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
static vl_api_registration_t * vl_api_client_index_to_registration(u32 index)
static void vl_api_classify_session_dump_t_handler(vl_api_classify_session_dump_t *mp)
struct _vnet_classify_main vnet_classify_main_t
vl_api_classify_action_t action[default=0]
Policer classify operational state response.
vl_api_interface_index_t sw_if_index
vl_api_interface_index_t sw_if_index
Get list of policer classify interfaces and tables.
u8 current_data_flag[default=0]
static void vl_api_flow_classify_dump_t_handler(vl_api_flow_classify_dump_t *mp)
vl_api_interface_index_t sw_if_index
vl_api_policer_classify_table_t type
static void vl_api_policer_classify_dump_t_handler(vl_api_policer_classify_dump_t *mp)
vl_api_interface_index_t sw_if_index
vnet_classify_main_t vnet_classify_main
#define vec_set(v, val)
Set all vector elements to given value.
vl_api_interface_index_t sw_if_index
i16 current_data_offset[default=0]
Classify table ids by interface index request.
static vlib_main_t * vlib_get_main(void)
static void vl_api_policer_classify_set_interface_t_handler(vl_api_policer_classify_set_interface_t *mp)
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)
#define vec_elt(v, i)
Get vector value at index i.
vl_api_mac_event_action_t action
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
void vnet_l2_output_classify_enable_disable(u32 sw_if_index, int enable_disable)
Enable/disable l2 input classification on a specific interface.
u32 hit_next_index[default=0xffffffff]
static void vl_api_classify_table_by_interface_t_handler(vl_api_classify_table_by_interface_t *mp)
vl_api_interface_index_t sw_if_index
static api_main_t * vlibapi_get_main(void)
static void vl_api_classify_table_ids_t_handler(vl_api_classify_table_ids_t *mp)
in_out_acl_main_t in_out_acl_main
int vnet_set_policer_classify_intfc(vlib_main_t *vm, u32 sw_if_index, u32 ip4_table_index, u32 ip6_table_index, u32 l2_table_index, u32 is_add)
void * vl_msg_api_alloc_as_if_client(int nbytes)
static void vl_api_classify_add_del_session_t_handler(vl_api_classify_add_del_session_t *mp)
vl_api_interface_index_t sw_if_index
Reply for classify table info request.
VLIB_API_INIT_FUNCTION(classify_api_hookup)
int vnet_set_output_acl_intfc(vlib_main_t *vm, u32 sw_if_index, u32 ip4_table_index, u32 ip6_table_index, u32 l2_table_index, u32 is_add)
#define VALIDATE_SW_IF_INDEX(mp)