40 #ifndef included_vnet_interface_h 41 #define included_vnet_interface_h 51 union ip46_address_t_;
75 const u8 * old_address,
const u8 * new_address);
80 vnet_hw_interface_rx_mode mode);
97 vnet_flow_dev_op_t op,
98 u32 hw_if_index,
u32 index,
99 uword * private_data);
106 #define VNET_ITF_FUNC_N_PRIO ((vnet_interface_function_priority_t)VNET_ITF_FUNC_PRIORITY_HIGH+1) 108 typedef struct _vnet_interface_function_list_elt
110 struct _vnet_interface_function_list_elt *next_interface_function;
112 } _vnet_interface_function_list_elt_t;
114 #ifndef CLIB_MARCH_VARIANT 115 #define _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,tag,p) \ 117 static void __vnet_interface_function_init_##tag##_##f (void) \ 118 __attribute__((__constructor__)) ; \ 120 static void __vnet_interface_function_init_##tag##_##f (void) \ 122 vnet_main_t * vnm = vnet_get_main(); \ 123 static _vnet_interface_function_list_elt_t init_function; \ 124 init_function.next_interface_function = vnm->tag##_functions[p]; \ 125 vnm->tag##_functions[p] = &init_function; \ 126 init_function.fp = (void *) &f; \ 128 static void __vnet_interface_function_deinit_##tag##_##f (void) \ 129 __attribute__((__destructor__)) ; \ 131 static void __vnet_interface_function_deinit_##tag##_##f (void) \ 133 vnet_main_t * vnm = vnet_get_main(); \ 134 _vnet_interface_function_list_elt_t *next; \ 135 if (vnm->tag##_functions[p]->fp == f) \ 137 vnm->tag##_functions[p] = \ 138 vnm->tag##_functions[p]->next_interface_function; \ 141 next = vnm->tag##_functions[p]; \ 142 while (next->next_interface_function) \ 144 if (next->next_interface_function->fp == f) \ 146 next->next_interface_function = \ 147 next->next_interface_function->next_interface_function; \ 150 next = next->next_interface_function; \ 156 #define _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,tag,p) \ 157 static __clib_unused void * __clib_unused_##f = f; 160 #define _VNET_INTERFACE_FUNCTION_DECL(f,tag) \ 161 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,tag,VNET_ITF_FUNC_PRIORITY_LOW) 163 #define VNET_HW_INTERFACE_ADD_DEL_FUNCTION(f) \ 164 _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_add_del) 165 #define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION(f) \ 166 _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_link_up_down) 167 #define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION_PRIO(f,p) \ 168 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,hw_interface_link_up_down,p) 169 #define VNET_SW_INTERFACE_MTU_CHANGE_FUNCTION(f) \ 170 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_mtu_change) 171 #define VNET_SW_INTERFACE_ADD_DEL_FUNCTION(f) \ 172 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_add_del) 173 #define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(f) \ 174 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_admin_up_down) 175 #define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION_PRIO(f,p) \ 176 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,sw_interface_admin_up_down, p) 182 union ip46_address_t_ *
src,
183 union ip46_address_t_ *
dst,
187 typedef struct _vnet_device_class
220 char **tx_function_error_strings;
223 u32 tx_function_n_errors;
227 u32 new_dev_instance);
258 u32 hw_if_index,
u32 new_hw_class_index);
261 void (*rx_redirect_to_node) (
struct vnet_main_t * vnm,
262 u32 hw_if_index,
u32 node_index);
265 struct _vnet_device_class *next_class_registration;
271 #ifndef CLIB_MARCH_VARIANT 272 #define VNET_DEVICE_CLASS(x,...) \ 273 __VA_ARGS__ vnet_device_class_t x; \ 274 static void __vnet_add_device_class_registration_##x (void) \ 275 __attribute__((__constructor__)) ; \ 276 static void __vnet_add_device_class_registration_##x (void) \ 278 vnet_main_t * vnm = vnet_get_main(); \ 279 x.next_class_registration = vnm->device_class_registrations; \ 280 vnm->device_class_registrations = &x; \ 282 static void __vnet_rm_device_class_registration_##x (void) \ 283 __attribute__((__destructor__)) ; \ 284 static void __vnet_rm_device_class_registration_##x (void) \ 286 vnet_main_t * vnm = vnet_get_main(); \ 287 VLIB_REMOVE_FROM_LINKED_LIST (vnm->device_class_registrations, \ 288 &x, next_class_registration); \ 290 __VA_ARGS__ vnet_device_class_t x 294 #define VNET_DEVICE_CLASS(x,...) \ 295 static __clib_unused vnet_device_class_t __clib_unused_##x 298 #define VNET_DEVICE_CLASS_TX_FN(devclass) \ 299 uword CLIB_MARCH_SFX (devclass##_tx_fn)(); \ 300 static vlib_node_fn_registration_t \ 301 CLIB_MARCH_SFX(devclass##_tx_fn_registration) = \ 302 { .function = &CLIB_MARCH_SFX (devclass##_tx_fn), }; \ 304 static void __clib_constructor \ 305 CLIB_MARCH_SFX (devclass##_tx_fn_multiarch_register) (void) \ 307 extern vnet_device_class_t devclass; \ 308 vlib_node_fn_registration_t *r; \ 309 r = &CLIB_MARCH_SFX (devclass##_tx_fn_registration); \ 310 r->priority = CLIB_MARCH_FN_PRIORITY(); \ 311 r->next_registration = devclass.tx_fn_registrations; \ 312 devclass.tx_fn_registrations = r; \ 314 uword CLIB_CPU_OPTIMIZED CLIB_MARCH_SFX (devclass##_tx_fn) 335 #define VNET_LINKS { \ 336 [VNET_LINK_ETHERNET] = "ethernet", \ 337 [VNET_LINK_IP4] = "ipv4", \ 338 [VNET_LINK_IP6] = "ipv6", \ 339 [VNET_LINK_MPLS] = "mpls", \ 340 [VNET_LINK_ARP] = "arp", \ 341 [VNET_LINK_NSH] = "nsh", \ 344 #define FOR_EACH_VNET_LINK(_link) \ 345 for (_link = VNET_LINK_IP4; \ 346 _link <= VNET_LINK_NSH; \ 353 #define VNET_LINK_NUM (VNET_LINK_NSH+1) 372 typedef struct _vnet_hw_interface_class
417 vnet_link_t link_type,
const void *dst_hw_address);
421 void (*update_adjacency) (
struct vnet_main_t * vnm,
430 void (*hw_class_change) (
struct vnet_main_t * vnm,
u32 hw_if_index,
431 u32 old_class_index,
u32 new_class_index);
434 struct _vnet_hw_interface_class *next_class_registration;
443 vnet_link_t link_type,
444 const void *dst_hw_address);
450 u32 sw_if_index,
u32 adj_index);
452 #define VNET_HW_INTERFACE_CLASS(x,...) \ 453 __VA_ARGS__ vnet_hw_interface_class_t x; \ 454 static void __vnet_add_hw_interface_class_registration_##x (void) \ 455 __attribute__((__constructor__)) ; \ 456 static void __vnet_add_hw_interface_class_registration_##x (void) \ 458 vnet_main_t * vnm = vnet_get_main(); \ 459 x.next_class_registration = vnm->hw_interface_class_registrations; \ 460 vnm->hw_interface_class_registrations = &x; \ 462 static void __vnet_rm_hw_interface_class_registration_##x (void) \ 463 __attribute__((__destructor__)) ; \ 464 static void __vnet_rm_hw_interface_class_registration_##x (void) \ 466 vnet_main_t * vnm = vnet_get_main(); \ 467 VLIB_REMOVE_FROM_LINKED_LIST (vnm->hw_interface_class_registrations,\ 468 &x, next_class_registration); \ 470 __VA_ARGS__ vnet_hw_interface_class_t x 491 #define VNET_HW_INTERFACE_FLAG_DUPLEX_SHIFT 1 492 #define VNET_HW_INTERFACE_FLAG_SPEED_SHIFT 3 493 #define VNET_HW_INTERFACE_FLAG_DUPLEX_MASK \ 494 (VNET_HW_INTERFACE_FLAG_HALF_DUPLEX | \ 495 VNET_HW_INTERFACE_FLAG_FULL_DUPLEX) 564 #define VNET_HW_INTERFACE_BOND_INFO_NONE ((uword *) 0) 565 #define VNET_HW_INTERFACE_BOND_INFO_SLAVE ((uword *) ~0) 679 __VNET_SW_INTERFACE_FLAG_UNSUED = (1 << 2),
683 __VNET_SW_INTERFACE_FLAG_UNUSED2 = (1 << 4),
701 vnet_sw_interface_type_t
type:16;
756 #define foreach_rx_combined_interface_counter(_x) \ 757 for (_x = VNET_INTERFACE_COUNTER_RX; \ 758 _x <= VNET_INTERFACE_COUNTER_RX_BROADCAST; \ 761 #define foreach_tx_combined_interface_counter(_x) \ 762 for (_x = VNET_INTERFACE_COUNTER_TX; \ 763 _x <= VNET_INTERFACE_COUNTER_TX_BROADCAST; \ 766 #define foreach_simple_interface_counter_name \ 771 _(RX_NO_BUF, rx-no-buf, if) \ 772 _(RX_MISS, rx-miss, if) \ 773 _(RX_ERROR, rx-error, if) \ 774 _(TX_ERROR, tx-error, if) \ 777 #define foreach_combined_interface_counter_name \ 779 _(RX_UNICAST, rx-unicast, if) \ 780 _(RX_MULTICAST, rx-multicast, if) \ 781 _(RX_BROADCAST, rx-broadcast, if) \ 783 _(TX_UNICAST, tx-unicast, if) \ 784 _(TX_MULTICAST, tx-multicast, if) \ 785 _(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.
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
static_always_inline void clib_spinlock_unlock(clib_spinlock_t *p)
static_always_inline void clib_spinlock_lock(clib_spinlock_t *p)
void collect_detailed_interface_stats_flag_set(void)
vnet_interface_per_thread_data_t * per_thread_data
clib_spinlock_t sw_if_counter_lock
vnet_hw_interface_nodes_t * deleted_hw_interface_nodes
vnet_p2p_sub_interface_t p2p
static void clear_counters(perfmon_main_t *pm)
enum vnet_hw_interface_class_flags_t_ vnet_hw_interface_class_flags_t
Attributes assignable to a HW interface Class.
PCAP utility definitions.
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)
u32 * input_node_thread_index_by_queue
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)
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
void vnet_register_format_buffer_opaque_helper(vnet_buffer_opquae_formatter_t fn)
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
vl_api_interface_index_t sw_if_index
vlib_combined_counter_main_t * combined_sw_if_counters
enum vnet_hw_interface_flags_t_ vnet_hw_interface_flags_t
static format_function_t format_flow
vnet_hw_interface_flags_t flags
struct _vlib_node_fn_registration vlib_node_fn_registration_t
int collect_detailed_interface_stats_flag
uword vnet_interface_output_node(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
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
vnet_buffer_opquae_formatter_t * buffer_opaque_format_helpers
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
int(* vnet_dev_class_ip_tunnel_desc_t)(u32 sw_if_index, union ip46_address_t_ *src, union ip46_address_t_ *dst, u8 *is_l2)
Tunnel description parameters.
void vnet_register_format_buffer_opaque2_helper(vnet_buffer_opquae_formatter_t fn)
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)
int vnet_pcap_dispatch_trace_configure(vnet_pcap_dispatch_trace_args_t *)
vnet_interface_counter_type_t
u32 trace_classify_table_index
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_interface_function_t(struct vnet_main_t *vnm, u32 if_index, u32 flags)
enum vnet_link_t_ vnet_link_t
Link Type: A description of the protocol of packets on the link.
uword() vlib_node_function_t(struct vlib_main_t *vm, struct vlib_node_runtime_t *node, struct vlib_frame_t *frame)
uword * device_class_by_name
vnet_buffer_opquae_formatter_t * buffer_opaque2_format_helpers
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)
struct vnet_hw_interface_t vnet_hw_interface_t
struct _vnet_hw_interface_class vnet_hw_interface_class_t
VLIB buffer representation.
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_sw_interface_type_t type
vnet_hw_interface_flags_t_
u8 *(* vnet_buffer_opquae_formatter_t)(const vlib_buffer_t *b, u8 *s)
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)