40 #ifndef included_vnet_interface_h 41 #define included_vnet_interface_h 49 struct ip46_address_t;
73 const u8 * old_address,
const u8 * new_address);
78 vnet_hw_interface_rx_mode mode);
95 vnet_flow_dev_op_t op,
96 u32 hw_if_index,
u32 index,
97 uword * private_data);
104 #define VNET_ITF_FUNC_N_PRIO ((vnet_interface_function_priority_t)VNET_ITF_FUNC_PRIORITY_HIGH+1) 106 typedef struct _vnet_interface_function_list_elt
108 struct _vnet_interface_function_list_elt *next_interface_function;
110 } _vnet_interface_function_list_elt_t;
112 #ifndef CLIB_MARCH_VARIANT 113 #define _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,tag,p) \ 115 static void __vnet_interface_function_init_##tag##_##f (void) \ 116 __attribute__((__constructor__)) ; \ 118 static void __vnet_interface_function_init_##tag##_##f (void) \ 120 vnet_main_t * vnm = vnet_get_main(); \ 121 static _vnet_interface_function_list_elt_t init_function; \ 122 init_function.next_interface_function = vnm->tag##_functions[p]; \ 123 vnm->tag##_functions[p] = &init_function; \ 124 init_function.fp = (void *) &f; \ 126 static void __vnet_interface_function_deinit_##tag##_##f (void) \ 127 __attribute__((__destructor__)) ; \ 129 static void __vnet_interface_function_deinit_##tag##_##f (void) \ 131 vnet_main_t * vnm = vnet_get_main(); \ 132 _vnet_interface_function_list_elt_t *next; \ 133 if (vnm->tag##_functions[p]->fp == (void *) &f) \ 135 vnm->tag##_functions[p] = \ 136 vnm->tag##_functions[p]->next_interface_function; \ 139 next = vnm->tag##_functions[p]; \ 140 while (next->next_interface_function) \ 142 if (next->next_interface_function->fp == (void *) &f) \ 144 next->next_interface_function = \ 145 next->next_interface_function->next_interface_function; \ 148 next = next->next_interface_function; \ 154 #define _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,tag,p) \ 155 static __clib_unused void * __clib_unused_##f = f; 158 #define _VNET_INTERFACE_FUNCTION_DECL(f,tag) \ 159 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,tag,VNET_ITF_FUNC_PRIORITY_LOW) 161 #define VNET_HW_INTERFACE_ADD_DEL_FUNCTION(f) \ 162 _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_add_del) 163 #define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION(f) \ 164 _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_link_up_down) 165 #define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION_PRIO(f,p) \ 166 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,hw_interface_link_up_down,p) 167 #define VNET_SW_INTERFACE_MTU_CHANGE_FUNCTION(f) \ 168 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_mtu_change) 169 #define VNET_SW_INTERFACE_ADD_DEL_FUNCTION(f) \ 170 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_add_del) 171 #define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(f) \ 172 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_admin_up_down) 173 #define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION_PRIO(f,p) \ 174 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,sw_interface_admin_up_down, p) 177 typedef struct _vnet_device_class
210 char **tx_function_error_strings;
213 u32 tx_function_n_errors;
217 u32 new_dev_instance);
238 void (*clear_counters) (
u32 dev_class_instance);
246 u32 hw_if_index,
u32 new_hw_class_index);
249 void (*rx_redirect_to_node) (
struct vnet_main_t * vnm,
250 u32 hw_if_index,
u32 node_index);
253 struct _vnet_device_class *next_class_registration;
259 #ifndef CLIB_MARCH_VARIANT 260 #define VNET_DEVICE_CLASS(x,...) \ 261 __VA_ARGS__ vnet_device_class_t x; \ 262 static void __vnet_add_device_class_registration_##x (void) \ 263 __attribute__((__constructor__)) ; \ 264 static void __vnet_add_device_class_registration_##x (void) \ 266 vnet_main_t * vnm = vnet_get_main(); \ 267 x.next_class_registration = vnm->device_class_registrations; \ 268 vnm->device_class_registrations = &x; \ 270 static void __vnet_rm_device_class_registration_##x (void) \ 271 __attribute__((__destructor__)) ; \ 272 static void __vnet_rm_device_class_registration_##x (void) \ 274 vnet_main_t * vnm = vnet_get_main(); \ 275 VLIB_REMOVE_FROM_LINKED_LIST (vnm->device_class_registrations, \ 276 &x, next_class_registration); \ 278 __VA_ARGS__ vnet_device_class_t x 282 #define VNET_DEVICE_CLASS(x,...) \ 283 static __clib_unused vnet_device_class_t __clib_unused_##x 286 #define VNET_DEVICE_CLASS_TX_FN(devclass) \ 287 uword CLIB_MARCH_SFX (devclass##_tx_fn)(); \ 288 static vlib_node_fn_registration_t \ 289 CLIB_MARCH_SFX(devclass##_tx_fn_registration) = \ 290 { .function = &CLIB_MARCH_SFX (devclass##_tx_fn), }; \ 292 static void __clib_constructor \ 293 CLIB_MARCH_SFX (devclass##_tx_fn_multiarch_register) (void) \ 295 extern vnet_device_class_t devclass; \ 296 vlib_node_fn_registration_t *r; \ 297 r = &CLIB_MARCH_SFX (devclass##_tx_fn_registration); \ 298 r->priority = CLIB_MARCH_FN_PRIORITY(); \ 299 r->next_registration = devclass.tx_fn_registrations; \ 300 devclass.tx_fn_registrations = r; \ 302 uword CLIB_CPU_OPTIMIZED CLIB_MARCH_SFX (devclass##_tx_fn) 304 #define VLIB_DEVICE_TX_FUNCTION_CLONE_TEMPLATE(arch, fn, tgt) \ 306 __attribute__ ((flatten)) \ 307 __attribute__ ((target (tgt))) \ 309 fn ## _ ## arch ( vlib_main_t * vm, \ 310 vlib_node_runtime_t * node, \ 311 vlib_frame_t * frame) \ 312 { return fn (vm, node, frame); } 314 #define VLIB_DEVICE_TX_FUNCTION_MULTIARCH_CLONE(fn) \ 315 foreach_march_variant(VLIB_DEVICE_TX_FUNCTION_CLONE_TEMPLATE, fn) 318 #define VLIB_MULTIARCH_CLONE_AND_SELECT_FN(fn,...) 319 #define VLIB_DEVICE_TX_FUNCTION_MULTIARCH(dev, fn) 321 #define VLIB_DEVICE_TX_FUNCTION_MULTIARCH(dev, fn) \ 322 VLIB_DEVICE_TX_FUNCTION_MULTIARCH_CLONE(fn) \ 323 CLIB_MULTIARCH_SELECT_FN(fn, static inline) \ 324 static void __attribute__((__constructor__)) \ 325 __vlib_device_tx_function_multiarch_select_##dev (void) \ 326 { dev.tx_function = fn ## _multiarch_select(); } 346 } __attribute__ ((packed)) vnet_link_t;
348 #define VNET_LINKS { \ 349 [VNET_LINK_ETHERNET] = "ethernet", \ 350 [VNET_LINK_IP4] = "ipv4", \ 351 [VNET_LINK_IP6] = "ipv6", \ 352 [VNET_LINK_MPLS] = "mpls", \ 353 [VNET_LINK_ARP] = "arp", \ 354 [VNET_LINK_NSH] = "nsh", \ 357 #define FOR_EACH_VNET_LINK(_link) \ 358 for (_link = VNET_LINK_IP4; \ 359 _link <= VNET_LINK_NSH; \ 366 #define VNET_LINK_NUM (VNET_LINK_NSH+1) 385 typedef struct _vnet_hw_interface_class
430 vnet_link_t link_type,
const void *dst_hw_address);
434 void (*update_adjacency) (
struct vnet_main_t * vnm,
443 void (*hw_class_change) (
struct vnet_main_t * vnm,
u32 hw_if_index,
444 u32 old_class_index,
u32 new_class_index);
447 struct _vnet_hw_interface_class *next_class_registration;
456 vnet_link_t link_type,
457 const void *dst_hw_address);
463 u32 sw_if_index,
u32 adj_index);
465 #define VNET_HW_INTERFACE_CLASS(x,...) \ 466 __VA_ARGS__ vnet_hw_interface_class_t x; \ 467 static void __vnet_add_hw_interface_class_registration_##x (void) \ 468 __attribute__((__constructor__)) ; \ 469 static void __vnet_add_hw_interface_class_registration_##x (void) \ 471 vnet_main_t * vnm = vnet_get_main(); \ 472 x.next_class_registration = vnm->hw_interface_class_registrations; \ 473 vnm->hw_interface_class_registrations = &x; \ 475 static void __vnet_rm_hw_interface_class_registration_##x (void) \ 476 __attribute__((__destructor__)) ; \ 477 static void __vnet_rm_hw_interface_class_registration_##x (void) \ 479 vnet_main_t * vnm = vnet_get_main(); \ 480 VLIB_REMOVE_FROM_LINKED_LIST (vnm->hw_interface_class_registrations,\ 481 &x, next_class_registration); \ 483 __VA_ARGS__ vnet_hw_interface_class_t x 494 #define VNET_HW_INTERFACE_FLAG_LINK_UP (1 << 0) 496 #define VNET_HW_INTERFACE_FLAG_DUPLEX_SHIFT 1 497 #define VNET_HW_INTERFACE_FLAG_HALF_DUPLEX (1 << 1) 498 #define VNET_HW_INTERFACE_FLAG_FULL_DUPLEX (1 << 2) 499 #define VNET_HW_INTERFACE_FLAG_DUPLEX_MASK \ 500 (VNET_HW_INTERFACE_FLAG_HALF_DUPLEX | \ 501 VNET_HW_INTERFACE_FLAG_FULL_DUPLEX) 504 #define VNET_HW_INTERFACE_FLAG_SPEED_SHIFT 3 505 #define VNET_HW_INTERFACE_FLAG_SPEED_10M (1 << 3) 506 #define VNET_HW_INTERFACE_FLAG_SPEED_100M (1 << 4) 507 #define VNET_HW_INTERFACE_FLAG_SPEED_1G (1 << 5) 508 #define VNET_HW_INTERFACE_FLAG_SPEED_2_5G (1 << 6) 509 #define VNET_HW_INTERFACE_FLAG_SPEED_5G (1 << 7) 510 #define VNET_HW_INTERFACE_FLAG_SPEED_10G (1 << 8) 511 #define VNET_HW_INTERFACE_FLAG_SPEED_20G (1 << 9) 512 #define VNET_HW_INTERFACE_FLAG_SPEED_25G (1 << 10) 513 #define VNET_HW_INTERFACE_FLAG_SPEED_40G (1 << 11) 514 #define VNET_HW_INTERFACE_FLAG_SPEED_50G (1 << 12) 515 #define VNET_HW_INTERFACE_FLAG_SPEED_56G (1 << 13) 516 #define VNET_HW_INTERFACE_FLAG_SPEED_100G (1 << 14) 517 #define VNET_HW_INTERFACE_FLAG_SPEED_MASK \ 518 (VNET_HW_INTERFACE_FLAG_SPEED_10M | \ 519 VNET_HW_INTERFACE_FLAG_SPEED_100M | \ 520 VNET_HW_INTERFACE_FLAG_SPEED_1G | \ 521 VNET_HW_INTERFACE_FLAG_SPEED_2_5G | \ 522 VNET_HW_INTERFACE_FLAG_SPEED_5G | \ 523 VNET_HW_INTERFACE_FLAG_SPEED_10G | \ 524 VNET_HW_INTERFACE_FLAG_SPEED_20G | \ 525 VNET_HW_INTERFACE_FLAG_SPEED_25G | \ 526 VNET_HW_INTERFACE_FLAG_SPEED_40G | \ 527 VNET_HW_INTERFACE_FLAG_SPEED_50G | \ 528 VNET_HW_INTERFACE_FLAG_SPEED_56G | \ 529 VNET_HW_INTERFACE_FLAG_SPEED_100G) 532 #define VNET_HW_INTERFACE_FLAG_SUPPORTS_INT_MODE (1 << 16) 535 #define VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD (1 << 17) 589 #define VNET_HW_INTERFACE_BOND_INFO_NONE ((uword *) 0) 590 #define VNET_HW_INTERFACE_BOND_INFO_SLAVE ((uword *) ~0) 718 vnet_sw_interface_type_t type:16;
775 #define foreach_rx_combined_interface_counter(_x) \ 776 for (_x = VNET_INTERFACE_COUNTER_RX; \ 777 _x <= VNET_INTERFACE_COUNTER_RX_BROADCAST; \ 780 #define foreach_tx_combined_interface_counter(_x) \ 781 for (_x = VNET_INTERFACE_COUNTER_TX; \ 782 _x <= VNET_INTERFACE_COUNTER_TX_BROADCAST; \ 785 #define foreach_simple_interface_counter_name \ 790 _(RX_NO_BUF, rx-no-buf, if) \ 791 _(RX_MISS, rx-miss, if) \ 792 _(RX_ERROR, rx-error, if) \ 793 _(TX_ERROR, tx-error, if) 795 #define foreach_combined_interface_counter_name \ 797 _(RX_UNICAST, rx-unicast, if) \ 798 _(RX_MULTICAST, rx-multicast, if) \ 799 _(RX_BROADCAST, rx-broadcast, if) \ 801 _(TX_UNICAST, tx-unicast-miss, if) \ 802 _(TX_MULTICAST, tx-multicast, if) \ 803 _(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
enum vnet_sw_interface_flags_t_ vnet_sw_interface_flags_t
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
struct _vlib_node_fn_registration vlib_node_fn_registration_t
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)
vnet_sw_interface_flags_t_
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
vnet_sw_interface_flags_t flags
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.
clib_error_t *( vnet_interface_set_mac_address_function_t)(struct vnet_hw_interface_t *hi, const u8 *old_address, const u8 *new_address)
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)