blob: 927f34ef694cdbf476e9e3a00697934412c20b35 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * gre_interface.c: gre interfaces
3 *
4 * Copyright (c) 2012 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <vnet/vnet.h>
19#include <vnet/pg/pg.h>
20#include <vnet/gre/gre.h>
Chris Luke27fe48f2016-04-28 13:44:38 -040021#include <vnet/ip/format.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010022#include <vnet/fib/ip4_fib.h>
Ciara Loftus7eac9162016-09-30 15:47:03 +010023#include <vnet/fib/ip6_fib.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010024#include <vnet/adj/adj_midchain.h>
Neale Rannsb80c5362016-10-08 13:03:40 +010025#include <vnet/adj/adj_nbr.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010026#include <vnet/mpls/mpls.h>
Neale Ranns3b81a1e2018-09-06 09:50:26 -070027#include <vnet/l2/l2_input.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070028
Neale Ranns5f8f6172019-04-18 10:23:56 +000029u8 *
30format_gre_tunnel_type (u8 * s, va_list * args)
31{
32 gre_tunnel_type_t type = va_arg (*args, int);
33
34 switch (type)
35 {
36#define _(n, v) case GRE_TUNNEL_TYPE_##n: \
37 s = format (s, "%s", v); \
38 break;
39 foreach_gre_tunnel_type
40#undef _
41 }
42
43 return (s);
44}
45
46u8 *
47format_gre_tunnel_mode (u8 * s, va_list * args)
48{
49 gre_tunnel_mode_t mode = va_arg (*args, int);
50
51 switch (mode)
52 {
53#define _(n, v) case GRE_TUNNEL_MODE_##n: \
54 s = format (s, "%s", v); \
55 break;
56 foreach_gre_tunnel_mode
57#undef _
58 }
59
60 return (s);
61}
Neale Ranns177bbdc2016-11-15 09:46:51 +000062
Neale Ranns0bfe5d82016-08-25 15:29:12 +010063static u8 *
64format_gre_tunnel (u8 * s, va_list * args)
Chris Luke27fe48f2016-04-28 13:44:38 -040065{
Swarup Nayak9ff647a2017-11-27 10:27:43 +053066 gre_tunnel_t *t = va_arg (*args, gre_tunnel_t *);
Chris Luke27fe48f2016-04-28 13:44:38 -040067
John Loa43ccae2018-02-13 17:15:23 -050068 s = format (s, "[%d] instance %d src %U dst %U fib-idx %d sw-if-idx %d ",
69 t->dev_instance, t->user_instance,
John Lo4478d8e2018-01-12 17:15:25 -050070 format_ip46_address, &t->tunnel_src, IP46_TYPE_ANY,
71 format_ip46_address, &t->tunnel_dst.fp_addr, IP46_TYPE_ANY,
72 t->outer_fib_index, t->sw_if_index);
73
Neale Ranns5f8f6172019-04-18 10:23:56 +000074 s = format (s, "payload %U ", format_gre_tunnel_type, t->type);
75 s = format (s, "%U ", format_gre_tunnel_mode, t->mode);
John Loa43ccae2018-02-13 17:15:23 -050076
77 if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
78 s = format (s, "session %d ", t->session_id);
79
80 if (t->type != GRE_TUNNEL_TYPE_L3)
81 s = format (s, "l2-adj-idx %d ", t->l2_adj_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010082
Chris Luke27fe48f2016-04-28 13:44:38 -040083 return s;
84}
85
Neale Ranns0bfe5d82016-08-25 15:29:12 +010086static gre_tunnel_t *
Neale Ranns5a8844b2019-04-16 07:15:35 +000087gre_tunnel_db_find (const vnet_gre_tunnel_add_del_args_t * a,
John Loa43ccae2018-02-13 17:15:23 -050088 u32 outer_fib_index, gre_tunnel_key_t * key)
Neale Ranns0bfe5d82016-08-25 15:29:12 +010089{
Swarup Nayak9ff647a2017-11-27 10:27:43 +053090 gre_main_t *gm = &gre_main;
91 uword *p;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010092
John Loa43ccae2018-02-13 17:15:23 -050093 if (!a->is_ipv6)
Ciara Loftus7eac9162016-09-30 15:47:03 +010094 {
John Loa43ccae2018-02-13 17:15:23 -050095 gre_mk_key4 (a->src.ip4, a->dst.ip4, outer_fib_index,
Neale Ranns5a8844b2019-04-16 07:15:35 +000096 a->type, a->session_id, &key->gtk_v4);
Neale Ranns33ce60d2017-12-14 08:51:32 -080097 p = hash_get_mem (gm->tunnel_by_key4, &key->gtk_v4);
Ciara Loftus7eac9162016-09-30 15:47:03 +010098 }
99 else
100 {
John Loa43ccae2018-02-13 17:15:23 -0500101 gre_mk_key6 (&a->src.ip6, &a->dst.ip6, outer_fib_index,
Neale Ranns5a8844b2019-04-16 07:15:35 +0000102 a->type, a->session_id, &key->gtk_v6);
Neale Ranns33ce60d2017-12-14 08:51:32 -0800103 p = hash_get_mem (gm->tunnel_by_key6, &key->gtk_v6);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100104 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100105
106 if (NULL == p)
107 return (NULL);
108
109 return (pool_elt_at_index (gm->tunnels, p[0]));
110}
111
112static void
Neale Ranns33ce60d2017-12-14 08:51:32 -0800113gre_tunnel_db_add (gre_tunnel_t * t, gre_tunnel_key_t * key)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100114{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530115 gre_main_t *gm = &gre_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100116
Neale Ranns33ce60d2017-12-14 08:51:32 -0800117 t->key = clib_mem_alloc (sizeof (*t->key));
118 clib_memcpy (t->key, key, sizeof (*key));
119
120 if (t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6)
Ciara Loftus7eac9162016-09-30 15:47:03 +0100121 {
John Loa43ccae2018-02-13 17:15:23 -0500122 hash_set_mem (gm->tunnel_by_key6, &t->key->gtk_v6, t->dev_instance);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100123 }
124 else
125 {
John Loa43ccae2018-02-13 17:15:23 -0500126 hash_set_mem (gm->tunnel_by_key4, &t->key->gtk_v4, t->dev_instance);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100127 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100128}
129
130static void
Neale Ranns33ce60d2017-12-14 08:51:32 -0800131gre_tunnel_db_remove (gre_tunnel_t * t)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100132{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530133 gre_main_t *gm = &gre_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100134
Neale Ranns33ce60d2017-12-14 08:51:32 -0800135 if (t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6)
Ciara Loftus7eac9162016-09-30 15:47:03 +0100136 {
Neale Ranns33ce60d2017-12-14 08:51:32 -0800137 hash_unset_mem (gm->tunnel_by_key6, &t->key->gtk_v6);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100138 }
139 else
140 {
Neale Ranns33ce60d2017-12-14 08:51:32 -0800141 hash_unset_mem (gm->tunnel_by_key4, &t->key->gtk_v4);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100142 }
143
Neale Ranns33ce60d2017-12-14 08:51:32 -0800144 clib_mem_free (t->key);
145 t->key = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100146}
147
Neale Ranns5e575b12016-10-03 09:40:25 +0100148/**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100149 * gre_tunnel_stack
150 *
151 * 'stack' (resolve the recursion for) the tunnel's midchain adjacency
152 */
Neale Ranns5e575b12016-10-03 09:40:25 +0100153void
Neale Rannsb80c5362016-10-08 13:03:40 +0100154gre_tunnel_stack (adj_index_t ai)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100155{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530156 gre_main_t *gm = &gre_main;
157 ip_adjacency_t *adj;
158 gre_tunnel_t *gt;
159 u32 sw_if_index;
Neale Rannsb80c5362016-10-08 13:03:40 +0100160
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530161 adj = adj_get (ai);
162 sw_if_index = adj->rewrite_header.sw_if_index;
Neale Rannsb80c5362016-10-08 13:03:40 +0100163
Eyal Baricd307742018-07-22 12:45:15 +0300164 if ((vec_len (gm->tunnel_index_by_sw_if_index) <= sw_if_index) ||
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530165 (~0 == gm->tunnel_index_by_sw_if_index[sw_if_index]))
166 return;
Neale Rannsb80c5362016-10-08 13:03:40 +0100167
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530168 gt = pool_elt_at_index (gm->tunnels,
169 gm->tunnel_index_by_sw_if_index[sw_if_index]);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100170
John Loa43ccae2018-02-13 17:15:23 -0500171 if ((vnet_hw_interface_get_flags (vnet_get_main (), gt->hw_if_index) &
172 VNET_HW_INTERFACE_FLAG_LINK_UP) == 0)
Neale Rannsb80c5362016-10-08 13:03:40 +0100173 {
Neale Ranns4c3ba812019-03-26 07:02:58 +0000174 adj_midchain_delegate_unstack (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100175 }
Neale Ranns521a8d72018-12-06 13:46:49 +0000176 else
John Loa43ccae2018-02-13 17:15:23 -0500177 {
Neale Ranns4c3ba812019-03-26 07:02:58 +0000178 adj_midchain_delegate_stack (ai, gt->outer_fib_index, &gt->tunnel_dst);
John Loa43ccae2018-02-13 17:15:23 -0500179 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100180}
181
182/**
183 * @brief Call back when restacking all adjacencies on a GRE interface
184 */
185static adj_walk_rc_t
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530186gre_adj_walk_cb (adj_index_t ai, void *ctx)
Neale Rannsb80c5362016-10-08 13:03:40 +0100187{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530188 gre_tunnel_stack (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100189
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530190 return (ADJ_WALK_RC_CONTINUE);
Neale Rannsb80c5362016-10-08 13:03:40 +0100191}
192
193static void
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530194gre_tunnel_restack (gre_tunnel_t * gt)
Neale Rannsb80c5362016-10-08 13:03:40 +0100195{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530196 fib_protocol_t proto;
Neale Rannsb80c5362016-10-08 13:03:40 +0100197
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530198 /*
199 * walk all the adjacencies on th GRE interface and restack them
200 */
201 FOR_EACH_FIB_IP_PROTOCOL (proto)
202 {
203 adj_nbr_walk (gt->sw_if_index, proto, gre_adj_walk_cb, NULL);
204 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100205}
206
Ciara Loftus7eac9162016-09-30 15:47:03 +0100207static int
Neale Ranns5a8844b2019-04-16 07:15:35 +0000208vnet_gre_tunnel_add (vnet_gre_tunnel_add_del_args_t * a,
John Loa43ccae2018-02-13 17:15:23 -0500209 u32 outer_fib_index, u32 * sw_if_indexp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530211 gre_main_t *gm = &gre_main;
212 vnet_main_t *vnm = gm->vnet_main;
213 ip4_main_t *im4 = &ip4_main;
214 ip6_main_t *im6 = &ip6_main;
215 gre_tunnel_t *t;
216 vnet_hw_interface_t *hi;
Chris Luke27fe48f2016-04-28 13:44:38 -0400217 u32 hw_if_index, sw_if_index;
David Hothama8cd3092016-09-19 09:55:07 -0700218 clib_error_t *error;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100219 u8 is_ipv6 = a->is_ipv6;
Neale Ranns33ce60d2017-12-14 08:51:32 -0800220 gre_tunnel_key_t key;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221
John Loa43ccae2018-02-13 17:15:23 -0500222 t = gre_tunnel_db_find (a, outer_fib_index, &key);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100223 if (NULL != t)
John Loa43ccae2018-02-13 17:15:23 -0500224 return VNET_API_ERROR_IF_ALREADY_EXISTS;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100226 pool_get_aligned (gm->tunnels, t, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400227 clib_memset (t, 0, sizeof (*t));
John Loa43ccae2018-02-13 17:15:23 -0500228
229 /* Reconcile the real dev_instance and a possible requested instance */
230 u32 t_idx = t - gm->tunnels; /* tunnel index (or instance) */
231 u32 u_idx = a->instance; /* user specified instance */
232 if (u_idx == ~0)
233 u_idx = t_idx;
234 if (hash_get (gm->instance_used, u_idx))
235 {
236 pool_put (gm->tunnels, t);
237 return VNET_API_ERROR_INSTANCE_IN_USE;
238 }
239 hash_set (gm->instance_used, u_idx, 1);
240
241 t->dev_instance = t_idx; /* actual */
242 t->user_instance = u_idx; /* name */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243
Neale Ranns5a8844b2019-04-16 07:15:35 +0000244 t->type = a->type;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000245 t->mode = a->mode;
John Loa43ccae2018-02-13 17:15:23 -0500246 if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
247 t->session_id = a->session_id;
Neale Ranns177bbdc2016-11-15 09:46:51 +0000248
John Loa43ccae2018-02-13 17:15:23 -0500249 if (t->type == GRE_TUNNEL_TYPE_L3)
Neale Ranns5f8f6172019-04-18 10:23:56 +0000250 {
251 if (t->mode == GRE_TUNNEL_MODE_P2P)
252 hw_if_index =
253 vnet_register_interface (vnm, gre_device_class.index, t_idx,
254 gre_hw_interface_class.index, t_idx);
255 else
256 hw_if_index =
257 vnet_register_interface (vnm, gre_device_class.index, t_idx,
258 mgre_hw_interface_class.index, t_idx);
259 }
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530260 else
261 {
John Loa43ccae2018-02-13 17:15:23 -0500262 /* Default MAC address (d00b:eed0:0000 + sw_if_index) */
John Lo25d417f2018-02-15 15:47:53 -0500263 u8 address[6] =
264 { 0xd0, 0x0b, 0xee, 0xd0, (u8) (t_idx >> 8), (u8) t_idx };
265 error =
266 ethernet_register_interface (vnm, gre_device_class.index, t_idx,
267 address, &hw_if_index, 0);
John Loa43ccae2018-02-13 17:15:23 -0500268 if (error)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530269 {
John Loa43ccae2018-02-13 17:15:23 -0500270 clib_error_report (error);
271 return VNET_API_ERROR_INVALID_REGISTRATION;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530272 }
Chris Luke27fe48f2016-04-28 13:44:38 -0400273 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274
John Loa43ccae2018-02-13 17:15:23 -0500275 /* Set GRE tunnel interface output node (not used for L3 payload) */
276 vnet_set_interface_output_node (vnm, hw_if_index, gre_encap_node.index);
277
278 hi = vnet_get_hw_interface (vnm, hw_if_index);
279 sw_if_index = hi->sw_if_index;
280
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100281 t->hw_if_index = hw_if_index;
282 t->outer_fib_index = outer_fib_index;
283 t->sw_if_index = sw_if_index;
Neale Rannsad422ed2016-11-02 14:20:04 +0000284 t->l2_adj_index = ADJ_INDEX_INVALID;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100286 vec_validate_init_empty (gm->tunnel_index_by_sw_if_index, sw_if_index, ~0);
John Loa43ccae2018-02-13 17:15:23 -0500287 gm->tunnel_index_by_sw_if_index[sw_if_index] = t_idx;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288
Ciara Loftus7eac9162016-09-30 15:47:03 +0100289 if (!is_ipv6)
290 {
291 vec_validate (im4->fib_index_by_sw_if_index, sw_if_index);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530292 hi->min_packet_bytes =
293 64 + sizeof (gre_header_t) + sizeof (ip4_header_t);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100294 }
295 else
296 {
297 vec_validate (im6->fib_index_by_sw_if_index, sw_if_index);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530298 hi->min_packet_bytes =
299 64 + sizeof (gre_header_t) + sizeof (ip6_header_t);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100300 }
Chris Luke71649002016-05-06 11:51:54 -0400301
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100302 /* Standard default gre MTU. */
Ole Troand7231612018-06-07 10:17:57 +0200303 vnet_sw_interface_set_mtu (vnm, sw_if_index, 9000);
Damjan Marionfe7d4a22018-04-13 19:43:39 +0200304
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100305 /*
306 * source the FIB entry for the tunnel's destination
307 * and become a child thereof. The tunnel will then get poked
308 * when the forwarding for the entry updates, and the tunnel can
309 * re-stack accordingly
310 */
Ciara Loftus7eac9162016-09-30 15:47:03 +0100311
312 clib_memcpy (&t->tunnel_src, &a->src, sizeof (t->tunnel_src));
313 t->tunnel_dst.fp_len = !is_ipv6 ? 32 : 128;
314 t->tunnel_dst.fp_proto = !is_ipv6 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
315 t->tunnel_dst.fp_addr = a->dst;
316
Neale Ranns33ce60d2017-12-14 08:51:32 -0800317 gre_tunnel_db_add (t, &key);
John Loa43ccae2018-02-13 17:15:23 -0500318 if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530319 {
John Loa43ccae2018-02-13 17:15:23 -0500320 gre_sn_key_t skey;
321 gre_sn_t *gre_sn;
322
323 gre_mk_sn_key (t, &skey);
324 gre_sn = (gre_sn_t *) hash_get_mem (gm->seq_num_by_key, &skey);
325 if (gre_sn != NULL)
326 {
327 gre_sn->ref_count++;
328 t->gre_sn = gre_sn;
329 }
330 else
331 {
332 gre_sn = clib_mem_alloc (sizeof (gre_sn_t));
333 gre_sn->seq_num = 0;
334 gre_sn->ref_count = 1;
335 t->gre_sn = gre_sn;
336 hash_set_mem_alloc (&gm->seq_num_by_key, &skey, (uword) gre_sn);
337 }
338 }
339
John Loa43ccae2018-02-13 17:15:23 -0500340 if (t->type != GRE_TUNNEL_TYPE_L3)
341 {
342 t->l2_adj_index = adj_nbr_add_or_lock
343 (t->tunnel_dst.fp_proto, VNET_LINK_ETHERNET, &zero_addr, sw_if_index);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530344 gre_update_adj (vnm, t->sw_if_index, t->l2_adj_index);
345 }
Chris Luke27fe48f2016-04-28 13:44:38 -0400346
347 if (sw_if_indexp)
348 *sw_if_indexp = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700349
Jakub Grajciarf03beca2019-05-24 08:25:03 +0200350 /* register gre46-input nodes */
351 ip4_register_protocol (IP_PROTOCOL_GRE, gre4_input_node.index);
352 ip6_register_protocol (IP_PROTOCOL_GRE, gre6_input_node.index);
353
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354 return 0;
355}
356
Ciara Loftus7eac9162016-09-30 15:47:03 +0100357static int
Neale Ranns5a8844b2019-04-16 07:15:35 +0000358vnet_gre_tunnel_delete (vnet_gre_tunnel_add_del_args_t * a,
John Loa43ccae2018-02-13 17:15:23 -0500359 u32 outer_fib_index, u32 * sw_if_indexp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100360{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530361 gre_main_t *gm = &gre_main;
362 vnet_main_t *vnm = gm->vnet_main;
363 gre_tunnel_t *t;
Neale Ranns33ce60d2017-12-14 08:51:32 -0800364 gre_tunnel_key_t key;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100365 u32 sw_if_index;
John Lo101e0052018-01-06 00:22:54 -0500366
John Loa43ccae2018-02-13 17:15:23 -0500367 t = gre_tunnel_db_find (a, outer_fib_index, &key);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100368 if (NULL == t)
369 return VNET_API_ERROR_NO_SUCH_ENTRY;
370
371 sw_if_index = t->sw_if_index;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530372 vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
John Loa43ccae2018-02-13 17:15:23 -0500373
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100374 /* make sure tunnel is removed from l2 bd or xconnect */
Neale Rannsb4743802018-09-05 09:13:57 -0700375 set_int_l2_mode (gm->vlib_main, vnm, MODE_L3, sw_if_index, 0,
376 L2_BD_PORT_TYPE_NORMAL, 0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100377 gm->tunnel_index_by_sw_if_index[sw_if_index] = ~0;
Neale Ranns177bbdc2016-11-15 09:46:51 +0000378
John Loa43ccae2018-02-13 17:15:23 -0500379 if (t->type == GRE_TUNNEL_TYPE_L3)
380 vnet_delete_hw_interface (vnm, t->hw_if_index);
381 else
382 ethernet_delete_interface (vnm, t->hw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100383
Neale Rannsad422ed2016-11-02 14:20:04 +0000384 if (t->l2_adj_index != ADJ_INDEX_INVALID)
Neale Ranns4c3ba812019-03-26 07:02:58 +0000385 {
386 adj_midchain_delegate_unstack (t->l2_adj_index);
387 adj_unlock (t->l2_adj_index);
388 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100389
John Loa43ccae2018-02-13 17:15:23 -0500390 ASSERT ((t->type != GRE_TUNNEL_TYPE_ERSPAN) || (t->gre_sn != NULL));
391 if ((t->type == GRE_TUNNEL_TYPE_ERSPAN) && (t->gre_sn->ref_count-- == 1))
392 {
393 gre_sn_key_t skey;
394 gre_mk_sn_key (t, &skey);
395 hash_unset_mem_free (&gm->seq_num_by_key, &skey);
396 clib_mem_free (t->gre_sn);
397 }
398
399 hash_unset (gm->instance_used, t->user_instance);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530400 gre_tunnel_db_remove (t);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100401 pool_put (gm->tunnels, t);
402
403 if (sw_if_indexp)
404 *sw_if_indexp = sw_if_index;
405
406 return 0;
407}
408
409int
Neale Ranns5a8844b2019-04-16 07:15:35 +0000410vnet_gre_tunnel_add_del (vnet_gre_tunnel_add_del_args_t * a,
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530411 u32 * sw_if_indexp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100412{
John Loa43ccae2018-02-13 17:15:23 -0500413 u32 outer_fib_index;
414
415 if (!a->is_ipv6)
Neale Ranns5f8f6172019-04-18 10:23:56 +0000416 outer_fib_index = ip4_fib_index_from_table_id (a->outer_table_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100417 else
Neale Ranns5f8f6172019-04-18 10:23:56 +0000418 outer_fib_index = ip6_fib_index_from_table_id (a->outer_table_id);
John Loa43ccae2018-02-13 17:15:23 -0500419
420 if (~0 == outer_fib_index)
421 return VNET_API_ERROR_NO_SUCH_FIB;
422
423 if (a->session_id > GTK_SESSION_ID_MAX)
424 return VNET_API_ERROR_INVALID_SESSION_ID;
425
426 if (a->is_add)
427 return (vnet_gre_tunnel_add (a, outer_fib_index, sw_if_indexp));
428 else
429 return (vnet_gre_tunnel_delete (a, outer_fib_index, sw_if_indexp));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100430}
431
Neale Rannsb80c5362016-10-08 13:03:40 +0100432clib_error_t *
433gre_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100434{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530435 gre_main_t *gm = &gre_main;
436 vnet_hw_interface_t *hi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100437 gre_tunnel_t *t;
Neale Rannsb80c5362016-10-08 13:03:40 +0100438 u32 ti;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100439
Neale Rannsb80c5362016-10-08 13:03:40 +0100440 hi = vnet_get_hw_interface (vnm, hw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100441
Neale Rannsb80c5362016-10-08 13:03:40 +0100442 if (NULL == gm->tunnel_index_by_sw_if_index ||
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530443 hi->sw_if_index >= vec_len (gm->tunnel_index_by_sw_if_index))
444 return (NULL);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100445
Neale Rannsb80c5362016-10-08 13:03:40 +0100446 ti = gm->tunnel_index_by_sw_if_index[hi->sw_if_index];
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100447
Neale Rannsb80c5362016-10-08 13:03:40 +0100448 if (~0 == ti)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530449 /* not one of ours */
450 return (NULL);
Neale Rannsb80c5362016-10-08 13:03:40 +0100451
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530452 t = pool_elt_at_index (gm->tunnels, ti);
Neale Rannsb80c5362016-10-08 13:03:40 +0100453
454 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530455 vnet_hw_interface_set_flags (vnm, hw_if_index,
456 VNET_HW_INTERFACE_FLAG_LINK_UP);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100457 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530458 vnet_hw_interface_set_flags (vnm, hw_if_index, 0 /* down */ );
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100459
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530460 gre_tunnel_restack (t);
Neale Rannsb80c5362016-10-08 13:03:40 +0100461
462 return /* no error */ 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100463}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464
465static clib_error_t *
466create_gre_tunnel_command_fn (vlib_main_t * vm,
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530467 unformat_input_t * input,
468 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530470 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns5a8844b2019-04-16 07:15:35 +0000471 vnet_gre_tunnel_add_del_args_t _a, *a = &_a;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000472 ip46_address_t src = ip46_address_initializer, dst =
473 ip46_address_initializer;
John Loa43ccae2018-02-13 17:15:23 -0500474 u32 instance = ~0;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000475 u32 outer_table_id = 0;
John Loa43ccae2018-02-13 17:15:23 -0500476 gre_tunnel_type_t t_type = GRE_TUNNEL_TYPE_L3;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000477 gre_tunnel_mode_t t_mode = GRE_TUNNEL_MODE_P2P;
John Loa43ccae2018-02-13 17:15:23 -0500478 u32 session_id = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700479 int rv;
Chris Luke27fe48f2016-04-28 13:44:38 -0400480 u8 is_add = 1;
Pierre Pfister78ea9c22016-05-23 12:51:54 +0100481 u32 sw_if_index;
Billy McFalla9a20e72017-02-15 11:39:12 -0500482 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700483
484 /* Get a line of input. */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530485 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700486 return 0;
487
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530488 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
489 {
490 if (unformat (line_input, "del"))
491 is_add = 0;
John Loa43ccae2018-02-13 17:15:23 -0500492 else if (unformat (line_input, "instance %d", &instance))
493 ;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000494 else if (unformat (line_input, "src %U", unformat_ip46_address, &src))
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530495 ;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000496 else if (unformat (line_input, "dst %U", unformat_ip46_address, &dst))
497 ;
498 else if (unformat (line_input, "outer-table-id %d", &outer_table_id))
499 ;
500 else if (unformat (line_input, "multipoint"))
501 t_mode = GRE_TUNNEL_MODE_MP;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530502 else if (unformat (line_input, "teb"))
John Loa43ccae2018-02-13 17:15:23 -0500503 t_type = GRE_TUNNEL_TYPE_TEB;
504 else if (unformat (line_input, "erspan %d", &session_id))
505 t_type = GRE_TUNNEL_TYPE_ERSPAN;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530506 else
507 {
508 error = clib_error_return (0, "unknown input `%U'",
509 format_unformat_error, line_input);
510 goto done;
511 }
512 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700513
Neale Ranns5f8f6172019-04-18 10:23:56 +0000514 if (ip46_address_is_equal (&src, &dst))
Billy McFalla9a20e72017-02-15 11:39:12 -0500515 {
516 error = clib_error_return (0, "src and dst are identical");
517 goto done;
518 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519
Neale Ranns5f8f6172019-04-18 10:23:56 +0000520 if (t_mode != GRE_TUNNEL_MODE_MP && ip46_address_is_zero (&dst))
Ciara Loftus7eac9162016-09-30 15:47:03 +0100521 {
Neale Ranns5f8f6172019-04-18 10:23:56 +0000522 error = clib_error_return (0, "destination address not specified");
523 goto done;
524 }
525
526 if (ip46_address_is_zero (&src))
527 {
528 error = clib_error_return (0, "source address not specified");
529 goto done;
530 }
531
532 if (ip46_address_is_ip4 (&src) != ip46_address_is_ip4 (&dst))
533 {
534 error =
535 clib_error_return (0, "src and dst address must be the same AF");
Ciara Loftus7eac9162016-09-30 15:47:03 +0100536 goto done;
537 }
538
Dave Barachb7b92992018-10-17 10:38:51 -0400539 clib_memset (a, 0, sizeof (*a));
John Loa43ccae2018-02-13 17:15:23 -0500540 a->is_add = is_add;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000541 a->outer_table_id = outer_table_id;
Neale Ranns5a8844b2019-04-16 07:15:35 +0000542 a->type = t_type;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000543 a->mode = t_mode;
John Loa43ccae2018-02-13 17:15:23 -0500544 a->session_id = session_id;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000545 a->is_ipv6 = !ip46_address_is_ip4 (&src);
John Loa43ccae2018-02-13 17:15:23 -0500546 a->instance = instance;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000547 clib_memcpy (&a->src, &src, sizeof (a->src));
548 clib_memcpy (&a->dst, &dst, sizeof (a->dst));
Chris Luke27fe48f2016-04-28 13:44:38 -0400549
Neale Ranns5a8844b2019-04-16 07:15:35 +0000550 rv = vnet_gre_tunnel_add_del (a, &sw_if_index);
Chris Luke27fe48f2016-04-28 13:44:38 -0400551
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530552 switch (rv)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700553 {
554 case 0:
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530555 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
556 vnet_get_main (), sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557 break;
John Loa43ccae2018-02-13 17:15:23 -0500558 case VNET_API_ERROR_IF_ALREADY_EXISTS:
Billy McFalla9a20e72017-02-15 11:39:12 -0500559 error = clib_error_return (0, "GRE tunnel already exists...");
560 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561 case VNET_API_ERROR_NO_SUCH_FIB:
Neale Ranns5f8f6172019-04-18 10:23:56 +0000562 error = clib_error_return (0, "outer table ID %d doesn't exist\n",
563 outer_table_id);
Billy McFalla9a20e72017-02-15 11:39:12 -0500564 goto done;
John Loa43ccae2018-02-13 17:15:23 -0500565 case VNET_API_ERROR_NO_SUCH_ENTRY:
566 error = clib_error_return (0, "GRE tunnel doesn't exist");
567 goto done;
568 case VNET_API_ERROR_INVALID_SESSION_ID:
569 error = clib_error_return (0, "session ID %d out of range\n",
570 session_id);
571 goto done;
572 case VNET_API_ERROR_INSTANCE_IN_USE:
573 error = clib_error_return (0, "Instance is in use");
574 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575 default:
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530576 error =
Neale Ranns5a8844b2019-04-16 07:15:35 +0000577 clib_error_return (0, "vnet_gre_tunnel_add_del returned %d", rv);
Billy McFalla9a20e72017-02-15 11:39:12 -0500578 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700579 }
580
Billy McFalla9a20e72017-02-15 11:39:12 -0500581done:
582 unformat_free (line_input);
583
584 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700585}
586
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530587/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588VLIB_CLI_COMMAND (create_gre_tunnel_command, static) = {
589 .path = "create gre tunnel",
John Loa43ccae2018-02-13 17:15:23 -0500590 .short_help = "create gre tunnel src <addr> dst <addr> [instance <n>] "
591 "[outer-fib-id <fib>] [teb | erspan <session-id>] [del]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700592 .function = create_gre_tunnel_command_fn,
593};
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530594/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700595
Chris Luke27fe48f2016-04-28 13:44:38 -0400596static clib_error_t *
597show_gre_tunnel_command_fn (vlib_main_t * vm,
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530598 unformat_input_t * input,
599 vlib_cli_command_t * cmd)
Chris Luke27fe48f2016-04-28 13:44:38 -0400600{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530601 gre_main_t *gm = &gre_main;
602 gre_tunnel_t *t;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100603 u32 ti = ~0;
Chris Luke27fe48f2016-04-28 13:44:38 -0400604
605 if (pool_elts (gm->tunnels) == 0)
606 vlib_cli_output (vm, "No GRE tunnels configured...");
607
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100608 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
609 {
610 if (unformat (input, "%d", &ti))
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530611 ;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100612 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530613 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100614 }
615
616 if (~0 == ti)
617 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530618 /* *INDENT-OFF* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100619 pool_foreach (t, gm->tunnels,
620 ({
Neale Rannsb80c5362016-10-08 13:03:40 +0100621 vlib_cli_output (vm, "%U", format_gre_tunnel, t);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100622 }));
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530623 /* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100624 }
625 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530626 {
627 t = pool_elt_at_index (gm->tunnels, ti);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100628
Neale Rannsb80c5362016-10-08 13:03:40 +0100629 vlib_cli_output (vm, "%U", format_gre_tunnel, t);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530630 }
Chris Luke27fe48f2016-04-28 13:44:38 -0400631
632 return 0;
633}
634
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530635/* *INDENT-OFF* */
Chris Luke27fe48f2016-04-28 13:44:38 -0400636VLIB_CLI_COMMAND (show_gre_tunnel_command, static) = {
637 .path = "show gre tunnel",
638 .function = show_gre_tunnel_command_fn,
639};
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530640/* *INDENT-ON* */
Chris Luke27fe48f2016-04-28 13:44:38 -0400641
Ed Warnickecb9cada2015-12-08 15:45:58 -0700642/* force inclusion from application's main.c */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530643clib_error_t *
644gre_interface_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645{
Neale Ranns4c3ba812019-03-26 07:02:58 +0000646 return (NULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647}
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530648
649VLIB_INIT_FUNCTION (gre_interface_init);
650
651/*
652 * fd.io coding-style-patch-verification: ON
653 *
654 * Local Variables:
655 * eval: (c-set-style "gnu")
656 * End:
657 */