40 #ifndef included_vnet_interface_h 41 #define included_vnet_interface_h 49 struct ip46_address_t;
64 typedef struct _vnet_interface_function_list_elt
66 struct _vnet_interface_function_list_elt *next_interface_function;
68 } _vnet_interface_function_list_elt_t;
70 #define _VNET_INTERFACE_FUNCTION_DECL(f,tag) \ 72 static void __vnet_interface_function_init_##tag##_##f (void) \ 73 __attribute__((__constructor__)) ; \ 75 static void __vnet_interface_function_init_##tag##_##f (void) \ 77 vnet_main_t * vnm = vnet_get_main(); \ 78 static _vnet_interface_function_list_elt_t init_function; \ 79 init_function.next_interface_function = vnm->tag##_functions; \ 80 vnm->tag##_functions = &init_function; \ 81 init_function.fp = (void *) &f; \ 84 #define VNET_HW_INTERFACE_ADD_DEL_FUNCTION(f) \ 85 _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_add_del) 86 #define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION(f) \ 87 _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_link_up_down) 88 #define VNET_SW_INTERFACE_ADD_DEL_FUNCTION(f) \ 89 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_add_del) 90 #define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(f) \ 91 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_admin_up_down) 94 typedef struct _vnet_device_class
118 char **tx_function_error_strings;
121 u32 tx_function_n_errors;
125 u32 new_dev_instance);
140 void (*clear_counters) (
u32 dev_class_instance);
148 u32 hw_if_index,
u32 new_hw_class_index);
151 void (*rx_redirect_to_node) (
struct vnet_main_t * vnm,
152 u32 hw_if_index,
u32 node_index);
155 struct _vnet_device_class *next_class_registration;
158 u8 no_flatten_output_chains;
164 #define VNET_DEVICE_CLASS(x,...) \ 165 __VA_ARGS__ vnet_device_class_t x; \ 166 static void __vnet_add_device_class_registration_##x (void) \ 167 __attribute__((__constructor__)) ; \ 168 static void __vnet_add_device_class_registration_##x (void) \ 170 vnet_main_t * vnm = vnet_get_main(); \ 171 x.next_class_registration = vnm->device_class_registrations; \ 172 vnm->device_class_registrations = &x; \ 174 __VA_ARGS__ vnet_device_class_t x 176 #define VLIB_DEVICE_TX_FUNCTION_CLONE_TEMPLATE(arch, fn, tgt) \ 178 __attribute__ ((flatten)) \ 179 __attribute__ ((target (tgt))) \ 181 fn ## _ ## arch ( vlib_main_t * vm, \ 182 vlib_node_runtime_t * node, \ 183 vlib_frame_t * frame) \ 184 { return fn (vm, node, frame); } 186 #define VLIB_DEVICE_TX_FUNCTION_MULTIARCH_CLONE(fn) \ 187 foreach_march_variant(VLIB_DEVICE_TX_FUNCTION_CLONE_TEMPLATE, fn) 190 #define VLIB_MULTIARCH_CLONE_AND_SELECT_FN(fn,...) 191 #define VLIB_DEVICE_TX_FUNCTION_MULTIARCH(dev, fn) 193 #define VLIB_DEVICE_TX_FUNCTION_MULTIARCH(dev, fn) \ 194 VLIB_DEVICE_TX_FUNCTION_MULTIARCH_CLONE(fn) \ 195 CLIB_MULTIARCH_SELECT_FN(fn, static inline) \ 196 static void __attribute__((__constructor__)) \ 197 __vlib_device_tx_function_multiarch_select_##dev (void) \ 198 { dev.tx_function = fn ## _multiarch_select(); } 217 } __attribute__ ((packed)) vnet_link_t;
219 #define VNET_LINKS { \ 220 [VNET_LINK_ETHERNET] = "ethernet", \ 221 [VNET_LINK_IP4] = "ipv4", \ 222 [VNET_LINK_IP6] = "ipv6", \ 223 [VNET_LINK_MPLS] = "mpls", \ 224 [VNET_LINK_ARP] = "arp", \ 231 #define VNET_LINK_NUM (VNET_LINK_ARP+1) 250 typedef struct _vnet_hw_interface_class
292 vnet_link_t link_type,
const void *dst_hw_address);
296 void (*update_adjacency) (
struct vnet_main_t * vnm,
297 u32 sw_if_index,
u32 adj_index);
305 void (*hw_class_change) (
struct vnet_main_t * vnm,
u32 hw_if_index,
306 u32 old_class_index,
u32 new_class_index);
309 struct _vnet_hw_interface_class *next_class_registration;
318 vnet_link_t link_type,
319 const void *dst_hw_address);
325 u32 sw_if_index,
u32 adj_index);
327 #define VNET_HW_INTERFACE_CLASS(x,...) \ 328 __VA_ARGS__ vnet_hw_interface_class_t x; \ 329 static void __vnet_add_hw_interface_class_registration_##x (void) \ 330 __attribute__((__constructor__)) ; \ 331 static void __vnet_add_hw_interface_class_registration_##x (void) \ 333 vnet_main_t * vnm = vnet_get_main(); \ 334 x.next_class_registration = vnm->hw_interface_class_registrations; \ 335 vnm->hw_interface_class_registrations = &x; \ 337 __VA_ARGS__ vnet_hw_interface_class_t x 348 #define VNET_HW_INTERFACE_FLAG_LINK_UP (1 << 0) 350 #define VNET_HW_INTERFACE_FLAG_DUPLEX_SHIFT 1 351 #define VNET_HW_INTERFACE_FLAG_HALF_DUPLEX (1 << 1) 352 #define VNET_HW_INTERFACE_FLAG_FULL_DUPLEX (1 << 2) 353 #define VNET_HW_INTERFACE_FLAG_DUPLEX_MASK \ 354 (VNET_HW_INTERFACE_FLAG_HALF_DUPLEX | \ 355 VNET_HW_INTERFACE_FLAG_FULL_DUPLEX) 358 #define VNET_HW_INTERFACE_FLAG_SPEED_SHIFT 3 359 #define VNET_HW_INTERFACE_FLAG_SPEED_10M (1 << 3) 360 #define VNET_HW_INTERFACE_FLAG_SPEED_100M (1 << 4) 361 #define VNET_HW_INTERFACE_FLAG_SPEED_1G (1 << 5) 362 #define VNET_HW_INTERFACE_FLAG_SPEED_10G (1 << 6) 363 #define VNET_HW_INTERFACE_FLAG_SPEED_40G (1 << 7) 364 #define VNET_HW_INTERFACE_FLAG_SPEED_100G (1 << 8) 365 #define VNET_HW_INTERFACE_FLAG_SPEED_MASK \ 366 (VNET_HW_INTERFACE_FLAG_SPEED_10M | \ 367 VNET_HW_INTERFACE_FLAG_SPEED_100M | \ 368 VNET_HW_INTERFACE_FLAG_SPEED_1G | \ 369 VNET_HW_INTERFACE_FLAG_SPEED_10G | \ 370 VNET_HW_INTERFACE_FLAG_SPEED_40G | \ 371 VNET_HW_INTERFACE_FLAG_SPEED_100G) 374 #define VNET_HW_INTERFACE_FLAG_L2OUTPUT_SHIFT 9 375 #define VNET_HW_INTERFACE_FLAG_L2OUTPUT_MAPPED (1 << 9) 433 #define VNET_HW_INTERFACE_BOND_INFO_NONE ((uword *) 0) 434 #define VNET_HW_INTERFACE_BOND_INFO_SLAVE ((uword *) ~0) 485 vnet_sw_interface_type_t
type:16;
490 #define VNET_SW_INTERFACE_FLAG_ADMIN_UP (1 << 0) 493 #define VNET_SW_INTERFACE_FLAG_PUNT (1 << 1) 495 #define VNET_SW_INTERFACE_FLAG_PROXY_ARP (1 << 2) 497 #define VNET_SW_INTERFACE_FLAG_UNNUMBERED (1 << 3) 499 #define VNET_SW_INTERFACE_FLAG_BOND_SLAVE (1 << 4) 615 #define foreach_intf_output_feat \ 616 _(IPSEC, "ipsec-output") 621 #define _(sym,str) INTF_OUTPUT_FEAT_##sym, 628 #define INTF_OUTPUT_FEAT_DONE INTF_OUTPUT_N_FEAT 632 intf_output_feat_t feature,
int is_add);
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.
uword( vlib_node_function_t)(struct vlib_main_t *vm, struct vlib_node_runtime_t *node, struct vlib_frame_t *frame)
volatile u32 * sw_if_counter_lock
vnet_hw_interface_nodes_t * deleted_hw_interface_nodes
int vnet_interface_add_del_feature(struct vnet_main_t *vnm, vlib_main_t *vm, u32 sw_if_index, intf_output_feat_t feature, int is_add)
bad routing header type(not 4)") sr_error (NO_MORE_SEGMENTS
enum vnet_hw_interface_class_flags_t_ vnet_hw_interface_class_flags_t
Attributes assignable to a HW interface Class.
PCAP utility definitions.
uword * sub_interface_sw_if_index_by_id
struct _vnet_device_class vnet_device_class_t
f64 max_rate_bits_per_sec
clib_error_t *( vnet_interface_set_mac_address_function_t)(struct vnet_hw_interface_t *hi, char *address)
uword * pcap_drop_filter_hash
PCAP main state data structure.
vlib_combined_counter_main_t * combined_sw_if_counters
clib_error_t *( vnet_interface_function_t)(struct vnet_main_t *vnm, u32 if_index, u32 flags)
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.
vnet_hw_interface_t * hw_interfaces
uword * sw_if_index_by_sup_and_sub
static clib_error_t * link_up_down_function(vnet_main_t *vm, u32 hw_if_index, u32 flags)
vlib_simple_counter_main_t * sw_if_counters
vnet_device_class_t vnet_local_interface_device_class
uword * hw_interface_class_by_name
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)
vnet_interface_counter_type_t
u32 unnumbered_sw_if_index
static void vnet_interface_counter_lock(vnet_interface_main_t *im)
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
u32 output_feature_bitmap
vnet_hw_interface_class_t * hw_interface_classes
A collection of combined counters.
u32 min_supported_packet_bytes
#define foreach_intf_output_feat
vnet_device_class_t * device_classes
u32 per_packet_overhead_bytes
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.