40 #ifndef included_vnet_interface_h 41 #define included_vnet_interface_h 49 struct ip46_address_t;
77 vnet_hw_interface_rx_mode mode);
94 vnet_flow_dev_op_t op,
95 u32 hw_if_index,
u32 index,
96 uword * private_data);
103 #define VNET_ITF_FUNC_N_PRIO ((vnet_interface_function_priority_t)VNET_ITF_FUNC_PRIORITY_HIGH+1) 105 typedef struct _vnet_interface_function_list_elt
107 struct _vnet_interface_function_list_elt *next_interface_function;
109 } _vnet_interface_function_list_elt_t;
111 #define _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,tag,p) \ 113 static void __vnet_interface_function_init_##tag##_##f (void) \ 114 __attribute__((__constructor__)) ; \ 116 static void __vnet_interface_function_init_##tag##_##f (void) \ 118 vnet_main_t * vnm = vnet_get_main(); \ 119 static _vnet_interface_function_list_elt_t init_function; \ 120 init_function.next_interface_function = vnm->tag##_functions[p]; \ 121 vnm->tag##_functions[p] = &init_function; \ 122 init_function.fp = (void *) &f; \ 124 static void __vnet_interface_function_deinit_##tag##_##f (void) \ 125 __attribute__((__destructor__)) ; \ 127 static void __vnet_interface_function_deinit_##tag##_##f (void) \ 129 vnet_main_t * vnm = vnet_get_main(); \ 130 _vnet_interface_function_list_elt_t *next; \ 131 if (vnm->tag##_functions[p]->fp == (void *) &f) \ 133 vnm->tag##_functions[p] = \ 134 vnm->tag##_functions[p]->next_interface_function; \ 137 next = vnm->tag##_functions[p]; \ 138 while (next->next_interface_function) \ 140 if (next->next_interface_function->fp == (void *) &f) \ 142 next->next_interface_function = \ 143 next->next_interface_function->next_interface_function; \ 146 next = next->next_interface_function; \ 150 #define _VNET_INTERFACE_FUNCTION_DECL(f,tag) \ 151 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,tag,VNET_ITF_FUNC_PRIORITY_LOW) 153 #define VNET_HW_INTERFACE_ADD_DEL_FUNCTION(f) \ 154 _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_add_del) 155 #define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION(f) \ 156 _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_link_up_down) 157 #define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION_PRIO(f,p) \ 158 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,hw_interface_link_up_down,p) 159 #define VNET_SW_INTERFACE_MTU_CHANGE_FUNCTION(f) \ 160 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_mtu_change) 161 #define VNET_SW_INTERFACE_ADD_DEL_FUNCTION(f) \ 162 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_add_del) 163 #define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(f) \ 164 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_admin_up_down) 165 #define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION_PRIO(f,p) \ 166 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,sw_interface_admin_up_down, p) 169 typedef struct _vnet_device_class
199 char **tx_function_error_strings;
202 u32 tx_function_n_errors;
206 u32 new_dev_instance);
227 void (*clear_counters) (
u32 dev_class_instance);
235 u32 hw_if_index,
u32 new_hw_class_index);
238 void (*rx_redirect_to_node) (
struct vnet_main_t * vnm,
239 u32 hw_if_index,
u32 node_index);
242 struct _vnet_device_class *next_class_registration;
248 #define VNET_DEVICE_CLASS(x,...) \ 249 __VA_ARGS__ vnet_device_class_t x; \ 250 static void __vnet_add_device_class_registration_##x (void) \ 251 __attribute__((__constructor__)) ; \ 252 static void __vnet_add_device_class_registration_##x (void) \ 254 vnet_main_t * vnm = vnet_get_main(); \ 255 x.next_class_registration = vnm->device_class_registrations; \ 256 vnm->device_class_registrations = &x; \ 258 static void __vnet_rm_device_class_registration_##x (void) \ 259 __attribute__((__destructor__)) ; \ 260 static void __vnet_rm_device_class_registration_##x (void) \ 262 vnet_main_t * vnm = vnet_get_main(); \ 263 VLIB_REMOVE_FROM_LINKED_LIST (vnm->device_class_registrations, \ 264 &x, next_class_registration); \ 266 __VA_ARGS__ vnet_device_class_t x 268 #define VLIB_DEVICE_TX_FUNCTION_CLONE_TEMPLATE(arch, fn, tgt) \ 270 __attribute__ ((flatten)) \ 271 __attribute__ ((target (tgt))) \ 273 fn ## _ ## arch ( vlib_main_t * vm, \ 274 vlib_node_runtime_t * node, \ 275 vlib_frame_t * frame) \ 276 { return fn (vm, node, frame); } 278 #define VLIB_DEVICE_TX_FUNCTION_MULTIARCH_CLONE(fn) \ 279 foreach_march_variant(VLIB_DEVICE_TX_FUNCTION_CLONE_TEMPLATE, fn) 282 #define VLIB_MULTIARCH_CLONE_AND_SELECT_FN(fn,...) 283 #define VLIB_DEVICE_TX_FUNCTION_MULTIARCH(dev, fn) 285 #define VLIB_DEVICE_TX_FUNCTION_MULTIARCH(dev, fn) \ 286 VLIB_DEVICE_TX_FUNCTION_MULTIARCH_CLONE(fn) \ 287 CLIB_MULTIARCH_SELECT_FN(fn, static inline) \ 288 static void __attribute__((__constructor__)) \ 289 __vlib_device_tx_function_multiarch_select_##dev (void) \ 290 { dev.tx_function = fn ## _multiarch_select(); } 310 } __attribute__ ((packed)) vnet_link_t;
312 #define VNET_LINKS { \ 313 [VNET_LINK_ETHERNET] = "ethernet", \ 314 [VNET_LINK_IP4] = "ipv4", \ 315 [VNET_LINK_IP6] = "ipv6", \ 316 [VNET_LINK_MPLS] = "mpls", \ 317 [VNET_LINK_ARP] = "arp", \ 318 [VNET_LINK_NSH] = "nsh", \ 321 #define FOR_EACH_VNET_LINK(_link) \ 322 for (_link = VNET_LINK_IP4; \ 323 _link <= VNET_LINK_NSH; \ 330 #define VNET_LINK_NUM (VNET_LINK_NSH+1) 349 typedef struct _vnet_hw_interface_class
394 vnet_link_t link_type,
const void *dst_hw_address);
398 void (*update_adjacency) (
struct vnet_main_t * vnm,
399 u32 sw_if_index,
u32 adj_index);
407 void (*hw_class_change) (
struct vnet_main_t * vnm,
u32 hw_if_index,
408 u32 old_class_index,
u32 new_class_index);
411 struct _vnet_hw_interface_class *next_class_registration;
420 vnet_link_t link_type,
421 const void *dst_hw_address);
427 u32 sw_if_index,
u32 adj_index);
429 #define VNET_HW_INTERFACE_CLASS(x,...) \ 430 __VA_ARGS__ vnet_hw_interface_class_t x; \ 431 static void __vnet_add_hw_interface_class_registration_##x (void) \ 432 __attribute__((__constructor__)) ; \ 433 static void __vnet_add_hw_interface_class_registration_##x (void) \ 435 vnet_main_t * vnm = vnet_get_main(); \ 436 x.next_class_registration = vnm->hw_interface_class_registrations; \ 437 vnm->hw_interface_class_registrations = &x; \ 439 static void __vnet_rm_hw_interface_class_registration_##x (void) \ 440 __attribute__((__destructor__)) ; \ 441 static void __vnet_rm_hw_interface_class_registration_##x (void) \ 443 vnet_main_t * vnm = vnet_get_main(); \ 444 VLIB_REMOVE_FROM_LINKED_LIST (vnm->hw_interface_class_registrations,\ 445 &x, next_class_registration); \ 447 __VA_ARGS__ vnet_hw_interface_class_t x 458 #define VNET_HW_INTERFACE_FLAG_LINK_UP (1 << 0) 460 #define VNET_HW_INTERFACE_FLAG_DUPLEX_SHIFT 1 461 #define VNET_HW_INTERFACE_FLAG_HALF_DUPLEX (1 << 1) 462 #define VNET_HW_INTERFACE_FLAG_FULL_DUPLEX (1 << 2) 463 #define VNET_HW_INTERFACE_FLAG_DUPLEX_MASK \ 464 (VNET_HW_INTERFACE_FLAG_HALF_DUPLEX | \ 465 VNET_HW_INTERFACE_FLAG_FULL_DUPLEX) 468 #define VNET_HW_INTERFACE_FLAG_SPEED_SHIFT 3 469 #define VNET_HW_INTERFACE_FLAG_SPEED_10M (1 << 3) 470 #define VNET_HW_INTERFACE_FLAG_SPEED_100M (1 << 4) 471 #define VNET_HW_INTERFACE_FLAG_SPEED_1G (1 << 5) 472 #define VNET_HW_INTERFACE_FLAG_SPEED_2_5G (1 << 6) 473 #define VNET_HW_INTERFACE_FLAG_SPEED_5G (1 << 7) 474 #define VNET_HW_INTERFACE_FLAG_SPEED_10G (1 << 8) 475 #define VNET_HW_INTERFACE_FLAG_SPEED_20G (1 << 9) 476 #define VNET_HW_INTERFACE_FLAG_SPEED_25G (1 << 10) 477 #define VNET_HW_INTERFACE_FLAG_SPEED_40G (1 << 11) 478 #define VNET_HW_INTERFACE_FLAG_SPEED_50G (1 << 12) 479 #define VNET_HW_INTERFACE_FLAG_SPEED_56G (1 << 13) 480 #define VNET_HW_INTERFACE_FLAG_SPEED_100G (1 << 14) 481 #define VNET_HW_INTERFACE_FLAG_SPEED_MASK \ 482 (VNET_HW_INTERFACE_FLAG_SPEED_10M | \ 483 VNET_HW_INTERFACE_FLAG_SPEED_100M | \ 484 VNET_HW_INTERFACE_FLAG_SPEED_1G | \ 485 VNET_HW_INTERFACE_FLAG_SPEED_2_5G | \ 486 VNET_HW_INTERFACE_FLAG_SPEED_5G | \ 487 VNET_HW_INTERFACE_FLAG_SPEED_10G | \ 488 VNET_HW_INTERFACE_FLAG_SPEED_20G | \ 489 VNET_HW_INTERFACE_FLAG_SPEED_25G | \ 490 VNET_HW_INTERFACE_FLAG_SPEED_40G | \ 491 VNET_HW_INTERFACE_FLAG_SPEED_50G | \ 492 VNET_HW_INTERFACE_FLAG_SPEED_56G | \ 493 VNET_HW_INTERFACE_FLAG_SPEED_100G) 496 #define VNET_HW_INTERFACE_FLAG_SUPPORTS_INT_MODE (1 << 16) 499 #define VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD (1 << 17) 553 #define VNET_HW_INTERFACE_BOND_INFO_NONE ((uword *) 0) 554 #define VNET_HW_INTERFACE_BOND_INFO_SLAVE ((uword *) ~0) 656 vnet_sw_interface_type_t type:16;
661 #define VNET_SW_INTERFACE_FLAG_ADMIN_UP (1 << 0) 664 #define VNET_SW_INTERFACE_FLAG_PUNT (1 << 1) 666 #define VNET_SW_INTERFACE_FLAG_PROXY_ARP (1 << 2) 668 #define VNET_SW_INTERFACE_FLAG_UNNUMBERED (1 << 3) 670 #define VNET_SW_INTERFACE_FLAG_BOND_SLAVE (1 << 4) 673 #define VNET_SW_INTERFACE_FLAG_HIDDEN (1 << 5) 676 #define VNET_SW_INTERFACE_FLAG_ERROR (1 << 6) 731 #define foreach_rx_combined_interface_counter(_x) \ 732 for (_x = VNET_INTERFACE_COUNTER_RX; \ 733 _x <= VNET_INTERFACE_COUNTER_RX_BROADCAST; \ 736 #define foreach_tx_combined_interface_counter(_x) \ 737 for (_x = VNET_INTERFACE_COUNTER_TX; \ 738 _x <= VNET_INTERFACE_COUNTER_TX_BROADCAST; \ 741 #define foreach_simple_interface_counter_name \ 746 _(RX_NO_BUF, rx-no-buf, if) \ 747 _(RX_MISS, rx-miss, if) \ 748 _(RX_ERROR, rx-error, if) \ 749 _(TX_ERROR, tx-error, if) 751 #define foreach_combined_interface_counter_name \ 753 _(RX_UNICAST, rx-unicast, if) \ 754 _(RX_MULTICAST, rx-multicast, if) \ 755 _(RX_BROADCAST, rx-broadcast, if) \ 757 _(TX_UNICAST, tx-unicast-miss, if) \ 758 _(TX_MULTICAST, tx-multicast, if) \ 759 _(TX_BROADCAST, tx-broadcast, if) u8 * default_build_rewrite(struct vnet_main_t *vnm, u32 sw_if_index, vnet_link_t link_type, const void *dst_hw_address)
Return a complete, zero-length (aka dummy) rewrite.
void collect_detailed_interface_stats_flag_set(void)
volatile u32 * sw_if_counter_lock
vnet_hw_interface_nodes_t * deleted_hw_interface_nodes
vnet_p2p_sub_interface_t p2p
enum vnet_hw_interface_class_flags_t_ vnet_hw_interface_class_flags_t
Attributes assignable to a HW interface Class.
PCAP utility definitions.
u32 * input_node_thread_index_by_queue
clib_error_t *( vnet_interface_set_rx_mode_function_t)(struct vnet_main_t *vnm, u32 if_index, u32 queue_id, vnet_hw_interface_rx_mode mode)
uword * sub_interface_sw_if_index_by_id
struct _vnet_device_class vnet_device_class_t
uword * dq_runtime_index_by_queue
vnet_mtu_t vnet_link_to_mtu(vnet_link_t link)
vnet_interface_stats_collection_mode_e
f64 max_rate_bits_per_sec
clib_error_t *( vnet_interface_set_mac_address_function_t)(struct vnet_hw_interface_t *hi, char *address)
vnet_hw_interface_rx_mode
vnet_flood_class_t flood_class
uword * pcap_drop_filter_hash
PCAP main state data structure.
vlib_combined_counter_main_t * combined_sw_if_counters
static format_function_t format_flow
clib_error_t *( vnet_interface_function_t)(struct vnet_main_t *vnm, u32 if_index, u32 flags)
int collect_detailed_interface_stats_flag
A collection of simple counters.
void vnet_pcap_drop_trace_filter_add_del(u32 error_index, int is_add)
u32 max_supported_packet_bytes
uword * hw_interface_by_name
vnet_l3_packet_type_t vnet_link_to_l3_proto(vnet_link_t link)
Convert a link to to an Ethertype.
static clib_error_t * link_up_down_function(vnet_main_t *vm, u32 hw_if_index, u32 flags)
vnet_hw_interface_t * hw_interfaces
uword * sw_if_index_by_sup_and_sub
vlib_simple_counter_main_t * sw_if_counters
vnet_device_class_t vnet_local_interface_device_class
vnet_interface_function_priority_t_
uword * hw_interface_class_by_name
uword( vlib_node_function_t)(struct vlib_main_t *vm, struct vlib_node_runtime_t *node, struct vlib_frame_t *frame)
static clib_error_t * admin_up_down_function(vnet_main_t *vm, u32 hw_if_index, u32 flags)
vnet_link_t_
Link Type: A description of the protocol of packets on the link.
static void vnet_interface_counter_unlock(vnet_interface_main_t *im)
static int collect_detailed_interface_stats(void)
vnet_interface_counter_type_t
clib_error_t *( vnet_interface_set_l2_mode_function_t)(struct vnet_main_t *vnm, struct vnet_hw_interface_t *hi, i32 l2_if_adjust)
u32 unnumbered_sw_if_index
static void vnet_interface_counter_lock(vnet_interface_main_t *im)
u32 output_node_next_index
enum vnet_interface_function_priority_t_ vnet_interface_function_priority_t
u8 output_feature_arc_index
clib_error_t *( vnet_subif_add_del_function_t)(struct vnet_main_t *vnm, u32 if_index, struct vnet_sw_interface_t *template, int is_add)
uword * device_class_by_name
struct vnet_hw_interface_t vnet_hw_interface_t
struct _vnet_hw_interface_class vnet_hw_interface_class_t
vnet_sw_interface_t * sw_interfaces
a point 2 point interface
vnet_hw_interface_class_t * hw_interface_classes
A collection of combined counters.
u32 min_supported_packet_bytes
vnet_hw_interface_rx_mode default_rx_mode
vnet_device_class_t * device_classes
void collect_detailed_interface_stats_flag_clear(void)
void default_update_adjacency(struct vnet_main_t *vnm, u32 sw_if_index, u32 adj_index)
Default adjacency update function.
int vnet_interface_name_renumber(u32 sw_if_index, u32 new_show_dev_instance)
vnet_hw_interface_class_flags_t_
Attributes assignable to a HW interface Class.
int( vnet_flow_dev_ops_function_t)(struct vnet_main_t *vnm, vnet_flow_dev_op_t op, u32 hw_if_index, u32 index, uword *private_data)