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