X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fvxlan-gpe%2Fdecap.c;h=8a36e0ad3bd5902879f5d1e1bda51e0bdabc05f4;hb=8feeaff56fa9a4fbdfc06131f28a1060ffd9645d;hp=151ffa3fcc96c9bebcbed9051d1a83c392c68cd4;hpb=6f8273aec1fa3f3d597b090871cc7ac301d7e014;p=vpp.git diff --git a/src/vnet/vxlan-gpe/decap.c b/src/vnet/vxlan-gpe/decap.c index 151ffa3fcc9..8a36e0ad3bd 100644 --- a/src/vnet/vxlan-gpe/decap.c +++ b/src/vnet/vxlan-gpe/decap.c @@ -24,8 +24,6 @@ #include #include -vlib_node_registration_t vxlan_gpe_input_node; - /** * @brief Struct for VXLAN GPE decap packet tracing * @@ -116,14 +114,15 @@ vxlan_gpe_input (vlib_main_t * vm, u32 last_tunnel_index = ~0; vxlan4_gpe_tunnel_key_t last_key4; vxlan6_gpe_tunnel_key_t last_key6; - u32 pkts_decapsulated = 0; - u32 thread_index = vlib_get_thread_index (); + u32 ip4_pkts_decapsulated = 0; + u32 ip6_pkts_decapsulated = 0; + u32 thread_index = vm->thread_index; u32 stats_sw_if_index, stats_n_packets, stats_n_bytes; if (is_ip4) - memset (&last_key4, 0xff, sizeof (last_key4)); + clib_memset (&last_key4, 0xff, sizeof (last_key4)); else - memset (&last_key6, 0xff, sizeof (last_key6)); + clib_memset (&last_key6, 0xff, sizeof (last_key6)); from = vlib_frame_vector_args (from_frame); n_left_from = from_frame->n_vectors; @@ -338,12 +337,19 @@ vxlan_gpe_input (vlib_main_t * vm, /* Required to make the l2 tag push / pop code work on l2 subifs */ vnet_update_l2_len (b0); + /* Set packet input sw_if_index to unicast VXLAN tunnel for learning */ + vnet_buffer (b0)->sw_if_index[VLIB_RX] = t0->sw_if_index; + /** * ip[46] lookup in the configured FIB */ vnet_buffer (b0)->sw_if_index[VLIB_TX] = t0->decap_fib_index; - pkts_decapsulated++; + if (is_ip4) + ip4_pkts_decapsulated++; + else + ip6_pkts_decapsulated++; + stats_n_packets += 1; stats_n_bytes += len0; @@ -426,12 +432,19 @@ vxlan_gpe_input (vlib_main_t * vm, /* Required to make the l2 tag push / pop code work on l2 subifs */ vnet_update_l2_len (b1); + /* Set packet input sw_if_index to unicast VXLAN tunnel for learning */ + vnet_buffer (b1)->sw_if_index[VLIB_RX] = t1->sw_if_index; + /* * ip[46] lookup in the configured FIB */ vnet_buffer (b1)->sw_if_index[VLIB_TX] = t1->decap_fib_index; - pkts_decapsulated++; + if (is_ip4) + ip4_pkts_decapsulated++; + else + ip6_pkts_decapsulated++; + stats_n_packets += 1; stats_n_bytes += len1; @@ -595,12 +608,19 @@ vxlan_gpe_input (vlib_main_t * vm, /* Required to make the l2 tag push / pop code work on l2 subifs */ vnet_update_l2_len (b0); + /* Set packet input sw_if_index to unicast VXLAN tunnel for learning */ + vnet_buffer (b0)->sw_if_index[VLIB_RX] = t0->sw_if_index; + /* * ip[46] lookup in the configured FIB */ vnet_buffer (b0)->sw_if_index[VLIB_TX] = t0->decap_fib_index; - pkts_decapsulated++; + if (is_ip4) + ip4_pkts_decapsulated++; + else + ip6_pkts_decapsulated++; + stats_n_packets += 1; stats_n_bytes += len0; @@ -638,9 +658,12 @@ vxlan_gpe_input (vlib_main_t * vm, vlib_put_next_frame (vm, node, next_index, n_left_to_next); } - vlib_node_increment_counter (vm, vxlan_gpe_input_node.index, + vlib_node_increment_counter (vm, vxlan4_gpe_input_node.index, VXLAN_GPE_ERROR_DECAPSULATED, - pkts_decapsulated); + ip4_pkts_decapsulated); + vlib_node_increment_counter (vm, vxlan6_gpe_input_node.index, + VXLAN_GPE_ERROR_DECAPSULATED, + ip6_pkts_decapsulated); /* Increment any remaining batch stats */ if (stats_n_packets) { @@ -664,14 +687,14 @@ vxlan_gpe_input (vlib_main_t * vm, * @return from_frame->n_vectors * */ -static uword -vxlan4_gpe_input (vlib_main_t * vm, vlib_node_runtime_t * node, - vlib_frame_t * from_frame) +VLIB_NODE_FN (vxlan4_gpe_input_node) (vlib_main_t * vm, + vlib_node_runtime_t * node, + vlib_frame_t * from_frame) { return vxlan_gpe_input (vm, node, from_frame, /* is_ip4 */ 1); } - +#ifndef CLIB_MARCH_VARIANT void vxlan_gpe_register_decap_protocol (u8 protocol_id, uword next_node_index) { @@ -687,7 +710,7 @@ vxlan_gpe_unregister_decap_protocol (u8 protocol_id, uword next_node_index) hm->decap_next_node_list[protocol_id] = VXLAN_GPE_INPUT_NEXT_DROP; return; } - +#endif /* CLIB_MARCH_VARIANT */ /** * @brief Graph processing dispatch function for IPv6 VXLAN GPE @@ -700,9 +723,9 @@ vxlan_gpe_unregister_decap_protocol (u8 protocol_id, uword next_node_index) * @return from_frame->n_vectors - uword * */ -static uword -vxlan6_gpe_input (vlib_main_t * vm, vlib_node_runtime_t * node, - vlib_frame_t * from_frame) +VLIB_NODE_FN (vxlan6_gpe_input_node) (vlib_main_t * vm, + vlib_node_runtime_t * node, + vlib_frame_t * from_frame) { return vxlan_gpe_input (vm, node, from_frame, /* is_ip4 */ 0); } @@ -719,7 +742,6 @@ static char *vxlan_gpe_error_strings[] = { /* *INDENT-OFF* */ VLIB_REGISTER_NODE (vxlan4_gpe_input_node) = { - .function = vxlan4_gpe_input, .name = "vxlan4-gpe-input", /* Takes a vector of packets. */ .vector_size = sizeof (u32), @@ -740,11 +762,8 @@ VLIB_REGISTER_NODE (vxlan4_gpe_input_node) = { }; /* *INDENT-ON* */ -VLIB_NODE_FUNCTION_MULTIARCH (vxlan4_gpe_input_node, vxlan4_gpe_input); - /* *INDENT-OFF* */ VLIB_REGISTER_NODE (vxlan6_gpe_input_node) = { - .function = vxlan6_gpe_input, .name = "vxlan6-gpe-input", /* Takes a vector of packets. */ .vector_size = sizeof (u32), @@ -765,13 +784,12 @@ VLIB_REGISTER_NODE (vxlan6_gpe_input_node) = { }; /* *INDENT-ON* */ -VLIB_NODE_FUNCTION_MULTIARCH (vxlan6_gpe_input_node, vxlan6_gpe_input); typedef enum { IP_VXLAN_BYPASS_NEXT_DROP, IP_VXLAN_BYPASS_NEXT_VXLAN, IP_VXLAN_BYPASS_N_NEXT, -} ip_vxan_bypass_next_t; +} ip_vxlan_bypass_next_t; always_inline uword ip_vxlan_gpe_bypass_inline (vlib_main_t * vm, @@ -848,10 +866,8 @@ ip_vxlan_gpe_bypass_inline (vlib_main_t * vm, } /* Setup packet for next IP feature */ - vnet_feature_next (vnet_buffer (b0)->sw_if_index[VLIB_RX], &next0, - b0); - vnet_feature_next (vnet_buffer (b1)->sw_if_index[VLIB_RX], &next1, - b1); + vnet_feature_next (&next0, b0); + vnet_feature_next (&next1, b1); if (is_ip4) { @@ -1064,8 +1080,7 @@ ip_vxlan_gpe_bypass_inline (vlib_main_t * vm, ip60 = vlib_buffer_get_current (b0); /* Setup packet for next IP feature */ - vnet_feature_next (vnet_buffer (b0)->sw_if_index[VLIB_RX], &next0, - b0); + vnet_feature_next (&next0, b0); if (is_ip4) proto0 = ip40->protocol; @@ -1168,16 +1183,15 @@ ip_vxlan_gpe_bypass_inline (vlib_main_t * vm, return frame->n_vectors; } -static uword -ip4_vxlan_gpe_bypass (vlib_main_t * vm, - vlib_node_runtime_t * node, vlib_frame_t * frame) +VLIB_NODE_FN (ip4_vxlan_gpe_bypass_node) (vlib_main_t * vm, + vlib_node_runtime_t * node, + vlib_frame_t * frame) { return ip_vxlan_gpe_bypass_inline (vm, node, frame, /* is_ip4 */ 1); } /* *INDENT-OFF* */ VLIB_REGISTER_NODE (ip4_vxlan_gpe_bypass_node) = { - .function = ip4_vxlan_gpe_bypass, .name = "ip4-vxlan-gpe-bypass", .vector_size = sizeof (u32), @@ -1192,25 +1206,26 @@ VLIB_REGISTER_NODE (ip4_vxlan_gpe_bypass_node) = { }; /* *INDENT-ON* */ -VLIB_NODE_FUNCTION_MULTIARCH (ip4_vxlan_gpe_bypass_node, ip4_vxlan_gpe_bypass) +#ifndef CLIB_MARCH_VARIANT /* Dummy init function to get us linked in. */ - clib_error_t *ip4_vxlan_gpe_bypass_init (vlib_main_t * vm) +clib_error_t * +ip4_vxlan_gpe_bypass_init (vlib_main_t * vm) { return 0; } VLIB_INIT_FUNCTION (ip4_vxlan_gpe_bypass_init); +#endif /* CLIB_MARCH_VARIANT */ -static uword -ip6_vxlan_gpe_bypass (vlib_main_t * vm, - vlib_node_runtime_t * node, vlib_frame_t * frame) +VLIB_NODE_FN (ip6_vxlan_gpe_bypass_node) (vlib_main_t * vm, + vlib_node_runtime_t * node, + vlib_frame_t * frame) { return ip_vxlan_gpe_bypass_inline (vm, node, frame, /* is_ip4 */ 0); } /* *INDENT-OFF* */ VLIB_REGISTER_NODE (ip6_vxlan_gpe_bypass_node) = { - .function = ip6_vxlan_gpe_bypass, .name = "ip6-vxlan-gpe-bypass", .vector_size = sizeof (u32), @@ -1225,14 +1240,16 @@ VLIB_REGISTER_NODE (ip6_vxlan_gpe_bypass_node) = { }; /* *INDENT-ON* */ -VLIB_NODE_FUNCTION_MULTIARCH (ip6_vxlan_gpe_bypass_node, ip6_vxlan_gpe_bypass) +#ifndef CLIB_MARCH_VARIANT /* Dummy init function to get us linked in. */ - clib_error_t *ip6_vxlan_gpe_bypass_init (vlib_main_t * vm) +clib_error_t * +ip6_vxlan_gpe_bypass_init (vlib_main_t * vm) { return 0; } VLIB_INIT_FUNCTION (ip6_vxlan_gpe_bypass_init); +#endif /* CLIB_MARCH_VARIANT */ /* * fd.io coding-style-patch-verification: ON