Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 15 | /** |
| 16 | * @file |
| 17 | * @brief Common utility functions for IPv4 and IPv6 VXLAN GPE tunnels |
| 18 | * |
| 19 | */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 20 | #include <vnet/vxlan-gpe/vxlan_gpe.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 21 | #include <vnet/fib/fib.h> |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 22 | #include <vnet/ip/format.h> |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 23 | #include <vnet/fib/fib_entry.h> |
| 24 | #include <vnet/fib/fib_table.h> |
| 25 | #include <vnet/mfib/mfib_table.h> |
| 26 | #include <vnet/adj/adj_mcast.h> |
| 27 | #include <vnet/interface.h> |
| 28 | #include <vlib/vlib.h> |
| 29 | |
| 30 | /** |
| 31 | * @file |
| 32 | * @brief VXLAN-GPE. |
| 33 | * |
| 34 | * VXLAN-GPE provides the features needed to allow L2 bridge domains (BDs) |
| 35 | * to span multiple servers. This is done by building an L2 overlay on |
| 36 | * top of an L3 network underlay using VXLAN-GPE tunnels. |
| 37 | * |
| 38 | * This makes it possible for servers to be co-located in the same data |
| 39 | * center or be separated geographically as long as they are reachable |
| 40 | * through the underlay L3 network. |
| 41 | * |
| 42 | * You can refer to this kind of L2 overlay bridge domain as a VXLAN-GPE segment. |
| 43 | */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 44 | |
| 45 | vxlan_gpe_main_t vxlan_gpe_main; |
| 46 | |
John Lo | 4478d8e | 2018-01-12 17:15:25 -0500 | [diff] [blame] | 47 | static u8 * |
| 48 | format_decap_next (u8 * s, va_list * args) |
| 49 | { |
| 50 | vxlan_gpe_tunnel_t *t = va_arg (*args, vxlan_gpe_tunnel_t *); |
| 51 | |
| 52 | switch (t->protocol) |
| 53 | { |
| 54 | case VXLAN_GPE_PROTOCOL_IP4: |
| 55 | s = format (s, "protocol ip4 fib-idx %d", t->decap_fib_index); |
| 56 | break; |
| 57 | case VXLAN_GPE_PROTOCOL_IP6: |
| 58 | s = format (s, "protocol ip6 fib-idx %d", t->decap_fib_index); |
| 59 | break; |
| 60 | case VXLAN_GPE_PROTOCOL_ETHERNET: |
| 61 | s = format (s, "protocol ethernet"); |
| 62 | break; |
| 63 | case VXLAN_GPE_PROTOCOL_NSH: |
| 64 | s = format (s, "protocol nsh"); |
| 65 | break; |
| 66 | default: |
| 67 | s = format (s, "protocol unknown %d", t->protocol); |
| 68 | } |
| 69 | |
| 70 | return s; |
| 71 | } |
| 72 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 73 | /** |
John Lo | 4478d8e | 2018-01-12 17:15:25 -0500 | [diff] [blame] | 74 | * @brief Format function for VXLAN GPE tunnel |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 75 | * |
| 76 | * @param *s formatting string |
| 77 | * @param *args |
| 78 | * |
| 79 | * @return *s formatted string |
| 80 | * |
| 81 | */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 82 | u8 * |
| 83 | format_vxlan_gpe_tunnel (u8 * s, va_list * args) |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 84 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 85 | vxlan_gpe_tunnel_t *t = va_arg (*args, vxlan_gpe_tunnel_t *); |
| 86 | vxlan_gpe_main_t *ngm = &vxlan_gpe_main; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 87 | |
John Lo | 4478d8e | 2018-01-12 17:15:25 -0500 | [diff] [blame] | 88 | s = format (s, "[%d] lcl %U rmt %U vni %d fib-idx %d sw-if-idx %d ", |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 89 | t - ngm->tunnels, |
| 90 | format_ip46_address, &t->local, IP46_TYPE_ANY, |
John Lo | 4478d8e | 2018-01-12 17:15:25 -0500 | [diff] [blame] | 91 | format_ip46_address, &t->remote, IP46_TYPE_ANY, |
| 92 | t->vni, t->encap_fib_index, t->sw_if_index); |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 93 | |
John Lo | 4478d8e | 2018-01-12 17:15:25 -0500 | [diff] [blame] | 94 | #if 0 |
| 95 | /* next_dpo not yet used by vxlan-gpe-encap node */ |
| 96 | s = format (s, "encap-dpo-idx %d ", t->next_dpo.dpoi_index); |
| 97 | */ |
| 98 | #endif |
| 99 | s = format (s, "decap-next-%U ", format_decap_next, t); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 100 | |
John Lo | 4478d8e | 2018-01-12 17:15:25 -0500 | [diff] [blame] | 101 | if (PREDICT_FALSE (ip46_address_is_multicast (&t->remote))) |
| 102 | s = format (s, "mcast-sw-if-idx %d ", t->mcast_sw_if_index); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 103 | |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 104 | return s; |
| 105 | } |
| 106 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 107 | /** |
| 108 | * @brief Naming for VXLAN GPE tunnel |
| 109 | * |
| 110 | * @param *s formatting string |
| 111 | * @param *args |
| 112 | * |
| 113 | * @return *s formatted string |
| 114 | * |
| 115 | */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 116 | static u8 * |
| 117 | format_vxlan_gpe_name (u8 * s, va_list * args) |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 118 | { |
Hongjun Ni | 0e06e2b | 2016-05-30 19:45:51 +0800 | [diff] [blame] | 119 | u32 dev_instance = va_arg (*args, u32); |
| 120 | return format (s, "vxlan_gpe_tunnel%d", dev_instance); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 121 | } |
| 122 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 123 | /** |
| 124 | * @brief CLI function for VXLAN GPE admin up/down |
| 125 | * |
| 126 | * @param *vnm |
| 127 | * @param hw_if_index |
| 128 | * @param flag |
| 129 | * |
| 130 | * @return *rc |
| 131 | * |
| 132 | */ |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 133 | static clib_error_t * |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 134 | vxlan_gpe_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, |
| 135 | u32 flags) |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 136 | { |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 137 | u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? |
| 138 | VNET_HW_INTERFACE_FLAG_LINK_UP : 0; |
| 139 | vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags); |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 140 | |
| 141 | return 0; |
| 142 | } |
| 143 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 144 | /* *INDENT-OFF* */ |
Hongjun Ni | 0e06e2b | 2016-05-30 19:45:51 +0800 | [diff] [blame] | 145 | VNET_DEVICE_CLASS (vxlan_gpe_device_class,static) = { |
| 146 | .name = "VXLAN_GPE", |
| 147 | .format_device_name = format_vxlan_gpe_name, |
| 148 | .format_tx_trace = format_vxlan_gpe_encap_trace, |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 149 | .admin_up_down_function = vxlan_gpe_interface_admin_up_down, |
Hongjun Ni | 0e06e2b | 2016-05-30 19:45:51 +0800 | [diff] [blame] | 150 | }; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 151 | /* *INDENT-ON* */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 152 | |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 153 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 154 | /** |
| 155 | * @brief Formatting function for tracing VXLAN GPE with length |
| 156 | * |
| 157 | * @param *s |
| 158 | * @param *args |
| 159 | * |
| 160 | * @return *s |
| 161 | * |
| 162 | */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 163 | static u8 * |
| 164 | format_vxlan_gpe_header_with_length (u8 * s, va_list * args) |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 165 | { |
| 166 | u32 dev_instance = va_arg (*args, u32); |
| 167 | s = format (s, "unimplemented dev %u", dev_instance); |
| 168 | return s; |
| 169 | } |
| 170 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 171 | /* *INDENT-OFF* */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 172 | VNET_HW_INTERFACE_CLASS (vxlan_gpe_hw_class) = { |
| 173 | .name = "VXLAN_GPE", |
| 174 | .format_header = format_vxlan_gpe_header_with_length, |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 175 | .build_rewrite = default_build_rewrite, |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 176 | }; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 177 | /* *INDENT-ON* */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 178 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 179 | static void |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 180 | vxlan_gpe_tunnel_restack_dpo (vxlan_gpe_tunnel_t * t) |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 181 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 182 | dpo_id_t dpo = DPO_INVALID; |
| 183 | u32 encap_index = vxlan_gpe_encap_node.index; |
| 184 | fib_forward_chain_type_t forw_type = ip46_address_is_ip4 (&t->remote) ? |
| 185 | FIB_FORW_CHAIN_TYPE_UNICAST_IP4 : FIB_FORW_CHAIN_TYPE_UNICAST_IP6; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 186 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 187 | fib_entry_contribute_forwarding (t->fib_entry_index, forw_type, &dpo); |
| 188 | dpo_stack_from_node (encap_index, &t->next_dpo, &dpo); |
| 189 | dpo_reset (&dpo); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | static vxlan_gpe_tunnel_t * |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 193 | vxlan_gpe_tunnel_from_fib_node (fib_node_t * node) |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 194 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 195 | ASSERT (FIB_NODE_TYPE_VXLAN_GPE_TUNNEL == node->fn_type); |
| 196 | return ((vxlan_gpe_tunnel_t *) (((char *) node) - |
| 197 | STRUCT_OFFSET_OF (vxlan_gpe_tunnel_t, |
| 198 | node))); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | /** |
| 202 | * Function definition to backwalk a FIB node - |
| 203 | * Here we will restack the new dpo of VXLAN_GPE DIP to encap node. |
| 204 | */ |
| 205 | static fib_node_back_walk_rc_t |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 206 | vxlan_gpe_tunnel_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx) |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 207 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 208 | vxlan_gpe_tunnel_restack_dpo (vxlan_gpe_tunnel_from_fib_node (node)); |
| 209 | return (FIB_NODE_BACK_WALK_CONTINUE); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | /** |
| 213 | * Function definition to get a FIB node from its index |
| 214 | */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 215 | static fib_node_t * |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 216 | vxlan_gpe_tunnel_fib_node_get (fib_node_index_t index) |
| 217 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 218 | vxlan_gpe_tunnel_t *t; |
| 219 | vxlan_gpe_main_t *ngm = &vxlan_gpe_main; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 220 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 221 | t = pool_elt_at_index (ngm->tunnels, index); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 222 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 223 | return (&t->node); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | /** |
| 227 | * Function definition to inform the FIB node that its last lock has gone. |
| 228 | */ |
| 229 | static void |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 230 | vxlan_gpe_tunnel_last_lock_gone (fib_node_t * node) |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 231 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 232 | /* |
| 233 | * The VXLAN_GPE tunnel is a root of the graph. As such |
| 234 | * it never has children and thus is never locked. |
| 235 | */ |
| 236 | ASSERT (0); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | /* |
| 240 | * Virtual function table registered by VXLAN_GPE tunnels |
| 241 | * for participation in the FIB object graph. |
| 242 | */ |
| 243 | const static fib_node_vft_t vxlan_gpe_vft = { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 244 | .fnv_get = vxlan_gpe_tunnel_fib_node_get, |
| 245 | .fnv_last_lock = vxlan_gpe_tunnel_last_lock_gone, |
| 246 | .fnv_back_walk = vxlan_gpe_tunnel_back_walk, |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 247 | }; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 248 | |
| 249 | #define foreach_gpe_copy_field \ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 250 | _(vni) \ |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 251 | _(protocol) \ |
| 252 | _(mcast_sw_if_index) \ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 253 | _(encap_fib_index) \ |
Hongjun Ni | 7deb139 | 2016-06-15 22:49:23 +0800 | [diff] [blame] | 254 | _(decap_fib_index) |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 255 | |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 256 | #define foreach_copy_ipv4 { \ |
| 257 | _(local.ip4.as_u32) \ |
| 258 | _(remote.ip4.as_u32) \ |
| 259 | } |
| 260 | |
| 261 | #define foreach_copy_ipv6 { \ |
| 262 | _(local.ip6.as_u64[0]) \ |
| 263 | _(local.ip6.as_u64[1]) \ |
| 264 | _(remote.ip6.as_u64[0]) \ |
| 265 | _(remote.ip6.as_u64[1]) \ |
| 266 | } |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 267 | |
| 268 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 269 | /** |
| 270 | * @brief Calculate IPv4 VXLAN GPE rewrite header |
| 271 | * |
| 272 | * @param *t |
| 273 | * |
| 274 | * @return rc |
| 275 | * |
| 276 | */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 277 | int |
| 278 | vxlan4_gpe_rewrite (vxlan_gpe_tunnel_t * t, u32 extension_size, |
| 279 | u8 protocol_override, uword encap_next_node) |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 280 | { |
| 281 | u8 *rw = 0; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 282 | ip4_header_t *ip0; |
| 283 | ip4_vxlan_gpe_header_t *h0; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 284 | int len; |
| 285 | |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 286 | len = sizeof (*h0) + extension_size; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 287 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 288 | vec_free (t->rewrite); |
| 289 | vec_validate_aligned (rw, len - 1, CLIB_CACHE_LINE_BYTES); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 290 | |
| 291 | h0 = (ip4_vxlan_gpe_header_t *) rw; |
| 292 | |
| 293 | /* Fixed portion of the (outer) ip4 header */ |
| 294 | ip0 = &h0->ip4; |
| 295 | ip0->ip_version_and_header_length = 0x45; |
| 296 | ip0->ttl = 254; |
| 297 | ip0->protocol = IP_PROTOCOL_UDP; |
| 298 | |
| 299 | /* we fix up the ip4 header length and checksum after-the-fact */ |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 300 | ip0->src_address.as_u32 = t->local.ip4.as_u32; |
| 301 | ip0->dst_address.as_u32 = t->remote.ip4.as_u32; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 302 | ip0->checksum = ip4_header_checksum (ip0); |
| 303 | |
| 304 | /* UDP header, randomize src port on something, maybe? */ |
| 305 | h0->udp.src_port = clib_host_to_net_u16 (4790); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 306 | h0->udp.dst_port = clib_host_to_net_u16 (UDP_DST_PORT_VXLAN_GPE); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 307 | |
| 308 | /* VXLAN header. Are we having fun yet? */ |
| 309 | h0->vxlan.flags = VXLAN_GPE_FLAGS_I | VXLAN_GPE_FLAGS_P; |
| 310 | h0->vxlan.ver_res = VXLAN_GPE_VERSION; |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 311 | if (protocol_override) |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 312 | { |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 313 | h0->vxlan.protocol = protocol_override; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 314 | } |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 315 | else |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 316 | { |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 317 | h0->vxlan.protocol = t->protocol; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 318 | } |
| 319 | t->rewrite_size = sizeof (ip4_vxlan_gpe_header_t) + extension_size; |
| 320 | h0->vxlan.vni_res = clib_host_to_net_u32 (t->vni << 8); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 321 | |
| 322 | t->rewrite = rw; |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 323 | t->encap_next_node = encap_next_node; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 324 | return (0); |
| 325 | } |
| 326 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 327 | /** |
| 328 | * @brief Calculate IPv6 VXLAN GPE rewrite header |
| 329 | * |
| 330 | * @param *t |
| 331 | * |
| 332 | * @return rc |
| 333 | * |
| 334 | */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 335 | int |
| 336 | vxlan6_gpe_rewrite (vxlan_gpe_tunnel_t * t, u32 extension_size, |
| 337 | u8 protocol_override, uword encap_next_node) |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 338 | { |
| 339 | u8 *rw = 0; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 340 | ip6_header_t *ip0; |
| 341 | ip6_vxlan_gpe_header_t *h0; |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 342 | int len; |
| 343 | |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 344 | len = sizeof (*h0) + extension_size; |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 345 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 346 | vec_free (t->rewrite); |
| 347 | vec_validate_aligned (rw, len - 1, CLIB_CACHE_LINE_BYTES); |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 348 | |
| 349 | h0 = (ip6_vxlan_gpe_header_t *) rw; |
| 350 | |
| 351 | /* Fixed portion of the (outer) ip4 header */ |
| 352 | ip0 = &h0->ip6; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 353 | ip0->ip_version_traffic_class_and_flow_label = |
| 354 | clib_host_to_net_u32 (6 << 28); |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 355 | ip0->hop_limit = 255; |
| 356 | ip0->protocol = IP_PROTOCOL_UDP; |
| 357 | |
| 358 | ip0->src_address.as_u64[0] = t->local.ip6.as_u64[0]; |
| 359 | ip0->src_address.as_u64[1] = t->local.ip6.as_u64[1]; |
| 360 | ip0->dst_address.as_u64[0] = t->remote.ip6.as_u64[0]; |
| 361 | ip0->dst_address.as_u64[1] = t->remote.ip6.as_u64[1]; |
| 362 | |
| 363 | /* UDP header, randomize src port on something, maybe? */ |
| 364 | h0->udp.src_port = clib_host_to_net_u16 (4790); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 365 | h0->udp.dst_port = clib_host_to_net_u16 (UDP_DST_PORT_VXLAN_GPE); |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 366 | |
| 367 | /* VXLAN header. Are we having fun yet? */ |
| 368 | h0->vxlan.flags = VXLAN_GPE_FLAGS_I | VXLAN_GPE_FLAGS_P; |
| 369 | h0->vxlan.ver_res = VXLAN_GPE_VERSION; |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 370 | if (protocol_override) |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 371 | { |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 372 | h0->vxlan.protocol = t->protocol; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 373 | } |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 374 | else |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 375 | { |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 376 | h0->vxlan.protocol = protocol_override; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 377 | } |
| 378 | t->rewrite_size = sizeof (ip4_vxlan_gpe_header_t) + extension_size; |
| 379 | h0->vxlan.vni_res = clib_host_to_net_u32 (t->vni << 8); |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 380 | |
| 381 | t->rewrite = rw; |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 382 | t->encap_next_node = encap_next_node; |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 383 | return (0); |
| 384 | } |
| 385 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 386 | static uword |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 387 | vtep_addr_ref (ip46_address_t * ip) |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 388 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 389 | uword *vtep = ip46_address_is_ip4 (ip) ? |
| 390 | hash_get (vxlan_gpe_main.vtep4, ip->ip4.as_u32) : |
| 391 | hash_get_mem (vxlan_gpe_main.vtep6, &ip->ip6); |
| 392 | if (vtep) |
| 393 | return ++(*vtep); |
| 394 | ip46_address_is_ip4 (ip) ? |
| 395 | hash_set (vxlan_gpe_main.vtep4, ip->ip4.as_u32, 1) : |
John Lo | e6bfeab | 2018-01-04 16:39:42 -0500 | [diff] [blame] | 396 | hash_set_mem_alloc (&vxlan_gpe_main.vtep6, &ip->ip6, 1); |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 397 | return 1; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 398 | } |
| 399 | |
| 400 | static uword |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 401 | vtep_addr_unref (ip46_address_t * ip) |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 402 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 403 | uword *vtep = ip46_address_is_ip4 (ip) ? |
| 404 | hash_get (vxlan_gpe_main.vtep4, ip->ip4.as_u32) : |
| 405 | hash_get_mem (vxlan_gpe_main.vtep6, &ip->ip6); |
| 406 | ASSERT (vtep); |
| 407 | if (--(*vtep) != 0) |
| 408 | return *vtep; |
| 409 | ip46_address_is_ip4 (ip) ? |
| 410 | hash_unset (vxlan_gpe_main.vtep4, ip->ip4.as_u32) : |
John Lo | e6bfeab | 2018-01-04 16:39:42 -0500 | [diff] [blame] | 411 | hash_unset_mem_free (&vxlan_gpe_main.vtep6, &ip->ip6); |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 412 | return 0; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 413 | } |
| 414 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 415 | /* *INDENT-OFF* */ |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 416 | typedef CLIB_PACKED(union { |
| 417 | struct { |
| 418 | fib_node_index_t mfib_entry_index; |
| 419 | adj_index_t mcast_adj_index; |
| 420 | }; |
| 421 | u64 as_u64; |
| 422 | }) mcast_shared_t; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 423 | /* *INDENT-ON* */ |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 424 | |
| 425 | static inline mcast_shared_t |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 426 | mcast_shared_get (ip46_address_t * ip) |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 427 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 428 | ASSERT (ip46_address_is_multicast (ip)); |
| 429 | uword *p = hash_get_mem (vxlan_gpe_main.mcast_shared, ip); |
| 430 | ASSERT (p); |
| 431 | return (mcast_shared_t) |
| 432 | { |
| 433 | .as_u64 = *p}; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 434 | } |
| 435 | |
| 436 | static inline void |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 437 | mcast_shared_add (ip46_address_t * remote, |
| 438 | fib_node_index_t mfei, adj_index_t ai) |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 439 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 440 | mcast_shared_t new_ep = { |
| 441 | .mcast_adj_index = ai, |
| 442 | .mfib_entry_index = mfei, |
| 443 | }; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 444 | |
John Lo | e6bfeab | 2018-01-04 16:39:42 -0500 | [diff] [blame] | 445 | hash_set_mem_alloc (&vxlan_gpe_main.mcast_shared, remote, new_ep.as_u64); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | static inline void |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 449 | mcast_shared_remove (ip46_address_t * remote) |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 450 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 451 | mcast_shared_t ep = mcast_shared_get (remote); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 452 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 453 | adj_unlock (ep.mcast_adj_index); |
| 454 | mfib_table_entry_delete_index (ep.mfib_entry_index, MFIB_SOURCE_VXLAN_GPE); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 455 | |
John Lo | e6bfeab | 2018-01-04 16:39:42 -0500 | [diff] [blame] | 456 | hash_unset_mem_free (&vxlan_gpe_main.mcast_shared, remote); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 457 | } |
| 458 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 459 | /** |
| 460 | * @brief Add or Del a VXLAN GPE tunnel |
| 461 | * |
| 462 | * @param *a |
| 463 | * @param *sw_if_index |
| 464 | * |
| 465 | * @return rc |
| 466 | * |
| 467 | */ |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 468 | int vnet_vxlan_gpe_add_del_tunnel |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 469 | (vnet_vxlan_gpe_add_del_tunnel_args_t * a, u32 * sw_if_indexp) |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 470 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 471 | vxlan_gpe_main_t *ngm = &vxlan_gpe_main; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 472 | vxlan_gpe_tunnel_t *t = 0; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 473 | vnet_main_t *vnm = ngm->vnet_main; |
| 474 | vnet_hw_interface_t *hi; |
| 475 | uword *p; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 476 | u32 hw_if_index = ~0; |
| 477 | u32 sw_if_index = ~0; |
| 478 | int rv; |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 479 | vxlan4_gpe_tunnel_key_t key4, *key4_copy; |
| 480 | vxlan6_gpe_tunnel_key_t key6, *key6_copy; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 481 | u32 is_ip6 = a->is_ip6; |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 482 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 483 | if (!is_ip6) |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 484 | { |
| 485 | key4.local = a->local.ip4.as_u32; |
| 486 | key4.remote = a->remote.ip4.as_u32; |
| 487 | key4.vni = clib_host_to_net_u32 (a->vni << 8); |
| 488 | key4.pad = 0; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 489 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 490 | p = hash_get_mem (ngm->vxlan4_gpe_tunnel_by_key, &key4); |
| 491 | } |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 492 | else |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 493 | { |
| 494 | key6.local.as_u64[0] = a->local.ip6.as_u64[0]; |
| 495 | key6.local.as_u64[1] = a->local.ip6.as_u64[1]; |
| 496 | key6.remote.as_u64[0] = a->remote.ip6.as_u64[0]; |
| 497 | key6.remote.as_u64[1] = a->remote.ip6.as_u64[1]; |
| 498 | key6.vni = clib_host_to_net_u32 (a->vni << 8); |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 499 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 500 | p = hash_get_mem (ngm->vxlan6_gpe_tunnel_by_key, &key6); |
| 501 | } |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 502 | |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 503 | if (a->is_add) |
| 504 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 505 | l2input_main_t *l2im = &l2input_main; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 506 | |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 507 | /* adding a tunnel: tunnel must not already exist */ |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 508 | if (p) |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 509 | return VNET_API_ERROR_TUNNEL_EXIST; |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 510 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 511 | pool_get_aligned (ngm->tunnels, t, CLIB_CACHE_LINE_BYTES); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 512 | memset (t, 0, sizeof (*t)); |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 513 | |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 514 | /* copy from arg structure */ |
John Lo | e6bfeab | 2018-01-04 16:39:42 -0500 | [diff] [blame] | 515 | /* *INDENT-OFF* */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 516 | #define _(x) t->x = a->x; |
| 517 | foreach_gpe_copy_field; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 518 | if (!a->is_ip6) |
| 519 | foreach_copy_ipv4 |
John Lo | e6bfeab | 2018-01-04 16:39:42 -0500 | [diff] [blame] | 520 | else |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 521 | foreach_copy_ipv6 |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 522 | #undef _ |
John Lo | e6bfeab | 2018-01-04 16:39:42 -0500 | [diff] [blame] | 523 | /* *INDENT-ON* */ |
| 524 | |
| 525 | if (!a->is_ip6) |
| 526 | t->flags |= VXLAN_GPE_TUNNEL_IS_IPV4; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 527 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 528 | if (!a->is_ip6) |
| 529 | { |
| 530 | rv = vxlan4_gpe_rewrite (t, 0, 0, VXLAN_GPE_ENCAP_NEXT_IP4_LOOKUP); |
| 531 | } |
| 532 | else |
| 533 | { |
| 534 | rv = vxlan6_gpe_rewrite (t, 0, 0, VXLAN_GPE_ENCAP_NEXT_IP6_LOOKUP); |
| 535 | } |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 536 | |
| 537 | if (rv) |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 538 | { |
| 539 | pool_put (ngm->tunnels, t); |
| 540 | return rv; |
| 541 | } |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 542 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 543 | if (!is_ip6) |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 544 | { |
| 545 | key4_copy = clib_mem_alloc (sizeof (*key4_copy)); |
| 546 | clib_memcpy (key4_copy, &key4, sizeof (*key4_copy)); |
| 547 | hash_set_mem (ngm->vxlan4_gpe_tunnel_by_key, key4_copy, |
| 548 | t - ngm->tunnels); |
| 549 | } |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 550 | else |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 551 | { |
| 552 | key6_copy = clib_mem_alloc (sizeof (*key6_copy)); |
| 553 | clib_memcpy (key6_copy, &key6, sizeof (*key6_copy)); |
| 554 | hash_set_mem (ngm->vxlan6_gpe_tunnel_by_key, key6_copy, |
| 555 | t - ngm->tunnels); |
| 556 | } |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 557 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 558 | if (vec_len (ngm->free_vxlan_gpe_tunnel_hw_if_indices) > 0) |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 559 | { |
| 560 | vnet_interface_main_t *im = &vnm->interface_main; |
| 561 | hw_if_index = ngm->free_vxlan_gpe_tunnel_hw_if_indices |
| 562 | [vec_len (ngm->free_vxlan_gpe_tunnel_hw_if_indices) - 1]; |
| 563 | _vec_len (ngm->free_vxlan_gpe_tunnel_hw_if_indices) -= 1; |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 564 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 565 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 566 | hi->dev_instance = t - ngm->tunnels; |
| 567 | hi->hw_instance = hi->dev_instance; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 568 | /* clear old stats of freed tunnel before reuse */ |
| 569 | sw_if_index = hi->sw_if_index; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 570 | vnet_interface_counter_lock (im); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 571 | vlib_zero_combined_counter |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 572 | (&im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_TX], |
| 573 | sw_if_index); |
| 574 | vlib_zero_combined_counter (&im->combined_sw_if_counters |
| 575 | [VNET_INTERFACE_COUNTER_RX], |
| 576 | sw_if_index); |
| 577 | vlib_zero_simple_counter (&im->sw_if_counters |
| 578 | [VNET_INTERFACE_COUNTER_DROP], |
| 579 | sw_if_index); |
| 580 | vnet_interface_counter_unlock (im); |
| 581 | } |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 582 | else |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 583 | { |
| 584 | hw_if_index = vnet_register_interface |
| 585 | (vnm, vxlan_gpe_device_class.index, t - ngm->tunnels, |
| 586 | vxlan_gpe_hw_class.index, t - ngm->tunnels); |
| 587 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 588 | } |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 589 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 590 | /* Set vxlan-gpe tunnel output node */ |
| 591 | u32 encap_index = vxlan_gpe_encap_node.index; |
| 592 | vnet_set_interface_output_node (vnm, hw_if_index, encap_index); |
| 593 | |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 594 | t->hw_if_index = hw_if_index; |
| 595 | t->sw_if_index = sw_if_index = hi->sw_if_index; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 596 | vec_validate_init_empty (ngm->tunnel_index_by_sw_if_index, sw_if_index, |
| 597 | ~0); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 598 | ngm->tunnel_index_by_sw_if_index[sw_if_index] = t - ngm->tunnels; |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 599 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 600 | /* setup l2 input config with l2 feature and bd 0 to drop packet */ |
| 601 | vec_validate (l2im->configs, sw_if_index); |
| 602 | l2im->configs[sw_if_index].feature_bitmap = L2INPUT_FEAT_DROP; |
| 603 | l2im->configs[sw_if_index].bd_index = 0; |
| 604 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 605 | vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 606 | si->flags &= ~VNET_SW_INTERFACE_FLAG_HIDDEN; |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 607 | vnet_sw_interface_set_flags (vnm, hi->sw_if_index, |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 608 | VNET_SW_INTERFACE_FLAG_ADMIN_UP); |
| 609 | fib_node_init (&t->node, FIB_NODE_TYPE_VXLAN_GPE_TUNNEL); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 610 | fib_prefix_t tun_remote_pfx; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 611 | vnet_flood_class_t flood_class = VNET_FLOOD_CLASS_TUNNEL_NORMAL; |
| 612 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 613 | fib_prefix_from_ip46_addr (&t->remote, &tun_remote_pfx); |
| 614 | if (!ip46_address_is_multicast (&t->remote)) |
| 615 | { |
| 616 | /* Unicast tunnel - |
| 617 | * source the FIB entry for the tunnel's destination |
| 618 | * and become a child thereof. The tunnel will then get poked |
| 619 | * when the forwarding for the entry updates, and the tunnel can |
| 620 | * re-stack accordingly |
| 621 | */ |
| 622 | vtep_addr_ref (&t->local); |
| 623 | t->fib_entry_index = fib_table_entry_special_add |
| 624 | (t->encap_fib_index, &tun_remote_pfx, FIB_SOURCE_RR, |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 625 | FIB_ENTRY_FLAG_NONE); |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 626 | t->sibling_index = fib_entry_child_add |
| 627 | (t->fib_entry_index, FIB_NODE_TYPE_VXLAN_GPE_TUNNEL, |
| 628 | t - ngm->tunnels); |
| 629 | vxlan_gpe_tunnel_restack_dpo (t); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 630 | } |
| 631 | else |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 632 | { |
| 633 | /* Multicast tunnel - |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 634 | * as the same mcast group can be used for mutiple mcast tunnels |
| 635 | * with different VNIs, create the output fib adjecency only if |
| 636 | * it does not already exist |
| 637 | */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 638 | fib_protocol_t fp = fib_ip_proto (is_ip6); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 639 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 640 | if (vtep_addr_ref (&t->remote) == 1) |
| 641 | { |
| 642 | fib_node_index_t mfei; |
| 643 | adj_index_t ai; |
| 644 | fib_route_path_t path = { |
| 645 | .frp_proto = fib_proto_to_dpo (fp), |
| 646 | .frp_addr = zero_addr, |
| 647 | .frp_sw_if_index = 0xffffffff, |
| 648 | .frp_fib_index = ~0, |
| 649 | .frp_weight = 0, |
| 650 | .frp_flags = FIB_ROUTE_PATH_LOCAL, |
| 651 | }; |
| 652 | const mfib_prefix_t mpfx = { |
| 653 | .fp_proto = fp, |
| 654 | .fp_len = (is_ip6 ? 128 : 32), |
| 655 | .fp_grp_addr = tun_remote_pfx.fp_addr, |
| 656 | }; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 657 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 658 | /* |
| 659 | * Setup the (*,G) to receive traffic on the mcast group |
| 660 | * - the forwarding interface is for-us |
| 661 | * - the accepting interface is that from the API |
| 662 | */ |
| 663 | mfib_table_entry_path_update (t->encap_fib_index, |
| 664 | &mpfx, |
| 665 | MFIB_SOURCE_VXLAN_GPE, |
| 666 | &path, MFIB_ITF_FLAG_FORWARD); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 667 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 668 | path.frp_sw_if_index = a->mcast_sw_if_index; |
| 669 | path.frp_flags = FIB_ROUTE_PATH_FLAG_NONE; |
| 670 | mfei = mfib_table_entry_path_update (t->encap_fib_index, |
| 671 | &mpfx, |
| 672 | MFIB_SOURCE_VXLAN_GPE, |
| 673 | &path, |
| 674 | MFIB_ITF_FLAG_ACCEPT); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 675 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 676 | /* |
| 677 | * Create the mcast adjacency to send traffic to the group |
| 678 | */ |
| 679 | ai = adj_mcast_add_or_lock (fp, |
| 680 | fib_proto_to_link (fp), |
| 681 | a->mcast_sw_if_index); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 682 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 683 | /* |
| 684 | * create a new end-point |
| 685 | */ |
| 686 | mcast_shared_add (&t->remote, mfei, ai); |
| 687 | } |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 688 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 689 | dpo_id_t dpo = DPO_INVALID; |
| 690 | mcast_shared_t ep = mcast_shared_get (&t->remote); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 691 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 692 | /* Stack shared mcast remote mac addr rewrite on encap */ |
| 693 | dpo_set (&dpo, DPO_ADJACENCY_MCAST, |
| 694 | fib_proto_to_dpo (fp), ep.mcast_adj_index); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 695 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 696 | dpo_stack_from_node (encap_index, &t->next_dpo, &dpo); |
| 697 | dpo_reset (&dpo); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 698 | flood_class = VNET_FLOOD_CLASS_TUNNEL_MASTER; |
| 699 | } |
| 700 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 701 | vnet_get_sw_interface (vnet_get_main (), sw_if_index)->flood_class = |
| 702 | flood_class; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 703 | } |
| 704 | else |
| 705 | { |
| 706 | /* deleting a tunnel: tunnel must exist */ |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 707 | if (!p) |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 708 | return VNET_API_ERROR_NO_SUCH_ENTRY; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 709 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 710 | t = pool_elt_at_index (ngm->tunnels, p[0]); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 711 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 712 | sw_if_index = t->sw_if_index; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 713 | vnet_sw_interface_set_flags (vnm, t->sw_if_index, 0 /* down */ ); |
| 714 | vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, t->sw_if_index); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 715 | si->flags |= VNET_SW_INTERFACE_FLAG_HIDDEN; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 716 | set_int_l2_mode (ngm->vlib_main, vnm, MODE_L3, t->sw_if_index, 0, 0, 0, |
| 717 | 0); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 718 | vec_add1 (ngm->free_vxlan_gpe_tunnel_hw_if_indices, t->hw_if_index); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 719 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 720 | ngm->tunnel_index_by_sw_if_index[t->sw_if_index] = ~0; |
Hongjun Ni | c0959c9 | 2016-06-16 20:18:15 +0800 | [diff] [blame] | 721 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 722 | if (!is_ip6) |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 723 | hash_unset (ngm->vxlan4_gpe_tunnel_by_key, key4.as_u64); |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 724 | else |
John Lo | e6bfeab | 2018-01-04 16:39:42 -0500 | [diff] [blame] | 725 | hash_unset_mem_free (&ngm->vxlan6_gpe_tunnel_by_key, &key6); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 726 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 727 | if (!ip46_address_is_multicast (&t->remote)) |
| 728 | { |
| 729 | vtep_addr_unref (&t->local); |
| 730 | fib_entry_child_remove (t->fib_entry_index, t->sibling_index); |
| 731 | fib_table_entry_delete_index (t->fib_entry_index, FIB_SOURCE_RR); |
| 732 | } |
| 733 | else if (vtep_addr_unref (&t->remote) == 0) |
| 734 | { |
| 735 | mcast_shared_remove (&t->remote); |
| 736 | } |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 737 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 738 | fib_node_deinit (&t->node); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 739 | vec_free (t->rewrite); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 740 | pool_put (ngm->tunnels, t); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 741 | } |
| 742 | |
| 743 | if (sw_if_indexp) |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 744 | *sw_if_indexp = sw_if_index; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 745 | |
| 746 | return 0; |
| 747 | } |
| 748 | |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 749 | static clib_error_t * |
| 750 | vxlan_gpe_add_del_tunnel_command_fn (vlib_main_t * vm, |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 751 | unformat_input_t * input, |
| 752 | vlib_cli_command_t * cmd) |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 753 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 754 | unformat_input_t _line_input, *line_input = &_line_input; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 755 | u8 is_add = 1; |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 756 | ip46_address_t local, remote; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 757 | u8 local_set = 0; |
| 758 | u8 remote_set = 0; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 759 | u8 grp_set = 0; |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 760 | u8 ipv4_set = 0; |
| 761 | u8 ipv6_set = 0; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 762 | u32 mcast_sw_if_index = ~0; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 763 | u32 encap_fib_index = 0; |
| 764 | u32 decap_fib_index = 0; |
| 765 | u8 protocol = VXLAN_GPE_PROTOCOL_IP4; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 766 | u32 vni; |
| 767 | u8 vni_set = 0; |
| 768 | int rv; |
| 769 | u32 tmp; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 770 | vnet_vxlan_gpe_add_del_tunnel_args_t _a, *a = &_a; |
Pierre Pfister | 78ea9c2 | 2016-05-23 12:51:54 +0100 | [diff] [blame] | 771 | u32 sw_if_index; |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 772 | clib_error_t *error = NULL; |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 773 | |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 774 | /* Get a line of input. */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 775 | if (!unformat_user (input, unformat_line_input, line_input)) |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 776 | return 0; |
| 777 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 778 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 779 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 780 | if (unformat (line_input, "del")) |
| 781 | is_add = 0; |
| 782 | else if (unformat (line_input, "local %U", |
| 783 | unformat_ip4_address, &local.ip4)) |
| 784 | { |
| 785 | local_set = 1; |
| 786 | ipv4_set = 1; |
| 787 | } |
| 788 | else if (unformat (line_input, "remote %U", |
| 789 | unformat_ip4_address, &remote.ip4)) |
| 790 | { |
| 791 | remote_set = 1; |
| 792 | ipv4_set = 1; |
| 793 | } |
| 794 | else if (unformat (line_input, "local %U", |
| 795 | unformat_ip6_address, &local.ip6)) |
| 796 | { |
| 797 | local_set = 1; |
| 798 | ipv6_set = 1; |
| 799 | } |
| 800 | else if (unformat (line_input, "remote %U", |
| 801 | unformat_ip6_address, &remote.ip6)) |
| 802 | { |
| 803 | remote_set = 1; |
| 804 | ipv6_set = 1; |
| 805 | } |
| 806 | else if (unformat (line_input, "group %U %U", |
| 807 | unformat_ip4_address, &remote.ip4, |
| 808 | unformat_vnet_sw_interface, |
| 809 | vnet_get_main (), &mcast_sw_if_index)) |
| 810 | { |
| 811 | grp_set = remote_set = 1; |
| 812 | ipv4_set = 1; |
| 813 | } |
| 814 | else if (unformat (line_input, "group %U %U", |
| 815 | unformat_ip6_address, &remote.ip6, |
| 816 | unformat_vnet_sw_interface, |
| 817 | vnet_get_main (), &mcast_sw_if_index)) |
| 818 | { |
| 819 | grp_set = remote_set = 1; |
| 820 | ipv6_set = 1; |
| 821 | } |
| 822 | else if (unformat (line_input, "encap-vrf-id %d", &tmp)) |
| 823 | { |
| 824 | if (ipv6_set) |
| 825 | encap_fib_index = fib_table_find (FIB_PROTOCOL_IP6, tmp); |
| 826 | else |
| 827 | encap_fib_index = fib_table_find (FIB_PROTOCOL_IP4, tmp); |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 828 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 829 | if (encap_fib_index == ~0) |
| 830 | { |
| 831 | error = |
| 832 | clib_error_return (0, "nonexistent encap fib id %d", tmp); |
| 833 | goto done; |
| 834 | } |
| 835 | } |
| 836 | else if (unformat (line_input, "decap-vrf-id %d", &tmp)) |
| 837 | { |
| 838 | if (ipv6_set) |
| 839 | decap_fib_index = fib_table_find (FIB_PROTOCOL_IP6, tmp); |
| 840 | else |
| 841 | decap_fib_index = fib_table_find (FIB_PROTOCOL_IP4, tmp); |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 842 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 843 | if (decap_fib_index == ~0) |
| 844 | { |
| 845 | error = |
| 846 | clib_error_return (0, "nonexistent decap fib id %d", tmp); |
| 847 | goto done; |
| 848 | } |
| 849 | } |
| 850 | else if (unformat (line_input, "vni %d", &vni)) |
| 851 | vni_set = 1; |
| 852 | else if (unformat (line_input, "next-ip4")) |
| 853 | protocol = VXLAN_GPE_PROTOCOL_IP4; |
| 854 | else if (unformat (line_input, "next-ip6")) |
| 855 | protocol = VXLAN_GPE_PROTOCOL_IP6; |
| 856 | else if (unformat (line_input, "next-ethernet")) |
| 857 | protocol = VXLAN_GPE_PROTOCOL_ETHERNET; |
| 858 | else if (unformat (line_input, "next-nsh")) |
| 859 | protocol = VXLAN_GPE_PROTOCOL_NSH; |
| 860 | else |
| 861 | { |
| 862 | error = clib_error_return (0, "parse error: '%U'", |
| 863 | format_unformat_error, line_input); |
| 864 | goto done; |
| 865 | } |
| 866 | } |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 867 | |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 868 | if (local_set == 0) |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 869 | { |
| 870 | error = clib_error_return (0, "tunnel local address not specified"); |
| 871 | goto done; |
| 872 | } |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 873 | |
| 874 | if (remote_set == 0) |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 875 | { |
| 876 | error = clib_error_return (0, "tunnel remote address not specified"); |
| 877 | goto done; |
| 878 | } |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 879 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 880 | if (grp_set && !ip46_address_is_multicast (&remote)) |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 881 | { |
| 882 | error = clib_error_return (0, "tunnel group address not multicast"); |
| 883 | goto done; |
| 884 | } |
| 885 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 886 | if (grp_set == 0 && ip46_address_is_multicast (&remote)) |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 887 | { |
| 888 | error = clib_error_return (0, "remote address must be unicast"); |
| 889 | goto done; |
| 890 | } |
| 891 | |
| 892 | if (grp_set && mcast_sw_if_index == ~0) |
| 893 | { |
| 894 | error = clib_error_return (0, "tunnel nonexistent multicast device"); |
| 895 | goto done; |
| 896 | } |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 897 | if (ipv4_set && ipv6_set) |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 898 | { |
| 899 | error = clib_error_return (0, "both IPv4 and IPv6 addresses specified"); |
| 900 | goto done; |
| 901 | } |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 902 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 903 | if ((ipv4_set && memcmp (&local.ip4, &remote.ip4, sizeof (local.ip4)) == 0) |
| 904 | || (ipv6_set |
| 905 | && memcmp (&local.ip6, &remote.ip6, sizeof (local.ip6)) == 0)) |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 906 | { |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 907 | error = clib_error_return (0, "src and remote addresses are identical"); |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 908 | goto done; |
| 909 | } |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 910 | |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 911 | if (vni_set == 0) |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 912 | { |
| 913 | error = clib_error_return (0, "vni not specified"); |
| 914 | goto done; |
| 915 | } |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 916 | |
| 917 | memset (a, 0, sizeof (*a)); |
| 918 | |
| 919 | a->is_add = is_add; |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 920 | a->is_ip6 = ipv6_set; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 921 | |
John Lo | e6bfeab | 2018-01-04 16:39:42 -0500 | [diff] [blame] | 922 | /* *INDENT-OFF* */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 923 | #define _(x) a->x = x; |
| 924 | foreach_gpe_copy_field; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 925 | if (ipv4_set) |
| 926 | foreach_copy_ipv4 |
John Lo | e6bfeab | 2018-01-04 16:39:42 -0500 | [diff] [blame] | 927 | else |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 928 | foreach_copy_ipv6 |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 929 | #undef _ |
John Lo | e6bfeab | 2018-01-04 16:39:42 -0500 | [diff] [blame] | 930 | /* *INDENT-ON* */ |
| 931 | |
| 932 | rv = vnet_vxlan_gpe_add_del_tunnel (a, &sw_if_index); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 933 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 934 | switch (rv) |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 935 | { |
| 936 | case 0: |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 937 | vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, |
| 938 | vnet_get_main (), sw_if_index); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 939 | break; |
| 940 | case VNET_API_ERROR_INVALID_DECAP_NEXT: |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 941 | error = clib_error_return (0, "invalid decap-next..."); |
| 942 | goto done; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 943 | |
| 944 | case VNET_API_ERROR_TUNNEL_EXIST: |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 945 | error = clib_error_return (0, "tunnel already exists..."); |
| 946 | goto done; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 947 | |
| 948 | case VNET_API_ERROR_NO_SUCH_ENTRY: |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 949 | error = clib_error_return (0, "tunnel does not exist..."); |
| 950 | goto done; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 951 | |
| 952 | default: |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 953 | error = clib_error_return |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 954 | (0, "vnet_vxlan_gpe_add_del_tunnel returned %d", rv); |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 955 | goto done; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 956 | } |
| 957 | |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 958 | done: |
| 959 | unformat_free (line_input); |
| 960 | |
| 961 | return error; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 962 | } |
| 963 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 964 | /*? |
| 965 | * Add or delete a VXLAN-GPE Tunnel. |
| 966 | * |
| 967 | * VXLAN-GPE provides the features needed to allow L2 bridge domains (BDs) |
| 968 | * to span multiple servers. This is done by building an L2 overlay on |
| 969 | * top of an L3 network underlay using VXLAN-GPE tunnels. |
| 970 | * |
| 971 | * This makes it possible for servers to be co-located in the same data |
| 972 | * center or be separated geographically as long as they are reachable |
| 973 | * through the underlay L3 network. |
| 974 | * |
| 975 | * You can refer to this kind of L2 overlay bridge domain as a VXLAN-GPE sengment. |
| 976 | * |
| 977 | * @cliexpar |
| 978 | * Example of how to create a VXLAN-GPE Tunnel: |
| 979 | * @cliexcmd{create vxlan-gpe tunnel local 10.0.3.1 local 10.0.3.3 vni 13 encap-vrf-id 7} |
| 980 | * Example of how to delete a VXLAN Tunnel: |
| 981 | * @cliexcmd{create vxlan tunnel src 10.0.3.1 remote 10.0.3.3 vni 13 del} |
| 982 | ?*/ |
| 983 | /* *INDENT-OFF* */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 984 | VLIB_CLI_COMMAND (create_vxlan_gpe_tunnel_command, static) = { |
| 985 | .path = "create vxlan-gpe tunnel", |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 986 | .short_help = |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 987 | "create vxlan-gpe tunnel local <local-addr> " |
| 988 | " {remote <remote-addr>|group <mcast-addr> <intf-name>}" |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 989 | " vni <nn> [next-ip4][next-ip6][next-ethernet][next-nsh]" |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 990 | " [encap-vrf-id <nn>] [decap-vrf-id <nn>] [del]\n", |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 991 | .function = vxlan_gpe_add_del_tunnel_command_fn, |
| 992 | }; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 993 | /* *INDENT-ON* */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 994 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 995 | /** |
| 996 | * @brief CLI function for showing VXLAN GPE tunnels |
| 997 | * |
| 998 | * @param *vm |
| 999 | * @param *input |
| 1000 | * @param *cmd |
| 1001 | * |
| 1002 | * @return error |
| 1003 | * |
| 1004 | */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 1005 | static clib_error_t * |
| 1006 | show_vxlan_gpe_tunnel_command_fn (vlib_main_t * vm, |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1007 | unformat_input_t * input, |
| 1008 | vlib_cli_command_t * cmd) |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 1009 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1010 | vxlan_gpe_main_t *ngm = &vxlan_gpe_main; |
| 1011 | vxlan_gpe_tunnel_t *t; |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 1012 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1013 | if (pool_elts (ngm->tunnels) == 0) |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 1014 | vlib_cli_output (vm, "No vxlan-gpe tunnels configured."); |
| 1015 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1016 | /* *INDENT-OFF* */ |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1017 | pool_foreach (t, ngm->tunnels, |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 1018 | ({ |
| 1019 | vlib_cli_output (vm, "%U", format_vxlan_gpe_tunnel, t); |
| 1020 | })); |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1021 | /* *INDENT-ON* */ |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 1022 | |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 1023 | return 0; |
| 1024 | } |
| 1025 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1026 | /*? |
| 1027 | * Display all the VXLAN-GPE Tunnel entries. |
| 1028 | * |
| 1029 | * @cliexpar |
| 1030 | * Example of how to display the VXLAN-GPE Tunnel entries: |
| 1031 | * @cliexstart{show vxlan-gpe tunnel} |
| 1032 | * [0] local 10.0.3.1 remote 10.0.3.3 vni 13 encap_fib_index 0 sw_if_index 5 decap_next l2 |
| 1033 | * @cliexend |
| 1034 | ?*/ |
| 1035 | /* *INDENT-OFF* */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 1036 | VLIB_CLI_COMMAND (show_vxlan_gpe_tunnel_command, static) = { |
| 1037 | .path = "show vxlan-gpe", |
| 1038 | .function = show_vxlan_gpe_tunnel_command_fn, |
| 1039 | }; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1040 | /* *INDENT-ON* */ |
| 1041 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1042 | void |
| 1043 | vnet_int_vxlan_gpe_bypass_mode (u32 sw_if_index, u8 is_ip6, u8 is_enable) |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1044 | { |
| 1045 | if (is_ip6) |
| 1046 | vnet_feature_enable_disable ("ip6-unicast", "ip6-vxlan-gpe-bypass", |
| 1047 | sw_if_index, is_enable, 0, 0); |
| 1048 | else |
| 1049 | vnet_feature_enable_disable ("ip4-unicast", "ip4-vxlan-gpe-bypass", |
| 1050 | sw_if_index, is_enable, 0, 0); |
| 1051 | } |
| 1052 | |
| 1053 | |
| 1054 | static clib_error_t * |
| 1055 | set_ip_vxlan_gpe_bypass (u32 is_ip6, |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1056 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1057 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1058 | unformat_input_t _line_input, *line_input = &_line_input; |
| 1059 | vnet_main_t *vnm = vnet_get_main (); |
| 1060 | clib_error_t *error = 0; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1061 | u32 sw_if_index, is_enable; |
| 1062 | |
| 1063 | sw_if_index = ~0; |
| 1064 | is_enable = 1; |
| 1065 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1066 | if (!unformat_user (input, unformat_line_input, line_input)) |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1067 | return 0; |
| 1068 | |
| 1069 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 1070 | { |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1071 | if (unformat_user |
| 1072 | (line_input, unformat_vnet_sw_interface, vnm, &sw_if_index)) |
| 1073 | ; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1074 | else if (unformat (line_input, "del")) |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1075 | is_enable = 0; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1076 | else |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1077 | { |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1078 | error = unformat_parse_error (line_input); |
| 1079 | goto done; |
| 1080 | } |
| 1081 | } |
| 1082 | |
| 1083 | if (~0 == sw_if_index) |
| 1084 | { |
| 1085 | error = clib_error_return (0, "unknown interface `%U'", |
| 1086 | format_unformat_error, line_input); |
| 1087 | goto done; |
| 1088 | } |
| 1089 | |
| 1090 | vnet_int_vxlan_gpe_bypass_mode (sw_if_index, is_ip6, is_enable); |
| 1091 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1092 | done: |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1093 | unformat_free (line_input); |
| 1094 | |
| 1095 | return error; |
| 1096 | } |
| 1097 | |
| 1098 | static clib_error_t * |
| 1099 | set_ip4_vxlan_gpe_bypass (vlib_main_t * vm, |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1100 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1101 | { |
| 1102 | return set_ip_vxlan_gpe_bypass (0, input, cmd); |
| 1103 | } |
| 1104 | |
| 1105 | /*? |
| 1106 | * This command adds the 'ip4-vxlan-gpe-bypass' graph node for a given interface. |
| 1107 | * By adding the IPv4 vxlan-gpe-bypass graph node to an interface, the node checks |
| 1108 | * for and validate input vxlan_gpe packet and bypass ip4-lookup, ip4-local, |
| 1109 | * ip4-udp-lookup nodes to speedup vxlan_gpe packet forwarding. This node will |
| 1110 | * cause extra overhead to for non-vxlan_gpe packets which is kept at a minimum. |
| 1111 | * |
| 1112 | * @cliexpar |
| 1113 | * @parblock |
| 1114 | * Example of graph node before ip4-vxlan-gpe-bypass is enabled: |
| 1115 | * @cliexstart{show vlib graph ip4-vxlan-gpe-bypass} |
| 1116 | * Name Next Previous |
| 1117 | * ip4-vxlan-gpe-bypass error-drop [0] |
| 1118 | * vxlan4-gpe-input [1] |
| 1119 | * ip4-lookup [2] |
| 1120 | * @cliexend |
| 1121 | * |
| 1122 | * Example of how to enable ip4-vxlan-gpe-bypass on an interface: |
| 1123 | * @cliexcmd{set interface ip vxlan-gpe-bypass GigabitEthernet2/0/0} |
| 1124 | * |
| 1125 | * Example of graph node after ip4-vxlan-gpe-bypass is enabled: |
| 1126 | * @cliexstart{show vlib graph ip4-vxlan-gpe-bypass} |
| 1127 | * Name Next Previous |
| 1128 | * ip4-vxlan-gpe-bypass error-drop [0] ip4-input |
| 1129 | * vxlan4-gpe-input [1] ip4-input-no-checksum |
| 1130 | * ip4-lookup [2] |
| 1131 | * @cliexend |
| 1132 | * |
| 1133 | * Example of how to display the feature enabed on an interface: |
| 1134 | * @cliexstart{show ip interface features GigabitEthernet2/0/0} |
| 1135 | * IP feature paths configured on GigabitEthernet2/0/0... |
| 1136 | * ... |
| 1137 | * ipv4 unicast: |
| 1138 | * ip4-vxlan-gpe-bypass |
| 1139 | * ip4-lookup |
| 1140 | * ... |
| 1141 | * @cliexend |
| 1142 | * |
| 1143 | * Example of how to disable ip4-vxlan-gpe-bypass on an interface: |
| 1144 | * @cliexcmd{set interface ip vxlan-gpe-bypass GigabitEthernet2/0/0 del} |
| 1145 | * @endparblock |
| 1146 | ?*/ |
| 1147 | /* *INDENT-OFF* */ |
| 1148 | VLIB_CLI_COMMAND (set_interface_ip_vxlan_gpe_bypass_command, static) = { |
| 1149 | .path = "set interface ip vxlan-gpe-bypass", |
| 1150 | .function = set_ip4_vxlan_gpe_bypass, |
| 1151 | .short_help = "set interface ip vxlan-gpe-bypass <interface> [del]", |
| 1152 | }; |
| 1153 | /* *INDENT-ON* */ |
| 1154 | |
| 1155 | static clib_error_t * |
| 1156 | set_ip6_vxlan_gpe_bypass (vlib_main_t * vm, |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1157 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1158 | { |
| 1159 | return set_ip_vxlan_gpe_bypass (1, input, cmd); |
| 1160 | } |
| 1161 | |
| 1162 | /*? |
| 1163 | * This command adds the 'ip6-vxlan-gpe-bypass' graph node for a given interface. |
| 1164 | * By adding the IPv6 vxlan-gpe-bypass graph node to an interface, the node checks |
| 1165 | * for and validate input vxlan_gpe packet and bypass ip6-lookup, ip6-local, |
| 1166 | * ip6-udp-lookup nodes to speedup vxlan_gpe packet forwarding. This node will |
| 1167 | * cause extra overhead to for non-vxlan_gpe packets which is kept at a minimum. |
| 1168 | * |
| 1169 | * @cliexpar |
| 1170 | * @parblock |
| 1171 | * Example of graph node before ip6-vxlan-gpe-bypass is enabled: |
| 1172 | * @cliexstart{show vlib graph ip6-vxlan-gpe-bypass} |
| 1173 | * Name Next Previous |
| 1174 | * ip6-vxlan-gpe-bypass error-drop [0] |
| 1175 | * vxlan6-gpe-input [1] |
| 1176 | * ip6-lookup [2] |
| 1177 | * @cliexend |
| 1178 | * |
| 1179 | * Example of how to enable ip6-vxlan-gpe-bypass on an interface: |
| 1180 | * @cliexcmd{set interface ip6 vxlan-gpe-bypass GigabitEthernet2/0/0} |
| 1181 | * |
| 1182 | * Example of graph node after ip6-vxlan-gpe-bypass is enabled: |
| 1183 | * @cliexstart{show vlib graph ip6-vxlan-gpe-bypass} |
| 1184 | * Name Next Previous |
| 1185 | * ip6-vxlan-gpe-bypass error-drop [0] ip6-input |
| 1186 | * vxlan6-gpe-input [1] ip4-input-no-checksum |
| 1187 | * ip6-lookup [2] |
| 1188 | * @cliexend |
| 1189 | * |
| 1190 | * Example of how to display the feature enabed on an interface: |
| 1191 | * @cliexstart{show ip interface features GigabitEthernet2/0/0} |
| 1192 | * IP feature paths configured on GigabitEthernet2/0/0... |
| 1193 | * ... |
| 1194 | * ipv6 unicast: |
| 1195 | * ip6-vxlan-gpe-bypass |
| 1196 | * ip6-lookup |
| 1197 | * ... |
| 1198 | * @cliexend |
| 1199 | * |
| 1200 | * Example of how to disable ip6-vxlan-gpe-bypass on an interface: |
| 1201 | * @cliexcmd{set interface ip6 vxlan-gpe-bypass GigabitEthernet2/0/0 del} |
| 1202 | * @endparblock |
| 1203 | ?*/ |
| 1204 | /* *INDENT-OFF* */ |
| 1205 | VLIB_CLI_COMMAND (set_interface_ip6_vxlan_gpe_bypass_command, static) = { |
| 1206 | .path = "set interface ip6 vxlan-gpe-bypass", |
| 1207 | .function = set_ip6_vxlan_gpe_bypass, |
| 1208 | .short_help = "set interface ip vxlan-gpe-bypass <interface> [del]", |
| 1209 | }; |
| 1210 | /* *INDENT-ON* */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 1211 | |
Hongjun Ni | e1bf572 | 2017-08-03 20:34:45 +0800 | [diff] [blame] | 1212 | /* *INDENT-OFF* */ |
| 1213 | VNET_FEATURE_INIT (ip4_vxlan_gpe_bypass, static) = |
| 1214 | { |
| 1215 | .arc_name = "ip4-unicast", |
| 1216 | .node_name = "ip4-vxlan-gpe-bypass", |
| 1217 | .runs_before = VNET_FEATURES ("ip4-lookup"), |
| 1218 | }; |
| 1219 | |
| 1220 | VNET_FEATURE_INIT (ip6_vxlan_gpe_bypass, static) = |
| 1221 | { |
| 1222 | .arc_name = "ip6-unicast", |
| 1223 | .node_name = "ip6-vxlan-gpe-bypass", |
| 1224 | .runs_before = VNET_FEATURES ("ip6-lookup"), |
| 1225 | }; |
| 1226 | /* *INDENT-ON* */ |
| 1227 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 1228 | /** |
| 1229 | * @brief Feature init function for VXLAN GPE |
| 1230 | * |
| 1231 | * @param *vm |
| 1232 | * |
| 1233 | * @return error |
| 1234 | * |
| 1235 | */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1236 | clib_error_t * |
| 1237 | vxlan_gpe_init (vlib_main_t * vm) |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 1238 | { |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1239 | vxlan_gpe_main_t *ngm = &vxlan_gpe_main; |
Hongjun Ni | cccd1bf | 2016-06-07 18:43:05 +0800 | [diff] [blame] | 1240 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1241 | ngm->vnet_main = vnet_get_main (); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1242 | ngm->vlib_main = vm; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 1243 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1244 | ngm->vxlan4_gpe_tunnel_by_key |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1245 | = hash_create_mem (0, sizeof (vxlan4_gpe_tunnel_key_t), sizeof (uword)); |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 1246 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1247 | ngm->vxlan6_gpe_tunnel_by_key |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1248 | = hash_create_mem (0, sizeof (vxlan6_gpe_tunnel_key_t), sizeof (uword)); |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 1249 | |
| 1250 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1251 | ngm->mcast_shared = hash_create_mem (0, |
| 1252 | sizeof (ip46_address_t), |
| 1253 | sizeof (mcast_shared_t)); |
Swarup Nayak | 284f705 | 2017-12-13 13:02:22 +0530 | [diff] [blame] | 1254 | ngm->vtep6 = hash_create_mem (0, sizeof (ip6_address_t), sizeof (uword)); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1255 | |
| 1256 | udp_register_dst_port (vm, UDP_DST_PORT_VXLAN_GPE, |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1257 | vxlan4_gpe_input_node.index, 1 /* is_ip4 */ ); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1258 | udp_register_dst_port (vm, UDP_DST_PORT_VXLAN6_GPE, |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1259 | vxlan6_gpe_input_node.index, 0 /* is_ip4 */ ); |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 1260 | |
| 1261 | /* Register the list of standard decap protocols supported */ |
| 1262 | vxlan_gpe_register_decap_protocol (VXLAN_GPE_PROTOCOL_IP4, |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1263 | VXLAN_GPE_INPUT_NEXT_IP4_INPUT); |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 1264 | vxlan_gpe_register_decap_protocol (VXLAN_GPE_PROTOCOL_IP6, |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1265 | VXLAN_GPE_INPUT_NEXT_IP6_INPUT); |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 1266 | vxlan_gpe_register_decap_protocol (VXLAN_GPE_PROTOCOL_ETHERNET, |
Gabriel Ganne | 7e665d6 | 2017-11-17 09:18:53 +0100 | [diff] [blame] | 1267 | VXLAN_GPE_INPUT_NEXT_L2_INPUT); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1268 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1269 | fib_node_register_type (FIB_NODE_TYPE_VXLAN_GPE_TUNNEL, &vxlan_gpe_vft); |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 1270 | |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 1271 | return 0; |
| 1272 | } |
| 1273 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1274 | VLIB_INIT_FUNCTION (vxlan_gpe_init); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 1275 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 1276 | |
| 1277 | /* |
| 1278 | * fd.io coding-style-patch-verification: ON |
| 1279 | * |
| 1280 | * Local Variables: |
| 1281 | * eval: (c-set-style "gnu") |
| 1282 | * End: |
| 1283 | */ |