blob: 37cfd7281211b205272362c6fab4b5842c58c52c [file] [log] [blame]
Mohsin Kazmi61b94c62018-08-20 18:32:39 +02001/*
2 * Copyright (c) 2018 Cisco and/or its affiliates.
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/vxlan-gbp/vxlan_gbp.h>
16#include <vnet/ip/format.h>
Mohammed Hawari45723b82021-02-05 15:40:00 +010017#include <vnet/ip/punt.h>
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020018#include <vnet/fib/fib_entry.h>
19#include <vnet/fib/fib_table.h>
Neale Ranns1f50bf82019-07-16 15:28:52 +000020#include <vnet/fib/fib_entry_track.h>
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020021#include <vnet/mfib/mfib_table.h>
22#include <vnet/adj/adj_mcast.h>
23#include <vnet/adj/rewrite.h>
24#include <vnet/interface.h>
25#include <vlib/vlib.h>
26
27/**
28 * @file
29 * @brief VXLAN GBP.
30 *
31 * VXLAN GBP provides the features of vxlan and carry group policy id.
32 */
Neale Ranns76b56492018-09-28 15:16:14 +000033static vlib_punt_hdl_t punt_hdl;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020034
35vxlan_gbp_main_t vxlan_gbp_main;
36
Neale Ranns93cc3ee2018-10-10 07:22:51 -070037u8 *
38format_vxlan_gbp_tunnel_mode (u8 * s, va_list * args)
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020039{
Neale Ranns93cc3ee2018-10-10 07:22:51 -070040 vxlan_gbp_tunnel_mode_t mode = va_arg (*args, vxlan_gbp_tunnel_mode_t);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020041
Neale Ranns93cc3ee2018-10-10 07:22:51 -070042 switch (mode)
43 {
44 case VXLAN_GBP_TUNNEL_MODE_L2:
45 s = format (s, "L2");
46 break;
47 case VXLAN_GBP_TUNNEL_MODE_L3:
48 s = format (s, "L3");
49 break;
50 }
51 return (s);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020052}
53
54u8 *
55format_vxlan_gbp_tunnel (u8 * s, va_list * args)
56{
57 vxlan_gbp_tunnel_t *t = va_arg (*args, vxlan_gbp_tunnel_t *);
58
59 s = format (s,
60 "[%d] instance %d src %U dst %U vni %d fib-idx %d"
Neale Ranns93cc3ee2018-10-10 07:22:51 -070061 " sw-if-idx %d mode %U ",
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020062 t->dev_instance, t->user_instance,
63 format_ip46_address, &t->src, IP46_TYPE_ANY,
64 format_ip46_address, &t->dst, IP46_TYPE_ANY,
Neale Ranns93cc3ee2018-10-10 07:22:51 -070065 t->vni, t->encap_fib_index, t->sw_if_index,
66 format_vxlan_gbp_tunnel_mode, t->mode);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020067
68 s = format (s, "encap-dpo-idx %d ", t->next_dpo.dpoi_index);
69
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020070 if (PREDICT_FALSE (ip46_address_is_multicast (&t->dst)))
71 s = format (s, "mcast-sw-if-idx %d ", t->mcast_sw_if_index);
72
73 return s;
74}
75
76static u8 *
77format_vxlan_gbp_name (u8 * s, va_list * args)
78{
79 u32 dev_instance = va_arg (*args, u32);
80 vxlan_gbp_main_t *vxm = &vxlan_gbp_main;
81 vxlan_gbp_tunnel_t *t;
82
83 if (dev_instance == ~0)
84 return format (s, "<cached-unused>");
85
86 if (dev_instance >= vec_len (vxm->tunnels))
87 return format (s, "<improperly-referenced>");
88
89 t = pool_elt_at_index (vxm->tunnels, dev_instance);
90
91 return format (s, "vxlan_gbp_tunnel%d", t->user_instance);
92}
93
94static clib_error_t *
95vxlan_gbp_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
96 u32 flags)
97{
98 u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
99 VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
100 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
101
102 return /* no error */ 0;
103}
104
105/* *INDENT-OFF* */
106VNET_DEVICE_CLASS (vxlan_gbp_device_class, static) = {
107 .name = "VXLAN-GBP",
108 .format_device_name = format_vxlan_gbp_name,
109 .format_tx_trace = format_vxlan_gbp_encap_trace,
110 .admin_up_down_function = vxlan_gbp_interface_admin_up_down,
111};
112/* *INDENT-ON* */
113
114static u8 *
115format_vxlan_gbp_header_with_length (u8 * s, va_list * args)
116{
117 u32 dev_instance = va_arg (*args, u32);
118 s = format (s, "unimplemented dev %u", dev_instance);
119 return s;
120}
121
122/* *INDENT-OFF* */
123VNET_HW_INTERFACE_CLASS (vxlan_gbp_hw_class) = {
124 .name = "VXLAN-GBP",
125 .format_header = format_vxlan_gbp_header_with_length,
126 .build_rewrite = default_build_rewrite,
127};
128/* *INDENT-ON* */
129
130static void
131vxlan_gbp_tunnel_restack_dpo (vxlan_gbp_tunnel_t * t)
132{
133 u8 is_ip4 = ip46_address_is_ip4 (&t->dst);
134 dpo_id_t dpo = DPO_INVALID;
135 fib_forward_chain_type_t forw_type = is_ip4 ?
136 FIB_FORW_CHAIN_TYPE_UNICAST_IP4 : FIB_FORW_CHAIN_TYPE_UNICAST_IP6;
137
138 fib_entry_contribute_forwarding (t->fib_entry_index, forw_type, &dpo);
139
140 /* vxlan_gbp uses the payload hash as the udp source port
141 * hence the packet's hash is unknown
142 * skip single bucket load balance dpo's */
143 while (DPO_LOAD_BALANCE == dpo.dpoi_type)
144 {
145 load_balance_t *lb = load_balance_get (dpo.dpoi_index);
146 if (lb->lb_n_buckets > 1)
147 break;
148
149 dpo_copy (&dpo, load_balance_get_bucket_i (lb, 0));
150 }
151
152 u32 encap_index = is_ip4 ?
153 vxlan4_gbp_encap_node.index : vxlan6_gbp_encap_node.index;
154 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
155 dpo_reset (&dpo);
156}
157
158static vxlan_gbp_tunnel_t *
159vxlan_gbp_tunnel_from_fib_node (fib_node_t * node)
160{
161 ASSERT (FIB_NODE_TYPE_VXLAN_GBP_TUNNEL == node->fn_type);
162 return ((vxlan_gbp_tunnel_t *) (((char *) node) -
163 STRUCT_OFFSET_OF (vxlan_gbp_tunnel_t,
164 node)));
165}
166
167/**
168 * Function definition to backwalk a FIB node -
169 * Here we will restack the new dpo of VXLAN DIP to encap node.
170 */
171static fib_node_back_walk_rc_t
172vxlan_gbp_tunnel_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
173{
174 vxlan_gbp_tunnel_restack_dpo (vxlan_gbp_tunnel_from_fib_node (node));
175 return (FIB_NODE_BACK_WALK_CONTINUE);
176}
177
178/**
179 * Function definition to get a FIB node from its index
180 */
181static fib_node_t *
182vxlan_gbp_tunnel_fib_node_get (fib_node_index_t index)
183{
184 vxlan_gbp_tunnel_t *t;
185 vxlan_gbp_main_t *vxm = &vxlan_gbp_main;
186
187 t = pool_elt_at_index (vxm->tunnels, index);
188
189 return (&t->node);
190}
191
192/**
193 * Function definition to inform the FIB node that its last lock has gone.
194 */
195static void
196vxlan_gbp_tunnel_last_lock_gone (fib_node_t * node)
197{
198 /*
199 * The VXLAN GBP tunnel is a root of the graph. As such
200 * it never has children and thus is never locked.
201 */
202 ASSERT (0);
203}
204
205/*
206 * Virtual function table registered by VXLAN GBP tunnels
207 * for participation in the FIB object graph.
208 */
209const static fib_node_vft_t vxlan_gbp_vft = {
210 .fnv_get = vxlan_gbp_tunnel_fib_node_get,
211 .fnv_last_lock = vxlan_gbp_tunnel_last_lock_gone,
212 .fnv_back_walk = vxlan_gbp_tunnel_back_walk,
213};
214
215
216#define foreach_copy_field \
217_(vni) \
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700218_(mode) \
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200219_(mcast_sw_if_index) \
220_(encap_fib_index) \
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200221_(src) \
222_(dst)
223
224static void
225vxlan_gbp_rewrite (vxlan_gbp_tunnel_t * t, bool is_ip6)
226{
227 union
228 {
229 ip4_vxlan_gbp_header_t h4;
230 ip6_vxlan_gbp_header_t h6;
231 } h;
232 int len = is_ip6 ? sizeof h.h6 : sizeof h.h4;
233
234 udp_header_t *udp;
235 vxlan_gbp_header_t *vxlan_gbp;
236 /* Fixed portion of the (outer) ip header */
237
Dave Barachb7b92992018-10-17 10:38:51 -0400238 clib_memset (&h, 0, sizeof (h));
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200239 if (!is_ip6)
240 {
241 ip4_header_t *ip = &h.h4.ip4;
242 udp = &h.h4.udp, vxlan_gbp = &h.h4.vxlan_gbp;
243 ip->ip_version_and_header_length = 0x45;
244 ip->ttl = 254;
245 ip->protocol = IP_PROTOCOL_UDP;
246
247 ip->src_address = t->src.ip4;
248 ip->dst_address = t->dst.ip4;
249
250 /* we fix up the ip4 header length and checksum after-the-fact */
251 ip->checksum = ip4_header_checksum (ip);
252 }
253 else
254 {
255 ip6_header_t *ip = &h.h6.ip6;
256 udp = &h.h6.udp, vxlan_gbp = &h.h6.vxlan_gbp;
257 ip->ip_version_traffic_class_and_flow_label =
258 clib_host_to_net_u32 (6 << 28);
259 ip->hop_limit = 255;
260 ip->protocol = IP_PROTOCOL_UDP;
261
262 ip->src_address = t->src.ip6;
263 ip->dst_address = t->dst.ip6;
264 }
265
266 /* UDP header, randomize src port on something, maybe? */
267 udp->src_port = clib_host_to_net_u16 (47789);
268 udp->dst_port = clib_host_to_net_u16 (UDP_DST_PORT_vxlan_gbp);
269
270 /* VXLAN header */
271 vxlan_gbp_set_header (vxlan_gbp, t->vni);
272 vnet_rewrite_set_data (*t, &h, len);
273}
274
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200275static uword
276vtep_addr_ref (ip46_address_t * ip)
277{
278 uword *vtep = ip46_address_is_ip4 (ip) ?
279 hash_get (vxlan_gbp_main.vtep4, ip->ip4.as_u32) :
280 hash_get_mem (vxlan_gbp_main.vtep6, &ip->ip6);
281 if (vtep)
282 return ++(*vtep);
283 ip46_address_is_ip4 (ip) ?
284 hash_set (vxlan_gbp_main.vtep4, ip->ip4.as_u32, 1) :
285 hash_set_mem_alloc (&vxlan_gbp_main.vtep6, &ip->ip6, 1);
286 return 1;
287}
288
289static uword
290vtep_addr_unref (ip46_address_t * ip)
291{
292 uword *vtep = ip46_address_is_ip4 (ip) ?
293 hash_get (vxlan_gbp_main.vtep4, ip->ip4.as_u32) :
294 hash_get_mem (vxlan_gbp_main.vtep6, &ip->ip6);
Dave Barach47d41ad2020-02-17 09:13:26 -0500295 ALWAYS_ASSERT (vtep);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200296 if (--(*vtep) != 0)
297 return *vtep;
298 ip46_address_is_ip4 (ip) ?
299 hash_unset (vxlan_gbp_main.vtep4, ip->ip4.as_u32) :
300 hash_unset_mem_free (&vxlan_gbp_main.vtep6, &ip->ip6);
301 return 0;
302}
303
304/* *INDENT-OFF* */
305typedef CLIB_PACKED(union
306{
307 struct
308 {
309 fib_node_index_t mfib_entry_index;
310 adj_index_t mcast_adj_index;
311 };
312 u64 as_u64;
313}) mcast_shared_t;
314/* *INDENT-ON* */
315
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 (vxlan_gbp_main.mcast_shared, ip);
Dave Barachffd15462020-02-18 10:12:23 -0500321 ALWAYS_ASSERT (p);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200322 mcast_shared_t ret = {.as_u64 = *p };
323 return ret;
324}
325
326static inline void
327mcast_shared_add (ip46_address_t * dst, fib_node_index_t mfei, adj_index_t ai)
328{
329 mcast_shared_t new_ep = {
330 .mcast_adj_index = ai,
331 .mfib_entry_index = mfei,
332 };
333
334 hash_set_mem_alloc (&vxlan_gbp_main.mcast_shared, dst, new_ep.as_u64);
335}
336
337static inline void
338mcast_shared_remove (ip46_address_t * dst)
339{
340 mcast_shared_t ep = mcast_shared_get (dst);
341
342 adj_unlock (ep.mcast_adj_index);
343 mfib_table_entry_delete_index (ep.mfib_entry_index, MFIB_SOURCE_VXLAN_GBP);
344
345 hash_unset_mem_free (&vxlan_gbp_main.mcast_shared, dst);
346}
347
Mohsin Kazmif208b022018-10-24 12:17:50 +0200348inline void
349vxlan_gbp_register_udp_ports (void)
350{
351 vxlan_gbp_main_t *vxm = &vxlan_gbp_main;
352
353 if (vxm->udp_ports_registered == 0)
354 {
355 udp_register_dst_port (vxm->vlib_main, UDP_DST_PORT_vxlan_gbp,
356 vxlan4_gbp_input_node.index, /* is_ip4 */ 1);
357 udp_register_dst_port (vxm->vlib_main, UDP_DST_PORT_vxlan6_gbp,
358 vxlan6_gbp_input_node.index, /* is_ip4 */ 0);
359 }
360 /*
361 * Counts the number of vxlan_gbp tunnels
362 */
363 vxm->udp_ports_registered += 1;
364}
365
366inline void
367vxlan_gbp_unregister_udp_ports (void)
368{
369 vxlan_gbp_main_t *vxm = &vxlan_gbp_main;
370
371 ASSERT (vxm->udp_ports_registered != 0);
372
373 if (vxm->udp_ports_registered == 1)
374 {
375 udp_unregister_dst_port (vxm->vlib_main, UDP_DST_PORT_vxlan_gbp,
376 /* is_ip4 */ 1);
377 udp_unregister_dst_port (vxm->vlib_main, UDP_DST_PORT_vxlan6_gbp,
378 /* is_ip4 */ 0);
379 }
380
381 vxm->udp_ports_registered -= 1;
382}
383
Neale Ranns79a05f52018-09-11 07:39:43 -0700384int vnet_vxlan_gbp_tunnel_add_del
385 (vnet_vxlan_gbp_tunnel_add_del_args_t * a, u32 * sw_if_indexp)
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200386{
387 vxlan_gbp_main_t *vxm = &vxlan_gbp_main;
388 vxlan_gbp_tunnel_t *t = 0;
389 vnet_main_t *vnm = vxm->vnet_main;
390 u64 *p;
391 u32 sw_if_index = ~0;
392 vxlan4_gbp_tunnel_key_t key4;
393 vxlan6_gbp_tunnel_key_t key6;
394 u32 is_ip6 = a->is_ip6;
395
396 int not_found;
397 if (!is_ip6)
398 {
Neale Ranns665581a2019-03-05 06:11:57 -0800399 key4.key[0] = ip46_address_is_multicast (&a->dst) ?
400 a->dst.ip4.as_u32 :
401 a->dst.ip4.as_u32 | (((u64) a->src.ip4.as_u32) << 32);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200402 key4.key[1] = (((u64) a->encap_fib_index) << 32)
403 | clib_host_to_net_u32 (a->vni << 8);
404 not_found =
405 clib_bihash_search_inline_16_8 (&vxm->vxlan4_gbp_tunnel_by_key,
406 &key4);
407 p = &key4.value;
408 }
409 else
410 {
411 key6.key[0] = a->dst.ip6.as_u64[0];
412 key6.key[1] = a->dst.ip6.as_u64[1];
413 key6.key[2] = (((u64) a->encap_fib_index) << 32)
414 | clib_host_to_net_u32 (a->vni << 8);
415 not_found =
416 clib_bihash_search_inline_24_8 (&vxm->vxlan6_gbp_tunnel_by_key,
417 &key6);
418 p = &key6.value;
419 }
420
421 if (not_found)
422 p = 0;
423
424 if (a->is_add)
425 {
426 l2input_main_t *l2im = &l2input_main;
427 u32 dev_instance; /* real dev instance tunnel index */
428 u32 user_instance; /* request and actual instance number */
429
430 /* adding a tunnel: tunnel must not already exist */
431 if (p)
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700432 {
433 t = pool_elt_at_index (vxm->tunnels, *p);
434 *sw_if_indexp = t->sw_if_index;
435 return VNET_API_ERROR_TUNNEL_EXIST;
436 }
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200437 pool_get_aligned (vxm->tunnels, t, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400438 clib_memset (t, 0, sizeof (*t));
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200439 dev_instance = t - vxm->tunnels;
440
441 /* copy from arg structure */
442#define _(x) t->x = a->x;
443 foreach_copy_field;
444#undef _
445
446 vxlan_gbp_rewrite (t, is_ip6);
447 /*
448 * Reconcile the real dev_instance and a possible requested instance.
449 */
450 user_instance = a->instance;
451 if (user_instance == ~0)
452 user_instance = dev_instance;
453 if (hash_get (vxm->instance_used, user_instance))
454 {
455 pool_put (vxm->tunnels, t);
456 return VNET_API_ERROR_INSTANCE_IN_USE;
457 }
458 hash_set (vxm->instance_used, user_instance, 1);
459
460 t->dev_instance = dev_instance; /* actual */
461 t->user_instance = user_instance; /* name */
462
463 /* copy the key */
464 int add_failed;
465 if (is_ip6)
466 {
467 key6.value = (u64) dev_instance;
468 add_failed =
469 clib_bihash_add_del_24_8 (&vxm->vxlan6_gbp_tunnel_by_key, &key6,
470 1 /*add */ );
471 }
472 else
473 {
474 key4.value = (u64) dev_instance;
475 add_failed =
476 clib_bihash_add_del_16_8 (&vxm->vxlan4_gbp_tunnel_by_key, &key4,
477 1 /*add */ );
478 }
479
480 if (add_failed)
481 {
482 pool_put (vxm->tunnels, t);
483 return VNET_API_ERROR_INVALID_REGISTRATION;
484 }
485
Mohsin Kazmif208b022018-10-24 12:17:50 +0200486 vxlan_gbp_register_udp_ports ();
487
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200488 t->hw_if_index = vnet_register_interface
489 (vnm, vxlan_gbp_device_class.index, dev_instance,
490 vxlan_gbp_hw_class.index, dev_instance);
491 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, t->hw_if_index);
492
493 /* Set vxlan_gbp tunnel output node */
494 u32 encap_index = !is_ip6 ?
495 vxlan4_gbp_encap_node.index : vxlan6_gbp_encap_node.index;
496 vnet_set_interface_output_node (vnm, t->hw_if_index, encap_index);
497
498 t->sw_if_index = sw_if_index = hi->sw_if_index;
499
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700500 if (VXLAN_GBP_TUNNEL_MODE_L3 == t->mode)
501 {
502 ip4_sw_interface_enable_disable (t->sw_if_index, 1);
503 ip6_sw_interface_enable_disable (t->sw_if_index, 1);
504 }
505
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200506 vec_validate_init_empty (vxm->tunnel_index_by_sw_if_index, sw_if_index,
507 ~0);
508 vxm->tunnel_index_by_sw_if_index[sw_if_index] = dev_instance;
509
510 /* setup l2 input config with l2 feature and bd 0 to drop packet */
511 vec_validate (l2im->configs, sw_if_index);
512 l2im->configs[sw_if_index].feature_bitmap = L2INPUT_FEAT_DROP;
513 l2im->configs[sw_if_index].bd_index = 0;
514
515 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
516 si->flags &= ~VNET_SW_INTERFACE_FLAG_HIDDEN;
517 vnet_sw_interface_set_flags (vnm, sw_if_index,
518 VNET_SW_INTERFACE_FLAG_ADMIN_UP);
519
520 fib_node_init (&t->node, FIB_NODE_TYPE_VXLAN_GBP_TUNNEL);
521 fib_prefix_t tun_dst_pfx;
522 vnet_flood_class_t flood_class = VNET_FLOOD_CLASS_TUNNEL_NORMAL;
523
524 fib_prefix_from_ip46_addr (&t->dst, &tun_dst_pfx);
525 if (!ip46_address_is_multicast (&t->dst))
526 {
527 /* Unicast tunnel -
528 * source the FIB entry for the tunnel's destination
529 * and become a child thereof. The tunnel will then get poked
530 * when the forwarding for the entry updates, and the tunnel can
531 * re-stack accordingly
532 */
533 vtep_addr_ref (&t->src);
Neale Ranns1f50bf82019-07-16 15:28:52 +0000534 t->fib_entry_index = fib_entry_track (t->encap_fib_index,
535 &tun_dst_pfx,
536 FIB_NODE_TYPE_VXLAN_GBP_TUNNEL,
537 dev_instance,
538 &t->sibling_index);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200539 vxlan_gbp_tunnel_restack_dpo (t);
540 }
541 else
542 {
543 /* Multicast tunnel -
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700544 * as the same mcast group can be used for multiple mcast tunnels
545 * with different VNIs, create the output fib adjacency only if
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200546 * it does not already exist
547 */
548 fib_protocol_t fp = fib_ip_proto (is_ip6);
549
550 if (vtep_addr_ref (&t->dst) == 1)
551 {
552 fib_node_index_t mfei;
553 adj_index_t ai;
554 fib_route_path_t path = {
555 .frp_proto = fib_proto_to_dpo (fp),
556 .frp_addr = zero_addr,
557 .frp_sw_if_index = 0xffffffff,
558 .frp_fib_index = ~0,
559 .frp_weight = 0,
560 .frp_flags = FIB_ROUTE_PATH_LOCAL,
Neale Ranns097fa662018-05-01 05:17:55 -0700561 .frp_mitf_flags = MFIB_ITF_FLAG_FORWARD,
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200562 };
563 const mfib_prefix_t mpfx = {
564 .fp_proto = fp,
565 .fp_len = (is_ip6 ? 128 : 32),
566 .fp_grp_addr = tun_dst_pfx.fp_addr,
567 };
568
569 /*
570 * Setup the (*,G) to receive traffic on the mcast group
571 * - the forwarding interface is for-us
572 * - the accepting interface is that from the API
573 */
574 mfib_table_entry_path_update (t->encap_fib_index,
575 &mpfx,
Neale Ranns097fa662018-05-01 05:17:55 -0700576 MFIB_SOURCE_VXLAN_GBP, &path);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200577
578 path.frp_sw_if_index = a->mcast_sw_if_index;
579 path.frp_flags = FIB_ROUTE_PATH_FLAG_NONE;
Neale Ranns097fa662018-05-01 05:17:55 -0700580 path.frp_mitf_flags = MFIB_ITF_FLAG_ACCEPT;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200581 mfei = mfib_table_entry_path_update (t->encap_fib_index,
582 &mpfx,
583 MFIB_SOURCE_VXLAN_GBP,
Neale Ranns097fa662018-05-01 05:17:55 -0700584 &path);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200585
586 /*
587 * Create the mcast adjacency to send traffic to the group
588 */
589 ai = adj_mcast_add_or_lock (fp,
590 fib_proto_to_link (fp),
591 a->mcast_sw_if_index);
592
593 /*
594 * create a new end-point
595 */
596 mcast_shared_add (&t->dst, mfei, ai);
597 }
598
599 dpo_id_t dpo = DPO_INVALID;
600 mcast_shared_t ep = mcast_shared_get (&t->dst);
601
602 /* Stack shared mcast dst mac addr rewrite on encap */
603 dpo_set (&dpo, DPO_ADJACENCY_MCAST,
604 fib_proto_to_dpo (fp), ep.mcast_adj_index);
605
606 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
607 dpo_reset (&dpo);
608 flood_class = VNET_FLOOD_CLASS_TUNNEL_MASTER;
609 }
610
611 vnet_get_sw_interface (vnet_get_main (), sw_if_index)->flood_class =
612 flood_class;
613 }
614 else
615 {
616 /* deleting a tunnel: tunnel must exist */
617 if (!p)
618 return VNET_API_ERROR_NO_SUCH_ENTRY;
619
620 u32 instance = p[0];
621 t = pool_elt_at_index (vxm->tunnels, instance);
622
623 sw_if_index = t->sw_if_index;
624 vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
625
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700626 if (VXLAN_GBP_TUNNEL_MODE_L3 == t->mode)
627 {
628 ip4_sw_interface_enable_disable (t->sw_if_index, 0);
629 ip6_sw_interface_enable_disable (t->sw_if_index, 0);
630 }
631
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200632 vxm->tunnel_index_by_sw_if_index[sw_if_index] = ~0;
633
634 if (!is_ip6)
635 clib_bihash_add_del_16_8 (&vxm->vxlan4_gbp_tunnel_by_key, &key4,
636 0 /*del */ );
637 else
638 clib_bihash_add_del_24_8 (&vxm->vxlan6_gbp_tunnel_by_key, &key6,
639 0 /*del */ );
640
641 if (!ip46_address_is_multicast (&t->dst))
642 {
643 vtep_addr_unref (&t->src);
Neale Ranns1f50bf82019-07-16 15:28:52 +0000644 fib_entry_untrack (t->fib_entry_index, t->sibling_index);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200645 }
646 else if (vtep_addr_unref (&t->dst) == 0)
647 {
648 mcast_shared_remove (&t->dst);
649 }
650
Mohsin Kazmif208b022018-10-24 12:17:50 +0200651 vxlan_gbp_unregister_udp_ports ();
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200652 vnet_delete_hw_interface (vnm, t->hw_if_index);
653 hash_unset (vxm->instance_used, t->user_instance);
654
655 fib_node_deinit (&t->node);
656 pool_put (vxm->tunnels, t);
657 }
658
659 if (sw_if_indexp)
660 *sw_if_indexp = sw_if_index;
661
662 return 0;
663}
664
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700665int
666vnet_vxlan_gbp_tunnel_del (u32 sw_if_index)
667{
668 vxlan_gbp_main_t *vxm = &vxlan_gbp_main;
669 vxlan_gbp_tunnel_t *t = 0;
670 u32 ti;
671
672 if (sw_if_index >= vec_len (vxm->tunnel_index_by_sw_if_index))
673 return VNET_API_ERROR_NO_SUCH_ENTRY;
674
675 ti = vxm->tunnel_index_by_sw_if_index[sw_if_index];
676 if (~0 != ti)
677 {
678 t = pool_elt_at_index (vxm->tunnels, ti);
679
680 vnet_vxlan_gbp_tunnel_add_del_args_t args = {
681 .is_add = 0,
682 .is_ip6 = !ip46_address_is_ip4 (&t->src),
683 .vni = t->vni,
684 .src = t->src,
685 .dst = t->dst,
686 .instance = ~0,
687 };
688
689 return (vnet_vxlan_gbp_tunnel_add_del (&args, NULL));
690 }
691
692 return VNET_API_ERROR_NO_SUCH_ENTRY;
693}
694
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200695static uword
696get_decap_next_for_node (u32 node_index, u32 ipv4_set)
697{
698 vxlan_gbp_main_t *vxm = &vxlan_gbp_main;
699 vlib_main_t *vm = vxm->vlib_main;
700 uword input_node = (ipv4_set) ? vxlan4_gbp_input_node.index :
701 vxlan6_gbp_input_node.index;
702
703 return vlib_node_add_next (vm, input_node, node_index);
704}
705
706static uword
707unformat_decap_next (unformat_input_t * input, va_list * args)
708{
709 u32 *result = va_arg (*args, u32 *);
710 u32 ipv4_set = va_arg (*args, int);
711 vxlan_gbp_main_t *vxm = &vxlan_gbp_main;
712 vlib_main_t *vm = vxm->vlib_main;
713 u32 node_index;
714 u32 tmp;
715
716 if (unformat (input, "l2"))
717 *result = VXLAN_GBP_INPUT_NEXT_L2_INPUT;
718 else if (unformat (input, "node %U", unformat_vlib_node, vm, &node_index))
719 *result = get_decap_next_for_node (node_index, ipv4_set);
720 else if (unformat (input, "%d", &tmp))
721 *result = tmp;
722 else
723 return 0;
724 return 1;
725}
726
727static clib_error_t *
Neale Ranns79a05f52018-09-11 07:39:43 -0700728vxlan_gbp_tunnel_add_del_command_fn (vlib_main_t * vm,
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200729 unformat_input_t * input,
730 vlib_cli_command_t * cmd)
731{
732 unformat_input_t _line_input, *line_input = &_line_input;
733 ip46_address_t src = ip46_address_initializer, dst =
734 ip46_address_initializer;
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700735 vxlan_gbp_tunnel_mode_t mode = VXLAN_GBP_TUNNEL_MODE_L2;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200736 u8 is_add = 1;
737 u8 src_set = 0;
738 u8 dst_set = 0;
739 u8 grp_set = 0;
740 u8 ipv4_set = 0;
741 u8 ipv6_set = 0;
742 u32 instance = ~0;
743 u32 encap_fib_index = 0;
744 u32 mcast_sw_if_index = ~0;
745 u32 decap_next_index = VXLAN_GBP_INPUT_NEXT_L2_INPUT;
746 u32 vni = 0;
747 u32 table_id;
748 clib_error_t *parse_error = NULL;
749
750 /* Get a line of input. */
751 if (!unformat_user (input, unformat_line_input, line_input))
752 return 0;
753
754 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
755 {
756 if (unformat (line_input, "del"))
757 {
758 is_add = 0;
759 }
760 else if (unformat (line_input, "instance %d", &instance))
761 ;
762 else if (unformat (line_input, "src %U",
763 unformat_ip46_address, &src, IP46_TYPE_ANY))
764 {
765 src_set = 1;
766 ip46_address_is_ip4 (&src) ? (ipv4_set = 1) : (ipv6_set = 1);
767 }
768 else if (unformat (line_input, "dst %U",
769 unformat_ip46_address, &dst, IP46_TYPE_ANY))
770 {
771 dst_set = 1;
772 ip46_address_is_ip4 (&dst) ? (ipv4_set = 1) : (ipv6_set = 1);
773 }
774 else if (unformat (line_input, "group %U %U",
775 unformat_ip46_address, &dst, IP46_TYPE_ANY,
776 unformat_vnet_sw_interface,
777 vnet_get_main (), &mcast_sw_if_index))
778 {
779 grp_set = dst_set = 1;
780 ip46_address_is_ip4 (&dst) ? (ipv4_set = 1) : (ipv6_set = 1);
781 }
782 else if (unformat (line_input, "encap-vrf-id %d", &table_id))
783 {
784 encap_fib_index =
785 fib_table_find (fib_ip_proto (ipv6_set), table_id);
786 }
787 else if (unformat (line_input, "decap-next %U", unformat_decap_next,
788 &decap_next_index, ipv4_set))
789 ;
790 else if (unformat (line_input, "vni %d", &vni))
791 ;
792 else
793 {
794 parse_error = clib_error_return (0, "parse error: '%U'",
795 format_unformat_error, line_input);
796 break;
797 }
798 }
799
800 unformat_free (line_input);
801
802 if (parse_error)
803 return parse_error;
804
805 if (encap_fib_index == ~0)
806 return clib_error_return (0, "nonexistent encap-vrf-id %d", table_id);
807
808 if (src_set == 0)
809 return clib_error_return (0, "tunnel src address not specified");
810
811 if (dst_set == 0)
812 return clib_error_return (0, "tunnel dst address not specified");
813
814 if (grp_set && !ip46_address_is_multicast (&dst))
815 return clib_error_return (0, "tunnel group address not multicast");
816
817 if (grp_set == 0 && ip46_address_is_multicast (&dst))
818 return clib_error_return (0, "dst address must be unicast");
819
820 if (grp_set && mcast_sw_if_index == ~0)
821 return clib_error_return (0, "tunnel nonexistent multicast device");
822
823 if (ipv4_set && ipv6_set)
824 return clib_error_return (0, "both IPv4 and IPv6 addresses specified");
825
826 if (ip46_address_cmp (&src, &dst) == 0)
827 return clib_error_return (0, "src and dst addresses are identical");
828
829 if (decap_next_index == ~0)
830 return clib_error_return (0, "next node not found");
831
832 if (vni == 0)
833 return clib_error_return (0, "vni not specified");
834
835 if (vni >> 24)
836 return clib_error_return (0, "vni %d out of range", vni);
837
Neale Ranns79a05f52018-09-11 07:39:43 -0700838 vnet_vxlan_gbp_tunnel_add_del_args_t a = {
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200839 .is_add = is_add,
840 .is_ip6 = ipv6_set,
841 .instance = instance,
842#define _(x) .x = x,
843 foreach_copy_field
844#undef _
845 };
846
847 u32 tunnel_sw_if_index;
Neale Ranns79a05f52018-09-11 07:39:43 -0700848 int rv = vnet_vxlan_gbp_tunnel_add_del (&a, &tunnel_sw_if_index);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200849
850 switch (rv)
851 {
852 case 0:
853 if (is_add)
854 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
855 vnet_get_main (), tunnel_sw_if_index);
856 break;
857
858 case VNET_API_ERROR_TUNNEL_EXIST:
859 return clib_error_return (0, "tunnel already exists...");
860
861 case VNET_API_ERROR_NO_SUCH_ENTRY:
862 return clib_error_return (0, "tunnel does not exist...");
863
864 case VNET_API_ERROR_INSTANCE_IN_USE:
865 return clib_error_return (0, "Instance is in use");
866
867 default:
868 return clib_error_return
Neale Ranns79a05f52018-09-11 07:39:43 -0700869 (0, "vnet_vxlan_gbp_tunnel_add_del returned %d", rv);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200870 }
871
872 return 0;
873}
874
875/*?
876 * Add or delete a VXLAN Tunnel.
877 *
878 * VXLAN provides the features needed to allow L2 bridge domains (BDs)
879 * to span multiple servers. This is done by building an L2 overlay on
880 * top of an L3 network underlay using VXLAN tunnels.
881 *
882 * This makes it possible for servers to be co-located in the same data
883 * center or be separated geographically as long as they are reachable
884 * through the underlay L3 network.
885 *
886 * You can refer to this kind of L2 overlay bridge domain as a VXLAN
887 * (Virtual eXtensible VLAN) segment.
888 *
889 * @cliexpar
890 * Example of how to create a VXLAN Tunnel:
891 * @cliexcmd{create vxlan_gbp tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 encap-vrf-id 7}
892 * Example of how to create a VXLAN Tunnel with a known name, vxlan_gbp_tunnel42:
893 * @cliexcmd{create vxlan_gbp tunnel src 10.0.3.1 dst 10.0.3.3 instance 42}
894 * Example of how to create a multicast VXLAN Tunnel with a known name, vxlan_gbp_tunnel23:
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700895 * @cliexcmd{create vxlan_gbp tunnel src 10.0.3.1 group 239.1.1.1 GigabitEthernet0/8/0 instance 23}
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200896 * Example of how to delete a VXLAN Tunnel:
897 * @cliexcmd{create vxlan_gbp tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 del}
898 ?*/
899/* *INDENT-OFF* */
900VLIB_CLI_COMMAND (create_vxlan_gbp_tunnel_command, static) = {
901 .path = "create vxlan-gbp tunnel",
902 .short_help =
903 "create vxlan-gbp tunnel src <local-vtep-addr>"
904 " {dst <remote-vtep-addr>|group <mcast-vtep-addr> <intf-name>} vni <nn>"
905 " [instance <id>]"
906 " [encap-vrf-id <nn>] [decap-next [l2|node <name>]] [del]",
Neale Ranns79a05f52018-09-11 07:39:43 -0700907 .function = vxlan_gbp_tunnel_add_del_command_fn,
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200908};
909/* *INDENT-ON* */
910
911static clib_error_t *
912show_vxlan_gbp_tunnel_command_fn (vlib_main_t * vm,
913 unformat_input_t * input,
914 vlib_cli_command_t * cmd)
915{
916 vxlan_gbp_main_t *vxm = &vxlan_gbp_main;
917 vxlan_gbp_tunnel_t *t;
918 int raw = 0;
919
920 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
921 {
922 if (unformat (input, "raw"))
923 raw = 1;
924 else
925 return clib_error_return (0, "parse error: '%U'",
926 format_unformat_error, input);
927 }
928
929 if (pool_elts (vxm->tunnels) == 0)
930 vlib_cli_output (vm, "No vxlan-gbp tunnels configured...");
931
932/* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100933 pool_foreach (t, vxm->tunnels)
934 {
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200935 vlib_cli_output (vm, "%U", format_vxlan_gbp_tunnel, t);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100936 }
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200937/* *INDENT-ON* */
938
939 if (raw)
940 {
941 vlib_cli_output (vm, "Raw IPv4 Hash Table:\n%U\n",
942 format_bihash_16_8, &vxm->vxlan4_gbp_tunnel_by_key,
943 1 /* verbose */ );
944 vlib_cli_output (vm, "Raw IPv6 Hash Table:\n%U\n",
945 format_bihash_24_8, &vxm->vxlan6_gbp_tunnel_by_key,
946 1 /* verbose */ );
947 }
948
949 return 0;
950}
951
952/*?
953 * Display all the VXLAN Tunnel entries.
954 *
955 * @cliexpar
956 * Example of how to display the VXLAN Tunnel entries:
957 * @cliexstart{show vxlan_gbp tunnel}
958 * [0] src 10.0.3.1 dst 10.0.3.3 vni 13 encap_fib_index 0 sw_if_index 5 decap_next l2
959 * @cliexend
960 ?*/
961/* *INDENT-OFF* */
962VLIB_CLI_COMMAND (show_vxlan_gbp_tunnel_command, static) = {
963 .path = "show vxlan-gbp tunnel",
964 .short_help = "show vxlan-gbp tunnel [raw]",
965 .function = show_vxlan_gbp_tunnel_command_fn,
966};
967/* *INDENT-ON* */
968
969
970void
971vnet_int_vxlan_gbp_bypass_mode (u32 sw_if_index, u8 is_ip6, u8 is_enable)
972{
973 if (is_ip6)
974 vnet_feature_enable_disable ("ip6-unicast", "ip6-vxlan-gbp-bypass",
975 sw_if_index, is_enable, 0, 0);
976 else
977 vnet_feature_enable_disable ("ip4-unicast", "ip4-vxlan-gbp-bypass",
978 sw_if_index, is_enable, 0, 0);
979}
980
981
982static clib_error_t *
983set_ip_vxlan_gbp_bypass (u32 is_ip6,
984 unformat_input_t * input, vlib_cli_command_t * cmd)
985{
986 unformat_input_t _line_input, *line_input = &_line_input;
987 vnet_main_t *vnm = vnet_get_main ();
988 clib_error_t *error = 0;
989 u32 sw_if_index, is_enable;
990
991 sw_if_index = ~0;
992 is_enable = 1;
993
994 if (!unformat_user (input, unformat_line_input, line_input))
995 return 0;
996
997 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
998 {
999 if (unformat_user
1000 (line_input, unformat_vnet_sw_interface, vnm, &sw_if_index))
1001 ;
1002 else if (unformat (line_input, "del"))
1003 is_enable = 0;
1004 else
1005 {
1006 error = unformat_parse_error (line_input);
1007 goto done;
1008 }
1009 }
1010
1011 if (~0 == sw_if_index)
1012 {
1013 error = clib_error_return (0, "unknown interface `%U'",
1014 format_unformat_error, line_input);
1015 goto done;
1016 }
1017
1018 vnet_int_vxlan_gbp_bypass_mode (sw_if_index, is_ip6, is_enable);
1019
1020done:
1021 unformat_free (line_input);
1022
1023 return error;
1024}
1025
1026static clib_error_t *
1027set_ip4_vxlan_gbp_bypass (vlib_main_t * vm,
1028 unformat_input_t * input, vlib_cli_command_t * cmd)
1029{
1030 return set_ip_vxlan_gbp_bypass (0, input, cmd);
1031}
1032
1033/*?
1034 * This command adds the 'ip4-vxlan-gbp-bypass' graph node for a given interface.
1035 * By adding the IPv4 vxlan_gbp-bypass graph node to an interface, the node checks
1036 * for and validate input vxlan_gbp packet and bypass ip4-lookup, ip4-local,
1037 * ip4-udp-lookup nodes to speedup vxlan_gbp packet forwarding. This node will
1038 * cause extra overhead to for non-vxlan_gbp packets which is kept at a minimum.
1039 *
1040 * @cliexpar
1041 * @parblock
1042 * Example of graph node before ip4-vxlan_gbp-bypass is enabled:
1043 * @cliexstart{show vlib graph ip4-vxlan_gbp-bypass}
1044 * Name Next Previous
1045 * ip4-vxlan-gbp-bypass error-drop [0]
1046 * vxlan4-gbp-input [1]
1047 * ip4-lookup [2]
1048 * @cliexend
1049 *
1050 * Example of how to enable ip4-vxlan-gbp-bypass on an interface:
1051 * @cliexcmd{set interface ip vxlan-gbp-bypass GigabitEthernet2/0/0}
1052 *
1053 * Example of graph node after ip4-vxlan-gbp-bypass is enabled:
1054 * @cliexstart{show vlib graph ip4-vxlan-gbp-bypass}
1055 * Name Next Previous
1056 * ip4-vxlan-gbp-bypass error-drop [0] ip4-input
1057 * vxlan4-gbp-input [1] ip4-input-no-checksum
1058 * ip4-lookup [2]
1059 * @cliexend
1060 *
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001061 * Example of how to display the feature enabled on an interface:
Mohsin Kazmi61b94c62018-08-20 18:32:39 +02001062 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1063 * IP feature paths configured on GigabitEthernet2/0/0...
1064 * ...
1065 * ipv4 unicast:
1066 * ip4-vxlan-gbp-bypass
1067 * ip4-lookup
1068 * ...
1069 * @cliexend
1070 *
1071 * Example of how to disable ip4-vxlan-gbp-bypass on an interface:
1072 * @cliexcmd{set interface ip vxlan-gbp-bypass GigabitEthernet2/0/0 del}
1073 * @endparblock
1074?*/
1075/* *INDENT-OFF* */
1076VLIB_CLI_COMMAND (set_interface_ip_vxlan_gbp_bypass_command, static) = {
1077 .path = "set interface ip vxlan-gbp-bypass",
1078 .function = set_ip4_vxlan_gbp_bypass,
1079 .short_help = "set interface ip vxlan-gbp-bypass <interface> [del]",
1080};
1081/* *INDENT-ON* */
1082
1083static clib_error_t *
1084set_ip6_vxlan_gbp_bypass (vlib_main_t * vm,
1085 unformat_input_t * input, vlib_cli_command_t * cmd)
1086{
1087 return set_ip_vxlan_gbp_bypass (1, input, cmd);
1088}
1089
1090/*?
1091 * This command adds the 'ip6-vxlan-gbp-bypass' graph node for a given interface.
1092 * By adding the IPv6 vxlan-gbp-bypass graph node to an interface, the node checks
1093 * for and validate input vxlan_gbp packet and bypass ip6-lookup, ip6-local,
1094 * ip6-udp-lookup nodes to speedup vxlan_gbp packet forwarding. This node will
1095 * cause extra overhead to for non-vxlan packets which is kept at a minimum.
1096 *
1097 * @cliexpar
1098 * @parblock
1099 * Example of graph node before ip6-vxlan-gbp-bypass is enabled:
1100 * @cliexstart{show vlib graph ip6-vxlan-gbp-bypass}
1101 * Name Next Previous
1102 * ip6-vxlan-gbp-bypass error-drop [0]
1103 * vxlan6-gbp-input [1]
1104 * ip6-lookup [2]
1105 * @cliexend
1106 *
1107 * Example of how to enable ip6-vxlan-gbp-bypass on an interface:
1108 * @cliexcmd{set interface ip6 vxlan-gbp-bypass GigabitEthernet2/0/0}
1109 *
1110 * Example of graph node after ip6-vxlan-gbp-bypass is enabled:
1111 * @cliexstart{show vlib graph ip6-vxlan-gbp-bypass}
1112 * Name Next Previous
1113 * ip6-vxlan-gbp-bypass error-drop [0] ip6-input
1114 * vxlan6-gbp-input [1] ip4-input-no-checksum
1115 * ip6-lookup [2]
1116 * @cliexend
1117 *
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001118 * Example of how to display the feature enabled on an interface:
Mohsin Kazmi61b94c62018-08-20 18:32:39 +02001119 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1120 * IP feature paths configured on GigabitEthernet2/0/0...
1121 * ...
1122 * ipv6 unicast:
1123 * ip6-vxlan-gbp-bypass
1124 * ip6-lookup
1125 * ...
1126 * @cliexend
1127 *
1128 * Example of how to disable ip6-vxlan-gbp-bypass on an interface:
1129 * @cliexcmd{set interface ip6 vxlan-gbp-bypass GigabitEthernet2/0/0 del}
1130 * @endparblock
1131?*/
1132/* *INDENT-OFF* */
1133VLIB_CLI_COMMAND (set_interface_ip6_vxlan_gbp_bypass_command, static) = {
1134 .path = "set interface ip6 vxlan-gbp-bypass",
1135 .function = set_ip6_vxlan_gbp_bypass,
Paul Vinciguerra5fb22782019-11-07 17:20:48 -05001136 .short_help = "set interface ip6 vxlan-gbp-bypass <interface> [del]",
Mohsin Kazmi61b94c62018-08-20 18:32:39 +02001137};
1138/* *INDENT-ON* */
1139
1140#define VXLAN_GBP_HASH_NUM_BUCKETS (2 * 1024)
1141#define VXLAN_GBP_HASH_MEMORY_SIZE (1 << 20)
1142
1143clib_error_t *
1144vxlan_gbp_init (vlib_main_t * vm)
1145{
1146 vxlan_gbp_main_t *vxm = &vxlan_gbp_main;
1147
1148 vxm->vnet_main = vnet_get_main ();
1149 vxm->vlib_main = vm;
1150
1151 /* initialize the ip6 hash */
1152 clib_bihash_init_16_8 (&vxm->vxlan4_gbp_tunnel_by_key, "vxlan4-gbp",
1153 VXLAN_GBP_HASH_NUM_BUCKETS,
1154 VXLAN_GBP_HASH_MEMORY_SIZE);
1155 clib_bihash_init_24_8 (&vxm->vxlan6_gbp_tunnel_by_key, "vxlan6-gbp",
1156 VXLAN_GBP_HASH_NUM_BUCKETS,
1157 VXLAN_GBP_HASH_MEMORY_SIZE);
1158 vxm->vtep6 = hash_create_mem (0, sizeof (ip6_address_t), sizeof (uword));
1159 vxm->mcast_shared = hash_create_mem (0,
1160 sizeof (ip46_address_t),
1161 sizeof (mcast_shared_t));
1162
Mohsin Kazmi61b94c62018-08-20 18:32:39 +02001163 fib_node_register_type (FIB_NODE_TYPE_VXLAN_GBP_TUNNEL, &vxlan_gbp_vft);
1164
Neale Ranns76b56492018-09-28 15:16:14 +00001165 punt_hdl = vlib_punt_client_register ("vxlan-gbp");
1166
Mohammed Hawari45723b82021-02-05 15:40:00 +01001167 vlib_punt_reason_alloc (punt_hdl, "VXLAN-GBP-no-such-v4-tunnel", NULL, NULL,
1168 &vxm->punt_no_such_tunnel[FIB_PROTOCOL_IP4],
1169 VNET_PUNT_REASON_F_IP4_PACKET,
1170 format_vnet_punt_reason_flags);
1171 vlib_punt_reason_alloc (punt_hdl, "VXLAN-GBP-no-such-v6-tunnel", NULL, NULL,
1172 &vxm->punt_no_such_tunnel[FIB_PROTOCOL_IP6],
1173 VNET_PUNT_REASON_F_IP6_PACKET,
1174 format_vnet_punt_reason_flags);
Neale Ranns76b56492018-09-28 15:16:14 +00001175
Dave Barachf8d50682019-05-14 18:01:44 -04001176 return (0);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +02001177}
1178
Dave Barachf8d50682019-05-14 18:01:44 -04001179/* *INDENT-OFF* */
1180VLIB_INIT_FUNCTION (vxlan_gbp_init) =
1181{
1182 .runs_after = VLIB_INITS("punt_init"),
1183};
1184/* *INDENT-ON* */
Mohsin Kazmi61b94c62018-08-20 18:32:39 +02001185
1186/*
1187 * fd.io coding-style-patch-verification: ON
1188 *
1189 * Local Variables:
1190 * eval: (c-set-style "gnu")
1191 * End:
1192 */