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