blob: 742103a7887690505ab4ef3c4c1aad3f87cb669e [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>
Florin Corasb040f982020-10-20 14:59:43 -070025#include <vnet/udp/udp_local.h>
Hongjun Nibeb4bf72016-11-25 00:03:46 +080026#include <vlib/vlib.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070027
Billy McFallc5d9cda2016-09-14 10:39:58 -040028/**
29 * @file
30 * @brief VXLAN.
31 *
32 * VXLAN provides the features needed to allow L2 bridge domains (BDs)
33 * to span multiple servers. This is done by building an L2 overlay on
34 * top of an L3 network underlay using VXLAN tunnels.
35 *
36 * This makes it possible for servers to be co-located in the same data
37 * center or be separated geographically as long as they are reachable
38 * through the underlay L3 network.
39 *
40 * You can refer to this kind of L2 overlay bridge domain as a VXLAN
41 * (Virtual eXtensible VLAN) segment.
42 */
43
44
Ed Warnickecb9cada2015-12-08 15:45:58 -070045vxlan_main_t vxlan_main;
46
Eyal Bari8f576482018-05-07 10:13:44 +030047static u8 *
48format_decap_next (u8 * s, va_list * args)
Hongjun Nibeb4bf72016-11-25 00:03:46 +080049{
50 u32 next_index = va_arg (*args, u32);
51
John Lo4478d8e2018-01-12 17:15:25 -050052 if (next_index == VXLAN_INPUT_NEXT_DROP)
53 return format (s, "drop");
54 else
55 return format (s, "index %d", next_index);
Hongjun Nibeb4bf72016-11-25 00:03:46 +080056 return s;
57}
58
Eyal Bari8f576482018-05-07 10:13:44 +030059u8 *
60format_vxlan_tunnel (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070061{
Eyal Bari8f576482018-05-07 10:13:44 +030062 vxlan_tunnel_t *t = va_arg (*args, vxlan_tunnel_t *);
Jon Loeliger3d460bd2018-02-01 16:36:12 -060063
64 s = format (s,
65 "[%d] instance %d src %U dst %U vni %d fib-idx %d sw-if-idx %d ",
John Lo25d417f2018-02-15 15:47:53 -050066 t->dev_instance, t->user_instance,
Eyal Bari8f576482018-05-07 10:13:44 +030067 format_ip46_address, &t->src, IP46_TYPE_ANY,
68 format_ip46_address, &t->dst, IP46_TYPE_ANY,
69 t->vni, t->encap_fib_index, t->sw_if_index);
John Lo56912c82016-12-08 16:10:02 -050070
John Lo4478d8e2018-01-12 17:15:25 -050071 s = format (s, "encap-dpo-idx %d ", t->next_dpo.dpoi_index);
John Lo56912c82016-12-08 16:10:02 -050072
John Lo4478d8e2018-01-12 17:15:25 -050073 if (PREDICT_FALSE (t->decap_next_index != VXLAN_INPUT_NEXT_L2_INPUT))
74 s = format (s, "decap-next-%U ", format_decap_next, t->decap_next_index);
75
76 if (PREDICT_FALSE (ip46_address_is_multicast (&t->dst)))
77 s = format (s, "mcast-sw-if-idx %d ", t->mcast_sw_if_index);
78
eyal bariaf86a482018-04-17 11:20:27 +030079 if (t->flow_index != ~0)
80 s = format (s, "flow-index %d [%U]", t->flow_index,
81 format_flow_enabled_hw, t->flow_index);
82
Ed Warnickecb9cada2015-12-08 15:45:58 -070083 return s;
84}
85
Eyal Bari8f576482018-05-07 10:13:44 +030086static u8 *
87format_vxlan_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070088{
89 u32 dev_instance = va_arg (*args, u32);
Eyal Bari8f576482018-05-07 10:13:44 +030090 vxlan_main_t *vxm = &vxlan_main;
Jon Loeliger3d460bd2018-02-01 16:36:12 -060091 vxlan_tunnel_t *t;
92
93 if (dev_instance == ~0)
Eyal Bari8f576482018-05-07 10:13:44 +030094 return format (s, "<cached-unused>");
Jon Loeliger3d460bd2018-02-01 16:36:12 -060095
Eyal Bari8f576482018-05-07 10:13:44 +030096 if (dev_instance >= vec_len (vxm->tunnels))
97 return format (s, "<improperly-referenced>");
Jon Loeliger3d460bd2018-02-01 16:36:12 -060098
Eyal Bari8f576482018-05-07 10:13:44 +030099 t = pool_elt_at_index (vxm->tunnels, dev_instance);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600100
101 return format (s, "vxlan_tunnel%d", t->user_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102}
103
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100104static clib_error_t *
105vxlan_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
106{
Eyal Baria93ea422017-02-01 13:36:15 +0200107 u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
108 VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
109 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100110
111 return /* no error */ 0;
112}
113
Eyal Bari8f576482018-05-07 10:13:44 +0300114/* *INDENT-OFF* */
115VNET_DEVICE_CLASS (vxlan_device_class, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116 .name = "VXLAN",
117 .format_device_name = format_vxlan_name,
118 .format_tx_trace = format_vxlan_encap_trace,
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100119 .admin_up_down_function = vxlan_interface_admin_up_down,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120};
Eyal Bari8f576482018-05-07 10:13:44 +0300121/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122
Eyal Bari8f576482018-05-07 10:13:44 +0300123static u8 *
124format_vxlan_header_with_length (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125{
126 u32 dev_instance = va_arg (*args, u32);
127 s = format (s, "unimplemented dev %u", dev_instance);
128 return s;
129}
130
Eyal Bari8f576482018-05-07 10:13:44 +0300131/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132VNET_HW_INTERFACE_CLASS (vxlan_hw_class) = {
133 .name = "VXLAN",
134 .format_header = format_vxlan_header_with_length,
Neale Rannsb80c5362016-10-08 13:03:40 +0100135 .build_rewrite = default_build_rewrite,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136};
Eyal Bari8f576482018-05-07 10:13:44 +0300137/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138
Eyal Baric5b13602016-11-24 19:42:43 +0200139static void
Eyal Bari8f576482018-05-07 10:13:44 +0300140vxlan_tunnel_restack_dpo (vxlan_tunnel_t * t)
Eyal Baric5b13602016-11-24 19:42:43 +0200141{
Eyal Bari8f576482018-05-07 10:13:44 +0300142 u8 is_ip4 = ip46_address_is_ip4 (&t->dst);
Eyal Bari99ed4862018-04-25 13:50:57 +0300143 dpo_id_t dpo = DPO_INVALID;
144 fib_forward_chain_type_t forw_type = is_ip4 ?
Eyal Bari8f576482018-05-07 10:13:44 +0300145 FIB_FORW_CHAIN_TYPE_UNICAST_IP4 : FIB_FORW_CHAIN_TYPE_UNICAST_IP6;
Eyal Baric5b13602016-11-24 19:42:43 +0200146
Eyal Bari99ed4862018-04-25 13:50:57 +0300147 fib_entry_contribute_forwarding (t->fib_entry_index, forw_type, &dpo);
148
149 /* vxlan uses the payload hash as the udp source port
150 * hence the packet's hash is unknown
151 * skip single bucket load balance dpo's */
152 while (DPO_LOAD_BALANCE == dpo.dpoi_type)
153 {
154 load_balance_t *lb = load_balance_get (dpo.dpoi_index);
155 if (lb->lb_n_buckets > 1)
Eyal Bari8f576482018-05-07 10:13:44 +0300156 break;
Eyal Bari99ed4862018-04-25 13:50:57 +0300157
158 dpo_copy (&dpo, load_balance_get_bucket_i (lb, 0));
159 }
160
161 u32 encap_index = is_ip4 ?
Eyal Bari8f576482018-05-07 10:13:44 +0300162 vxlan4_encap_node.index : vxlan6_encap_node.index;
Eyal Bari99ed4862018-04-25 13:50:57 +0300163 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
Eyal Bari8f576482018-05-07 10:13:44 +0300164 dpo_reset (&dpo);
Eyal Baric5b13602016-11-24 19:42:43 +0200165}
John Loc42912d2016-11-07 18:30:47 -0500166
167static vxlan_tunnel_t *
Eyal Bari8f576482018-05-07 10:13:44 +0300168vxlan_tunnel_from_fib_node (fib_node_t * node)
John Loc42912d2016-11-07 18:30:47 -0500169{
Eyal Bari8f576482018-05-07 10:13:44 +0300170 ASSERT (FIB_NODE_TYPE_VXLAN_TUNNEL == node->fn_type);
171 return ((vxlan_tunnel_t *) (((char *) node) -
172 STRUCT_OFFSET_OF (vxlan_tunnel_t, node)));
John Loc42912d2016-11-07 18:30:47 -0500173}
174
175/**
176 * Function definition to backwalk a FIB node -
177 * Here we will restack the new dpo of VXLAN DIP to encap node.
178 */
179static fib_node_back_walk_rc_t
Eyal Bari8f576482018-05-07 10:13:44 +0300180vxlan_tunnel_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
John Loc42912d2016-11-07 18:30:47 -0500181{
Eyal Bari8f576482018-05-07 10:13:44 +0300182 vxlan_tunnel_restack_dpo (vxlan_tunnel_from_fib_node (node));
183 return (FIB_NODE_BACK_WALK_CONTINUE);
John Loc42912d2016-11-07 18:30:47 -0500184}
185
186/**
187 * Function definition to get a FIB node from its index
188 */
Eyal Bari8f576482018-05-07 10:13:44 +0300189static fib_node_t *
John Loc42912d2016-11-07 18:30:47 -0500190vxlan_tunnel_fib_node_get (fib_node_index_t index)
191{
Eyal Bari8f576482018-05-07 10:13:44 +0300192 vxlan_tunnel_t *t;
193 vxlan_main_t *vxm = &vxlan_main;
John Loc42912d2016-11-07 18:30:47 -0500194
Eyal Bari8f576482018-05-07 10:13:44 +0300195 t = pool_elt_at_index (vxm->tunnels, index);
John Loc42912d2016-11-07 18:30:47 -0500196
Eyal Bari8f576482018-05-07 10:13:44 +0300197 return (&t->node);
John Loc42912d2016-11-07 18:30:47 -0500198}
199
200/**
201 * Function definition to inform the FIB node that its last lock has gone.
202 */
203static void
Eyal Bari8f576482018-05-07 10:13:44 +0300204vxlan_tunnel_last_lock_gone (fib_node_t * node)
John Loc42912d2016-11-07 18:30:47 -0500205{
Eyal Bari8f576482018-05-07 10:13:44 +0300206 /*
207 * The VXLAN tunnel is a root of the graph. As such
208 * it never has children and thus is never locked.
209 */
210 ASSERT (0);
John Loc42912d2016-11-07 18:30:47 -0500211}
212
213/*
214 * Virtual function table registered by VXLAN tunnels
215 * for participation in the FIB object graph.
216 */
217const static fib_node_vft_t vxlan_vft = {
Eyal Bari8f576482018-05-07 10:13:44 +0300218 .fnv_get = vxlan_tunnel_fib_node_get,
219 .fnv_last_lock = vxlan_tunnel_last_lock_gone,
220 .fnv_back_walk = vxlan_tunnel_back_walk,
John Loc42912d2016-11-07 18:30:47 -0500221};
222
223
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224#define foreach_copy_field \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225_(vni) \
Eyal Baric5b13602016-11-24 19:42:43 +0200226_(mcast_sw_if_index) \
227_(encap_fib_index) \
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800228_(decap_next_index) \
Eyal Baric5b13602016-11-24 19:42:43 +0200229_(src) \
230_(dst)
Chris Luke99cb3352016-04-26 10:49:53 -0400231
Eyal Bari554075a2018-02-13 15:17:17 +0200232static void
Eyal Baria93ea422017-02-01 13:36:15 +0200233vxlan_rewrite (vxlan_tunnel_t * t, bool is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234{
Eyal Bari8f576482018-05-07 10:13:44 +0300235 union
236 {
eyal bari82e21d72018-04-26 13:14:55 +0300237 ip4_vxlan_header_t h4;
238 ip6_vxlan_header_t h6;
Matthew Smithec8aea12018-05-02 09:55:01 -0500239 } h;
eyal bari82e21d72018-04-26 13:14:55 +0300240 int len = is_ip6 ? sizeof h.h6 : sizeof h.h4;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241
Eyal Bari8f576482018-05-07 10:13:44 +0300242 udp_header_t *udp;
243 vxlan_header_t *vxlan;
Eyal Baria93ea422017-02-01 13:36:15 +0200244 /* Fixed portion of the (outer) ip header */
Matthew Smithec8aea12018-05-02 09:55:01 -0500245
Dave Barachb7b92992018-10-17 10:38:51 -0400246 clib_memset (&h, 0, sizeof (h));
Eyal Bari8f576482018-05-07 10:13:44 +0300247 if (!is_ip6)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800248 {
Eyal Bari8f576482018-05-07 10:13:44 +0300249 ip4_header_t *ip = &h.h4.ip4;
eyal bari82e21d72018-04-26 13:14:55 +0300250 udp = &h.h4.udp, vxlan = &h.h4.vxlan;
Eyal Baria93ea422017-02-01 13:36:15 +0200251 ip->ip_version_and_header_length = 0x45;
252 ip->ttl = 254;
253 ip->protocol = IP_PROTOCOL_UDP;
Eyal Bari8f576482018-05-07 10:13:44 +0300254
Eyal Baria93ea422017-02-01 13:36:15 +0200255 ip->src_address = t->src.ip4;
256 ip->dst_address = t->dst.ip4;
257
258 /* we fix up the ip4 header length and checksum after-the-fact */
259 ip->checksum = ip4_header_checksum (ip);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800260 }
261 else
262 {
Eyal Bari8f576482018-05-07 10:13:44 +0300263 ip6_header_t *ip = &h.h6.ip6;
eyal bari82e21d72018-04-26 13:14:55 +0300264 udp = &h.h6.udp, vxlan = &h.h6.vxlan;
Eyal Bari8f576482018-05-07 10:13:44 +0300265 ip->ip_version_traffic_class_and_flow_label =
266 clib_host_to_net_u32 (6 << 28);
Eyal Baria93ea422017-02-01 13:36:15 +0200267 ip->hop_limit = 255;
268 ip->protocol = IP_PROTOCOL_UDP;
Eyal Bari8f576482018-05-07 10:13:44 +0300269
Eyal Baria93ea422017-02-01 13:36:15 +0200270 ip->src_address = t->src.ip6;
271 ip->dst_address = t->dst.ip6;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800272 }
273
Eyal Baria93ea422017-02-01 13:36:15 +0200274 /* UDP header, randomize src port on something, maybe? */
275 udp->src_port = clib_host_to_net_u16 (4789);
276 udp->dst_port = clib_host_to_net_u16 (UDP_DST_PORT_vxlan);
277
278 /* VXLAN header */
Eyal Bari8f576482018-05-07 10:13:44 +0300279 vnet_set_vni_and_flags (vxlan, t->vni);
eyal bari82e21d72018-04-26 13:14:55 +0300280 vnet_rewrite_set_data (*t, &h, len);
Eyal Baria93ea422017-02-01 13:36:15 +0200281}
282
283static bool
Eyal Bari8f576482018-05-07 10:13:44 +0300284vxlan_decap_next_is_valid (vxlan_main_t * vxm, u32 is_ip6,
285 u32 decap_next_index)
Eyal Baria93ea422017-02-01 13:36:15 +0200286{
Eyal Bari8f576482018-05-07 10:13:44 +0300287 vlib_main_t *vm = vxm->vlib_main;
288 u32 input_idx = (!is_ip6) ?
289 vxlan4_input_node.index : vxlan6_input_node.index;
Eyal Baria93ea422017-02-01 13:36:15 +0200290 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, input_idx);
291
292 return decap_next_index < r->n_next_nodes;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800293}
294
Eyal Bari8f576482018-05-07 10:13:44 +0300295/* *INDENT-OFF* */
296typedef CLIB_PACKED(union
297{
298 struct
299 {
Neale Ranns32e1c012016-11-22 17:07:28 +0000300 fib_node_index_t mfib_entry_index;
Eyal Bari0ded8512017-01-19 17:01:09 +0200301 adj_index_t mcast_adj_index;
302 };
303 u64 as_u64;
304}) mcast_shared_t;
Eyal Bari8f576482018-05-07 10:13:44 +0300305/* *INDENT-ON* */
Eyal Bari0ded8512017-01-19 17:01:09 +0200306
307static inline mcast_shared_t
Eyal Bari8f576482018-05-07 10:13:44 +0300308mcast_shared_get (ip46_address_t * ip)
Eyal Barifff67c82016-12-21 12:45:47 +0200309{
Eyal Bari8f576482018-05-07 10:13:44 +0300310 ASSERT (ip46_address_is_multicast (ip));
311 uword *p = hash_get_mem (vxlan_main.mcast_shared, ip);
Dave Barach47d41ad2020-02-17 09:13:26 -0500312 ALWAYS_ASSERT (p);
Eyal Bari8f576482018-05-07 10:13:44 +0300313 mcast_shared_t ret = {.as_u64 = *p };
314 return ret;
Eyal Barifff67c82016-12-21 12:45:47 +0200315}
316
Eyal Bari0ded8512017-01-19 17:01:09 +0200317static inline void
Eyal Bari8f576482018-05-07 10:13:44 +0300318mcast_shared_add (ip46_address_t * dst, fib_node_index_t mfei, adj_index_t ai)
Neale Ranns32e1c012016-11-22 17:07:28 +0000319{
Eyal Bari8f576482018-05-07 10:13:44 +0300320 mcast_shared_t new_ep = {
321 .mcast_adj_index = ai,
322 .mfib_entry_index = mfei,
323 };
Neale Ranns32e1c012016-11-22 17:07:28 +0000324
Eyal Bari8f576482018-05-07 10:13:44 +0300325 hash_set_mem_alloc (&vxlan_main.mcast_shared, dst, new_ep.as_u64);
Neale Ranns32e1c012016-11-22 17:07:28 +0000326}
327
328static inline void
Eyal Bari8f576482018-05-07 10:13:44 +0300329mcast_shared_remove (ip46_address_t * dst)
Neale Ranns32e1c012016-11-22 17:07:28 +0000330{
Eyal Bari8f576482018-05-07 10:13:44 +0300331 mcast_shared_t ep = mcast_shared_get (dst);
Neale Ranns32e1c012016-11-22 17:07:28 +0000332
Eyal Bari8f576482018-05-07 10:13:44 +0300333 adj_unlock (ep.mcast_adj_index);
334 mfib_table_entry_delete_index (ep.mfib_entry_index, MFIB_SOURCE_VXLAN);
Neale Ranns32e1c012016-11-22 17:07:28 +0000335
Eyal Bari8f576482018-05-07 10:13:44 +0300336 hash_unset_mem_free (&vxlan_main.mcast_shared, dst);
Eyal Barifff67c82016-12-21 12:45:47 +0200337}
338
Eyal Bari8f576482018-05-07 10:13:44 +0300339int vnet_vxlan_add_del_tunnel
340 (vnet_vxlan_add_del_tunnel_args_t * a, u32 * sw_if_indexp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700341{
Eyal Bari8f576482018-05-07 10:13:44 +0300342 vxlan_main_t *vxm = &vxlan_main;
Eyal Bari8f576482018-05-07 10:13:44 +0300343 vnet_main_t *vnm = vxm->vnet_main;
Eyal Bariefd9cf32018-10-02 12:23:06 +0300344 vxlan_decap_info_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345 u32 sw_if_index = ~0;
Chris Luke99cb3352016-04-26 10:49:53 -0400346 vxlan4_tunnel_key_t key4;
347 vxlan6_tunnel_key_t key6;
John Loc42912d2016-11-07 18:30:47 -0500348 u32 is_ip6 = a->is_ip6;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700349
Eyal Baridd47eca2018-07-08 08:15:56 +0300350 int not_found;
John Lo56912c82016-12-08 16:10:02 -0500351 if (!is_ip6)
352 {
Eyal Bariefd9cf32018-10-02 12:23:06 +0300353 /* ip4 mcast is indexed by mcast addr only */
354 key4.key[0] = ip46_address_is_multicast (&a->dst) ?
355 a->dst.ip4.as_u32 :
356 a->dst.ip4.as_u32 | (((u64) a->src.ip4.as_u32) << 32);
Eyal Baridd47eca2018-07-08 08:15:56 +0300357 key4.key[1] = (((u64) a->encap_fib_index) << 32)
358 | clib_host_to_net_u32 (a->vni << 8);
359 not_found =
360 clib_bihash_search_inline_16_8 (&vxm->vxlan4_tunnel_by_key, &key4);
Eyal Bariefd9cf32018-10-02 12:23:06 +0300361 p = (void *) &key4.value;
Eyal Bari8f576482018-05-07 10:13:44 +0300362 }
363 else
John Lo56912c82016-12-08 16:10:02 -0500364 {
Eyal Bari0fa56782018-06-04 12:25:05 +0300365 key6.key[0] = a->dst.ip6.as_u64[0];
366 key6.key[1] = a->dst.ip6.as_u64[1];
367 key6.key[2] = (((u64) a->encap_fib_index) << 32)
368 | clib_host_to_net_u32 (a->vni << 8);
Eyal Baridd47eca2018-07-08 08:15:56 +0300369 not_found =
370 clib_bihash_search_inline_24_8 (&vxm->vxlan6_tunnel_by_key, &key6);
Eyal Bariefd9cf32018-10-02 12:23:06 +0300371 p = (void *) &key6.value;
John Lo56912c82016-12-08 16:10:02 -0500372 }
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600373
Eyal Baridd47eca2018-07-08 08:15:56 +0300374 if (not_found)
375 p = 0;
376
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377 if (a->is_add)
378 {
Eyal Bari8f576482018-05-07 10:13:44 +0300379 l2input_main_t *l2im = &l2input_main;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600380 u32 dev_instance; /* real dev instance tunnel index */
381 u32 user_instance; /* request and actual instance number */
John Loc42912d2016-11-07 18:30:47 -0500382
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383 /* adding a tunnel: tunnel must not already exist */
384 if (p)
Eyal Bari8f576482018-05-07 10:13:44 +0300385 return VNET_API_ERROR_TUNNEL_EXIST;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800387 /*if not set explicitly, default to l2 */
Eyal Bari8f576482018-05-07 10:13:44 +0300388 if (a->decap_next_index == ~0)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800389 a->decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
Eyal Bari8f576482018-05-07 10:13:44 +0300390 if (!vxlan_decap_next_is_valid (vxm, is_ip6, a->decap_next_index))
391 return VNET_API_ERROR_INVALID_DECAP_NEXT;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800392
Eyal Bariefd9cf32018-10-02 12:23:06 +0300393 vxlan_tunnel_t *t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394 pool_get_aligned (vxm->tunnels, t, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400395 clib_memset (t, 0, sizeof (*t));
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600396 dev_instance = t - vxm->tunnels;
397
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398 /* copy from arg structure */
399#define _(x) t->x = a->x;
400 foreach_copy_field;
401#undef _
Chris Luke99cb3352016-04-26 10:49:53 -0400402
Eyal Bari554075a2018-02-13 15:17:17 +0200403 vxlan_rewrite (t, is_ip6);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600404 /*
405 * Reconcile the real dev_instance and a possible requested instance.
406 */
407 user_instance = a->instance;
Eyal Bari8f576482018-05-07 10:13:44 +0300408 if (user_instance == ~0)
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600409 user_instance = dev_instance;
410 if (hash_get (vxm->instance_used, user_instance))
411 {
412 pool_put (vxm->tunnels, t);
413 return VNET_API_ERROR_INSTANCE_IN_USE;
414 }
415 hash_set (vxm->instance_used, user_instance, 1);
416
Eyal Bari8f576482018-05-07 10:13:44 +0300417 t->dev_instance = dev_instance; /* actual */
418 t->user_instance = user_instance; /* name */
eyal bariaf86a482018-04-17 11:20:27 +0300419 t->flow_index = ~0;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600420
Eyal Bari554075a2018-02-13 15:17:17 +0200421 t->hw_if_index = vnet_register_interface
Eyal Bari8f576482018-05-07 10:13:44 +0300422 (vnm, vxlan_device_class.index, dev_instance,
423 vxlan_hw_class.index, dev_instance);
424 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, t->hw_if_index);
John Loe5453d02018-01-23 19:21:34 -0500425
426 /* Set vxlan tunnel output node */
427 u32 encap_index = !is_ip6 ?
Eyal Bari8f576482018-05-07 10:13:44 +0300428 vxlan4_encap_node.index : vxlan6_encap_node.index;
Eyal Bari554075a2018-02-13 15:17:17 +0200429 vnet_set_interface_output_node (vnm, t->hw_if_index, encap_index);
John Loe5453d02018-01-23 19:21:34 -0500430
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431 t->sw_if_index = sw_if_index = hi->sw_if_index;
John Loe5453d02018-01-23 19:21:34 -0500432
Eyal Bariefd9cf32018-10-02 12:23:06 +0300433 /* copy the key */
434 int add_failed;
435 if (is_ip6)
436 {
437 key6.value = (u64) dev_instance;
438 add_failed = clib_bihash_add_del_24_8 (&vxm->vxlan6_tunnel_by_key,
439 &key6, 1 /*add */ );
440 }
441 else
442 {
443 vxlan_decap_info_t di = {.sw_if_index = t->sw_if_index, };
444 if (ip46_address_is_multicast (&t->dst))
445 di.local_ip = t->src.ip4;
446 else
447 di.next_index = t->decap_next_index;
448 key4.value = di.as_u64;
449 add_failed = clib_bihash_add_del_16_8 (&vxm->vxlan4_tunnel_by_key,
450 &key4, 1 /*add */ );
451 }
452
453 if (add_failed)
454 {
455 vnet_delete_hw_interface (vnm, t->hw_if_index);
456 hash_unset (vxm->instance_used, t->user_instance);
457 pool_put (vxm->tunnels, t);
458 return VNET_API_ERROR_INVALID_REGISTRATION;
459 }
460
Eyal Bari8f576482018-05-07 10:13:44 +0300461 vec_validate_init_empty (vxm->tunnel_index_by_sw_if_index, sw_if_index,
462 ~0);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600463 vxm->tunnel_index_by_sw_if_index[sw_if_index] = dev_instance;
Dave Wallace60231f32015-12-17 21:04:30 -0500464
John Loc42912d2016-11-07 18:30:47 -0500465 /* setup l2 input config with l2 feature and bd 0 to drop packet */
466 vec_validate (l2im->configs, sw_if_index);
467 l2im->configs[sw_if_index].feature_bitmap = L2INPUT_FEAT_DROP;
468 l2im->configs[sw_if_index].bd_index = 0;
John Loe5453d02018-01-23 19:21:34 -0500469
Eyal Bari8f576482018-05-07 10:13:44 +0300470 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
Eyal Bari3212c572017-03-06 11:47:50 +0200471 si->flags &= ~VNET_SW_INTERFACE_FLAG_HIDDEN;
John Loe5453d02018-01-23 19:21:34 -0500472 vnet_sw_interface_set_flags (vnm, sw_if_index,
Eyal Bari8f576482018-05-07 10:13:44 +0300473 VNET_SW_INTERFACE_FLAG_ADMIN_UP);
Eyal Bari3212c572017-03-06 11:47:50 +0200474
Eyal Bari8f576482018-05-07 10:13:44 +0300475 fib_node_init (&t->node, FIB_NODE_TYPE_VXLAN_TUNNEL);
Eyal Baric5b13602016-11-24 19:42:43 +0200476 fib_prefix_t tun_dst_pfx;
Eyal Baric5b13602016-11-24 19:42:43 +0200477 vnet_flood_class_t flood_class = VNET_FLOOD_CLASS_TUNNEL_NORMAL;
John Loc42912d2016-11-07 18:30:47 -0500478
Eyal Bari8f576482018-05-07 10:13:44 +0300479 fib_prefix_from_ip46_addr (&t->dst, &tun_dst_pfx);
480 if (!ip46_address_is_multicast (&t->dst))
481 {
482 /* Unicast tunnel -
483 * source the FIB entry for the tunnel's destination
484 * and become a child thereof. The tunnel will then get poked
485 * when the forwarding for the entry updates, and the tunnel can
486 * re-stack accordingly
487 */
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000488 vtep_addr_ref (&vxm->vtep_table, t->encap_fib_index, &t->src);
Neale Ranns1f50bf82019-07-16 15:28:52 +0000489 t->fib_entry_index = fib_entry_track (t->encap_fib_index,
490 &tun_dst_pfx,
491 FIB_NODE_TYPE_VXLAN_TUNNEL,
492 dev_instance,
493 &t->sibling_index);
Eyal Bari8f576482018-05-07 10:13:44 +0300494 vxlan_tunnel_restack_dpo (t);
495 }
Eyal Barifff67c82016-12-21 12:45:47 +0200496 else
Eyal Bari8f576482018-05-07 10:13:44 +0300497 {
498 /* Multicast tunnel -
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700499 * as the same mcast group can be used for multiple mcast tunnels
500 * with different VNIs, create the output fib adjacency only if
John Lo56912c82016-12-08 16:10:02 -0500501 * it does not already exist
502 */
Eyal Bari8f576482018-05-07 10:13:44 +0300503 fib_protocol_t fp = fib_ip_proto (is_ip6);
Eyal Baric5b13602016-11-24 19:42:43 +0200504
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000505 if (vtep_addr_ref (&vxm->vtep_table,
506 t->encap_fib_index, &t->dst) == 1)
Eyal Bari8f576482018-05-07 10:13:44 +0300507 {
508 fib_node_index_t mfei;
509 adj_index_t ai;
510 fib_route_path_t path = {
511 .frp_proto = fib_proto_to_dpo (fp),
512 .frp_addr = zero_addr,
513 .frp_sw_if_index = 0xffffffff,
514 .frp_fib_index = ~0,
Neale Ranns097fa662018-05-01 05:17:55 -0700515 .frp_weight = 1,
Eyal Bari8f576482018-05-07 10:13:44 +0300516 .frp_flags = FIB_ROUTE_PATH_LOCAL,
Neale Ranns097fa662018-05-01 05:17:55 -0700517 .frp_mitf_flags = MFIB_ITF_FLAG_FORWARD,
Eyal Bari8f576482018-05-07 10:13:44 +0300518 };
519 const mfib_prefix_t mpfx = {
520 .fp_proto = fp,
521 .fp_len = (is_ip6 ? 128 : 32),
522 .fp_grp_addr = tun_dst_pfx.fp_addr,
523 };
Eyal Barifff67c82016-12-21 12:45:47 +0200524
Eyal Bari8f576482018-05-07 10:13:44 +0300525 /*
526 * Setup the (*,G) to receive traffic on the mcast group
527 * - the forwarding interface is for-us
528 * - the accepting interface is that from the API
529 */
530 mfib_table_entry_path_update (t->encap_fib_index,
Neale Ranns097fa662018-05-01 05:17:55 -0700531 &mpfx, MFIB_SOURCE_VXLAN, &path);
Neale Ranns32e1c012016-11-22 17:07:28 +0000532
Eyal Bari8f576482018-05-07 10:13:44 +0300533 path.frp_sw_if_index = a->mcast_sw_if_index;
534 path.frp_flags = FIB_ROUTE_PATH_FLAG_NONE;
Neale Ranns097fa662018-05-01 05:17:55 -0700535 path.frp_mitf_flags = MFIB_ITF_FLAG_ACCEPT;
Eyal Bari8f576482018-05-07 10:13:44 +0300536 mfei = mfib_table_entry_path_update (t->encap_fib_index,
537 &mpfx,
Neale Ranns097fa662018-05-01 05:17:55 -0700538 MFIB_SOURCE_VXLAN, &path);
Neale Ranns32e1c012016-11-22 17:07:28 +0000539
Eyal Bari8f576482018-05-07 10:13:44 +0300540 /*
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);
Neale Ranns32e1c012016-11-22 17:07:28 +0000546
Eyal Bari8f576482018-05-07 10:13:44 +0300547 /*
548 * create a new end-point
549 */
550 mcast_shared_add (&t->dst, mfei, ai);
551 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000552
Eyal Bari8f576482018-05-07 10:13:44 +0300553 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 Bari8f576482018-05-07 10:13:44 +0300556 /* Stack shared mcast dst mac addr rewrite on encap */
557 dpo_set (&dpo, DPO_ADJACENCY_MCAST,
558 fib_proto_to_dpo (fp), ep.mcast_adj_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000559
Eyal Bari8f576482018-05-07 10:13:44 +0300560 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
561 dpo_reset (&dpo);
Eyal Barifff67c82016-12-21 12:45:47 +0200562 flood_class = VNET_FLOOD_CLASS_TUNNEL_MASTER;
John Lo56912c82016-12-08 16:10:02 -0500563 }
564
Eyal Bari8f576482018-05-07 10:13:44 +0300565 vnet_get_sw_interface (vnet_get_main (), sw_if_index)->flood_class =
566 flood_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567 }
568 else
569 {
570 /* deleting a tunnel: tunnel must exist */
John Lo37682e12016-11-30 12:51:39 -0500571 if (!p)
Eyal Bari8f576482018-05-07 10:13:44 +0300572 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700573
Eyal Barif8d5e212018-10-14 10:54:32 +0300574 u32 instance = is_ip6 ? key6.value :
575 vxm->tunnel_index_by_sw_if_index[p->sw_if_index];
Eyal Bariefd9cf32018-10-02 12:23:06 +0300576 vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577
Eyal Baribc799c92017-04-06 03:26:59 +0300578 sw_if_index = t->sw_if_index;
Eyal Bari8f576482018-05-07 10:13:44 +0300579 vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700580
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600581 vxm->tunnel_index_by_sw_if_index[sw_if_index] = ~0;
Dave Wallace60231f32015-12-17 21:04:30 -0500582
John Loc42912d2016-11-07 18:30:47 -0500583 if (!is_ip6)
Eyal Baridd47eca2018-07-08 08:15:56 +0300584 clib_bihash_add_del_16_8 (&vxm->vxlan4_tunnel_by_key, &key4,
585 0 /*del */ );
Chris Luke99cb3352016-04-26 10:49:53 -0400586 else
Eyal Baridd47eca2018-07-08 08:15:56 +0300587 clib_bihash_add_del_24_8 (&vxm->vxlan6_tunnel_by_key, &key6,
Eyal Bari0fa56782018-06-04 12:25:05 +0300588 0 /*del */ );
Eyal Barifff67c82016-12-21 12:45:47 +0200589
Eyal Bari8f576482018-05-07 10:13:44 +0300590 if (!ip46_address_is_multicast (&t->dst))
591 {
eyal bariaf86a482018-04-17 11:20:27 +0300592 if (t->flow_index != ~0)
593 vnet_flow_del (vnm, t->flow_index);
594
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000595 vtep_addr_unref (&vxm->vtep_table, t->encap_fib_index, &t->src);
Neale Ranns1f50bf82019-07-16 15:28:52 +0000596 fib_entry_untrack (t->fib_entry_index, t->sibling_index);
Eyal Bari8f576482018-05-07 10:13:44 +0300597 }
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000598 else if (vtep_addr_unref (&vxm->vtep_table,
599 t->encap_fib_index, &t->dst) == 0)
Eyal Bari8f576482018-05-07 10:13:44 +0300600 {
601 mcast_shared_remove (&t->dst);
602 }
Eyal Barifff67c82016-12-21 12:45:47 +0200603
Eyal Bari554075a2018-02-13 15:17:17 +0200604 vnet_delete_hw_interface (vnm, t->hw_if_index);
Jon Loeliger25ef2b52018-02-23 17:02:41 -0600605 hash_unset (vxm->instance_used, t->user_instance);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600606
Eyal Bari8f576482018-05-07 10:13:44 +0300607 fib_node_deinit (&t->node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608 pool_put (vxm->tunnels, t);
609 }
610
611 if (sw_if_indexp)
Eyal Bari8f576482018-05-07 10:13:44 +0300612 *sw_if_indexp = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613
Jakub Grajciardf3ca232019-06-04 13:16:42 +0200614 if (a->is_add)
615 {
616 /* register udp ports */
617 if (!is_ip6 && !udp_is_valid_dst_port (UDP_DST_PORT_vxlan, 1))
618 udp_register_dst_port (vxm->vlib_main, UDP_DST_PORT_vxlan,
619 vxlan4_input_node.index, 1);
620 if (is_ip6 && !udp_is_valid_dst_port (UDP_DST_PORT_vxlan6, 0))
621 udp_register_dst_port (vxm->vlib_main, UDP_DST_PORT_vxlan6,
622 vxlan6_input_node.index, 0);
623 }
624
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625 return 0;
626}
627
Eyal Bari8f576482018-05-07 10:13:44 +0300628static uword
629get_decap_next_for_node (u32 node_index, u32 ipv4_set)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800630{
Eyal Bari8f576482018-05-07 10:13:44 +0300631 vxlan_main_t *vxm = &vxlan_main;
632 vlib_main_t *vm = vxm->vlib_main;
Eyal Bari0765c6e2017-01-29 12:40:50 +0200633 uword input_node = (ipv4_set) ? vxlan4_input_node.index :
634 vxlan6_input_node.index;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800635
Eyal Bari0765c6e2017-01-29 12:40:50 +0200636 return vlib_node_add_next (vm, input_node, node_index);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800637}
638
Eyal Bari8f576482018-05-07 10:13:44 +0300639static uword
640unformat_decap_next (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700641{
Eyal Bari8f576482018-05-07 10:13:44 +0300642 u32 *result = va_arg (*args, u32 *);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800643 u32 ipv4_set = va_arg (*args, int);
Eyal Bari8f576482018-05-07 10:13:44 +0300644 vxlan_main_t *vxm = &vxlan_main;
645 vlib_main_t *vm = vxm->vlib_main;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800646 u32 node_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647 u32 tmp;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800648
Ed Warnickecb9cada2015-12-08 15:45:58 -0700649 if (unformat (input, "l2"))
650 *result = VXLAN_INPUT_NEXT_L2_INPUT;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800651 else if (unformat (input, "node %U", unformat_vlib_node, vm, &node_index))
Eyal Bari8f576482018-05-07 10:13:44 +0300652 *result = get_decap_next_for_node (node_index, ipv4_set);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700653 else if (unformat (input, "%d", &tmp))
654 *result = tmp;
655 else
656 return 0;
657 return 1;
658}
659
660static clib_error_t *
661vxlan_add_del_tunnel_command_fn (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +0300662 unformat_input_t * input,
663 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700664{
Eyal Bari8f576482018-05-07 10:13:44 +0300665 unformat_input_t _line_input, *line_input = &_line_input;
666 ip46_address_t src = ip46_address_initializer, dst =
667 ip46_address_initializer;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700668 u8 is_add = 1;
669 u8 src_set = 0;
670 u8 dst_set = 0;
Eyal Baric5b13602016-11-24 19:42:43 +0200671 u8 grp_set = 0;
Chris Luke99cb3352016-04-26 10:49:53 -0400672 u8 ipv4_set = 0;
673 u8 ipv6_set = 0;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600674 u32 instance = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675 u32 encap_fib_index = 0;
Eyal Baric5b13602016-11-24 19:42:43 +0200676 u32 mcast_sw_if_index = ~0;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800677 u32 decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700678 u32 vni = 0;
Eyal Bariaa0180b2018-03-27 11:43:57 +0300679 u32 table_id;
Eyal Bari0fa56782018-06-04 12:25:05 +0300680 clib_error_t *parse_error = NULL;
Eyal Baric5b13602016-11-24 19:42:43 +0200681
Ed Warnickecb9cada2015-12-08 15:45:58 -0700682 /* Get a line of input. */
Eyal Bari8f576482018-05-07 10:13:44 +0300683 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700684 return 0;
685
Eyal Bari8f576482018-05-07 10:13:44 +0300686 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
687 {
688 if (unformat (line_input, "del"))
689 {
690 is_add = 0;
691 }
692 else if (unformat (line_input, "instance %d", &instance))
693 ;
694 else if (unformat (line_input, "src %U",
695 unformat_ip46_address, &src, IP46_TYPE_ANY))
696 {
697 src_set = 1;
698 ip46_address_is_ip4 (&src) ? (ipv4_set = 1) : (ipv6_set = 1);
699 }
700 else if (unformat (line_input, "dst %U",
701 unformat_ip46_address, &dst, IP46_TYPE_ANY))
702 {
703 dst_set = 1;
704 ip46_address_is_ip4 (&dst) ? (ipv4_set = 1) : (ipv6_set = 1);
705 }
706 else if (unformat (line_input, "group %U %U",
707 unformat_ip46_address, &dst, IP46_TYPE_ANY,
708 unformat_vnet_sw_interface,
709 vnet_get_main (), &mcast_sw_if_index))
710 {
711 grp_set = dst_set = 1;
712 ip46_address_is_ip4 (&dst) ? (ipv4_set = 1) : (ipv6_set = 1);
713 }
714 else if (unformat (line_input, "encap-vrf-id %d", &table_id))
715 {
716 encap_fib_index =
717 fib_table_find (fib_ip_proto (ipv6_set), table_id);
Eyal Bari8f576482018-05-07 10:13:44 +0300718 }
719 else if (unformat (line_input, "decap-next %U", unformat_decap_next,
720 &decap_next_index, ipv4_set))
721 ;
722 else if (unformat (line_input, "vni %d", &vni))
723 ;
724 else
725 {
Eyal Bari0fa56782018-06-04 12:25:05 +0300726 parse_error = clib_error_return (0, "parse error: '%U'",
727 format_unformat_error, line_input);
Eyal Bari8f576482018-05-07 10:13:44 +0300728 break;
729 }
730 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700731
Eyal Bariaa0180b2018-03-27 11:43:57 +0300732 unformat_free (line_input);
733
Eyal Bari0fa56782018-06-04 12:25:05 +0300734 if (parse_error)
735 return parse_error;
736
737 if (encap_fib_index == ~0)
738 return clib_error_return (0, "nonexistent encap-vrf-id %d", table_id);
Eyal Bariaa0180b2018-03-27 11:43:57 +0300739
Ed Warnickecb9cada2015-12-08 15:45:58 -0700740 if (src_set == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300741 return clib_error_return (0, "tunnel src address not specified");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700742
743 if (dst_set == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300744 return clib_error_return (0, "tunnel dst address not specified");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700745
Eyal Bari8f576482018-05-07 10:13:44 +0300746 if (grp_set && !ip46_address_is_multicast (&dst))
Eyal Bariaa0180b2018-03-27 11:43:57 +0300747 return clib_error_return (0, "tunnel group address not multicast");
Eyal Baric5b13602016-11-24 19:42:43 +0200748
Eyal Bari8f576482018-05-07 10:13:44 +0300749 if (grp_set == 0 && ip46_address_is_multicast (&dst))
Eyal Bariaa0180b2018-03-27 11:43:57 +0300750 return clib_error_return (0, "dst address must be unicast");
John Lo56912c82016-12-08 16:10:02 -0500751
Eyal Baric5b13602016-11-24 19:42:43 +0200752 if (grp_set && mcast_sw_if_index == ~0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300753 return clib_error_return (0, "tunnel nonexistent multicast device");
Eyal Baric5b13602016-11-24 19:42:43 +0200754
Chris Luke99cb3352016-04-26 10:49:53 -0400755 if (ipv4_set && ipv6_set)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300756 return clib_error_return (0, "both IPv4 and IPv6 addresses specified");
Chris Luke99cb3352016-04-26 10:49:53 -0400757
Eyal Bari8f576482018-05-07 10:13:44 +0300758 if (ip46_address_cmp (&src, &dst) == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300759 return clib_error_return (0, "src and dst addresses are identical");
Chris Luke99cb3352016-04-26 10:49:53 -0400760
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800761 if (decap_next_index == ~0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300762 return clib_error_return (0, "next node not found");
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800763
Ed Warnickecb9cada2015-12-08 15:45:58 -0700764 if (vni == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300765 return clib_error_return (0, "vni not specified");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766
Eyal Bari8f576482018-05-07 10:13:44 +0300767 if (vni >> 24)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300768 return clib_error_return (0, "vni %d out of range", vni);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700769
Eyal Bariaa0180b2018-03-27 11:43:57 +0300770 vnet_vxlan_add_del_tunnel_args_t a = {
Eyal Bari8f576482018-05-07 10:13:44 +0300771 .is_add = is_add,
772 .is_ip6 = ipv6_set,
773 .instance = instance,
Eyal Bariaa0180b2018-03-27 11:43:57 +0300774#define _(x) .x = x,
Eyal Bari8f576482018-05-07 10:13:44 +0300775 foreach_copy_field
Ed Warnickecb9cada2015-12-08 15:45:58 -0700776#undef _
Eyal Bariaa0180b2018-03-27 11:43:57 +0300777 };
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600778
Eyal Bariaa0180b2018-03-27 11:43:57 +0300779 u32 tunnel_sw_if_index;
780 int rv = vnet_vxlan_add_del_tunnel (&a, &tunnel_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700781
Eyal Bari8f576482018-05-07 10:13:44 +0300782 switch (rv)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700783 {
784 case 0:
Pierre Pfister78ea9c22016-05-23 12:51:54 +0100785 if (is_add)
Eyal Bari8f576482018-05-07 10:13:44 +0300786 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
787 vnet_get_main (), tunnel_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700788 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700789
790 case VNET_API_ERROR_TUNNEL_EXIST:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300791 return clib_error_return (0, "tunnel already exists...");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700792
793 case VNET_API_ERROR_NO_SUCH_ENTRY:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300794 return clib_error_return (0, "tunnel does not exist...");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700795
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600796 case VNET_API_ERROR_INSTANCE_IN_USE:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300797 return clib_error_return (0, "Instance is in use");
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600798
Ed Warnickecb9cada2015-12-08 15:45:58 -0700799 default:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300800 return clib_error_return
Eyal Bari8f576482018-05-07 10:13:44 +0300801 (0, "vnet_vxlan_add_del_tunnel returned %d", rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700802 }
803
Eyal Bari0fa56782018-06-04 12:25:05 +0300804 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700805}
806
Billy McFallc5d9cda2016-09-14 10:39:58 -0400807/*?
808 * Add or delete a VXLAN Tunnel.
809 *
810 * VXLAN provides the features needed to allow L2 bridge domains (BDs)
811 * to span multiple servers. This is done by building an L2 overlay on
812 * top of an L3 network underlay using VXLAN tunnels.
813 *
814 * This makes it possible for servers to be co-located in the same data
815 * center or be separated geographically as long as they are reachable
816 * through the underlay L3 network.
817 *
818 * You can refer to this kind of L2 overlay bridge domain as a VXLAN
819 * (Virtual eXtensible VLAN) segment.
820 *
821 * @cliexpar
822 * Example of how to create a VXLAN Tunnel:
John Loc42912d2016-11-07 18:30:47 -0500823 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 encap-vrf-id 7}
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600824 * Example of how to create a VXLAN Tunnel with a known name, vxlan_tunnel42:
825 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 instance 42}
Eyal Baridd47eca2018-07-08 08:15:56 +0300826 * Example of how to create a multicast VXLAN Tunnel with a known name, vxlan_tunnel23:
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700827 * @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 -0400828 * Example of how to delete a VXLAN Tunnel:
829 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 del}
830 ?*/
831/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700832VLIB_CLI_COMMAND (create_vxlan_tunnel_command, static) = {
833 .path = "create vxlan tunnel",
Eyal Bari8f576482018-05-07 10:13:44 +0300834 .short_help =
Eyal Baric5b13602016-11-24 19:42:43 +0200835 "create vxlan tunnel src <local-vtep-addr>"
836 " {dst <remote-vtep-addr>|group <mcast-vtep-addr> <intf-name>} vni <nn>"
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600837 " [instance <id>]"
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800838 " [encap-vrf-id <nn>] [decap-next [l2|node <name>]] [del]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700839 .function = vxlan_add_del_tunnel_command_fn,
840};
Billy McFallc5d9cda2016-09-14 10:39:58 -0400841/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700842
843static clib_error_t *
844show_vxlan_tunnel_command_fn (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +0300845 unformat_input_t * input,
846 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700847{
Eyal Bari8f576482018-05-07 10:13:44 +0300848 vxlan_main_t *vxm = &vxlan_main;
849 vxlan_tunnel_t *t;
Eyal Bari0fa56782018-06-04 12:25:05 +0300850 int raw = 0;
Eyal Bari0fa56782018-06-04 12:25:05 +0300851
Neale Ranns16be62e2018-07-30 11:59:22 -0700852 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Eyal Bari0fa56782018-06-04 12:25:05 +0300853 {
Neale Ranns16be62e2018-07-30 11:59:22 -0700854 if (unformat (input, "raw"))
Eyal Bari0fa56782018-06-04 12:25:05 +0300855 raw = 1;
856 else
Neale Ranns16be62e2018-07-30 11:59:22 -0700857 return clib_error_return (0, "parse error: '%U'",
858 format_unformat_error, input);
Eyal Bari0fa56782018-06-04 12:25:05 +0300859 }
860
Ed Warnickecb9cada2015-12-08 15:45:58 -0700861 if (pool_elts (vxm->tunnels) == 0)
862 vlib_cli_output (vm, "No vxlan tunnels configured...");
863
Eyal Bari8f576482018-05-07 10:13:44 +0300864/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700865 pool_foreach (t, vxm->tunnels,
866 ({
867 vlib_cli_output (vm, "%U", format_vxlan_tunnel, t);
868 }));
Eyal Bari8f576482018-05-07 10:13:44 +0300869/* *INDENT-ON* */
870
Eyal Bari0fa56782018-06-04 12:25:05 +0300871 if (raw)
Eyal Baridd47eca2018-07-08 08:15:56 +0300872 {
873 vlib_cli_output (vm, "Raw IPv4 Hash Table:\n%U\n",
874 format_bihash_16_8, &vxm->vxlan4_tunnel_by_key,
875 1 /* verbose */ );
876 vlib_cli_output (vm, "Raw IPv6 Hash Table:\n%U\n",
877 format_bihash_24_8, &vxm->vxlan6_tunnel_by_key,
878 1 /* verbose */ );
879 }
Eyal Bari0fa56782018-06-04 12:25:05 +0300880
Ed Warnickecb9cada2015-12-08 15:45:58 -0700881 return 0;
882}
883
Billy McFallc5d9cda2016-09-14 10:39:58 -0400884/*?
885 * Display all the VXLAN Tunnel entries.
886 *
887 * @cliexpar
888 * Example of how to display the VXLAN Tunnel entries:
889 * @cliexstart{show vxlan tunnel}
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800890 * [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 -0400891 * @cliexend
892 ?*/
893/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700894VLIB_CLI_COMMAND (show_vxlan_tunnel_command, static) = {
895 .path = "show vxlan tunnel",
Eyal Bari0fa56782018-06-04 12:25:05 +0300896 .short_help = "show vxlan tunnel [raw]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700897 .function = show_vxlan_tunnel_command_fn,
898};
Billy McFallc5d9cda2016-09-14 10:39:58 -0400899/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700900
Chris Luke99cb3352016-04-26 10:49:53 -0400901
Eyal Bari8f576482018-05-07 10:13:44 +0300902void
903vnet_int_vxlan_bypass_mode (u32 sw_if_index, u8 is_ip6, u8 is_enable)
John Lo2b81eb82017-01-30 13:12:10 -0500904{
Jon Loeligere3034cd2019-01-03 12:56:02 -0600905 vxlan_main_t *vxm = &vxlan_main;
906
907 if (pool_is_free_index (vxm->vnet_main->interface_main.sw_interfaces,
908 sw_if_index))
909 return;
910
911 is_enable = ! !is_enable;
912
John Lo2b81eb82017-01-30 13:12:10 -0500913 if (is_ip6)
Jon Loeligere3034cd2019-01-03 12:56:02 -0600914 {
915 if (clib_bitmap_get (vxm->bm_ip6_bypass_enabled_by_sw_if, sw_if_index)
916 != is_enable)
917 {
918 vnet_feature_enable_disable ("ip6-unicast", "ip6-vxlan-bypass",
919 sw_if_index, is_enable, 0, 0);
920 vxm->bm_ip6_bypass_enabled_by_sw_if =
921 clib_bitmap_set (vxm->bm_ip6_bypass_enabled_by_sw_if,
922 sw_if_index, is_enable);
923 }
924 }
John Lo2b81eb82017-01-30 13:12:10 -0500925 else
Jon Loeligere3034cd2019-01-03 12:56:02 -0600926 {
927 if (clib_bitmap_get (vxm->bm_ip4_bypass_enabled_by_sw_if, sw_if_index)
928 != is_enable)
929 {
930 vnet_feature_enable_disable ("ip4-unicast", "ip4-vxlan-bypass",
931 sw_if_index, is_enable, 0, 0);
932 vxm->bm_ip4_bypass_enabled_by_sw_if =
933 clib_bitmap_set (vxm->bm_ip4_bypass_enabled_by_sw_if,
934 sw_if_index, is_enable);
935 }
936 }
John Lo2b81eb82017-01-30 13:12:10 -0500937}
938
939
940static clib_error_t *
941set_ip_vxlan_bypass (u32 is_ip6,
Eyal Bari8f576482018-05-07 10:13:44 +0300942 unformat_input_t * input, vlib_cli_command_t * cmd)
John Lo2b81eb82017-01-30 13:12:10 -0500943{
Eyal Bari8f576482018-05-07 10:13:44 +0300944 unformat_input_t _line_input, *line_input = &_line_input;
945 vnet_main_t *vnm = vnet_get_main ();
946 clib_error_t *error = 0;
John Lo2b81eb82017-01-30 13:12:10 -0500947 u32 sw_if_index, is_enable;
948
949 sw_if_index = ~0;
950 is_enable = 1;
951
Eyal Bari8f576482018-05-07 10:13:44 +0300952 if (!unformat_user (input, unformat_line_input, line_input))
John Lo2b81eb82017-01-30 13:12:10 -0500953 return 0;
954
955 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
956 {
Eyal Bari8f576482018-05-07 10:13:44 +0300957 if (unformat_user
958 (line_input, unformat_vnet_sw_interface, vnm, &sw_if_index))
959 ;
John Lo2b81eb82017-01-30 13:12:10 -0500960 else if (unformat (line_input, "del"))
Eyal Bari8f576482018-05-07 10:13:44 +0300961 is_enable = 0;
John Lo2b81eb82017-01-30 13:12:10 -0500962 else
Eyal Bari8f576482018-05-07 10:13:44 +0300963 {
John Lo2b81eb82017-01-30 13:12:10 -0500964 error = unformat_parse_error (line_input);
965 goto done;
966 }
967 }
968
969 if (~0 == sw_if_index)
970 {
971 error = clib_error_return (0, "unknown interface `%U'",
972 format_unformat_error, line_input);
973 goto done;
974 }
975
976 vnet_int_vxlan_bypass_mode (sw_if_index, is_ip6, is_enable);
977
Eyal Bari8f576482018-05-07 10:13:44 +0300978done:
Billy McFalla9a20e72017-02-15 11:39:12 -0500979 unformat_free (line_input);
980
John Lo2b81eb82017-01-30 13:12:10 -0500981 return error;
982}
983
984static clib_error_t *
985set_ip4_vxlan_bypass (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +0300986 unformat_input_t * input, vlib_cli_command_t * cmd)
John Lo2b81eb82017-01-30 13:12:10 -0500987{
988 return set_ip_vxlan_bypass (0, input, cmd);
989}
990
991/*?
Eyal Bari8f576482018-05-07 10:13:44 +0300992 * This command adds the 'ip4-vxlan-bypass' graph node for a given interface.
John Lo2b81eb82017-01-30 13:12:10 -0500993 * By adding the IPv4 vxlan-bypass graph node to an interface, the node checks
Eyal Bari8f576482018-05-07 10:13:44 +0300994 * for and validate input vxlan packet and bypass ip4-lookup, ip4-local,
995 * ip4-udp-lookup nodes to speedup vxlan packet forwarding. This node will
John Lo2b81eb82017-01-30 13:12:10 -0500996 * cause extra overhead to for non-vxlan packets which is kept at a minimum.
997 *
998 * @cliexpar
999 * @parblock
1000 * Example of graph node before ip4-vxlan-bypass is enabled:
1001 * @cliexstart{show vlib graph ip4-vxlan-bypass}
1002 * Name Next Previous
1003 * ip4-vxlan-bypass error-drop [0]
1004 * vxlan4-input [1]
Eyal Bari8f576482018-05-07 10:13:44 +03001005 * ip4-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001006 * @cliexend
1007 *
1008 * Example of how to enable ip4-vxlan-bypass on an interface:
1009 * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0}
1010 *
1011 * Example of graph node after ip4-vxlan-bypass is enabled:
1012 * @cliexstart{show vlib graph ip4-vxlan-bypass}
Eyal Bari8f576482018-05-07 10:13:44 +03001013 * Name Next Previous
1014 * ip4-vxlan-bypass error-drop [0] ip4-input
1015 * vxlan4-input [1] ip4-input-no-checksum
1016 * ip4-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001017 * @cliexend
1018 *
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001019 * Example of how to display the feature enabled on an interface:
John Lo2b81eb82017-01-30 13:12:10 -05001020 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1021 * IP feature paths configured on GigabitEthernet2/0/0...
1022 * ...
1023 * ipv4 unicast:
1024 * ip4-vxlan-bypass
1025 * ip4-lookup
1026 * ...
1027 * @cliexend
1028 *
1029 * Example of how to disable ip4-vxlan-bypass on an interface:
1030 * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0 del}
1031 * @endparblock
1032?*/
1033/* *INDENT-OFF* */
1034VLIB_CLI_COMMAND (set_interface_ip_vxlan_bypass_command, static) = {
1035 .path = "set interface ip vxlan-bypass",
1036 .function = set_ip4_vxlan_bypass,
1037 .short_help = "set interface ip vxlan-bypass <interface> [del]",
1038};
1039/* *INDENT-ON* */
1040
1041static clib_error_t *
1042set_ip6_vxlan_bypass (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +03001043 unformat_input_t * input, vlib_cli_command_t * cmd)
John Lo2b81eb82017-01-30 13:12:10 -05001044{
1045 return set_ip_vxlan_bypass (1, input, cmd);
1046}
1047
1048/*?
Eyal Bari8f576482018-05-07 10:13:44 +03001049 * This command adds the 'ip6-vxlan-bypass' graph node for a given interface.
John Lo2b81eb82017-01-30 13:12:10 -05001050 * By adding the IPv6 vxlan-bypass graph node to an interface, the node checks
Eyal Bari8f576482018-05-07 10:13:44 +03001051 * for and validate input vxlan packet and bypass ip6-lookup, ip6-local,
1052 * ip6-udp-lookup nodes to speedup vxlan packet forwarding. This node will
John Lo2b81eb82017-01-30 13:12:10 -05001053 * cause extra overhead to for non-vxlan packets which is kept at a minimum.
1054 *
1055 * @cliexpar
1056 * @parblock
1057 * Example of graph node before ip6-vxlan-bypass is enabled:
1058 * @cliexstart{show vlib graph ip6-vxlan-bypass}
1059 * Name Next Previous
1060 * ip6-vxlan-bypass error-drop [0]
1061 * vxlan6-input [1]
Eyal Bari8f576482018-05-07 10:13:44 +03001062 * ip6-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001063 * @cliexend
1064 *
1065 * Example of how to enable ip6-vxlan-bypass on an interface:
1066 * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0}
1067 *
1068 * Example of graph node after ip6-vxlan-bypass is enabled:
1069 * @cliexstart{show vlib graph ip6-vxlan-bypass}
Eyal Bari8f576482018-05-07 10:13:44 +03001070 * Name Next Previous
1071 * ip6-vxlan-bypass error-drop [0] ip6-input
1072 * vxlan6-input [1] ip4-input-no-checksum
1073 * ip6-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001074 * @cliexend
1075 *
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001076 * Example of how to display the feature enabled on an interface:
John Lo2b81eb82017-01-30 13:12:10 -05001077 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1078 * IP feature paths configured on GigabitEthernet2/0/0...
1079 * ...
1080 * ipv6 unicast:
1081 * ip6-vxlan-bypass
1082 * ip6-lookup
1083 * ...
1084 * @cliexend
1085 *
1086 * Example of how to disable ip6-vxlan-bypass on an interface:
1087 * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0 del}
1088 * @endparblock
1089?*/
1090/* *INDENT-OFF* */
1091VLIB_CLI_COMMAND (set_interface_ip6_vxlan_bypass_command, static) = {
1092 .path = "set interface ip6 vxlan-bypass",
1093 .function = set_ip6_vxlan_bypass,
Paul Vinciguerra5fb22782019-11-07 17:20:48 -05001094 .short_help = "set interface ip6 vxlan-bypass <interface> [del]",
John Lo2b81eb82017-01-30 13:12:10 -05001095};
1096/* *INDENT-ON* */
1097
eyal bariaf86a482018-04-17 11:20:27 +03001098int
1099vnet_vxlan_add_del_rx_flow (u32 hw_if_index, u32 t_index, int is_add)
1100{
1101 vxlan_main_t *vxm = &vxlan_main;
1102 vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, t_index);
1103 vnet_main_t *vnm = vnet_get_main ();
1104 if (is_add)
1105 {
1106 if (t->flow_index == ~0)
1107 {
1108 vxlan_main_t *vxm = &vxlan_main;
1109 vnet_flow_t flow = {
1110 .actions =
Chenmin Sun1ec9fdb2019-12-05 01:41:35 +08001111 VNET_FLOW_ACTION_REDIRECT_TO_NODE | VNET_FLOW_ACTION_MARK |
1112 VNET_FLOW_ACTION_BUFFER_ADVANCE,
eyal bariaf86a482018-04-17 11:20:27 +03001113 .mark_flow_id = t->dev_instance + vxm->flow_id_start,
1114 .redirect_node_index = vxlan4_flow_input_node.index,
Chenmin Sun1ec9fdb2019-12-05 01:41:35 +08001115 .buffer_advance = sizeof (ethernet_header_t),
eyal bariaf86a482018-04-17 11:20:27 +03001116 .type = VNET_FLOW_TYPE_IP4_VXLAN,
1117 .ip4_vxlan = {
Chenmin Sun34bfa502020-07-27 17:40:17 +08001118 .protocol.prot = IP_PROTOCOL_UDP,
1119 .src_addr.addr = t->dst.ip4,
1120 .dst_addr.addr = t->src.ip4,
1121 .src_addr.mask.as_u32 = ~0,
1122 .dst_addr.mask.as_u32 = ~0,
1123 .dst_port.port = UDP_DST_PORT_vxlan,
1124 .dst_port.mask = 0xFF,
eyal bariaf86a482018-04-17 11:20:27 +03001125 .vni = t->vni,
1126 }
1127 ,
1128 };
1129 vnet_flow_add (vnm, &flow, &t->flow_index);
1130 }
1131 return vnet_flow_enable (vnm, t->flow_index, hw_if_index);
1132 }
1133 /* flow index is removed when the tunnel is deleted */
1134 return vnet_flow_disable (vnm, t->flow_index, hw_if_index);
1135}
1136
1137u32
1138vnet_vxlan_get_tunnel_index (u32 sw_if_index)
1139{
1140 vxlan_main_t *vxm = &vxlan_main;
1141
Eyal Baricd307742018-07-22 12:45:15 +03001142 if (sw_if_index >= vec_len (vxm->tunnel_index_by_sw_if_index))
eyal bariaf86a482018-04-17 11:20:27 +03001143 return ~0;
1144 return vxm->tunnel_index_by_sw_if_index[sw_if_index];
1145}
1146
1147static clib_error_t *
1148vxlan_offload_command_fn (vlib_main_t * vm,
1149 unformat_input_t * input, vlib_cli_command_t * cmd)
1150{
1151 unformat_input_t _line_input, *line_input = &_line_input;
1152
1153 /* Get a line of input. */
1154 if (!unformat_user (input, unformat_line_input, line_input))
1155 return 0;
1156
1157 vnet_main_t *vnm = vnet_get_main ();
1158 u32 rx_sw_if_index = ~0;
1159 u32 hw_if_index = ~0;
1160 int is_add = 1;
1161
1162 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1163 {
1164 if (unformat (line_input, "hw %U", unformat_vnet_hw_interface, vnm,
1165 &hw_if_index))
1166 continue;
1167 if (unformat (line_input, "rx %U", unformat_vnet_sw_interface, vnm,
1168 &rx_sw_if_index))
1169 continue;
1170 if (unformat (line_input, "del"))
1171 {
1172 is_add = 0;
1173 continue;
1174 }
1175 return clib_error_return (0, "unknown input `%U'",
1176 format_unformat_error, line_input);
1177 }
1178
1179 if (rx_sw_if_index == ~0)
1180 return clib_error_return (0, "missing rx interface");
1181 if (hw_if_index == ~0)
1182 return clib_error_return (0, "missing hw interface");
1183
1184 u32 t_index = vnet_vxlan_get_tunnel_index (rx_sw_if_index);;
1185 if (t_index == ~0)
1186 return clib_error_return (0, "%U is not a vxlan tunnel",
1187 format_vnet_sw_if_index_name, vnm,
1188 rx_sw_if_index);
1189
1190 vxlan_main_t *vxm = &vxlan_main;
1191 vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, t_index);
1192
1193 if (!ip46_address_is_ip4 (&t->dst))
1194 return clib_error_return (0, "currently only IPV4 tunnels are supported");
1195
1196 vnet_hw_interface_t *hw_if = vnet_get_hw_interface (vnm, hw_if_index);
1197 ip4_main_t *im = &ip4_main;
1198 u32 rx_fib_index =
1199 vec_elt (im->fib_index_by_sw_if_index, hw_if->sw_if_index);
1200
1201 if (t->encap_fib_index != rx_fib_index)
1202 return clib_error_return (0, "interface/tunnel fib mismatch");
1203
1204 if (vnet_vxlan_add_del_rx_flow (hw_if_index, t_index, is_add))
1205 return clib_error_return (0, "error %s flow",
1206 is_add ? "enabling" : "disabling");
1207
1208 return 0;
1209}
1210
1211/* *INDENT-OFF* */
1212VLIB_CLI_COMMAND (vxlan_offload_command, static) = {
1213 .path = "set flow-offload vxlan",
1214 .short_help =
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001215 "set flow-offload vxlan hw <interface-name> rx <tunnel-name> [del]",
eyal bariaf86a482018-04-17 11:20:27 +03001216 .function = vxlan_offload_command_fn,
1217};
1218/* *INDENT-ON* */
1219
Eyal Bari0fa56782018-06-04 12:25:05 +03001220#define VXLAN_HASH_NUM_BUCKETS (2 * 1024)
1221#define VXLAN_HASH_MEMORY_SIZE (1 << 20)
1222
Eyal Bari8f576482018-05-07 10:13:44 +03001223clib_error_t *
1224vxlan_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001225{
Eyal Bari8f576482018-05-07 10:13:44 +03001226 vxlan_main_t *vxm = &vxlan_main;
1227
1228 vxm->vnet_main = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001229 vxm->vlib_main = vm;
1230
eyal bariaf86a482018-04-17 11:20:27 +03001231 vnet_flow_get_range (vxm->vnet_main, "vxlan", 1024 * 1024,
1232 &vxm->flow_id_start);
1233
Jon Loeligere3034cd2019-01-03 12:56:02 -06001234 vxm->bm_ip4_bypass_enabled_by_sw_if = 0;
1235 vxm->bm_ip6_bypass_enabled_by_sw_if = 0;
1236
Chris Luke99cb3352016-04-26 10:49:53 -04001237 /* initialize the ip6 hash */
Eyal Baridd47eca2018-07-08 08:15:56 +03001238 clib_bihash_init_16_8 (&vxm->vxlan4_tunnel_by_key, "vxlan4",
1239 VXLAN_HASH_NUM_BUCKETS, VXLAN_HASH_MEMORY_SIZE);
1240 clib_bihash_init_24_8 (&vxm->vxlan6_tunnel_by_key, "vxlan6",
Eyal Bari0fa56782018-06-04 12:25:05 +03001241 VXLAN_HASH_NUM_BUCKETS, VXLAN_HASH_MEMORY_SIZE);
Nick Zavaritsky27518c22020-02-27 15:54:58 +00001242 vxm->vtep_table = vtep_table_create ();
Eyal Bari8f576482018-05-07 10:13:44 +03001243 vxm->mcast_shared = hash_create_mem (0,
1244 sizeof (ip46_address_t),
1245 sizeof (mcast_shared_t));
Chris Luke99cb3352016-04-26 10:49:53 -04001246
Eyal Bari8f576482018-05-07 10:13:44 +03001247 fib_node_register_type (FIB_NODE_TYPE_VXLAN_TUNNEL, &vxlan_vft);
John Loc42912d2016-11-07 18:30:47 -05001248
Ed Warnickecb9cada2015-12-08 15:45:58 -07001249 return 0;
1250}
1251
Eyal Bari8f576482018-05-07 10:13:44 +03001252VLIB_INIT_FUNCTION (vxlan_init);
Jon Loeliger3d460bd2018-02-01 16:36:12 -06001253
1254/*
Eyal Bari8f576482018-05-07 10:13:44 +03001255 * fd.io coding-style-patch-verification: ON
1256 *
Jon Loeliger3d460bd2018-02-01 16:36:12 -06001257 * Local Variables:
1258 * eval: (c-set-style "gnu")
1259 * End:
1260 */