Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 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 Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 21 | #include <vnet/ip/format.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 22 | #include <vnet/fib/ip4_fib.h> |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 23 | #include <vnet/fib/ip6_fib.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 24 | #include <vnet/adj/adj_midchain.h> |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 25 | #include <vnet/adj/adj_nbr.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 26 | #include <vnet/mpls/mpls.h> |
Neale Ranns | 3b81a1e | 2018-09-06 09:50:26 -0700 | [diff] [blame] | 27 | #include <vnet/l2/l2_input.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 28 | |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 29 | static const char *gre_tunnel_type_names[] = GRE_TUNNEL_TYPE_NAMES; |
| 30 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 31 | static u8 * |
| 32 | format_gre_tunnel (u8 * s, va_list * args) |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 33 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 34 | gre_tunnel_t *t = va_arg (*args, gre_tunnel_t *); |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 35 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 36 | 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 Lo | 4478d8e | 2018-01-12 17:15:25 -0500 | [diff] [blame] | 38 | 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 Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 42 | 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 Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 49 | |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 50 | return s; |
| 51 | } |
| 52 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 53 | static gre_tunnel_t * |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 54 | gre_tunnel_db_find (const vnet_gre_tunnel_add_del_args_t * a, |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 55 | u32 outer_fib_index, gre_tunnel_key_t * key) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 56 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 57 | gre_main_t *gm = &gre_main; |
| 58 | uword *p; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 59 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 60 | if (!a->is_ipv6) |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 61 | { |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 62 | gre_mk_key4 (a->src.ip4, a->dst.ip4, outer_fib_index, |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 63 | a->type, a->session_id, &key->gtk_v4); |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 64 | p = hash_get_mem (gm->tunnel_by_key4, &key->gtk_v4); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 65 | } |
| 66 | else |
| 67 | { |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 68 | gre_mk_key6 (&a->src.ip6, &a->dst.ip6, outer_fib_index, |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 69 | a->type, a->session_id, &key->gtk_v6); |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 70 | p = hash_get_mem (gm->tunnel_by_key6, &key->gtk_v6); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 71 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 72 | |
| 73 | if (NULL == p) |
| 74 | return (NULL); |
| 75 | |
| 76 | return (pool_elt_at_index (gm->tunnels, p[0])); |
| 77 | } |
| 78 | |
| 79 | static void |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 80 | gre_tunnel_db_add (gre_tunnel_t * t, gre_tunnel_key_t * key) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 81 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 82 | gre_main_t *gm = &gre_main; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 83 | |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 84 | 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 Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 88 | { |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 89 | hash_set_mem (gm->tunnel_by_key6, &t->key->gtk_v6, t->dev_instance); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 90 | } |
| 91 | else |
| 92 | { |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 93 | hash_set_mem (gm->tunnel_by_key4, &t->key->gtk_v4, t->dev_instance); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 94 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | static void |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 98 | gre_tunnel_db_remove (gre_tunnel_t * t) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 99 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 100 | gre_main_t *gm = &gre_main; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 101 | |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 102 | if (t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6) |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 103 | { |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 104 | hash_unset_mem (gm->tunnel_by_key6, &t->key->gtk_v6); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 105 | } |
| 106 | else |
| 107 | { |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 108 | hash_unset_mem (gm->tunnel_by_key4, &t->key->gtk_v4); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 109 | } |
| 110 | |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 111 | clib_mem_free (t->key); |
| 112 | t->key = NULL; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 113 | } |
| 114 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 115 | /** |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 116 | * gre_tunnel_stack |
| 117 | * |
| 118 | * 'stack' (resolve the recursion for) the tunnel's midchain adjacency |
| 119 | */ |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 120 | void |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 121 | gre_tunnel_stack (adj_index_t ai) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 122 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 123 | gre_main_t *gm = &gre_main; |
| 124 | ip_adjacency_t *adj; |
| 125 | gre_tunnel_t *gt; |
| 126 | u32 sw_if_index; |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 127 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 128 | adj = adj_get (ai); |
| 129 | sw_if_index = adj->rewrite_header.sw_if_index; |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 130 | |
Eyal Bari | cd30774 | 2018-07-22 12:45:15 +0300 | [diff] [blame] | 131 | if ((vec_len (gm->tunnel_index_by_sw_if_index) <= sw_if_index) || |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 132 | (~0 == gm->tunnel_index_by_sw_if_index[sw_if_index])) |
| 133 | return; |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 134 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 135 | gt = pool_elt_at_index (gm->tunnels, |
| 136 | gm->tunnel_index_by_sw_if_index[sw_if_index]); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 137 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 138 | if ((vnet_hw_interface_get_flags (vnet_get_main (), gt->hw_if_index) & |
| 139 | VNET_HW_INTERFACE_FLAG_LINK_UP) == 0) |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 140 | { |
Neale Ranns | 4c3ba81 | 2019-03-26 07:02:58 +0000 | [diff] [blame] | 141 | adj_midchain_delegate_unstack (ai); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 142 | } |
Neale Ranns | 521a8d7 | 2018-12-06 13:46:49 +0000 | [diff] [blame] | 143 | else |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 144 | { |
Neale Ranns | 4c3ba81 | 2019-03-26 07:02:58 +0000 | [diff] [blame] | 145 | adj_midchain_delegate_stack (ai, gt->outer_fib_index, >->tunnel_dst); |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 146 | } |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | /** |
| 150 | * @brief Call back when restacking all adjacencies on a GRE interface |
| 151 | */ |
| 152 | static adj_walk_rc_t |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 153 | gre_adj_walk_cb (adj_index_t ai, void *ctx) |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 154 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 155 | gre_tunnel_stack (ai); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 156 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 157 | return (ADJ_WALK_RC_CONTINUE); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | static void |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 161 | gre_tunnel_restack (gre_tunnel_t * gt) |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 162 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 163 | fib_protocol_t proto; |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 164 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 165 | /* |
| 166 | * walk all the adjacencies on th GRE interface and restack them |
| 167 | */ |
| 168 | FOR_EACH_FIB_IP_PROTOCOL (proto) |
| 169 | { |
| 170 | adj_nbr_walk (gt->sw_if_index, proto, gre_adj_walk_cb, NULL); |
| 171 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 172 | } |
| 173 | |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 174 | static int |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 175 | vnet_gre_tunnel_add (vnet_gre_tunnel_add_del_args_t * a, |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 176 | u32 outer_fib_index, u32 * sw_if_indexp) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 177 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 178 | gre_main_t *gm = &gre_main; |
| 179 | vnet_main_t *vnm = gm->vnet_main; |
| 180 | ip4_main_t *im4 = &ip4_main; |
| 181 | ip6_main_t *im6 = &ip6_main; |
| 182 | gre_tunnel_t *t; |
| 183 | vnet_hw_interface_t *hi; |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 184 | u32 hw_if_index, sw_if_index; |
David Hotham | a8cd309 | 2016-09-19 09:55:07 -0700 | [diff] [blame] | 185 | clib_error_t *error; |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 186 | u8 is_ipv6 = a->is_ipv6; |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 187 | gre_tunnel_key_t key; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 188 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 189 | t = gre_tunnel_db_find (a, outer_fib_index, &key); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 190 | if (NULL != t) |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 191 | return VNET_API_ERROR_IF_ALREADY_EXISTS; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 192 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 193 | pool_get_aligned (gm->tunnels, t, CLIB_CACHE_LINE_BYTES); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 194 | clib_memset (t, 0, sizeof (*t)); |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 195 | |
| 196 | /* Reconcile the real dev_instance and a possible requested instance */ |
| 197 | u32 t_idx = t - gm->tunnels; /* tunnel index (or instance) */ |
| 198 | u32 u_idx = a->instance; /* user specified instance */ |
| 199 | if (u_idx == ~0) |
| 200 | u_idx = t_idx; |
| 201 | if (hash_get (gm->instance_used, u_idx)) |
| 202 | { |
| 203 | pool_put (gm->tunnels, t); |
| 204 | return VNET_API_ERROR_INSTANCE_IN_USE; |
| 205 | } |
| 206 | hash_set (gm->instance_used, u_idx, 1); |
| 207 | |
| 208 | t->dev_instance = t_idx; /* actual */ |
| 209 | t->user_instance = u_idx; /* name */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 210 | |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 211 | t->type = a->type; |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 212 | if (t->type == GRE_TUNNEL_TYPE_ERSPAN) |
| 213 | t->session_id = a->session_id; |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 214 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 215 | if (t->type == GRE_TUNNEL_TYPE_L3) |
| 216 | hw_if_index = vnet_register_interface (vnm, gre_device_class.index, t_idx, |
| 217 | gre_hw_interface_class.index, |
| 218 | t_idx); |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 219 | else |
| 220 | { |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 221 | /* Default MAC address (d00b:eed0:0000 + sw_if_index) */ |
John Lo | 25d417f | 2018-02-15 15:47:53 -0500 | [diff] [blame] | 222 | u8 address[6] = |
| 223 | { 0xd0, 0x0b, 0xee, 0xd0, (u8) (t_idx >> 8), (u8) t_idx }; |
| 224 | error = |
| 225 | ethernet_register_interface (vnm, gre_device_class.index, t_idx, |
| 226 | address, &hw_if_index, 0); |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 227 | if (error) |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 228 | { |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 229 | clib_error_report (error); |
| 230 | return VNET_API_ERROR_INVALID_REGISTRATION; |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 231 | } |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 232 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 233 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 234 | /* Set GRE tunnel interface output node (not used for L3 payload) */ |
| 235 | vnet_set_interface_output_node (vnm, hw_if_index, gre_encap_node.index); |
| 236 | |
| 237 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 238 | sw_if_index = hi->sw_if_index; |
| 239 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 240 | t->hw_if_index = hw_if_index; |
| 241 | t->outer_fib_index = outer_fib_index; |
| 242 | t->sw_if_index = sw_if_index; |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 243 | t->l2_adj_index = ADJ_INDEX_INVALID; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 244 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 245 | vec_validate_init_empty (gm->tunnel_index_by_sw_if_index, sw_if_index, ~0); |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 246 | gm->tunnel_index_by_sw_if_index[sw_if_index] = t_idx; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 247 | |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 248 | if (!is_ipv6) |
| 249 | { |
| 250 | vec_validate (im4->fib_index_by_sw_if_index, sw_if_index); |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 251 | hi->min_packet_bytes = |
| 252 | 64 + sizeof (gre_header_t) + sizeof (ip4_header_t); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 253 | } |
| 254 | else |
| 255 | { |
| 256 | vec_validate (im6->fib_index_by_sw_if_index, sw_if_index); |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 257 | hi->min_packet_bytes = |
| 258 | 64 + sizeof (gre_header_t) + sizeof (ip6_header_t); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 259 | } |
Chris Luke | 7164900 | 2016-05-06 11:51:54 -0400 | [diff] [blame] | 260 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 261 | /* Standard default gre MTU. */ |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 262 | vnet_sw_interface_set_mtu (vnm, sw_if_index, 9000); |
Damjan Marion | fe7d4a2 | 2018-04-13 19:43:39 +0200 | [diff] [blame] | 263 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 264 | /* |
| 265 | * source the FIB entry for the tunnel's destination |
| 266 | * and become a child thereof. The tunnel will then get poked |
| 267 | * when the forwarding for the entry updates, and the tunnel can |
| 268 | * re-stack accordingly |
| 269 | */ |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 270 | |
| 271 | clib_memcpy (&t->tunnel_src, &a->src, sizeof (t->tunnel_src)); |
| 272 | t->tunnel_dst.fp_len = !is_ipv6 ? 32 : 128; |
| 273 | t->tunnel_dst.fp_proto = !is_ipv6 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6; |
| 274 | t->tunnel_dst.fp_addr = a->dst; |
| 275 | |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 276 | gre_tunnel_db_add (t, &key); |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 277 | if (t->type == GRE_TUNNEL_TYPE_ERSPAN) |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 278 | { |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 279 | gre_sn_key_t skey; |
| 280 | gre_sn_t *gre_sn; |
| 281 | |
| 282 | gre_mk_sn_key (t, &skey); |
| 283 | gre_sn = (gre_sn_t *) hash_get_mem (gm->seq_num_by_key, &skey); |
| 284 | if (gre_sn != NULL) |
| 285 | { |
| 286 | gre_sn->ref_count++; |
| 287 | t->gre_sn = gre_sn; |
| 288 | } |
| 289 | else |
| 290 | { |
| 291 | gre_sn = clib_mem_alloc (sizeof (gre_sn_t)); |
| 292 | gre_sn->seq_num = 0; |
| 293 | gre_sn->ref_count = 1; |
| 294 | t->gre_sn = gre_sn; |
| 295 | hash_set_mem_alloc (&gm->seq_num_by_key, &skey, (uword) gre_sn); |
| 296 | } |
| 297 | } |
| 298 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 299 | if (t->type != GRE_TUNNEL_TYPE_L3) |
| 300 | { |
| 301 | t->l2_adj_index = adj_nbr_add_or_lock |
| 302 | (t->tunnel_dst.fp_proto, VNET_LINK_ETHERNET, &zero_addr, sw_if_index); |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 303 | gre_update_adj (vnm, t->sw_if_index, t->l2_adj_index); |
| 304 | } |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 305 | |
| 306 | if (sw_if_indexp) |
| 307 | *sw_if_indexp = sw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 308 | |
Jakub Grajciar | f03beca | 2019-05-24 08:25:03 +0200 | [diff] [blame] | 309 | /* register gre46-input nodes */ |
| 310 | ip4_register_protocol (IP_PROTOCOL_GRE, gre4_input_node.index); |
| 311 | ip6_register_protocol (IP_PROTOCOL_GRE, gre6_input_node.index); |
| 312 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 313 | return 0; |
| 314 | } |
| 315 | |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 316 | static int |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 317 | vnet_gre_tunnel_delete (vnet_gre_tunnel_add_del_args_t * a, |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 318 | u32 outer_fib_index, u32 * sw_if_indexp) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 319 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 320 | gre_main_t *gm = &gre_main; |
| 321 | vnet_main_t *vnm = gm->vnet_main; |
| 322 | gre_tunnel_t *t; |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 323 | gre_tunnel_key_t key; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 324 | u32 sw_if_index; |
John Lo | 101e005 | 2018-01-06 00:22:54 -0500 | [diff] [blame] | 325 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 326 | t = gre_tunnel_db_find (a, outer_fib_index, &key); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 327 | if (NULL == t) |
| 328 | return VNET_API_ERROR_NO_SUCH_ENTRY; |
| 329 | |
| 330 | sw_if_index = t->sw_if_index; |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 331 | vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ ); |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 332 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 333 | /* make sure tunnel is removed from l2 bd or xconnect */ |
Neale Ranns | b474380 | 2018-09-05 09:13:57 -0700 | [diff] [blame] | 334 | set_int_l2_mode (gm->vlib_main, vnm, MODE_L3, sw_if_index, 0, |
| 335 | L2_BD_PORT_TYPE_NORMAL, 0, 0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 336 | gm->tunnel_index_by_sw_if_index[sw_if_index] = ~0; |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 337 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 338 | if (t->type == GRE_TUNNEL_TYPE_L3) |
| 339 | vnet_delete_hw_interface (vnm, t->hw_if_index); |
| 340 | else |
| 341 | ethernet_delete_interface (vnm, t->hw_if_index); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 342 | |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 343 | if (t->l2_adj_index != ADJ_INDEX_INVALID) |
Neale Ranns | 4c3ba81 | 2019-03-26 07:02:58 +0000 | [diff] [blame] | 344 | { |
| 345 | adj_midchain_delegate_unstack (t->l2_adj_index); |
| 346 | adj_unlock (t->l2_adj_index); |
| 347 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 348 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 349 | ASSERT ((t->type != GRE_TUNNEL_TYPE_ERSPAN) || (t->gre_sn != NULL)); |
| 350 | if ((t->type == GRE_TUNNEL_TYPE_ERSPAN) && (t->gre_sn->ref_count-- == 1)) |
| 351 | { |
| 352 | gre_sn_key_t skey; |
| 353 | gre_mk_sn_key (t, &skey); |
| 354 | hash_unset_mem_free (&gm->seq_num_by_key, &skey); |
| 355 | clib_mem_free (t->gre_sn); |
| 356 | } |
| 357 | |
| 358 | hash_unset (gm->instance_used, t->user_instance); |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 359 | gre_tunnel_db_remove (t); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 360 | pool_put (gm->tunnels, t); |
| 361 | |
| 362 | if (sw_if_indexp) |
| 363 | *sw_if_indexp = sw_if_index; |
| 364 | |
| 365 | return 0; |
| 366 | } |
| 367 | |
| 368 | int |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 369 | vnet_gre_tunnel_add_del (vnet_gre_tunnel_add_del_args_t * a, |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 370 | u32 * sw_if_indexp) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 371 | { |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 372 | u32 outer_fib_index; |
| 373 | |
| 374 | if (!a->is_ipv6) |
| 375 | outer_fib_index = ip4_fib_index_from_table_id (a->outer_fib_id); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 376 | else |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 377 | outer_fib_index = ip6_fib_index_from_table_id (a->outer_fib_id); |
| 378 | |
| 379 | if (~0 == outer_fib_index) |
| 380 | return VNET_API_ERROR_NO_SUCH_FIB; |
| 381 | |
| 382 | if (a->session_id > GTK_SESSION_ID_MAX) |
| 383 | return VNET_API_ERROR_INVALID_SESSION_ID; |
| 384 | |
| 385 | if (a->is_add) |
| 386 | return (vnet_gre_tunnel_add (a, outer_fib_index, sw_if_indexp)); |
| 387 | else |
| 388 | return (vnet_gre_tunnel_delete (a, outer_fib_index, sw_if_indexp)); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 389 | } |
| 390 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 391 | clib_error_t * |
| 392 | gre_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 393 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 394 | gre_main_t *gm = &gre_main; |
| 395 | vnet_hw_interface_t *hi; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 396 | gre_tunnel_t *t; |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 397 | u32 ti; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 398 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 399 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 400 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 401 | if (NULL == gm->tunnel_index_by_sw_if_index || |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 402 | hi->sw_if_index >= vec_len (gm->tunnel_index_by_sw_if_index)) |
| 403 | return (NULL); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 404 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 405 | ti = gm->tunnel_index_by_sw_if_index[hi->sw_if_index]; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 406 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 407 | if (~0 == ti) |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 408 | /* not one of ours */ |
| 409 | return (NULL); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 410 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 411 | t = pool_elt_at_index (gm->tunnels, ti); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 412 | |
| 413 | if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 414 | vnet_hw_interface_set_flags (vnm, hw_if_index, |
| 415 | VNET_HW_INTERFACE_FLAG_LINK_UP); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 416 | else |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 417 | vnet_hw_interface_set_flags (vnm, hw_if_index, 0 /* down */ ); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 418 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 419 | gre_tunnel_restack (t); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 420 | |
| 421 | return /* no error */ 0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 422 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 423 | |
| 424 | static clib_error_t * |
| 425 | create_gre_tunnel_command_fn (vlib_main_t * vm, |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 426 | unformat_input_t * input, |
| 427 | vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 428 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 429 | unformat_input_t _line_input, *line_input = &_line_input; |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 430 | vnet_gre_tunnel_add_del_args_t _a, *a = &_a; |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 431 | ip46_address_t src, dst; |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 432 | u32 instance = ~0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 433 | u32 outer_fib_id = 0; |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 434 | gre_tunnel_type_t t_type = GRE_TUNNEL_TYPE_L3; |
| 435 | u32 session_id = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 436 | int rv; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 437 | u32 num_m_args = 0; |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 438 | u8 is_add = 1; |
Pierre Pfister | 78ea9c2 | 2016-05-23 12:51:54 +0100 | [diff] [blame] | 439 | u32 sw_if_index; |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 440 | clib_error_t *error = NULL; |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 441 | u8 ipv4_set = 0; |
| 442 | u8 ipv6_set = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 443 | |
| 444 | /* Get a line of input. */ |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 445 | if (!unformat_user (input, unformat_line_input, line_input)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 446 | return 0; |
| 447 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 448 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 449 | { |
| 450 | if (unformat (line_input, "del")) |
| 451 | is_add = 0; |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 452 | else if (unformat (line_input, "instance %d", &instance)) |
| 453 | ; |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 454 | else |
| 455 | if (unformat (line_input, "src %U", unformat_ip4_address, &src.ip4)) |
| 456 | { |
| 457 | num_m_args++; |
| 458 | ipv4_set = 1; |
| 459 | } |
| 460 | else |
| 461 | if (unformat (line_input, "dst %U", unformat_ip4_address, &dst.ip4)) |
| 462 | { |
| 463 | num_m_args++; |
| 464 | ipv4_set = 1; |
| 465 | } |
| 466 | else |
| 467 | if (unformat (line_input, "src %U", unformat_ip6_address, &src.ip6)) |
| 468 | { |
| 469 | num_m_args++; |
| 470 | ipv6_set = 1; |
| 471 | } |
| 472 | else |
| 473 | if (unformat (line_input, "dst %U", unformat_ip6_address, &dst.ip6)) |
| 474 | { |
| 475 | num_m_args++; |
| 476 | ipv6_set = 1; |
| 477 | } |
| 478 | else if (unformat (line_input, "outer-fib-id %d", &outer_fib_id)) |
| 479 | ; |
| 480 | else if (unformat (line_input, "teb")) |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 481 | t_type = GRE_TUNNEL_TYPE_TEB; |
| 482 | else if (unformat (line_input, "erspan %d", &session_id)) |
| 483 | t_type = GRE_TUNNEL_TYPE_ERSPAN; |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 484 | else |
| 485 | { |
| 486 | error = clib_error_return (0, "unknown input `%U'", |
| 487 | format_unformat_error, line_input); |
| 488 | goto done; |
| 489 | } |
| 490 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 491 | |
| 492 | if (num_m_args < 2) |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 493 | { |
| 494 | error = clib_error_return (0, "mandatory argument(s) missing"); |
| 495 | goto done; |
| 496 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 497 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 498 | if ((ipv4_set && memcmp (&src.ip4, &dst.ip4, sizeof (src.ip4)) == 0) || |
| 499 | (ipv6_set && memcmp (&src.ip6, &dst.ip6, sizeof (src.ip6)) == 0)) |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 500 | { |
| 501 | error = clib_error_return (0, "src and dst are identical"); |
| 502 | goto done; |
| 503 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 504 | |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 505 | if (ipv4_set && ipv6_set) |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 506 | return clib_error_return (0, "both IPv4 and IPv6 addresses specified"); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 507 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 508 | if ((ipv4_set && memcmp (&dst.ip4, &zero_addr.ip4, sizeof (dst.ip4)) == 0) |
| 509 | || (ipv6_set |
| 510 | && memcmp (&dst.ip6, &zero_addr.ip6, sizeof (dst.ip6)) == 0)) |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 511 | { |
| 512 | error = clib_error_return (0, "dst address cannot be zero"); |
| 513 | goto done; |
| 514 | } |
| 515 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 516 | clib_memset (a, 0, sizeof (*a)); |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 517 | a->is_add = is_add; |
Hongjun Ni | 11bfc2f | 2016-07-22 18:19:19 +0800 | [diff] [blame] | 518 | a->outer_fib_id = outer_fib_id; |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 519 | a->type = t_type; |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 520 | a->session_id = session_id; |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 521 | a->is_ipv6 = ipv6_set; |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 522 | a->instance = instance; |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 523 | if (!ipv6_set) |
| 524 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 525 | clib_memcpy (&a->src.ip4, &src.ip4, sizeof (src.ip4)); |
| 526 | clib_memcpy (&a->dst.ip4, &dst.ip4, sizeof (dst.ip4)); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 527 | } |
| 528 | else |
| 529 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 530 | clib_memcpy (&a->src.ip6, &src.ip6, sizeof (src.ip6)); |
| 531 | clib_memcpy (&a->dst.ip6, &dst.ip6, sizeof (dst.ip6)); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 532 | } |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 533 | |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 534 | rv = vnet_gre_tunnel_add_del (a, &sw_if_index); |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 535 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 536 | switch (rv) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 537 | { |
| 538 | case 0: |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 539 | vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, |
| 540 | vnet_get_main (), sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 541 | break; |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 542 | case VNET_API_ERROR_IF_ALREADY_EXISTS: |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 543 | error = clib_error_return (0, "GRE tunnel already exists..."); |
| 544 | goto done; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 545 | case VNET_API_ERROR_NO_SUCH_FIB: |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 546 | error = clib_error_return (0, "outer fib ID %d doesn't exist\n", |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 547 | outer_fib_id); |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 548 | goto done; |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 549 | case VNET_API_ERROR_NO_SUCH_ENTRY: |
| 550 | error = clib_error_return (0, "GRE tunnel doesn't exist"); |
| 551 | goto done; |
| 552 | case VNET_API_ERROR_INVALID_SESSION_ID: |
| 553 | error = clib_error_return (0, "session ID %d out of range\n", |
| 554 | session_id); |
| 555 | goto done; |
| 556 | case VNET_API_ERROR_INSTANCE_IN_USE: |
| 557 | error = clib_error_return (0, "Instance is in use"); |
| 558 | goto done; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 559 | default: |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 560 | error = |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 561 | clib_error_return (0, "vnet_gre_tunnel_add_del returned %d", rv); |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 562 | goto done; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 563 | } |
| 564 | |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 565 | done: |
| 566 | unformat_free (line_input); |
| 567 | |
| 568 | return error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 569 | } |
| 570 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 571 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 572 | VLIB_CLI_COMMAND (create_gre_tunnel_command, static) = { |
| 573 | .path = "create gre tunnel", |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 574 | .short_help = "create gre tunnel src <addr> dst <addr> [instance <n>] " |
| 575 | "[outer-fib-id <fib>] [teb | erspan <session-id>] [del]", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 576 | .function = create_gre_tunnel_command_fn, |
| 577 | }; |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 578 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 579 | |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 580 | static clib_error_t * |
| 581 | show_gre_tunnel_command_fn (vlib_main_t * vm, |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 582 | unformat_input_t * input, |
| 583 | vlib_cli_command_t * cmd) |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 584 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 585 | gre_main_t *gm = &gre_main; |
| 586 | gre_tunnel_t *t; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 587 | u32 ti = ~0; |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 588 | |
| 589 | if (pool_elts (gm->tunnels) == 0) |
| 590 | vlib_cli_output (vm, "No GRE tunnels configured..."); |
| 591 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 592 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 593 | { |
| 594 | if (unformat (input, "%d", &ti)) |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 595 | ; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 596 | else |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 597 | break; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | if (~0 == ti) |
| 601 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 602 | /* *INDENT-OFF* */ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 603 | pool_foreach (t, gm->tunnels, |
| 604 | ({ |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 605 | vlib_cli_output (vm, "%U", format_gre_tunnel, t); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 606 | })); |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 607 | /* *INDENT-ON* */ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 608 | } |
| 609 | else |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 610 | { |
| 611 | t = pool_elt_at_index (gm->tunnels, ti); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 612 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 613 | vlib_cli_output (vm, "%U", format_gre_tunnel, t); |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 614 | } |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 615 | |
| 616 | return 0; |
| 617 | } |
| 618 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 619 | /* *INDENT-OFF* */ |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 620 | VLIB_CLI_COMMAND (show_gre_tunnel_command, static) = { |
| 621 | .path = "show gre tunnel", |
| 622 | .function = show_gre_tunnel_command_fn, |
| 623 | }; |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 624 | /* *INDENT-ON* */ |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 625 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 626 | /* force inclusion from application's main.c */ |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 627 | clib_error_t * |
| 628 | gre_interface_init (vlib_main_t * vm) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 629 | { |
Neale Ranns | 4c3ba81 | 2019-03-26 07:02:58 +0000 | [diff] [blame] | 630 | return (NULL); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 631 | } |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 632 | |
| 633 | VLIB_INIT_FUNCTION (gre_interface_init); |
| 634 | |
| 635 | /* |
| 636 | * fd.io coding-style-patch-verification: ON |
| 637 | * |
| 638 | * Local Variables: |
| 639 | * eval: (c-set-style "gnu") |
| 640 | * End: |
| 641 | */ |