blob: 52664b389a4c514caf395c190b7c97f6cc744536 [file] [log] [blame]
Marco Varleseb598f1d2017-09-19 14:25:28 +02001/*
2 * Copyright (c) 2017 SUSE LLC.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15#include <vnet/geneve/geneve.h>
16#include <vnet/ip/format.h>
17#include <vnet/fib/fib_entry.h>
18#include <vnet/fib/fib_table.h>
Neale Ranns1f50bf82019-07-16 15:28:52 +000019#include <vnet/fib/fib_entry_track.h>
Marco Varleseb598f1d2017-09-19 14:25:28 +020020#include <vnet/mfib/mfib_table.h>
21#include <vnet/adj/adj_mcast.h>
22#include <vnet/interface.h>
23#include <vlib/vlib.h>
24
25/**
26 * @file
27 * @brief GENEVE.
28 *
29 * GENEVE provides the features needed to allow L2 bridge domains (BDs)
30 * to span multiple servers. This is done by building an L2 overlay on
31 * top of an L3 network underlay using GENEVE tunnels.
32 *
33 * This makes it possible for servers to be co-located in the same data
34 * center or be separated geographically as long as they are reachable
35 * through the underlay L3 network.
Marco Varleseb598f1d2017-09-19 14:25:28 +020036 */
37
38
39geneve_main_t geneve_main;
40
Filip Tehlar55333d72019-03-05 00:36:04 -080041u8 *
42format_geneve_encap_trace (u8 * s, va_list * args)
43{
44 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
45 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
46 geneve_encap_trace_t *t = va_arg (*args, geneve_encap_trace_t *);
47
48 s = format (s, "GENEVE encap to geneve_tunnel%d vni %d",
49 t->tunnel_index, t->vni);
50 return s;
51}
52
Marco Varleseb598f1d2017-09-19 14:25:28 +020053static u8 *
54format_decap_next (u8 * s, va_list * args)
55{
56 u32 next_index = va_arg (*args, u32);
57
58 switch (next_index)
59 {
60 case GENEVE_INPUT_NEXT_DROP:
61 return format (s, "drop");
62 case GENEVE_INPUT_NEXT_L2_INPUT:
63 return format (s, "l2");
64 default:
65 return format (s, "index %d", next_index);
66 }
67 return s;
68}
69
70u8 *
71format_geneve_tunnel (u8 * s, va_list * args)
72{
73 geneve_tunnel_t *t = va_arg (*args, geneve_tunnel_t *);
74 geneve_main_t *ngm = &geneve_main;
75
John Lo4478d8e2018-01-12 17:15:25 -050076 s = format (s, "[%d] lcl %U rmt %U vni %d fib-idx %d sw-if-idx %d ",
Marco Varleseb598f1d2017-09-19 14:25:28 +020077 t - ngm->tunnels,
78 format_ip46_address, &t->local, IP46_TYPE_ANY,
79 format_ip46_address, &t->remote, IP46_TYPE_ANY,
John Lo4478d8e2018-01-12 17:15:25 -050080 t->vni, t->encap_fib_index, t->sw_if_index);
Marco Varleseb598f1d2017-09-19 14:25:28 +020081
John Lo4478d8e2018-01-12 17:15:25 -050082 s = format (s, "encap-dpo-idx %d ", t->next_dpo.dpoi_index);
83 s = format (s, "decap-next-%U ", format_decap_next, t->decap_next_index);
Marco Varleseb598f1d2017-09-19 14:25:28 +020084
John Lo4478d8e2018-01-12 17:15:25 -050085 if (PREDICT_FALSE (ip46_address_is_multicast (&t->remote)))
86 s = format (s, "mcast-sw-if-idx %d ", t->mcast_sw_if_index);
87
Marco Varleseb598f1d2017-09-19 14:25:28 +020088 return s;
89}
90
91static u8 *
92format_geneve_name (u8 * s, va_list * args)
93{
94 u32 dev_instance = va_arg (*args, u32);
95 return format (s, "geneve_tunnel%d", dev_instance);
96}
97
Marco Varleseb598f1d2017-09-19 14:25:28 +020098static clib_error_t *
99geneve_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
100{
101 u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
102 VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
103 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
104
105 return /* no error */ 0;
106}
107
108/* *INDENT-OFF* */
109VNET_DEVICE_CLASS (geneve_device_class, static) = {
110 .name = "GENEVE",
111 .format_device_name = format_geneve_name,
112 .format_tx_trace = format_geneve_encap_trace,
Marco Varleseb598f1d2017-09-19 14:25:28 +0200113 .admin_up_down_function = geneve_interface_admin_up_down,
114};
115/* *INDENT-ON* */
116
117static u8 *
118format_geneve_header_with_length (u8 * s, va_list * args)
119{
120 u32 dev_instance = va_arg (*args, u32);
121 s = format (s, "unimplemented dev %u", dev_instance);
122 return s;
123}
124
125/* *INDENT-OFF* */
126VNET_HW_INTERFACE_CLASS (geneve_hw_class) = {
127 .name = "GENEVE",
128 .format_header = format_geneve_header_with_length,
129 .build_rewrite = default_build_rewrite,
130};
131/* *INDENT-ON* */
132
133static void
134geneve_tunnel_restack_dpo (geneve_tunnel_t * t)
135{
136 dpo_id_t dpo = DPO_INVALID;
137 u32 encap_index = ip46_address_is_ip4 (&t->remote) ?
138 geneve4_encap_node.index : geneve6_encap_node.index;
139 fib_forward_chain_type_t forw_type = ip46_address_is_ip4 (&t->remote) ?
140 FIB_FORW_CHAIN_TYPE_UNICAST_IP4 : FIB_FORW_CHAIN_TYPE_UNICAST_IP6;
141
142 fib_entry_contribute_forwarding (t->fib_entry_index, forw_type, &dpo);
143 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
144 dpo_reset (&dpo);
145}
146
147static geneve_tunnel_t *
148geneve_tunnel_from_fib_node (fib_node_t * node)
149{
Marco Varleseb598f1d2017-09-19 14:25:28 +0200150 ASSERT (FIB_NODE_TYPE_GENEVE_TUNNEL == node->fn_type);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200151 return ((geneve_tunnel_t *) (((char *) node) -
152 STRUCT_OFFSET_OF (geneve_tunnel_t, node)));
153}
154
155/**
156 * Function definition to backwalk a FIB node -
157 * Here we will restack the new dpo of GENEVE DIP to encap node.
158 */
159static fib_node_back_walk_rc_t
160geneve_tunnel_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
161{
162 geneve_tunnel_restack_dpo (geneve_tunnel_from_fib_node (node));
163 return (FIB_NODE_BACK_WALK_CONTINUE);
164}
165
166/**
167 * Function definition to get a FIB node from its index
168 */
169static fib_node_t *
170geneve_tunnel_fib_node_get (fib_node_index_t index)
171{
172 geneve_tunnel_t *t;
173 geneve_main_t *vxm = &geneve_main;
174
175 t = pool_elt_at_index (vxm->tunnels, index);
176
177 return (&t->node);
178}
179
180/**
181 * Function definition to inform the FIB node that its last lock has gone.
182 */
183static void
184geneve_tunnel_last_lock_gone (fib_node_t * node)
185{
186 /*
187 * The GENEVE tunnel is a root of the graph. As such
188 * it never has children and thus is never locked.
189 */
190 ASSERT (0);
191}
192
193/*
194 * Virtual function table registered by GENEVE tunnels
195 * for participation in the FIB object graph.
196 */
197const static fib_node_vft_t geneve_vft = {
198 .fnv_get = geneve_tunnel_fib_node_get,
199 .fnv_last_lock = geneve_tunnel_last_lock_gone,
200 .fnv_back_walk = geneve_tunnel_back_walk,
201};
202
203
204#define foreach_copy_field \
205_(vni) \
206_(mcast_sw_if_index) \
207_(encap_fib_index) \
208_(decap_next_index) \
209_(local) \
210_(remote)
211
212static int
213geneve_rewrite (geneve_tunnel_t * t, bool is_ip6)
214{
215 union
216 {
217 ip4_geneve_header_t *h4;
218 ip6_geneve_header_t *h6;
219 u8 *rw;
220 } r =
221 {
222 .rw = 0};
223 int len = is_ip6 ? sizeof *r.h6 : sizeof *r.h4;
224#if SUPPORT_OPTIONS_HEADER==1
225 len += t->options_len;
226#endif
227
228 vec_validate_aligned (r.rw, len - 1, CLIB_CACHE_LINE_BYTES);
229
230 udp_header_t *udp;
231 geneve_header_t *geneve;
232 /* Fixed portion of the (outer) ip header */
233 if (!is_ip6)
234 {
235 ip4_header_t *ip = &r.h4->ip4;
236 udp = &r.h4->udp, geneve = &r.h4->geneve;
237 ip->ip_version_and_header_length = 0x45;
238 ip->ttl = 254;
239 ip->protocol = IP_PROTOCOL_UDP;
240
241 ip->src_address = t->local.ip4;
242 ip->dst_address = t->remote.ip4;
243
244 /* we fix up the ip4 header length and checksum after-the-fact */
245 ip->checksum = ip4_header_checksum (ip);
246 }
247 else
248 {
249 ip6_header_t *ip = &r.h6->ip6;
250 udp = &r.h6->udp, geneve = &r.h6->geneve;
251 ip->ip_version_traffic_class_and_flow_label =
252 clib_host_to_net_u32 (6 << 28);
253 ip->hop_limit = 255;
254 ip->protocol = IP_PROTOCOL_UDP;
255
256 ip->src_address = t->local.ip6;
257 ip->dst_address = t->remote.ip6;
258 }
259
260 /* UDP header, randomize local port on something, maybe? */
261 udp->src_port = clib_host_to_net_u16 (5251);
262 udp->dst_port = clib_host_to_net_u16 (UDP_DST_PORT_geneve);
263
264 /* GENEVE header */
265 vnet_set_geneve_version (geneve, GENEVE_VERSION);
266#if SUPPORT_OPTIONS_HEADER==1
267 vnet_set_geneve_options_len (geneve, t->options_len);
268#else
269 vnet_set_geneve_options_len (geneve, 0);
270#endif
271 vnet_set_geneve_oamframe_bit (geneve, 0);
272 vnet_set_geneve_critical_bit (geneve, 0);
273 vnet_set_geneve_protocol (geneve, GENEVE_ETH_PROTOCOL);
Marco Varlese60d48bb2017-11-20 09:20:38 +0100274
275 vnet_geneve_hdr_1word_hton (geneve);
276
Marco Varleseb598f1d2017-09-19 14:25:28 +0200277 vnet_set_geneve_vni (geneve, t->vni);
278
279 t->rewrite = r.rw;
280 return (0);
281}
282
283static bool
284geneve_decap_next_is_valid (geneve_main_t * vxm, u32 is_ip6,
285 u32 decap_next_index)
286{
287 vlib_main_t *vm = vxm->vlib_main;
288 u32 input_idx =
289 (!is_ip6) ? geneve4_input_node.index : geneve6_input_node.index;
290 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, input_idx);
291
292 return decap_next_index < r->n_next_nodes;
293}
294
Marco Varleseb598f1d2017-09-19 14:25:28 +0200295typedef CLIB_PACKED (union
296 {
297 struct
298 {
299 fib_node_index_t mfib_entry_index;
300 adj_index_t mcast_adj_index;
301 }; u64 as_u64;
302 }) mcast_shared_t;
303
304static inline mcast_shared_t
305mcast_shared_get (ip46_address_t * ip)
306{
307 ASSERT (ip46_address_is_multicast (ip));
308 uword *p = hash_get_mem (geneve_main.mcast_shared, ip);
Dave Barachffd15462020-02-18 10:12:23 -0500309 ALWAYS_ASSERT (p);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200310 return (mcast_shared_t)
311 {
312 .as_u64 = *p};
313}
314
315static inline void
316mcast_shared_add (ip46_address_t * remote,
317 fib_node_index_t mfei, adj_index_t ai)
318{
319 mcast_shared_t new_ep = {
320 .mcast_adj_index = ai,
321 .mfib_entry_index = mfei,
322 };
323
John Loe6bfeab2018-01-04 16:39:42 -0500324 hash_set_mem_alloc (&geneve_main.mcast_shared, remote, new_ep.as_u64);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200325}
326
327static inline void
328mcast_shared_remove (ip46_address_t * remote)
329{
330 mcast_shared_t ep = mcast_shared_get (remote);
331
332 adj_unlock (ep.mcast_adj_index);
333 mfib_table_entry_delete_index (ep.mfib_entry_index, MFIB_SOURCE_GENEVE);
334
John Loe6bfeab2018-01-04 16:39:42 -0500335 hash_unset_mem_free (&geneve_main.mcast_shared, remote);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200336}
337
Marco Varleseb598f1d2017-09-19 14:25:28 +0200338int vnet_geneve_add_del_tunnel
339 (vnet_geneve_add_del_tunnel_args_t * a, u32 * sw_if_indexp)
340{
341 geneve_main_t *vxm = &geneve_main;
342 geneve_tunnel_t *t = 0;
343 vnet_main_t *vnm = vxm->vnet_main;
344 uword *p;
345 u32 hw_if_index = ~0;
346 u32 sw_if_index = ~0;
347 int rv;
348 geneve4_tunnel_key_t key4;
349 geneve6_tunnel_key_t key6;
350 u32 is_ip6 = a->is_ip6;
351
352 if (!is_ip6)
353 {
354 key4.remote = a->remote.ip4.as_u32;
Marco Varlese60d48bb2017-11-20 09:20:38 +0100355 key4.vni =
356 clib_host_to_net_u32 ((a->vni << GENEVE_VNI_SHIFT) & GENEVE_VNI_MASK);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200357 p = hash_get (vxm->geneve4_tunnel_by_key, key4.as_u64);
358 }
359 else
360 {
361 key6.remote = a->remote.ip6;
Marco Varlese60d48bb2017-11-20 09:20:38 +0100362 key6.vni =
363 clib_host_to_net_u32 ((a->vni << GENEVE_VNI_SHIFT) & GENEVE_VNI_MASK);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200364 p = hash_get_mem (vxm->geneve6_tunnel_by_key, &key6);
365 }
366
367 if (a->is_add)
368 {
369 l2input_main_t *l2im = &l2input_main;
370
371 /* adding a tunnel: tunnel must not already exist */
372 if (p)
373 return VNET_API_ERROR_TUNNEL_EXIST;
374
375 /*if not set explicitly, default to l2 */
376 if (a->decap_next_index == ~0)
377 a->decap_next_index = GENEVE_INPUT_NEXT_L2_INPUT;
378 if (!geneve_decap_next_is_valid (vxm, is_ip6, a->decap_next_index))
379 return VNET_API_ERROR_INVALID_DECAP_NEXT;
380
381 pool_get_aligned (vxm->tunnels, t, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400382 clib_memset (t, 0, sizeof (*t));
Marco Varleseb598f1d2017-09-19 14:25:28 +0200383
384 /* copy from arg structure */
385#define _(x) t->x = a->x;
386 foreach_copy_field;
387#undef _
388
389 rv = geneve_rewrite (t, is_ip6);
390 if (rv)
391 {
392 pool_put (vxm->tunnels, t);
393 return rv;
394 }
395
396 /* copy the key */
397 if (is_ip6)
John Loe6bfeab2018-01-04 16:39:42 -0500398 hash_set_mem_alloc (&vxm->geneve6_tunnel_by_key, &key6,
399 t - vxm->tunnels);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200400 else
401 hash_set (vxm->geneve4_tunnel_by_key, key4.as_u64, t - vxm->tunnels);
402
403 vnet_hw_interface_t *hi;
404 if (vec_len (vxm->free_geneve_tunnel_hw_if_indices) > 0)
405 {
406 vnet_interface_main_t *im = &vnm->interface_main;
407 hw_if_index = vxm->free_geneve_tunnel_hw_if_indices
408 [vec_len (vxm->free_geneve_tunnel_hw_if_indices) - 1];
409 _vec_len (vxm->free_geneve_tunnel_hw_if_indices) -= 1;
410
411 hi = vnet_get_hw_interface (vnm, hw_if_index);
412 hi->dev_instance = t - vxm->tunnels;
413 hi->hw_instance = hi->dev_instance;
414
415 /* clear old stats of freed tunnel before reuse */
416 sw_if_index = hi->sw_if_index;
417 vnet_interface_counter_lock (im);
418 vlib_zero_combined_counter
419 (&im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_TX],
420 sw_if_index);
421 vlib_zero_combined_counter (&im->combined_sw_if_counters
422 [VNET_INTERFACE_COUNTER_RX],
423 sw_if_index);
424 vlib_zero_simple_counter (&im->sw_if_counters
425 [VNET_INTERFACE_COUNTER_DROP],
426 sw_if_index);
427 vnet_interface_counter_unlock (im);
428 }
429 else
430 {
431 hw_if_index = vnet_register_interface
432 (vnm, geneve_device_class.index, t - vxm->tunnels,
433 geneve_hw_class.index, t - vxm->tunnels);
434 hi = vnet_get_hw_interface (vnm, hw_if_index);
435 }
436
John Loe5453d02018-01-23 19:21:34 -0500437 /* Set geneve tunnel output node */
438 u32 encap_index = !is_ip6 ?
439 geneve4_encap_node.index : geneve6_encap_node.index;
440 vnet_set_interface_output_node (vnm, hw_if_index, encap_index);
441
Marco Varleseb598f1d2017-09-19 14:25:28 +0200442 t->hw_if_index = hw_if_index;
443 t->sw_if_index = sw_if_index = hi->sw_if_index;
444
445 vec_validate_init_empty (vxm->tunnel_index_by_sw_if_index, sw_if_index,
446 ~0);
447 vxm->tunnel_index_by_sw_if_index[sw_if_index] = t - vxm->tunnels;
448
449 /* setup l2 input config with l2 feature and bd 0 to drop packet */
450 vec_validate (l2im->configs, sw_if_index);
451 l2im->configs[sw_if_index].feature_bitmap = L2INPUT_FEAT_DROP;
452 l2im->configs[sw_if_index].bd_index = 0;
453
454 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
455 si->flags &= ~VNET_SW_INTERFACE_FLAG_HIDDEN;
456 vnet_sw_interface_set_flags (vnm, sw_if_index,
457 VNET_SW_INTERFACE_FLAG_ADMIN_UP);
458
459 fib_node_init (&t->node, FIB_NODE_TYPE_GENEVE_TUNNEL);
460 fib_prefix_t tun_remote_pfx;
Marco Varleseb598f1d2017-09-19 14:25:28 +0200461 vnet_flood_class_t flood_class = VNET_FLOOD_CLASS_TUNNEL_NORMAL;
462
463 fib_prefix_from_ip46_addr (&t->remote, &tun_remote_pfx);
464 if (!ip46_address_is_multicast (&t->remote))
465 {
466 /* Unicast tunnel -
467 * source the FIB entry for the tunnel's destination
468 * and become a child thereof. The tunnel will then get poked
469 * when the forwarding for the entry updates, and the tunnel can
470 * re-stack accordingly
471 */
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000472 vtep_addr_ref (&vxm->vtep_table, t->encap_fib_index, &t->local);
Neale Ranns1f50bf82019-07-16 15:28:52 +0000473 t->fib_entry_index = fib_entry_track (t->encap_fib_index,
474 &tun_remote_pfx,
475 FIB_NODE_TYPE_GENEVE_TUNNEL,
476 t - vxm->tunnels,
477 &t->sibling_index);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200478 geneve_tunnel_restack_dpo (t);
479 }
480 else
481 {
482 /* Multicast tunnel -
483 * as the same mcast group can be used for mutiple mcast tunnels
484 * with different VNIs, create the output fib adjecency only if
485 * it does not already exist
486 */
487 fib_protocol_t fp = fib_ip_proto (is_ip6);
488
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000489 if (vtep_addr_ref (&vxm->vtep_table,
490 t->encap_fib_index, &t->remote) == 1)
Marco Varleseb598f1d2017-09-19 14:25:28 +0200491 {
492 fib_node_index_t mfei;
493 adj_index_t ai;
494 fib_route_path_t path = {
495 .frp_proto = fib_proto_to_dpo (fp),
496 .frp_addr = zero_addr,
497 .frp_sw_if_index = 0xffffffff,
498 .frp_fib_index = ~0,
Neale Ranns097fa662018-05-01 05:17:55 -0700499 .frp_weight = 1,
Marco Varleseb598f1d2017-09-19 14:25:28 +0200500 .frp_flags = FIB_ROUTE_PATH_LOCAL,
Neale Ranns097fa662018-05-01 05:17:55 -0700501 .frp_mitf_flags = MFIB_ITF_FLAG_FORWARD,
Marco Varleseb598f1d2017-09-19 14:25:28 +0200502 };
503 const mfib_prefix_t mpfx = {
504 .fp_proto = fp,
505 .fp_len = (is_ip6 ? 128 : 32),
506 .fp_grp_addr = tun_remote_pfx.fp_addr,
507 };
508
509 /*
510 * Setup the (*,G) to receive traffic on the mcast group
511 * - the forwarding interface is for-us
512 * - the accepting interface is that from the API
513 */
514 mfib_table_entry_path_update (t->encap_fib_index,
Neale Ranns097fa662018-05-01 05:17:55 -0700515 &mpfx, MFIB_SOURCE_GENEVE, &path);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200516
517 path.frp_sw_if_index = a->mcast_sw_if_index;
518 path.frp_flags = FIB_ROUTE_PATH_FLAG_NONE;
Neale Ranns097fa662018-05-01 05:17:55 -0700519 path.frp_mitf_flags = MFIB_ITF_FLAG_ACCEPT;
Marco Varleseb598f1d2017-09-19 14:25:28 +0200520 mfei = mfib_table_entry_path_update (t->encap_fib_index,
521 &mpfx,
Neale Ranns097fa662018-05-01 05:17:55 -0700522 MFIB_SOURCE_GENEVE, &path);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200523
524 /*
525 * Create the mcast adjacency to send traffic to the group
526 */
527 ai = adj_mcast_add_or_lock (fp,
528 fib_proto_to_link (fp),
529 a->mcast_sw_if_index);
530
531 /*
532 * create a new end-point
533 */
534 mcast_shared_add (&t->remote, mfei, ai);
535 }
536
537 dpo_id_t dpo = DPO_INVALID;
538 mcast_shared_t ep = mcast_shared_get (&t->remote);
539
540 /* Stack shared mcast remote mac addr rewrite on encap */
541 dpo_set (&dpo, DPO_ADJACENCY_MCAST,
542 fib_proto_to_dpo (fp), ep.mcast_adj_index);
543
544 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
545 dpo_reset (&dpo);
546 flood_class = VNET_FLOOD_CLASS_TUNNEL_MASTER;
547 }
548
Marco Varleseb598f1d2017-09-19 14:25:28 +0200549 vnet_get_sw_interface (vnet_get_main (), sw_if_index)->flood_class =
550 flood_class;
551 }
552 else
553 {
554 /* deleting a tunnel: tunnel must exist */
555 if (!p)
556 return VNET_API_ERROR_NO_SUCH_ENTRY;
557
558 t = pool_elt_at_index (vxm->tunnels, p[0]);
559
560 sw_if_index = t->sw_if_index;
561 vnet_sw_interface_set_flags (vnm, t->sw_if_index, 0 /* down */ );
562 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, t->sw_if_index);
563 si->flags |= VNET_SW_INTERFACE_FLAG_HIDDEN;
564
565 /* make sure tunnel is removed from l2 bd or xconnect */
Neale Rannsb4743802018-09-05 09:13:57 -0700566 set_int_l2_mode (vxm->vlib_main, vnm, MODE_L3, t->sw_if_index, 0,
567 L2_BD_PORT_TYPE_NORMAL, 0, 0);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200568 vec_add1 (vxm->free_geneve_tunnel_hw_if_indices, t->hw_if_index);
569
570 vxm->tunnel_index_by_sw_if_index[t->sw_if_index] = ~0;
571
572 if (!is_ip6)
573 hash_unset (vxm->geneve4_tunnel_by_key, key4.as_u64);
574 else
John Loe6bfeab2018-01-04 16:39:42 -0500575 hash_unset_mem_free (&vxm->geneve6_tunnel_by_key, &key6);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200576
577 if (!ip46_address_is_multicast (&t->remote))
578 {
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000579 vtep_addr_unref (&vxm->vtep_table, t->encap_fib_index, &t->local);
Neale Ranns1f50bf82019-07-16 15:28:52 +0000580 fib_entry_untrack (t->fib_entry_index, t->sibling_index);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200581 }
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000582 else if (vtep_addr_unref (&vxm->vtep_table,
583 t->encap_fib_index, &t->remote) == 0)
Marco Varleseb598f1d2017-09-19 14:25:28 +0200584 {
585 mcast_shared_remove (&t->remote);
586 }
587
588 fib_node_deinit (&t->node);
589 vec_free (t->rewrite);
590 pool_put (vxm->tunnels, t);
591 }
592
593 if (sw_if_indexp)
594 *sw_if_indexp = sw_if_index;
595
Jakub Grajciardf3ca232019-06-04 13:16:42 +0200596 if (a->is_add)
597 {
598 /* register udp ports */
599 if (!is_ip6 && !udp_is_valid_dst_port (UDP_DST_PORT_geneve, 1))
600 udp_register_dst_port (vxm->vlib_main, UDP_DST_PORT_geneve,
601 geneve4_input_node.index, 1);
602 if (is_ip6 && !udp_is_valid_dst_port (UDP_DST_PORT_geneve6, 0))
603 udp_register_dst_port (vxm->vlib_main, UDP_DST_PORT_geneve6,
604 geneve6_input_node.index, 0);
605 }
606
Marco Varleseb598f1d2017-09-19 14:25:28 +0200607 return 0;
608}
609
610static uword
611get_decap_next_for_node (u32 node_index, u32 ipv4_set)
612{
613 geneve_main_t *vxm = &geneve_main;
614 vlib_main_t *vm = vxm->vlib_main;
615 uword input_node = (ipv4_set) ? geneve4_input_node.index :
616 geneve6_input_node.index;
617
618 return vlib_node_add_next (vm, input_node, node_index);
619}
620
621static uword
622unformat_decap_next (unformat_input_t * input, va_list * args)
623{
624 u32 *result = va_arg (*args, u32 *);
625 u32 ipv4_set = va_arg (*args, int);
626 geneve_main_t *vxm = &geneve_main;
627 vlib_main_t *vm = vxm->vlib_main;
628 u32 node_index;
629 u32 tmp;
630
631 if (unformat (input, "l2"))
632 *result = GENEVE_INPUT_NEXT_L2_INPUT;
633 else if (unformat (input, "node %U", unformat_vlib_node, vm, &node_index))
634 *result = get_decap_next_for_node (node_index, ipv4_set);
635 else if (unformat (input, "%d", &tmp))
636 *result = tmp;
637 else
638 return 0;
639 return 1;
640}
641
642static clib_error_t *
643geneve_add_del_tunnel_command_fn (vlib_main_t * vm,
644 unformat_input_t * input,
645 vlib_cli_command_t * cmd)
646{
647 unformat_input_t _line_input, *line_input = &_line_input;
648 ip46_address_t local, remote;
649 u8 is_add = 1;
650 u8 local_set = 0;
651 u8 remote_set = 0;
652 u8 grp_set = 0;
653 u8 ipv4_set = 0;
654 u8 ipv6_set = 0;
655 u32 encap_fib_index = 0;
656 u32 mcast_sw_if_index = ~0;
657 u32 decap_next_index = GENEVE_INPUT_NEXT_L2_INPUT;
658 u32 vni = 0;
659 u32 tmp;
660 int rv;
661 vnet_geneve_add_del_tunnel_args_t _a, *a = &_a;
662 u32 tunnel_sw_if_index;
663 clib_error_t *error = NULL;
664
665 /* Cant "universally zero init" (={0}) due to GCC bug 53119 */
Dave Barachb7b92992018-10-17 10:38:51 -0400666 clib_memset (&local, 0, sizeof local);
667 clib_memset (&remote, 0, sizeof remote);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200668
669 /* Get a line of input. */
670 if (!unformat_user (input, unformat_line_input, line_input))
671 return 0;
672
673 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
674 {
675 if (unformat (line_input, "del"))
676 {
677 is_add = 0;
678 }
679 else if (unformat (line_input, "local %U",
680 unformat_ip4_address, &local.ip4))
681 {
682 local_set = 1;
683 ipv4_set = 1;
684 }
685 else if (unformat (line_input, "remote %U",
686 unformat_ip4_address, &remote.ip4))
687 {
688 remote_set = 1;
689 ipv4_set = 1;
690 }
691 else if (unformat (line_input, "local %U",
692 unformat_ip6_address, &local.ip6))
693 {
694 local_set = 1;
695 ipv6_set = 1;
696 }
697 else if (unformat (line_input, "remote %U",
698 unformat_ip6_address, &remote.ip6))
699 {
700 remote_set = 1;
701 ipv6_set = 1;
702 }
703 else if (unformat (line_input, "group %U %U",
704 unformat_ip4_address, &remote.ip4,
705 unformat_vnet_sw_interface,
706 vnet_get_main (), &mcast_sw_if_index))
707 {
708 grp_set = remote_set = 1;
709 ipv4_set = 1;
710 }
711 else if (unformat (line_input, "group %U %U",
712 unformat_ip6_address, &remote.ip6,
713 unformat_vnet_sw_interface,
714 vnet_get_main (), &mcast_sw_if_index))
715 {
716 grp_set = remote_set = 1;
717 ipv6_set = 1;
718 }
719 else if (unformat (line_input, "encap-vrf-id %d", &tmp))
720 {
721 encap_fib_index = fib_table_find (fib_ip_proto (ipv6_set), tmp);
722 if (encap_fib_index == ~0)
723 {
724 error =
725 clib_error_return (0, "nonexistent encap-vrf-id %d", tmp);
726 goto done;
727 }
728 }
729 else if (unformat (line_input, "decap-next %U", unformat_decap_next,
730 &decap_next_index, ipv4_set))
731 ;
732 else if (unformat (line_input, "vni %d", &vni))
733 {
734 if (vni >> 24)
735 {
736 error = clib_error_return (0, "vni %d out of range", vni);
737 goto done;
738 }
739 }
740 else
741 {
742 error = clib_error_return (0, "parse error: '%U'",
743 format_unformat_error, line_input);
744 goto done;
745 }
746 }
747
748 if (local_set == 0)
749 {
750 error = clib_error_return (0, "tunnel local address not specified");
751 goto done;
752 }
753
754 if (remote_set == 0)
755 {
756 error = clib_error_return (0, "tunnel remote address not specified");
757 goto done;
758 }
759
760 if (grp_set && !ip46_address_is_multicast (&remote))
761 {
762 error = clib_error_return (0, "tunnel group address not multicast");
763 goto done;
764 }
765
766 if (grp_set == 0 && ip46_address_is_multicast (&remote))
767 {
768 error = clib_error_return (0, "remote address must be unicast");
769 goto done;
770 }
771
772 if (grp_set && mcast_sw_if_index == ~0)
773 {
774 error = clib_error_return (0, "tunnel nonexistent multicast device");
775 goto done;
776 }
777
778 if (ipv4_set && ipv6_set)
779 {
780 error = clib_error_return (0, "both IPv4 and IPv6 addresses specified");
781 goto done;
782 }
783
784 if (ip46_address_cmp (&local, &remote) == 0)
785 {
786 error =
787 clib_error_return (0, "local and remote addresses are identical");
788 goto done;
789 }
790
791 if (decap_next_index == ~0)
792 {
793 error = clib_error_return (0, "next node not found");
794 goto done;
795 }
796
797 if (vni == 0)
798 {
799 error = clib_error_return (0, "vni not specified");
800 goto done;
801 }
802
Dave Barachb7b92992018-10-17 10:38:51 -0400803 clib_memset (a, 0, sizeof (*a));
Marco Varleseb598f1d2017-09-19 14:25:28 +0200804
805 a->is_add = is_add;
806 a->is_ip6 = ipv6_set;
807
808#define _(x) a->x = x;
809 foreach_copy_field;
810#undef _
811
812 rv = vnet_geneve_add_del_tunnel (a, &tunnel_sw_if_index);
813
814 switch (rv)
815 {
816 case 0:
817 if (is_add)
818 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
819 vnet_get_main (), tunnel_sw_if_index);
820 break;
821
822 case VNET_API_ERROR_TUNNEL_EXIST:
823 error = clib_error_return (0, "tunnel already exists...");
824 goto done;
825
826 case VNET_API_ERROR_NO_SUCH_ENTRY:
827 error = clib_error_return (0, "tunnel does not exist...");
828 goto done;
829
830 default:
831 error = clib_error_return
832 (0, "vnet_geneve_add_del_tunnel returned %d", rv);
833 goto done;
834 }
835
836done:
837 unformat_free (line_input);
838
839 return error;
840}
841
842/*?
843 * Add or delete a GENEVE Tunnel.
844 *
845 * GENEVE provides the features needed to allow L2 bridge domains (BDs)
846 * to span multiple servers. This is done by building an L2 overlay on
847 * top of an L3 network underlay using GENEVE tunnels.
848 *
849 * This makes it possible for servers to be co-located in the same data
850 * center or be separated geographically as long as they are reachable
851 * through the underlay L3 network.
852 *
853 * You can refer to this kind of L2 overlay bridge domain as a GENEVE
854 * segment.
855 *
856 * @cliexpar
857 * Example of how to create a GENEVE Tunnel:
858 * @cliexcmd{create geneve tunnel local 10.0.3.1 remote 10.0.3.3 vni 13 encap-vrf-id 7}
859 * Example of how to delete a GENEVE Tunnel:
860 * @cliexcmd{create geneve tunnel local 10.0.3.1 remote 10.0.3.3 vni 13 del}
861 ?*/
862/* *INDENT-OFF* */
863VLIB_CLI_COMMAND (create_geneve_tunnel_command, static) = {
864 .path = "create geneve tunnel",
865 .short_help =
866 "create geneve tunnel local <local-vtep-addr>"
867 " {remote <remote-vtep-addr>|group <mcast-vtep-addr> <intf-name>} vni <nn>"
868 " [encap-vrf-id <nn>] [decap-next [l2|node <name>]] [del]",
869 .function = geneve_add_del_tunnel_command_fn,
870};
871/* *INDENT-ON* */
872
873static clib_error_t *
874show_geneve_tunnel_command_fn (vlib_main_t * vm,
875 unformat_input_t * input,
876 vlib_cli_command_t * cmd)
877{
878 geneve_main_t *vxm = &geneve_main;
879 geneve_tunnel_t *t;
880
881 if (pool_elts (vxm->tunnels) == 0)
882 vlib_cli_output (vm, "No geneve tunnels configured...");
883
884 pool_foreach (t, vxm->tunnels, (
885 {
886 vlib_cli_output (vm, "%U",
887 format_geneve_tunnel, t);
888 }
889 ));
890
891 return 0;
892}
893
894/*?
895 * Display all the GENEVE Tunnel entries.
896 *
897 * @cliexpar
898 * Example of how to display the GENEVE Tunnel entries:
899 * @cliexstart{show geneve tunnel}
900 * [0] local 10.0.3.1 remote 10.0.3.3 vni 13 encap_fib_index 0 sw_if_index 5 decap_next l2
901 * @cliexend
902 ?*/
903/* *INDENT-OFF* */
904VLIB_CLI_COMMAND (show_geneve_tunnel_command, static) = {
905 .path = "show geneve tunnel",
906 .short_help = "show geneve tunnel",
907 .function = show_geneve_tunnel_command_fn,
908};
909/* *INDENT-ON* */
910
911
912void
913vnet_int_geneve_bypass_mode (u32 sw_if_index, u8 is_ip6, u8 is_enable)
914{
915 if (is_ip6)
916 vnet_feature_enable_disable ("ip6-unicast", "ip6-geneve-bypass",
917 sw_if_index, is_enable, 0, 0);
918 else
919 vnet_feature_enable_disable ("ip4-unicast", "ip4-geneve-bypass",
920 sw_if_index, is_enable, 0, 0);
921}
922
923
924static clib_error_t *
925set_ip_geneve_bypass (u32 is_ip6,
926 unformat_input_t * input, vlib_cli_command_t * cmd)
927{
928 unformat_input_t _line_input, *line_input = &_line_input;
929 vnet_main_t *vnm = vnet_get_main ();
930 clib_error_t *error = 0;
931 u32 sw_if_index, is_enable;
932
933 sw_if_index = ~0;
934 is_enable = 1;
935
936 if (!unformat_user (input, unformat_line_input, line_input))
937 return 0;
938
939 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
940 {
941 if (unformat_user
942 (line_input, unformat_vnet_sw_interface, vnm, &sw_if_index))
943 ;
944 else if (unformat (line_input, "del"))
945 is_enable = 0;
946 else
947 {
948 error = unformat_parse_error (line_input);
949 goto done;
950 }
951 }
952
953 if (~0 == sw_if_index)
954 {
955 error = clib_error_return (0, "unknown interface `%U'",
956 format_unformat_error, line_input);
957 goto done;
958 }
959
960 vnet_int_geneve_bypass_mode (sw_if_index, is_ip6, is_enable);
961
962done:
963 unformat_free (line_input);
964
965 return error;
966}
967
968static clib_error_t *
969set_ip4_geneve_bypass (vlib_main_t * vm,
970 unformat_input_t * input, vlib_cli_command_t * cmd)
971{
972 return set_ip_geneve_bypass (0, input, cmd);
973}
974
975/*?
976 * This command adds the 'ip4-geneve-bypass' graph node for a given interface.
977 * By adding the IPv4 geneve-bypass graph node to an interface, the node checks
978 * for and validate input geneve packet and bypass ip4-lookup, ip4-local,
979 * ip4-udp-lookup nodes to speedup geneve packet forwarding. This node will
980 * cause extra overhead to for non-geneve packets which is kept at a minimum.
981 *
982 * @cliexpar
983 * @parblock
984 * Example of graph node before ip4-geneve-bypass is enabled:
985 * @cliexstart{show vlib graph ip4-geneve-bypass}
986 * Name Next Previous
987 * ip4-geneve-bypass error-drop [0]
988 * geneve4-input [1]
989 * ip4-lookup [2]
990 * @cliexend
991 *
992 * Example of how to enable ip4-geneve-bypass on an interface:
993 * @cliexcmd{set interface ip geneve-bypass GigabitEthernet2/0/0}
994 *
995 * Example of graph node after ip4-geneve-bypass is enabled:
996 * @cliexstart{show vlib graph ip4-geneve-bypass}
997 * Name Next Previous
998 * ip4-geneve-bypass error-drop [0] ip4-input
999 * geneve4-input [1] ip4-input-no-checksum
1000 * ip4-lookup [2]
1001 * @cliexend
1002 *
1003 * Example of how to display the feature enabed on an interface:
1004 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1005 * IP feature paths configured on GigabitEthernet2/0/0...
1006 * ...
1007 * ipv4 unicast:
1008 * ip4-geneve-bypass
1009 * ip4-lookup
1010 * ...
1011 * @cliexend
1012 *
1013 * Example of how to disable ip4-geneve-bypass on an interface:
1014 * @cliexcmd{set interface ip geneve-bypass GigabitEthernet2/0/0 del}
1015 * @endparblock
1016?*/
1017/* *INDENT-OFF* */
1018VLIB_CLI_COMMAND (set_interface_ip_geneve_bypass_command, static) = {
1019 .path = "set interface ip geneve-bypass",
1020 .function = set_ip4_geneve_bypass,
1021 .short_help = "set interface ip geneve-bypass <interface> [del]",
1022};
1023/* *INDENT-ON* */
1024
1025static clib_error_t *
1026set_ip6_geneve_bypass (vlib_main_t * vm,
1027 unformat_input_t * input, vlib_cli_command_t * cmd)
1028{
1029 return set_ip_geneve_bypass (1, input, cmd);
1030}
1031
1032/*?
1033 * This command adds the 'ip6-geneve-bypass' graph node for a given interface.
1034 * By adding the IPv6 geneve-bypass graph node to an interface, the node checks
1035 * for and validate input geneve packet and bypass ip6-lookup, ip6-local,
1036 * ip6-udp-lookup nodes to speedup geneve packet forwarding. This node will
1037 * cause extra overhead to for non-geneve packets which is kept at a minimum.
1038 *
1039 * @cliexpar
1040 * @parblock
1041 * Example of graph node before ip6-geneve-bypass is enabled:
1042 * @cliexstart{show vlib graph ip6-geneve-bypass}
1043 * Name Next Previous
1044 * ip6-geneve-bypass error-drop [0]
1045 * geneve6-input [1]
1046 * ip6-lookup [2]
1047 * @cliexend
1048 *
1049 * Example of how to enable ip6-geneve-bypass on an interface:
1050 * @cliexcmd{set interface ip6 geneve-bypass GigabitEthernet2/0/0}
1051 *
1052 * Example of graph node after ip6-geneve-bypass is enabled:
1053 * @cliexstart{show vlib graph ip6-geneve-bypass}
1054 * Name Next Previous
1055 * ip6-geneve-bypass error-drop [0] ip6-input
1056 * geneve6-input [1] ip4-input-no-checksum
1057 * ip6-lookup [2]
1058 * @cliexend
1059 *
1060 * Example of how to display the feature enabed on an interface:
1061 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1062 * IP feature paths configured on GigabitEthernet2/0/0...
1063 * ...
1064 * ipv6 unicast:
1065 * ip6-geneve-bypass
1066 * ip6-lookup
1067 * ...
1068 * @cliexend
1069 *
1070 * Example of how to disable ip6-geneve-bypass on an interface:
1071 * @cliexcmd{set interface ip6 geneve-bypass GigabitEthernet2/0/0 del}
1072 * @endparblock
1073?*/
1074/* *INDENT-OFF* */
1075VLIB_CLI_COMMAND (set_interface_ip6_geneve_bypass_command, static) = {
1076 .path = "set interface ip6 geneve-bypass",
1077 .function = set_ip6_geneve_bypass,
Paul Vinciguerra5fb22782019-11-07 17:20:48 -05001078 .short_help = "set interface ip6 geneve-bypass <interface> [del]",
Marco Varleseb598f1d2017-09-19 14:25:28 +02001079};
1080/* *INDENT-ON* */
1081
1082clib_error_t *
1083geneve_init (vlib_main_t * vm)
1084{
1085 geneve_main_t *vxm = &geneve_main;
1086
1087 vxm->vnet_main = vnet_get_main ();
1088 vxm->vlib_main = vm;
1089
1090 /* initialize the ip6 hash */
1091 vxm->geneve6_tunnel_by_key = hash_create_mem (0,
1092 sizeof (geneve6_tunnel_key_t),
1093 sizeof (uword));
Nick Zavaritsky27518c22020-02-27 15:54:58 +00001094 vxm->vtep_table = vtep_table_create ();
Marco Varleseb598f1d2017-09-19 14:25:28 +02001095 vxm->mcast_shared = hash_create_mem (0,
1096 sizeof (ip46_address_t),
1097 sizeof (mcast_shared_t));
1098
Marco Varleseb598f1d2017-09-19 14:25:28 +02001099 fib_node_register_type (FIB_NODE_TYPE_GENEVE_TUNNEL, &geneve_vft);
1100
1101 return 0;
1102}
1103
1104VLIB_INIT_FUNCTION (geneve_init);
1105
1106/*
1107 * fd.io coding-style-patch-verification: ON
1108 *
1109 * Local Variables:
1110 * eval: (c-set-style "gnu")
1111 * End:
1112 */