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> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 19 | #include <vnet/gre/gre.h> |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 20 | #include <vnet/ip/format.h> |
Neale Ranns | 5a59b2b | 2020-10-19 14:47:20 +0000 | [diff] [blame] | 21 | #include <vnet/fib/fib_table.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 22 | #include <vnet/adj/adj_midchain.h> |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 23 | #include <vnet/adj/adj_nbr.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 24 | #include <vnet/mpls/mpls.h> |
Neale Ranns | 3b81a1e | 2018-09-06 09:50:26 -0700 | [diff] [blame] | 25 | #include <vnet/l2/l2_input.h> |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 26 | #include <vnet/teib/teib.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 27 | |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 28 | u8 * |
| 29 | format_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 Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 45 | static u8 * |
| 46 | format_gre_tunnel (u8 * s, va_list * args) |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 47 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 48 | gre_tunnel_t *t = va_arg (*args, gre_tunnel_t *); |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 49 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 50 | 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 Lo | 4478d8e | 2018-01-12 17:15:25 -0500 | [diff] [blame] | 52 | 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 Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 56 | s = format (s, "payload %U ", format_gre_tunnel_type, t->type); |
Neale Ranns | 59ff918 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 57 | s = format (s, "%U ", format_tunnel_mode, t->mode); |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 58 | |
| 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 Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 64 | |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 65 | return s; |
| 66 | } |
| 67 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 68 | static gre_tunnel_t * |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 69 | 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] | 70 | u32 outer_fib_index, gre_tunnel_key_t * key) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 71 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 72 | gre_main_t *gm = &gre_main; |
| 73 | uword *p; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 74 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 75 | if (!a->is_ipv6) |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 76 | { |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 77 | gre_mk_key4 (a->src.ip4, a->dst.ip4, outer_fib_index, |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 78 | a->type, a->mode, a->session_id, &key->gtk_v4); |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 79 | p = hash_get_mem (gm->tunnel_by_key4, &key->gtk_v4); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 80 | } |
| 81 | else |
| 82 | { |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 83 | gre_mk_key6 (&a->src.ip6, &a->dst.ip6, outer_fib_index, |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 84 | a->type, a->mode, a->session_id, &key->gtk_v6); |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 85 | p = hash_get_mem (gm->tunnel_by_key6, &key->gtk_v6); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 86 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 87 | |
| 88 | if (NULL == p) |
| 89 | return (NULL); |
| 90 | |
| 91 | return (pool_elt_at_index (gm->tunnels, p[0])); |
| 92 | } |
| 93 | |
| 94 | static void |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 95 | 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] | 96 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 97 | gre_main_t *gm = &gre_main; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 98 | |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 99 | if (t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6) |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 100 | { |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 101 | hash_set_mem_alloc (&gm->tunnel_by_key6, &key->gtk_v6, t->dev_instance); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 102 | } |
| 103 | else |
| 104 | { |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 105 | hash_set_mem_alloc (&gm->tunnel_by_key4, &key->gtk_v4, t->dev_instance); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 106 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | static void |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 110 | gre_tunnel_db_remove (gre_tunnel_t * t, gre_tunnel_key_t * key) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 111 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 112 | gre_main_t *gm = &gre_main; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 113 | |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 114 | if (t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6) |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 115 | { |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 116 | hash_unset_mem_free (&gm->tunnel_by_key6, &key->gtk_v6); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 117 | } |
| 118 | else |
| 119 | { |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 120 | hash_unset_mem_free (&gm->tunnel_by_key4, &key->gtk_v4); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 121 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 122 | } |
| 123 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 124 | /** |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 125 | * gre_tunnel_stack |
| 126 | * |
| 127 | * 'stack' (resolve the recursion for) the tunnel's midchain adjacency |
| 128 | */ |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 129 | void |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 130 | gre_tunnel_stack (adj_index_t ai) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 131 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 132 | gre_main_t *gm = &gre_main; |
| 133 | ip_adjacency_t *adj; |
| 134 | gre_tunnel_t *gt; |
| 135 | u32 sw_if_index; |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 136 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 137 | adj = adj_get (ai); |
| 138 | sw_if_index = adj->rewrite_header.sw_if_index; |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 139 | |
Eyal Bari | cd30774 | 2018-07-22 12:45:15 +0300 | [diff] [blame] | 140 | 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] | 141 | (~0 == gm->tunnel_index_by_sw_if_index[sw_if_index])) |
| 142 | return; |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 143 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 144 | gt = pool_elt_at_index (gm->tunnels, |
| 145 | gm->tunnel_index_by_sw_if_index[sw_if_index]); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 146 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 147 | if ((vnet_hw_interface_get_flags (vnet_get_main (), gt->hw_if_index) & |
| 148 | VNET_HW_INTERFACE_FLAG_LINK_UP) == 0) |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 149 | { |
Neale Ranns | 4c3ba81 | 2019-03-26 07:02:58 +0000 | [diff] [blame] | 150 | adj_midchain_delegate_unstack (ai); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 151 | } |
Neale Ranns | 521a8d7 | 2018-12-06 13:46:49 +0000 | [diff] [blame] | 152 | else |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 153 | { |
Neale Ranns | 4c3ba81 | 2019-03-26 07:02:58 +0000 | [diff] [blame] | 154 | adj_midchain_delegate_stack (ai, gt->outer_fib_index, >->tunnel_dst); |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 155 | } |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | /** |
Neale Ranns | bd8e43d | 2021-03-15 14:42:30 +0000 | [diff] [blame] | 159 | * mgre_tunnel_stack |
| 160 | * |
| 161 | * 'stack' (resolve the recursion for) the tunnel's midchain adjacency |
| 162 | */ |
| 163 | static void |
| 164 | mgre_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 Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 198 | * @brief Call back when restacking all adjacencies on a GRE interface |
| 199 | */ |
| 200 | static adj_walk_rc_t |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 201 | gre_adj_walk_cb (adj_index_t ai, void *ctx) |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 202 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 203 | gre_tunnel_stack (ai); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 204 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 205 | return (ADJ_WALK_RC_CONTINUE); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 206 | } |
Neale Ranns | bd8e43d | 2021-03-15 14:42:30 +0000 | [diff] [blame] | 207 | static adj_walk_rc_t |
| 208 | mgre_adj_walk_cb (adj_index_t ai, void *ctx) |
| 209 | { |
| 210 | mgre_tunnel_stack (ai); |
| 211 | |
| 212 | return (ADJ_WALK_RC_CONTINUE); |
| 213 | } |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 214 | |
| 215 | static void |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 216 | gre_tunnel_restack (gre_tunnel_t * gt) |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 217 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 218 | fib_protocol_t proto; |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 219 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 220 | /* |
| 221 | * walk all the adjacencies on th GRE interface and restack them |
| 222 | */ |
| 223 | FOR_EACH_FIB_IP_PROTOCOL (proto) |
| 224 | { |
Neale Ranns | bd8e43d | 2021-03-15 14:42:30 +0000 | [diff] [blame] | 225 | switch (gt->mode) |
| 226 | { |
| 227 | case TUNNEL_MODE_P2P: |
Matthew Smith | a0455ff | 2021-05-14 17:00:15 -0500 | [diff] [blame] | 228 | adj_nbr_walk (gt->sw_if_index, proto, gre_adj_walk_cb, NULL); |
| 229 | break; |
Neale Ranns | bd8e43d | 2021-03-15 14:42:30 +0000 | [diff] [blame] | 230 | case TUNNEL_MODE_MP: |
Matthew Smith | a0455ff | 2021-05-14 17:00:15 -0500 | [diff] [blame] | 231 | adj_nbr_walk (gt->sw_if_index, proto, mgre_adj_walk_cb, NULL); |
| 232 | break; |
Neale Ranns | bd8e43d | 2021-03-15 14:42:30 +0000 | [diff] [blame] | 233 | } |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 234 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 235 | } |
| 236 | |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 237 | static void |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 238 | gre_teib_mk_key (const gre_tunnel_t * t, |
| 239 | const teib_entry_t * ne, gre_tunnel_key_t * key) |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 240 | { |
| 241 | const fib_prefix_t *nh; |
| 242 | |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 243 | nh = teib_entry_get_nh (ne); |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 244 | |
| 245 | /* construct the key using mode P2P so it can be found in the DP */ |
| 246 | if (FIB_PROTOCOL_IP4 == nh->fp_proto) |
| 247 | gre_mk_key4 (t->tunnel_src.ip4, |
| 248 | nh->fp_addr.ip4, |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 249 | teib_entry_get_fib_index (ne), |
Neale Ranns | 59ff918 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 250 | t->type, TUNNEL_MODE_P2P, 0, &key->gtk_v4); |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 251 | else |
| 252 | gre_mk_key6 (&t->tunnel_src.ip6, |
| 253 | &nh->fp_addr.ip6, |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 254 | teib_entry_get_fib_index (ne), |
Neale Ranns | 59ff918 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 255 | t->type, TUNNEL_MODE_P2P, 0, &key->gtk_v6); |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 256 | } |
| 257 | |
Neale Ranns | 14053c9 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 258 | /** |
Neale Ranns | 6ba4e41 | 2020-10-19 09:59:41 +0000 | [diff] [blame] | 259 | * An TEIB entry has been added |
Neale Ranns | 14053c9 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 260 | */ |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 261 | static void |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 262 | gre_teib_entry_added (const teib_entry_t * ne) |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 263 | { |
| 264 | gre_main_t *gm = &gre_main; |
Neale Ranns | e6b8305 | 2020-09-17 12:56:47 +0000 | [diff] [blame] | 265 | const ip_address_t *nh; |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 266 | gre_tunnel_key_t key; |
| 267 | gre_tunnel_t *t; |
| 268 | u32 sw_if_index; |
| 269 | u32 t_idx; |
| 270 | |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 271 | sw_if_index = teib_entry_get_sw_if_index (ne); |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 272 | if (vec_len (gm->tunnel_index_by_sw_if_index) < sw_if_index) |
| 273 | return; |
| 274 | |
| 275 | t_idx = gm->tunnel_index_by_sw_if_index[sw_if_index]; |
| 276 | |
| 277 | if (INDEX_INVALID == t_idx) |
| 278 | return; |
| 279 | |
Neale Ranns | 14053c9 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 280 | /* entry has been added on an interface for which there is a GRE tunnel */ |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 281 | t = pool_elt_at_index (gm->tunnels, t_idx); |
| 282 | |
Neale Ranns | 14053c9 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 283 | if (t->mode != TUNNEL_MODE_MP) |
| 284 | return; |
| 285 | |
| 286 | /* the next-hop (underlay) of the NHRP entry will form part of the key for |
| 287 | * ingress lookup to match packets to this interface */ |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 288 | gre_teib_mk_key (t, ne, &key); |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 289 | gre_tunnel_db_add (t, &key); |
Neale Ranns | 14053c9 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 290 | |
| 291 | /* update the rewrites for each of the adjacencies for this peer (overlay) |
| 292 | * using the next-hop (underlay) */ |
| 293 | mgre_walk_ctx_t ctx = { |
| 294 | .t = t, |
| 295 | .ne = ne |
| 296 | }; |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 297 | nh = teib_entry_get_peer (ne); |
| 298 | adj_nbr_walk_nh (teib_entry_get_sw_if_index (ne), |
Neale Ranns | e6b8305 | 2020-09-17 12:56:47 +0000 | [diff] [blame] | 299 | (AF_IP4 == ip_addr_version (nh) ? |
Neale Ranns | 14053c9 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 300 | FIB_PROTOCOL_IP4 : |
Neale Ranns | e6b8305 | 2020-09-17 12:56:47 +0000 | [diff] [blame] | 301 | FIB_PROTOCOL_IP6), |
| 302 | &ip_addr_46 (nh), mgre_mk_complete_walk, &ctx); |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | static void |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 306 | gre_teib_entry_deleted (const teib_entry_t * ne) |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 307 | { |
| 308 | gre_main_t *gm = &gre_main; |
Neale Ranns | e6b8305 | 2020-09-17 12:56:47 +0000 | [diff] [blame] | 309 | const ip_address_t *nh; |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 310 | gre_tunnel_key_t key; |
| 311 | gre_tunnel_t *t; |
| 312 | u32 sw_if_index; |
| 313 | u32 t_idx; |
| 314 | |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 315 | sw_if_index = teib_entry_get_sw_if_index (ne); |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 316 | if (vec_len (gm->tunnel_index_by_sw_if_index) < sw_if_index) |
| 317 | return; |
| 318 | |
| 319 | t_idx = gm->tunnel_index_by_sw_if_index[sw_if_index]; |
| 320 | |
| 321 | if (INDEX_INVALID == t_idx) |
| 322 | return; |
| 323 | |
| 324 | t = pool_elt_at_index (gm->tunnels, t_idx); |
| 325 | |
Neale Ranns | 14053c9 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 326 | /* remove the next-hop as an ingress lookup key */ |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 327 | gre_teib_mk_key (t, ne, &key); |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 328 | gre_tunnel_db_remove (t, &key); |
Neale Ranns | 14053c9 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 329 | |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 330 | nh = teib_entry_get_peer (ne); |
Neale Ranns | 14053c9 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 331 | |
| 332 | /* make all the adjacencies incomplete */ |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 333 | adj_nbr_walk_nh (teib_entry_get_sw_if_index (ne), |
Neale Ranns | e6b8305 | 2020-09-17 12:56:47 +0000 | [diff] [blame] | 334 | (AF_IP4 == ip_addr_version (nh) ? |
Neale Ranns | 14053c9 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 335 | FIB_PROTOCOL_IP4 : |
Neale Ranns | e6b8305 | 2020-09-17 12:56:47 +0000 | [diff] [blame] | 336 | FIB_PROTOCOL_IP6), |
| 337 | &ip_addr_46 (nh), mgre_mk_incomplete_walk, t); |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | static walk_rc_t |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 341 | gre_tunnel_delete_teib_walk (index_t nei, void *ctx) |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 342 | { |
| 343 | gre_tunnel_t *t = ctx; |
| 344 | gre_tunnel_key_t key; |
| 345 | |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 346 | gre_teib_mk_key (t, teib_entry_get (nei), &key); |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 347 | gre_tunnel_db_remove (t, &key); |
| 348 | |
| 349 | return (WALK_CONTINUE); |
| 350 | } |
| 351 | |
| 352 | static walk_rc_t |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 353 | gre_tunnel_add_teib_walk (index_t nei, void *ctx) |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 354 | { |
| 355 | gre_tunnel_t *t = ctx; |
Mohsin Kazmi | 3b7ef51 | 2022-01-10 15:32:35 +0000 | [diff] [blame^] | 356 | gre_tunnel_key_t key = {}; |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 357 | |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 358 | gre_teib_mk_key (t, teib_entry_get (nei), &key); |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 359 | gre_tunnel_db_add (t, &key); |
| 360 | |
| 361 | return (WALK_CONTINUE); |
| 362 | } |
| 363 | |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 364 | static int |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 365 | vnet_gre_tunnel_add (vnet_gre_tunnel_add_del_args_t * a, |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 366 | u32 outer_fib_index, u32 * sw_if_indexp) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 367 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 368 | gre_main_t *gm = &gre_main; |
| 369 | vnet_main_t *vnm = gm->vnet_main; |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 370 | gre_tunnel_t *t; |
| 371 | vnet_hw_interface_t *hi; |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 372 | u32 hw_if_index, sw_if_index; |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 373 | u8 is_ipv6 = a->is_ipv6; |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 374 | gre_tunnel_key_t key; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 375 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 376 | t = gre_tunnel_db_find (a, outer_fib_index, &key); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 377 | if (NULL != t) |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 378 | return VNET_API_ERROR_IF_ALREADY_EXISTS; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 379 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 380 | pool_get_aligned (gm->tunnels, t, CLIB_CACHE_LINE_BYTES); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 381 | clib_memset (t, 0, sizeof (*t)); |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 382 | |
| 383 | /* Reconcile the real dev_instance and a possible requested instance */ |
| 384 | u32 t_idx = t - gm->tunnels; /* tunnel index (or instance) */ |
| 385 | u32 u_idx = a->instance; /* user specified instance */ |
| 386 | if (u_idx == ~0) |
| 387 | u_idx = t_idx; |
| 388 | if (hash_get (gm->instance_used, u_idx)) |
| 389 | { |
| 390 | pool_put (gm->tunnels, t); |
| 391 | return VNET_API_ERROR_INSTANCE_IN_USE; |
| 392 | } |
| 393 | hash_set (gm->instance_used, u_idx, 1); |
| 394 | |
| 395 | t->dev_instance = t_idx; /* actual */ |
| 396 | t->user_instance = u_idx; /* name */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 397 | |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 398 | t->type = a->type; |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 399 | t->mode = a->mode; |
Neale Ranns | e5b94dd | 2019-12-31 05:13:14 +0000 | [diff] [blame] | 400 | t->flags = a->flags; |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 401 | if (t->type == GRE_TUNNEL_TYPE_ERSPAN) |
| 402 | t->session_id = a->session_id; |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 403 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 404 | if (t->type == GRE_TUNNEL_TYPE_L3) |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 405 | { |
Neale Ranns | 59ff918 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 406 | if (t->mode == TUNNEL_MODE_P2P) |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 407 | hw_if_index = |
| 408 | vnet_register_interface (vnm, gre_device_class.index, t_idx, |
| 409 | gre_hw_interface_class.index, t_idx); |
| 410 | else |
| 411 | hw_if_index = |
| 412 | vnet_register_interface (vnm, gre_device_class.index, t_idx, |
| 413 | mgre_hw_interface_class.index, t_idx); |
| 414 | } |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 415 | else |
| 416 | { |
Damjan Marion | 5c954c4 | 2022-01-06 20:36:14 +0100 | [diff] [blame] | 417 | vnet_eth_interface_registration_t eir = {}; |
| 418 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 419 | /* Default MAC address (d00b:eed0:0000 + sw_if_index) */ |
John Lo | 25d417f | 2018-02-15 15:47:53 -0500 | [diff] [blame] | 420 | u8 address[6] = |
| 421 | { 0xd0, 0x0b, 0xee, 0xd0, (u8) (t_idx >> 8), (u8) t_idx }; |
Damjan Marion | 5c954c4 | 2022-01-06 20:36:14 +0100 | [diff] [blame] | 422 | |
| 423 | eir.dev_class_index = gre_device_class.index; |
| 424 | eir.dev_instance = t_idx; |
| 425 | eir.address = address; |
| 426 | hw_if_index = vnet_eth_register_interface (vnm, &eir); |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 427 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 428 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 429 | /* Set GRE tunnel interface output node (not used for L3 payload) */ |
Neale Ranns | 07bbaef | 2020-04-09 07:34:08 -0400 | [diff] [blame] | 430 | if (GRE_TUNNEL_TYPE_ERSPAN == t->type) |
| 431 | vnet_set_interface_output_node (vnm, hw_if_index, |
| 432 | gre_erspan_encap_node.index); |
| 433 | else |
| 434 | vnet_set_interface_output_node (vnm, hw_if_index, |
| 435 | gre_teb_encap_node.index); |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 436 | |
| 437 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 438 | sw_if_index = hi->sw_if_index; |
| 439 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 440 | t->hw_if_index = hw_if_index; |
| 441 | t->outer_fib_index = outer_fib_index; |
| 442 | t->sw_if_index = sw_if_index; |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 443 | t->l2_adj_index = ADJ_INDEX_INVALID; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 444 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 445 | 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] | 446 | gm->tunnel_index_by_sw_if_index[sw_if_index] = t_idx; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 447 | |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 448 | if (!is_ipv6) |
| 449 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 450 | hi->min_packet_bytes = |
| 451 | 64 + sizeof (gre_header_t) + sizeof (ip4_header_t); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 452 | } |
| 453 | else |
| 454 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 455 | hi->min_packet_bytes = |
| 456 | 64 + sizeof (gre_header_t) + sizeof (ip6_header_t); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 457 | } |
Chris Luke | 7164900 | 2016-05-06 11:51:54 -0400 | [diff] [blame] | 458 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 459 | /* Standard default gre MTU. */ |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 460 | vnet_sw_interface_set_mtu (vnm, sw_if_index, 9000); |
Damjan Marion | fe7d4a2 | 2018-04-13 19:43:39 +0200 | [diff] [blame] | 461 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 462 | /* |
| 463 | * source the FIB entry for the tunnel's destination |
| 464 | * and become a child thereof. The tunnel will then get poked |
| 465 | * when the forwarding for the entry updates, and the tunnel can |
| 466 | * re-stack accordingly |
| 467 | */ |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 468 | |
| 469 | clib_memcpy (&t->tunnel_src, &a->src, sizeof (t->tunnel_src)); |
| 470 | t->tunnel_dst.fp_len = !is_ipv6 ? 32 : 128; |
| 471 | t->tunnel_dst.fp_proto = !is_ipv6 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6; |
| 472 | t->tunnel_dst.fp_addr = a->dst; |
| 473 | |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 474 | gre_tunnel_db_add (t, &key); |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 475 | |
Neale Ranns | 59ff918 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 476 | if (t->mode == TUNNEL_MODE_MP) |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 477 | teib_walk_itf (t->sw_if_index, gre_tunnel_add_teib_walk, t); |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 478 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 479 | if (t->type == GRE_TUNNEL_TYPE_ERSPAN) |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 480 | { |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 481 | gre_sn_key_t skey; |
| 482 | gre_sn_t *gre_sn; |
| 483 | |
| 484 | gre_mk_sn_key (t, &skey); |
| 485 | gre_sn = (gre_sn_t *) hash_get_mem (gm->seq_num_by_key, &skey); |
| 486 | if (gre_sn != NULL) |
| 487 | { |
| 488 | gre_sn->ref_count++; |
| 489 | t->gre_sn = gre_sn; |
| 490 | } |
| 491 | else |
| 492 | { |
| 493 | gre_sn = clib_mem_alloc (sizeof (gre_sn_t)); |
| 494 | gre_sn->seq_num = 0; |
| 495 | gre_sn->ref_count = 1; |
| 496 | t->gre_sn = gre_sn; |
| 497 | hash_set_mem_alloc (&gm->seq_num_by_key, &skey, (uword) gre_sn); |
| 498 | } |
| 499 | } |
| 500 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 501 | if (t->type != GRE_TUNNEL_TYPE_L3) |
| 502 | { |
| 503 | t->l2_adj_index = adj_nbr_add_or_lock |
| 504 | (t->tunnel_dst.fp_proto, VNET_LINK_ETHERNET, &zero_addr, sw_if_index); |
Neale Ranns | 6fdcc3d | 2021-10-08 07:30:47 +0000 | [diff] [blame] | 505 | vnet_set_interface_l3_output_node (gm->vlib_main, sw_if_index, |
| 506 | (u8 *) "tunnel-output-no-count"); |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 507 | gre_update_adj (vnm, t->sw_if_index, t->l2_adj_index); |
| 508 | } |
Neale Ranns | 6fdcc3d | 2021-10-08 07:30:47 +0000 | [diff] [blame] | 509 | else |
| 510 | { |
| 511 | vnet_set_interface_l3_output_node (gm->vlib_main, sw_if_index, |
| 512 | (u8 *) "tunnel-output"); |
| 513 | } |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 514 | if (sw_if_indexp) |
| 515 | *sw_if_indexp = sw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 516 | |
Jakub Grajciar | f03beca | 2019-05-24 08:25:03 +0200 | [diff] [blame] | 517 | /* register gre46-input nodes */ |
| 518 | ip4_register_protocol (IP_PROTOCOL_GRE, gre4_input_node.index); |
| 519 | ip6_register_protocol (IP_PROTOCOL_GRE, gre6_input_node.index); |
| 520 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 521 | return 0; |
| 522 | } |
| 523 | |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 524 | static int |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 525 | vnet_gre_tunnel_delete (vnet_gre_tunnel_add_del_args_t * a, |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 526 | u32 outer_fib_index, u32 * sw_if_indexp) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 527 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 528 | gre_main_t *gm = &gre_main; |
| 529 | vnet_main_t *vnm = gm->vnet_main; |
| 530 | gre_tunnel_t *t; |
Neale Ranns | 33ce60d | 2017-12-14 08:51:32 -0800 | [diff] [blame] | 531 | gre_tunnel_key_t key; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 532 | u32 sw_if_index; |
John Lo | 101e005 | 2018-01-06 00:22:54 -0500 | [diff] [blame] | 533 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 534 | t = gre_tunnel_db_find (a, outer_fib_index, &key); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 535 | if (NULL == t) |
| 536 | return VNET_API_ERROR_NO_SUCH_ENTRY; |
| 537 | |
Neale Ranns | 59ff918 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 538 | if (t->mode == TUNNEL_MODE_MP) |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 539 | teib_walk_itf (t->sw_if_index, gre_tunnel_delete_teib_walk, t); |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 540 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 541 | sw_if_index = t->sw_if_index; |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 542 | vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ ); |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 543 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 544 | /* make sure tunnel is removed from l2 bd or xconnect */ |
Neale Ranns | b474380 | 2018-09-05 09:13:57 -0700 | [diff] [blame] | 545 | set_int_l2_mode (gm->vlib_main, vnm, MODE_L3, sw_if_index, 0, |
| 546 | L2_BD_PORT_TYPE_NORMAL, 0, 0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 547 | gm->tunnel_index_by_sw_if_index[sw_if_index] = ~0; |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 548 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 549 | if (t->type == GRE_TUNNEL_TYPE_L3) |
| 550 | vnet_delete_hw_interface (vnm, t->hw_if_index); |
| 551 | else |
| 552 | ethernet_delete_interface (vnm, t->hw_if_index); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 553 | |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 554 | if (t->l2_adj_index != ADJ_INDEX_INVALID) |
Neale Ranns | 4c3ba81 | 2019-03-26 07:02:58 +0000 | [diff] [blame] | 555 | { |
| 556 | adj_midchain_delegate_unstack (t->l2_adj_index); |
| 557 | adj_unlock (t->l2_adj_index); |
| 558 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 559 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 560 | ASSERT ((t->type != GRE_TUNNEL_TYPE_ERSPAN) || (t->gre_sn != NULL)); |
| 561 | if ((t->type == GRE_TUNNEL_TYPE_ERSPAN) && (t->gre_sn->ref_count-- == 1)) |
| 562 | { |
| 563 | gre_sn_key_t skey; |
| 564 | gre_mk_sn_key (t, &skey); |
| 565 | hash_unset_mem_free (&gm->seq_num_by_key, &skey); |
| 566 | clib_mem_free (t->gre_sn); |
| 567 | } |
| 568 | |
Neale Ranns | 6fdcc3d | 2021-10-08 07:30:47 +0000 | [diff] [blame] | 569 | vnet_reset_interface_l3_output_node (gm->vlib_main, sw_if_index); |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 570 | hash_unset (gm->instance_used, t->user_instance); |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 571 | gre_tunnel_db_remove (t, &key); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 572 | pool_put (gm->tunnels, t); |
| 573 | |
| 574 | if (sw_if_indexp) |
| 575 | *sw_if_indexp = sw_if_index; |
| 576 | |
| 577 | return 0; |
| 578 | } |
| 579 | |
| 580 | int |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 581 | 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] | 582 | u32 * sw_if_indexp) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 583 | { |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 584 | u32 outer_fib_index; |
| 585 | |
Neale Ranns | 5a59b2b | 2020-10-19 14:47:20 +0000 | [diff] [blame] | 586 | outer_fib_index = fib_table_find ((a->is_ipv6 ? |
| 587 | FIB_PROTOCOL_IP6 : |
| 588 | FIB_PROTOCOL_IP4), a->outer_table_id); |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 589 | |
| 590 | if (~0 == outer_fib_index) |
| 591 | return VNET_API_ERROR_NO_SUCH_FIB; |
| 592 | |
| 593 | if (a->session_id > GTK_SESSION_ID_MAX) |
| 594 | return VNET_API_ERROR_INVALID_SESSION_ID; |
| 595 | |
Neale Ranns | 59ff918 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 596 | if (a->mode == TUNNEL_MODE_MP && !ip46_address_is_zero (&a->dst)) |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 597 | return (VNET_API_ERROR_INVALID_DST_ADDRESS); |
| 598 | |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 599 | if (a->is_add) |
| 600 | return (vnet_gre_tunnel_add (a, outer_fib_index, sw_if_indexp)); |
| 601 | else |
| 602 | return (vnet_gre_tunnel_delete (a, outer_fib_index, sw_if_indexp)); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 603 | } |
| 604 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 605 | clib_error_t * |
| 606 | 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] | 607 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 608 | gre_main_t *gm = &gre_main; |
| 609 | vnet_hw_interface_t *hi; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 610 | gre_tunnel_t *t; |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 611 | u32 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 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 614 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 615 | if (NULL == gm->tunnel_index_by_sw_if_index || |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 616 | hi->sw_if_index >= vec_len (gm->tunnel_index_by_sw_if_index)) |
| 617 | return (NULL); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 618 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 619 | ti = gm->tunnel_index_by_sw_if_index[hi->sw_if_index]; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 620 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 621 | if (~0 == ti) |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 622 | /* not one of ours */ |
| 623 | return (NULL); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 624 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 625 | t = pool_elt_at_index (gm->tunnels, ti); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 626 | |
| 627 | if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 628 | vnet_hw_interface_set_flags (vnm, hw_if_index, |
| 629 | VNET_HW_INTERFACE_FLAG_LINK_UP); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 630 | else |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 631 | vnet_hw_interface_set_flags (vnm, hw_if_index, 0 /* down */ ); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 632 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 633 | gre_tunnel_restack (t); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 634 | |
| 635 | return /* no error */ 0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 636 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 637 | |
| 638 | static clib_error_t * |
| 639 | create_gre_tunnel_command_fn (vlib_main_t * vm, |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 640 | unformat_input_t * input, |
| 641 | vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 642 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 643 | unformat_input_t _line_input, *line_input = &_line_input; |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 644 | vnet_gre_tunnel_add_del_args_t _a, *a = &_a; |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 645 | ip46_address_t src = ip46_address_initializer, dst = |
| 646 | ip46_address_initializer; |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 647 | u32 instance = ~0; |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 648 | u32 outer_table_id = 0; |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 649 | gre_tunnel_type_t t_type = GRE_TUNNEL_TYPE_L3; |
Neale Ranns | 59ff918 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 650 | tunnel_mode_t t_mode = TUNNEL_MODE_P2P; |
Mohammed Hawari | 59b792f | 2020-12-01 11:30:57 +0100 | [diff] [blame] | 651 | tunnel_encap_decap_flags_t flags = TUNNEL_ENCAP_DECAP_FLAG_NONE; |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 652 | u32 session_id = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 653 | int rv; |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 654 | u8 is_add = 1; |
Pierre Pfister | 78ea9c2 | 2016-05-23 12:51:54 +0100 | [diff] [blame] | 655 | u32 sw_if_index; |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 656 | clib_error_t *error = NULL; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 657 | |
| 658 | /* Get a line of input. */ |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 659 | if (!unformat_user (input, unformat_line_input, line_input)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 660 | return 0; |
| 661 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 662 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 663 | { |
| 664 | if (unformat (line_input, "del")) |
| 665 | is_add = 0; |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 666 | else if (unformat (line_input, "instance %d", &instance)) |
| 667 | ; |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 668 | else if (unformat (line_input, "src %U", unformat_ip46_address, &src)) |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 669 | ; |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 670 | else if (unformat (line_input, "dst %U", unformat_ip46_address, &dst)) |
| 671 | ; |
| 672 | else if (unformat (line_input, "outer-table-id %d", &outer_table_id)) |
| 673 | ; |
| 674 | else if (unformat (line_input, "multipoint")) |
Neale Ranns | 59ff918 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 675 | t_mode = TUNNEL_MODE_MP; |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 676 | else if (unformat (line_input, "teb")) |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 677 | t_type = GRE_TUNNEL_TYPE_TEB; |
| 678 | else if (unformat (line_input, "erspan %d", &session_id)) |
| 679 | t_type = GRE_TUNNEL_TYPE_ERSPAN; |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 680 | else |
Mohammed Hawari | 59b792f | 2020-12-01 11:30:57 +0100 | [diff] [blame] | 681 | if (unformat |
| 682 | (line_input, "flags %U", unformat_tunnel_encap_decap_flags, |
| 683 | &flags)) |
| 684 | ; |
| 685 | else |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 686 | { |
| 687 | error = clib_error_return (0, "unknown input `%U'", |
| 688 | format_unformat_error, line_input); |
| 689 | goto done; |
| 690 | } |
| 691 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 692 | |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 693 | if (ip46_address_is_equal (&src, &dst)) |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 694 | { |
| 695 | error = clib_error_return (0, "src and dst are identical"); |
| 696 | goto done; |
| 697 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 698 | |
Neale Ranns | 59ff918 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 699 | if (t_mode != TUNNEL_MODE_MP && ip46_address_is_zero (&dst)) |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 700 | { |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 701 | error = clib_error_return (0, "destination address not specified"); |
| 702 | goto done; |
| 703 | } |
| 704 | |
| 705 | if (ip46_address_is_zero (&src)) |
| 706 | { |
| 707 | error = clib_error_return (0, "source address not specified"); |
| 708 | goto done; |
| 709 | } |
| 710 | |
| 711 | if (ip46_address_is_ip4 (&src) != ip46_address_is_ip4 (&dst)) |
| 712 | { |
| 713 | error = |
| 714 | clib_error_return (0, "src and dst address must be the same AF"); |
Ciara Loftus | 7eac916 | 2016-09-30 15:47:03 +0100 | [diff] [blame] | 715 | goto done; |
| 716 | } |
| 717 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 718 | clib_memset (a, 0, sizeof (*a)); |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 719 | a->is_add = is_add; |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 720 | a->outer_table_id = outer_table_id; |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 721 | a->type = t_type; |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 722 | a->mode = t_mode; |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 723 | a->session_id = session_id; |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 724 | a->is_ipv6 = !ip46_address_is_ip4 (&src); |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 725 | a->instance = instance; |
Mohammed Hawari | 59b792f | 2020-12-01 11:30:57 +0100 | [diff] [blame] | 726 | a->flags = flags; |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 727 | clib_memcpy (&a->src, &src, sizeof (a->src)); |
| 728 | clib_memcpy (&a->dst, &dst, sizeof (a->dst)); |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 729 | |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 730 | rv = vnet_gre_tunnel_add_del (a, &sw_if_index); |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 731 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 732 | switch (rv) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 733 | { |
| 734 | case 0: |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 735 | vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, |
| 736 | vnet_get_main (), sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 737 | break; |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 738 | case VNET_API_ERROR_IF_ALREADY_EXISTS: |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 739 | error = clib_error_return (0, "GRE tunnel already exists..."); |
| 740 | goto done; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 741 | case VNET_API_ERROR_NO_SUCH_FIB: |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 742 | error = clib_error_return (0, "outer table ID %d doesn't exist\n", |
| 743 | outer_table_id); |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 744 | goto done; |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 745 | case VNET_API_ERROR_NO_SUCH_ENTRY: |
| 746 | error = clib_error_return (0, "GRE tunnel doesn't exist"); |
| 747 | goto done; |
| 748 | case VNET_API_ERROR_INVALID_SESSION_ID: |
| 749 | error = clib_error_return (0, "session ID %d out of range\n", |
| 750 | session_id); |
| 751 | goto done; |
| 752 | case VNET_API_ERROR_INSTANCE_IN_USE: |
| 753 | error = clib_error_return (0, "Instance is in use"); |
| 754 | goto done; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 755 | default: |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 756 | error = |
Neale Ranns | 5a8844b | 2019-04-16 07:15:35 +0000 | [diff] [blame] | 757 | clib_error_return (0, "vnet_gre_tunnel_add_del returned %d", rv); |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 758 | goto done; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 759 | } |
| 760 | |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 761 | done: |
| 762 | unformat_free (line_input); |
| 763 | |
| 764 | return error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 765 | } |
| 766 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 767 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 768 | VLIB_CLI_COMMAND (create_gre_tunnel_command, static) = { |
| 769 | .path = "create gre tunnel", |
John Lo | a43ccae | 2018-02-13 17:15:23 -0500 | [diff] [blame] | 770 | .short_help = "create gre tunnel src <addr> dst <addr> [instance <n>] " |
Neale Ranns | ae0d46e | 2020-09-22 13:20:27 +0000 | [diff] [blame] | 771 | "[outer-fib-id <fib>] [teb | erspan <session-id>] [del] " |
| 772 | "[multipoint]", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 773 | .function = create_gre_tunnel_command_fn, |
| 774 | }; |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 775 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 776 | |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 777 | static clib_error_t * |
| 778 | show_gre_tunnel_command_fn (vlib_main_t * vm, |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 779 | unformat_input_t * input, |
| 780 | vlib_cli_command_t * cmd) |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 781 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 782 | gre_main_t *gm = &gre_main; |
| 783 | gre_tunnel_t *t; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 784 | u32 ti = ~0; |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 785 | |
| 786 | if (pool_elts (gm->tunnels) == 0) |
| 787 | vlib_cli_output (vm, "No GRE tunnels configured..."); |
| 788 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 789 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 790 | { |
| 791 | if (unformat (input, "%d", &ti)) |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 792 | ; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 793 | else |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 794 | break; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 795 | } |
| 796 | |
| 797 | if (~0 == ti) |
| 798 | { |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 799 | /* *INDENT-OFF* */ |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 800 | pool_foreach (t, gm->tunnels) |
| 801 | { |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 802 | vlib_cli_output (vm, "%U", format_gre_tunnel, t); |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 803 | } |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 804 | /* *INDENT-ON* */ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 805 | } |
| 806 | else |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 807 | { |
| 808 | t = pool_elt_at_index (gm->tunnels, ti); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 809 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 810 | vlib_cli_output (vm, "%U", format_gre_tunnel, t); |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 811 | } |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 812 | |
| 813 | return 0; |
| 814 | } |
| 815 | |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 816 | /* *INDENT-OFF* */ |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 817 | VLIB_CLI_COMMAND (show_gre_tunnel_command, static) = { |
| 818 | .path = "show gre tunnel", |
| 819 | .function = show_gre_tunnel_command_fn, |
| 820 | }; |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 821 | /* *INDENT-ON* */ |
Chris Luke | 27fe48f | 2016-04-28 13:44:38 -0400 | [diff] [blame] | 822 | |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 823 | const static teib_vft_t gre_teib_vft = { |
| 824 | .nv_added = gre_teib_entry_added, |
| 825 | .nv_deleted = gre_teib_entry_deleted, |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 826 | }; |
| 827 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 828 | /* force inclusion from application's main.c */ |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 829 | clib_error_t * |
| 830 | gre_interface_init (vlib_main_t * vm) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 831 | { |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 832 | teib_register (&gre_teib_vft); |
Neale Ranns | 4c16d80 | 2019-12-17 20:15:03 +0000 | [diff] [blame] | 833 | |
Neale Ranns | 4c3ba81 | 2019-03-26 07:02:58 +0000 | [diff] [blame] | 834 | return (NULL); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 835 | } |
Swarup Nayak | 9ff647a | 2017-11-27 10:27:43 +0530 | [diff] [blame] | 836 | |
| 837 | VLIB_INIT_FUNCTION (gre_interface_init); |
| 838 | |
| 839 | /* |
| 840 | * fd.io coding-style-patch-verification: ON |
| 841 | * |
| 842 | * Local Variables: |
| 843 | * eval: (c-set-style "gnu") |
| 844 | * End: |
| 845 | */ |