blob: b2329d815ffdb3e2d97e1b1cb1974c1a65083d43 [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>
Neale Ranns1b5ca982020-12-16 13:06:58 +000023#include <vnet/dpo/drop_dpo.h>
Eyal Bari3212c572017-03-06 11:47:50 +020024#include <vnet/interface.h>
eyal bariaf86a482018-04-17 11:20:27 +030025#include <vnet/flow/flow.h>
Florin Corasb040f982020-10-20 14:59:43 -070026#include <vnet/udp/udp_local.h>
Hongjun Nibeb4bf72016-11-25 00:03:46 +080027#include <vlib/vlib.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070028
Billy McFallc5d9cda2016-09-14 10:39:58 -040029/**
30 * @file
31 * @brief VXLAN.
32 *
33 * VXLAN provides the features needed to allow L2 bridge domains (BDs)
34 * to span multiple servers. This is done by building an L2 overlay on
35 * top of an L3 network underlay using VXLAN tunnels.
36 *
37 * This makes it possible for servers to be co-located in the same data
38 * center or be separated geographically as long as they are reachable
39 * through the underlay L3 network.
40 *
41 * You can refer to this kind of L2 overlay bridge domain as a VXLAN
42 * (Virtual eXtensible VLAN) segment.
43 */
44
45
Ed Warnickecb9cada2015-12-08 15:45:58 -070046vxlan_main_t vxlan_main;
47
Ed Warnickea4b05412021-01-18 11:56:22 -060048static u32
49vxlan_eth_flag_change (vnet_main_t *vnm, vnet_hw_interface_t *hi, u32 flags)
50{
51 /* nothing for now */
52 return 0;
53}
54
Eyal Bari8f576482018-05-07 10:13:44 +030055static u8 *
56format_decap_next (u8 * s, va_list * args)
Hongjun Nibeb4bf72016-11-25 00:03:46 +080057{
58 u32 next_index = va_arg (*args, u32);
59
John Lo4478d8e2018-01-12 17:15:25 -050060 if (next_index == VXLAN_INPUT_NEXT_DROP)
61 return format (s, "drop");
62 else
63 return format (s, "index %d", next_index);
Hongjun Nibeb4bf72016-11-25 00:03:46 +080064 return s;
65}
66
Eyal Bari8f576482018-05-07 10:13:44 +030067u8 *
68format_vxlan_tunnel (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070069{
Eyal Bari8f576482018-05-07 10:13:44 +030070 vxlan_tunnel_t *t = va_arg (*args, vxlan_tunnel_t *);
Jon Loeliger3d460bd2018-02-01 16:36:12 -060071
72 s = format (s,
73 "[%d] instance %d src %U dst %U vni %d fib-idx %d sw-if-idx %d ",
John Lo25d417f2018-02-15 15:47:53 -050074 t->dev_instance, t->user_instance,
Eyal Bari8f576482018-05-07 10:13:44 +030075 format_ip46_address, &t->src, IP46_TYPE_ANY,
76 format_ip46_address, &t->dst, IP46_TYPE_ANY,
77 t->vni, t->encap_fib_index, t->sw_if_index);
John Lo56912c82016-12-08 16:10:02 -050078
John Lo4478d8e2018-01-12 17:15:25 -050079 s = format (s, "encap-dpo-idx %d ", t->next_dpo.dpoi_index);
John Lo56912c82016-12-08 16:10:02 -050080
John Lo4478d8e2018-01-12 17:15:25 -050081 if (PREDICT_FALSE (t->decap_next_index != VXLAN_INPUT_NEXT_L2_INPUT))
82 s = format (s, "decap-next-%U ", format_decap_next, t->decap_next_index);
83
84 if (PREDICT_FALSE (ip46_address_is_multicast (&t->dst)))
85 s = format (s, "mcast-sw-if-idx %d ", t->mcast_sw_if_index);
86
eyal bariaf86a482018-04-17 11:20:27 +030087 if (t->flow_index != ~0)
88 s = format (s, "flow-index %d [%U]", t->flow_index,
89 format_flow_enabled_hw, t->flow_index);
90
Ed Warnickecb9cada2015-12-08 15:45:58 -070091 return s;
92}
93
Eyal Bari8f576482018-05-07 10:13:44 +030094static u8 *
95format_vxlan_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070096{
97 u32 dev_instance = va_arg (*args, u32);
Eyal Bari8f576482018-05-07 10:13:44 +030098 vxlan_main_t *vxm = &vxlan_main;
Jon Loeliger3d460bd2018-02-01 16:36:12 -060099 vxlan_tunnel_t *t;
100
101 if (dev_instance == ~0)
Eyal Bari8f576482018-05-07 10:13:44 +0300102 return format (s, "<cached-unused>");
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600103
Eyal Bari8f576482018-05-07 10:13:44 +0300104 if (dev_instance >= vec_len (vxm->tunnels))
105 return format (s, "<improperly-referenced>");
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600106
Eyal Bari8f576482018-05-07 10:13:44 +0300107 t = pool_elt_at_index (vxm->tunnels, dev_instance);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600108
109 return format (s, "vxlan_tunnel%d", t->user_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110}
111
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100112static clib_error_t *
113vxlan_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
114{
Eyal Baria93ea422017-02-01 13:36:15 +0200115 u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
116 VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
117 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100118
119 return /* no error */ 0;
120}
121
Eyal Bari8f576482018-05-07 10:13:44 +0300122/* *INDENT-OFF* */
123VNET_DEVICE_CLASS (vxlan_device_class, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124 .name = "VXLAN",
125 .format_device_name = format_vxlan_name,
126 .format_tx_trace = format_vxlan_encap_trace,
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100127 .admin_up_down_function = vxlan_interface_admin_up_down,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128};
Eyal Bari8f576482018-05-07 10:13:44 +0300129/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130
Eyal Bari8f576482018-05-07 10:13:44 +0300131static u8 *
132format_vxlan_header_with_length (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133{
134 u32 dev_instance = va_arg (*args, u32);
135 s = format (s, "unimplemented dev %u", dev_instance);
136 return s;
137}
138
Eyal Bari8f576482018-05-07 10:13:44 +0300139/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140VNET_HW_INTERFACE_CLASS (vxlan_hw_class) = {
141 .name = "VXLAN",
142 .format_header = format_vxlan_header_with_length,
Neale Rannsb80c5362016-10-08 13:03:40 +0100143 .build_rewrite = default_build_rewrite,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144};
Eyal Bari8f576482018-05-07 10:13:44 +0300145/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146
Eyal Baric5b13602016-11-24 19:42:43 +0200147static void
Eyal Bari8f576482018-05-07 10:13:44 +0300148vxlan_tunnel_restack_dpo (vxlan_tunnel_t * t)
Eyal Baric5b13602016-11-24 19:42:43 +0200149{
Eyal Bari8f576482018-05-07 10:13:44 +0300150 u8 is_ip4 = ip46_address_is_ip4 (&t->dst);
Eyal Bari99ed4862018-04-25 13:50:57 +0300151 dpo_id_t dpo = DPO_INVALID;
152 fib_forward_chain_type_t forw_type = is_ip4 ?
Eyal Bari8f576482018-05-07 10:13:44 +0300153 FIB_FORW_CHAIN_TYPE_UNICAST_IP4 : FIB_FORW_CHAIN_TYPE_UNICAST_IP6;
Eyal Baric5b13602016-11-24 19:42:43 +0200154
Eyal Bari99ed4862018-04-25 13:50:57 +0300155 fib_entry_contribute_forwarding (t->fib_entry_index, forw_type, &dpo);
156
157 /* vxlan uses the payload hash as the udp source port
158 * hence the packet's hash is unknown
159 * skip single bucket load balance dpo's */
160 while (DPO_LOAD_BALANCE == dpo.dpoi_type)
161 {
Neale Ranns1b5ca982020-12-16 13:06:58 +0000162 const load_balance_t *lb;
163 const dpo_id_t *choice;
164
165 lb = load_balance_get (dpo.dpoi_index);
Eyal Bari99ed4862018-04-25 13:50:57 +0300166 if (lb->lb_n_buckets > 1)
Eyal Bari8f576482018-05-07 10:13:44 +0300167 break;
Eyal Bari99ed4862018-04-25 13:50:57 +0300168
Neale Ranns1b5ca982020-12-16 13:06:58 +0000169 choice = load_balance_get_bucket_i (lb, 0);
170
171 if (DPO_RECEIVE == choice->dpoi_type)
172 dpo_copy (&dpo, drop_dpo_get (choice->dpoi_proto));
173 else
174 dpo_copy (&dpo, choice);
Eyal Bari99ed4862018-04-25 13:50:57 +0300175 }
176
177 u32 encap_index = is_ip4 ?
Eyal Bari8f576482018-05-07 10:13:44 +0300178 vxlan4_encap_node.index : vxlan6_encap_node.index;
Eyal Bari99ed4862018-04-25 13:50:57 +0300179 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
Eyal Bari8f576482018-05-07 10:13:44 +0300180 dpo_reset (&dpo);
Eyal Baric5b13602016-11-24 19:42:43 +0200181}
John Loc42912d2016-11-07 18:30:47 -0500182
183static vxlan_tunnel_t *
Eyal Bari8f576482018-05-07 10:13:44 +0300184vxlan_tunnel_from_fib_node (fib_node_t * node)
John Loc42912d2016-11-07 18:30:47 -0500185{
Eyal Bari8f576482018-05-07 10:13:44 +0300186 ASSERT (FIB_NODE_TYPE_VXLAN_TUNNEL == node->fn_type);
187 return ((vxlan_tunnel_t *) (((char *) node) -
188 STRUCT_OFFSET_OF (vxlan_tunnel_t, node)));
John Loc42912d2016-11-07 18:30:47 -0500189}
190
191/**
192 * Function definition to backwalk a FIB node -
193 * Here we will restack the new dpo of VXLAN DIP to encap node.
194 */
195static fib_node_back_walk_rc_t
Eyal Bari8f576482018-05-07 10:13:44 +0300196vxlan_tunnel_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
John Loc42912d2016-11-07 18:30:47 -0500197{
Eyal Bari8f576482018-05-07 10:13:44 +0300198 vxlan_tunnel_restack_dpo (vxlan_tunnel_from_fib_node (node));
199 return (FIB_NODE_BACK_WALK_CONTINUE);
John Loc42912d2016-11-07 18:30:47 -0500200}
201
202/**
203 * Function definition to get a FIB node from its index
204 */
Eyal Bari8f576482018-05-07 10:13:44 +0300205static fib_node_t *
John Loc42912d2016-11-07 18:30:47 -0500206vxlan_tunnel_fib_node_get (fib_node_index_t index)
207{
Eyal Bari8f576482018-05-07 10:13:44 +0300208 vxlan_tunnel_t *t;
209 vxlan_main_t *vxm = &vxlan_main;
John Loc42912d2016-11-07 18:30:47 -0500210
Eyal Bari8f576482018-05-07 10:13:44 +0300211 t = pool_elt_at_index (vxm->tunnels, index);
John Loc42912d2016-11-07 18:30:47 -0500212
Eyal Bari8f576482018-05-07 10:13:44 +0300213 return (&t->node);
John Loc42912d2016-11-07 18:30:47 -0500214}
215
216/**
217 * Function definition to inform the FIB node that its last lock has gone.
218 */
219static void
Eyal Bari8f576482018-05-07 10:13:44 +0300220vxlan_tunnel_last_lock_gone (fib_node_t * node)
John Loc42912d2016-11-07 18:30:47 -0500221{
Eyal Bari8f576482018-05-07 10:13:44 +0300222 /*
223 * The VXLAN tunnel is a root of the graph. As such
224 * it never has children and thus is never locked.
225 */
226 ASSERT (0);
John Loc42912d2016-11-07 18:30:47 -0500227}
228
229/*
230 * Virtual function table registered by VXLAN tunnels
231 * for participation in the FIB object graph.
232 */
233const static fib_node_vft_t vxlan_vft = {
Eyal Bari8f576482018-05-07 10:13:44 +0300234 .fnv_get = vxlan_tunnel_fib_node_get,
235 .fnv_last_lock = vxlan_tunnel_last_lock_gone,
236 .fnv_back_walk = vxlan_tunnel_back_walk,
John Loc42912d2016-11-07 18:30:47 -0500237};
238
239
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240#define foreach_copy_field \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241_(vni) \
Eyal Baric5b13602016-11-24 19:42:43 +0200242_(mcast_sw_if_index) \
243_(encap_fib_index) \
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800244_(decap_next_index) \
Eyal Baric5b13602016-11-24 19:42:43 +0200245_(src) \
246_(dst)
Chris Luke99cb3352016-04-26 10:49:53 -0400247
Eyal Bari554075a2018-02-13 15:17:17 +0200248static void
Eyal Baria93ea422017-02-01 13:36:15 +0200249vxlan_rewrite (vxlan_tunnel_t * t, bool is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250{
Eyal Bari8f576482018-05-07 10:13:44 +0300251 union
252 {
eyal bari82e21d72018-04-26 13:14:55 +0300253 ip4_vxlan_header_t h4;
254 ip6_vxlan_header_t h6;
Matthew Smithec8aea12018-05-02 09:55:01 -0500255 } h;
eyal bari82e21d72018-04-26 13:14:55 +0300256 int len = is_ip6 ? sizeof h.h6 : sizeof h.h4;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257
Eyal Bari8f576482018-05-07 10:13:44 +0300258 udp_header_t *udp;
259 vxlan_header_t *vxlan;
Eyal Baria93ea422017-02-01 13:36:15 +0200260 /* Fixed portion of the (outer) ip header */
Matthew Smithec8aea12018-05-02 09:55:01 -0500261
Dave Barachb7b92992018-10-17 10:38:51 -0400262 clib_memset (&h, 0, sizeof (h));
Eyal Bari8f576482018-05-07 10:13:44 +0300263 if (!is_ip6)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800264 {
Eyal Bari8f576482018-05-07 10:13:44 +0300265 ip4_header_t *ip = &h.h4.ip4;
eyal bari82e21d72018-04-26 13:14:55 +0300266 udp = &h.h4.udp, vxlan = &h.h4.vxlan;
Eyal Baria93ea422017-02-01 13:36:15 +0200267 ip->ip_version_and_header_length = 0x45;
268 ip->ttl = 254;
269 ip->protocol = IP_PROTOCOL_UDP;
Eyal Bari8f576482018-05-07 10:13:44 +0300270
Eyal Baria93ea422017-02-01 13:36:15 +0200271 ip->src_address = t->src.ip4;
272 ip->dst_address = t->dst.ip4;
273
274 /* we fix up the ip4 header length and checksum after-the-fact */
275 ip->checksum = ip4_header_checksum (ip);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800276 }
277 else
278 {
Eyal Bari8f576482018-05-07 10:13:44 +0300279 ip6_header_t *ip = &h.h6.ip6;
eyal bari82e21d72018-04-26 13:14:55 +0300280 udp = &h.h6.udp, vxlan = &h.h6.vxlan;
Eyal Bari8f576482018-05-07 10:13:44 +0300281 ip->ip_version_traffic_class_and_flow_label =
282 clib_host_to_net_u32 (6 << 28);
Eyal Baria93ea422017-02-01 13:36:15 +0200283 ip->hop_limit = 255;
284 ip->protocol = IP_PROTOCOL_UDP;
Eyal Bari8f576482018-05-07 10:13:44 +0300285
Eyal Baria93ea422017-02-01 13:36:15 +0200286 ip->src_address = t->src.ip6;
287 ip->dst_address = t->dst.ip6;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800288 }
289
Eyal Baria93ea422017-02-01 13:36:15 +0200290 /* UDP header, randomize src port on something, maybe? */
291 udp->src_port = clib_host_to_net_u16 (4789);
292 udp->dst_port = clib_host_to_net_u16 (UDP_DST_PORT_vxlan);
293
294 /* VXLAN header */
Eyal Bari8f576482018-05-07 10:13:44 +0300295 vnet_set_vni_and_flags (vxlan, t->vni);
eyal bari82e21d72018-04-26 13:14:55 +0300296 vnet_rewrite_set_data (*t, &h, len);
Eyal Baria93ea422017-02-01 13:36:15 +0200297}
298
299static bool
Eyal Bari8f576482018-05-07 10:13:44 +0300300vxlan_decap_next_is_valid (vxlan_main_t * vxm, u32 is_ip6,
301 u32 decap_next_index)
Eyal Baria93ea422017-02-01 13:36:15 +0200302{
Eyal Bari8f576482018-05-07 10:13:44 +0300303 vlib_main_t *vm = vxm->vlib_main;
304 u32 input_idx = (!is_ip6) ?
305 vxlan4_input_node.index : vxlan6_input_node.index;
Eyal Baria93ea422017-02-01 13:36:15 +0200306 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, input_idx);
307
308 return decap_next_index < r->n_next_nodes;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800309}
310
Eyal Bari8f576482018-05-07 10:13:44 +0300311/* *INDENT-OFF* */
312typedef CLIB_PACKED(union
313{
314 struct
315 {
Neale Ranns32e1c012016-11-22 17:07:28 +0000316 fib_node_index_t mfib_entry_index;
Eyal Bari0ded8512017-01-19 17:01:09 +0200317 adj_index_t mcast_adj_index;
318 };
319 u64 as_u64;
320}) mcast_shared_t;
Eyal Bari8f576482018-05-07 10:13:44 +0300321/* *INDENT-ON* */
Eyal Bari0ded8512017-01-19 17:01:09 +0200322
323static inline mcast_shared_t
Eyal Bari8f576482018-05-07 10:13:44 +0300324mcast_shared_get (ip46_address_t * ip)
Eyal Barifff67c82016-12-21 12:45:47 +0200325{
Eyal Bari8f576482018-05-07 10:13:44 +0300326 ASSERT (ip46_address_is_multicast (ip));
327 uword *p = hash_get_mem (vxlan_main.mcast_shared, ip);
Dave Barach47d41ad2020-02-17 09:13:26 -0500328 ALWAYS_ASSERT (p);
Eyal Bari8f576482018-05-07 10:13:44 +0300329 mcast_shared_t ret = {.as_u64 = *p };
330 return ret;
Eyal Barifff67c82016-12-21 12:45:47 +0200331}
332
Eyal Bari0ded8512017-01-19 17:01:09 +0200333static inline void
Eyal Bari8f576482018-05-07 10:13:44 +0300334mcast_shared_add (ip46_address_t * dst, fib_node_index_t mfei, adj_index_t ai)
Neale Ranns32e1c012016-11-22 17:07:28 +0000335{
Eyal Bari8f576482018-05-07 10:13:44 +0300336 mcast_shared_t new_ep = {
337 .mcast_adj_index = ai,
338 .mfib_entry_index = mfei,
339 };
Neale Ranns32e1c012016-11-22 17:07:28 +0000340
Eyal Bari8f576482018-05-07 10:13:44 +0300341 hash_set_mem_alloc (&vxlan_main.mcast_shared, dst, new_ep.as_u64);
Neale Ranns32e1c012016-11-22 17:07:28 +0000342}
343
344static inline void
Eyal Bari8f576482018-05-07 10:13:44 +0300345mcast_shared_remove (ip46_address_t * dst)
Neale Ranns32e1c012016-11-22 17:07:28 +0000346{
Eyal Bari8f576482018-05-07 10:13:44 +0300347 mcast_shared_t ep = mcast_shared_get (dst);
Neale Ranns32e1c012016-11-22 17:07:28 +0000348
Eyal Bari8f576482018-05-07 10:13:44 +0300349 adj_unlock (ep.mcast_adj_index);
350 mfib_table_entry_delete_index (ep.mfib_entry_index, MFIB_SOURCE_VXLAN);
Neale Ranns32e1c012016-11-22 17:07:28 +0000351
Eyal Bari8f576482018-05-07 10:13:44 +0300352 hash_unset_mem_free (&vxlan_main.mcast_shared, dst);
Eyal Barifff67c82016-12-21 12:45:47 +0200353}
354
Eyal Bari8f576482018-05-07 10:13:44 +0300355int vnet_vxlan_add_del_tunnel
356 (vnet_vxlan_add_del_tunnel_args_t * a, u32 * sw_if_indexp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700357{
Eyal Bari8f576482018-05-07 10:13:44 +0300358 vxlan_main_t *vxm = &vxlan_main;
Eyal Bari8f576482018-05-07 10:13:44 +0300359 vnet_main_t *vnm = vxm->vnet_main;
Eyal Bariefd9cf32018-10-02 12:23:06 +0300360 vxlan_decap_info_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361 u32 sw_if_index = ~0;
Chris Luke99cb3352016-04-26 10:49:53 -0400362 vxlan4_tunnel_key_t key4;
363 vxlan6_tunnel_key_t key6;
John Loc42912d2016-11-07 18:30:47 -0500364 u32 is_ip6 = a->is_ip6;
Ed Warnickea4b05412021-01-18 11:56:22 -0600365 vlib_main_t *vm = vlib_get_main ();
366 u8 hw_addr[6];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367
Eyal Baridd47eca2018-07-08 08:15:56 +0300368 int not_found;
John Lo56912c82016-12-08 16:10:02 -0500369 if (!is_ip6)
370 {
Eyal Bariefd9cf32018-10-02 12:23:06 +0300371 /* ip4 mcast is indexed by mcast addr only */
372 key4.key[0] = ip46_address_is_multicast (&a->dst) ?
373 a->dst.ip4.as_u32 :
374 a->dst.ip4.as_u32 | (((u64) a->src.ip4.as_u32) << 32);
Eyal Baridd47eca2018-07-08 08:15:56 +0300375 key4.key[1] = (((u64) a->encap_fib_index) << 32)
376 | clib_host_to_net_u32 (a->vni << 8);
377 not_found =
378 clib_bihash_search_inline_16_8 (&vxm->vxlan4_tunnel_by_key, &key4);
Eyal Bariefd9cf32018-10-02 12:23:06 +0300379 p = (void *) &key4.value;
Eyal Bari8f576482018-05-07 10:13:44 +0300380 }
381 else
John Lo56912c82016-12-08 16:10:02 -0500382 {
Eyal Bari0fa56782018-06-04 12:25:05 +0300383 key6.key[0] = a->dst.ip6.as_u64[0];
384 key6.key[1] = a->dst.ip6.as_u64[1];
385 key6.key[2] = (((u64) a->encap_fib_index) << 32)
386 | clib_host_to_net_u32 (a->vni << 8);
Eyal Baridd47eca2018-07-08 08:15:56 +0300387 not_found =
388 clib_bihash_search_inline_24_8 (&vxm->vxlan6_tunnel_by_key, &key6);
Eyal Bariefd9cf32018-10-02 12:23:06 +0300389 p = (void *) &key6.value;
John Lo56912c82016-12-08 16:10:02 -0500390 }
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600391
Eyal Baridd47eca2018-07-08 08:15:56 +0300392 if (not_found)
393 p = 0;
394
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395 if (a->is_add)
396 {
Eyal Bari8f576482018-05-07 10:13:44 +0300397 l2input_main_t *l2im = &l2input_main;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600398 u32 dev_instance; /* real dev instance tunnel index */
399 u32 user_instance; /* request and actual instance number */
John Loc42912d2016-11-07 18:30:47 -0500400
Ed Warnickecb9cada2015-12-08 15:45:58 -0700401 /* adding a tunnel: tunnel must not already exist */
402 if (p)
Eyal Bari8f576482018-05-07 10:13:44 +0300403 return VNET_API_ERROR_TUNNEL_EXIST;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700404
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800405 /*if not set explicitly, default to l2 */
Eyal Bari8f576482018-05-07 10:13:44 +0300406 if (a->decap_next_index == ~0)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800407 a->decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
Eyal Bari8f576482018-05-07 10:13:44 +0300408 if (!vxlan_decap_next_is_valid (vxm, is_ip6, a->decap_next_index))
409 return VNET_API_ERROR_INVALID_DECAP_NEXT;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800410
Eyal Bariefd9cf32018-10-02 12:23:06 +0300411 vxlan_tunnel_t *t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412 pool_get_aligned (vxm->tunnels, t, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400413 clib_memset (t, 0, sizeof (*t));
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600414 dev_instance = t - vxm->tunnels;
415
Ed Warnickecb9cada2015-12-08 15:45:58 -0700416 /* copy from arg structure */
417#define _(x) t->x = a->x;
418 foreach_copy_field;
419#undef _
Chris Luke99cb3352016-04-26 10:49:53 -0400420
Eyal Bari554075a2018-02-13 15:17:17 +0200421 vxlan_rewrite (t, is_ip6);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600422 /*
423 * Reconcile the real dev_instance and a possible requested instance.
424 */
425 user_instance = a->instance;
Eyal Bari8f576482018-05-07 10:13:44 +0300426 if (user_instance == ~0)
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600427 user_instance = dev_instance;
428 if (hash_get (vxm->instance_used, user_instance))
429 {
430 pool_put (vxm->tunnels, t);
431 return VNET_API_ERROR_INSTANCE_IN_USE;
432 }
Ed Warnickea4b05412021-01-18 11:56:22 -0600433
434 f64 now = vlib_time_now (vm);
435 u32 rnd;
436 rnd = (u32) (now * 1e6);
437 rnd = random_u32 (&rnd);
438
439 memcpy (hw_addr + 2, &rnd, sizeof (rnd));
440 hw_addr[0] = 2;
441 hw_addr[1] = 0xfe;
442
Ray Kinsella15cb3da2021-01-28 17:09:45 +0000443 hash_set (vxm->instance_used, user_instance, 1);
444
445 t->dev_instance = dev_instance; /* actual */
446 t->user_instance = user_instance; /* name */
447 t->flow_index = ~0;
448
Ed Warnickea4b05412021-01-18 11:56:22 -0600449 if (ethernet_register_interface (vnm, vxlan_device_class.index,
450 dev_instance, hw_addr, &t->hw_if_index,
451 vxlan_eth_flag_change))
452 {
Ray Kinsella15cb3da2021-01-28 17:09:45 +0000453 hash_unset (vxm->instance_used, t->user_instance);
454
Ed Warnickea4b05412021-01-18 11:56:22 -0600455 pool_put (vxm->tunnels, t);
456 return VNET_API_ERROR_SYSCALL_ERROR_2;
457 }
458
Eyal Bari8f576482018-05-07 10:13:44 +0300459 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, t->hw_if_index);
John Loe5453d02018-01-23 19:21:34 -0500460
461 /* Set vxlan tunnel output node */
462 u32 encap_index = !is_ip6 ?
Eyal Bari8f576482018-05-07 10:13:44 +0300463 vxlan4_encap_node.index : vxlan6_encap_node.index;
Eyal Bari554075a2018-02-13 15:17:17 +0200464 vnet_set_interface_output_node (vnm, t->hw_if_index, encap_index);
John Loe5453d02018-01-23 19:21:34 -0500465
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466 t->sw_if_index = sw_if_index = hi->sw_if_index;
John Loe5453d02018-01-23 19:21:34 -0500467
Eyal Bariefd9cf32018-10-02 12:23:06 +0300468 /* copy the key */
469 int add_failed;
470 if (is_ip6)
471 {
472 key6.value = (u64) dev_instance;
473 add_failed = clib_bihash_add_del_24_8 (&vxm->vxlan6_tunnel_by_key,
474 &key6, 1 /*add */ );
475 }
476 else
477 {
478 vxlan_decap_info_t di = {.sw_if_index = t->sw_if_index, };
479 if (ip46_address_is_multicast (&t->dst))
480 di.local_ip = t->src.ip4;
481 else
482 di.next_index = t->decap_next_index;
483 key4.value = di.as_u64;
484 add_failed = clib_bihash_add_del_16_8 (&vxm->vxlan4_tunnel_by_key,
485 &key4, 1 /*add */ );
486 }
487
488 if (add_failed)
489 {
Ed Warnickea4b05412021-01-18 11:56:22 -0600490 ethernet_delete_interface (vnm, t->hw_if_index);
Eyal Bariefd9cf32018-10-02 12:23:06 +0300491 hash_unset (vxm->instance_used, t->user_instance);
492 pool_put (vxm->tunnels, t);
493 return VNET_API_ERROR_INVALID_REGISTRATION;
494 }
495
Eyal Bari8f576482018-05-07 10:13:44 +0300496 vec_validate_init_empty (vxm->tunnel_index_by_sw_if_index, sw_if_index,
497 ~0);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600498 vxm->tunnel_index_by_sw_if_index[sw_if_index] = dev_instance;
Dave Wallace60231f32015-12-17 21:04:30 -0500499
John Loc42912d2016-11-07 18:30:47 -0500500 /* setup l2 input config with l2 feature and bd 0 to drop packet */
501 vec_validate (l2im->configs, sw_if_index);
502 l2im->configs[sw_if_index].feature_bitmap = L2INPUT_FEAT_DROP;
503 l2im->configs[sw_if_index].bd_index = 0;
John Loe5453d02018-01-23 19:21:34 -0500504
Eyal Bari8f576482018-05-07 10:13:44 +0300505 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
Eyal Bari3212c572017-03-06 11:47:50 +0200506 si->flags &= ~VNET_SW_INTERFACE_FLAG_HIDDEN;
John Loe5453d02018-01-23 19:21:34 -0500507 vnet_sw_interface_set_flags (vnm, sw_if_index,
Eyal Bari8f576482018-05-07 10:13:44 +0300508 VNET_SW_INTERFACE_FLAG_ADMIN_UP);
Eyal Bari3212c572017-03-06 11:47:50 +0200509
Eyal Bari8f576482018-05-07 10:13:44 +0300510 fib_node_init (&t->node, FIB_NODE_TYPE_VXLAN_TUNNEL);
Eyal Baric5b13602016-11-24 19:42:43 +0200511 fib_prefix_t tun_dst_pfx;
Eyal Baric5b13602016-11-24 19:42:43 +0200512 vnet_flood_class_t flood_class = VNET_FLOOD_CLASS_TUNNEL_NORMAL;
John Loc42912d2016-11-07 18:30:47 -0500513
Eyal Bari8f576482018-05-07 10:13:44 +0300514 fib_prefix_from_ip46_addr (&t->dst, &tun_dst_pfx);
515 if (!ip46_address_is_multicast (&t->dst))
516 {
517 /* Unicast tunnel -
518 * source the FIB entry for the tunnel's destination
519 * and become a child thereof. The tunnel will then get poked
520 * when the forwarding for the entry updates, and the tunnel can
521 * re-stack accordingly
522 */
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000523 vtep_addr_ref (&vxm->vtep_table, t->encap_fib_index, &t->src);
Neale Ranns1f50bf82019-07-16 15:28:52 +0000524 t->fib_entry_index = fib_entry_track (t->encap_fib_index,
525 &tun_dst_pfx,
526 FIB_NODE_TYPE_VXLAN_TUNNEL,
527 dev_instance,
528 &t->sibling_index);
Eyal Bari8f576482018-05-07 10:13:44 +0300529 vxlan_tunnel_restack_dpo (t);
530 }
Eyal Barifff67c82016-12-21 12:45:47 +0200531 else
Eyal Bari8f576482018-05-07 10:13:44 +0300532 {
533 /* Multicast tunnel -
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700534 * as the same mcast group can be used for multiple mcast tunnels
535 * with different VNIs, create the output fib adjacency only if
John Lo56912c82016-12-08 16:10:02 -0500536 * it does not already exist
537 */
Eyal Bari8f576482018-05-07 10:13:44 +0300538 fib_protocol_t fp = fib_ip_proto (is_ip6);
Eyal Baric5b13602016-11-24 19:42:43 +0200539
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000540 if (vtep_addr_ref (&vxm->vtep_table,
541 t->encap_fib_index, &t->dst) == 1)
Eyal Bari8f576482018-05-07 10:13:44 +0300542 {
543 fib_node_index_t mfei;
544 adj_index_t ai;
545 fib_route_path_t path = {
546 .frp_proto = fib_proto_to_dpo (fp),
547 .frp_addr = zero_addr,
548 .frp_sw_if_index = 0xffffffff,
549 .frp_fib_index = ~0,
Neale Ranns097fa662018-05-01 05:17:55 -0700550 .frp_weight = 1,
Eyal Bari8f576482018-05-07 10:13:44 +0300551 .frp_flags = FIB_ROUTE_PATH_LOCAL,
Neale Ranns097fa662018-05-01 05:17:55 -0700552 .frp_mitf_flags = MFIB_ITF_FLAG_FORWARD,
Eyal Bari8f576482018-05-07 10:13:44 +0300553 };
554 const mfib_prefix_t mpfx = {
555 .fp_proto = fp,
556 .fp_len = (is_ip6 ? 128 : 32),
557 .fp_grp_addr = tun_dst_pfx.fp_addr,
558 };
Eyal Barifff67c82016-12-21 12:45:47 +0200559
Eyal Bari8f576482018-05-07 10:13:44 +0300560 /*
561 * Setup the (*,G) to receive traffic on the mcast group
562 * - the forwarding interface is for-us
563 * - the accepting interface is that from the API
564 */
565 mfib_table_entry_path_update (t->encap_fib_index,
Neale Ranns097fa662018-05-01 05:17:55 -0700566 &mpfx, MFIB_SOURCE_VXLAN, &path);
Neale Ranns32e1c012016-11-22 17:07:28 +0000567
Eyal Bari8f576482018-05-07 10:13:44 +0300568 path.frp_sw_if_index = a->mcast_sw_if_index;
569 path.frp_flags = FIB_ROUTE_PATH_FLAG_NONE;
Neale Ranns097fa662018-05-01 05:17:55 -0700570 path.frp_mitf_flags = MFIB_ITF_FLAG_ACCEPT;
Eyal Bari8f576482018-05-07 10:13:44 +0300571 mfei = mfib_table_entry_path_update (t->encap_fib_index,
572 &mpfx,
Neale Ranns097fa662018-05-01 05:17:55 -0700573 MFIB_SOURCE_VXLAN, &path);
Neale Ranns32e1c012016-11-22 17:07:28 +0000574
Eyal Bari8f576482018-05-07 10:13:44 +0300575 /*
576 * Create the mcast adjacency to send traffic to the group
577 */
578 ai = adj_mcast_add_or_lock (fp,
579 fib_proto_to_link (fp),
580 a->mcast_sw_if_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000581
Eyal Bari8f576482018-05-07 10:13:44 +0300582 /*
583 * create a new end-point
584 */
585 mcast_shared_add (&t->dst, mfei, ai);
586 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000587
Eyal Bari8f576482018-05-07 10:13:44 +0300588 dpo_id_t dpo = DPO_INVALID;
589 mcast_shared_t ep = mcast_shared_get (&t->dst);
Neale Ranns32e1c012016-11-22 17:07:28 +0000590
Eyal Bari8f576482018-05-07 10:13:44 +0300591 /* Stack shared mcast dst mac addr rewrite on encap */
592 dpo_set (&dpo, DPO_ADJACENCY_MCAST,
593 fib_proto_to_dpo (fp), ep.mcast_adj_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000594
Eyal Bari8f576482018-05-07 10:13:44 +0300595 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
596 dpo_reset (&dpo);
Eyal Barifff67c82016-12-21 12:45:47 +0200597 flood_class = VNET_FLOOD_CLASS_TUNNEL_MASTER;
John Lo56912c82016-12-08 16:10:02 -0500598 }
599
Eyal Bari8f576482018-05-07 10:13:44 +0300600 vnet_get_sw_interface (vnet_get_main (), sw_if_index)->flood_class =
601 flood_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700602 }
603 else
604 {
605 /* deleting a tunnel: tunnel must exist */
John Lo37682e12016-11-30 12:51:39 -0500606 if (!p)
Eyal Bari8f576482018-05-07 10:13:44 +0300607 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608
Eyal Barif8d5e212018-10-14 10:54:32 +0300609 u32 instance = is_ip6 ? key6.value :
610 vxm->tunnel_index_by_sw_if_index[p->sw_if_index];
Eyal Bariefd9cf32018-10-02 12:23:06 +0300611 vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612
Eyal Baribc799c92017-04-06 03:26:59 +0300613 sw_if_index = t->sw_if_index;
Eyal Bari8f576482018-05-07 10:13:44 +0300614 vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700615
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600616 vxm->tunnel_index_by_sw_if_index[sw_if_index] = ~0;
Dave Wallace60231f32015-12-17 21:04:30 -0500617
John Loc42912d2016-11-07 18:30:47 -0500618 if (!is_ip6)
Eyal Baridd47eca2018-07-08 08:15:56 +0300619 clib_bihash_add_del_16_8 (&vxm->vxlan4_tunnel_by_key, &key4,
620 0 /*del */ );
Chris Luke99cb3352016-04-26 10:49:53 -0400621 else
Eyal Baridd47eca2018-07-08 08:15:56 +0300622 clib_bihash_add_del_24_8 (&vxm->vxlan6_tunnel_by_key, &key6,
Eyal Bari0fa56782018-06-04 12:25:05 +0300623 0 /*del */ );
Eyal Barifff67c82016-12-21 12:45:47 +0200624
Eyal Bari8f576482018-05-07 10:13:44 +0300625 if (!ip46_address_is_multicast (&t->dst))
626 {
eyal bariaf86a482018-04-17 11:20:27 +0300627 if (t->flow_index != ~0)
628 vnet_flow_del (vnm, t->flow_index);
629
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000630 vtep_addr_unref (&vxm->vtep_table, t->encap_fib_index, &t->src);
Neale Ranns1f50bf82019-07-16 15:28:52 +0000631 fib_entry_untrack (t->fib_entry_index, t->sibling_index);
Eyal Bari8f576482018-05-07 10:13:44 +0300632 }
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000633 else if (vtep_addr_unref (&vxm->vtep_table,
634 t->encap_fib_index, &t->dst) == 0)
Eyal Bari8f576482018-05-07 10:13:44 +0300635 {
636 mcast_shared_remove (&t->dst);
637 }
Eyal Barifff67c82016-12-21 12:45:47 +0200638
Ed Warnickea4b05412021-01-18 11:56:22 -0600639 ethernet_delete_interface (vnm, t->hw_if_index);
Jon Loeliger25ef2b52018-02-23 17:02:41 -0600640 hash_unset (vxm->instance_used, t->user_instance);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600641
Eyal Bari8f576482018-05-07 10:13:44 +0300642 fib_node_deinit (&t->node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700643 pool_put (vxm->tunnels, t);
644 }
645
646 if (sw_if_indexp)
Eyal Bari8f576482018-05-07 10:13:44 +0300647 *sw_if_indexp = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700648
Jakub Grajciardf3ca232019-06-04 13:16:42 +0200649 if (a->is_add)
650 {
651 /* register udp ports */
652 if (!is_ip6 && !udp_is_valid_dst_port (UDP_DST_PORT_vxlan, 1))
653 udp_register_dst_port (vxm->vlib_main, UDP_DST_PORT_vxlan,
654 vxlan4_input_node.index, 1);
655 if (is_ip6 && !udp_is_valid_dst_port (UDP_DST_PORT_vxlan6, 0))
656 udp_register_dst_port (vxm->vlib_main, UDP_DST_PORT_vxlan6,
657 vxlan6_input_node.index, 0);
658 }
659
Ed Warnickecb9cada2015-12-08 15:45:58 -0700660 return 0;
661}
662
Eyal Bari8f576482018-05-07 10:13:44 +0300663static uword
664get_decap_next_for_node (u32 node_index, u32 ipv4_set)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800665{
Eyal Bari8f576482018-05-07 10:13:44 +0300666 vxlan_main_t *vxm = &vxlan_main;
667 vlib_main_t *vm = vxm->vlib_main;
Eyal Bari0765c6e2017-01-29 12:40:50 +0200668 uword input_node = (ipv4_set) ? vxlan4_input_node.index :
669 vxlan6_input_node.index;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800670
Eyal Bari0765c6e2017-01-29 12:40:50 +0200671 return vlib_node_add_next (vm, input_node, node_index);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800672}
673
Eyal Bari8f576482018-05-07 10:13:44 +0300674static uword
675unformat_decap_next (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700676{
Eyal Bari8f576482018-05-07 10:13:44 +0300677 u32 *result = va_arg (*args, u32 *);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800678 u32 ipv4_set = va_arg (*args, int);
Eyal Bari8f576482018-05-07 10:13:44 +0300679 vxlan_main_t *vxm = &vxlan_main;
680 vlib_main_t *vm = vxm->vlib_main;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800681 u32 node_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700682 u32 tmp;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800683
Ed Warnickecb9cada2015-12-08 15:45:58 -0700684 if (unformat (input, "l2"))
685 *result = VXLAN_INPUT_NEXT_L2_INPUT;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800686 else if (unformat (input, "node %U", unformat_vlib_node, vm, &node_index))
Eyal Bari8f576482018-05-07 10:13:44 +0300687 *result = get_decap_next_for_node (node_index, ipv4_set);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688 else if (unformat (input, "%d", &tmp))
689 *result = tmp;
690 else
691 return 0;
692 return 1;
693}
694
695static clib_error_t *
696vxlan_add_del_tunnel_command_fn (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +0300697 unformat_input_t * input,
698 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700699{
Eyal Bari8f576482018-05-07 10:13:44 +0300700 unformat_input_t _line_input, *line_input = &_line_input;
701 ip46_address_t src = ip46_address_initializer, dst =
702 ip46_address_initializer;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700703 u8 is_add = 1;
704 u8 src_set = 0;
705 u8 dst_set = 0;
Eyal Baric5b13602016-11-24 19:42:43 +0200706 u8 grp_set = 0;
Chris Luke99cb3352016-04-26 10:49:53 -0400707 u8 ipv4_set = 0;
708 u8 ipv6_set = 0;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600709 u32 instance = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700710 u32 encap_fib_index = 0;
Eyal Baric5b13602016-11-24 19:42:43 +0200711 u32 mcast_sw_if_index = ~0;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800712 u32 decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700713 u32 vni = 0;
Eyal Bariaa0180b2018-03-27 11:43:57 +0300714 u32 table_id;
Eyal Bari0fa56782018-06-04 12:25:05 +0300715 clib_error_t *parse_error = NULL;
Eyal Baric5b13602016-11-24 19:42:43 +0200716
Ed Warnickecb9cada2015-12-08 15:45:58 -0700717 /* Get a line of input. */
Eyal Bari8f576482018-05-07 10:13:44 +0300718 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700719 return 0;
720
Eyal Bari8f576482018-05-07 10:13:44 +0300721 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
722 {
723 if (unformat (line_input, "del"))
724 {
725 is_add = 0;
726 }
727 else if (unformat (line_input, "instance %d", &instance))
728 ;
729 else if (unformat (line_input, "src %U",
730 unformat_ip46_address, &src, IP46_TYPE_ANY))
731 {
732 src_set = 1;
733 ip46_address_is_ip4 (&src) ? (ipv4_set = 1) : (ipv6_set = 1);
734 }
735 else if (unformat (line_input, "dst %U",
736 unformat_ip46_address, &dst, IP46_TYPE_ANY))
737 {
738 dst_set = 1;
739 ip46_address_is_ip4 (&dst) ? (ipv4_set = 1) : (ipv6_set = 1);
740 }
741 else if (unformat (line_input, "group %U %U",
742 unformat_ip46_address, &dst, IP46_TYPE_ANY,
743 unformat_vnet_sw_interface,
744 vnet_get_main (), &mcast_sw_if_index))
745 {
746 grp_set = dst_set = 1;
747 ip46_address_is_ip4 (&dst) ? (ipv4_set = 1) : (ipv6_set = 1);
748 }
749 else if (unformat (line_input, "encap-vrf-id %d", &table_id))
750 {
751 encap_fib_index =
752 fib_table_find (fib_ip_proto (ipv6_set), table_id);
Eyal Bari8f576482018-05-07 10:13:44 +0300753 }
754 else if (unformat (line_input, "decap-next %U", unformat_decap_next,
755 &decap_next_index, ipv4_set))
756 ;
757 else if (unformat (line_input, "vni %d", &vni))
758 ;
759 else
760 {
Eyal Bari0fa56782018-06-04 12:25:05 +0300761 parse_error = clib_error_return (0, "parse error: '%U'",
762 format_unformat_error, line_input);
Eyal Bari8f576482018-05-07 10:13:44 +0300763 break;
764 }
765 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766
Eyal Bariaa0180b2018-03-27 11:43:57 +0300767 unformat_free (line_input);
768
Eyal Bari0fa56782018-06-04 12:25:05 +0300769 if (parse_error)
770 return parse_error;
771
772 if (encap_fib_index == ~0)
773 return clib_error_return (0, "nonexistent encap-vrf-id %d", table_id);
Eyal Bariaa0180b2018-03-27 11:43:57 +0300774
Ed Warnickecb9cada2015-12-08 15:45:58 -0700775 if (src_set == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300776 return clib_error_return (0, "tunnel src address not specified");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700777
778 if (dst_set == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300779 return clib_error_return (0, "tunnel dst address not specified");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700780
Eyal Bari8f576482018-05-07 10:13:44 +0300781 if (grp_set && !ip46_address_is_multicast (&dst))
Eyal Bariaa0180b2018-03-27 11:43:57 +0300782 return clib_error_return (0, "tunnel group address not multicast");
Eyal Baric5b13602016-11-24 19:42:43 +0200783
Eyal Bari8f576482018-05-07 10:13:44 +0300784 if (grp_set == 0 && ip46_address_is_multicast (&dst))
Eyal Bariaa0180b2018-03-27 11:43:57 +0300785 return clib_error_return (0, "dst address must be unicast");
John Lo56912c82016-12-08 16:10:02 -0500786
Eyal Baric5b13602016-11-24 19:42:43 +0200787 if (grp_set && mcast_sw_if_index == ~0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300788 return clib_error_return (0, "tunnel nonexistent multicast device");
Eyal Baric5b13602016-11-24 19:42:43 +0200789
Chris Luke99cb3352016-04-26 10:49:53 -0400790 if (ipv4_set && ipv6_set)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300791 return clib_error_return (0, "both IPv4 and IPv6 addresses specified");
Chris Luke99cb3352016-04-26 10:49:53 -0400792
Eyal Bari8f576482018-05-07 10:13:44 +0300793 if (ip46_address_cmp (&src, &dst) == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300794 return clib_error_return (0, "src and dst addresses are identical");
Chris Luke99cb3352016-04-26 10:49:53 -0400795
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800796 if (decap_next_index == ~0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300797 return clib_error_return (0, "next node not found");
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800798
Ed Warnickecb9cada2015-12-08 15:45:58 -0700799 if (vni == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300800 return clib_error_return (0, "vni not specified");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801
Eyal Bari8f576482018-05-07 10:13:44 +0300802 if (vni >> 24)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300803 return clib_error_return (0, "vni %d out of range", vni);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804
Eyal Bariaa0180b2018-03-27 11:43:57 +0300805 vnet_vxlan_add_del_tunnel_args_t a = {
Eyal Bari8f576482018-05-07 10:13:44 +0300806 .is_add = is_add,
807 .is_ip6 = ipv6_set,
808 .instance = instance,
Eyal Bariaa0180b2018-03-27 11:43:57 +0300809#define _(x) .x = x,
Eyal Bari8f576482018-05-07 10:13:44 +0300810 foreach_copy_field
Ed Warnickecb9cada2015-12-08 15:45:58 -0700811#undef _
Eyal Bariaa0180b2018-03-27 11:43:57 +0300812 };
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600813
Eyal Bariaa0180b2018-03-27 11:43:57 +0300814 u32 tunnel_sw_if_index;
815 int rv = vnet_vxlan_add_del_tunnel (&a, &tunnel_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700816
Eyal Bari8f576482018-05-07 10:13:44 +0300817 switch (rv)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700818 {
819 case 0:
Pierre Pfister78ea9c22016-05-23 12:51:54 +0100820 if (is_add)
Eyal Bari8f576482018-05-07 10:13:44 +0300821 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
822 vnet_get_main (), tunnel_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700823 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700824
825 case VNET_API_ERROR_TUNNEL_EXIST:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300826 return clib_error_return (0, "tunnel already exists...");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700827
828 case VNET_API_ERROR_NO_SUCH_ENTRY:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300829 return clib_error_return (0, "tunnel does not exist...");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700830
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600831 case VNET_API_ERROR_INSTANCE_IN_USE:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300832 return clib_error_return (0, "Instance is in use");
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600833
Ed Warnickecb9cada2015-12-08 15:45:58 -0700834 default:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300835 return clib_error_return
Eyal Bari8f576482018-05-07 10:13:44 +0300836 (0, "vnet_vxlan_add_del_tunnel returned %d", rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700837 }
838
Eyal Bari0fa56782018-06-04 12:25:05 +0300839 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700840}
841
Billy McFallc5d9cda2016-09-14 10:39:58 -0400842/*?
843 * Add or delete a VXLAN Tunnel.
844 *
845 * VXLAN provides the features needed to allow L2 bridge domains (BDs)
846 * to span multiple servers. This is done by building an L2 overlay on
847 * top of an L3 network underlay using VXLAN tunnels.
848 *
849 * This makes it possible for servers to be co-located in the same data
850 * center or be separated geographically as long as they are reachable
851 * through the underlay L3 network.
852 *
853 * You can refer to this kind of L2 overlay bridge domain as a VXLAN
854 * (Virtual eXtensible VLAN) segment.
855 *
856 * @cliexpar
857 * Example of how to create a VXLAN Tunnel:
John Loc42912d2016-11-07 18:30:47 -0500858 * @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 -0600859 * Example of how to create a VXLAN Tunnel with a known name, vxlan_tunnel42:
860 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 instance 42}
Eyal Baridd47eca2018-07-08 08:15:56 +0300861 * Example of how to create a multicast VXLAN Tunnel with a known name, vxlan_tunnel23:
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700862 * @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 -0400863 * Example of how to delete a VXLAN Tunnel:
864 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 del}
865 ?*/
866/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700867VLIB_CLI_COMMAND (create_vxlan_tunnel_command, static) = {
868 .path = "create vxlan tunnel",
Eyal Bari8f576482018-05-07 10:13:44 +0300869 .short_help =
Eyal Baric5b13602016-11-24 19:42:43 +0200870 "create vxlan tunnel src <local-vtep-addr>"
871 " {dst <remote-vtep-addr>|group <mcast-vtep-addr> <intf-name>} vni <nn>"
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600872 " [instance <id>]"
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800873 " [encap-vrf-id <nn>] [decap-next [l2|node <name>]] [del]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700874 .function = vxlan_add_del_tunnel_command_fn,
875};
Billy McFallc5d9cda2016-09-14 10:39:58 -0400876/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700877
878static clib_error_t *
879show_vxlan_tunnel_command_fn (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +0300880 unformat_input_t * input,
881 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700882{
Eyal Bari8f576482018-05-07 10:13:44 +0300883 vxlan_main_t *vxm = &vxlan_main;
884 vxlan_tunnel_t *t;
Eyal Bari0fa56782018-06-04 12:25:05 +0300885 int raw = 0;
Eyal Bari0fa56782018-06-04 12:25:05 +0300886
Neale Ranns16be62e2018-07-30 11:59:22 -0700887 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Eyal Bari0fa56782018-06-04 12:25:05 +0300888 {
Neale Ranns16be62e2018-07-30 11:59:22 -0700889 if (unformat (input, "raw"))
Eyal Bari0fa56782018-06-04 12:25:05 +0300890 raw = 1;
891 else
Neale Ranns16be62e2018-07-30 11:59:22 -0700892 return clib_error_return (0, "parse error: '%U'",
893 format_unformat_error, input);
Eyal Bari0fa56782018-06-04 12:25:05 +0300894 }
895
Ed Warnickecb9cada2015-12-08 15:45:58 -0700896 if (pool_elts (vxm->tunnels) == 0)
897 vlib_cli_output (vm, "No vxlan tunnels configured...");
898
Eyal Bari8f576482018-05-07 10:13:44 +0300899/* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100900 pool_foreach (t, vxm->tunnels)
901 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700902 vlib_cli_output (vm, "%U", format_vxlan_tunnel, t);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100903 }
Eyal Bari8f576482018-05-07 10:13:44 +0300904/* *INDENT-ON* */
905
Eyal Bari0fa56782018-06-04 12:25:05 +0300906 if (raw)
Eyal Baridd47eca2018-07-08 08:15:56 +0300907 {
908 vlib_cli_output (vm, "Raw IPv4 Hash Table:\n%U\n",
909 format_bihash_16_8, &vxm->vxlan4_tunnel_by_key,
910 1 /* verbose */ );
911 vlib_cli_output (vm, "Raw IPv6 Hash Table:\n%U\n",
912 format_bihash_24_8, &vxm->vxlan6_tunnel_by_key,
913 1 /* verbose */ );
914 }
Eyal Bari0fa56782018-06-04 12:25:05 +0300915
Ed Warnickecb9cada2015-12-08 15:45:58 -0700916 return 0;
917}
918
Billy McFallc5d9cda2016-09-14 10:39:58 -0400919/*?
920 * Display all the VXLAN Tunnel entries.
921 *
922 * @cliexpar
923 * Example of how to display the VXLAN Tunnel entries:
924 * @cliexstart{show vxlan tunnel}
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800925 * [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 -0400926 * @cliexend
927 ?*/
928/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700929VLIB_CLI_COMMAND (show_vxlan_tunnel_command, static) = {
930 .path = "show vxlan tunnel",
Eyal Bari0fa56782018-06-04 12:25:05 +0300931 .short_help = "show vxlan tunnel [raw]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700932 .function = show_vxlan_tunnel_command_fn,
933};
Billy McFallc5d9cda2016-09-14 10:39:58 -0400934/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700935
Chris Luke99cb3352016-04-26 10:49:53 -0400936
Eyal Bari8f576482018-05-07 10:13:44 +0300937void
938vnet_int_vxlan_bypass_mode (u32 sw_if_index, u8 is_ip6, u8 is_enable)
John Lo2b81eb82017-01-30 13:12:10 -0500939{
Jon Loeligere3034cd2019-01-03 12:56:02 -0600940 vxlan_main_t *vxm = &vxlan_main;
941
942 if (pool_is_free_index (vxm->vnet_main->interface_main.sw_interfaces,
943 sw_if_index))
944 return;
945
946 is_enable = ! !is_enable;
947
John Lo2b81eb82017-01-30 13:12:10 -0500948 if (is_ip6)
Jon Loeligere3034cd2019-01-03 12:56:02 -0600949 {
950 if (clib_bitmap_get (vxm->bm_ip6_bypass_enabled_by_sw_if, sw_if_index)
951 != is_enable)
952 {
953 vnet_feature_enable_disable ("ip6-unicast", "ip6-vxlan-bypass",
954 sw_if_index, is_enable, 0, 0);
955 vxm->bm_ip6_bypass_enabled_by_sw_if =
956 clib_bitmap_set (vxm->bm_ip6_bypass_enabled_by_sw_if,
957 sw_if_index, is_enable);
958 }
959 }
John Lo2b81eb82017-01-30 13:12:10 -0500960 else
Jon Loeligere3034cd2019-01-03 12:56:02 -0600961 {
962 if (clib_bitmap_get (vxm->bm_ip4_bypass_enabled_by_sw_if, sw_if_index)
963 != is_enable)
964 {
965 vnet_feature_enable_disable ("ip4-unicast", "ip4-vxlan-bypass",
966 sw_if_index, is_enable, 0, 0);
967 vxm->bm_ip4_bypass_enabled_by_sw_if =
968 clib_bitmap_set (vxm->bm_ip4_bypass_enabled_by_sw_if,
969 sw_if_index, is_enable);
970 }
971 }
John Lo2b81eb82017-01-30 13:12:10 -0500972}
973
974
975static clib_error_t *
976set_ip_vxlan_bypass (u32 is_ip6,
Eyal Bari8f576482018-05-07 10:13:44 +0300977 unformat_input_t * input, vlib_cli_command_t * cmd)
John Lo2b81eb82017-01-30 13:12:10 -0500978{
Eyal Bari8f576482018-05-07 10:13:44 +0300979 unformat_input_t _line_input, *line_input = &_line_input;
980 vnet_main_t *vnm = vnet_get_main ();
981 clib_error_t *error = 0;
John Lo2b81eb82017-01-30 13:12:10 -0500982 u32 sw_if_index, is_enable;
983
984 sw_if_index = ~0;
985 is_enable = 1;
986
Eyal Bari8f576482018-05-07 10:13:44 +0300987 if (!unformat_user (input, unformat_line_input, line_input))
John Lo2b81eb82017-01-30 13:12:10 -0500988 return 0;
989
990 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
991 {
Eyal Bari8f576482018-05-07 10:13:44 +0300992 if (unformat_user
993 (line_input, unformat_vnet_sw_interface, vnm, &sw_if_index))
994 ;
John Lo2b81eb82017-01-30 13:12:10 -0500995 else if (unformat (line_input, "del"))
Eyal Bari8f576482018-05-07 10:13:44 +0300996 is_enable = 0;
John Lo2b81eb82017-01-30 13:12:10 -0500997 else
Eyal Bari8f576482018-05-07 10:13:44 +0300998 {
John Lo2b81eb82017-01-30 13:12:10 -0500999 error = unformat_parse_error (line_input);
1000 goto done;
1001 }
1002 }
1003
1004 if (~0 == sw_if_index)
1005 {
1006 error = clib_error_return (0, "unknown interface `%U'",
1007 format_unformat_error, line_input);
1008 goto done;
1009 }
1010
1011 vnet_int_vxlan_bypass_mode (sw_if_index, is_ip6, is_enable);
1012
Eyal Bari8f576482018-05-07 10:13:44 +03001013done:
Billy McFalla9a20e72017-02-15 11:39:12 -05001014 unformat_free (line_input);
1015
John Lo2b81eb82017-01-30 13:12:10 -05001016 return error;
1017}
1018
1019static clib_error_t *
1020set_ip4_vxlan_bypass (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +03001021 unformat_input_t * input, vlib_cli_command_t * cmd)
John Lo2b81eb82017-01-30 13:12:10 -05001022{
1023 return set_ip_vxlan_bypass (0, input, cmd);
1024}
1025
1026/*?
Eyal Bari8f576482018-05-07 10:13:44 +03001027 * This command adds the 'ip4-vxlan-bypass' graph node for a given interface.
John Lo2b81eb82017-01-30 13:12:10 -05001028 * By adding the IPv4 vxlan-bypass graph node to an interface, the node checks
Eyal Bari8f576482018-05-07 10:13:44 +03001029 * for and validate input vxlan packet and bypass ip4-lookup, ip4-local,
1030 * ip4-udp-lookup nodes to speedup vxlan packet forwarding. This node will
John Lo2b81eb82017-01-30 13:12:10 -05001031 * cause extra overhead to for non-vxlan packets which is kept at a minimum.
1032 *
1033 * @cliexpar
1034 * @parblock
1035 * Example of graph node before ip4-vxlan-bypass is enabled:
1036 * @cliexstart{show vlib graph ip4-vxlan-bypass}
1037 * Name Next Previous
1038 * ip4-vxlan-bypass error-drop [0]
1039 * vxlan4-input [1]
Eyal Bari8f576482018-05-07 10:13:44 +03001040 * ip4-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001041 * @cliexend
1042 *
1043 * Example of how to enable ip4-vxlan-bypass on an interface:
1044 * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0}
1045 *
1046 * Example of graph node after ip4-vxlan-bypass is enabled:
1047 * @cliexstart{show vlib graph ip4-vxlan-bypass}
Eyal Bari8f576482018-05-07 10:13:44 +03001048 * Name Next Previous
1049 * ip4-vxlan-bypass error-drop [0] ip4-input
1050 * vxlan4-input [1] ip4-input-no-checksum
1051 * ip4-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001052 * @cliexend
1053 *
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001054 * Example of how to display the feature enabled on an interface:
John Lo2b81eb82017-01-30 13:12:10 -05001055 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1056 * IP feature paths configured on GigabitEthernet2/0/0...
1057 * ...
1058 * ipv4 unicast:
1059 * ip4-vxlan-bypass
1060 * ip4-lookup
1061 * ...
1062 * @cliexend
1063 *
1064 * Example of how to disable ip4-vxlan-bypass on an interface:
1065 * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0 del}
1066 * @endparblock
1067?*/
1068/* *INDENT-OFF* */
1069VLIB_CLI_COMMAND (set_interface_ip_vxlan_bypass_command, static) = {
1070 .path = "set interface ip vxlan-bypass",
1071 .function = set_ip4_vxlan_bypass,
1072 .short_help = "set interface ip vxlan-bypass <interface> [del]",
1073};
1074/* *INDENT-ON* */
1075
1076static clib_error_t *
1077set_ip6_vxlan_bypass (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +03001078 unformat_input_t * input, vlib_cli_command_t * cmd)
John Lo2b81eb82017-01-30 13:12:10 -05001079{
1080 return set_ip_vxlan_bypass (1, input, cmd);
1081}
1082
1083/*?
Eyal Bari8f576482018-05-07 10:13:44 +03001084 * This command adds the 'ip6-vxlan-bypass' graph node for a given interface.
John Lo2b81eb82017-01-30 13:12:10 -05001085 * By adding the IPv6 vxlan-bypass graph node to an interface, the node checks
Eyal Bari8f576482018-05-07 10:13:44 +03001086 * for and validate input vxlan packet and bypass ip6-lookup, ip6-local,
1087 * ip6-udp-lookup nodes to speedup vxlan packet forwarding. This node will
John Lo2b81eb82017-01-30 13:12:10 -05001088 * cause extra overhead to for non-vxlan packets which is kept at a minimum.
1089 *
1090 * @cliexpar
1091 * @parblock
1092 * Example of graph node before ip6-vxlan-bypass is enabled:
1093 * @cliexstart{show vlib graph ip6-vxlan-bypass}
1094 * Name Next Previous
1095 * ip6-vxlan-bypass error-drop [0]
1096 * vxlan6-input [1]
Eyal Bari8f576482018-05-07 10:13:44 +03001097 * ip6-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001098 * @cliexend
1099 *
1100 * Example of how to enable ip6-vxlan-bypass on an interface:
1101 * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0}
1102 *
1103 * Example of graph node after ip6-vxlan-bypass is enabled:
1104 * @cliexstart{show vlib graph ip6-vxlan-bypass}
Eyal Bari8f576482018-05-07 10:13:44 +03001105 * Name Next Previous
1106 * ip6-vxlan-bypass error-drop [0] ip6-input
1107 * vxlan6-input [1] ip4-input-no-checksum
1108 * ip6-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001109 * @cliexend
1110 *
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001111 * Example of how to display the feature enabled on an interface:
John Lo2b81eb82017-01-30 13:12:10 -05001112 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1113 * IP feature paths configured on GigabitEthernet2/0/0...
1114 * ...
1115 * ipv6 unicast:
1116 * ip6-vxlan-bypass
1117 * ip6-lookup
1118 * ...
1119 * @cliexend
1120 *
1121 * Example of how to disable ip6-vxlan-bypass on an interface:
1122 * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0 del}
1123 * @endparblock
1124?*/
1125/* *INDENT-OFF* */
1126VLIB_CLI_COMMAND (set_interface_ip6_vxlan_bypass_command, static) = {
1127 .path = "set interface ip6 vxlan-bypass",
1128 .function = set_ip6_vxlan_bypass,
Paul Vinciguerra5fb22782019-11-07 17:20:48 -05001129 .short_help = "set interface ip6 vxlan-bypass <interface> [del]",
John Lo2b81eb82017-01-30 13:12:10 -05001130};
1131/* *INDENT-ON* */
1132
eyal bariaf86a482018-04-17 11:20:27 +03001133int
1134vnet_vxlan_add_del_rx_flow (u32 hw_if_index, u32 t_index, int is_add)
1135{
1136 vxlan_main_t *vxm = &vxlan_main;
1137 vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, t_index);
1138 vnet_main_t *vnm = vnet_get_main ();
1139 if (is_add)
1140 {
1141 if (t->flow_index == ~0)
1142 {
1143 vxlan_main_t *vxm = &vxlan_main;
1144 vnet_flow_t flow = {
1145 .actions =
Chenmin Sun1ec9fdb2019-12-05 01:41:35 +08001146 VNET_FLOW_ACTION_REDIRECT_TO_NODE | VNET_FLOW_ACTION_MARK |
1147 VNET_FLOW_ACTION_BUFFER_ADVANCE,
eyal bariaf86a482018-04-17 11:20:27 +03001148 .mark_flow_id = t->dev_instance + vxm->flow_id_start,
1149 .redirect_node_index = vxlan4_flow_input_node.index,
Chenmin Sun1ec9fdb2019-12-05 01:41:35 +08001150 .buffer_advance = sizeof (ethernet_header_t),
eyal bariaf86a482018-04-17 11:20:27 +03001151 .type = VNET_FLOW_TYPE_IP4_VXLAN,
1152 .ip4_vxlan = {
Chenmin Sun34bfa502020-07-27 17:40:17 +08001153 .protocol.prot = IP_PROTOCOL_UDP,
1154 .src_addr.addr = t->dst.ip4,
1155 .dst_addr.addr = t->src.ip4,
1156 .src_addr.mask.as_u32 = ~0,
1157 .dst_addr.mask.as_u32 = ~0,
1158 .dst_port.port = UDP_DST_PORT_vxlan,
1159 .dst_port.mask = 0xFF,
eyal bariaf86a482018-04-17 11:20:27 +03001160 .vni = t->vni,
1161 }
1162 ,
1163 };
1164 vnet_flow_add (vnm, &flow, &t->flow_index);
1165 }
1166 return vnet_flow_enable (vnm, t->flow_index, hw_if_index);
1167 }
1168 /* flow index is removed when the tunnel is deleted */
1169 return vnet_flow_disable (vnm, t->flow_index, hw_if_index);
1170}
1171
1172u32
1173vnet_vxlan_get_tunnel_index (u32 sw_if_index)
1174{
1175 vxlan_main_t *vxm = &vxlan_main;
1176
Eyal Baricd307742018-07-22 12:45:15 +03001177 if (sw_if_index >= vec_len (vxm->tunnel_index_by_sw_if_index))
eyal bariaf86a482018-04-17 11:20:27 +03001178 return ~0;
1179 return vxm->tunnel_index_by_sw_if_index[sw_if_index];
1180}
1181
1182static clib_error_t *
1183vxlan_offload_command_fn (vlib_main_t * vm,
1184 unformat_input_t * input, vlib_cli_command_t * cmd)
1185{
1186 unformat_input_t _line_input, *line_input = &_line_input;
1187
1188 /* Get a line of input. */
1189 if (!unformat_user (input, unformat_line_input, line_input))
1190 return 0;
1191
1192 vnet_main_t *vnm = vnet_get_main ();
1193 u32 rx_sw_if_index = ~0;
1194 u32 hw_if_index = ~0;
1195 int is_add = 1;
1196
1197 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1198 {
1199 if (unformat (line_input, "hw %U", unformat_vnet_hw_interface, vnm,
1200 &hw_if_index))
1201 continue;
1202 if (unformat (line_input, "rx %U", unformat_vnet_sw_interface, vnm,
1203 &rx_sw_if_index))
1204 continue;
1205 if (unformat (line_input, "del"))
1206 {
1207 is_add = 0;
1208 continue;
1209 }
1210 return clib_error_return (0, "unknown input `%U'",
1211 format_unformat_error, line_input);
1212 }
1213
1214 if (rx_sw_if_index == ~0)
1215 return clib_error_return (0, "missing rx interface");
1216 if (hw_if_index == ~0)
1217 return clib_error_return (0, "missing hw interface");
1218
1219 u32 t_index = vnet_vxlan_get_tunnel_index (rx_sw_if_index);;
1220 if (t_index == ~0)
1221 return clib_error_return (0, "%U is not a vxlan tunnel",
1222 format_vnet_sw_if_index_name, vnm,
1223 rx_sw_if_index);
1224
1225 vxlan_main_t *vxm = &vxlan_main;
1226 vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, t_index);
1227
1228 if (!ip46_address_is_ip4 (&t->dst))
1229 return clib_error_return (0, "currently only IPV4 tunnels are supported");
1230
1231 vnet_hw_interface_t *hw_if = vnet_get_hw_interface (vnm, hw_if_index);
1232 ip4_main_t *im = &ip4_main;
1233 u32 rx_fib_index =
1234 vec_elt (im->fib_index_by_sw_if_index, hw_if->sw_if_index);
1235
1236 if (t->encap_fib_index != rx_fib_index)
1237 return clib_error_return (0, "interface/tunnel fib mismatch");
1238
1239 if (vnet_vxlan_add_del_rx_flow (hw_if_index, t_index, is_add))
1240 return clib_error_return (0, "error %s flow",
1241 is_add ? "enabling" : "disabling");
1242
1243 return 0;
1244}
1245
1246/* *INDENT-OFF* */
1247VLIB_CLI_COMMAND (vxlan_offload_command, static) = {
1248 .path = "set flow-offload vxlan",
1249 .short_help =
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001250 "set flow-offload vxlan hw <interface-name> rx <tunnel-name> [del]",
eyal bariaf86a482018-04-17 11:20:27 +03001251 .function = vxlan_offload_command_fn,
1252};
1253/* *INDENT-ON* */
1254
Eyal Bari0fa56782018-06-04 12:25:05 +03001255#define VXLAN_HASH_NUM_BUCKETS (2 * 1024)
1256#define VXLAN_HASH_MEMORY_SIZE (1 << 20)
1257
Eyal Bari8f576482018-05-07 10:13:44 +03001258clib_error_t *
1259vxlan_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001260{
Eyal Bari8f576482018-05-07 10:13:44 +03001261 vxlan_main_t *vxm = &vxlan_main;
1262
1263 vxm->vnet_main = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001264 vxm->vlib_main = vm;
1265
eyal bariaf86a482018-04-17 11:20:27 +03001266 vnet_flow_get_range (vxm->vnet_main, "vxlan", 1024 * 1024,
1267 &vxm->flow_id_start);
1268
Jon Loeligere3034cd2019-01-03 12:56:02 -06001269 vxm->bm_ip4_bypass_enabled_by_sw_if = 0;
1270 vxm->bm_ip6_bypass_enabled_by_sw_if = 0;
1271
Chris Luke99cb3352016-04-26 10:49:53 -04001272 /* initialize the ip6 hash */
Eyal Baridd47eca2018-07-08 08:15:56 +03001273 clib_bihash_init_16_8 (&vxm->vxlan4_tunnel_by_key, "vxlan4",
1274 VXLAN_HASH_NUM_BUCKETS, VXLAN_HASH_MEMORY_SIZE);
1275 clib_bihash_init_24_8 (&vxm->vxlan6_tunnel_by_key, "vxlan6",
Eyal Bari0fa56782018-06-04 12:25:05 +03001276 VXLAN_HASH_NUM_BUCKETS, VXLAN_HASH_MEMORY_SIZE);
Nick Zavaritsky27518c22020-02-27 15:54:58 +00001277 vxm->vtep_table = vtep_table_create ();
Eyal Bari8f576482018-05-07 10:13:44 +03001278 vxm->mcast_shared = hash_create_mem (0,
1279 sizeof (ip46_address_t),
1280 sizeof (mcast_shared_t));
Chris Luke99cb3352016-04-26 10:49:53 -04001281
Eyal Bari8f576482018-05-07 10:13:44 +03001282 fib_node_register_type (FIB_NODE_TYPE_VXLAN_TUNNEL, &vxlan_vft);
John Loc42912d2016-11-07 18:30:47 -05001283
Ed Warnickecb9cada2015-12-08 15:45:58 -07001284 return 0;
1285}
1286
Eyal Bari8f576482018-05-07 10:13:44 +03001287VLIB_INIT_FUNCTION (vxlan_init);
Jon Loeliger3d460bd2018-02-01 16:36:12 -06001288
1289/*
Eyal Bari8f576482018-05-07 10:13:44 +03001290 * fd.io coding-style-patch-verification: ON
1291 *
Jon Loeliger3d460bd2018-02-01 16:36:12 -06001292 * Local Variables:
1293 * eval: (c-set-style "gnu")
1294 * End:
1295 */