49 #define foreach_ethernet_input_next \ 50 _ (PUNT, "error-punt") \ 51 _ (DROP, "error-drop") \ 52 _ (LLC, "llc-input") \ 53 _ (IP4_INPUT, "ip4-input") \ 54 _ (IP4_INPUT_NCS, "ip4-input-no-checksum") 58 #define _(s,n) ETHERNET_INPUT_NEXT_##s, 83 s =
format (s,
", hw-if-index %u, sw-if-index %u",
108 u16 * outer_id,
u16 * inner_id,
u32 * match_flags)
120 b0->
flags |= VNET_BUFFER_F_L2_HDR_OFFSET_VALID;
124 *type = clib_net_to_host_u16 (e0->
type);
135 *type = clib_net_to_host_u16 (e0[0]);
160 *outer_id = tag & 0xfff;
164 *type = clib_net_to_host_u16 (h0->
type);
169 if (*type == ETHERNET_TYPE_VLAN)
178 *inner_id = tag & 0xfff;
180 *type = clib_net_to_host_u16 (h0->
type);
184 if (*type == ETHERNET_TYPE_VLAN)
199 u64 * dmacs,
u8 * dmacs_bad,
213 u32 * new_sw_if_index,
u8 * error0,
u32 * is_l2)
218 qinq_intf, new_sw_if_index, error0, is_l2);
234 dmacs[0] = *(
u64 *) e0;
246 *error0 = ETHERNET_ERROR_L3_MAC_MISMATCH;
250 *error0 = (*new_sw_if_index) != ~0 ? (*error0) : ETHERNET_ERROR_DOWN;
261 b0->
flags |= VNET_BUFFER_F_L3_HDR_OFFSET_VALID;
266 *next0 = ETHERNET_INPUT_NEXT_DROP;
280 else if (type0 == ETHERNET_TYPE_IP4)
284 else if (type0 == ETHERNET_TYPE_IP6)
288 else if (type0 == ETHERNET_TYPE_MPLS)
314 *next0 = ETHERNET_INPUT_NEXT_LLC;
326 "l3_hdr_offset must follow l2_hdr_offset");
332 u32 flags = VNET_BUFFER_F_L2_HDR_OFFSET_VALID |
333 VNET_BUFFER_F_L3_HDR_OFFSET_VALID;
335 #ifdef CLIB_HAVE_VEC256 346 adv, -adv, 0, 0, adv, -adv, 0, 0,
347 adv, -adv, 0, 0, adv, -adv, 0, 0
434 u32 flags = VNET_BUFFER_F_L2_HDR_OFFSET_VALID |
435 VNET_BUFFER_F_L3_HDR_OFFSET_VALID;
454 #ifdef CLIB_HAVE_VEC128 455 u64x2 r = u64x2_load_unaligned (((
u8 *) & e->
type) - 6);
456 etype[
offset] = ((u16x8) r)[3];
472 return (etype < 0x600) ? ETHERNET_INPUT_NEXT_LLC :
508 int main_is_l3,
int check_dmac)
520 u16 vlan1 = clib_net_to_host_u16 (t[0]) & 0xFFF;
521 u16 vlan2 = clib_net_to_host_u16 (t[2]) & 0xFFF;
522 u32 matched, is_l2, new_sw_if_index;
526 vif = &vlan_table->
vlans[vlan1];
528 qif = &qinq_table->
vlans[vlan2];
529 l->
err = ETHERNET_ERROR_NONE;
530 l->
type = clib_net_to_host_u16 (t[1]);
532 if (l->
type == ETHERNET_TYPE_VLAN)
534 l->
type = clib_net_to_host_u16 (t[3]);
538 qif, &new_sw_if_index, &l->
err,
547 l->
err = ETHERNET_ERROR_NONE;
549 is_l2 = main_is_l3 == 0;
554 vif, qif, &new_sw_if_index,
567 clib_net_to_host_u64 (0xffffffffffffffff) :
568 clib_net_to_host_u64 (0xffffffff00000000);
571 l->
err = ETHERNET_ERROR_DOWN;
579 l->
adv = is_l2 ? 0 : l->
len;
582 l->
next = ETHERNET_INPUT_NEXT_DROP;
585 else if (l->
type == ETHERNET_TYPE_IP4)
587 else if (l->
type == ETHERNET_TYPE_IP6)
589 else if (l->
type == ETHERNET_TYPE_MPLS)
596 if (l->
next == ETHERNET_INPUT_NEXT_PUNT)
597 l->
err = ETHERNET_ERROR_UNKNOWN_TYPE;
601 if (check_dmac && l->
adv > 0 && dmac_bad)
603 l->
err = ETHERNET_ERROR_L3_MAC_MISMATCH;
604 next[0] = ETHERNET_INPUT_NEXT_PUNT;
613 if (l->
err == ETHERNET_ERROR_NONE)
626 #define DMAC_MASK clib_net_to_host_u64 (0xFFFFFFFFFFFF0000) 627 #define DMAC_IGBIT clib_net_to_host_u64 (0x0100000000000000) 629 #ifdef CLIB_HAVE_VEC256 631 is_dmac_bad_x4 (
u64 * dmacs,
u64 hwaddr)
633 u64x4 r0 = u64x4_load_unaligned (dmacs) & u64x4_splat (
DMAC_MASK);
634 r0 = (r0 != u64x4_splat (hwaddr)) & ((r0 & u64x4_splat (
DMAC_IGBIT)) == 0);
643 return (r0 != hwaddr) && ((r0 &
DMAC_IGBIT) == 0);
652 #ifdef CLIB_HAVE_VEC256 654 is_sec_dmac_bad_x4 (
u64 * dmacs,
u64 hwaddr)
656 u64x4 r0 = u64x4_load_unaligned (dmacs) & u64x4_splat (
DMAC_MASK);
657 r0 = (r0 != u64x4_splat (hwaddr));
672 #ifdef CLIB_HAVE_VEC256 673 *(
u32 *) (dmac_bad + 0) &= is_sec_dmac_bad_x4 (dmac + 0, hwaddr);
680 return *(
u32 *) dmac_bad;
691 u64 * dmacs,
u8 * dmacs_bad,
699 dmacs_bad[1] = ((n_packets > 1) &
is_dmac_bad (dmacs[1], hwaddr));
701 bad = dmacs_bad[0] | dmacs_bad[1];
723 u64 * dmacs,
u8 * dmacs_bad,
729 u8 *dmac_bad = dmacs_bad;
731 i32 n_left = n_packets;
733 #ifdef CLIB_HAVE_VEC256 736 bad |= *(
u32 *) (dmac_bad + 0) = is_dmac_bad_x4 (dmac + 0, hwaddr);
737 bad |= *(
u32 *) (dmac_bad + 4) = is_dmac_bad_x4 (dmac + 4, hwaddr);
747 bad |= dmac_bad[0] =
is_dmac_bad (dmac[0], hwaddr);
748 bad |= dmac_bad[1] =
is_dmac_bad (dmac[1], hwaddr);
749 bad |= dmac_bad[2] =
is_dmac_bad (dmac[2], hwaddr);
750 bad |= dmac_bad[3] =
is_dmac_bad (dmac[3], hwaddr);
759 if (have_sec_dmac && bad)
766 i32 n_left = n_packets;
768 u8 *dmac_bad = dmacs_bad;
823 "VLIB_FRAME_SIZE must be power of 8");
827 u32 * buffer_indices,
u32 n_packets,
int main_is_l3,
828 int ip4_cksum_ok,
int dmac_check)
838 u16 next_ip4, next_ip6, next_mpls, next_l2;
839 u16 et_ip4 = clib_host_to_net_u16 (ETHERNET_TYPE_IP4);
840 u16 et_ip6 = clib_host_to_net_u16 (ETHERNET_TYPE_IP6);
841 u16 et_mpls = clib_host_to_net_u16 (ETHERNET_TYPE_MPLS);
842 u16 et_vlan = clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
843 u16 et_dot1ad = clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD);
844 i32 n_left = n_packets;
923 if (next_ip4 == ETHERNET_INPUT_NEXT_IP4_INPUT && ip4_cksum_ok)
924 next_ip4 = ETHERNET_INPUT_NEXT_IP4_INPUT_NCS;
926 #ifdef CLIB_HAVE_VEC256 927 u16x16 et16_ip4 = u16x16_splat (et_ip4);
928 u16x16 et16_ip6 = u16x16_splat (et_ip6);
929 u16x16 et16_mpls = u16x16_splat (et_mpls);
930 u16x16 et16_vlan = u16x16_splat (et_vlan);
931 u16x16 et16_dot1ad = u16x16_splat (et_dot1ad);
932 u16x16 next16_ip4 = u16x16_splat (next_ip4);
933 u16x16 next16_ip6 = u16x16_splat (next_ip6);
934 u16x16 next16_mpls = u16x16_splat (next_mpls);
935 u16x16 next16_l2 = u16x16_splat (next_l2);
937 u16x16 stairs = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
951 #ifdef CLIB_HAVE_VEC256 955 u16x16 e16 = u16x16_load_unaligned (etype);
958 r += (e16 == et16_ip4) & next16_ip4;
959 r += (e16 == et16_ip6) & next16_ip6;
960 r += (e16 == et16_mpls) & next16_mpls;
963 r = ((e16 != et16_vlan) & (e16 != et16_dot1ad)) & next16_l2;
964 u16x16_store_unaligned (r, next);
966 if (!u16x16_is_all_zero (r == zero))
968 if (u16x16_is_all_zero (r))
970 u16x16_store_unaligned (u16x16_splat (i) + stairs,
971 slowpath_indices + n_slowpath);
976 for (
int j = 0; j < 16; j++)
978 slowpath_indices[n_slowpath++] = i + j;
989 if (main_is_l3 && etype[0] == et_ip4)
991 else if (main_is_l3 && etype[0] == et_ip6)
993 else if (main_is_l3 && etype[0] == et_mpls)
995 else if (main_is_l3 == 0 &&
996 etype[0] != et_vlan && etype[0] != et_dot1ad)
1001 slowpath_indices[n_slowpath++] =
i;
1013 n_left = n_slowpath;
1014 u16 *
si = slowpath_indices;
1015 u32 last_unknown_etype = ~0;
1016 u32 last_unknown_next = ~0;
1019 .tag = tags[si[0]] ^ -1LL,
1028 u16 etype = etypes[
i];
1030 if (etype == et_vlan)
1034 &dot1q_lookup, dmacs_bad[i], 0,
1035 main_is_l3, dmac_check);
1038 else if (etype == et_dot1ad)
1042 &dot1ad_lookup, dmacs_bad[i], 1,
1043 main_is_l3, dmac_check);
1048 if (last_unknown_etype != etype)
1050 last_unknown_etype = etype;
1051 etype = clib_host_to_net_u16 (etype);
1054 if (dmac_check && main_is_l3 && dmacs_bad[i])
1057 b->
error = node->
errors[ETHERNET_ERROR_L3_MAC_MISMATCH];
1058 nexts[
i] = ETHERNET_INPUT_NEXT_PUNT;
1061 nexts[
i] = last_unknown_next;
1096 1, ip4_cksum_ok, 0);
1101 1, ip4_cksum_ok, 1);
1110 0, ip4_cksum_ok, 0);
1115 0, ip4_cksum_ok, 1);
1136 if (b0->
flags & VLIB_BUFFER_IS_TRACED)
1162 int classify_filter_result;
1170 classify_filter_result =
1173 if (classify_filter_result)
1202 u32 * from,
u32 n_packets,
1208 u32 n_left_from, next_index, *to_next;
1209 u32 stats_sw_if_index, stats_n_packets, stats_n_bytes;
1211 u32 cached_sw_if_index = ~0;
1212 u32 cached_is_l2 = 0;
1223 n_left_from = n_packets;
1227 stats_n_packets = stats_n_bytes = 0;
1230 while (n_left_from > 0)
1236 while (n_left_from >= 4 && n_left_to_next >= 2)
1240 u8 next0, next1, error0, error1;
1241 u16 type0, orig_type0, type1, orig_type1;
1242 u16 outer_id0, inner_id0, outer_id1, inner_id1;
1243 u32 match_flags0, match_flags1;
1244 u32 old_sw_if_index0, new_sw_if_index0, len0, old_sw_if_index1,
1245 new_sw_if_index1, len1;
1270 n_left_to_next -= 2;
1277 error0 = error1 = ETHERNET_ERROR_NONE;
1279 type0 = clib_net_to_host_u16 (e0->
type);
1281 type1 = clib_net_to_host_u16 (e1->
type);
1286 b0->
flags |= VNET_BUFFER_F_L2_HDR_OFFSET_VALID;
1287 b1->
flags |= VNET_BUFFER_F_L2_HDR_OFFSET_VALID;
1296 u32 sw_if_index0, sw_if_index1;
1300 is_l20 = cached_is_l2;
1309 cached_sw_if_index = sw_if_index0;
1325 b0->
flags |= VNET_BUFFER_F_L3_HDR_OFFSET_VALID;
1326 b1->
flags |= VNET_BUFFER_F_L3_HDR_OFFSET_VALID;
1335 goto skip_dmac_check01;
1337 dmacs[0] = *(
u64 *) e0;
1338 dmacs[1] = *(
u64 *) e1;
1354 error0 = ETHERNET_ERROR_L3_MAC_MISMATCH;
1356 error1 = ETHERNET_ERROR_L3_MAC_MISMATCH;
1374 &orig_type0, &outer_id0, &inner_id0, &match_flags0);
1379 &orig_type1, &outer_id1, &inner_id1, &match_flags1);
1391 &main_intf0, &vlan_intf0, &qinq_intf0);
1400 &main_intf1, &vlan_intf1, &qinq_intf1);
1407 qinq_intf0, &new_sw_if_index0, &error0, &is_l20);
1414 qinq_intf1, &new_sw_if_index1, &error1, &is_l21);
1419 ETHERNET_ERROR_NONE ? old_sw_if_index0 : new_sw_if_index0;
1422 ETHERNET_ERROR_NONE ? old_sw_if_index1 : new_sw_if_index1;
1425 if (((new_sw_if_index0 != ~0)
1426 && (new_sw_if_index0 != old_sw_if_index0))
1427 || ((new_sw_if_index1 != ~0)
1428 && (new_sw_if_index1 != old_sw_if_index1)))
1436 stats_n_packets += 2;
1437 stats_n_bytes += len0 + len1;
1440 (!(new_sw_if_index0 == stats_sw_if_index
1441 && new_sw_if_index1 == stats_sw_if_index)))
1443 stats_n_packets -= 2;
1444 stats_n_bytes -= len0 + len1;
1446 if (new_sw_if_index0 != old_sw_if_index0
1447 && new_sw_if_index0 != ~0)
1449 interface_main.combined_sw_if_counters
1453 new_sw_if_index0, 1,
1455 if (new_sw_if_index1 != old_sw_if_index1
1456 && new_sw_if_index1 != ~0)
1458 interface_main.combined_sw_if_counters
1462 new_sw_if_index1, 1,
1465 if (new_sw_if_index0 == new_sw_if_index1)
1467 if (stats_n_packets > 0)
1474 stats_n_packets, stats_n_bytes);
1475 stats_n_packets = stats_n_bytes = 0;
1477 stats_sw_if_index = new_sw_if_index0;
1483 is_l20 = is_l21 = 0;
1496 n_left_to_next, bi0, bi1, next0,
1500 while (n_left_from > 0 && n_left_to_next > 0)
1505 u16 type0, orig_type0;
1506 u16 outer_id0, inner_id0;
1508 u32 old_sw_if_index0, new_sw_if_index0, len0;
1519 if (n_left_from > 1)
1530 n_left_to_next -= 1;
1535 error0 = ETHERNET_ERROR_NONE;
1537 type0 = clib_net_to_host_u16 (e0->
type);
1541 b0->
flags |= VNET_BUFFER_F_L2_HDR_OFFSET_VALID;
1552 is_l20 = cached_is_l2;
1556 cached_sw_if_index = sw_if_index0;
1570 b0->
flags |= VNET_BUFFER_F_L3_HDR_OFFSET_VALID;
1577 goto skip_dmac_check0;
1579 dmacs[0] = *(
u64 *) e0;
1595 error0 = ETHERNET_ERROR_L3_MAC_MISMATCH;
1609 &orig_type0, &outer_id0, &inner_id0, &match_flags0);
1620 &main_intf0, &vlan_intf0, &qinq_intf0);
1627 qinq_intf0, &new_sw_if_index0, &error0, &is_l20);
1632 ETHERNET_ERROR_NONE ? old_sw_if_index0 : new_sw_if_index0;
1643 if ((new_sw_if_index0 != ~0)
1644 && (new_sw_if_index0 != old_sw_if_index0))
1650 stats_n_packets += 1;
1651 stats_n_bytes += len0;
1657 stats_n_packets -= 1;
1658 stats_n_bytes -= len0;
1660 if (new_sw_if_index0 != ~0)
1664 thread_index, new_sw_if_index0, 1, len0);
1665 if (stats_n_packets > 0)
1671 stats_sw_if_index, stats_n_packets, stats_n_bytes);
1672 stats_n_packets = stats_n_bytes = 0;
1674 stats_sw_if_index = new_sw_if_index0;
1689 to_next, n_left_to_next,
1697 if (stats_n_packets > 0)
1702 thread_index, stats_sw_if_index, stats_n_packets, stats_n_bytes);
1735 u32 n_packets = from_frame->n_vectors;
1747 u32 n_packets = from_frame->n_vectors;
1790 u32 p2pe_sw_if_index =
1792 if (p2pe_sw_if_index == ~0)
1945 u32 placeholder_flags;
1946 u32 placeholder_unsup;
1952 &placeholder_unsup);
1970 #ifndef CLIB_MARCH_VARIANT 1976 u32 placeholder_flags;
1977 u32 placeholder_unsup;
1986 &placeholder_unsup);
2026 u32 placeholder_flags;
2027 u32 placeholder_unsup;
2032 &placeholder_unsup);
2067 u32 unsupported = 0;
2111 #define ethernet_error(n,c,s) s, 2113 #undef ethernet_error 2118 .name =
"ethernet-input",
2120 .vector_size =
sizeof (
u32),
2126 #define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n, 2136 .name =
"ethernet-input-type",
2138 .vector_size =
sizeof (
u32),
2141 #define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n, 2148 .name =
"ethernet-input-not-l2",
2150 .vector_size =
sizeof (
u32),
2153 #define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n, 2160 #ifndef CLIB_MARCH_VARIANT 2184 ETHERNET_INPUT_NEXT_DROP);
2186 ETHERNET_INPUT_NEXT_PUNT);
2208 u32 ethertype,
u32 next_index)
2236 if (ethertype == ETHERNET_TYPE_IP4)
2240 else if (ethertype == ETHERNET_TYPE_IP6)
2244 else if (ethertype == ETHERNET_TYPE_MPLS)
2255 __attribute__ ((unused))
vlan_table_t *invalid_vlan_table;
2256 __attribute__ ((unused))
qinq_table_t *invalid_qinq_table;
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
static char * ethernet_error_strings[]
vlib_main_t vlib_global_main
vlib_node_registration_t ethernet_input_type_node
(constructor) VLIB_REGISTER_NODE (ethernet_input_type_node)
vl_api_wireguard_peer_flags_t flags
static void vlib_increment_combined_counter(vlib_combined_counter_main_t *cm, u32 thread_index, u32 index, u64 n_packets, u64 n_bytes)
Increment a combined counter.
u8 runtime_data[0]
Function dependent node-runtime data.
VNET_SW_INTERFACE_ADD_DEL_FUNCTION(ethernet_sw_interface_add_del)
mac_address_t * secondary_addrs
vnet_main_t * vnet_get_main(void)
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
static_always_inline void eth_input_single_int(vlib_main_t *vm, vlib_node_runtime_t *node, vnet_hw_interface_t *hi, u32 *from, u32 n_pkts, int ip4_cksum_ok)
static_always_inline void eth_input_get_etype_and_tags(vlib_buffer_t **b, u16 *etype, u64 *tags, u64 *dmacs, int offset, int dmac_check)
#define pool_alloc(P, N)
Allocate N more free elements to pool (unspecified alignment).
vnet_interface_main_t interface_main
vnet_p2p_sub_interface_t p2p
void ethernet_input_init(vlib_main_t *vm, ethernet_main_t *em)
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
int vnet_hw_interface_rx_redirect_to_node(vnet_main_t *vnm, u32 hw_if_index, u32 node_index)
u16x16 u64x4 static_always_inline u32 u8x32_msb_mask(u8x32 v)
static_always_inline u8 eth_input_sec_dmac_check_x1(u64 hwaddr, u64 *dmac, u8 *dmac_bad)
static_always_inline void eth_input_adv_and_flags_x4(vlib_buffer_t **b, int is_l3)
#define clib_memcpy_fast(a, b, c)
ethernet_interface_t * interfaces
#define SUBINT_CONFIG_MATCH_0_TAG
static_always_inline void identify_subint(vnet_hw_interface_t *hi, vlib_buffer_t *b0, u32 match_flags, main_intf_t *main_intf, vlan_intf_t *vlan_intf, qinq_intf_t *qinq_intf, u32 *new_sw_if_index, u8 *error0, u32 *is_l2)
#define ethernet_buffer_header_size(b)
Determine the size of the Ethernet headers of the current frame in the buffer.
void ethernet_register_l2_input(vlib_main_t *vm, u32 node_index)
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
static_always_inline void eth_input_tag_lookup(vlib_main_t *vm, vnet_main_t *vnm, vlib_node_runtime_t *node, vnet_hw_interface_t *hi, u64 tag, u16 *next, vlib_buffer_t *b, eth_input_tag_lookup_t *l, u8 dmac_bad, int is_dot1ad, int main_is_l3, int check_dmac)
void ethernet_register_l3_redirect(vlib_main_t *vm, u32 node_index)
static clib_error_t * ethernet_sw_interface_add_del(vnet_main_t *vnm, u32 sw_if_index, u32 is_create)
#define STRUCT_OFFSET_OF(t, f)
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
static_always_inline void eth_input_adv_and_flags_x1(vlib_buffer_t **b, int is_l3)
subint_config_t inner_any_subint
#define VLIB_NODE_FN(node)
static_always_inline void determine_next_node(ethernet_main_t *em, ethernet_input_variant_t variant, u32 is_l20, u32 type0, vlib_buffer_t *b0, u8 *error0, u8 *next0)
vlib_error_t * errors
Vector of errors for this node.
static uword vlib_buffer_length_in_chain(vlib_main_t *vm, vlib_buffer_t *b)
Get length in bytes of the buffer chain.
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
static uword vlib_node_add_next(vlib_main_t *vm, uword node, uword next_node)
static_always_inline void u64x4_scatter(u64x4 r, void *p0, void *p1, void *p2, void *p3)
struct vnet_sub_interface_t::@356::@357::@359 flags
static_always_inline void ethernet_input_inline_dmac_check(vnet_hw_interface_t *hi, u64 *dmacs, u8 *dmacs_bad, u32 n_packets, ethernet_interface_t *ei, u8 have_sec_dmac)
static_always_inline void eth_input_process_frame(vlib_main_t *vm, vlib_node_runtime_t *node, vnet_hw_interface_t *hi, u32 *buffer_indices, u32 n_packets, int main_is_l3, int ip4_cksum_ok, int dmac_check)
epu16_epi64 epu8_epi64 epu8_epi64 epi16_epi64 i16x16
ethernet_main_t ethernet_main
static_always_inline u8 is_sec_dmac_bad(u64 dmac, u64 hwaddr)
representation of a pipe interface
#define static_always_inline
static clib_error_t * ethernet_sw_interface_up_down(vnet_main_t *vnm, u32 sw_if_index, u32 flags)
#define ETH_INPUT_FRAME_F_SINGLE_SW_IF_IDX
vlib_combined_counter_main_t * combined_sw_if_counters
void ethernet_set_rx_redirect(vnet_main_t *vnm, vnet_hw_interface_t *hi, u32 enable)
#define sparse_vec_validate(v, i)
vnet_hw_interface_flags_t flags
#define vlib_prefetch_buffer_header(b, type)
Prefetch buffer metadata.
subint_config_t default_subint
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
u32 filter_classify_table_index
#define clib_error_return(e, args...)
vlib_node_registration_t ethernet_input_node
(constructor) VLIB_REGISTER_NODE (ethernet_input_node)
#define vlib_call_init_function(vm, x)
Use the vpp classifier to decide whether to trace packets.
epu8_epi32 epu16_epi32 u64x2
clib_error_t * next_by_ethertype_init(next_by_ethertype_t *l3_next)
vl_api_fib_path_type_t type
vlib_error_t error
Error code for buffers to be enqueued to error handler.
static_always_inline u32 eth_input_sec_dmac_check_x4(u64 hwaddr, u64 *dmac, u8 *dmac_bad)
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
subint_config_t single_tag_subint
u32 * sparse_index_by_input_next_index
static u8 * format_ethernet_input_trace(u8 *s, va_list *va)
static ethernet_type_info_t * ethernet_get_type_info(ethernet_main_t *em, ethernet_type_t type)
struct vnet_sub_interface_t::@356 eth
VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(bond_sw_interface_up_down)
clib_error_t * next_by_ethertype_register(next_by_ethertype_t *l3_next, u32 ethertype, u32 next_index)
static_always_inline u64x4 u64x4_gather(void *p0, void *p1, void *p2, void *p3)
#define ETH_INPUT_FRAME_F_IP4_CKSUM_OK
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
#define ETHERNET_INTERFACE_FLAG_STATUS_L3
STATIC_ASSERT(STRUCT_OFFSET_OF(vnet_buffer_opaque_t, l2_hdr_offset)==STRUCT_OFFSET_OF(vnet_buffer_opaque_t, l3_hdr_offset) - 2, "l3_hdr_offset must follow l2_hdr_offset")
static_always_inline void ethernet_input_trace(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
#define ethernet_buffer_set_vlan_count(b, v)
Sets the number of VLAN headers in the current Ethernet frame in the buffer.
vlib_node_registration_t ethernet_input_not_l2_node
(constructor) VLIB_REGISTER_NODE (ethernet_input_not_l2_node)
#define vlib_validate_buffer_enqueue_x2(vm, node, next_index, to_next, n_left_to_next, bi0, bi1, next0, next1)
Finish enqueueing two buffers forward in the graph.
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Finish enqueueing one buffer forward in the graph.
static_always_inline void parse_header(ethernet_input_variant_t variant, vlib_buffer_t *b0, u16 *type, u16 *orig_type, u16 *outer_id, u16 *inner_id, u32 *match_flags)
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Get pointer to next frame vector data by (vlib_node_runtime_t, next_index).
#define SUBINT_CONFIG_MATCH_3_TAG
STATIC_ASSERT_OFFSET_OF(vlib_buffer_t, current_data, 0)
vnet_hw_interface_class_t ethernet_hw_interface_class
subint_config_t untagged_subint
static_always_inline void u32x8_scatter_one(u32x8 r, int index, void *p)
u32 p2p_ethernet_lookup(u32 parent_if_index, u8 *client_mac)
u8 * format_ethernet_header_with_length(u8 *s, va_list *args)
#define SUBINT_CONFIG_VALID
u8 next_by_ethertype_register_called
#define VLIB_REGISTER_NODE(x,...)
qinq_intf_t vlans[ETHERNET_N_VLAN]
#define CLIB_PREFETCH(addr, size, type)
static_always_inline void vlib_buffer_enqueue_to_next(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *buffers, u16 *nexts, uword count)
sll srl srl sll sra u16x4 i
#define clib_warning(format, args...)
static vlib_node_runtime_t * vlib_node_get_runtime(vlib_main_t *vm, u32 node_index)
Get node runtime by node index.
#define vlib_prefetch_buffer_data(b, type)
static u32 eth_identify_subint(vnet_hw_interface_t *hi, u32 match_flags, main_intf_t *main_intf, vlan_intf_t *vlan_intf, qinq_intf_t *qinq_intf, u32 *new_sw_if_index, u8 *error0, u32 *is_l2)
static void * vlib_frame_scalar_args(vlib_frame_t *f)
Get pointer to frame scalar data.
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Release pointer to next frame vector data.
static int vnet_is_packet_traced_inline(vlib_buffer_t *b, u32 classify_table_index, int func)
vnet_is_packet_traced
#define SUBINT_CONFIG_MATCH_1_TAG
static subint_config_t * ethernet_sw_interface_get_config(vnet_main_t *vnm, u32 sw_if_index, u32 *flags, u32 *unsupported)
u32 trace_classify_table_index
vlib_main_t vlib_node_runtime_t * node
static_always_inline void eth_input_process_frame_dmac_check(vnet_hw_interface_t *hi, u64 *dmacs, u8 *dmacs_bad, u32 n_packets, ethernet_interface_t *ei, u8 have_sec_dmac)
static void eth_vlan_table_lookups(ethernet_main_t *em, vnet_main_t *vnm, u32 port_sw_if_index0, u16 first_ethertype, u16 outer_id, u16 inner_id, vnet_hw_interface_t **hi, main_intf_t **main_intf, vlan_intf_t **vlan_intf, qinq_intf_t **qinq_intf)
static uword sparse_vec_index(void *v, uword sparse_index)
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
void ethernet_register_input_type(vlib_main_t *vm, ethernet_type_t type, u32 node_index)
u8 * format_ethernet_header(u8 *s, va_list *args)
static_always_inline void eth_input_update_if_counters(vlib_main_t *vm, vnet_main_t *vnm, eth_input_tag_lookup_t *l)
static_always_inline int ethernet_frame_is_tagged(u16 type)
#define clib_error_report(e)
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
vlan_intf_t vlans[ETHERNET_N_VLAN]
#define SUBINT_CONFIG_MATCH_2_TAG
void ethernet_sw_interface_set_l2_mode(vnet_main_t *vnm, u32 sw_if_index, u32 l2)
#define vec_elt(v, i)
Get vector value at index i.
subint_config_t subint
Sub-interface config.
struct _vlib_node_registration vlib_node_registration_t
next_by_ethertype_t l3_next
template key/value backing page structure
#define SUBINT_CONFIG_P2P
ethernet_interface_t * ethernet_get_interface(ethernet_main_t *em, u32 hw_if_index)
void l2bvi_register_input_type(vlib_main_t *vm, ethernet_type_t type, u32 node_index)
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
pipe_t * pipe_get(u32 sw_if_index)
Get the pipe instnace based on one end.
static_always_inline void ethernet_input_inline(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *from, u32 n_packets, ethernet_input_variant_t variant)
vlib_main_t vlib_node_runtime_t vlib_frame_t * frame
static_always_inline int ethernet_frame_is_any_tagged_x2(u16 type0, u16 type1)
VLIB buffer representation.
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
static clib_error_t * ethernet_init(vlib_main_t *vm)
void ethernet_sw_interface_set_l2_mode_noport(vnet_main_t *vnm, u32 sw_if_index, u32 l2)
struct clib_bihash_value offset
template key/value backing page structure
p2p_ethernet_main_t p2p_main
vnet_sw_interface_type_t type
#define vec_foreach(var, vec)
Vector iterator.
#define foreach_ethernet_input_next
#define u16x16_blend(v1, v2, mask)
static_always_inline u8 is_dmac_bad(u64 dmac, u64 hwaddr)
u16 flags
Copy of main node flags.
void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
subint_config_t * p2p_subif_pool
static_always_inline void vlib_get_buffers(vlib_main_t *vm, u32 *bi, vlib_buffer_t **b, int count)
Translate array of buffer indices into buffer pointers.
#define VLIB_NODE_FLAG_TRACE
#define CLIB_CACHE_LINE_BYTES
static void * sparse_vec_new(uword elt_bytes, uword sparse_index_bits)
static_always_inline u16 eth_input_next_by_type(u16 etype)
static void pcap_add_buffer(pcap_main_t *pm, struct vlib_main_t *vm, u32 buffer_index, u32 n_bytes_in_trace)
Add buffer (vlib_buffer_t) to the trace.
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
static void ethernet_setup_node(vlib_main_t *vm, u32 node_index)
vl_api_interface_index_t sw_if_index
uword unformat_ethernet_header(unformat_input_t *input, va_list *args)
#define SPARSE_VEC_INVALID_INDEX