blob: 7c1b6b1c26caf3115d71b598b416a641789785b2 [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>
19#include <vnet/pg/pg.h>
20#include <vnet/vxlan/vxlan.h>
21
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
John Lo2b81eb82017-01-30 13:12:10 -050049always_inline u32
Eyal Bari7d92c092018-07-24 15:15:37 +030050buf_fib_index (vlib_buffer_t * b, u32 is_ip4)
John Lo2b81eb82017-01-30 13:12:10 -050051{
Eyal Bari0fa56782018-06-04 12:25:05 +030052 u32 sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_TX];
53 if (sw_if_index != (u32) ~ 0)
54 return sw_if_index;
John Lo2b81eb82017-01-30 13:12:10 -050055
Eyal Bari7d92c092018-07-24 15:15:37 +030056 u32 *fib_index_by_sw_if_index = is_ip4 ?
Eyal Barifb663012017-10-19 15:27:51 +030057 ip4_main.fib_index_by_sw_if_index : ip6_main.fib_index_by_sw_if_index;
Eyal Bari0fa56782018-06-04 12:25:05 +030058 sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_RX];
John Lo2b81eb82017-01-30 13:12:10 -050059
Eyal Bari0fa56782018-06-04 12:25:05 +030060 return vec_elt (fib_index_by_sw_if_index, sw_if_index);
John Lo2b81eb82017-01-30 13:12:10 -050061}
62
Eyal Baridd47eca2018-07-08 08:15:56 +030063typedef vxlan4_tunnel_key_t last_tunnel_cache4;
Eyal Bari0f4b1842018-04-12 12:39:51 +030064
Eyal Bari0f4b1842018-04-12 12:39:51 +030065always_inline vxlan_tunnel_t *
66vxlan4_find_tunnel (vxlan_main_t * vxm, last_tunnel_cache4 * cache,
Eyal Bari7d92c092018-07-24 15:15:37 +030067 u32 fib_index, ip4_header_t * ip4_0,
68 vxlan_header_t * vxlan0, vxlan_tunnel_t ** stats_t0)
Eyal Bari0f4b1842018-04-12 12:39:51 +030069{
70 /* Make sure VXLAN tunnel exist according to packet SIP and VNI */
Eyal Barie126cc52018-08-01 10:25:50 +030071 vxlan4_tunnel_key_t key4;
72 key4.key[1] = ((u64) fib_index << 32) | vxlan0->vni_reserved;
Eyal Bari0f4b1842018-04-12 12:39:51 +030073
Eyal Barie126cc52018-08-01 10:25:50 +030074 if (PREDICT_FALSE (key4.key[1] != cache->key[1] ||
75 ip4_0->src_address.as_u32 != (u32) cache->key[0]))
Eyal Bari7d92c092018-07-24 15:15:37 +030076 {
Eyal Barie126cc52018-08-01 10:25:50 +030077 key4.key[0] = ip4_0->src_address.as_u32;
Eyal Bari7d92c092018-07-24 15:15:37 +030078 int rv =
79 clib_bihash_search_inline_16_8 (&vxm->vxlan4_tunnel_by_key, &key4);
80 if (PREDICT_FALSE (rv != 0))
Eyal Baria5679e82018-08-26 15:20:07 +030081 {
82 *stats_t0 = 0;
83 return 0;
84 }
Eyal Bari0f4b1842018-04-12 12:39:51 +030085
Eyal Bari7d92c092018-07-24 15:15:37 +030086 *cache = key4;
87 }
88 vxlan_tunnel_t *t0 = pool_elt_at_index (vxm->tunnels, cache->value);
Eyal Bari0fa56782018-06-04 12:25:05 +030089
Eyal Bari0f4b1842018-04-12 12:39:51 +030090 /* Validate VXLAN tunnel SIP against packet DIP */
91 if (PREDICT_TRUE (ip4_0->dst_address.as_u32 == t0->src.ip4.as_u32))
92 *stats_t0 = t0;
93 else
Eyal Bari7d92c092018-07-24 15:15:37 +030094 {
95 /* try multicast */
96 if (PREDICT_TRUE (!ip4_address_is_multicast (&ip4_0->dst_address)))
Eyal Baria5679e82018-08-26 15:20:07 +030097 {
98 *stats_t0 = 0;
99 return 0;
100 }
Eyal Bari0f4b1842018-04-12 12:39:51 +0300101
Eyal Bari7d92c092018-07-24 15:15:37 +0300102 key4.key[0] = ip4_0->dst_address.as_u32;
103 /* Make sure mcast VXLAN tunnel exist by packet DIP and VNI */
104 int rv =
105 clib_bihash_search_inline_16_8 (&vxm->vxlan4_tunnel_by_key, &key4);
106 if (PREDICT_FALSE (rv != 0))
Eyal Baria5679e82018-08-26 15:20:07 +0300107 {
108 *stats_t0 = 0;
109 return 0;
110 }
Eyal Baridd47eca2018-07-08 08:15:56 +0300111
Eyal Bari7d92c092018-07-24 15:15:37 +0300112 *stats_t0 = pool_elt_at_index (vxm->tunnels, key4.value);
113 }
Eyal Bari0f4b1842018-04-12 12:39:51 +0300114
115 return t0;
116}
117
Eyal Bari0fa56782018-06-04 12:25:05 +0300118typedef vxlan6_tunnel_key_t last_tunnel_cache6;
119
Eyal Bari0f4b1842018-04-12 12:39:51 +0300120always_inline vxlan_tunnel_t *
121vxlan6_find_tunnel (vxlan_main_t * vxm, last_tunnel_cache6 * cache,
Eyal Bari7d92c092018-07-24 15:15:37 +0300122 u32 fib_index, ip6_header_t * ip6_0,
123 vxlan_header_t * vxlan0, vxlan_tunnel_t ** stats_t0)
Eyal Bari0f4b1842018-04-12 12:39:51 +0300124{
125 /* Make sure VXLAN tunnel exist according to packet SIP and VNI */
Eyal Bari0fa56782018-06-04 12:25:05 +0300126 vxlan6_tunnel_key_t key6 = {
127 .key = {
Eyal Bari7d92c092018-07-24 15:15:37 +0300128 [0] = ip6_0->src_address.as_u64[0],
129 [1] = ip6_0->src_address.as_u64[1],
130 [2] = (((u64) fib_index) << 32) | vxlan0->vni_reserved,
131 }
Eyal Bari0f4b1842018-04-12 12:39:51 +0300132 };
133
Eyal Bari7d92c092018-07-24 15:15:37 +0300134 if (PREDICT_FALSE
135 (clib_bihash_key_compare_24_8 (key6.key, cache->key) == 0))
136 {
137 int rv =
138 clib_bihash_search_inline_24_8 (&vxm->vxlan6_tunnel_by_key, &key6);
139 if (PREDICT_FALSE (rv != 0))
Eyal Baria5679e82018-08-26 15:20:07 +0300140 {
141 *stats_t0 = 0;
142 return 0;
143 }
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)))
151 *stats_t0 = t0;
152 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 Baria5679e82018-08-26 15:20:07 +0300156 {
157 *stats_t0 = 0;
158 return 0;
159 }
Eyal Bari0f4b1842018-04-12 12:39:51 +0300160
Eyal Bari7d92c092018-07-24 15:15:37 +0300161 /* Make sure mcast VXLAN tunnel exist by packet DIP and VNI */
162 key6.key[0] = ip6_0->dst_address.as_u64[0];
163 key6.key[1] = ip6_0->dst_address.as_u64[1];
164 int rv =
165 clib_bihash_search_inline_24_8 (&vxm->vxlan6_tunnel_by_key, &key6);
166 if (PREDICT_FALSE (rv != 0))
Eyal Baria5679e82018-08-26 15:20:07 +0300167 {
168 *stats_t0 = 0;
169 return 0;
170 }
Eyal Bari0fa56782018-06-04 12:25:05 +0300171
Eyal Bari7d92c092018-07-24 15:15:37 +0300172 *stats_t0 = pool_elt_at_index (vxm->tunnels, key6.value);
173 }
Eyal Bari0f4b1842018-04-12 12:39:51 +0300174
175 return t0;
176}
177
Chris Luke99cb3352016-04-26 10:49:53 -0400178always_inline uword
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179vxlan_input (vlib_main_t * vm,
Eyal Bari7d92c092018-07-24 15:15:37 +0300180 vlib_node_runtime_t * node,
181 vlib_frame_t * from_frame, u32 is_ip4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182{
Eyal Bari7d92c092018-07-24 15:15:37 +0300183 vxlan_main_t *vxm = &vxlan_main;
184 vnet_main_t *vnm = vxm->vnet_main;
185 vnet_interface_main_t *im = &vnm->interface_main;
186 vlib_combined_counter_main_t *rx_counter =
187 im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_RX;
188 vlib_combined_counter_main_t *drop_counter =
189 im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_DROP;
Eyal Baridd47eca2018-07-08 08:15:56 +0300190 last_tunnel_cache4 last4;
Eyal Bari0fa56782018-06-04 12:25:05 +0300191 last_tunnel_cache6 last6;
Eyal Baria5679e82018-08-26 15:20:07 +0300192 u32 pkts_dropped = 0;
Eyal Bari7d92c092018-07-24 15:15:37 +0300193 u32 thread_index = vlib_get_thread_index ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700194
Dave Barachf9c231e2016-08-05 10:10:18 -0400195 if (is_ip4)
Eyal Baridd47eca2018-07-08 08:15:56 +0300196 memset (&last4, 0xff, sizeof last4);
Dave Barachf9c231e2016-08-05 10:10:18 -0400197 else
Eyal Bari0fa56782018-06-04 12:25:05 +0300198 memset (&last6, 0xff, sizeof last6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199
Eyal Bari7d92c092018-07-24 15:15:37 +0300200 u32 *from = vlib_frame_vector_args (from_frame);
Eyal Barifb663012017-10-19 15:27:51 +0300201 u32 n_left_from = from_frame->n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202
Eyal Baria5679e82018-08-26 15:20:07 +0300203 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
204 vlib_get_buffers (vm, from, bufs, n_left_from);
205
206 u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
207 while (n_left_from >= 4)
208 {
209 /* Prefetch next iteration. */
210 vlib_prefetch_buffer_header (b[2], LOAD);
211 vlib_prefetch_buffer_header (b[3], LOAD);
212
213 /* udp leaves current_data pointing at the vxlan header */
214 void *cur0 = vlib_buffer_get_current (b[0]);
215 void *cur1 = vlib_buffer_get_current (b[1]);
216 vxlan_header_t *vxlan0 = cur0;
217 vxlan_header_t *vxlan1 = cur1;
218
219 u8 error0 = vxlan0->flags != VXLAN_FLAGS_I ? VXLAN_ERROR_BAD_FLAGS : 0;
220 u8 error1 = vxlan1->flags != VXLAN_FLAGS_I ? VXLAN_ERROR_BAD_FLAGS : 0;
221
222 ip4_header_t *ip4_0, *ip4_1;
223 ip6_header_t *ip6_0, *ip6_1;
224 if (is_ip4)
225 {
226 ip4_0 = cur0 - sizeof (udp_header_t) - sizeof (ip4_header_t);
227 ip4_1 = cur1 - sizeof (udp_header_t) - sizeof (ip4_header_t);
228 }
229 else
230 {
231 ip6_0 = cur0 - sizeof (udp_header_t) - sizeof (ip6_header_t);
232 ip6_1 = cur1 - sizeof (udp_header_t) - sizeof (ip6_header_t);
233 }
234
235 /* pop vxlan */
236 vlib_buffer_advance (b[0], sizeof *vxlan0);
237 vlib_buffer_advance (b[1], sizeof *vxlan1);
238
239 u32 fi0 = buf_fib_index (b[0], is_ip4);
240 u32 fi1 = buf_fib_index (b[1], is_ip4);
241
242 vxlan_tunnel_t *t0, *stats_t0;
243 vxlan_tunnel_t *t1, *stats_t1;
244 if (is_ip4)
245 {
246 t0 =
247 vxlan4_find_tunnel (vxm, &last4, fi0, ip4_0, vxlan0, &stats_t0);
248 t1 =
249 vxlan4_find_tunnel (vxm, &last4, fi1, ip4_1, vxlan1, &stats_t1);
250 }
251 else
252 {
253 t0 =
254 vxlan6_find_tunnel (vxm, &last6, fi0, ip6_0, vxlan0, &stats_t0);
255 t1 =
256 vxlan6_find_tunnel (vxm, &last6, fi1, ip6_1, vxlan1, &stats_t1);
257 }
258
259 error0 = t0 == 0 ? VXLAN_ERROR_NO_SUCH_TUNNEL : error0;
260 error1 = t1 == 0 ? VXLAN_ERROR_NO_SUCH_TUNNEL : error1;
261
262 /* Prefetch next iteration. */
263 CLIB_PREFETCH (b[2]->data, CLIB_CACHE_LINE_BYTES, LOAD);
264 CLIB_PREFETCH (b[3]->data, CLIB_CACHE_LINE_BYTES, LOAD);
265
266 u32 len0 = vlib_buffer_length_in_chain (vm, b[0]);
267 u32 len1 = vlib_buffer_length_in_chain (vm, b[1]);
268
269 /* Validate VXLAN tunnel encap-fib index agaist packet */
270 if (PREDICT_FALSE (error0 != 0))
271 {
272 next[0] = VXLAN_INPUT_NEXT_DROP;
273
274 if (error0 == VXLAN_ERROR_BAD_FLAGS)
275 {
276 vlib_increment_combined_counter
277 (drop_counter, thread_index, stats_t0->sw_if_index, 1, len0);
278 }
279 b[0]->error = node->errors[error0];
280 pkts_dropped++;
281 }
282 else
283 {
284 next[0] = t0->decap_next_index;
285
286 /* Required to make the l2 tag push / pop code work on l2 subifs */
287 if (PREDICT_TRUE (next[0] == VXLAN_INPUT_NEXT_L2_INPUT))
288 vnet_update_l2_len (b[0]);
289
290 /* Set packet input sw_if_index to unicast VXLAN tunnel for learning */
291 vnet_buffer (b[0])->sw_if_index[VLIB_RX] = t0->sw_if_index;
292 vlib_increment_combined_counter
293 (rx_counter, thread_index, stats_t0->sw_if_index, 1, len0);
294 }
295
296 /* Validate VXLAN tunnel encap-fib index agaist packet */
297 if (PREDICT_FALSE (error1 != 0))
298 {
299 next[1] = VXLAN_INPUT_NEXT_DROP;
300
301 if (error1 == VXLAN_ERROR_BAD_FLAGS)
302 {
303 vlib_increment_combined_counter
304 (drop_counter, thread_index, stats_t1->sw_if_index, 1, len1);
305 }
306 b[1]->error = node->errors[error1];
307 pkts_dropped++;
308 }
309 else
310 {
311 next[1] = t1->decap_next_index;
312
313 /* Required to make the l2 tag push / pop code work on l2 subifs */
314 if (PREDICT_TRUE (next[1] == VXLAN_INPUT_NEXT_L2_INPUT))
315 vnet_update_l2_len (b[1]);
316
317 /* Set packet input sw_if_index to unicast VXLAN tunnel for learning */
318 vnet_buffer (b[1])->sw_if_index[VLIB_RX] = t1->sw_if_index;
319
320 vlib_increment_combined_counter
321 (rx_counter, thread_index, stats_t1->sw_if_index, 1, len1);
322 }
323
324 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
325 {
326 vxlan_rx_trace_t *tr =
327 vlib_add_trace (vm, node, b[0], sizeof (*tr));
328 tr->next_index = next[0];
329 tr->error = error0;
330 tr->tunnel_index = t0 == 0 ? ~0 : t0 - vxm->tunnels;
331 tr->vni = vnet_get_vni (vxlan0);
332 }
333 if (PREDICT_FALSE (b[1]->flags & VLIB_BUFFER_IS_TRACED))
334 {
335 vxlan_rx_trace_t *tr =
336 vlib_add_trace (vm, node, b[1], sizeof (*tr));
337 tr->next_index = next[1];
338 tr->error = error1;
339 tr->tunnel_index = t1 == 0 ? ~0 : t1 - vxm->tunnels;
340 tr->vni = vnet_get_vni (vxlan1);
341 }
342 b += 2;
343 next += 2;
344 n_left_from -= 2;
345 }
346
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347 while (n_left_from > 0)
348 {
Eyal Baria5679e82018-08-26 15:20:07 +0300349 /* udp leaves current_data pointing at the vxlan header */
350 void *cur0 = vlib_buffer_get_current (b[0]);
351 vxlan_header_t *vxlan0 = cur0;
352 u8 error0 = vxlan0->flags != VXLAN_FLAGS_I ? VXLAN_ERROR_BAD_FLAGS : 0;
353 ip4_header_t *ip4_0;
354 ip6_header_t *ip6_0;
355 if (is_ip4)
356 ip4_0 = cur0 - sizeof (udp_header_t) - sizeof (ip4_header_t);
357 else
358 ip6_0 = cur0 - sizeof (udp_header_t) - sizeof (ip6_header_t);
Eyal Barifb663012017-10-19 15:27:51 +0300359
Eyal Baria5679e82018-08-26 15:20:07 +0300360 /* pop (ip, udp, vxlan) */
361 vlib_buffer_advance (b[0], sizeof (*vxlan0));
362
363 u32 fi0 = buf_fib_index (b[0], is_ip4);
364
365 vxlan_tunnel_t *t0, *stats_t0;
366 if (is_ip4)
367 t0 = vxlan4_find_tunnel (vxm, &last4, fi0, ip4_0, vxlan0, &stats_t0);
368 else
369 t0 = vxlan6_find_tunnel (vxm, &last6, fi0, ip6_0, vxlan0, &stats_t0);
370
371 error0 = t0 == 0 ? VXLAN_ERROR_NO_SUCH_TUNNEL : error0;
372 uword len0 = vlib_buffer_length_in_chain (vm, b[0]);
373
374 /* Validate VXLAN tunnel encap-fib index agaist packet */
375 if (PREDICT_FALSE (error0 != 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700376 {
Eyal Baria5679e82018-08-26 15:20:07 +0300377 next[0] = VXLAN_INPUT_NEXT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378
Eyal Baria5679e82018-08-26 15:20:07 +0300379 if (error0 == VXLAN_ERROR_BAD_FLAGS)
Eyal Bari7d92c092018-07-24 15:15:37 +0300380 {
Eyal Bari7d92c092018-07-24 15:15:37 +0300381 vlib_increment_combined_counter
Eyal Baria5679e82018-08-26 15:20:07 +0300382 (drop_counter, thread_index, stats_t0->sw_if_index, 1, len0);
Eyal Bari7d92c092018-07-24 15:15:37 +0300383 }
Eyal Baria5679e82018-08-26 15:20:07 +0300384 b[0]->error = node->errors[error0];
385 pkts_dropped++;
386 }
387 else
388 {
389 next[0] = t0->decap_next_index;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300390
Eyal Baria5679e82018-08-26 15:20:07 +0300391 /* Required to make the l2 tag push / pop code work on l2 subifs */
392 if (PREDICT_TRUE (next[0] == VXLAN_INPUT_NEXT_L2_INPUT))
393 vnet_update_l2_len (b[0]);
Eyal Bari0f4b1842018-04-12 12:39:51 +0300394
Eyal Baria5679e82018-08-26 15:20:07 +0300395 /* Set packet input sw_if_index to unicast VXLAN tunnel for learning */
396 vnet_buffer (b[0])->sw_if_index[VLIB_RX] = t0->sw_if_index;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300397
Eyal Baria5679e82018-08-26 15:20:07 +0300398 vlib_increment_combined_counter
399 (rx_counter, thread_index, stats_t0->sw_if_index, 1, len0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400 }
401
Eyal Baria5679e82018-08-26 15:20:07 +0300402 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403 {
Eyal Baria5679e82018-08-26 15:20:07 +0300404 vxlan_rx_trace_t *tr
405 = vlib_add_trace (vm, node, b[0], sizeof (*tr));
406 tr->next_index = next[0];
407 tr->error = error0;
408 tr->tunnel_index = t0 == 0 ? ~0 : t0 - vxm->tunnels;
409 tr->vni = vnet_get_vni (vxlan0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700410 }
Eyal Baria5679e82018-08-26 15:20:07 +0300411 b += 1;
412 next += 1;
413 n_left_from -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414 }
Eyal Baria5679e82018-08-26 15:20:07 +0300415 vlib_buffer_enqueue_to_next (vm, node, from, nexts, from_frame->n_vectors);
Eyal Barifb663012017-10-19 15:27:51 +0300416 /* Do we still need this now that tunnel tx stats is kept? */
417 u32 node_idx = is_ip4 ? vxlan4_input_node.index : vxlan6_input_node.index;
418 vlib_node_increment_counter (vm, node_idx, VXLAN_ERROR_DECAPSULATED,
Eyal Baria5679e82018-08-26 15:20:07 +0300419 from_frame->n_vectors - pkts_dropped);
Eyal Barifb663012017-10-19 15:27:51 +0300420
Ed Warnickecb9cada2015-12-08 15:45:58 -0700421 return from_frame->n_vectors;
422}
423
Eyal Baria5679e82018-08-26 15:20:07 +0300424VLIB_NODE_FN (vxlan4_input_node) (vlib_main_t * vm,
425 vlib_node_runtime_t * node,
426 vlib_frame_t * from_frame)
Chris Luke99cb3352016-04-26 10:49:53 -0400427{
Eyal Bari7d92c092018-07-24 15:15:37 +0300428 return vxlan_input (vm, node, from_frame, /* is_ip4 */ 1);
Chris Luke99cb3352016-04-26 10:49:53 -0400429}
430
Eyal Baria5679e82018-08-26 15:20:07 +0300431VLIB_NODE_FN (vxlan6_input_node) (vlib_main_t * vm,
432 vlib_node_runtime_t * node,
433 vlib_frame_t * from_frame)
Chris Luke99cb3352016-04-26 10:49:53 -0400434{
Eyal Bari7d92c092018-07-24 15:15:37 +0300435 return vxlan_input (vm, node, from_frame, /* is_ip4 */ 0);
Chris Luke99cb3352016-04-26 10:49:53 -0400436}
437
Eyal Bari7d92c092018-07-24 15:15:37 +0300438static char *vxlan_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700439#define vxlan_error(n,s) s,
440#include <vnet/vxlan/vxlan_error.def>
441#undef vxlan_error
Ed Warnickecb9cada2015-12-08 15:45:58 -0700442};
443
Eyal Bari7d92c092018-07-24 15:15:37 +0300444/* *INDENT-OFF* */
445VLIB_REGISTER_NODE (vxlan4_input_node) =
446{
Chris Luke99cb3352016-04-26 10:49:53 -0400447 .name = "vxlan4-input",
Chris Luke99cb3352016-04-26 10:49:53 -0400448 .vector_size = sizeof (u32),
Chris Luke99cb3352016-04-26 10:49:53 -0400449 .n_errors = VXLAN_N_ERROR,
450 .error_strings = vxlan_error_strings,
Chris Luke99cb3352016-04-26 10:49:53 -0400451 .n_next_nodes = VXLAN_INPUT_N_NEXT,
Eyal Bari7d92c092018-07-24 15:15:37 +0300452 .format_trace = format_vxlan_rx_trace,
Chris Luke99cb3352016-04-26 10:49:53 -0400453 .next_nodes = {
454#define _(s,n) [VXLAN_INPUT_NEXT_##s] = n,
455 foreach_vxlan_input_next
456#undef _
457 },
Chris Luke99cb3352016-04-26 10:49:53 -0400458};
Damjan Marion1c80e832016-05-11 23:07:18 +0200459
Eyal Bari7d92c092018-07-24 15:15:37 +0300460VLIB_REGISTER_NODE (vxlan6_input_node) =
461{
Chris Luke99cb3352016-04-26 10:49:53 -0400462 .name = "vxlan6-input",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700463 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464 .n_errors = VXLAN_N_ERROR,
465 .error_strings = vxlan_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466 .n_next_nodes = VXLAN_INPUT_N_NEXT,
467 .next_nodes = {
468#define _(s,n) [VXLAN_INPUT_NEXT_##s] = n,
469 foreach_vxlan_input_next
470#undef _
471 },
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472 .format_trace = format_vxlan_rx_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473};
Eyal Bari7d92c092018-07-24 15:15:37 +0300474/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +0200475
Eyal Bari7d92c092018-07-24 15:15:37 +0300476typedef enum
477{
John Lo37682e12016-11-30 12:51:39 -0500478 IP_VXLAN_BYPASS_NEXT_DROP,
479 IP_VXLAN_BYPASS_NEXT_VXLAN,
480 IP_VXLAN_BYPASS_N_NEXT,
481} ip_vxan_bypass_next_t;
482
483always_inline uword
484ip_vxlan_bypass_inline (vlib_main_t * vm,
John Lo2b81eb82017-01-30 13:12:10 -0500485 vlib_node_runtime_t * node,
Eyal Bari7d92c092018-07-24 15:15:37 +0300486 vlib_frame_t * frame, u32 is_ip4)
John Lo37682e12016-11-30 12:51:39 -0500487{
Eyal Bari7d92c092018-07-24 15:15:37 +0300488 vxlan_main_t *vxm = &vxlan_main;
489 u32 *from, *to_next, n_left_from, n_left_to_next, next_index;
490 vlib_node_runtime_t *error_node =
491 vlib_node_get_runtime (vm, ip4_input_node.index);
492 ip4_address_t addr4; /* last IPv4 address matching a local VTEP address */
493 ip6_address_t addr6; /* last IPv6 address matching a local VTEP address */
John Lo37682e12016-11-30 12:51:39 -0500494
495 from = vlib_frame_vector_args (frame);
496 n_left_from = frame->n_vectors;
497 next_index = node->cached_next_index;
498
499 if (node->flags & VLIB_NODE_FLAG_TRACE)
500 ip4_forward_next_trace (vm, node, frame, VLIB_TX);
501
Eyal Bari7d92c092018-07-24 15:15:37 +0300502 if (is_ip4)
503 addr4.data_u32 = ~0;
504 else
505 ip6_address_set_zero (&addr6);
John Lo37682e12016-11-30 12:51:39 -0500506
507 while (n_left_from > 0)
508 {
509 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
510
511 while (n_left_from >= 4 && n_left_to_next >= 2)
Eyal Bari7d92c092018-07-24 15:15:37 +0300512 {
513 vlib_buffer_t *b0, *b1;
514 ip4_header_t *ip40, *ip41;
515 ip6_header_t *ip60, *ip61;
516 udp_header_t *udp0, *udp1;
517 u32 bi0, ip_len0, udp_len0, flags0, next0;
518 u32 bi1, ip_len1, udp_len1, flags1, next1;
519 i32 len_diff0, len_diff1;
520 u8 error0, good_udp0, proto0;
521 u8 error1, good_udp1, proto1;
John Lo37682e12016-11-30 12:51:39 -0500522
523 /* Prefetch next iteration. */
524 {
Eyal Bari7d92c092018-07-24 15:15:37 +0300525 vlib_buffer_t *p2, *p3;
John Lo37682e12016-11-30 12:51:39 -0500526
527 p2 = vlib_get_buffer (vm, from[2]);
528 p3 = vlib_get_buffer (vm, from[3]);
529
530 vlib_prefetch_buffer_header (p2, LOAD);
531 vlib_prefetch_buffer_header (p3, LOAD);
532
Eyal Bari7d92c092018-07-24 15:15:37 +0300533 CLIB_PREFETCH (p2->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
534 CLIB_PREFETCH (p3->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
John Lo37682e12016-11-30 12:51:39 -0500535 }
536
Eyal Bari7d92c092018-07-24 15:15:37 +0300537 bi0 = to_next[0] = from[0];
538 bi1 = to_next[1] = from[1];
539 from += 2;
540 n_left_from -= 2;
541 to_next += 2;
542 n_left_to_next -= 2;
John Lo37682e12016-11-30 12:51:39 -0500543
544 b0 = vlib_get_buffer (vm, bi0);
545 b1 = vlib_get_buffer (vm, bi1);
John Lo2b81eb82017-01-30 13:12:10 -0500546 if (is_ip4)
547 {
548 ip40 = vlib_buffer_get_current (b0);
549 ip41 = vlib_buffer_get_current (b1);
550 }
551 else
552 {
553 ip60 = vlib_buffer_get_current (b0);
554 ip61 = vlib_buffer_get_current (b1);
555 }
John Lo37682e12016-11-30 12:51:39 -0500556
557 /* Setup packet for next IP feature */
Eyal Bari7d92c092018-07-24 15:15:37 +0300558 vnet_feature_next (&next0, b0);
559 vnet_feature_next (&next1, b1);
John Lo37682e12016-11-30 12:51:39 -0500560
John Lo2b81eb82017-01-30 13:12:10 -0500561 if (is_ip4)
562 {
563 /* Treat IP frag packets as "experimental" protocol for now
Eyal Bari7d92c092018-07-24 15:15:37 +0300564 until support of IP frag reassembly is implemented */
565 proto0 = ip4_is_fragment (ip40) ? 0xfe : ip40->protocol;
566 proto1 = ip4_is_fragment (ip41) ? 0xfe : ip41->protocol;
John Lo2b81eb82017-01-30 13:12:10 -0500567 }
568 else
569 {
570 proto0 = ip60->protocol;
571 proto1 = ip61->protocol;
572 }
John Lo37682e12016-11-30 12:51:39 -0500573
574 /* Process packet 0 */
575 if (proto0 != IP_PROTOCOL_UDP)
Eyal Bari7d92c092018-07-24 15:15:37 +0300576 goto exit0; /* not UDP packet */
John Lo37682e12016-11-30 12:51:39 -0500577
John Lo2b81eb82017-01-30 13:12:10 -0500578 if (is_ip4)
579 udp0 = ip4_next_header (ip40);
580 else
581 udp0 = ip6_next_header (ip60);
582
John Lo37682e12016-11-30 12:51:39 -0500583 if (udp0->dst_port != clib_host_to_net_u16 (UDP_DST_PORT_vxlan))
Eyal Bari7d92c092018-07-24 15:15:37 +0300584 goto exit0; /* not VXLAN packet */
John Lo37682e12016-11-30 12:51:39 -0500585
Eyal Bari7d92c092018-07-24 15:15:37 +0300586 /* Validate DIP against VTEPs */
Eyal Bari0f4b1842018-04-12 12:39:51 +0300587 if (is_ip4)
John Lo37682e12016-11-30 12:51:39 -0500588 {
John Lo2b81eb82017-01-30 13:12:10 -0500589 if (addr4.as_u32 != ip40->dst_address.as_u32)
Eyal Bari7d92c092018-07-24 15:15:37 +0300590 {
John Lo2b81eb82017-01-30 13:12:10 -0500591 if (!hash_get (vxm->vtep4, ip40->dst_address.as_u32))
Eyal Bari7d92c092018-07-24 15:15:37 +0300592 goto exit0; /* no local VTEP for VXLAN packet */
John Lo2b81eb82017-01-30 13:12:10 -0500593 addr4 = ip40->dst_address;
Eyal Bari7d92c092018-07-24 15:15:37 +0300594 }
John Lo37682e12016-11-30 12:51:39 -0500595 }
John Lo2b81eb82017-01-30 13:12:10 -0500596 else
597 {
598 if (!ip6_address_is_equal (&addr6, &ip60->dst_address))
Eyal Bari7d92c092018-07-24 15:15:37 +0300599 {
John Lo2b81eb82017-01-30 13:12:10 -0500600 if (!hash_get_mem (vxm->vtep6, &ip60->dst_address))
Eyal Bari7d92c092018-07-24 15:15:37 +0300601 goto exit0; /* no local VTEP for VXLAN packet */
John Lo2b81eb82017-01-30 13:12:10 -0500602 addr6 = ip60->dst_address;
Eyal Bari7d92c092018-07-24 15:15:37 +0300603 }
John Lo2b81eb82017-01-30 13:12:10 -0500604 }
John Lo37682e12016-11-30 12:51:39 -0500605
606 flags0 = b0->flags;
Damjan Marion213b5aa2017-07-13 21:19:27 +0200607 good_udp0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
John Lo37682e12016-11-30 12:51:39 -0500608
609 /* Don't verify UDP checksum for packets with explicit zero checksum. */
610 good_udp0 |= udp0->checksum == 0;
611
612 /* Verify UDP length */
John Lo2b81eb82017-01-30 13:12:10 -0500613 if (is_ip4)
614 ip_len0 = clib_net_to_host_u16 (ip40->length);
615 else
616 ip_len0 = clib_net_to_host_u16 (ip60->payload_length);
John Lo37682e12016-11-30 12:51:39 -0500617 udp_len0 = clib_net_to_host_u16 (udp0->length);
John Lo37682e12016-11-30 12:51:39 -0500618 len_diff0 = ip_len0 - udp_len0;
619
620 /* Verify UDP checksum */
621 if (PREDICT_FALSE (!good_udp0))
622 {
Damjan Marion213b5aa2017-07-13 21:19:27 +0200623 if ((flags0 & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED) == 0)
Eyal Bari7d92c092018-07-24 15:15:37 +0300624 {
John Lo2b81eb82017-01-30 13:12:10 -0500625 if (is_ip4)
626 flags0 = ip4_tcp_udp_validate_checksum (vm, b0);
627 else
628 flags0 = ip6_tcp_udp_icmp_validate_checksum (vm, b0);
629 good_udp0 =
Damjan Marion213b5aa2017-07-13 21:19:27 +0200630 (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
Eyal Bari7d92c092018-07-24 15:15:37 +0300631 }
John Lo37682e12016-11-30 12:51:39 -0500632 }
633
John Lo2b81eb82017-01-30 13:12:10 -0500634 if (is_ip4)
635 {
636 error0 = good_udp0 ? 0 : IP4_ERROR_UDP_CHECKSUM;
637 error0 = (len_diff0 >= 0) ? error0 : IP4_ERROR_UDP_LENGTH;
638 }
639 else
640 {
641 error0 = good_udp0 ? 0 : IP6_ERROR_UDP_CHECKSUM;
642 error0 = (len_diff0 >= 0) ? error0 : IP6_ERROR_UDP_LENGTH;
643 }
John Lo37682e12016-11-30 12:51:39 -0500644
Eyal Bari0f4b1842018-04-12 12:39:51 +0300645 next0 = error0 ?
John Lo37682e12016-11-30 12:51:39 -0500646 IP_VXLAN_BYPASS_NEXT_DROP : IP_VXLAN_BYPASS_NEXT_VXLAN;
647 b0->error = error0 ? error_node->errors[error0] : 0;
648
John Lo2b81eb82017-01-30 13:12:10 -0500649 /* vxlan-input node expect current at VXLAN header */
650 if (is_ip4)
Eyal Bari7d92c092018-07-24 15:15:37 +0300651 vlib_buffer_advance (b0,
652 sizeof (ip4_header_t) +
653 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500654 else
Eyal Bari7d92c092018-07-24 15:15:37 +0300655 vlib_buffer_advance (b0,
656 sizeof (ip6_header_t) +
657 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500658
John Lo37682e12016-11-30 12:51:39 -0500659 exit0:
660 /* Process packet 1 */
661 if (proto1 != IP_PROTOCOL_UDP)
Eyal Bari7d92c092018-07-24 15:15:37 +0300662 goto exit1; /* not UDP packet */
John Lo37682e12016-11-30 12:51:39 -0500663
John Lo2b81eb82017-01-30 13:12:10 -0500664 if (is_ip4)
665 udp1 = ip4_next_header (ip41);
666 else
667 udp1 = ip6_next_header (ip61);
668
John Lo37682e12016-11-30 12:51:39 -0500669 if (udp1->dst_port != clib_host_to_net_u16 (UDP_DST_PORT_vxlan))
Eyal Bari7d92c092018-07-24 15:15:37 +0300670 goto exit1; /* not VXLAN packet */
John Lo37682e12016-11-30 12:51:39 -0500671
Eyal Bari7d92c092018-07-24 15:15:37 +0300672 /* Validate DIP against VTEPs */
Eyal Bari0f4b1842018-04-12 12:39:51 +0300673 if (is_ip4)
John Lo37682e12016-11-30 12:51:39 -0500674 {
John Lo2b81eb82017-01-30 13:12:10 -0500675 if (addr4.as_u32 != ip41->dst_address.as_u32)
Eyal Bari7d92c092018-07-24 15:15:37 +0300676 {
John Lo2b81eb82017-01-30 13:12:10 -0500677 if (!hash_get (vxm->vtep4, ip41->dst_address.as_u32))
Eyal Bari7d92c092018-07-24 15:15:37 +0300678 goto exit1; /* no local VTEP for VXLAN packet */
John Lo2b81eb82017-01-30 13:12:10 -0500679 addr4 = ip41->dst_address;
680 }
John Lo37682e12016-11-30 12:51:39 -0500681 }
John Lo2b81eb82017-01-30 13:12:10 -0500682 else
683 {
684 if (!ip6_address_is_equal (&addr6, &ip61->dst_address))
Eyal Bari7d92c092018-07-24 15:15:37 +0300685 {
John Lo2b81eb82017-01-30 13:12:10 -0500686 if (!hash_get_mem (vxm->vtep6, &ip61->dst_address))
Eyal Bari7d92c092018-07-24 15:15:37 +0300687 goto exit1; /* no local VTEP for VXLAN packet */
John Lo2b81eb82017-01-30 13:12:10 -0500688 addr6 = ip61->dst_address;
689 }
690 }
John Lo37682e12016-11-30 12:51:39 -0500691
692 flags1 = b1->flags;
Damjan Marion213b5aa2017-07-13 21:19:27 +0200693 good_udp1 = (flags1 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
John Lo37682e12016-11-30 12:51:39 -0500694
695 /* Don't verify UDP checksum for packets with explicit zero checksum. */
696 good_udp1 |= udp1->checksum == 0;
697
698 /* Verify UDP length */
John Lo2b81eb82017-01-30 13:12:10 -0500699 if (is_ip4)
700 ip_len1 = clib_net_to_host_u16 (ip41->length);
701 else
702 ip_len1 = clib_net_to_host_u16 (ip61->payload_length);
John Lo37682e12016-11-30 12:51:39 -0500703 udp_len1 = clib_net_to_host_u16 (udp1->length);
John Lo37682e12016-11-30 12:51:39 -0500704 len_diff1 = ip_len1 - udp_len1;
705
706 /* Verify UDP checksum */
707 if (PREDICT_FALSE (!good_udp1))
708 {
Damjan Marion213b5aa2017-07-13 21:19:27 +0200709 if ((flags1 & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED) == 0)
Eyal Bari7d92c092018-07-24 15:15:37 +0300710 {
John Lo2b81eb82017-01-30 13:12:10 -0500711 if (is_ip4)
712 flags1 = ip4_tcp_udp_validate_checksum (vm, b1);
713 else
714 flags1 = ip6_tcp_udp_icmp_validate_checksum (vm, b1);
715 good_udp1 =
Damjan Marion213b5aa2017-07-13 21:19:27 +0200716 (flags1 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
Eyal Bari7d92c092018-07-24 15:15:37 +0300717 }
John Lo37682e12016-11-30 12:51:39 -0500718 }
719
John Lo2b81eb82017-01-30 13:12:10 -0500720 if (is_ip4)
721 {
722 error1 = good_udp1 ? 0 : IP4_ERROR_UDP_CHECKSUM;
723 error1 = (len_diff1 >= 0) ? error1 : IP4_ERROR_UDP_LENGTH;
724 }
725 else
726 {
Eyal Baria93ea422017-02-01 13:36:15 +0200727 error1 = good_udp1 ? 0 : IP6_ERROR_UDP_CHECKSUM;
728 error1 = (len_diff1 >= 0) ? error1 : IP6_ERROR_UDP_LENGTH;
John Lo2b81eb82017-01-30 13:12:10 -0500729 }
John Lo37682e12016-11-30 12:51:39 -0500730
Eyal Bari0f4b1842018-04-12 12:39:51 +0300731 next1 = error1 ?
John Lo37682e12016-11-30 12:51:39 -0500732 IP_VXLAN_BYPASS_NEXT_DROP : IP_VXLAN_BYPASS_NEXT_VXLAN;
733 b1->error = error1 ? error_node->errors[error1] : 0;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300734
John Lo2b81eb82017-01-30 13:12:10 -0500735 /* vxlan-input node expect current at VXLAN header */
736 if (is_ip4)
Eyal Bari7d92c092018-07-24 15:15:37 +0300737 vlib_buffer_advance (b1,
738 sizeof (ip4_header_t) +
739 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500740 else
Eyal Bari7d92c092018-07-24 15:15:37 +0300741 vlib_buffer_advance (b1,
742 sizeof (ip6_header_t) +
743 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500744
John Lo37682e12016-11-30 12:51:39 -0500745 exit1:
746 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
747 to_next, n_left_to_next,
748 bi0, bi1, next0, next1);
749 }
750
751 while (n_left_from > 0 && n_left_to_next > 0)
752 {
Eyal Bari7d92c092018-07-24 15:15:37 +0300753 vlib_buffer_t *b0;
754 ip4_header_t *ip40;
755 ip6_header_t *ip60;
756 udp_header_t *udp0;
757 u32 bi0, ip_len0, udp_len0, flags0, next0;
John Lo37682e12016-11-30 12:51:39 -0500758 i32 len_diff0;
759 u8 error0, good_udp0, proto0;
760
761 bi0 = to_next[0] = from[0];
762 from += 1;
763 n_left_from -= 1;
764 to_next += 1;
765 n_left_to_next -= 1;
766
767 b0 = vlib_get_buffer (vm, bi0);
John Lo2b81eb82017-01-30 13:12:10 -0500768 if (is_ip4)
769 ip40 = vlib_buffer_get_current (b0);
770 else
771 ip60 = vlib_buffer_get_current (b0);
John Lo37682e12016-11-30 12:51:39 -0500772
773 /* Setup packet for next IP feature */
Eyal Bari7d92c092018-07-24 15:15:37 +0300774 vnet_feature_next (&next0, b0);
John Lo37682e12016-11-30 12:51:39 -0500775
John Lo2b81eb82017-01-30 13:12:10 -0500776 if (is_ip4)
777 /* Treat IP4 frag packets as "experimental" protocol for now
778 until support of IP frag reassembly is implemented */
Eyal Bari7d92c092018-07-24 15:15:37 +0300779 proto0 = ip4_is_fragment (ip40) ? 0xfe : ip40->protocol;
John Lo2b81eb82017-01-30 13:12:10 -0500780 else
781 proto0 = ip60->protocol;
John Lo37682e12016-11-30 12:51:39 -0500782
783 if (proto0 != IP_PROTOCOL_UDP)
Eyal Bari7d92c092018-07-24 15:15:37 +0300784 goto exit; /* not UDP packet */
John Lo37682e12016-11-30 12:51:39 -0500785
John Lo2b81eb82017-01-30 13:12:10 -0500786 if (is_ip4)
787 udp0 = ip4_next_header (ip40);
788 else
789 udp0 = ip6_next_header (ip60);
790
John Lo37682e12016-11-30 12:51:39 -0500791 if (udp0->dst_port != clib_host_to_net_u16 (UDP_DST_PORT_vxlan))
Eyal Bari7d92c092018-07-24 15:15:37 +0300792 goto exit; /* not VXLAN packet */
John Lo37682e12016-11-30 12:51:39 -0500793
Eyal Bari7d92c092018-07-24 15:15:37 +0300794 /* Validate DIP against VTEPs */
Eyal Bari0f4b1842018-04-12 12:39:51 +0300795 if (is_ip4)
John Lo37682e12016-11-30 12:51:39 -0500796 {
John Lo2b81eb82017-01-30 13:12:10 -0500797 if (addr4.as_u32 != ip40->dst_address.as_u32)
Eyal Bari7d92c092018-07-24 15:15:37 +0300798 {
John Lo2b81eb82017-01-30 13:12:10 -0500799 if (!hash_get (vxm->vtep4, ip40->dst_address.as_u32))
Eyal Bari7d92c092018-07-24 15:15:37 +0300800 goto exit; /* no local VTEP for VXLAN packet */
John Lo2b81eb82017-01-30 13:12:10 -0500801 addr4 = ip40->dst_address;
802 }
John Lo37682e12016-11-30 12:51:39 -0500803 }
John Lo2b81eb82017-01-30 13:12:10 -0500804 else
805 {
806 if (!ip6_address_is_equal (&addr6, &ip60->dst_address))
Eyal Bari7d92c092018-07-24 15:15:37 +0300807 {
John Lo2b81eb82017-01-30 13:12:10 -0500808 if (!hash_get_mem (vxm->vtep6, &ip60->dst_address))
Eyal Bari7d92c092018-07-24 15:15:37 +0300809 goto exit; /* no local VTEP for VXLAN packet */
John Lo2b81eb82017-01-30 13:12:10 -0500810 addr6 = ip60->dst_address;
811 }
812 }
John Lo37682e12016-11-30 12:51:39 -0500813
814 flags0 = b0->flags;
Damjan Marion213b5aa2017-07-13 21:19:27 +0200815 good_udp0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
John Lo37682e12016-11-30 12:51:39 -0500816
817 /* Don't verify UDP checksum for packets with explicit zero checksum. */
818 good_udp0 |= udp0->checksum == 0;
819
820 /* Verify UDP length */
John Lo2b81eb82017-01-30 13:12:10 -0500821 if (is_ip4)
822 ip_len0 = clib_net_to_host_u16 (ip40->length);
823 else
824 ip_len0 = clib_net_to_host_u16 (ip60->payload_length);
John Lo37682e12016-11-30 12:51:39 -0500825 udp_len0 = clib_net_to_host_u16 (udp0->length);
John Lo37682e12016-11-30 12:51:39 -0500826 len_diff0 = ip_len0 - udp_len0;
827
828 /* Verify UDP checksum */
829 if (PREDICT_FALSE (!good_udp0))
830 {
Damjan Marion213b5aa2017-07-13 21:19:27 +0200831 if ((flags0 & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED) == 0)
Eyal Bari7d92c092018-07-24 15:15:37 +0300832 {
John Lo2b81eb82017-01-30 13:12:10 -0500833 if (is_ip4)
834 flags0 = ip4_tcp_udp_validate_checksum (vm, b0);
835 else
836 flags0 = ip6_tcp_udp_icmp_validate_checksum (vm, b0);
837 good_udp0 =
Damjan Marion213b5aa2017-07-13 21:19:27 +0200838 (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
Eyal Bari7d92c092018-07-24 15:15:37 +0300839 }
John Lo37682e12016-11-30 12:51:39 -0500840 }
841
John Lo2b81eb82017-01-30 13:12:10 -0500842 if (is_ip4)
843 {
844 error0 = good_udp0 ? 0 : IP4_ERROR_UDP_CHECKSUM;
845 error0 = (len_diff0 >= 0) ? error0 : IP4_ERROR_UDP_LENGTH;
846 }
847 else
848 {
849 error0 = good_udp0 ? 0 : IP6_ERROR_UDP_CHECKSUM;
850 error0 = (len_diff0 >= 0) ? error0 : IP6_ERROR_UDP_LENGTH;
851 }
John Lo37682e12016-11-30 12:51:39 -0500852
Eyal Bari0f4b1842018-04-12 12:39:51 +0300853 next0 = error0 ?
John Lo37682e12016-11-30 12:51:39 -0500854 IP_VXLAN_BYPASS_NEXT_DROP : IP_VXLAN_BYPASS_NEXT_VXLAN;
855 b0->error = error0 ? error_node->errors[error0] : 0;
856
John Lo2b81eb82017-01-30 13:12:10 -0500857 /* vxlan-input node expect current at VXLAN header */
858 if (is_ip4)
Eyal Bari7d92c092018-07-24 15:15:37 +0300859 vlib_buffer_advance (b0,
860 sizeof (ip4_header_t) +
861 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500862 else
Eyal Bari7d92c092018-07-24 15:15:37 +0300863 vlib_buffer_advance (b0,
864 sizeof (ip6_header_t) +
865 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500866
John Lo37682e12016-11-30 12:51:39 -0500867 exit:
868 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
869 to_next, n_left_to_next,
870 bi0, next0);
871 }
872
873 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
874 }
875
876 return frame->n_vectors;
877}
878
Eyal Baria5679e82018-08-26 15:20:07 +0300879VLIB_NODE_FN (ip4_vxlan_bypass_node) (vlib_main_t * vm,
880 vlib_node_runtime_t * node,
881 vlib_frame_t * frame)
John Lo37682e12016-11-30 12:51:39 -0500882{
883 return ip_vxlan_bypass_inline (vm, node, frame, /* is_ip4 */ 1);
884}
885
Eyal Bari7d92c092018-07-24 15:15:37 +0300886/* *INDENT-OFF* */
887VLIB_REGISTER_NODE (ip4_vxlan_bypass_node) =
888{
John Lo37682e12016-11-30 12:51:39 -0500889 .name = "ip4-vxlan-bypass",
890 .vector_size = sizeof (u32),
John Lo37682e12016-11-30 12:51:39 -0500891 .n_next_nodes = IP_VXLAN_BYPASS_N_NEXT,
892 .next_nodes = {
Eyal Bari7d92c092018-07-24 15:15:37 +0300893 [IP_VXLAN_BYPASS_NEXT_DROP] = "error-drop",
894 [IP_VXLAN_BYPASS_NEXT_VXLAN] = "vxlan4-input",
John Lo37682e12016-11-30 12:51:39 -0500895 },
John Lo37682e12016-11-30 12:51:39 -0500896 .format_buffer = format_ip4_header,
897 .format_trace = format_ip4_forward_next_trace,
898};
899
Eyal Bari7d92c092018-07-24 15:15:37 +0300900/* *INDENT-ON* */
John Lo37682e12016-11-30 12:51:39 -0500901
John Lo37682e12016-11-30 12:51:39 -0500902/* Dummy init function to get us linked in. */
Eyal Baria5679e82018-08-26 15:20:07 +0300903static clib_error_t *
Eyal Bari7d92c092018-07-24 15:15:37 +0300904ip4_vxlan_bypass_init (vlib_main_t * vm)
905{
906 return 0;
907}
John Lo37682e12016-11-30 12:51:39 -0500908
909VLIB_INIT_FUNCTION (ip4_vxlan_bypass_init);
John Lo2b81eb82017-01-30 13:12:10 -0500910
Eyal Baria5679e82018-08-26 15:20:07 +0300911VLIB_NODE_FN (ip6_vxlan_bypass_node) (vlib_main_t * vm,
912 vlib_node_runtime_t * node,
913 vlib_frame_t * frame)
John Lo2b81eb82017-01-30 13:12:10 -0500914{
915 return ip_vxlan_bypass_inline (vm, node, frame, /* is_ip4 */ 0);
916}
917
Eyal Bari7d92c092018-07-24 15:15:37 +0300918/* *INDENT-OFF* */
919VLIB_REGISTER_NODE (ip6_vxlan_bypass_node) =
920{
John Lo2b81eb82017-01-30 13:12:10 -0500921 .name = "ip6-vxlan-bypass",
922 .vector_size = sizeof (u32),
John Lo2b81eb82017-01-30 13:12:10 -0500923 .n_next_nodes = IP_VXLAN_BYPASS_N_NEXT,
924 .next_nodes = {
925 [IP_VXLAN_BYPASS_NEXT_DROP] = "error-drop",
926 [IP_VXLAN_BYPASS_NEXT_VXLAN] = "vxlan6-input",
927 },
John Lo2b81eb82017-01-30 13:12:10 -0500928 .format_buffer = format_ip6_header,
929 .format_trace = format_ip6_forward_next_trace,
930};
931
Eyal Bari7d92c092018-07-24 15:15:37 +0300932/* *INDENT-ON* */
John Lo2b81eb82017-01-30 13:12:10 -0500933
934/* Dummy init function to get us linked in. */
Eyal Baria5679e82018-08-26 15:20:07 +0300935static clib_error_t *
Eyal Bari7d92c092018-07-24 15:15:37 +0300936ip6_vxlan_bypass_init (vlib_main_t * vm)
937{
938 return 0;
939}
John Lo2b81eb82017-01-30 13:12:10 -0500940
941VLIB_INIT_FUNCTION (ip6_vxlan_bypass_init);
eyal bariaf86a482018-04-17 11:20:27 +0300942
943#define foreach_vxlan_flow_input_next \
944_(DROP, "error-drop") \
945_(L2_INPUT, "l2-input")
946
947typedef enum
948{
949#define _(s,n) VXLAN_FLOW_NEXT_##s,
950 foreach_vxlan_flow_input_next
951#undef _
Eyal Bari7d92c092018-07-24 15:15:37 +0300952 VXLAN_FLOW_N_NEXT,
eyal bariaf86a482018-04-17 11:20:27 +0300953} vxlan_flow_input_next_t;
954
955#define foreach_vxlan_flow_error \
956 _(NONE, "no error") \
957 _(IP_CHECKSUM_ERROR, "Rx ip checksum errors") \
958 _(IP_HEADER_ERROR, "Rx ip header errors") \
959 _(UDP_CHECKSUM_ERROR, "Rx udp checksum errors") \
960 _(UDP_LENGTH_ERROR, "Rx udp length errors")
961
962typedef enum
963{
964#define _(f,s) VXLAN_FLOW_ERROR_##f,
965 foreach_vxlan_flow_error
966#undef _
967 VXLAN_FLOW_N_ERROR,
968} vxlan_flow_error_t;
969
970static char *vxlan_flow_error_strings[] = {
971#define _(n,s) s,
972 foreach_vxlan_flow_error
973#undef _
974};
975
976
977static_always_inline u8
Eyal Bari7d92c092018-07-24 15:15:37 +0300978vxlan_validate_udp_csum (vlib_main_t * vm, vlib_buffer_t * b)
eyal bariaf86a482018-04-17 11:20:27 +0300979{
980 u32 flags = b->flags;
Eyal Bari7d92c092018-07-24 15:15:37 +0300981 enum
982 { offset =
983 sizeof (ip4_header_t) + sizeof (udp_header_t) + sizeof (vxlan_header_t),
984 };
eyal bariaf86a482018-04-17 11:20:27 +0300985
986 /* Verify UDP checksum */
987 if ((flags & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED) == 0)
Eyal Bari7d92c092018-07-24 15:15:37 +0300988 {
989 vlib_buffer_advance (b, -offset);
990 flags = ip4_tcp_udp_validate_checksum (vm, b);
991 vlib_buffer_advance (b, offset);
992 }
eyal bariaf86a482018-04-17 11:20:27 +0300993
994 return (flags & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
995}
996
997static_always_inline u8
Eyal Bari7d92c092018-07-24 15:15:37 +0300998vxlan_check_udp_csum (vlib_main_t * vm, vlib_buffer_t * b)
eyal bariaf86a482018-04-17 11:20:27 +0300999{
Eyal Bari7d92c092018-07-24 15:15:37 +03001000 ip4_vxlan_header_t *hdr = vlib_buffer_get_current (b) - sizeof *hdr;
1001 udp_header_t *udp = &hdr->udp;
eyal bariaf86a482018-04-17 11:20:27 +03001002 /* Don't verify UDP checksum for packets with explicit zero checksum. */
1003 u8 good_csum = (b->flags & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0 ||
1004 udp->checksum == 0;
1005
1006 return !good_csum;
1007}
1008
1009static_always_inline u8
Eyal Bari7d92c092018-07-24 15:15:37 +03001010vxlan_check_ip (vlib_buffer_t * b, u16 payload_len)
eyal bariaf86a482018-04-17 11:20:27 +03001011{
Eyal Bari7d92c092018-07-24 15:15:37 +03001012 ip4_vxlan_header_t *hdr = vlib_buffer_get_current (b) - sizeof *hdr;
eyal bariaf86a482018-04-17 11:20:27 +03001013 u16 ip_len = clib_net_to_host_u16 (hdr->ip4.length);
1014 u16 expected = payload_len + sizeof *hdr;
Eyal Bari7d92c092018-07-24 15:15:37 +03001015 return ip_len > expected || hdr->ip4.ttl == 0
1016 || hdr->ip4.ip_version_and_header_length != 0x45;
eyal bariaf86a482018-04-17 11:20:27 +03001017}
1018
1019static_always_inline u8
Eyal Bari7d92c092018-07-24 15:15:37 +03001020vxlan_check_ip_udp_len (vlib_buffer_t * b)
eyal bariaf86a482018-04-17 11:20:27 +03001021{
Eyal Bari7d92c092018-07-24 15:15:37 +03001022 ip4_vxlan_header_t *hdr = vlib_buffer_get_current (b) - sizeof *hdr;
eyal bariaf86a482018-04-17 11:20:27 +03001023 u16 ip_len = clib_net_to_host_u16 (hdr->ip4.length);
1024 u16 udp_len = clib_net_to_host_u16 (hdr->udp.length);
1025 return udp_len > ip_len;
1026}
1027
1028static_always_inline u8
1029vxlan_err_code (u8 ip_err0, u8 udp_err0, u8 csum_err0)
1030{
1031 u8 error0 = VXLAN_FLOW_ERROR_NONE;
1032 if (ip_err0)
Eyal Bari7d92c092018-07-24 15:15:37 +03001033 error0 = VXLAN_FLOW_ERROR_IP_HEADER_ERROR;
eyal bariaf86a482018-04-17 11:20:27 +03001034 if (udp_err0)
Eyal Bari7d92c092018-07-24 15:15:37 +03001035 error0 = VXLAN_FLOW_ERROR_UDP_LENGTH_ERROR;
eyal bariaf86a482018-04-17 11:20:27 +03001036 if (csum_err0)
Eyal Bari7d92c092018-07-24 15:15:37 +03001037 error0 = VXLAN_FLOW_ERROR_UDP_CHECKSUM_ERROR;
eyal bariaf86a482018-04-17 11:20:27 +03001038 return error0;
1039}
1040
Eyal Bari93a6f252018-06-14 08:57:39 +03001041VLIB_NODE_FN (vxlan4_flow_input_node) (vlib_main_t * vm,
Eyal Bari7d92c092018-07-24 15:15:37 +03001042 vlib_node_runtime_t * node,
1043 vlib_frame_t * f)
eyal bariaf86a482018-04-17 11:20:27 +03001044{
Eyal Bari7d92c092018-07-24 15:15:37 +03001045 enum
1046 { payload_offset = sizeof (ip4_vxlan_header_t) };
eyal bariaf86a482018-04-17 11:20:27 +03001047
Eyal Bari7d92c092018-07-24 15:15:37 +03001048 vxlan_main_t *vxm = &vxlan_main;
1049 vnet_interface_main_t *im = &vnet_main.interface_main;
1050 vlib_combined_counter_main_t *rx_counter[VXLAN_FLOW_N_NEXT] = {
1051 [VXLAN_FLOW_NEXT_DROP] =
1052 im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_DROP,
1053 [VXLAN_FLOW_NEXT_L2_INPUT] =
1054 im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_RX,
eyal bariaf86a482018-04-17 11:20:27 +03001055 };
Eyal Bari7d92c092018-07-24 15:15:37 +03001056 u32 thread_index = vlib_get_thread_index ();
eyal bariaf86a482018-04-17 11:20:27 +03001057
Eyal Bari7d92c092018-07-24 15:15:37 +03001058 u32 *from = vlib_frame_vector_args (f);
eyal bariaf86a482018-04-17 11:20:27 +03001059 u32 n_left_from = f->n_vectors;
1060 u32 next_index = VXLAN_FLOW_NEXT_L2_INPUT;
1061
1062 while (n_left_from > 0)
eyal bariaf86a482018-04-17 11:20:27 +03001063 {
Eyal Bari7d92c092018-07-24 15:15:37 +03001064 u32 n_left_to_next, *to_next;
eyal bariaf86a482018-04-17 11:20:27 +03001065
Eyal Bari7d92c092018-07-24 15:15:37 +03001066 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
eyal bariaf86a482018-04-17 11:20:27 +03001067
Eyal Bari7d92c092018-07-24 15:15:37 +03001068 while (n_left_from > 3 && n_left_to_next > 3)
eyal bariaf86a482018-04-17 11:20:27 +03001069 {
Eyal Bari7d92c092018-07-24 15:15:37 +03001070 u32 bi0 = to_next[0] = from[0];
1071 u32 bi1 = to_next[1] = from[1];
1072 u32 bi2 = to_next[2] = from[2];
1073 u32 bi3 = to_next[3] = from[3];
1074 from += 4;
1075 n_left_from -= 4;
1076 to_next += 4;
1077 n_left_to_next -= 4;
eyal bariaf86a482018-04-17 11:20:27 +03001078
Eyal Bari7d92c092018-07-24 15:15:37 +03001079 vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
1080 vlib_buffer_t *b1 = vlib_get_buffer (vm, bi1);
1081 vlib_buffer_t *b2 = vlib_get_buffer (vm, bi2);
1082 vlib_buffer_t *b3 = vlib_get_buffer (vm, bi3);
1083
1084 vlib_buffer_advance (b0, payload_offset);
1085 vlib_buffer_advance (b1, payload_offset);
1086 vlib_buffer_advance (b2, payload_offset);
1087 vlib_buffer_advance (b3, payload_offset);
1088
1089 u16 len0 = vlib_buffer_length_in_chain (vm, b0);
1090 u16 len1 = vlib_buffer_length_in_chain (vm, b1);
1091 u16 len2 = vlib_buffer_length_in_chain (vm, b2);
1092 u16 len3 = vlib_buffer_length_in_chain (vm, b3);
1093
1094 u32 next0 = VXLAN_FLOW_NEXT_L2_INPUT, next1 =
1095 VXLAN_FLOW_NEXT_L2_INPUT, next2 =
1096 VXLAN_FLOW_NEXT_L2_INPUT, next3 = VXLAN_FLOW_NEXT_L2_INPUT;
1097
1098 u8 ip_err0 = vxlan_check_ip (b0, len0);
1099 u8 ip_err1 = vxlan_check_ip (b1, len1);
1100 u8 ip_err2 = vxlan_check_ip (b2, len2);
1101 u8 ip_err3 = vxlan_check_ip (b3, len3);
1102 u8 ip_err = ip_err0 | ip_err1 | ip_err2 | ip_err3;
1103
1104 u8 udp_err0 = vxlan_check_ip_udp_len (b0);
1105 u8 udp_err1 = vxlan_check_ip_udp_len (b1);
1106 u8 udp_err2 = vxlan_check_ip_udp_len (b2);
1107 u8 udp_err3 = vxlan_check_ip_udp_len (b3);
1108 u8 udp_err = udp_err0 | udp_err1 | udp_err2 | udp_err3;
1109
1110 u8 csum_err0 = vxlan_check_udp_csum (vm, b0);
1111 u8 csum_err1 = vxlan_check_udp_csum (vm, b1);
1112 u8 csum_err2 = vxlan_check_udp_csum (vm, b2);
1113 u8 csum_err3 = vxlan_check_udp_csum (vm, b3);
1114 u8 csum_err = csum_err0 | csum_err1 | csum_err2 | csum_err3;
1115
1116 if (PREDICT_FALSE (csum_err))
1117 {
1118 if (csum_err0)
1119 csum_err0 = !vxlan_validate_udp_csum (vm, b0);
1120 if (csum_err1)
1121 csum_err1 = !vxlan_validate_udp_csum (vm, b1);
1122 if (csum_err2)
1123 csum_err2 = !vxlan_validate_udp_csum (vm, b2);
1124 if (csum_err3)
1125 csum_err3 = !vxlan_validate_udp_csum (vm, b3);
1126 csum_err = csum_err0 | csum_err1 | csum_err2 | csum_err3;
1127 }
1128
1129 if (PREDICT_FALSE (ip_err || udp_err || csum_err))
1130 {
1131 if (ip_err0 || udp_err0 || csum_err0)
1132 {
1133 next0 = VXLAN_FLOW_NEXT_DROP;
1134 u8 error0 = vxlan_err_code (ip_err0, udp_err0, csum_err0);
1135 b0->error = node->errors[error0];
1136 }
1137 if (ip_err1 || udp_err1 || csum_err1)
1138 {
1139 next1 = VXLAN_FLOW_NEXT_DROP;
1140 u8 error1 = vxlan_err_code (ip_err1, udp_err1, csum_err1);
1141 b1->error = node->errors[error1];
1142 }
1143 if (ip_err2 || udp_err2 || csum_err2)
1144 {
1145 next2 = VXLAN_FLOW_NEXT_DROP;
1146 u8 error2 = vxlan_err_code (ip_err2, udp_err2, csum_err2);
1147 b2->error = node->errors[error2];
1148 }
1149 if (ip_err3 || udp_err3 || csum_err3)
1150 {
1151 next3 = VXLAN_FLOW_NEXT_DROP;
1152 u8 error3 = vxlan_err_code (ip_err3, udp_err3, csum_err3);
1153 b3->error = node->errors[error3];
1154 }
1155 }
1156
1157 vnet_update_l2_len (b0);
1158 vnet_update_l2_len (b1);
1159 vnet_update_l2_len (b2);
1160 vnet_update_l2_len (b3);
1161
1162 ASSERT (b0->flow_id != 0);
1163 ASSERT (b1->flow_id != 0);
1164 ASSERT (b2->flow_id != 0);
1165 ASSERT (b3->flow_id != 0);
1166
1167 u32 t_index0 = b0->flow_id - vxm->flow_id_start;
1168 u32 t_index1 = b1->flow_id - vxm->flow_id_start;
1169 u32 t_index2 = b2->flow_id - vxm->flow_id_start;
1170 u32 t_index3 = b3->flow_id - vxm->flow_id_start;
1171
1172 vxlan_tunnel_t *t0 = &vxm->tunnels[t_index0];
1173 vxlan_tunnel_t *t1 = &vxm->tunnels[t_index1];
1174 vxlan_tunnel_t *t2 = &vxm->tunnels[t_index2];
1175 vxlan_tunnel_t *t3 = &vxm->tunnels[t_index3];
1176
1177 /* flow id consumed */
1178 b0->flow_id = 0;
1179 b1->flow_id = 0;
1180 b2->flow_id = 0;
1181 b3->flow_id = 0;
1182
1183 u32 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX] =
1184 t0->sw_if_index;
1185 u32 sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX] =
1186 t1->sw_if_index;
1187 u32 sw_if_index2 = vnet_buffer (b2)->sw_if_index[VLIB_RX] =
1188 t2->sw_if_index;
1189 u32 sw_if_index3 = vnet_buffer (b3)->sw_if_index[VLIB_RX] =
1190 t3->sw_if_index;
1191
1192 vlib_increment_combined_counter (rx_counter[next0], thread_index,
1193 sw_if_index0, 1, len0);
1194 vlib_increment_combined_counter (rx_counter[next1], thread_index,
1195 sw_if_index1, 1, len1);
1196 vlib_increment_combined_counter (rx_counter[next2], thread_index,
1197 sw_if_index2, 1, len2);
1198 vlib_increment_combined_counter (rx_counter[next3], thread_index,
1199 sw_if_index3, 1, len3);
1200
1201 u32 flags = b0->flags | b1->flags | b2->flags | b3->flags;
1202
1203 if (PREDICT_FALSE (flags & VLIB_BUFFER_IS_TRACED))
1204 {
1205 if (b0->flags & VLIB_BUFFER_IS_TRACED)
1206 {
1207 vxlan_rx_trace_t *tr =
1208 vlib_add_trace (vm, node, b0, sizeof *tr);
1209 u8 error0 = vxlan_err_code (ip_err0, udp_err0, csum_err0);
1210 tr->next_index = next0;
1211 tr->error = error0;
1212 tr->tunnel_index = t_index0;
1213 tr->vni = t0->vni;
1214 }
1215 if (b1->flags & VLIB_BUFFER_IS_TRACED)
1216 {
1217 vxlan_rx_trace_t *tr =
1218 vlib_add_trace (vm, node, b1, sizeof *tr);
1219 u8 error1 = vxlan_err_code (ip_err1, udp_err1, csum_err1);
1220 tr->next_index = next1;
1221 tr->error = error1;
1222 tr->tunnel_index = t_index1;
1223 tr->vni = t1->vni;
1224 }
1225 if (b2->flags & VLIB_BUFFER_IS_TRACED)
1226 {
1227 vxlan_rx_trace_t *tr =
1228 vlib_add_trace (vm, node, b2, sizeof *tr);
1229 u8 error2 = vxlan_err_code (ip_err2, udp_err2, csum_err2);
1230 tr->next_index = next2;
1231 tr->error = error2;
1232 tr->tunnel_index = t_index2;
1233 tr->vni = t2->vni;
1234 }
1235 if (b3->flags & VLIB_BUFFER_IS_TRACED)
1236 {
1237 vxlan_rx_trace_t *tr =
1238 vlib_add_trace (vm, node, b3, sizeof *tr);
1239 u8 error3 = vxlan_err_code (ip_err3, udp_err3, csum_err3);
1240 tr->next_index = next3;
1241 tr->error = error3;
1242 tr->tunnel_index = t_index3;
1243 tr->vni = t3->vni;
1244 }
1245 }
1246 vlib_validate_buffer_enqueue_x4
1247 (vm, node, next_index, to_next, n_left_to_next,
1248 bi0, bi1, bi2, bi3, next0, next1, next2, next3);
1249 }
1250 while (n_left_from > 0 && n_left_to_next > 0)
1251 {
1252 u32 bi0 = to_next[0] = from[0];
1253 from++;
1254 n_left_from--;
1255 to_next++;
1256 n_left_to_next--;
1257
1258 vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
1259 vlib_buffer_advance (b0, payload_offset);
1260
1261 u16 len0 = vlib_buffer_length_in_chain (vm, b0);
1262 u32 next0 = VXLAN_FLOW_NEXT_L2_INPUT;
1263
1264 u8 ip_err0 = vxlan_check_ip (b0, len0);
1265 u8 udp_err0 = vxlan_check_ip_udp_len (b0);
1266 u8 csum_err0 = vxlan_check_udp_csum (vm, b0);
1267
1268 if (csum_err0)
1269 csum_err0 = !vxlan_validate_udp_csum (vm, b0);
1270 if (ip_err0 || udp_err0 || csum_err0)
1271 {
1272 next0 = VXLAN_FLOW_NEXT_DROP;
1273 u8 error0 = vxlan_err_code (ip_err0, udp_err0, csum_err0);
1274 b0->error = node->errors[error0];
1275 }
1276
1277 vnet_update_l2_len (b0);
1278
1279 ASSERT (b0->flow_id != 0);
1280 u32 t_index0 = b0->flow_id - vxm->flow_id_start;
1281 vxlan_tunnel_t *t0 = &vxm->tunnels[t_index0];
1282 b0->flow_id = 0;
1283
1284 u32 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX] =
1285 t0->sw_if_index;
1286 vlib_increment_combined_counter (rx_counter[next0], thread_index,
1287 sw_if_index0, 1, len0);
1288
1289 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
1290 {
1291 vxlan_rx_trace_t *tr =
1292 vlib_add_trace (vm, node, b0, sizeof *tr);
1293 u8 error0 = vxlan_err_code (ip_err0, udp_err0, csum_err0);
1294 tr->next_index = next0;
1295 tr->error = error0;
1296 tr->tunnel_index = t_index0;
1297 tr->vni = t0->vni;
1298 }
1299 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
1300 to_next, n_left_to_next,
1301 bi0, next0);
1302 }
1303
1304 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1305 }
eyal bariaf86a482018-04-17 11:20:27 +03001306
1307 return f->n_vectors;
1308}
1309
1310/* *INDENT-OFF* */
1311#ifndef CLIB_MULTIARCH_VARIANT
1312VLIB_REGISTER_NODE (vxlan4_flow_input_node) = {
1313 .name = "vxlan-flow-input",
eyal bariaf86a482018-04-17 11:20:27 +03001314 .type = VLIB_NODE_TYPE_INTERNAL,
1315 .vector_size = sizeof (u32),
1316
1317 .format_trace = format_vxlan_rx_trace,
1318
1319 .n_errors = VXLAN_FLOW_N_ERROR,
1320 .error_strings = vxlan_flow_error_strings,
1321
1322 .n_next_nodes = VXLAN_FLOW_N_NEXT,
1323 .next_nodes = {
1324#define _(s,n) [VXLAN_FLOW_NEXT_##s] = n,
1325 foreach_vxlan_flow_input_next
1326#undef _
1327 },
1328};
1329#endif
1330/* *INDENT-ON* */
Eyal Bari7d92c092018-07-24 15:15:37 +03001331
1332/*
1333 * fd.io coding-style-patch-verification: ON
1334 *
1335 * Local Variables:
1336 * eval: (c-set-style "gnu")
1337 * End:
1338 */