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> |
John Lo | 405e41b | 2016-04-23 15:14:12 -0400 | [diff] [blame] | 44 | #include <vnet/l2/l2_input.h> |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 45 | #include <vnet/adj/adj.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 46 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 47 | /** |
| 48 | * @file |
| 49 | * @brief Loopback Interfaces. |
| 50 | * |
| 51 | * This file contains code to manage loopback interfaces. |
| 52 | */ |
| 53 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 54 | const u8 * |
| 55 | ethernet_ip4_mcast_dst_addr (void) |
| 56 | { |
| 57 | const static u8 ethernet_mcast_dst_mac[] = { |
| 58 | 0x1, 0x0, 0x5e, 0x0, 0x0, 0x0, |
| 59 | }; |
| 60 | |
| 61 | return (ethernet_mcast_dst_mac); |
| 62 | } |
| 63 | |
| 64 | const u8 * |
| 65 | ethernet_ip6_mcast_dst_addr (void) |
| 66 | { |
| 67 | const static u8 ethernet_mcast_dst_mac[] = { |
| 68 | 0x33, 0x33, 0x00, 0x0, 0x0, 0x0, |
| 69 | }; |
| 70 | |
| 71 | return (ethernet_mcast_dst_mac); |
| 72 | } |
| 73 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 74 | /** |
| 75 | * @brief build a rewrite string to use for sending packets of type 'link_type' |
| 76 | * to 'dst_address' |
| 77 | */ |
| 78 | u8 * |
| 79 | ethernet_build_rewrite (vnet_main_t * vnm, |
| 80 | u32 sw_if_index, |
| 81 | vnet_link_t link_type, const void *dst_address) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 82 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 83 | vnet_sw_interface_t *sub_sw = vnet_get_sw_interface (vnm, sw_if_index); |
| 84 | vnet_sw_interface_t *sup_sw = vnet_get_sup_sw_interface (vnm, sw_if_index); |
| 85 | vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index); |
| 86 | ethernet_main_t *em = ðernet_main; |
| 87 | ethernet_interface_t *ei; |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 88 | ethernet_header_t *h; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 89 | ethernet_type_t type; |
| 90 | uword n_bytes = sizeof (h[0]); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 91 | u8 *rewrite = NULL; |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 92 | u8 is_p2p = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 93 | |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 94 | if (sub_sw->type == VNET_SW_INTERFACE_TYPE_P2P) |
| 95 | is_p2p = 1; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 96 | if (sub_sw != sup_sw) |
| 97 | { |
| 98 | if (sub_sw->sub.eth.flags.one_tag) |
| 99 | { |
| 100 | n_bytes += sizeof (ethernet_vlan_header_t); |
| 101 | } |
| 102 | else if (sub_sw->sub.eth.flags.two_tags) |
| 103 | { |
| 104 | n_bytes += 2 * (sizeof (ethernet_vlan_header_t)); |
| 105 | } |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 106 | else if (PREDICT_FALSE (is_p2p)) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 107 | { |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 108 | n_bytes = sizeof (ethernet_header_t); |
| 109 | } |
| 110 | if (PREDICT_FALSE (!is_p2p)) |
| 111 | { |
| 112 | // Check for encaps that are not supported for L3 interfaces |
| 113 | if (!(sub_sw->sub.eth.flags.exact_match) || |
| 114 | (sub_sw->sub.eth.flags.default_sub) || |
| 115 | (sub_sw->sub.eth.flags.outer_vlan_id_any) || |
| 116 | (sub_sw->sub.eth.flags.inner_vlan_id_any)) |
| 117 | { |
| 118 | return 0; |
| 119 | } |
| 120 | } |
| 121 | else |
| 122 | { |
| 123 | n_bytes = sizeof (ethernet_header_t); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 124 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 125 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 126 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 127 | switch (link_type) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 128 | { |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 129 | #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] | 130 | _(IP4, IP4); |
| 131 | _(IP6, IP6); |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 132 | _(MPLS, MPLS); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 133 | _(ARP, ARP); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 134 | #undef _ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 135 | default: |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 136 | return NULL; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 137 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 138 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 139 | vec_validate (rewrite, n_bytes - 1); |
| 140 | h = (ethernet_header_t *) rewrite; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 141 | ei = pool_elt_at_index (em->interfaces, hw->hw_instance); |
Damjan Marion | f1213b8 | 2016-03-13 02:22:06 +0100 | [diff] [blame] | 142 | clib_memcpy (h->src_address, ei->address, sizeof (h->src_address)); |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 143 | if (is_p2p) |
| 144 | { |
| 145 | clib_memcpy (h->dst_address, sub_sw->p2p.client_mac, |
| 146 | sizeof (h->dst_address)); |
| 147 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 148 | else |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 149 | { |
| 150 | if (dst_address) |
| 151 | clib_memcpy (h->dst_address, dst_address, sizeof (h->dst_address)); |
| 152 | else |
| 153 | memset (h->dst_address, ~0, sizeof (h->dst_address)); /* broadcast */ |
| 154 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 155 | |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 156 | 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] | 157 | { |
| 158 | ethernet_vlan_header_t *outer = (void *) (h + 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 159 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 160 | h->type = sub_sw->sub.eth.flags.dot1ad ? |
| 161 | clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) : |
| 162 | clib_host_to_net_u16 (ETHERNET_TYPE_VLAN); |
| 163 | outer->priority_cfi_and_id = |
| 164 | clib_host_to_net_u16 (sub_sw->sub.eth.outer_vlan_id); |
| 165 | outer->type = clib_host_to_net_u16 (type); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 166 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 167 | } |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 168 | 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] | 169 | { |
| 170 | ethernet_vlan_header_t *outer = (void *) (h + 1); |
| 171 | ethernet_vlan_header_t *inner = (void *) (outer + 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 172 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 173 | h->type = sub_sw->sub.eth.flags.dot1ad ? |
| 174 | clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) : |
| 175 | clib_host_to_net_u16 (ETHERNET_TYPE_VLAN); |
| 176 | outer->priority_cfi_and_id = |
| 177 | clib_host_to_net_u16 (sub_sw->sub.eth.outer_vlan_id); |
| 178 | outer->type = clib_host_to_net_u16 (ETHERNET_TYPE_VLAN); |
| 179 | inner->priority_cfi_and_id = |
| 180 | clib_host_to_net_u16 (sub_sw->sub.eth.inner_vlan_id); |
| 181 | inner->type = clib_host_to_net_u16 (type); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 182 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 183 | } |
| 184 | else |
| 185 | { |
| 186 | h->type = clib_host_to_net_u16 (type); |
| 187 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 188 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 189 | return (rewrite); |
| 190 | } |
| 191 | |
| 192 | void |
| 193 | ethernet_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai) |
| 194 | { |
| 195 | ip_adjacency_t *adj; |
| 196 | |
| 197 | adj = adj_get (ai); |
| 198 | |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 199 | vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index); |
| 200 | if (si->type == VNET_SW_INTERFACE_TYPE_P2P) |
| 201 | { |
| 202 | default_update_adjacency (vnm, sw_if_index, ai); |
| 203 | } |
| 204 | else if (FIB_PROTOCOL_IP4 == adj->ia_nh_proto) |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 205 | { |
| 206 | arp_update_adjacency (vnm, sw_if_index, ai); |
| 207 | } |
| 208 | else if (FIB_PROTOCOL_IP6 == adj->ia_nh_proto) |
| 209 | { |
| 210 | ip6_ethernet_update_adjacency (vnm, sw_if_index, ai); |
| 211 | } |
| 212 | else |
| 213 | { |
| 214 | ASSERT (0); |
| 215 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 216 | } |
| 217 | |
Neale Ranns | 3be6b28 | 2016-12-20 14:24:01 +0000 | [diff] [blame] | 218 | static clib_error_t * |
| 219 | ethernet_mac_change (vnet_hw_interface_t * hi, char *mac_address) |
| 220 | { |
| 221 | ethernet_interface_t *ei; |
| 222 | ethernet_main_t *em; |
| 223 | |
| 224 | em = ðernet_main; |
| 225 | ei = pool_elt_at_index (em->interfaces, hi->hw_instance); |
| 226 | |
| 227 | vec_validate (hi->hw_address, |
| 228 | STRUCT_SIZE_OF (ethernet_header_t, src_address) - 1); |
| 229 | clib_memcpy (hi->hw_address, mac_address, vec_len (hi->hw_address)); |
| 230 | |
| 231 | clib_memcpy (ei->address, (u8 *) mac_address, sizeof (ei->address)); |
| 232 | ethernet_arp_change_mac (hi->sw_if_index); |
| 233 | ethernet_ndp_change_mac (hi->sw_if_index); |
| 234 | |
| 235 | return (NULL); |
| 236 | } |
| 237 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 238 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 239 | VNET_HW_INTERFACE_CLASS (ethernet_hw_interface_class) = { |
| 240 | .name = "Ethernet", |
| 241 | .format_address = format_ethernet_address, |
| 242 | .format_header = format_ethernet_header_with_length, |
| 243 | .unformat_hw_address = unformat_ethernet_address, |
| 244 | .unformat_header = unformat_ethernet_header, |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 245 | .build_rewrite = ethernet_build_rewrite, |
| 246 | .update_adjacency = ethernet_update_adjacency, |
Neale Ranns | 3be6b28 | 2016-12-20 14:24:01 +0000 | [diff] [blame] | 247 | .mac_addr_change_function = ethernet_mac_change, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 248 | }; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 249 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 250 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 251 | uword |
| 252 | unformat_ethernet_interface (unformat_input_t * input, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 253 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 254 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
| 255 | u32 *result = va_arg (*args, u32 *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 256 | u32 hw_if_index; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 257 | ethernet_main_t *em = ðernet_main; |
| 258 | ethernet_interface_t *eif; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 259 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 260 | if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 261 | return 0; |
| 262 | |
| 263 | eif = ethernet_get_interface (em, hw_if_index); |
| 264 | if (eif) |
| 265 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 266 | *result = hw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 267 | return 1; |
| 268 | } |
| 269 | return 0; |
| 270 | } |
| 271 | |
| 272 | clib_error_t * |
| 273 | ethernet_register_interface (vnet_main_t * vnm, |
| 274 | u32 dev_class_index, |
| 275 | u32 dev_instance, |
| 276 | u8 * address, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 277 | u32 * hw_if_index_return, |
| 278 | ethernet_flag_change_function_t flag_change) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 279 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 280 | ethernet_main_t *em = ðernet_main; |
| 281 | ethernet_interface_t *ei; |
| 282 | vnet_hw_interface_t *hi; |
| 283 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 284 | u32 hw_if_index; |
| 285 | |
| 286 | pool_get (em->interfaces, ei); |
| 287 | ei->flag_change = flag_change; |
| 288 | |
| 289 | hw_if_index = vnet_register_interface |
| 290 | (vnm, |
| 291 | dev_class_index, dev_instance, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 292 | ethernet_hw_interface_class.index, ei - em->interfaces); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 293 | *hw_if_index_return = hw_if_index; |
| 294 | |
| 295 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 296 | |
| 297 | ethernet_setup_node (vnm->vlib_main, hi->output_node_index); |
| 298 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 299 | hi->min_packet_bytes = hi->min_supported_packet_bytes = |
| 300 | ETHERNET_MIN_PACKET_BYTES; |
| 301 | hi->max_packet_bytes = hi->max_supported_packet_bytes = |
| 302 | ETHERNET_MAX_PACKET_BYTES; |
Damjan Marion | fe7d4a2 | 2018-04-13 19:43:39 +0200 | [diff] [blame] | 303 | hi->per_packet_overhead_bytes = |
| 304 | /* preamble */ 8 + /* inter frame gap */ 12; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 305 | |
| 306 | /* Standard default ethernet MTU. */ |
Damjan Marion | fe7d4a2 | 2018-04-13 19:43:39 +0200 | [diff] [blame] | 307 | hi->max_l3_packet_bytes[VLIB_RX] = hi->max_l3_packet_bytes[VLIB_TX] = 9000; |
| 308 | |
Damjan Marion | f1213b8 | 2016-03-13 02:22:06 +0100 | [diff] [blame] | 309 | clib_memcpy (ei->address, address, sizeof (ei->address)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 310 | vec_add (hi->hw_address, address, sizeof (ei->address)); |
| 311 | |
| 312 | if (error) |
| 313 | { |
| 314 | pool_put (em->interfaces, ei); |
| 315 | return error; |
| 316 | } |
| 317 | return error; |
| 318 | } |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 319 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 320 | void |
| 321 | ethernet_delete_interface (vnet_main_t * vnm, u32 hw_if_index) |
| 322 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 323 | ethernet_main_t *em = ðernet_main; |
| 324 | ethernet_interface_t *ei; |
| 325 | vnet_hw_interface_t *hi; |
| 326 | main_intf_t *main_intf; |
| 327 | vlan_table_t *vlan_table; |
| 328 | u32 idx; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 329 | |
| 330 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 331 | ei = pool_elt_at_index (em->interfaces, hi->hw_instance); |
| 332 | |
| 333 | /* Delete vlan mapping table for dot1q and dot1ad. */ |
| 334 | 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] | 335 | if (main_intf->dot1q_vlans) |
| 336 | { |
| 337 | vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1q_vlans); |
| 338 | for (idx = 0; idx < ETHERNET_N_VLAN; idx++) |
| 339 | { |
| 340 | if (vlan_table->vlans[idx].qinqs) |
| 341 | { |
| 342 | pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs); |
| 343 | } |
| 344 | } |
| 345 | pool_put_index (em->vlan_pool, main_intf->dot1q_vlans); |
Steve Shin | 8a3e575 | 2018-02-20 11:38:34 -0800 | [diff] [blame] | 346 | main_intf->dot1q_vlans = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 347 | } |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 348 | if (main_intf->dot1ad_vlans) |
| 349 | { |
| 350 | vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1ad_vlans); |
| 351 | for (idx = 0; idx < ETHERNET_N_VLAN; idx++) |
| 352 | { |
| 353 | if (vlan_table->vlans[idx].qinqs) |
| 354 | { |
| 355 | pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs); |
| 356 | } |
| 357 | } |
| 358 | pool_put_index (em->vlan_pool, main_intf->dot1ad_vlans); |
Steve Shin | 8a3e575 | 2018-02-20 11:38:34 -0800 | [diff] [blame] | 359 | main_intf->dot1ad_vlans = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 360 | } |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 361 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 362 | vnet_delete_hw_interface (vnm, hw_if_index); |
| 363 | pool_put (em->interfaces, ei); |
| 364 | } |
| 365 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 366 | u32 |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 367 | ethernet_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags) |
| 368 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 369 | ethernet_main_t *em = ðernet_main; |
| 370 | vnet_hw_interface_t *hi; |
| 371 | ethernet_interface_t *ei; |
| 372 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 373 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 374 | |
| 375 | ASSERT (hi->hw_class_index == ethernet_hw_interface_class.index); |
| 376 | |
| 377 | ei = pool_elt_at_index (em->interfaces, hi->hw_instance); |
| 378 | if (ei->flag_change) |
| 379 | return ei->flag_change (vnm, hi, flags); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 380 | return (u32) ~ 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 381 | } |
| 382 | |
John Lo | 405e41b | 2016-04-23 15:14:12 -0400 | [diff] [blame] | 383 | /* Echo packets back to ethernet/l2-input. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 384 | static uword |
| 385 | simulated_ethernet_interface_tx (vlib_main_t * vm, |
| 386 | vlib_node_runtime_t * node, |
| 387 | vlib_frame_t * frame) |
| 388 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 389 | u32 n_left_from, n_left_to_next, n_copy, *from, *to_next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 390 | u32 next_index = VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT; |
John Lo | 405e41b | 2016-04-23 15:14:12 -0400 | [diff] [blame] | 391 | u32 i, next_node_index, bvi_flag, sw_if_index; |
| 392 | u32 n_pkts = 0, n_bytes = 0; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 393 | u32 thread_index = vm->thread_index; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 394 | vnet_main_t *vnm = vnet_get_main (); |
| 395 | vnet_interface_main_t *im = &vnm->interface_main; |
| 396 | vlib_node_main_t *nm = &vm->node_main; |
John Lo | 405e41b | 2016-04-23 15:14:12 -0400 | [diff] [blame] | 397 | vlib_node_t *loop_node; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 398 | vlib_buffer_t *b; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 399 | |
John Lo | 405e41b | 2016-04-23 15:14:12 -0400 | [diff] [blame] | 400 | // check tx node index, it is ethernet-input on loopback create |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 401 | // but can be changed to l2-input if loopback is configured as |
John Lo | 405e41b | 2016-04-23 15:14:12 -0400 | [diff] [blame] | 402 | // BVI of a BD (Bridge Domain). |
| 403 | loop_node = vec_elt (nm->nodes, node->node_index); |
| 404 | next_node_index = loop_node->next_nodes[next_index]; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 405 | bvi_flag = (next_node_index == l2input_node.index) ? 1 : 0; |
John Lo | 405e41b | 2016-04-23 15:14:12 -0400 | [diff] [blame] | 406 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 407 | n_left_from = frame->n_vectors; |
| 408 | from = vlib_frame_args (frame); |
| 409 | |
| 410 | while (n_left_from > 0) |
| 411 | { |
| 412 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 413 | |
| 414 | n_copy = clib_min (n_left_from, n_left_to_next); |
| 415 | |
Damjan Marion | f1213b8 | 2016-03-13 02:22:06 +0100 | [diff] [blame] | 416 | clib_memcpy (to_next, from, n_copy * sizeof (from[0])); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 417 | n_left_to_next -= n_copy; |
| 418 | n_left_from -= n_copy; |
John Lo | 405e41b | 2016-04-23 15:14:12 -0400 | [diff] [blame] | 419 | i = 0; |
| 420 | b = vlib_get_buffer (vm, from[i]); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 421 | sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_TX]; |
John Lo | 405e41b | 2016-04-23 15:14:12 -0400 | [diff] [blame] | 422 | while (1) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 423 | { |
John Lo | 405e41b | 2016-04-23 15:14:12 -0400 | [diff] [blame] | 424 | // Set up RX and TX indices as if received from a real driver |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 425 | // unless loopback is used as a BVI. For BVI case, leave TX index |
John Lo | 405e41b | 2016-04-23 15:14:12 -0400 | [diff] [blame] | 426 | // and update l2_len in packet as required for l2 forwarding path |
| 427 | vnet_buffer (b)->sw_if_index[VLIB_RX] = sw_if_index; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 428 | if (bvi_flag) |
John Lo | 20e5551 | 2016-09-22 18:24:13 -0400 | [diff] [blame] | 429 | { |
| 430 | vnet_update_l2_len (b); |
| 431 | vnet_buffer (b)->sw_if_index[VLIB_TX] = L2INPUT_BVI; |
| 432 | } |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 433 | else |
| 434 | vnet_buffer (b)->sw_if_index[VLIB_TX] = (u32) ~ 0; |
John Lo | 405e41b | 2016-04-23 15:14:12 -0400 | [diff] [blame] | 435 | |
| 436 | i++; |
| 437 | n_pkts++; |
| 438 | n_bytes += vlib_buffer_length_in_chain (vm, b); |
| 439 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 440 | if (i < n_copy) |
| 441 | b = vlib_get_buffer (vm, from[i]); |
| 442 | else |
| 443 | break; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 444 | } |
David Hotham | 83486fb | 2016-09-30 16:32:18 +0100 | [diff] [blame] | 445 | from += n_copy; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 446 | |
| 447 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
John Lo | 405e41b | 2016-04-23 15:14:12 -0400 | [diff] [blame] | 448 | |
| 449 | /* increment TX interface stat */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 450 | vlib_increment_combined_counter (im->combined_sw_if_counters + |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 451 | VNET_INTERFACE_COUNTER_TX, |
| 452 | thread_index, sw_if_index, n_pkts, |
| 453 | n_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 454 | } |
| 455 | |
| 456 | return n_left_from; |
| 457 | } |
| 458 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 459 | static u8 * |
| 460 | format_simulated_ethernet_name (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 461 | { |
| 462 | u32 dev_instance = va_arg (*args, u32); |
| 463 | return format (s, "loop%d", dev_instance); |
| 464 | } |
| 465 | |
Pierre Pfister | f00f91a | 2016-03-09 18:22:32 +0000 | [diff] [blame] | 466 | static clib_error_t * |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 467 | simulated_ethernet_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, |
| 468 | u32 flags) |
Pierre Pfister | f00f91a | 2016-03-09 18:22:32 +0000 | [diff] [blame] | 469 | { |
| 470 | u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 471 | VNET_HW_INTERFACE_FLAG_LINK_UP : 0; |
Pierre Pfister | f00f91a | 2016-03-09 18:22:32 +0000 | [diff] [blame] | 472 | vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags); |
| 473 | return 0; |
| 474 | } |
| 475 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 476 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 477 | VNET_DEVICE_CLASS (ethernet_simulated_device_class) = { |
| 478 | .name = "Loopback", |
| 479 | .format_device_name = format_simulated_ethernet_name, |
| 480 | .tx_function = simulated_ethernet_interface_tx, |
Pierre Pfister | f00f91a | 2016-03-09 18:22:32 +0000 | [diff] [blame] | 481 | .admin_up_down_function = simulated_ethernet_admin_up_down, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 482 | }; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 483 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 484 | |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 485 | |
| 486 | /* |
| 487 | * Maintain a bitmap of allocated loopback instance numbers. |
| 488 | */ |
| 489 | #define LOOPBACK_MAX_INSTANCE (16 * 1024) |
| 490 | |
| 491 | static u32 |
| 492 | loopback_instance_alloc (u8 is_specified, u32 want) |
| 493 | { |
| 494 | ethernet_main_t *em = ðernet_main; |
| 495 | |
| 496 | /* |
| 497 | * Check for dynamically allocaetd instance number. |
| 498 | */ |
| 499 | if (!is_specified) |
| 500 | { |
| 501 | u32 bit; |
| 502 | |
| 503 | bit = clib_bitmap_first_clear (em->bm_loopback_instances); |
| 504 | if (bit >= LOOPBACK_MAX_INSTANCE) |
| 505 | { |
| 506 | return ~0; |
| 507 | } |
| 508 | em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances, |
| 509 | bit, 1); |
| 510 | return bit; |
| 511 | } |
| 512 | |
| 513 | /* |
| 514 | * In range? |
| 515 | */ |
| 516 | if (want >= LOOPBACK_MAX_INSTANCE) |
| 517 | { |
| 518 | return ~0; |
| 519 | } |
| 520 | |
| 521 | /* |
| 522 | * Already in use? |
| 523 | */ |
| 524 | if (clib_bitmap_get (em->bm_loopback_instances, want)) |
| 525 | { |
| 526 | return ~0; |
| 527 | } |
| 528 | |
| 529 | /* |
| 530 | * Grant allocation request. |
| 531 | */ |
| 532 | em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances, |
| 533 | want, 1); |
| 534 | |
| 535 | return want; |
| 536 | } |
| 537 | |
| 538 | static int |
| 539 | loopback_instance_free (u32 instance) |
| 540 | { |
| 541 | ethernet_main_t *em = ðernet_main; |
| 542 | |
| 543 | if (instance >= LOOPBACK_MAX_INSTANCE) |
| 544 | { |
| 545 | return -1; |
| 546 | } |
| 547 | |
| 548 | if (clib_bitmap_get (em->bm_loopback_instances, instance) == 0) |
| 549 | { |
| 550 | return -1; |
| 551 | } |
| 552 | |
| 553 | em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances, |
| 554 | instance, 0); |
| 555 | return 0; |
| 556 | } |
| 557 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 558 | int |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 559 | vnet_create_loopback_interface (u32 * sw_if_indexp, u8 * mac_address, |
| 560 | u8 is_specified, u32 user_instance) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 561 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 562 | vnet_main_t *vnm = vnet_get_main (); |
| 563 | vlib_main_t *vm = vlib_get_main (); |
| 564 | clib_error_t *error; |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 565 | u32 instance; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 566 | u8 address[6]; |
| 567 | u32 hw_if_index; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 568 | vnet_hw_interface_t *hw_if; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 569 | u32 slot; |
| 570 | int rv = 0; |
| 571 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 572 | ASSERT (sw_if_indexp); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 573 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 574 | *sw_if_indexp = (u32) ~ 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 575 | |
| 576 | memset (address, 0, sizeof (address)); |
| 577 | |
| 578 | /* |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 579 | * Allocate a loopback instance. Either select on dynamically |
| 580 | * or try to use the desired user_instance number. |
| 581 | */ |
| 582 | instance = loopback_instance_alloc (is_specified, user_instance); |
| 583 | if (instance == ~0) |
| 584 | { |
| 585 | return VNET_API_ERROR_INVALID_REGISTRATION; |
| 586 | } |
| 587 | |
| 588 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 589 | * Default MAC address (dead:0000:0000 + instance) is allocated |
| 590 | * if zero mac_address is configured. Otherwise, user-configurable MAC |
| 591 | * address is programmed on the loopback interface. |
| 592 | */ |
| 593 | if (memcmp (address, mac_address, sizeof (address))) |
Damjan Marion | f1213b8 | 2016-03-13 02:22:06 +0100 | [diff] [blame] | 594 | clib_memcpy (address, mac_address, sizeof (address)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 595 | else |
| 596 | { |
| 597 | address[0] = 0xde; |
| 598 | address[1] = 0xad; |
| 599 | address[5] = instance; |
| 600 | } |
| 601 | |
| 602 | error = ethernet_register_interface |
| 603 | (vnm, |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 604 | ethernet_simulated_device_class.index, instance, address, &hw_if_index, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 605 | /* flag change */ 0); |
| 606 | |
| 607 | if (error) |
| 608 | { |
| 609 | rv = VNET_API_ERROR_INVALID_REGISTRATION; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 610 | clib_error_report (error); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 611 | return rv; |
| 612 | } |
| 613 | |
| 614 | hw_if = vnet_get_hw_interface (vnm, hw_if_index); |
| 615 | slot = vlib_node_add_named_next_with_slot |
| 616 | (vm, hw_if->tx_node_index, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 617 | "ethernet-input", VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 618 | ASSERT (slot == VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT); |
| 619 | |
| 620 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 621 | 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] | 622 | *sw_if_indexp = si->sw_if_index; |
Neale Ranns | 87dad11 | 2018-04-09 01:53:01 -0700 | [diff] [blame] | 623 | |
| 624 | /* By default don't flood to loopbacks, as packets just keep |
| 625 | * coming back ... If this loopback becomes a BVI, we'll change it */ |
| 626 | si->flood_class = VNET_FLOOD_CLASS_NO_FLOOD; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 627 | } |
| 628 | |
| 629 | return 0; |
| 630 | } |
| 631 | |
| 632 | static clib_error_t * |
| 633 | create_simulated_ethernet_interfaces (vlib_main_t * vm, |
| 634 | unformat_input_t * input, |
| 635 | vlib_cli_command_t * cmd) |
| 636 | { |
| 637 | int rv; |
| 638 | u32 sw_if_index; |
| 639 | u8 mac_address[6]; |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 640 | u8 is_specified = 0; |
| 641 | u32 user_instance = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 642 | |
| 643 | memset (mac_address, 0, sizeof (mac_address)); |
| 644 | |
| 645 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 646 | { |
| 647 | if (unformat (input, "mac %U", unformat_ethernet_address, mac_address)) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 648 | ; |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 649 | if (unformat (input, "instance %d", &user_instance)) |
| 650 | is_specified = 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 651 | else |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 652 | break; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 653 | } |
| 654 | |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 655 | rv = vnet_create_loopback_interface (&sw_if_index, mac_address, |
| 656 | is_specified, user_instance); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 657 | |
| 658 | if (rv) |
| 659 | return clib_error_return (0, "vnet_create_loopback_interface failed"); |
| 660 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 661 | vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main (), |
| 662 | sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 663 | return 0; |
| 664 | } |
| 665 | |
Billy McFall | 2d085d9 | 2016-09-13 21:47:55 -0400 | [diff] [blame] | 666 | /*? |
| 667 | * Create a loopback interface. Optionally, a MAC Address can be |
| 668 | * provided. If not provided, de:ad:00:00:00:<loopId> will be used. |
| 669 | * |
| 670 | * @cliexpar |
| 671 | * The following two command syntaxes are equivalent: |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 672 | * @cliexcmd{loopback create-interface [mac <mac-addr>] [instance <instance>]} |
| 673 | * @cliexcmd{create loopback interface [mac <mac-addr>] [instance <instance>]} |
Billy McFall | 2d085d9 | 2016-09-13 21:47:55 -0400 | [diff] [blame] | 674 | * Example of how to create a loopback interface: |
| 675 | * @cliexcmd{loopback create-interface} |
| 676 | ?*/ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 677 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 678 | VLIB_CLI_COMMAND (create_simulated_ethernet_interface_command, static) = { |
| 679 | .path = "loopback create-interface", |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 680 | .short_help = "loopback create-interface [mac <mac-addr>] [instance <instance>]", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 681 | .function = create_simulated_ethernet_interfaces, |
| 682 | }; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 683 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 684 | |
Billy McFall | 2d085d9 | 2016-09-13 21:47:55 -0400 | [diff] [blame] | 685 | /*? |
| 686 | * Create a loopback interface. Optionally, a MAC Address can be |
| 687 | * provided. If not provided, de:ad:00:00:00:<loopId> will be used. |
| 688 | * |
| 689 | * @cliexpar |
| 690 | * The following two command syntaxes are equivalent: |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 691 | * @cliexcmd{loopback create-interface [mac <mac-addr>] [instance <instance>]} |
| 692 | * @cliexcmd{create loopback interface [mac <mac-addr>] [instance <instance>]} |
Billy McFall | 2d085d9 | 2016-09-13 21:47:55 -0400 | [diff] [blame] | 693 | * Example of how to create a loopback interface: |
| 694 | * @cliexcmd{create loopback interface} |
| 695 | ?*/ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 696 | /* *INDENT-OFF* */ |
Alpesh Patel | 370a24e | 2016-04-08 07:27:37 -0700 | [diff] [blame] | 697 | VLIB_CLI_COMMAND (create_loopback_interface_command, static) = { |
| 698 | .path = "create loopback interface", |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 699 | .short_help = "create loopback interface [mac <mac-addr>] [instance <instance>]", |
Alpesh Patel | 370a24e | 2016-04-08 07:27:37 -0700 | [diff] [blame] | 700 | .function = create_simulated_ethernet_interfaces, |
| 701 | }; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 702 | /* *INDENT-ON* */ |
Alpesh Patel | 370a24e | 2016-04-08 07:27:37 -0700 | [diff] [blame] | 703 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 704 | ethernet_interface_t * |
| 705 | ethernet_get_interface (ethernet_main_t * em, u32 hw_if_index) |
| 706 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 707 | vnet_hw_interface_t *i = |
| 708 | vnet_get_hw_interface (vnet_get_main (), hw_if_index); |
| 709 | return (i->hw_class_index == |
| 710 | ethernet_hw_interface_class. |
| 711 | index ? pool_elt_at_index (em->interfaces, i->hw_instance) : 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 712 | } |
| 713 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 714 | int |
| 715 | vnet_delete_loopback_interface (u32 sw_if_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 716 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 717 | vnet_main_t *vnm = vnet_get_main (); |
| 718 | vnet_sw_interface_t *si; |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 719 | u32 hw_if_index; |
| 720 | vnet_hw_interface_t *hw; |
| 721 | u32 instance; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 722 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 723 | 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] | 724 | return VNET_API_ERROR_INVALID_SW_IF_INDEX; |
| 725 | |
| 726 | si = vnet_get_sw_interface (vnm, sw_if_index); |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 727 | hw_if_index = si->hw_if_index; |
| 728 | hw = vnet_get_hw_interface (vnm, hw_if_index); |
| 729 | instance = hw->dev_instance; |
| 730 | |
| 731 | if (loopback_instance_free (instance) < 0) |
| 732 | { |
| 733 | return VNET_API_ERROR_INVALID_SW_IF_INDEX; |
| 734 | } |
| 735 | |
| 736 | ethernet_delete_interface (vnm, hw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 737 | |
| 738 | return 0; |
| 739 | } |
| 740 | |
Pavel Kotucek | d85590a | 2016-08-26 13:35:40 +0200 | [diff] [blame] | 741 | int |
| 742 | vnet_delete_sub_interface (u32 sw_if_index) |
| 743 | { |
| 744 | vnet_main_t *vnm = vnet_get_main (); |
Steve Shin | a36f08c | 2018-03-07 13:29:29 -0800 | [diff] [blame] | 745 | vnet_sw_interface_t *si; |
Pavel Kotucek | d85590a | 2016-08-26 13:35:40 +0200 | [diff] [blame] | 746 | int rv = 0; |
| 747 | |
| 748 | if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index)) |
| 749 | return VNET_API_ERROR_INVALID_SW_IF_INDEX; |
| 750 | |
Steve Shin | a36f08c | 2018-03-07 13:29:29 -0800 | [diff] [blame] | 751 | si = vnet_get_sw_interface (vnm, sw_if_index); |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 752 | if (si->type == VNET_SW_INTERFACE_TYPE_SUB || |
| 753 | si->type == VNET_SW_INTERFACE_TYPE_P2P) |
Pavel Kotucek | d85590a | 2016-08-26 13:35:40 +0200 | [diff] [blame] | 754 | { |
John Lo | 5957a14 | 2018-01-18 12:44:50 -0500 | [diff] [blame] | 755 | vnet_interface_main_t *im = &vnm->interface_main; |
| 756 | 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] | 757 | u64 sup_and_sub_key = |
| 758 | ((u64) (si->sup_sw_if_index) << 32) | (u64) si->sub.id; |
John Lo | 5957a14 | 2018-01-18 12:44:50 -0500 | [diff] [blame] | 759 | hash_unset_mem_free (&im->sw_if_index_by_sup_and_sub, &sup_and_sub_key); |
| 760 | 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] | 761 | vnet_delete_sw_interface (vnm, sw_if_index); |
| 762 | } |
| 763 | else |
John Lo | 5957a14 | 2018-01-18 12:44:50 -0500 | [diff] [blame] | 764 | rv = VNET_API_ERROR_INVALID_SUB_SW_IF_INDEX; |
| 765 | |
Pavel Kotucek | d85590a | 2016-08-26 13:35:40 +0200 | [diff] [blame] | 766 | return rv; |
| 767 | } |
| 768 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 769 | static clib_error_t * |
| 770 | delete_simulated_ethernet_interfaces (vlib_main_t * vm, |
| 771 | unformat_input_t * input, |
| 772 | vlib_cli_command_t * cmd) |
| 773 | { |
| 774 | int rv; |
| 775 | u32 sw_if_index = ~0; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 776 | vnet_main_t *vnm = vnet_get_main (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 777 | |
| 778 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 779 | { |
| 780 | if (unformat (input, "intfc %U", |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 781 | unformat_vnet_sw_interface, vnm, &sw_if_index)) |
| 782 | ; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 783 | else |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 784 | break; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 785 | } |
| 786 | |
| 787 | if (sw_if_index == ~0) |
| 788 | return clib_error_return (0, "interface not specified"); |
| 789 | |
| 790 | rv = vnet_delete_loopback_interface (sw_if_index); |
| 791 | |
| 792 | if (rv) |
| 793 | return clib_error_return (0, "vnet_delete_loopback_interface failed"); |
| 794 | |
| 795 | return 0; |
| 796 | } |
| 797 | |
Pavel Kotucek | d85590a | 2016-08-26 13:35:40 +0200 | [diff] [blame] | 798 | static clib_error_t * |
| 799 | delete_sub_interface (vlib_main_t * vm, |
| 800 | unformat_input_t * input, vlib_cli_command_t * cmd) |
| 801 | { |
| 802 | int rv = 0; |
| 803 | u32 sw_if_index = ~0; |
| 804 | vnet_main_t *vnm = vnet_get_main (); |
| 805 | |
| 806 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 807 | { |
| 808 | if (unformat |
| 809 | (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index)) |
| 810 | ; |
| 811 | else |
| 812 | break; |
| 813 | } |
| 814 | if (sw_if_index == ~0) |
| 815 | return clib_error_return (0, "interface doesn't exist"); |
| 816 | |
| 817 | if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index)) |
| 818 | rv = VNET_API_ERROR_INVALID_SW_IF_INDEX; |
| 819 | else |
| 820 | rv = vnet_delete_sub_interface (sw_if_index); |
| 821 | if (rv) |
| 822 | return clib_error_return (0, "delete_subinterface_interface failed"); |
| 823 | return 0; |
| 824 | } |
| 825 | |
Billy McFall | 2d085d9 | 2016-09-13 21:47:55 -0400 | [diff] [blame] | 826 | /*? |
| 827 | * Delete a loopback interface. |
| 828 | * |
| 829 | * @cliexpar |
| 830 | * The following two command syntaxes are equivalent: |
| 831 | * @cliexcmd{loopback delete-interface intfc <interface>} |
| 832 | * @cliexcmd{delete loopback interface intfc <interface>} |
| 833 | * Example of how to delete a loopback interface: |
| 834 | * @cliexcmd{loopback delete-interface intfc loop0} |
| 835 | ?*/ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 836 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 837 | VLIB_CLI_COMMAND (delete_simulated_ethernet_interface_command, static) = { |
| 838 | .path = "loopback delete-interface", |
Billy McFall | 2d085d9 | 2016-09-13 21:47:55 -0400 | [diff] [blame] | 839 | .short_help = "loopback delete-interface intfc <interface>", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 840 | .function = delete_simulated_ethernet_interfaces, |
| 841 | }; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 842 | /* *INDENT-ON* */ |
Alpesh S. Patel | 633951c | 2016-04-12 09:58:56 -0700 | [diff] [blame] | 843 | |
Billy McFall | 2d085d9 | 2016-09-13 21:47:55 -0400 | [diff] [blame] | 844 | /*? |
| 845 | * Delete a loopback interface. |
| 846 | * |
| 847 | * @cliexpar |
| 848 | * The following two command syntaxes are equivalent: |
| 849 | * @cliexcmd{loopback delete-interface intfc <interface>} |
| 850 | * @cliexcmd{delete loopback interface intfc <interface>} |
| 851 | * Example of how to delete a loopback interface: |
| 852 | * @cliexcmd{delete loopback interface intfc loop0} |
| 853 | ?*/ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 854 | /* *INDENT-OFF* */ |
Alpesh S. Patel | 633951c | 2016-04-12 09:58:56 -0700 | [diff] [blame] | 855 | VLIB_CLI_COMMAND (delete_loopback_interface_command, static) = { |
| 856 | .path = "delete loopback interface", |
| 857 | .short_help = "delete loopback interface intfc <interface>", |
| 858 | .function = delete_simulated_ethernet_interfaces, |
| 859 | }; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 860 | /* *INDENT-ON* */ |
| 861 | |
Billy McFall | 2d085d9 | 2016-09-13 21:47:55 -0400 | [diff] [blame] | 862 | /*? |
| 863 | * Delete a sub-interface. |
| 864 | * |
| 865 | * @cliexpar |
| 866 | * Example of how to delete a sub-interface: |
| 867 | * @cliexcmd{delete sub-interface GigabitEthernet0/8/0.200} |
| 868 | ?*/ |
Pavel Kotucek | d85590a | 2016-08-26 13:35:40 +0200 | [diff] [blame] | 869 | /* *INDENT-OFF* */ |
| 870 | VLIB_CLI_COMMAND (delete_sub_interface_command, static) = { |
| 871 | .path = "delete sub-interface", |
| 872 | .short_help = "delete sub-interface <interface>", |
| 873 | .function = delete_sub_interface, |
| 874 | }; |
| 875 | /* *INDENT-ON* */ |
| 876 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 877 | /* |
| 878 | * fd.io coding-style-patch-verification: ON |
| 879 | * |
| 880 | * Local Variables: |
| 881 | * eval: (c-set-style "gnu") |
| 882 | * End: |
| 883 | */ |