blob: 1b3df2a87449af1b1a1a200ad2555427dea0384a [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
47 switch (next_index)
48 {
49 case VXLAN_INPUT_NEXT_DROP:
50 return format (s, "drop");
51 case VXLAN_INPUT_NEXT_L2_INPUT:
52 return format (s, "l2");
53 default:
John Lo56912c82016-12-08 16:10:02 -050054 return format (s, "index %d", next_index);
Hongjun Nibeb4bf72016-11-25 00:03:46 +080055 }
56 return s;
57}
58
Ed Warnickecb9cada2015-12-08 15:45:58 -070059u8 * format_vxlan_tunnel (u8 * s, va_list * args)
60{
61 vxlan_tunnel_t * t = va_arg (*args, vxlan_tunnel_t *);
62 vxlan_main_t * ngm = &vxlan_main;
63
John Lo56912c82016-12-08 16:10:02 -050064 s = format (s, "[%d] src %U dst %U vni %d sw_if_index %d ",
Ed Warnickecb9cada2015-12-08 15:45:58 -070065 t - ngm->tunnels,
Damjan Marion86be4872016-05-24 23:19:11 +020066 format_ip46_address, &t->src, IP46_TYPE_ANY,
67 format_ip46_address, &t->dst, IP46_TYPE_ANY,
John Lo56912c82016-12-08 16:10:02 -050068 t->vni, t->sw_if_index);
69
70 if (ip46_address_is_multicast (&t->dst))
71 s = format (s, "mcast_sw_if_index %d ", t->mcast_sw_if_index);
72
73 s = format (s, "encap_fib_index %d fib_entry_index %d decap_next %U\n",
74 t->encap_fib_index, t->fib_entry_index,
75 format_decap_next, t->decap_next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070076 return s;
77}
78
79static u8 * format_vxlan_name (u8 * s, va_list * args)
80{
81 u32 dev_instance = va_arg (*args, u32);
82 return format (s, "vxlan_tunnel%d", dev_instance);
83}
84
85static uword dummy_interface_tx (vlib_main_t * vm,
86 vlib_node_runtime_t * node,
87 vlib_frame_t * frame)
88{
89 clib_warning ("you shouldn't be here, leaking buffers...");
90 return frame->n_vectors;
91}
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,
107 .tx_function = dummy_interface_tx,
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100108 .admin_up_down_function = vxlan_interface_admin_up_down,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109};
110
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111static u8 * format_vxlan_header_with_length (u8 * s, va_list * args)
112{
113 u32 dev_instance = va_arg (*args, u32);
114 s = format (s, "unimplemented dev %u", dev_instance);
115 return s;
116}
117
118VNET_HW_INTERFACE_CLASS (vxlan_hw_class) = {
119 .name = "VXLAN",
120 .format_header = format_vxlan_header_with_length,
Neale Rannsb80c5362016-10-08 13:03:40 +0100121 .build_rewrite = default_build_rewrite,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122};
123
Eyal Baric5b13602016-11-24 19:42:43 +0200124static void
125vxlan_tunnel_restack_dpo(vxlan_tunnel_t * t)
126{
127 dpo_id_t dpo = DPO_INVALID;
128 u32 encap_index = ip46_address_is_ip4(&t->dst) ?
129 vxlan4_encap_node.index : vxlan6_encap_node.index;
130 fib_forward_chain_type_t forw_type = ip46_address_is_ip4(&t->dst) ?
131 FIB_FORW_CHAIN_TYPE_UNICAST_IP4 : FIB_FORW_CHAIN_TYPE_UNICAST_IP6;
132
133 fib_entry_contribute_forwarding (t->fib_entry_index, forw_type, &dpo);
134 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
135 dpo_reset(&dpo);
136}
John Loc42912d2016-11-07 18:30:47 -0500137
138static vxlan_tunnel_t *
139vxlan_tunnel_from_fib_node (fib_node_t *node)
140{
141#if (CLIB_DEBUG > 0)
142 ASSERT(FIB_NODE_TYPE_VXLAN_TUNNEL == node->fn_type);
143#endif
144 return ((vxlan_tunnel_t*) (((char*)node) -
145 STRUCT_OFFSET_OF(vxlan_tunnel_t, node)));
146}
147
148/**
149 * Function definition to backwalk a FIB node -
150 * Here we will restack the new dpo of VXLAN DIP to encap node.
151 */
152static fib_node_back_walk_rc_t
153vxlan_tunnel_back_walk (fib_node_t *node,
154 fib_node_back_walk_ctx_t *ctx)
155{
Eyal Baric5b13602016-11-24 19:42:43 +0200156 vxlan_tunnel_restack_dpo(vxlan_tunnel_from_fib_node(node));
John Loc42912d2016-11-07 18:30:47 -0500157 return (FIB_NODE_BACK_WALK_CONTINUE);
158}
159
160/**
161 * Function definition to get a FIB node from its index
162 */
163static fib_node_t*
164vxlan_tunnel_fib_node_get (fib_node_index_t index)
165{
166 vxlan_tunnel_t * t;
167 vxlan_main_t * vxm = &vxlan_main;
168
169 t = pool_elt_at_index(vxm->tunnels, index);
170
171 return (&t->node);
172}
173
174/**
175 * Function definition to inform the FIB node that its last lock has gone.
176 */
177static void
178vxlan_tunnel_last_lock_gone (fib_node_t *node)
179{
180 /*
181 * The VXLAN tunnel is a root of the graph. As such
182 * it never has children and thus is never locked.
183 */
184 ASSERT(0);
185}
186
187/*
188 * Virtual function table registered by VXLAN tunnels
189 * for participation in the FIB object graph.
190 */
191const static fib_node_vft_t vxlan_vft = {
192 .fnv_get = vxlan_tunnel_fib_node_get,
193 .fnv_last_lock = vxlan_tunnel_last_lock_gone,
194 .fnv_back_walk = vxlan_tunnel_back_walk,
195};
196
197
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198#define foreach_copy_field \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199_(vni) \
Eyal Baric5b13602016-11-24 19:42:43 +0200200_(mcast_sw_if_index) \
201_(encap_fib_index) \
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800202_(decap_next_index) \
Eyal Baric5b13602016-11-24 19:42:43 +0200203_(src) \
204_(dst)
Chris Luke99cb3352016-04-26 10:49:53 -0400205
Eyal Baria93ea422017-02-01 13:36:15 +0200206static int
207vxlan_rewrite (vxlan_tunnel_t * t, bool is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208{
Eyal Baria93ea422017-02-01 13:36:15 +0200209 union {
210 ip4_vxlan_header_t * h4;
211 ip6_vxlan_header_t * h6;
212 u8 *rw;
213 } r = { .rw = 0 };
214 int len = is_ip6 ? sizeof *r.h6 : sizeof *r.h4;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215
Eyal Baria93ea422017-02-01 13:36:15 +0200216 vec_validate_aligned (r.rw, len-1, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217
Eyal Baria93ea422017-02-01 13:36:15 +0200218 udp_header_t * udp;
219 vxlan_header_t * vxlan;
220 /* Fixed portion of the (outer) ip header */
221 if (!is_ip6)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800222 {
Eyal Baria93ea422017-02-01 13:36:15 +0200223 ip4_header_t * ip = &r.h4->ip4;
224 udp = &r.h4->udp, vxlan = &r.h4->vxlan;
225 ip->ip_version_and_header_length = 0x45;
226 ip->ttl = 254;
227 ip->protocol = IP_PROTOCOL_UDP;
228
229 ip->src_address = t->src.ip4;
230 ip->dst_address = t->dst.ip4;
231
232 /* we fix up the ip4 header length and checksum after-the-fact */
233 ip->checksum = ip4_header_checksum (ip);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800234 }
235 else
236 {
Eyal Baria93ea422017-02-01 13:36:15 +0200237 ip6_header_t * ip = &r.h6->ip6;
238 udp = &r.h6->udp, vxlan = &r.h6->vxlan;
239 ip->ip_version_traffic_class_and_flow_label = clib_host_to_net_u32(6 << 28);
240 ip->hop_limit = 255;
241 ip->protocol = IP_PROTOCOL_UDP;
242
243 ip->src_address = t->src.ip6;
244 ip->dst_address = t->dst.ip6;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800245 }
246
Eyal Baria93ea422017-02-01 13:36:15 +0200247 /* UDP header, randomize src port on something, maybe? */
248 udp->src_port = clib_host_to_net_u16 (4789);
249 udp->dst_port = clib_host_to_net_u16 (UDP_DST_PORT_vxlan);
250
251 /* VXLAN header */
252 vnet_set_vni_and_flags(vxlan, t->vni);
253
254 t->rewrite = r.rw;
255 return (0);
256}
257
258static bool
259vxlan_decap_next_is_valid (vxlan_main_t * vxm, u32 is_ip6, u32 decap_next_index)
260{
261 vlib_main_t * vm = vxm->vlib_main;
262 u32 input_idx = (!is_ip6) ? vxlan4_input_node.index : vxlan6_input_node.index;
263 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, input_idx);
264
265 return decap_next_index < r->n_next_nodes;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800266}
267
Eyal Bari0ded8512017-01-19 17:01:09 +0200268static void
269hash_set_key_copy (uword ** h, void * key, uword v) {
270 size_t ksz = hash_header(*h)->user;
271 void * copy = clib_mem_alloc (ksz);
272 clib_memcpy (copy, key, ksz);
273 hash_set_mem (*h, copy, v);
274}
275
276static void
277hash_unset_key_free (uword ** h, void * key) {
278 hash_pair_t * hp = hash_get_pair_mem (*h, key);
279 ASSERT (hp);
280 key = uword_to_pointer (hp->key, void *);
281 hash_unset_mem (*h, key);
282 clib_mem_free (key);
283}
284
Eyal Barifff67c82016-12-21 12:45:47 +0200285static uword
286vtep_addr_ref(ip46_address_t *ip)
287{
Eyal Bari0ded8512017-01-19 17:01:09 +0200288 uword *vtep = ip46_address_is_ip4(ip) ?
289 hash_get (vxlan_main.vtep4, ip->ip4.as_u32) :
290 hash_get_mem (vxlan_main.vtep6, &ip->ip6);
291 if (vtep)
292 return ++(*vtep);
293 ip46_address_is_ip4(ip) ?
294 hash_set (vxlan_main.vtep4, ip->ip4.as_u32, 1) :
295 hash_set_key_copy (&vxlan_main.vtep6, &ip->ip6, 1);
Eyal Barifff67c82016-12-21 12:45:47 +0200296 return 1;
297}
298
299static uword
300vtep_addr_unref(ip46_address_t *ip)
301{
Eyal Bari0ded8512017-01-19 17:01:09 +0200302 uword *vtep = ip46_address_is_ip4(ip) ?
303 hash_get (vxlan_main.vtep4, ip->ip4.as_u32) :
304 hash_get_mem (vxlan_main.vtep6, &ip->ip6);
305 ASSERT(vtep);
306 if (--(*vtep) != 0)
307 return *vtep;
308 ip46_address_is_ip4(ip) ?
309 hash_unset (vxlan_main.vtep4, ip->ip4.as_u32) :
310 hash_unset_key_free (&vxlan_main.vtep6, &ip->ip6);
311 return 0;
Eyal Barifff67c82016-12-21 12:45:47 +0200312}
313
Eyal Bari0ded8512017-01-19 17:01:09 +0200314typedef CLIB_PACKED(union {
315 struct {
Neale Ranns32e1c012016-11-22 17:07:28 +0000316 fib_node_index_t mfib_entry_index;
Eyal Bari0ded8512017-01-19 17:01:09 +0200317 adj_index_t mcast_adj_index;
318 };
319 u64 as_u64;
320}) mcast_shared_t;
321
322static inline mcast_shared_t
323mcast_shared_get(ip46_address_t * ip)
Eyal Barifff67c82016-12-21 12:45:47 +0200324{
325 ASSERT(ip46_address_is_multicast(ip));
Eyal Bari0ded8512017-01-19 17:01:09 +0200326 uword * p = hash_get_mem (vxlan_main.mcast_shared, ip);
327 ASSERT(p);
328 return (mcast_shared_t) { .as_u64 = *p };
Eyal Barifff67c82016-12-21 12:45:47 +0200329}
330
Eyal Bari0ded8512017-01-19 17:01:09 +0200331static inline void
Neale Ranns32e1c012016-11-22 17:07:28 +0000332mcast_shared_add(ip46_address_t *dst,
333 fib_node_index_t mfei,
334 adj_index_t ai)
335{
336 mcast_shared_t new_ep = {
337 .mcast_adj_index = ai,
338 .mfib_entry_index = mfei,
339 };
340
341 hash_set_key_copy (&vxlan_main.mcast_shared, dst, new_ep.as_u64);
342}
343
344static inline void
345mcast_shared_remove(ip46_address_t *dst)
346{
347 mcast_shared_t ep = mcast_shared_get(dst);
348
349 adj_unlock(ep.mcast_adj_index);
350 mfib_table_entry_delete_index(ep.mfib_entry_index,
351 MFIB_SOURCE_VXLAN);
352
353 hash_unset_key_free (&vxlan_main.mcast_shared, dst);
Eyal Barifff67c82016-12-21 12:45:47 +0200354}
355
Eyal Bari0765c6e2017-01-29 12:40:50 +0200356static inline fib_protocol_t
357fib_ip_proto(bool is_ip6)
358{
359 return (is_ip6) ? FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4;
360}
361
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362int vnet_vxlan_add_del_tunnel
363(vnet_vxlan_add_del_tunnel_args_t *a, u32 * sw_if_indexp)
364{
365 vxlan_main_t * vxm = &vxlan_main;
366 vxlan_tunnel_t *t = 0;
367 vnet_main_t * vnm = vxm->vnet_main;
Eyal Barifff67c82016-12-21 12:45:47 +0200368 uword * p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369 u32 hw_if_index = ~0;
370 u32 sw_if_index = ~0;
371 int rv;
Chris Luke99cb3352016-04-26 10:49:53 -0400372 vxlan4_tunnel_key_t key4;
373 vxlan6_tunnel_key_t key6;
John Loc42912d2016-11-07 18:30:47 -0500374 u32 is_ip6 = a->is_ip6;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375
John Lo56912c82016-12-08 16:10:02 -0500376 if (!is_ip6)
377 {
378 key4.src = a->dst.ip4.as_u32; /* decap src in key is encap dst in config */
379 key4.vni = clib_host_to_net_u32 (a->vni << 8);
380 p = hash_get (vxm->vxlan4_tunnel_by_key, key4.as_u64);
John Lo56912c82016-12-08 16:10:02 -0500381 }
382 else
383 {
Eyal Bari0765c6e2017-01-29 12:40:50 +0200384 key6.src = a->dst.ip6;
John Lo56912c82016-12-08 16:10:02 -0500385 key6.vni = clib_host_to_net_u32 (a->vni << 8);
386 p = hash_get_mem (vxm->vxlan6_tunnel_by_key, &key6);
John Lo56912c82016-12-08 16:10:02 -0500387 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388
389 if (a->is_add)
390 {
John Loc42912d2016-11-07 18:30:47 -0500391 l2input_main_t * l2im = &l2input_main;
392
Ed Warnickecb9cada2015-12-08 15:45:58 -0700393 /* adding a tunnel: tunnel must not already exist */
394 if (p)
395 return VNET_API_ERROR_TUNNEL_EXIST;
396
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800397 /*if not set explicitly, default to l2 */
398 if(a->decap_next_index == ~0)
399 a->decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
Eyal Baria93ea422017-02-01 13:36:15 +0200400 if (!vxlan_decap_next_is_valid(vxm, is_ip6, a->decap_next_index))
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800401 return VNET_API_ERROR_INVALID_DECAP_NEXT;
402
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403 pool_get_aligned (vxm->tunnels, t, CLIB_CACHE_LINE_BYTES);
404 memset (t, 0, sizeof (*t));
405
406 /* copy from arg structure */
407#define _(x) t->x = a->x;
408 foreach_copy_field;
409#undef _
Chris Luke99cb3352016-04-26 10:49:53 -0400410
Eyal Baria93ea422017-02-01 13:36:15 +0200411 rv = vxlan_rewrite (t, is_ip6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412 if (rv)
413 {
414 pool_put (vxm->tunnels, t);
415 return rv;
416 }
417
Eyal Bari5ac9bf52017-01-02 14:29:21 +0200418 /* copy the key */
419 if (is_ip6)
Eyal Bari0ded8512017-01-19 17:01:09 +0200420 hash_set_key_copy (&vxm->vxlan6_tunnel_by_key, &key6, t - vxm->tunnels);
Chris Luke99cb3352016-04-26 10:49:53 -0400421 else
Eyal Bari0ded8512017-01-19 17:01:09 +0200422 hash_set (vxm->vxlan4_tunnel_by_key, key4.as_u64, t - vxm->tunnels);
Eyal Barifff67c82016-12-21 12:45:47 +0200423
424 vnet_hw_interface_t * hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700425 if (vec_len (vxm->free_vxlan_tunnel_hw_if_indices) > 0)
426 {
427 vnet_interface_main_t * im = &vnm->interface_main;
428 hw_if_index = vxm->free_vxlan_tunnel_hw_if_indices
429 [vec_len (vxm->free_vxlan_tunnel_hw_if_indices)-1];
430 _vec_len (vxm->free_vxlan_tunnel_hw_if_indices) -= 1;
431
432 hi = vnet_get_hw_interface (vnm, hw_if_index);
433 hi->dev_instance = t - vxm->tunnels;
434 hi->hw_instance = hi->dev_instance;
435
436 /* clear old stats of freed tunnel before reuse */
437 sw_if_index = hi->sw_if_index;
438 vnet_interface_counter_lock(im);
439 vlib_zero_combined_counter
440 (&im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_TX], sw_if_index);
441 vlib_zero_combined_counter
442 (&im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_RX], sw_if_index);
443 vlib_zero_simple_counter
444 (&im->sw_if_counters[VNET_INTERFACE_COUNTER_DROP], sw_if_index);
445 vnet_interface_counter_unlock(im);
446 }
447 else
448 {
449 hw_if_index = vnet_register_interface
450 (vnm, vxlan_device_class.index, t - vxm->tunnels,
451 vxlan_hw_class.index, t - vxm->tunnels);
452 hi = vnet_get_hw_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453 }
454
455 t->hw_if_index = hw_if_index;
456 t->sw_if_index = sw_if_index = hi->sw_if_index;
457
Dave Wallace60231f32015-12-17 21:04:30 -0500458 vec_validate_init_empty (vxm->tunnel_index_by_sw_if_index, sw_if_index, ~0);
459 vxm->tunnel_index_by_sw_if_index[sw_if_index] = t - vxm->tunnels;
460
John Loc42912d2016-11-07 18:30:47 -0500461 /* setup l2 input config with l2 feature and bd 0 to drop packet */
462 vec_validate (l2im->configs, sw_if_index);
463 l2im->configs[sw_if_index].feature_bitmap = L2INPUT_FEAT_DROP;
464 l2im->configs[sw_if_index].bd_index = 0;
John Lo3ef822e2016-06-07 09:14:07 -0400465
Eyal Bari3212c572017-03-06 11:47:50 +0200466 vnet_sw_interface_t * si = vnet_get_sw_interface (vnm, sw_if_index);
467 si->flags &= ~VNET_SW_INTERFACE_FLAG_HIDDEN;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700468 vnet_sw_interface_set_flags (vnm, sw_if_index,
469 VNET_SW_INTERFACE_FLAG_ADMIN_UP);
Eyal Bari3212c572017-03-06 11:47:50 +0200470
John Loc42912d2016-11-07 18:30:47 -0500471 fib_node_init(&t->node, FIB_NODE_TYPE_VXLAN_TUNNEL);
Eyal Baric5b13602016-11-24 19:42:43 +0200472 fib_prefix_t tun_dst_pfx;
473 u32 encap_index = !is_ip6 ?
474 vxlan4_encap_node.index : vxlan6_encap_node.index;
475 vnet_flood_class_t flood_class = VNET_FLOOD_CLASS_TUNNEL_NORMAL;
John Loc42912d2016-11-07 18:30:47 -0500476
Eyal Baric5b13602016-11-24 19:42:43 +0200477 fib_prefix_from_ip46_addr(&t->dst, &tun_dst_pfx);
John Lo56912c82016-12-08 16:10:02 -0500478 if (!ip46_address_is_multicast(&t->dst))
479 {
480 /* Unicast tunnel -
481 * source the FIB entry for the tunnel's destination
482 * and become a child thereof. The tunnel will then get poked
483 * when the forwarding for the entry updates, and the tunnel can
484 * re-stack accordingly
485 */
Eyal Bari0ded8512017-01-19 17:01:09 +0200486 vtep_addr_ref(&t->src);
John Lo56912c82016-12-08 16:10:02 -0500487 t->fib_entry_index = fib_table_entry_special_add
488 (t->encap_fib_index, &tun_dst_pfx, FIB_SOURCE_RR,
Neale Rannsa0558302017-04-13 00:44:52 -0700489 FIB_ENTRY_FLAG_NONE);
John Lo56912c82016-12-08 16:10:02 -0500490 t->sibling_index = fib_entry_child_add
491 (t->fib_entry_index, FIB_NODE_TYPE_VXLAN_TUNNEL, t - vxm->tunnels);
492 vxlan_tunnel_restack_dpo(t);
493 }
Eyal Barifff67c82016-12-21 12:45:47 +0200494 else
John Lo56912c82016-12-08 16:10:02 -0500495 {
496 /* Multicast tunnel -
497 * as the same mcast group can be used for mutiple mcast tunnels
498 * with different VNIs, create the output fib adjecency only if
499 * it does not already exist
500 */
Eyal Bari0765c6e2017-01-29 12:40:50 +0200501 fib_protocol_t fp = fib_ip_proto(is_ip6);
Eyal Baric5b13602016-11-24 19:42:43 +0200502
Eyal Barifff67c82016-12-21 12:45:47 +0200503 if (vtep_addr_ref(&t->dst) == 1)
Neale Ranns32e1c012016-11-22 17:07:28 +0000504 {
505 fib_node_index_t mfei;
506 adj_index_t ai;
507 fib_route_path_t path = {
508 .frp_proto = fp,
509 .frp_addr = zero_addr,
510 .frp_sw_if_index = 0xffffffff,
511 .frp_fib_index = ~0,
512 .frp_weight = 0,
513 .frp_flags = FIB_ROUTE_PATH_LOCAL,
514 };
515 const mfib_prefix_t mpfx = {
516 .fp_proto = fp,
517 .fp_len = (is_ip6 ? 128 : 32),
518 .fp_grp_addr = tun_dst_pfx.fp_addr,
519 };
Eyal Barifff67c82016-12-21 12:45:47 +0200520
Neale Ranns32e1c012016-11-22 17:07:28 +0000521 /*
522 * Setup the (*,G) to receive traffic on the mcast group
523 * - the forwarding interface is for-us
524 * - the accepting interface is that from the API
525 */
526 mfib_table_entry_path_update(t->encap_fib_index,
527 &mpfx,
528 MFIB_SOURCE_VXLAN,
529 &path,
530 MFIB_ITF_FLAG_FORWARD);
531
532 path.frp_sw_if_index = a->mcast_sw_if_index;
533 path.frp_flags = FIB_ROUTE_PATH_FLAG_NONE;
534 mfei = mfib_table_entry_path_update(t->encap_fib_index,
535 &mpfx,
536 MFIB_SOURCE_VXLAN,
537 &path,
538 MFIB_ITF_FLAG_ACCEPT);
539
540 /*
541 * Create the mcast adjacency to send traffic to the group
542 */
543 ai = adj_mcast_add_or_lock(fp,
544 fib_proto_to_link(fp),
545 a->mcast_sw_if_index);
546
547 /*
548 * create a new end-point
549 */
550 mcast_shared_add(&t->dst, mfei, ai);
551 }
552
Eyal Bari0765c6e2017-01-29 12:40:50 +0200553 dpo_id_t dpo = DPO_INVALID;
554 mcast_shared_t ep = mcast_shared_get(&t->dst);
Neale Ranns32e1c012016-11-22 17:07:28 +0000555
Eyal Barifff67c82016-12-21 12:45:47 +0200556 /* Stack shared mcast dst mac addr rewrite on encap */
Eyal Bari646ba9b2017-02-26 15:27:27 +0200557 dpo_set (&dpo, DPO_ADJACENCY_MCAST,
Neale Ranns32e1c012016-11-22 17:07:28 +0000558 fib_proto_to_dpo(fp),
559 ep.mcast_adj_index);
560
Eyal Baric5b13602016-11-24 19:42:43 +0200561 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
Eyal Barifff67c82016-12-21 12:45:47 +0200562 dpo_reset (&dpo);
563 flood_class = VNET_FLOOD_CLASS_TUNNEL_MASTER;
John Lo56912c82016-12-08 16:10:02 -0500564 }
565
Eyal Baric5b13602016-11-24 19:42:43 +0200566 /* Set vxlan tunnel output node */
567 hi->output_node_index = encap_index;
568
569 vnet_get_sw_interface (vnet_get_main(), sw_if_index)->flood_class = flood_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570 }
571 else
572 {
573 /* deleting a tunnel: tunnel must exist */
John Lo37682e12016-11-30 12:51:39 -0500574 if (!p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575 return VNET_API_ERROR_NO_SUCH_ENTRY;
576
577 t = pool_elt_at_index (vxm->tunnels, p[0]);
578
Eyal Baribc799c92017-04-06 03:26:59 +0300579 sw_if_index = t->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700580 vnet_sw_interface_set_flags (vnm, t->sw_if_index, 0 /* down */);
Eyal Bari3212c572017-03-06 11:47:50 +0200581 vnet_sw_interface_t * si = vnet_get_sw_interface (vnm, t->sw_if_index);
582 si->flags |= VNET_SW_INTERFACE_FLAG_HIDDEN;
583
Ed Warnickecb9cada2015-12-08 15:45:58 -0700584 /* make sure tunnel is removed from l2 bd or xconnect */
585 set_int_l2_mode(vxm->vlib_main, vnm, MODE_L3, t->sw_if_index, 0, 0, 0, 0);
586 vec_add1 (vxm->free_vxlan_tunnel_hw_if_indices, t->hw_if_index);
587
Dave Wallace60231f32015-12-17 21:04:30 -0500588 vxm->tunnel_index_by_sw_if_index[t->sw_if_index] = ~0;
589
John Loc42912d2016-11-07 18:30:47 -0500590 if (!is_ip6)
Eyal Barifff67c82016-12-21 12:45:47 +0200591 hash_unset (vxm->vxlan4_tunnel_by_key, key4.as_u64);
Chris Luke99cb3352016-04-26 10:49:53 -0400592 else
Eyal Bari0ded8512017-01-19 17:01:09 +0200593 hash_unset_key_free (&vxm->vxlan6_tunnel_by_key, &key6);
Eyal Barifff67c82016-12-21 12:45:47 +0200594
595 if (!ip46_address_is_multicast(&t->dst))
596 {
Eyal Bari5ac9bf52017-01-02 14:29:21 +0200597 vtep_addr_unref(&t->src);
Eyal Barifff67c82016-12-21 12:45:47 +0200598 fib_entry_child_remove(t->fib_entry_index, t->sibling_index);
599 fib_table_entry_delete_index(t->fib_entry_index, FIB_SOURCE_RR);
600 }
601 else if (vtep_addr_unref(&t->dst) == 0)
602 {
Neale Ranns32e1c012016-11-22 17:07:28 +0000603 mcast_shared_remove(&t->dst);
Eyal Barifff67c82016-12-21 12:45:47 +0200604 }
605
606 fib_node_deinit(&t->node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607 vec_free (t->rewrite);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608 pool_put (vxm->tunnels, t);
609 }
610
611 if (sw_if_indexp)
612 *sw_if_indexp = sw_if_index;
613
614 return 0;
615}
616
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800617static uword get_decap_next_for_node(u32 node_index, u32 ipv4_set)
618{
619 vxlan_main_t * vxm = &vxlan_main;
620 vlib_main_t * vm = vxm->vlib_main;
Eyal Bari0765c6e2017-01-29 12:40:50 +0200621 uword input_node = (ipv4_set) ? vxlan4_input_node.index :
622 vxlan6_input_node.index;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800623
Eyal Bari0765c6e2017-01-29 12:40:50 +0200624 return vlib_node_add_next (vm, input_node, node_index);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800625}
626
Ed Warnickecb9cada2015-12-08 15:45:58 -0700627static uword unformat_decap_next (unformat_input_t * input, va_list * args)
628{
629 u32 * result = va_arg (*args, u32 *);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800630 u32 ipv4_set = va_arg (*args, int);
631 vxlan_main_t * vxm = &vxlan_main;
632 vlib_main_t * vm = vxm->vlib_main;
633 u32 node_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700634 u32 tmp;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800635
Ed Warnickecb9cada2015-12-08 15:45:58 -0700636 if (unformat (input, "l2"))
637 *result = VXLAN_INPUT_NEXT_L2_INPUT;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800638 else if (unformat (input, "node %U", unformat_vlib_node, vm, &node_index))
639 *result = get_decap_next_for_node(node_index, ipv4_set);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700640 else if (unformat (input, "%d", &tmp))
641 *result = tmp;
642 else
643 return 0;
644 return 1;
645}
646
647static clib_error_t *
648vxlan_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;
Eyal Baric5b13602016-11-24 19:42:43 +0200653 ip46_address_t src , dst;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700654 u8 is_add = 1;
655 u8 src_set = 0;
656 u8 dst_set = 0;
Eyal Baric5b13602016-11-24 19:42:43 +0200657 u8 grp_set = 0;
Chris Luke99cb3352016-04-26 10:49:53 -0400658 u8 ipv4_set = 0;
659 u8 ipv6_set = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700660 u32 encap_fib_index = 0;
Eyal Baric5b13602016-11-24 19:42:43 +0200661 u32 mcast_sw_if_index = ~0;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800662 u32 decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700663 u32 vni = 0;
664 u32 tmp;
665 int rv;
666 vnet_vxlan_add_del_tunnel_args_t _a, * a = &_a;
Eyal Baric5b13602016-11-24 19:42:43 +0200667 u32 tunnel_sw_if_index;
Billy McFalla9a20e72017-02-15 11:39:12 -0500668 clib_error_t *error = NULL;
Eyal Baric5b13602016-11-24 19:42:43 +0200669
670 /* Cant "universally zero init" (={0}) due to GCC bug 53119 */
671 memset(&src, 0, sizeof src);
672 memset(&dst, 0, sizeof dst);
673
Ed Warnickecb9cada2015-12-08 15:45:58 -0700674 /* Get a line of input. */
675 if (! unformat_user (input, unformat_line_input, line_input))
676 return 0;
677
678 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) {
679 if (unformat (line_input, "del"))
Chris Luke99cb3352016-04-26 10:49:53 -0400680 {
681 is_add = 0;
682 }
683 else if (unformat (line_input, "src %U",
684 unformat_ip4_address, &src.ip4))
685 {
686 src_set = 1;
687 ipv4_set = 1;
688 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700689 else if (unformat (line_input, "dst %U",
Chris Luke99cb3352016-04-26 10:49:53 -0400690 unformat_ip4_address, &dst.ip4))
691 {
692 dst_set = 1;
693 ipv4_set = 1;
694 }
695 else if (unformat (line_input, "src %U",
696 unformat_ip6_address, &src.ip6))
697 {
698 src_set = 1;
699 ipv6_set = 1;
700 }
701 else if (unformat (line_input, "dst %U",
702 unformat_ip6_address, &dst.ip6))
703 {
704 dst_set = 1;
705 ipv6_set = 1;
706 }
Eyal Baric5b13602016-11-24 19:42:43 +0200707 else if (unformat (line_input, "group %U %U",
708 unformat_ip4_address, &dst.ip4,
709 unformat_vnet_sw_interface,
710 vnet_get_main(), &mcast_sw_if_index))
711 {
712 grp_set = dst_set = 1;
713 ipv4_set = 1;
714 }
715 else if (unformat (line_input, "group %U %U",
716 unformat_ip6_address, &dst.ip6,
717 unformat_vnet_sw_interface,
718 vnet_get_main(), &mcast_sw_if_index))
719 {
720 grp_set = dst_set = 1;
721 ipv6_set = 1;
722 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700723 else if (unformat (line_input, "encap-vrf-id %d", &tmp))
724 {
Eyal Bari0765c6e2017-01-29 12:40:50 +0200725 encap_fib_index = fib_table_find (fib_ip_proto (ipv6_set), tmp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700726 if (encap_fib_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500727 {
728 error = clib_error_return (0, "nonexistent encap-vrf-id %d", tmp);
729 goto done;
730 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700731 }
732 else if (unformat (line_input, "decap-next %U", unformat_decap_next,
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800733 &decap_next_index, ipv4_set))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700734 ;
735 else if (unformat (line_input, "vni %d", &vni))
736 {
737 if (vni >> 24)
Billy McFalla9a20e72017-02-15 11:39:12 -0500738 {
739 error = clib_error_return (0, "vni %d out of range", vni);
740 goto done;
741 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700742 }
743 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500744 {
745 error = clib_error_return (0, "parse error: '%U'",
746 format_unformat_error, line_input);
747 goto done;
748 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700749 }
750
Ed Warnickecb9cada2015-12-08 15:45:58 -0700751 if (src_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500752 {
753 error = clib_error_return (0, "tunnel src address not specified");
754 goto done;
755 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700756
757 if (dst_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500758 {
759 error = clib_error_return (0, "tunnel dst address not specified");
760 goto done;
761 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700762
Eyal Baric5b13602016-11-24 19:42:43 +0200763 if (grp_set && !ip46_address_is_multicast(&dst))
Billy McFalla9a20e72017-02-15 11:39:12 -0500764 {
765 error = clib_error_return (0, "tunnel group address not multicast");
766 goto done;
767 }
Eyal Baric5b13602016-11-24 19:42:43 +0200768
John Lo56912c82016-12-08 16:10:02 -0500769 if (grp_set == 0 && ip46_address_is_multicast(&dst))
Billy McFalla9a20e72017-02-15 11:39:12 -0500770 {
771 error = clib_error_return (0, "dst address must be unicast");
772 goto done;
773 }
John Lo56912c82016-12-08 16:10:02 -0500774
Eyal Baric5b13602016-11-24 19:42:43 +0200775 if (grp_set && mcast_sw_if_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500776 {
777 error = clib_error_return (0, "tunnel nonexistent multicast device");
778 goto done;
779 }
Eyal Baric5b13602016-11-24 19:42:43 +0200780
Chris Luke99cb3352016-04-26 10:49:53 -0400781 if (ipv4_set && ipv6_set)
Billy McFalla9a20e72017-02-15 11:39:12 -0500782 {
783 error = clib_error_return (0, "both IPv4 and IPv6 addresses specified");
784 goto done;
785 }
Chris Luke99cb3352016-04-26 10:49:53 -0400786
Eyal Baric5b13602016-11-24 19:42:43 +0200787 if (ip46_address_cmp(&src, &dst) == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500788 {
789 error = clib_error_return (0, "src and dst addresses are identical");
790 goto done;
791 }
Chris Luke99cb3352016-04-26 10:49:53 -0400792
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800793 if (decap_next_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500794 {
795 error = clib_error_return (0, "next node not found");
796 goto done;
797 }
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800798
Ed Warnickecb9cada2015-12-08 15:45:58 -0700799 if (vni == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500800 {
801 error = clib_error_return (0, "vni not specified");
802 goto done;
803 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804
805 memset (a, 0, sizeof (*a));
806
807 a->is_add = is_add;
Chris Luke99cb3352016-04-26 10:49:53 -0400808 a->is_ip6 = ipv6_set;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700809
810#define _(x) a->x = x;
811 foreach_copy_field;
812#undef _
813
Eyal Baric5b13602016-11-24 19:42:43 +0200814 rv = vnet_vxlan_add_del_tunnel (a, &tunnel_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700815
816 switch(rv)
817 {
818 case 0:
Pierre Pfister78ea9c22016-05-23 12:51:54 +0100819 if (is_add)
John Loc42912d2016-11-07 18:30:47 -0500820 vlib_cli_output(vm, "%U\n", format_vnet_sw_if_index_name,
Eyal Baric5b13602016-11-24 19:42:43 +0200821 vnet_get_main(), tunnel_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700822 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700823
824 case VNET_API_ERROR_TUNNEL_EXIST:
Billy McFalla9a20e72017-02-15 11:39:12 -0500825 error = clib_error_return (0, "tunnel already exists...");
826 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700827
828 case VNET_API_ERROR_NO_SUCH_ENTRY:
Billy McFalla9a20e72017-02-15 11:39:12 -0500829 error = clib_error_return (0, "tunnel does not exist...");
830 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700831
832 default:
Billy McFalla9a20e72017-02-15 11:39:12 -0500833 error = clib_error_return
Ed Warnickecb9cada2015-12-08 15:45:58 -0700834 (0, "vnet_vxlan_add_del_tunnel returned %d", rv);
Billy McFalla9a20e72017-02-15 11:39:12 -0500835 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700836 }
837
Billy McFalla9a20e72017-02-15 11:39:12 -0500838done:
839 unformat_free (line_input);
840
841 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700842}
843
Billy McFallc5d9cda2016-09-14 10:39:58 -0400844/*?
845 * Add or delete a VXLAN Tunnel.
846 *
847 * VXLAN provides the features needed to allow L2 bridge domains (BDs)
848 * to span multiple servers. This is done by building an L2 overlay on
849 * top of an L3 network underlay using VXLAN tunnels.
850 *
851 * This makes it possible for servers to be co-located in the same data
852 * center or be separated geographically as long as they are reachable
853 * through the underlay L3 network.
854 *
855 * You can refer to this kind of L2 overlay bridge domain as a VXLAN
856 * (Virtual eXtensible VLAN) segment.
857 *
858 * @cliexpar
859 * Example of how to create a VXLAN Tunnel:
John Loc42912d2016-11-07 18:30:47 -0500860 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 encap-vrf-id 7}
Billy McFallc5d9cda2016-09-14 10:39:58 -0400861 * Example of how to delete a VXLAN Tunnel:
862 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 del}
863 ?*/
864/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700865VLIB_CLI_COMMAND (create_vxlan_tunnel_command, static) = {
866 .path = "create vxlan tunnel",
867 .short_help =
Eyal Baric5b13602016-11-24 19:42:43 +0200868 "create vxlan tunnel src <local-vtep-addr>"
869 " {dst <remote-vtep-addr>|group <mcast-vtep-addr> <intf-name>} vni <nn>"
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800870 " [encap-vrf-id <nn>] [decap-next [l2|node <name>]] [del]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700871 .function = vxlan_add_del_tunnel_command_fn,
872};
Billy McFallc5d9cda2016-09-14 10:39:58 -0400873/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700874
875static clib_error_t *
876show_vxlan_tunnel_command_fn (vlib_main_t * vm,
877 unformat_input_t * input,
878 vlib_cli_command_t * cmd)
879{
880 vxlan_main_t * vxm = &vxlan_main;
881 vxlan_tunnel_t * t;
882
883 if (pool_elts (vxm->tunnels) == 0)
884 vlib_cli_output (vm, "No vxlan tunnels configured...");
885
886 pool_foreach (t, vxm->tunnels,
887 ({
888 vlib_cli_output (vm, "%U", format_vxlan_tunnel, t);
889 }));
890
891 return 0;
892}
893
Billy McFallc5d9cda2016-09-14 10:39:58 -0400894/*?
895 * Display all the VXLAN Tunnel entries.
896 *
897 * @cliexpar
898 * Example of how to display the VXLAN Tunnel entries:
899 * @cliexstart{show vxlan tunnel}
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800900 * [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 -0400901 * @cliexend
902 ?*/
903/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700904VLIB_CLI_COMMAND (show_vxlan_tunnel_command, static) = {
905 .path = "show vxlan tunnel",
Billy McFallc5d9cda2016-09-14 10:39:58 -0400906 .short_help = "show vxlan tunnel",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700907 .function = show_vxlan_tunnel_command_fn,
908};
Billy McFallc5d9cda2016-09-14 10:39:58 -0400909/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700910
Chris Luke99cb3352016-04-26 10:49:53 -0400911
John Lo2b81eb82017-01-30 13:12:10 -0500912void vnet_int_vxlan_bypass_mode (u32 sw_if_index,
913 u8 is_ip6,
914 u8 is_enable)
915{
916 if (is_ip6)
917 vnet_feature_enable_disable ("ip6-unicast", "ip6-vxlan-bypass",
918 sw_if_index, is_enable, 0, 0);
919 else
920 vnet_feature_enable_disable ("ip4-unicast", "ip4-vxlan-bypass",
921 sw_if_index, is_enable, 0, 0);
922}
923
924
925static clib_error_t *
926set_ip_vxlan_bypass (u32 is_ip6,
927 unformat_input_t * input,
928 vlib_cli_command_t * cmd)
929{
930 unformat_input_t _line_input, * line_input = &_line_input;
931 vnet_main_t * vnm = vnet_get_main();
932 clib_error_t * error = 0;
933 u32 sw_if_index, is_enable;
934
935 sw_if_index = ~0;
936 is_enable = 1;
937
938 if (! unformat_user (input, unformat_line_input, line_input))
939 return 0;
940
941 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
942 {
943 if (unformat_user (line_input, unformat_vnet_sw_interface, vnm, &sw_if_index))
944 ;
945 else if (unformat (line_input, "del"))
946 is_enable = 0;
947 else
948 {
949 error = unformat_parse_error (line_input);
950 goto done;
951 }
952 }
953
954 if (~0 == sw_if_index)
955 {
956 error = clib_error_return (0, "unknown interface `%U'",
957 format_unformat_error, line_input);
958 goto done;
959 }
960
961 vnet_int_vxlan_bypass_mode (sw_if_index, is_ip6, is_enable);
962
963 done:
Billy McFalla9a20e72017-02-15 11:39:12 -0500964 unformat_free (line_input);
965
John Lo2b81eb82017-01-30 13:12:10 -0500966 return error;
967}
968
969static clib_error_t *
970set_ip4_vxlan_bypass (vlib_main_t * vm,
971 unformat_input_t * input,
972 vlib_cli_command_t * cmd)
973{
974 return set_ip_vxlan_bypass (0, input, cmd);
975}
976
977/*?
978 * This command adds the 'ip4-vxlan-bypass' graph node for a given interface.
979 * By adding the IPv4 vxlan-bypass graph node to an interface, the node checks
980 * for and validate input vxlan packet and bypass ip4-lookup, ip4-local,
981 * ip4-udp-lookup nodes to speedup vxlan packet forwarding. This node will
982 * cause extra overhead to for non-vxlan packets which is kept at a minimum.
983 *
984 * @cliexpar
985 * @parblock
986 * Example of graph node before ip4-vxlan-bypass is enabled:
987 * @cliexstart{show vlib graph ip4-vxlan-bypass}
988 * Name Next Previous
989 * ip4-vxlan-bypass error-drop [0]
990 * vxlan4-input [1]
991 * ip4-lookup [2]
992 * @cliexend
993 *
994 * Example of how to enable ip4-vxlan-bypass on an interface:
995 * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0}
996 *
997 * Example of graph node after ip4-vxlan-bypass is enabled:
998 * @cliexstart{show vlib graph ip4-vxlan-bypass}
999 * Name Next Previous
1000 * ip4-vxlan-bypass error-drop [0] ip4-input
1001 * vxlan4-input [1] ip4-input-no-checksum
1002 * ip4-lookup [2]
1003 * @cliexend
1004 *
1005 * Example of how to display the feature enabed on an interface:
1006 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1007 * IP feature paths configured on GigabitEthernet2/0/0...
1008 * ...
1009 * ipv4 unicast:
1010 * ip4-vxlan-bypass
1011 * ip4-lookup
1012 * ...
1013 * @cliexend
1014 *
1015 * Example of how to disable ip4-vxlan-bypass on an interface:
1016 * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0 del}
1017 * @endparblock
1018?*/
1019/* *INDENT-OFF* */
1020VLIB_CLI_COMMAND (set_interface_ip_vxlan_bypass_command, static) = {
1021 .path = "set interface ip vxlan-bypass",
1022 .function = set_ip4_vxlan_bypass,
1023 .short_help = "set interface ip vxlan-bypass <interface> [del]",
1024};
1025/* *INDENT-ON* */
1026
1027static clib_error_t *
1028set_ip6_vxlan_bypass (vlib_main_t * vm,
1029 unformat_input_t * input,
1030 vlib_cli_command_t * cmd)
1031{
1032 return set_ip_vxlan_bypass (1, input, cmd);
1033}
1034
1035/*?
1036 * This command adds the 'ip6-vxlan-bypass' graph node for a given interface.
1037 * By adding the IPv6 vxlan-bypass graph node to an interface, the node checks
1038 * for and validate input vxlan packet and bypass ip6-lookup, ip6-local,
1039 * ip6-udp-lookup nodes to speedup vxlan packet forwarding. This node will
1040 * cause extra overhead to for non-vxlan packets which is kept at a minimum.
1041 *
1042 * @cliexpar
1043 * @parblock
1044 * Example of graph node before ip6-vxlan-bypass is enabled:
1045 * @cliexstart{show vlib graph ip6-vxlan-bypass}
1046 * Name Next Previous
1047 * ip6-vxlan-bypass error-drop [0]
1048 * vxlan6-input [1]
1049 * ip6-lookup [2]
1050 * @cliexend
1051 *
1052 * Example of how to enable ip6-vxlan-bypass on an interface:
1053 * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0}
1054 *
1055 * Example of graph node after ip6-vxlan-bypass is enabled:
1056 * @cliexstart{show vlib graph ip6-vxlan-bypass}
1057 * Name Next Previous
1058 * ip6-vxlan-bypass error-drop [0] ip6-input
1059 * vxlan6-input [1] ip4-input-no-checksum
1060 * ip6-lookup [2]
1061 * @cliexend
1062 *
1063 * Example of how to display the feature enabed on an interface:
1064 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1065 * IP feature paths configured on GigabitEthernet2/0/0...
1066 * ...
1067 * ipv6 unicast:
1068 * ip6-vxlan-bypass
1069 * ip6-lookup
1070 * ...
1071 * @cliexend
1072 *
1073 * Example of how to disable ip6-vxlan-bypass on an interface:
1074 * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0 del}
1075 * @endparblock
1076?*/
1077/* *INDENT-OFF* */
1078VLIB_CLI_COMMAND (set_interface_ip6_vxlan_bypass_command, static) = {
1079 .path = "set interface ip6 vxlan-bypass",
1080 .function = set_ip6_vxlan_bypass,
1081 .short_help = "set interface ip vxlan-bypass <interface> [del]",
1082};
1083/* *INDENT-ON* */
1084
Ed Warnickecb9cada2015-12-08 15:45:58 -07001085clib_error_t *vxlan_init (vlib_main_t *vm)
1086{
1087 vxlan_main_t * vxm = &vxlan_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001088
1089 vxm->vnet_main = vnet_get_main();
1090 vxm->vlib_main = vm;
1091
Chris Luke99cb3352016-04-26 10:49:53 -04001092 /* initialize the ip6 hash */
1093 vxm->vxlan6_tunnel_by_key = hash_create_mem(0,
1094 sizeof(vxlan6_tunnel_key_t),
1095 sizeof(uword));
Eyal Bari0ded8512017-01-19 17:01:09 +02001096 vxm->vtep6 = hash_create_mem(0,
1097 sizeof(ip6_address_t),
Eyal Barifff67c82016-12-21 12:45:47 +02001098 sizeof(uword));
Eyal Bari0ded8512017-01-19 17:01:09 +02001099 vxm->mcast_shared = hash_create_mem(0,
1100 sizeof(ip46_address_t),
1101 sizeof(mcast_shared_t));
Chris Luke99cb3352016-04-26 10:49:53 -04001102
Ed Warnickecb9cada2015-12-08 15:45:58 -07001103 udp_register_dst_port (vm, UDP_DST_PORT_vxlan,
Chris Luke99cb3352016-04-26 10:49:53 -04001104 vxlan4_input_node.index, /* is_ip4 */ 1);
1105 udp_register_dst_port (vm, UDP_DST_PORT_vxlan6,
1106 vxlan6_input_node.index, /* is_ip4 */ 0);
John Loc42912d2016-11-07 18:30:47 -05001107
1108 fib_node_register_type(FIB_NODE_TYPE_VXLAN_TUNNEL, &vxlan_vft);
1109
Ed Warnickecb9cada2015-12-08 15:45:58 -07001110 return 0;
1111}
1112
1113VLIB_INIT_FUNCTION(vxlan_init);