blob: f670ee9c764f1207d4d97e76fd33296d0a50d8e4 [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
Artem Glazychev66593a62022-02-18 12:23:20 +070055static clib_error_t *
56vxlan_eth_set_max_frame_size (vnet_main_t *vnm, vnet_hw_interface_t *hw,
57 u32 frame_size)
58{
59 /* nothing for now */
60 return 0;
61}
62
Eyal Bari8f576482018-05-07 10:13:44 +030063static u8 *
64format_decap_next (u8 * s, va_list * args)
Hongjun Nibeb4bf72016-11-25 00:03:46 +080065{
66 u32 next_index = va_arg (*args, u32);
67
John Lo4478d8e2018-01-12 17:15:25 -050068 if (next_index == VXLAN_INPUT_NEXT_DROP)
69 return format (s, "drop");
70 else
71 return format (s, "index %d", next_index);
Hongjun Nibeb4bf72016-11-25 00:03:46 +080072 return s;
73}
74
Eyal Bari8f576482018-05-07 10:13:44 +030075u8 *
76format_vxlan_tunnel (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070077{
Eyal Bari8f576482018-05-07 10:13:44 +030078 vxlan_tunnel_t *t = va_arg (*args, vxlan_tunnel_t *);
Jon Loeliger3d460bd2018-02-01 16:36:12 -060079
80 s = format (s,
Artem Glazychev839dcc02020-12-01 02:39:21 +070081 "[%d] instance %d src %U dst %U src_port %d dst_port %d vni %d "
82 "fib-idx %d sw-if-idx %d ",
83 t->dev_instance, t->user_instance, format_ip46_address, &t->src,
84 IP46_TYPE_ANY, format_ip46_address, &t->dst, IP46_TYPE_ANY,
85 t->src_port, t->dst_port, t->vni, t->encap_fib_index,
86 t->sw_if_index);
John Lo56912c82016-12-08 16:10:02 -050087
John Lo4478d8e2018-01-12 17:15:25 -050088 s = format (s, "encap-dpo-idx %d ", t->next_dpo.dpoi_index);
John Lo56912c82016-12-08 16:10:02 -050089
John Lo4478d8e2018-01-12 17:15:25 -050090 if (PREDICT_FALSE (t->decap_next_index != VXLAN_INPUT_NEXT_L2_INPUT))
91 s = format (s, "decap-next-%U ", format_decap_next, t->decap_next_index);
92
93 if (PREDICT_FALSE (ip46_address_is_multicast (&t->dst)))
94 s = format (s, "mcast-sw-if-idx %d ", t->mcast_sw_if_index);
95
eyal bariaf86a482018-04-17 11:20:27 +030096 if (t->flow_index != ~0)
97 s = format (s, "flow-index %d [%U]", t->flow_index,
98 format_flow_enabled_hw, t->flow_index);
99
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100 return s;
101}
102
Eyal Bari8f576482018-05-07 10:13:44 +0300103static u8 *
104format_vxlan_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105{
106 u32 dev_instance = va_arg (*args, u32);
Eyal Bari8f576482018-05-07 10:13:44 +0300107 vxlan_main_t *vxm = &vxlan_main;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600108 vxlan_tunnel_t *t;
109
110 if (dev_instance == ~0)
Eyal Bari8f576482018-05-07 10:13:44 +0300111 return format (s, "<cached-unused>");
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600112
Eyal Bari8f576482018-05-07 10:13:44 +0300113 if (dev_instance >= vec_len (vxm->tunnels))
114 return format (s, "<improperly-referenced>");
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600115
Eyal Bari8f576482018-05-07 10:13:44 +0300116 t = pool_elt_at_index (vxm->tunnels, dev_instance);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600117
118 return format (s, "vxlan_tunnel%d", t->user_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119}
120
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100121static clib_error_t *
122vxlan_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
123{
Eyal Baria93ea422017-02-01 13:36:15 +0200124 u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
125 VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
126 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100127
128 return /* no error */ 0;
129}
130
Eyal Bari8f576482018-05-07 10:13:44 +0300131/* *INDENT-OFF* */
132VNET_DEVICE_CLASS (vxlan_device_class, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133 .name = "VXLAN",
134 .format_device_name = format_vxlan_name,
135 .format_tx_trace = format_vxlan_encap_trace,
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100136 .admin_up_down_function = vxlan_interface_admin_up_down,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137};
Eyal Bari8f576482018-05-07 10:13:44 +0300138/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139
Eyal Bari8f576482018-05-07 10:13:44 +0300140static u8 *
141format_vxlan_header_with_length (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142{
143 u32 dev_instance = va_arg (*args, u32);
144 s = format (s, "unimplemented dev %u", dev_instance);
145 return s;
146}
147
Eyal Bari8f576482018-05-07 10:13:44 +0300148/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149VNET_HW_INTERFACE_CLASS (vxlan_hw_class) = {
150 .name = "VXLAN",
151 .format_header = format_vxlan_header_with_length,
Neale Rannsb80c5362016-10-08 13:03:40 +0100152 .build_rewrite = default_build_rewrite,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153};
Eyal Bari8f576482018-05-07 10:13:44 +0300154/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155
Eyal Baric5b13602016-11-24 19:42:43 +0200156static void
Eyal Bari8f576482018-05-07 10:13:44 +0300157vxlan_tunnel_restack_dpo (vxlan_tunnel_t * t)
Eyal Baric5b13602016-11-24 19:42:43 +0200158{
Eyal Bari8f576482018-05-07 10:13:44 +0300159 u8 is_ip4 = ip46_address_is_ip4 (&t->dst);
Eyal Bari99ed4862018-04-25 13:50:57 +0300160 dpo_id_t dpo = DPO_INVALID;
161 fib_forward_chain_type_t forw_type = is_ip4 ?
Eyal Bari8f576482018-05-07 10:13:44 +0300162 FIB_FORW_CHAIN_TYPE_UNICAST_IP4 : FIB_FORW_CHAIN_TYPE_UNICAST_IP6;
Eyal Baric5b13602016-11-24 19:42:43 +0200163
Eyal Bari99ed4862018-04-25 13:50:57 +0300164 fib_entry_contribute_forwarding (t->fib_entry_index, forw_type, &dpo);
165
166 /* vxlan uses the payload hash as the udp source port
167 * hence the packet's hash is unknown
168 * skip single bucket load balance dpo's */
169 while (DPO_LOAD_BALANCE == dpo.dpoi_type)
170 {
Neale Ranns1b5ca982020-12-16 13:06:58 +0000171 const load_balance_t *lb;
172 const dpo_id_t *choice;
173
174 lb = load_balance_get (dpo.dpoi_index);
Eyal Bari99ed4862018-04-25 13:50:57 +0300175 if (lb->lb_n_buckets > 1)
Eyal Bari8f576482018-05-07 10:13:44 +0300176 break;
Eyal Bari99ed4862018-04-25 13:50:57 +0300177
Neale Ranns1b5ca982020-12-16 13:06:58 +0000178 choice = load_balance_get_bucket_i (lb, 0);
179
180 if (DPO_RECEIVE == choice->dpoi_type)
181 dpo_copy (&dpo, drop_dpo_get (choice->dpoi_proto));
182 else
183 dpo_copy (&dpo, choice);
Eyal Bari99ed4862018-04-25 13:50:57 +0300184 }
185
186 u32 encap_index = is_ip4 ?
Eyal Bari8f576482018-05-07 10:13:44 +0300187 vxlan4_encap_node.index : vxlan6_encap_node.index;
Eyal Bari99ed4862018-04-25 13:50:57 +0300188 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
Eyal Bari8f576482018-05-07 10:13:44 +0300189 dpo_reset (&dpo);
Eyal Baric5b13602016-11-24 19:42:43 +0200190}
John Loc42912d2016-11-07 18:30:47 -0500191
192static vxlan_tunnel_t *
Eyal Bari8f576482018-05-07 10:13:44 +0300193vxlan_tunnel_from_fib_node (fib_node_t * node)
John Loc42912d2016-11-07 18:30:47 -0500194{
Eyal Bari8f576482018-05-07 10:13:44 +0300195 ASSERT (FIB_NODE_TYPE_VXLAN_TUNNEL == node->fn_type);
196 return ((vxlan_tunnel_t *) (((char *) node) -
197 STRUCT_OFFSET_OF (vxlan_tunnel_t, node)));
John Loc42912d2016-11-07 18:30:47 -0500198}
199
200/**
201 * Function definition to backwalk a FIB node -
202 * Here we will restack the new dpo of VXLAN DIP to encap node.
203 */
204static fib_node_back_walk_rc_t
Eyal Bari8f576482018-05-07 10:13:44 +0300205vxlan_tunnel_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
John Loc42912d2016-11-07 18:30:47 -0500206{
Eyal Bari8f576482018-05-07 10:13:44 +0300207 vxlan_tunnel_restack_dpo (vxlan_tunnel_from_fib_node (node));
208 return (FIB_NODE_BACK_WALK_CONTINUE);
John Loc42912d2016-11-07 18:30:47 -0500209}
210
211/**
212 * Function definition to get a FIB node from its index
213 */
Eyal Bari8f576482018-05-07 10:13:44 +0300214static fib_node_t *
John Loc42912d2016-11-07 18:30:47 -0500215vxlan_tunnel_fib_node_get (fib_node_index_t index)
216{
Eyal Bari8f576482018-05-07 10:13:44 +0300217 vxlan_tunnel_t *t;
218 vxlan_main_t *vxm = &vxlan_main;
John Loc42912d2016-11-07 18:30:47 -0500219
Eyal Bari8f576482018-05-07 10:13:44 +0300220 t = pool_elt_at_index (vxm->tunnels, index);
John Loc42912d2016-11-07 18:30:47 -0500221
Eyal Bari8f576482018-05-07 10:13:44 +0300222 return (&t->node);
John Loc42912d2016-11-07 18:30:47 -0500223}
224
225/**
226 * Function definition to inform the FIB node that its last lock has gone.
227 */
228static void
Eyal Bari8f576482018-05-07 10:13:44 +0300229vxlan_tunnel_last_lock_gone (fib_node_t * node)
John Loc42912d2016-11-07 18:30:47 -0500230{
Eyal Bari8f576482018-05-07 10:13:44 +0300231 /*
232 * The VXLAN tunnel is a root of the graph. As such
233 * it never has children and thus is never locked.
234 */
235 ASSERT (0);
John Loc42912d2016-11-07 18:30:47 -0500236}
237
238/*
239 * Virtual function table registered by VXLAN tunnels
240 * for participation in the FIB object graph.
241 */
242const static fib_node_vft_t vxlan_vft = {
Eyal Bari8f576482018-05-07 10:13:44 +0300243 .fnv_get = vxlan_tunnel_fib_node_get,
244 .fnv_last_lock = vxlan_tunnel_last_lock_gone,
245 .fnv_back_walk = vxlan_tunnel_back_walk,
John Loc42912d2016-11-07 18:30:47 -0500246};
247
Artem Glazychev839dcc02020-12-01 02:39:21 +0700248#define foreach_copy_field \
249 _ (vni) \
250 _ (mcast_sw_if_index) \
251 _ (encap_fib_index) \
252 _ (decap_next_index) \
253 _ (src) \
254 _ (dst) \
255 _ (src_port) \
Ed Warnickecb8b4c92022-02-18 19:26:35 +0000256 _ (dst_port)
Chris Luke99cb3352016-04-26 10:49:53 -0400257
Eyal Bari554075a2018-02-13 15:17:17 +0200258static void
Eyal Baria93ea422017-02-01 13:36:15 +0200259vxlan_rewrite (vxlan_tunnel_t * t, bool is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260{
Eyal Bari8f576482018-05-07 10:13:44 +0300261 union
262 {
eyal bari82e21d72018-04-26 13:14:55 +0300263 ip4_vxlan_header_t h4;
264 ip6_vxlan_header_t h6;
Matthew Smithec8aea12018-05-02 09:55:01 -0500265 } h;
eyal bari82e21d72018-04-26 13:14:55 +0300266 int len = is_ip6 ? sizeof h.h6 : sizeof h.h4;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700267
Eyal Bari8f576482018-05-07 10:13:44 +0300268 udp_header_t *udp;
269 vxlan_header_t *vxlan;
Eyal Baria93ea422017-02-01 13:36:15 +0200270 /* Fixed portion of the (outer) ip header */
Matthew Smithec8aea12018-05-02 09:55:01 -0500271
Dave Barachb7b92992018-10-17 10:38:51 -0400272 clib_memset (&h, 0, sizeof (h));
Eyal Bari8f576482018-05-07 10:13:44 +0300273 if (!is_ip6)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800274 {
Eyal Bari8f576482018-05-07 10:13:44 +0300275 ip4_header_t *ip = &h.h4.ip4;
eyal bari82e21d72018-04-26 13:14:55 +0300276 udp = &h.h4.udp, vxlan = &h.h4.vxlan;
Eyal Baria93ea422017-02-01 13:36:15 +0200277 ip->ip_version_and_header_length = 0x45;
278 ip->ttl = 254;
279 ip->protocol = IP_PROTOCOL_UDP;
Eyal Bari8f576482018-05-07 10:13:44 +0300280
Eyal Baria93ea422017-02-01 13:36:15 +0200281 ip->src_address = t->src.ip4;
282 ip->dst_address = t->dst.ip4;
283
284 /* we fix up the ip4 header length and checksum after-the-fact */
285 ip->checksum = ip4_header_checksum (ip);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800286 }
287 else
288 {
Eyal Bari8f576482018-05-07 10:13:44 +0300289 ip6_header_t *ip = &h.h6.ip6;
eyal bari82e21d72018-04-26 13:14:55 +0300290 udp = &h.h6.udp, vxlan = &h.h6.vxlan;
Eyal Bari8f576482018-05-07 10:13:44 +0300291 ip->ip_version_traffic_class_and_flow_label =
292 clib_host_to_net_u32 (6 << 28);
Eyal Baria93ea422017-02-01 13:36:15 +0200293 ip->hop_limit = 255;
294 ip->protocol = IP_PROTOCOL_UDP;
Eyal Bari8f576482018-05-07 10:13:44 +0300295
Eyal Baria93ea422017-02-01 13:36:15 +0200296 ip->src_address = t->src.ip6;
297 ip->dst_address = t->dst.ip6;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800298 }
299
Eyal Baria93ea422017-02-01 13:36:15 +0200300 /* UDP header, randomize src port on something, maybe? */
Artem Glazychev839dcc02020-12-01 02:39:21 +0700301 udp->src_port = clib_host_to_net_u16 (t->src_port);
302 udp->dst_port = clib_host_to_net_u16 (t->dst_port);
Eyal Baria93ea422017-02-01 13:36:15 +0200303
304 /* VXLAN header */
Eyal Bari8f576482018-05-07 10:13:44 +0300305 vnet_set_vni_and_flags (vxlan, t->vni);
eyal bari82e21d72018-04-26 13:14:55 +0300306 vnet_rewrite_set_data (*t, &h, len);
Eyal Baria93ea422017-02-01 13:36:15 +0200307}
308
309static bool
Eyal Bari8f576482018-05-07 10:13:44 +0300310vxlan_decap_next_is_valid (vxlan_main_t * vxm, u32 is_ip6,
311 u32 decap_next_index)
Eyal Baria93ea422017-02-01 13:36:15 +0200312{
Eyal Bari8f576482018-05-07 10:13:44 +0300313 vlib_main_t *vm = vxm->vlib_main;
314 u32 input_idx = (!is_ip6) ?
315 vxlan4_input_node.index : vxlan6_input_node.index;
Eyal Baria93ea422017-02-01 13:36:15 +0200316 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, input_idx);
317
318 return decap_next_index < r->n_next_nodes;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800319}
320
Eyal Bari8f576482018-05-07 10:13:44 +0300321/* *INDENT-OFF* */
322typedef CLIB_PACKED(union
323{
324 struct
325 {
Neale Ranns32e1c012016-11-22 17:07:28 +0000326 fib_node_index_t mfib_entry_index;
Eyal Bari0ded8512017-01-19 17:01:09 +0200327 adj_index_t mcast_adj_index;
328 };
329 u64 as_u64;
330}) mcast_shared_t;
Eyal Bari8f576482018-05-07 10:13:44 +0300331/* *INDENT-ON* */
Eyal Bari0ded8512017-01-19 17:01:09 +0200332
333static inline mcast_shared_t
Eyal Bari8f576482018-05-07 10:13:44 +0300334mcast_shared_get (ip46_address_t * ip)
Eyal Barifff67c82016-12-21 12:45:47 +0200335{
Eyal Bari8f576482018-05-07 10:13:44 +0300336 ASSERT (ip46_address_is_multicast (ip));
337 uword *p = hash_get_mem (vxlan_main.mcast_shared, ip);
Dave Barach47d41ad2020-02-17 09:13:26 -0500338 ALWAYS_ASSERT (p);
Eyal Bari8f576482018-05-07 10:13:44 +0300339 mcast_shared_t ret = {.as_u64 = *p };
340 return ret;
Eyal Barifff67c82016-12-21 12:45:47 +0200341}
342
Eyal Bari0ded8512017-01-19 17:01:09 +0200343static inline void
Eyal Bari8f576482018-05-07 10:13:44 +0300344mcast_shared_add (ip46_address_t * dst, fib_node_index_t mfei, adj_index_t ai)
Neale Ranns32e1c012016-11-22 17:07:28 +0000345{
Eyal Bari8f576482018-05-07 10:13:44 +0300346 mcast_shared_t new_ep = {
347 .mcast_adj_index = ai,
348 .mfib_entry_index = mfei,
349 };
Neale Ranns32e1c012016-11-22 17:07:28 +0000350
Eyal Bari8f576482018-05-07 10:13:44 +0300351 hash_set_mem_alloc (&vxlan_main.mcast_shared, dst, new_ep.as_u64);
Neale Ranns32e1c012016-11-22 17:07:28 +0000352}
353
354static inline void
Eyal Bari8f576482018-05-07 10:13:44 +0300355mcast_shared_remove (ip46_address_t * dst)
Neale Ranns32e1c012016-11-22 17:07:28 +0000356{
Eyal Bari8f576482018-05-07 10:13:44 +0300357 mcast_shared_t ep = mcast_shared_get (dst);
Neale Ranns32e1c012016-11-22 17:07:28 +0000358
Eyal Bari8f576482018-05-07 10:13:44 +0300359 adj_unlock (ep.mcast_adj_index);
360 mfib_table_entry_delete_index (ep.mfib_entry_index, MFIB_SOURCE_VXLAN);
Neale Ranns32e1c012016-11-22 17:07:28 +0000361
Eyal Bari8f576482018-05-07 10:13:44 +0300362 hash_unset_mem_free (&vxlan_main.mcast_shared, dst);
Eyal Barifff67c82016-12-21 12:45:47 +0200363}
364
Eyal Bari8f576482018-05-07 10:13:44 +0300365int vnet_vxlan_add_del_tunnel
366 (vnet_vxlan_add_del_tunnel_args_t * a, u32 * sw_if_indexp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367{
Eyal Bari8f576482018-05-07 10:13:44 +0300368 vxlan_main_t *vxm = &vxlan_main;
Eyal Bari8f576482018-05-07 10:13:44 +0300369 vnet_main_t *vnm = vxm->vnet_main;
Eyal Bariefd9cf32018-10-02 12:23:06 +0300370 vxlan_decap_info_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371 u32 sw_if_index = ~0;
Chris Luke99cb3352016-04-26 10:49:53 -0400372 vxlan4_tunnel_key_t key4;
373 vxlan6_tunnel_key_t key6;
John Loc42912d2016-11-07 18:30:47 -0500374 u32 is_ip6 = a->is_ip6;
Ed Warnickea4b05412021-01-18 11:56:22 -0600375 vlib_main_t *vm = vlib_get_main ();
376 u8 hw_addr[6];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377
Artem Glazychev839dcc02020-12-01 02:39:21 +0700378 /* Set udp-ports */
379 if (a->src_port == 0)
380 a->src_port = is_ip6 ? UDP_DST_PORT_vxlan6 : UDP_DST_PORT_vxlan;
381
382 if (a->dst_port == 0)
383 a->dst_port = is_ip6 ? UDP_DST_PORT_vxlan6 : UDP_DST_PORT_vxlan;
384
Eyal Baridd47eca2018-07-08 08:15:56 +0300385 int not_found;
John Lo56912c82016-12-08 16:10:02 -0500386 if (!is_ip6)
387 {
Eyal Bariefd9cf32018-10-02 12:23:06 +0300388 /* ip4 mcast is indexed by mcast addr only */
389 key4.key[0] = ip46_address_is_multicast (&a->dst) ?
Artem Glazychev839dcc02020-12-01 02:39:21 +0700390 a->dst.ip4.as_u32 :
391 a->dst.ip4.as_u32 | (((u64) a->src.ip4.as_u32) << 32);
392 key4.key[1] = ((u64) clib_host_to_net_u16 (a->src_port) << 48) |
393 (((u64) a->encap_fib_index) << 32) |
394 clib_host_to_net_u32 (a->vni << 8);
Eyal Baridd47eca2018-07-08 08:15:56 +0300395 not_found =
396 clib_bihash_search_inline_16_8 (&vxm->vxlan4_tunnel_by_key, &key4);
Eyal Bariefd9cf32018-10-02 12:23:06 +0300397 p = (void *) &key4.value;
Eyal Bari8f576482018-05-07 10:13:44 +0300398 }
399 else
John Lo56912c82016-12-08 16:10:02 -0500400 {
Eyal Bari0fa56782018-06-04 12:25:05 +0300401 key6.key[0] = a->dst.ip6.as_u64[0];
402 key6.key[1] = a->dst.ip6.as_u64[1];
Artem Glazychev839dcc02020-12-01 02:39:21 +0700403 key6.key[2] = (((u64) clib_host_to_net_u16 (a->src_port) << 48) |
404 ((u64) a->encap_fib_index) << 32) |
405 clib_host_to_net_u32 (a->vni << 8);
Eyal Baridd47eca2018-07-08 08:15:56 +0300406 not_found =
407 clib_bihash_search_inline_24_8 (&vxm->vxlan6_tunnel_by_key, &key6);
Eyal Bariefd9cf32018-10-02 12:23:06 +0300408 p = (void *) &key6.value;
John Lo56912c82016-12-08 16:10:02 -0500409 }
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600410
Eyal Baridd47eca2018-07-08 08:15:56 +0300411 if (not_found)
412 p = 0;
413
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414 if (a->is_add)
415 {
Eyal Bari8f576482018-05-07 10:13:44 +0300416 l2input_main_t *l2im = &l2input_main;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600417 u32 dev_instance; /* real dev instance tunnel index */
418 u32 user_instance; /* request and actual instance number */
John Loc42912d2016-11-07 18:30:47 -0500419
Ed Warnickecb9cada2015-12-08 15:45:58 -0700420 /* adding a tunnel: tunnel must not already exist */
421 if (p)
Eyal Bari8f576482018-05-07 10:13:44 +0300422 return VNET_API_ERROR_TUNNEL_EXIST;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800424 /*if not set explicitly, default to l2 */
Eyal Bari8f576482018-05-07 10:13:44 +0300425 if (a->decap_next_index == ~0)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800426 a->decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
Eyal Bari8f576482018-05-07 10:13:44 +0300427 if (!vxlan_decap_next_is_valid (vxm, is_ip6, a->decap_next_index))
428 return VNET_API_ERROR_INVALID_DECAP_NEXT;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800429
Eyal Bariefd9cf32018-10-02 12:23:06 +0300430 vxlan_tunnel_t *t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431 pool_get_aligned (vxm->tunnels, t, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400432 clib_memset (t, 0, sizeof (*t));
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600433 dev_instance = t - vxm->tunnels;
434
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435 /* copy from arg structure */
436#define _(x) t->x = a->x;
437 foreach_copy_field;
438#undef _
Chris Luke99cb3352016-04-26 10:49:53 -0400439
Eyal Bari554075a2018-02-13 15:17:17 +0200440 vxlan_rewrite (t, is_ip6);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600441 /*
442 * Reconcile the real dev_instance and a possible requested instance.
443 */
444 user_instance = a->instance;
Eyal Bari8f576482018-05-07 10:13:44 +0300445 if (user_instance == ~0)
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600446 user_instance = dev_instance;
447 if (hash_get (vxm->instance_used, user_instance))
448 {
449 pool_put (vxm->tunnels, t);
450 return VNET_API_ERROR_INSTANCE_IN_USE;
451 }
Ed Warnickea4b05412021-01-18 11:56:22 -0600452
Ray Kinsella15cb3da2021-01-28 17:09:45 +0000453 hash_set (vxm->instance_used, user_instance, 1);
454
455 t->dev_instance = dev_instance; /* actual */
456 t->user_instance = user_instance; /* name */
457 t->flow_index = ~0;
458
Ed Warnickecb8b4c92022-02-18 19:26:35 +0000459 if (a->is_l3)
Nathan Skrzypczak3e384222021-04-21 19:56:34 +0200460 t->hw_if_index =
461 vnet_register_interface (vnm, vxlan_device_class.index, dev_instance,
462 vxlan_hw_class.index, dev_instance);
463 else
Ed Warnickea4b05412021-01-18 11:56:22 -0600464 {
Damjan Marion5c954c42022-01-06 20:36:14 +0100465 vnet_eth_interface_registration_t eir = {};
Nathan Skrzypczak3e384222021-04-21 19:56:34 +0200466 f64 now = vlib_time_now (vm);
467 u32 rnd;
468 rnd = (u32) (now * 1e6);
469 rnd = random_u32 (&rnd);
470 memcpy (hw_addr + 2, &rnd, sizeof (rnd));
471 hw_addr[0] = 2;
472 hw_addr[1] = 0xfe;
Ray Kinsella15cb3da2021-01-28 17:09:45 +0000473
Damjan Marion5c954c42022-01-06 20:36:14 +0100474 eir.dev_class_index = vxlan_device_class.index;
475 eir.dev_instance = dev_instance;
476 eir.address = hw_addr;
477 eir.cb.flag_change = vxlan_eth_flag_change;
Artem Glazychev66593a62022-02-18 12:23:20 +0700478 eir.cb.set_max_frame_size = vxlan_eth_set_max_frame_size;
Damjan Marion5c954c42022-01-06 20:36:14 +0100479 t->hw_if_index = vnet_eth_register_interface (vnm, &eir);
Ed Warnickea4b05412021-01-18 11:56:22 -0600480 }
481
Eyal Bari8f576482018-05-07 10:13:44 +0300482 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, t->hw_if_index);
John Loe5453d02018-01-23 19:21:34 -0500483
484 /* Set vxlan tunnel output node */
485 u32 encap_index = !is_ip6 ?
Eyal Bari8f576482018-05-07 10:13:44 +0300486 vxlan4_encap_node.index : vxlan6_encap_node.index;
Eyal Bari554075a2018-02-13 15:17:17 +0200487 vnet_set_interface_output_node (vnm, t->hw_if_index, encap_index);
John Loe5453d02018-01-23 19:21:34 -0500488
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489 t->sw_if_index = sw_if_index = hi->sw_if_index;
John Loe5453d02018-01-23 19:21:34 -0500490
Eyal Bariefd9cf32018-10-02 12:23:06 +0300491 /* copy the key */
492 int add_failed;
493 if (is_ip6)
494 {
495 key6.value = (u64) dev_instance;
496 add_failed = clib_bihash_add_del_24_8 (&vxm->vxlan6_tunnel_by_key,
497 &key6, 1 /*add */ );
498 }
499 else
500 {
501 vxlan_decap_info_t di = {.sw_if_index = t->sw_if_index, };
502 if (ip46_address_is_multicast (&t->dst))
503 di.local_ip = t->src.ip4;
504 else
505 di.next_index = t->decap_next_index;
506 key4.value = di.as_u64;
507 add_failed = clib_bihash_add_del_16_8 (&vxm->vxlan4_tunnel_by_key,
508 &key4, 1 /*add */ );
509 }
510
511 if (add_failed)
512 {
Ed Warnickecb8b4c92022-02-18 19:26:35 +0000513 if (a->is_l3)
Nathan Skrzypczak3e384222021-04-21 19:56:34 +0200514 vnet_delete_hw_interface (vnm, t->hw_if_index);
515 else
516 ethernet_delete_interface (vnm, t->hw_if_index);
Eyal Bariefd9cf32018-10-02 12:23:06 +0300517 hash_unset (vxm->instance_used, t->user_instance);
518 pool_put (vxm->tunnels, t);
519 return VNET_API_ERROR_INVALID_REGISTRATION;
520 }
521
Eyal Bari8f576482018-05-07 10:13:44 +0300522 vec_validate_init_empty (vxm->tunnel_index_by_sw_if_index, sw_if_index,
523 ~0);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600524 vxm->tunnel_index_by_sw_if_index[sw_if_index] = dev_instance;
Dave Wallace60231f32015-12-17 21:04:30 -0500525
John Loc42912d2016-11-07 18:30:47 -0500526 /* setup l2 input config with l2 feature and bd 0 to drop packet */
527 vec_validate (l2im->configs, sw_if_index);
528 l2im->configs[sw_if_index].feature_bitmap = L2INPUT_FEAT_DROP;
529 l2im->configs[sw_if_index].bd_index = 0;
John Loe5453d02018-01-23 19:21:34 -0500530
Eyal Bari8f576482018-05-07 10:13:44 +0300531 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
Eyal Bari3212c572017-03-06 11:47:50 +0200532 si->flags &= ~VNET_SW_INTERFACE_FLAG_HIDDEN;
John Loe5453d02018-01-23 19:21:34 -0500533 vnet_sw_interface_set_flags (vnm, sw_if_index,
Eyal Bari8f576482018-05-07 10:13:44 +0300534 VNET_SW_INTERFACE_FLAG_ADMIN_UP);
Eyal Bari3212c572017-03-06 11:47:50 +0200535
Eyal Bari8f576482018-05-07 10:13:44 +0300536 fib_node_init (&t->node, FIB_NODE_TYPE_VXLAN_TUNNEL);
Eyal Baric5b13602016-11-24 19:42:43 +0200537 fib_prefix_t tun_dst_pfx;
Eyal Baric5b13602016-11-24 19:42:43 +0200538 vnet_flood_class_t flood_class = VNET_FLOOD_CLASS_TUNNEL_NORMAL;
John Loc42912d2016-11-07 18:30:47 -0500539
Eyal Bari8f576482018-05-07 10:13:44 +0300540 fib_prefix_from_ip46_addr (&t->dst, &tun_dst_pfx);
541 if (!ip46_address_is_multicast (&t->dst))
542 {
543 /* Unicast tunnel -
544 * source the FIB entry for the tunnel's destination
545 * and become a child thereof. The tunnel will then get poked
546 * when the forwarding for the entry updates, and the tunnel can
547 * re-stack accordingly
548 */
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000549 vtep_addr_ref (&vxm->vtep_table, t->encap_fib_index, &t->src);
Neale Ranns1f50bf82019-07-16 15:28:52 +0000550 t->fib_entry_index = fib_entry_track (t->encap_fib_index,
551 &tun_dst_pfx,
552 FIB_NODE_TYPE_VXLAN_TUNNEL,
553 dev_instance,
554 &t->sibling_index);
Eyal Bari8f576482018-05-07 10:13:44 +0300555 vxlan_tunnel_restack_dpo (t);
556 }
Eyal Barifff67c82016-12-21 12:45:47 +0200557 else
Eyal Bari8f576482018-05-07 10:13:44 +0300558 {
559 /* Multicast tunnel -
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700560 * as the same mcast group can be used for multiple mcast tunnels
561 * with different VNIs, create the output fib adjacency only if
John Lo56912c82016-12-08 16:10:02 -0500562 * it does not already exist
563 */
Eyal Bari8f576482018-05-07 10:13:44 +0300564 fib_protocol_t fp = fib_ip_proto (is_ip6);
Eyal Baric5b13602016-11-24 19:42:43 +0200565
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000566 if (vtep_addr_ref (&vxm->vtep_table,
567 t->encap_fib_index, &t->dst) == 1)
Eyal Bari8f576482018-05-07 10:13:44 +0300568 {
569 fib_node_index_t mfei;
570 adj_index_t ai;
571 fib_route_path_t path = {
572 .frp_proto = fib_proto_to_dpo (fp),
573 .frp_addr = zero_addr,
574 .frp_sw_if_index = 0xffffffff,
575 .frp_fib_index = ~0,
Neale Ranns097fa662018-05-01 05:17:55 -0700576 .frp_weight = 1,
Eyal Bari8f576482018-05-07 10:13:44 +0300577 .frp_flags = FIB_ROUTE_PATH_LOCAL,
Neale Ranns097fa662018-05-01 05:17:55 -0700578 .frp_mitf_flags = MFIB_ITF_FLAG_FORWARD,
Eyal Bari8f576482018-05-07 10:13:44 +0300579 };
580 const mfib_prefix_t mpfx = {
581 .fp_proto = fp,
582 .fp_len = (is_ip6 ? 128 : 32),
583 .fp_grp_addr = tun_dst_pfx.fp_addr,
584 };
Eyal Barifff67c82016-12-21 12:45:47 +0200585
Eyal Bari8f576482018-05-07 10:13:44 +0300586 /*
587 * Setup the (*,G) to receive traffic on the mcast group
588 * - the forwarding interface is for-us
589 * - the accepting interface is that from the API
590 */
Paul Atkins8e2b1b12021-10-12 14:32:11 +0100591 mfib_table_entry_path_update (t->encap_fib_index, &mpfx,
592 MFIB_SOURCE_VXLAN,
593 MFIB_ENTRY_FLAG_NONE, &path);
Neale Ranns32e1c012016-11-22 17:07:28 +0000594
Eyal Bari8f576482018-05-07 10:13:44 +0300595 path.frp_sw_if_index = a->mcast_sw_if_index;
596 path.frp_flags = FIB_ROUTE_PATH_FLAG_NONE;
Neale Ranns097fa662018-05-01 05:17:55 -0700597 path.frp_mitf_flags = MFIB_ITF_FLAG_ACCEPT;
Paul Atkins8e2b1b12021-10-12 14:32:11 +0100598 mfei = mfib_table_entry_path_update (
599 t->encap_fib_index, &mpfx, MFIB_SOURCE_VXLAN,
600 MFIB_ENTRY_FLAG_NONE, &path);
Neale Ranns32e1c012016-11-22 17:07:28 +0000601
Eyal Bari8f576482018-05-07 10:13:44 +0300602 /*
603 * Create the mcast adjacency to send traffic to the group
604 */
605 ai = adj_mcast_add_or_lock (fp,
606 fib_proto_to_link (fp),
607 a->mcast_sw_if_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000608
Eyal Bari8f576482018-05-07 10:13:44 +0300609 /*
610 * create a new end-point
611 */
612 mcast_shared_add (&t->dst, mfei, ai);
613 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000614
Eyal Bari8f576482018-05-07 10:13:44 +0300615 dpo_id_t dpo = DPO_INVALID;
616 mcast_shared_t ep = mcast_shared_get (&t->dst);
Neale Ranns32e1c012016-11-22 17:07:28 +0000617
Eyal Bari8f576482018-05-07 10:13:44 +0300618 /* Stack shared mcast dst mac addr rewrite on encap */
619 dpo_set (&dpo, DPO_ADJACENCY_MCAST,
620 fib_proto_to_dpo (fp), ep.mcast_adj_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000621
Eyal Bari8f576482018-05-07 10:13:44 +0300622 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
623 dpo_reset (&dpo);
Eyal Barifff67c82016-12-21 12:45:47 +0200624 flood_class = VNET_FLOOD_CLASS_TUNNEL_MASTER;
John Lo56912c82016-12-08 16:10:02 -0500625 }
626
Eyal Bari8f576482018-05-07 10:13:44 +0300627 vnet_get_sw_interface (vnet_get_main (), sw_if_index)->flood_class =
628 flood_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700629 }
630 else
631 {
632 /* deleting a tunnel: tunnel must exist */
John Lo37682e12016-11-30 12:51:39 -0500633 if (!p)
Eyal Bari8f576482018-05-07 10:13:44 +0300634 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700635
Eyal Barif8d5e212018-10-14 10:54:32 +0300636 u32 instance = is_ip6 ? key6.value :
637 vxm->tunnel_index_by_sw_if_index[p->sw_if_index];
Eyal Bariefd9cf32018-10-02 12:23:06 +0300638 vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700639
Eyal Baribc799c92017-04-06 03:26:59 +0300640 sw_if_index = t->sw_if_index;
Eyal Bari8f576482018-05-07 10:13:44 +0300641 vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700642
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600643 vxm->tunnel_index_by_sw_if_index[sw_if_index] = ~0;
Dave Wallace60231f32015-12-17 21:04:30 -0500644
John Loc42912d2016-11-07 18:30:47 -0500645 if (!is_ip6)
Eyal Baridd47eca2018-07-08 08:15:56 +0300646 clib_bihash_add_del_16_8 (&vxm->vxlan4_tunnel_by_key, &key4,
647 0 /*del */ );
Chris Luke99cb3352016-04-26 10:49:53 -0400648 else
Eyal Baridd47eca2018-07-08 08:15:56 +0300649 clib_bihash_add_del_24_8 (&vxm->vxlan6_tunnel_by_key, &key6,
Eyal Bari0fa56782018-06-04 12:25:05 +0300650 0 /*del */ );
Eyal Barifff67c82016-12-21 12:45:47 +0200651
Eyal Bari8f576482018-05-07 10:13:44 +0300652 if (!ip46_address_is_multicast (&t->dst))
653 {
eyal bariaf86a482018-04-17 11:20:27 +0300654 if (t->flow_index != ~0)
655 vnet_flow_del (vnm, t->flow_index);
656
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000657 vtep_addr_unref (&vxm->vtep_table, t->encap_fib_index, &t->src);
Neale Ranns1f50bf82019-07-16 15:28:52 +0000658 fib_entry_untrack (t->fib_entry_index, t->sibling_index);
Eyal Bari8f576482018-05-07 10:13:44 +0300659 }
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000660 else if (vtep_addr_unref (&vxm->vtep_table,
661 t->encap_fib_index, &t->dst) == 0)
Eyal Bari8f576482018-05-07 10:13:44 +0300662 {
663 mcast_shared_remove (&t->dst);
664 }
Eyal Barifff67c82016-12-21 12:45:47 +0200665
Ed Warnickecb8b4c92022-02-18 19:26:35 +0000666 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, t->hw_if_index);
667 if (hw->dev_class_index == vxlan_device_class.index)
Nathan Skrzypczak3e384222021-04-21 19:56:34 +0200668 vnet_delete_hw_interface (vnm, t->hw_if_index);
669 else
670 ethernet_delete_interface (vnm, t->hw_if_index);
Jon Loeliger25ef2b52018-02-23 17:02:41 -0600671 hash_unset (vxm->instance_used, t->user_instance);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600672
Eyal Bari8f576482018-05-07 10:13:44 +0300673 fib_node_deinit (&t->node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700674 pool_put (vxm->tunnels, t);
675 }
676
677 if (sw_if_indexp)
Eyal Bari8f576482018-05-07 10:13:44 +0300678 *sw_if_indexp = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679
Jakub Grajciardf3ca232019-06-04 13:16:42 +0200680 if (a->is_add)
681 {
682 /* register udp ports */
Artem Glazychev839dcc02020-12-01 02:39:21 +0700683 if (!is_ip6 && !udp_is_valid_dst_port (a->src_port, 1))
684 udp_register_dst_port (vxm->vlib_main, a->src_port,
Jakub Grajciardf3ca232019-06-04 13:16:42 +0200685 vxlan4_input_node.index, 1);
Artem Glazychev839dcc02020-12-01 02:39:21 +0700686 if (is_ip6 && !udp_is_valid_dst_port (a->src_port, 0))
687 udp_register_dst_port (vxm->vlib_main, a->src_port,
Jakub Grajciardf3ca232019-06-04 13:16:42 +0200688 vxlan6_input_node.index, 0);
689 }
690
Ed Warnickecb9cada2015-12-08 15:45:58 -0700691 return 0;
692}
693
Eyal Bari8f576482018-05-07 10:13:44 +0300694static uword
695get_decap_next_for_node (u32 node_index, u32 ipv4_set)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800696{
Eyal Bari8f576482018-05-07 10:13:44 +0300697 vxlan_main_t *vxm = &vxlan_main;
698 vlib_main_t *vm = vxm->vlib_main;
Eyal Bari0765c6e2017-01-29 12:40:50 +0200699 uword input_node = (ipv4_set) ? vxlan4_input_node.index :
700 vxlan6_input_node.index;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800701
Eyal Bari0765c6e2017-01-29 12:40:50 +0200702 return vlib_node_add_next (vm, input_node, node_index);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800703}
704
Eyal Bari8f576482018-05-07 10:13:44 +0300705static uword
706unformat_decap_next (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707{
Eyal Bari8f576482018-05-07 10:13:44 +0300708 u32 *result = va_arg (*args, u32 *);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800709 u32 ipv4_set = va_arg (*args, int);
Eyal Bari8f576482018-05-07 10:13:44 +0300710 vxlan_main_t *vxm = &vxlan_main;
711 vlib_main_t *vm = vxm->vlib_main;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800712 u32 node_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700713 u32 tmp;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800714
Ed Warnickecb9cada2015-12-08 15:45:58 -0700715 if (unformat (input, "l2"))
716 *result = VXLAN_INPUT_NEXT_L2_INPUT;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800717 else if (unformat (input, "node %U", unformat_vlib_node, vm, &node_index))
Eyal Bari8f576482018-05-07 10:13:44 +0300718 *result = get_decap_next_for_node (node_index, ipv4_set);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700719 else if (unformat (input, "%d", &tmp))
720 *result = tmp;
721 else
722 return 0;
723 return 1;
724}
725
726static clib_error_t *
727vxlan_add_del_tunnel_command_fn (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +0300728 unformat_input_t * input,
729 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700730{
Eyal Bari8f576482018-05-07 10:13:44 +0300731 unformat_input_t _line_input, *line_input = &_line_input;
732 ip46_address_t src = ip46_address_initializer, dst =
733 ip46_address_initializer;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700734 u8 is_add = 1;
735 u8 src_set = 0;
736 u8 dst_set = 0;
Eyal Baric5b13602016-11-24 19:42:43 +0200737 u8 grp_set = 0;
Chris Luke99cb3352016-04-26 10:49:53 -0400738 u8 ipv4_set = 0;
739 u8 ipv6_set = 0;
Nathan Skrzypczak3e384222021-04-21 19:56:34 +0200740 u8 is_l3 = 0;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600741 u32 instance = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700742 u32 encap_fib_index = 0;
Eyal Baric5b13602016-11-24 19:42:43 +0200743 u32 mcast_sw_if_index = ~0;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800744 u32 decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700745 u32 vni = 0;
Artem Glazychev839dcc02020-12-01 02:39:21 +0700746 u32 src_port = 0;
747 u32 dst_port = 0;
Eyal Bariaa0180b2018-03-27 11:43:57 +0300748 u32 table_id;
Eyal Bari0fa56782018-06-04 12:25:05 +0300749 clib_error_t *parse_error = NULL;
Eyal Baric5b13602016-11-24 19:42:43 +0200750
Ed Warnickecb9cada2015-12-08 15:45:58 -0700751 /* Get a line of input. */
Eyal Bari8f576482018-05-07 10:13:44 +0300752 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700753 return 0;
754
Eyal Bari8f576482018-05-07 10:13:44 +0300755 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
756 {
757 if (unformat (line_input, "del"))
758 {
759 is_add = 0;
760 }
761 else if (unformat (line_input, "instance %d", &instance))
762 ;
763 else if (unformat (line_input, "src %U",
764 unformat_ip46_address, &src, IP46_TYPE_ANY))
765 {
766 src_set = 1;
767 ip46_address_is_ip4 (&src) ? (ipv4_set = 1) : (ipv6_set = 1);
768 }
769 else if (unformat (line_input, "dst %U",
770 unformat_ip46_address, &dst, IP46_TYPE_ANY))
771 {
772 dst_set = 1;
773 ip46_address_is_ip4 (&dst) ? (ipv4_set = 1) : (ipv6_set = 1);
774 }
775 else if (unformat (line_input, "group %U %U",
776 unformat_ip46_address, &dst, IP46_TYPE_ANY,
777 unformat_vnet_sw_interface,
778 vnet_get_main (), &mcast_sw_if_index))
779 {
780 grp_set = dst_set = 1;
781 ip46_address_is_ip4 (&dst) ? (ipv4_set = 1) : (ipv6_set = 1);
782 }
783 else if (unformat (line_input, "encap-vrf-id %d", &table_id))
784 {
785 encap_fib_index =
786 fib_table_find (fib_ip_proto (ipv6_set), table_id);
Eyal Bari8f576482018-05-07 10:13:44 +0300787 }
Nathan Skrzypczak3e384222021-04-21 19:56:34 +0200788 else if (unformat (line_input, "l3"))
789 is_l3 = 1;
Eyal Bari8f576482018-05-07 10:13:44 +0300790 else if (unformat (line_input, "decap-next %U", unformat_decap_next,
791 &decap_next_index, ipv4_set))
792 ;
793 else if (unformat (line_input, "vni %d", &vni))
794 ;
Artem Glazychev839dcc02020-12-01 02:39:21 +0700795 else if (unformat (line_input, "src_port %d", &src_port))
796 ;
797 else if (unformat (line_input, "dst_port %d", &dst_port))
798 ;
Eyal Bari8f576482018-05-07 10:13:44 +0300799 else
800 {
Eyal Bari0fa56782018-06-04 12:25:05 +0300801 parse_error = clib_error_return (0, "parse error: '%U'",
802 format_unformat_error, line_input);
Eyal Bari8f576482018-05-07 10:13:44 +0300803 break;
804 }
805 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700806
Eyal Bariaa0180b2018-03-27 11:43:57 +0300807 unformat_free (line_input);
808
Eyal Bari0fa56782018-06-04 12:25:05 +0300809 if (parse_error)
810 return parse_error;
811
Nathan Skrzypczak3e384222021-04-21 19:56:34 +0200812 if (is_l3 && decap_next_index == VXLAN_INPUT_NEXT_L2_INPUT)
813 {
814 vlib_node_t *node = vlib_get_node_by_name (
815 vm, (u8 *) (ipv4_set ? "ip4-input" : "ip6-input"));
816 decap_next_index = get_decap_next_for_node (node->index, ipv4_set);
817 }
818
Eyal Bari0fa56782018-06-04 12:25:05 +0300819 if (encap_fib_index == ~0)
820 return clib_error_return (0, "nonexistent encap-vrf-id %d", table_id);
Eyal Bariaa0180b2018-03-27 11:43:57 +0300821
Ed Warnickecb9cada2015-12-08 15:45:58 -0700822 if (src_set == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300823 return clib_error_return (0, "tunnel src address not specified");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700824
825 if (dst_set == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300826 return clib_error_return (0, "tunnel dst address not specified");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700827
Eyal Bari8f576482018-05-07 10:13:44 +0300828 if (grp_set && !ip46_address_is_multicast (&dst))
Eyal Bariaa0180b2018-03-27 11:43:57 +0300829 return clib_error_return (0, "tunnel group address not multicast");
Eyal Baric5b13602016-11-24 19:42:43 +0200830
Eyal Bari8f576482018-05-07 10:13:44 +0300831 if (grp_set == 0 && ip46_address_is_multicast (&dst))
Eyal Bariaa0180b2018-03-27 11:43:57 +0300832 return clib_error_return (0, "dst address must be unicast");
John Lo56912c82016-12-08 16:10:02 -0500833
Eyal Baric5b13602016-11-24 19:42:43 +0200834 if (grp_set && mcast_sw_if_index == ~0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300835 return clib_error_return (0, "tunnel nonexistent multicast device");
Eyal Baric5b13602016-11-24 19:42:43 +0200836
Chris Luke99cb3352016-04-26 10:49:53 -0400837 if (ipv4_set && ipv6_set)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300838 return clib_error_return (0, "both IPv4 and IPv6 addresses specified");
Chris Luke99cb3352016-04-26 10:49:53 -0400839
Eyal Bari8f576482018-05-07 10:13:44 +0300840 if (ip46_address_cmp (&src, &dst) == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300841 return clib_error_return (0, "src and dst addresses are identical");
Chris Luke99cb3352016-04-26 10:49:53 -0400842
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800843 if (decap_next_index == ~0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300844 return clib_error_return (0, "next node not found");
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800845
Ed Warnickecb9cada2015-12-08 15:45:58 -0700846 if (vni == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300847 return clib_error_return (0, "vni not specified");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700848
Eyal Bari8f576482018-05-07 10:13:44 +0300849 if (vni >> 24)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300850 return clib_error_return (0, "vni %d out of range", vni);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700851
Nathan Skrzypczak3e384222021-04-21 19:56:34 +0200852 vnet_vxlan_add_del_tunnel_args_t a = { .is_add = is_add,
853 .is_ip6 = ipv6_set,
Ed Warnickecb8b4c92022-02-18 19:26:35 +0000854 .is_l3 = is_l3,
Nathan Skrzypczak3e384222021-04-21 19:56:34 +0200855 .instance = instance,
Eyal Bariaa0180b2018-03-27 11:43:57 +0300856#define _(x) .x = x,
Nathan Skrzypczak3e384222021-04-21 19:56:34 +0200857 foreach_copy_field
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858#undef _
Eyal Bariaa0180b2018-03-27 11:43:57 +0300859 };
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600860
Eyal Bariaa0180b2018-03-27 11:43:57 +0300861 u32 tunnel_sw_if_index;
862 int rv = vnet_vxlan_add_del_tunnel (&a, &tunnel_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700863
Eyal Bari8f576482018-05-07 10:13:44 +0300864 switch (rv)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700865 {
866 case 0:
Pierre Pfister78ea9c22016-05-23 12:51:54 +0100867 if (is_add)
Eyal Bari8f576482018-05-07 10:13:44 +0300868 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
869 vnet_get_main (), tunnel_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700870 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700871
872 case VNET_API_ERROR_TUNNEL_EXIST:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300873 return clib_error_return (0, "tunnel already exists...");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700874
875 case VNET_API_ERROR_NO_SUCH_ENTRY:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300876 return clib_error_return (0, "tunnel does not exist...");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700877
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600878 case VNET_API_ERROR_INSTANCE_IN_USE:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300879 return clib_error_return (0, "Instance is in use");
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600880
Ed Warnickecb9cada2015-12-08 15:45:58 -0700881 default:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300882 return clib_error_return
Eyal Bari8f576482018-05-07 10:13:44 +0300883 (0, "vnet_vxlan_add_del_tunnel returned %d", rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700884 }
885
Eyal Bari0fa56782018-06-04 12:25:05 +0300886 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700887}
888
Billy McFallc5d9cda2016-09-14 10:39:58 -0400889/*?
890 * Add or delete a VXLAN Tunnel.
891 *
892 * VXLAN provides the features needed to allow L2 bridge domains (BDs)
893 * to span multiple servers. This is done by building an L2 overlay on
894 * top of an L3 network underlay using VXLAN tunnels.
895 *
896 * This makes it possible for servers to be co-located in the same data
897 * center or be separated geographically as long as they are reachable
898 * through the underlay L3 network.
899 *
900 * You can refer to this kind of L2 overlay bridge domain as a VXLAN
901 * (Virtual eXtensible VLAN) segment.
902 *
903 * @cliexpar
904 * Example of how to create a VXLAN Tunnel:
Artem Glazychev839dcc02020-12-01 02:39:21 +0700905 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 encap-vrf-id
906 7}
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600907 * Example of how to create a VXLAN Tunnel with a known name, vxlan_tunnel42:
908 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 instance 42}
Artem Glazychev839dcc02020-12-01 02:39:21 +0700909 * Example of how to create a multicast VXLAN Tunnel with a known name,
910 vxlan_tunnel23:
911 * @cliexcmd{create vxlan tunnel src 10.0.3.1 group 239.1.1.1
912 GigabitEthernet0/8/0 instance 23}
913 * Example of how to create a VXLAN Tunnel with custom udp-ports:
914 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 src_port
915 59000 dst_port 59001}
Billy McFallc5d9cda2016-09-14 10:39:58 -0400916 * Example of how to delete a VXLAN Tunnel:
917 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 del}
918 ?*/
919/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700920VLIB_CLI_COMMAND (create_vxlan_tunnel_command, static) = {
921 .path = "create vxlan tunnel",
Eyal Bari8f576482018-05-07 10:13:44 +0300922 .short_help =
Artem Glazychev839dcc02020-12-01 02:39:21 +0700923 "create vxlan tunnel src <local-vtep-addr>"
924 " {dst <remote-vtep-addr>|group <mcast-vtep-addr> <intf-name>} vni <nn>"
925 " [instance <id>]"
Nathan Skrzypczak3e384222021-04-21 19:56:34 +0200926 " [encap-vrf-id <nn>] [decap-next [l2|node <name>]] [del] [l3]"
Artem Glazychev839dcc02020-12-01 02:39:21 +0700927 " [src_port <local-vtep-udp-port>] [dst_port <remote-vtep-udp-port>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928 .function = vxlan_add_del_tunnel_command_fn,
929};
Billy McFallc5d9cda2016-09-14 10:39:58 -0400930/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931
932static clib_error_t *
933show_vxlan_tunnel_command_fn (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +0300934 unformat_input_t * input,
935 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700936{
Eyal Bari8f576482018-05-07 10:13:44 +0300937 vxlan_main_t *vxm = &vxlan_main;
938 vxlan_tunnel_t *t;
Eyal Bari0fa56782018-06-04 12:25:05 +0300939 int raw = 0;
Eyal Bari0fa56782018-06-04 12:25:05 +0300940
Neale Ranns16be62e2018-07-30 11:59:22 -0700941 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Eyal Bari0fa56782018-06-04 12:25:05 +0300942 {
Neale Ranns16be62e2018-07-30 11:59:22 -0700943 if (unformat (input, "raw"))
Eyal Bari0fa56782018-06-04 12:25:05 +0300944 raw = 1;
945 else
Neale Ranns16be62e2018-07-30 11:59:22 -0700946 return clib_error_return (0, "parse error: '%U'",
947 format_unformat_error, input);
Eyal Bari0fa56782018-06-04 12:25:05 +0300948 }
949
Ed Warnickecb9cada2015-12-08 15:45:58 -0700950 if (pool_elts (vxm->tunnels) == 0)
951 vlib_cli_output (vm, "No vxlan tunnels configured...");
952
Eyal Bari8f576482018-05-07 10:13:44 +0300953/* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100954 pool_foreach (t, vxm->tunnels)
955 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700956 vlib_cli_output (vm, "%U", format_vxlan_tunnel, t);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100957 }
Eyal Bari8f576482018-05-07 10:13:44 +0300958/* *INDENT-ON* */
959
Eyal Bari0fa56782018-06-04 12:25:05 +0300960 if (raw)
Eyal Baridd47eca2018-07-08 08:15:56 +0300961 {
962 vlib_cli_output (vm, "Raw IPv4 Hash Table:\n%U\n",
963 format_bihash_16_8, &vxm->vxlan4_tunnel_by_key,
964 1 /* verbose */ );
965 vlib_cli_output (vm, "Raw IPv6 Hash Table:\n%U\n",
966 format_bihash_24_8, &vxm->vxlan6_tunnel_by_key,
967 1 /* verbose */ );
968 }
Eyal Bari0fa56782018-06-04 12:25:05 +0300969
Ed Warnickecb9cada2015-12-08 15:45:58 -0700970 return 0;
971}
972
Billy McFallc5d9cda2016-09-14 10:39:58 -0400973/*?
974 * Display all the VXLAN Tunnel entries.
975 *
976 * @cliexpar
977 * Example of how to display the VXLAN Tunnel entries:
978 * @cliexstart{show vxlan tunnel}
Artem Glazychev839dcc02020-12-01 02:39:21 +0700979 * [0] src 10.0.3.1 dst 10.0.3.3 src_port 4789 dst_port 4789 vni 13
980 encap_fib_index 0 sw_if_index 5 decap_next l2
Billy McFallc5d9cda2016-09-14 10:39:58 -0400981 * @cliexend
982 ?*/
983/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700984VLIB_CLI_COMMAND (show_vxlan_tunnel_command, static) = {
985 .path = "show vxlan tunnel",
Eyal Bari0fa56782018-06-04 12:25:05 +0300986 .short_help = "show vxlan tunnel [raw]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700987 .function = show_vxlan_tunnel_command_fn,
988};
Billy McFallc5d9cda2016-09-14 10:39:58 -0400989/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700990
Chris Luke99cb3352016-04-26 10:49:53 -0400991
Eyal Bari8f576482018-05-07 10:13:44 +0300992void
993vnet_int_vxlan_bypass_mode (u32 sw_if_index, u8 is_ip6, u8 is_enable)
John Lo2b81eb82017-01-30 13:12:10 -0500994{
Jon Loeligere3034cd2019-01-03 12:56:02 -0600995 vxlan_main_t *vxm = &vxlan_main;
996
997 if (pool_is_free_index (vxm->vnet_main->interface_main.sw_interfaces,
998 sw_if_index))
999 return;
1000
1001 is_enable = ! !is_enable;
1002
John Lo2b81eb82017-01-30 13:12:10 -05001003 if (is_ip6)
Jon Loeligere3034cd2019-01-03 12:56:02 -06001004 {
1005 if (clib_bitmap_get (vxm->bm_ip6_bypass_enabled_by_sw_if, sw_if_index)
1006 != is_enable)
1007 {
1008 vnet_feature_enable_disable ("ip6-unicast", "ip6-vxlan-bypass",
1009 sw_if_index, is_enable, 0, 0);
1010 vxm->bm_ip6_bypass_enabled_by_sw_if =
1011 clib_bitmap_set (vxm->bm_ip6_bypass_enabled_by_sw_if,
1012 sw_if_index, is_enable);
1013 }
1014 }
John Lo2b81eb82017-01-30 13:12:10 -05001015 else
Jon Loeligere3034cd2019-01-03 12:56:02 -06001016 {
1017 if (clib_bitmap_get (vxm->bm_ip4_bypass_enabled_by_sw_if, sw_if_index)
1018 != is_enable)
1019 {
1020 vnet_feature_enable_disable ("ip4-unicast", "ip4-vxlan-bypass",
1021 sw_if_index, is_enable, 0, 0);
1022 vxm->bm_ip4_bypass_enabled_by_sw_if =
1023 clib_bitmap_set (vxm->bm_ip4_bypass_enabled_by_sw_if,
1024 sw_if_index, is_enable);
1025 }
1026 }
John Lo2b81eb82017-01-30 13:12:10 -05001027}
1028
1029
1030static clib_error_t *
1031set_ip_vxlan_bypass (u32 is_ip6,
Eyal Bari8f576482018-05-07 10:13:44 +03001032 unformat_input_t * input, vlib_cli_command_t * cmd)
John Lo2b81eb82017-01-30 13:12:10 -05001033{
Eyal Bari8f576482018-05-07 10:13:44 +03001034 unformat_input_t _line_input, *line_input = &_line_input;
1035 vnet_main_t *vnm = vnet_get_main ();
1036 clib_error_t *error = 0;
John Lo2b81eb82017-01-30 13:12:10 -05001037 u32 sw_if_index, is_enable;
1038
1039 sw_if_index = ~0;
1040 is_enable = 1;
1041
Eyal Bari8f576482018-05-07 10:13:44 +03001042 if (!unformat_user (input, unformat_line_input, line_input))
John Lo2b81eb82017-01-30 13:12:10 -05001043 return 0;
1044
1045 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1046 {
Eyal Bari8f576482018-05-07 10:13:44 +03001047 if (unformat_user
1048 (line_input, unformat_vnet_sw_interface, vnm, &sw_if_index))
1049 ;
John Lo2b81eb82017-01-30 13:12:10 -05001050 else if (unformat (line_input, "del"))
Eyal Bari8f576482018-05-07 10:13:44 +03001051 is_enable = 0;
John Lo2b81eb82017-01-30 13:12:10 -05001052 else
Eyal Bari8f576482018-05-07 10:13:44 +03001053 {
John Lo2b81eb82017-01-30 13:12:10 -05001054 error = unformat_parse_error (line_input);
1055 goto done;
1056 }
1057 }
1058
1059 if (~0 == sw_if_index)
1060 {
1061 error = clib_error_return (0, "unknown interface `%U'",
1062 format_unformat_error, line_input);
1063 goto done;
1064 }
1065
1066 vnet_int_vxlan_bypass_mode (sw_if_index, is_ip6, is_enable);
1067
Eyal Bari8f576482018-05-07 10:13:44 +03001068done:
Billy McFalla9a20e72017-02-15 11:39:12 -05001069 unformat_free (line_input);
1070
John Lo2b81eb82017-01-30 13:12:10 -05001071 return error;
1072}
1073
1074static clib_error_t *
1075set_ip4_vxlan_bypass (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +03001076 unformat_input_t * input, vlib_cli_command_t * cmd)
John Lo2b81eb82017-01-30 13:12:10 -05001077{
1078 return set_ip_vxlan_bypass (0, input, cmd);
1079}
1080
1081/*?
Eyal Bari8f576482018-05-07 10:13:44 +03001082 * This command adds the 'ip4-vxlan-bypass' graph node for a given interface.
John Lo2b81eb82017-01-30 13:12:10 -05001083 * By adding the IPv4 vxlan-bypass graph node to an interface, the node checks
Nathan Skrzypczak5e6a1652021-10-06 15:03:35 +02001084 * for and validate input vxlan packet and bypass ip4-lookup, ip4-local,
Eyal Bari8f576482018-05-07 10:13:44 +03001085 * ip4-udp-lookup nodes to speedup vxlan packet forwarding. This node will
John Lo2b81eb82017-01-30 13:12:10 -05001086 * cause extra overhead to for non-vxlan packets which is kept at a minimum.
1087 *
1088 * @cliexpar
1089 * @parblock
1090 * Example of graph node before ip4-vxlan-bypass is enabled:
1091 * @cliexstart{show vlib graph ip4-vxlan-bypass}
1092 * Name Next Previous
1093 * ip4-vxlan-bypass error-drop [0]
1094 * vxlan4-input [1]
Eyal Bari8f576482018-05-07 10:13:44 +03001095 * ip4-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001096 * @cliexend
1097 *
1098 * Example of how to enable ip4-vxlan-bypass on an interface:
1099 * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0}
1100 *
1101 * Example of graph node after ip4-vxlan-bypass is enabled:
1102 * @cliexstart{show vlib graph ip4-vxlan-bypass}
Eyal Bari8f576482018-05-07 10:13:44 +03001103 * Name Next Previous
1104 * ip4-vxlan-bypass error-drop [0] ip4-input
1105 * vxlan4-input [1] ip4-input-no-checksum
1106 * ip4-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001107 * @cliexend
1108 *
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001109 * Example of how to display the feature enabled on an interface:
John Lo2b81eb82017-01-30 13:12:10 -05001110 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1111 * IP feature paths configured on GigabitEthernet2/0/0...
1112 * ...
1113 * ipv4 unicast:
1114 * ip4-vxlan-bypass
1115 * ip4-lookup
1116 * ...
1117 * @cliexend
1118 *
1119 * Example of how to disable ip4-vxlan-bypass on an interface:
1120 * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0 del}
1121 * @endparblock
1122?*/
1123/* *INDENT-OFF* */
1124VLIB_CLI_COMMAND (set_interface_ip_vxlan_bypass_command, static) = {
1125 .path = "set interface ip vxlan-bypass",
1126 .function = set_ip4_vxlan_bypass,
1127 .short_help = "set interface ip vxlan-bypass <interface> [del]",
1128};
1129/* *INDENT-ON* */
1130
1131static clib_error_t *
1132set_ip6_vxlan_bypass (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +03001133 unformat_input_t * input, vlib_cli_command_t * cmd)
John Lo2b81eb82017-01-30 13:12:10 -05001134{
1135 return set_ip_vxlan_bypass (1, input, cmd);
1136}
1137
1138/*?
Eyal Bari8f576482018-05-07 10:13:44 +03001139 * This command adds the 'ip6-vxlan-bypass' graph node for a given interface.
John Lo2b81eb82017-01-30 13:12:10 -05001140 * By adding the IPv6 vxlan-bypass graph node to an interface, the node checks
Nathan Skrzypczak5e6a1652021-10-06 15:03:35 +02001141 * for and validate input vxlan packet and bypass ip6-lookup, ip6-local,
Eyal Bari8f576482018-05-07 10:13:44 +03001142 * ip6-udp-lookup nodes to speedup vxlan packet forwarding. This node will
John Lo2b81eb82017-01-30 13:12:10 -05001143 * cause extra overhead to for non-vxlan packets which is kept at a minimum.
1144 *
1145 * @cliexpar
1146 * @parblock
1147 * Example of graph node before ip6-vxlan-bypass is enabled:
1148 * @cliexstart{show vlib graph ip6-vxlan-bypass}
1149 * Name Next Previous
1150 * ip6-vxlan-bypass error-drop [0]
1151 * vxlan6-input [1]
Eyal Bari8f576482018-05-07 10:13:44 +03001152 * ip6-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001153 * @cliexend
1154 *
1155 * Example of how to enable ip6-vxlan-bypass on an interface:
1156 * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0}
1157 *
1158 * Example of graph node after ip6-vxlan-bypass is enabled:
1159 * @cliexstart{show vlib graph ip6-vxlan-bypass}
Eyal Bari8f576482018-05-07 10:13:44 +03001160 * Name Next Previous
1161 * ip6-vxlan-bypass error-drop [0] ip6-input
1162 * vxlan6-input [1] ip4-input-no-checksum
1163 * ip6-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001164 * @cliexend
1165 *
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001166 * Example of how to display the feature enabled on an interface:
John Lo2b81eb82017-01-30 13:12:10 -05001167 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1168 * IP feature paths configured on GigabitEthernet2/0/0...
1169 * ...
1170 * ipv6 unicast:
1171 * ip6-vxlan-bypass
1172 * ip6-lookup
1173 * ...
1174 * @cliexend
1175 *
1176 * Example of how to disable ip6-vxlan-bypass on an interface:
1177 * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0 del}
1178 * @endparblock
1179?*/
1180/* *INDENT-OFF* */
1181VLIB_CLI_COMMAND (set_interface_ip6_vxlan_bypass_command, static) = {
1182 .path = "set interface ip6 vxlan-bypass",
1183 .function = set_ip6_vxlan_bypass,
Paul Vinciguerra5fb22782019-11-07 17:20:48 -05001184 .short_help = "set interface ip6 vxlan-bypass <interface> [del]",
John Lo2b81eb82017-01-30 13:12:10 -05001185};
1186/* *INDENT-ON* */
1187
eyal bariaf86a482018-04-17 11:20:27 +03001188int
1189vnet_vxlan_add_del_rx_flow (u32 hw_if_index, u32 t_index, int is_add)
1190{
1191 vxlan_main_t *vxm = &vxlan_main;
1192 vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, t_index);
1193 vnet_main_t *vnm = vnet_get_main ();
1194 if (is_add)
1195 {
1196 if (t->flow_index == ~0)
1197 {
1198 vxlan_main_t *vxm = &vxlan_main;
1199 vnet_flow_t flow = {
1200 .actions =
Chenmin Sun1ec9fdb2019-12-05 01:41:35 +08001201 VNET_FLOW_ACTION_REDIRECT_TO_NODE | VNET_FLOW_ACTION_MARK |
1202 VNET_FLOW_ACTION_BUFFER_ADVANCE,
eyal bariaf86a482018-04-17 11:20:27 +03001203 .mark_flow_id = t->dev_instance + vxm->flow_id_start,
1204 .redirect_node_index = vxlan4_flow_input_node.index,
Chenmin Sun1ec9fdb2019-12-05 01:41:35 +08001205 .buffer_advance = sizeof (ethernet_header_t),
eyal bariaf86a482018-04-17 11:20:27 +03001206 .type = VNET_FLOW_TYPE_IP4_VXLAN,
1207 .ip4_vxlan = {
Chenmin Sun34bfa502020-07-27 17:40:17 +08001208 .protocol.prot = IP_PROTOCOL_UDP,
1209 .src_addr.addr = t->dst.ip4,
1210 .dst_addr.addr = t->src.ip4,
1211 .src_addr.mask.as_u32 = ~0,
1212 .dst_addr.mask.as_u32 = ~0,
Artem Glazychev839dcc02020-12-01 02:39:21 +07001213 .dst_port.port = t->src_port,
Chenmin Sun34bfa502020-07-27 17:40:17 +08001214 .dst_port.mask = 0xFF,
eyal bariaf86a482018-04-17 11:20:27 +03001215 .vni = t->vni,
1216 }
1217 ,
1218 };
1219 vnet_flow_add (vnm, &flow, &t->flow_index);
1220 }
1221 return vnet_flow_enable (vnm, t->flow_index, hw_if_index);
1222 }
1223 /* flow index is removed when the tunnel is deleted */
1224 return vnet_flow_disable (vnm, t->flow_index, hw_if_index);
1225}
1226
1227u32
1228vnet_vxlan_get_tunnel_index (u32 sw_if_index)
1229{
1230 vxlan_main_t *vxm = &vxlan_main;
1231
Eyal Baricd307742018-07-22 12:45:15 +03001232 if (sw_if_index >= vec_len (vxm->tunnel_index_by_sw_if_index))
eyal bariaf86a482018-04-17 11:20:27 +03001233 return ~0;
1234 return vxm->tunnel_index_by_sw_if_index[sw_if_index];
1235}
1236
1237static clib_error_t *
1238vxlan_offload_command_fn (vlib_main_t * vm,
1239 unformat_input_t * input, vlib_cli_command_t * cmd)
1240{
1241 unformat_input_t _line_input, *line_input = &_line_input;
1242
1243 /* Get a line of input. */
1244 if (!unformat_user (input, unformat_line_input, line_input))
1245 return 0;
1246
1247 vnet_main_t *vnm = vnet_get_main ();
1248 u32 rx_sw_if_index = ~0;
1249 u32 hw_if_index = ~0;
1250 int is_add = 1;
1251
1252 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1253 {
1254 if (unformat (line_input, "hw %U", unformat_vnet_hw_interface, vnm,
1255 &hw_if_index))
1256 continue;
1257 if (unformat (line_input, "rx %U", unformat_vnet_sw_interface, vnm,
1258 &rx_sw_if_index))
1259 continue;
1260 if (unformat (line_input, "del"))
1261 {
1262 is_add = 0;
1263 continue;
1264 }
1265 return clib_error_return (0, "unknown input `%U'",
1266 format_unformat_error, line_input);
1267 }
1268
1269 if (rx_sw_if_index == ~0)
1270 return clib_error_return (0, "missing rx interface");
1271 if (hw_if_index == ~0)
1272 return clib_error_return (0, "missing hw interface");
1273
1274 u32 t_index = vnet_vxlan_get_tunnel_index (rx_sw_if_index);;
1275 if (t_index == ~0)
1276 return clib_error_return (0, "%U is not a vxlan tunnel",
1277 format_vnet_sw_if_index_name, vnm,
1278 rx_sw_if_index);
1279
1280 vxlan_main_t *vxm = &vxlan_main;
1281 vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, t_index);
1282
1283 if (!ip46_address_is_ip4 (&t->dst))
1284 return clib_error_return (0, "currently only IPV4 tunnels are supported");
1285
1286 vnet_hw_interface_t *hw_if = vnet_get_hw_interface (vnm, hw_if_index);
1287 ip4_main_t *im = &ip4_main;
1288 u32 rx_fib_index =
1289 vec_elt (im->fib_index_by_sw_if_index, hw_if->sw_if_index);
1290
1291 if (t->encap_fib_index != rx_fib_index)
1292 return clib_error_return (0, "interface/tunnel fib mismatch");
1293
1294 if (vnet_vxlan_add_del_rx_flow (hw_if_index, t_index, is_add))
1295 return clib_error_return (0, "error %s flow",
1296 is_add ? "enabling" : "disabling");
1297
1298 return 0;
1299}
1300
1301/* *INDENT-OFF* */
1302VLIB_CLI_COMMAND (vxlan_offload_command, static) = {
1303 .path = "set flow-offload vxlan",
1304 .short_help =
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001305 "set flow-offload vxlan hw <interface-name> rx <tunnel-name> [del]",
eyal bariaf86a482018-04-17 11:20:27 +03001306 .function = vxlan_offload_command_fn,
1307};
1308/* *INDENT-ON* */
1309
Eyal Bari0fa56782018-06-04 12:25:05 +03001310#define VXLAN_HASH_NUM_BUCKETS (2 * 1024)
1311#define VXLAN_HASH_MEMORY_SIZE (1 << 20)
1312
Eyal Bari8f576482018-05-07 10:13:44 +03001313clib_error_t *
1314vxlan_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001315{
Eyal Bari8f576482018-05-07 10:13:44 +03001316 vxlan_main_t *vxm = &vxlan_main;
1317
1318 vxm->vnet_main = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001319 vxm->vlib_main = vm;
1320
eyal bariaf86a482018-04-17 11:20:27 +03001321 vnet_flow_get_range (vxm->vnet_main, "vxlan", 1024 * 1024,
1322 &vxm->flow_id_start);
1323
Jon Loeligere3034cd2019-01-03 12:56:02 -06001324 vxm->bm_ip4_bypass_enabled_by_sw_if = 0;
1325 vxm->bm_ip6_bypass_enabled_by_sw_if = 0;
1326
Chris Luke99cb3352016-04-26 10:49:53 -04001327 /* initialize the ip6 hash */
Eyal Baridd47eca2018-07-08 08:15:56 +03001328 clib_bihash_init_16_8 (&vxm->vxlan4_tunnel_by_key, "vxlan4",
1329 VXLAN_HASH_NUM_BUCKETS, VXLAN_HASH_MEMORY_SIZE);
1330 clib_bihash_init_24_8 (&vxm->vxlan6_tunnel_by_key, "vxlan6",
Eyal Bari0fa56782018-06-04 12:25:05 +03001331 VXLAN_HASH_NUM_BUCKETS, VXLAN_HASH_MEMORY_SIZE);
Nick Zavaritsky27518c22020-02-27 15:54:58 +00001332 vxm->vtep_table = vtep_table_create ();
Eyal Bari8f576482018-05-07 10:13:44 +03001333 vxm->mcast_shared = hash_create_mem (0,
1334 sizeof (ip46_address_t),
1335 sizeof (mcast_shared_t));
Chris Luke99cb3352016-04-26 10:49:53 -04001336
Eyal Bari8f576482018-05-07 10:13:44 +03001337 fib_node_register_type (FIB_NODE_TYPE_VXLAN_TUNNEL, &vxlan_vft);
John Loc42912d2016-11-07 18:30:47 -05001338
Ed Warnickecb9cada2015-12-08 15:45:58 -07001339 return 0;
1340}
1341
Eyal Bari8f576482018-05-07 10:13:44 +03001342VLIB_INIT_FUNCTION (vxlan_init);
Jon Loeliger3d460bd2018-02-01 16:36:12 -06001343
1344/*
Eyal Bari8f576482018-05-07 10:13:44 +03001345 * fd.io coding-style-patch-verification: ON
1346 *
Jon Loeliger3d460bd2018-02-01 16:36:12 -06001347 * Local Variables:
1348 * eval: (c-set-style "gnu")
1349 * End:
1350 */