blob: ad23f0aa35a3c63258acdc42d8bb963c9b41e364 [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
John Lo13e3d452016-08-09 19:20:51 -040022vlib_node_registration_t vxlan4_input_node;
23vlib_node_registration_t vxlan6_input_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -070024
Eyal Bari7d92c092018-07-24 15:15:37 +030025typedef struct
26{
Ed Warnickecb9cada2015-12-08 15:45:58 -070027 u32 next_index;
28 u32 tunnel_index;
29 u32 error;
30 u32 vni;
31} vxlan_rx_trace_t;
32
Eyal Bari7d92c092018-07-24 15:15:37 +030033static u8 *
34format_vxlan_rx_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070035{
36 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
37 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Eyal Bari7d92c092018-07-24 15:15:37 +030038 vxlan_rx_trace_t *t = va_arg (*args, vxlan_rx_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070039
Eyal Bari7d92c092018-07-24 15:15:37 +030040 if (t->tunnel_index == ~0)
41 return format (s, "VXLAN decap error - tunnel for vni %d does not exist",
42 t->vni);
43 return format (s, "VXLAN decap from vxlan_tunnel%d vni %d next %d error %d",
44 t->tunnel_index, t->vni, t->next_index, t->error);
Ed Warnickecb9cada2015-12-08 15:45:58 -070045}
46
John Lo2b81eb82017-01-30 13:12:10 -050047always_inline u32
Eyal Bari7d92c092018-07-24 15:15:37 +030048buf_fib_index (vlib_buffer_t * b, u32 is_ip4)
John Lo2b81eb82017-01-30 13:12:10 -050049{
Eyal Bari0fa56782018-06-04 12:25:05 +030050 u32 sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_TX];
51 if (sw_if_index != (u32) ~ 0)
52 return sw_if_index;
John Lo2b81eb82017-01-30 13:12:10 -050053
Eyal Bari7d92c092018-07-24 15:15:37 +030054 u32 *fib_index_by_sw_if_index = is_ip4 ?
Eyal Barifb663012017-10-19 15:27:51 +030055 ip4_main.fib_index_by_sw_if_index : ip6_main.fib_index_by_sw_if_index;
Eyal Bari0fa56782018-06-04 12:25:05 +030056 sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_RX];
John Lo2b81eb82017-01-30 13:12:10 -050057
Eyal Bari0fa56782018-06-04 12:25:05 +030058 return vec_elt (fib_index_by_sw_if_index, sw_if_index);
John Lo2b81eb82017-01-30 13:12:10 -050059}
60
Eyal Baridd47eca2018-07-08 08:15:56 +030061typedef vxlan4_tunnel_key_t last_tunnel_cache4;
Eyal Bari0f4b1842018-04-12 12:39:51 +030062
Eyal Bari0f4b1842018-04-12 12:39:51 +030063always_inline vxlan_tunnel_t *
64vxlan4_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,
66 vxlan_header_t * vxlan0, vxlan_tunnel_t ** stats_t0)
Eyal Bari0f4b1842018-04-12 12:39:51 +030067{
68 /* Make sure VXLAN tunnel exist according to packet SIP and VNI */
Eyal Barie126cc52018-08-01 10:25:50 +030069 vxlan4_tunnel_key_t key4;
70 key4.key[1] = ((u64) fib_index << 32) | vxlan0->vni_reserved;
Eyal Bari0f4b1842018-04-12 12:39:51 +030071
Eyal Barie126cc52018-08-01 10:25:50 +030072 if (PREDICT_FALSE (key4.key[1] != cache->key[1] ||
73 ip4_0->src_address.as_u32 != (u32) cache->key[0]))
Eyal Bari7d92c092018-07-24 15:15:37 +030074 {
Eyal Barie126cc52018-08-01 10:25:50 +030075 key4.key[0] = ip4_0->src_address.as_u32;
Eyal Bari7d92c092018-07-24 15:15:37 +030076 int rv =
77 clib_bihash_search_inline_16_8 (&vxm->vxlan4_tunnel_by_key, &key4);
78 if (PREDICT_FALSE (rv != 0))
79 return 0;
Eyal Bari0f4b1842018-04-12 12:39:51 +030080
Eyal Bari7d92c092018-07-24 15:15:37 +030081 *cache = key4;
82 }
83 vxlan_tunnel_t *t0 = pool_elt_at_index (vxm->tunnels, cache->value);
Eyal Bari0fa56782018-06-04 12:25:05 +030084
Eyal Bari0f4b1842018-04-12 12:39:51 +030085 /* Validate VXLAN tunnel SIP against packet DIP */
86 if (PREDICT_TRUE (ip4_0->dst_address.as_u32 == t0->src.ip4.as_u32))
87 *stats_t0 = t0;
88 else
Eyal Bari7d92c092018-07-24 15:15:37 +030089 {
90 /* try multicast */
91 if (PREDICT_TRUE (!ip4_address_is_multicast (&ip4_0->dst_address)))
92 return 0;
Eyal Bari0f4b1842018-04-12 12:39:51 +030093
Eyal Bari7d92c092018-07-24 15:15:37 +030094 key4.key[0] = ip4_0->dst_address.as_u32;
95 /* Make sure mcast VXLAN tunnel exist by packet DIP and VNI */
96 int rv =
97 clib_bihash_search_inline_16_8 (&vxm->vxlan4_tunnel_by_key, &key4);
98 if (PREDICT_FALSE (rv != 0))
99 return 0;
Eyal Baridd47eca2018-07-08 08:15:56 +0300100
Eyal Bari7d92c092018-07-24 15:15:37 +0300101 *stats_t0 = pool_elt_at_index (vxm->tunnels, key4.value);
102 }
Eyal Bari0f4b1842018-04-12 12:39:51 +0300103
104 return t0;
105}
106
Eyal Bari0fa56782018-06-04 12:25:05 +0300107typedef vxlan6_tunnel_key_t last_tunnel_cache6;
108
Eyal Bari0f4b1842018-04-12 12:39:51 +0300109always_inline vxlan_tunnel_t *
110vxlan6_find_tunnel (vxlan_main_t * vxm, last_tunnel_cache6 * cache,
Eyal Bari7d92c092018-07-24 15:15:37 +0300111 u32 fib_index, ip6_header_t * ip6_0,
112 vxlan_header_t * vxlan0, vxlan_tunnel_t ** stats_t0)
Eyal Bari0f4b1842018-04-12 12:39:51 +0300113{
114 /* Make sure VXLAN tunnel exist according to packet SIP and VNI */
Eyal Bari0fa56782018-06-04 12:25:05 +0300115 vxlan6_tunnel_key_t key6 = {
116 .key = {
Eyal Bari7d92c092018-07-24 15:15:37 +0300117 [0] = ip6_0->src_address.as_u64[0],
118 [1] = ip6_0->src_address.as_u64[1],
119 [2] = (((u64) fib_index) << 32) | vxlan0->vni_reserved,
120 }
Eyal Bari0f4b1842018-04-12 12:39:51 +0300121 };
122
Eyal Bari7d92c092018-07-24 15:15:37 +0300123 if (PREDICT_FALSE
124 (clib_bihash_key_compare_24_8 (key6.key, cache->key) == 0))
125 {
126 int rv =
127 clib_bihash_search_inline_24_8 (&vxm->vxlan6_tunnel_by_key, &key6);
128 if (PREDICT_FALSE (rv != 0))
129 return 0;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300130
Eyal Bari7d92c092018-07-24 15:15:37 +0300131 *cache = key6;
132 }
133 vxlan_tunnel_t *t0 = pool_elt_at_index (vxm->tunnels, cache->value);
Eyal Bari0f4b1842018-04-12 12:39:51 +0300134
135 /* Validate VXLAN tunnel SIP against packet DIP */
136 if (PREDICT_TRUE (ip6_address_is_equal (&ip6_0->dst_address, &t0->src.ip6)))
137 *stats_t0 = t0;
138 else
Eyal Bari7d92c092018-07-24 15:15:37 +0300139 {
140 /* try multicast */
141 if (PREDICT_TRUE (!ip6_address_is_multicast (&ip6_0->dst_address)))
142 return 0;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300143
Eyal Bari7d92c092018-07-24 15:15:37 +0300144 /* Make sure mcast VXLAN tunnel exist by packet DIP and VNI */
145 key6.key[0] = ip6_0->dst_address.as_u64[0];
146 key6.key[1] = ip6_0->dst_address.as_u64[1];
147 int rv =
148 clib_bihash_search_inline_24_8 (&vxm->vxlan6_tunnel_by_key, &key6);
149 if (PREDICT_FALSE (rv != 0))
150 return 0;
Eyal Bari0fa56782018-06-04 12:25:05 +0300151
Eyal Bari7d92c092018-07-24 15:15:37 +0300152 *stats_t0 = pool_elt_at_index (vxm->tunnels, key6.value);
153 }
Eyal Bari0f4b1842018-04-12 12:39:51 +0300154
155 return t0;
156}
157
Chris Luke99cb3352016-04-26 10:49:53 -0400158always_inline uword
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159vxlan_input (vlib_main_t * vm,
Eyal Bari7d92c092018-07-24 15:15:37 +0300160 vlib_node_runtime_t * node,
161 vlib_frame_t * from_frame, u32 is_ip4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162{
Eyal Bari7d92c092018-07-24 15:15:37 +0300163 vxlan_main_t *vxm = &vxlan_main;
164 vnet_main_t *vnm = vxm->vnet_main;
165 vnet_interface_main_t *im = &vnm->interface_main;
166 vlib_combined_counter_main_t *rx_counter =
167 im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_RX;
168 vlib_combined_counter_main_t *drop_counter =
169 im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_DROP;
Eyal Baridd47eca2018-07-08 08:15:56 +0300170 last_tunnel_cache4 last4;
Eyal Bari0fa56782018-06-04 12:25:05 +0300171 last_tunnel_cache6 last6;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172 u32 pkts_decapsulated = 0;
Eyal Bari7d92c092018-07-24 15:15:37 +0300173 u32 thread_index = vlib_get_thread_index ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174
Dave Barachf9c231e2016-08-05 10:10:18 -0400175 if (is_ip4)
Eyal Baridd47eca2018-07-08 08:15:56 +0300176 memset (&last4, 0xff, sizeof last4);
Dave Barachf9c231e2016-08-05 10:10:18 -0400177 else
Eyal Bari0fa56782018-06-04 12:25:05 +0300178 memset (&last6, 0xff, sizeof last6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179
Eyal Barifb663012017-10-19 15:27:51 +0300180 u32 next_index = node->cached_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181
Eyal Bari7d92c092018-07-24 15:15:37 +0300182 u32 *from = vlib_frame_vector_args (from_frame);
Eyal Barifb663012017-10-19 15:27:51 +0300183 u32 n_left_from = from_frame->n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184
185 while (n_left_from > 0)
186 {
Eyal Bari7d92c092018-07-24 15:15:37 +0300187 u32 *to_next, n_left_to_next;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300188 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Eyal Barifb663012017-10-19 15:27:51 +0300189
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190 while (n_left_from >= 4 && n_left_to_next >= 2)
191 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192 /* Prefetch next iteration. */
193 {
Eyal Bari7d92c092018-07-24 15:15:37 +0300194 vlib_buffer_t *p2, *p3;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195
196 p2 = vlib_get_buffer (vm, from[2]);
197 p3 = vlib_get_buffer (vm, from[3]);
198
199 vlib_prefetch_buffer_header (p2, LOAD);
200 vlib_prefetch_buffer_header (p3, LOAD);
201
Eyal Bari7d92c092018-07-24 15:15:37 +0300202 CLIB_PREFETCH (p2->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
203 CLIB_PREFETCH (p3->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204 }
205
Eyal Bari0f4b1842018-04-12 12:39:51 +0300206 u32 bi0 = to_next[0] = from[0];
207 u32 bi1 = to_next[1] = from[1];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208 from += 2;
209 to_next += 2;
210 n_left_to_next -= 2;
211 n_left_from -= 2;
212
Eyal Bari7d92c092018-07-24 15:15:37 +0300213 vlib_buffer_t *b0, *b1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700214 b0 = vlib_get_buffer (vm, bi0);
215 b1 = vlib_get_buffer (vm, bi1);
216
Eyal Bari7d92c092018-07-24 15:15:37 +0300217 /* udp leaves current_data pointing at the vxlan header */
218 void *cur0 = vlib_buffer_get_current (b0);
219 void *cur1 = vlib_buffer_get_current (b1);
220 vxlan_header_t *vxlan0 = cur0;
221 vxlan_header_t *vxlan1 = cur1;
Eyal Barifb663012017-10-19 15:27:51 +0300222
Eyal Bari7d92c092018-07-24 15:15:37 +0300223 ip4_header_t *ip4_0, *ip4_1;
224 ip6_header_t *ip6_0, *ip6_1;
225 if (is_ip4)
226 {
227 ip4_0 = cur0 - sizeof (udp_header_t) - sizeof (ip4_header_t);
228 ip4_1 = cur1 - sizeof (udp_header_t) - sizeof (ip4_header_t);
229 }
230 else
231 {
232 ip6_0 = cur0 - sizeof (udp_header_t) - sizeof (ip6_header_t);
233 ip6_1 = cur1 - sizeof (udp_header_t) - sizeof (ip6_header_t);
234 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235
Eyal Bari7d92c092018-07-24 15:15:37 +0300236 /* pop vxlan */
237 vlib_buffer_advance (b0, sizeof *vxlan0);
Eyal Barifb663012017-10-19 15:27:51 +0300238 vlib_buffer_advance (b1, sizeof *vxlan1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239
Eyal Bari7d92c092018-07-24 15:15:37 +0300240 u32 fi0 = buf_fib_index (b0, is_ip4);
241 u32 fi1 = buf_fib_index (b1, is_ip4);
Eyal Bari0fa56782018-06-04 12:25:05 +0300242
Eyal Bari7d92c092018-07-24 15:15:37 +0300243 vxlan_tunnel_t *t0, *stats_t0;
244 vxlan_tunnel_t *t1, *stats_t1;
245 if (is_ip4)
246 {
247 t0 =
248 vxlan4_find_tunnel (vxm, &last4, fi0, ip4_0, vxlan0,
249 &stats_t0);
250 t1 =
251 vxlan4_find_tunnel (vxm, &last4, fi1, ip4_1, vxlan1,
252 &stats_t1);
253 }
254 else
255 {
256 t0 =
257 vxlan6_find_tunnel (vxm, &last6, fi0, ip6_0, vxlan0,
258 &stats_t0);
259 t1 =
260 vxlan6_find_tunnel (vxm, &last6, fi1, ip6_1, vxlan1,
261 &stats_t1);
262 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263
Eyal Bari7d92c092018-07-24 15:15:37 +0300264 u32 len0 = vlib_buffer_length_in_chain (vm, b0);
265 u32 len1 = vlib_buffer_length_in_chain (vm, b1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266
Eyal Bari0f4b1842018-04-12 12:39:51 +0300267 u32 next0, next1;
Eyal Bari7d92c092018-07-24 15:15:37 +0300268 u8 error0 = 0, error1 = 0;
269 /* Validate VXLAN tunnel encap-fib index agaist packet */
270 if (PREDICT_FALSE (t0 == 0 || vxlan0->flags != VXLAN_FLAGS_I))
271 {
272 next0 = VXLAN_INPUT_NEXT_DROP;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300273
Eyal Bari7d92c092018-07-24 15:15:37 +0300274 if (t0 != 0 && vxlan0->flags != VXLAN_FLAGS_I)
275 {
276 error0 = VXLAN_ERROR_BAD_FLAGS;
277 vlib_increment_combined_counter
278 (drop_counter, thread_index, stats_t0->sw_if_index, 1,
279 len0);
280 }
281 else
282 error0 = VXLAN_ERROR_NO_SUCH_TUNNEL;
283 b0->error = node->errors[error0];
284 }
285 else
286 {
287 next0 = t0->decap_next_index;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300288
Eyal Bari7d92c092018-07-24 15:15:37 +0300289 /* Required to make the l2 tag push / pop code work on l2 subifs */
290 if (PREDICT_TRUE (next0 == VXLAN_INPUT_NEXT_L2_INPUT))
291 vnet_update_l2_len (b0);
Eyal Bari0f4b1842018-04-12 12:39:51 +0300292
Eyal Bari7d92c092018-07-24 15:15:37 +0300293 /* Set packet input sw_if_index to unicast VXLAN tunnel for learning */
294 vnet_buffer (b0)->sw_if_index[VLIB_RX] = t0->sw_if_index;
295 vlib_increment_combined_counter
296 (rx_counter, thread_index, stats_t0->sw_if_index, 1, len0);
297 pkts_decapsulated++;
298 }
Eyal Bari0f4b1842018-04-12 12:39:51 +0300299
Eyal Bari7d92c092018-07-24 15:15:37 +0300300 /* Validate VXLAN tunnel encap-fib index agaist packet */
301 if (PREDICT_FALSE (t1 == 0 || vxlan1->flags != VXLAN_FLAGS_I))
302 {
303 next1 = VXLAN_INPUT_NEXT_DROP;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300304
Eyal Bari7d92c092018-07-24 15:15:37 +0300305 if (t1 != 0 && vxlan1->flags != VXLAN_FLAGS_I)
306 {
307 error1 = VXLAN_ERROR_BAD_FLAGS;
308 vlib_increment_combined_counter
309 (drop_counter, thread_index, stats_t1->sw_if_index, 1,
310 len1);
311 }
312 else
313 error1 = VXLAN_ERROR_NO_SUCH_TUNNEL;
314 b1->error = node->errors[error1];
315 }
316 else
317 {
318 next1 = t1->decap_next_index;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300319
Eyal Bari7d92c092018-07-24 15:15:37 +0300320 /* Required to make the l2 tag push / pop code work on l2 subifs */
321 if (PREDICT_TRUE (next1 == VXLAN_INPUT_NEXT_L2_INPUT))
322 vnet_update_l2_len (b1);
Eyal Bari0f4b1842018-04-12 12:39:51 +0300323
Eyal Bari7d92c092018-07-24 15:15:37 +0300324 /* Set packet input sw_if_index to unicast VXLAN tunnel for learning */
325 vnet_buffer (b1)->sw_if_index[VLIB_RX] = t1->sw_if_index;
326 pkts_decapsulated++;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300327
Eyal Bari7d92c092018-07-24 15:15:37 +0300328 vlib_increment_combined_counter
329 (rx_counter, thread_index, stats_t1->sw_if_index, 1, len1);
330 }
Eyal Bari0f4b1842018-04-12 12:39:51 +0300331
Eyal Bari7d92c092018-07-24 15:15:37 +0300332 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
333 {
334 vxlan_rx_trace_t *tr =
335 vlib_add_trace (vm, node, b0, sizeof (*tr));
336 tr->next_index = next0;
337 tr->error = error0;
338 tr->tunnel_index = t0 == 0 ? ~0 : t0 - vxm->tunnels;
339 tr->vni = vnet_get_vni (vxlan0);
340 }
341 if (PREDICT_FALSE (b1->flags & VLIB_BUFFER_IS_TRACED))
342 {
343 vxlan_rx_trace_t *tr =
344 vlib_add_trace (vm, node, b1, sizeof (*tr));
345 tr->next_index = next1;
346 tr->error = error1;
347 tr->tunnel_index = t1 == 0 ? ~0 : t1 - vxm->tunnels;
348 tr->vni = vnet_get_vni (vxlan1);
349 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350
351 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
352 to_next, n_left_to_next,
353 bi0, bi1, next0, next1);
354 }
355
356 while (n_left_from > 0 && n_left_to_next > 0)
357 {
Eyal Bari0f4b1842018-04-12 12:39:51 +0300358 u32 bi0 = to_next[0] = from[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359 from += 1;
360 to_next += 1;
361 n_left_from -= 1;
362 n_left_to_next -= 1;
363
Eyal Bari7d92c092018-07-24 15:15:37 +0300364 vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365
Eyal Bari7d92c092018-07-24 15:15:37 +0300366 /* udp leaves current_data pointing at the vxlan header */
367 void *cur0 = vlib_buffer_get_current (b0);
368 vxlan_header_t *vxlan0 = cur0;
369 ip4_header_t *ip4_0;
370 ip6_header_t *ip6_0;
371 if (is_ip4)
372 ip4_0 = cur0 - sizeof (udp_header_t) - sizeof (ip4_header_t);
373 else
374 ip6_0 = cur0 - sizeof (udp_header_t) - sizeof (ip6_header_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375
Eyal Bari7d92c092018-07-24 15:15:37 +0300376 /* pop (ip, udp, vxlan) */
377 vlib_buffer_advance (b0, sizeof (*vxlan0));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378
Eyal Bari7d92c092018-07-24 15:15:37 +0300379 u32 fi0 = buf_fib_index (b0, is_ip4);
Eyal Bari0fa56782018-06-04 12:25:05 +0300380
Eyal Bari7d92c092018-07-24 15:15:37 +0300381 vxlan_tunnel_t *t0, *stats_t0;
382 if (is_ip4)
383 t0 =
384 vxlan4_find_tunnel (vxm, &last4, fi0, ip4_0, vxlan0, &stats_t0);
385 else
386 t0 =
387 vxlan6_find_tunnel (vxm, &last6, fi0, ip6_0, vxlan0, &stats_t0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388
Eyal Bari7d92c092018-07-24 15:15:37 +0300389 uword len0 = vlib_buffer_length_in_chain (vm, b0);
John Loc42912d2016-11-07 18:30:47 -0500390
Eyal Bari0f4b1842018-04-12 12:39:51 +0300391 u32 next0;
Eyal Bari7d92c092018-07-24 15:15:37 +0300392 u8 error0 = 0;
393 /* Validate VXLAN tunnel encap-fib index agaist packet */
394 if (PREDICT_FALSE (t0 == 0 || vxlan0->flags != VXLAN_FLAGS_I))
395 {
396 next0 = VXLAN_INPUT_NEXT_DROP;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300397
Eyal Bari7d92c092018-07-24 15:15:37 +0300398 if (t0 != 0 && vxlan0->flags != VXLAN_FLAGS_I)
399 {
400 error0 = VXLAN_ERROR_BAD_FLAGS;
401 vlib_increment_combined_counter
402 (drop_counter, thread_index, stats_t0->sw_if_index, 1,
403 len0);
404 }
405 else
406 error0 = VXLAN_ERROR_NO_SUCH_TUNNEL;
407 b0->error = node->errors[error0];
408 }
409 else
410 {
411 next0 = t0->decap_next_index;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300412
Eyal Bari7d92c092018-07-24 15:15:37 +0300413 /* Required to make the l2 tag push / pop code work on l2 subifs */
414 if (PREDICT_TRUE (next0 == VXLAN_INPUT_NEXT_L2_INPUT))
415 vnet_update_l2_len (b0);
Eyal Bari0f4b1842018-04-12 12:39:51 +0300416
Eyal Bari7d92c092018-07-24 15:15:37 +0300417 /* Set packet input sw_if_index to unicast VXLAN tunnel for learning */
418 vnet_buffer (b0)->sw_if_index[VLIB_RX] = t0->sw_if_index;
419 pkts_decapsulated++;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300420
Eyal Bari7d92c092018-07-24 15:15:37 +0300421 vlib_increment_combined_counter
422 (rx_counter, thread_index, stats_t0->sw_if_index, 1, len0);
423 }
Eyal Bari0f4b1842018-04-12 12:39:51 +0300424
Eyal Bari7d92c092018-07-24 15:15:37 +0300425 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
426 {
427 vxlan_rx_trace_t *tr
428 = vlib_add_trace (vm, node, b0, sizeof (*tr));
429 tr->next_index = next0;
430 tr->error = error0;
431 tr->tunnel_index = t0 == 0 ? ~0 : t0 - vxm->tunnels;
432 tr->vni = vnet_get_vni (vxlan0);
433 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700434 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
435 to_next, n_left_to_next,
436 bi0, next0);
437 }
438
439 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
440 }
Eyal Barifb663012017-10-19 15:27:51 +0300441 /* Do we still need this now that tunnel tx stats is kept? */
442 u32 node_idx = is_ip4 ? vxlan4_input_node.index : vxlan6_input_node.index;
443 vlib_node_increment_counter (vm, node_idx, VXLAN_ERROR_DECAPSULATED,
Eyal Bari7d92c092018-07-24 15:15:37 +0300444 pkts_decapsulated);
Eyal Barifb663012017-10-19 15:27:51 +0300445
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446 return from_frame->n_vectors;
447}
448
Chris Luke99cb3352016-04-26 10:49:53 -0400449static uword
450vxlan4_input (vlib_main_t * vm,
Eyal Bari7d92c092018-07-24 15:15:37 +0300451 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
Chris Luke99cb3352016-04-26 10:49:53 -0400452{
Eyal Bari7d92c092018-07-24 15:15:37 +0300453 return vxlan_input (vm, node, from_frame, /* is_ip4 */ 1);
Chris Luke99cb3352016-04-26 10:49:53 -0400454}
455
456static uword
457vxlan6_input (vlib_main_t * vm,
Eyal Bari7d92c092018-07-24 15:15:37 +0300458 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
Chris Luke99cb3352016-04-26 10:49:53 -0400459{
Eyal Bari7d92c092018-07-24 15:15:37 +0300460 return vxlan_input (vm, node, from_frame, /* is_ip4 */ 0);
Chris Luke99cb3352016-04-26 10:49:53 -0400461}
462
Eyal Bari7d92c092018-07-24 15:15:37 +0300463static char *vxlan_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464#define vxlan_error(n,s) s,
465#include <vnet/vxlan/vxlan_error.def>
466#undef vxlan_error
467#undef _
468};
469
Eyal Bari7d92c092018-07-24 15:15:37 +0300470/* *INDENT-OFF* */
471VLIB_REGISTER_NODE (vxlan4_input_node) =
472{
Chris Luke99cb3352016-04-26 10:49:53 -0400473 .function = vxlan4_input,
474 .name = "vxlan4-input",
Chris Luke99cb3352016-04-26 10:49:53 -0400475 .vector_size = sizeof (u32),
Chris Luke99cb3352016-04-26 10:49:53 -0400476 .n_errors = VXLAN_N_ERROR,
477 .error_strings = vxlan_error_strings,
Chris Luke99cb3352016-04-26 10:49:53 -0400478 .n_next_nodes = VXLAN_INPUT_N_NEXT,
Eyal Bari7d92c092018-07-24 15:15:37 +0300479 .format_trace = format_vxlan_rx_trace,
Chris Luke99cb3352016-04-26 10:49:53 -0400480 .next_nodes = {
481#define _(s,n) [VXLAN_INPUT_NEXT_##s] = n,
482 foreach_vxlan_input_next
483#undef _
484 },
Chris Luke99cb3352016-04-26 10:49:53 -0400485};
Damjan Marion1c80e832016-05-11 23:07:18 +0200486VLIB_NODE_FUNCTION_MULTIARCH (vxlan4_input_node, vxlan4_input)
487
Eyal Bari7d92c092018-07-24 15:15:37 +0300488VLIB_REGISTER_NODE (vxlan6_input_node) =
489{
Chris Luke99cb3352016-04-26 10:49:53 -0400490 .function = vxlan6_input,
491 .name = "vxlan6-input",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -0700493 .n_errors = VXLAN_N_ERROR,
494 .error_strings = vxlan_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495 .n_next_nodes = VXLAN_INPUT_N_NEXT,
496 .next_nodes = {
497#define _(s,n) [VXLAN_INPUT_NEXT_##s] = n,
498 foreach_vxlan_input_next
499#undef _
500 },
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501 .format_trace = format_vxlan_rx_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502};
Damjan Marion1c80e832016-05-11 23:07:18 +0200503VLIB_NODE_FUNCTION_MULTIARCH (vxlan6_input_node, vxlan6_input)
Eyal Bari7d92c092018-07-24 15:15:37 +0300504/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +0200505
Eyal Bari7d92c092018-07-24 15:15:37 +0300506typedef enum
507{
John Lo37682e12016-11-30 12:51:39 -0500508 IP_VXLAN_BYPASS_NEXT_DROP,
509 IP_VXLAN_BYPASS_NEXT_VXLAN,
510 IP_VXLAN_BYPASS_N_NEXT,
511} ip_vxan_bypass_next_t;
512
513always_inline uword
514ip_vxlan_bypass_inline (vlib_main_t * vm,
John Lo2b81eb82017-01-30 13:12:10 -0500515 vlib_node_runtime_t * node,
Eyal Bari7d92c092018-07-24 15:15:37 +0300516 vlib_frame_t * frame, u32 is_ip4)
John Lo37682e12016-11-30 12:51:39 -0500517{
Eyal Bari7d92c092018-07-24 15:15:37 +0300518 vxlan_main_t *vxm = &vxlan_main;
519 u32 *from, *to_next, n_left_from, n_left_to_next, next_index;
520 vlib_node_runtime_t *error_node =
521 vlib_node_get_runtime (vm, ip4_input_node.index);
522 ip4_address_t addr4; /* last IPv4 address matching a local VTEP address */
523 ip6_address_t addr6; /* last IPv6 address matching a local VTEP address */
John Lo37682e12016-11-30 12:51:39 -0500524
525 from = vlib_frame_vector_args (frame);
526 n_left_from = frame->n_vectors;
527 next_index = node->cached_next_index;
528
529 if (node->flags & VLIB_NODE_FLAG_TRACE)
530 ip4_forward_next_trace (vm, node, frame, VLIB_TX);
531
Eyal Bari7d92c092018-07-24 15:15:37 +0300532 if (is_ip4)
533 addr4.data_u32 = ~0;
534 else
535 ip6_address_set_zero (&addr6);
John Lo37682e12016-11-30 12:51:39 -0500536
537 while (n_left_from > 0)
538 {
539 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
540
541 while (n_left_from >= 4 && n_left_to_next >= 2)
Eyal Bari7d92c092018-07-24 15:15:37 +0300542 {
543 vlib_buffer_t *b0, *b1;
544 ip4_header_t *ip40, *ip41;
545 ip6_header_t *ip60, *ip61;
546 udp_header_t *udp0, *udp1;
547 u32 bi0, ip_len0, udp_len0, flags0, next0;
548 u32 bi1, ip_len1, udp_len1, flags1, next1;
549 i32 len_diff0, len_diff1;
550 u8 error0, good_udp0, proto0;
551 u8 error1, good_udp1, proto1;
John Lo37682e12016-11-30 12:51:39 -0500552
553 /* Prefetch next iteration. */
554 {
Eyal Bari7d92c092018-07-24 15:15:37 +0300555 vlib_buffer_t *p2, *p3;
John Lo37682e12016-11-30 12:51:39 -0500556
557 p2 = vlib_get_buffer (vm, from[2]);
558 p3 = vlib_get_buffer (vm, from[3]);
559
560 vlib_prefetch_buffer_header (p2, LOAD);
561 vlib_prefetch_buffer_header (p3, LOAD);
562
Eyal Bari7d92c092018-07-24 15:15:37 +0300563 CLIB_PREFETCH (p2->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
564 CLIB_PREFETCH (p3->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
John Lo37682e12016-11-30 12:51:39 -0500565 }
566
Eyal Bari7d92c092018-07-24 15:15:37 +0300567 bi0 = to_next[0] = from[0];
568 bi1 = to_next[1] = from[1];
569 from += 2;
570 n_left_from -= 2;
571 to_next += 2;
572 n_left_to_next -= 2;
John Lo37682e12016-11-30 12:51:39 -0500573
574 b0 = vlib_get_buffer (vm, bi0);
575 b1 = vlib_get_buffer (vm, bi1);
John Lo2b81eb82017-01-30 13:12:10 -0500576 if (is_ip4)
577 {
578 ip40 = vlib_buffer_get_current (b0);
579 ip41 = vlib_buffer_get_current (b1);
580 }
581 else
582 {
583 ip60 = vlib_buffer_get_current (b0);
584 ip61 = vlib_buffer_get_current (b1);
585 }
John Lo37682e12016-11-30 12:51:39 -0500586
587 /* Setup packet for next IP feature */
Eyal Bari7d92c092018-07-24 15:15:37 +0300588 vnet_feature_next (&next0, b0);
589 vnet_feature_next (&next1, b1);
John Lo37682e12016-11-30 12:51:39 -0500590
John Lo2b81eb82017-01-30 13:12:10 -0500591 if (is_ip4)
592 {
593 /* Treat IP frag packets as "experimental" protocol for now
Eyal Bari7d92c092018-07-24 15:15:37 +0300594 until support of IP frag reassembly is implemented */
595 proto0 = ip4_is_fragment (ip40) ? 0xfe : ip40->protocol;
596 proto1 = ip4_is_fragment (ip41) ? 0xfe : ip41->protocol;
John Lo2b81eb82017-01-30 13:12:10 -0500597 }
598 else
599 {
600 proto0 = ip60->protocol;
601 proto1 = ip61->protocol;
602 }
John Lo37682e12016-11-30 12:51:39 -0500603
604 /* Process packet 0 */
605 if (proto0 != IP_PROTOCOL_UDP)
Eyal Bari7d92c092018-07-24 15:15:37 +0300606 goto exit0; /* not UDP packet */
John Lo37682e12016-11-30 12:51:39 -0500607
John Lo2b81eb82017-01-30 13:12:10 -0500608 if (is_ip4)
609 udp0 = ip4_next_header (ip40);
610 else
611 udp0 = ip6_next_header (ip60);
612
John Lo37682e12016-11-30 12:51:39 -0500613 if (udp0->dst_port != clib_host_to_net_u16 (UDP_DST_PORT_vxlan))
Eyal Bari7d92c092018-07-24 15:15:37 +0300614 goto exit0; /* not VXLAN packet */
John Lo37682e12016-11-30 12:51:39 -0500615
Eyal Bari7d92c092018-07-24 15:15:37 +0300616 /* Validate DIP against VTEPs */
Eyal Bari0f4b1842018-04-12 12:39:51 +0300617 if (is_ip4)
John Lo37682e12016-11-30 12:51:39 -0500618 {
John Lo2b81eb82017-01-30 13:12:10 -0500619 if (addr4.as_u32 != ip40->dst_address.as_u32)
Eyal Bari7d92c092018-07-24 15:15:37 +0300620 {
John Lo2b81eb82017-01-30 13:12:10 -0500621 if (!hash_get (vxm->vtep4, ip40->dst_address.as_u32))
Eyal Bari7d92c092018-07-24 15:15:37 +0300622 goto exit0; /* no local VTEP for VXLAN packet */
John Lo2b81eb82017-01-30 13:12:10 -0500623 addr4 = ip40->dst_address;
Eyal Bari7d92c092018-07-24 15:15:37 +0300624 }
John Lo37682e12016-11-30 12:51:39 -0500625 }
John Lo2b81eb82017-01-30 13:12:10 -0500626 else
627 {
628 if (!ip6_address_is_equal (&addr6, &ip60->dst_address))
Eyal Bari7d92c092018-07-24 15:15:37 +0300629 {
John Lo2b81eb82017-01-30 13:12:10 -0500630 if (!hash_get_mem (vxm->vtep6, &ip60->dst_address))
Eyal Bari7d92c092018-07-24 15:15:37 +0300631 goto exit0; /* no local VTEP for VXLAN packet */
John Lo2b81eb82017-01-30 13:12:10 -0500632 addr6 = ip60->dst_address;
Eyal Bari7d92c092018-07-24 15:15:37 +0300633 }
John Lo2b81eb82017-01-30 13:12:10 -0500634 }
John Lo37682e12016-11-30 12:51:39 -0500635
636 flags0 = b0->flags;
Damjan Marion213b5aa2017-07-13 21:19:27 +0200637 good_udp0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
John Lo37682e12016-11-30 12:51:39 -0500638
639 /* Don't verify UDP checksum for packets with explicit zero checksum. */
640 good_udp0 |= udp0->checksum == 0;
641
642 /* Verify UDP length */
John Lo2b81eb82017-01-30 13:12:10 -0500643 if (is_ip4)
644 ip_len0 = clib_net_to_host_u16 (ip40->length);
645 else
646 ip_len0 = clib_net_to_host_u16 (ip60->payload_length);
John Lo37682e12016-11-30 12:51:39 -0500647 udp_len0 = clib_net_to_host_u16 (udp0->length);
John Lo37682e12016-11-30 12:51:39 -0500648 len_diff0 = ip_len0 - udp_len0;
649
650 /* Verify UDP checksum */
651 if (PREDICT_FALSE (!good_udp0))
652 {
Damjan Marion213b5aa2017-07-13 21:19:27 +0200653 if ((flags0 & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED) == 0)
Eyal Bari7d92c092018-07-24 15:15:37 +0300654 {
John Lo2b81eb82017-01-30 13:12:10 -0500655 if (is_ip4)
656 flags0 = ip4_tcp_udp_validate_checksum (vm, b0);
657 else
658 flags0 = ip6_tcp_udp_icmp_validate_checksum (vm, b0);
659 good_udp0 =
Damjan Marion213b5aa2017-07-13 21:19:27 +0200660 (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
Eyal Bari7d92c092018-07-24 15:15:37 +0300661 }
John Lo37682e12016-11-30 12:51:39 -0500662 }
663
John Lo2b81eb82017-01-30 13:12:10 -0500664 if (is_ip4)
665 {
666 error0 = good_udp0 ? 0 : IP4_ERROR_UDP_CHECKSUM;
667 error0 = (len_diff0 >= 0) ? error0 : IP4_ERROR_UDP_LENGTH;
668 }
669 else
670 {
671 error0 = good_udp0 ? 0 : IP6_ERROR_UDP_CHECKSUM;
672 error0 = (len_diff0 >= 0) ? error0 : IP6_ERROR_UDP_LENGTH;
673 }
John Lo37682e12016-11-30 12:51:39 -0500674
Eyal Bari0f4b1842018-04-12 12:39:51 +0300675 next0 = error0 ?
John Lo37682e12016-11-30 12:51:39 -0500676 IP_VXLAN_BYPASS_NEXT_DROP : IP_VXLAN_BYPASS_NEXT_VXLAN;
677 b0->error = error0 ? error_node->errors[error0] : 0;
678
John Lo2b81eb82017-01-30 13:12:10 -0500679 /* vxlan-input node expect current at VXLAN header */
680 if (is_ip4)
Eyal Bari7d92c092018-07-24 15:15:37 +0300681 vlib_buffer_advance (b0,
682 sizeof (ip4_header_t) +
683 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500684 else
Eyal Bari7d92c092018-07-24 15:15:37 +0300685 vlib_buffer_advance (b0,
686 sizeof (ip6_header_t) +
687 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500688
John Lo37682e12016-11-30 12:51:39 -0500689 exit0:
690 /* Process packet 1 */
691 if (proto1 != IP_PROTOCOL_UDP)
Eyal Bari7d92c092018-07-24 15:15:37 +0300692 goto exit1; /* not UDP packet */
John Lo37682e12016-11-30 12:51:39 -0500693
John Lo2b81eb82017-01-30 13:12:10 -0500694 if (is_ip4)
695 udp1 = ip4_next_header (ip41);
696 else
697 udp1 = ip6_next_header (ip61);
698
John Lo37682e12016-11-30 12:51:39 -0500699 if (udp1->dst_port != clib_host_to_net_u16 (UDP_DST_PORT_vxlan))
Eyal Bari7d92c092018-07-24 15:15:37 +0300700 goto exit1; /* not VXLAN packet */
John Lo37682e12016-11-30 12:51:39 -0500701
Eyal Bari7d92c092018-07-24 15:15:37 +0300702 /* Validate DIP against VTEPs */
Eyal Bari0f4b1842018-04-12 12:39:51 +0300703 if (is_ip4)
John Lo37682e12016-11-30 12:51:39 -0500704 {
John Lo2b81eb82017-01-30 13:12:10 -0500705 if (addr4.as_u32 != ip41->dst_address.as_u32)
Eyal Bari7d92c092018-07-24 15:15:37 +0300706 {
John Lo2b81eb82017-01-30 13:12:10 -0500707 if (!hash_get (vxm->vtep4, ip41->dst_address.as_u32))
Eyal Bari7d92c092018-07-24 15:15:37 +0300708 goto exit1; /* no local VTEP for VXLAN packet */
John Lo2b81eb82017-01-30 13:12:10 -0500709 addr4 = ip41->dst_address;
710 }
John Lo37682e12016-11-30 12:51:39 -0500711 }
John Lo2b81eb82017-01-30 13:12:10 -0500712 else
713 {
714 if (!ip6_address_is_equal (&addr6, &ip61->dst_address))
Eyal Bari7d92c092018-07-24 15:15:37 +0300715 {
John Lo2b81eb82017-01-30 13:12:10 -0500716 if (!hash_get_mem (vxm->vtep6, &ip61->dst_address))
Eyal Bari7d92c092018-07-24 15:15:37 +0300717 goto exit1; /* no local VTEP for VXLAN packet */
John Lo2b81eb82017-01-30 13:12:10 -0500718 addr6 = ip61->dst_address;
719 }
720 }
John Lo37682e12016-11-30 12:51:39 -0500721
722 flags1 = b1->flags;
Damjan Marion213b5aa2017-07-13 21:19:27 +0200723 good_udp1 = (flags1 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
John Lo37682e12016-11-30 12:51:39 -0500724
725 /* Don't verify UDP checksum for packets with explicit zero checksum. */
726 good_udp1 |= udp1->checksum == 0;
727
728 /* Verify UDP length */
John Lo2b81eb82017-01-30 13:12:10 -0500729 if (is_ip4)
730 ip_len1 = clib_net_to_host_u16 (ip41->length);
731 else
732 ip_len1 = clib_net_to_host_u16 (ip61->payload_length);
John Lo37682e12016-11-30 12:51:39 -0500733 udp_len1 = clib_net_to_host_u16 (udp1->length);
John Lo37682e12016-11-30 12:51:39 -0500734 len_diff1 = ip_len1 - udp_len1;
735
736 /* Verify UDP checksum */
737 if (PREDICT_FALSE (!good_udp1))
738 {
Damjan Marion213b5aa2017-07-13 21:19:27 +0200739 if ((flags1 & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED) == 0)
Eyal Bari7d92c092018-07-24 15:15:37 +0300740 {
John Lo2b81eb82017-01-30 13:12:10 -0500741 if (is_ip4)
742 flags1 = ip4_tcp_udp_validate_checksum (vm, b1);
743 else
744 flags1 = ip6_tcp_udp_icmp_validate_checksum (vm, b1);
745 good_udp1 =
Damjan Marion213b5aa2017-07-13 21:19:27 +0200746 (flags1 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
Eyal Bari7d92c092018-07-24 15:15:37 +0300747 }
John Lo37682e12016-11-30 12:51:39 -0500748 }
749
John Lo2b81eb82017-01-30 13:12:10 -0500750 if (is_ip4)
751 {
752 error1 = good_udp1 ? 0 : IP4_ERROR_UDP_CHECKSUM;
753 error1 = (len_diff1 >= 0) ? error1 : IP4_ERROR_UDP_LENGTH;
754 }
755 else
756 {
Eyal Baria93ea422017-02-01 13:36:15 +0200757 error1 = good_udp1 ? 0 : IP6_ERROR_UDP_CHECKSUM;
758 error1 = (len_diff1 >= 0) ? error1 : IP6_ERROR_UDP_LENGTH;
John Lo2b81eb82017-01-30 13:12:10 -0500759 }
John Lo37682e12016-11-30 12:51:39 -0500760
Eyal Bari0f4b1842018-04-12 12:39:51 +0300761 next1 = error1 ?
John Lo37682e12016-11-30 12:51:39 -0500762 IP_VXLAN_BYPASS_NEXT_DROP : IP_VXLAN_BYPASS_NEXT_VXLAN;
763 b1->error = error1 ? error_node->errors[error1] : 0;
Eyal Bari0f4b1842018-04-12 12:39:51 +0300764
John Lo2b81eb82017-01-30 13:12:10 -0500765 /* vxlan-input node expect current at VXLAN header */
766 if (is_ip4)
Eyal Bari7d92c092018-07-24 15:15:37 +0300767 vlib_buffer_advance (b1,
768 sizeof (ip4_header_t) +
769 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500770 else
Eyal Bari7d92c092018-07-24 15:15:37 +0300771 vlib_buffer_advance (b1,
772 sizeof (ip6_header_t) +
773 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500774
John Lo37682e12016-11-30 12:51:39 -0500775 exit1:
776 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
777 to_next, n_left_to_next,
778 bi0, bi1, next0, next1);
779 }
780
781 while (n_left_from > 0 && n_left_to_next > 0)
782 {
Eyal Bari7d92c092018-07-24 15:15:37 +0300783 vlib_buffer_t *b0;
784 ip4_header_t *ip40;
785 ip6_header_t *ip60;
786 udp_header_t *udp0;
787 u32 bi0, ip_len0, udp_len0, flags0, next0;
John Lo37682e12016-11-30 12:51:39 -0500788 i32 len_diff0;
789 u8 error0, good_udp0, proto0;
790
791 bi0 = to_next[0] = from[0];
792 from += 1;
793 n_left_from -= 1;
794 to_next += 1;
795 n_left_to_next -= 1;
796
797 b0 = vlib_get_buffer (vm, bi0);
John Lo2b81eb82017-01-30 13:12:10 -0500798 if (is_ip4)
799 ip40 = vlib_buffer_get_current (b0);
800 else
801 ip60 = vlib_buffer_get_current (b0);
John Lo37682e12016-11-30 12:51:39 -0500802
803 /* Setup packet for next IP feature */
Eyal Bari7d92c092018-07-24 15:15:37 +0300804 vnet_feature_next (&next0, b0);
John Lo37682e12016-11-30 12:51:39 -0500805
John Lo2b81eb82017-01-30 13:12:10 -0500806 if (is_ip4)
807 /* Treat IP4 frag packets as "experimental" protocol for now
808 until support of IP frag reassembly is implemented */
Eyal Bari7d92c092018-07-24 15:15:37 +0300809 proto0 = ip4_is_fragment (ip40) ? 0xfe : ip40->protocol;
John Lo2b81eb82017-01-30 13:12:10 -0500810 else
811 proto0 = ip60->protocol;
John Lo37682e12016-11-30 12:51:39 -0500812
813 if (proto0 != IP_PROTOCOL_UDP)
Eyal Bari7d92c092018-07-24 15:15:37 +0300814 goto exit; /* not UDP packet */
John Lo37682e12016-11-30 12:51:39 -0500815
John Lo2b81eb82017-01-30 13:12:10 -0500816 if (is_ip4)
817 udp0 = ip4_next_header (ip40);
818 else
819 udp0 = ip6_next_header (ip60);
820
John Lo37682e12016-11-30 12:51:39 -0500821 if (udp0->dst_port != clib_host_to_net_u16 (UDP_DST_PORT_vxlan))
Eyal Bari7d92c092018-07-24 15:15:37 +0300822 goto exit; /* not VXLAN packet */
John Lo37682e12016-11-30 12:51:39 -0500823
Eyal Bari7d92c092018-07-24 15:15:37 +0300824 /* Validate DIP against VTEPs */
Eyal Bari0f4b1842018-04-12 12:39:51 +0300825 if (is_ip4)
John Lo37682e12016-11-30 12:51:39 -0500826 {
John Lo2b81eb82017-01-30 13:12:10 -0500827 if (addr4.as_u32 != ip40->dst_address.as_u32)
Eyal Bari7d92c092018-07-24 15:15:37 +0300828 {
John Lo2b81eb82017-01-30 13:12:10 -0500829 if (!hash_get (vxm->vtep4, ip40->dst_address.as_u32))
Eyal Bari7d92c092018-07-24 15:15:37 +0300830 goto exit; /* no local VTEP for VXLAN packet */
John Lo2b81eb82017-01-30 13:12:10 -0500831 addr4 = ip40->dst_address;
832 }
John Lo37682e12016-11-30 12:51:39 -0500833 }
John Lo2b81eb82017-01-30 13:12:10 -0500834 else
835 {
836 if (!ip6_address_is_equal (&addr6, &ip60->dst_address))
Eyal Bari7d92c092018-07-24 15:15:37 +0300837 {
John Lo2b81eb82017-01-30 13:12:10 -0500838 if (!hash_get_mem (vxm->vtep6, &ip60->dst_address))
Eyal Bari7d92c092018-07-24 15:15:37 +0300839 goto exit; /* no local VTEP for VXLAN packet */
John Lo2b81eb82017-01-30 13:12:10 -0500840 addr6 = ip60->dst_address;
841 }
842 }
John Lo37682e12016-11-30 12:51:39 -0500843
844 flags0 = b0->flags;
Damjan Marion213b5aa2017-07-13 21:19:27 +0200845 good_udp0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
John Lo37682e12016-11-30 12:51:39 -0500846
847 /* Don't verify UDP checksum for packets with explicit zero checksum. */
848 good_udp0 |= udp0->checksum == 0;
849
850 /* Verify UDP length */
John Lo2b81eb82017-01-30 13:12:10 -0500851 if (is_ip4)
852 ip_len0 = clib_net_to_host_u16 (ip40->length);
853 else
854 ip_len0 = clib_net_to_host_u16 (ip60->payload_length);
John Lo37682e12016-11-30 12:51:39 -0500855 udp_len0 = clib_net_to_host_u16 (udp0->length);
John Lo37682e12016-11-30 12:51:39 -0500856 len_diff0 = ip_len0 - udp_len0;
857
858 /* Verify UDP checksum */
859 if (PREDICT_FALSE (!good_udp0))
860 {
Damjan Marion213b5aa2017-07-13 21:19:27 +0200861 if ((flags0 & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED) == 0)
Eyal Bari7d92c092018-07-24 15:15:37 +0300862 {
John Lo2b81eb82017-01-30 13:12:10 -0500863 if (is_ip4)
864 flags0 = ip4_tcp_udp_validate_checksum (vm, b0);
865 else
866 flags0 = ip6_tcp_udp_icmp_validate_checksum (vm, b0);
867 good_udp0 =
Damjan Marion213b5aa2017-07-13 21:19:27 +0200868 (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
Eyal Bari7d92c092018-07-24 15:15:37 +0300869 }
John Lo37682e12016-11-30 12:51:39 -0500870 }
871
John Lo2b81eb82017-01-30 13:12:10 -0500872 if (is_ip4)
873 {
874 error0 = good_udp0 ? 0 : IP4_ERROR_UDP_CHECKSUM;
875 error0 = (len_diff0 >= 0) ? error0 : IP4_ERROR_UDP_LENGTH;
876 }
877 else
878 {
879 error0 = good_udp0 ? 0 : IP6_ERROR_UDP_CHECKSUM;
880 error0 = (len_diff0 >= 0) ? error0 : IP6_ERROR_UDP_LENGTH;
881 }
John Lo37682e12016-11-30 12:51:39 -0500882
Eyal Bari0f4b1842018-04-12 12:39:51 +0300883 next0 = error0 ?
John Lo37682e12016-11-30 12:51:39 -0500884 IP_VXLAN_BYPASS_NEXT_DROP : IP_VXLAN_BYPASS_NEXT_VXLAN;
885 b0->error = error0 ? error_node->errors[error0] : 0;
886
John Lo2b81eb82017-01-30 13:12:10 -0500887 /* vxlan-input node expect current at VXLAN header */
888 if (is_ip4)
Eyal Bari7d92c092018-07-24 15:15:37 +0300889 vlib_buffer_advance (b0,
890 sizeof (ip4_header_t) +
891 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500892 else
Eyal Bari7d92c092018-07-24 15:15:37 +0300893 vlib_buffer_advance (b0,
894 sizeof (ip6_header_t) +
895 sizeof (udp_header_t));
John Lo2b81eb82017-01-30 13:12:10 -0500896
John Lo37682e12016-11-30 12:51:39 -0500897 exit:
898 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
899 to_next, n_left_to_next,
900 bi0, next0);
901 }
902
903 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
904 }
905
906 return frame->n_vectors;
907}
908
909static uword
910ip4_vxlan_bypass (vlib_main_t * vm,
Eyal Bari7d92c092018-07-24 15:15:37 +0300911 vlib_node_runtime_t * node, vlib_frame_t * frame)
John Lo37682e12016-11-30 12:51:39 -0500912{
913 return ip_vxlan_bypass_inline (vm, node, frame, /* is_ip4 */ 1);
914}
915
Eyal Bari7d92c092018-07-24 15:15:37 +0300916/* *INDENT-OFF* */
917VLIB_REGISTER_NODE (ip4_vxlan_bypass_node) =
918{
John Lo37682e12016-11-30 12:51:39 -0500919 .function = ip4_vxlan_bypass,
920 .name = "ip4-vxlan-bypass",
921 .vector_size = sizeof (u32),
John Lo37682e12016-11-30 12:51:39 -0500922 .n_next_nodes = IP_VXLAN_BYPASS_N_NEXT,
923 .next_nodes = {
Eyal Bari7d92c092018-07-24 15:15:37 +0300924 [IP_VXLAN_BYPASS_NEXT_DROP] = "error-drop",
925 [IP_VXLAN_BYPASS_NEXT_VXLAN] = "vxlan4-input",
John Lo37682e12016-11-30 12:51:39 -0500926 },
John Lo37682e12016-11-30 12:51:39 -0500927 .format_buffer = format_ip4_header,
928 .format_trace = format_ip4_forward_next_trace,
929};
930
Eyal Bari7d92c092018-07-24 15:15:37 +0300931VLIB_NODE_FUNCTION_MULTIARCH (ip4_vxlan_bypass_node, ip4_vxlan_bypass)
932/* *INDENT-ON* */
John Lo37682e12016-11-30 12:51:39 -0500933
John Lo37682e12016-11-30 12:51:39 -0500934/* Dummy init function to get us linked in. */
Eyal Bari7d92c092018-07-24 15:15:37 +0300935clib_error_t *
936ip4_vxlan_bypass_init (vlib_main_t * vm)
937{
938 return 0;
939}
John Lo37682e12016-11-30 12:51:39 -0500940
941VLIB_INIT_FUNCTION (ip4_vxlan_bypass_init);
John Lo2b81eb82017-01-30 13:12:10 -0500942
943static uword
944ip6_vxlan_bypass (vlib_main_t * vm,
Eyal Bari7d92c092018-07-24 15:15:37 +0300945 vlib_node_runtime_t * node, vlib_frame_t * frame)
John Lo2b81eb82017-01-30 13:12:10 -0500946{
947 return ip_vxlan_bypass_inline (vm, node, frame, /* is_ip4 */ 0);
948}
949
Eyal Bari7d92c092018-07-24 15:15:37 +0300950/* *INDENT-OFF* */
951VLIB_REGISTER_NODE (ip6_vxlan_bypass_node) =
952{
John Lo2b81eb82017-01-30 13:12:10 -0500953 .function = ip6_vxlan_bypass,
954 .name = "ip6-vxlan-bypass",
955 .vector_size = sizeof (u32),
John Lo2b81eb82017-01-30 13:12:10 -0500956 .n_next_nodes = IP_VXLAN_BYPASS_N_NEXT,
957 .next_nodes = {
958 [IP_VXLAN_BYPASS_NEXT_DROP] = "error-drop",
959 [IP_VXLAN_BYPASS_NEXT_VXLAN] = "vxlan6-input",
960 },
John Lo2b81eb82017-01-30 13:12:10 -0500961 .format_buffer = format_ip6_header,
962 .format_trace = format_ip6_forward_next_trace,
963};
964
Eyal Bari7d92c092018-07-24 15:15:37 +0300965VLIB_NODE_FUNCTION_MULTIARCH (ip6_vxlan_bypass_node, ip6_vxlan_bypass)
966/* *INDENT-ON* */
John Lo2b81eb82017-01-30 13:12:10 -0500967
968/* Dummy init function to get us linked in. */
Eyal Bari7d92c092018-07-24 15:15:37 +0300969clib_error_t *
970ip6_vxlan_bypass_init (vlib_main_t * vm)
971{
972 return 0;
973}
John Lo2b81eb82017-01-30 13:12:10 -0500974
975VLIB_INIT_FUNCTION (ip6_vxlan_bypass_init);
eyal bariaf86a482018-04-17 11:20:27 +0300976
977#define foreach_vxlan_flow_input_next \
978_(DROP, "error-drop") \
979_(L2_INPUT, "l2-input")
980
981typedef enum
982{
983#define _(s,n) VXLAN_FLOW_NEXT_##s,
984 foreach_vxlan_flow_input_next
985#undef _
Eyal Bari7d92c092018-07-24 15:15:37 +0300986 VXLAN_FLOW_N_NEXT,
eyal bariaf86a482018-04-17 11:20:27 +0300987} vxlan_flow_input_next_t;
988
989#define foreach_vxlan_flow_error \
990 _(NONE, "no error") \
991 _(IP_CHECKSUM_ERROR, "Rx ip checksum errors") \
992 _(IP_HEADER_ERROR, "Rx ip header errors") \
993 _(UDP_CHECKSUM_ERROR, "Rx udp checksum errors") \
994 _(UDP_LENGTH_ERROR, "Rx udp length errors")
995
996typedef enum
997{
998#define _(f,s) VXLAN_FLOW_ERROR_##f,
999 foreach_vxlan_flow_error
1000#undef _
1001 VXLAN_FLOW_N_ERROR,
1002} vxlan_flow_error_t;
1003
1004static char *vxlan_flow_error_strings[] = {
1005#define _(n,s) s,
1006 foreach_vxlan_flow_error
1007#undef _
1008};
1009
1010
1011static_always_inline u8
Eyal Bari7d92c092018-07-24 15:15:37 +03001012vxlan_validate_udp_csum (vlib_main_t * vm, vlib_buffer_t * b)
eyal bariaf86a482018-04-17 11:20:27 +03001013{
1014 u32 flags = b->flags;
Eyal Bari7d92c092018-07-24 15:15:37 +03001015 enum
1016 { offset =
1017 sizeof (ip4_header_t) + sizeof (udp_header_t) + sizeof (vxlan_header_t),
1018 };
eyal bariaf86a482018-04-17 11:20:27 +03001019
1020 /* Verify UDP checksum */
1021 if ((flags & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED) == 0)
Eyal Bari7d92c092018-07-24 15:15:37 +03001022 {
1023 vlib_buffer_advance (b, -offset);
1024 flags = ip4_tcp_udp_validate_checksum (vm, b);
1025 vlib_buffer_advance (b, offset);
1026 }
eyal bariaf86a482018-04-17 11:20:27 +03001027
1028 return (flags & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
1029}
1030
1031static_always_inline u8
Eyal Bari7d92c092018-07-24 15:15:37 +03001032vxlan_check_udp_csum (vlib_main_t * vm, vlib_buffer_t * b)
eyal bariaf86a482018-04-17 11:20:27 +03001033{
Eyal Bari7d92c092018-07-24 15:15:37 +03001034 ip4_vxlan_header_t *hdr = vlib_buffer_get_current (b) - sizeof *hdr;
1035 udp_header_t *udp = &hdr->udp;
eyal bariaf86a482018-04-17 11:20:27 +03001036 /* Don't verify UDP checksum for packets with explicit zero checksum. */
1037 u8 good_csum = (b->flags & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0 ||
1038 udp->checksum == 0;
1039
1040 return !good_csum;
1041}
1042
1043static_always_inline u8
Eyal Bari7d92c092018-07-24 15:15:37 +03001044vxlan_check_ip (vlib_buffer_t * b, u16 payload_len)
eyal bariaf86a482018-04-17 11:20:27 +03001045{
Eyal Bari7d92c092018-07-24 15:15:37 +03001046 ip4_vxlan_header_t *hdr = vlib_buffer_get_current (b) - sizeof *hdr;
eyal bariaf86a482018-04-17 11:20:27 +03001047 u16 ip_len = clib_net_to_host_u16 (hdr->ip4.length);
1048 u16 expected = payload_len + sizeof *hdr;
Eyal Bari7d92c092018-07-24 15:15:37 +03001049 return ip_len > expected || hdr->ip4.ttl == 0
1050 || hdr->ip4.ip_version_and_header_length != 0x45;
eyal bariaf86a482018-04-17 11:20:27 +03001051}
1052
1053static_always_inline u8
Eyal Bari7d92c092018-07-24 15:15:37 +03001054vxlan_check_ip_udp_len (vlib_buffer_t * b)
eyal bariaf86a482018-04-17 11:20:27 +03001055{
Eyal Bari7d92c092018-07-24 15:15:37 +03001056 ip4_vxlan_header_t *hdr = vlib_buffer_get_current (b) - sizeof *hdr;
eyal bariaf86a482018-04-17 11:20:27 +03001057 u16 ip_len = clib_net_to_host_u16 (hdr->ip4.length);
1058 u16 udp_len = clib_net_to_host_u16 (hdr->udp.length);
1059 return udp_len > ip_len;
1060}
1061
1062static_always_inline u8
1063vxlan_err_code (u8 ip_err0, u8 udp_err0, u8 csum_err0)
1064{
1065 u8 error0 = VXLAN_FLOW_ERROR_NONE;
1066 if (ip_err0)
Eyal Bari7d92c092018-07-24 15:15:37 +03001067 error0 = VXLAN_FLOW_ERROR_IP_HEADER_ERROR;
eyal bariaf86a482018-04-17 11:20:27 +03001068 if (udp_err0)
Eyal Bari7d92c092018-07-24 15:15:37 +03001069 error0 = VXLAN_FLOW_ERROR_UDP_LENGTH_ERROR;
eyal bariaf86a482018-04-17 11:20:27 +03001070 if (csum_err0)
Eyal Bari7d92c092018-07-24 15:15:37 +03001071 error0 = VXLAN_FLOW_ERROR_UDP_CHECKSUM_ERROR;
eyal bariaf86a482018-04-17 11:20:27 +03001072 return error0;
1073}
1074
Eyal Bari93a6f252018-06-14 08:57:39 +03001075VLIB_NODE_FN (vxlan4_flow_input_node) (vlib_main_t * vm,
Eyal Bari7d92c092018-07-24 15:15:37 +03001076 vlib_node_runtime_t * node,
1077 vlib_frame_t * f)
eyal bariaf86a482018-04-17 11:20:27 +03001078{
Eyal Bari7d92c092018-07-24 15:15:37 +03001079 enum
1080 { payload_offset = sizeof (ip4_vxlan_header_t) };
eyal bariaf86a482018-04-17 11:20:27 +03001081
Eyal Bari7d92c092018-07-24 15:15:37 +03001082 vxlan_main_t *vxm = &vxlan_main;
1083 vnet_interface_main_t *im = &vnet_main.interface_main;
1084 vlib_combined_counter_main_t *rx_counter[VXLAN_FLOW_N_NEXT] = {
1085 [VXLAN_FLOW_NEXT_DROP] =
1086 im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_DROP,
1087 [VXLAN_FLOW_NEXT_L2_INPUT] =
1088 im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_RX,
eyal bariaf86a482018-04-17 11:20:27 +03001089 };
Eyal Bari7d92c092018-07-24 15:15:37 +03001090 u32 thread_index = vlib_get_thread_index ();
eyal bariaf86a482018-04-17 11:20:27 +03001091
Eyal Bari7d92c092018-07-24 15:15:37 +03001092 u32 *from = vlib_frame_vector_args (f);
eyal bariaf86a482018-04-17 11:20:27 +03001093 u32 n_left_from = f->n_vectors;
1094 u32 next_index = VXLAN_FLOW_NEXT_L2_INPUT;
1095
1096 while (n_left_from > 0)
eyal bariaf86a482018-04-17 11:20:27 +03001097 {
Eyal Bari7d92c092018-07-24 15:15:37 +03001098 u32 n_left_to_next, *to_next;
eyal bariaf86a482018-04-17 11:20:27 +03001099
Eyal Bari7d92c092018-07-24 15:15:37 +03001100 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
eyal bariaf86a482018-04-17 11:20:27 +03001101
Eyal Bari7d92c092018-07-24 15:15:37 +03001102 while (n_left_from > 3 && n_left_to_next > 3)
eyal bariaf86a482018-04-17 11:20:27 +03001103 {
Eyal Bari7d92c092018-07-24 15:15:37 +03001104 u32 bi0 = to_next[0] = from[0];
1105 u32 bi1 = to_next[1] = from[1];
1106 u32 bi2 = to_next[2] = from[2];
1107 u32 bi3 = to_next[3] = from[3];
1108 from += 4;
1109 n_left_from -= 4;
1110 to_next += 4;
1111 n_left_to_next -= 4;
eyal bariaf86a482018-04-17 11:20:27 +03001112
Eyal Bari7d92c092018-07-24 15:15:37 +03001113 vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
1114 vlib_buffer_t *b1 = vlib_get_buffer (vm, bi1);
1115 vlib_buffer_t *b2 = vlib_get_buffer (vm, bi2);
1116 vlib_buffer_t *b3 = vlib_get_buffer (vm, bi3);
1117
1118 vlib_buffer_advance (b0, payload_offset);
1119 vlib_buffer_advance (b1, payload_offset);
1120 vlib_buffer_advance (b2, payload_offset);
1121 vlib_buffer_advance (b3, payload_offset);
1122
1123 u16 len0 = vlib_buffer_length_in_chain (vm, b0);
1124 u16 len1 = vlib_buffer_length_in_chain (vm, b1);
1125 u16 len2 = vlib_buffer_length_in_chain (vm, b2);
1126 u16 len3 = vlib_buffer_length_in_chain (vm, b3);
1127
1128 u32 next0 = VXLAN_FLOW_NEXT_L2_INPUT, next1 =
1129 VXLAN_FLOW_NEXT_L2_INPUT, next2 =
1130 VXLAN_FLOW_NEXT_L2_INPUT, next3 = VXLAN_FLOW_NEXT_L2_INPUT;
1131
1132 u8 ip_err0 = vxlan_check_ip (b0, len0);
1133 u8 ip_err1 = vxlan_check_ip (b1, len1);
1134 u8 ip_err2 = vxlan_check_ip (b2, len2);
1135 u8 ip_err3 = vxlan_check_ip (b3, len3);
1136 u8 ip_err = ip_err0 | ip_err1 | ip_err2 | ip_err3;
1137
1138 u8 udp_err0 = vxlan_check_ip_udp_len (b0);
1139 u8 udp_err1 = vxlan_check_ip_udp_len (b1);
1140 u8 udp_err2 = vxlan_check_ip_udp_len (b2);
1141 u8 udp_err3 = vxlan_check_ip_udp_len (b3);
1142 u8 udp_err = udp_err0 | udp_err1 | udp_err2 | udp_err3;
1143
1144 u8 csum_err0 = vxlan_check_udp_csum (vm, b0);
1145 u8 csum_err1 = vxlan_check_udp_csum (vm, b1);
1146 u8 csum_err2 = vxlan_check_udp_csum (vm, b2);
1147 u8 csum_err3 = vxlan_check_udp_csum (vm, b3);
1148 u8 csum_err = csum_err0 | csum_err1 | csum_err2 | csum_err3;
1149
1150 if (PREDICT_FALSE (csum_err))
1151 {
1152 if (csum_err0)
1153 csum_err0 = !vxlan_validate_udp_csum (vm, b0);
1154 if (csum_err1)
1155 csum_err1 = !vxlan_validate_udp_csum (vm, b1);
1156 if (csum_err2)
1157 csum_err2 = !vxlan_validate_udp_csum (vm, b2);
1158 if (csum_err3)
1159 csum_err3 = !vxlan_validate_udp_csum (vm, b3);
1160 csum_err = csum_err0 | csum_err1 | csum_err2 | csum_err3;
1161 }
1162
1163 if (PREDICT_FALSE (ip_err || udp_err || csum_err))
1164 {
1165 if (ip_err0 || udp_err0 || csum_err0)
1166 {
1167 next0 = VXLAN_FLOW_NEXT_DROP;
1168 u8 error0 = vxlan_err_code (ip_err0, udp_err0, csum_err0);
1169 b0->error = node->errors[error0];
1170 }
1171 if (ip_err1 || udp_err1 || csum_err1)
1172 {
1173 next1 = VXLAN_FLOW_NEXT_DROP;
1174 u8 error1 = vxlan_err_code (ip_err1, udp_err1, csum_err1);
1175 b1->error = node->errors[error1];
1176 }
1177 if (ip_err2 || udp_err2 || csum_err2)
1178 {
1179 next2 = VXLAN_FLOW_NEXT_DROP;
1180 u8 error2 = vxlan_err_code (ip_err2, udp_err2, csum_err2);
1181 b2->error = node->errors[error2];
1182 }
1183 if (ip_err3 || udp_err3 || csum_err3)
1184 {
1185 next3 = VXLAN_FLOW_NEXT_DROP;
1186 u8 error3 = vxlan_err_code (ip_err3, udp_err3, csum_err3);
1187 b3->error = node->errors[error3];
1188 }
1189 }
1190
1191 vnet_update_l2_len (b0);
1192 vnet_update_l2_len (b1);
1193 vnet_update_l2_len (b2);
1194 vnet_update_l2_len (b3);
1195
1196 ASSERT (b0->flow_id != 0);
1197 ASSERT (b1->flow_id != 0);
1198 ASSERT (b2->flow_id != 0);
1199 ASSERT (b3->flow_id != 0);
1200
1201 u32 t_index0 = b0->flow_id - vxm->flow_id_start;
1202 u32 t_index1 = b1->flow_id - vxm->flow_id_start;
1203 u32 t_index2 = b2->flow_id - vxm->flow_id_start;
1204 u32 t_index3 = b3->flow_id - vxm->flow_id_start;
1205
1206 vxlan_tunnel_t *t0 = &vxm->tunnels[t_index0];
1207 vxlan_tunnel_t *t1 = &vxm->tunnels[t_index1];
1208 vxlan_tunnel_t *t2 = &vxm->tunnels[t_index2];
1209 vxlan_tunnel_t *t3 = &vxm->tunnels[t_index3];
1210
1211 /* flow id consumed */
1212 b0->flow_id = 0;
1213 b1->flow_id = 0;
1214 b2->flow_id = 0;
1215 b3->flow_id = 0;
1216
1217 u32 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX] =
1218 t0->sw_if_index;
1219 u32 sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX] =
1220 t1->sw_if_index;
1221 u32 sw_if_index2 = vnet_buffer (b2)->sw_if_index[VLIB_RX] =
1222 t2->sw_if_index;
1223 u32 sw_if_index3 = vnet_buffer (b3)->sw_if_index[VLIB_RX] =
1224 t3->sw_if_index;
1225
1226 vlib_increment_combined_counter (rx_counter[next0], thread_index,
1227 sw_if_index0, 1, len0);
1228 vlib_increment_combined_counter (rx_counter[next1], thread_index,
1229 sw_if_index1, 1, len1);
1230 vlib_increment_combined_counter (rx_counter[next2], thread_index,
1231 sw_if_index2, 1, len2);
1232 vlib_increment_combined_counter (rx_counter[next3], thread_index,
1233 sw_if_index3, 1, len3);
1234
1235 u32 flags = b0->flags | b1->flags | b2->flags | b3->flags;
1236
1237 if (PREDICT_FALSE (flags & VLIB_BUFFER_IS_TRACED))
1238 {
1239 if (b0->flags & VLIB_BUFFER_IS_TRACED)
1240 {
1241 vxlan_rx_trace_t *tr =
1242 vlib_add_trace (vm, node, b0, sizeof *tr);
1243 u8 error0 = vxlan_err_code (ip_err0, udp_err0, csum_err0);
1244 tr->next_index = next0;
1245 tr->error = error0;
1246 tr->tunnel_index = t_index0;
1247 tr->vni = t0->vni;
1248 }
1249 if (b1->flags & VLIB_BUFFER_IS_TRACED)
1250 {
1251 vxlan_rx_trace_t *tr =
1252 vlib_add_trace (vm, node, b1, sizeof *tr);
1253 u8 error1 = vxlan_err_code (ip_err1, udp_err1, csum_err1);
1254 tr->next_index = next1;
1255 tr->error = error1;
1256 tr->tunnel_index = t_index1;
1257 tr->vni = t1->vni;
1258 }
1259 if (b2->flags & VLIB_BUFFER_IS_TRACED)
1260 {
1261 vxlan_rx_trace_t *tr =
1262 vlib_add_trace (vm, node, b2, sizeof *tr);
1263 u8 error2 = vxlan_err_code (ip_err2, udp_err2, csum_err2);
1264 tr->next_index = next2;
1265 tr->error = error2;
1266 tr->tunnel_index = t_index2;
1267 tr->vni = t2->vni;
1268 }
1269 if (b3->flags & VLIB_BUFFER_IS_TRACED)
1270 {
1271 vxlan_rx_trace_t *tr =
1272 vlib_add_trace (vm, node, b3, sizeof *tr);
1273 u8 error3 = vxlan_err_code (ip_err3, udp_err3, csum_err3);
1274 tr->next_index = next3;
1275 tr->error = error3;
1276 tr->tunnel_index = t_index3;
1277 tr->vni = t3->vni;
1278 }
1279 }
1280 vlib_validate_buffer_enqueue_x4
1281 (vm, node, next_index, to_next, n_left_to_next,
1282 bi0, bi1, bi2, bi3, next0, next1, next2, next3);
1283 }
1284 while (n_left_from > 0 && n_left_to_next > 0)
1285 {
1286 u32 bi0 = to_next[0] = from[0];
1287 from++;
1288 n_left_from--;
1289 to_next++;
1290 n_left_to_next--;
1291
1292 vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
1293 vlib_buffer_advance (b0, payload_offset);
1294
1295 u16 len0 = vlib_buffer_length_in_chain (vm, b0);
1296 u32 next0 = VXLAN_FLOW_NEXT_L2_INPUT;
1297
1298 u8 ip_err0 = vxlan_check_ip (b0, len0);
1299 u8 udp_err0 = vxlan_check_ip_udp_len (b0);
1300 u8 csum_err0 = vxlan_check_udp_csum (vm, b0);
1301
1302 if (csum_err0)
1303 csum_err0 = !vxlan_validate_udp_csum (vm, b0);
1304 if (ip_err0 || udp_err0 || csum_err0)
1305 {
1306 next0 = VXLAN_FLOW_NEXT_DROP;
1307 u8 error0 = vxlan_err_code (ip_err0, udp_err0, csum_err0);
1308 b0->error = node->errors[error0];
1309 }
1310
1311 vnet_update_l2_len (b0);
1312
1313 ASSERT (b0->flow_id != 0);
1314 u32 t_index0 = b0->flow_id - vxm->flow_id_start;
1315 vxlan_tunnel_t *t0 = &vxm->tunnels[t_index0];
1316 b0->flow_id = 0;
1317
1318 u32 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX] =
1319 t0->sw_if_index;
1320 vlib_increment_combined_counter (rx_counter[next0], thread_index,
1321 sw_if_index0, 1, len0);
1322
1323 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
1324 {
1325 vxlan_rx_trace_t *tr =
1326 vlib_add_trace (vm, node, b0, sizeof *tr);
1327 u8 error0 = vxlan_err_code (ip_err0, udp_err0, csum_err0);
1328 tr->next_index = next0;
1329 tr->error = error0;
1330 tr->tunnel_index = t_index0;
1331 tr->vni = t0->vni;
1332 }
1333 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
1334 to_next, n_left_to_next,
1335 bi0, next0);
1336 }
1337
1338 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1339 }
eyal bariaf86a482018-04-17 11:20:27 +03001340
1341 return f->n_vectors;
1342}
1343
1344/* *INDENT-OFF* */
1345#ifndef CLIB_MULTIARCH_VARIANT
1346VLIB_REGISTER_NODE (vxlan4_flow_input_node) = {
1347 .name = "vxlan-flow-input",
eyal bariaf86a482018-04-17 11:20:27 +03001348 .type = VLIB_NODE_TYPE_INTERNAL,
1349 .vector_size = sizeof (u32),
1350
1351 .format_trace = format_vxlan_rx_trace,
1352
1353 .n_errors = VXLAN_FLOW_N_ERROR,
1354 .error_strings = vxlan_flow_error_strings,
1355
1356 .n_next_nodes = VXLAN_FLOW_N_NEXT,
1357 .next_nodes = {
1358#define _(s,n) [VXLAN_FLOW_NEXT_##s] = n,
1359 foreach_vxlan_flow_input_next
1360#undef _
1361 },
1362};
1363#endif
1364/* *INDENT-ON* */
Eyal Bari7d92c092018-07-24 15:15:37 +03001365
1366/*
1367 * fd.io coding-style-patch-verification: ON
1368 *
1369 * Local Variables:
1370 * eval: (c-set-style "gnu")
1371 * End:
1372 */