blob: 30dfa3057b1ae4662b0bc213e75c3b5466a19d5e [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>
Ed Warnickecb9cada2015-12-08 15:45:58 -070019#include <vnet/gre/gre.h>
Chris Luke27fe48f2016-04-28 13:44:38 -040020#include <vnet/ip/format.h>
Neale Ranns5a59b2b2020-10-19 14:47:20 +000021#include <vnet/fib/fib_table.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010022#include <vnet/adj/adj_midchain.h>
Neale Rannsb80c5362016-10-08 13:03:40 +010023#include <vnet/adj/adj_nbr.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010024#include <vnet/mpls/mpls.h>
Neale Ranns3b81a1e2018-09-06 09:50:26 -070025#include <vnet/l2/l2_input.h>
Neale Ranns03ce4622020-02-03 10:55:09 +000026#include <vnet/teib/teib.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070027
Neale Ranns5f8f6172019-04-18 10:23:56 +000028u8 *
29format_gre_tunnel_type (u8 * s, va_list * args)
30{
31 gre_tunnel_type_t type = va_arg (*args, int);
32
33 switch (type)
34 {
35#define _(n, v) case GRE_TUNNEL_TYPE_##n: \
36 s = format (s, "%s", v); \
37 break;
38 foreach_gre_tunnel_type
39#undef _
40 }
41
42 return (s);
43}
44
Neale Ranns0bfe5d82016-08-25 15:29:12 +010045static u8 *
46format_gre_tunnel (u8 * s, va_list * args)
Chris Luke27fe48f2016-04-28 13:44:38 -040047{
Swarup Nayak9ff647a2017-11-27 10:27:43 +053048 gre_tunnel_t *t = va_arg (*args, gre_tunnel_t *);
Chris Luke27fe48f2016-04-28 13:44:38 -040049
John Loa43ccae2018-02-13 17:15:23 -050050 s = format (s, "[%d] instance %d src %U dst %U fib-idx %d sw-if-idx %d ",
51 t->dev_instance, t->user_instance,
John Lo4478d8e2018-01-12 17:15:25 -050052 format_ip46_address, &t->tunnel_src, IP46_TYPE_ANY,
53 format_ip46_address, &t->tunnel_dst.fp_addr, IP46_TYPE_ANY,
54 t->outer_fib_index, t->sw_if_index);
55
Neale Ranns5f8f6172019-04-18 10:23:56 +000056 s = format (s, "payload %U ", format_gre_tunnel_type, t->type);
Neale Ranns59ff9182019-12-29 23:55:18 +000057 s = format (s, "%U ", format_tunnel_mode, t->mode);
John Loa43ccae2018-02-13 17:15:23 -050058
59 if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
60 s = format (s, "session %d ", t->session_id);
61
62 if (t->type != GRE_TUNNEL_TYPE_L3)
63 s = format (s, "l2-adj-idx %d ", t->l2_adj_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010064
Chris Luke27fe48f2016-04-28 13:44:38 -040065 return s;
66}
67
Neale Ranns0bfe5d82016-08-25 15:29:12 +010068static gre_tunnel_t *
Neale Ranns5a8844b2019-04-16 07:15:35 +000069gre_tunnel_db_find (const vnet_gre_tunnel_add_del_args_t * a,
John Loa43ccae2018-02-13 17:15:23 -050070 u32 outer_fib_index, gre_tunnel_key_t * key)
Neale Ranns0bfe5d82016-08-25 15:29:12 +010071{
Swarup Nayak9ff647a2017-11-27 10:27:43 +053072 gre_main_t *gm = &gre_main;
73 uword *p;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010074
John Loa43ccae2018-02-13 17:15:23 -050075 if (!a->is_ipv6)
Ciara Loftus7eac9162016-09-30 15:47:03 +010076 {
John Loa43ccae2018-02-13 17:15:23 -050077 gre_mk_key4 (a->src.ip4, a->dst.ip4, outer_fib_index,
Neale Ranns4c16d802019-12-17 20:15:03 +000078 a->type, a->mode, a->session_id, &key->gtk_v4);
Neale Ranns33ce60d2017-12-14 08:51:32 -080079 p = hash_get_mem (gm->tunnel_by_key4, &key->gtk_v4);
Ciara Loftus7eac9162016-09-30 15:47:03 +010080 }
81 else
82 {
John Loa43ccae2018-02-13 17:15:23 -050083 gre_mk_key6 (&a->src.ip6, &a->dst.ip6, outer_fib_index,
Neale Ranns4c16d802019-12-17 20:15:03 +000084 a->type, a->mode, a->session_id, &key->gtk_v6);
Neale Ranns33ce60d2017-12-14 08:51:32 -080085 p = hash_get_mem (gm->tunnel_by_key6, &key->gtk_v6);
Ciara Loftus7eac9162016-09-30 15:47:03 +010086 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +010087
88 if (NULL == p)
89 return (NULL);
90
91 return (pool_elt_at_index (gm->tunnels, p[0]));
92}
93
94static void
Neale Ranns33ce60d2017-12-14 08:51:32 -080095gre_tunnel_db_add (gre_tunnel_t * t, gre_tunnel_key_t * key)
Neale Ranns0bfe5d82016-08-25 15:29:12 +010096{
Swarup Nayak9ff647a2017-11-27 10:27:43 +053097 gre_main_t *gm = &gre_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010098
Neale Ranns33ce60d2017-12-14 08:51:32 -080099 if (t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6)
Ciara Loftus7eac9162016-09-30 15:47:03 +0100100 {
Neale Ranns4c16d802019-12-17 20:15:03 +0000101 hash_set_mem_alloc (&gm->tunnel_by_key6, &key->gtk_v6, t->dev_instance);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100102 }
103 else
104 {
Neale Ranns4c16d802019-12-17 20:15:03 +0000105 hash_set_mem_alloc (&gm->tunnel_by_key4, &key->gtk_v4, t->dev_instance);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100106 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100107}
108
109static void
Neale Ranns4c16d802019-12-17 20:15:03 +0000110gre_tunnel_db_remove (gre_tunnel_t * t, gre_tunnel_key_t * key)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100111{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530112 gre_main_t *gm = &gre_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100113
Neale Ranns33ce60d2017-12-14 08:51:32 -0800114 if (t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6)
Ciara Loftus7eac9162016-09-30 15:47:03 +0100115 {
Neale Ranns4c16d802019-12-17 20:15:03 +0000116 hash_unset_mem_free (&gm->tunnel_by_key6, &key->gtk_v6);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100117 }
118 else
119 {
Neale Ranns4c16d802019-12-17 20:15:03 +0000120 hash_unset_mem_free (&gm->tunnel_by_key4, &key->gtk_v4);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100121 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100122}
123
Neale Ranns5e575b12016-10-03 09:40:25 +0100124/**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100125 * gre_tunnel_stack
126 *
127 * 'stack' (resolve the recursion for) the tunnel's midchain adjacency
128 */
Neale Ranns5e575b12016-10-03 09:40:25 +0100129void
Neale Rannsb80c5362016-10-08 13:03:40 +0100130gre_tunnel_stack (adj_index_t ai)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100131{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530132 gre_main_t *gm = &gre_main;
133 ip_adjacency_t *adj;
134 gre_tunnel_t *gt;
135 u32 sw_if_index;
Neale Rannsb80c5362016-10-08 13:03:40 +0100136
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530137 adj = adj_get (ai);
138 sw_if_index = adj->rewrite_header.sw_if_index;
Neale Rannsb80c5362016-10-08 13:03:40 +0100139
Eyal Baricd307742018-07-22 12:45:15 +0300140 if ((vec_len (gm->tunnel_index_by_sw_if_index) <= sw_if_index) ||
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530141 (~0 == gm->tunnel_index_by_sw_if_index[sw_if_index]))
142 return;
Neale Rannsb80c5362016-10-08 13:03:40 +0100143
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530144 gt = pool_elt_at_index (gm->tunnels,
145 gm->tunnel_index_by_sw_if_index[sw_if_index]);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100146
John Loa43ccae2018-02-13 17:15:23 -0500147 if ((vnet_hw_interface_get_flags (vnet_get_main (), gt->hw_if_index) &
148 VNET_HW_INTERFACE_FLAG_LINK_UP) == 0)
Neale Rannsb80c5362016-10-08 13:03:40 +0100149 {
Neale Ranns4c3ba812019-03-26 07:02:58 +0000150 adj_midchain_delegate_unstack (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100151 }
Neale Ranns521a8d72018-12-06 13:46:49 +0000152 else
John Loa43ccae2018-02-13 17:15:23 -0500153 {
Neale Ranns4c3ba812019-03-26 07:02:58 +0000154 adj_midchain_delegate_stack (ai, gt->outer_fib_index, &gt->tunnel_dst);
John Loa43ccae2018-02-13 17:15:23 -0500155 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100156}
157
158/**
Neale Rannsbd8e43d2021-03-15 14:42:30 +0000159 * mgre_tunnel_stack
160 *
161 * 'stack' (resolve the recursion for) the tunnel's midchain adjacency
162 */
163static void
164mgre_tunnel_stack (adj_index_t ai)
165{
166 gre_main_t *gm = &gre_main;
167 const ip_adjacency_t *adj;
168 const gre_tunnel_t *gt;
169 u32 sw_if_index;
170
171 adj = adj_get (ai);
172 sw_if_index = adj->rewrite_header.sw_if_index;
173
174 if ((vec_len (gm->tunnel_index_by_sw_if_index) <= sw_if_index) ||
175 (~0 == gm->tunnel_index_by_sw_if_index[sw_if_index]))
176 return;
177
178 gt = pool_elt_at_index (gm->tunnels,
179 gm->tunnel_index_by_sw_if_index[sw_if_index]);
180
181 if ((vnet_hw_interface_get_flags (vnet_get_main (), gt->hw_if_index) &
182 VNET_HW_INTERFACE_FLAG_LINK_UP) == 0)
183 {
184 adj_midchain_delegate_unstack (ai);
185 }
186 else
187 {
188 const teib_entry_t *ne;
189
190 ne = teib_entry_find_46 (sw_if_index, adj->ia_nh_proto,
191 &adj->sub_type.nbr.next_hop);
192 if (NULL != ne)
193 teib_entry_adj_stack (ne, ai);
194 }
195}
196
197/**
Neale Rannsb80c5362016-10-08 13:03:40 +0100198 * @brief Call back when restacking all adjacencies on a GRE interface
199 */
200static adj_walk_rc_t
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530201gre_adj_walk_cb (adj_index_t ai, void *ctx)
Neale Rannsb80c5362016-10-08 13:03:40 +0100202{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530203 gre_tunnel_stack (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100204
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530205 return (ADJ_WALK_RC_CONTINUE);
Neale Rannsb80c5362016-10-08 13:03:40 +0100206}
Neale Rannsbd8e43d2021-03-15 14:42:30 +0000207static adj_walk_rc_t
208mgre_adj_walk_cb (adj_index_t ai, void *ctx)
209{
210 mgre_tunnel_stack (ai);
211
212 return (ADJ_WALK_RC_CONTINUE);
213}
Neale Rannsb80c5362016-10-08 13:03:40 +0100214
215static void
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530216gre_tunnel_restack (gre_tunnel_t * gt)
Neale Rannsb80c5362016-10-08 13:03:40 +0100217{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530218 fib_protocol_t proto;
Neale Rannsb80c5362016-10-08 13:03:40 +0100219
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530220 /*
221 * walk all the adjacencies on th GRE interface and restack them
222 */
223 FOR_EACH_FIB_IP_PROTOCOL (proto)
224 {
Neale Rannsbd8e43d2021-03-15 14:42:30 +0000225 switch (gt->mode)
226 {
227 case TUNNEL_MODE_P2P:
228 return (adj_nbr_walk (gt->sw_if_index, proto, gre_adj_walk_cb, NULL));
229 case TUNNEL_MODE_MP:
230 return (adj_nbr_walk (gt->sw_if_index, proto, mgre_adj_walk_cb, NULL));
231 }
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530232 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100233}
234
Neale Ranns4c16d802019-12-17 20:15:03 +0000235static void
Neale Ranns03ce4622020-02-03 10:55:09 +0000236gre_teib_mk_key (const gre_tunnel_t * t,
237 const teib_entry_t * ne, gre_tunnel_key_t * key)
Neale Ranns4c16d802019-12-17 20:15:03 +0000238{
239 const fib_prefix_t *nh;
240
Neale Ranns03ce4622020-02-03 10:55:09 +0000241 nh = teib_entry_get_nh (ne);
Neale Ranns4c16d802019-12-17 20:15:03 +0000242
243 /* construct the key using mode P2P so it can be found in the DP */
244 if (FIB_PROTOCOL_IP4 == nh->fp_proto)
245 gre_mk_key4 (t->tunnel_src.ip4,
246 nh->fp_addr.ip4,
Neale Ranns03ce4622020-02-03 10:55:09 +0000247 teib_entry_get_fib_index (ne),
Neale Ranns59ff9182019-12-29 23:55:18 +0000248 t->type, TUNNEL_MODE_P2P, 0, &key->gtk_v4);
Neale Ranns4c16d802019-12-17 20:15:03 +0000249 else
250 gre_mk_key6 (&t->tunnel_src.ip6,
251 &nh->fp_addr.ip6,
Neale Ranns03ce4622020-02-03 10:55:09 +0000252 teib_entry_get_fib_index (ne),
Neale Ranns59ff9182019-12-29 23:55:18 +0000253 t->type, TUNNEL_MODE_P2P, 0, &key->gtk_v6);
Neale Ranns4c16d802019-12-17 20:15:03 +0000254}
255
Neale Ranns14053c92019-12-29 23:55:18 +0000256/**
Neale Ranns6ba4e412020-10-19 09:59:41 +0000257 * An TEIB entry has been added
Neale Ranns14053c92019-12-29 23:55:18 +0000258 */
Neale Ranns4c16d802019-12-17 20:15:03 +0000259static void
Neale Ranns03ce4622020-02-03 10:55:09 +0000260gre_teib_entry_added (const teib_entry_t * ne)
Neale Ranns4c16d802019-12-17 20:15:03 +0000261{
262 gre_main_t *gm = &gre_main;
Neale Rannse6b83052020-09-17 12:56:47 +0000263 const ip_address_t *nh;
Neale Ranns4c16d802019-12-17 20:15:03 +0000264 gre_tunnel_key_t key;
265 gre_tunnel_t *t;
266 u32 sw_if_index;
267 u32 t_idx;
268
Neale Ranns03ce4622020-02-03 10:55:09 +0000269 sw_if_index = teib_entry_get_sw_if_index (ne);
Neale Ranns4c16d802019-12-17 20:15:03 +0000270 if (vec_len (gm->tunnel_index_by_sw_if_index) < sw_if_index)
271 return;
272
273 t_idx = gm->tunnel_index_by_sw_if_index[sw_if_index];
274
275 if (INDEX_INVALID == t_idx)
276 return;
277
Neale Ranns14053c92019-12-29 23:55:18 +0000278 /* entry has been added on an interface for which there is a GRE tunnel */
Neale Ranns4c16d802019-12-17 20:15:03 +0000279 t = pool_elt_at_index (gm->tunnels, t_idx);
280
Neale Ranns14053c92019-12-29 23:55:18 +0000281 if (t->mode != TUNNEL_MODE_MP)
282 return;
283
284 /* the next-hop (underlay) of the NHRP entry will form part of the key for
285 * ingress lookup to match packets to this interface */
Neale Ranns03ce4622020-02-03 10:55:09 +0000286 gre_teib_mk_key (t, ne, &key);
Neale Ranns4c16d802019-12-17 20:15:03 +0000287 gre_tunnel_db_add (t, &key);
Neale Ranns14053c92019-12-29 23:55:18 +0000288
289 /* update the rewrites for each of the adjacencies for this peer (overlay)
290 * using the next-hop (underlay) */
291 mgre_walk_ctx_t ctx = {
292 .t = t,
293 .ne = ne
294 };
Neale Ranns03ce4622020-02-03 10:55:09 +0000295 nh = teib_entry_get_peer (ne);
296 adj_nbr_walk_nh (teib_entry_get_sw_if_index (ne),
Neale Rannse6b83052020-09-17 12:56:47 +0000297 (AF_IP4 == ip_addr_version (nh) ?
Neale Ranns14053c92019-12-29 23:55:18 +0000298 FIB_PROTOCOL_IP4 :
Neale Rannse6b83052020-09-17 12:56:47 +0000299 FIB_PROTOCOL_IP6),
300 &ip_addr_46 (nh), mgre_mk_complete_walk, &ctx);
Neale Ranns4c16d802019-12-17 20:15:03 +0000301}
302
303static void
Neale Ranns03ce4622020-02-03 10:55:09 +0000304gre_teib_entry_deleted (const teib_entry_t * ne)
Neale Ranns4c16d802019-12-17 20:15:03 +0000305{
306 gre_main_t *gm = &gre_main;
Neale Rannse6b83052020-09-17 12:56:47 +0000307 const ip_address_t *nh;
Neale Ranns4c16d802019-12-17 20:15:03 +0000308 gre_tunnel_key_t key;
309 gre_tunnel_t *t;
310 u32 sw_if_index;
311 u32 t_idx;
312
Neale Ranns03ce4622020-02-03 10:55:09 +0000313 sw_if_index = teib_entry_get_sw_if_index (ne);
Neale Ranns4c16d802019-12-17 20:15:03 +0000314 if (vec_len (gm->tunnel_index_by_sw_if_index) < sw_if_index)
315 return;
316
317 t_idx = gm->tunnel_index_by_sw_if_index[sw_if_index];
318
319 if (INDEX_INVALID == t_idx)
320 return;
321
322 t = pool_elt_at_index (gm->tunnels, t_idx);
323
Neale Ranns14053c92019-12-29 23:55:18 +0000324 /* remove the next-hop as an ingress lookup key */
Neale Ranns03ce4622020-02-03 10:55:09 +0000325 gre_teib_mk_key (t, ne, &key);
Neale Ranns4c16d802019-12-17 20:15:03 +0000326 gre_tunnel_db_remove (t, &key);
Neale Ranns14053c92019-12-29 23:55:18 +0000327
Neale Ranns03ce4622020-02-03 10:55:09 +0000328 nh = teib_entry_get_peer (ne);
Neale Ranns14053c92019-12-29 23:55:18 +0000329
330 /* make all the adjacencies incomplete */
Neale Ranns03ce4622020-02-03 10:55:09 +0000331 adj_nbr_walk_nh (teib_entry_get_sw_if_index (ne),
Neale Rannse6b83052020-09-17 12:56:47 +0000332 (AF_IP4 == ip_addr_version (nh) ?
Neale Ranns14053c92019-12-29 23:55:18 +0000333 FIB_PROTOCOL_IP4 :
Neale Rannse6b83052020-09-17 12:56:47 +0000334 FIB_PROTOCOL_IP6),
335 &ip_addr_46 (nh), mgre_mk_incomplete_walk, t);
Neale Ranns4c16d802019-12-17 20:15:03 +0000336}
337
338static walk_rc_t
Neale Ranns03ce4622020-02-03 10:55:09 +0000339gre_tunnel_delete_teib_walk (index_t nei, void *ctx)
Neale Ranns4c16d802019-12-17 20:15:03 +0000340{
341 gre_tunnel_t *t = ctx;
342 gre_tunnel_key_t key;
343
Neale Ranns03ce4622020-02-03 10:55:09 +0000344 gre_teib_mk_key (t, teib_entry_get (nei), &key);
Neale Ranns4c16d802019-12-17 20:15:03 +0000345 gre_tunnel_db_remove (t, &key);
346
347 return (WALK_CONTINUE);
348}
349
350static walk_rc_t
Neale Ranns03ce4622020-02-03 10:55:09 +0000351gre_tunnel_add_teib_walk (index_t nei, void *ctx)
Neale Ranns4c16d802019-12-17 20:15:03 +0000352{
353 gre_tunnel_t *t = ctx;
354 gre_tunnel_key_t key;
355
Neale Ranns03ce4622020-02-03 10:55:09 +0000356 gre_teib_mk_key (t, teib_entry_get (nei), &key);
Neale Ranns4c16d802019-12-17 20:15:03 +0000357 gre_tunnel_db_add (t, &key);
358
359 return (WALK_CONTINUE);
360}
361
Ciara Loftus7eac9162016-09-30 15:47:03 +0100362static int
Neale Ranns5a8844b2019-04-16 07:15:35 +0000363vnet_gre_tunnel_add (vnet_gre_tunnel_add_del_args_t * a,
John Loa43ccae2018-02-13 17:15:23 -0500364 u32 outer_fib_index, u32 * sw_if_indexp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530366 gre_main_t *gm = &gre_main;
367 vnet_main_t *vnm = gm->vnet_main;
368 ip4_main_t *im4 = &ip4_main;
369 ip6_main_t *im6 = &ip6_main;
370 gre_tunnel_t *t;
371 vnet_hw_interface_t *hi;
Chris Luke27fe48f2016-04-28 13:44:38 -0400372 u32 hw_if_index, sw_if_index;
David Hothama8cd3092016-09-19 09:55:07 -0700373 clib_error_t *error;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100374 u8 is_ipv6 = a->is_ipv6;
Neale Ranns33ce60d2017-12-14 08:51:32 -0800375 gre_tunnel_key_t key;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700376
John Loa43ccae2018-02-13 17:15:23 -0500377 t = gre_tunnel_db_find (a, outer_fib_index, &key);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100378 if (NULL != t)
John Loa43ccae2018-02-13 17:15:23 -0500379 return VNET_API_ERROR_IF_ALREADY_EXISTS;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100381 pool_get_aligned (gm->tunnels, t, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400382 clib_memset (t, 0, sizeof (*t));
John Loa43ccae2018-02-13 17:15:23 -0500383
384 /* Reconcile the real dev_instance and a possible requested instance */
385 u32 t_idx = t - gm->tunnels; /* tunnel index (or instance) */
386 u32 u_idx = a->instance; /* user specified instance */
387 if (u_idx == ~0)
388 u_idx = t_idx;
389 if (hash_get (gm->instance_used, u_idx))
390 {
391 pool_put (gm->tunnels, t);
392 return VNET_API_ERROR_INSTANCE_IN_USE;
393 }
394 hash_set (gm->instance_used, u_idx, 1);
395
396 t->dev_instance = t_idx; /* actual */
397 t->user_instance = u_idx; /* name */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398
Neale Ranns5a8844b2019-04-16 07:15:35 +0000399 t->type = a->type;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000400 t->mode = a->mode;
Neale Rannse5b94dd2019-12-31 05:13:14 +0000401 t->flags = a->flags;
John Loa43ccae2018-02-13 17:15:23 -0500402 if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
403 t->session_id = a->session_id;
Neale Ranns177bbdc2016-11-15 09:46:51 +0000404
John Loa43ccae2018-02-13 17:15:23 -0500405 if (t->type == GRE_TUNNEL_TYPE_L3)
Neale Ranns5f8f6172019-04-18 10:23:56 +0000406 {
Neale Ranns59ff9182019-12-29 23:55:18 +0000407 if (t->mode == TUNNEL_MODE_P2P)
Neale Ranns5f8f6172019-04-18 10:23:56 +0000408 hw_if_index =
409 vnet_register_interface (vnm, gre_device_class.index, t_idx,
410 gre_hw_interface_class.index, t_idx);
411 else
412 hw_if_index =
413 vnet_register_interface (vnm, gre_device_class.index, t_idx,
414 mgre_hw_interface_class.index, t_idx);
415 }
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530416 else
417 {
John Loa43ccae2018-02-13 17:15:23 -0500418 /* Default MAC address (d00b:eed0:0000 + sw_if_index) */
John Lo25d417f2018-02-15 15:47:53 -0500419 u8 address[6] =
420 { 0xd0, 0x0b, 0xee, 0xd0, (u8) (t_idx >> 8), (u8) t_idx };
421 error =
422 ethernet_register_interface (vnm, gre_device_class.index, t_idx,
423 address, &hw_if_index, 0);
John Loa43ccae2018-02-13 17:15:23 -0500424 if (error)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530425 {
John Loa43ccae2018-02-13 17:15:23 -0500426 clib_error_report (error);
427 return VNET_API_ERROR_INVALID_REGISTRATION;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530428 }
Chris Luke27fe48f2016-04-28 13:44:38 -0400429 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700430
John Loa43ccae2018-02-13 17:15:23 -0500431 /* Set GRE tunnel interface output node (not used for L3 payload) */
Neale Ranns07bbaef2020-04-09 07:34:08 -0400432 if (GRE_TUNNEL_TYPE_ERSPAN == t->type)
433 vnet_set_interface_output_node (vnm, hw_if_index,
434 gre_erspan_encap_node.index);
435 else
436 vnet_set_interface_output_node (vnm, hw_if_index,
437 gre_teb_encap_node.index);
John Loa43ccae2018-02-13 17:15:23 -0500438
439 hi = vnet_get_hw_interface (vnm, hw_if_index);
440 sw_if_index = hi->sw_if_index;
441
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100442 t->hw_if_index = hw_if_index;
443 t->outer_fib_index = outer_fib_index;
444 t->sw_if_index = sw_if_index;
Neale Rannsad422ed2016-11-02 14:20:04 +0000445 t->l2_adj_index = ADJ_INDEX_INVALID;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100447 vec_validate_init_empty (gm->tunnel_index_by_sw_if_index, sw_if_index, ~0);
John Loa43ccae2018-02-13 17:15:23 -0500448 gm->tunnel_index_by_sw_if_index[sw_if_index] = t_idx;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449
Ciara Loftus7eac9162016-09-30 15:47:03 +0100450 if (!is_ipv6)
451 {
452 vec_validate (im4->fib_index_by_sw_if_index, sw_if_index);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530453 hi->min_packet_bytes =
454 64 + sizeof (gre_header_t) + sizeof (ip4_header_t);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100455 }
456 else
457 {
458 vec_validate (im6->fib_index_by_sw_if_index, sw_if_index);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530459 hi->min_packet_bytes =
460 64 + sizeof (gre_header_t) + sizeof (ip6_header_t);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100461 }
Chris Luke71649002016-05-06 11:51:54 -0400462
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100463 /* Standard default gre MTU. */
Ole Troand7231612018-06-07 10:17:57 +0200464 vnet_sw_interface_set_mtu (vnm, sw_if_index, 9000);
Damjan Marionfe7d4a22018-04-13 19:43:39 +0200465
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100466 /*
467 * source the FIB entry for the tunnel's destination
468 * and become a child thereof. The tunnel will then get poked
469 * when the forwarding for the entry updates, and the tunnel can
470 * re-stack accordingly
471 */
Ciara Loftus7eac9162016-09-30 15:47:03 +0100472
473 clib_memcpy (&t->tunnel_src, &a->src, sizeof (t->tunnel_src));
474 t->tunnel_dst.fp_len = !is_ipv6 ? 32 : 128;
475 t->tunnel_dst.fp_proto = !is_ipv6 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
476 t->tunnel_dst.fp_addr = a->dst;
477
Neale Ranns33ce60d2017-12-14 08:51:32 -0800478 gre_tunnel_db_add (t, &key);
Neale Ranns4c16d802019-12-17 20:15:03 +0000479
Neale Ranns59ff9182019-12-29 23:55:18 +0000480 if (t->mode == TUNNEL_MODE_MP)
Neale Ranns03ce4622020-02-03 10:55:09 +0000481 teib_walk_itf (t->sw_if_index, gre_tunnel_add_teib_walk, t);
Neale Ranns4c16d802019-12-17 20:15:03 +0000482
John Loa43ccae2018-02-13 17:15:23 -0500483 if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530484 {
John Loa43ccae2018-02-13 17:15:23 -0500485 gre_sn_key_t skey;
486 gre_sn_t *gre_sn;
487
488 gre_mk_sn_key (t, &skey);
489 gre_sn = (gre_sn_t *) hash_get_mem (gm->seq_num_by_key, &skey);
490 if (gre_sn != NULL)
491 {
492 gre_sn->ref_count++;
493 t->gre_sn = gre_sn;
494 }
495 else
496 {
497 gre_sn = clib_mem_alloc (sizeof (gre_sn_t));
498 gre_sn->seq_num = 0;
499 gre_sn->ref_count = 1;
500 t->gre_sn = gre_sn;
501 hash_set_mem_alloc (&gm->seq_num_by_key, &skey, (uword) gre_sn);
502 }
503 }
504
John Loa43ccae2018-02-13 17:15:23 -0500505 if (t->type != GRE_TUNNEL_TYPE_L3)
506 {
507 t->l2_adj_index = adj_nbr_add_or_lock
508 (t->tunnel_dst.fp_proto, VNET_LINK_ETHERNET, &zero_addr, sw_if_index);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530509 gre_update_adj (vnm, t->sw_if_index, t->l2_adj_index);
510 }
Chris Luke27fe48f2016-04-28 13:44:38 -0400511
512 if (sw_if_indexp)
513 *sw_if_indexp = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514
Jakub Grajciarf03beca2019-05-24 08:25:03 +0200515 /* register gre46-input nodes */
516 ip4_register_protocol (IP_PROTOCOL_GRE, gre4_input_node.index);
517 ip6_register_protocol (IP_PROTOCOL_GRE, gre6_input_node.index);
518
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519 return 0;
520}
521
Ciara Loftus7eac9162016-09-30 15:47:03 +0100522static int
Neale Ranns5a8844b2019-04-16 07:15:35 +0000523vnet_gre_tunnel_delete (vnet_gre_tunnel_add_del_args_t * a,
John Loa43ccae2018-02-13 17:15:23 -0500524 u32 outer_fib_index, u32 * sw_if_indexp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100525{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530526 gre_main_t *gm = &gre_main;
527 vnet_main_t *vnm = gm->vnet_main;
528 gre_tunnel_t *t;
Neale Ranns33ce60d2017-12-14 08:51:32 -0800529 gre_tunnel_key_t key;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100530 u32 sw_if_index;
John Lo101e0052018-01-06 00:22:54 -0500531
John Loa43ccae2018-02-13 17:15:23 -0500532 t = gre_tunnel_db_find (a, outer_fib_index, &key);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100533 if (NULL == t)
534 return VNET_API_ERROR_NO_SUCH_ENTRY;
535
Neale Ranns59ff9182019-12-29 23:55:18 +0000536 if (t->mode == TUNNEL_MODE_MP)
Neale Ranns03ce4622020-02-03 10:55:09 +0000537 teib_walk_itf (t->sw_if_index, gre_tunnel_delete_teib_walk, t);
Neale Ranns4c16d802019-12-17 20:15:03 +0000538
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100539 sw_if_index = t->sw_if_index;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530540 vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
John Loa43ccae2018-02-13 17:15:23 -0500541
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100542 /* make sure tunnel is removed from l2 bd or xconnect */
Neale Rannsb4743802018-09-05 09:13:57 -0700543 set_int_l2_mode (gm->vlib_main, vnm, MODE_L3, sw_if_index, 0,
544 L2_BD_PORT_TYPE_NORMAL, 0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100545 gm->tunnel_index_by_sw_if_index[sw_if_index] = ~0;
Neale Ranns177bbdc2016-11-15 09:46:51 +0000546
John Loa43ccae2018-02-13 17:15:23 -0500547 if (t->type == GRE_TUNNEL_TYPE_L3)
548 vnet_delete_hw_interface (vnm, t->hw_if_index);
549 else
550 ethernet_delete_interface (vnm, t->hw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100551
Neale Rannsad422ed2016-11-02 14:20:04 +0000552 if (t->l2_adj_index != ADJ_INDEX_INVALID)
Neale Ranns4c3ba812019-03-26 07:02:58 +0000553 {
554 adj_midchain_delegate_unstack (t->l2_adj_index);
555 adj_unlock (t->l2_adj_index);
556 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100557
John Loa43ccae2018-02-13 17:15:23 -0500558 ASSERT ((t->type != GRE_TUNNEL_TYPE_ERSPAN) || (t->gre_sn != NULL));
559 if ((t->type == GRE_TUNNEL_TYPE_ERSPAN) && (t->gre_sn->ref_count-- == 1))
560 {
561 gre_sn_key_t skey;
562 gre_mk_sn_key (t, &skey);
563 hash_unset_mem_free (&gm->seq_num_by_key, &skey);
564 clib_mem_free (t->gre_sn);
565 }
566
567 hash_unset (gm->instance_used, t->user_instance);
Neale Ranns4c16d802019-12-17 20:15:03 +0000568 gre_tunnel_db_remove (t, &key);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100569 pool_put (gm->tunnels, t);
570
571 if (sw_if_indexp)
572 *sw_if_indexp = sw_if_index;
573
574 return 0;
575}
576
577int
Neale Ranns5a8844b2019-04-16 07:15:35 +0000578vnet_gre_tunnel_add_del (vnet_gre_tunnel_add_del_args_t * a,
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530579 u32 * sw_if_indexp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100580{
John Loa43ccae2018-02-13 17:15:23 -0500581 u32 outer_fib_index;
582
Neale Ranns5a59b2b2020-10-19 14:47:20 +0000583 outer_fib_index = fib_table_find ((a->is_ipv6 ?
584 FIB_PROTOCOL_IP6 :
585 FIB_PROTOCOL_IP4), a->outer_table_id);
John Loa43ccae2018-02-13 17:15:23 -0500586
587 if (~0 == outer_fib_index)
588 return VNET_API_ERROR_NO_SUCH_FIB;
589
590 if (a->session_id > GTK_SESSION_ID_MAX)
591 return VNET_API_ERROR_INVALID_SESSION_ID;
592
Neale Ranns59ff9182019-12-29 23:55:18 +0000593 if (a->mode == TUNNEL_MODE_MP && !ip46_address_is_zero (&a->dst))
Neale Ranns4c16d802019-12-17 20:15:03 +0000594 return (VNET_API_ERROR_INVALID_DST_ADDRESS);
595
John Loa43ccae2018-02-13 17:15:23 -0500596 if (a->is_add)
597 return (vnet_gre_tunnel_add (a, outer_fib_index, sw_if_indexp));
598 else
599 return (vnet_gre_tunnel_delete (a, outer_fib_index, sw_if_indexp));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100600}
601
Neale Rannsb80c5362016-10-08 13:03:40 +0100602clib_error_t *
603gre_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100604{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530605 gre_main_t *gm = &gre_main;
606 vnet_hw_interface_t *hi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100607 gre_tunnel_t *t;
Neale Rannsb80c5362016-10-08 13:03:40 +0100608 u32 ti;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100609
Neale Rannsb80c5362016-10-08 13:03:40 +0100610 hi = vnet_get_hw_interface (vnm, hw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100611
Neale Rannsb80c5362016-10-08 13:03:40 +0100612 if (NULL == gm->tunnel_index_by_sw_if_index ||
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530613 hi->sw_if_index >= vec_len (gm->tunnel_index_by_sw_if_index))
614 return (NULL);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100615
Neale Rannsb80c5362016-10-08 13:03:40 +0100616 ti = gm->tunnel_index_by_sw_if_index[hi->sw_if_index];
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100617
Neale Rannsb80c5362016-10-08 13:03:40 +0100618 if (~0 == ti)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530619 /* not one of ours */
620 return (NULL);
Neale Rannsb80c5362016-10-08 13:03:40 +0100621
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530622 t = pool_elt_at_index (gm->tunnels, ti);
Neale Rannsb80c5362016-10-08 13:03:40 +0100623
624 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530625 vnet_hw_interface_set_flags (vnm, hw_if_index,
626 VNET_HW_INTERFACE_FLAG_LINK_UP);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100627 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530628 vnet_hw_interface_set_flags (vnm, hw_if_index, 0 /* down */ );
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100629
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530630 gre_tunnel_restack (t);
Neale Rannsb80c5362016-10-08 13:03:40 +0100631
632 return /* no error */ 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100633}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700634
635static clib_error_t *
636create_gre_tunnel_command_fn (vlib_main_t * vm,
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530637 unformat_input_t * input,
638 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700639{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530640 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns5a8844b2019-04-16 07:15:35 +0000641 vnet_gre_tunnel_add_del_args_t _a, *a = &_a;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000642 ip46_address_t src = ip46_address_initializer, dst =
643 ip46_address_initializer;
John Loa43ccae2018-02-13 17:15:23 -0500644 u32 instance = ~0;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000645 u32 outer_table_id = 0;
John Loa43ccae2018-02-13 17:15:23 -0500646 gre_tunnel_type_t t_type = GRE_TUNNEL_TYPE_L3;
Neale Ranns59ff9182019-12-29 23:55:18 +0000647 tunnel_mode_t t_mode = TUNNEL_MODE_P2P;
Mohammed Hawari59b792f2020-12-01 11:30:57 +0100648 tunnel_encap_decap_flags_t flags = TUNNEL_ENCAP_DECAP_FLAG_NONE;
John Loa43ccae2018-02-13 17:15:23 -0500649 u32 session_id = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700650 int rv;
Chris Luke27fe48f2016-04-28 13:44:38 -0400651 u8 is_add = 1;
Pierre Pfister78ea9c22016-05-23 12:51:54 +0100652 u32 sw_if_index;
Billy McFalla9a20e72017-02-15 11:39:12 -0500653 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700654
655 /* Get a line of input. */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530656 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657 return 0;
658
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530659 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
660 {
661 if (unformat (line_input, "del"))
662 is_add = 0;
John Loa43ccae2018-02-13 17:15:23 -0500663 else if (unformat (line_input, "instance %d", &instance))
664 ;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000665 else if (unformat (line_input, "src %U", unformat_ip46_address, &src))
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530666 ;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000667 else if (unformat (line_input, "dst %U", unformat_ip46_address, &dst))
668 ;
669 else if (unformat (line_input, "outer-table-id %d", &outer_table_id))
670 ;
671 else if (unformat (line_input, "multipoint"))
Neale Ranns59ff9182019-12-29 23:55:18 +0000672 t_mode = TUNNEL_MODE_MP;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530673 else if (unformat (line_input, "teb"))
John Loa43ccae2018-02-13 17:15:23 -0500674 t_type = GRE_TUNNEL_TYPE_TEB;
675 else if (unformat (line_input, "erspan %d", &session_id))
676 t_type = GRE_TUNNEL_TYPE_ERSPAN;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530677 else
Mohammed Hawari59b792f2020-12-01 11:30:57 +0100678 if (unformat
679 (line_input, "flags %U", unformat_tunnel_encap_decap_flags,
680 &flags))
681 ;
682 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530683 {
684 error = clib_error_return (0, "unknown input `%U'",
685 format_unformat_error, line_input);
686 goto done;
687 }
688 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700689
Neale Ranns5f8f6172019-04-18 10:23:56 +0000690 if (ip46_address_is_equal (&src, &dst))
Billy McFalla9a20e72017-02-15 11:39:12 -0500691 {
692 error = clib_error_return (0, "src and dst are identical");
693 goto done;
694 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695
Neale Ranns59ff9182019-12-29 23:55:18 +0000696 if (t_mode != TUNNEL_MODE_MP && ip46_address_is_zero (&dst))
Ciara Loftus7eac9162016-09-30 15:47:03 +0100697 {
Neale Ranns5f8f6172019-04-18 10:23:56 +0000698 error = clib_error_return (0, "destination address not specified");
699 goto done;
700 }
701
702 if (ip46_address_is_zero (&src))
703 {
704 error = clib_error_return (0, "source address not specified");
705 goto done;
706 }
707
708 if (ip46_address_is_ip4 (&src) != ip46_address_is_ip4 (&dst))
709 {
710 error =
711 clib_error_return (0, "src and dst address must be the same AF");
Ciara Loftus7eac9162016-09-30 15:47:03 +0100712 goto done;
713 }
714
Dave Barachb7b92992018-10-17 10:38:51 -0400715 clib_memset (a, 0, sizeof (*a));
John Loa43ccae2018-02-13 17:15:23 -0500716 a->is_add = is_add;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000717 a->outer_table_id = outer_table_id;
Neale Ranns5a8844b2019-04-16 07:15:35 +0000718 a->type = t_type;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000719 a->mode = t_mode;
John Loa43ccae2018-02-13 17:15:23 -0500720 a->session_id = session_id;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000721 a->is_ipv6 = !ip46_address_is_ip4 (&src);
John Loa43ccae2018-02-13 17:15:23 -0500722 a->instance = instance;
Mohammed Hawari59b792f2020-12-01 11:30:57 +0100723 a->flags = flags;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000724 clib_memcpy (&a->src, &src, sizeof (a->src));
725 clib_memcpy (&a->dst, &dst, sizeof (a->dst));
Chris Luke27fe48f2016-04-28 13:44:38 -0400726
Neale Ranns5a8844b2019-04-16 07:15:35 +0000727 rv = vnet_gre_tunnel_add_del (a, &sw_if_index);
Chris Luke27fe48f2016-04-28 13:44:38 -0400728
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530729 switch (rv)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700730 {
731 case 0:
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530732 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
733 vnet_get_main (), sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700734 break;
John Loa43ccae2018-02-13 17:15:23 -0500735 case VNET_API_ERROR_IF_ALREADY_EXISTS:
Billy McFalla9a20e72017-02-15 11:39:12 -0500736 error = clib_error_return (0, "GRE tunnel already exists...");
737 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700738 case VNET_API_ERROR_NO_SUCH_FIB:
Neale Ranns5f8f6172019-04-18 10:23:56 +0000739 error = clib_error_return (0, "outer table ID %d doesn't exist\n",
740 outer_table_id);
Billy McFalla9a20e72017-02-15 11:39:12 -0500741 goto done;
John Loa43ccae2018-02-13 17:15:23 -0500742 case VNET_API_ERROR_NO_SUCH_ENTRY:
743 error = clib_error_return (0, "GRE tunnel doesn't exist");
744 goto done;
745 case VNET_API_ERROR_INVALID_SESSION_ID:
746 error = clib_error_return (0, "session ID %d out of range\n",
747 session_id);
748 goto done;
749 case VNET_API_ERROR_INSTANCE_IN_USE:
750 error = clib_error_return (0, "Instance is in use");
751 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700752 default:
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530753 error =
Neale Ranns5a8844b2019-04-16 07:15:35 +0000754 clib_error_return (0, "vnet_gre_tunnel_add_del returned %d", rv);
Billy McFalla9a20e72017-02-15 11:39:12 -0500755 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700756 }
757
Billy McFalla9a20e72017-02-15 11:39:12 -0500758done:
759 unformat_free (line_input);
760
761 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700762}
763
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530764/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700765VLIB_CLI_COMMAND (create_gre_tunnel_command, static) = {
766 .path = "create gre tunnel",
John Loa43ccae2018-02-13 17:15:23 -0500767 .short_help = "create gre tunnel src <addr> dst <addr> [instance <n>] "
Neale Rannsae0d46e2020-09-22 13:20:27 +0000768 "[outer-fib-id <fib>] [teb | erspan <session-id>] [del] "
769 "[multipoint]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700770 .function = create_gre_tunnel_command_fn,
771};
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530772/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700773
Chris Luke27fe48f2016-04-28 13:44:38 -0400774static clib_error_t *
775show_gre_tunnel_command_fn (vlib_main_t * vm,
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530776 unformat_input_t * input,
777 vlib_cli_command_t * cmd)
Chris Luke27fe48f2016-04-28 13:44:38 -0400778{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530779 gre_main_t *gm = &gre_main;
780 gre_tunnel_t *t;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100781 u32 ti = ~0;
Chris Luke27fe48f2016-04-28 13:44:38 -0400782
783 if (pool_elts (gm->tunnels) == 0)
784 vlib_cli_output (vm, "No GRE tunnels configured...");
785
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100786 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
787 {
788 if (unformat (input, "%d", &ti))
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530789 ;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100790 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530791 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100792 }
793
794 if (~0 == ti)
795 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530796 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100797 pool_foreach (t, gm->tunnels)
798 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100799 vlib_cli_output (vm, "%U", format_gre_tunnel, t);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100800 }
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530801 /* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100802 }
803 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530804 {
805 t = pool_elt_at_index (gm->tunnels, ti);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100806
Neale Rannsb80c5362016-10-08 13:03:40 +0100807 vlib_cli_output (vm, "%U", format_gre_tunnel, t);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530808 }
Chris Luke27fe48f2016-04-28 13:44:38 -0400809
810 return 0;
811}
812
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530813/* *INDENT-OFF* */
Chris Luke27fe48f2016-04-28 13:44:38 -0400814VLIB_CLI_COMMAND (show_gre_tunnel_command, static) = {
815 .path = "show gre tunnel",
816 .function = show_gre_tunnel_command_fn,
817};
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530818/* *INDENT-ON* */
Chris Luke27fe48f2016-04-28 13:44:38 -0400819
Neale Ranns03ce4622020-02-03 10:55:09 +0000820const static teib_vft_t gre_teib_vft = {
821 .nv_added = gre_teib_entry_added,
822 .nv_deleted = gre_teib_entry_deleted,
Neale Ranns4c16d802019-12-17 20:15:03 +0000823};
824
Ed Warnickecb9cada2015-12-08 15:45:58 -0700825/* force inclusion from application's main.c */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530826clib_error_t *
827gre_interface_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700828{
Neale Ranns03ce4622020-02-03 10:55:09 +0000829 teib_register (&gre_teib_vft);
Neale Ranns4c16d802019-12-17 20:15:03 +0000830
Neale Ranns4c3ba812019-03-26 07:02:58 +0000831 return (NULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700832}
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530833
834VLIB_INIT_FUNCTION (gre_interface_init);
835
836/*
837 * fd.io coding-style-patch-verification: ON
838 *
839 * Local Variables:
840 * eval: (c-set-style "gnu")
841 * End:
842 */