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