blob: ce565541a37360d1a323332ca2b77c0fdca20b4e [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15#include <vnet/vxlan/vxlan.h>
Chris Luke99cb3352016-04-26 10:49:53 -040016#include <vnet/ip/format.h>
John Loc42912d2016-11-07 18:30:47 -050017#include <vnet/fib/fib_entry.h>
18#include <vnet/fib/fib_table.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000019#include <vnet/mfib/mfib_table.h>
20#include <vnet/adj/adj_mcast.h>
eyal bari82e21d72018-04-26 13:14:55 +030021#include <vnet/adj/rewrite.h>
Eyal Bari3212c572017-03-06 11:47:50 +020022#include <vnet/interface.h>
eyal bariaf86a482018-04-17 11:20:27 +030023#include <vnet/flow/flow.h>
Hongjun Nibeb4bf72016-11-25 00:03:46 +080024#include <vlib/vlib.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070025
Billy McFallc5d9cda2016-09-14 10:39:58 -040026/**
27 * @file
28 * @brief VXLAN.
29 *
30 * VXLAN provides the features needed to allow L2 bridge domains (BDs)
31 * to span multiple servers. This is done by building an L2 overlay on
32 * top of an L3 network underlay using VXLAN tunnels.
33 *
34 * This makes it possible for servers to be co-located in the same data
35 * center or be separated geographically as long as they are reachable
36 * through the underlay L3 network.
37 *
38 * You can refer to this kind of L2 overlay bridge domain as a VXLAN
39 * (Virtual eXtensible VLAN) segment.
40 */
41
42
Ed Warnickecb9cada2015-12-08 15:45:58 -070043vxlan_main_t vxlan_main;
44
Eyal Bari8f576482018-05-07 10:13:44 +030045static u8 *
46format_decap_next (u8 * s, va_list * args)
Hongjun Nibeb4bf72016-11-25 00:03:46 +080047{
48 u32 next_index = va_arg (*args, u32);
49
John Lo4478d8e2018-01-12 17:15:25 -050050 if (next_index == VXLAN_INPUT_NEXT_DROP)
51 return format (s, "drop");
52 else
53 return format (s, "index %d", next_index);
Hongjun Nibeb4bf72016-11-25 00:03:46 +080054 return s;
55}
56
Eyal Bari8f576482018-05-07 10:13:44 +030057u8 *
58format_vxlan_tunnel (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070059{
Eyal Bari8f576482018-05-07 10:13:44 +030060 vxlan_tunnel_t *t = va_arg (*args, vxlan_tunnel_t *);
Jon Loeliger3d460bd2018-02-01 16:36:12 -060061
62 s = format (s,
63 "[%d] instance %d src %U dst %U vni %d fib-idx %d sw-if-idx %d ",
John Lo25d417f2018-02-15 15:47:53 -050064 t->dev_instance, t->user_instance,
Eyal Bari8f576482018-05-07 10:13:44 +030065 format_ip46_address, &t->src, IP46_TYPE_ANY,
66 format_ip46_address, &t->dst, IP46_TYPE_ANY,
67 t->vni, t->encap_fib_index, t->sw_if_index);
John Lo56912c82016-12-08 16:10:02 -050068
John Lo4478d8e2018-01-12 17:15:25 -050069 s = format (s, "encap-dpo-idx %d ", t->next_dpo.dpoi_index);
John Lo56912c82016-12-08 16:10:02 -050070
John Lo4478d8e2018-01-12 17:15:25 -050071 if (PREDICT_FALSE (t->decap_next_index != VXLAN_INPUT_NEXT_L2_INPUT))
72 s = format (s, "decap-next-%U ", format_decap_next, t->decap_next_index);
73
74 if (PREDICT_FALSE (ip46_address_is_multicast (&t->dst)))
75 s = format (s, "mcast-sw-if-idx %d ", t->mcast_sw_if_index);
76
eyal bariaf86a482018-04-17 11:20:27 +030077 if (t->flow_index != ~0)
78 s = format (s, "flow-index %d [%U]", t->flow_index,
79 format_flow_enabled_hw, t->flow_index);
80
Ed Warnickecb9cada2015-12-08 15:45:58 -070081 return s;
82}
83
Eyal Bari8f576482018-05-07 10:13:44 +030084static u8 *
85format_vxlan_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070086{
87 u32 dev_instance = va_arg (*args, u32);
Eyal Bari8f576482018-05-07 10:13:44 +030088 vxlan_main_t *vxm = &vxlan_main;
Jon Loeliger3d460bd2018-02-01 16:36:12 -060089 vxlan_tunnel_t *t;
90
91 if (dev_instance == ~0)
Eyal Bari8f576482018-05-07 10:13:44 +030092 return format (s, "<cached-unused>");
Jon Loeliger3d460bd2018-02-01 16:36:12 -060093
Eyal Bari8f576482018-05-07 10:13:44 +030094 if (dev_instance >= vec_len (vxm->tunnels))
95 return format (s, "<improperly-referenced>");
Jon Loeliger3d460bd2018-02-01 16:36:12 -060096
Eyal Bari8f576482018-05-07 10:13:44 +030097 t = pool_elt_at_index (vxm->tunnels, dev_instance);
Jon Loeliger3d460bd2018-02-01 16:36:12 -060098
99 return format (s, "vxlan_tunnel%d", t->user_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100}
101
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100102static clib_error_t *
103vxlan_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
104{
Eyal Baria93ea422017-02-01 13:36:15 +0200105 u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
106 VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
107 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100108
109 return /* no error */ 0;
110}
111
Eyal Bari8f576482018-05-07 10:13:44 +0300112/* *INDENT-OFF* */
113VNET_DEVICE_CLASS (vxlan_device_class, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114 .name = "VXLAN",
115 .format_device_name = format_vxlan_name,
116 .format_tx_trace = format_vxlan_encap_trace,
Pavel Kotucek988a7c42016-02-29 15:03:08 +0100117 .admin_up_down_function = vxlan_interface_admin_up_down,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118};
Eyal Bari8f576482018-05-07 10:13:44 +0300119/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120
Eyal Bari8f576482018-05-07 10:13:44 +0300121static u8 *
122format_vxlan_header_with_length (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123{
124 u32 dev_instance = va_arg (*args, u32);
125 s = format (s, "unimplemented dev %u", dev_instance);
126 return s;
127}
128
Eyal Bari8f576482018-05-07 10:13:44 +0300129/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130VNET_HW_INTERFACE_CLASS (vxlan_hw_class) = {
131 .name = "VXLAN",
132 .format_header = format_vxlan_header_with_length,
Neale Rannsb80c5362016-10-08 13:03:40 +0100133 .build_rewrite = default_build_rewrite,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134};
Eyal Bari8f576482018-05-07 10:13:44 +0300135/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136
Eyal Baric5b13602016-11-24 19:42:43 +0200137static void
Eyal Bari8f576482018-05-07 10:13:44 +0300138vxlan_tunnel_restack_dpo (vxlan_tunnel_t * t)
Eyal Baric5b13602016-11-24 19:42:43 +0200139{
Eyal Bari8f576482018-05-07 10:13:44 +0300140 u8 is_ip4 = ip46_address_is_ip4 (&t->dst);
Eyal Bari99ed4862018-04-25 13:50:57 +0300141 dpo_id_t dpo = DPO_INVALID;
142 fib_forward_chain_type_t forw_type = is_ip4 ?
Eyal Bari8f576482018-05-07 10:13:44 +0300143 FIB_FORW_CHAIN_TYPE_UNICAST_IP4 : FIB_FORW_CHAIN_TYPE_UNICAST_IP6;
Eyal Baric5b13602016-11-24 19:42:43 +0200144
Eyal Bari99ed4862018-04-25 13:50:57 +0300145 fib_entry_contribute_forwarding (t->fib_entry_index, forw_type, &dpo);
146
147 /* vxlan uses the payload hash as the udp source port
148 * hence the packet's hash is unknown
149 * skip single bucket load balance dpo's */
150 while (DPO_LOAD_BALANCE == dpo.dpoi_type)
151 {
152 load_balance_t *lb = load_balance_get (dpo.dpoi_index);
153 if (lb->lb_n_buckets > 1)
Eyal Bari8f576482018-05-07 10:13:44 +0300154 break;
Eyal Bari99ed4862018-04-25 13:50:57 +0300155
156 dpo_copy (&dpo, load_balance_get_bucket_i (lb, 0));
157 }
158
159 u32 encap_index = is_ip4 ?
Eyal Bari8f576482018-05-07 10:13:44 +0300160 vxlan4_encap_node.index : vxlan6_encap_node.index;
Eyal Bari99ed4862018-04-25 13:50:57 +0300161 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
Eyal Bari8f576482018-05-07 10:13:44 +0300162 dpo_reset (&dpo);
Eyal Baric5b13602016-11-24 19:42:43 +0200163}
John Loc42912d2016-11-07 18:30:47 -0500164
165static vxlan_tunnel_t *
Eyal Bari8f576482018-05-07 10:13:44 +0300166vxlan_tunnel_from_fib_node (fib_node_t * node)
John Loc42912d2016-11-07 18:30:47 -0500167{
Eyal Bari8f576482018-05-07 10:13:44 +0300168 ASSERT (FIB_NODE_TYPE_VXLAN_TUNNEL == node->fn_type);
169 return ((vxlan_tunnel_t *) (((char *) node) -
170 STRUCT_OFFSET_OF (vxlan_tunnel_t, node)));
John Loc42912d2016-11-07 18:30:47 -0500171}
172
173/**
174 * Function definition to backwalk a FIB node -
175 * Here we will restack the new dpo of VXLAN DIP to encap node.
176 */
177static fib_node_back_walk_rc_t
Eyal Bari8f576482018-05-07 10:13:44 +0300178vxlan_tunnel_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
John Loc42912d2016-11-07 18:30:47 -0500179{
Eyal Bari8f576482018-05-07 10:13:44 +0300180 vxlan_tunnel_restack_dpo (vxlan_tunnel_from_fib_node (node));
181 return (FIB_NODE_BACK_WALK_CONTINUE);
John Loc42912d2016-11-07 18:30:47 -0500182}
183
184/**
185 * Function definition to get a FIB node from its index
186 */
Eyal Bari8f576482018-05-07 10:13:44 +0300187static fib_node_t *
John Loc42912d2016-11-07 18:30:47 -0500188vxlan_tunnel_fib_node_get (fib_node_index_t index)
189{
Eyal Bari8f576482018-05-07 10:13:44 +0300190 vxlan_tunnel_t *t;
191 vxlan_main_t *vxm = &vxlan_main;
John Loc42912d2016-11-07 18:30:47 -0500192
Eyal Bari8f576482018-05-07 10:13:44 +0300193 t = pool_elt_at_index (vxm->tunnels, index);
John Loc42912d2016-11-07 18:30:47 -0500194
Eyal Bari8f576482018-05-07 10:13:44 +0300195 return (&t->node);
John Loc42912d2016-11-07 18:30:47 -0500196}
197
198/**
199 * Function definition to inform the FIB node that its last lock has gone.
200 */
201static void
Eyal Bari8f576482018-05-07 10:13:44 +0300202vxlan_tunnel_last_lock_gone (fib_node_t * node)
John Loc42912d2016-11-07 18:30:47 -0500203{
Eyal Bari8f576482018-05-07 10:13:44 +0300204 /*
205 * The VXLAN tunnel is a root of the graph. As such
206 * it never has children and thus is never locked.
207 */
208 ASSERT (0);
John Loc42912d2016-11-07 18:30:47 -0500209}
210
211/*
212 * Virtual function table registered by VXLAN tunnels
213 * for participation in the FIB object graph.
214 */
215const static fib_node_vft_t vxlan_vft = {
Eyal Bari8f576482018-05-07 10:13:44 +0300216 .fnv_get = vxlan_tunnel_fib_node_get,
217 .fnv_last_lock = vxlan_tunnel_last_lock_gone,
218 .fnv_back_walk = vxlan_tunnel_back_walk,
John Loc42912d2016-11-07 18:30:47 -0500219};
220
221
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222#define foreach_copy_field \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223_(vni) \
Eyal Baric5b13602016-11-24 19:42:43 +0200224_(mcast_sw_if_index) \
225_(encap_fib_index) \
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800226_(decap_next_index) \
Eyal Baric5b13602016-11-24 19:42:43 +0200227_(src) \
228_(dst)
Chris Luke99cb3352016-04-26 10:49:53 -0400229
Eyal Bari554075a2018-02-13 15:17:17 +0200230static void
Eyal Baria93ea422017-02-01 13:36:15 +0200231vxlan_rewrite (vxlan_tunnel_t * t, bool is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232{
Eyal Bari8f576482018-05-07 10:13:44 +0300233 union
234 {
eyal bari82e21d72018-04-26 13:14:55 +0300235 ip4_vxlan_header_t h4;
236 ip6_vxlan_header_t h6;
Matthew Smithec8aea12018-05-02 09:55:01 -0500237 } h;
eyal bari82e21d72018-04-26 13:14:55 +0300238 int len = is_ip6 ? sizeof h.h6 : sizeof h.h4;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239
Eyal Bari8f576482018-05-07 10:13:44 +0300240 udp_header_t *udp;
241 vxlan_header_t *vxlan;
Eyal Baria93ea422017-02-01 13:36:15 +0200242 /* Fixed portion of the (outer) ip header */
Matthew Smithec8aea12018-05-02 09:55:01 -0500243
Eyal Bari8f576482018-05-07 10:13:44 +0300244 memset (&h, 0, sizeof (h));
245 if (!is_ip6)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800246 {
Eyal Bari8f576482018-05-07 10:13:44 +0300247 ip4_header_t *ip = &h.h4.ip4;
eyal bari82e21d72018-04-26 13:14:55 +0300248 udp = &h.h4.udp, vxlan = &h.h4.vxlan;
Eyal Baria93ea422017-02-01 13:36:15 +0200249 ip->ip_version_and_header_length = 0x45;
250 ip->ttl = 254;
251 ip->protocol = IP_PROTOCOL_UDP;
Eyal Bari8f576482018-05-07 10:13:44 +0300252
Eyal Baria93ea422017-02-01 13:36:15 +0200253 ip->src_address = t->src.ip4;
254 ip->dst_address = t->dst.ip4;
255
256 /* we fix up the ip4 header length and checksum after-the-fact */
257 ip->checksum = ip4_header_checksum (ip);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800258 }
259 else
260 {
Eyal Bari8f576482018-05-07 10:13:44 +0300261 ip6_header_t *ip = &h.h6.ip6;
eyal bari82e21d72018-04-26 13:14:55 +0300262 udp = &h.h6.udp, vxlan = &h.h6.vxlan;
Eyal Bari8f576482018-05-07 10:13:44 +0300263 ip->ip_version_traffic_class_and_flow_label =
264 clib_host_to_net_u32 (6 << 28);
Eyal Baria93ea422017-02-01 13:36:15 +0200265 ip->hop_limit = 255;
266 ip->protocol = IP_PROTOCOL_UDP;
Eyal Bari8f576482018-05-07 10:13:44 +0300267
Eyal Baria93ea422017-02-01 13:36:15 +0200268 ip->src_address = t->src.ip6;
269 ip->dst_address = t->dst.ip6;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800270 }
271
Eyal Baria93ea422017-02-01 13:36:15 +0200272 /* UDP header, randomize src port on something, maybe? */
273 udp->src_port = clib_host_to_net_u16 (4789);
274 udp->dst_port = clib_host_to_net_u16 (UDP_DST_PORT_vxlan);
275
276 /* VXLAN header */
Eyal Bari8f576482018-05-07 10:13:44 +0300277 vnet_set_vni_and_flags (vxlan, t->vni);
eyal bari82e21d72018-04-26 13:14:55 +0300278 vnet_rewrite_set_data (*t, &h, len);
Eyal Baria93ea422017-02-01 13:36:15 +0200279}
280
281static bool
Eyal Bari8f576482018-05-07 10:13:44 +0300282vxlan_decap_next_is_valid (vxlan_main_t * vxm, u32 is_ip6,
283 u32 decap_next_index)
Eyal Baria93ea422017-02-01 13:36:15 +0200284{
Eyal Bari8f576482018-05-07 10:13:44 +0300285 vlib_main_t *vm = vxm->vlib_main;
286 u32 input_idx = (!is_ip6) ?
287 vxlan4_input_node.index : vxlan6_input_node.index;
Eyal Baria93ea422017-02-01 13:36:15 +0200288 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, input_idx);
289
290 return decap_next_index < r->n_next_nodes;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800291}
292
Eyal Barifff67c82016-12-21 12:45:47 +0200293static uword
Eyal Bari8f576482018-05-07 10:13:44 +0300294vtep_addr_ref (ip46_address_t * ip)
Eyal Barifff67c82016-12-21 12:45:47 +0200295{
Eyal Bari8f576482018-05-07 10:13:44 +0300296 uword *vtep = ip46_address_is_ip4 (ip) ?
297 hash_get (vxlan_main.vtep4, ip->ip4.as_u32) :
298 hash_get_mem (vxlan_main.vtep6, &ip->ip6);
299 if (vtep)
300 return ++(*vtep);
301 ip46_address_is_ip4 (ip) ?
302 hash_set (vxlan_main.vtep4, ip->ip4.as_u32, 1) :
303 hash_set_mem_alloc (&vxlan_main.vtep6, &ip->ip6, 1);
304 return 1;
Eyal Barifff67c82016-12-21 12:45:47 +0200305}
306
307static uword
Eyal Bari8f576482018-05-07 10:13:44 +0300308vtep_addr_unref (ip46_address_t * ip)
Eyal Barifff67c82016-12-21 12:45:47 +0200309{
Eyal Bari8f576482018-05-07 10:13:44 +0300310 uword *vtep = ip46_address_is_ip4 (ip) ?
311 hash_get (vxlan_main.vtep4, ip->ip4.as_u32) :
312 hash_get_mem (vxlan_main.vtep6, &ip->ip6);
313 ASSERT (vtep);
314 if (--(*vtep) != 0)
315 return *vtep;
316 ip46_address_is_ip4 (ip) ?
317 hash_unset (vxlan_main.vtep4, ip->ip4.as_u32) :
318 hash_unset_mem_free (&vxlan_main.vtep6, &ip->ip6);
319 return 0;
Eyal Barifff67c82016-12-21 12:45:47 +0200320}
321
Eyal Bari8f576482018-05-07 10:13:44 +0300322/* *INDENT-OFF* */
323typedef CLIB_PACKED(union
324{
325 struct
326 {
Neale Ranns32e1c012016-11-22 17:07:28 +0000327 fib_node_index_t mfib_entry_index;
Eyal Bari0ded8512017-01-19 17:01:09 +0200328 adj_index_t mcast_adj_index;
329 };
330 u64 as_u64;
331}) mcast_shared_t;
Eyal Bari8f576482018-05-07 10:13:44 +0300332/* *INDENT-ON* */
Eyal Bari0ded8512017-01-19 17:01:09 +0200333
334static inline mcast_shared_t
Eyal Bari8f576482018-05-07 10:13:44 +0300335mcast_shared_get (ip46_address_t * ip)
Eyal Barifff67c82016-12-21 12:45:47 +0200336{
Eyal Bari8f576482018-05-07 10:13:44 +0300337 ASSERT (ip46_address_is_multicast (ip));
338 uword *p = hash_get_mem (vxlan_main.mcast_shared, ip);
339 ASSERT (p);
340 mcast_shared_t ret = {.as_u64 = *p };
341 return ret;
Eyal Barifff67c82016-12-21 12:45:47 +0200342}
343
Eyal Bari0ded8512017-01-19 17:01:09 +0200344static inline void
Eyal Bari8f576482018-05-07 10:13:44 +0300345mcast_shared_add (ip46_address_t * dst, fib_node_index_t mfei, adj_index_t ai)
Neale Ranns32e1c012016-11-22 17:07:28 +0000346{
Eyal Bari8f576482018-05-07 10:13:44 +0300347 mcast_shared_t new_ep = {
348 .mcast_adj_index = ai,
349 .mfib_entry_index = mfei,
350 };
Neale Ranns32e1c012016-11-22 17:07:28 +0000351
Eyal Bari8f576482018-05-07 10:13:44 +0300352 hash_set_mem_alloc (&vxlan_main.mcast_shared, dst, new_ep.as_u64);
Neale Ranns32e1c012016-11-22 17:07:28 +0000353}
354
355static inline void
Eyal Bari8f576482018-05-07 10:13:44 +0300356mcast_shared_remove (ip46_address_t * dst)
Neale Ranns32e1c012016-11-22 17:07:28 +0000357{
Eyal Bari8f576482018-05-07 10:13:44 +0300358 mcast_shared_t ep = mcast_shared_get (dst);
Neale Ranns32e1c012016-11-22 17:07:28 +0000359
Eyal Bari8f576482018-05-07 10:13:44 +0300360 adj_unlock (ep.mcast_adj_index);
361 mfib_table_entry_delete_index (ep.mfib_entry_index, MFIB_SOURCE_VXLAN);
Neale Ranns32e1c012016-11-22 17:07:28 +0000362
Eyal Bari8f576482018-05-07 10:13:44 +0300363 hash_unset_mem_free (&vxlan_main.mcast_shared, dst);
Eyal Barifff67c82016-12-21 12:45:47 +0200364}
365
Eyal Bari8f576482018-05-07 10:13:44 +0300366int vnet_vxlan_add_del_tunnel
367 (vnet_vxlan_add_del_tunnel_args_t * a, u32 * sw_if_indexp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368{
Eyal Bari8f576482018-05-07 10:13:44 +0300369 vxlan_main_t *vxm = &vxlan_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370 vxlan_tunnel_t *t = 0;
Eyal Bari8f576482018-05-07 10:13:44 +0300371 vnet_main_t *vnm = vxm->vnet_main;
Eyal Baridd47eca2018-07-08 08:15:56 +0300372 u64 *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373 u32 sw_if_index = ~0;
Chris Luke99cb3352016-04-26 10:49:53 -0400374 vxlan4_tunnel_key_t key4;
375 vxlan6_tunnel_key_t key6;
John Loc42912d2016-11-07 18:30:47 -0500376 u32 is_ip6 = a->is_ip6;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377
Eyal Baridd47eca2018-07-08 08:15:56 +0300378 int not_found;
John Lo56912c82016-12-08 16:10:02 -0500379 if (!is_ip6)
380 {
Eyal Baridd47eca2018-07-08 08:15:56 +0300381 key4.key[0] = a->dst.ip4.as_u32;
382 key4.key[1] = (((u64) a->encap_fib_index) << 32)
383 | clib_host_to_net_u32 (a->vni << 8);
384 not_found =
385 clib_bihash_search_inline_16_8 (&vxm->vxlan4_tunnel_by_key, &key4);
386 p = &key4.value;
Eyal Bari8f576482018-05-07 10:13:44 +0300387 }
388 else
John Lo56912c82016-12-08 16:10:02 -0500389 {
Eyal Bari0fa56782018-06-04 12:25:05 +0300390 key6.key[0] = a->dst.ip6.as_u64[0];
391 key6.key[1] = a->dst.ip6.as_u64[1];
392 key6.key[2] = (((u64) a->encap_fib_index) << 32)
393 | clib_host_to_net_u32 (a->vni << 8);
Eyal Baridd47eca2018-07-08 08:15:56 +0300394 not_found =
395 clib_bihash_search_inline_24_8 (&vxm->vxlan6_tunnel_by_key, &key6);
396 p = &key6.value;
John Lo56912c82016-12-08 16:10:02 -0500397 }
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600398
Eyal Baridd47eca2018-07-08 08:15:56 +0300399 if (not_found)
400 p = 0;
401
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402 if (a->is_add)
403 {
Eyal Bari8f576482018-05-07 10:13:44 +0300404 l2input_main_t *l2im = &l2input_main;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600405 u32 dev_instance; /* real dev instance tunnel index */
406 u32 user_instance; /* request and actual instance number */
John Loc42912d2016-11-07 18:30:47 -0500407
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408 /* adding a tunnel: tunnel must not already exist */
409 if (p)
Eyal Bari8f576482018-05-07 10:13:44 +0300410 return VNET_API_ERROR_TUNNEL_EXIST;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800412 /*if not set explicitly, default to l2 */
Eyal Bari8f576482018-05-07 10:13:44 +0300413 if (a->decap_next_index == ~0)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800414 a->decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
Eyal Bari8f576482018-05-07 10:13:44 +0300415 if (!vxlan_decap_next_is_valid (vxm, is_ip6, a->decap_next_index))
416 return VNET_API_ERROR_INVALID_DECAP_NEXT;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800417
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418 pool_get_aligned (vxm->tunnels, t, CLIB_CACHE_LINE_BYTES);
Eyal Bari8f576482018-05-07 10:13:44 +0300419 memset (t, 0, sizeof (*t));
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600420 dev_instance = t - vxm->tunnels;
421
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422 /* copy from arg structure */
423#define _(x) t->x = a->x;
424 foreach_copy_field;
425#undef _
Chris Luke99cb3352016-04-26 10:49:53 -0400426
Eyal Bari554075a2018-02-13 15:17:17 +0200427 vxlan_rewrite (t, is_ip6);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600428 /*
429 * Reconcile the real dev_instance and a possible requested instance.
430 */
431 user_instance = a->instance;
Eyal Bari8f576482018-05-07 10:13:44 +0300432 if (user_instance == ~0)
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600433 user_instance = dev_instance;
434 if (hash_get (vxm->instance_used, user_instance))
435 {
436 pool_put (vxm->tunnels, t);
437 return VNET_API_ERROR_INSTANCE_IN_USE;
438 }
439 hash_set (vxm->instance_used, user_instance, 1);
440
Eyal Bari8f576482018-05-07 10:13:44 +0300441 t->dev_instance = dev_instance; /* actual */
442 t->user_instance = user_instance; /* name */
eyal bariaf86a482018-04-17 11:20:27 +0300443 t->flow_index = ~0;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600444
Eyal Bari5ac9bf52017-01-02 14:29:21 +0200445 /* copy the key */
Eyal Baridd47eca2018-07-08 08:15:56 +0300446 int add_failed;
Eyal Bari5ac9bf52017-01-02 14:29:21 +0200447 if (is_ip6)
Eyal Bari0fa56782018-06-04 12:25:05 +0300448 {
449 key6.value = (u64) dev_instance;
Eyal Baridd47eca2018-07-08 08:15:56 +0300450 add_failed = clib_bihash_add_del_24_8 (&vxm->vxlan6_tunnel_by_key,
451 &key6, 1 /*add */ );
Eyal Bari0fa56782018-06-04 12:25:05 +0300452 }
Chris Luke99cb3352016-04-26 10:49:53 -0400453 else
Eyal Baridd47eca2018-07-08 08:15:56 +0300454 {
455 key4.value = (u64) dev_instance;
456 add_failed = clib_bihash_add_del_16_8 (&vxm->vxlan4_tunnel_by_key,
457 &key4, 1 /*add */ );
458 }
459
460 if (add_failed)
461 {
462 pool_put (vxm->tunnels, t);
463 return VNET_API_ERROR_INVALID_REGISTRATION;
464 }
Eyal Barifff67c82016-12-21 12:45:47 +0200465
Eyal Bari554075a2018-02-13 15:17:17 +0200466 t->hw_if_index = vnet_register_interface
Eyal Bari8f576482018-05-07 10:13:44 +0300467 (vnm, vxlan_device_class.index, dev_instance,
468 vxlan_hw_class.index, dev_instance);
469 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, t->hw_if_index);
John Loe5453d02018-01-23 19:21:34 -0500470
471 /* Set vxlan tunnel output node */
472 u32 encap_index = !is_ip6 ?
Eyal Bari8f576482018-05-07 10:13:44 +0300473 vxlan4_encap_node.index : vxlan6_encap_node.index;
Eyal Bari554075a2018-02-13 15:17:17 +0200474 vnet_set_interface_output_node (vnm, t->hw_if_index, encap_index);
John Loe5453d02018-01-23 19:21:34 -0500475
Ed Warnickecb9cada2015-12-08 15:45:58 -0700476 t->sw_if_index = sw_if_index = hi->sw_if_index;
John Loe5453d02018-01-23 19:21:34 -0500477
Eyal Bari8f576482018-05-07 10:13:44 +0300478 vec_validate_init_empty (vxm->tunnel_index_by_sw_if_index, sw_if_index,
479 ~0);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600480 vxm->tunnel_index_by_sw_if_index[sw_if_index] = dev_instance;
Dave Wallace60231f32015-12-17 21:04:30 -0500481
John Loc42912d2016-11-07 18:30:47 -0500482 /* setup l2 input config with l2 feature and bd 0 to drop packet */
483 vec_validate (l2im->configs, sw_if_index);
484 l2im->configs[sw_if_index].feature_bitmap = L2INPUT_FEAT_DROP;
485 l2im->configs[sw_if_index].bd_index = 0;
John Loe5453d02018-01-23 19:21:34 -0500486
Eyal Bari8f576482018-05-07 10:13:44 +0300487 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
Eyal Bari3212c572017-03-06 11:47:50 +0200488 si->flags &= ~VNET_SW_INTERFACE_FLAG_HIDDEN;
John Loe5453d02018-01-23 19:21:34 -0500489 vnet_sw_interface_set_flags (vnm, sw_if_index,
Eyal Bari8f576482018-05-07 10:13:44 +0300490 VNET_SW_INTERFACE_FLAG_ADMIN_UP);
Eyal Bari3212c572017-03-06 11:47:50 +0200491
Eyal Bari8f576482018-05-07 10:13:44 +0300492 fib_node_init (&t->node, FIB_NODE_TYPE_VXLAN_TUNNEL);
Eyal Baric5b13602016-11-24 19:42:43 +0200493 fib_prefix_t tun_dst_pfx;
Eyal Baric5b13602016-11-24 19:42:43 +0200494 vnet_flood_class_t flood_class = VNET_FLOOD_CLASS_TUNNEL_NORMAL;
John Loc42912d2016-11-07 18:30:47 -0500495
Eyal Bari8f576482018-05-07 10:13:44 +0300496 fib_prefix_from_ip46_addr (&t->dst, &tun_dst_pfx);
497 if (!ip46_address_is_multicast (&t->dst))
498 {
499 /* Unicast tunnel -
500 * source the FIB entry for the tunnel's destination
501 * and become a child thereof. The tunnel will then get poked
502 * when the forwarding for the entry updates, and the tunnel can
503 * re-stack accordingly
504 */
505 vtep_addr_ref (&t->src);
506 t->fib_entry_index = fib_table_entry_special_add
507 (t->encap_fib_index, &tun_dst_pfx, FIB_SOURCE_RR,
Neale Rannsa0558302017-04-13 00:44:52 -0700508 FIB_ENTRY_FLAG_NONE);
Eyal Bari8f576482018-05-07 10:13:44 +0300509 t->sibling_index = fib_entry_child_add
510 (t->fib_entry_index, FIB_NODE_TYPE_VXLAN_TUNNEL, dev_instance);
511 vxlan_tunnel_restack_dpo (t);
512 }
Eyal Barifff67c82016-12-21 12:45:47 +0200513 else
Eyal Bari8f576482018-05-07 10:13:44 +0300514 {
515 /* Multicast tunnel -
John Lo56912c82016-12-08 16:10:02 -0500516 * as the same mcast group can be used for mutiple mcast tunnels
517 * with different VNIs, create the output fib adjecency only if
518 * it does not already exist
519 */
Eyal Bari8f576482018-05-07 10:13:44 +0300520 fib_protocol_t fp = fib_ip_proto (is_ip6);
Eyal Baric5b13602016-11-24 19:42:43 +0200521
Eyal Bari8f576482018-05-07 10:13:44 +0300522 if (vtep_addr_ref (&t->dst) == 1)
523 {
524 fib_node_index_t mfei;
525 adj_index_t ai;
526 fib_route_path_t path = {
527 .frp_proto = fib_proto_to_dpo (fp),
528 .frp_addr = zero_addr,
529 .frp_sw_if_index = 0xffffffff,
530 .frp_fib_index = ~0,
531 .frp_weight = 0,
532 .frp_flags = FIB_ROUTE_PATH_LOCAL,
533 };
534 const mfib_prefix_t mpfx = {
535 .fp_proto = fp,
536 .fp_len = (is_ip6 ? 128 : 32),
537 .fp_grp_addr = tun_dst_pfx.fp_addr,
538 };
Eyal Barifff67c82016-12-21 12:45:47 +0200539
Eyal Bari8f576482018-05-07 10:13:44 +0300540 /*
541 * Setup the (*,G) to receive traffic on the mcast group
542 * - the forwarding interface is for-us
543 * - the accepting interface is that from the API
544 */
545 mfib_table_entry_path_update (t->encap_fib_index,
546 &mpfx,
547 MFIB_SOURCE_VXLAN,
548 &path, MFIB_ITF_FLAG_FORWARD);
Neale Ranns32e1c012016-11-22 17:07:28 +0000549
Eyal Bari8f576482018-05-07 10:13:44 +0300550 path.frp_sw_if_index = a->mcast_sw_if_index;
551 path.frp_flags = FIB_ROUTE_PATH_FLAG_NONE;
552 mfei = mfib_table_entry_path_update (t->encap_fib_index,
553 &mpfx,
554 MFIB_SOURCE_VXLAN,
555 &path,
556 MFIB_ITF_FLAG_ACCEPT);
Neale Ranns32e1c012016-11-22 17:07:28 +0000557
Eyal Bari8f576482018-05-07 10:13:44 +0300558 /*
559 * Create the mcast adjacency to send traffic to the group
560 */
561 ai = adj_mcast_add_or_lock (fp,
562 fib_proto_to_link (fp),
563 a->mcast_sw_if_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000564
Eyal Bari8f576482018-05-07 10:13:44 +0300565 /*
566 * create a new end-point
567 */
568 mcast_shared_add (&t->dst, mfei, ai);
569 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000570
Eyal Bari8f576482018-05-07 10:13:44 +0300571 dpo_id_t dpo = DPO_INVALID;
572 mcast_shared_t ep = mcast_shared_get (&t->dst);
Neale Ranns32e1c012016-11-22 17:07:28 +0000573
Eyal Bari8f576482018-05-07 10:13:44 +0300574 /* Stack shared mcast dst mac addr rewrite on encap */
575 dpo_set (&dpo, DPO_ADJACENCY_MCAST,
576 fib_proto_to_dpo (fp), ep.mcast_adj_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000577
Eyal Bari8f576482018-05-07 10:13:44 +0300578 dpo_stack_from_node (encap_index, &t->next_dpo, &dpo);
579 dpo_reset (&dpo);
Eyal Barifff67c82016-12-21 12:45:47 +0200580 flood_class = VNET_FLOOD_CLASS_TUNNEL_MASTER;
John Lo56912c82016-12-08 16:10:02 -0500581 }
582
Eyal Bari8f576482018-05-07 10:13:44 +0300583 vnet_get_sw_interface (vnet_get_main (), sw_if_index)->flood_class =
584 flood_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700585 }
586 else
587 {
588 /* deleting a tunnel: tunnel must exist */
John Lo37682e12016-11-30 12:51:39 -0500589 if (!p)
Eyal Bari8f576482018-05-07 10:13:44 +0300590 return VNET_API_ERROR_NO_SUCH_ENTRY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700591
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600592 u32 instance = p[0];
593 t = pool_elt_at_index (vxm->tunnels, instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594
Eyal Baribc799c92017-04-06 03:26:59 +0300595 sw_if_index = t->sw_if_index;
Eyal Bari8f576482018-05-07 10:13:44 +0300596 vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600598 vxm->tunnel_index_by_sw_if_index[sw_if_index] = ~0;
Dave Wallace60231f32015-12-17 21:04:30 -0500599
John Loc42912d2016-11-07 18:30:47 -0500600 if (!is_ip6)
Eyal Baridd47eca2018-07-08 08:15:56 +0300601 clib_bihash_add_del_16_8 (&vxm->vxlan4_tunnel_by_key, &key4,
602 0 /*del */ );
Chris Luke99cb3352016-04-26 10:49:53 -0400603 else
Eyal Baridd47eca2018-07-08 08:15:56 +0300604 clib_bihash_add_del_24_8 (&vxm->vxlan6_tunnel_by_key, &key6,
Eyal Bari0fa56782018-06-04 12:25:05 +0300605 0 /*del */ );
Eyal Barifff67c82016-12-21 12:45:47 +0200606
Eyal Bari8f576482018-05-07 10:13:44 +0300607 if (!ip46_address_is_multicast (&t->dst))
608 {
eyal bariaf86a482018-04-17 11:20:27 +0300609 if (t->flow_index != ~0)
610 vnet_flow_del (vnm, t->flow_index);
611
Eyal Bari8f576482018-05-07 10:13:44 +0300612 vtep_addr_unref (&t->src);
613 fib_entry_child_remove (t->fib_entry_index, t->sibling_index);
614 fib_table_entry_delete_index (t->fib_entry_index, FIB_SOURCE_RR);
615 }
616 else if (vtep_addr_unref (&t->dst) == 0)
617 {
618 mcast_shared_remove (&t->dst);
619 }
Eyal Barifff67c82016-12-21 12:45:47 +0200620
Eyal Bari554075a2018-02-13 15:17:17 +0200621 vnet_delete_hw_interface (vnm, t->hw_if_index);
Jon Loeliger25ef2b52018-02-23 17:02:41 -0600622 hash_unset (vxm->instance_used, t->user_instance);
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600623
Eyal Bari8f576482018-05-07 10:13:44 +0300624 fib_node_deinit (&t->node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625 pool_put (vxm->tunnels, t);
626 }
627
628 if (sw_if_indexp)
Eyal Bari8f576482018-05-07 10:13:44 +0300629 *sw_if_indexp = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630
631 return 0;
632}
633
Eyal Bari8f576482018-05-07 10:13:44 +0300634static uword
635get_decap_next_for_node (u32 node_index, u32 ipv4_set)
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800636{
Eyal Bari8f576482018-05-07 10:13:44 +0300637 vxlan_main_t *vxm = &vxlan_main;
638 vlib_main_t *vm = vxm->vlib_main;
Eyal Bari0765c6e2017-01-29 12:40:50 +0200639 uword input_node = (ipv4_set) ? vxlan4_input_node.index :
640 vxlan6_input_node.index;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800641
Eyal Bari0765c6e2017-01-29 12:40:50 +0200642 return vlib_node_add_next (vm, input_node, node_index);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800643}
644
Eyal Bari8f576482018-05-07 10:13:44 +0300645static uword
646unformat_decap_next (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647{
Eyal Bari8f576482018-05-07 10:13:44 +0300648 u32 *result = va_arg (*args, u32 *);
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800649 u32 ipv4_set = va_arg (*args, int);
Eyal Bari8f576482018-05-07 10:13:44 +0300650 vxlan_main_t *vxm = &vxlan_main;
651 vlib_main_t *vm = vxm->vlib_main;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800652 u32 node_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700653 u32 tmp;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800654
Ed Warnickecb9cada2015-12-08 15:45:58 -0700655 if (unformat (input, "l2"))
656 *result = VXLAN_INPUT_NEXT_L2_INPUT;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800657 else if (unformat (input, "node %U", unformat_vlib_node, vm, &node_index))
Eyal Bari8f576482018-05-07 10:13:44 +0300658 *result = get_decap_next_for_node (node_index, ipv4_set);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700659 else if (unformat (input, "%d", &tmp))
660 *result = tmp;
661 else
662 return 0;
663 return 1;
664}
665
666static clib_error_t *
667vxlan_add_del_tunnel_command_fn (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +0300668 unformat_input_t * input,
669 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700670{
Eyal Bari8f576482018-05-07 10:13:44 +0300671 unformat_input_t _line_input, *line_input = &_line_input;
672 ip46_address_t src = ip46_address_initializer, dst =
673 ip46_address_initializer;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700674 u8 is_add = 1;
675 u8 src_set = 0;
676 u8 dst_set = 0;
Eyal Baric5b13602016-11-24 19:42:43 +0200677 u8 grp_set = 0;
Chris Luke99cb3352016-04-26 10:49:53 -0400678 u8 ipv4_set = 0;
679 u8 ipv6_set = 0;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600680 u32 instance = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700681 u32 encap_fib_index = 0;
Eyal Baric5b13602016-11-24 19:42:43 +0200682 u32 mcast_sw_if_index = ~0;
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800683 u32 decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700684 u32 vni = 0;
Eyal Bariaa0180b2018-03-27 11:43:57 +0300685 u32 table_id;
Eyal Bari0fa56782018-06-04 12:25:05 +0300686 clib_error_t *parse_error = NULL;
Eyal Baric5b13602016-11-24 19:42:43 +0200687
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688 /* Get a line of input. */
Eyal Bari8f576482018-05-07 10:13:44 +0300689 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700690 return 0;
691
Eyal Bari8f576482018-05-07 10:13:44 +0300692 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
693 {
694 if (unformat (line_input, "del"))
695 {
696 is_add = 0;
697 }
698 else if (unformat (line_input, "instance %d", &instance))
699 ;
700 else if (unformat (line_input, "src %U",
701 unformat_ip46_address, &src, IP46_TYPE_ANY))
702 {
703 src_set = 1;
704 ip46_address_is_ip4 (&src) ? (ipv4_set = 1) : (ipv6_set = 1);
705 }
706 else if (unformat (line_input, "dst %U",
707 unformat_ip46_address, &dst, IP46_TYPE_ANY))
708 {
709 dst_set = 1;
710 ip46_address_is_ip4 (&dst) ? (ipv4_set = 1) : (ipv6_set = 1);
711 }
712 else if (unformat (line_input, "group %U %U",
713 unformat_ip46_address, &dst, IP46_TYPE_ANY,
714 unformat_vnet_sw_interface,
715 vnet_get_main (), &mcast_sw_if_index))
716 {
717 grp_set = dst_set = 1;
718 ip46_address_is_ip4 (&dst) ? (ipv4_set = 1) : (ipv6_set = 1);
719 }
720 else if (unformat (line_input, "encap-vrf-id %d", &table_id))
721 {
722 encap_fib_index =
723 fib_table_find (fib_ip_proto (ipv6_set), table_id);
Eyal Bari8f576482018-05-07 10:13:44 +0300724 }
725 else if (unformat (line_input, "decap-next %U", unformat_decap_next,
726 &decap_next_index, ipv4_set))
727 ;
728 else if (unformat (line_input, "vni %d", &vni))
729 ;
730 else
731 {
Eyal Bari0fa56782018-06-04 12:25:05 +0300732 parse_error = clib_error_return (0, "parse error: '%U'",
733 format_unformat_error, line_input);
Eyal Bari8f576482018-05-07 10:13:44 +0300734 break;
735 }
736 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700737
Eyal Bariaa0180b2018-03-27 11:43:57 +0300738 unformat_free (line_input);
739
Eyal Bari0fa56782018-06-04 12:25:05 +0300740 if (parse_error)
741 return parse_error;
742
743 if (encap_fib_index == ~0)
744 return clib_error_return (0, "nonexistent encap-vrf-id %d", table_id);
Eyal Bariaa0180b2018-03-27 11:43:57 +0300745
Ed Warnickecb9cada2015-12-08 15:45:58 -0700746 if (src_set == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300747 return clib_error_return (0, "tunnel src address not specified");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700748
749 if (dst_set == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300750 return clib_error_return (0, "tunnel dst address not specified");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700751
Eyal Bari8f576482018-05-07 10:13:44 +0300752 if (grp_set && !ip46_address_is_multicast (&dst))
Eyal Bariaa0180b2018-03-27 11:43:57 +0300753 return clib_error_return (0, "tunnel group address not multicast");
Eyal Baric5b13602016-11-24 19:42:43 +0200754
Eyal Bari8f576482018-05-07 10:13:44 +0300755 if (grp_set == 0 && ip46_address_is_multicast (&dst))
Eyal Bariaa0180b2018-03-27 11:43:57 +0300756 return clib_error_return (0, "dst address must be unicast");
John Lo56912c82016-12-08 16:10:02 -0500757
Eyal Baric5b13602016-11-24 19:42:43 +0200758 if (grp_set && mcast_sw_if_index == ~0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300759 return clib_error_return (0, "tunnel nonexistent multicast device");
Eyal Baric5b13602016-11-24 19:42:43 +0200760
Chris Luke99cb3352016-04-26 10:49:53 -0400761 if (ipv4_set && ipv6_set)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300762 return clib_error_return (0, "both IPv4 and IPv6 addresses specified");
Chris Luke99cb3352016-04-26 10:49:53 -0400763
Eyal Bari8f576482018-05-07 10:13:44 +0300764 if (ip46_address_cmp (&src, &dst) == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300765 return clib_error_return (0, "src and dst addresses are identical");
Chris Luke99cb3352016-04-26 10:49:53 -0400766
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800767 if (decap_next_index == ~0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300768 return clib_error_return (0, "next node not found");
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800769
Ed Warnickecb9cada2015-12-08 15:45:58 -0700770 if (vni == 0)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300771 return clib_error_return (0, "vni not specified");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700772
Eyal Bari8f576482018-05-07 10:13:44 +0300773 if (vni >> 24)
Eyal Bariaa0180b2018-03-27 11:43:57 +0300774 return clib_error_return (0, "vni %d out of range", vni);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700775
Eyal Bariaa0180b2018-03-27 11:43:57 +0300776 vnet_vxlan_add_del_tunnel_args_t a = {
Eyal Bari8f576482018-05-07 10:13:44 +0300777 .is_add = is_add,
778 .is_ip6 = ipv6_set,
779 .instance = instance,
Eyal Bariaa0180b2018-03-27 11:43:57 +0300780#define _(x) .x = x,
Eyal Bari8f576482018-05-07 10:13:44 +0300781 foreach_copy_field
Ed Warnickecb9cada2015-12-08 15:45:58 -0700782#undef _
Eyal Bariaa0180b2018-03-27 11:43:57 +0300783 };
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600784
Eyal Bariaa0180b2018-03-27 11:43:57 +0300785 u32 tunnel_sw_if_index;
786 int rv = vnet_vxlan_add_del_tunnel (&a, &tunnel_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700787
Eyal Bari8f576482018-05-07 10:13:44 +0300788 switch (rv)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700789 {
790 case 0:
Pierre Pfister78ea9c22016-05-23 12:51:54 +0100791 if (is_add)
Eyal Bari8f576482018-05-07 10:13:44 +0300792 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
793 vnet_get_main (), tunnel_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700794 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700795
796 case VNET_API_ERROR_TUNNEL_EXIST:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300797 return clib_error_return (0, "tunnel already exists...");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700798
799 case VNET_API_ERROR_NO_SUCH_ENTRY:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300800 return clib_error_return (0, "tunnel does not exist...");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600802 case VNET_API_ERROR_INSTANCE_IN_USE:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300803 return clib_error_return (0, "Instance is in use");
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600804
Ed Warnickecb9cada2015-12-08 15:45:58 -0700805 default:
Eyal Bariaa0180b2018-03-27 11:43:57 +0300806 return clib_error_return
Eyal Bari8f576482018-05-07 10:13:44 +0300807 (0, "vnet_vxlan_add_del_tunnel returned %d", rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700808 }
809
Eyal Bari0fa56782018-06-04 12:25:05 +0300810 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700811}
812
Billy McFallc5d9cda2016-09-14 10:39:58 -0400813/*?
814 * Add or delete a VXLAN Tunnel.
815 *
816 * VXLAN provides the features needed to allow L2 bridge domains (BDs)
817 * to span multiple servers. This is done by building an L2 overlay on
818 * top of an L3 network underlay using VXLAN tunnels.
819 *
820 * This makes it possible for servers to be co-located in the same data
821 * center or be separated geographically as long as they are reachable
822 * through the underlay L3 network.
823 *
824 * You can refer to this kind of L2 overlay bridge domain as a VXLAN
825 * (Virtual eXtensible VLAN) segment.
826 *
827 * @cliexpar
828 * Example of how to create a VXLAN Tunnel:
John Loc42912d2016-11-07 18:30:47 -0500829 * @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 -0600830 * Example of how to create a VXLAN Tunnel with a known name, vxlan_tunnel42:
831 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 instance 42}
Eyal Baridd47eca2018-07-08 08:15:56 +0300832 * Example of how to create a multicast VXLAN Tunnel with a known name, vxlan_tunnel23:
833 * @cliexcmd{create vxlan tunnel src 10.0.3.1 group 239.1.1.1 GigabitEtherner0/8/0 instance 23}
Billy McFallc5d9cda2016-09-14 10:39:58 -0400834 * Example of how to delete a VXLAN Tunnel:
835 * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 del}
836 ?*/
837/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700838VLIB_CLI_COMMAND (create_vxlan_tunnel_command, static) = {
839 .path = "create vxlan tunnel",
Eyal Bari8f576482018-05-07 10:13:44 +0300840 .short_help =
Eyal Baric5b13602016-11-24 19:42:43 +0200841 "create vxlan tunnel src <local-vtep-addr>"
842 " {dst <remote-vtep-addr>|group <mcast-vtep-addr> <intf-name>} vni <nn>"
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600843 " [instance <id>]"
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800844 " [encap-vrf-id <nn>] [decap-next [l2|node <name>]] [del]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700845 .function = vxlan_add_del_tunnel_command_fn,
846};
Billy McFallc5d9cda2016-09-14 10:39:58 -0400847/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700848
849static clib_error_t *
850show_vxlan_tunnel_command_fn (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +0300851 unformat_input_t * input,
852 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700853{
Eyal Bari8f576482018-05-07 10:13:44 +0300854 vxlan_main_t *vxm = &vxlan_main;
855 vxlan_tunnel_t *t;
Eyal Bari0fa56782018-06-04 12:25:05 +0300856 int raw = 0;
Eyal Bari0fa56782018-06-04 12:25:05 +0300857
Neale Ranns16be62e2018-07-30 11:59:22 -0700858 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Eyal Bari0fa56782018-06-04 12:25:05 +0300859 {
Neale Ranns16be62e2018-07-30 11:59:22 -0700860 if (unformat (input, "raw"))
Eyal Bari0fa56782018-06-04 12:25:05 +0300861 raw = 1;
862 else
Neale Ranns16be62e2018-07-30 11:59:22 -0700863 return clib_error_return (0, "parse error: '%U'",
864 format_unformat_error, input);
Eyal Bari0fa56782018-06-04 12:25:05 +0300865 }
866
Ed Warnickecb9cada2015-12-08 15:45:58 -0700867 if (pool_elts (vxm->tunnels) == 0)
868 vlib_cli_output (vm, "No vxlan tunnels configured...");
869
Eyal Bari8f576482018-05-07 10:13:44 +0300870/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700871 pool_foreach (t, vxm->tunnels,
872 ({
873 vlib_cli_output (vm, "%U", format_vxlan_tunnel, t);
874 }));
Eyal Bari8f576482018-05-07 10:13:44 +0300875/* *INDENT-ON* */
876
Eyal Bari0fa56782018-06-04 12:25:05 +0300877 if (raw)
Eyal Baridd47eca2018-07-08 08:15:56 +0300878 {
879 vlib_cli_output (vm, "Raw IPv4 Hash Table:\n%U\n",
880 format_bihash_16_8, &vxm->vxlan4_tunnel_by_key,
881 1 /* verbose */ );
882 vlib_cli_output (vm, "Raw IPv6 Hash Table:\n%U\n",
883 format_bihash_24_8, &vxm->vxlan6_tunnel_by_key,
884 1 /* verbose */ );
885 }
Eyal Bari0fa56782018-06-04 12:25:05 +0300886
Ed Warnickecb9cada2015-12-08 15:45:58 -0700887 return 0;
888}
889
Billy McFallc5d9cda2016-09-14 10:39:58 -0400890/*?
891 * Display all the VXLAN Tunnel entries.
892 *
893 * @cliexpar
894 * Example of how to display the VXLAN Tunnel entries:
895 * @cliexstart{show vxlan tunnel}
Hongjun Nibeb4bf72016-11-25 00:03:46 +0800896 * [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 -0400897 * @cliexend
898 ?*/
899/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700900VLIB_CLI_COMMAND (show_vxlan_tunnel_command, static) = {
901 .path = "show vxlan tunnel",
Eyal Bari0fa56782018-06-04 12:25:05 +0300902 .short_help = "show vxlan tunnel [raw]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700903 .function = show_vxlan_tunnel_command_fn,
904};
Billy McFallc5d9cda2016-09-14 10:39:58 -0400905/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906
Chris Luke99cb3352016-04-26 10:49:53 -0400907
Eyal Bari8f576482018-05-07 10:13:44 +0300908void
909vnet_int_vxlan_bypass_mode (u32 sw_if_index, u8 is_ip6, u8 is_enable)
John Lo2b81eb82017-01-30 13:12:10 -0500910{
911 if (is_ip6)
912 vnet_feature_enable_disable ("ip6-unicast", "ip6-vxlan-bypass",
913 sw_if_index, is_enable, 0, 0);
914 else
915 vnet_feature_enable_disable ("ip4-unicast", "ip4-vxlan-bypass",
916 sw_if_index, is_enable, 0, 0);
917}
918
919
920static clib_error_t *
921set_ip_vxlan_bypass (u32 is_ip6,
Eyal Bari8f576482018-05-07 10:13:44 +0300922 unformat_input_t * input, vlib_cli_command_t * cmd)
John Lo2b81eb82017-01-30 13:12:10 -0500923{
Eyal Bari8f576482018-05-07 10:13:44 +0300924 unformat_input_t _line_input, *line_input = &_line_input;
925 vnet_main_t *vnm = vnet_get_main ();
926 clib_error_t *error = 0;
John Lo2b81eb82017-01-30 13:12:10 -0500927 u32 sw_if_index, is_enable;
928
929 sw_if_index = ~0;
930 is_enable = 1;
931
Eyal Bari8f576482018-05-07 10:13:44 +0300932 if (!unformat_user (input, unformat_line_input, line_input))
John Lo2b81eb82017-01-30 13:12:10 -0500933 return 0;
934
935 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
936 {
Eyal Bari8f576482018-05-07 10:13:44 +0300937 if (unformat_user
938 (line_input, unformat_vnet_sw_interface, vnm, &sw_if_index))
939 ;
John Lo2b81eb82017-01-30 13:12:10 -0500940 else if (unformat (line_input, "del"))
Eyal Bari8f576482018-05-07 10:13:44 +0300941 is_enable = 0;
John Lo2b81eb82017-01-30 13:12:10 -0500942 else
Eyal Bari8f576482018-05-07 10:13:44 +0300943 {
John Lo2b81eb82017-01-30 13:12:10 -0500944 error = unformat_parse_error (line_input);
945 goto done;
946 }
947 }
948
949 if (~0 == sw_if_index)
950 {
951 error = clib_error_return (0, "unknown interface `%U'",
952 format_unformat_error, line_input);
953 goto done;
954 }
955
956 vnet_int_vxlan_bypass_mode (sw_if_index, is_ip6, is_enable);
957
Eyal Bari8f576482018-05-07 10:13:44 +0300958done:
Billy McFalla9a20e72017-02-15 11:39:12 -0500959 unformat_free (line_input);
960
John Lo2b81eb82017-01-30 13:12:10 -0500961 return error;
962}
963
964static clib_error_t *
965set_ip4_vxlan_bypass (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +0300966 unformat_input_t * input, vlib_cli_command_t * cmd)
John Lo2b81eb82017-01-30 13:12:10 -0500967{
968 return set_ip_vxlan_bypass (0, input, cmd);
969}
970
971/*?
Eyal Bari8f576482018-05-07 10:13:44 +0300972 * This command adds the 'ip4-vxlan-bypass' graph node for a given interface.
John Lo2b81eb82017-01-30 13:12:10 -0500973 * By adding the IPv4 vxlan-bypass graph node to an interface, the node checks
Eyal Bari8f576482018-05-07 10:13:44 +0300974 * for and validate input vxlan packet and bypass ip4-lookup, ip4-local,
975 * ip4-udp-lookup nodes to speedup vxlan packet forwarding. This node will
John Lo2b81eb82017-01-30 13:12:10 -0500976 * cause extra overhead to for non-vxlan packets which is kept at a minimum.
977 *
978 * @cliexpar
979 * @parblock
980 * Example of graph node before ip4-vxlan-bypass is enabled:
981 * @cliexstart{show vlib graph ip4-vxlan-bypass}
982 * Name Next Previous
983 * ip4-vxlan-bypass error-drop [0]
984 * vxlan4-input [1]
Eyal Bari8f576482018-05-07 10:13:44 +0300985 * ip4-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -0500986 * @cliexend
987 *
988 * Example of how to enable ip4-vxlan-bypass on an interface:
989 * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0}
990 *
991 * Example of graph node after ip4-vxlan-bypass is enabled:
992 * @cliexstart{show vlib graph ip4-vxlan-bypass}
Eyal Bari8f576482018-05-07 10:13:44 +0300993 * Name Next Previous
994 * ip4-vxlan-bypass error-drop [0] ip4-input
995 * vxlan4-input [1] ip4-input-no-checksum
996 * ip4-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -0500997 * @cliexend
998 *
999 * Example of how to display the feature enabed on an interface:
1000 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1001 * IP feature paths configured on GigabitEthernet2/0/0...
1002 * ...
1003 * ipv4 unicast:
1004 * ip4-vxlan-bypass
1005 * ip4-lookup
1006 * ...
1007 * @cliexend
1008 *
1009 * Example of how to disable ip4-vxlan-bypass on an interface:
1010 * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0 del}
1011 * @endparblock
1012?*/
1013/* *INDENT-OFF* */
1014VLIB_CLI_COMMAND (set_interface_ip_vxlan_bypass_command, static) = {
1015 .path = "set interface ip vxlan-bypass",
1016 .function = set_ip4_vxlan_bypass,
1017 .short_help = "set interface ip vxlan-bypass <interface> [del]",
1018};
1019/* *INDENT-ON* */
1020
1021static clib_error_t *
1022set_ip6_vxlan_bypass (vlib_main_t * vm,
Eyal Bari8f576482018-05-07 10:13:44 +03001023 unformat_input_t * input, vlib_cli_command_t * cmd)
John Lo2b81eb82017-01-30 13:12:10 -05001024{
1025 return set_ip_vxlan_bypass (1, input, cmd);
1026}
1027
1028/*?
Eyal Bari8f576482018-05-07 10:13:44 +03001029 * This command adds the 'ip6-vxlan-bypass' graph node for a given interface.
John Lo2b81eb82017-01-30 13:12:10 -05001030 * By adding the IPv6 vxlan-bypass graph node to an interface, the node checks
Eyal Bari8f576482018-05-07 10:13:44 +03001031 * for and validate input vxlan packet and bypass ip6-lookup, ip6-local,
1032 * ip6-udp-lookup nodes to speedup vxlan packet forwarding. This node will
John Lo2b81eb82017-01-30 13:12:10 -05001033 * cause extra overhead to for non-vxlan packets which is kept at a minimum.
1034 *
1035 * @cliexpar
1036 * @parblock
1037 * Example of graph node before ip6-vxlan-bypass is enabled:
1038 * @cliexstart{show vlib graph ip6-vxlan-bypass}
1039 * Name Next Previous
1040 * ip6-vxlan-bypass error-drop [0]
1041 * vxlan6-input [1]
Eyal Bari8f576482018-05-07 10:13:44 +03001042 * ip6-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001043 * @cliexend
1044 *
1045 * Example of how to enable ip6-vxlan-bypass on an interface:
1046 * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0}
1047 *
1048 * Example of graph node after ip6-vxlan-bypass is enabled:
1049 * @cliexstart{show vlib graph ip6-vxlan-bypass}
Eyal Bari8f576482018-05-07 10:13:44 +03001050 * Name Next Previous
1051 * ip6-vxlan-bypass error-drop [0] ip6-input
1052 * vxlan6-input [1] ip4-input-no-checksum
1053 * ip6-lookup [2]
John Lo2b81eb82017-01-30 13:12:10 -05001054 * @cliexend
1055 *
1056 * Example of how to display the feature enabed on an interface:
1057 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
1058 * IP feature paths configured on GigabitEthernet2/0/0...
1059 * ...
1060 * ipv6 unicast:
1061 * ip6-vxlan-bypass
1062 * ip6-lookup
1063 * ...
1064 * @cliexend
1065 *
1066 * Example of how to disable ip6-vxlan-bypass on an interface:
1067 * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0 del}
1068 * @endparblock
1069?*/
1070/* *INDENT-OFF* */
1071VLIB_CLI_COMMAND (set_interface_ip6_vxlan_bypass_command, static) = {
1072 .path = "set interface ip6 vxlan-bypass",
1073 .function = set_ip6_vxlan_bypass,
1074 .short_help = "set interface ip vxlan-bypass <interface> [del]",
1075};
1076/* *INDENT-ON* */
1077
eyal bariaf86a482018-04-17 11:20:27 +03001078int
1079vnet_vxlan_add_del_rx_flow (u32 hw_if_index, u32 t_index, int is_add)
1080{
1081 vxlan_main_t *vxm = &vxlan_main;
1082 vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, t_index);
1083 vnet_main_t *vnm = vnet_get_main ();
1084 if (is_add)
1085 {
1086 if (t->flow_index == ~0)
1087 {
1088 vxlan_main_t *vxm = &vxlan_main;
1089 vnet_flow_t flow = {
1090 .actions =
1091 VNET_FLOW_ACTION_REDIRECT_TO_NODE | VNET_FLOW_ACTION_MARK,
1092 .mark_flow_id = t->dev_instance + vxm->flow_id_start,
1093 .redirect_node_index = vxlan4_flow_input_node.index,
1094 .type = VNET_FLOW_TYPE_IP4_VXLAN,
1095 .ip4_vxlan = {
1096 .src_addr = t->dst.ip4,
1097 .dst_addr = t->src.ip4,
1098 .dst_port = UDP_DST_PORT_vxlan,
1099 .vni = t->vni,
1100 }
1101 ,
1102 };
1103 vnet_flow_add (vnm, &flow, &t->flow_index);
1104 }
1105 return vnet_flow_enable (vnm, t->flow_index, hw_if_index);
1106 }
1107 /* flow index is removed when the tunnel is deleted */
1108 return vnet_flow_disable (vnm, t->flow_index, hw_if_index);
1109}
1110
1111u32
1112vnet_vxlan_get_tunnel_index (u32 sw_if_index)
1113{
1114 vxlan_main_t *vxm = &vxlan_main;
1115
Eyal Baricd307742018-07-22 12:45:15 +03001116 if (sw_if_index >= vec_len (vxm->tunnel_index_by_sw_if_index))
eyal bariaf86a482018-04-17 11:20:27 +03001117 return ~0;
1118 return vxm->tunnel_index_by_sw_if_index[sw_if_index];
1119}
1120
1121static clib_error_t *
1122vxlan_offload_command_fn (vlib_main_t * vm,
1123 unformat_input_t * input, vlib_cli_command_t * cmd)
1124{
1125 unformat_input_t _line_input, *line_input = &_line_input;
1126
1127 /* Get a line of input. */
1128 if (!unformat_user (input, unformat_line_input, line_input))
1129 return 0;
1130
1131 vnet_main_t *vnm = vnet_get_main ();
1132 u32 rx_sw_if_index = ~0;
1133 u32 hw_if_index = ~0;
1134 int is_add = 1;
1135
1136 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1137 {
1138 if (unformat (line_input, "hw %U", unformat_vnet_hw_interface, vnm,
1139 &hw_if_index))
1140 continue;
1141 if (unformat (line_input, "rx %U", unformat_vnet_sw_interface, vnm,
1142 &rx_sw_if_index))
1143 continue;
1144 if (unformat (line_input, "del"))
1145 {
1146 is_add = 0;
1147 continue;
1148 }
1149 return clib_error_return (0, "unknown input `%U'",
1150 format_unformat_error, line_input);
1151 }
1152
1153 if (rx_sw_if_index == ~0)
1154 return clib_error_return (0, "missing rx interface");
1155 if (hw_if_index == ~0)
1156 return clib_error_return (0, "missing hw interface");
1157
1158 u32 t_index = vnet_vxlan_get_tunnel_index (rx_sw_if_index);;
1159 if (t_index == ~0)
1160 return clib_error_return (0, "%U is not a vxlan tunnel",
1161 format_vnet_sw_if_index_name, vnm,
1162 rx_sw_if_index);
1163
1164 vxlan_main_t *vxm = &vxlan_main;
1165 vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, t_index);
1166
1167 if (!ip46_address_is_ip4 (&t->dst))
1168 return clib_error_return (0, "currently only IPV4 tunnels are supported");
1169
1170 vnet_hw_interface_t *hw_if = vnet_get_hw_interface (vnm, hw_if_index);
1171 ip4_main_t *im = &ip4_main;
1172 u32 rx_fib_index =
1173 vec_elt (im->fib_index_by_sw_if_index, hw_if->sw_if_index);
1174
1175 if (t->encap_fib_index != rx_fib_index)
1176 return clib_error_return (0, "interface/tunnel fib mismatch");
1177
1178 if (vnet_vxlan_add_del_rx_flow (hw_if_index, t_index, is_add))
1179 return clib_error_return (0, "error %s flow",
1180 is_add ? "enabling" : "disabling");
1181
1182 return 0;
1183}
1184
1185/* *INDENT-OFF* */
1186VLIB_CLI_COMMAND (vxlan_offload_command, static) = {
1187 .path = "set flow-offload vxlan",
1188 .short_help =
1189 "set flow-offload vxlan hw <inerface-name> rx <tunnel-name> [del]",
1190 .function = vxlan_offload_command_fn,
1191};
1192/* *INDENT-ON* */
1193
Eyal Bari0fa56782018-06-04 12:25:05 +03001194#define VXLAN_HASH_NUM_BUCKETS (2 * 1024)
1195#define VXLAN_HASH_MEMORY_SIZE (1 << 20)
1196
Eyal Bari8f576482018-05-07 10:13:44 +03001197clib_error_t *
1198vxlan_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001199{
Eyal Bari8f576482018-05-07 10:13:44 +03001200 vxlan_main_t *vxm = &vxlan_main;
1201
1202 vxm->vnet_main = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001203 vxm->vlib_main = vm;
1204
eyal bariaf86a482018-04-17 11:20:27 +03001205 vnet_flow_get_range (vxm->vnet_main, "vxlan", 1024 * 1024,
1206 &vxm->flow_id_start);
1207
Chris Luke99cb3352016-04-26 10:49:53 -04001208 /* initialize the ip6 hash */
Eyal Baridd47eca2018-07-08 08:15:56 +03001209 clib_bihash_init_16_8 (&vxm->vxlan4_tunnel_by_key, "vxlan4",
1210 VXLAN_HASH_NUM_BUCKETS, VXLAN_HASH_MEMORY_SIZE);
1211 clib_bihash_init_24_8 (&vxm->vxlan6_tunnel_by_key, "vxlan6",
Eyal Bari0fa56782018-06-04 12:25:05 +03001212 VXLAN_HASH_NUM_BUCKETS, VXLAN_HASH_MEMORY_SIZE);
Eyal Bari8f576482018-05-07 10:13:44 +03001213 vxm->vtep6 = hash_create_mem (0, sizeof (ip6_address_t), sizeof (uword));
1214 vxm->mcast_shared = hash_create_mem (0,
1215 sizeof (ip46_address_t),
1216 sizeof (mcast_shared_t));
Chris Luke99cb3352016-04-26 10:49:53 -04001217
Eyal Bari8f576482018-05-07 10:13:44 +03001218 udp_register_dst_port (vm, UDP_DST_PORT_vxlan,
1219 vxlan4_input_node.index, /* is_ip4 */ 1);
Chris Luke99cb3352016-04-26 10:49:53 -04001220 udp_register_dst_port (vm, UDP_DST_PORT_vxlan6,
Eyal Bari8f576482018-05-07 10:13:44 +03001221 vxlan6_input_node.index, /* is_ip4 */ 0);
John Loc42912d2016-11-07 18:30:47 -05001222
Eyal Bari8f576482018-05-07 10:13:44 +03001223 fib_node_register_type (FIB_NODE_TYPE_VXLAN_TUNNEL, &vxlan_vft);
John Loc42912d2016-11-07 18:30:47 -05001224
Ed Warnickecb9cada2015-12-08 15:45:58 -07001225 return 0;
1226}
1227
Eyal Bari8f576482018-05-07 10:13:44 +03001228VLIB_INIT_FUNCTION (vxlan_init);
Jon Loeliger3d460bd2018-02-01 16:36:12 -06001229
1230/*
Eyal Bari8f576482018-05-07 10:13:44 +03001231 * fd.io coding-style-patch-verification: ON
1232 *
Jon Loeliger3d460bd2018-02-01 16:36:12 -06001233 * Local Variables:
1234 * eval: (c-set-style "gnu")
1235 * End:
1236 */