blob: 97321421a84f489f9314750114990506c8d5483d [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 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/vxlan.h>
Chris Luke99cb3352016-04-26 10:49:53 -040016#include <vnet/ip/format.h>
John Loc42912d2016-11-07 18:30:47 -050017#include <vnet/fib/fib_entry.h>
18#include <vnet/fib/fib_table.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000019#include <vnet/mfib/mfib_table.h>
20#include <vnet/adj/adj_mcast.h>
Eyal Bari3212c572017-03-06 11:47:50 +020021#include <vnet/interface.h>
Hongjun Nibeb4bf72016-11-25 00:03:46 +080022#include <vlib/vlib.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070023
Billy McFallc5d9cda2016-09-14 10:39:58 -040024/**
25 * @file
26 * @brief VXLAN.
27 *
28 * VXLAN provides the features needed to allow L2 bridge domains (BDs)
29 * to span multiple servers. This is done by building an L2 overlay on
30 * top of an L3 network underlay using VXLAN tunnels.
31 *
32 * This makes it possible for servers to be co-located in the same data
33 * center or be separated geographically as long as they are reachable
34 * through the underlay L3 network.
35 *
36 * You can refer to this kind of L2 overlay bridge domain as a VXLAN
37 * (Virtual eXtensible VLAN) segment.
38 */
39
40
Ed Warnickecb9cada2015-12-08 15:45:58 -070041vxlan_main_t vxlan_main;
42
Hongjun Nibeb4bf72016-11-25 00:03:46 +080043static u8 * format_decap_next (u8 * s, va_list * args)
44{
45 u32 next_index = va_arg (*args, u32);
46
John Lo4478d8e2018-01-12 17:15:25 -050047 if (next_index == VXLAN_INPUT_NEXT_DROP)
48 return format (s, "drop");
49 else
50 return format (s, "index %d", next_index);
Hongjun Nibeb4bf72016-11-25 00:03:46 +080051 return s;
52}
53
Ed Warnickecb9cada2015-12-08 15:45:58 -070054u8 * format_vxlan_tunnel (u8 * s, va_list * args)
55{
56 vxlan_tunnel_t * t = va_arg (*args, vxlan_tunnel_t *);
Jon Loeliger3d460bd2018-02-01 16:36:12 -060057
58 s = format (s,
59 "[%d] instance %d src %U dst %U vni %d fib-idx %d sw-if-idx %d ",
John Lo25d417f2018-02-15 15:47:53 -050060 t->dev_instance, t->user_instance,
Damjan Marion86be4872016-05-24 23:19:11 +020061 format_ip46_address, &t->src, IP46_TYPE_ANY,
62 format_ip46_address, &t->dst, IP46_TYPE_ANY,
John Lo4478d8e2018-01-12 17:15:25 -050063 t->vni, t->encap_fib_index, t->sw_if_index);
John Lo56912c82016-12-08 16:10:02 -050064
John Lo4478d8e2018-01-12 17:15:25 -050065 s = format (s, "encap-dpo-idx %d ", t->next_dpo.dpoi_index);
John Lo56912c82016-12-08 16:10:02 -050066
John Lo4478d8e2018-01-12 17:15:25 -050067 if (PREDICT_FALSE (t->decap_next_index != VXLAN_INPUT_NEXT_L2_INPUT))
68 s = format (s, "decap-next-%U ", format_decap_next, t->decap_next_index);
69
70 if (PREDICT_FALSE (ip46_address_is_multicast (&t->dst)))
71 s = format (s, "mcast-sw-if-idx %d ", t->mcast_sw_if_index);
72
Ed Warnickecb9cada2015-12-08 15:45:58 -070073 return s;
74}
75
76static u8 * format_vxlan_name (u8 * s, va_list * args)
77{
78 u32 dev_instance = va_arg (*args, u32);
Jon Loeliger3d460bd2018-02-01 16:36:12 -060079 vxlan_main_t * vxm = &vxlan_main;
80 vxlan_tunnel_t *t;
81
82 if (dev_instance == ~0)
83 return format(s, "<cached-unused>");
84
85 if (dev_instance >= vec_len(vxm->tunnels))
86 return format(s, "<improperly-referenced>");
87
88 t = pool_elt_at_index(vxm->tunnels, dev_instance);
89
90 return format (s, "vxlan_tunnel%d", t->user_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -070091}
92
Pavel Kotucek988a7c42016-02-29 15:03:08 +010093static clib_error_t *
94vxlan_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
95{
Eyal Baria93ea422017-02-01 13:36:15 +020096 u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
97 VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
98 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
Pavel Kotucek988a7c42016-02-29 15:03:08 +010099
100 return /* no error */ 0;
101}
102
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103VNET_DEVICE_CLASS (vxlan_device_class,static) = {
104 .name = "VXLAN",
105 .format_device_name = format_vxlan_name,
106 .format_tx_trace = format_vxlan_encap_trace,
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100107 .admin_up_down_function = vxlan_interface_admin_up_down,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108};
109
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110static u8 * format_vxlan_header_with_length (u8 * s, va_list * args)
111{
112 u32 dev_instance = va_arg (*args, u32);
113 s = format (s, "unimplemented dev %u", dev_instance);
114 return s;
115}
116
117VNET_HW_INTERFACE_CLASS (vxlan_hw_class) = {
118 .name = "VXLAN",
119 .format_header = format_vxlan_header_with_length,
Neale Rannsb80c5362016-10-08 13:03:40 +0100120 .build_rewrite = default_build_rewrite,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121};
122
Eyal Baric5b13602016-11-24 19:42:43 +0200123static void
124vxlan_tunnel_restack_dpo(vxlan_tunnel_t * t)
125{
126 dpo_id_t dpo = DPO_INVALID;
127 u32 encap_index = ip46_address_is_ip4(&t->dst) ?
128 vxlan4_encap_node.index : vxlan6_encap_node.index;
129 fib_forward_chain_type_t forw_type = ip46_address_is_ip4(&t->dst) ?
130 FIB_FORW_CHAIN_TYPE_UNICAST_IP4 : FIB_FORW_CHAIN_TYPE_UNICAST_IP6;
131
132 fib_entry_contribute_forwarding (t->fib_entry_index, forw_type, &dpo);
133 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
134 dpo_reset(&dpo);
135}
John Loc42912d2016-11-07 18:30:47 -0500136
137static vxlan_tunnel_t *
138vxlan_tunnel_from_fib_node (fib_node_t *node)
139{
John Loc42912d2016-11-07 18:30:47 -0500140 ASSERT(FIB_NODE_TYPE_VXLAN_TUNNEL == node->fn_type);
John Loc42912d2016-11-07 18:30:47 -0500141 return ((vxlan_tunnel_t*) (((char*)node) -
142 STRUCT_OFFSET_OF(vxlan_tunnel_t, node)));
143}
144
145/**
146 * Function definition to backwalk a FIB node -
147 * Here we will restack the new dpo of VXLAN DIP to encap node.
148 */
149static fib_node_back_walk_rc_t
150vxlan_tunnel_back_walk (fib_node_t *node,
151 fib_node_back_walk_ctx_t *ctx)
152{
Eyal Baric5b13602016-11-24 19:42:43 +0200153 vxlan_tunnel_restack_dpo(vxlan_tunnel_from_fib_node(node));
John Loc42912d2016-11-07 18:30:47 -0500154 return (FIB_NODE_BACK_WALK_CONTINUE);
155}
156
157/**
158 * Function definition to get a FIB node from its index
159 */
160static fib_node_t*
161vxlan_tunnel_fib_node_get (fib_node_index_t index)
162{
163 vxlan_tunnel_t * t;
164 vxlan_main_t * vxm = &vxlan_main;
165
166 t = pool_elt_at_index(vxm->tunnels, index);
167
168 return (&t->node);
169}
170
171/**
172 * Function definition to inform the FIB node that its last lock has gone.
173 */
174static void
175vxlan_tunnel_last_lock_gone (fib_node_t *node)
176{
177 /*
178 * The VXLAN tunnel is a root of the graph. As such
179 * it never has children and thus is never locked.
180 */
181 ASSERT(0);
182}
183
184/*
185 * Virtual function table registered by VXLAN tunnels
186 * for participation in the FIB object graph.
187 */
188const static fib_node_vft_t vxlan_vft = {
189 .fnv_get = vxlan_tunnel_fib_node_get,
190 .fnv_last_lock = vxlan_tunnel_last_lock_gone,
191 .fnv_back_walk = vxlan_tunnel_back_walk,
192};
193
194
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195#define foreach_copy_field \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196_(vni) \
Eyal Baric5b13602016-11-24 19:42:43 +0200197_(mcast_sw_if_index) \
198_(encap_fib_index) \
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800199_(decap_next_index) \
Eyal Baric5b13602016-11-24 19:42:43 +0200200_(src) \
201_(dst)
Chris Luke99cb3352016-04-26 10:49:53 -0400202
Eyal Bari554075a2018-02-13 15:17:17 +0200203static void
Eyal Baria93ea422017-02-01 13:36:15 +0200204vxlan_rewrite (vxlan_tunnel_t * t, bool is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205{
Eyal Baria93ea422017-02-01 13:36:15 +0200206 union {
207 ip4_vxlan_header_t * h4;
208 ip6_vxlan_header_t * h6;
209 u8 *rw;
210 } r = { .rw = 0 };
211 int len = is_ip6 ? sizeof *r.h6 : sizeof *r.h4;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212
Eyal Baria93ea422017-02-01 13:36:15 +0200213 vec_validate_aligned (r.rw, len-1, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700214
Eyal Baria93ea422017-02-01 13:36:15 +0200215 udp_header_t * udp;
216 vxlan_header_t * vxlan;
217 /* Fixed portion of the (outer) ip header */
218 if (!is_ip6)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800219 {
Eyal Baria93ea422017-02-01 13:36:15 +0200220 ip4_header_t * ip = &r.h4->ip4;
221 udp = &r.h4->udp, vxlan = &r.h4->vxlan;
222 ip->ip_version_and_header_length = 0x45;
223 ip->ttl = 254;
224 ip->protocol = IP_PROTOCOL_UDP;
225
226 ip->src_address = t->src.ip4;
227 ip->dst_address = t->dst.ip4;
228
229 /* we fix up the ip4 header length and checksum after-the-fact */
230 ip->checksum = ip4_header_checksum (ip);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800231 }
232 else
233 {
Eyal Baria93ea422017-02-01 13:36:15 +0200234 ip6_header_t * ip = &r.h6->ip6;
235 udp = &r.h6->udp, vxlan = &r.h6->vxlan;
236 ip->ip_version_traffic_class_and_flow_label = clib_host_to_net_u32(6 << 28);
237 ip->hop_limit = 255;
238 ip->protocol = IP_PROTOCOL_UDP;
239
240 ip->src_address = t->src.ip6;
241 ip->dst_address = t->dst.ip6;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800242 }
243
Eyal Baria93ea422017-02-01 13:36:15 +0200244 /* UDP header, randomize src port on something, maybe? */
245 udp->src_port = clib_host_to_net_u16 (4789);
246 udp->dst_port = clib_host_to_net_u16 (UDP_DST_PORT_vxlan);
247
248 /* VXLAN header */
249 vnet_set_vni_and_flags(vxlan, t->vni);
250
251 t->rewrite = r.rw;
Eyal Baria93ea422017-02-01 13:36:15 +0200252}
253
254static bool
255vxlan_decap_next_is_valid (vxlan_main_t * vxm, u32 is_ip6, u32 decap_next_index)
256{
257 vlib_main_t * vm = vxm->vlib_main;
258 u32 input_idx = (!is_ip6) ? vxlan4_input_node.index : vxlan6_input_node.index;
259 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, input_idx);
260
261 return decap_next_index < r->n_next_nodes;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800262}
263
Eyal Barifff67c82016-12-21 12:45:47 +0200264static uword
265vtep_addr_ref(ip46_address_t *ip)
266{
Eyal Bari0ded8512017-01-19 17:01:09 +0200267 uword *vtep = ip46_address_is_ip4(ip) ?
268 hash_get (vxlan_main.vtep4, ip->ip4.as_u32) :
269 hash_get_mem (vxlan_main.vtep6, &ip->ip6);
270 if (vtep)
271 return ++(*vtep);
272 ip46_address_is_ip4(ip) ?
273 hash_set (vxlan_main.vtep4, ip->ip4.as_u32, 1) :
John Loe6bfeab2018-01-04 16:39:42 -0500274 hash_set_mem_alloc (&vxlan_main.vtep6, &ip->ip6, 1);
Eyal Barifff67c82016-12-21 12:45:47 +0200275 return 1;
276}
277
278static uword
279vtep_addr_unref(ip46_address_t *ip)
280{
Eyal Bari0ded8512017-01-19 17:01:09 +0200281 uword *vtep = ip46_address_is_ip4(ip) ?
282 hash_get (vxlan_main.vtep4, ip->ip4.as_u32) :
283 hash_get_mem (vxlan_main.vtep6, &ip->ip6);
284 ASSERT(vtep);
285 if (--(*vtep) != 0)
286 return *vtep;
287 ip46_address_is_ip4(ip) ?
288 hash_unset (vxlan_main.vtep4, ip->ip4.as_u32) :
John Loe6bfeab2018-01-04 16:39:42 -0500289 hash_unset_mem_free (&vxlan_main.vtep6, &ip->ip6);
Eyal Bari0ded8512017-01-19 17:01:09 +0200290 return 0;
Eyal Barifff67c82016-12-21 12:45:47 +0200291}
292
Eyal Bari0ded8512017-01-19 17:01:09 +0200293typedef CLIB_PACKED(union {
294 struct {
Neale Ranns32e1c012016-11-22 17:07:28 +0000295 fib_node_index_t mfib_entry_index;
Eyal Bari0ded8512017-01-19 17:01:09 +0200296 adj_index_t mcast_adj_index;
297 };
298 u64 as_u64;
299}) mcast_shared_t;
300
301static inline mcast_shared_t
302mcast_shared_get(ip46_address_t * ip)
Eyal Barifff67c82016-12-21 12:45:47 +0200303{
304 ASSERT(ip46_address_is_multicast(ip));
Eyal Bari0ded8512017-01-19 17:01:09 +0200305 uword * p = hash_get_mem (vxlan_main.mcast_shared, ip);
306 ASSERT(p);
307 return (mcast_shared_t) { .as_u64 = *p };
Eyal Barifff67c82016-12-21 12:45:47 +0200308}
309
Eyal Bari0ded8512017-01-19 17:01:09 +0200310static inline void
Neale Ranns32e1c012016-11-22 17:07:28 +0000311mcast_shared_add(ip46_address_t *dst,
312 fib_node_index_t mfei,
313 adj_index_t ai)
314{
315 mcast_shared_t new_ep = {
316 .mcast_adj_index = ai,
317 .mfib_entry_index = mfei,
318 };
319
John Loe6bfeab2018-01-04 16:39:42 -0500320 hash_set_mem_alloc (&vxlan_main.mcast_shared, dst, new_ep.as_u64);
Neale Ranns32e1c012016-11-22 17:07:28 +0000321}
322
323static inline void
324mcast_shared_remove(ip46_address_t *dst)
325{
326 mcast_shared_t ep = mcast_shared_get(dst);
327
328 adj_unlock(ep.mcast_adj_index);
329 mfib_table_entry_delete_index(ep.mfib_entry_index,
330 MFIB_SOURCE_VXLAN);
331
John Loe6bfeab2018-01-04 16:39:42 -0500332 hash_unset_mem_free (&vxlan_main.mcast_shared, dst);
Eyal Barifff67c82016-12-21 12:45:47 +0200333}
334
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335int vnet_vxlan_add_del_tunnel
336(vnet_vxlan_add_del_tunnel_args_t *a, u32 * sw_if_indexp)
337{
338 vxlan_main_t * vxm = &vxlan_main;
339 vxlan_tunnel_t *t = 0;
340 vnet_main_t * vnm = vxm->vnet_main;
Eyal Barifff67c82016-12-21 12:45:47 +0200341 uword * p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700342 u32 sw_if_index = ~0;
Chris Luke99cb3352016-04-26 10:49:53 -0400343 vxlan4_tunnel_key_t key4;
344 vxlan6_tunnel_key_t key6;
John Loc42912d2016-11-07 18:30:47 -0500345 u32 is_ip6 = a->is_ip6;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346
John Lo56912c82016-12-08 16:10:02 -0500347 if (!is_ip6)
348 {
349 key4.src = a->dst.ip4.as_u32; /* decap src in key is encap dst in config */
350 key4.vni = clib_host_to_net_u32 (a->vni << 8);
351 p = hash_get (vxm->vxlan4_tunnel_by_key, key4.as_u64);
John Lo56912c82016-12-08 16:10:02 -0500352 }
353 else
354 {
Eyal Bari0765c6e2017-01-29 12:40:50 +0200355 key6.src = a->dst.ip6;
John Lo56912c82016-12-08 16:10:02 -0500356 key6.vni = clib_host_to_net_u32 (a->vni << 8);
357 p = hash_get_mem (vxm->vxlan6_tunnel_by_key, &key6);
John Lo56912c82016-12-08 16:10:02 -0500358 }
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600359
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360 if (a->is_add)
361 {
John Loc42912d2016-11-07 18:30:47 -0500362 l2input_main_t * l2im = &l2input_main;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600363 u32 dev_instance; /* real dev instance tunnel index */
364 u32 user_instance; /* request and actual instance number */
John Loc42912d2016-11-07 18:30:47 -0500365
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366 /* adding a tunnel: tunnel must not already exist */
367 if (p)
368 return VNET_API_ERROR_TUNNEL_EXIST;
369
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800370 /*if not set explicitly, default to l2 */
371 if(a->decap_next_index == ~0)
372 a->decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
Eyal Baria93ea422017-02-01 13:36:15 +0200373 if (!vxlan_decap_next_is_valid(vxm, is_ip6, a->decap_next_index))
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800374 return VNET_API_ERROR_INVALID_DECAP_NEXT;
375
Ed Warnickecb9cada2015-12-08 15:45:58 -0700376 pool_get_aligned (vxm->tunnels, t, CLIB_CACHE_LINE_BYTES);
Eyal Bari554075a2018-02-13 15:17:17 +0200377 *t = (vxlan_tunnel_t){ 0 };
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600378 dev_instance = t - vxm->tunnels;
379
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380 /* copy from arg structure */
381#define _(x) t->x = a->x;
382 foreach_copy_field;
383#undef _
Chris Luke99cb3352016-04-26 10:49:53 -0400384
Eyal Bari554075a2018-02-13 15:17:17 +0200385 vxlan_rewrite (t, is_ip6);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600386 /*
387 * Reconcile the real dev_instance and a possible requested instance.
388 */
389 user_instance = a->instance;
390 if (user_instance == ~0)
391 user_instance = dev_instance;
392 if (hash_get (vxm->instance_used, user_instance))
393 {
394 pool_put (vxm->tunnels, t);
395 return VNET_API_ERROR_INSTANCE_IN_USE;
396 }
397 hash_set (vxm->instance_used, user_instance, 1);
398
399 t->dev_instance = dev_instance; /* actual */
400 t->user_instance = user_instance; /* name */
401
Eyal Bari5ac9bf52017-01-02 14:29:21 +0200402 /* copy the key */
403 if (is_ip6)
Eyal Bari554075a2018-02-13 15:17:17 +0200404 hash_set_mem_alloc (&vxm->vxlan6_tunnel_by_key, &key6, dev_instance);
Chris Luke99cb3352016-04-26 10:49:53 -0400405 else
Eyal Bari554075a2018-02-13 15:17:17 +0200406 hash_set (vxm->vxlan4_tunnel_by_key, key4.as_u64, dev_instance);
Eyal Barifff67c82016-12-21 12:45:47 +0200407
Eyal Bari554075a2018-02-13 15:17:17 +0200408 t->hw_if_index = vnet_register_interface
409 (vnm, vxlan_device_class.index, dev_instance,
410 vxlan_hw_class.index, dev_instance);
411 vnet_hw_interface_t * hi = vnet_get_hw_interface (vnm, t->hw_if_index);
John Loe5453d02018-01-23 19:21:34 -0500412
413 /* Set vxlan tunnel output node */
414 u32 encap_index = !is_ip6 ?
415 vxlan4_encap_node.index : vxlan6_encap_node.index;
Eyal Bari554075a2018-02-13 15:17:17 +0200416 vnet_set_interface_output_node (vnm, t->hw_if_index, encap_index);
John Loe5453d02018-01-23 19:21:34 -0500417
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418 t->sw_if_index = sw_if_index = hi->sw_if_index;
John Loe5453d02018-01-23 19:21:34 -0500419
Dave Wallace60231f32015-12-17 21:04:30 -0500420 vec_validate_init_empty (vxm->tunnel_index_by_sw_if_index, sw_if_index, ~0);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600421 vxm->tunnel_index_by_sw_if_index[sw_if_index] = dev_instance;
Dave Wallace60231f32015-12-17 21:04:30 -0500422
John Loc42912d2016-11-07 18:30:47 -0500423 /* setup l2 input config with l2 feature and bd 0 to drop packet */
424 vec_validate (l2im->configs, sw_if_index);
425 l2im->configs[sw_if_index].feature_bitmap = L2INPUT_FEAT_DROP;
426 l2im->configs[sw_if_index].bd_index = 0;
John Loe5453d02018-01-23 19:21:34 -0500427
Eyal Bari3212c572017-03-06 11:47:50 +0200428 vnet_sw_interface_t * si = vnet_get_sw_interface (vnm, sw_if_index);
429 si->flags &= ~VNET_SW_INTERFACE_FLAG_HIDDEN;
John Loe5453d02018-01-23 19:21:34 -0500430 vnet_sw_interface_set_flags (vnm, sw_if_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431 VNET_SW_INTERFACE_FLAG_ADMIN_UP);
Eyal Bari3212c572017-03-06 11:47:50 +0200432
John Loc42912d2016-11-07 18:30:47 -0500433 fib_node_init(&t->node, FIB_NODE_TYPE_VXLAN_TUNNEL);
Eyal Baric5b13602016-11-24 19:42:43 +0200434 fib_prefix_t tun_dst_pfx;
Eyal Baric5b13602016-11-24 19:42:43 +0200435 vnet_flood_class_t flood_class = VNET_FLOOD_CLASS_TUNNEL_NORMAL;
John Loc42912d2016-11-07 18:30:47 -0500436
Eyal Baric5b13602016-11-24 19:42:43 +0200437 fib_prefix_from_ip46_addr(&t->dst, &tun_dst_pfx);
John Lo56912c82016-12-08 16:10:02 -0500438 if (!ip46_address_is_multicast(&t->dst))
439 {
440 /* Unicast tunnel -
441 * source the FIB entry for the tunnel's destination
442 * and become a child thereof. The tunnel will then get poked
443 * when the forwarding for the entry updates, and the tunnel can
444 * re-stack accordingly
445 */
Eyal Bari0ded8512017-01-19 17:01:09 +0200446 vtep_addr_ref(&t->src);
John Lo56912c82016-12-08 16:10:02 -0500447 t->fib_entry_index = fib_table_entry_special_add
448 (t->encap_fib_index, &tun_dst_pfx, FIB_SOURCE_RR,
Neale Rannsa0558302017-04-13 00:44:52 -0700449 FIB_ENTRY_FLAG_NONE);
John Lo56912c82016-12-08 16:10:02 -0500450 t->sibling_index = fib_entry_child_add
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600451 (t->fib_entry_index, FIB_NODE_TYPE_VXLAN_TUNNEL, dev_instance);
John Lo56912c82016-12-08 16:10:02 -0500452 vxlan_tunnel_restack_dpo(t);
453 }
Eyal Barifff67c82016-12-21 12:45:47 +0200454 else
John Lo56912c82016-12-08 16:10:02 -0500455 {
456 /* Multicast tunnel -
457 * as the same mcast group can be used for mutiple mcast tunnels
458 * with different VNIs, create the output fib adjecency only if
459 * it does not already exist
460 */
Eyal Bari0765c6e2017-01-29 12:40:50 +0200461 fib_protocol_t fp = fib_ip_proto(is_ip6);
Eyal Baric5b13602016-11-24 19:42:43 +0200462
Eyal Barifff67c82016-12-21 12:45:47 +0200463 if (vtep_addr_ref(&t->dst) == 1)
Neale Ranns32e1c012016-11-22 17:07:28 +0000464 {
465 fib_node_index_t mfei;
466 adj_index_t ai;
467 fib_route_path_t path = {
Neale Rannsda78f952017-05-24 09:15:43 -0700468 .frp_proto = fib_proto_to_dpo(fp),
Neale Ranns32e1c012016-11-22 17:07:28 +0000469 .frp_addr = zero_addr,
470 .frp_sw_if_index = 0xffffffff,
471 .frp_fib_index = ~0,
472 .frp_weight = 0,
473 .frp_flags = FIB_ROUTE_PATH_LOCAL,
474 };
475 const mfib_prefix_t mpfx = {
476 .fp_proto = fp,
477 .fp_len = (is_ip6 ? 128 : 32),
478 .fp_grp_addr = tun_dst_pfx.fp_addr,
479 };
Eyal Barifff67c82016-12-21 12:45:47 +0200480
Neale Ranns32e1c012016-11-22 17:07:28 +0000481 /*
482 * Setup the (*,G) to receive traffic on the mcast group
483 * - the forwarding interface is for-us
484 * - the accepting interface is that from the API
485 */
486 mfib_table_entry_path_update(t->encap_fib_index,
487 &mpfx,
488 MFIB_SOURCE_VXLAN,
489 &path,
490 MFIB_ITF_FLAG_FORWARD);
491
492 path.frp_sw_if_index = a->mcast_sw_if_index;
493 path.frp_flags = FIB_ROUTE_PATH_FLAG_NONE;
494 mfei = mfib_table_entry_path_update(t->encap_fib_index,
495 &mpfx,
496 MFIB_SOURCE_VXLAN,
497 &path,
498 MFIB_ITF_FLAG_ACCEPT);
499
500 /*
501 * Create the mcast adjacency to send traffic to the group
502 */
503 ai = adj_mcast_add_or_lock(fp,
504 fib_proto_to_link(fp),
505 a->mcast_sw_if_index);
506
507 /*
508 * create a new end-point
509 */
510 mcast_shared_add(&t->dst, mfei, ai);
511 }
512
Eyal Bari0765c6e2017-01-29 12:40:50 +0200513 dpo_id_t dpo = DPO_INVALID;
514 mcast_shared_t ep = mcast_shared_get(&t->dst);
Neale Ranns32e1c012016-11-22 17:07:28 +0000515
Eyal Barifff67c82016-12-21 12:45:47 +0200516 /* Stack shared mcast dst mac addr rewrite on encap */
Eyal Bari646ba9b2017-02-26 15:27:27 +0200517 dpo_set (&dpo, DPO_ADJACENCY_MCAST,
Neale Ranns32e1c012016-11-22 17:07:28 +0000518 fib_proto_to_dpo(fp),
519 ep.mcast_adj_index);
520
Eyal Baric5b13602016-11-24 19:42:43 +0200521 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
Eyal Barifff67c82016-12-21 12:45:47 +0200522 dpo_reset (&dpo);
523 flood_class = VNET_FLOOD_CLASS_TUNNEL_MASTER;
John Lo56912c82016-12-08 16:10:02 -0500524 }
525
Eyal Baric5b13602016-11-24 19:42:43 +0200526 vnet_get_sw_interface (vnet_get_main(), sw_if_index)->flood_class = flood_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527 }
528 else
529 {
530 /* deleting a tunnel: tunnel must exist */
John Lo37682e12016-11-30 12:51:39 -0500531 if (!p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700532 return VNET_API_ERROR_NO_SUCH_ENTRY;
533
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600534 u32 instance = p[0];
535 t = pool_elt_at_index (vxm->tunnels, instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536
Eyal Baribc799c92017-04-06 03:26:59 +0300537 sw_if_index = t->sw_if_index;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600538 vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600540 vxm->tunnel_index_by_sw_if_index[sw_if_index] = ~0;
Dave Wallace60231f32015-12-17 21:04:30 -0500541
John Loc42912d2016-11-07 18:30:47 -0500542 if (!is_ip6)
Eyal Barifff67c82016-12-21 12:45:47 +0200543 hash_unset (vxm->vxlan4_tunnel_by_key, key4.as_u64);
Chris Luke99cb3352016-04-26 10:49:53 -0400544 else
John Loe6bfeab2018-01-04 16:39:42 -0500545 hash_unset_mem_free (&vxm->vxlan6_tunnel_by_key, &key6);
Eyal Barifff67c82016-12-21 12:45:47 +0200546
547 if (!ip46_address_is_multicast(&t->dst))
548 {
Eyal Bari5ac9bf52017-01-02 14:29:21 +0200549 vtep_addr_unref(&t->src);
Eyal Barifff67c82016-12-21 12:45:47 +0200550 fib_entry_child_remove(t->fib_entry_index, t->sibling_index);
551 fib_table_entry_delete_index(t->fib_entry_index, FIB_SOURCE_RR);
552 }
553 else if (vtep_addr_unref(&t->dst) == 0)
554 {
Neale Ranns32e1c012016-11-22 17:07:28 +0000555 mcast_shared_remove(&t->dst);
Eyal Barifff67c82016-12-21 12:45:47 +0200556 }
557
Eyal Bari554075a2018-02-13 15:17:17 +0200558 vnet_delete_hw_interface (vnm, t->hw_if_index);
Jon Loeliger25ef2b52018-02-23 17:02:41 -0600559 hash_unset (vxm->instance_used, t->user_instance);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600560
Eyal Barifff67c82016-12-21 12:45:47 +0200561 fib_node_deinit(&t->node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562 vec_free (t->rewrite);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563 pool_put (vxm->tunnels, t);
564 }
565
566 if (sw_if_indexp)
567 *sw_if_indexp = sw_if_index;
568
569 return 0;
570}
571
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800572static uword get_decap_next_for_node(u32 node_index, u32 ipv4_set)
573{
574 vxlan_main_t * vxm = &vxlan_main;
575 vlib_main_t * vm = vxm->vlib_main;
Eyal Bari0765c6e2017-01-29 12:40:50 +0200576 uword input_node = (ipv4_set) ? vxlan4_input_node.index :
577 vxlan6_input_node.index;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800578
Eyal Bari0765c6e2017-01-29 12:40:50 +0200579 return vlib_node_add_next (vm, input_node, node_index);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800580}
581
Ed Warnickecb9cada2015-12-08 15:45:58 -0700582static uword unformat_decap_next (unformat_input_t * input, va_list * args)
583{
584 u32 * result = va_arg (*args, u32 *);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800585 u32 ipv4_set = va_arg (*args, int);
586 vxlan_main_t * vxm = &vxlan_main;
587 vlib_main_t * vm = vxm->vlib_main;
588 u32 node_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700589 u32 tmp;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800590
Ed Warnickecb9cada2015-12-08 15:45:58 -0700591 if (unformat (input, "l2"))
592 *result = VXLAN_INPUT_NEXT_L2_INPUT;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800593 else if (unformat (input, "node %U", unformat_vlib_node, vm, &node_index))
594 *result = get_decap_next_for_node(node_index, ipv4_set);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700595 else if (unformat (input, "%d", &tmp))
596 *result = tmp;
597 else
598 return 0;
599 return 1;
600}
601
602static clib_error_t *
603vxlan_add_del_tunnel_command_fn (vlib_main_t * vm,
604 unformat_input_t * input,
605 vlib_cli_command_t * cmd)
606{
607 unformat_input_t _line_input, * line_input = &_line_input;
Eyal Baric5b13602016-11-24 19:42:43 +0200608 ip46_address_t src , dst;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700609 u8 is_add = 1;
610 u8 src_set = 0;
611 u8 dst_set = 0;
Eyal Baric5b13602016-11-24 19:42:43 +0200612 u8 grp_set = 0;
Chris Luke99cb3352016-04-26 10:49:53 -0400613 u8 ipv4_set = 0;
614 u8 ipv6_set = 0;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600615 u32 instance = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700616 u32 encap_fib_index = 0;
Eyal Baric5b13602016-11-24 19:42:43 +0200617 u32 mcast_sw_if_index = ~0;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800618 u32 decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700619 u32 vni = 0;
620 u32 tmp;
621 int rv;
622 vnet_vxlan_add_del_tunnel_args_t _a, * a = &_a;
Eyal Baric5b13602016-11-24 19:42:43 +0200623 u32 tunnel_sw_if_index;
Billy McFalla9a20e72017-02-15 11:39:12 -0500624 clib_error_t *error = NULL;
Eyal Baric5b13602016-11-24 19:42:43 +0200625
626 /* Cant "universally zero init" (={0}) due to GCC bug 53119 */
627 memset(&src, 0, sizeof src);
628 memset(&dst, 0, sizeof dst);
629
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630 /* Get a line of input. */
631 if (! unformat_user (input, unformat_line_input, line_input))
632 return 0;
633
634 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) {
635 if (unformat (line_input, "del"))
Chris Luke99cb3352016-04-26 10:49:53 -0400636 {
637 is_add = 0;
638 }
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600639 else if (unformat (line_input, "instance %d", &instance))
640 ;
Chris Luke99cb3352016-04-26 10:49:53 -0400641 else if (unformat (line_input, "src %U",
642 unformat_ip4_address, &src.ip4))
643 {
644 src_set = 1;
645 ipv4_set = 1;
646 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647 else if (unformat (line_input, "dst %U",
Chris Luke99cb3352016-04-26 10:49:53 -0400648 unformat_ip4_address, &dst.ip4))
649 {
650 dst_set = 1;
651 ipv4_set = 1;
652 }
653 else if (unformat (line_input, "src %U",
654 unformat_ip6_address, &src.ip6))
655 {
656 src_set = 1;
657 ipv6_set = 1;
658 }
659 else if (unformat (line_input, "dst %U",
660 unformat_ip6_address, &dst.ip6))
661 {
662 dst_set = 1;
663 ipv6_set = 1;
664 }
Eyal Baric5b13602016-11-24 19:42:43 +0200665 else if (unformat (line_input, "group %U %U",
666 unformat_ip4_address, &dst.ip4,
667 unformat_vnet_sw_interface,
668 vnet_get_main(), &mcast_sw_if_index))
669 {
670 grp_set = dst_set = 1;
671 ipv4_set = 1;
672 }
673 else if (unformat (line_input, "group %U %U",
674 unformat_ip6_address, &dst.ip6,
675 unformat_vnet_sw_interface,
676 vnet_get_main(), &mcast_sw_if_index))
677 {
678 grp_set = dst_set = 1;
679 ipv6_set = 1;
680 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700681 else if (unformat (line_input, "encap-vrf-id %d", &tmp))
682 {
Eyal Bari0765c6e2017-01-29 12:40:50 +0200683 encap_fib_index = fib_table_find (fib_ip_proto (ipv6_set), tmp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700684 if (encap_fib_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500685 {
686 error = clib_error_return (0, "nonexistent encap-vrf-id %d", tmp);
687 goto done;
688 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700689 }
690 else if (unformat (line_input, "decap-next %U", unformat_decap_next,
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800691 &decap_next_index, ipv4_set))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700692 ;
693 else if (unformat (line_input, "vni %d", &vni))
694 {
695 if (vni >> 24)
Billy McFalla9a20e72017-02-15 11:39:12 -0500696 {
697 error = clib_error_return (0, "vni %d out of range", vni);
698 goto done;
699 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700700 }
701 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500702 {
703 error = clib_error_return (0, "parse error: '%U'",
704 format_unformat_error, line_input);
705 goto done;
706 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707 }
708
Ed Warnickecb9cada2015-12-08 15:45:58 -0700709 if (src_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500710 {
711 error = clib_error_return (0, "tunnel src address not specified");
712 goto done;
713 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700714
715 if (dst_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500716 {
717 error = clib_error_return (0, "tunnel dst address not specified");
718 goto done;
719 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700720
Eyal Baric5b13602016-11-24 19:42:43 +0200721 if (grp_set && !ip46_address_is_multicast(&dst))
Billy McFalla9a20e72017-02-15 11:39:12 -0500722 {
723 error = clib_error_return (0, "tunnel group address not multicast");
724 goto done;
725 }
Eyal Baric5b13602016-11-24 19:42:43 +0200726
John Lo56912c82016-12-08 16:10:02 -0500727 if (grp_set == 0 && ip46_address_is_multicast(&dst))
Billy McFalla9a20e72017-02-15 11:39:12 -0500728 {
729 error = clib_error_return (0, "dst address must be unicast");
730 goto done;
731 }
John Lo56912c82016-12-08 16:10:02 -0500732
Eyal Baric5b13602016-11-24 19:42:43 +0200733 if (grp_set && mcast_sw_if_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500734 {
735 error = clib_error_return (0, "tunnel nonexistent multicast device");
736 goto done;
737 }
Eyal Baric5b13602016-11-24 19:42:43 +0200738
Chris Luke99cb3352016-04-26 10:49:53 -0400739 if (ipv4_set && ipv6_set)
Billy McFalla9a20e72017-02-15 11:39:12 -0500740 {
741 error = clib_error_return (0, "both IPv4 and IPv6 addresses specified");
742 goto done;
743 }
Chris Luke99cb3352016-04-26 10:49:53 -0400744
Eyal Baric5b13602016-11-24 19:42:43 +0200745 if (ip46_address_cmp(&src, &dst) == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500746 {
747 error = clib_error_return (0, "src and dst addresses are identical");
748 goto done;
749 }
Chris Luke99cb3352016-04-26 10:49:53 -0400750
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800751 if (decap_next_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500752 {
753 error = clib_error_return (0, "next node not found");
754 goto done;
755 }
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800756
Ed Warnickecb9cada2015-12-08 15:45:58 -0700757 if (vni == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500758 {
759 error = clib_error_return (0, "vni not specified");
760 goto done;
761 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700762
763 memset (a, 0, sizeof (*a));
764
765 a->is_add = is_add;
Chris Luke99cb3352016-04-26 10:49:53 -0400766 a->is_ip6 = ipv6_set;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600767 a->instance = instance;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700768
769#define _(x) a->x = x;
770 foreach_copy_field;
771#undef _
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600772
Eyal Baric5b13602016-11-24 19:42:43 +0200773 rv = vnet_vxlan_add_del_tunnel (a, &tunnel_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700774
775 switch(rv)
776 {
777 case 0:
Pierre Pfister78ea9c22016-05-23 12:51:54 +0100778 if (is_add)
John Loc42912d2016-11-07 18:30:47 -0500779 vlib_cli_output(vm, "%U\n", format_vnet_sw_if_index_name,
Eyal Baric5b13602016-11-24 19:42:43 +0200780 vnet_get_main(), tunnel_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700781 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700782
783 case VNET_API_ERROR_TUNNEL_EXIST:
Billy McFalla9a20e72017-02-15 11:39:12 -0500784 error = clib_error_return (0, "tunnel already exists...");
785 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700786
787 case VNET_API_ERROR_NO_SUCH_ENTRY:
Billy McFalla9a20e72017-02-15 11:39:12 -0500788 error = clib_error_return (0, "tunnel does not exist...");
789 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700790
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600791 case VNET_API_ERROR_INSTANCE_IN_USE:
792 error = clib_error_return (0, "Instance is in use");
793 goto done;
794
Ed Warnickecb9cada2015-12-08 15:45:58 -0700795 default:
Billy McFalla9a20e72017-02-15 11:39:12 -0500796 error = clib_error_return
Ed Warnickecb9cada2015-12-08 15:45:58 -0700797 (0, "vnet_vxlan_add_del_tunnel returned %d", rv);
Billy McFalla9a20e72017-02-15 11:39:12 -0500798 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700799 }
800
Billy McFalla9a20e72017-02-15 11:39:12 -0500801done:
802 unformat_free (line_input);
803
804 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700805}
806
Billy McFallc5d9cda2016-09-14 10:39:58 -0400807/*?
808 * Add or delete a VXLAN Tunnel.
809 *
810 * VXLAN provides the features needed to allow L2 bridge domains (BDs)
811 * to span multiple servers. This is done by building an L2 overlay on
812 * top of an L3 network underlay using VXLAN tunnels.
813 *
814 * This makes it possible for servers to be co-located in the same data
815 * center or be separated geographically as long as they are reachable
816 * through the underlay L3 network.
817 *
818 * You can refer to this kind of L2 overlay bridge domain as a VXLAN
819 * (Virtual eXtensible VLAN) segment.
820 *
821 * @cliexpar
822 * Example of how to create a VXLAN Tunnel:
John Loc42912d2016-11-07 18:30:47 -0500823 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 encap-vrf-id 7}
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600824 * Example of how to create a VXLAN Tunnel with a known name, vxlan_tunnel42:
825 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 instance 42}
Billy McFallc5d9cda2016-09-14 10:39:58 -0400826 * Example of how to delete a VXLAN Tunnel:
827 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 del}
828 ?*/
829/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700830VLIB_CLI_COMMAND (create_vxlan_tunnel_command, static) = {
831 .path = "create vxlan tunnel",
832 .short_help =
Eyal Baric5b13602016-11-24 19:42:43 +0200833 "create vxlan tunnel src <local-vtep-addr>"
834 " {dst <remote-vtep-addr>|group <mcast-vtep-addr> <intf-name>} vni <nn>"
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600835 " [instance <id>]"
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800836 " [encap-vrf-id <nn>] [decap-next [l2|node <name>]] [del]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700837 .function = vxlan_add_del_tunnel_command_fn,
838};
Billy McFallc5d9cda2016-09-14 10:39:58 -0400839/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700840
841static clib_error_t *
842show_vxlan_tunnel_command_fn (vlib_main_t * vm,
843 unformat_input_t * input,
844 vlib_cli_command_t * cmd)
845{
846 vxlan_main_t * vxm = &vxlan_main;
847 vxlan_tunnel_t * t;
848
849 if (pool_elts (vxm->tunnels) == 0)
850 vlib_cli_output (vm, "No vxlan tunnels configured...");
851
852 pool_foreach (t, vxm->tunnels,
853 ({
854 vlib_cli_output (vm, "%U", format_vxlan_tunnel, t);
855 }));
856
857 return 0;
858}
859
Billy McFallc5d9cda2016-09-14 10:39:58 -0400860/*?
861 * Display all the VXLAN Tunnel entries.
862 *
863 * @cliexpar
864 * Example of how to display the VXLAN Tunnel entries:
865 * @cliexstart{show vxlan tunnel}
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800866 * [0] src 10.0.3.1 dst 10.0.3.3 vni 13 encap_fib_index 0 sw_if_index 5 decap_next l2
Billy McFallc5d9cda2016-09-14 10:39:58 -0400867 * @cliexend
868 ?*/
869/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700870VLIB_CLI_COMMAND (show_vxlan_tunnel_command, static) = {
871 .path = "show vxlan tunnel",
Billy McFallc5d9cda2016-09-14 10:39:58 -0400872 .short_help = "show vxlan tunnel",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700873 .function = show_vxlan_tunnel_command_fn,
874};
Billy McFallc5d9cda2016-09-14 10:39:58 -0400875/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876
Chris Luke99cb3352016-04-26 10:49:53 -0400877
John Lo2b81eb82017-01-30 13:12:10 -0500878void vnet_int_vxlan_bypass_mode (u32 sw_if_index,
879 u8 is_ip6,
880 u8 is_enable)
881{
882 if (is_ip6)
883 vnet_feature_enable_disable ("ip6-unicast", "ip6-vxlan-bypass",
884 sw_if_index, is_enable, 0, 0);
885 else
886 vnet_feature_enable_disable ("ip4-unicast", "ip4-vxlan-bypass",
887 sw_if_index, is_enable, 0, 0);
888}
889
890
891static clib_error_t *
892set_ip_vxlan_bypass (u32 is_ip6,
893 unformat_input_t * input,
894 vlib_cli_command_t * cmd)
895{
896 unformat_input_t _line_input, * line_input = &_line_input;
897 vnet_main_t * vnm = vnet_get_main();
898 clib_error_t * error = 0;
899 u32 sw_if_index, is_enable;
900
901 sw_if_index = ~0;
902 is_enable = 1;
903
904 if (! unformat_user (input, unformat_line_input, line_input))
905 return 0;
906
907 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
908 {
909 if (unformat_user (line_input, unformat_vnet_sw_interface, vnm, &sw_if_index))
910 ;
911 else if (unformat (line_input, "del"))
912 is_enable = 0;
913 else
914 {
915 error = unformat_parse_error (line_input);
916 goto done;
917 }
918 }
919
920 if (~0 == sw_if_index)
921 {
922 error = clib_error_return (0, "unknown interface `%U'",
923 format_unformat_error, line_input);
924 goto done;
925 }
926
927 vnet_int_vxlan_bypass_mode (sw_if_index, is_ip6, is_enable);
928
929 done:
Billy McFalla9a20e72017-02-15 11:39:12 -0500930 unformat_free (line_input);
931
John Lo2b81eb82017-01-30 13:12:10 -0500932 return error;
933}
934
935static clib_error_t *
936set_ip4_vxlan_bypass (vlib_main_t * vm,
937 unformat_input_t * input,
938 vlib_cli_command_t * cmd)
939{
940 return set_ip_vxlan_bypass (0, input, cmd);
941}
942
943/*?
944 * This command adds the 'ip4-vxlan-bypass' graph node for a given interface.
945 * By adding the IPv4 vxlan-bypass graph node to an interface, the node checks
946 * for and validate input vxlan packet and bypass ip4-lookup, ip4-local,
947 * ip4-udp-lookup nodes to speedup vxlan packet forwarding. This node will
948 * cause extra overhead to for non-vxlan packets which is kept at a minimum.
949 *
950 * @cliexpar
951 * @parblock
952 * Example of graph node before ip4-vxlan-bypass is enabled:
953 * @cliexstart{show vlib graph ip4-vxlan-bypass}
954 * Name Next Previous
955 * ip4-vxlan-bypass error-drop [0]
956 * vxlan4-input [1]
957 * ip4-lookup [2]
958 * @cliexend
959 *
960 * Example of how to enable ip4-vxlan-bypass on an interface:
961 * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0}
962 *
963 * Example of graph node after ip4-vxlan-bypass is enabled:
964 * @cliexstart{show vlib graph ip4-vxlan-bypass}
965 * Name Next Previous
966 * ip4-vxlan-bypass error-drop [0] ip4-input
967 * vxlan4-input [1] ip4-input-no-checksum
968 * ip4-lookup [2]
969 * @cliexend
970 *
971 * Example of how to display the feature enabed on an interface:
972 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
973 * IP feature paths configured on GigabitEthernet2/0/0...
974 * ...
975 * ipv4 unicast:
976 * ip4-vxlan-bypass
977 * ip4-lookup
978 * ...
979 * @cliexend
980 *
981 * Example of how to disable ip4-vxlan-bypass on an interface:
982 * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0 del}
983 * @endparblock
984?*/
985/* *INDENT-OFF* */
986VLIB_CLI_COMMAND (set_interface_ip_vxlan_bypass_command, static) = {
987 .path = "set interface ip vxlan-bypass",
988 .function = set_ip4_vxlan_bypass,
989 .short_help = "set interface ip vxlan-bypass <interface> [del]",
990};
991/* *INDENT-ON* */
992
993static clib_error_t *
994set_ip6_vxlan_bypass (vlib_main_t * vm,
995 unformat_input_t * input,
996 vlib_cli_command_t * cmd)
997{
998 return set_ip_vxlan_bypass (1, input, cmd);
999}
1000
1001/*?
1002 * This command adds the 'ip6-vxlan-bypass' graph node for a given interface.
1003 * By adding the IPv6 vxlan-bypass graph node to an interface, the node checks
1004 * for and validate input vxlan packet and bypass ip6-lookup, ip6-local,
1005 * ip6-udp-lookup nodes to speedup vxlan packet forwarding. This node will
1006 * cause extra overhead to for non-vxlan packets which is kept at a minimum.
1007 *
1008 * @cliexpar
1009 * @parblock
1010 * Example of graph node before ip6-vxlan-bypass is enabled:
1011 * @cliexstart{show vlib graph ip6-vxlan-bypass}
1012 * Name Next Previous
1013 * ip6-vxlan-bypass error-drop [0]
1014 * vxlan6-input [1]
1015 * ip6-lookup [2]
1016 * @cliexend
1017 *
1018 * Example of how to enable ip6-vxlan-bypass on an interface:
1019 * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0}
1020 *
1021 * Example of graph node after ip6-vxlan-bypass is enabled:
1022 * @cliexstart{show vlib graph ip6-vxlan-bypass}
1023 * Name Next Previous
1024 * ip6-vxlan-bypass error-drop [0] ip6-input
1025 * vxlan6-input [1] ip4-input-no-checksum
1026 * ip6-lookup [2]
1027 * @cliexend
1028 *
1029 * Example of how to display the feature enabed on an interface:
1030 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1031 * IP feature paths configured on GigabitEthernet2/0/0...
1032 * ...
1033 * ipv6 unicast:
1034 * ip6-vxlan-bypass
1035 * ip6-lookup
1036 * ...
1037 * @cliexend
1038 *
1039 * Example of how to disable ip6-vxlan-bypass on an interface:
1040 * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0 del}
1041 * @endparblock
1042?*/
1043/* *INDENT-OFF* */
1044VLIB_CLI_COMMAND (set_interface_ip6_vxlan_bypass_command, static) = {
1045 .path = "set interface ip6 vxlan-bypass",
1046 .function = set_ip6_vxlan_bypass,
1047 .short_help = "set interface ip vxlan-bypass <interface> [del]",
1048};
1049/* *INDENT-ON* */
1050
Ed Warnickecb9cada2015-12-08 15:45:58 -07001051clib_error_t *vxlan_init (vlib_main_t *vm)
1052{
1053 vxlan_main_t * vxm = &vxlan_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001054
1055 vxm->vnet_main = vnet_get_main();
1056 vxm->vlib_main = vm;
1057
Chris Luke99cb3352016-04-26 10:49:53 -04001058 /* initialize the ip6 hash */
1059 vxm->vxlan6_tunnel_by_key = hash_create_mem(0,
1060 sizeof(vxlan6_tunnel_key_t),
1061 sizeof(uword));
Eyal Bari0ded8512017-01-19 17:01:09 +02001062 vxm->vtep6 = hash_create_mem(0,
1063 sizeof(ip6_address_t),
Eyal Barifff67c82016-12-21 12:45:47 +02001064 sizeof(uword));
Eyal Bari0ded8512017-01-19 17:01:09 +02001065 vxm->mcast_shared = hash_create_mem(0,
1066 sizeof(ip46_address_t),
1067 sizeof(mcast_shared_t));
Chris Luke99cb3352016-04-26 10:49:53 -04001068
Ed Warnickecb9cada2015-12-08 15:45:58 -07001069 udp_register_dst_port (vm, UDP_DST_PORT_vxlan,
Chris Luke99cb3352016-04-26 10:49:53 -04001070 vxlan4_input_node.index, /* is_ip4 */ 1);
1071 udp_register_dst_port (vm, UDP_DST_PORT_vxlan6,
1072 vxlan6_input_node.index, /* is_ip4 */ 0);
John Loc42912d2016-11-07 18:30:47 -05001073
1074 fib_node_register_type(FIB_NODE_TYPE_VXLAN_TUNNEL, &vxlan_vft);
1075
Ed Warnickecb9cada2015-12-08 15:45:58 -07001076 return 0;
1077}
1078
1079VLIB_INIT_FUNCTION(vxlan_init);
Jon Loeliger3d460bd2018-02-01 16:36:12 -06001080
1081/*
1082 * Local Variables:
1083 * eval: (c-set-style "gnu")
1084 * End:
1085 */