blob: b9bfb79c172393a7d90df853e648a4fb9b30e017 [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 Ranns177bbdc2016-11-15 09:46:51 +000029static const char *gre_tunnel_type_names[] = GRE_TUNNEL_TYPE_NAMES;
30
Neale Ranns0bfe5d82016-08-25 15:29:12 +010031static u8 *
32format_gre_tunnel (u8 * s, va_list * args)
Chris Luke27fe48f2016-04-28 13:44:38 -040033{
Swarup Nayak9ff647a2017-11-27 10:27:43 +053034 gre_tunnel_t *t = va_arg (*args, gre_tunnel_t *);
Chris Luke27fe48f2016-04-28 13:44:38 -040035
John Loa43ccae2018-02-13 17:15:23 -050036 s = format (s, "[%d] instance %d src %U dst %U fib-idx %d sw-if-idx %d ",
37 t->dev_instance, t->user_instance,
John Lo4478d8e2018-01-12 17:15:25 -050038 format_ip46_address, &t->tunnel_src, IP46_TYPE_ANY,
39 format_ip46_address, &t->tunnel_dst.fp_addr, IP46_TYPE_ANY,
40 t->outer_fib_index, t->sw_if_index);
41
John Loa43ccae2018-02-13 17:15:23 -050042 s = format (s, "payload %s ", gre_tunnel_type_names[t->type]);
43
44 if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
45 s = format (s, "session %d ", t->session_id);
46
47 if (t->type != GRE_TUNNEL_TYPE_L3)
48 s = format (s, "l2-adj-idx %d ", t->l2_adj_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010049
Chris Luke27fe48f2016-04-28 13:44:38 -040050 return s;
51}
52
Neale Ranns0bfe5d82016-08-25 15:29:12 +010053static gre_tunnel_t *
John Loa43ccae2018-02-13 17:15:23 -050054gre_tunnel_db_find (const vnet_gre_add_del_tunnel_args_t * a,
55 u32 outer_fib_index, gre_tunnel_key_t * key)
Neale Ranns0bfe5d82016-08-25 15:29:12 +010056{
Swarup Nayak9ff647a2017-11-27 10:27:43 +053057 gre_main_t *gm = &gre_main;
58 uword *p;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010059
John Loa43ccae2018-02-13 17:15:23 -050060 if (!a->is_ipv6)
Ciara Loftus7eac9162016-09-30 15:47:03 +010061 {
John Loa43ccae2018-02-13 17:15:23 -050062 gre_mk_key4 (a->src.ip4, a->dst.ip4, outer_fib_index,
63 a->tunnel_type, a->session_id, &key->gtk_v4);
Neale Ranns33ce60d2017-12-14 08:51:32 -080064 p = hash_get_mem (gm->tunnel_by_key4, &key->gtk_v4);
Ciara Loftus7eac9162016-09-30 15:47:03 +010065 }
66 else
67 {
John Loa43ccae2018-02-13 17:15:23 -050068 gre_mk_key6 (&a->src.ip6, &a->dst.ip6, outer_fib_index,
69 a->tunnel_type, a->session_id, &key->gtk_v6);
Neale Ranns33ce60d2017-12-14 08:51:32 -080070 p = hash_get_mem (gm->tunnel_by_key6, &key->gtk_v6);
Ciara Loftus7eac9162016-09-30 15:47:03 +010071 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +010072
73 if (NULL == p)
74 return (NULL);
75
76 return (pool_elt_at_index (gm->tunnels, p[0]));
77}
78
79static void
Neale Ranns33ce60d2017-12-14 08:51:32 -080080gre_tunnel_db_add (gre_tunnel_t * t, gre_tunnel_key_t * key)
Neale Ranns0bfe5d82016-08-25 15:29:12 +010081{
Swarup Nayak9ff647a2017-11-27 10:27:43 +053082 gre_main_t *gm = &gre_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010083
Neale Ranns33ce60d2017-12-14 08:51:32 -080084 t->key = clib_mem_alloc (sizeof (*t->key));
85 clib_memcpy (t->key, key, sizeof (*key));
86
87 if (t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6)
Ciara Loftus7eac9162016-09-30 15:47:03 +010088 {
John Loa43ccae2018-02-13 17:15:23 -050089 hash_set_mem (gm->tunnel_by_key6, &t->key->gtk_v6, t->dev_instance);
Ciara Loftus7eac9162016-09-30 15:47:03 +010090 }
91 else
92 {
John Loa43ccae2018-02-13 17:15:23 -050093 hash_set_mem (gm->tunnel_by_key4, &t->key->gtk_v4, t->dev_instance);
Ciara Loftus7eac9162016-09-30 15:47:03 +010094 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +010095}
96
97static void
Neale Ranns33ce60d2017-12-14 08:51:32 -080098gre_tunnel_db_remove (gre_tunnel_t * t)
Neale Ranns0bfe5d82016-08-25 15:29:12 +010099{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530100 gre_main_t *gm = &gre_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100101
Neale Ranns33ce60d2017-12-14 08:51:32 -0800102 if (t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6)
Ciara Loftus7eac9162016-09-30 15:47:03 +0100103 {
Neale Ranns33ce60d2017-12-14 08:51:32 -0800104 hash_unset_mem (gm->tunnel_by_key6, &t->key->gtk_v6);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100105 }
106 else
107 {
Neale Ranns33ce60d2017-12-14 08:51:32 -0800108 hash_unset_mem (gm->tunnel_by_key4, &t->key->gtk_v4);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100109 }
110
Neale Ranns33ce60d2017-12-14 08:51:32 -0800111 clib_mem_free (t->key);
112 t->key = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100113}
114
115static gre_tunnel_t *
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530116gre_tunnel_from_fib_node (fib_node_t * node)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100117{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530118 ASSERT (FIB_NODE_TYPE_GRE_TUNNEL == node->fn_type);
119 return ((gre_tunnel_t *) (((char *) node) -
120 STRUCT_OFFSET_OF (gre_tunnel_t, node)));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100121}
122
Neale Ranns5e575b12016-10-03 09:40:25 +0100123/**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100124 * gre_tunnel_stack
125 *
126 * 'stack' (resolve the recursion for) the tunnel's midchain adjacency
127 */
Neale Ranns5e575b12016-10-03 09:40:25 +0100128void
Neale Rannsb80c5362016-10-08 13:03:40 +0100129gre_tunnel_stack (adj_index_t ai)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100130{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530131 gre_main_t *gm = &gre_main;
132 ip_adjacency_t *adj;
133 gre_tunnel_t *gt;
134 u32 sw_if_index;
Neale Rannsb80c5362016-10-08 13:03:40 +0100135
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530136 adj = adj_get (ai);
137 sw_if_index = adj->rewrite_header.sw_if_index;
Neale Rannsb80c5362016-10-08 13:03:40 +0100138
Eyal Baricd307742018-07-22 12:45:15 +0300139 if ((vec_len (gm->tunnel_index_by_sw_if_index) <= sw_if_index) ||
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530140 (~0 == gm->tunnel_index_by_sw_if_index[sw_if_index]))
141 return;
Neale Rannsb80c5362016-10-08 13:03:40 +0100142
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530143 gt = pool_elt_at_index (gm->tunnels,
144 gm->tunnel_index_by_sw_if_index[sw_if_index]);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100145
John Loa43ccae2018-02-13 17:15:23 -0500146 if ((vnet_hw_interface_get_flags (vnet_get_main (), gt->hw_if_index) &
147 VNET_HW_INTERFACE_FLAG_LINK_UP) == 0)
Neale Rannsb80c5362016-10-08 13:03:40 +0100148 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530149 adj_nbr_midchain_unstack (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100150 }
Neale Ranns521a8d72018-12-06 13:46:49 +0000151 else
John Loa43ccae2018-02-13 17:15:23 -0500152 {
Neale Ranns521a8d72018-12-06 13:46:49 +0000153 adj_nbr_midchain_stack_on_fib_entry (ai,
154 gt->fib_entry_index,
155 fib_forw_chain_type_from_fib_proto
156 (gt->tunnel_dst.fp_proto));
John Loa43ccae2018-02-13 17:15:23 -0500157 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100158}
159
160/**
161 * @brief Call back when restacking all adjacencies on a GRE interface
162 */
163static adj_walk_rc_t
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530164gre_adj_walk_cb (adj_index_t ai, void *ctx)
Neale Rannsb80c5362016-10-08 13:03:40 +0100165{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530166 gre_tunnel_stack (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100167
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530168 return (ADJ_WALK_RC_CONTINUE);
Neale Rannsb80c5362016-10-08 13:03:40 +0100169}
170
171static void
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530172gre_tunnel_restack (gre_tunnel_t * gt)
Neale Rannsb80c5362016-10-08 13:03:40 +0100173{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530174 fib_protocol_t proto;
Neale Rannsb80c5362016-10-08 13:03:40 +0100175
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530176 /*
177 * walk all the adjacencies on th GRE interface and restack them
178 */
179 FOR_EACH_FIB_IP_PROTOCOL (proto)
180 {
181 adj_nbr_walk (gt->sw_if_index, proto, gre_adj_walk_cb, NULL);
182 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100183}
184
185/**
186 * Function definition to backwalk a FIB node
187 */
188static fib_node_back_walk_rc_t
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530189gre_tunnel_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100190{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530191 gre_tunnel_restack (gre_tunnel_from_fib_node (node));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100192
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530193 return (FIB_NODE_BACK_WALK_CONTINUE);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100194}
195
196/**
197 * Function definition to get a FIB node from its index
198 */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530199static fib_node_t *
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100200gre_tunnel_fib_node_get (fib_node_index_t index)
201{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530202 gre_tunnel_t *gt;
203 gre_main_t *gm;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100204
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530205 gm = &gre_main;
206 gt = pool_elt_at_index (gm->tunnels, index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100207
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530208 return (&gt->node);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100209}
210
211/**
212 * Function definition to inform the FIB node that its last lock has gone.
213 */
214static void
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530215gre_tunnel_last_lock_gone (fib_node_t * node)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100216{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530217 /*
218 * The MPLS GRE tunnel is a root of the graph. As such
219 * it never has children and thus is never locked.
220 */
221 ASSERT (0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100222}
223
224/*
225 * Virtual function table registered by MPLS GRE tunnels
226 * for participation in the FIB object graph.
227 */
228const static fib_node_vft_t gre_vft = {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530229 .fnv_get = gre_tunnel_fib_node_get,
230 .fnv_last_lock = gre_tunnel_last_lock_gone,
231 .fnv_back_walk = gre_tunnel_back_walk,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100232};
233
Ciara Loftus7eac9162016-09-30 15:47:03 +0100234static int
John Loa43ccae2018-02-13 17:15:23 -0500235vnet_gre_tunnel_add (vnet_gre_add_del_tunnel_args_t * a,
236 u32 outer_fib_index, u32 * sw_if_indexp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530238 gre_main_t *gm = &gre_main;
239 vnet_main_t *vnm = gm->vnet_main;
240 ip4_main_t *im4 = &ip4_main;
241 ip6_main_t *im6 = &ip6_main;
242 gre_tunnel_t *t;
243 vnet_hw_interface_t *hi;
Chris Luke27fe48f2016-04-28 13:44:38 -0400244 u32 hw_if_index, sw_if_index;
David Hothama8cd3092016-09-19 09:55:07 -0700245 clib_error_t *error;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100246 u8 is_ipv6 = a->is_ipv6;
Neale Ranns33ce60d2017-12-14 08:51:32 -0800247 gre_tunnel_key_t key;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700248
John Loa43ccae2018-02-13 17:15:23 -0500249 t = gre_tunnel_db_find (a, outer_fib_index, &key);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100250 if (NULL != t)
John Loa43ccae2018-02-13 17:15:23 -0500251 return VNET_API_ERROR_IF_ALREADY_EXISTS;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100253 pool_get_aligned (gm->tunnels, t, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400254 clib_memset (t, 0, sizeof (*t));
John Loa43ccae2018-02-13 17:15:23 -0500255
256 /* Reconcile the real dev_instance and a possible requested instance */
257 u32 t_idx = t - gm->tunnels; /* tunnel index (or instance) */
258 u32 u_idx = a->instance; /* user specified instance */
259 if (u_idx == ~0)
260 u_idx = t_idx;
261 if (hash_get (gm->instance_used, u_idx))
262 {
263 pool_put (gm->tunnels, t);
264 return VNET_API_ERROR_INSTANCE_IN_USE;
265 }
266 hash_set (gm->instance_used, u_idx, 1);
267
268 t->dev_instance = t_idx; /* actual */
269 t->user_instance = u_idx; /* name */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530270 fib_node_init (&t->node, FIB_NODE_TYPE_GRE_TUNNEL);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271
John Loa43ccae2018-02-13 17:15:23 -0500272 t->type = a->tunnel_type;
273 if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
274 t->session_id = a->session_id;
Neale Ranns177bbdc2016-11-15 09:46:51 +0000275
John Loa43ccae2018-02-13 17:15:23 -0500276 if (t->type == GRE_TUNNEL_TYPE_L3)
277 hw_if_index = vnet_register_interface (vnm, gre_device_class.index, t_idx,
278 gre_hw_interface_class.index,
279 t_idx);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530280 else
281 {
John Loa43ccae2018-02-13 17:15:23 -0500282 /* Default MAC address (d00b:eed0:0000 + sw_if_index) */
John Lo25d417f2018-02-15 15:47:53 -0500283 u8 address[6] =
284 { 0xd0, 0x0b, 0xee, 0xd0, (u8) (t_idx >> 8), (u8) t_idx };
285 error =
286 ethernet_register_interface (vnm, gre_device_class.index, t_idx,
287 address, &hw_if_index, 0);
John Loa43ccae2018-02-13 17:15:23 -0500288 if (error)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530289 {
John Loa43ccae2018-02-13 17:15:23 -0500290 clib_error_report (error);
291 return VNET_API_ERROR_INVALID_REGISTRATION;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530292 }
Chris Luke27fe48f2016-04-28 13:44:38 -0400293 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294
John Loa43ccae2018-02-13 17:15:23 -0500295 /* Set GRE tunnel interface output node (not used for L3 payload) */
296 vnet_set_interface_output_node (vnm, hw_if_index, gre_encap_node.index);
297
298 hi = vnet_get_hw_interface (vnm, hw_if_index);
299 sw_if_index = hi->sw_if_index;
300
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100301 t->hw_if_index = hw_if_index;
302 t->outer_fib_index = outer_fib_index;
303 t->sw_if_index = sw_if_index;
Neale Rannsad422ed2016-11-02 14:20:04 +0000304 t->l2_adj_index = ADJ_INDEX_INVALID;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100306 vec_validate_init_empty (gm->tunnel_index_by_sw_if_index, sw_if_index, ~0);
John Loa43ccae2018-02-13 17:15:23 -0500307 gm->tunnel_index_by_sw_if_index[sw_if_index] = t_idx;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700308
Ciara Loftus7eac9162016-09-30 15:47:03 +0100309 if (!is_ipv6)
310 {
311 vec_validate (im4->fib_index_by_sw_if_index, sw_if_index);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530312 hi->min_packet_bytes =
313 64 + sizeof (gre_header_t) + sizeof (ip4_header_t);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100314 }
315 else
316 {
317 vec_validate (im6->fib_index_by_sw_if_index, sw_if_index);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530318 hi->min_packet_bytes =
319 64 + sizeof (gre_header_t) + sizeof (ip6_header_t);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100320 }
Chris Luke71649002016-05-06 11:51:54 -0400321
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100322 /* Standard default gre MTU. */
Ole Troand7231612018-06-07 10:17:57 +0200323 vnet_sw_interface_set_mtu (vnm, sw_if_index, 9000);
Damjan Marionfe7d4a22018-04-13 19:43:39 +0200324
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100325 /*
326 * source the FIB entry for the tunnel's destination
327 * and become a child thereof. The tunnel will then get poked
328 * when the forwarding for the entry updates, and the tunnel can
329 * re-stack accordingly
330 */
Ciara Loftus7eac9162016-09-30 15:47:03 +0100331
332 clib_memcpy (&t->tunnel_src, &a->src, sizeof (t->tunnel_src));
333 t->tunnel_dst.fp_len = !is_ipv6 ? 32 : 128;
334 t->tunnel_dst.fp_proto = !is_ipv6 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
335 t->tunnel_dst.fp_addr = a->dst;
336
Neale Ranns33ce60d2017-12-14 08:51:32 -0800337 gre_tunnel_db_add (t, &key);
John Loa43ccae2018-02-13 17:15:23 -0500338 if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530339 {
John Loa43ccae2018-02-13 17:15:23 -0500340 gre_sn_key_t skey;
341 gre_sn_t *gre_sn;
342
343 gre_mk_sn_key (t, &skey);
344 gre_sn = (gre_sn_t *) hash_get_mem (gm->seq_num_by_key, &skey);
345 if (gre_sn != NULL)
346 {
347 gre_sn->ref_count++;
348 t->gre_sn = gre_sn;
349 }
350 else
351 {
352 gre_sn = clib_mem_alloc (sizeof (gre_sn_t));
353 gre_sn->seq_num = 0;
354 gre_sn->ref_count = 1;
355 t->gre_sn = gre_sn;
356 hash_set_mem_alloc (&gm->seq_num_by_key, &skey, (uword) gre_sn);
357 }
358 }
359
360 t->fib_entry_index = fib_table_entry_special_add
361 (outer_fib_index, &t->tunnel_dst, FIB_SOURCE_RR, FIB_ENTRY_FLAG_NONE);
362 t->sibling_index = fib_entry_child_add
363 (t->fib_entry_index, FIB_NODE_TYPE_GRE_TUNNEL, t_idx);
364
365 if (t->type != GRE_TUNNEL_TYPE_L3)
366 {
367 t->l2_adj_index = adj_nbr_add_or_lock
368 (t->tunnel_dst.fp_proto, VNET_LINK_ETHERNET, &zero_addr, sw_if_index);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530369 gre_update_adj (vnm, t->sw_if_index, t->l2_adj_index);
370 }
Chris Luke27fe48f2016-04-28 13:44:38 -0400371
372 if (sw_if_indexp)
373 *sw_if_indexp = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374
375 return 0;
376}
377
Ciara Loftus7eac9162016-09-30 15:47:03 +0100378static int
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530379vnet_gre_tunnel_delete (vnet_gre_add_del_tunnel_args_t * a,
John Loa43ccae2018-02-13 17:15:23 -0500380 u32 outer_fib_index, u32 * sw_if_indexp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100381{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530382 gre_main_t *gm = &gre_main;
383 vnet_main_t *vnm = gm->vnet_main;
384 gre_tunnel_t *t;
Neale Ranns33ce60d2017-12-14 08:51:32 -0800385 gre_tunnel_key_t key;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100386 u32 sw_if_index;
John Lo101e0052018-01-06 00:22:54 -0500387
John Loa43ccae2018-02-13 17:15:23 -0500388 t = gre_tunnel_db_find (a, outer_fib_index, &key);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100389 if (NULL == t)
390 return VNET_API_ERROR_NO_SUCH_ENTRY;
391
392 sw_if_index = t->sw_if_index;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530393 vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
John Loa43ccae2018-02-13 17:15:23 -0500394
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100395 /* make sure tunnel is removed from l2 bd or xconnect */
Neale Rannsb4743802018-09-05 09:13:57 -0700396 set_int_l2_mode (gm->vlib_main, vnm, MODE_L3, sw_if_index, 0,
397 L2_BD_PORT_TYPE_NORMAL, 0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100398 gm->tunnel_index_by_sw_if_index[sw_if_index] = ~0;
Neale Ranns177bbdc2016-11-15 09:46:51 +0000399
John Loa43ccae2018-02-13 17:15:23 -0500400 if (t->type == GRE_TUNNEL_TYPE_L3)
401 vnet_delete_hw_interface (vnm, t->hw_if_index);
402 else
403 ethernet_delete_interface (vnm, t->hw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100404
Neale Rannsad422ed2016-11-02 14:20:04 +0000405 if (t->l2_adj_index != ADJ_INDEX_INVALID)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530406 adj_unlock (t->l2_adj_index);
Neale Rannsad422ed2016-11-02 14:20:04 +0000407
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530408 fib_entry_child_remove (t->fib_entry_index, t->sibling_index);
409 fib_table_entry_delete_index (t->fib_entry_index, FIB_SOURCE_RR);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100410
John Loa43ccae2018-02-13 17:15:23 -0500411 ASSERT ((t->type != GRE_TUNNEL_TYPE_ERSPAN) || (t->gre_sn != NULL));
412 if ((t->type == GRE_TUNNEL_TYPE_ERSPAN) && (t->gre_sn->ref_count-- == 1))
413 {
414 gre_sn_key_t skey;
415 gre_mk_sn_key (t, &skey);
416 hash_unset_mem_free (&gm->seq_num_by_key, &skey);
417 clib_mem_free (t->gre_sn);
418 }
419
420 hash_unset (gm->instance_used, t->user_instance);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530421 gre_tunnel_db_remove (t);
422 fib_node_deinit (&t->node);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100423 pool_put (gm->tunnels, t);
424
425 if (sw_if_indexp)
426 *sw_if_indexp = sw_if_index;
427
428 return 0;
429}
430
431int
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530432vnet_gre_add_del_tunnel (vnet_gre_add_del_tunnel_args_t * a,
433 u32 * sw_if_indexp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100434{
John Loa43ccae2018-02-13 17:15:23 -0500435 u32 outer_fib_index;
436
437 if (!a->is_ipv6)
438 outer_fib_index = ip4_fib_index_from_table_id (a->outer_fib_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100439 else
John Loa43ccae2018-02-13 17:15:23 -0500440 outer_fib_index = ip6_fib_index_from_table_id (a->outer_fib_id);
441
442 if (~0 == outer_fib_index)
443 return VNET_API_ERROR_NO_SUCH_FIB;
444
445 if (a->session_id > GTK_SESSION_ID_MAX)
446 return VNET_API_ERROR_INVALID_SESSION_ID;
447
448 if (a->is_add)
449 return (vnet_gre_tunnel_add (a, outer_fib_index, sw_if_indexp));
450 else
451 return (vnet_gre_tunnel_delete (a, outer_fib_index, sw_if_indexp));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100452}
453
Neale Rannsb80c5362016-10-08 13:03:40 +0100454clib_error_t *
455gre_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100456{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530457 gre_main_t *gm = &gre_main;
458 vnet_hw_interface_t *hi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100459 gre_tunnel_t *t;
Neale Rannsb80c5362016-10-08 13:03:40 +0100460 u32 ti;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100461
Neale Rannsb80c5362016-10-08 13:03:40 +0100462 hi = vnet_get_hw_interface (vnm, hw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100463
Neale Rannsb80c5362016-10-08 13:03:40 +0100464 if (NULL == gm->tunnel_index_by_sw_if_index ||
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530465 hi->sw_if_index >= vec_len (gm->tunnel_index_by_sw_if_index))
466 return (NULL);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100467
Neale Rannsb80c5362016-10-08 13:03:40 +0100468 ti = gm->tunnel_index_by_sw_if_index[hi->sw_if_index];
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100469
Neale Rannsb80c5362016-10-08 13:03:40 +0100470 if (~0 == ti)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530471 /* not one of ours */
472 return (NULL);
Neale Rannsb80c5362016-10-08 13:03:40 +0100473
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530474 t = pool_elt_at_index (gm->tunnels, ti);
Neale Rannsb80c5362016-10-08 13:03:40 +0100475
476 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530477 vnet_hw_interface_set_flags (vnm, hw_if_index,
478 VNET_HW_INTERFACE_FLAG_LINK_UP);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100479 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530480 vnet_hw_interface_set_flags (vnm, hw_if_index, 0 /* down */ );
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100481
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530482 gre_tunnel_restack (t);
Neale Rannsb80c5362016-10-08 13:03:40 +0100483
484 return /* no error */ 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100485}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700486
487static clib_error_t *
488create_gre_tunnel_command_fn (vlib_main_t * vm,
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530489 unformat_input_t * input,
490 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530492 unformat_input_t _line_input, *line_input = &_line_input;
493 vnet_gre_add_del_tunnel_args_t _a, *a = &_a;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100494 ip46_address_t src, dst;
John Loa43ccae2018-02-13 17:15:23 -0500495 u32 instance = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700496 u32 outer_fib_id = 0;
John Loa43ccae2018-02-13 17:15:23 -0500497 gre_tunnel_type_t t_type = GRE_TUNNEL_TYPE_L3;
498 u32 session_id = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499 int rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700500 u32 num_m_args = 0;
Chris Luke27fe48f2016-04-28 13:44:38 -0400501 u8 is_add = 1;
Pierre Pfister78ea9c22016-05-23 12:51:54 +0100502 u32 sw_if_index;
Billy McFalla9a20e72017-02-15 11:39:12 -0500503 clib_error_t *error = NULL;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100504 u8 ipv4_set = 0;
505 u8 ipv6_set = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506
507 /* Get a line of input. */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530508 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509 return 0;
510
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530511 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
512 {
513 if (unformat (line_input, "del"))
514 is_add = 0;
John Loa43ccae2018-02-13 17:15:23 -0500515 else if (unformat (line_input, "instance %d", &instance))
516 ;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530517 else
518 if (unformat (line_input, "src %U", unformat_ip4_address, &src.ip4))
519 {
520 num_m_args++;
521 ipv4_set = 1;
522 }
523 else
524 if (unformat (line_input, "dst %U", unformat_ip4_address, &dst.ip4))
525 {
526 num_m_args++;
527 ipv4_set = 1;
528 }
529 else
530 if (unformat (line_input, "src %U", unformat_ip6_address, &src.ip6))
531 {
532 num_m_args++;
533 ipv6_set = 1;
534 }
535 else
536 if (unformat (line_input, "dst %U", unformat_ip6_address, &dst.ip6))
537 {
538 num_m_args++;
539 ipv6_set = 1;
540 }
541 else if (unformat (line_input, "outer-fib-id %d", &outer_fib_id))
542 ;
543 else if (unformat (line_input, "teb"))
John Loa43ccae2018-02-13 17:15:23 -0500544 t_type = GRE_TUNNEL_TYPE_TEB;
545 else if (unformat (line_input, "erspan %d", &session_id))
546 t_type = GRE_TUNNEL_TYPE_ERSPAN;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530547 else
548 {
549 error = clib_error_return (0, "unknown input `%U'",
550 format_unformat_error, line_input);
551 goto done;
552 }
553 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554
555 if (num_m_args < 2)
Billy McFalla9a20e72017-02-15 11:39:12 -0500556 {
557 error = clib_error_return (0, "mandatory argument(s) missing");
558 goto done;
559 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530561 if ((ipv4_set && memcmp (&src.ip4, &dst.ip4, sizeof (src.ip4)) == 0) ||
562 (ipv6_set && memcmp (&src.ip6, &dst.ip6, sizeof (src.ip6)) == 0))
Billy McFalla9a20e72017-02-15 11:39:12 -0500563 {
564 error = clib_error_return (0, "src and dst are identical");
565 goto done;
566 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567
Ciara Loftus7eac9162016-09-30 15:47:03 +0100568 if (ipv4_set && ipv6_set)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530569 return clib_error_return (0, "both IPv4 and IPv6 addresses specified");
Ciara Loftus7eac9162016-09-30 15:47:03 +0100570
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530571 if ((ipv4_set && memcmp (&dst.ip4, &zero_addr.ip4, sizeof (dst.ip4)) == 0)
572 || (ipv6_set
573 && memcmp (&dst.ip6, &zero_addr.ip6, sizeof (dst.ip6)) == 0))
Ciara Loftus7eac9162016-09-30 15:47:03 +0100574 {
575 error = clib_error_return (0, "dst address cannot be zero");
576 goto done;
577 }
578
Dave Barachb7b92992018-10-17 10:38:51 -0400579 clib_memset (a, 0, sizeof (*a));
John Loa43ccae2018-02-13 17:15:23 -0500580 a->is_add = is_add;
Hongjun Ni11bfc2f2016-07-22 18:19:19 +0800581 a->outer_fib_id = outer_fib_id;
John Loa43ccae2018-02-13 17:15:23 -0500582 a->tunnel_type = t_type;
583 a->session_id = session_id;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100584 a->is_ipv6 = ipv6_set;
John Loa43ccae2018-02-13 17:15:23 -0500585 a->instance = instance;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100586 if (!ipv6_set)
587 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530588 clib_memcpy (&a->src.ip4, &src.ip4, sizeof (src.ip4));
589 clib_memcpy (&a->dst.ip4, &dst.ip4, sizeof (dst.ip4));
Ciara Loftus7eac9162016-09-30 15:47:03 +0100590 }
591 else
592 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530593 clib_memcpy (&a->src.ip6, &src.ip6, sizeof (src.ip6));
594 clib_memcpy (&a->dst.ip6, &dst.ip6, sizeof (dst.ip6));
Ciara Loftus7eac9162016-09-30 15:47:03 +0100595 }
Chris Luke27fe48f2016-04-28 13:44:38 -0400596
John Loa43ccae2018-02-13 17:15:23 -0500597 rv = vnet_gre_add_del_tunnel (a, &sw_if_index);
Chris Luke27fe48f2016-04-28 13:44:38 -0400598
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530599 switch (rv)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600 {
601 case 0:
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530602 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
603 vnet_get_main (), sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700604 break;
John Loa43ccae2018-02-13 17:15:23 -0500605 case VNET_API_ERROR_IF_ALREADY_EXISTS:
Billy McFalla9a20e72017-02-15 11:39:12 -0500606 error = clib_error_return (0, "GRE tunnel already exists...");
607 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608 case VNET_API_ERROR_NO_SUCH_FIB:
Billy McFalla9a20e72017-02-15 11:39:12 -0500609 error = clib_error_return (0, "outer fib ID %d doesn't exist\n",
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530610 outer_fib_id);
Billy McFalla9a20e72017-02-15 11:39:12 -0500611 goto done;
John Loa43ccae2018-02-13 17:15:23 -0500612 case VNET_API_ERROR_NO_SUCH_ENTRY:
613 error = clib_error_return (0, "GRE tunnel doesn't exist");
614 goto done;
615 case VNET_API_ERROR_INVALID_SESSION_ID:
616 error = clib_error_return (0, "session ID %d out of range\n",
617 session_id);
618 goto done;
619 case VNET_API_ERROR_INSTANCE_IN_USE:
620 error = clib_error_return (0, "Instance is in use");
621 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622 default:
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530623 error =
624 clib_error_return (0, "vnet_gre_add_del_tunnel returned %d", rv);
Billy McFalla9a20e72017-02-15 11:39:12 -0500625 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700626 }
627
Billy McFalla9a20e72017-02-15 11:39:12 -0500628done:
629 unformat_free (line_input);
630
631 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700632}
633
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530634/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700635VLIB_CLI_COMMAND (create_gre_tunnel_command, static) = {
636 .path = "create gre tunnel",
John Loa43ccae2018-02-13 17:15:23 -0500637 .short_help = "create gre tunnel src <addr> dst <addr> [instance <n>] "
638 "[outer-fib-id <fib>] [teb | erspan <session-id>] [del]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700639 .function = create_gre_tunnel_command_fn,
640};
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530641/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700642
Chris Luke27fe48f2016-04-28 13:44:38 -0400643static clib_error_t *
644show_gre_tunnel_command_fn (vlib_main_t * vm,
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530645 unformat_input_t * input,
646 vlib_cli_command_t * cmd)
Chris Luke27fe48f2016-04-28 13:44:38 -0400647{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530648 gre_main_t *gm = &gre_main;
649 gre_tunnel_t *t;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100650 u32 ti = ~0;
Chris Luke27fe48f2016-04-28 13:44:38 -0400651
652 if (pool_elts (gm->tunnels) == 0)
653 vlib_cli_output (vm, "No GRE tunnels configured...");
654
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100655 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
656 {
657 if (unformat (input, "%d", &ti))
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530658 ;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100659 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530660 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100661 }
662
663 if (~0 == ti)
664 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530665 /* *INDENT-OFF* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100666 pool_foreach (t, gm->tunnels,
667 ({
Neale Rannsb80c5362016-10-08 13:03:40 +0100668 vlib_cli_output (vm, "%U", format_gre_tunnel, t);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100669 }));
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530670 /* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100671 }
672 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530673 {
674 t = pool_elt_at_index (gm->tunnels, ti);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100675
Neale Rannsb80c5362016-10-08 13:03:40 +0100676 vlib_cli_output (vm, "%U", format_gre_tunnel, t);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530677 }
Chris Luke27fe48f2016-04-28 13:44:38 -0400678
679 return 0;
680}
681
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530682/* *INDENT-OFF* */
Chris Luke27fe48f2016-04-28 13:44:38 -0400683VLIB_CLI_COMMAND (show_gre_tunnel_command, static) = {
684 .path = "show gre tunnel",
685 .function = show_gre_tunnel_command_fn,
686};
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530687/* *INDENT-ON* */
Chris Luke27fe48f2016-04-28 13:44:38 -0400688
Ed Warnickecb9cada2015-12-08 15:45:58 -0700689/* force inclusion from application's main.c */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530690clib_error_t *
691gre_interface_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700692{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530693 fib_node_register_type (FIB_NODE_TYPE_GRE_TUNNEL, &gre_vft);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100694
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695 return 0;
696}
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530697
698VLIB_INIT_FUNCTION (gre_interface_init);
699
700/*
701 * fd.io coding-style-patch-verification: ON
702 *
703 * Local Variables:
704 * eval: (c-set-style "gnu")
705 * End:
706 */