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);
233 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;
849 from = buffer_indices;
928 if (next_ip4 == ETHERNET_INPUT_NEXT_IP4_INPUT && ip4_cksum_ok)
929 next_ip4 = ETHERNET_INPUT_NEXT_IP4_INPUT_NCS;
931 #ifdef CLIB_HAVE_VEC256 932 u16x16 et16_ip4 = u16x16_splat (et_ip4);
933 u16x16 et16_ip6 = u16x16_splat (et_ip6);
934 u16x16 et16_mpls = u16x16_splat (et_mpls);
935 u16x16 et16_vlan = u16x16_splat (et_vlan);
936 u16x16 et16_dot1ad = u16x16_splat (et_dot1ad);
937 u16x16 next16_ip4 = u16x16_splat (next_ip4);
938 u16x16 next16_ip6 = u16x16_splat (next_ip6);
939 u16x16 next16_mpls = u16x16_splat (next_mpls);
940 u16x16 next16_l2 = u16x16_splat (next_l2);
942 u16x16 stairs = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
956 #ifdef CLIB_HAVE_VEC256 960 u16x16 e16 = u16x16_load_unaligned (etype);
963 r += (e16 == et16_ip4) & next16_ip4;
964 r += (e16 == et16_ip6) & next16_ip6;
965 r += (e16 == et16_mpls) & next16_mpls;
968 r = ((e16 != et16_vlan) & (e16 != et16_dot1ad)) & next16_l2;
969 u16x16_store_unaligned (r, next);
971 if (!u16x16_is_all_zero (r == zero))
973 if (u16x16_is_all_zero (r))
975 u16x16_store_unaligned (u16x16_splat (i) + stairs,
976 slowpath_indices + n_slowpath);
981 for (
int j = 0; j < 16; j++)
983 slowpath_indices[n_slowpath++] = i + j;
994 if (main_is_l3 && etype[0] == et_ip4)
996 else if (main_is_l3 && etype[0] == et_ip6)
998 else if (main_is_l3 && etype[0] == et_mpls)
1000 else if (main_is_l3 == 0 &&
1001 etype[0] != et_vlan && etype[0] != et_dot1ad)
1006 slowpath_indices[n_slowpath++] =
i;
1018 n_left = n_slowpath;
1019 u16 *si = slowpath_indices;
1020 u32 last_unknown_etype = ~0;
1021 u32 last_unknown_next = ~0;
1024 .tag = tags[si[0]] ^ -1LL,
1033 u16 etype = etypes[
i];
1035 if (etype == et_vlan)
1039 &dot1q_lookup, dmacs_bad[i], 0,
1040 main_is_l3, dmac_check);
1043 else if (etype == et_dot1ad)
1047 &dot1ad_lookup, dmacs_bad[i], 1,
1048 main_is_l3, dmac_check);
1053 if (last_unknown_etype != etype)
1055 last_unknown_etype = etype;
1056 etype = clib_host_to_net_u16 (etype);
1059 if (dmac_check && main_is_l3 && dmacs_bad[i])
1062 b->
error = node->
errors[ETHERNET_ERROR_L3_MAC_MISMATCH];
1063 nexts[
i] = ETHERNET_INPUT_NEXT_PUNT;
1066 nexts[
i] = last_unknown_next;
1135 if (b0->
flags & VLIB_BUFFER_IS_TRACED)
1161 int classify_filter_result;
1169 classify_filter_result =
1172 if (classify_filter_result)
1201 u32 * from,
u32 n_packets,
1207 u32 n_left_from, next_index, *to_next;
1208 u32 stats_sw_if_index, stats_n_packets, stats_n_bytes;
1210 u32 cached_sw_if_index = ~0;
1211 u32 cached_is_l2 = 0;
1222 n_left_from = n_packets;
1226 stats_n_packets = stats_n_bytes = 0;
1229 while (n_left_from > 0)
1235 while (n_left_from >= 4 && n_left_to_next >= 2)
1239 u8 next0, next1, error0, error1;
1240 u16 type0, orig_type0, type1, orig_type1;
1241 u16 outer_id0, inner_id0, outer_id1, inner_id1;
1242 u32 match_flags0, match_flags1;
1243 u32 old_sw_if_index0, new_sw_if_index0, len0, old_sw_if_index1,
1244 new_sw_if_index1, len1;
1269 n_left_to_next -= 2;
1276 error0 = error1 = ETHERNET_ERROR_NONE;
1278 type0 = clib_net_to_host_u16 (e0->
type);
1280 type1 = clib_net_to_host_u16 (e1->
type);
1285 b0->
flags |= VNET_BUFFER_F_L2_HDR_OFFSET_VALID;
1286 b1->
flags |= VNET_BUFFER_F_L2_HDR_OFFSET_VALID;
1295 u32 sw_if_index0, sw_if_index1;
1299 is_l20 = cached_is_l2;
1308 cached_sw_if_index = sw_if_index0;
1324 b0->
flags |= VNET_BUFFER_F_L3_HDR_OFFSET_VALID;
1325 b1->
flags |= VNET_BUFFER_F_L3_HDR_OFFSET_VALID;
1333 dmacs[0] = *(
u64 *) e0;
1334 dmacs[1] = *(
u64 *) e1;
1350 error0 = ETHERNET_ERROR_L3_MAC_MISMATCH;
1352 error1 = ETHERNET_ERROR_L3_MAC_MISMATCH;
1369 &orig_type0, &outer_id0, &inner_id0, &match_flags0);
1374 &orig_type1, &outer_id1, &inner_id1, &match_flags1);
1386 &main_intf0, &vlan_intf0, &qinq_intf0);
1395 &main_intf1, &vlan_intf1, &qinq_intf1);
1402 qinq_intf0, &new_sw_if_index0, &error0, &is_l20);
1409 qinq_intf1, &new_sw_if_index1, &error1, &is_l21);
1414 ETHERNET_ERROR_NONE ? old_sw_if_index0 : new_sw_if_index0;
1417 ETHERNET_ERROR_NONE ? old_sw_if_index1 : new_sw_if_index1;
1420 if (((new_sw_if_index0 != ~0)
1421 && (new_sw_if_index0 != old_sw_if_index0))
1422 || ((new_sw_if_index1 != ~0)
1423 && (new_sw_if_index1 != old_sw_if_index1)))
1431 stats_n_packets += 2;
1432 stats_n_bytes += len0 + len1;
1435 (!(new_sw_if_index0 == stats_sw_if_index
1436 && new_sw_if_index1 == stats_sw_if_index)))
1438 stats_n_packets -= 2;
1439 stats_n_bytes -= len0 + len1;
1441 if (new_sw_if_index0 != old_sw_if_index0
1442 && new_sw_if_index0 != ~0)
1444 interface_main.combined_sw_if_counters
1448 new_sw_if_index0, 1,
1450 if (new_sw_if_index1 != old_sw_if_index1
1451 && new_sw_if_index1 != ~0)
1453 interface_main.combined_sw_if_counters
1457 new_sw_if_index1, 1,
1460 if (new_sw_if_index0 == new_sw_if_index1)
1462 if (stats_n_packets > 0)
1469 stats_n_packets, stats_n_bytes);
1470 stats_n_packets = stats_n_bytes = 0;
1472 stats_sw_if_index = new_sw_if_index0;
1478 is_l20 = is_l21 = 0;
1491 n_left_to_next, bi0, bi1, next0,
1495 while (n_left_from > 0 && n_left_to_next > 0)
1500 u16 type0, orig_type0;
1501 u16 outer_id0, inner_id0;
1503 u32 old_sw_if_index0, new_sw_if_index0, len0;
1514 if (n_left_from > 1)
1525 n_left_to_next -= 1;
1530 error0 = ETHERNET_ERROR_NONE;
1532 type0 = clib_net_to_host_u16 (e0->
type);
1536 b0->
flags |= VNET_BUFFER_F_L2_HDR_OFFSET_VALID;
1547 is_l20 = cached_is_l2;
1551 cached_sw_if_index = sw_if_index0;
1565 b0->
flags |= VNET_BUFFER_F_L3_HDR_OFFSET_VALID;
1571 dmacs[0] = *(
u64 *) e0;
1587 error0 = ETHERNET_ERROR_L3_MAC_MISMATCH;
1600 &orig_type0, &outer_id0, &inner_id0, &match_flags0);
1611 &main_intf0, &vlan_intf0, &qinq_intf0);
1618 qinq_intf0, &new_sw_if_index0, &error0, &is_l20);
1623 ETHERNET_ERROR_NONE ? old_sw_if_index0 : new_sw_if_index0;
1634 if ((new_sw_if_index0 != ~0)
1635 && (new_sw_if_index0 != old_sw_if_index0))
1641 stats_n_packets += 1;
1642 stats_n_bytes += len0;
1648 stats_n_packets -= 1;
1649 stats_n_bytes -= len0;
1651 if (new_sw_if_index0 != ~0)
1655 thread_index, new_sw_if_index0, 1, len0);
1656 if (stats_n_packets > 0)
1662 stats_sw_if_index, stats_n_packets, stats_n_bytes);
1663 stats_n_packets = stats_n_bytes = 0;
1665 stats_sw_if_index = new_sw_if_index0;
1680 to_next, n_left_to_next,
1688 if (stats_n_packets > 0)
1693 thread_index, stats_sw_if_index, stats_n_packets, stats_n_bytes);
1726 u32 n_packets = from_frame->n_vectors;
1738 u32 n_packets = from_frame->n_vectors;
1781 u32 p2pe_sw_if_index =
1783 if (p2pe_sw_if_index == ~0)
1961 #ifndef CLIB_MARCH_VARIANT 2058 u32 unsupported = 0;
2102 #define ethernet_error(n,c,s) s, 2104 #undef ethernet_error 2109 .name =
"ethernet-input",
2111 .vector_size =
sizeof (
u32),
2117 #define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n, 2127 .name =
"ethernet-input-type",
2129 .vector_size =
sizeof (
u32),
2132 #define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n, 2139 .name =
"ethernet-input-not-l2",
2141 .vector_size =
sizeof (
u32),
2144 #define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n, 2151 #ifndef CLIB_MARCH_VARIANT 2175 ETHERNET_INPUT_NEXT_DROP);
2177 ETHERNET_INPUT_NEXT_PUNT);
2199 u32 ethertype,
u32 next_index)
2227 if (ethertype == ETHERNET_TYPE_IP4)
2231 else if (ethertype == ETHERNET_TYPE_IP6)
2235 else if (ethertype == ETHERNET_TYPE_MPLS)
2246 __attribute__ ((unused))
vlan_table_t *invalid_vlan_table;
2247 __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.
VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(bond_sw_interface_up_down)
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)
vlib_main_t vlib_global_main
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_ASSERT_OFFSET_OF(vlib_buffer_t, current_data, 0)
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.
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)
#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
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)
void ethernet_register_l2_input(vlib_main_t *vm, u32 node_index)
#define clib_memcpy_fast(a, b, c)
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)
ethernet_interface_t * interfaces
#define SUBINT_CONFIG_MATCH_0_TAG
#define ethernet_buffer_header_size(b)
Determine the size of the Ethernet headers of the current frame in the buffer.
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
static subint_config_t * ethernet_sw_interface_get_config(vnet_main_t *vnm, u32 sw_if_index, u32 *flags, u32 *unsupported)
#define STRUCT_OFFSET_OF(t, f)
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
subint_config_t inner_any_subint
#define VLIB_NODE_FN(node)
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)
static clib_error_t * ethernet_sw_interface_add_del(vnet_main_t *vnm, u32 sw_if_index, u32 is_create)
epu16_epi64 epu8_epi64 epu8_epi64 epi16_epi64 i16x16
vlib_node_registration_t ethernet_input_node
(constructor) VLIB_REGISTER_NODE (ethernet_input_node)
ethernet_main_t ethernet_main
representation of a pipe interface
#define static_always_inline
vl_api_interface_index_t sw_if_index
static_always_inline u16 eth_input_next_by_type(u16 etype)
void ethernet_set_rx_redirect(vnet_main_t *vnm, vnet_hw_interface_t *hi, u32 enable)
clib_error_t * next_by_ethertype_init(next_by_ethertype_t *l3_next)
#define ETH_INPUT_FRAME_F_SINGLE_SW_IF_IDX
vlib_combined_counter_main_t * combined_sw_if_counters
#define sparse_vec_validate(v, i)
#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...)
#define vlib_call_init_function(vm, x)
static char * ethernet_error_strings[]
Use the vpp classifier to decide whether to trace packets.
epu8_epi32 epu16_epi32 u64x2
vl_api_fib_path_type_t type
vlib_error_t error
Error code for buffers to be enqueued to error handler.
struct vnet_sub_interface_t::@286::@287::@289 flags
#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 ethernet_type_info_t * ethernet_get_type_info(ethernet_main_t *em, ethernet_type_t type)
static const __m128i zero
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.
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)
vlib_node_registration_t ethernet_input_type_node
(constructor) VLIB_REGISTER_NODE (ethernet_input_type_node)
#define ethernet_buffer_set_vlan_count(b, v)
Sets the number of VLAN headers in the current Ethernet frame in the buffer.
#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.
static_always_inline u8 eth_input_sec_dmac_check_x1(u64 hwaddr, u64 *dmac, u8 *dmac_bad)
struct vnet_sub_interface_t::@286 eth
#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.
#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
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,...)
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)
qinq_intf_t vlans[ETHERNET_N_VLAN]
VNET_SW_INTERFACE_ADD_DEL_FUNCTION(ethernet_sw_interface_add_del)
#define CLIB_PREFETCH(addr, size, type)
void ethernet_input_init(vlib_main_t *vm, ethernet_main_t *em)
static_always_inline void vlib_buffer_enqueue_to_next(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *buffers, u16 *nexts, uword count)
#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 ETHERNET_INTERFACE_FLAG_ACCEPT_ALL
#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_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)
vlib_main_t vlib_node_runtime_t * node
u32 trace_classify_table_index
static_always_inline void eth_input_adv_and_flags_x1(vlib_buffer_t **b, int is_l3)
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)
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)
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
u8 * format_ethernet_header(u8 *s, va_list *args)
void ethernet_register_l3_redirect(vlib_main_t *vm, u32 node_index)
void ethernet_sw_interface_set_l2_mode_noport(vnet_main_t *vnm, u32 sw_if_index, u32 l2)
static_always_inline int ethernet_frame_is_tagged(u16 type)
static_always_inline u8 is_dmac_bad(u64 dmac, u64 hwaddr)
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)
void ethernet_register_input_type(vlib_main_t *vm, ethernet_type_t type, u32 node_index)
#define clib_error_report(e)
static u8 * format_ethernet_input_trace(u8 *s, va_list *va)
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
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")
vlan_intf_t vlans[ETHERNET_N_VLAN]
#define SUBINT_CONFIG_MATCH_2_TAG
static_always_inline u32 eth_input_sec_dmac_check_x4(u64 hwaddr, u64 *dmac, u8 *dmac_bad)
clib_error_t * next_by_ethertype_register(next_by_ethertype_t *l3_next, u32 ethertype, u32 next_index)
static void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
#define vec_elt(v, i)
Get vector value at index i.
subint_config_t subint
Sub-interface config.
vlib_node_registration_t ethernet_input_not_l2_node
(constructor) VLIB_REGISTER_NODE (ethernet_input_not_l2_node)
struct _vlib_node_registration vlib_node_registration_t
next_by_ethertype_t l3_next
template key/value backing page structure
#define foreach_ethernet_input_next
#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 int ethernet_frame_is_any_tagged_x2(u16 type0, u16 type1)
VLIB buffer representation.
static_always_inline void eth_input_adv_and_flags_x4(vlib_buffer_t **b, int is_l3)
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(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.
vlib_main_t vlib_node_runtime_t vlib_frame_t * frame
#define u16x16_blend(v1, v2, mask)
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)
u16 flags
Copy of main node flags.
static_always_inline u8 is_sec_dmac_bad(u64 dmac, u64 hwaddr)
subint_config_t * p2p_subif_pool
static clib_error_t * ethernet_sw_interface_up_down(vnet_main_t *vnm, u32 sw_if_index, u32 flags)
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 void eth_input_update_if_counters(vlib_main_t *vm, vnet_main_t *vnm, eth_input_tag_lookup_t *l)
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)
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_always_inline void ethernet_input_trace(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
static void ethernet_setup_node(vlib_main_t *vm, u32 node_index)
uword unformat_ethernet_header(unformat_input_t *input, va_list *args)
#define SPARSE_VEC_INVALID_INDEX