blob: e16616b69ea4304ca0395bfa2162cefb596e63ad [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);
Ole Troan7fc88cf2020-06-17 22:57:13 +020084 s = format (s, "l3-mode %u ", t->l3_mode);
Marco Varleseb598f1d2017-09-19 14:25:28 +020085
John Lo4478d8e2018-01-12 17:15:25 -050086 if (PREDICT_FALSE (ip46_address_is_multicast (&t->remote)))
87 s = format (s, "mcast-sw-if-idx %d ", t->mcast_sw_if_index);
88
Marco Varleseb598f1d2017-09-19 14:25:28 +020089 return s;
90}
91
92static u8 *
93format_geneve_name (u8 * s, va_list * args)
94{
95 u32 dev_instance = va_arg (*args, u32);
96 return format (s, "geneve_tunnel%d", dev_instance);
97}
98
Marco Varleseb598f1d2017-09-19 14:25:28 +020099static clib_error_t *
100geneve_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
101{
102 u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
103 VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
104 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
105
106 return /* no error */ 0;
107}
108
Ole Troan7fc88cf2020-06-17 22:57:13 +0200109static clib_error_t *
110geneve_mac_change (vnet_hw_interface_t * hi,
111 const u8 * old_address, const u8 * mac_address)
112{
113 l2input_interface_mac_change (hi->sw_if_index, old_address, mac_address);
114 return (NULL);
115}
116
Marco Varleseb598f1d2017-09-19 14:25:28 +0200117/* *INDENT-OFF* */
118VNET_DEVICE_CLASS (geneve_device_class, static) = {
119 .name = "GENEVE",
120 .format_device_name = format_geneve_name,
121 .format_tx_trace = format_geneve_encap_trace,
Marco Varleseb598f1d2017-09-19 14:25:28 +0200122 .admin_up_down_function = geneve_interface_admin_up_down,
Ole Troan7fc88cf2020-06-17 22:57:13 +0200123 .mac_addr_change_function = geneve_mac_change,
Marco Varleseb598f1d2017-09-19 14:25:28 +0200124};
125/* *INDENT-ON* */
126
127static u8 *
128format_geneve_header_with_length (u8 * s, va_list * args)
129{
130 u32 dev_instance = va_arg (*args, u32);
131 s = format (s, "unimplemented dev %u", dev_instance);
132 return s;
133}
134
135/* *INDENT-OFF* */
136VNET_HW_INTERFACE_CLASS (geneve_hw_class) = {
137 .name = "GENEVE",
138 .format_header = format_geneve_header_with_length,
139 .build_rewrite = default_build_rewrite,
140};
141/* *INDENT-ON* */
142
143static void
144geneve_tunnel_restack_dpo (geneve_tunnel_t * t)
145{
146 dpo_id_t dpo = DPO_INVALID;
147 u32 encap_index = ip46_address_is_ip4 (&t->remote) ?
148 geneve4_encap_node.index : geneve6_encap_node.index;
149 fib_forward_chain_type_t forw_type = ip46_address_is_ip4 (&t->remote) ?
150 FIB_FORW_CHAIN_TYPE_UNICAST_IP4 : FIB_FORW_CHAIN_TYPE_UNICAST_IP6;
151
152 fib_entry_contribute_forwarding (t->fib_entry_index, forw_type, &dpo);
153 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
154 dpo_reset (&dpo);
155}
156
157static geneve_tunnel_t *
158geneve_tunnel_from_fib_node (fib_node_t * node)
159{
Marco Varleseb598f1d2017-09-19 14:25:28 +0200160 ASSERT (FIB_NODE_TYPE_GENEVE_TUNNEL == node->fn_type);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200161 return ((geneve_tunnel_t *) (((char *) node) -
162 STRUCT_OFFSET_OF (geneve_tunnel_t, node)));
163}
164
165/**
166 * Function definition to backwalk a FIB node -
167 * Here we will restack the new dpo of GENEVE DIP to encap node.
168 */
169static fib_node_back_walk_rc_t
170geneve_tunnel_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
171{
172 geneve_tunnel_restack_dpo (geneve_tunnel_from_fib_node (node));
173 return (FIB_NODE_BACK_WALK_CONTINUE);
174}
175
176/**
177 * Function definition to get a FIB node from its index
178 */
179static fib_node_t *
180geneve_tunnel_fib_node_get (fib_node_index_t index)
181{
182 geneve_tunnel_t *t;
183 geneve_main_t *vxm = &geneve_main;
184
185 t = pool_elt_at_index (vxm->tunnels, index);
186
187 return (&t->node);
188}
189
190/**
191 * Function definition to inform the FIB node that its last lock has gone.
192 */
193static void
194geneve_tunnel_last_lock_gone (fib_node_t * node)
195{
196 /*
197 * The GENEVE tunnel is a root of the graph. As such
198 * it never has children and thus is never locked.
199 */
200 ASSERT (0);
201}
202
203/*
204 * Virtual function table registered by GENEVE tunnels
205 * for participation in the FIB object graph.
206 */
207const static fib_node_vft_t geneve_vft = {
208 .fnv_get = geneve_tunnel_fib_node_get,
209 .fnv_last_lock = geneve_tunnel_last_lock_gone,
210 .fnv_back_walk = geneve_tunnel_back_walk,
211};
212
213
214#define foreach_copy_field \
215_(vni) \
216_(mcast_sw_if_index) \
217_(encap_fib_index) \
218_(decap_next_index) \
Ole Troan7fc88cf2020-06-17 22:57:13 +0200219_(local) \
220_(remote) \
221_(l3_mode)
Marco Varleseb598f1d2017-09-19 14:25:28 +0200222
223static int
224geneve_rewrite (geneve_tunnel_t * t, bool is_ip6)
225{
226 union
227 {
228 ip4_geneve_header_t *h4;
229 ip6_geneve_header_t *h6;
230 u8 *rw;
231 } r =
232 {
233 .rw = 0};
234 int len = is_ip6 ? sizeof *r.h6 : sizeof *r.h4;
235#if SUPPORT_OPTIONS_HEADER==1
236 len += t->options_len;
237#endif
238
239 vec_validate_aligned (r.rw, len - 1, CLIB_CACHE_LINE_BYTES);
240
241 udp_header_t *udp;
242 geneve_header_t *geneve;
243 /* Fixed portion of the (outer) ip header */
244 if (!is_ip6)
245 {
246 ip4_header_t *ip = &r.h4->ip4;
247 udp = &r.h4->udp, geneve = &r.h4->geneve;
248 ip->ip_version_and_header_length = 0x45;
249 ip->ttl = 254;
250 ip->protocol = IP_PROTOCOL_UDP;
251
252 ip->src_address = t->local.ip4;
253 ip->dst_address = t->remote.ip4;
254
255 /* we fix up the ip4 header length and checksum after-the-fact */
256 ip->checksum = ip4_header_checksum (ip);
257 }
258 else
259 {
260 ip6_header_t *ip = &r.h6->ip6;
261 udp = &r.h6->udp, geneve = &r.h6->geneve;
262 ip->ip_version_traffic_class_and_flow_label =
263 clib_host_to_net_u32 (6 << 28);
264 ip->hop_limit = 255;
265 ip->protocol = IP_PROTOCOL_UDP;
266
267 ip->src_address = t->local.ip6;
268 ip->dst_address = t->remote.ip6;
269 }
270
271 /* UDP header, randomize local port on something, maybe? */
272 udp->src_port = clib_host_to_net_u16 (5251);
273 udp->dst_port = clib_host_to_net_u16 (UDP_DST_PORT_geneve);
274
275 /* GENEVE header */
276 vnet_set_geneve_version (geneve, GENEVE_VERSION);
277#if SUPPORT_OPTIONS_HEADER==1
278 vnet_set_geneve_options_len (geneve, t->options_len);
279#else
280 vnet_set_geneve_options_len (geneve, 0);
281#endif
282 vnet_set_geneve_oamframe_bit (geneve, 0);
283 vnet_set_geneve_critical_bit (geneve, 0);
284 vnet_set_geneve_protocol (geneve, GENEVE_ETH_PROTOCOL);
Marco Varlese60d48bb2017-11-20 09:20:38 +0100285
286 vnet_geneve_hdr_1word_hton (geneve);
287
Marco Varleseb598f1d2017-09-19 14:25:28 +0200288 vnet_set_geneve_vni (geneve, t->vni);
289
290 t->rewrite = r.rw;
291 return (0);
292}
293
294static bool
295geneve_decap_next_is_valid (geneve_main_t * vxm, u32 is_ip6,
296 u32 decap_next_index)
297{
298 vlib_main_t *vm = vxm->vlib_main;
299 u32 input_idx =
300 (!is_ip6) ? geneve4_input_node.index : geneve6_input_node.index;
301 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, input_idx);
302
303 return decap_next_index < r->n_next_nodes;
304}
305
Neale Ranns91fd9102020-04-03 07:46:28 +0000306typedef union
307{
308 struct
309 {
310 fib_node_index_t mfib_entry_index;
311 adj_index_t mcast_adj_index;
312 };
313 u64 as_u64;
314} __clib_packed mcast_shared_t;
Marco Varleseb598f1d2017-09-19 14:25:28 +0200315
316static inline mcast_shared_t
317mcast_shared_get (ip46_address_t * ip)
318{
319 ASSERT (ip46_address_is_multicast (ip));
320 uword *p = hash_get_mem (geneve_main.mcast_shared, ip);
Dave Barachffd15462020-02-18 10:12:23 -0500321 ALWAYS_ASSERT (p);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200322 return (mcast_shared_t)
323 {
324 .as_u64 = *p};
325}
326
327static inline void
328mcast_shared_add (ip46_address_t * remote,
329 fib_node_index_t mfei, adj_index_t ai)
330{
331 mcast_shared_t new_ep = {
332 .mcast_adj_index = ai,
333 .mfib_entry_index = mfei,
334 };
335
John Loe6bfeab2018-01-04 16:39:42 -0500336 hash_set_mem_alloc (&geneve_main.mcast_shared, remote, new_ep.as_u64);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200337}
338
339static inline void
340mcast_shared_remove (ip46_address_t * remote)
341{
342 mcast_shared_t ep = mcast_shared_get (remote);
343
344 adj_unlock (ep.mcast_adj_index);
345 mfib_table_entry_delete_index (ep.mfib_entry_index, MFIB_SOURCE_GENEVE);
346
John Loe6bfeab2018-01-04 16:39:42 -0500347 hash_unset_mem_free (&geneve_main.mcast_shared, remote);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200348}
349
Marco Varleseb598f1d2017-09-19 14:25:28 +0200350int vnet_geneve_add_del_tunnel
351 (vnet_geneve_add_del_tunnel_args_t * a, u32 * sw_if_indexp)
352{
353 geneve_main_t *vxm = &geneve_main;
354 geneve_tunnel_t *t = 0;
355 vnet_main_t *vnm = vxm->vnet_main;
356 uword *p;
357 u32 hw_if_index = ~0;
358 u32 sw_if_index = ~0;
359 int rv;
360 geneve4_tunnel_key_t key4;
361 geneve6_tunnel_key_t key6;
362 u32 is_ip6 = a->is_ip6;
363
364 if (!is_ip6)
365 {
366 key4.remote = a->remote.ip4.as_u32;
Neale Ranns91fd9102020-04-03 07:46:28 +0000367 key4.vni = clib_host_to_net_u32 (a->vni << GENEVE_VNI_SHIFT);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200368 p = hash_get (vxm->geneve4_tunnel_by_key, key4.as_u64);
369 }
370 else
371 {
372 key6.remote = a->remote.ip6;
Neale Ranns91fd9102020-04-03 07:46:28 +0000373 key6.vni = clib_host_to_net_u32 (a->vni << GENEVE_VNI_SHIFT);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200374 p = hash_get_mem (vxm->geneve6_tunnel_by_key, &key6);
375 }
376
377 if (a->is_add)
378 {
379 l2input_main_t *l2im = &l2input_main;
380
381 /* adding a tunnel: tunnel must not already exist */
382 if (p)
383 return VNET_API_ERROR_TUNNEL_EXIST;
384
385 /*if not set explicitly, default to l2 */
386 if (a->decap_next_index == ~0)
387 a->decap_next_index = GENEVE_INPUT_NEXT_L2_INPUT;
388 if (!geneve_decap_next_is_valid (vxm, is_ip6, a->decap_next_index))
389 return VNET_API_ERROR_INVALID_DECAP_NEXT;
390
391 pool_get_aligned (vxm->tunnels, t, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400392 clib_memset (t, 0, sizeof (*t));
Marco Varleseb598f1d2017-09-19 14:25:28 +0200393
394 /* copy from arg structure */
395#define _(x) t->x = a->x;
396 foreach_copy_field;
397#undef _
398
399 rv = geneve_rewrite (t, is_ip6);
400 if (rv)
401 {
402 pool_put (vxm->tunnels, t);
403 return rv;
404 }
405
406 /* copy the key */
407 if (is_ip6)
John Loe6bfeab2018-01-04 16:39:42 -0500408 hash_set_mem_alloc (&vxm->geneve6_tunnel_by_key, &key6,
409 t - vxm->tunnels);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200410 else
411 hash_set (vxm->geneve4_tunnel_by_key, key4.as_u64, t - vxm->tunnels);
412
413 vnet_hw_interface_t *hi;
Ole Troan7fc88cf2020-06-17 22:57:13 +0200414 if (a->l3_mode)
Marco Varleseb598f1d2017-09-19 14:25:28 +0200415 {
Ole Troan7fc88cf2020-06-17 22:57:13 +0200416 u32 t_idx = t - vxm->tunnels;
417 u8 address[6] =
418 { 0xd0, 0x0b, 0xee, 0xd0, (u8) (t_idx >> 8), (u8) t_idx };
419 clib_error_t *error =
420 ethernet_register_interface (vnm, geneve_device_class.index,
421 t_idx,
422 address, &hw_if_index, 0);
423 if (error)
424 {
425 clib_error_report (error);
426 return VNET_API_ERROR_INVALID_REGISTRATION;
427 }
Marco Varleseb598f1d2017-09-19 14:25:28 +0200428 }
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);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200434 }
435
Ole Troan7fc88cf2020-06-17 22:57:13 +0200436 hi = vnet_get_hw_interface (vnm, hw_if_index);
437
John Loe5453d02018-01-23 19:21:34 -0500438 /* Set geneve tunnel output node */
439 u32 encap_index = !is_ip6 ?
440 geneve4_encap_node.index : geneve6_encap_node.index;
441 vnet_set_interface_output_node (vnm, hw_if_index, encap_index);
442
Marco Varleseb598f1d2017-09-19 14:25:28 +0200443 t->hw_if_index = hw_if_index;
444 t->sw_if_index = sw_if_index = hi->sw_if_index;
445
446 vec_validate_init_empty (vxm->tunnel_index_by_sw_if_index, sw_if_index,
447 ~0);
448 vxm->tunnel_index_by_sw_if_index[sw_if_index] = t - vxm->tunnels;
449
450 /* setup l2 input config with l2 feature and bd 0 to drop packet */
451 vec_validate (l2im->configs, sw_if_index);
452 l2im->configs[sw_if_index].feature_bitmap = L2INPUT_FEAT_DROP;
453 l2im->configs[sw_if_index].bd_index = 0;
454
455 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
456 si->flags &= ~VNET_SW_INTERFACE_FLAG_HIDDEN;
457 vnet_sw_interface_set_flags (vnm, sw_if_index,
458 VNET_SW_INTERFACE_FLAG_ADMIN_UP);
459
460 fib_node_init (&t->node, FIB_NODE_TYPE_GENEVE_TUNNEL);
461 fib_prefix_t tun_remote_pfx;
Marco Varleseb598f1d2017-09-19 14:25:28 +0200462 vnet_flood_class_t flood_class = VNET_FLOOD_CLASS_TUNNEL_NORMAL;
463
464 fib_prefix_from_ip46_addr (&t->remote, &tun_remote_pfx);
465 if (!ip46_address_is_multicast (&t->remote))
466 {
467 /* Unicast tunnel -
468 * source the FIB entry for the tunnel's destination
469 * and become a child thereof. The tunnel will then get poked
470 * when the forwarding for the entry updates, and the tunnel can
471 * re-stack accordingly
472 */
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000473 vtep_addr_ref (&vxm->vtep_table, t->encap_fib_index, &t->local);
Neale Ranns1f50bf82019-07-16 15:28:52 +0000474 t->fib_entry_index = fib_entry_track (t->encap_fib_index,
475 &tun_remote_pfx,
476 FIB_NODE_TYPE_GENEVE_TUNNEL,
477 t - vxm->tunnels,
478 &t->sibling_index);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200479 geneve_tunnel_restack_dpo (t);
480 }
481 else
482 {
483 /* Multicast tunnel -
484 * as the same mcast group can be used for mutiple mcast tunnels
485 * with different VNIs, create the output fib adjecency only if
486 * it does not already exist
487 */
488 fib_protocol_t fp = fib_ip_proto (is_ip6);
489
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000490 if (vtep_addr_ref (&vxm->vtep_table,
491 t->encap_fib_index, &t->remote) == 1)
Marco Varleseb598f1d2017-09-19 14:25:28 +0200492 {
493 fib_node_index_t mfei;
494 adj_index_t ai;
495 fib_route_path_t path = {
496 .frp_proto = fib_proto_to_dpo (fp),
497 .frp_addr = zero_addr,
498 .frp_sw_if_index = 0xffffffff,
499 .frp_fib_index = ~0,
Neale Ranns097fa662018-05-01 05:17:55 -0700500 .frp_weight = 1,
Marco Varleseb598f1d2017-09-19 14:25:28 +0200501 .frp_flags = FIB_ROUTE_PATH_LOCAL,
Neale Ranns097fa662018-05-01 05:17:55 -0700502 .frp_mitf_flags = MFIB_ITF_FLAG_FORWARD,
Marco Varleseb598f1d2017-09-19 14:25:28 +0200503 };
504 const mfib_prefix_t mpfx = {
505 .fp_proto = fp,
506 .fp_len = (is_ip6 ? 128 : 32),
507 .fp_grp_addr = tun_remote_pfx.fp_addr,
508 };
509
510 /*
511 * Setup the (*,G) to receive traffic on the mcast group
512 * - the forwarding interface is for-us
513 * - the accepting interface is that from the API
514 */
515 mfib_table_entry_path_update (t->encap_fib_index,
Neale Ranns097fa662018-05-01 05:17:55 -0700516 &mpfx, MFIB_SOURCE_GENEVE, &path);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200517
518 path.frp_sw_if_index = a->mcast_sw_if_index;
519 path.frp_flags = FIB_ROUTE_PATH_FLAG_NONE;
Neale Ranns097fa662018-05-01 05:17:55 -0700520 path.frp_mitf_flags = MFIB_ITF_FLAG_ACCEPT;
Marco Varleseb598f1d2017-09-19 14:25:28 +0200521 mfei = mfib_table_entry_path_update (t->encap_fib_index,
522 &mpfx,
Neale Ranns097fa662018-05-01 05:17:55 -0700523 MFIB_SOURCE_GENEVE, &path);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200524
525 /*
526 * Create the mcast adjacency to send traffic to the group
527 */
528 ai = adj_mcast_add_or_lock (fp,
529 fib_proto_to_link (fp),
530 a->mcast_sw_if_index);
531
532 /*
533 * create a new end-point
534 */
535 mcast_shared_add (&t->remote, mfei, ai);
536 }
537
538 dpo_id_t dpo = DPO_INVALID;
539 mcast_shared_t ep = mcast_shared_get (&t->remote);
540
541 /* Stack shared mcast remote mac addr rewrite on encap */
542 dpo_set (&dpo, DPO_ADJACENCY_MCAST,
543 fib_proto_to_dpo (fp), ep.mcast_adj_index);
544
545 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
546 dpo_reset (&dpo);
547 flood_class = VNET_FLOOD_CLASS_TUNNEL_MASTER;
548 }
549
Marco Varleseb598f1d2017-09-19 14:25:28 +0200550 vnet_get_sw_interface (vnet_get_main (), sw_if_index)->flood_class =
551 flood_class;
552 }
553 else
554 {
555 /* deleting a tunnel: tunnel must exist */
556 if (!p)
557 return VNET_API_ERROR_NO_SUCH_ENTRY;
558
559 t = pool_elt_at_index (vxm->tunnels, p[0]);
560
561 sw_if_index = t->sw_if_index;
562 vnet_sw_interface_set_flags (vnm, t->sw_if_index, 0 /* down */ );
563 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, t->sw_if_index);
564 si->flags |= VNET_SW_INTERFACE_FLAG_HIDDEN;
565
566 /* make sure tunnel is removed from l2 bd or xconnect */
Neale Rannsb4743802018-09-05 09:13:57 -0700567 set_int_l2_mode (vxm->vlib_main, vnm, MODE_L3, t->sw_if_index, 0,
568 L2_BD_PORT_TYPE_NORMAL, 0, 0);
Ole Troan7fc88cf2020-06-17 22:57:13 +0200569
570 if (t->l3_mode)
571 ethernet_delete_interface (vnm, t->hw_if_index);
572 else
573 vnet_delete_hw_interface (vnm, t->hw_if_index);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200574
575 vxm->tunnel_index_by_sw_if_index[t->sw_if_index] = ~0;
576
577 if (!is_ip6)
578 hash_unset (vxm->geneve4_tunnel_by_key, key4.as_u64);
579 else
John Loe6bfeab2018-01-04 16:39:42 -0500580 hash_unset_mem_free (&vxm->geneve6_tunnel_by_key, &key6);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200581
582 if (!ip46_address_is_multicast (&t->remote))
583 {
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000584 vtep_addr_unref (&vxm->vtep_table, t->encap_fib_index, &t->local);
Neale Ranns1f50bf82019-07-16 15:28:52 +0000585 fib_entry_untrack (t->fib_entry_index, t->sibling_index);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200586 }
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000587 else if (vtep_addr_unref (&vxm->vtep_table,
588 t->encap_fib_index, &t->remote) == 0)
Marco Varleseb598f1d2017-09-19 14:25:28 +0200589 {
590 mcast_shared_remove (&t->remote);
591 }
592
593 fib_node_deinit (&t->node);
594 vec_free (t->rewrite);
595 pool_put (vxm->tunnels, t);
596 }
597
598 if (sw_if_indexp)
599 *sw_if_indexp = sw_if_index;
600
Jakub Grajciardf3ca232019-06-04 13:16:42 +0200601 if (a->is_add)
602 {
603 /* register udp ports */
604 if (!is_ip6 && !udp_is_valid_dst_port (UDP_DST_PORT_geneve, 1))
605 udp_register_dst_port (vxm->vlib_main, UDP_DST_PORT_geneve,
606 geneve4_input_node.index, 1);
607 if (is_ip6 && !udp_is_valid_dst_port (UDP_DST_PORT_geneve6, 0))
608 udp_register_dst_port (vxm->vlib_main, UDP_DST_PORT_geneve6,
609 geneve6_input_node.index, 0);
610 }
611
Marco Varleseb598f1d2017-09-19 14:25:28 +0200612 return 0;
613}
614
615static uword
616get_decap_next_for_node (u32 node_index, u32 ipv4_set)
617{
618 geneve_main_t *vxm = &geneve_main;
619 vlib_main_t *vm = vxm->vlib_main;
620 uword input_node = (ipv4_set) ? geneve4_input_node.index :
621 geneve6_input_node.index;
622
623 return vlib_node_add_next (vm, input_node, node_index);
624}
625
626static uword
627unformat_decap_next (unformat_input_t * input, va_list * args)
628{
629 u32 *result = va_arg (*args, u32 *);
630 u32 ipv4_set = va_arg (*args, int);
631 geneve_main_t *vxm = &geneve_main;
632 vlib_main_t *vm = vxm->vlib_main;
633 u32 node_index;
634 u32 tmp;
635
636 if (unformat (input, "l2"))
637 *result = GENEVE_INPUT_NEXT_L2_INPUT;
638 else if (unformat (input, "node %U", unformat_vlib_node, vm, &node_index))
639 *result = get_decap_next_for_node (node_index, ipv4_set);
640 else if (unformat (input, "%d", &tmp))
641 *result = tmp;
642 else
643 return 0;
644 return 1;
645}
646
647static clib_error_t *
648geneve_add_del_tunnel_command_fn (vlib_main_t * vm,
649 unformat_input_t * input,
650 vlib_cli_command_t * cmd)
651{
652 unformat_input_t _line_input, *line_input = &_line_input;
653 ip46_address_t local, remote;
654 u8 is_add = 1;
655 u8 local_set = 0;
656 u8 remote_set = 0;
657 u8 grp_set = 0;
658 u8 ipv4_set = 0;
659 u8 ipv6_set = 0;
Ole Troan7fc88cf2020-06-17 22:57:13 +0200660 u8 l3_mode = 0;
Marco Varleseb598f1d2017-09-19 14:25:28 +0200661 u32 encap_fib_index = 0;
662 u32 mcast_sw_if_index = ~0;
663 u32 decap_next_index = GENEVE_INPUT_NEXT_L2_INPUT;
664 u32 vni = 0;
665 u32 tmp;
666 int rv;
667 vnet_geneve_add_del_tunnel_args_t _a, *a = &_a;
668 u32 tunnel_sw_if_index;
669 clib_error_t *error = NULL;
670
671 /* Cant "universally zero init" (={0}) due to GCC bug 53119 */
Dave Barachb7b92992018-10-17 10:38:51 -0400672 clib_memset (&local, 0, sizeof local);
673 clib_memset (&remote, 0, sizeof remote);
Marco Varleseb598f1d2017-09-19 14:25:28 +0200674
675 /* Get a line of input. */
676 if (!unformat_user (input, unformat_line_input, line_input))
677 return 0;
678
679 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
680 {
681 if (unformat (line_input, "del"))
682 {
683 is_add = 0;
684 }
685 else if (unformat (line_input, "local %U",
686 unformat_ip4_address, &local.ip4))
687 {
688 local_set = 1;
689 ipv4_set = 1;
690 }
691 else if (unformat (line_input, "remote %U",
692 unformat_ip4_address, &remote.ip4))
693 {
694 remote_set = 1;
695 ipv4_set = 1;
696 }
697 else if (unformat (line_input, "local %U",
698 unformat_ip6_address, &local.ip6))
699 {
700 local_set = 1;
701 ipv6_set = 1;
702 }
703 else if (unformat (line_input, "remote %U",
704 unformat_ip6_address, &remote.ip6))
705 {
706 remote_set = 1;
707 ipv6_set = 1;
708 }
709 else if (unformat (line_input, "group %U %U",
710 unformat_ip4_address, &remote.ip4,
711 unformat_vnet_sw_interface,
712 vnet_get_main (), &mcast_sw_if_index))
713 {
714 grp_set = remote_set = 1;
715 ipv4_set = 1;
716 }
717 else if (unformat (line_input, "group %U %U",
718 unformat_ip6_address, &remote.ip6,
719 unformat_vnet_sw_interface,
720 vnet_get_main (), &mcast_sw_if_index))
721 {
722 grp_set = remote_set = 1;
723 ipv6_set = 1;
724 }
725 else if (unformat (line_input, "encap-vrf-id %d", &tmp))
726 {
727 encap_fib_index = fib_table_find (fib_ip_proto (ipv6_set), tmp);
728 if (encap_fib_index == ~0)
729 {
730 error =
731 clib_error_return (0, "nonexistent encap-vrf-id %d", tmp);
732 goto done;
733 }
734 }
735 else if (unformat (line_input, "decap-next %U", unformat_decap_next,
736 &decap_next_index, ipv4_set))
737 ;
738 else if (unformat (line_input, "vni %d", &vni))
739 {
740 if (vni >> 24)
741 {
742 error = clib_error_return (0, "vni %d out of range", vni);
743 goto done;
744 }
745 }
Ole Troan7fc88cf2020-06-17 22:57:13 +0200746 else if (unformat (line_input, "l3-mode"))
747 {
748 l3_mode = 1;
749 }
Marco Varleseb598f1d2017-09-19 14:25:28 +0200750 else
751 {
752 error = clib_error_return (0, "parse error: '%U'",
753 format_unformat_error, line_input);
754 goto done;
755 }
756 }
757
758 if (local_set == 0)
759 {
760 error = clib_error_return (0, "tunnel local address not specified");
761 goto done;
762 }
763
764 if (remote_set == 0)
765 {
766 error = clib_error_return (0, "tunnel remote address not specified");
767 goto done;
768 }
769
770 if (grp_set && !ip46_address_is_multicast (&remote))
771 {
772 error = clib_error_return (0, "tunnel group address not multicast");
773 goto done;
774 }
775
776 if (grp_set == 0 && ip46_address_is_multicast (&remote))
777 {
778 error = clib_error_return (0, "remote address must be unicast");
779 goto done;
780 }
781
782 if (grp_set && mcast_sw_if_index == ~0)
783 {
784 error = clib_error_return (0, "tunnel nonexistent multicast device");
785 goto done;
786 }
787
788 if (ipv4_set && ipv6_set)
789 {
790 error = clib_error_return (0, "both IPv4 and IPv6 addresses specified");
791 goto done;
792 }
793
794 if (ip46_address_cmp (&local, &remote) == 0)
795 {
796 error =
797 clib_error_return (0, "local and remote addresses are identical");
798 goto done;
799 }
800
801 if (decap_next_index == ~0)
802 {
803 error = clib_error_return (0, "next node not found");
804 goto done;
805 }
806
807 if (vni == 0)
808 {
809 error = clib_error_return (0, "vni not specified");
810 goto done;
811 }
812
Dave Barachb7b92992018-10-17 10:38:51 -0400813 clib_memset (a, 0, sizeof (*a));
Marco Varleseb598f1d2017-09-19 14:25:28 +0200814
815 a->is_add = is_add;
816 a->is_ip6 = ipv6_set;
817
818#define _(x) a->x = x;
819 foreach_copy_field;
820#undef _
821
822 rv = vnet_geneve_add_del_tunnel (a, &tunnel_sw_if_index);
823
824 switch (rv)
825 {
826 case 0:
827 if (is_add)
828 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
829 vnet_get_main (), tunnel_sw_if_index);
830 break;
831
832 case VNET_API_ERROR_TUNNEL_EXIST:
833 error = clib_error_return (0, "tunnel already exists...");
834 goto done;
835
836 case VNET_API_ERROR_NO_SUCH_ENTRY:
837 error = clib_error_return (0, "tunnel does not exist...");
838 goto done;
839
840 default:
841 error = clib_error_return
842 (0, "vnet_geneve_add_del_tunnel returned %d", rv);
843 goto done;
844 }
845
846done:
847 unformat_free (line_input);
848
849 return error;
850}
851
852/*?
853 * Add or delete a GENEVE Tunnel.
854 *
855 * GENEVE provides the features needed to allow L2 bridge domains (BDs)
856 * to span multiple servers. This is done by building an L2 overlay on
857 * top of an L3 network underlay using GENEVE tunnels.
858 *
859 * This makes it possible for servers to be co-located in the same data
860 * center or be separated geographically as long as they are reachable
861 * through the underlay L3 network.
862 *
863 * You can refer to this kind of L2 overlay bridge domain as a GENEVE
864 * segment.
865 *
866 * @cliexpar
867 * Example of how to create a GENEVE Tunnel:
868 * @cliexcmd{create geneve tunnel local 10.0.3.1 remote 10.0.3.3 vni 13 encap-vrf-id 7}
869 * Example of how to delete a GENEVE Tunnel:
870 * @cliexcmd{create geneve tunnel local 10.0.3.1 remote 10.0.3.3 vni 13 del}
871 ?*/
872/* *INDENT-OFF* */
873VLIB_CLI_COMMAND (create_geneve_tunnel_command, static) = {
874 .path = "create geneve tunnel",
875 .short_help =
876 "create geneve tunnel local <local-vtep-addr>"
877 " {remote <remote-vtep-addr>|group <mcast-vtep-addr> <intf-name>} vni <nn>"
Ole Troan7fc88cf2020-06-17 22:57:13 +0200878 " [encap-vrf-id <nn>] [decap-next [l2|node <name>]] [l3-mode] [del]",
Marco Varleseb598f1d2017-09-19 14:25:28 +0200879 .function = geneve_add_del_tunnel_command_fn,
880};
881/* *INDENT-ON* */
882
883static clib_error_t *
884show_geneve_tunnel_command_fn (vlib_main_t * vm,
885 unformat_input_t * input,
886 vlib_cli_command_t * cmd)
887{
888 geneve_main_t *vxm = &geneve_main;
889 geneve_tunnel_t *t;
890
891 if (pool_elts (vxm->tunnels) == 0)
892 vlib_cli_output (vm, "No geneve tunnels configured...");
893
894 pool_foreach (t, vxm->tunnels, (
895 {
896 vlib_cli_output (vm, "%U",
897 format_geneve_tunnel, t);
898 }
899 ));
900
901 return 0;
902}
903
904/*?
905 * Display all the GENEVE Tunnel entries.
906 *
907 * @cliexpar
908 * Example of how to display the GENEVE Tunnel entries:
909 * @cliexstart{show geneve tunnel}
910 * [0] local 10.0.3.1 remote 10.0.3.3 vni 13 encap_fib_index 0 sw_if_index 5 decap_next l2
911 * @cliexend
912 ?*/
913/* *INDENT-OFF* */
914VLIB_CLI_COMMAND (show_geneve_tunnel_command, static) = {
915 .path = "show geneve tunnel",
916 .short_help = "show geneve tunnel",
917 .function = show_geneve_tunnel_command_fn,
918};
919/* *INDENT-ON* */
920
921
922void
923vnet_int_geneve_bypass_mode (u32 sw_if_index, u8 is_ip6, u8 is_enable)
924{
925 if (is_ip6)
926 vnet_feature_enable_disable ("ip6-unicast", "ip6-geneve-bypass",
927 sw_if_index, is_enable, 0, 0);
928 else
929 vnet_feature_enable_disable ("ip4-unicast", "ip4-geneve-bypass",
930 sw_if_index, is_enable, 0, 0);
931}
932
933
934static clib_error_t *
935set_ip_geneve_bypass (u32 is_ip6,
936 unformat_input_t * input, vlib_cli_command_t * cmd)
937{
938 unformat_input_t _line_input, *line_input = &_line_input;
939 vnet_main_t *vnm = vnet_get_main ();
940 clib_error_t *error = 0;
941 u32 sw_if_index, is_enable;
942
943 sw_if_index = ~0;
944 is_enable = 1;
945
946 if (!unformat_user (input, unformat_line_input, line_input))
947 return 0;
948
949 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
950 {
951 if (unformat_user
952 (line_input, unformat_vnet_sw_interface, vnm, &sw_if_index))
953 ;
954 else if (unformat (line_input, "del"))
955 is_enable = 0;
956 else
957 {
958 error = unformat_parse_error (line_input);
959 goto done;
960 }
961 }
962
963 if (~0 == sw_if_index)
964 {
965 error = clib_error_return (0, "unknown interface `%U'",
966 format_unformat_error, line_input);
967 goto done;
968 }
969
970 vnet_int_geneve_bypass_mode (sw_if_index, is_ip6, is_enable);
971
972done:
973 unformat_free (line_input);
974
975 return error;
976}
977
978static clib_error_t *
979set_ip4_geneve_bypass (vlib_main_t * vm,
980 unformat_input_t * input, vlib_cli_command_t * cmd)
981{
982 return set_ip_geneve_bypass (0, input, cmd);
983}
984
985/*?
986 * This command adds the 'ip4-geneve-bypass' graph node for a given interface.
987 * By adding the IPv4 geneve-bypass graph node to an interface, the node checks
988 * for and validate input geneve packet and bypass ip4-lookup, ip4-local,
989 * ip4-udp-lookup nodes to speedup geneve packet forwarding. This node will
990 * cause extra overhead to for non-geneve packets which is kept at a minimum.
991 *
992 * @cliexpar
993 * @parblock
994 * Example of graph node before ip4-geneve-bypass is enabled:
995 * @cliexstart{show vlib graph ip4-geneve-bypass}
996 * Name Next Previous
997 * ip4-geneve-bypass error-drop [0]
998 * geneve4-input [1]
999 * ip4-lookup [2]
1000 * @cliexend
1001 *
1002 * Example of how to enable ip4-geneve-bypass on an interface:
1003 * @cliexcmd{set interface ip geneve-bypass GigabitEthernet2/0/0}
1004 *
1005 * Example of graph node after ip4-geneve-bypass is enabled:
1006 * @cliexstart{show vlib graph ip4-geneve-bypass}
1007 * Name Next Previous
1008 * ip4-geneve-bypass error-drop [0] ip4-input
1009 * geneve4-input [1] ip4-input-no-checksum
1010 * ip4-lookup [2]
1011 * @cliexend
1012 *
1013 * Example of how to display the feature enabed on an interface:
1014 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1015 * IP feature paths configured on GigabitEthernet2/0/0...
1016 * ...
1017 * ipv4 unicast:
1018 * ip4-geneve-bypass
1019 * ip4-lookup
1020 * ...
1021 * @cliexend
1022 *
1023 * Example of how to disable ip4-geneve-bypass on an interface:
1024 * @cliexcmd{set interface ip geneve-bypass GigabitEthernet2/0/0 del}
1025 * @endparblock
1026?*/
1027/* *INDENT-OFF* */
1028VLIB_CLI_COMMAND (set_interface_ip_geneve_bypass_command, static) = {
1029 .path = "set interface ip geneve-bypass",
1030 .function = set_ip4_geneve_bypass,
1031 .short_help = "set interface ip geneve-bypass <interface> [del]",
1032};
1033/* *INDENT-ON* */
1034
1035static clib_error_t *
1036set_ip6_geneve_bypass (vlib_main_t * vm,
1037 unformat_input_t * input, vlib_cli_command_t * cmd)
1038{
1039 return set_ip_geneve_bypass (1, input, cmd);
1040}
1041
1042/*?
1043 * This command adds the 'ip6-geneve-bypass' graph node for a given interface.
1044 * By adding the IPv6 geneve-bypass graph node to an interface, the node checks
1045 * for and validate input geneve packet and bypass ip6-lookup, ip6-local,
1046 * ip6-udp-lookup nodes to speedup geneve packet forwarding. This node will
1047 * cause extra overhead to for non-geneve packets which is kept at a minimum.
1048 *
1049 * @cliexpar
1050 * @parblock
1051 * Example of graph node before ip6-geneve-bypass is enabled:
1052 * @cliexstart{show vlib graph ip6-geneve-bypass}
1053 * Name Next Previous
1054 * ip6-geneve-bypass error-drop [0]
1055 * geneve6-input [1]
1056 * ip6-lookup [2]
1057 * @cliexend
1058 *
1059 * Example of how to enable ip6-geneve-bypass on an interface:
1060 * @cliexcmd{set interface ip6 geneve-bypass GigabitEthernet2/0/0}
1061 *
1062 * Example of graph node after ip6-geneve-bypass is enabled:
1063 * @cliexstart{show vlib graph ip6-geneve-bypass}
1064 * Name Next Previous
1065 * ip6-geneve-bypass error-drop [0] ip6-input
1066 * geneve6-input [1] ip4-input-no-checksum
1067 * ip6-lookup [2]
1068 * @cliexend
1069 *
1070 * Example of how to display the feature enabed on an interface:
1071 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1072 * IP feature paths configured on GigabitEthernet2/0/0...
1073 * ...
1074 * ipv6 unicast:
1075 * ip6-geneve-bypass
1076 * ip6-lookup
1077 * ...
1078 * @cliexend
1079 *
1080 * Example of how to disable ip6-geneve-bypass on an interface:
1081 * @cliexcmd{set interface ip6 geneve-bypass GigabitEthernet2/0/0 del}
1082 * @endparblock
1083?*/
1084/* *INDENT-OFF* */
1085VLIB_CLI_COMMAND (set_interface_ip6_geneve_bypass_command, static) = {
1086 .path = "set interface ip6 geneve-bypass",
1087 .function = set_ip6_geneve_bypass,
Paul Vinciguerra5fb22782019-11-07 17:20:48 -05001088 .short_help = "set interface ip6 geneve-bypass <interface> [del]",
Marco Varleseb598f1d2017-09-19 14:25:28 +02001089};
1090/* *INDENT-ON* */
1091
1092clib_error_t *
1093geneve_init (vlib_main_t * vm)
1094{
1095 geneve_main_t *vxm = &geneve_main;
1096
1097 vxm->vnet_main = vnet_get_main ();
1098 vxm->vlib_main = vm;
1099
1100 /* initialize the ip6 hash */
1101 vxm->geneve6_tunnel_by_key = hash_create_mem (0,
1102 sizeof (geneve6_tunnel_key_t),
1103 sizeof (uword));
Nick Zavaritsky27518c22020-02-27 15:54:58 +00001104 vxm->vtep_table = vtep_table_create ();
Marco Varleseb598f1d2017-09-19 14:25:28 +02001105 vxm->mcast_shared = hash_create_mem (0,
1106 sizeof (ip46_address_t),
1107 sizeof (mcast_shared_t));
1108
Marco Varleseb598f1d2017-09-19 14:25:28 +02001109 fib_node_register_type (FIB_NODE_TYPE_GENEVE_TUNNEL, &geneve_vft);
1110
1111 return 0;
1112}
1113
1114VLIB_INIT_FUNCTION (geneve_init);
1115
1116/*
1117 * fd.io coding-style-patch-verification: ON
1118 *
1119 * Local Variables:
1120 * eval: (c-set-style "gnu")
1121 * End:
1122 */