blob: 2b8525113254abf1f84fb26ef55c0aba41a2e438 [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 Ranns1f50bf82019-07-16 15:28:52 +000019#include <vnet/fib/fib_entry_track.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000020#include <vnet/mfib/mfib_table.h>
21#include <vnet/adj/adj_mcast.h>
eyal bari82e21d72018-04-26 13:14:55 +030022#include <vnet/adj/rewrite.h>
Eyal Bari3212c572017-03-06 11:47:50 +020023#include <vnet/interface.h>
eyal bariaf86a482018-04-17 11:20:27 +030024#include <vnet/flow/flow.h>
Hongjun Nibeb4bf72016-11-25 00:03:46 +080025#include <vlib/vlib.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070026
Billy McFallc5d9cda2016-09-14 10:39:58 -040027/**
28 * @file
29 * @brief VXLAN.
30 *
31 * VXLAN provides the features needed to allow L2 bridge domains (BDs)
32 * to span multiple servers. This is done by building an L2 overlay on
33 * top of an L3 network underlay using VXLAN tunnels.
34 *
35 * This makes it possible for servers to be co-located in the same data
36 * center or be separated geographically as long as they are reachable
37 * through the underlay L3 network.
38 *
39 * You can refer to this kind of L2 overlay bridge domain as a VXLAN
40 * (Virtual eXtensible VLAN) segment.
41 */
42
43
Ed Warnickecb9cada2015-12-08 15:45:58 -070044vxlan_main_t vxlan_main;
45
Eyal Bari8f576482018-05-07 10:13:44 +030046static u8 *
47format_decap_next (u8 * s, va_list * args)
Hongjun Nibeb4bf72016-11-25 00:03:46 +080048{
49 u32 next_index = va_arg (*args, u32);
50
John Lo4478d8e2018-01-12 17:15:25 -050051 if (next_index == VXLAN_INPUT_NEXT_DROP)
52 return format (s, "drop");
53 else
54 return format (s, "index %d", next_index);
Hongjun Nibeb4bf72016-11-25 00:03:46 +080055 return s;
56}
57
Eyal Bari8f576482018-05-07 10:13:44 +030058u8 *
59format_vxlan_tunnel (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070060{
Eyal Bari8f576482018-05-07 10:13:44 +030061 vxlan_tunnel_t *t = va_arg (*args, vxlan_tunnel_t *);
Jon Loeliger3d460bd2018-02-01 16:36:12 -060062
63 s = format (s,
64 "[%d] instance %d src %U dst %U vni %d fib-idx %d sw-if-idx %d ",
John Lo25d417f2018-02-15 15:47:53 -050065 t->dev_instance, t->user_instance,
Eyal Bari8f576482018-05-07 10:13:44 +030066 format_ip46_address, &t->src, IP46_TYPE_ANY,
67 format_ip46_address, &t->dst, IP46_TYPE_ANY,
68 t->vni, t->encap_fib_index, t->sw_if_index);
John Lo56912c82016-12-08 16:10:02 -050069
John Lo4478d8e2018-01-12 17:15:25 -050070 s = format (s, "encap-dpo-idx %d ", t->next_dpo.dpoi_index);
John Lo56912c82016-12-08 16:10:02 -050071
John Lo4478d8e2018-01-12 17:15:25 -050072 if (PREDICT_FALSE (t->decap_next_index != VXLAN_INPUT_NEXT_L2_INPUT))
73 s = format (s, "decap-next-%U ", format_decap_next, t->decap_next_index);
74
75 if (PREDICT_FALSE (ip46_address_is_multicast (&t->dst)))
76 s = format (s, "mcast-sw-if-idx %d ", t->mcast_sw_if_index);
77
eyal bariaf86a482018-04-17 11:20:27 +030078 if (t->flow_index != ~0)
79 s = format (s, "flow-index %d [%U]", t->flow_index,
80 format_flow_enabled_hw, t->flow_index);
81
Ed Warnickecb9cada2015-12-08 15:45:58 -070082 return s;
83}
84
Eyal Bari8f576482018-05-07 10:13:44 +030085static u8 *
86format_vxlan_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070087{
88 u32 dev_instance = va_arg (*args, u32);
Eyal Bari8f576482018-05-07 10:13:44 +030089 vxlan_main_t *vxm = &vxlan_main;
Jon Loeliger3d460bd2018-02-01 16:36:12 -060090 vxlan_tunnel_t *t;
91
92 if (dev_instance == ~0)
Eyal Bari8f576482018-05-07 10:13:44 +030093 return format (s, "<cached-unused>");
Jon Loeliger3d460bd2018-02-01 16:36:12 -060094
Eyal Bari8f576482018-05-07 10:13:44 +030095 if (dev_instance >= vec_len (vxm->tunnels))
96 return format (s, "<improperly-referenced>");
Jon Loeliger3d460bd2018-02-01 16:36:12 -060097
Eyal Bari8f576482018-05-07 10:13:44 +030098 t = pool_elt_at_index (vxm->tunnels, dev_instance);
Jon Loeliger3d460bd2018-02-01 16:36:12 -060099
100 return format (s, "vxlan_tunnel%d", t->user_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101}
102
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100103static clib_error_t *
104vxlan_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
105{
Eyal Baria93ea422017-02-01 13:36:15 +0200106 u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
107 VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
108 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100109
110 return /* no error */ 0;
111}
112
Eyal Bari8f576482018-05-07 10:13:44 +0300113/* *INDENT-OFF* */
114VNET_DEVICE_CLASS (vxlan_device_class, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115 .name = "VXLAN",
116 .format_device_name = format_vxlan_name,
117 .format_tx_trace = format_vxlan_encap_trace,
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100118 .admin_up_down_function = vxlan_interface_admin_up_down,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119};
Eyal Bari8f576482018-05-07 10:13:44 +0300120/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121
Eyal Bari8f576482018-05-07 10:13:44 +0300122static u8 *
123format_vxlan_header_with_length (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124{
125 u32 dev_instance = va_arg (*args, u32);
126 s = format (s, "unimplemented dev %u", dev_instance);
127 return s;
128}
129
Eyal Bari8f576482018-05-07 10:13:44 +0300130/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131VNET_HW_INTERFACE_CLASS (vxlan_hw_class) = {
132 .name = "VXLAN",
133 .format_header = format_vxlan_header_with_length,
Neale Rannsb80c5362016-10-08 13:03:40 +0100134 .build_rewrite = default_build_rewrite,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135};
Eyal Bari8f576482018-05-07 10:13:44 +0300136/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137
Eyal Baric5b13602016-11-24 19:42:43 +0200138static void
Eyal Bari8f576482018-05-07 10:13:44 +0300139vxlan_tunnel_restack_dpo (vxlan_tunnel_t * t)
Eyal Baric5b13602016-11-24 19:42:43 +0200140{
Eyal Bari8f576482018-05-07 10:13:44 +0300141 u8 is_ip4 = ip46_address_is_ip4 (&t->dst);
Eyal Bari99ed4862018-04-25 13:50:57 +0300142 dpo_id_t dpo = DPO_INVALID;
143 fib_forward_chain_type_t forw_type = is_ip4 ?
Eyal Bari8f576482018-05-07 10:13:44 +0300144 FIB_FORW_CHAIN_TYPE_UNICAST_IP4 : FIB_FORW_CHAIN_TYPE_UNICAST_IP6;
Eyal Baric5b13602016-11-24 19:42:43 +0200145
Eyal Bari99ed4862018-04-25 13:50:57 +0300146 fib_entry_contribute_forwarding (t->fib_entry_index, forw_type, &dpo);
147
148 /* vxlan uses the payload hash as the udp source port
149 * hence the packet's hash is unknown
150 * skip single bucket load balance dpo's */
151 while (DPO_LOAD_BALANCE == dpo.dpoi_type)
152 {
153 load_balance_t *lb = load_balance_get (dpo.dpoi_index);
154 if (lb->lb_n_buckets > 1)
Eyal Bari8f576482018-05-07 10:13:44 +0300155 break;
Eyal Bari99ed4862018-04-25 13:50:57 +0300156
157 dpo_copy (&dpo, load_balance_get_bucket_i (lb, 0));
158 }
159
160 u32 encap_index = is_ip4 ?
Eyal Bari8f576482018-05-07 10:13:44 +0300161 vxlan4_encap_node.index : vxlan6_encap_node.index;
Eyal Bari99ed4862018-04-25 13:50:57 +0300162 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
Eyal Bari8f576482018-05-07 10:13:44 +0300163 dpo_reset (&dpo);
Eyal Baric5b13602016-11-24 19:42:43 +0200164}
John Loc42912d2016-11-07 18:30:47 -0500165
166static vxlan_tunnel_t *
Eyal Bari8f576482018-05-07 10:13:44 +0300167vxlan_tunnel_from_fib_node (fib_node_t * node)
John Loc42912d2016-11-07 18:30:47 -0500168{
Eyal Bari8f576482018-05-07 10:13:44 +0300169 ASSERT (FIB_NODE_TYPE_VXLAN_TUNNEL == node->fn_type);
170 return ((vxlan_tunnel_t *) (((char *) node) -
171 STRUCT_OFFSET_OF (vxlan_tunnel_t, node)));
John Loc42912d2016-11-07 18:30:47 -0500172}
173
174/**
175 * Function definition to backwalk a FIB node -
176 * Here we will restack the new dpo of VXLAN DIP to encap node.
177 */
178static fib_node_back_walk_rc_t
Eyal Bari8f576482018-05-07 10:13:44 +0300179vxlan_tunnel_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
John Loc42912d2016-11-07 18:30:47 -0500180{
Eyal Bari8f576482018-05-07 10:13:44 +0300181 vxlan_tunnel_restack_dpo (vxlan_tunnel_from_fib_node (node));
182 return (FIB_NODE_BACK_WALK_CONTINUE);
John Loc42912d2016-11-07 18:30:47 -0500183}
184
185/**
186 * Function definition to get a FIB node from its index
187 */
Eyal Bari8f576482018-05-07 10:13:44 +0300188static fib_node_t *
John Loc42912d2016-11-07 18:30:47 -0500189vxlan_tunnel_fib_node_get (fib_node_index_t index)
190{
Eyal Bari8f576482018-05-07 10:13:44 +0300191 vxlan_tunnel_t *t;
192 vxlan_main_t *vxm = &vxlan_main;
John Loc42912d2016-11-07 18:30:47 -0500193
Eyal Bari8f576482018-05-07 10:13:44 +0300194 t = pool_elt_at_index (vxm->tunnels, index);
John Loc42912d2016-11-07 18:30:47 -0500195
Eyal Bari8f576482018-05-07 10:13:44 +0300196 return (&t->node);
John Loc42912d2016-11-07 18:30:47 -0500197}
198
199/**
200 * Function definition to inform the FIB node that its last lock has gone.
201 */
202static void
Eyal Bari8f576482018-05-07 10:13:44 +0300203vxlan_tunnel_last_lock_gone (fib_node_t * node)
John Loc42912d2016-11-07 18:30:47 -0500204{
Eyal Bari8f576482018-05-07 10:13:44 +0300205 /*
206 * The VXLAN tunnel is a root of the graph. As such
207 * it never has children and thus is never locked.
208 */
209 ASSERT (0);
John Loc42912d2016-11-07 18:30:47 -0500210}
211
212/*
213 * Virtual function table registered by VXLAN tunnels
214 * for participation in the FIB object graph.
215 */
216const static fib_node_vft_t vxlan_vft = {
Eyal Bari8f576482018-05-07 10:13:44 +0300217 .fnv_get = vxlan_tunnel_fib_node_get,
218 .fnv_last_lock = vxlan_tunnel_last_lock_gone,
219 .fnv_back_walk = vxlan_tunnel_back_walk,
John Loc42912d2016-11-07 18:30:47 -0500220};
221
222
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223#define foreach_copy_field \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224_(vni) \
Eyal Baric5b13602016-11-24 19:42:43 +0200225_(mcast_sw_if_index) \
226_(encap_fib_index) \
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800227_(decap_next_index) \
Eyal Baric5b13602016-11-24 19:42:43 +0200228_(src) \
229_(dst)
Chris Luke99cb3352016-04-26 10:49:53 -0400230
Eyal Bari554075a2018-02-13 15:17:17 +0200231static void
Eyal Baria93ea422017-02-01 13:36:15 +0200232vxlan_rewrite (vxlan_tunnel_t * t, bool is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233{
Eyal Bari8f576482018-05-07 10:13:44 +0300234 union
235 {
eyal bari82e21d72018-04-26 13:14:55 +0300236 ip4_vxlan_header_t h4;
237 ip6_vxlan_header_t h6;
Matthew Smithec8aea12018-05-02 09:55:01 -0500238 } h;
eyal bari82e21d72018-04-26 13:14:55 +0300239 int len = is_ip6 ? sizeof h.h6 : sizeof h.h4;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240
Eyal Bari8f576482018-05-07 10:13:44 +0300241 udp_header_t *udp;
242 vxlan_header_t *vxlan;
Eyal Baria93ea422017-02-01 13:36:15 +0200243 /* Fixed portion of the (outer) ip header */
Matthew Smithec8aea12018-05-02 09:55:01 -0500244
Dave Barachb7b92992018-10-17 10:38:51 -0400245 clib_memset (&h, 0, sizeof (h));
Eyal Bari8f576482018-05-07 10:13:44 +0300246 if (!is_ip6)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800247 {
Eyal Bari8f576482018-05-07 10:13:44 +0300248 ip4_header_t *ip = &h.h4.ip4;
eyal bari82e21d72018-04-26 13:14:55 +0300249 udp = &h.h4.udp, vxlan = &h.h4.vxlan;
Eyal Baria93ea422017-02-01 13:36:15 +0200250 ip->ip_version_and_header_length = 0x45;
251 ip->ttl = 254;
252 ip->protocol = IP_PROTOCOL_UDP;
Eyal Bari8f576482018-05-07 10:13:44 +0300253
Eyal Baria93ea422017-02-01 13:36:15 +0200254 ip->src_address = t->src.ip4;
255 ip->dst_address = t->dst.ip4;
256
257 /* we fix up the ip4 header length and checksum after-the-fact */
258 ip->checksum = ip4_header_checksum (ip);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800259 }
260 else
261 {
Eyal Bari8f576482018-05-07 10:13:44 +0300262 ip6_header_t *ip = &h.h6.ip6;
eyal bari82e21d72018-04-26 13:14:55 +0300263 udp = &h.h6.udp, vxlan = &h.h6.vxlan;
Eyal Bari8f576482018-05-07 10:13:44 +0300264 ip->ip_version_traffic_class_and_flow_label =
265 clib_host_to_net_u32 (6 << 28);
Eyal Baria93ea422017-02-01 13:36:15 +0200266 ip->hop_limit = 255;
267 ip->protocol = IP_PROTOCOL_UDP;
Eyal Bari8f576482018-05-07 10:13:44 +0300268
Eyal Baria93ea422017-02-01 13:36:15 +0200269 ip->src_address = t->src.ip6;
270 ip->dst_address = t->dst.ip6;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800271 }
272
Eyal Baria93ea422017-02-01 13:36:15 +0200273 /* UDP header, randomize src port on something, maybe? */
274 udp->src_port = clib_host_to_net_u16 (4789);
275 udp->dst_port = clib_host_to_net_u16 (UDP_DST_PORT_vxlan);
276
277 /* VXLAN header */
Eyal Bari8f576482018-05-07 10:13:44 +0300278 vnet_set_vni_and_flags (vxlan, t->vni);
eyal bari82e21d72018-04-26 13:14:55 +0300279 vnet_rewrite_set_data (*t, &h, len);
Eyal Baria93ea422017-02-01 13:36:15 +0200280}
281
282static bool
Eyal Bari8f576482018-05-07 10:13:44 +0300283vxlan_decap_next_is_valid (vxlan_main_t * vxm, u32 is_ip6,
284 u32 decap_next_index)
Eyal Baria93ea422017-02-01 13:36:15 +0200285{
Eyal Bari8f576482018-05-07 10:13:44 +0300286 vlib_main_t *vm = vxm->vlib_main;
287 u32 input_idx = (!is_ip6) ?
288 vxlan4_input_node.index : vxlan6_input_node.index;
Eyal Baria93ea422017-02-01 13:36:15 +0200289 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, input_idx);
290
291 return decap_next_index < r->n_next_nodes;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800292}
293
Eyal Barifff67c82016-12-21 12:45:47 +0200294static uword
Eyal Bari8f576482018-05-07 10:13:44 +0300295vtep_addr_ref (ip46_address_t * ip)
Eyal Barifff67c82016-12-21 12:45:47 +0200296{
Eyal Bari8f576482018-05-07 10:13:44 +0300297 uword *vtep = ip46_address_is_ip4 (ip) ?
298 hash_get (vxlan_main.vtep4, ip->ip4.as_u32) :
299 hash_get_mem (vxlan_main.vtep6, &ip->ip6);
300 if (vtep)
301 return ++(*vtep);
302 ip46_address_is_ip4 (ip) ?
303 hash_set (vxlan_main.vtep4, ip->ip4.as_u32, 1) :
304 hash_set_mem_alloc (&vxlan_main.vtep6, &ip->ip6, 1);
305 return 1;
Eyal Barifff67c82016-12-21 12:45:47 +0200306}
307
308static uword
Eyal Bari8f576482018-05-07 10:13:44 +0300309vtep_addr_unref (ip46_address_t * ip)
Eyal Barifff67c82016-12-21 12:45:47 +0200310{
Eyal Bari8f576482018-05-07 10:13:44 +0300311 uword *vtep = ip46_address_is_ip4 (ip) ?
312 hash_get (vxlan_main.vtep4, ip->ip4.as_u32) :
313 hash_get_mem (vxlan_main.vtep6, &ip->ip6);
314 ASSERT (vtep);
315 if (--(*vtep) != 0)
316 return *vtep;
317 ip46_address_is_ip4 (ip) ?
318 hash_unset (vxlan_main.vtep4, ip->ip4.as_u32) :
319 hash_unset_mem_free (&vxlan_main.vtep6, &ip->ip6);
320 return 0;
Eyal Barifff67c82016-12-21 12:45:47 +0200321}
322
Eyal Bari8f576482018-05-07 10:13:44 +0300323/* *INDENT-OFF* */
324typedef CLIB_PACKED(union
325{
326 struct
327 {
Neale Ranns32e1c012016-11-22 17:07:28 +0000328 fib_node_index_t mfib_entry_index;
Eyal Bari0ded8512017-01-19 17:01:09 +0200329 adj_index_t mcast_adj_index;
330 };
331 u64 as_u64;
332}) mcast_shared_t;
Eyal Bari8f576482018-05-07 10:13:44 +0300333/* *INDENT-ON* */
Eyal Bari0ded8512017-01-19 17:01:09 +0200334
335static inline mcast_shared_t
Eyal Bari8f576482018-05-07 10:13:44 +0300336mcast_shared_get (ip46_address_t * ip)
Eyal Barifff67c82016-12-21 12:45:47 +0200337{
Eyal Bari8f576482018-05-07 10:13:44 +0300338 ASSERT (ip46_address_is_multicast (ip));
339 uword *p = hash_get_mem (vxlan_main.mcast_shared, ip);
340 ASSERT (p);
341 mcast_shared_t ret = {.as_u64 = *p };
342 return ret;
Eyal Barifff67c82016-12-21 12:45:47 +0200343}
344
Eyal Bari0ded8512017-01-19 17:01:09 +0200345static inline void
Eyal Bari8f576482018-05-07 10:13:44 +0300346mcast_shared_add (ip46_address_t * dst, fib_node_index_t mfei, adj_index_t ai)
Neale Ranns32e1c012016-11-22 17:07:28 +0000347{
Eyal Bari8f576482018-05-07 10:13:44 +0300348 mcast_shared_t new_ep = {
349 .mcast_adj_index = ai,
350 .mfib_entry_index = mfei,
351 };
Neale Ranns32e1c012016-11-22 17:07:28 +0000352
Eyal Bari8f576482018-05-07 10:13:44 +0300353 hash_set_mem_alloc (&vxlan_main.mcast_shared, dst, new_ep.as_u64);
Neale Ranns32e1c012016-11-22 17:07:28 +0000354}
355
356static inline void
Eyal Bari8f576482018-05-07 10:13:44 +0300357mcast_shared_remove (ip46_address_t * dst)
Neale Ranns32e1c012016-11-22 17:07:28 +0000358{
Eyal Bari8f576482018-05-07 10:13:44 +0300359 mcast_shared_t ep = mcast_shared_get (dst);
Neale Ranns32e1c012016-11-22 17:07:28 +0000360
Eyal Bari8f576482018-05-07 10:13:44 +0300361 adj_unlock (ep.mcast_adj_index);
362 mfib_table_entry_delete_index (ep.mfib_entry_index, MFIB_SOURCE_VXLAN);
Neale Ranns32e1c012016-11-22 17:07:28 +0000363
Eyal Bari8f576482018-05-07 10:13:44 +0300364 hash_unset_mem_free (&vxlan_main.mcast_shared, dst);
Eyal Barifff67c82016-12-21 12:45:47 +0200365}
366
Eyal Bari8f576482018-05-07 10:13:44 +0300367int vnet_vxlan_add_del_tunnel
368 (vnet_vxlan_add_del_tunnel_args_t * a, u32 * sw_if_indexp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369{
Eyal Bari8f576482018-05-07 10:13:44 +0300370 vxlan_main_t *vxm = &vxlan_main;
Eyal Bari8f576482018-05-07 10:13:44 +0300371 vnet_main_t *vnm = vxm->vnet_main;
Eyal Bariefd9cf32018-10-02 12:23:06 +0300372 vxlan_decap_info_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373 u32 sw_if_index = ~0;
Chris Luke99cb3352016-04-26 10:49:53 -0400374 vxlan4_tunnel_key_t key4;
375 vxlan6_tunnel_key_t key6;
John Loc42912d2016-11-07 18:30:47 -0500376 u32 is_ip6 = a->is_ip6;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377
Eyal Baridd47eca2018-07-08 08:15:56 +0300378 int not_found;
John Lo56912c82016-12-08 16:10:02 -0500379 if (!is_ip6)
380 {
Eyal Bariefd9cf32018-10-02 12:23:06 +0300381 /* ip4 mcast is indexed by mcast addr only */
382 key4.key[0] = ip46_address_is_multicast (&a->dst) ?
383 a->dst.ip4.as_u32 :
384 a->dst.ip4.as_u32 | (((u64) a->src.ip4.as_u32) << 32);
Eyal Baridd47eca2018-07-08 08:15:56 +0300385 key4.key[1] = (((u64) a->encap_fib_index) << 32)
386 | clib_host_to_net_u32 (a->vni << 8);
387 not_found =
388 clib_bihash_search_inline_16_8 (&vxm->vxlan4_tunnel_by_key, &key4);
Eyal Bariefd9cf32018-10-02 12:23:06 +0300389 p = (void *) &key4.value;
Eyal Bari8f576482018-05-07 10:13:44 +0300390 }
391 else
John Lo56912c82016-12-08 16:10:02 -0500392 {
Eyal Bari0fa56782018-06-04 12:25:05 +0300393 key6.key[0] = a->dst.ip6.as_u64[0];
394 key6.key[1] = a->dst.ip6.as_u64[1];
395 key6.key[2] = (((u64) a->encap_fib_index) << 32)
396 | clib_host_to_net_u32 (a->vni << 8);
Eyal Baridd47eca2018-07-08 08:15:56 +0300397 not_found =
398 clib_bihash_search_inline_24_8 (&vxm->vxlan6_tunnel_by_key, &key6);
Eyal Bariefd9cf32018-10-02 12:23:06 +0300399 p = (void *) &key6.value;
John Lo56912c82016-12-08 16:10:02 -0500400 }
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600401
Eyal Baridd47eca2018-07-08 08:15:56 +0300402 if (not_found)
403 p = 0;
404
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405 if (a->is_add)
406 {
Eyal Bari8f576482018-05-07 10:13:44 +0300407 l2input_main_t *l2im = &l2input_main;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600408 u32 dev_instance; /* real dev instance tunnel index */
409 u32 user_instance; /* request and actual instance number */
John Loc42912d2016-11-07 18:30:47 -0500410
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411 /* adding a tunnel: tunnel must not already exist */
412 if (p)
Eyal Bari8f576482018-05-07 10:13:44 +0300413 return VNET_API_ERROR_TUNNEL_EXIST;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800415 /*if not set explicitly, default to l2 */
Eyal Bari8f576482018-05-07 10:13:44 +0300416 if (a->decap_next_index == ~0)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800417 a->decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
Eyal Bari8f576482018-05-07 10:13:44 +0300418 if (!vxlan_decap_next_is_valid (vxm, is_ip6, a->decap_next_index))
419 return VNET_API_ERROR_INVALID_DECAP_NEXT;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800420
Eyal Bariefd9cf32018-10-02 12:23:06 +0300421 vxlan_tunnel_t *t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422 pool_get_aligned (vxm->tunnels, t, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400423 clib_memset (t, 0, sizeof (*t));
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600424 dev_instance = t - vxm->tunnels;
425
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426 /* copy from arg structure */
427#define _(x) t->x = a->x;
428 foreach_copy_field;
429#undef _
Chris Luke99cb3352016-04-26 10:49:53 -0400430
Eyal Bari554075a2018-02-13 15:17:17 +0200431 vxlan_rewrite (t, is_ip6);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600432 /*
433 * Reconcile the real dev_instance and a possible requested instance.
434 */
435 user_instance = a->instance;
Eyal Bari8f576482018-05-07 10:13:44 +0300436 if (user_instance == ~0)
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600437 user_instance = dev_instance;
438 if (hash_get (vxm->instance_used, user_instance))
439 {
440 pool_put (vxm->tunnels, t);
441 return VNET_API_ERROR_INSTANCE_IN_USE;
442 }
443 hash_set (vxm->instance_used, user_instance, 1);
444
Eyal Bari8f576482018-05-07 10:13:44 +0300445 t->dev_instance = dev_instance; /* actual */
446 t->user_instance = user_instance; /* name */
eyal bariaf86a482018-04-17 11:20:27 +0300447 t->flow_index = ~0;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600448
Eyal Bari554075a2018-02-13 15:17:17 +0200449 t->hw_if_index = vnet_register_interface
Eyal Bari8f576482018-05-07 10:13:44 +0300450 (vnm, vxlan_device_class.index, dev_instance,
451 vxlan_hw_class.index, dev_instance);
452 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, t->hw_if_index);
John Loe5453d02018-01-23 19:21:34 -0500453
454 /* Set vxlan tunnel output node */
455 u32 encap_index = !is_ip6 ?
Eyal Bari8f576482018-05-07 10:13:44 +0300456 vxlan4_encap_node.index : vxlan6_encap_node.index;
Eyal Bari554075a2018-02-13 15:17:17 +0200457 vnet_set_interface_output_node (vnm, t->hw_if_index, encap_index);
John Loe5453d02018-01-23 19:21:34 -0500458
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459 t->sw_if_index = sw_if_index = hi->sw_if_index;
John Loe5453d02018-01-23 19:21:34 -0500460
Eyal Bariefd9cf32018-10-02 12:23:06 +0300461 /* copy the key */
462 int add_failed;
463 if (is_ip6)
464 {
465 key6.value = (u64) dev_instance;
466 add_failed = clib_bihash_add_del_24_8 (&vxm->vxlan6_tunnel_by_key,
467 &key6, 1 /*add */ );
468 }
469 else
470 {
471 vxlan_decap_info_t di = {.sw_if_index = t->sw_if_index, };
472 if (ip46_address_is_multicast (&t->dst))
473 di.local_ip = t->src.ip4;
474 else
475 di.next_index = t->decap_next_index;
476 key4.value = di.as_u64;
477 add_failed = clib_bihash_add_del_16_8 (&vxm->vxlan4_tunnel_by_key,
478 &key4, 1 /*add */ );
479 }
480
481 if (add_failed)
482 {
483 vnet_delete_hw_interface (vnm, t->hw_if_index);
484 hash_unset (vxm->instance_used, t->user_instance);
485 pool_put (vxm->tunnels, t);
486 return VNET_API_ERROR_INVALID_REGISTRATION;
487 }
488
Eyal Bari8f576482018-05-07 10:13:44 +0300489 vec_validate_init_empty (vxm->tunnel_index_by_sw_if_index, sw_if_index,
490 ~0);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600491 vxm->tunnel_index_by_sw_if_index[sw_if_index] = dev_instance;
Dave Wallace60231f32015-12-17 21:04:30 -0500492
John Loc42912d2016-11-07 18:30:47 -0500493 /* setup l2 input config with l2 feature and bd 0 to drop packet */
494 vec_validate (l2im->configs, sw_if_index);
495 l2im->configs[sw_if_index].feature_bitmap = L2INPUT_FEAT_DROP;
496 l2im->configs[sw_if_index].bd_index = 0;
John Loe5453d02018-01-23 19:21:34 -0500497
Eyal Bari8f576482018-05-07 10:13:44 +0300498 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
Eyal Bari3212c572017-03-06 11:47:50 +0200499 si->flags &= ~VNET_SW_INTERFACE_FLAG_HIDDEN;
John Loe5453d02018-01-23 19:21:34 -0500500 vnet_sw_interface_set_flags (vnm, sw_if_index,
Eyal Bari8f576482018-05-07 10:13:44 +0300501 VNET_SW_INTERFACE_FLAG_ADMIN_UP);
Eyal Bari3212c572017-03-06 11:47:50 +0200502
Eyal Bari8f576482018-05-07 10:13:44 +0300503 fib_node_init (&t->node, FIB_NODE_TYPE_VXLAN_TUNNEL);
Eyal Baric5b13602016-11-24 19:42:43 +0200504 fib_prefix_t tun_dst_pfx;
Eyal Baric5b13602016-11-24 19:42:43 +0200505 vnet_flood_class_t flood_class = VNET_FLOOD_CLASS_TUNNEL_NORMAL;
John Loc42912d2016-11-07 18:30:47 -0500506
Eyal Bari8f576482018-05-07 10:13:44 +0300507 fib_prefix_from_ip46_addr (&t->dst, &tun_dst_pfx);
508 if (!ip46_address_is_multicast (&t->dst))
509 {
510 /* Unicast tunnel -
511 * source the FIB entry for the tunnel's destination
512 * and become a child thereof. The tunnel will then get poked
513 * when the forwarding for the entry updates, and the tunnel can
514 * re-stack accordingly
515 */
516 vtep_addr_ref (&t->src);
Neale Ranns1f50bf82019-07-16 15:28:52 +0000517 t->fib_entry_index = fib_entry_track (t->encap_fib_index,
518 &tun_dst_pfx,
519 FIB_NODE_TYPE_VXLAN_TUNNEL,
520 dev_instance,
521 &t->sibling_index);
Eyal Bari8f576482018-05-07 10:13:44 +0300522 vxlan_tunnel_restack_dpo (t);
523 }
Eyal Barifff67c82016-12-21 12:45:47 +0200524 else
Eyal Bari8f576482018-05-07 10:13:44 +0300525 {
526 /* Multicast tunnel -
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700527 * as the same mcast group can be used for multiple mcast tunnels
528 * with different VNIs, create the output fib adjacency only if
John Lo56912c82016-12-08 16:10:02 -0500529 * it does not already exist
530 */
Eyal Bari8f576482018-05-07 10:13:44 +0300531 fib_protocol_t fp = fib_ip_proto (is_ip6);
Eyal Baric5b13602016-11-24 19:42:43 +0200532
Eyal Bari8f576482018-05-07 10:13:44 +0300533 if (vtep_addr_ref (&t->dst) == 1)
534 {
535 fib_node_index_t mfei;
536 adj_index_t ai;
537 fib_route_path_t path = {
538 .frp_proto = fib_proto_to_dpo (fp),
539 .frp_addr = zero_addr,
540 .frp_sw_if_index = 0xffffffff,
541 .frp_fib_index = ~0,
Neale Ranns097fa662018-05-01 05:17:55 -0700542 .frp_weight = 1,
Eyal Bari8f576482018-05-07 10:13:44 +0300543 .frp_flags = FIB_ROUTE_PATH_LOCAL,
Neale Ranns097fa662018-05-01 05:17:55 -0700544 .frp_mitf_flags = MFIB_ITF_FLAG_FORWARD,
Eyal Bari8f576482018-05-07 10:13:44 +0300545 };
546 const mfib_prefix_t mpfx = {
547 .fp_proto = fp,
548 .fp_len = (is_ip6 ? 128 : 32),
549 .fp_grp_addr = tun_dst_pfx.fp_addr,
550 };
Eyal Barifff67c82016-12-21 12:45:47 +0200551
Eyal Bari8f576482018-05-07 10:13:44 +0300552 /*
553 * Setup the (*,G) to receive traffic on the mcast group
554 * - the forwarding interface is for-us
555 * - the accepting interface is that from the API
556 */
557 mfib_table_entry_path_update (t->encap_fib_index,
Neale Ranns097fa662018-05-01 05:17:55 -0700558 &mpfx, MFIB_SOURCE_VXLAN, &path);
Neale Ranns32e1c012016-11-22 17:07:28 +0000559
Eyal Bari8f576482018-05-07 10:13:44 +0300560 path.frp_sw_if_index = a->mcast_sw_if_index;
561 path.frp_flags = FIB_ROUTE_PATH_FLAG_NONE;
Neale Ranns097fa662018-05-01 05:17:55 -0700562 path.frp_mitf_flags = MFIB_ITF_FLAG_ACCEPT;
Eyal Bari8f576482018-05-07 10:13:44 +0300563 mfei = mfib_table_entry_path_update (t->encap_fib_index,
564 &mpfx,
Neale Ranns097fa662018-05-01 05:17:55 -0700565 MFIB_SOURCE_VXLAN, &path);
Neale Ranns32e1c012016-11-22 17:07:28 +0000566
Eyal Bari8f576482018-05-07 10:13:44 +0300567 /*
568 * Create the mcast adjacency to send traffic to the group
569 */
570 ai = adj_mcast_add_or_lock (fp,
571 fib_proto_to_link (fp),
572 a->mcast_sw_if_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000573
Eyal Bari8f576482018-05-07 10:13:44 +0300574 /*
575 * create a new end-point
576 */
577 mcast_shared_add (&t->dst, mfei, ai);
578 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000579
Eyal Bari8f576482018-05-07 10:13:44 +0300580 dpo_id_t dpo = DPO_INVALID;
581 mcast_shared_t ep = mcast_shared_get (&t->dst);
Neale Ranns32e1c012016-11-22 17:07:28 +0000582
Eyal Bari8f576482018-05-07 10:13:44 +0300583 /* Stack shared mcast dst mac addr rewrite on encap */
584 dpo_set (&dpo, DPO_ADJACENCY_MCAST,
585 fib_proto_to_dpo (fp), ep.mcast_adj_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000586
Eyal Bari8f576482018-05-07 10:13:44 +0300587 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
588 dpo_reset (&dpo);
Eyal Barifff67c82016-12-21 12:45:47 +0200589 flood_class = VNET_FLOOD_CLASS_TUNNEL_MASTER;
John Lo56912c82016-12-08 16:10:02 -0500590 }
591
Eyal Bari8f576482018-05-07 10:13:44 +0300592 vnet_get_sw_interface (vnet_get_main (), sw_if_index)->flood_class =
593 flood_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594 }
595 else
596 {
597 /* deleting a tunnel: tunnel must exist */
John Lo37682e12016-11-30 12:51:39 -0500598 if (!p)
Eyal Bari8f576482018-05-07 10:13:44 +0300599 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600
Eyal Barif8d5e212018-10-14 10:54:32 +0300601 u32 instance = is_ip6 ? key6.value :
602 vxm->tunnel_index_by_sw_if_index[p->sw_if_index];
Eyal Bariefd9cf32018-10-02 12:23:06 +0300603 vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700604
Eyal Baribc799c92017-04-06 03:26:59 +0300605 sw_if_index = t->sw_if_index;
Eyal Bari8f576482018-05-07 10:13:44 +0300606 vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600608 vxm->tunnel_index_by_sw_if_index[sw_if_index] = ~0;
Dave Wallace60231f32015-12-17 21:04:30 -0500609
John Loc42912d2016-11-07 18:30:47 -0500610 if (!is_ip6)
Eyal Baridd47eca2018-07-08 08:15:56 +0300611 clib_bihash_add_del_16_8 (&vxm->vxlan4_tunnel_by_key, &key4,
612 0 /*del */ );
Chris Luke99cb3352016-04-26 10:49:53 -0400613 else
Eyal Baridd47eca2018-07-08 08:15:56 +0300614 clib_bihash_add_del_24_8 (&vxm->vxlan6_tunnel_by_key, &key6,
Eyal Bari0fa56782018-06-04 12:25:05 +0300615 0 /*del */ );
Eyal Barifff67c82016-12-21 12:45:47 +0200616
Eyal Bari8f576482018-05-07 10:13:44 +0300617 if (!ip46_address_is_multicast (&t->dst))
618 {
eyal bariaf86a482018-04-17 11:20:27 +0300619 if (t->flow_index != ~0)
620 vnet_flow_del (vnm, t->flow_index);
621
Eyal Bari8f576482018-05-07 10:13:44 +0300622 vtep_addr_unref (&t->src);
Neale Ranns1f50bf82019-07-16 15:28:52 +0000623 fib_entry_untrack (t->fib_entry_index, t->sibling_index);
Eyal Bari8f576482018-05-07 10:13:44 +0300624 }
625 else if (vtep_addr_unref (&t->dst) == 0)
626 {
627 mcast_shared_remove (&t->dst);
628 }
Eyal Barifff67c82016-12-21 12:45:47 +0200629
Eyal Bari554075a2018-02-13 15:17:17 +0200630 vnet_delete_hw_interface (vnm, t->hw_if_index);
Jon Loeliger25ef2b52018-02-23 17:02:41 -0600631 hash_unset (vxm->instance_used, t->user_instance);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600632
Eyal Bari8f576482018-05-07 10:13:44 +0300633 fib_node_deinit (&t->node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700634 pool_put (vxm->tunnels, t);
635 }
636
637 if (sw_if_indexp)
Eyal Bari8f576482018-05-07 10:13:44 +0300638 *sw_if_indexp = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700639
Jakub Grajciardf3ca232019-06-04 13:16:42 +0200640 if (a->is_add)
641 {
642 /* register udp ports */
643 if (!is_ip6 && !udp_is_valid_dst_port (UDP_DST_PORT_vxlan, 1))
644 udp_register_dst_port (vxm->vlib_main, UDP_DST_PORT_vxlan,
645 vxlan4_input_node.index, 1);
646 if (is_ip6 && !udp_is_valid_dst_port (UDP_DST_PORT_vxlan6, 0))
647 udp_register_dst_port (vxm->vlib_main, UDP_DST_PORT_vxlan6,
648 vxlan6_input_node.index, 0);
649 }
650
Ed Warnickecb9cada2015-12-08 15:45:58 -0700651 return 0;
652}
653
Eyal Bari8f576482018-05-07 10:13:44 +0300654static uword
655get_decap_next_for_node (u32 node_index, u32 ipv4_set)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800656{
Eyal Bari8f576482018-05-07 10:13:44 +0300657 vxlan_main_t *vxm = &vxlan_main;
658 vlib_main_t *vm = vxm->vlib_main;
Eyal Bari0765c6e2017-01-29 12:40:50 +0200659 uword input_node = (ipv4_set) ? vxlan4_input_node.index :
660 vxlan6_input_node.index;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800661
Eyal Bari0765c6e2017-01-29 12:40:50 +0200662 return vlib_node_add_next (vm, input_node, node_index);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800663}
664
Eyal Bari8f576482018-05-07 10:13:44 +0300665static uword
666unformat_decap_next (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667{
Eyal Bari8f576482018-05-07 10:13:44 +0300668 u32 *result = va_arg (*args, u32 *);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800669 u32 ipv4_set = va_arg (*args, int);
Eyal Bari8f576482018-05-07 10:13:44 +0300670 vxlan_main_t *vxm = &vxlan_main;
671 vlib_main_t *vm = vxm->vlib_main;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800672 u32 node_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700673 u32 tmp;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800674
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675 if (unformat (input, "l2"))
676 *result = VXLAN_INPUT_NEXT_L2_INPUT;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800677 else if (unformat (input, "node %U", unformat_vlib_node, vm, &node_index))
Eyal Bari8f576482018-05-07 10:13:44 +0300678 *result = get_decap_next_for_node (node_index, ipv4_set);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679 else if (unformat (input, "%d", &tmp))
680 *result = tmp;
681 else
682 return 0;
683 return 1;
684}
685
686static clib_error_t *
687vxlan_add_del_tunnel_command_fn (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +0300688 unformat_input_t * input,
689 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700690{
Eyal Bari8f576482018-05-07 10:13:44 +0300691 unformat_input_t _line_input, *line_input = &_line_input;
692 ip46_address_t src = ip46_address_initializer, dst =
693 ip46_address_initializer;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700694 u8 is_add = 1;
695 u8 src_set = 0;
696 u8 dst_set = 0;
Eyal Baric5b13602016-11-24 19:42:43 +0200697 u8 grp_set = 0;
Chris Luke99cb3352016-04-26 10:49:53 -0400698 u8 ipv4_set = 0;
699 u8 ipv6_set = 0;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600700 u32 instance = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700701 u32 encap_fib_index = 0;
Eyal Baric5b13602016-11-24 19:42:43 +0200702 u32 mcast_sw_if_index = ~0;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800703 u32 decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704 u32 vni = 0;
Eyal Bariaa0180b2018-03-27 11:43:57 +0300705 u32 table_id;
Eyal Bari0fa56782018-06-04 12:25:05 +0300706 clib_error_t *parse_error = NULL;
Eyal Baric5b13602016-11-24 19:42:43 +0200707
Ed Warnickecb9cada2015-12-08 15:45:58 -0700708 /* Get a line of input. */
Eyal Bari8f576482018-05-07 10:13:44 +0300709 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700710 return 0;
711
Eyal Bari8f576482018-05-07 10:13:44 +0300712 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
713 {
714 if (unformat (line_input, "del"))
715 {
716 is_add = 0;
717 }
718 else if (unformat (line_input, "instance %d", &instance))
719 ;
720 else if (unformat (line_input, "src %U",
721 unformat_ip46_address, &src, IP46_TYPE_ANY))
722 {
723 src_set = 1;
724 ip46_address_is_ip4 (&src) ? (ipv4_set = 1) : (ipv6_set = 1);
725 }
726 else if (unformat (line_input, "dst %U",
727 unformat_ip46_address, &dst, IP46_TYPE_ANY))
728 {
729 dst_set = 1;
730 ip46_address_is_ip4 (&dst) ? (ipv4_set = 1) : (ipv6_set = 1);
731 }
732 else if (unformat (line_input, "group %U %U",
733 unformat_ip46_address, &dst, IP46_TYPE_ANY,
734 unformat_vnet_sw_interface,
735 vnet_get_main (), &mcast_sw_if_index))
736 {
737 grp_set = dst_set = 1;
738 ip46_address_is_ip4 (&dst) ? (ipv4_set = 1) : (ipv6_set = 1);
739 }
740 else if (unformat (line_input, "encap-vrf-id %d", &table_id))
741 {
742 encap_fib_index =
743 fib_table_find (fib_ip_proto (ipv6_set), table_id);
Eyal Bari8f576482018-05-07 10:13:44 +0300744 }
745 else if (unformat (line_input, "decap-next %U", unformat_decap_next,
746 &decap_next_index, ipv4_set))
747 ;
748 else if (unformat (line_input, "vni %d", &vni))
749 ;
750 else
751 {
Eyal Bari0fa56782018-06-04 12:25:05 +0300752 parse_error = clib_error_return (0, "parse error: '%U'",
753 format_unformat_error, line_input);
Eyal Bari8f576482018-05-07 10:13:44 +0300754 break;
755 }
756 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700757
Eyal Bariaa0180b2018-03-27 11:43:57 +0300758 unformat_free (line_input);
759
Eyal Bari0fa56782018-06-04 12:25:05 +0300760 if (parse_error)
761 return parse_error;
762
763 if (encap_fib_index == ~0)
764 return clib_error_return (0, "nonexistent encap-vrf-id %d", table_id);
Eyal Bariaa0180b2018-03-27 11:43:57 +0300765
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766 if (src_set == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300767 return clib_error_return (0, "tunnel src address not specified");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700768
769 if (dst_set == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300770 return clib_error_return (0, "tunnel dst address not specified");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700771
Eyal Bari8f576482018-05-07 10:13:44 +0300772 if (grp_set && !ip46_address_is_multicast (&dst))
Eyal Bariaa0180b2018-03-27 11:43:57 +0300773 return clib_error_return (0, "tunnel group address not multicast");
Eyal Baric5b13602016-11-24 19:42:43 +0200774
Eyal Bari8f576482018-05-07 10:13:44 +0300775 if (grp_set == 0 && ip46_address_is_multicast (&dst))
Eyal Bariaa0180b2018-03-27 11:43:57 +0300776 return clib_error_return (0, "dst address must be unicast");
John Lo56912c82016-12-08 16:10:02 -0500777
Eyal Baric5b13602016-11-24 19:42:43 +0200778 if (grp_set && mcast_sw_if_index == ~0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300779 return clib_error_return (0, "tunnel nonexistent multicast device");
Eyal Baric5b13602016-11-24 19:42:43 +0200780
Chris Luke99cb3352016-04-26 10:49:53 -0400781 if (ipv4_set && ipv6_set)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300782 return clib_error_return (0, "both IPv4 and IPv6 addresses specified");
Chris Luke99cb3352016-04-26 10:49:53 -0400783
Eyal Bari8f576482018-05-07 10:13:44 +0300784 if (ip46_address_cmp (&src, &dst) == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300785 return clib_error_return (0, "src and dst addresses are identical");
Chris Luke99cb3352016-04-26 10:49:53 -0400786
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800787 if (decap_next_index == ~0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300788 return clib_error_return (0, "next node not found");
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800789
Ed Warnickecb9cada2015-12-08 15:45:58 -0700790 if (vni == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300791 return clib_error_return (0, "vni not specified");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700792
Eyal Bari8f576482018-05-07 10:13:44 +0300793 if (vni >> 24)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300794 return clib_error_return (0, "vni %d out of range", vni);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700795
Eyal Bariaa0180b2018-03-27 11:43:57 +0300796 vnet_vxlan_add_del_tunnel_args_t a = {
Eyal Bari8f576482018-05-07 10:13:44 +0300797 .is_add = is_add,
798 .is_ip6 = ipv6_set,
799 .instance = instance,
Eyal Bariaa0180b2018-03-27 11:43:57 +0300800#define _(x) .x = x,
Eyal Bari8f576482018-05-07 10:13:44 +0300801 foreach_copy_field
Ed Warnickecb9cada2015-12-08 15:45:58 -0700802#undef _
Eyal Bariaa0180b2018-03-27 11:43:57 +0300803 };
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600804
Eyal Bariaa0180b2018-03-27 11:43:57 +0300805 u32 tunnel_sw_if_index;
806 int rv = vnet_vxlan_add_del_tunnel (&a, &tunnel_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700807
Eyal Bari8f576482018-05-07 10:13:44 +0300808 switch (rv)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700809 {
810 case 0:
Pierre Pfister78ea9c22016-05-23 12:51:54 +0100811 if (is_add)
Eyal Bari8f576482018-05-07 10:13:44 +0300812 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
813 vnet_get_main (), tunnel_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700814 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700815
816 case VNET_API_ERROR_TUNNEL_EXIST:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300817 return clib_error_return (0, "tunnel already exists...");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700818
819 case VNET_API_ERROR_NO_SUCH_ENTRY:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300820 return clib_error_return (0, "tunnel does not exist...");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700821
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600822 case VNET_API_ERROR_INSTANCE_IN_USE:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300823 return clib_error_return (0, "Instance is in use");
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600824
Ed Warnickecb9cada2015-12-08 15:45:58 -0700825 default:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300826 return clib_error_return
Eyal Bari8f576482018-05-07 10:13:44 +0300827 (0, "vnet_vxlan_add_del_tunnel returned %d", rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700828 }
829
Eyal Bari0fa56782018-06-04 12:25:05 +0300830 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700831}
832
Billy McFallc5d9cda2016-09-14 10:39:58 -0400833/*?
834 * Add or delete a VXLAN Tunnel.
835 *
836 * VXLAN provides the features needed to allow L2 bridge domains (BDs)
837 * to span multiple servers. This is done by building an L2 overlay on
838 * top of an L3 network underlay using VXLAN tunnels.
839 *
840 * This makes it possible for servers to be co-located in the same data
841 * center or be separated geographically as long as they are reachable
842 * through the underlay L3 network.
843 *
844 * You can refer to this kind of L2 overlay bridge domain as a VXLAN
845 * (Virtual eXtensible VLAN) segment.
846 *
847 * @cliexpar
848 * Example of how to create a VXLAN Tunnel:
John Loc42912d2016-11-07 18:30:47 -0500849 * @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 -0600850 * Example of how to create a VXLAN Tunnel with a known name, vxlan_tunnel42:
851 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 instance 42}
Eyal Baridd47eca2018-07-08 08:15:56 +0300852 * Example of how to create a multicast VXLAN Tunnel with a known name, vxlan_tunnel23:
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700853 * @cliexcmd{create vxlan tunnel src 10.0.3.1 group 239.1.1.1 GigabitEthernet0/8/0 instance 23}
Billy McFallc5d9cda2016-09-14 10:39:58 -0400854 * Example of how to delete a VXLAN Tunnel:
855 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 del}
856 ?*/
857/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858VLIB_CLI_COMMAND (create_vxlan_tunnel_command, static) = {
859 .path = "create vxlan tunnel",
Eyal Bari8f576482018-05-07 10:13:44 +0300860 .short_help =
Eyal Baric5b13602016-11-24 19:42:43 +0200861 "create vxlan tunnel src <local-vtep-addr>"
862 " {dst <remote-vtep-addr>|group <mcast-vtep-addr> <intf-name>} vni <nn>"
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600863 " [instance <id>]"
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800864 " [encap-vrf-id <nn>] [decap-next [l2|node <name>]] [del]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700865 .function = vxlan_add_del_tunnel_command_fn,
866};
Billy McFallc5d9cda2016-09-14 10:39:58 -0400867/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700868
869static clib_error_t *
870show_vxlan_tunnel_command_fn (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +0300871 unformat_input_t * input,
872 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700873{
Eyal Bari8f576482018-05-07 10:13:44 +0300874 vxlan_main_t *vxm = &vxlan_main;
875 vxlan_tunnel_t *t;
Eyal Bari0fa56782018-06-04 12:25:05 +0300876 int raw = 0;
Eyal Bari0fa56782018-06-04 12:25:05 +0300877
Neale Ranns16be62e2018-07-30 11:59:22 -0700878 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Eyal Bari0fa56782018-06-04 12:25:05 +0300879 {
Neale Ranns16be62e2018-07-30 11:59:22 -0700880 if (unformat (input, "raw"))
Eyal Bari0fa56782018-06-04 12:25:05 +0300881 raw = 1;
882 else
Neale Ranns16be62e2018-07-30 11:59:22 -0700883 return clib_error_return (0, "parse error: '%U'",
884 format_unformat_error, input);
Eyal Bari0fa56782018-06-04 12:25:05 +0300885 }
886
Ed Warnickecb9cada2015-12-08 15:45:58 -0700887 if (pool_elts (vxm->tunnels) == 0)
888 vlib_cli_output (vm, "No vxlan tunnels configured...");
889
Eyal Bari8f576482018-05-07 10:13:44 +0300890/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700891 pool_foreach (t, vxm->tunnels,
892 ({
893 vlib_cli_output (vm, "%U", format_vxlan_tunnel, t);
894 }));
Eyal Bari8f576482018-05-07 10:13:44 +0300895/* *INDENT-ON* */
896
Eyal Bari0fa56782018-06-04 12:25:05 +0300897 if (raw)
Eyal Baridd47eca2018-07-08 08:15:56 +0300898 {
899 vlib_cli_output (vm, "Raw IPv4 Hash Table:\n%U\n",
900 format_bihash_16_8, &vxm->vxlan4_tunnel_by_key,
901 1 /* verbose */ );
902 vlib_cli_output (vm, "Raw IPv6 Hash Table:\n%U\n",
903 format_bihash_24_8, &vxm->vxlan6_tunnel_by_key,
904 1 /* verbose */ );
905 }
Eyal Bari0fa56782018-06-04 12:25:05 +0300906
Ed Warnickecb9cada2015-12-08 15:45:58 -0700907 return 0;
908}
909
Billy McFallc5d9cda2016-09-14 10:39:58 -0400910/*?
911 * Display all the VXLAN Tunnel entries.
912 *
913 * @cliexpar
914 * Example of how to display the VXLAN Tunnel entries:
915 * @cliexstart{show vxlan tunnel}
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800916 * [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 -0400917 * @cliexend
918 ?*/
919/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700920VLIB_CLI_COMMAND (show_vxlan_tunnel_command, static) = {
921 .path = "show vxlan tunnel",
Eyal Bari0fa56782018-06-04 12:25:05 +0300922 .short_help = "show vxlan tunnel [raw]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700923 .function = show_vxlan_tunnel_command_fn,
924};
Billy McFallc5d9cda2016-09-14 10:39:58 -0400925/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700926
Chris Luke99cb3352016-04-26 10:49:53 -0400927
Eyal Bari8f576482018-05-07 10:13:44 +0300928void
929vnet_int_vxlan_bypass_mode (u32 sw_if_index, u8 is_ip6, u8 is_enable)
John Lo2b81eb82017-01-30 13:12:10 -0500930{
Jon Loeligere3034cd2019-01-03 12:56:02 -0600931 vxlan_main_t *vxm = &vxlan_main;
932
933 if (pool_is_free_index (vxm->vnet_main->interface_main.sw_interfaces,
934 sw_if_index))
935 return;
936
937 is_enable = ! !is_enable;
938
John Lo2b81eb82017-01-30 13:12:10 -0500939 if (is_ip6)
Jon Loeligere3034cd2019-01-03 12:56:02 -0600940 {
941 if (clib_bitmap_get (vxm->bm_ip6_bypass_enabled_by_sw_if, sw_if_index)
942 != is_enable)
943 {
944 vnet_feature_enable_disable ("ip6-unicast", "ip6-vxlan-bypass",
945 sw_if_index, is_enable, 0, 0);
946 vxm->bm_ip6_bypass_enabled_by_sw_if =
947 clib_bitmap_set (vxm->bm_ip6_bypass_enabled_by_sw_if,
948 sw_if_index, is_enable);
949 }
950 }
John Lo2b81eb82017-01-30 13:12:10 -0500951 else
Jon Loeligere3034cd2019-01-03 12:56:02 -0600952 {
953 if (clib_bitmap_get (vxm->bm_ip4_bypass_enabled_by_sw_if, sw_if_index)
954 != is_enable)
955 {
956 vnet_feature_enable_disable ("ip4-unicast", "ip4-vxlan-bypass",
957 sw_if_index, is_enable, 0, 0);
958 vxm->bm_ip4_bypass_enabled_by_sw_if =
959 clib_bitmap_set (vxm->bm_ip4_bypass_enabled_by_sw_if,
960 sw_if_index, is_enable);
961 }
962 }
John Lo2b81eb82017-01-30 13:12:10 -0500963}
964
965
966static clib_error_t *
967set_ip_vxlan_bypass (u32 is_ip6,
Eyal Bari8f576482018-05-07 10:13:44 +0300968 unformat_input_t * input, vlib_cli_command_t * cmd)
John Lo2b81eb82017-01-30 13:12:10 -0500969{
Eyal Bari8f576482018-05-07 10:13:44 +0300970 unformat_input_t _line_input, *line_input = &_line_input;
971 vnet_main_t *vnm = vnet_get_main ();
972 clib_error_t *error = 0;
John Lo2b81eb82017-01-30 13:12:10 -0500973 u32 sw_if_index, is_enable;
974
975 sw_if_index = ~0;
976 is_enable = 1;
977
Eyal Bari8f576482018-05-07 10:13:44 +0300978 if (!unformat_user (input, unformat_line_input, line_input))
John Lo2b81eb82017-01-30 13:12:10 -0500979 return 0;
980
981 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
982 {
Eyal Bari8f576482018-05-07 10:13:44 +0300983 if (unformat_user
984 (line_input, unformat_vnet_sw_interface, vnm, &sw_if_index))
985 ;
John Lo2b81eb82017-01-30 13:12:10 -0500986 else if (unformat (line_input, "del"))
Eyal Bari8f576482018-05-07 10:13:44 +0300987 is_enable = 0;
John Lo2b81eb82017-01-30 13:12:10 -0500988 else
Eyal Bari8f576482018-05-07 10:13:44 +0300989 {
John Lo2b81eb82017-01-30 13:12:10 -0500990 error = unformat_parse_error (line_input);
991 goto done;
992 }
993 }
994
995 if (~0 == sw_if_index)
996 {
997 error = clib_error_return (0, "unknown interface `%U'",
998 format_unformat_error, line_input);
999 goto done;
1000 }
1001
1002 vnet_int_vxlan_bypass_mode (sw_if_index, is_ip6, is_enable);
1003
Eyal Bari8f576482018-05-07 10:13:44 +03001004done:
Billy McFalla9a20e72017-02-15 11:39:12 -05001005 unformat_free (line_input);
1006
John Lo2b81eb82017-01-30 13:12:10 -05001007 return error;
1008}
1009
1010static clib_error_t *
1011set_ip4_vxlan_bypass (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +03001012 unformat_input_t * input, vlib_cli_command_t * cmd)
John Lo2b81eb82017-01-30 13:12:10 -05001013{
1014 return set_ip_vxlan_bypass (0, input, cmd);
1015}
1016
1017/*?
Eyal Bari8f576482018-05-07 10:13:44 +03001018 * This command adds the 'ip4-vxlan-bypass' graph node for a given interface.
John Lo2b81eb82017-01-30 13:12:10 -05001019 * By adding the IPv4 vxlan-bypass graph node to an interface, the node checks
Eyal Bari8f576482018-05-07 10:13:44 +03001020 * for and validate input vxlan packet and bypass ip4-lookup, ip4-local,
1021 * ip4-udp-lookup nodes to speedup vxlan packet forwarding. This node will
John Lo2b81eb82017-01-30 13:12:10 -05001022 * cause extra overhead to for non-vxlan packets which is kept at a minimum.
1023 *
1024 * @cliexpar
1025 * @parblock
1026 * Example of graph node before ip4-vxlan-bypass is enabled:
1027 * @cliexstart{show vlib graph ip4-vxlan-bypass}
1028 * Name Next Previous
1029 * ip4-vxlan-bypass error-drop [0]
1030 * vxlan4-input [1]
Eyal Bari8f576482018-05-07 10:13:44 +03001031 * ip4-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001032 * @cliexend
1033 *
1034 * Example of how to enable ip4-vxlan-bypass on an interface:
1035 * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0}
1036 *
1037 * Example of graph node after ip4-vxlan-bypass is enabled:
1038 * @cliexstart{show vlib graph ip4-vxlan-bypass}
Eyal Bari8f576482018-05-07 10:13:44 +03001039 * Name Next Previous
1040 * ip4-vxlan-bypass error-drop [0] ip4-input
1041 * vxlan4-input [1] ip4-input-no-checksum
1042 * ip4-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001043 * @cliexend
1044 *
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001045 * Example of how to display the feature enabled on an interface:
John Lo2b81eb82017-01-30 13:12:10 -05001046 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1047 * IP feature paths configured on GigabitEthernet2/0/0...
1048 * ...
1049 * ipv4 unicast:
1050 * ip4-vxlan-bypass
1051 * ip4-lookup
1052 * ...
1053 * @cliexend
1054 *
1055 * Example of how to disable ip4-vxlan-bypass on an interface:
1056 * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0 del}
1057 * @endparblock
1058?*/
1059/* *INDENT-OFF* */
1060VLIB_CLI_COMMAND (set_interface_ip_vxlan_bypass_command, static) = {
1061 .path = "set interface ip vxlan-bypass",
1062 .function = set_ip4_vxlan_bypass,
1063 .short_help = "set interface ip vxlan-bypass <interface> [del]",
1064};
1065/* *INDENT-ON* */
1066
1067static clib_error_t *
1068set_ip6_vxlan_bypass (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +03001069 unformat_input_t * input, vlib_cli_command_t * cmd)
John Lo2b81eb82017-01-30 13:12:10 -05001070{
1071 return set_ip_vxlan_bypass (1, input, cmd);
1072}
1073
1074/*?
Eyal Bari8f576482018-05-07 10:13:44 +03001075 * This command adds the 'ip6-vxlan-bypass' graph node for a given interface.
John Lo2b81eb82017-01-30 13:12:10 -05001076 * By adding the IPv6 vxlan-bypass graph node to an interface, the node checks
Eyal Bari8f576482018-05-07 10:13:44 +03001077 * for and validate input vxlan packet and bypass ip6-lookup, ip6-local,
1078 * ip6-udp-lookup nodes to speedup vxlan packet forwarding. This node will
John Lo2b81eb82017-01-30 13:12:10 -05001079 * cause extra overhead to for non-vxlan packets which is kept at a minimum.
1080 *
1081 * @cliexpar
1082 * @parblock
1083 * Example of graph node before ip6-vxlan-bypass is enabled:
1084 * @cliexstart{show vlib graph ip6-vxlan-bypass}
1085 * Name Next Previous
1086 * ip6-vxlan-bypass error-drop [0]
1087 * vxlan6-input [1]
Eyal Bari8f576482018-05-07 10:13:44 +03001088 * ip6-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001089 * @cliexend
1090 *
1091 * Example of how to enable ip6-vxlan-bypass on an interface:
1092 * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0}
1093 *
1094 * Example of graph node after ip6-vxlan-bypass is enabled:
1095 * @cliexstart{show vlib graph ip6-vxlan-bypass}
Eyal Bari8f576482018-05-07 10:13:44 +03001096 * Name Next Previous
1097 * ip6-vxlan-bypass error-drop [0] ip6-input
1098 * vxlan6-input [1] ip4-input-no-checksum
1099 * ip6-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001100 * @cliexend
1101 *
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001102 * Example of how to display the feature enabled on an interface:
John Lo2b81eb82017-01-30 13:12:10 -05001103 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1104 * IP feature paths configured on GigabitEthernet2/0/0...
1105 * ...
1106 * ipv6 unicast:
1107 * ip6-vxlan-bypass
1108 * ip6-lookup
1109 * ...
1110 * @cliexend
1111 *
1112 * Example of how to disable ip6-vxlan-bypass on an interface:
1113 * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0 del}
1114 * @endparblock
1115?*/
1116/* *INDENT-OFF* */
1117VLIB_CLI_COMMAND (set_interface_ip6_vxlan_bypass_command, static) = {
1118 .path = "set interface ip6 vxlan-bypass",
1119 .function = set_ip6_vxlan_bypass,
Paul Vinciguerra5fb22782019-11-07 17:20:48 -05001120 .short_help = "set interface ip6 vxlan-bypass <interface> [del]",
John Lo2b81eb82017-01-30 13:12:10 -05001121};
1122/* *INDENT-ON* */
1123
eyal bariaf86a482018-04-17 11:20:27 +03001124int
1125vnet_vxlan_add_del_rx_flow (u32 hw_if_index, u32 t_index, int is_add)
1126{
1127 vxlan_main_t *vxm = &vxlan_main;
1128 vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, t_index);
1129 vnet_main_t *vnm = vnet_get_main ();
1130 if (is_add)
1131 {
1132 if (t->flow_index == ~0)
1133 {
1134 vxlan_main_t *vxm = &vxlan_main;
1135 vnet_flow_t flow = {
1136 .actions =
Chenmin Sun1ec9fdb2019-12-05 01:41:35 +08001137 VNET_FLOW_ACTION_REDIRECT_TO_NODE | VNET_FLOW_ACTION_MARK |
1138 VNET_FLOW_ACTION_BUFFER_ADVANCE,
eyal bariaf86a482018-04-17 11:20:27 +03001139 .mark_flow_id = t->dev_instance + vxm->flow_id_start,
1140 .redirect_node_index = vxlan4_flow_input_node.index,
Chenmin Sun1ec9fdb2019-12-05 01:41:35 +08001141 .buffer_advance = sizeof (ethernet_header_t),
eyal bariaf86a482018-04-17 11:20:27 +03001142 .type = VNET_FLOW_TYPE_IP4_VXLAN,
1143 .ip4_vxlan = {
1144 .src_addr = t->dst.ip4,
1145 .dst_addr = t->src.ip4,
1146 .dst_port = UDP_DST_PORT_vxlan,
1147 .vni = t->vni,
1148 }
1149 ,
1150 };
1151 vnet_flow_add (vnm, &flow, &t->flow_index);
1152 }
1153 return vnet_flow_enable (vnm, t->flow_index, hw_if_index);
1154 }
1155 /* flow index is removed when the tunnel is deleted */
1156 return vnet_flow_disable (vnm, t->flow_index, hw_if_index);
1157}
1158
1159u32
1160vnet_vxlan_get_tunnel_index (u32 sw_if_index)
1161{
1162 vxlan_main_t *vxm = &vxlan_main;
1163
Eyal Baricd307742018-07-22 12:45:15 +03001164 if (sw_if_index >= vec_len (vxm->tunnel_index_by_sw_if_index))
eyal bariaf86a482018-04-17 11:20:27 +03001165 return ~0;
1166 return vxm->tunnel_index_by_sw_if_index[sw_if_index];
1167}
1168
1169static clib_error_t *
1170vxlan_offload_command_fn (vlib_main_t * vm,
1171 unformat_input_t * input, vlib_cli_command_t * cmd)
1172{
1173 unformat_input_t _line_input, *line_input = &_line_input;
1174
1175 /* Get a line of input. */
1176 if (!unformat_user (input, unformat_line_input, line_input))
1177 return 0;
1178
1179 vnet_main_t *vnm = vnet_get_main ();
1180 u32 rx_sw_if_index = ~0;
1181 u32 hw_if_index = ~0;
1182 int is_add = 1;
1183
1184 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1185 {
1186 if (unformat (line_input, "hw %U", unformat_vnet_hw_interface, vnm,
1187 &hw_if_index))
1188 continue;
1189 if (unformat (line_input, "rx %U", unformat_vnet_sw_interface, vnm,
1190 &rx_sw_if_index))
1191 continue;
1192 if (unformat (line_input, "del"))
1193 {
1194 is_add = 0;
1195 continue;
1196 }
1197 return clib_error_return (0, "unknown input `%U'",
1198 format_unformat_error, line_input);
1199 }
1200
1201 if (rx_sw_if_index == ~0)
1202 return clib_error_return (0, "missing rx interface");
1203 if (hw_if_index == ~0)
1204 return clib_error_return (0, "missing hw interface");
1205
1206 u32 t_index = vnet_vxlan_get_tunnel_index (rx_sw_if_index);;
1207 if (t_index == ~0)
1208 return clib_error_return (0, "%U is not a vxlan tunnel",
1209 format_vnet_sw_if_index_name, vnm,
1210 rx_sw_if_index);
1211
1212 vxlan_main_t *vxm = &vxlan_main;
1213 vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, t_index);
1214
1215 if (!ip46_address_is_ip4 (&t->dst))
1216 return clib_error_return (0, "currently only IPV4 tunnels are supported");
1217
1218 vnet_hw_interface_t *hw_if = vnet_get_hw_interface (vnm, hw_if_index);
1219 ip4_main_t *im = &ip4_main;
1220 u32 rx_fib_index =
1221 vec_elt (im->fib_index_by_sw_if_index, hw_if->sw_if_index);
1222
1223 if (t->encap_fib_index != rx_fib_index)
1224 return clib_error_return (0, "interface/tunnel fib mismatch");
1225
1226 if (vnet_vxlan_add_del_rx_flow (hw_if_index, t_index, is_add))
1227 return clib_error_return (0, "error %s flow",
1228 is_add ? "enabling" : "disabling");
1229
1230 return 0;
1231}
1232
1233/* *INDENT-OFF* */
1234VLIB_CLI_COMMAND (vxlan_offload_command, static) = {
1235 .path = "set flow-offload vxlan",
1236 .short_help =
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001237 "set flow-offload vxlan hw <interface-name> rx <tunnel-name> [del]",
eyal bariaf86a482018-04-17 11:20:27 +03001238 .function = vxlan_offload_command_fn,
1239};
1240/* *INDENT-ON* */
1241
Eyal Bari0fa56782018-06-04 12:25:05 +03001242#define VXLAN_HASH_NUM_BUCKETS (2 * 1024)
1243#define VXLAN_HASH_MEMORY_SIZE (1 << 20)
1244
Eyal Bari8f576482018-05-07 10:13:44 +03001245clib_error_t *
1246vxlan_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001247{
Eyal Bari8f576482018-05-07 10:13:44 +03001248 vxlan_main_t *vxm = &vxlan_main;
1249
1250 vxm->vnet_main = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001251 vxm->vlib_main = vm;
1252
eyal bariaf86a482018-04-17 11:20:27 +03001253 vnet_flow_get_range (vxm->vnet_main, "vxlan", 1024 * 1024,
1254 &vxm->flow_id_start);
1255
Jon Loeligere3034cd2019-01-03 12:56:02 -06001256 vxm->bm_ip4_bypass_enabled_by_sw_if = 0;
1257 vxm->bm_ip6_bypass_enabled_by_sw_if = 0;
1258
Chris Luke99cb3352016-04-26 10:49:53 -04001259 /* initialize the ip6 hash */
Eyal Baridd47eca2018-07-08 08:15:56 +03001260 clib_bihash_init_16_8 (&vxm->vxlan4_tunnel_by_key, "vxlan4",
1261 VXLAN_HASH_NUM_BUCKETS, VXLAN_HASH_MEMORY_SIZE);
1262 clib_bihash_init_24_8 (&vxm->vxlan6_tunnel_by_key, "vxlan6",
Eyal Bari0fa56782018-06-04 12:25:05 +03001263 VXLAN_HASH_NUM_BUCKETS, VXLAN_HASH_MEMORY_SIZE);
Eyal Bari8f576482018-05-07 10:13:44 +03001264 vxm->vtep6 = hash_create_mem (0, sizeof (ip6_address_t), sizeof (uword));
1265 vxm->mcast_shared = hash_create_mem (0,
1266 sizeof (ip46_address_t),
1267 sizeof (mcast_shared_t));
Chris Luke99cb3352016-04-26 10:49:53 -04001268
Eyal Bari8f576482018-05-07 10:13:44 +03001269 fib_node_register_type (FIB_NODE_TYPE_VXLAN_TUNNEL, &vxlan_vft);
John Loc42912d2016-11-07 18:30:47 -05001270
Ed Warnickecb9cada2015-12-08 15:45:58 -07001271 return 0;
1272}
1273
Eyal Bari8f576482018-05-07 10:13:44 +03001274VLIB_INIT_FUNCTION (vxlan_init);
Jon Loeliger3d460bd2018-02-01 16:36:12 -06001275
1276/*
Eyal Bari8f576482018-05-07 10:13:44 +03001277 * fd.io coding-style-patch-verification: ON
1278 *
Jon Loeliger3d460bd2018-02-01 16:36:12 -06001279 * Local Variables:
1280 * eval: (c-set-style "gnu")
1281 * End:
1282 */