Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -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 | */ |
| 15 | #include <vnet/vxlan/vxlan.h> |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 16 | #include <vnet/ip/format.h> |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 17 | #include <vnet/fib/fib_entry.h> |
| 18 | #include <vnet/fib/fib_table.h> |
Neale Ranns | 1f50bf8 | 2019-07-16 15:28:52 +0000 | [diff] [blame] | 19 | #include <vnet/fib/fib_entry_track.h> |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 20 | #include <vnet/mfib/mfib_table.h> |
| 21 | #include <vnet/adj/adj_mcast.h> |
eyal bari | 82e21d7 | 2018-04-26 13:14:55 +0300 | [diff] [blame] | 22 | #include <vnet/adj/rewrite.h> |
Neale Ranns | 1b5ca98 | 2020-12-16 13:06:58 +0000 | [diff] [blame] | 23 | #include <vnet/dpo/drop_dpo.h> |
Eyal Bari | 3212c57 | 2017-03-06 11:47:50 +0200 | [diff] [blame] | 24 | #include <vnet/interface.h> |
eyal bari | af86a48 | 2018-04-17 11:20:27 +0300 | [diff] [blame] | 25 | #include <vnet/flow/flow.h> |
Florin Coras | b040f98 | 2020-10-20 14:59:43 -0700 | [diff] [blame] | 26 | #include <vnet/udp/udp_local.h> |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 27 | #include <vlib/vlib.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 28 | |
Billy McFall | c5d9cda | 2016-09-14 10:39:58 -0400 | [diff] [blame] | 29 | /** |
| 30 | * @file |
| 31 | * @brief VXLAN. |
| 32 | * |
| 33 | * VXLAN provides the features needed to allow L2 bridge domains (BDs) |
| 34 | * to span multiple servers. This is done by building an L2 overlay on |
| 35 | * top of an L3 network underlay using VXLAN tunnels. |
| 36 | * |
| 37 | * This makes it possible for servers to be co-located in the same data |
| 38 | * center or be separated geographically as long as they are reachable |
| 39 | * through the underlay L3 network. |
| 40 | * |
| 41 | * You can refer to this kind of L2 overlay bridge domain as a VXLAN |
| 42 | * (Virtual eXtensible VLAN) segment. |
| 43 | */ |
| 44 | |
| 45 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 46 | vxlan_main_t vxlan_main; |
| 47 | |
Ed Warnicke | a4b0541 | 2021-01-18 11:56:22 -0600 | [diff] [blame] | 48 | static u32 |
| 49 | vxlan_eth_flag_change (vnet_main_t *vnm, vnet_hw_interface_t *hi, u32 flags) |
| 50 | { |
| 51 | /* nothing for now */ |
| 52 | return 0; |
| 53 | } |
| 54 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 55 | static u8 * |
| 56 | format_decap_next (u8 * s, va_list * args) |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 57 | { |
| 58 | u32 next_index = va_arg (*args, u32); |
| 59 | |
John Lo | 4478d8e | 2018-01-12 17:15:25 -0500 | [diff] [blame] | 60 | if (next_index == VXLAN_INPUT_NEXT_DROP) |
| 61 | return format (s, "drop"); |
| 62 | else |
| 63 | return format (s, "index %d", next_index); |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 64 | return s; |
| 65 | } |
| 66 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 67 | u8 * |
| 68 | format_vxlan_tunnel (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 69 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 70 | vxlan_tunnel_t *t = va_arg (*args, vxlan_tunnel_t *); |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 71 | |
| 72 | s = format (s, |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame^] | 73 | "[%d] instance %d src %U dst %U src_port %d dst_port %d vni %d " |
| 74 | "fib-idx %d sw-if-idx %d ", |
| 75 | t->dev_instance, t->user_instance, format_ip46_address, &t->src, |
| 76 | IP46_TYPE_ANY, format_ip46_address, &t->dst, IP46_TYPE_ANY, |
| 77 | t->src_port, t->dst_port, t->vni, t->encap_fib_index, |
| 78 | t->sw_if_index); |
John Lo | 56912c8 | 2016-12-08 16:10:02 -0500 | [diff] [blame] | 79 | |
John Lo | 4478d8e | 2018-01-12 17:15:25 -0500 | [diff] [blame] | 80 | s = format (s, "encap-dpo-idx %d ", t->next_dpo.dpoi_index); |
John Lo | 56912c8 | 2016-12-08 16:10:02 -0500 | [diff] [blame] | 81 | |
John Lo | 4478d8e | 2018-01-12 17:15:25 -0500 | [diff] [blame] | 82 | if (PREDICT_FALSE (t->decap_next_index != VXLAN_INPUT_NEXT_L2_INPUT)) |
| 83 | s = format (s, "decap-next-%U ", format_decap_next, t->decap_next_index); |
| 84 | |
| 85 | if (PREDICT_FALSE (ip46_address_is_multicast (&t->dst))) |
| 86 | s = format (s, "mcast-sw-if-idx %d ", t->mcast_sw_if_index); |
| 87 | |
eyal bari | af86a48 | 2018-04-17 11:20:27 +0300 | [diff] [blame] | 88 | if (t->flow_index != ~0) |
| 89 | s = format (s, "flow-index %d [%U]", t->flow_index, |
| 90 | format_flow_enabled_hw, t->flow_index); |
| 91 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 92 | return s; |
| 93 | } |
| 94 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 95 | static u8 * |
| 96 | format_vxlan_name (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 97 | { |
| 98 | u32 dev_instance = va_arg (*args, u32); |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 99 | vxlan_main_t *vxm = &vxlan_main; |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 100 | vxlan_tunnel_t *t; |
| 101 | |
| 102 | if (dev_instance == ~0) |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 103 | return format (s, "<cached-unused>"); |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 104 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 105 | if (dev_instance >= vec_len (vxm->tunnels)) |
| 106 | return format (s, "<improperly-referenced>"); |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 107 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 108 | t = pool_elt_at_index (vxm->tunnels, dev_instance); |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 109 | |
| 110 | return format (s, "vxlan_tunnel%d", t->user_instance); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 111 | } |
| 112 | |
Pavel Kotucek | 988a7c4 | 2016-02-29 15:03:08 +0100 | [diff] [blame] | 113 | static clib_error_t * |
| 114 | vxlan_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags) |
| 115 | { |
Eyal Bari | a93ea42 | 2017-02-01 13:36:15 +0200 | [diff] [blame] | 116 | u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? |
| 117 | VNET_HW_INTERFACE_FLAG_LINK_UP : 0; |
| 118 | vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags); |
Pavel Kotucek | 988a7c4 | 2016-02-29 15:03:08 +0100 | [diff] [blame] | 119 | |
| 120 | return /* no error */ 0; |
| 121 | } |
| 122 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 123 | /* *INDENT-OFF* */ |
| 124 | VNET_DEVICE_CLASS (vxlan_device_class, static) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 125 | .name = "VXLAN", |
| 126 | .format_device_name = format_vxlan_name, |
| 127 | .format_tx_trace = format_vxlan_encap_trace, |
Pavel Kotucek | 988a7c4 | 2016-02-29 15:03:08 +0100 | [diff] [blame] | 128 | .admin_up_down_function = vxlan_interface_admin_up_down, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 129 | }; |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 130 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 131 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 132 | static u8 * |
| 133 | format_vxlan_header_with_length (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 134 | { |
| 135 | u32 dev_instance = va_arg (*args, u32); |
| 136 | s = format (s, "unimplemented dev %u", dev_instance); |
| 137 | return s; |
| 138 | } |
| 139 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 140 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 141 | VNET_HW_INTERFACE_CLASS (vxlan_hw_class) = { |
| 142 | .name = "VXLAN", |
| 143 | .format_header = format_vxlan_header_with_length, |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 144 | .build_rewrite = default_build_rewrite, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 145 | }; |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 146 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 147 | |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 148 | static void |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 149 | vxlan_tunnel_restack_dpo (vxlan_tunnel_t * t) |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 150 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 151 | u8 is_ip4 = ip46_address_is_ip4 (&t->dst); |
Eyal Bari | 99ed486 | 2018-04-25 13:50:57 +0300 | [diff] [blame] | 152 | dpo_id_t dpo = DPO_INVALID; |
| 153 | fib_forward_chain_type_t forw_type = is_ip4 ? |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 154 | FIB_FORW_CHAIN_TYPE_UNICAST_IP4 : FIB_FORW_CHAIN_TYPE_UNICAST_IP6; |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 155 | |
Eyal Bari | 99ed486 | 2018-04-25 13:50:57 +0300 | [diff] [blame] | 156 | fib_entry_contribute_forwarding (t->fib_entry_index, forw_type, &dpo); |
| 157 | |
| 158 | /* vxlan uses the payload hash as the udp source port |
| 159 | * hence the packet's hash is unknown |
| 160 | * skip single bucket load balance dpo's */ |
| 161 | while (DPO_LOAD_BALANCE == dpo.dpoi_type) |
| 162 | { |
Neale Ranns | 1b5ca98 | 2020-12-16 13:06:58 +0000 | [diff] [blame] | 163 | const load_balance_t *lb; |
| 164 | const dpo_id_t *choice; |
| 165 | |
| 166 | lb = load_balance_get (dpo.dpoi_index); |
Eyal Bari | 99ed486 | 2018-04-25 13:50:57 +0300 | [diff] [blame] | 167 | if (lb->lb_n_buckets > 1) |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 168 | break; |
Eyal Bari | 99ed486 | 2018-04-25 13:50:57 +0300 | [diff] [blame] | 169 | |
Neale Ranns | 1b5ca98 | 2020-12-16 13:06:58 +0000 | [diff] [blame] | 170 | choice = load_balance_get_bucket_i (lb, 0); |
| 171 | |
| 172 | if (DPO_RECEIVE == choice->dpoi_type) |
| 173 | dpo_copy (&dpo, drop_dpo_get (choice->dpoi_proto)); |
| 174 | else |
| 175 | dpo_copy (&dpo, choice); |
Eyal Bari | 99ed486 | 2018-04-25 13:50:57 +0300 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | u32 encap_index = is_ip4 ? |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 179 | vxlan4_encap_node.index : vxlan6_encap_node.index; |
Eyal Bari | 99ed486 | 2018-04-25 13:50:57 +0300 | [diff] [blame] | 180 | dpo_stack_from_node (encap_index, &t->next_dpo, &dpo); |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 181 | dpo_reset (&dpo); |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 182 | } |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 183 | |
| 184 | static vxlan_tunnel_t * |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 185 | vxlan_tunnel_from_fib_node (fib_node_t * node) |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 186 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 187 | ASSERT (FIB_NODE_TYPE_VXLAN_TUNNEL == node->fn_type); |
| 188 | return ((vxlan_tunnel_t *) (((char *) node) - |
| 189 | STRUCT_OFFSET_OF (vxlan_tunnel_t, node))); |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | /** |
| 193 | * Function definition to backwalk a FIB node - |
| 194 | * Here we will restack the new dpo of VXLAN DIP to encap node. |
| 195 | */ |
| 196 | static fib_node_back_walk_rc_t |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 197 | vxlan_tunnel_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx) |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 198 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 199 | vxlan_tunnel_restack_dpo (vxlan_tunnel_from_fib_node (node)); |
| 200 | return (FIB_NODE_BACK_WALK_CONTINUE); |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | /** |
| 204 | * Function definition to get a FIB node from its index |
| 205 | */ |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 206 | static fib_node_t * |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 207 | vxlan_tunnel_fib_node_get (fib_node_index_t index) |
| 208 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 209 | vxlan_tunnel_t *t; |
| 210 | vxlan_main_t *vxm = &vxlan_main; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 211 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 212 | t = pool_elt_at_index (vxm->tunnels, index); |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 213 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 214 | return (&t->node); |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | /** |
| 218 | * Function definition to inform the FIB node that its last lock has gone. |
| 219 | */ |
| 220 | static void |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 221 | vxlan_tunnel_last_lock_gone (fib_node_t * node) |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 222 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 223 | /* |
| 224 | * The VXLAN tunnel is a root of the graph. As such |
| 225 | * it never has children and thus is never locked. |
| 226 | */ |
| 227 | ASSERT (0); |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | /* |
| 231 | * Virtual function table registered by VXLAN tunnels |
| 232 | * for participation in the FIB object graph. |
| 233 | */ |
| 234 | const static fib_node_vft_t vxlan_vft = { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 235 | .fnv_get = vxlan_tunnel_fib_node_get, |
| 236 | .fnv_last_lock = vxlan_tunnel_last_lock_gone, |
| 237 | .fnv_back_walk = vxlan_tunnel_back_walk, |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 238 | }; |
| 239 | |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame^] | 240 | #define foreach_copy_field \ |
| 241 | _ (vni) \ |
| 242 | _ (mcast_sw_if_index) \ |
| 243 | _ (encap_fib_index) \ |
| 244 | _ (decap_next_index) \ |
| 245 | _ (src) \ |
| 246 | _ (dst) \ |
| 247 | _ (src_port) \ |
| 248 | _ (dst_port) |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 249 | |
Eyal Bari | 554075a | 2018-02-13 15:17:17 +0200 | [diff] [blame] | 250 | static void |
Eyal Bari | a93ea42 | 2017-02-01 13:36:15 +0200 | [diff] [blame] | 251 | vxlan_rewrite (vxlan_tunnel_t * t, bool is_ip6) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 252 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 253 | union |
| 254 | { |
eyal bari | 82e21d7 | 2018-04-26 13:14:55 +0300 | [diff] [blame] | 255 | ip4_vxlan_header_t h4; |
| 256 | ip6_vxlan_header_t h6; |
Matthew Smith | ec8aea1 | 2018-05-02 09:55:01 -0500 | [diff] [blame] | 257 | } h; |
eyal bari | 82e21d7 | 2018-04-26 13:14:55 +0300 | [diff] [blame] | 258 | int len = is_ip6 ? sizeof h.h6 : sizeof h.h4; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 259 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 260 | udp_header_t *udp; |
| 261 | vxlan_header_t *vxlan; |
Eyal Bari | a93ea42 | 2017-02-01 13:36:15 +0200 | [diff] [blame] | 262 | /* Fixed portion of the (outer) ip header */ |
Matthew Smith | ec8aea1 | 2018-05-02 09:55:01 -0500 | [diff] [blame] | 263 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 264 | clib_memset (&h, 0, sizeof (h)); |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 265 | if (!is_ip6) |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 266 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 267 | ip4_header_t *ip = &h.h4.ip4; |
eyal bari | 82e21d7 | 2018-04-26 13:14:55 +0300 | [diff] [blame] | 268 | udp = &h.h4.udp, vxlan = &h.h4.vxlan; |
Eyal Bari | a93ea42 | 2017-02-01 13:36:15 +0200 | [diff] [blame] | 269 | ip->ip_version_and_header_length = 0x45; |
| 270 | ip->ttl = 254; |
| 271 | ip->protocol = IP_PROTOCOL_UDP; |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 272 | |
Eyal Bari | a93ea42 | 2017-02-01 13:36:15 +0200 | [diff] [blame] | 273 | ip->src_address = t->src.ip4; |
| 274 | ip->dst_address = t->dst.ip4; |
| 275 | |
| 276 | /* we fix up the ip4 header length and checksum after-the-fact */ |
| 277 | ip->checksum = ip4_header_checksum (ip); |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 278 | } |
| 279 | else |
| 280 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 281 | ip6_header_t *ip = &h.h6.ip6; |
eyal bari | 82e21d7 | 2018-04-26 13:14:55 +0300 | [diff] [blame] | 282 | udp = &h.h6.udp, vxlan = &h.h6.vxlan; |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 283 | ip->ip_version_traffic_class_and_flow_label = |
| 284 | clib_host_to_net_u32 (6 << 28); |
Eyal Bari | a93ea42 | 2017-02-01 13:36:15 +0200 | [diff] [blame] | 285 | ip->hop_limit = 255; |
| 286 | ip->protocol = IP_PROTOCOL_UDP; |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 287 | |
Eyal Bari | a93ea42 | 2017-02-01 13:36:15 +0200 | [diff] [blame] | 288 | ip->src_address = t->src.ip6; |
| 289 | ip->dst_address = t->dst.ip6; |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 290 | } |
| 291 | |
Eyal Bari | a93ea42 | 2017-02-01 13:36:15 +0200 | [diff] [blame] | 292 | /* UDP header, randomize src port on something, maybe? */ |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame^] | 293 | udp->src_port = clib_host_to_net_u16 (t->src_port); |
| 294 | udp->dst_port = clib_host_to_net_u16 (t->dst_port); |
Eyal Bari | a93ea42 | 2017-02-01 13:36:15 +0200 | [diff] [blame] | 295 | |
| 296 | /* VXLAN header */ |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 297 | vnet_set_vni_and_flags (vxlan, t->vni); |
eyal bari | 82e21d7 | 2018-04-26 13:14:55 +0300 | [diff] [blame] | 298 | vnet_rewrite_set_data (*t, &h, len); |
Eyal Bari | a93ea42 | 2017-02-01 13:36:15 +0200 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | static bool |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 302 | vxlan_decap_next_is_valid (vxlan_main_t * vxm, u32 is_ip6, |
| 303 | u32 decap_next_index) |
Eyal Bari | a93ea42 | 2017-02-01 13:36:15 +0200 | [diff] [blame] | 304 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 305 | vlib_main_t *vm = vxm->vlib_main; |
| 306 | u32 input_idx = (!is_ip6) ? |
| 307 | vxlan4_input_node.index : vxlan6_input_node.index; |
Eyal Bari | a93ea42 | 2017-02-01 13:36:15 +0200 | [diff] [blame] | 308 | vlib_node_runtime_t *r = vlib_node_get_runtime (vm, input_idx); |
| 309 | |
| 310 | return decap_next_index < r->n_next_nodes; |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 311 | } |
| 312 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 313 | /* *INDENT-OFF* */ |
| 314 | typedef CLIB_PACKED(union |
| 315 | { |
| 316 | struct |
| 317 | { |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 318 | fib_node_index_t mfib_entry_index; |
Eyal Bari | 0ded851 | 2017-01-19 17:01:09 +0200 | [diff] [blame] | 319 | adj_index_t mcast_adj_index; |
| 320 | }; |
| 321 | u64 as_u64; |
| 322 | }) mcast_shared_t; |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 323 | /* *INDENT-ON* */ |
Eyal Bari | 0ded851 | 2017-01-19 17:01:09 +0200 | [diff] [blame] | 324 | |
| 325 | static inline mcast_shared_t |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 326 | mcast_shared_get (ip46_address_t * ip) |
Eyal Bari | fff67c8 | 2016-12-21 12:45:47 +0200 | [diff] [blame] | 327 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 328 | ASSERT (ip46_address_is_multicast (ip)); |
| 329 | uword *p = hash_get_mem (vxlan_main.mcast_shared, ip); |
Dave Barach | 47d41ad | 2020-02-17 09:13:26 -0500 | [diff] [blame] | 330 | ALWAYS_ASSERT (p); |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 331 | mcast_shared_t ret = {.as_u64 = *p }; |
| 332 | return ret; |
Eyal Bari | fff67c8 | 2016-12-21 12:45:47 +0200 | [diff] [blame] | 333 | } |
| 334 | |
Eyal Bari | 0ded851 | 2017-01-19 17:01:09 +0200 | [diff] [blame] | 335 | static inline void |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 336 | mcast_shared_add (ip46_address_t * dst, fib_node_index_t mfei, adj_index_t ai) |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 337 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 338 | mcast_shared_t new_ep = { |
| 339 | .mcast_adj_index = ai, |
| 340 | .mfib_entry_index = mfei, |
| 341 | }; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 342 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 343 | hash_set_mem_alloc (&vxlan_main.mcast_shared, dst, new_ep.as_u64); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | static inline void |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 347 | mcast_shared_remove (ip46_address_t * dst) |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 348 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 349 | mcast_shared_t ep = mcast_shared_get (dst); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 350 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 351 | adj_unlock (ep.mcast_adj_index); |
| 352 | mfib_table_entry_delete_index (ep.mfib_entry_index, MFIB_SOURCE_VXLAN); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 353 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 354 | hash_unset_mem_free (&vxlan_main.mcast_shared, dst); |
Eyal Bari | fff67c8 | 2016-12-21 12:45:47 +0200 | [diff] [blame] | 355 | } |
| 356 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 357 | int vnet_vxlan_add_del_tunnel |
| 358 | (vnet_vxlan_add_del_tunnel_args_t * a, u32 * sw_if_indexp) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 359 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 360 | vxlan_main_t *vxm = &vxlan_main; |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 361 | vnet_main_t *vnm = vxm->vnet_main; |
Eyal Bari | efd9cf3 | 2018-10-02 12:23:06 +0300 | [diff] [blame] | 362 | vxlan_decap_info_t *p; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 363 | u32 sw_if_index = ~0; |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 364 | vxlan4_tunnel_key_t key4; |
| 365 | vxlan6_tunnel_key_t key6; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 366 | u32 is_ip6 = a->is_ip6; |
Ed Warnicke | a4b0541 | 2021-01-18 11:56:22 -0600 | [diff] [blame] | 367 | vlib_main_t *vm = vlib_get_main (); |
| 368 | u8 hw_addr[6]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 369 | |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame^] | 370 | /* Set udp-ports */ |
| 371 | if (a->src_port == 0) |
| 372 | a->src_port = is_ip6 ? UDP_DST_PORT_vxlan6 : UDP_DST_PORT_vxlan; |
| 373 | |
| 374 | if (a->dst_port == 0) |
| 375 | a->dst_port = is_ip6 ? UDP_DST_PORT_vxlan6 : UDP_DST_PORT_vxlan; |
| 376 | |
Eyal Bari | dd47eca | 2018-07-08 08:15:56 +0300 | [diff] [blame] | 377 | int not_found; |
John Lo | 56912c8 | 2016-12-08 16:10:02 -0500 | [diff] [blame] | 378 | if (!is_ip6) |
| 379 | { |
Eyal Bari | efd9cf3 | 2018-10-02 12:23:06 +0300 | [diff] [blame] | 380 | /* ip4 mcast is indexed by mcast addr only */ |
| 381 | key4.key[0] = ip46_address_is_multicast (&a->dst) ? |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame^] | 382 | a->dst.ip4.as_u32 : |
| 383 | a->dst.ip4.as_u32 | (((u64) a->src.ip4.as_u32) << 32); |
| 384 | key4.key[1] = ((u64) clib_host_to_net_u16 (a->src_port) << 48) | |
| 385 | (((u64) a->encap_fib_index) << 32) | |
| 386 | clib_host_to_net_u32 (a->vni << 8); |
Eyal Bari | dd47eca | 2018-07-08 08:15:56 +0300 | [diff] [blame] | 387 | not_found = |
| 388 | clib_bihash_search_inline_16_8 (&vxm->vxlan4_tunnel_by_key, &key4); |
Eyal Bari | efd9cf3 | 2018-10-02 12:23:06 +0300 | [diff] [blame] | 389 | p = (void *) &key4.value; |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 390 | } |
| 391 | else |
John Lo | 56912c8 | 2016-12-08 16:10:02 -0500 | [diff] [blame] | 392 | { |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 393 | key6.key[0] = a->dst.ip6.as_u64[0]; |
| 394 | key6.key[1] = a->dst.ip6.as_u64[1]; |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame^] | 395 | key6.key[2] = (((u64) clib_host_to_net_u16 (a->src_port) << 48) | |
| 396 | ((u64) a->encap_fib_index) << 32) | |
| 397 | clib_host_to_net_u32 (a->vni << 8); |
Eyal Bari | dd47eca | 2018-07-08 08:15:56 +0300 | [diff] [blame] | 398 | not_found = |
| 399 | clib_bihash_search_inline_24_8 (&vxm->vxlan6_tunnel_by_key, &key6); |
Eyal Bari | efd9cf3 | 2018-10-02 12:23:06 +0300 | [diff] [blame] | 400 | p = (void *) &key6.value; |
John Lo | 56912c8 | 2016-12-08 16:10:02 -0500 | [diff] [blame] | 401 | } |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 402 | |
Eyal Bari | dd47eca | 2018-07-08 08:15:56 +0300 | [diff] [blame] | 403 | if (not_found) |
| 404 | p = 0; |
| 405 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 406 | if (a->is_add) |
| 407 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 408 | l2input_main_t *l2im = &l2input_main; |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 409 | u32 dev_instance; /* real dev instance tunnel index */ |
| 410 | u32 user_instance; /* request and actual instance number */ |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 411 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 412 | /* adding a tunnel: tunnel must not already exist */ |
| 413 | if (p) |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 414 | return VNET_API_ERROR_TUNNEL_EXIST; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 415 | |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 416 | /*if not set explicitly, default to l2 */ |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 417 | if (a->decap_next_index == ~0) |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 418 | a->decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT; |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 419 | if (!vxlan_decap_next_is_valid (vxm, is_ip6, a->decap_next_index)) |
| 420 | return VNET_API_ERROR_INVALID_DECAP_NEXT; |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 421 | |
Eyal Bari | efd9cf3 | 2018-10-02 12:23:06 +0300 | [diff] [blame] | 422 | vxlan_tunnel_t *t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 423 | pool_get_aligned (vxm->tunnels, t, CLIB_CACHE_LINE_BYTES); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 424 | clib_memset (t, 0, sizeof (*t)); |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 425 | dev_instance = t - vxm->tunnels; |
| 426 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 427 | /* copy from arg structure */ |
| 428 | #define _(x) t->x = a->x; |
| 429 | foreach_copy_field; |
| 430 | #undef _ |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 431 | |
Eyal Bari | 554075a | 2018-02-13 15:17:17 +0200 | [diff] [blame] | 432 | vxlan_rewrite (t, is_ip6); |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 433 | /* |
| 434 | * Reconcile the real dev_instance and a possible requested instance. |
| 435 | */ |
| 436 | user_instance = a->instance; |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 437 | if (user_instance == ~0) |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 438 | user_instance = dev_instance; |
| 439 | if (hash_get (vxm->instance_used, user_instance)) |
| 440 | { |
| 441 | pool_put (vxm->tunnels, t); |
| 442 | return VNET_API_ERROR_INSTANCE_IN_USE; |
| 443 | } |
Ed Warnicke | a4b0541 | 2021-01-18 11:56:22 -0600 | [diff] [blame] | 444 | |
| 445 | f64 now = vlib_time_now (vm); |
| 446 | u32 rnd; |
| 447 | rnd = (u32) (now * 1e6); |
| 448 | rnd = random_u32 (&rnd); |
| 449 | |
| 450 | memcpy (hw_addr + 2, &rnd, sizeof (rnd)); |
| 451 | hw_addr[0] = 2; |
| 452 | hw_addr[1] = 0xfe; |
| 453 | |
Ray Kinsella | 15cb3da | 2021-01-28 17:09:45 +0000 | [diff] [blame] | 454 | hash_set (vxm->instance_used, user_instance, 1); |
| 455 | |
| 456 | t->dev_instance = dev_instance; /* actual */ |
| 457 | t->user_instance = user_instance; /* name */ |
| 458 | t->flow_index = ~0; |
| 459 | |
Ed Warnicke | a4b0541 | 2021-01-18 11:56:22 -0600 | [diff] [blame] | 460 | if (ethernet_register_interface (vnm, vxlan_device_class.index, |
| 461 | dev_instance, hw_addr, &t->hw_if_index, |
| 462 | vxlan_eth_flag_change)) |
| 463 | { |
Ray Kinsella | 15cb3da | 2021-01-28 17:09:45 +0000 | [diff] [blame] | 464 | hash_unset (vxm->instance_used, t->user_instance); |
| 465 | |
Ed Warnicke | a4b0541 | 2021-01-18 11:56:22 -0600 | [diff] [blame] | 466 | pool_put (vxm->tunnels, t); |
| 467 | return VNET_API_ERROR_SYSCALL_ERROR_2; |
| 468 | } |
| 469 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 470 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, t->hw_if_index); |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 471 | |
| 472 | /* Set vxlan tunnel output node */ |
| 473 | u32 encap_index = !is_ip6 ? |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 474 | vxlan4_encap_node.index : vxlan6_encap_node.index; |
Eyal Bari | 554075a | 2018-02-13 15:17:17 +0200 | [diff] [blame] | 475 | vnet_set_interface_output_node (vnm, t->hw_if_index, encap_index); |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 476 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 477 | t->sw_if_index = sw_if_index = hi->sw_if_index; |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 478 | |
Eyal Bari | efd9cf3 | 2018-10-02 12:23:06 +0300 | [diff] [blame] | 479 | /* copy the key */ |
| 480 | int add_failed; |
| 481 | if (is_ip6) |
| 482 | { |
| 483 | key6.value = (u64) dev_instance; |
| 484 | add_failed = clib_bihash_add_del_24_8 (&vxm->vxlan6_tunnel_by_key, |
| 485 | &key6, 1 /*add */ ); |
| 486 | } |
| 487 | else |
| 488 | { |
| 489 | vxlan_decap_info_t di = {.sw_if_index = t->sw_if_index, }; |
| 490 | if (ip46_address_is_multicast (&t->dst)) |
| 491 | di.local_ip = t->src.ip4; |
| 492 | else |
| 493 | di.next_index = t->decap_next_index; |
| 494 | key4.value = di.as_u64; |
| 495 | add_failed = clib_bihash_add_del_16_8 (&vxm->vxlan4_tunnel_by_key, |
| 496 | &key4, 1 /*add */ ); |
| 497 | } |
| 498 | |
| 499 | if (add_failed) |
| 500 | { |
Ed Warnicke | a4b0541 | 2021-01-18 11:56:22 -0600 | [diff] [blame] | 501 | ethernet_delete_interface (vnm, t->hw_if_index); |
Eyal Bari | efd9cf3 | 2018-10-02 12:23:06 +0300 | [diff] [blame] | 502 | hash_unset (vxm->instance_used, t->user_instance); |
| 503 | pool_put (vxm->tunnels, t); |
| 504 | return VNET_API_ERROR_INVALID_REGISTRATION; |
| 505 | } |
| 506 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 507 | vec_validate_init_empty (vxm->tunnel_index_by_sw_if_index, sw_if_index, |
| 508 | ~0); |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 509 | vxm->tunnel_index_by_sw_if_index[sw_if_index] = dev_instance; |
Dave Wallace | 60231f3 | 2015-12-17 21:04:30 -0500 | [diff] [blame] | 510 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 511 | /* setup l2 input config with l2 feature and bd 0 to drop packet */ |
| 512 | vec_validate (l2im->configs, sw_if_index); |
| 513 | l2im->configs[sw_if_index].feature_bitmap = L2INPUT_FEAT_DROP; |
| 514 | l2im->configs[sw_if_index].bd_index = 0; |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 515 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 516 | vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index); |
Eyal Bari | 3212c57 | 2017-03-06 11:47:50 +0200 | [diff] [blame] | 517 | si->flags &= ~VNET_SW_INTERFACE_FLAG_HIDDEN; |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 518 | vnet_sw_interface_set_flags (vnm, sw_if_index, |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 519 | VNET_SW_INTERFACE_FLAG_ADMIN_UP); |
Eyal Bari | 3212c57 | 2017-03-06 11:47:50 +0200 | [diff] [blame] | 520 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 521 | fib_node_init (&t->node, FIB_NODE_TYPE_VXLAN_TUNNEL); |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 522 | fib_prefix_t tun_dst_pfx; |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 523 | vnet_flood_class_t flood_class = VNET_FLOOD_CLASS_TUNNEL_NORMAL; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 524 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 525 | fib_prefix_from_ip46_addr (&t->dst, &tun_dst_pfx); |
| 526 | if (!ip46_address_is_multicast (&t->dst)) |
| 527 | { |
| 528 | /* Unicast tunnel - |
| 529 | * source the FIB entry for the tunnel's destination |
| 530 | * and become a child thereof. The tunnel will then get poked |
| 531 | * when the forwarding for the entry updates, and the tunnel can |
| 532 | * re-stack accordingly |
| 533 | */ |
Nick Zavaritsky | 27518c2 | 2020-02-27 15:54:58 +0000 | [diff] [blame] | 534 | vtep_addr_ref (&vxm->vtep_table, t->encap_fib_index, &t->src); |
Neale Ranns | 1f50bf8 | 2019-07-16 15:28:52 +0000 | [diff] [blame] | 535 | t->fib_entry_index = fib_entry_track (t->encap_fib_index, |
| 536 | &tun_dst_pfx, |
| 537 | FIB_NODE_TYPE_VXLAN_TUNNEL, |
| 538 | dev_instance, |
| 539 | &t->sibling_index); |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 540 | vxlan_tunnel_restack_dpo (t); |
| 541 | } |
Eyal Bari | fff67c8 | 2016-12-21 12:45:47 +0200 | [diff] [blame] | 542 | else |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 543 | { |
| 544 | /* Multicast tunnel - |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 545 | * as the same mcast group can be used for multiple mcast tunnels |
| 546 | * with different VNIs, create the output fib adjacency only if |
John Lo | 56912c8 | 2016-12-08 16:10:02 -0500 | [diff] [blame] | 547 | * it does not already exist |
| 548 | */ |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 549 | fib_protocol_t fp = fib_ip_proto (is_ip6); |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 550 | |
Nick Zavaritsky | 27518c2 | 2020-02-27 15:54:58 +0000 | [diff] [blame] | 551 | if (vtep_addr_ref (&vxm->vtep_table, |
| 552 | t->encap_fib_index, &t->dst) == 1) |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 553 | { |
| 554 | fib_node_index_t mfei; |
| 555 | adj_index_t ai; |
| 556 | fib_route_path_t path = { |
| 557 | .frp_proto = fib_proto_to_dpo (fp), |
| 558 | .frp_addr = zero_addr, |
| 559 | .frp_sw_if_index = 0xffffffff, |
| 560 | .frp_fib_index = ~0, |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 561 | .frp_weight = 1, |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 562 | .frp_flags = FIB_ROUTE_PATH_LOCAL, |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 563 | .frp_mitf_flags = MFIB_ITF_FLAG_FORWARD, |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 564 | }; |
| 565 | const mfib_prefix_t mpfx = { |
| 566 | .fp_proto = fp, |
| 567 | .fp_len = (is_ip6 ? 128 : 32), |
| 568 | .fp_grp_addr = tun_dst_pfx.fp_addr, |
| 569 | }; |
Eyal Bari | fff67c8 | 2016-12-21 12:45:47 +0200 | [diff] [blame] | 570 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 571 | /* |
| 572 | * Setup the (*,G) to receive traffic on the mcast group |
| 573 | * - the forwarding interface is for-us |
| 574 | * - the accepting interface is that from the API |
| 575 | */ |
| 576 | mfib_table_entry_path_update (t->encap_fib_index, |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 577 | &mpfx, MFIB_SOURCE_VXLAN, &path); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 578 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 579 | path.frp_sw_if_index = a->mcast_sw_if_index; |
| 580 | path.frp_flags = FIB_ROUTE_PATH_FLAG_NONE; |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 581 | path.frp_mitf_flags = MFIB_ITF_FLAG_ACCEPT; |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 582 | mfei = mfib_table_entry_path_update (t->encap_fib_index, |
| 583 | &mpfx, |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 584 | MFIB_SOURCE_VXLAN, &path); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 585 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 586 | /* |
| 587 | * Create the mcast adjacency to send traffic to the group |
| 588 | */ |
| 589 | ai = adj_mcast_add_or_lock (fp, |
| 590 | fib_proto_to_link (fp), |
| 591 | a->mcast_sw_if_index); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 592 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 593 | /* |
| 594 | * create a new end-point |
| 595 | */ |
| 596 | mcast_shared_add (&t->dst, mfei, ai); |
| 597 | } |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 598 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 599 | dpo_id_t dpo = DPO_INVALID; |
| 600 | mcast_shared_t ep = mcast_shared_get (&t->dst); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 601 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 602 | /* Stack shared mcast dst mac addr rewrite on encap */ |
| 603 | dpo_set (&dpo, DPO_ADJACENCY_MCAST, |
| 604 | fib_proto_to_dpo (fp), ep.mcast_adj_index); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 605 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 606 | dpo_stack_from_node (encap_index, &t->next_dpo, &dpo); |
| 607 | dpo_reset (&dpo); |
Eyal Bari | fff67c8 | 2016-12-21 12:45:47 +0200 | [diff] [blame] | 608 | flood_class = VNET_FLOOD_CLASS_TUNNEL_MASTER; |
John Lo | 56912c8 | 2016-12-08 16:10:02 -0500 | [diff] [blame] | 609 | } |
| 610 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 611 | vnet_get_sw_interface (vnet_get_main (), sw_if_index)->flood_class = |
| 612 | flood_class; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 613 | } |
| 614 | else |
| 615 | { |
| 616 | /* deleting a tunnel: tunnel must exist */ |
John Lo | 37682e1 | 2016-11-30 12:51:39 -0500 | [diff] [blame] | 617 | if (!p) |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 618 | return VNET_API_ERROR_NO_SUCH_ENTRY; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 619 | |
Eyal Bari | f8d5e21 | 2018-10-14 10:54:32 +0300 | [diff] [blame] | 620 | u32 instance = is_ip6 ? key6.value : |
| 621 | vxm->tunnel_index_by_sw_if_index[p->sw_if_index]; |
Eyal Bari | efd9cf3 | 2018-10-02 12:23:06 +0300 | [diff] [blame] | 622 | vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, instance); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 623 | |
Eyal Bari | bc799c9 | 2017-04-06 03:26:59 +0300 | [diff] [blame] | 624 | sw_if_index = t->sw_if_index; |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 625 | vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ ); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 626 | |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 627 | vxm->tunnel_index_by_sw_if_index[sw_if_index] = ~0; |
Dave Wallace | 60231f3 | 2015-12-17 21:04:30 -0500 | [diff] [blame] | 628 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 629 | if (!is_ip6) |
Eyal Bari | dd47eca | 2018-07-08 08:15:56 +0300 | [diff] [blame] | 630 | clib_bihash_add_del_16_8 (&vxm->vxlan4_tunnel_by_key, &key4, |
| 631 | 0 /*del */ ); |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 632 | else |
Eyal Bari | dd47eca | 2018-07-08 08:15:56 +0300 | [diff] [blame] | 633 | clib_bihash_add_del_24_8 (&vxm->vxlan6_tunnel_by_key, &key6, |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 634 | 0 /*del */ ); |
Eyal Bari | fff67c8 | 2016-12-21 12:45:47 +0200 | [diff] [blame] | 635 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 636 | if (!ip46_address_is_multicast (&t->dst)) |
| 637 | { |
eyal bari | af86a48 | 2018-04-17 11:20:27 +0300 | [diff] [blame] | 638 | if (t->flow_index != ~0) |
| 639 | vnet_flow_del (vnm, t->flow_index); |
| 640 | |
Nick Zavaritsky | 27518c2 | 2020-02-27 15:54:58 +0000 | [diff] [blame] | 641 | vtep_addr_unref (&vxm->vtep_table, t->encap_fib_index, &t->src); |
Neale Ranns | 1f50bf8 | 2019-07-16 15:28:52 +0000 | [diff] [blame] | 642 | fib_entry_untrack (t->fib_entry_index, t->sibling_index); |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 643 | } |
Nick Zavaritsky | 27518c2 | 2020-02-27 15:54:58 +0000 | [diff] [blame] | 644 | else if (vtep_addr_unref (&vxm->vtep_table, |
| 645 | t->encap_fib_index, &t->dst) == 0) |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 646 | { |
| 647 | mcast_shared_remove (&t->dst); |
| 648 | } |
Eyal Bari | fff67c8 | 2016-12-21 12:45:47 +0200 | [diff] [blame] | 649 | |
Ed Warnicke | a4b0541 | 2021-01-18 11:56:22 -0600 | [diff] [blame] | 650 | ethernet_delete_interface (vnm, t->hw_if_index); |
Jon Loeliger | 25ef2b5 | 2018-02-23 17:02:41 -0600 | [diff] [blame] | 651 | hash_unset (vxm->instance_used, t->user_instance); |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 652 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 653 | fib_node_deinit (&t->node); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 654 | pool_put (vxm->tunnels, t); |
| 655 | } |
| 656 | |
| 657 | if (sw_if_indexp) |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 658 | *sw_if_indexp = sw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 659 | |
Jakub Grajciar | df3ca23 | 2019-06-04 13:16:42 +0200 | [diff] [blame] | 660 | if (a->is_add) |
| 661 | { |
| 662 | /* register udp ports */ |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame^] | 663 | if (!is_ip6 && !udp_is_valid_dst_port (a->src_port, 1)) |
| 664 | udp_register_dst_port (vxm->vlib_main, a->src_port, |
Jakub Grajciar | df3ca23 | 2019-06-04 13:16:42 +0200 | [diff] [blame] | 665 | vxlan4_input_node.index, 1); |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame^] | 666 | if (is_ip6 && !udp_is_valid_dst_port (a->src_port, 0)) |
| 667 | udp_register_dst_port (vxm->vlib_main, a->src_port, |
Jakub Grajciar | df3ca23 | 2019-06-04 13:16:42 +0200 | [diff] [blame] | 668 | vxlan6_input_node.index, 0); |
| 669 | } |
| 670 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 671 | return 0; |
| 672 | } |
| 673 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 674 | static uword |
| 675 | get_decap_next_for_node (u32 node_index, u32 ipv4_set) |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 676 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 677 | vxlan_main_t *vxm = &vxlan_main; |
| 678 | vlib_main_t *vm = vxm->vlib_main; |
Eyal Bari | 0765c6e | 2017-01-29 12:40:50 +0200 | [diff] [blame] | 679 | uword input_node = (ipv4_set) ? vxlan4_input_node.index : |
| 680 | vxlan6_input_node.index; |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 681 | |
Eyal Bari | 0765c6e | 2017-01-29 12:40:50 +0200 | [diff] [blame] | 682 | return vlib_node_add_next (vm, input_node, node_index); |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 683 | } |
| 684 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 685 | static uword |
| 686 | unformat_decap_next (unformat_input_t * input, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 687 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 688 | u32 *result = va_arg (*args, u32 *); |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 689 | u32 ipv4_set = va_arg (*args, int); |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 690 | vxlan_main_t *vxm = &vxlan_main; |
| 691 | vlib_main_t *vm = vxm->vlib_main; |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 692 | u32 node_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 693 | u32 tmp; |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 694 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 695 | if (unformat (input, "l2")) |
| 696 | *result = VXLAN_INPUT_NEXT_L2_INPUT; |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 697 | else if (unformat (input, "node %U", unformat_vlib_node, vm, &node_index)) |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 698 | *result = get_decap_next_for_node (node_index, ipv4_set); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 699 | else if (unformat (input, "%d", &tmp)) |
| 700 | *result = tmp; |
| 701 | else |
| 702 | return 0; |
| 703 | return 1; |
| 704 | } |
| 705 | |
| 706 | static clib_error_t * |
| 707 | vxlan_add_del_tunnel_command_fn (vlib_main_t * vm, |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 708 | unformat_input_t * input, |
| 709 | vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 710 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 711 | unformat_input_t _line_input, *line_input = &_line_input; |
| 712 | ip46_address_t src = ip46_address_initializer, dst = |
| 713 | ip46_address_initializer; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 714 | u8 is_add = 1; |
| 715 | u8 src_set = 0; |
| 716 | u8 dst_set = 0; |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 717 | u8 grp_set = 0; |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 718 | u8 ipv4_set = 0; |
| 719 | u8 ipv6_set = 0; |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 720 | u32 instance = ~0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 721 | u32 encap_fib_index = 0; |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 722 | u32 mcast_sw_if_index = ~0; |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 723 | u32 decap_next_index = VXLAN_INPUT_NEXT_L2_INPUT; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 724 | u32 vni = 0; |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame^] | 725 | u32 src_port = 0; |
| 726 | u32 dst_port = 0; |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 727 | u32 table_id; |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 728 | clib_error_t *parse_error = NULL; |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 729 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 730 | /* Get a line of input. */ |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 731 | if (!unformat_user (input, unformat_line_input, line_input)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 732 | return 0; |
| 733 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 734 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 735 | { |
| 736 | if (unformat (line_input, "del")) |
| 737 | { |
| 738 | is_add = 0; |
| 739 | } |
| 740 | else if (unformat (line_input, "instance %d", &instance)) |
| 741 | ; |
| 742 | else if (unformat (line_input, "src %U", |
| 743 | unformat_ip46_address, &src, IP46_TYPE_ANY)) |
| 744 | { |
| 745 | src_set = 1; |
| 746 | ip46_address_is_ip4 (&src) ? (ipv4_set = 1) : (ipv6_set = 1); |
| 747 | } |
| 748 | else if (unformat (line_input, "dst %U", |
| 749 | unformat_ip46_address, &dst, IP46_TYPE_ANY)) |
| 750 | { |
| 751 | dst_set = 1; |
| 752 | ip46_address_is_ip4 (&dst) ? (ipv4_set = 1) : (ipv6_set = 1); |
| 753 | } |
| 754 | else if (unformat (line_input, "group %U %U", |
| 755 | unformat_ip46_address, &dst, IP46_TYPE_ANY, |
| 756 | unformat_vnet_sw_interface, |
| 757 | vnet_get_main (), &mcast_sw_if_index)) |
| 758 | { |
| 759 | grp_set = dst_set = 1; |
| 760 | ip46_address_is_ip4 (&dst) ? (ipv4_set = 1) : (ipv6_set = 1); |
| 761 | } |
| 762 | else if (unformat (line_input, "encap-vrf-id %d", &table_id)) |
| 763 | { |
| 764 | encap_fib_index = |
| 765 | fib_table_find (fib_ip_proto (ipv6_set), table_id); |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 766 | } |
| 767 | else if (unformat (line_input, "decap-next %U", unformat_decap_next, |
| 768 | &decap_next_index, ipv4_set)) |
| 769 | ; |
| 770 | else if (unformat (line_input, "vni %d", &vni)) |
| 771 | ; |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame^] | 772 | else if (unformat (line_input, "src_port %d", &src_port)) |
| 773 | ; |
| 774 | else if (unformat (line_input, "dst_port %d", &dst_port)) |
| 775 | ; |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 776 | else |
| 777 | { |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 778 | parse_error = clib_error_return (0, "parse error: '%U'", |
| 779 | format_unformat_error, line_input); |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 780 | break; |
| 781 | } |
| 782 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 783 | |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 784 | unformat_free (line_input); |
| 785 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 786 | if (parse_error) |
| 787 | return parse_error; |
| 788 | |
| 789 | if (encap_fib_index == ~0) |
| 790 | return clib_error_return (0, "nonexistent encap-vrf-id %d", table_id); |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 791 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 792 | if (src_set == 0) |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 793 | return clib_error_return (0, "tunnel src address not specified"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 794 | |
| 795 | if (dst_set == 0) |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 796 | return clib_error_return (0, "tunnel dst address not specified"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 797 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 798 | if (grp_set && !ip46_address_is_multicast (&dst)) |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 799 | return clib_error_return (0, "tunnel group address not multicast"); |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 800 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 801 | if (grp_set == 0 && ip46_address_is_multicast (&dst)) |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 802 | return clib_error_return (0, "dst address must be unicast"); |
John Lo | 56912c8 | 2016-12-08 16:10:02 -0500 | [diff] [blame] | 803 | |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 804 | if (grp_set && mcast_sw_if_index == ~0) |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 805 | return clib_error_return (0, "tunnel nonexistent multicast device"); |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 806 | |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 807 | if (ipv4_set && ipv6_set) |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 808 | return clib_error_return (0, "both IPv4 and IPv6 addresses specified"); |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 809 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 810 | if (ip46_address_cmp (&src, &dst) == 0) |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 811 | return clib_error_return (0, "src and dst addresses are identical"); |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 812 | |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 813 | if (decap_next_index == ~0) |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 814 | return clib_error_return (0, "next node not found"); |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 815 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 816 | if (vni == 0) |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 817 | return clib_error_return (0, "vni not specified"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 818 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 819 | if (vni >> 24) |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 820 | return clib_error_return (0, "vni %d out of range", vni); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 821 | |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 822 | vnet_vxlan_add_del_tunnel_args_t a = { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 823 | .is_add = is_add, |
| 824 | .is_ip6 = ipv6_set, |
| 825 | .instance = instance, |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 826 | #define _(x) .x = x, |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 827 | foreach_copy_field |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 828 | #undef _ |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 829 | }; |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 830 | |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 831 | u32 tunnel_sw_if_index; |
| 832 | int rv = vnet_vxlan_add_del_tunnel (&a, &tunnel_sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 833 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 834 | switch (rv) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 835 | { |
| 836 | case 0: |
Pierre Pfister | 78ea9c2 | 2016-05-23 12:51:54 +0100 | [diff] [blame] | 837 | if (is_add) |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 838 | vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, |
| 839 | vnet_get_main (), tunnel_sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 840 | break; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 841 | |
| 842 | case VNET_API_ERROR_TUNNEL_EXIST: |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 843 | return clib_error_return (0, "tunnel already exists..."); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 844 | |
| 845 | case VNET_API_ERROR_NO_SUCH_ENTRY: |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 846 | return clib_error_return (0, "tunnel does not exist..."); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 847 | |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 848 | case VNET_API_ERROR_INSTANCE_IN_USE: |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 849 | return clib_error_return (0, "Instance is in use"); |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 850 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 851 | default: |
Eyal Bari | aa0180b | 2018-03-27 11:43:57 +0300 | [diff] [blame] | 852 | return clib_error_return |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 853 | (0, "vnet_vxlan_add_del_tunnel returned %d", rv); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 854 | } |
| 855 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 856 | return 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 857 | } |
| 858 | |
Billy McFall | c5d9cda | 2016-09-14 10:39:58 -0400 | [diff] [blame] | 859 | /*? |
| 860 | * Add or delete a VXLAN Tunnel. |
| 861 | * |
| 862 | * VXLAN provides the features needed to allow L2 bridge domains (BDs) |
| 863 | * to span multiple servers. This is done by building an L2 overlay on |
| 864 | * top of an L3 network underlay using VXLAN tunnels. |
| 865 | * |
| 866 | * This makes it possible for servers to be co-located in the same data |
| 867 | * center or be separated geographically as long as they are reachable |
| 868 | * through the underlay L3 network. |
| 869 | * |
| 870 | * You can refer to this kind of L2 overlay bridge domain as a VXLAN |
| 871 | * (Virtual eXtensible VLAN) segment. |
| 872 | * |
| 873 | * @cliexpar |
| 874 | * Example of how to create a VXLAN Tunnel: |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame^] | 875 | * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 encap-vrf-id |
| 876 | 7} |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 877 | * Example of how to create a VXLAN Tunnel with a known name, vxlan_tunnel42: |
| 878 | * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 instance 42} |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame^] | 879 | * Example of how to create a multicast VXLAN Tunnel with a known name, |
| 880 | vxlan_tunnel23: |
| 881 | * @cliexcmd{create vxlan tunnel src 10.0.3.1 group 239.1.1.1 |
| 882 | GigabitEthernet0/8/0 instance 23} |
| 883 | * Example of how to create a VXLAN Tunnel with custom udp-ports: |
| 884 | * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 src_port |
| 885 | 59000 dst_port 59001} |
Billy McFall | c5d9cda | 2016-09-14 10:39:58 -0400 | [diff] [blame] | 886 | * Example of how to delete a VXLAN Tunnel: |
| 887 | * @cliexcmd{create vxlan tunnel src 10.0.3.1 dst 10.0.3.3 vni 13 del} |
| 888 | ?*/ |
| 889 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 890 | VLIB_CLI_COMMAND (create_vxlan_tunnel_command, static) = { |
| 891 | .path = "create vxlan tunnel", |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 892 | .short_help = |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame^] | 893 | "create vxlan tunnel src <local-vtep-addr>" |
| 894 | " {dst <remote-vtep-addr>|group <mcast-vtep-addr> <intf-name>} vni <nn>" |
| 895 | " [instance <id>]" |
| 896 | " [encap-vrf-id <nn>] [decap-next [l2|node <name>]] [del]" |
| 897 | " [src_port <local-vtep-udp-port>] [dst_port <remote-vtep-udp-port>]", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 898 | .function = vxlan_add_del_tunnel_command_fn, |
| 899 | }; |
Billy McFall | c5d9cda | 2016-09-14 10:39:58 -0400 | [diff] [blame] | 900 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 901 | |
| 902 | static clib_error_t * |
| 903 | show_vxlan_tunnel_command_fn (vlib_main_t * vm, |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 904 | unformat_input_t * input, |
| 905 | vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 906 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 907 | vxlan_main_t *vxm = &vxlan_main; |
| 908 | vxlan_tunnel_t *t; |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 909 | int raw = 0; |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 910 | |
Neale Ranns | 16be62e | 2018-07-30 11:59:22 -0700 | [diff] [blame] | 911 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 912 | { |
Neale Ranns | 16be62e | 2018-07-30 11:59:22 -0700 | [diff] [blame] | 913 | if (unformat (input, "raw")) |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 914 | raw = 1; |
| 915 | else |
Neale Ranns | 16be62e | 2018-07-30 11:59:22 -0700 | [diff] [blame] | 916 | return clib_error_return (0, "parse error: '%U'", |
| 917 | format_unformat_error, input); |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 918 | } |
| 919 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 920 | if (pool_elts (vxm->tunnels) == 0) |
| 921 | vlib_cli_output (vm, "No vxlan tunnels configured..."); |
| 922 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 923 | /* *INDENT-OFF* */ |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 924 | pool_foreach (t, vxm->tunnels) |
| 925 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 926 | vlib_cli_output (vm, "%U", format_vxlan_tunnel, t); |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 927 | } |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 928 | /* *INDENT-ON* */ |
| 929 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 930 | if (raw) |
Eyal Bari | dd47eca | 2018-07-08 08:15:56 +0300 | [diff] [blame] | 931 | { |
| 932 | vlib_cli_output (vm, "Raw IPv4 Hash Table:\n%U\n", |
| 933 | format_bihash_16_8, &vxm->vxlan4_tunnel_by_key, |
| 934 | 1 /* verbose */ ); |
| 935 | vlib_cli_output (vm, "Raw IPv6 Hash Table:\n%U\n", |
| 936 | format_bihash_24_8, &vxm->vxlan6_tunnel_by_key, |
| 937 | 1 /* verbose */ ); |
| 938 | } |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 939 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 940 | return 0; |
| 941 | } |
| 942 | |
Billy McFall | c5d9cda | 2016-09-14 10:39:58 -0400 | [diff] [blame] | 943 | /*? |
| 944 | * Display all the VXLAN Tunnel entries. |
| 945 | * |
| 946 | * @cliexpar |
| 947 | * Example of how to display the VXLAN Tunnel entries: |
| 948 | * @cliexstart{show vxlan tunnel} |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame^] | 949 | * [0] src 10.0.3.1 dst 10.0.3.3 src_port 4789 dst_port 4789 vni 13 |
| 950 | encap_fib_index 0 sw_if_index 5 decap_next l2 |
Billy McFall | c5d9cda | 2016-09-14 10:39:58 -0400 | [diff] [blame] | 951 | * @cliexend |
| 952 | ?*/ |
| 953 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 954 | VLIB_CLI_COMMAND (show_vxlan_tunnel_command, static) = { |
| 955 | .path = "show vxlan tunnel", |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 956 | .short_help = "show vxlan tunnel [raw]", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 957 | .function = show_vxlan_tunnel_command_fn, |
| 958 | }; |
Billy McFall | c5d9cda | 2016-09-14 10:39:58 -0400 | [diff] [blame] | 959 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 960 | |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 961 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 962 | void |
| 963 | vnet_int_vxlan_bypass_mode (u32 sw_if_index, u8 is_ip6, u8 is_enable) |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 964 | { |
Jon Loeliger | e3034cd | 2019-01-03 12:56:02 -0600 | [diff] [blame] | 965 | vxlan_main_t *vxm = &vxlan_main; |
| 966 | |
| 967 | if (pool_is_free_index (vxm->vnet_main->interface_main.sw_interfaces, |
| 968 | sw_if_index)) |
| 969 | return; |
| 970 | |
| 971 | is_enable = ! !is_enable; |
| 972 | |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 973 | if (is_ip6) |
Jon Loeliger | e3034cd | 2019-01-03 12:56:02 -0600 | [diff] [blame] | 974 | { |
| 975 | if (clib_bitmap_get (vxm->bm_ip6_bypass_enabled_by_sw_if, sw_if_index) |
| 976 | != is_enable) |
| 977 | { |
| 978 | vnet_feature_enable_disable ("ip6-unicast", "ip6-vxlan-bypass", |
| 979 | sw_if_index, is_enable, 0, 0); |
| 980 | vxm->bm_ip6_bypass_enabled_by_sw_if = |
| 981 | clib_bitmap_set (vxm->bm_ip6_bypass_enabled_by_sw_if, |
| 982 | sw_if_index, is_enable); |
| 983 | } |
| 984 | } |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 985 | else |
Jon Loeliger | e3034cd | 2019-01-03 12:56:02 -0600 | [diff] [blame] | 986 | { |
| 987 | if (clib_bitmap_get (vxm->bm_ip4_bypass_enabled_by_sw_if, sw_if_index) |
| 988 | != is_enable) |
| 989 | { |
| 990 | vnet_feature_enable_disable ("ip4-unicast", "ip4-vxlan-bypass", |
| 991 | sw_if_index, is_enable, 0, 0); |
| 992 | vxm->bm_ip4_bypass_enabled_by_sw_if = |
| 993 | clib_bitmap_set (vxm->bm_ip4_bypass_enabled_by_sw_if, |
| 994 | sw_if_index, is_enable); |
| 995 | } |
| 996 | } |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 997 | } |
| 998 | |
| 999 | |
| 1000 | static clib_error_t * |
| 1001 | set_ip_vxlan_bypass (u32 is_ip6, |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1002 | unformat_input_t * input, vlib_cli_command_t * cmd) |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1003 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1004 | unformat_input_t _line_input, *line_input = &_line_input; |
| 1005 | vnet_main_t *vnm = vnet_get_main (); |
| 1006 | clib_error_t *error = 0; |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1007 | u32 sw_if_index, is_enable; |
| 1008 | |
| 1009 | sw_if_index = ~0; |
| 1010 | is_enable = 1; |
| 1011 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1012 | if (!unformat_user (input, unformat_line_input, line_input)) |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1013 | return 0; |
| 1014 | |
| 1015 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 1016 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1017 | if (unformat_user |
| 1018 | (line_input, unformat_vnet_sw_interface, vnm, &sw_if_index)) |
| 1019 | ; |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1020 | else if (unformat (line_input, "del")) |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1021 | is_enable = 0; |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1022 | else |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1023 | { |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1024 | error = unformat_parse_error (line_input); |
| 1025 | goto done; |
| 1026 | } |
| 1027 | } |
| 1028 | |
| 1029 | if (~0 == sw_if_index) |
| 1030 | { |
| 1031 | error = clib_error_return (0, "unknown interface `%U'", |
| 1032 | format_unformat_error, line_input); |
| 1033 | goto done; |
| 1034 | } |
| 1035 | |
| 1036 | vnet_int_vxlan_bypass_mode (sw_if_index, is_ip6, is_enable); |
| 1037 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1038 | done: |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 1039 | unformat_free (line_input); |
| 1040 | |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1041 | return error; |
| 1042 | } |
| 1043 | |
| 1044 | static clib_error_t * |
| 1045 | set_ip4_vxlan_bypass (vlib_main_t * vm, |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1046 | unformat_input_t * input, vlib_cli_command_t * cmd) |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1047 | { |
| 1048 | return set_ip_vxlan_bypass (0, input, cmd); |
| 1049 | } |
| 1050 | |
| 1051 | /*? |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1052 | * This command adds the 'ip4-vxlan-bypass' graph node for a given interface. |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1053 | * By adding the IPv4 vxlan-bypass graph node to an interface, the node checks |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1054 | * for and validate input vxlan packet and bypass ip4-lookup, ip4-local, |
| 1055 | * ip4-udp-lookup nodes to speedup vxlan packet forwarding. This node will |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1056 | * cause extra overhead to for non-vxlan packets which is kept at a minimum. |
| 1057 | * |
| 1058 | * @cliexpar |
| 1059 | * @parblock |
| 1060 | * Example of graph node before ip4-vxlan-bypass is enabled: |
| 1061 | * @cliexstart{show vlib graph ip4-vxlan-bypass} |
| 1062 | * Name Next Previous |
| 1063 | * ip4-vxlan-bypass error-drop [0] |
| 1064 | * vxlan4-input [1] |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1065 | * ip4-lookup [2] |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1066 | * @cliexend |
| 1067 | * |
| 1068 | * Example of how to enable ip4-vxlan-bypass on an interface: |
| 1069 | * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0} |
| 1070 | * |
| 1071 | * Example of graph node after ip4-vxlan-bypass is enabled: |
| 1072 | * @cliexstart{show vlib graph ip4-vxlan-bypass} |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1073 | * Name Next Previous |
| 1074 | * ip4-vxlan-bypass error-drop [0] ip4-input |
| 1075 | * vxlan4-input [1] ip4-input-no-checksum |
| 1076 | * ip4-lookup [2] |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1077 | * @cliexend |
| 1078 | * |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 1079 | * Example of how to display the feature enabled on an interface: |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1080 | * @cliexstart{show ip interface features GigabitEthernet2/0/0} |
| 1081 | * IP feature paths configured on GigabitEthernet2/0/0... |
| 1082 | * ... |
| 1083 | * ipv4 unicast: |
| 1084 | * ip4-vxlan-bypass |
| 1085 | * ip4-lookup |
| 1086 | * ... |
| 1087 | * @cliexend |
| 1088 | * |
| 1089 | * Example of how to disable ip4-vxlan-bypass on an interface: |
| 1090 | * @cliexcmd{set interface ip vxlan-bypass GigabitEthernet2/0/0 del} |
| 1091 | * @endparblock |
| 1092 | ?*/ |
| 1093 | /* *INDENT-OFF* */ |
| 1094 | VLIB_CLI_COMMAND (set_interface_ip_vxlan_bypass_command, static) = { |
| 1095 | .path = "set interface ip vxlan-bypass", |
| 1096 | .function = set_ip4_vxlan_bypass, |
| 1097 | .short_help = "set interface ip vxlan-bypass <interface> [del]", |
| 1098 | }; |
| 1099 | /* *INDENT-ON* */ |
| 1100 | |
| 1101 | static clib_error_t * |
| 1102 | set_ip6_vxlan_bypass (vlib_main_t * vm, |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1103 | unformat_input_t * input, vlib_cli_command_t * cmd) |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1104 | { |
| 1105 | return set_ip_vxlan_bypass (1, input, cmd); |
| 1106 | } |
| 1107 | |
| 1108 | /*? |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1109 | * This command adds the 'ip6-vxlan-bypass' graph node for a given interface. |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1110 | * By adding the IPv6 vxlan-bypass graph node to an interface, the node checks |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1111 | * for and validate input vxlan packet and bypass ip6-lookup, ip6-local, |
| 1112 | * ip6-udp-lookup nodes to speedup vxlan packet forwarding. This node will |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1113 | * cause extra overhead to for non-vxlan packets which is kept at a minimum. |
| 1114 | * |
| 1115 | * @cliexpar |
| 1116 | * @parblock |
| 1117 | * Example of graph node before ip6-vxlan-bypass is enabled: |
| 1118 | * @cliexstart{show vlib graph ip6-vxlan-bypass} |
| 1119 | * Name Next Previous |
| 1120 | * ip6-vxlan-bypass error-drop [0] |
| 1121 | * vxlan6-input [1] |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1122 | * ip6-lookup [2] |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1123 | * @cliexend |
| 1124 | * |
| 1125 | * Example of how to enable ip6-vxlan-bypass on an interface: |
| 1126 | * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0} |
| 1127 | * |
| 1128 | * Example of graph node after ip6-vxlan-bypass is enabled: |
| 1129 | * @cliexstart{show vlib graph ip6-vxlan-bypass} |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1130 | * Name Next Previous |
| 1131 | * ip6-vxlan-bypass error-drop [0] ip6-input |
| 1132 | * vxlan6-input [1] ip4-input-no-checksum |
| 1133 | * ip6-lookup [2] |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1134 | * @cliexend |
| 1135 | * |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 1136 | * Example of how to display the feature enabled on an interface: |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1137 | * @cliexstart{show ip interface features GigabitEthernet2/0/0} |
| 1138 | * IP feature paths configured on GigabitEthernet2/0/0... |
| 1139 | * ... |
| 1140 | * ipv6 unicast: |
| 1141 | * ip6-vxlan-bypass |
| 1142 | * ip6-lookup |
| 1143 | * ... |
| 1144 | * @cliexend |
| 1145 | * |
| 1146 | * Example of how to disable ip6-vxlan-bypass on an interface: |
| 1147 | * @cliexcmd{set interface ip6 vxlan-bypass GigabitEthernet2/0/0 del} |
| 1148 | * @endparblock |
| 1149 | ?*/ |
| 1150 | /* *INDENT-OFF* */ |
| 1151 | VLIB_CLI_COMMAND (set_interface_ip6_vxlan_bypass_command, static) = { |
| 1152 | .path = "set interface ip6 vxlan-bypass", |
| 1153 | .function = set_ip6_vxlan_bypass, |
Paul Vinciguerra | 5fb2278 | 2019-11-07 17:20:48 -0500 | [diff] [blame] | 1154 | .short_help = "set interface ip6 vxlan-bypass <interface> [del]", |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 1155 | }; |
| 1156 | /* *INDENT-ON* */ |
| 1157 | |
eyal bari | af86a48 | 2018-04-17 11:20:27 +0300 | [diff] [blame] | 1158 | int |
| 1159 | vnet_vxlan_add_del_rx_flow (u32 hw_if_index, u32 t_index, int is_add) |
| 1160 | { |
| 1161 | vxlan_main_t *vxm = &vxlan_main; |
| 1162 | vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, t_index); |
| 1163 | vnet_main_t *vnm = vnet_get_main (); |
| 1164 | if (is_add) |
| 1165 | { |
| 1166 | if (t->flow_index == ~0) |
| 1167 | { |
| 1168 | vxlan_main_t *vxm = &vxlan_main; |
| 1169 | vnet_flow_t flow = { |
| 1170 | .actions = |
Chenmin Sun | 1ec9fdb | 2019-12-05 01:41:35 +0800 | [diff] [blame] | 1171 | VNET_FLOW_ACTION_REDIRECT_TO_NODE | VNET_FLOW_ACTION_MARK | |
| 1172 | VNET_FLOW_ACTION_BUFFER_ADVANCE, |
eyal bari | af86a48 | 2018-04-17 11:20:27 +0300 | [diff] [blame] | 1173 | .mark_flow_id = t->dev_instance + vxm->flow_id_start, |
| 1174 | .redirect_node_index = vxlan4_flow_input_node.index, |
Chenmin Sun | 1ec9fdb | 2019-12-05 01:41:35 +0800 | [diff] [blame] | 1175 | .buffer_advance = sizeof (ethernet_header_t), |
eyal bari | af86a48 | 2018-04-17 11:20:27 +0300 | [diff] [blame] | 1176 | .type = VNET_FLOW_TYPE_IP4_VXLAN, |
| 1177 | .ip4_vxlan = { |
Chenmin Sun | 34bfa50 | 2020-07-27 17:40:17 +0800 | [diff] [blame] | 1178 | .protocol.prot = IP_PROTOCOL_UDP, |
| 1179 | .src_addr.addr = t->dst.ip4, |
| 1180 | .dst_addr.addr = t->src.ip4, |
| 1181 | .src_addr.mask.as_u32 = ~0, |
| 1182 | .dst_addr.mask.as_u32 = ~0, |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame^] | 1183 | .dst_port.port = t->src_port, |
Chenmin Sun | 34bfa50 | 2020-07-27 17:40:17 +0800 | [diff] [blame] | 1184 | .dst_port.mask = 0xFF, |
eyal bari | af86a48 | 2018-04-17 11:20:27 +0300 | [diff] [blame] | 1185 | .vni = t->vni, |
| 1186 | } |
| 1187 | , |
| 1188 | }; |
| 1189 | vnet_flow_add (vnm, &flow, &t->flow_index); |
| 1190 | } |
| 1191 | return vnet_flow_enable (vnm, t->flow_index, hw_if_index); |
| 1192 | } |
| 1193 | /* flow index is removed when the tunnel is deleted */ |
| 1194 | return vnet_flow_disable (vnm, t->flow_index, hw_if_index); |
| 1195 | } |
| 1196 | |
| 1197 | u32 |
| 1198 | vnet_vxlan_get_tunnel_index (u32 sw_if_index) |
| 1199 | { |
| 1200 | vxlan_main_t *vxm = &vxlan_main; |
| 1201 | |
Eyal Bari | cd30774 | 2018-07-22 12:45:15 +0300 | [diff] [blame] | 1202 | if (sw_if_index >= vec_len (vxm->tunnel_index_by_sw_if_index)) |
eyal bari | af86a48 | 2018-04-17 11:20:27 +0300 | [diff] [blame] | 1203 | return ~0; |
| 1204 | return vxm->tunnel_index_by_sw_if_index[sw_if_index]; |
| 1205 | } |
| 1206 | |
| 1207 | static clib_error_t * |
| 1208 | vxlan_offload_command_fn (vlib_main_t * vm, |
| 1209 | unformat_input_t * input, vlib_cli_command_t * cmd) |
| 1210 | { |
| 1211 | unformat_input_t _line_input, *line_input = &_line_input; |
| 1212 | |
| 1213 | /* Get a line of input. */ |
| 1214 | if (!unformat_user (input, unformat_line_input, line_input)) |
| 1215 | return 0; |
| 1216 | |
| 1217 | vnet_main_t *vnm = vnet_get_main (); |
| 1218 | u32 rx_sw_if_index = ~0; |
| 1219 | u32 hw_if_index = ~0; |
| 1220 | int is_add = 1; |
| 1221 | |
| 1222 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 1223 | { |
| 1224 | if (unformat (line_input, "hw %U", unformat_vnet_hw_interface, vnm, |
| 1225 | &hw_if_index)) |
| 1226 | continue; |
| 1227 | if (unformat (line_input, "rx %U", unformat_vnet_sw_interface, vnm, |
| 1228 | &rx_sw_if_index)) |
| 1229 | continue; |
| 1230 | if (unformat (line_input, "del")) |
| 1231 | { |
| 1232 | is_add = 0; |
| 1233 | continue; |
| 1234 | } |
| 1235 | return clib_error_return (0, "unknown input `%U'", |
| 1236 | format_unformat_error, line_input); |
| 1237 | } |
| 1238 | |
| 1239 | if (rx_sw_if_index == ~0) |
| 1240 | return clib_error_return (0, "missing rx interface"); |
| 1241 | if (hw_if_index == ~0) |
| 1242 | return clib_error_return (0, "missing hw interface"); |
| 1243 | |
| 1244 | u32 t_index = vnet_vxlan_get_tunnel_index (rx_sw_if_index);; |
| 1245 | if (t_index == ~0) |
| 1246 | return clib_error_return (0, "%U is not a vxlan tunnel", |
| 1247 | format_vnet_sw_if_index_name, vnm, |
| 1248 | rx_sw_if_index); |
| 1249 | |
| 1250 | vxlan_main_t *vxm = &vxlan_main; |
| 1251 | vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, t_index); |
| 1252 | |
| 1253 | if (!ip46_address_is_ip4 (&t->dst)) |
| 1254 | return clib_error_return (0, "currently only IPV4 tunnels are supported"); |
| 1255 | |
| 1256 | vnet_hw_interface_t *hw_if = vnet_get_hw_interface (vnm, hw_if_index); |
| 1257 | ip4_main_t *im = &ip4_main; |
| 1258 | u32 rx_fib_index = |
| 1259 | vec_elt (im->fib_index_by_sw_if_index, hw_if->sw_if_index); |
| 1260 | |
| 1261 | if (t->encap_fib_index != rx_fib_index) |
| 1262 | return clib_error_return (0, "interface/tunnel fib mismatch"); |
| 1263 | |
| 1264 | if (vnet_vxlan_add_del_rx_flow (hw_if_index, t_index, is_add)) |
| 1265 | return clib_error_return (0, "error %s flow", |
| 1266 | is_add ? "enabling" : "disabling"); |
| 1267 | |
| 1268 | return 0; |
| 1269 | } |
| 1270 | |
| 1271 | /* *INDENT-OFF* */ |
| 1272 | VLIB_CLI_COMMAND (vxlan_offload_command, static) = { |
| 1273 | .path = "set flow-offload vxlan", |
| 1274 | .short_help = |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 1275 | "set flow-offload vxlan hw <interface-name> rx <tunnel-name> [del]", |
eyal bari | af86a48 | 2018-04-17 11:20:27 +0300 | [diff] [blame] | 1276 | .function = vxlan_offload_command_fn, |
| 1277 | }; |
| 1278 | /* *INDENT-ON* */ |
| 1279 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 1280 | #define VXLAN_HASH_NUM_BUCKETS (2 * 1024) |
| 1281 | #define VXLAN_HASH_MEMORY_SIZE (1 << 20) |
| 1282 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1283 | clib_error_t * |
| 1284 | vxlan_init (vlib_main_t * vm) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1285 | { |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1286 | vxlan_main_t *vxm = &vxlan_main; |
| 1287 | |
| 1288 | vxm->vnet_main = vnet_get_main (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1289 | vxm->vlib_main = vm; |
| 1290 | |
eyal bari | af86a48 | 2018-04-17 11:20:27 +0300 | [diff] [blame] | 1291 | vnet_flow_get_range (vxm->vnet_main, "vxlan", 1024 * 1024, |
| 1292 | &vxm->flow_id_start); |
| 1293 | |
Jon Loeliger | e3034cd | 2019-01-03 12:56:02 -0600 | [diff] [blame] | 1294 | vxm->bm_ip4_bypass_enabled_by_sw_if = 0; |
| 1295 | vxm->bm_ip6_bypass_enabled_by_sw_if = 0; |
| 1296 | |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 1297 | /* initialize the ip6 hash */ |
Eyal Bari | dd47eca | 2018-07-08 08:15:56 +0300 | [diff] [blame] | 1298 | clib_bihash_init_16_8 (&vxm->vxlan4_tunnel_by_key, "vxlan4", |
| 1299 | VXLAN_HASH_NUM_BUCKETS, VXLAN_HASH_MEMORY_SIZE); |
| 1300 | clib_bihash_init_24_8 (&vxm->vxlan6_tunnel_by_key, "vxlan6", |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 1301 | VXLAN_HASH_NUM_BUCKETS, VXLAN_HASH_MEMORY_SIZE); |
Nick Zavaritsky | 27518c2 | 2020-02-27 15:54:58 +0000 | [diff] [blame] | 1302 | vxm->vtep_table = vtep_table_create (); |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1303 | vxm->mcast_shared = hash_create_mem (0, |
| 1304 | sizeof (ip46_address_t), |
| 1305 | sizeof (mcast_shared_t)); |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 1306 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1307 | fib_node_register_type (FIB_NODE_TYPE_VXLAN_TUNNEL, &vxlan_vft); |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 1308 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1309 | return 0; |
| 1310 | } |
| 1311 | |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1312 | VLIB_INIT_FUNCTION (vxlan_init); |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 1313 | |
| 1314 | /* |
Eyal Bari | 8f57648 | 2018-05-07 10:13:44 +0300 | [diff] [blame] | 1315 | * fd.io coding-style-patch-verification: ON |
| 1316 | * |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 1317 | * Local Variables: |
| 1318 | * eval: (c-set-style "gnu") |
| 1319 | * End: |
| 1320 | */ |