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 | /* |
| 16 | * ethernet_interface.c: ethernet interfaces |
| 17 | * |
| 18 | * Copyright (c) 2008 Eliot Dresselhaus |
| 19 | * |
| 20 | * Permission is hereby granted, free of charge, to any person obtaining |
| 21 | * a copy of this software and associated documentation files (the |
| 22 | * "Software"), to deal in the Software without restriction, including |
| 23 | * without limitation the rights to use, copy, modify, merge, publish, |
| 24 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 25 | * permit persons to whom the Software is furnished to do so, subject to |
| 26 | * the following conditions: |
| 27 | * |
| 28 | * The above copyright notice and this permission notice shall be |
| 29 | * included in all copies or substantial portions of the Software. |
| 30 | * |
| 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 32 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 33 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 34 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 35 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 36 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 37 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 38 | */ |
| 39 | |
| 40 | #include <vnet/vnet.h> |
| 41 | #include <vnet/ip/ip.h> |
| 42 | #include <vnet/pg/pg.h> |
| 43 | #include <vnet/ethernet/ethernet.h> |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 44 | //#include <vnet/ethernet/arp.h> |
John Lo | 405e41b | 2016-04-23 15:14:12 -0400 | [diff] [blame] | 45 | #include <vnet/l2/l2_input.h> |
Neale Ranns | 3b81a1e | 2018-09-06 09:50:26 -0700 | [diff] [blame] | 46 | #include <vnet/l2/l2_bd.h> |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 47 | #include <vnet/adj/adj.h> |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 48 | #include <vnet/adj/adj_mcast.h> |
| 49 | #include <vnet/ip-neighbor/ip_neighbor.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 50 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 51 | /** |
| 52 | * @file |
| 53 | * @brief Loopback Interfaces. |
| 54 | * |
| 55 | * This file contains code to manage loopback interfaces. |
| 56 | */ |
| 57 | |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 58 | static const u8 * |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 59 | ethernet_ip4_mcast_dst_addr (void) |
| 60 | { |
| 61 | const static u8 ethernet_mcast_dst_mac[] = { |
| 62 | 0x1, 0x0, 0x5e, 0x0, 0x0, 0x0, |
| 63 | }; |
| 64 | |
| 65 | return (ethernet_mcast_dst_mac); |
| 66 | } |
| 67 | |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 68 | static const u8 * |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 69 | ethernet_ip6_mcast_dst_addr (void) |
| 70 | { |
| 71 | const static u8 ethernet_mcast_dst_mac[] = { |
| 72 | 0x33, 0x33, 0x00, 0x0, 0x0, 0x0, |
| 73 | }; |
| 74 | |
| 75 | return (ethernet_mcast_dst_mac); |
| 76 | } |
| 77 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 78 | /** |
| 79 | * @brief build a rewrite string to use for sending packets of type 'link_type' |
| 80 | * to 'dst_address' |
| 81 | */ |
| 82 | u8 * |
| 83 | ethernet_build_rewrite (vnet_main_t * vnm, |
| 84 | u32 sw_if_index, |
| 85 | vnet_link_t link_type, const void *dst_address) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 86 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 87 | vnet_sw_interface_t *sub_sw = vnet_get_sw_interface (vnm, sw_if_index); |
| 88 | vnet_sw_interface_t *sup_sw = vnet_get_sup_sw_interface (vnm, sw_if_index); |
| 89 | vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index); |
| 90 | ethernet_main_t *em = ðernet_main; |
| 91 | ethernet_interface_t *ei; |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 92 | ethernet_header_t *h; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 93 | ethernet_type_t type; |
| 94 | uword n_bytes = sizeof (h[0]); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 95 | u8 *rewrite = NULL; |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 96 | u8 is_p2p = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 97 | |
Neale Ranns | 17ff3c1 | 2018-07-04 10:24:24 -0700 | [diff] [blame] | 98 | if ((sub_sw->type == VNET_SW_INTERFACE_TYPE_P2P) || |
| 99 | (sub_sw->type == VNET_SW_INTERFACE_TYPE_PIPE)) |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 100 | is_p2p = 1; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 101 | if (sub_sw != sup_sw) |
| 102 | { |
| 103 | if (sub_sw->sub.eth.flags.one_tag) |
| 104 | { |
| 105 | n_bytes += sizeof (ethernet_vlan_header_t); |
| 106 | } |
| 107 | else if (sub_sw->sub.eth.flags.two_tags) |
| 108 | { |
| 109 | n_bytes += 2 * (sizeof (ethernet_vlan_header_t)); |
| 110 | } |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 111 | else if (PREDICT_FALSE (is_p2p)) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 112 | { |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 113 | n_bytes = sizeof (ethernet_header_t); |
| 114 | } |
| 115 | if (PREDICT_FALSE (!is_p2p)) |
| 116 | { |
| 117 | // Check for encaps that are not supported for L3 interfaces |
| 118 | if (!(sub_sw->sub.eth.flags.exact_match) || |
| 119 | (sub_sw->sub.eth.flags.default_sub) || |
| 120 | (sub_sw->sub.eth.flags.outer_vlan_id_any) || |
| 121 | (sub_sw->sub.eth.flags.inner_vlan_id_any)) |
| 122 | { |
| 123 | return 0; |
| 124 | } |
| 125 | } |
| 126 | else |
| 127 | { |
| 128 | n_bytes = sizeof (ethernet_header_t); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 129 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 130 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 131 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 132 | switch (link_type) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 133 | { |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 134 | #define _(a,b) case VNET_LINK_##a: type = ETHERNET_TYPE_##b; break |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 135 | _(IP4, IP4); |
| 136 | _(IP6, IP6); |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 137 | _(MPLS, MPLS); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 138 | _(ARP, ARP); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 139 | #undef _ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 140 | default: |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 141 | return NULL; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 142 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 143 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 144 | vec_validate (rewrite, n_bytes - 1); |
| 145 | h = (ethernet_header_t *) rewrite; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 146 | ei = pool_elt_at_index (em->interfaces, hw->hw_instance); |
Damjan Marion | f1213b8 | 2016-03-13 02:22:06 +0100 | [diff] [blame] | 147 | clib_memcpy (h->src_address, ei->address, sizeof (h->src_address)); |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 148 | if (is_p2p) |
| 149 | { |
| 150 | clib_memcpy (h->dst_address, sub_sw->p2p.client_mac, |
| 151 | sizeof (h->dst_address)); |
| 152 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 153 | else |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 154 | { |
| 155 | if (dst_address) |
| 156 | clib_memcpy (h->dst_address, dst_address, sizeof (h->dst_address)); |
| 157 | else |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 158 | clib_memset (h->dst_address, ~0, sizeof (h->dst_address)); /* broadcast */ |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 159 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 160 | |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 161 | if (PREDICT_FALSE (!is_p2p) && sub_sw->sub.eth.flags.one_tag) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 162 | { |
| 163 | ethernet_vlan_header_t *outer = (void *) (h + 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 164 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 165 | h->type = sub_sw->sub.eth.flags.dot1ad ? |
| 166 | clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) : |
| 167 | clib_host_to_net_u16 (ETHERNET_TYPE_VLAN); |
| 168 | outer->priority_cfi_and_id = |
| 169 | clib_host_to_net_u16 (sub_sw->sub.eth.outer_vlan_id); |
| 170 | outer->type = clib_host_to_net_u16 (type); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 171 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 172 | } |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 173 | else if (PREDICT_FALSE (!is_p2p) && sub_sw->sub.eth.flags.two_tags) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 174 | { |
| 175 | ethernet_vlan_header_t *outer = (void *) (h + 1); |
| 176 | ethernet_vlan_header_t *inner = (void *) (outer + 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 177 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 178 | h->type = sub_sw->sub.eth.flags.dot1ad ? |
| 179 | clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) : |
| 180 | clib_host_to_net_u16 (ETHERNET_TYPE_VLAN); |
| 181 | outer->priority_cfi_and_id = |
| 182 | clib_host_to_net_u16 (sub_sw->sub.eth.outer_vlan_id); |
| 183 | outer->type = clib_host_to_net_u16 (ETHERNET_TYPE_VLAN); |
| 184 | inner->priority_cfi_and_id = |
| 185 | clib_host_to_net_u16 (sub_sw->sub.eth.inner_vlan_id); |
| 186 | inner->type = clib_host_to_net_u16 (type); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 187 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 188 | } |
| 189 | else |
| 190 | { |
| 191 | h->type = clib_host_to_net_u16 (type); |
| 192 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 193 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 194 | return (rewrite); |
| 195 | } |
| 196 | |
| 197 | void |
| 198 | ethernet_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai) |
| 199 | { |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 200 | vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index); |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 201 | |
Neale Ranns | 17ff3c1 | 2018-07-04 10:24:24 -0700 | [diff] [blame] | 202 | if ((si->type == VNET_SW_INTERFACE_TYPE_P2P) || |
| 203 | (si->type == VNET_SW_INTERFACE_TYPE_PIPE)) |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 204 | { |
| 205 | default_update_adjacency (vnm, sw_if_index, ai); |
| 206 | } |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 207 | else |
| 208 | { |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 209 | ip_adjacency_t *adj; |
| 210 | |
| 211 | adj = adj_get (ai); |
| 212 | |
| 213 | switch (adj->lookup_next_index) |
| 214 | { |
| 215 | case IP_LOOKUP_NEXT_GLEAN: |
| 216 | adj_glean_update_rewrite (ai); |
| 217 | break; |
| 218 | case IP_LOOKUP_NEXT_ARP: |
| 219 | ip_neighbor_update (vnm, ai); |
| 220 | break; |
| 221 | case IP_LOOKUP_NEXT_BCAST: |
| 222 | adj_nbr_update_rewrite (ai, |
| 223 | ADJ_NBR_REWRITE_FLAG_COMPLETE, |
| 224 | ethernet_build_rewrite |
| 225 | (vnm, |
| 226 | adj->rewrite_header.sw_if_index, |
| 227 | adj->ia_link, |
| 228 | VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST)); |
| 229 | break; |
| 230 | case IP_LOOKUP_NEXT_MCAST: |
| 231 | { |
| 232 | /* |
| 233 | * Construct a partial rewrite from the known ethernet mcast dest MAC |
| 234 | */ |
| 235 | u8 *rewrite; |
| 236 | u8 offset; |
| 237 | |
| 238 | rewrite = ethernet_build_rewrite |
| 239 | (vnm, |
| 240 | sw_if_index, |
| 241 | adj->ia_link, |
| 242 | (adj->ia_nh_proto == FIB_PROTOCOL_IP6 ? |
| 243 | ethernet_ip6_mcast_dst_addr () : |
| 244 | ethernet_ip4_mcast_dst_addr ())); |
| 245 | |
| 246 | /* |
| 247 | * Complete the remaining fields of the adj's rewrite to direct the |
| 248 | * complete of the rewrite at switch time by copying in the IP |
| 249 | * dst address's bytes. |
| 250 | * Ofset is 2 bytes into the destintation address. |
| 251 | */ |
| 252 | offset = vec_len (rewrite) - 2; |
| 253 | adj_mcast_update_rewrite (ai, rewrite, offset); |
| 254 | |
| 255 | break; |
| 256 | } |
| 257 | case IP_LOOKUP_NEXT_DROP: |
| 258 | case IP_LOOKUP_NEXT_PUNT: |
| 259 | case IP_LOOKUP_NEXT_LOCAL: |
| 260 | case IP_LOOKUP_NEXT_REWRITE: |
| 261 | case IP_LOOKUP_NEXT_MCAST_MIDCHAIN: |
| 262 | case IP_LOOKUP_NEXT_MIDCHAIN: |
| 263 | case IP_LOOKUP_NEXT_ICMP_ERROR: |
| 264 | case IP_LOOKUP_N_NEXT: |
| 265 | ASSERT (0); |
| 266 | break; |
| 267 | } |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 268 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 269 | } |
| 270 | |
Neale Ranns | 3be6b28 | 2016-12-20 14:24:01 +0000 | [diff] [blame] | 271 | static clib_error_t * |
Neale Ranns | 3b81a1e | 2018-09-06 09:50:26 -0700 | [diff] [blame] | 272 | ethernet_mac_change (vnet_hw_interface_t * hi, |
| 273 | const u8 * old_address, const u8 * mac_address) |
Neale Ranns | 3be6b28 | 2016-12-20 14:24:01 +0000 | [diff] [blame] | 274 | { |
| 275 | ethernet_interface_t *ei; |
| 276 | ethernet_main_t *em; |
| 277 | |
| 278 | em = ðernet_main; |
| 279 | ei = pool_elt_at_index (em->interfaces, hi->hw_instance); |
| 280 | |
| 281 | vec_validate (hi->hw_address, |
| 282 | STRUCT_SIZE_OF (ethernet_header_t, src_address) - 1); |
| 283 | clib_memcpy (hi->hw_address, mac_address, vec_len (hi->hw_address)); |
| 284 | |
| 285 | clib_memcpy (ei->address, (u8 *) mac_address, sizeof (ei->address)); |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 286 | |
| 287 | { |
| 288 | ethernet_address_change_ctx_t *cb; |
| 289 | vec_foreach (cb, em->address_change_callbacks) |
| 290 | cb->function (em, hi->sw_if_index, cb->function_opaque); |
| 291 | } |
Neale Ranns | 3be6b28 | 2016-12-20 14:24:01 +0000 | [diff] [blame] | 292 | |
| 293 | return (NULL); |
| 294 | } |
| 295 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 296 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 297 | VNET_HW_INTERFACE_CLASS (ethernet_hw_interface_class) = { |
| 298 | .name = "Ethernet", |
| 299 | .format_address = format_ethernet_address, |
| 300 | .format_header = format_ethernet_header_with_length, |
| 301 | .unformat_hw_address = unformat_ethernet_address, |
| 302 | .unformat_header = unformat_ethernet_header, |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 303 | .build_rewrite = ethernet_build_rewrite, |
| 304 | .update_adjacency = ethernet_update_adjacency, |
Neale Ranns | 3be6b28 | 2016-12-20 14:24:01 +0000 | [diff] [blame] | 305 | .mac_addr_change_function = ethernet_mac_change, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 306 | }; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 307 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 308 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 309 | uword |
| 310 | unformat_ethernet_interface (unformat_input_t * input, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 311 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 312 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
| 313 | u32 *result = va_arg (*args, u32 *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 314 | u32 hw_if_index; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 315 | ethernet_main_t *em = ðernet_main; |
| 316 | ethernet_interface_t *eif; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 317 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 318 | if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 319 | return 0; |
| 320 | |
| 321 | eif = ethernet_get_interface (em, hw_if_index); |
| 322 | if (eif) |
| 323 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 324 | *result = hw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 325 | return 1; |
| 326 | } |
| 327 | return 0; |
| 328 | } |
| 329 | |
| 330 | clib_error_t * |
| 331 | ethernet_register_interface (vnet_main_t * vnm, |
| 332 | u32 dev_class_index, |
| 333 | u32 dev_instance, |
Neale Ranns | 192b13f | 2019-03-15 02:16:20 -0700 | [diff] [blame] | 334 | const u8 * address, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 335 | u32 * hw_if_index_return, |
| 336 | ethernet_flag_change_function_t flag_change) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 337 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 338 | ethernet_main_t *em = ðernet_main; |
| 339 | ethernet_interface_t *ei; |
| 340 | vnet_hw_interface_t *hi; |
| 341 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 342 | u32 hw_if_index; |
| 343 | |
| 344 | pool_get (em->interfaces, ei); |
| 345 | ei->flag_change = flag_change; |
| 346 | |
| 347 | hw_if_index = vnet_register_interface |
| 348 | (vnm, |
| 349 | dev_class_index, dev_instance, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 350 | ethernet_hw_interface_class.index, ei - em->interfaces); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 351 | *hw_if_index_return = hw_if_index; |
| 352 | |
| 353 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 354 | |
| 355 | ethernet_setup_node (vnm->vlib_main, hi->output_node_index); |
| 356 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 357 | hi->min_packet_bytes = hi->min_supported_packet_bytes = |
| 358 | ETHERNET_MIN_PACKET_BYTES; |
| 359 | hi->max_packet_bytes = hi->max_supported_packet_bytes = |
| 360 | ETHERNET_MAX_PACKET_BYTES; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 361 | |
Dave Barach | 5fa4525 | 2020-02-26 10:27:08 -0500 | [diff] [blame] | 362 | /* Default ethernet MTU, 9000 unless set by ethernet_config see below */ |
| 363 | vnet_sw_interface_set_mtu (vnm, hi->sw_if_index, em->default_mtu); |
Damjan Marion | fe7d4a2 | 2018-04-13 19:43:39 +0200 | [diff] [blame] | 364 | |
Damjan Marion | f1213b8 | 2016-03-13 02:22:06 +0100 | [diff] [blame] | 365 | clib_memcpy (ei->address, address, sizeof (ei->address)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 366 | vec_add (hi->hw_address, address, sizeof (ei->address)); |
Benoît Ganne | 9fb6d40 | 2019-04-15 15:28:21 +0200 | [diff] [blame] | 367 | CLIB_MEM_UNPOISON (hi->hw_address, 8); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 368 | |
| 369 | if (error) |
| 370 | { |
| 371 | pool_put (em->interfaces, ei); |
| 372 | return error; |
| 373 | } |
| 374 | return error; |
| 375 | } |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 376 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 377 | void |
| 378 | ethernet_delete_interface (vnet_main_t * vnm, u32 hw_if_index) |
| 379 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 380 | ethernet_main_t *em = ðernet_main; |
| 381 | ethernet_interface_t *ei; |
| 382 | vnet_hw_interface_t *hi; |
| 383 | main_intf_t *main_intf; |
| 384 | vlan_table_t *vlan_table; |
| 385 | u32 idx; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 386 | |
| 387 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 388 | ei = pool_elt_at_index (em->interfaces, hi->hw_instance); |
| 389 | |
| 390 | /* Delete vlan mapping table for dot1q and dot1ad. */ |
| 391 | main_intf = vec_elt_at_index (em->main_intfs, hi->hw_if_index); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 392 | if (main_intf->dot1q_vlans) |
| 393 | { |
| 394 | vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1q_vlans); |
| 395 | for (idx = 0; idx < ETHERNET_N_VLAN; idx++) |
| 396 | { |
| 397 | if (vlan_table->vlans[idx].qinqs) |
| 398 | { |
| 399 | pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs); |
John Lo | d63abff | 2018-10-04 16:22:21 -0400 | [diff] [blame] | 400 | vlan_table->vlans[idx].qinqs = 0; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 401 | } |
| 402 | } |
| 403 | pool_put_index (em->vlan_pool, main_intf->dot1q_vlans); |
Steve Shin | 8a3e575 | 2018-02-20 11:38:34 -0800 | [diff] [blame] | 404 | main_intf->dot1q_vlans = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 405 | } |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 406 | if (main_intf->dot1ad_vlans) |
| 407 | { |
| 408 | vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1ad_vlans); |
| 409 | for (idx = 0; idx < ETHERNET_N_VLAN; idx++) |
| 410 | { |
| 411 | if (vlan_table->vlans[idx].qinqs) |
| 412 | { |
| 413 | pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs); |
John Lo | d63abff | 2018-10-04 16:22:21 -0400 | [diff] [blame] | 414 | vlan_table->vlans[idx].qinqs = 0; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 415 | } |
| 416 | } |
| 417 | pool_put_index (em->vlan_pool, main_intf->dot1ad_vlans); |
Steve Shin | 8a3e575 | 2018-02-20 11:38:34 -0800 | [diff] [blame] | 418 | main_intf->dot1ad_vlans = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 419 | } |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 420 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 421 | vnet_delete_hw_interface (vnm, hw_if_index); |
| 422 | pool_put (em->interfaces, ei); |
| 423 | } |
| 424 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 425 | u32 |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 426 | ethernet_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags) |
| 427 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 428 | ethernet_main_t *em = ðernet_main; |
| 429 | vnet_hw_interface_t *hi; |
| 430 | ethernet_interface_t *ei; |
| 431 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 432 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 433 | |
| 434 | ASSERT (hi->hw_class_index == ethernet_hw_interface_class.index); |
| 435 | |
| 436 | ei = pool_elt_at_index (em->interfaces, hi->hw_instance); |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 437 | ei->flags = flags; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 438 | if (ei->flag_change) |
| 439 | return ei->flag_change (vnm, hi, flags); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 440 | return (u32) ~ 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 441 | } |
| 442 | |
Dave Barach | 635ec3b | 2018-07-13 20:12:45 -0400 | [diff] [blame] | 443 | /** |
| 444 | * Echo packets back to ethernet/l2-input. |
Dave Barach | 635ec3b | 2018-07-13 20:12:45 -0400 | [diff] [blame] | 445 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 446 | static uword |
| 447 | simulated_ethernet_interface_tx (vlib_main_t * vm, |
Dave Barach | 635ec3b | 2018-07-13 20:12:45 -0400 | [diff] [blame] | 448 | vlib_node_runtime_t * |
| 449 | node, vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 450 | { |
Dave Barach | 78451a6 | 2018-07-21 09:25:00 -0400 | [diff] [blame] | 451 | u32 n_left_from, *from; |
| 452 | u32 next_index = 0; |
| 453 | u32 n_bytes; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 454 | u32 thread_index = vm->thread_index; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 455 | vnet_main_t *vnm = vnet_get_main (); |
| 456 | vnet_interface_main_t *im = &vnm->interface_main; |
Dave Barach | 635ec3b | 2018-07-13 20:12:45 -0400 | [diff] [blame] | 457 | l2_input_config_t *config; |
Dave Barach | 78451a6 | 2018-07-21 09:25:00 -0400 | [diff] [blame] | 458 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b; |
| 459 | u16 nexts[VLIB_FRAME_SIZE], *next; |
| 460 | u32 new_rx_sw_if_index = ~0; |
| 461 | u32 new_tx_sw_if_index = ~0; |
John Lo | 405e41b | 2016-04-23 15:14:12 -0400 | [diff] [blame] | 462 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 463 | n_left_from = frame->n_vectors; |
Damjan Marion | a3d5986 | 2018-11-10 10:23:00 +0100 | [diff] [blame] | 464 | from = vlib_frame_vector_args (frame); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 465 | |
Dave Barach | 78451a6 | 2018-07-21 09:25:00 -0400 | [diff] [blame] | 466 | vlib_get_buffers (vm, from, bufs, n_left_from); |
| 467 | b = bufs; |
| 468 | next = nexts; |
Dave Barach | 635ec3b | 2018-07-13 20:12:45 -0400 | [diff] [blame] | 469 | |
Dave Barach | 78451a6 | 2018-07-21 09:25:00 -0400 | [diff] [blame] | 470 | /* Ordinarily, this is the only config lookup. */ |
| 471 | config = l2input_intf_config (vnet_buffer (b[0])->sw_if_index[VLIB_TX]); |
| 472 | next_index = |
Dave Barach | 635ec3b | 2018-07-13 20:12:45 -0400 | [diff] [blame] | 473 | config->bridge ? VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT : |
| 474 | VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT; |
Dave Barach | 78451a6 | 2018-07-21 09:25:00 -0400 | [diff] [blame] | 475 | new_tx_sw_if_index = config->bvi ? L2INPUT_BVI : ~0; |
| 476 | new_rx_sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_TX]; |
Dave Barach | 635ec3b | 2018-07-13 20:12:45 -0400 | [diff] [blame] | 477 | |
Dave Barach | 78451a6 | 2018-07-21 09:25:00 -0400 | [diff] [blame] | 478 | while (n_left_from >= 4) |
| 479 | { |
| 480 | u32 sw_if_index0, sw_if_index1, sw_if_index2, sw_if_index3; |
| 481 | u32 not_all_match_config; |
Dave Barach | 635ec3b | 2018-07-13 20:12:45 -0400 | [diff] [blame] | 482 | |
Dave Barach | 78451a6 | 2018-07-21 09:25:00 -0400 | [diff] [blame] | 483 | /* Prefetch next iteration. */ |
| 484 | if (PREDICT_TRUE (n_left_from >= 8)) |
| 485 | { |
| 486 | vlib_prefetch_buffer_header (b[4], STORE); |
| 487 | vlib_prefetch_buffer_header (b[5], STORE); |
| 488 | vlib_prefetch_buffer_header (b[6], STORE); |
| 489 | vlib_prefetch_buffer_header (b[7], STORE); |
| 490 | } |
Dave Barach | 635ec3b | 2018-07-13 20:12:45 -0400 | [diff] [blame] | 491 | |
Dave Barach | 78451a6 | 2018-07-21 09:25:00 -0400 | [diff] [blame] | 492 | /* Make sure all pkts were transmitted on the same (loop) intfc */ |
| 493 | sw_if_index0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX]; |
| 494 | sw_if_index1 = vnet_buffer (b[1])->sw_if_index[VLIB_TX]; |
| 495 | sw_if_index2 = vnet_buffer (b[2])->sw_if_index[VLIB_TX]; |
| 496 | sw_if_index3 = vnet_buffer (b[3])->sw_if_index[VLIB_TX]; |
Dave Barach | 635ec3b | 2018-07-13 20:12:45 -0400 | [diff] [blame] | 497 | |
Dave Barach | 78451a6 | 2018-07-21 09:25:00 -0400 | [diff] [blame] | 498 | not_all_match_config = (sw_if_index0 ^ sw_if_index1) |
| 499 | ^ (sw_if_index2 ^ sw_if_index3); |
| 500 | not_all_match_config += sw_if_index0 ^ new_rx_sw_if_index; |
| 501 | |
| 502 | /* Speed path / expected case: all pkts on the same intfc */ |
| 503 | if (PREDICT_TRUE (not_all_match_config == 0)) |
| 504 | { |
| 505 | next[0] = next_index; |
| 506 | next[1] = next_index; |
| 507 | next[2] = next_index; |
| 508 | next[3] = next_index; |
| 509 | vnet_buffer (b[0])->sw_if_index[VLIB_RX] = new_rx_sw_if_index; |
| 510 | vnet_buffer (b[1])->sw_if_index[VLIB_RX] = new_rx_sw_if_index; |
| 511 | vnet_buffer (b[2])->sw_if_index[VLIB_RX] = new_rx_sw_if_index; |
| 512 | vnet_buffer (b[3])->sw_if_index[VLIB_RX] = new_rx_sw_if_index; |
| 513 | vnet_buffer (b[0])->sw_if_index[VLIB_TX] = new_tx_sw_if_index; |
| 514 | vnet_buffer (b[1])->sw_if_index[VLIB_TX] = new_tx_sw_if_index; |
| 515 | vnet_buffer (b[2])->sw_if_index[VLIB_TX] = new_tx_sw_if_index; |
| 516 | vnet_buffer (b[3])->sw_if_index[VLIB_TX] = new_tx_sw_if_index; |
| 517 | n_bytes = vlib_buffer_length_in_chain (vm, b[0]); |
| 518 | n_bytes += vlib_buffer_length_in_chain (vm, b[1]); |
| 519 | n_bytes += vlib_buffer_length_in_chain (vm, b[2]); |
| 520 | n_bytes += vlib_buffer_length_in_chain (vm, b[3]); |
| 521 | |
| 522 | if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT) |
| 523 | { |
| 524 | vnet_update_l2_len (b[0]); |
| 525 | vnet_update_l2_len (b[1]); |
| 526 | vnet_update_l2_len (b[2]); |
| 527 | vnet_update_l2_len (b[3]); |
| 528 | } |
| 529 | |
| 530 | /* increment TX interface stat */ |
| 531 | vlib_increment_combined_counter (im->combined_sw_if_counters + |
| 532 | VNET_INTERFACE_COUNTER_TX, |
| 533 | thread_index, new_rx_sw_if_index, |
| 534 | 4 /* pkts */ , n_bytes); |
| 535 | b += 4; |
| 536 | next += 4; |
| 537 | n_left_from -= 4; |
| 538 | continue; |
| 539 | } |
| 540 | |
| 541 | /* |
| 542 | * Slow path: we know that at least one of the pkts |
| 543 | * was transmitted on a different sw_if_index, so |
| 544 | * check each sw_if_index against the cached data and proceed |
| 545 | * accordingly. |
| 546 | * |
| 547 | * This shouldn't happen, but code can (and does) bypass the |
| 548 | * per-interface output node, so deal with it. |
| 549 | */ |
| 550 | if (PREDICT_FALSE (vnet_buffer (b[0])->sw_if_index[VLIB_TX] |
| 551 | != new_rx_sw_if_index)) |
| 552 | { |
| 553 | config = l2input_intf_config |
| 554 | (vnet_buffer (b[0])->sw_if_index[VLIB_TX]); |
| 555 | next_index = |
| 556 | config->bridge ? VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT : |
| 557 | VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT; |
| 558 | new_tx_sw_if_index = config->bvi ? L2INPUT_BVI : ~0; |
| 559 | new_rx_sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_TX]; |
| 560 | } |
| 561 | next[0] = next_index; |
| 562 | vnet_buffer (b[0])->sw_if_index[VLIB_RX] = new_rx_sw_if_index; |
| 563 | vnet_buffer (b[0])->sw_if_index[VLIB_TX] = new_tx_sw_if_index; |
| 564 | n_bytes = vlib_buffer_length_in_chain (vm, b[0]); |
| 565 | if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT) |
| 566 | vnet_update_l2_len (b[0]); |
| 567 | |
| 568 | vlib_increment_combined_counter (im->combined_sw_if_counters + |
| 569 | VNET_INTERFACE_COUNTER_TX, |
| 570 | thread_index, new_rx_sw_if_index, |
| 571 | 1 /* pkts */ , n_bytes); |
| 572 | |
| 573 | if (PREDICT_FALSE (vnet_buffer (b[1])->sw_if_index[VLIB_TX] |
| 574 | != new_rx_sw_if_index)) |
| 575 | { |
| 576 | config = l2input_intf_config |
| 577 | (vnet_buffer (b[1])->sw_if_index[VLIB_TX]); |
| 578 | next_index = |
| 579 | config->bridge ? VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT : |
| 580 | VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT; |
| 581 | new_rx_sw_if_index = vnet_buffer (b[1])->sw_if_index[VLIB_TX]; |
| 582 | new_tx_sw_if_index = config->bvi ? L2INPUT_BVI : ~0; |
| 583 | } |
| 584 | next[1] = next_index; |
| 585 | vnet_buffer (b[1])->sw_if_index[VLIB_RX] = new_rx_sw_if_index; |
| 586 | vnet_buffer (b[1])->sw_if_index[VLIB_TX] = new_tx_sw_if_index; |
| 587 | n_bytes = vlib_buffer_length_in_chain (vm, b[1]); |
| 588 | if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT) |
| 589 | vnet_update_l2_len (b[1]); |
| 590 | |
| 591 | vlib_increment_combined_counter (im->combined_sw_if_counters + |
| 592 | VNET_INTERFACE_COUNTER_TX, |
| 593 | thread_index, new_rx_sw_if_index, |
| 594 | 1 /* pkts */ , n_bytes); |
| 595 | |
| 596 | if (PREDICT_FALSE (vnet_buffer (b[2])->sw_if_index[VLIB_TX] |
| 597 | != new_rx_sw_if_index)) |
| 598 | { |
| 599 | config = l2input_intf_config |
| 600 | (vnet_buffer (b[2])->sw_if_index[VLIB_TX]); |
| 601 | next_index = |
| 602 | config->bridge ? VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT : |
| 603 | VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT; |
| 604 | new_rx_sw_if_index = vnet_buffer (b[2])->sw_if_index[VLIB_TX]; |
| 605 | new_tx_sw_if_index = config->bvi ? L2INPUT_BVI : ~0; |
| 606 | } |
| 607 | next[2] = next_index; |
| 608 | vnet_buffer (b[2])->sw_if_index[VLIB_RX] = new_rx_sw_if_index; |
| 609 | vnet_buffer (b[2])->sw_if_index[VLIB_TX] = new_tx_sw_if_index; |
| 610 | n_bytes = vlib_buffer_length_in_chain (vm, b[2]); |
| 611 | if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT) |
| 612 | vnet_update_l2_len (b[2]); |
| 613 | |
| 614 | vlib_increment_combined_counter (im->combined_sw_if_counters + |
| 615 | VNET_INTERFACE_COUNTER_TX, |
| 616 | thread_index, new_rx_sw_if_index, |
| 617 | 1 /* pkts */ , n_bytes); |
| 618 | |
| 619 | if (PREDICT_FALSE (vnet_buffer (b[3])->sw_if_index[VLIB_TX] |
| 620 | != new_rx_sw_if_index)) |
| 621 | { |
| 622 | config = l2input_intf_config |
| 623 | (vnet_buffer (b[3])->sw_if_index[VLIB_TX]); |
| 624 | next_index = |
| 625 | config->bridge ? VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT : |
| 626 | VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT; |
| 627 | new_rx_sw_if_index = vnet_buffer (b[3])->sw_if_index[VLIB_TX]; |
| 628 | new_tx_sw_if_index = config->bvi ? L2INPUT_BVI : ~0; |
| 629 | } |
| 630 | next[3] = next_index; |
| 631 | vnet_buffer (b[3])->sw_if_index[VLIB_RX] = new_rx_sw_if_index; |
| 632 | vnet_buffer (b[3])->sw_if_index[VLIB_TX] = new_tx_sw_if_index; |
| 633 | n_bytes = vlib_buffer_length_in_chain (vm, b[3]); |
| 634 | if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT) |
| 635 | vnet_update_l2_len (b[3]); |
| 636 | |
| 637 | vlib_increment_combined_counter (im->combined_sw_if_counters + |
| 638 | VNET_INTERFACE_COUNTER_TX, |
| 639 | thread_index, new_rx_sw_if_index, |
| 640 | 1 /* pkts */ , n_bytes); |
| 641 | b += 4; |
| 642 | next += 4; |
| 643 | n_left_from -= 4; |
| 644 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 645 | while (n_left_from > 0) |
| 646 | { |
Dave Barach | 78451a6 | 2018-07-21 09:25:00 -0400 | [diff] [blame] | 647 | if (PREDICT_FALSE (vnet_buffer (b[0])->sw_if_index[VLIB_TX] |
| 648 | != new_rx_sw_if_index)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 649 | { |
Dave Barach | 78451a6 | 2018-07-21 09:25:00 -0400 | [diff] [blame] | 650 | config = l2input_intf_config |
| 651 | (vnet_buffer (b[0])->sw_if_index[VLIB_TX]); |
| 652 | next_index = |
| 653 | config->bridge ? VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT : |
| 654 | VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT; |
| 655 | new_tx_sw_if_index = config->bvi ? L2INPUT_BVI : ~0; |
| 656 | new_rx_sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_TX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 657 | } |
Dave Barach | 78451a6 | 2018-07-21 09:25:00 -0400 | [diff] [blame] | 658 | next[0] = next_index; |
| 659 | vnet_buffer (b[0])->sw_if_index[VLIB_RX] = new_rx_sw_if_index; |
| 660 | vnet_buffer (b[0])->sw_if_index[VLIB_TX] = new_tx_sw_if_index; |
| 661 | n_bytes = vlib_buffer_length_in_chain (vm, b[0]); |
| 662 | if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT) |
| 663 | vnet_update_l2_len (b[0]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 664 | |
Dave Barach | 78451a6 | 2018-07-21 09:25:00 -0400 | [diff] [blame] | 665 | vlib_increment_combined_counter (im->combined_sw_if_counters + |
| 666 | VNET_INTERFACE_COUNTER_TX, |
| 667 | thread_index, new_rx_sw_if_index, |
| 668 | 1 /* pkts */ , n_bytes); |
| 669 | b += 1; |
| 670 | next += 1; |
| 671 | n_left_from -= 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 672 | } |
| 673 | |
Dave Barach | 78451a6 | 2018-07-21 09:25:00 -0400 | [diff] [blame] | 674 | vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors); |
Dave Barach | 635ec3b | 2018-07-13 20:12:45 -0400 | [diff] [blame] | 675 | |
| 676 | return frame->n_vectors; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 677 | } |
| 678 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 679 | static u8 * |
| 680 | format_simulated_ethernet_name (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 681 | { |
| 682 | u32 dev_instance = va_arg (*args, u32); |
| 683 | return format (s, "loop%d", dev_instance); |
| 684 | } |
| 685 | |
Pierre Pfister | f00f91a | 2016-03-09 18:22:32 +0000 | [diff] [blame] | 686 | static clib_error_t * |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 687 | simulated_ethernet_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, |
| 688 | u32 flags) |
Pierre Pfister | f00f91a | 2016-03-09 18:22:32 +0000 | [diff] [blame] | 689 | { |
| 690 | u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 691 | VNET_HW_INTERFACE_FLAG_LINK_UP : 0; |
Pierre Pfister | f00f91a | 2016-03-09 18:22:32 +0000 | [diff] [blame] | 692 | vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags); |
| 693 | return 0; |
| 694 | } |
| 695 | |
Neale Ranns | 3b81a1e | 2018-09-06 09:50:26 -0700 | [diff] [blame] | 696 | static clib_error_t * |
| 697 | simulated_ethernet_mac_change (vnet_hw_interface_t * hi, |
| 698 | const u8 * old_address, const u8 * mac_address) |
| 699 | { |
| 700 | l2input_interface_mac_change (hi->sw_if_index, old_address, mac_address); |
| 701 | |
| 702 | return (NULL); |
| 703 | } |
| 704 | |
| 705 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 706 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 707 | VNET_DEVICE_CLASS (ethernet_simulated_device_class) = { |
| 708 | .name = "Loopback", |
| 709 | .format_device_name = format_simulated_ethernet_name, |
| 710 | .tx_function = simulated_ethernet_interface_tx, |
Pierre Pfister | f00f91a | 2016-03-09 18:22:32 +0000 | [diff] [blame] | 711 | .admin_up_down_function = simulated_ethernet_admin_up_down, |
Neale Ranns | 3b81a1e | 2018-09-06 09:50:26 -0700 | [diff] [blame] | 712 | .mac_addr_change_function = simulated_ethernet_mac_change, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 713 | }; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 714 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 715 | |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 716 | /* |
| 717 | * Maintain a bitmap of allocated loopback instance numbers. |
| 718 | */ |
| 719 | #define LOOPBACK_MAX_INSTANCE (16 * 1024) |
| 720 | |
| 721 | static u32 |
| 722 | loopback_instance_alloc (u8 is_specified, u32 want) |
| 723 | { |
| 724 | ethernet_main_t *em = ðernet_main; |
| 725 | |
| 726 | /* |
| 727 | * Check for dynamically allocaetd instance number. |
| 728 | */ |
| 729 | if (!is_specified) |
| 730 | { |
| 731 | u32 bit; |
| 732 | |
| 733 | bit = clib_bitmap_first_clear (em->bm_loopback_instances); |
| 734 | if (bit >= LOOPBACK_MAX_INSTANCE) |
| 735 | { |
| 736 | return ~0; |
| 737 | } |
| 738 | em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances, |
| 739 | bit, 1); |
| 740 | return bit; |
| 741 | } |
| 742 | |
| 743 | /* |
| 744 | * In range? |
| 745 | */ |
| 746 | if (want >= LOOPBACK_MAX_INSTANCE) |
| 747 | { |
| 748 | return ~0; |
| 749 | } |
| 750 | |
| 751 | /* |
| 752 | * Already in use? |
| 753 | */ |
| 754 | if (clib_bitmap_get (em->bm_loopback_instances, want)) |
| 755 | { |
| 756 | return ~0; |
| 757 | } |
| 758 | |
| 759 | /* |
| 760 | * Grant allocation request. |
| 761 | */ |
| 762 | em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances, |
| 763 | want, 1); |
| 764 | |
| 765 | return want; |
| 766 | } |
| 767 | |
| 768 | static int |
| 769 | loopback_instance_free (u32 instance) |
| 770 | { |
| 771 | ethernet_main_t *em = ðernet_main; |
| 772 | |
| 773 | if (instance >= LOOPBACK_MAX_INSTANCE) |
| 774 | { |
| 775 | return -1; |
| 776 | } |
| 777 | |
| 778 | if (clib_bitmap_get (em->bm_loopback_instances, instance) == 0) |
| 779 | { |
| 780 | return -1; |
| 781 | } |
| 782 | |
| 783 | em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances, |
| 784 | instance, 0); |
| 785 | return 0; |
| 786 | } |
| 787 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 788 | int |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 789 | vnet_create_loopback_interface (u32 * sw_if_indexp, u8 * mac_address, |
| 790 | u8 is_specified, u32 user_instance) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 791 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 792 | vnet_main_t *vnm = vnet_get_main (); |
| 793 | vlib_main_t *vm = vlib_get_main (); |
| 794 | clib_error_t *error; |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 795 | u32 instance; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 796 | u8 address[6]; |
| 797 | u32 hw_if_index; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 798 | vnet_hw_interface_t *hw_if; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 799 | u32 slot; |
| 800 | int rv = 0; |
| 801 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 802 | ASSERT (sw_if_indexp); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 803 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 804 | *sw_if_indexp = (u32) ~ 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 805 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 806 | clib_memset (address, 0, sizeof (address)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 807 | |
| 808 | /* |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 809 | * Allocate a loopback instance. Either select on dynamically |
| 810 | * or try to use the desired user_instance number. |
| 811 | */ |
| 812 | instance = loopback_instance_alloc (is_specified, user_instance); |
| 813 | if (instance == ~0) |
| 814 | { |
| 815 | return VNET_API_ERROR_INVALID_REGISTRATION; |
| 816 | } |
| 817 | |
| 818 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 819 | * Default MAC address (dead:0000:0000 + instance) is allocated |
| 820 | * if zero mac_address is configured. Otherwise, user-configurable MAC |
| 821 | * address is programmed on the loopback interface. |
| 822 | */ |
| 823 | if (memcmp (address, mac_address, sizeof (address))) |
Damjan Marion | f1213b8 | 2016-03-13 02:22:06 +0100 | [diff] [blame] | 824 | clib_memcpy (address, mac_address, sizeof (address)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 825 | else |
| 826 | { |
| 827 | address[0] = 0xde; |
| 828 | address[1] = 0xad; |
| 829 | address[5] = instance; |
| 830 | } |
| 831 | |
| 832 | error = ethernet_register_interface |
| 833 | (vnm, |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 834 | ethernet_simulated_device_class.index, instance, address, &hw_if_index, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 835 | /* flag change */ 0); |
| 836 | |
| 837 | if (error) |
| 838 | { |
| 839 | rv = VNET_API_ERROR_INVALID_REGISTRATION; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 840 | clib_error_report (error); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 841 | return rv; |
| 842 | } |
| 843 | |
| 844 | hw_if = vnet_get_hw_interface (vnm, hw_if_index); |
| 845 | slot = vlib_node_add_named_next_with_slot |
| 846 | (vm, hw_if->tx_node_index, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 847 | "ethernet-input", VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 848 | ASSERT (slot == VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT); |
| 849 | |
Dave Barach | 635ec3b | 2018-07-13 20:12:45 -0400 | [diff] [blame] | 850 | slot = vlib_node_add_named_next_with_slot |
| 851 | (vm, hw_if->tx_node_index, |
| 852 | "l2-input", VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT); |
| 853 | ASSERT (slot == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT); |
| 854 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 855 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 856 | vnet_sw_interface_t *si = vnet_get_hw_sw_interface (vnm, hw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 857 | *sw_if_indexp = si->sw_if_index; |
Neale Ranns | 87dad11 | 2018-04-09 01:53:01 -0700 | [diff] [blame] | 858 | |
| 859 | /* By default don't flood to loopbacks, as packets just keep |
| 860 | * coming back ... If this loopback becomes a BVI, we'll change it */ |
| 861 | si->flood_class = VNET_FLOOD_CLASS_NO_FLOOD; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 862 | } |
| 863 | |
| 864 | return 0; |
| 865 | } |
| 866 | |
| 867 | static clib_error_t * |
| 868 | create_simulated_ethernet_interfaces (vlib_main_t * vm, |
| 869 | unformat_input_t * input, |
| 870 | vlib_cli_command_t * cmd) |
| 871 | { |
| 872 | int rv; |
| 873 | u32 sw_if_index; |
| 874 | u8 mac_address[6]; |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 875 | u8 is_specified = 0; |
| 876 | u32 user_instance = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 877 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 878 | clib_memset (mac_address, 0, sizeof (mac_address)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 879 | |
| 880 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 881 | { |
| 882 | if (unformat (input, "mac %U", unformat_ethernet_address, mac_address)) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 883 | ; |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 884 | if (unformat (input, "instance %d", &user_instance)) |
| 885 | is_specified = 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 886 | else |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 887 | break; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 888 | } |
| 889 | |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 890 | rv = vnet_create_loopback_interface (&sw_if_index, mac_address, |
| 891 | is_specified, user_instance); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 892 | |
| 893 | if (rv) |
| 894 | return clib_error_return (0, "vnet_create_loopback_interface failed"); |
| 895 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 896 | vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main (), |
| 897 | sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 898 | return 0; |
| 899 | } |
| 900 | |
Billy McFall | 2d085d9 | 2016-09-13 21:47:55 -0400 | [diff] [blame] | 901 | /*? |
| 902 | * Create a loopback interface. Optionally, a MAC Address can be |
| 903 | * provided. If not provided, de:ad:00:00:00:<loopId> will be used. |
| 904 | * |
| 905 | * @cliexpar |
| 906 | * The following two command syntaxes are equivalent: |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 907 | * @cliexcmd{loopback create-interface [mac <mac-addr>] [instance <instance>]} |
| 908 | * @cliexcmd{create loopback interface [mac <mac-addr>] [instance <instance>]} |
Billy McFall | 2d085d9 | 2016-09-13 21:47:55 -0400 | [diff] [blame] | 909 | * Example of how to create a loopback interface: |
| 910 | * @cliexcmd{loopback create-interface} |
| 911 | ?*/ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 912 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 913 | VLIB_CLI_COMMAND (create_simulated_ethernet_interface_command, static) = { |
| 914 | .path = "loopback create-interface", |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 915 | .short_help = "loopback create-interface [mac <mac-addr>] [instance <instance>]", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 916 | .function = create_simulated_ethernet_interfaces, |
| 917 | }; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 918 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 919 | |
Billy McFall | 2d085d9 | 2016-09-13 21:47:55 -0400 | [diff] [blame] | 920 | /*? |
| 921 | * Create a loopback interface. Optionally, a MAC Address can be |
| 922 | * provided. If not provided, de:ad:00:00:00:<loopId> will be used. |
| 923 | * |
| 924 | * @cliexpar |
| 925 | * The following two command syntaxes are equivalent: |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 926 | * @cliexcmd{loopback create-interface [mac <mac-addr>] [instance <instance>]} |
| 927 | * @cliexcmd{create loopback interface [mac <mac-addr>] [instance <instance>]} |
Billy McFall | 2d085d9 | 2016-09-13 21:47:55 -0400 | [diff] [blame] | 928 | * Example of how to create a loopback interface: |
| 929 | * @cliexcmd{create loopback interface} |
| 930 | ?*/ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 931 | /* *INDENT-OFF* */ |
Alpesh Patel | 370a24e | 2016-04-08 07:27:37 -0700 | [diff] [blame] | 932 | VLIB_CLI_COMMAND (create_loopback_interface_command, static) = { |
| 933 | .path = "create loopback interface", |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 934 | .short_help = "create loopback interface [mac <mac-addr>] [instance <instance>]", |
Alpesh Patel | 370a24e | 2016-04-08 07:27:37 -0700 | [diff] [blame] | 935 | .function = create_simulated_ethernet_interfaces, |
| 936 | }; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 937 | /* *INDENT-ON* */ |
Alpesh Patel | 370a24e | 2016-04-08 07:27:37 -0700 | [diff] [blame] | 938 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 939 | ethernet_interface_t * |
| 940 | ethernet_get_interface (ethernet_main_t * em, u32 hw_if_index) |
| 941 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 942 | vnet_hw_interface_t *i = |
| 943 | vnet_get_hw_interface (vnet_get_main (), hw_if_index); |
| 944 | return (i->hw_class_index == |
| 945 | ethernet_hw_interface_class. |
| 946 | index ? pool_elt_at_index (em->interfaces, i->hw_instance) : 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 947 | } |
| 948 | |
Matthew G Smith | d459bf3 | 2019-09-04 15:01:04 -0500 | [diff] [blame] | 949 | mac_address_t * |
| 950 | ethernet_interface_add_del_address (ethernet_main_t * em, |
| 951 | u32 hw_if_index, const u8 * address, |
| 952 | u8 is_add) |
| 953 | { |
| 954 | ethernet_interface_t *ei = ethernet_get_interface (em, hw_if_index); |
| 955 | mac_address_t *if_addr = 0; |
| 956 | |
| 957 | /* return if there is not an ethernet interface for this hw interface */ |
| 958 | if (!ei) |
| 959 | return 0; |
| 960 | |
| 961 | /* determine whether the address is configured on the interface */ |
| 962 | vec_foreach (if_addr, ei->secondary_addrs) |
| 963 | { |
| 964 | if (!ethernet_mac_address_equal (if_addr->bytes, address)) |
| 965 | continue; |
| 966 | |
| 967 | break; |
| 968 | } |
| 969 | |
| 970 | if (if_addr && vec_is_member (ei->secondary_addrs, if_addr)) |
| 971 | { |
| 972 | /* delete found address */ |
| 973 | if (!is_add) |
| 974 | { |
| 975 | vec_delete (ei->secondary_addrs, 1, if_addr - ei->secondary_addrs); |
| 976 | if_addr = 0; |
| 977 | } |
| 978 | /* address already found, so nothing needs to be done if adding */ |
| 979 | } |
| 980 | else |
| 981 | { |
| 982 | /* if_addr could be 0 or past the end of the vector. reset to 0 */ |
| 983 | if_addr = 0; |
| 984 | |
| 985 | /* add new address */ |
| 986 | if (is_add) |
| 987 | { |
| 988 | vec_add2 (ei->secondary_addrs, if_addr, 1); |
| 989 | clib_memcpy (&if_addr->bytes, address, sizeof (if_addr->bytes)); |
| 990 | } |
| 991 | } |
| 992 | |
| 993 | return if_addr; |
| 994 | } |
| 995 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 996 | int |
| 997 | vnet_delete_loopback_interface (u32 sw_if_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 998 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 999 | vnet_main_t *vnm = vnet_get_main (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1000 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1001 | if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1002 | return VNET_API_ERROR_INVALID_SW_IF_INDEX; |
| 1003 | |
Eyal Bari | b52c034 | 2018-07-16 19:18:56 +0300 | [diff] [blame] | 1004 | vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index); |
| 1005 | if (hw == 0 || hw->dev_class_index != ethernet_simulated_device_class.index) |
| 1006 | return VNET_API_ERROR_INVALID_SW_IF_INDEX; |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 1007 | |
Eyal Bari | b52c034 | 2018-07-16 19:18:56 +0300 | [diff] [blame] | 1008 | if (loopback_instance_free (hw->dev_instance) < 0) |
| 1009 | return VNET_API_ERROR_INVALID_SW_IF_INDEX; |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 1010 | |
Eyal Bari | b52c034 | 2018-07-16 19:18:56 +0300 | [diff] [blame] | 1011 | ethernet_delete_interface (vnm, hw->hw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1012 | |
| 1013 | return 0; |
| 1014 | } |
| 1015 | |
Pavel Kotucek | d85590a | 2016-08-26 13:35:40 +0200 | [diff] [blame] | 1016 | int |
Neale Ranns | 669f4e3 | 2019-10-28 07:56:15 -0700 | [diff] [blame] | 1017 | vnet_create_sub_interface (u32 sw_if_index, u32 id, |
| 1018 | u32 flags, u16 inner_vlan_id, u16 outer_vlan_id, |
| 1019 | u32 * sub_sw_if_index) |
| 1020 | { |
| 1021 | vnet_main_t *vnm = vnet_get_main (); |
| 1022 | vnet_interface_main_t *im = &vnm->interface_main; |
| 1023 | vnet_hw_interface_t *hi; |
| 1024 | u64 sup_and_sub_key = ((u64) (sw_if_index) << 32) | (u64) id; |
| 1025 | vnet_sw_interface_t template; |
| 1026 | uword *p; |
| 1027 | u64 *kp; |
| 1028 | |
| 1029 | hi = vnet_get_sup_hw_interface (vnm, sw_if_index); |
| 1030 | |
| 1031 | p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key); |
| 1032 | if (p) |
| 1033 | { |
| 1034 | return (VNET_API_ERROR_VLAN_ALREADY_EXISTS); |
| 1035 | } |
| 1036 | |
| 1037 | clib_memset (&template, 0, sizeof (template)); |
| 1038 | template.type = VNET_SW_INTERFACE_TYPE_SUB; |
| 1039 | template.flood_class = VNET_FLOOD_CLASS_NORMAL; |
| 1040 | template.sup_sw_if_index = sw_if_index; |
| 1041 | template.sub.id = id; |
| 1042 | template.sub.eth.raw_flags = flags; |
| 1043 | template.sub.eth.outer_vlan_id = outer_vlan_id; |
| 1044 | template.sub.eth.inner_vlan_id = inner_vlan_id; |
| 1045 | |
| 1046 | if (vnet_create_sw_interface (vnm, &template, sub_sw_if_index)) |
| 1047 | return (VNET_API_ERROR_UNSPECIFIED); |
| 1048 | |
| 1049 | kp = clib_mem_alloc (sizeof (*kp)); |
| 1050 | *kp = sup_and_sub_key; |
| 1051 | |
| 1052 | hash_set (hi->sub_interface_sw_if_index_by_id, id, *sub_sw_if_index); |
| 1053 | hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, *sub_sw_if_index); |
| 1054 | |
| 1055 | return (0); |
| 1056 | } |
| 1057 | |
| 1058 | int |
Pavel Kotucek | d85590a | 2016-08-26 13:35:40 +0200 | [diff] [blame] | 1059 | vnet_delete_sub_interface (u32 sw_if_index) |
| 1060 | { |
| 1061 | vnet_main_t *vnm = vnet_get_main (); |
Steve Shin | a36f08c | 2018-03-07 13:29:29 -0800 | [diff] [blame] | 1062 | vnet_sw_interface_t *si; |
Pavel Kotucek | d85590a | 2016-08-26 13:35:40 +0200 | [diff] [blame] | 1063 | int rv = 0; |
| 1064 | |
| 1065 | if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index)) |
| 1066 | return VNET_API_ERROR_INVALID_SW_IF_INDEX; |
| 1067 | |
Steve Shin | a36f08c | 2018-03-07 13:29:29 -0800 | [diff] [blame] | 1068 | si = vnet_get_sw_interface (vnm, sw_if_index); |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 1069 | if (si->type == VNET_SW_INTERFACE_TYPE_SUB || |
Neale Ranns | 17ff3c1 | 2018-07-04 10:24:24 -0700 | [diff] [blame] | 1070 | si->type == VNET_SW_INTERFACE_TYPE_PIPE || |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 1071 | si->type == VNET_SW_INTERFACE_TYPE_P2P) |
Pavel Kotucek | d85590a | 2016-08-26 13:35:40 +0200 | [diff] [blame] | 1072 | { |
John Lo | 5957a14 | 2018-01-18 12:44:50 -0500 | [diff] [blame] | 1073 | vnet_interface_main_t *im = &vnm->interface_main; |
| 1074 | vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index); |
Pavel Kotucek | d85590a | 2016-08-26 13:35:40 +0200 | [diff] [blame] | 1075 | u64 sup_and_sub_key = |
| 1076 | ((u64) (si->sup_sw_if_index) << 32) | (u64) si->sub.id; |
John Lo | 5957a14 | 2018-01-18 12:44:50 -0500 | [diff] [blame] | 1077 | hash_unset_mem_free (&im->sw_if_index_by_sup_and_sub, &sup_and_sub_key); |
| 1078 | hash_unset (hi->sub_interface_sw_if_index_by_id, si->sub.id); |
Pavel Kotucek | d85590a | 2016-08-26 13:35:40 +0200 | [diff] [blame] | 1079 | vnet_delete_sw_interface (vnm, sw_if_index); |
| 1080 | } |
| 1081 | else |
John Lo | 5957a14 | 2018-01-18 12:44:50 -0500 | [diff] [blame] | 1082 | rv = VNET_API_ERROR_INVALID_SUB_SW_IF_INDEX; |
| 1083 | |
Pavel Kotucek | d85590a | 2016-08-26 13:35:40 +0200 | [diff] [blame] | 1084 | return rv; |
| 1085 | } |
| 1086 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1087 | static clib_error_t * |
| 1088 | delete_simulated_ethernet_interfaces (vlib_main_t * vm, |
| 1089 | unformat_input_t * input, |
| 1090 | vlib_cli_command_t * cmd) |
| 1091 | { |
| 1092 | int rv; |
| 1093 | u32 sw_if_index = ~0; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1094 | vnet_main_t *vnm = vnet_get_main (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1095 | |
| 1096 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 1097 | { |
| 1098 | if (unformat (input, "intfc %U", |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1099 | unformat_vnet_sw_interface, vnm, &sw_if_index)) |
| 1100 | ; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1101 | else |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1102 | break; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1103 | } |
| 1104 | |
| 1105 | if (sw_if_index == ~0) |
| 1106 | return clib_error_return (0, "interface not specified"); |
| 1107 | |
| 1108 | rv = vnet_delete_loopback_interface (sw_if_index); |
| 1109 | |
| 1110 | if (rv) |
| 1111 | return clib_error_return (0, "vnet_delete_loopback_interface failed"); |
| 1112 | |
| 1113 | return 0; |
| 1114 | } |
| 1115 | |
Pavel Kotucek | d85590a | 2016-08-26 13:35:40 +0200 | [diff] [blame] | 1116 | static clib_error_t * |
| 1117 | delete_sub_interface (vlib_main_t * vm, |
| 1118 | unformat_input_t * input, vlib_cli_command_t * cmd) |
| 1119 | { |
| 1120 | int rv = 0; |
| 1121 | u32 sw_if_index = ~0; |
| 1122 | vnet_main_t *vnm = vnet_get_main (); |
| 1123 | |
| 1124 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 1125 | { |
| 1126 | if (unformat |
| 1127 | (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index)) |
| 1128 | ; |
| 1129 | else |
| 1130 | break; |
| 1131 | } |
| 1132 | if (sw_if_index == ~0) |
| 1133 | return clib_error_return (0, "interface doesn't exist"); |
| 1134 | |
| 1135 | if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index)) |
| 1136 | rv = VNET_API_ERROR_INVALID_SW_IF_INDEX; |
| 1137 | else |
| 1138 | rv = vnet_delete_sub_interface (sw_if_index); |
| 1139 | if (rv) |
| 1140 | return clib_error_return (0, "delete_subinterface_interface failed"); |
| 1141 | return 0; |
| 1142 | } |
| 1143 | |
Billy McFall | 2d085d9 | 2016-09-13 21:47:55 -0400 | [diff] [blame] | 1144 | /*? |
| 1145 | * Delete a loopback interface. |
| 1146 | * |
| 1147 | * @cliexpar |
| 1148 | * The following two command syntaxes are equivalent: |
| 1149 | * @cliexcmd{loopback delete-interface intfc <interface>} |
| 1150 | * @cliexcmd{delete loopback interface intfc <interface>} |
| 1151 | * Example of how to delete a loopback interface: |
| 1152 | * @cliexcmd{loopback delete-interface intfc loop0} |
| 1153 | ?*/ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1154 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1155 | VLIB_CLI_COMMAND (delete_simulated_ethernet_interface_command, static) = { |
| 1156 | .path = "loopback delete-interface", |
Billy McFall | 2d085d9 | 2016-09-13 21:47:55 -0400 | [diff] [blame] | 1157 | .short_help = "loopback delete-interface intfc <interface>", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1158 | .function = delete_simulated_ethernet_interfaces, |
| 1159 | }; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1160 | /* *INDENT-ON* */ |
Alpesh S. Patel | 633951c | 2016-04-12 09:58:56 -0700 | [diff] [blame] | 1161 | |
Billy McFall | 2d085d9 | 2016-09-13 21:47:55 -0400 | [diff] [blame] | 1162 | /*? |
| 1163 | * Delete a loopback interface. |
| 1164 | * |
| 1165 | * @cliexpar |
| 1166 | * The following two command syntaxes are equivalent: |
| 1167 | * @cliexcmd{loopback delete-interface intfc <interface>} |
| 1168 | * @cliexcmd{delete loopback interface intfc <interface>} |
| 1169 | * Example of how to delete a loopback interface: |
| 1170 | * @cliexcmd{delete loopback interface intfc loop0} |
| 1171 | ?*/ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1172 | /* *INDENT-OFF* */ |
Alpesh S. Patel | 633951c | 2016-04-12 09:58:56 -0700 | [diff] [blame] | 1173 | VLIB_CLI_COMMAND (delete_loopback_interface_command, static) = { |
| 1174 | .path = "delete loopback interface", |
| 1175 | .short_help = "delete loopback interface intfc <interface>", |
| 1176 | .function = delete_simulated_ethernet_interfaces, |
| 1177 | }; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1178 | /* *INDENT-ON* */ |
| 1179 | |
Billy McFall | 2d085d9 | 2016-09-13 21:47:55 -0400 | [diff] [blame] | 1180 | /*? |
| 1181 | * Delete a sub-interface. |
| 1182 | * |
| 1183 | * @cliexpar |
| 1184 | * Example of how to delete a sub-interface: |
| 1185 | * @cliexcmd{delete sub-interface GigabitEthernet0/8/0.200} |
| 1186 | ?*/ |
Pavel Kotucek | d85590a | 2016-08-26 13:35:40 +0200 | [diff] [blame] | 1187 | /* *INDENT-OFF* */ |
| 1188 | VLIB_CLI_COMMAND (delete_sub_interface_command, static) = { |
| 1189 | .path = "delete sub-interface", |
| 1190 | .short_help = "delete sub-interface <interface>", |
| 1191 | .function = delete_sub_interface, |
| 1192 | }; |
| 1193 | /* *INDENT-ON* */ |
| 1194 | |
Dave Barach | 5fa4525 | 2020-02-26 10:27:08 -0500 | [diff] [blame] | 1195 | static clib_error_t * |
| 1196 | ethernet_config (vlib_main_t * vm, unformat_input_t * input) |
| 1197 | { |
| 1198 | ethernet_main_t *em = ðernet_main; |
| 1199 | |
| 1200 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 1201 | { |
| 1202 | if (unformat (input, "default-mtu %u", &em->default_mtu)) |
| 1203 | { |
| 1204 | if (em->default_mtu < 64 || em->default_mtu > 9000) |
| 1205 | return clib_error_return (0, "default MTU must be >=64, <=9000"); |
| 1206 | } |
| 1207 | else |
| 1208 | { |
| 1209 | return clib_error_return (0, "unknown input '%U'", |
| 1210 | format_unformat_error, input); |
| 1211 | } |
| 1212 | } |
| 1213 | return 0; |
| 1214 | } |
| 1215 | |
| 1216 | VLIB_CONFIG_FUNCTION (ethernet_config, "ethernet"); |
| 1217 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1218 | /* |
| 1219 | * fd.io coding-style-patch-verification: ON |
| 1220 | * |
| 1221 | * Local Variables: |
| 1222 | * eval: (c-set-style "gnu") |
| 1223 | * End: |
| 1224 | */ |