blob: e838c038f936db337b56554983cfc061b39b8caf [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * decap.c: vxlan tunnel decap packet processing
3 *
4 * Copyright (c) 2013 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <vlib/vlib.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070019#include <vnet/vxlan/vxlan.h>
Florin Corasb040f982020-10-20 14:59:43 -070020#include <vnet/udp/udp_local.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070021
Eyal Baria5679e82018-08-26 15:20:07 +030022#ifndef CLIB_MARCH_VARIANT
John Lo13e3d452016-08-09 19:20:51 -040023vlib_node_registration_t vxlan4_input_node;
24vlib_node_registration_t vxlan6_input_node;
Eyal Baria5679e82018-08-26 15:20:07 +030025#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -070026
Eyal Bari7d92c092018-07-24 15:15:37 +030027typedef struct
28{
Ed Warnickecb9cada2015-12-08 15:45:58 -070029 u32 next_index;
30 u32 tunnel_index;
31 u32 error;
32 u32 vni;
33} vxlan_rx_trace_t;
34
Eyal Bari7d92c092018-07-24 15:15:37 +030035static u8 *
36format_vxlan_rx_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070037{
38 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
39 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Eyal Bari7d92c092018-07-24 15:15:37 +030040 vxlan_rx_trace_t *t = va_arg (*args, vxlan_rx_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070041
Eyal Bari7d92c092018-07-24 15:15:37 +030042 if (t->tunnel_index == ~0)
43 return format (s, "VXLAN decap error - tunnel for vni %d does not exist",
44 t->vni);
45 return format (s, "VXLAN decap from vxlan_tunnel%d vni %d next %d error %d",
46 t->tunnel_index, t->vni, t->next_index, t->error);
Ed Warnickecb9cada2015-12-08 15:45:58 -070047}
48
Eyal Baridd47eca2018-07-08 08:15:56 +030049typedef vxlan4_tunnel_key_t last_tunnel_cache4;
Eyal Bari0f4b1842018-04-12 12:39:51 +030050
Eyal Bariefd9cf32018-10-02 12:23:06 +030051static const vxlan_decap_info_t decap_not_found = {
52 .sw_if_index = ~0,
53 .next_index = VXLAN_INPUT_NEXT_DROP,
54 .error = VXLAN_ERROR_NO_SUCH_TUNNEL
55};
56
57static const vxlan_decap_info_t decap_bad_flags = {
58 .sw_if_index = ~0,
59 .next_index = VXLAN_INPUT_NEXT_DROP,
60 .error = VXLAN_ERROR_BAD_FLAGS
61};
62
63always_inline vxlan_decap_info_t
Eyal Bari0f4b1842018-04-12 12:39:51 +030064vxlan4_find_tunnel (vxlan_main_t * vxm, last_tunnel_cache4 * cache,
Eyal Bari7d92c092018-07-24 15:15:37 +030065 u32 fib_index, ip4_header_t * ip4_0,
Eyal Bariefd9cf32018-10-02 12:23:06 +030066 vxlan_header_t * vxlan0, u32 * stats_sw_if_index)
Eyal Bari0f4b1842018-04-12 12:39:51 +030067{
Eyal Bariefd9cf32018-10-02 12:23:06 +030068 if (PREDICT_FALSE (vxlan0->flags != VXLAN_FLAGS_I))
69 return decap_bad_flags;
Eyal Bari0f4b1842018-04-12 12:39:51 +030070
Eyal Bariefd9cf32018-10-02 12:23:06 +030071 /* Make sure VXLAN tunnel exist according to packet S/D IP, VRF, and VNI */
72 u32 dst = ip4_0->dst_address.as_u32;
73 u32 src = ip4_0->src_address.as_u32;
74 vxlan4_tunnel_key_t key4 = {
75 .key[0] = ((u64) dst << 32) | src,
76 .key[1] = ((u64) fib_index << 32) | vxlan0->vni_reserved,
77 };
78
79 if (PREDICT_TRUE
Eyal Bari9be7c6d2018-10-17 17:13:42 +030080 (key4.key[0] == cache->key[0] && key4.key[1] == cache->key[1]))
Eyal Bari7d92c092018-07-24 15:15:37 +030081 {
Eyal Bariefd9cf32018-10-02 12:23:06 +030082 /* cache hit */
83 vxlan_decap_info_t di = {.as_u64 = cache->value };
84 *stats_sw_if_index = di.sw_if_index;
85 return di;
86 }
Eyal Bari0f4b1842018-04-12 12:39:51 +030087
Eyal Bariefd9cf32018-10-02 12:23:06 +030088 int rv = clib_bihash_search_inline_16_8 (&vxm->vxlan4_tunnel_by_key, &key4);
89 if (PREDICT_TRUE (rv == 0))
90 {
Eyal Bari7d92c092018-07-24 15:15:37 +030091 *cache = key4;
Eyal Bariefd9cf32018-10-02 12:23:06 +030092 vxlan_decap_info_t di = {.as_u64 = key4.value };
93 *stats_sw_if_index = di.sw_if_index;
94 return di;
Eyal Bari7d92c092018-07-24 15:15:37 +030095 }
Eyal Bari0f4b1842018-04-12 12:39:51 +030096
Eyal Bariefd9cf32018-10-02 12:23:06 +030097 /* try multicast */
98 if (PREDICT_TRUE (!ip4_address_is_multicast (&ip4_0->dst_address)))
99 return decap_not_found;
100
101 /* search for mcast decap info by mcast address */
102 key4.key[0] = dst;
103 rv = clib_bihash_search_inline_16_8 (&vxm->vxlan4_tunnel_by_key, &key4);
104 if (rv != 0)
105 return decap_not_found;
106
107 /* search for unicast tunnel using the mcast tunnel local(src) ip */
108 vxlan_decap_info_t mdi = {.as_u64 = key4.value };
109 key4.key[0] = ((u64) mdi.local_ip.as_u32 << 32) | src;
110 rv = clib_bihash_search_inline_16_8 (&vxm->vxlan4_tunnel_by_key, &key4);
111 if (PREDICT_FALSE (rv != 0))
112 return decap_not_found;
113
114 /* mcast traffic does not update the cache */
115 *stats_sw_if_index = mdi.sw_if_index;
116 vxlan_decap_info_t di = {.as_u64 = key4.value };
117 return di;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300118}
119
Eyal Bari0fa56782018-06-04 12:25:05 +0300120typedef vxlan6_tunnel_key_t last_tunnel_cache6;
121
Eyal Bariefd9cf32018-10-02 12:23:06 +0300122always_inline vxlan_decap_info_t
Eyal Bari0f4b1842018-04-12 12:39:51 +0300123vxlan6_find_tunnel (vxlan_main_t * vxm, last_tunnel_cache6 * cache,
Eyal Bari7d92c092018-07-24 15:15:37 +0300124 u32 fib_index, ip6_header_t * ip6_0,
Eyal Bariefd9cf32018-10-02 12:23:06 +0300125 vxlan_header_t * vxlan0, u32 * stats_sw_if_index)
Eyal Bari0f4b1842018-04-12 12:39:51 +0300126{
Eyal Bariefd9cf32018-10-02 12:23:06 +0300127 if (PREDICT_FALSE (vxlan0->flags != VXLAN_FLAGS_I))
128 return decap_bad_flags;
129
Eyal Bari0f4b1842018-04-12 12:39:51 +0300130 /* Make sure VXLAN tunnel exist according to packet SIP and VNI */
Eyal Bari0fa56782018-06-04 12:25:05 +0300131 vxlan6_tunnel_key_t key6 = {
Eyal Bariefd9cf32018-10-02 12:23:06 +0300132 .key[0] = ip6_0->src_address.as_u64[0],
133 .key[1] = ip6_0->src_address.as_u64[1],
134 .key[2] = (((u64) fib_index) << 32) | vxlan0->vni_reserved,
Eyal Bari0f4b1842018-04-12 12:39:51 +0300135 };
136
Eyal Bari7d92c092018-07-24 15:15:37 +0300137 if (PREDICT_FALSE
138 (clib_bihash_key_compare_24_8 (key6.key, cache->key) == 0))
139 {
140 int rv =
141 clib_bihash_search_inline_24_8 (&vxm->vxlan6_tunnel_by_key, &key6);
142 if (PREDICT_FALSE (rv != 0))
Eyal Bariefd9cf32018-10-02 12:23:06 +0300143 return decap_not_found;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300144
Eyal Bari7d92c092018-07-24 15:15:37 +0300145 *cache = key6;
146 }
147 vxlan_tunnel_t *t0 = pool_elt_at_index (vxm->tunnels, cache->value);
Eyal Bari0f4b1842018-04-12 12:39:51 +0300148
149 /* Validate VXLAN tunnel SIP against packet DIP */
150 if (PREDICT_TRUE (ip6_address_is_equal (&ip6_0->dst_address, &t0->src.ip6)))
Eyal Bariefd9cf32018-10-02 12:23:06 +0300151 *stats_sw_if_index = t0->sw_if_index;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300152 else
Eyal Bari7d92c092018-07-24 15:15:37 +0300153 {
154 /* try multicast */
155 if (PREDICT_TRUE (!ip6_address_is_multicast (&ip6_0->dst_address)))
Eyal Bariefd9cf32018-10-02 12:23:06 +0300156 return decap_not_found;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300157
Eyal Bari7d92c092018-07-24 15:15:37 +0300158 /* Make sure mcast VXLAN tunnel exist by packet DIP and VNI */
159 key6.key[0] = ip6_0->dst_address.as_u64[0];
160 key6.key[1] = ip6_0->dst_address.as_u64[1];
161 int rv =
162 clib_bihash_search_inline_24_8 (&vxm->vxlan6_tunnel_by_key, &key6);
163 if (PREDICT_FALSE (rv != 0))
Eyal Bariefd9cf32018-10-02 12:23:06 +0300164 return decap_not_found;
Eyal Bari0fa56782018-06-04 12:25:05 +0300165
Eyal Bariefd9cf32018-10-02 12:23:06 +0300166 vxlan_tunnel_t *mcast_t0 = pool_elt_at_index (vxm->tunnels, key6.value);
167 *stats_sw_if_index = mcast_t0->sw_if_index;
Eyal Bari7d92c092018-07-24 15:15:37 +0300168 }
Eyal Bari0f4b1842018-04-12 12:39:51 +0300169
Eyal Bariefd9cf32018-10-02 12:23:06 +0300170 vxlan_decap_info_t di = {
171 .sw_if_index = t0->sw_if_index,
172 .next_index = t0->decap_next_index,
173 };
174 return di;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300175}
176
Chris Luke99cb3352016-04-26 10:49:53 -0400177always_inline uword
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178vxlan_input (vlib_main_t * vm,
Eyal Bari7d92c092018-07-24 15:15:37 +0300179 vlib_node_runtime_t * node,
180 vlib_frame_t * from_frame, u32 is_ip4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181{
Eyal Bari7d92c092018-07-24 15:15:37 +0300182 vxlan_main_t *vxm = &vxlan_main;
183 vnet_main_t *vnm = vxm->vnet_main;
184 vnet_interface_main_t *im = &vnm->interface_main;
185 vlib_combined_counter_main_t *rx_counter =
186 im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_RX;
Eyal Baridd47eca2018-07-08 08:15:56 +0300187 last_tunnel_cache4 last4;
Eyal Bari0fa56782018-06-04 12:25:05 +0300188 last_tunnel_cache6 last6;
Eyal Baria5679e82018-08-26 15:20:07 +0300189 u32 pkts_dropped = 0;
Eyal Bari7d92c092018-07-24 15:15:37 +0300190 u32 thread_index = vlib_get_thread_index ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191
Dave Barachf9c231e2016-08-05 10:10:18 -0400192 if (is_ip4)
Dave Barachb7b92992018-10-17 10:38:51 -0400193 clib_memset (&last4, 0xff, sizeof last4);
Dave Barachf9c231e2016-08-05 10:10:18 -0400194 else
Dave Barachb7b92992018-10-17 10:38:51 -0400195 clib_memset (&last6, 0xff, sizeof last6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196
Eyal Bari7d92c092018-07-24 15:15:37 +0300197 u32 *from = vlib_frame_vector_args (from_frame);
Eyal Barifb663012017-10-19 15:27:51 +0300198 u32 n_left_from = from_frame->n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199
Eyal Baria5679e82018-08-26 15:20:07 +0300200 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
201 vlib_get_buffers (vm, from, bufs, n_left_from);
202
Eyal Bariefd9cf32018-10-02 12:23:06 +0300203 u32 stats_if0 = ~0, stats_if1 = ~0;
Eyal Baria5679e82018-08-26 15:20:07 +0300204 u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
205 while (n_left_from >= 4)
206 {
207 /* Prefetch next iteration. */
208 vlib_prefetch_buffer_header (b[2], LOAD);
209 vlib_prefetch_buffer_header (b[3], LOAD);
210
211 /* udp leaves current_data pointing at the vxlan header */
212 void *cur0 = vlib_buffer_get_current (b[0]);
213 void *cur1 = vlib_buffer_get_current (b[1]);
214 vxlan_header_t *vxlan0 = cur0;
215 vxlan_header_t *vxlan1 = cur1;
216
Eyal Baria5679e82018-08-26 15:20:07 +0300217
218 ip4_header_t *ip4_0, *ip4_1;
219 ip6_header_t *ip6_0, *ip6_1;
220 if (is_ip4)
221 {
222 ip4_0 = cur0 - sizeof (udp_header_t) - sizeof (ip4_header_t);
223 ip4_1 = cur1 - sizeof (udp_header_t) - sizeof (ip4_header_t);
224 }
225 else
226 {
227 ip6_0 = cur0 - sizeof (udp_header_t) - sizeof (ip6_header_t);
228 ip6_1 = cur1 - sizeof (udp_header_t) - sizeof (ip6_header_t);
229 }
230
231 /* pop vxlan */
232 vlib_buffer_advance (b[0], sizeof *vxlan0);
233 vlib_buffer_advance (b[1], sizeof *vxlan1);
234
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000235 u32 fi0 = vlib_buffer_get_ip_fib_index (b[0], is_ip4);
236 u32 fi1 = vlib_buffer_get_ip_fib_index (b[1], is_ip4);
Eyal Baria5679e82018-08-26 15:20:07 +0300237
Eyal Bariefd9cf32018-10-02 12:23:06 +0300238 vxlan_decap_info_t di0 = is_ip4 ?
239 vxlan4_find_tunnel (vxm, &last4, fi0, ip4_0, vxlan0, &stats_if0) :
240 vxlan6_find_tunnel (vxm, &last6, fi0, ip6_0, vxlan0, &stats_if0);
241 vxlan_decap_info_t di1 = is_ip4 ?
242 vxlan4_find_tunnel (vxm, &last4, fi1, ip4_1, vxlan1, &stats_if1) :
243 vxlan6_find_tunnel (vxm, &last6, fi1, ip6_1, vxlan1, &stats_if1);
Eyal Baria5679e82018-08-26 15:20:07 +0300244
245 /* Prefetch next iteration. */
246 CLIB_PREFETCH (b[2]->data, CLIB_CACHE_LINE_BYTES, LOAD);
247 CLIB_PREFETCH (b[3]->data, CLIB_CACHE_LINE_BYTES, LOAD);
248
249 u32 len0 = vlib_buffer_length_in_chain (vm, b[0]);
250 u32 len1 = vlib_buffer_length_in_chain (vm, b[1]);
251
Eyal Bariefd9cf32018-10-02 12:23:06 +0300252 next[0] = di0.next_index;
253 next[1] = di1.next_index;
Eyal Baria5679e82018-08-26 15:20:07 +0300254
Eyal Bariefd9cf32018-10-02 12:23:06 +0300255 u8 any_error = di0.error | di1.error;
256 if (PREDICT_TRUE (any_error == 0))
257 {
258 /* Required to make the l2 tag push / pop code work on l2 subifs */
259 vnet_update_l2_len (b[0]);
260 vnet_update_l2_len (b[1]);
261 /* Set packet input sw_if_index to unicast VXLAN tunnel for learning */
262 vnet_buffer (b[0])->sw_if_index[VLIB_RX] = di0.sw_if_index;
263 vnet_buffer (b[1])->sw_if_index[VLIB_RX] = di1.sw_if_index;
264 vlib_increment_combined_counter (rx_counter, thread_index,
265 stats_if0, 1, len0);
266 vlib_increment_combined_counter (rx_counter, thread_index,
267 stats_if1, 1, len1);
Eyal Baria5679e82018-08-26 15:20:07 +0300268 }
269 else
270 {
Eyal Bariefd9cf32018-10-02 12:23:06 +0300271 if (di0.error == 0)
Eyal Baria5679e82018-08-26 15:20:07 +0300272 {
Eyal Bariefd9cf32018-10-02 12:23:06 +0300273 vnet_update_l2_len (b[0]);
274 vnet_buffer (b[0])->sw_if_index[VLIB_RX] = di0.sw_if_index;
275 vlib_increment_combined_counter (rx_counter, thread_index,
276 stats_if0, 1, len0);
Eyal Baria5679e82018-08-26 15:20:07 +0300277 }
Eyal Bariefd9cf32018-10-02 12:23:06 +0300278 else
279 {
280 b[0]->error = node->errors[di0.error];
281 pkts_dropped++;
282 }
Eyal Baria5679e82018-08-26 15:20:07 +0300283
Eyal Bariefd9cf32018-10-02 12:23:06 +0300284 if (di1.error == 0)
285 {
286 vnet_update_l2_len (b[1]);
287 vnet_buffer (b[1])->sw_if_index[VLIB_RX] = di1.sw_if_index;
288 vlib_increment_combined_counter (rx_counter, thread_index,
289 stats_if1, 1, len1);
290 }
291 else
292 {
293 b[1]->error = node->errors[di1.error];
294 pkts_dropped++;
295 }
Eyal Baria5679e82018-08-26 15:20:07 +0300296 }
297
298 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
299 {
300 vxlan_rx_trace_t *tr =
301 vlib_add_trace (vm, node, b[0], sizeof (*tr));
302 tr->next_index = next[0];
Eyal Bariefd9cf32018-10-02 12:23:06 +0300303 tr->error = di0.error;
304 tr->tunnel_index = di0.sw_if_index == ~0 ?
305 ~0 : vxm->tunnel_index_by_sw_if_index[di0.sw_if_index];
Eyal Baria5679e82018-08-26 15:20:07 +0300306 tr->vni = vnet_get_vni (vxlan0);
307 }
308 if (PREDICT_FALSE (b[1]->flags & VLIB_BUFFER_IS_TRACED))
309 {
310 vxlan_rx_trace_t *tr =
311 vlib_add_trace (vm, node, b[1], sizeof (*tr));
312 tr->next_index = next[1];
Eyal Bariefd9cf32018-10-02 12:23:06 +0300313 tr->error = di1.error;
314 tr->tunnel_index = di1.sw_if_index == ~0 ?
315 ~0 : vxm->tunnel_index_by_sw_if_index[di1.sw_if_index];
Eyal Baria5679e82018-08-26 15:20:07 +0300316 tr->vni = vnet_get_vni (vxlan1);
317 }
318 b += 2;
319 next += 2;
320 n_left_from -= 2;
321 }
322
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323 while (n_left_from > 0)
324 {
Eyal Baria5679e82018-08-26 15:20:07 +0300325 /* udp leaves current_data pointing at the vxlan header */
326 void *cur0 = vlib_buffer_get_current (b[0]);
327 vxlan_header_t *vxlan0 = cur0;
Eyal Baria5679e82018-08-26 15:20:07 +0300328 ip4_header_t *ip4_0;
329 ip6_header_t *ip6_0;
330 if (is_ip4)
331 ip4_0 = cur0 - sizeof (udp_header_t) - sizeof (ip4_header_t);
332 else
333 ip6_0 = cur0 - sizeof (udp_header_t) - sizeof (ip6_header_t);
Eyal Barifb663012017-10-19 15:27:51 +0300334
Eyal Baria5679e82018-08-26 15:20:07 +0300335 /* pop (ip, udp, vxlan) */
336 vlib_buffer_advance (b[0], sizeof (*vxlan0));
337
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000338 u32 fi0 = vlib_buffer_get_ip_fib_index (b[0], is_ip4);
Eyal Baria5679e82018-08-26 15:20:07 +0300339
Eyal Bariefd9cf32018-10-02 12:23:06 +0300340 vxlan_decap_info_t di0 = is_ip4 ?
341 vxlan4_find_tunnel (vxm, &last4, fi0, ip4_0, vxlan0, &stats_if0) :
342 vxlan6_find_tunnel (vxm, &last6, fi0, ip6_0, vxlan0, &stats_if0);
Eyal Baria5679e82018-08-26 15:20:07 +0300343
Eyal Baria5679e82018-08-26 15:20:07 +0300344 uword len0 = vlib_buffer_length_in_chain (vm, b[0]);
345
Eyal Bariefd9cf32018-10-02 12:23:06 +0300346 next[0] = di0.next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347
Eyal Bariefd9cf32018-10-02 12:23:06 +0300348 /* Validate VXLAN tunnel encap-fib index against packet */
349 if (di0.error == 0)
350 {
351 /* Required to make the l2 tag push / pop code work on l2 subifs */
352 vnet_update_l2_len (b[0]);
353
354 /* Set packet input sw_if_index to unicast VXLAN tunnel for learning */
355 vnet_buffer (b[0])->sw_if_index[VLIB_RX] = di0.sw_if_index;
356
357 vlib_increment_combined_counter (rx_counter, thread_index,
358 stats_if0, 1, len0);
Eyal Baria5679e82018-08-26 15:20:07 +0300359 }
360 else
361 {
Eyal Bariefd9cf32018-10-02 12:23:06 +0300362 b[0]->error = node->errors[di0.error];
363 pkts_dropped++;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700364 }
365
Eyal Baria5679e82018-08-26 15:20:07 +0300366 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367 {
Eyal Baria5679e82018-08-26 15:20:07 +0300368 vxlan_rx_trace_t *tr
369 = vlib_add_trace (vm, node, b[0], sizeof (*tr));
370 tr->next_index = next[0];
Eyal Bariefd9cf32018-10-02 12:23:06 +0300371 tr->error = di0.error;
372 tr->tunnel_index = di0.sw_if_index == ~0 ?
373 ~0 : vxm->tunnel_index_by_sw_if_index[di0.sw_if_index];
Eyal Baria5679e82018-08-26 15:20:07 +0300374 tr->vni = vnet_get_vni (vxlan0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375 }
Eyal Baria5679e82018-08-26 15:20:07 +0300376 b += 1;
377 next += 1;
378 n_left_from -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379 }
Eyal Baria5679e82018-08-26 15:20:07 +0300380 vlib_buffer_enqueue_to_next (vm, node, from, nexts, from_frame->n_vectors);
Eyal Barifb663012017-10-19 15:27:51 +0300381 /* Do we still need this now that tunnel tx stats is kept? */
382 u32 node_idx = is_ip4 ? vxlan4_input_node.index : vxlan6_input_node.index;
383 vlib_node_increment_counter (vm, node_idx, VXLAN_ERROR_DECAPSULATED,
Eyal Baria5679e82018-08-26 15:20:07 +0300384 from_frame->n_vectors - pkts_dropped);
Eyal Barifb663012017-10-19 15:27:51 +0300385
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386 return from_frame->n_vectors;
387}
388
Eyal Baria5679e82018-08-26 15:20:07 +0300389VLIB_NODE_FN (vxlan4_input_node) (vlib_main_t * vm,
390 vlib_node_runtime_t * node,
391 vlib_frame_t * from_frame)
Chris Luke99cb3352016-04-26 10:49:53 -0400392{
Eyal Bari7d92c092018-07-24 15:15:37 +0300393 return vxlan_input (vm, node, from_frame, /* is_ip4 */ 1);
Chris Luke99cb3352016-04-26 10:49:53 -0400394}
395
Eyal Baria5679e82018-08-26 15:20:07 +0300396VLIB_NODE_FN (vxlan6_input_node) (vlib_main_t * vm,
397 vlib_node_runtime_t * node,
398 vlib_frame_t * from_frame)
Chris Luke99cb3352016-04-26 10:49:53 -0400399{
Eyal Bari7d92c092018-07-24 15:15:37 +0300400 return vxlan_input (vm, node, from_frame, /* is_ip4 */ 0);
Chris Luke99cb3352016-04-26 10:49:53 -0400401}
402
Eyal Bari7d92c092018-07-24 15:15:37 +0300403static char *vxlan_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700404#define vxlan_error(n,s) s,
405#include <vnet/vxlan/vxlan_error.def>
406#undef vxlan_error
Ed Warnickecb9cada2015-12-08 15:45:58 -0700407};
408
Eyal Bari7d92c092018-07-24 15:15:37 +0300409/* *INDENT-OFF* */
410VLIB_REGISTER_NODE (vxlan4_input_node) =
411{
Chris Luke99cb3352016-04-26 10:49:53 -0400412 .name = "vxlan4-input",
Chris Luke99cb3352016-04-26 10:49:53 -0400413 .vector_size = sizeof (u32),
Chris Luke99cb3352016-04-26 10:49:53 -0400414 .n_errors = VXLAN_N_ERROR,
415 .error_strings = vxlan_error_strings,
Chris Luke99cb3352016-04-26 10:49:53 -0400416 .n_next_nodes = VXLAN_INPUT_N_NEXT,
Eyal Bari7d92c092018-07-24 15:15:37 +0300417 .format_trace = format_vxlan_rx_trace,
Chris Luke99cb3352016-04-26 10:49:53 -0400418 .next_nodes = {
419#define _(s,n) [VXLAN_INPUT_NEXT_##s] = n,
420 foreach_vxlan_input_next
421#undef _
422 },
Chris Luke99cb3352016-04-26 10:49:53 -0400423};
Damjan Marion1c80e832016-05-11 23:07:18 +0200424
Eyal Bari7d92c092018-07-24 15:15:37 +0300425VLIB_REGISTER_NODE (vxlan6_input_node) =
426{
Chris Luke99cb3352016-04-26 10:49:53 -0400427 .name = "vxlan6-input",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429 .n_errors = VXLAN_N_ERROR,
430 .error_strings = vxlan_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431 .n_next_nodes = VXLAN_INPUT_N_NEXT,
432 .next_nodes = {
433#define _(s,n) [VXLAN_INPUT_NEXT_##s] = n,
434 foreach_vxlan_input_next
435#undef _
436 },
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437 .format_trace = format_vxlan_rx_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438};
Eyal Bari7d92c092018-07-24 15:15:37 +0300439/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +0200440
Eyal Bari7d92c092018-07-24 15:15:37 +0300441typedef enum
442{
John Lo37682e12016-11-30 12:51:39 -0500443 IP_VXLAN_BYPASS_NEXT_DROP,
444 IP_VXLAN_BYPASS_NEXT_VXLAN,
445 IP_VXLAN_BYPASS_N_NEXT,
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700446} ip_vxlan_bypass_next_t;
John Lo37682e12016-11-30 12:51:39 -0500447
448always_inline uword
449ip_vxlan_bypass_inline (vlib_main_t * vm,
John Lo2b81eb82017-01-30 13:12:10 -0500450 vlib_node_runtime_t * node,
Eyal Bari7d92c092018-07-24 15:15:37 +0300451 vlib_frame_t * frame, u32 is_ip4)
John Lo37682e12016-11-30 12:51:39 -0500452{
Eyal Bari7d92c092018-07-24 15:15:37 +0300453 vxlan_main_t *vxm = &vxlan_main;
454 u32 *from, *to_next, n_left_from, n_left_to_next, next_index;
455 vlib_node_runtime_t *error_node =
456 vlib_node_get_runtime (vm, ip4_input_node.index);
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000457 vtep4_key_t last_vtep4; /* last IPv4 address / fib index
458 matching a local VTEP address */
459 vtep6_key_t last_vtep6; /* last IPv6 address / fib index
460 matching a local VTEP address */
Zhiyong Yang5e524172020-07-08 20:28:36 +0000461 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
462
463#ifdef CLIB_HAVE_VEC512
464 vtep4_cache_t vtep4_u512;
465 clib_memset (&vtep4_u512, 0, sizeof (vtep4_u512));
466#endif
John Lo37682e12016-11-30 12:51:39 -0500467
468 from = vlib_frame_vector_args (frame);
469 n_left_from = frame->n_vectors;
470 next_index = node->cached_next_index;
471
Zhiyong Yang5e524172020-07-08 20:28:36 +0000472 vlib_get_buffers (vm, from, bufs, n_left_from);
473
John Lo37682e12016-11-30 12:51:39 -0500474 if (node->flags & VLIB_NODE_FLAG_TRACE)
475 ip4_forward_next_trace (vm, node, frame, VLIB_TX);
476
Eyal Bari7d92c092018-07-24 15:15:37 +0300477 if (is_ip4)
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000478 vtep4_key_init (&last_vtep4);
Eyal Bari7d92c092018-07-24 15:15:37 +0300479 else
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000480 vtep6_key_init (&last_vtep6);
John Lo37682e12016-11-30 12:51:39 -0500481
482 while (n_left_from > 0)
483 {
484 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
485
486 while (n_left_from >= 4 && n_left_to_next >= 2)
Eyal Bari7d92c092018-07-24 15:15:37 +0300487 {
488 vlib_buffer_t *b0, *b1;
489 ip4_header_t *ip40, *ip41;
490 ip6_header_t *ip60, *ip61;
491 udp_header_t *udp0, *udp1;
492 u32 bi0, ip_len0, udp_len0, flags0, next0;
493 u32 bi1, ip_len1, udp_len1, flags1, next1;
494 i32 len_diff0, len_diff1;
495 u8 error0, good_udp0, proto0;
496 u8 error1, good_udp1, proto1;
John Lo37682e12016-11-30 12:51:39 -0500497
498 /* Prefetch next iteration. */
499 {
Zhiyong Yang5e524172020-07-08 20:28:36 +0000500 vlib_prefetch_buffer_header (b[2], LOAD);
501 vlib_prefetch_buffer_header (b[3], LOAD);
John Lo37682e12016-11-30 12:51:39 -0500502
Zhiyong Yang5e524172020-07-08 20:28:36 +0000503 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
504 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
John Lo37682e12016-11-30 12:51:39 -0500505 }
506
Eyal Bari7d92c092018-07-24 15:15:37 +0300507 bi0 = to_next[0] = from[0];
508 bi1 = to_next[1] = from[1];
509 from += 2;
510 n_left_from -= 2;
511 to_next += 2;
512 n_left_to_next -= 2;
John Lo37682e12016-11-30 12:51:39 -0500513
Zhiyong Yang5e524172020-07-08 20:28:36 +0000514 b0 = b[0];
515 b1 = b[1];
516 b += 2;
John Lo2b81eb82017-01-30 13:12:10 -0500517 if (is_ip4)
518 {
519 ip40 = vlib_buffer_get_current (b0);
520 ip41 = vlib_buffer_get_current (b1);
521 }
522 else
523 {
524 ip60 = vlib_buffer_get_current (b0);
525 ip61 = vlib_buffer_get_current (b1);
526 }
John Lo37682e12016-11-30 12:51:39 -0500527
528 /* Setup packet for next IP feature */
Eyal Bari7d92c092018-07-24 15:15:37 +0300529 vnet_feature_next (&next0, b0);
530 vnet_feature_next (&next1, b1);
John Lo37682e12016-11-30 12:51:39 -0500531
John Lo2b81eb82017-01-30 13:12:10 -0500532 if (is_ip4)
533 {
534 /* Treat IP frag packets as "experimental" protocol for now
Eyal Bari7d92c092018-07-24 15:15:37 +0300535 until support of IP frag reassembly is implemented */
536 proto0 = ip4_is_fragment (ip40) ? 0xfe : ip40->protocol;
537 proto1 = ip4_is_fragment (ip41) ? 0xfe : ip41->protocol;
John Lo2b81eb82017-01-30 13:12:10 -0500538 }
539 else
540 {
541 proto0 = ip60->protocol;
542 proto1 = ip61->protocol;
543 }
John Lo37682e12016-11-30 12:51:39 -0500544
545 /* Process packet 0 */
546 if (proto0 != IP_PROTOCOL_UDP)
Eyal Bari7d92c092018-07-24 15:15:37 +0300547 goto exit0; /* not UDP packet */
John Lo37682e12016-11-30 12:51:39 -0500548
John Lo2b81eb82017-01-30 13:12:10 -0500549 if (is_ip4)
550 udp0 = ip4_next_header (ip40);
551 else
552 udp0 = ip6_next_header (ip60);
553
John Lo37682e12016-11-30 12:51:39 -0500554 if (udp0->dst_port != clib_host_to_net_u16 (UDP_DST_PORT_vxlan))
Eyal Bari7d92c092018-07-24 15:15:37 +0300555 goto exit0; /* not VXLAN packet */
John Lo37682e12016-11-30 12:51:39 -0500556
Eyal Bari7d92c092018-07-24 15:15:37 +0300557 /* Validate DIP against VTEPs */
Eyal Bari0f4b1842018-04-12 12:39:51 +0300558 if (is_ip4)
John Lo37682e12016-11-30 12:51:39 -0500559 {
Zhiyong Yang5e524172020-07-08 20:28:36 +0000560#ifdef CLIB_HAVE_VEC512
561 if (!vtep4_check_vector
562 (&vxm->vtep_table, b0, ip40, &last_vtep4, &vtep4_u512))
563#else
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000564 if (!vtep4_check (&vxm->vtep_table, b0, ip40, &last_vtep4))
Zhiyong Yang5e524172020-07-08 20:28:36 +0000565#endif
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000566 goto exit0; /* no local VTEP for VXLAN packet */
John Lo37682e12016-11-30 12:51:39 -0500567 }
John Lo2b81eb82017-01-30 13:12:10 -0500568 else
569 {
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000570 if (!vtep6_check (&vxm->vtep_table, b0, ip60, &last_vtep6))
571 goto exit0; /* no local VTEP for VXLAN packet */
John Lo2b81eb82017-01-30 13:12:10 -0500572 }
John Lo37682e12016-11-30 12:51:39 -0500573
574 flags0 = b0->flags;
Damjan Marion213b5aa2017-07-13 21:19:27 +0200575 good_udp0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
John Lo37682e12016-11-30 12:51:39 -0500576
577 /* Don't verify UDP checksum for packets with explicit zero checksum. */
578 good_udp0 |= udp0->checksum == 0;
579
580 /* Verify UDP length */
John Lo2b81eb82017-01-30 13:12:10 -0500581 if (is_ip4)
582 ip_len0 = clib_net_to_host_u16 (ip40->length);
583 else
584 ip_len0 = clib_net_to_host_u16 (ip60->payload_length);
John Lo37682e12016-11-30 12:51:39 -0500585 udp_len0 = clib_net_to_host_u16 (udp0->length);
John Lo37682e12016-11-30 12:51:39 -0500586 len_diff0 = ip_len0 - udp_len0;
587
588 /* Verify UDP checksum */
589 if (PREDICT_FALSE (!good_udp0))
590 {
Zhiyong Yang47ea4c32020-06-10 13:23:50 +0000591 if (is_ip4)
592 flags0 = ip4_tcp_udp_validate_checksum (vm, b0);
593 else
594 flags0 = ip6_tcp_udp_icmp_validate_checksum (vm, b0);
595 good_udp0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
John Lo37682e12016-11-30 12:51:39 -0500596 }
597
John Lo2b81eb82017-01-30 13:12:10 -0500598 if (is_ip4)
599 {
600 error0 = good_udp0 ? 0 : IP4_ERROR_UDP_CHECKSUM;
601 error0 = (len_diff0 >= 0) ? error0 : IP4_ERROR_UDP_LENGTH;
602 }
603 else
604 {
605 error0 = good_udp0 ? 0 : IP6_ERROR_UDP_CHECKSUM;
606 error0 = (len_diff0 >= 0) ? error0 : IP6_ERROR_UDP_LENGTH;
607 }
John Lo37682e12016-11-30 12:51:39 -0500608
Eyal Bari0f4b1842018-04-12 12:39:51 +0300609 next0 = error0 ?
John Lo37682e12016-11-30 12:51:39 -0500610 IP_VXLAN_BYPASS_NEXT_DROP : IP_VXLAN_BYPASS_NEXT_VXLAN;
611 b0->error = error0 ? error_node->errors[error0] : 0;
612
John Lo2b81eb82017-01-30 13:12:10 -0500613 /* vxlan-input node expect current at VXLAN header */
614 if (is_ip4)
Eyal Bari7d92c092018-07-24 15:15:37 +0300615 vlib_buffer_advance (b0,
616 sizeof (ip4_header_t) +
617 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500618 else
Eyal Bari7d92c092018-07-24 15:15:37 +0300619 vlib_buffer_advance (b0,
620 sizeof (ip6_header_t) +
621 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500622
John Lo37682e12016-11-30 12:51:39 -0500623 exit0:
624 /* Process packet 1 */
625 if (proto1 != IP_PROTOCOL_UDP)
Eyal Bari7d92c092018-07-24 15:15:37 +0300626 goto exit1; /* not UDP packet */
John Lo37682e12016-11-30 12:51:39 -0500627
John Lo2b81eb82017-01-30 13:12:10 -0500628 if (is_ip4)
629 udp1 = ip4_next_header (ip41);
630 else
631 udp1 = ip6_next_header (ip61);
632
John Lo37682e12016-11-30 12:51:39 -0500633 if (udp1->dst_port != clib_host_to_net_u16 (UDP_DST_PORT_vxlan))
Eyal Bari7d92c092018-07-24 15:15:37 +0300634 goto exit1; /* not VXLAN packet */
John Lo37682e12016-11-30 12:51:39 -0500635
Eyal Bari7d92c092018-07-24 15:15:37 +0300636 /* Validate DIP against VTEPs */
Eyal Bari0f4b1842018-04-12 12:39:51 +0300637 if (is_ip4)
John Lo37682e12016-11-30 12:51:39 -0500638 {
Zhiyong Yang5e524172020-07-08 20:28:36 +0000639#ifdef CLIB_HAVE_VEC512
640 if (!vtep4_check_vector
641 (&vxm->vtep_table, b1, ip41, &last_vtep4, &vtep4_u512))
642#else
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000643 if (!vtep4_check (&vxm->vtep_table, b1, ip41, &last_vtep4))
Zhiyong Yang5e524172020-07-08 20:28:36 +0000644#endif
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000645 goto exit1; /* no local VTEP for VXLAN packet */
John Lo37682e12016-11-30 12:51:39 -0500646 }
John Lo2b81eb82017-01-30 13:12:10 -0500647 else
648 {
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000649 if (!vtep6_check (&vxm->vtep_table, b1, ip61, &last_vtep6))
650 goto exit1; /* no local VTEP for VXLAN packet */
John Lo2b81eb82017-01-30 13:12:10 -0500651 }
John Lo37682e12016-11-30 12:51:39 -0500652
653 flags1 = b1->flags;
Damjan Marion213b5aa2017-07-13 21:19:27 +0200654 good_udp1 = (flags1 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
John Lo37682e12016-11-30 12:51:39 -0500655
656 /* Don't verify UDP checksum for packets with explicit zero checksum. */
657 good_udp1 |= udp1->checksum == 0;
658
659 /* Verify UDP length */
John Lo2b81eb82017-01-30 13:12:10 -0500660 if (is_ip4)
661 ip_len1 = clib_net_to_host_u16 (ip41->length);
662 else
663 ip_len1 = clib_net_to_host_u16 (ip61->payload_length);
John Lo37682e12016-11-30 12:51:39 -0500664 udp_len1 = clib_net_to_host_u16 (udp1->length);
John Lo37682e12016-11-30 12:51:39 -0500665 len_diff1 = ip_len1 - udp_len1;
666
667 /* Verify UDP checksum */
668 if (PREDICT_FALSE (!good_udp1))
669 {
Zhiyong Yang47ea4c32020-06-10 13:23:50 +0000670 if (is_ip4)
671 flags1 = ip4_tcp_udp_validate_checksum (vm, b1);
672 else
673 flags1 = ip6_tcp_udp_icmp_validate_checksum (vm, b1);
674 good_udp1 = (flags1 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
John Lo37682e12016-11-30 12:51:39 -0500675 }
676
John Lo2b81eb82017-01-30 13:12:10 -0500677 if (is_ip4)
678 {
679 error1 = good_udp1 ? 0 : IP4_ERROR_UDP_CHECKSUM;
680 error1 = (len_diff1 >= 0) ? error1 : IP4_ERROR_UDP_LENGTH;
681 }
682 else
683 {
Eyal Baria93ea422017-02-01 13:36:15 +0200684 error1 = good_udp1 ? 0 : IP6_ERROR_UDP_CHECKSUM;
685 error1 = (len_diff1 >= 0) ? error1 : IP6_ERROR_UDP_LENGTH;
John Lo2b81eb82017-01-30 13:12:10 -0500686 }
John Lo37682e12016-11-30 12:51:39 -0500687
Eyal Bari0f4b1842018-04-12 12:39:51 +0300688 next1 = error1 ?
John Lo37682e12016-11-30 12:51:39 -0500689 IP_VXLAN_BYPASS_NEXT_DROP : IP_VXLAN_BYPASS_NEXT_VXLAN;
690 b1->error = error1 ? error_node->errors[error1] : 0;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300691
John Lo2b81eb82017-01-30 13:12:10 -0500692 /* vxlan-input node expect current at VXLAN header */
693 if (is_ip4)
Eyal Bari7d92c092018-07-24 15:15:37 +0300694 vlib_buffer_advance (b1,
695 sizeof (ip4_header_t) +
696 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500697 else
Eyal Bari7d92c092018-07-24 15:15:37 +0300698 vlib_buffer_advance (b1,
699 sizeof (ip6_header_t) +
700 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500701
John Lo37682e12016-11-30 12:51:39 -0500702 exit1:
703 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
704 to_next, n_left_to_next,
705 bi0, bi1, next0, next1);
706 }
707
708 while (n_left_from > 0 && n_left_to_next > 0)
709 {
Eyal Bari7d92c092018-07-24 15:15:37 +0300710 vlib_buffer_t *b0;
711 ip4_header_t *ip40;
712 ip6_header_t *ip60;
713 udp_header_t *udp0;
714 u32 bi0, ip_len0, udp_len0, flags0, next0;
John Lo37682e12016-11-30 12:51:39 -0500715 i32 len_diff0;
716 u8 error0, good_udp0, proto0;
717
718 bi0 = to_next[0] = from[0];
719 from += 1;
720 n_left_from -= 1;
721 to_next += 1;
722 n_left_to_next -= 1;
723
Zhiyong Yang5e524172020-07-08 20:28:36 +0000724 b0 = b[0];
725 b++;
John Lo2b81eb82017-01-30 13:12:10 -0500726 if (is_ip4)
727 ip40 = vlib_buffer_get_current (b0);
728 else
729 ip60 = vlib_buffer_get_current (b0);
John Lo37682e12016-11-30 12:51:39 -0500730
731 /* Setup packet for next IP feature */
Eyal Bari7d92c092018-07-24 15:15:37 +0300732 vnet_feature_next (&next0, b0);
John Lo37682e12016-11-30 12:51:39 -0500733
John Lo2b81eb82017-01-30 13:12:10 -0500734 if (is_ip4)
735 /* Treat IP4 frag packets as "experimental" protocol for now
736 until support of IP frag reassembly is implemented */
Eyal Bari7d92c092018-07-24 15:15:37 +0300737 proto0 = ip4_is_fragment (ip40) ? 0xfe : ip40->protocol;
John Lo2b81eb82017-01-30 13:12:10 -0500738 else
739 proto0 = ip60->protocol;
John Lo37682e12016-11-30 12:51:39 -0500740
741 if (proto0 != IP_PROTOCOL_UDP)
Eyal Bari7d92c092018-07-24 15:15:37 +0300742 goto exit; /* not UDP packet */
John Lo37682e12016-11-30 12:51:39 -0500743
John Lo2b81eb82017-01-30 13:12:10 -0500744 if (is_ip4)
745 udp0 = ip4_next_header (ip40);
746 else
747 udp0 = ip6_next_header (ip60);
748
John Lo37682e12016-11-30 12:51:39 -0500749 if (udp0->dst_port != clib_host_to_net_u16 (UDP_DST_PORT_vxlan))
Eyal Bari7d92c092018-07-24 15:15:37 +0300750 goto exit; /* not VXLAN packet */
John Lo37682e12016-11-30 12:51:39 -0500751
Eyal Bari7d92c092018-07-24 15:15:37 +0300752 /* Validate DIP against VTEPs */
Eyal Bari0f4b1842018-04-12 12:39:51 +0300753 if (is_ip4)
John Lo37682e12016-11-30 12:51:39 -0500754 {
Zhiyong Yang5e524172020-07-08 20:28:36 +0000755#ifdef CLIB_HAVE_VEC512
756 if (!vtep4_check_vector
757 (&vxm->vtep_table, b0, ip40, &last_vtep4, &vtep4_u512))
758#else
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000759 if (!vtep4_check (&vxm->vtep_table, b0, ip40, &last_vtep4))
Zhiyong Yang5e524172020-07-08 20:28:36 +0000760#endif
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000761 goto exit; /* no local VTEP for VXLAN packet */
John Lo37682e12016-11-30 12:51:39 -0500762 }
John Lo2b81eb82017-01-30 13:12:10 -0500763 else
764 {
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000765 if (!vtep6_check (&vxm->vtep_table, b0, ip60, &last_vtep6))
766 goto exit; /* no local VTEP for VXLAN packet */
John Lo2b81eb82017-01-30 13:12:10 -0500767 }
John Lo37682e12016-11-30 12:51:39 -0500768
769 flags0 = b0->flags;
Damjan Marion213b5aa2017-07-13 21:19:27 +0200770 good_udp0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
John Lo37682e12016-11-30 12:51:39 -0500771
772 /* Don't verify UDP checksum for packets with explicit zero checksum. */
773 good_udp0 |= udp0->checksum == 0;
774
775 /* Verify UDP length */
John Lo2b81eb82017-01-30 13:12:10 -0500776 if (is_ip4)
777 ip_len0 = clib_net_to_host_u16 (ip40->length);
778 else
779 ip_len0 = clib_net_to_host_u16 (ip60->payload_length);
John Lo37682e12016-11-30 12:51:39 -0500780 udp_len0 = clib_net_to_host_u16 (udp0->length);
John Lo37682e12016-11-30 12:51:39 -0500781 len_diff0 = ip_len0 - udp_len0;
782
783 /* Verify UDP checksum */
784 if (PREDICT_FALSE (!good_udp0))
785 {
Zhiyong Yang47ea4c32020-06-10 13:23:50 +0000786 if (is_ip4)
787 flags0 = ip4_tcp_udp_validate_checksum (vm, b0);
788 else
789 flags0 = ip6_tcp_udp_icmp_validate_checksum (vm, b0);
790 good_udp0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
John Lo37682e12016-11-30 12:51:39 -0500791 }
792
John Lo2b81eb82017-01-30 13:12:10 -0500793 if (is_ip4)
794 {
795 error0 = good_udp0 ? 0 : IP4_ERROR_UDP_CHECKSUM;
796 error0 = (len_diff0 >= 0) ? error0 : IP4_ERROR_UDP_LENGTH;
797 }
798 else
799 {
800 error0 = good_udp0 ? 0 : IP6_ERROR_UDP_CHECKSUM;
801 error0 = (len_diff0 >= 0) ? error0 : IP6_ERROR_UDP_LENGTH;
802 }
John Lo37682e12016-11-30 12:51:39 -0500803
Eyal Bari0f4b1842018-04-12 12:39:51 +0300804 next0 = error0 ?
John Lo37682e12016-11-30 12:51:39 -0500805 IP_VXLAN_BYPASS_NEXT_DROP : IP_VXLAN_BYPASS_NEXT_VXLAN;
806 b0->error = error0 ? error_node->errors[error0] : 0;
807
John Lo2b81eb82017-01-30 13:12:10 -0500808 /* vxlan-input node expect current at VXLAN header */
809 if (is_ip4)
Eyal Bari7d92c092018-07-24 15:15:37 +0300810 vlib_buffer_advance (b0,
811 sizeof (ip4_header_t) +
812 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500813 else
Eyal Bari7d92c092018-07-24 15:15:37 +0300814 vlib_buffer_advance (b0,
815 sizeof (ip6_header_t) +
816 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500817
John Lo37682e12016-11-30 12:51:39 -0500818 exit:
819 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
820 to_next, n_left_to_next,
821 bi0, next0);
822 }
823
824 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
825 }
826
827 return frame->n_vectors;
828}
829
Eyal Baria5679e82018-08-26 15:20:07 +0300830VLIB_NODE_FN (ip4_vxlan_bypass_node) (vlib_main_t * vm,
831 vlib_node_runtime_t * node,
832 vlib_frame_t * frame)
John Lo37682e12016-11-30 12:51:39 -0500833{
834 return ip_vxlan_bypass_inline (vm, node, frame, /* is_ip4 */ 1);
835}
836
Eyal Bari7d92c092018-07-24 15:15:37 +0300837/* *INDENT-OFF* */
838VLIB_REGISTER_NODE (ip4_vxlan_bypass_node) =
839{
John Lo37682e12016-11-30 12:51:39 -0500840 .name = "ip4-vxlan-bypass",
841 .vector_size = sizeof (u32),
John Lo37682e12016-11-30 12:51:39 -0500842 .n_next_nodes = IP_VXLAN_BYPASS_N_NEXT,
843 .next_nodes = {
Eyal Bari7d92c092018-07-24 15:15:37 +0300844 [IP_VXLAN_BYPASS_NEXT_DROP] = "error-drop",
845 [IP_VXLAN_BYPASS_NEXT_VXLAN] = "vxlan4-input",
John Lo37682e12016-11-30 12:51:39 -0500846 },
John Lo37682e12016-11-30 12:51:39 -0500847 .format_buffer = format_ip4_header,
848 .format_trace = format_ip4_forward_next_trace,
849};
850
Eyal Bari7d92c092018-07-24 15:15:37 +0300851/* *INDENT-ON* */
John Lo37682e12016-11-30 12:51:39 -0500852
John Lo37682e12016-11-30 12:51:39 -0500853/* Dummy init function to get us linked in. */
Eyal Baria5679e82018-08-26 15:20:07 +0300854static clib_error_t *
Eyal Bari7d92c092018-07-24 15:15:37 +0300855ip4_vxlan_bypass_init (vlib_main_t * vm)
856{
857 return 0;
858}
John Lo37682e12016-11-30 12:51:39 -0500859
860VLIB_INIT_FUNCTION (ip4_vxlan_bypass_init);
John Lo2b81eb82017-01-30 13:12:10 -0500861
Eyal Baria5679e82018-08-26 15:20:07 +0300862VLIB_NODE_FN (ip6_vxlan_bypass_node) (vlib_main_t * vm,
863 vlib_node_runtime_t * node,
864 vlib_frame_t * frame)
John Lo2b81eb82017-01-30 13:12:10 -0500865{
866 return ip_vxlan_bypass_inline (vm, node, frame, /* is_ip4 */ 0);
867}
868
Eyal Bari7d92c092018-07-24 15:15:37 +0300869/* *INDENT-OFF* */
870VLIB_REGISTER_NODE (ip6_vxlan_bypass_node) =
871{
John Lo2b81eb82017-01-30 13:12:10 -0500872 .name = "ip6-vxlan-bypass",
873 .vector_size = sizeof (u32),
John Lo2b81eb82017-01-30 13:12:10 -0500874 .n_next_nodes = IP_VXLAN_BYPASS_N_NEXT,
875 .next_nodes = {
876 [IP_VXLAN_BYPASS_NEXT_DROP] = "error-drop",
877 [IP_VXLAN_BYPASS_NEXT_VXLAN] = "vxlan6-input",
878 },
John Lo2b81eb82017-01-30 13:12:10 -0500879 .format_buffer = format_ip6_header,
880 .format_trace = format_ip6_forward_next_trace,
881};
882
Eyal Bari7d92c092018-07-24 15:15:37 +0300883/* *INDENT-ON* */
John Lo2b81eb82017-01-30 13:12:10 -0500884
885/* Dummy init function to get us linked in. */
Eyal Baria5679e82018-08-26 15:20:07 +0300886static clib_error_t *
Eyal Bari7d92c092018-07-24 15:15:37 +0300887ip6_vxlan_bypass_init (vlib_main_t * vm)
888{
889 return 0;
890}
John Lo2b81eb82017-01-30 13:12:10 -0500891
892VLIB_INIT_FUNCTION (ip6_vxlan_bypass_init);
eyal bariaf86a482018-04-17 11:20:27 +0300893
894#define foreach_vxlan_flow_input_next \
895_(DROP, "error-drop") \
896_(L2_INPUT, "l2-input")
897
898typedef enum
899{
900#define _(s,n) VXLAN_FLOW_NEXT_##s,
901 foreach_vxlan_flow_input_next
902#undef _
Eyal Bari7d92c092018-07-24 15:15:37 +0300903 VXLAN_FLOW_N_NEXT,
eyal bariaf86a482018-04-17 11:20:27 +0300904} vxlan_flow_input_next_t;
905
906#define foreach_vxlan_flow_error \
907 _(NONE, "no error") \
908 _(IP_CHECKSUM_ERROR, "Rx ip checksum errors") \
909 _(IP_HEADER_ERROR, "Rx ip header errors") \
910 _(UDP_CHECKSUM_ERROR, "Rx udp checksum errors") \
911 _(UDP_LENGTH_ERROR, "Rx udp length errors")
912
913typedef enum
914{
915#define _(f,s) VXLAN_FLOW_ERROR_##f,
916 foreach_vxlan_flow_error
917#undef _
918 VXLAN_FLOW_N_ERROR,
919} vxlan_flow_error_t;
920
921static char *vxlan_flow_error_strings[] = {
922#define _(n,s) s,
923 foreach_vxlan_flow_error
924#undef _
925};
926
927
928static_always_inline u8
Eyal Bari7d92c092018-07-24 15:15:37 +0300929vxlan_validate_udp_csum (vlib_main_t * vm, vlib_buffer_t * b)
eyal bariaf86a482018-04-17 11:20:27 +0300930{
931 u32 flags = b->flags;
Eyal Bari7d92c092018-07-24 15:15:37 +0300932 enum
933 { offset =
934 sizeof (ip4_header_t) + sizeof (udp_header_t) + sizeof (vxlan_header_t),
935 };
eyal bariaf86a482018-04-17 11:20:27 +0300936
937 /* Verify UDP checksum */
938 if ((flags & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED) == 0)
Eyal Bari7d92c092018-07-24 15:15:37 +0300939 {
940 vlib_buffer_advance (b, -offset);
941 flags = ip4_tcp_udp_validate_checksum (vm, b);
942 vlib_buffer_advance (b, offset);
943 }
eyal bariaf86a482018-04-17 11:20:27 +0300944
945 return (flags & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
946}
947
948static_always_inline u8
Eyal Bari7d92c092018-07-24 15:15:37 +0300949vxlan_check_udp_csum (vlib_main_t * vm, vlib_buffer_t * b)
eyal bariaf86a482018-04-17 11:20:27 +0300950{
Eyal Bari7d92c092018-07-24 15:15:37 +0300951 ip4_vxlan_header_t *hdr = vlib_buffer_get_current (b) - sizeof *hdr;
952 udp_header_t *udp = &hdr->udp;
eyal bariaf86a482018-04-17 11:20:27 +0300953 /* Don't verify UDP checksum for packets with explicit zero checksum. */
954 u8 good_csum = (b->flags & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0 ||
955 udp->checksum == 0;
956
957 return !good_csum;
958}
959
960static_always_inline u8
Eyal Bari7d92c092018-07-24 15:15:37 +0300961vxlan_check_ip (vlib_buffer_t * b, u16 payload_len)
eyal bariaf86a482018-04-17 11:20:27 +0300962{
Eyal Bari7d92c092018-07-24 15:15:37 +0300963 ip4_vxlan_header_t *hdr = vlib_buffer_get_current (b) - sizeof *hdr;
eyal bariaf86a482018-04-17 11:20:27 +0300964 u16 ip_len = clib_net_to_host_u16 (hdr->ip4.length);
965 u16 expected = payload_len + sizeof *hdr;
Eyal Bari7d92c092018-07-24 15:15:37 +0300966 return ip_len > expected || hdr->ip4.ttl == 0
967 || hdr->ip4.ip_version_and_header_length != 0x45;
eyal bariaf86a482018-04-17 11:20:27 +0300968}
969
970static_always_inline u8
Eyal Bari7d92c092018-07-24 15:15:37 +0300971vxlan_check_ip_udp_len (vlib_buffer_t * b)
eyal bariaf86a482018-04-17 11:20:27 +0300972{
Eyal Bari7d92c092018-07-24 15:15:37 +0300973 ip4_vxlan_header_t *hdr = vlib_buffer_get_current (b) - sizeof *hdr;
eyal bariaf86a482018-04-17 11:20:27 +0300974 u16 ip_len = clib_net_to_host_u16 (hdr->ip4.length);
975 u16 udp_len = clib_net_to_host_u16 (hdr->udp.length);
976 return udp_len > ip_len;
977}
978
979static_always_inline u8
980vxlan_err_code (u8 ip_err0, u8 udp_err0, u8 csum_err0)
981{
982 u8 error0 = VXLAN_FLOW_ERROR_NONE;
983 if (ip_err0)
Eyal Bari7d92c092018-07-24 15:15:37 +0300984 error0 = VXLAN_FLOW_ERROR_IP_HEADER_ERROR;
eyal bariaf86a482018-04-17 11:20:27 +0300985 if (udp_err0)
Eyal Bari7d92c092018-07-24 15:15:37 +0300986 error0 = VXLAN_FLOW_ERROR_UDP_LENGTH_ERROR;
eyal bariaf86a482018-04-17 11:20:27 +0300987 if (csum_err0)
Eyal Bari7d92c092018-07-24 15:15:37 +0300988 error0 = VXLAN_FLOW_ERROR_UDP_CHECKSUM_ERROR;
eyal bariaf86a482018-04-17 11:20:27 +0300989 return error0;
990}
991
Eyal Bari93a6f252018-06-14 08:57:39 +0300992VLIB_NODE_FN (vxlan4_flow_input_node) (vlib_main_t * vm,
Eyal Bari7d92c092018-07-24 15:15:37 +0300993 vlib_node_runtime_t * node,
994 vlib_frame_t * f)
eyal bariaf86a482018-04-17 11:20:27 +0300995{
Eyal Bari7d92c092018-07-24 15:15:37 +0300996 enum
997 { payload_offset = sizeof (ip4_vxlan_header_t) };
eyal bariaf86a482018-04-17 11:20:27 +0300998
Eyal Bari7d92c092018-07-24 15:15:37 +0300999 vxlan_main_t *vxm = &vxlan_main;
1000 vnet_interface_main_t *im = &vnet_main.interface_main;
1001 vlib_combined_counter_main_t *rx_counter[VXLAN_FLOW_N_NEXT] = {
1002 [VXLAN_FLOW_NEXT_DROP] =
1003 im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_DROP,
1004 [VXLAN_FLOW_NEXT_L2_INPUT] =
1005 im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_RX,
eyal bariaf86a482018-04-17 11:20:27 +03001006 };
Eyal Bari7d92c092018-07-24 15:15:37 +03001007 u32 thread_index = vlib_get_thread_index ();
eyal bariaf86a482018-04-17 11:20:27 +03001008
Eyal Bari7d92c092018-07-24 15:15:37 +03001009 u32 *from = vlib_frame_vector_args (f);
eyal bariaf86a482018-04-17 11:20:27 +03001010 u32 n_left_from = f->n_vectors;
1011 u32 next_index = VXLAN_FLOW_NEXT_L2_INPUT;
1012
1013 while (n_left_from > 0)
eyal bariaf86a482018-04-17 11:20:27 +03001014 {
Eyal Bari7d92c092018-07-24 15:15:37 +03001015 u32 n_left_to_next, *to_next;
eyal bariaf86a482018-04-17 11:20:27 +03001016
Eyal Bari7d92c092018-07-24 15:15:37 +03001017 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
eyal bariaf86a482018-04-17 11:20:27 +03001018
Eyal Bari7d92c092018-07-24 15:15:37 +03001019 while (n_left_from > 3 && n_left_to_next > 3)
eyal bariaf86a482018-04-17 11:20:27 +03001020 {
Eyal Bari7d92c092018-07-24 15:15:37 +03001021 u32 bi0 = to_next[0] = from[0];
1022 u32 bi1 = to_next[1] = from[1];
1023 u32 bi2 = to_next[2] = from[2];
1024 u32 bi3 = to_next[3] = from[3];
1025 from += 4;
1026 n_left_from -= 4;
1027 to_next += 4;
1028 n_left_to_next -= 4;
eyal bariaf86a482018-04-17 11:20:27 +03001029
Eyal Bari7d92c092018-07-24 15:15:37 +03001030 vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
1031 vlib_buffer_t *b1 = vlib_get_buffer (vm, bi1);
1032 vlib_buffer_t *b2 = vlib_get_buffer (vm, bi2);
1033 vlib_buffer_t *b3 = vlib_get_buffer (vm, bi3);
1034
1035 vlib_buffer_advance (b0, payload_offset);
1036 vlib_buffer_advance (b1, payload_offset);
1037 vlib_buffer_advance (b2, payload_offset);
1038 vlib_buffer_advance (b3, payload_offset);
1039
1040 u16 len0 = vlib_buffer_length_in_chain (vm, b0);
1041 u16 len1 = vlib_buffer_length_in_chain (vm, b1);
1042 u16 len2 = vlib_buffer_length_in_chain (vm, b2);
1043 u16 len3 = vlib_buffer_length_in_chain (vm, b3);
1044
1045 u32 next0 = VXLAN_FLOW_NEXT_L2_INPUT, next1 =
1046 VXLAN_FLOW_NEXT_L2_INPUT, next2 =
1047 VXLAN_FLOW_NEXT_L2_INPUT, next3 = VXLAN_FLOW_NEXT_L2_INPUT;
1048
1049 u8 ip_err0 = vxlan_check_ip (b0, len0);
1050 u8 ip_err1 = vxlan_check_ip (b1, len1);
1051 u8 ip_err2 = vxlan_check_ip (b2, len2);
1052 u8 ip_err3 = vxlan_check_ip (b3, len3);
1053 u8 ip_err = ip_err0 | ip_err1 | ip_err2 | ip_err3;
1054
1055 u8 udp_err0 = vxlan_check_ip_udp_len (b0);
1056 u8 udp_err1 = vxlan_check_ip_udp_len (b1);
1057 u8 udp_err2 = vxlan_check_ip_udp_len (b2);
1058 u8 udp_err3 = vxlan_check_ip_udp_len (b3);
1059 u8 udp_err = udp_err0 | udp_err1 | udp_err2 | udp_err3;
1060
1061 u8 csum_err0 = vxlan_check_udp_csum (vm, b0);
1062 u8 csum_err1 = vxlan_check_udp_csum (vm, b1);
1063 u8 csum_err2 = vxlan_check_udp_csum (vm, b2);
1064 u8 csum_err3 = vxlan_check_udp_csum (vm, b3);
1065 u8 csum_err = csum_err0 | csum_err1 | csum_err2 | csum_err3;
1066
1067 if (PREDICT_FALSE (csum_err))
1068 {
1069 if (csum_err0)
1070 csum_err0 = !vxlan_validate_udp_csum (vm, b0);
1071 if (csum_err1)
1072 csum_err1 = !vxlan_validate_udp_csum (vm, b1);
1073 if (csum_err2)
1074 csum_err2 = !vxlan_validate_udp_csum (vm, b2);
1075 if (csum_err3)
1076 csum_err3 = !vxlan_validate_udp_csum (vm, b3);
1077 csum_err = csum_err0 | csum_err1 | csum_err2 | csum_err3;
1078 }
1079
1080 if (PREDICT_FALSE (ip_err || udp_err || csum_err))
1081 {
1082 if (ip_err0 || udp_err0 || csum_err0)
1083 {
1084 next0 = VXLAN_FLOW_NEXT_DROP;
1085 u8 error0 = vxlan_err_code (ip_err0, udp_err0, csum_err0);
1086 b0->error = node->errors[error0];
1087 }
1088 if (ip_err1 || udp_err1 || csum_err1)
1089 {
1090 next1 = VXLAN_FLOW_NEXT_DROP;
1091 u8 error1 = vxlan_err_code (ip_err1, udp_err1, csum_err1);
1092 b1->error = node->errors[error1];
1093 }
1094 if (ip_err2 || udp_err2 || csum_err2)
1095 {
1096 next2 = VXLAN_FLOW_NEXT_DROP;
1097 u8 error2 = vxlan_err_code (ip_err2, udp_err2, csum_err2);
1098 b2->error = node->errors[error2];
1099 }
1100 if (ip_err3 || udp_err3 || csum_err3)
1101 {
1102 next3 = VXLAN_FLOW_NEXT_DROP;
1103 u8 error3 = vxlan_err_code (ip_err3, udp_err3, csum_err3);
1104 b3->error = node->errors[error3];
1105 }
1106 }
1107
1108 vnet_update_l2_len (b0);
1109 vnet_update_l2_len (b1);
1110 vnet_update_l2_len (b2);
1111 vnet_update_l2_len (b3);
1112
1113 ASSERT (b0->flow_id != 0);
1114 ASSERT (b1->flow_id != 0);
1115 ASSERT (b2->flow_id != 0);
1116 ASSERT (b3->flow_id != 0);
1117
1118 u32 t_index0 = b0->flow_id - vxm->flow_id_start;
1119 u32 t_index1 = b1->flow_id - vxm->flow_id_start;
1120 u32 t_index2 = b2->flow_id - vxm->flow_id_start;
1121 u32 t_index3 = b3->flow_id - vxm->flow_id_start;
1122
1123 vxlan_tunnel_t *t0 = &vxm->tunnels[t_index0];
1124 vxlan_tunnel_t *t1 = &vxm->tunnels[t_index1];
1125 vxlan_tunnel_t *t2 = &vxm->tunnels[t_index2];
1126 vxlan_tunnel_t *t3 = &vxm->tunnels[t_index3];
1127
1128 /* flow id consumed */
1129 b0->flow_id = 0;
1130 b1->flow_id = 0;
1131 b2->flow_id = 0;
1132 b3->flow_id = 0;
1133
1134 u32 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX] =
1135 t0->sw_if_index;
1136 u32 sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX] =
1137 t1->sw_if_index;
1138 u32 sw_if_index2 = vnet_buffer (b2)->sw_if_index[VLIB_RX] =
1139 t2->sw_if_index;
1140 u32 sw_if_index3 = vnet_buffer (b3)->sw_if_index[VLIB_RX] =
1141 t3->sw_if_index;
1142
1143 vlib_increment_combined_counter (rx_counter[next0], thread_index,
1144 sw_if_index0, 1, len0);
1145 vlib_increment_combined_counter (rx_counter[next1], thread_index,
1146 sw_if_index1, 1, len1);
1147 vlib_increment_combined_counter (rx_counter[next2], thread_index,
1148 sw_if_index2, 1, len2);
1149 vlib_increment_combined_counter (rx_counter[next3], thread_index,
1150 sw_if_index3, 1, len3);
1151
1152 u32 flags = b0->flags | b1->flags | b2->flags | b3->flags;
1153
1154 if (PREDICT_FALSE (flags & VLIB_BUFFER_IS_TRACED))
1155 {
1156 if (b0->flags & VLIB_BUFFER_IS_TRACED)
1157 {
1158 vxlan_rx_trace_t *tr =
1159 vlib_add_trace (vm, node, b0, sizeof *tr);
1160 u8 error0 = vxlan_err_code (ip_err0, udp_err0, csum_err0);
1161 tr->next_index = next0;
1162 tr->error = error0;
1163 tr->tunnel_index = t_index0;
1164 tr->vni = t0->vni;
1165 }
1166 if (b1->flags & VLIB_BUFFER_IS_TRACED)
1167 {
1168 vxlan_rx_trace_t *tr =
1169 vlib_add_trace (vm, node, b1, sizeof *tr);
1170 u8 error1 = vxlan_err_code (ip_err1, udp_err1, csum_err1);
1171 tr->next_index = next1;
1172 tr->error = error1;
1173 tr->tunnel_index = t_index1;
1174 tr->vni = t1->vni;
1175 }
1176 if (b2->flags & VLIB_BUFFER_IS_TRACED)
1177 {
1178 vxlan_rx_trace_t *tr =
1179 vlib_add_trace (vm, node, b2, sizeof *tr);
1180 u8 error2 = vxlan_err_code (ip_err2, udp_err2, csum_err2);
1181 tr->next_index = next2;
1182 tr->error = error2;
1183 tr->tunnel_index = t_index2;
1184 tr->vni = t2->vni;
1185 }
1186 if (b3->flags & VLIB_BUFFER_IS_TRACED)
1187 {
1188 vxlan_rx_trace_t *tr =
1189 vlib_add_trace (vm, node, b3, sizeof *tr);
1190 u8 error3 = vxlan_err_code (ip_err3, udp_err3, csum_err3);
1191 tr->next_index = next3;
1192 tr->error = error3;
1193 tr->tunnel_index = t_index3;
1194 tr->vni = t3->vni;
1195 }
1196 }
1197 vlib_validate_buffer_enqueue_x4
1198 (vm, node, next_index, to_next, n_left_to_next,
1199 bi0, bi1, bi2, bi3, next0, next1, next2, next3);
1200 }
1201 while (n_left_from > 0 && n_left_to_next > 0)
1202 {
1203 u32 bi0 = to_next[0] = from[0];
1204 from++;
1205 n_left_from--;
1206 to_next++;
1207 n_left_to_next--;
1208
1209 vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
1210 vlib_buffer_advance (b0, payload_offset);
1211
1212 u16 len0 = vlib_buffer_length_in_chain (vm, b0);
1213 u32 next0 = VXLAN_FLOW_NEXT_L2_INPUT;
1214
1215 u8 ip_err0 = vxlan_check_ip (b0, len0);
1216 u8 udp_err0 = vxlan_check_ip_udp_len (b0);
1217 u8 csum_err0 = vxlan_check_udp_csum (vm, b0);
1218
1219 if (csum_err0)
1220 csum_err0 = !vxlan_validate_udp_csum (vm, b0);
1221 if (ip_err0 || udp_err0 || csum_err0)
1222 {
1223 next0 = VXLAN_FLOW_NEXT_DROP;
1224 u8 error0 = vxlan_err_code (ip_err0, udp_err0, csum_err0);
1225 b0->error = node->errors[error0];
1226 }
1227
1228 vnet_update_l2_len (b0);
1229
1230 ASSERT (b0->flow_id != 0);
1231 u32 t_index0 = b0->flow_id - vxm->flow_id_start;
1232 vxlan_tunnel_t *t0 = &vxm->tunnels[t_index0];
1233 b0->flow_id = 0;
1234
1235 u32 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX] =
1236 t0->sw_if_index;
1237 vlib_increment_combined_counter (rx_counter[next0], thread_index,
1238 sw_if_index0, 1, len0);
1239
1240 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
1241 {
1242 vxlan_rx_trace_t *tr =
1243 vlib_add_trace (vm, node, b0, sizeof *tr);
1244 u8 error0 = vxlan_err_code (ip_err0, udp_err0, csum_err0);
1245 tr->next_index = next0;
1246 tr->error = error0;
1247 tr->tunnel_index = t_index0;
1248 tr->vni = t0->vni;
1249 }
1250 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
1251 to_next, n_left_to_next,
1252 bi0, next0);
1253 }
1254
1255 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1256 }
eyal bariaf86a482018-04-17 11:20:27 +03001257
1258 return f->n_vectors;
1259}
1260
1261/* *INDENT-OFF* */
1262#ifndef CLIB_MULTIARCH_VARIANT
1263VLIB_REGISTER_NODE (vxlan4_flow_input_node) = {
1264 .name = "vxlan-flow-input",
eyal bariaf86a482018-04-17 11:20:27 +03001265 .type = VLIB_NODE_TYPE_INTERNAL,
1266 .vector_size = sizeof (u32),
1267
1268 .format_trace = format_vxlan_rx_trace,
1269
1270 .n_errors = VXLAN_FLOW_N_ERROR,
1271 .error_strings = vxlan_flow_error_strings,
1272
1273 .n_next_nodes = VXLAN_FLOW_N_NEXT,
1274 .next_nodes = {
1275#define _(s,n) [VXLAN_FLOW_NEXT_##s] = n,
1276 foreach_vxlan_flow_input_next
1277#undef _
1278 },
1279};
1280#endif
1281/* *INDENT-ON* */
Eyal Bari7d92c092018-07-24 15:15:37 +03001282
1283/*
1284 * fd.io coding-style-patch-verification: ON
1285 *
1286 * Local Variables:
1287 * eval: (c-set-style "gnu")
1288 * End:
1289 */