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.h: types/functions for ethernet. |
| 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 | #ifndef included_ethernet_h |
| 41 | #define included_ethernet_h |
| 42 | |
| 43 | #include <vnet/vnet.h> |
| 44 | #include <vnet/ethernet/packet.h> |
Neale Ranns | 3702930 | 2018-08-10 05:30:06 -0700 | [diff] [blame] | 45 | #include <vnet/ethernet/mac_address.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 46 | #include <vnet/pg/pg.h> |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 47 | #include <vnet/feature/feature.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 48 | |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 49 | /* ethernet-input frame flags and scalar data */ |
| 50 | |
| 51 | /* all packets in frame share same sw_if_index */ |
| 52 | #define ETH_INPUT_FRAME_F_SINGLE_SW_IF_IDX (1 << 0) |
| 53 | |
| 54 | /* all ip4 packets in frame have correct ip4 checksum */ |
| 55 | #define ETH_INPUT_FRAME_F_IP4_CKSUM_OK (1 << 1) |
| 56 | |
| 57 | typedef struct |
| 58 | { |
| 59 | u32 sw_if_index; |
| 60 | u32 hw_if_index; |
| 61 | } ethernet_input_frame_t; |
| 62 | |
Damjan Marion | 927b071 | 2018-02-20 08:33:50 +0100 | [diff] [blame] | 63 | #ifdef CLIB_HAVE_VEC128 |
Damjan Marion | c6969b5 | 2018-02-19 12:14:06 +0100 | [diff] [blame] | 64 | static const u16x8 tagged_ethertypes = { |
| 65 | (u16) ETHERNET_TYPE_VLAN, |
| 66 | (u16) ETHERNET_TYPE_DOT1AD, |
| 67 | (u16) ETHERNET_TYPE_VLAN_9100, |
| 68 | (u16) ETHERNET_TYPE_VLAN_9200, |
| 69 | /* duplicate last one to fill register */ |
| 70 | (u16) ETHERNET_TYPE_VLAN_9200, |
| 71 | (u16) ETHERNET_TYPE_VLAN_9200, |
| 72 | (u16) ETHERNET_TYPE_VLAN_9200, |
| 73 | (u16) ETHERNET_TYPE_VLAN_9200 |
| 74 | }; |
Damjan Marion | 927b071 | 2018-02-20 08:33:50 +0100 | [diff] [blame] | 75 | #endif |
Damjan Marion | c6969b5 | 2018-02-19 12:14:06 +0100 | [diff] [blame] | 76 | |
Damjan Marion | b94bdad | 2016-09-19 11:32:03 +0200 | [diff] [blame] | 77 | static_always_inline int |
| 78 | ethernet_frame_is_tagged (u16 type) |
| 79 | { |
Damjan Marion | c6969b5 | 2018-02-19 12:14:06 +0100 | [diff] [blame] | 80 | #ifdef CLIB_HAVE_VEC128 |
| 81 | return !u16x8_is_all_zero (tagged_ethertypes == u16x8_splat (type)); |
Damjan Marion | b94bdad | 2016-09-19 11:32:03 +0200 | [diff] [blame] | 82 | #else |
| 83 | if ((type == ETHERNET_TYPE_VLAN) || |
| 84 | (type == ETHERNET_TYPE_DOT1AD) || |
| 85 | (type == ETHERNET_TYPE_VLAN_9100) || (type == ETHERNET_TYPE_VLAN_9200)) |
| 86 | return 1; |
| 87 | #endif |
| 88 | return 0; |
| 89 | } |
| 90 | |
Damjan Marion | c6969b5 | 2018-02-19 12:14:06 +0100 | [diff] [blame] | 91 | static_always_inline int |
| 92 | ethernet_frame_is_any_tagged_x2 (u16 type0, u16 type1) |
| 93 | { |
| 94 | #ifdef CLIB_HAVE_VEC128 |
| 95 | u16x8 r0 = (tagged_ethertypes == u16x8_splat (type0)); |
| 96 | u16x8 r1 = (tagged_ethertypes == u16x8_splat (type1)); |
| 97 | return !u16x8_is_all_zero (r0 | r1); |
| 98 | #else |
| 99 | return ethernet_frame_is_tagged (type0) || ethernet_frame_is_tagged (type1); |
| 100 | #endif |
| 101 | } |
| 102 | |
| 103 | static_always_inline int |
| 104 | ethernet_frame_is_any_tagged_x4 (u16 type0, u16 type1, u16 type2, u16 type3) |
| 105 | { |
| 106 | #ifdef CLIB_HAVE_VEC128 |
| 107 | u16x8 r0 = (tagged_ethertypes == u16x8_splat (type0)); |
| 108 | u16x8 r1 = (tagged_ethertypes == u16x8_splat (type1)); |
| 109 | u16x8 r2 = (tagged_ethertypes == u16x8_splat (type2)); |
| 110 | u16x8 r3 = (tagged_ethertypes == u16x8_splat (type3)); |
| 111 | return !u16x8_is_all_zero (r0 | r1 | r2 | r3); |
| 112 | #else |
| 113 | return ethernet_frame_is_tagged (type0) || ethernet_frame_is_tagged (type1) |
| 114 | || ethernet_frame_is_tagged (type2) || ethernet_frame_is_tagged (type3); |
| 115 | #endif |
| 116 | } |
| 117 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 118 | /* Max. sized ethernet/vlan header for parsing. */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 119 | typedef struct |
| 120 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 121 | ethernet_header_t ethernet; |
| 122 | |
| 123 | /* Allow up to 2 stacked vlan headers. */ |
| 124 | ethernet_vlan_header_t vlan[2]; |
| 125 | } ethernet_max_header_t; |
| 126 | |
| 127 | struct vnet_hw_interface_t; |
| 128 | /* Ethernet flag change callback. */ |
| 129 | typedef u32 (ethernet_flag_change_function_t) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 130 | (vnet_main_t * vnm, struct vnet_hw_interface_t * hi, u32 flags); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 131 | |
| 132 | #define ETHERNET_MIN_PACKET_BYTES 64 |
| 133 | #define ETHERNET_MAX_PACKET_BYTES 9216 |
| 134 | |
| 135 | /* Ethernet interface instance. */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 136 | typedef struct ethernet_interface |
| 137 | { |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 138 | u32 flags; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 139 | |
John Lo | 4a302ee | 2020-05-12 22:34:39 -0400 | [diff] [blame] | 140 | /* Top 16 bits for status and bottom 16 bits for set operation */ |
| 141 | #define ETHERNET_INTERFACE_FLAGS_STATUS_MASK (0xffff0000) |
| 142 | #define ETHERNET_INTERFACE_FLAGS_SET_OPN_MASK (0x0000ffff) |
| 143 | |
| 144 | /* Interface driver/hw is in L3/non-promiscuous mode so packet DMAC |
| 145 | would already be filtered */ |
| 146 | #define ETHERNET_INTERFACE_FLAG_STATUS_L3 (1 << 16) |
| 147 | |
| 148 | /* Set interface to default L3 mode */ |
| 149 | #define ETHERNET_INTERFACE_FLAG_DEFAULT_L3 0 |
| 150 | |
| 151 | /* Set interface to accept all packets (promiscuous mode). */ |
| 152 | #define ETHERNET_INTERFACE_FLAG_ACCEPT_ALL 1 |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 153 | |
| 154 | /* Change MTU on interface from hw interface structure */ |
John Lo | 4a302ee | 2020-05-12 22:34:39 -0400 | [diff] [blame] | 155 | #define ETHERNET_INTERFACE_FLAG_MTU 2 |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 156 | |
| 157 | /* Callback, e.g. to turn on/off promiscuous mode */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 158 | ethernet_flag_change_function_t *flag_change; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 159 | |
| 160 | u32 driver_instance; |
| 161 | |
| 162 | /* Ethernet (MAC) address for this interface. */ |
| 163 | u8 address[6]; |
Matthew G Smith | d459bf3 | 2019-09-04 15:01:04 -0500 | [diff] [blame] | 164 | |
| 165 | /* Secondary MAC addresses for this interface */ |
| 166 | mac_address_t *secondary_addrs; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 167 | } ethernet_interface_t; |
| 168 | |
Damjan Marion | b8abf87 | 2016-03-14 20:02:35 +0100 | [diff] [blame] | 169 | extern vnet_hw_interface_class_t ethernet_hw_interface_class; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 170 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 171 | typedef struct |
| 172 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 173 | /* Name (a c string). */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 174 | char *name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 175 | |
| 176 | /* Ethernet type in host byte order. */ |
| 177 | ethernet_type_t type; |
| 178 | |
| 179 | /* Node which handles this type. */ |
| 180 | u32 node_index; |
| 181 | |
| 182 | /* Next index for this type. */ |
| 183 | u32 next_index; |
| 184 | } ethernet_type_info_t; |
| 185 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 186 | typedef enum |
| 187 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 188 | #define ethernet_error(n,c,s) ETHERNET_ERROR_##n, |
| 189 | #include <vnet/ethernet/error.def> |
| 190 | #undef ethernet_error |
| 191 | ETHERNET_N_ERROR, |
| 192 | } ethernet_error_t; |
| 193 | |
| 194 | |
| 195 | // Structs used when parsing packet to find sw_if_index |
| 196 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 197 | typedef struct |
| 198 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 199 | u32 sw_if_index; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 200 | u32 flags; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 201 | // config entry is-valid flag |
| 202 | // exact match flags (valid if packet has 0/1/2/3 tags) |
| 203 | // L2 vs L3 forwarding mode |
| 204 | #define SUBINT_CONFIG_MATCH_0_TAG (1<<0) |
| 205 | #define SUBINT_CONFIG_MATCH_1_TAG (1<<1) |
| 206 | #define SUBINT_CONFIG_MATCH_2_TAG (1<<2) |
| 207 | #define SUBINT_CONFIG_MATCH_3_TAG (1<<3) |
| 208 | #define SUBINT_CONFIG_VALID (1<<4) |
| 209 | #define SUBINT_CONFIG_L2 (1<<5) |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 210 | #define SUBINT_CONFIG_P2P (1<<6) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 211 | |
| 212 | } subint_config_t; |
| 213 | |
| 214 | always_inline u32 |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 215 | eth_create_valid_subint_match_flags (u32 num_tags) |
| 216 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 217 | return SUBINT_CONFIG_VALID | (1 << num_tags); |
| 218 | } |
| 219 | |
| 220 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 221 | typedef struct |
| 222 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 223 | subint_config_t untagged_subint; |
| 224 | subint_config_t default_subint; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 225 | u16 dot1q_vlans; // pool id for vlan table |
| 226 | u16 dot1ad_vlans; // pool id for vlan table |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 227 | } main_intf_t; |
| 228 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 229 | typedef struct |
| 230 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 231 | subint_config_t single_tag_subint; |
| 232 | subint_config_t inner_any_subint; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 233 | u32 qinqs; // pool id for qinq table |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 234 | } vlan_intf_t; |
| 235 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 236 | typedef struct |
| 237 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 238 | vlan_intf_t vlans[ETHERNET_N_VLAN]; |
| 239 | } vlan_table_t; |
| 240 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 241 | typedef struct |
| 242 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 243 | subint_config_t subint; |
| 244 | } qinq_intf_t; |
| 245 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 246 | typedef struct |
| 247 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 248 | qinq_intf_t vlans[ETHERNET_N_VLAN]; |
| 249 | } qinq_table_t; |
| 250 | |
| 251 | // Structure mapping to a next index based on ethertype. |
| 252 | // Common ethertypes are stored explicitly, others are |
| 253 | // stored in a sparse table. |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 254 | typedef struct |
| 255 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 256 | /* Sparse vector mapping ethernet type in network byte order |
| 257 | to next index. */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 258 | u16 *input_next_by_type; |
| 259 | u32 *sparse_index_by_input_next_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 260 | |
| 261 | /* cached next indexes for common ethertypes */ |
| 262 | u32 input_next_ip4; |
| 263 | u32 input_next_ip6; |
| 264 | u32 input_next_mpls; |
| 265 | } next_by_ethertype_t; |
| 266 | |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 267 | struct ethernet_main_t_; |
| 268 | |
| 269 | typedef void (ethernet_address_change_function_t) |
| 270 | (struct ethernet_main_t_ * im, u32 sw_if_index, uword opaque); |
| 271 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 272 | typedef struct |
| 273 | { |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 274 | ethernet_address_change_function_t *function; |
| 275 | uword function_opaque; |
| 276 | } ethernet_address_change_ctx_t; |
| 277 | |
| 278 | typedef struct ethernet_main_t_ |
| 279 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 280 | vlib_main_t *vlib_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 281 | |
| 282 | /* next node index for the L3 input node of each ethertype */ |
| 283 | next_by_ethertype_t l3_next; |
| 284 | |
| 285 | /* next node index for L2 interfaces */ |
| 286 | u32 l2_next; |
| 287 | |
| 288 | /* flag and next node index for L3 redirect */ |
| 289 | u32 redirect_l3; |
| 290 | u32 redirect_l3_next; |
| 291 | |
| 292 | /* Pool of ethernet interface instances. */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 293 | ethernet_interface_t *interfaces; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 294 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 295 | ethernet_type_info_t *type_infos; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 296 | |
| 297 | /* Hash tables mapping name/type to type info index. */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 298 | uword *type_info_by_name, *type_info_by_type; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 299 | |
| 300 | // The root of the vlan parsing tables. A vector with one element |
| 301 | // for each main interface, indexed by hw_if_index. |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 302 | main_intf_t *main_intfs; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 303 | |
| 304 | // Pool of vlan tables |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 305 | vlan_table_t *vlan_pool; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 306 | |
| 307 | // Pool of qinq tables; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 308 | qinq_table_t *qinq_pool; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 309 | |
| 310 | /* Set to one to use AB.CD.EF instead of A:B:C:D:E:F as ethernet format. */ |
| 311 | int format_ethernet_address_16bit; |
| 312 | |
Dave Barach | 1f49ed6 | 2016-02-24 11:29:06 -0500 | [diff] [blame] | 313 | /* debug: make sure we don't wipe out an ethernet registration by mistake */ |
| 314 | u8 next_by_ethertype_register_called; |
| 315 | |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 316 | /* Feature arc index */ |
| 317 | u8 output_feature_arc_index; |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 318 | |
| 319 | /* Allocated loopback instances */ |
| 320 | uword *bm_loopback_instances; |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 321 | |
| 322 | /** Functions to call when interface hw address changes. */ |
| 323 | ethernet_address_change_ctx_t *address_change_callbacks; |
| 324 | |
Dave Barach | 5fa4525 | 2020-02-26 10:27:08 -0500 | [diff] [blame] | 325 | /** Default interface MTU */ |
| 326 | u32 default_mtu; |
| 327 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 328 | } ethernet_main_t; |
| 329 | |
Dave Wallace | 71612d6 | 2017-10-24 01:32:41 -0400 | [diff] [blame] | 330 | extern ethernet_main_t ethernet_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 331 | |
| 332 | always_inline ethernet_type_info_t * |
| 333 | ethernet_get_type_info (ethernet_main_t * em, ethernet_type_t type) |
| 334 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 335 | uword *p = hash_get (em->type_info_by_type, type); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 336 | return p ? vec_elt_at_index (em->type_infos, p[0]) : 0; |
| 337 | } |
| 338 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 339 | ethernet_interface_t *ethernet_get_interface (ethernet_main_t * em, |
| 340 | u32 hw_if_index); |
Matthew G Smith | d459bf3 | 2019-09-04 15:01:04 -0500 | [diff] [blame] | 341 | mac_address_t *ethernet_interface_add_del_address (ethernet_main_t * em, |
| 342 | u32 hw_if_index, |
| 343 | const u8 * address, |
| 344 | u8 is_add); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 345 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 346 | clib_error_t *ethernet_register_interface (vnet_main_t * vnm, |
| 347 | u32 dev_class_index, |
| 348 | u32 dev_instance, |
Neale Ranns | 192b13f | 2019-03-15 02:16:20 -0700 | [diff] [blame] | 349 | const u8 * address, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 350 | u32 * hw_if_index_return, |
| 351 | ethernet_flag_change_function_t |
| 352 | flag_change); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 353 | |
| 354 | void ethernet_delete_interface (vnet_main_t * vnm, u32 hw_if_index); |
| 355 | |
| 356 | /* Register given node index to take input for given ethernet type. */ |
| 357 | void |
| 358 | ethernet_register_input_type (vlib_main_t * vm, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 359 | ethernet_type_t type, u32 node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 360 | |
| 361 | /* Register given node index to take input for packet from L2 interfaces. */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 362 | void ethernet_register_l2_input (vlib_main_t * vm, u32 node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 363 | |
| 364 | /* Register given node index to take redirected L3 traffic, and enable L3 redirect */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 365 | void ethernet_register_l3_redirect (vlib_main_t * vm, u32 node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 366 | |
| 367 | /* Formats ethernet address X:X:X:X:X:X */ |
Neale Ranns | 571ab20 | 2018-08-22 04:27:15 -0700 | [diff] [blame] | 368 | u8 *format_mac_address (u8 * s, va_list * args); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 369 | u8 *format_ethernet_address (u8 * s, va_list * args); |
| 370 | u8 *format_ethernet_type (u8 * s, va_list * args); |
| 371 | u8 *format_ethernet_vlan_tci (u8 * s, va_list * va); |
| 372 | u8 *format_ethernet_header (u8 * s, va_list * args); |
| 373 | u8 *format_ethernet_header_with_length (u8 * s, va_list * args); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 374 | |
| 375 | /* Parse ethernet address in either X:X:X:X:X:X unix or X.X.X cisco format. */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 376 | uword unformat_ethernet_address (unformat_input_t * input, va_list * args); |
Neale Ranns | 571ab20 | 2018-08-22 04:27:15 -0700 | [diff] [blame] | 377 | uword unformat_mac_address (unformat_input_t * input, va_list * args); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 378 | |
| 379 | /* Parse ethernet type as 0xXXXX or type name from ethernet/types.def. |
| 380 | In either host or network byte order. */ |
| 381 | uword |
| 382 | unformat_ethernet_type_host_byte_order (unformat_input_t * input, |
| 383 | va_list * args); |
| 384 | uword |
| 385 | unformat_ethernet_type_net_byte_order (unformat_input_t * input, |
| 386 | va_list * args); |
| 387 | |
| 388 | /* Parse ethernet header. */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 389 | uword unformat_ethernet_header (unformat_input_t * input, va_list * args); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 390 | |
| 391 | /* Parse ethernet interface name; return hw_if_index. */ |
| 392 | uword unformat_ethernet_interface (unformat_input_t * input, va_list * args); |
| 393 | |
| 394 | uword unformat_pg_ethernet_header (unformat_input_t * input, va_list * args); |
| 395 | |
| 396 | always_inline void |
| 397 | ethernet_setup_node (vlib_main_t * vm, u32 node_index) |
| 398 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 399 | vlib_node_t *n = vlib_get_node (vm, node_index); |
| 400 | pg_node_t *pn = pg_get_node (node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 401 | |
| 402 | n->format_buffer = format_ethernet_header_with_length; |
| 403 | n->unformat_buffer = unformat_ethernet_header; |
| 404 | pn->unformat_edit = unformat_pg_ethernet_header; |
| 405 | } |
| 406 | |
| 407 | always_inline ethernet_header_t * |
| 408 | ethernet_buffer_get_header (vlib_buffer_t * b) |
| 409 | { |
Damjan Marion | 072401e | 2017-07-13 18:53:27 +0200 | [diff] [blame] | 410 | return (void *) (b->data + vnet_buffer (b)->l2_hdr_offset); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 411 | } |
| 412 | |
Chris Luke | 194ebc5 | 2016-04-25 14:26:55 -0400 | [diff] [blame] | 413 | /** Returns the number of VLAN headers in the current Ethernet frame in the |
| 414 | * buffer. Returns 0, 1, 2 for the known header count. The value 3 indicates |
| 415 | * the number of headers is not known. |
| 416 | */ |
| 417 | #define ethernet_buffer_get_vlan_count(b) ( \ |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 418 | ((b)->flags & VNET_BUFFER_FLAGS_VLAN_BITS) >> VNET_BUFFER_F_LOG2_VLAN_1_DEEP \ |
Chris Luke | 194ebc5 | 2016-04-25 14:26:55 -0400 | [diff] [blame] | 419 | ) |
| 420 | |
| 421 | /** Sets the number of VLAN headers in the current Ethernet frame in the |
| 422 | * buffer. Values 0, 1, 2 indicate the header count. The value 3 indicates |
| 423 | * the number of headers is not known. |
| 424 | */ |
| 425 | #define ethernet_buffer_set_vlan_count(b, v) ( \ |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 426 | (b)->flags = ((b)->flags & ~VNET_BUFFER_FLAGS_VLAN_BITS) | \ |
| 427 | (((v) << VNET_BUFFER_F_LOG2_VLAN_1_DEEP) & VNET_BUFFER_FLAGS_VLAN_BITS) \ |
Chris Luke | 194ebc5 | 2016-04-25 14:26:55 -0400 | [diff] [blame] | 428 | ) |
| 429 | |
| 430 | /** Adjusts the vlan count by the delta in 'v' */ |
| 431 | #define ethernet_buffer_adjust_vlan_count(b, v) ( \ |
| 432 | ethernet_buffer_set_vlan_count(b, \ |
| 433 | (word)ethernet_buffer_get_vlan_count(b) + (word)(v)) \ |
| 434 | ) |
| 435 | |
| 436 | /** Adjusts the vlan count by the header size byte delta in 'v' */ |
| 437 | #define ethernet_buffer_adjust_vlan_count_by_bytes(b, v) ( \ |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 438 | (b)->flags = ((b)->flags & ~VNET_BUFFER_FLAGS_VLAN_BITS) | (( \ |
| 439 | ((b)->flags & VNET_BUFFER_FLAGS_VLAN_BITS) + \ |
| 440 | ((v) << (VNET_BUFFER_F_LOG2_VLAN_1_DEEP - 2)) \ |
| 441 | ) & VNET_BUFFER_FLAGS_VLAN_BITS) \ |
Chris Luke | 194ebc5 | 2016-04-25 14:26:55 -0400 | [diff] [blame] | 442 | ) |
| 443 | |
| 444 | /** |
| 445 | * Determine the size of the Ethernet headers of the current frame in |
| 446 | * the buffer. This uses the VLAN depth flags that are set by |
| 447 | * ethernet-input. Because these flags are stored in the vlib_buffer_t |
| 448 | * "flags" field this count is valid regardless of the node so long as it's |
| 449 | * checked downstream of ethernet-input; That is, the value is not stored in |
| 450 | * the opaque space. |
| 451 | */ |
| 452 | #define ethernet_buffer_header_size(b) ( \ |
| 453 | ethernet_buffer_get_vlan_count((b)) * sizeof(ethernet_vlan_header_t) + \ |
| 454 | sizeof(ethernet_header_t) \ |
| 455 | ) |
| 456 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 457 | ethernet_main_t *ethernet_get_main (vlib_main_t * vm); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 458 | u32 ethernet_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 459 | void ethernet_sw_interface_set_l2_mode (vnet_main_t * vnm, u32 sw_if_index, |
| 460 | u32 l2); |
| 461 | void ethernet_sw_interface_set_l2_mode_noport (vnet_main_t * vnm, |
| 462 | u32 sw_if_index, u32 l2); |
| 463 | void ethernet_set_rx_redirect (vnet_main_t * vnm, vnet_hw_interface_t * hi, |
| 464 | u32 enable); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 465 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 466 | clib_error_t *next_by_ethertype_init (next_by_ethertype_t * l3_next); |
| 467 | clib_error_t *next_by_ethertype_register (next_by_ethertype_t * l3_next, |
| 468 | u32 ethertype, u32 next_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 469 | |
Jon Loeliger | c83c3b7 | 2017-02-23 13:57:35 -0600 | [diff] [blame] | 470 | int vnet_create_loopback_interface (u32 * sw_if_indexp, u8 * mac_address, |
| 471 | u8 is_specified, u32 user_instance); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 472 | int vnet_delete_loopback_interface (u32 sw_if_index); |
Neale Ranns | 669f4e3 | 2019-10-28 07:56:15 -0700 | [diff] [blame] | 473 | int vnet_create_sub_interface (u32 sw_if_index, u32 id, |
| 474 | u32 flags, u16 inner_vlan_id, |
| 475 | u16 outer_vlan_id, u32 * sub_sw_if_index); |
Pavel Kotucek | d85590a | 2016-08-26 13:35:40 +0200 | [diff] [blame] | 476 | int vnet_delete_sub_interface (u32 sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 477 | |
| 478 | // Perform ethernet subinterface classification table lookups given |
| 479 | // the ports's sw_if_index and fields extracted from the ethernet header. |
| 480 | // The resulting tables are used by identify_subint(). |
| 481 | always_inline void |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 482 | eth_vlan_table_lookups (ethernet_main_t * em, |
| 483 | vnet_main_t * vnm, |
| 484 | u32 port_sw_if_index0, |
| 485 | u16 first_ethertype, |
| 486 | u16 outer_id, |
| 487 | u16 inner_id, |
| 488 | vnet_hw_interface_t ** hi, |
| 489 | main_intf_t ** main_intf, |
| 490 | vlan_intf_t ** vlan_intf, qinq_intf_t ** qinq_intf) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 491 | { |
| 492 | vlan_table_t *vlan_table; |
| 493 | qinq_table_t *qinq_table; |
| 494 | u32 vlan_table_id; |
| 495 | |
| 496 | // Read the main, vlan, and qinq interface table entries |
| 497 | // TODO: Consider if/how to prefetch tables. Also consider |
| 498 | // single-entry cache to skip table lookups and identify_subint() |
| 499 | // processing. |
| 500 | *hi = vnet_get_sup_hw_interface (vnm, port_sw_if_index0); |
| 501 | *main_intf = vec_elt_at_index (em->main_intfs, (*hi)->hw_if_index); |
| 502 | |
| 503 | // Always read the vlan and qinq tables, even if there are not that |
| 504 | // many tags on the packet. This makes the lookups and comparisons |
| 505 | // easier (and less branchy). |
| 506 | vlan_table_id = (first_ethertype == ETHERNET_TYPE_DOT1AD) ? |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 507 | (*main_intf)->dot1ad_vlans : (*main_intf)->dot1q_vlans; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 508 | vlan_table = vec_elt_at_index (em->vlan_pool, vlan_table_id); |
| 509 | *vlan_intf = &vlan_table->vlans[outer_id]; |
| 510 | |
| 511 | qinq_table = vec_elt_at_index (em->qinq_pool, (*vlan_intf)->qinqs); |
| 512 | *qinq_intf = &qinq_table->vlans[inner_id]; |
| 513 | } |
| 514 | |
| 515 | |
| 516 | // Determine the subinterface for this packet, given the result of the |
| 517 | // vlan table lookups and vlan header parsing. Check the most specific |
| 518 | // matches first. |
| 519 | // Returns 1 if a matching subinterface was found, otherwise returns 0. |
| 520 | always_inline u32 |
| 521 | eth_identify_subint (vnet_hw_interface_t * hi, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 522 | u32 match_flags, |
| 523 | main_intf_t * main_intf, |
| 524 | vlan_intf_t * vlan_intf, |
| 525 | qinq_intf_t * qinq_intf, |
| 526 | u32 * new_sw_if_index, u8 * error0, u32 * is_l2) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 527 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 528 | subint_config_t *subint; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 529 | |
| 530 | // Each comparison is checking both the valid flag and the number of tags |
| 531 | // (incorporating exact-match/non-exact-match). |
| 532 | |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 533 | // check for specific double tag |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 534 | subint = &qinq_intf->subint; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 535 | if ((subint->flags & match_flags) == match_flags) |
| 536 | goto matched; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 537 | |
| 538 | // check for specific outer and 'any' inner |
| 539 | subint = &vlan_intf->inner_any_subint; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 540 | if ((subint->flags & match_flags) == match_flags) |
| 541 | goto matched; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 542 | |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 543 | // check for specific single tag |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 544 | subint = &vlan_intf->single_tag_subint; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 545 | if ((subint->flags & match_flags) == match_flags) |
| 546 | goto matched; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 547 | |
Mike Bly | 8807674 | 2018-09-24 10:13:06 -0700 | [diff] [blame] | 548 | // check for default interface |
| 549 | subint = &main_intf->default_subint; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 550 | if ((subint->flags & match_flags) == match_flags) |
| 551 | goto matched; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 552 | |
Mike Bly | 8807674 | 2018-09-24 10:13:06 -0700 | [diff] [blame] | 553 | // check for untagged interface |
| 554 | subint = &main_intf->untagged_subint; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 555 | if ((subint->flags & match_flags) == match_flags) |
| 556 | goto matched; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 557 | |
| 558 | // No matching subinterface |
| 559 | *new_sw_if_index = ~0; |
| 560 | *error0 = ETHERNET_ERROR_UNKNOWN_VLAN; |
| 561 | *is_l2 = 0; |
| 562 | return 0; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 563 | |
| 564 | matched: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 565 | *new_sw_if_index = subint->sw_if_index; |
| 566 | *is_l2 = subint->flags & SUBINT_CONFIG_L2; |
| 567 | return 1; |
| 568 | } |
| 569 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 570 | always_inline ethernet_main_t * |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 571 | vnet_get_ethernet_main (void) |
| 572 | { |
| 573 | return ðernet_main; |
| 574 | } |
| 575 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 576 | void ethernet_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai); |
| 577 | u8 *ethernet_build_rewrite (vnet_main_t * vnm, |
| 578 | u32 sw_if_index, |
| 579 | vnet_link_t link_type, const void *dst_address); |
Dave Barach | f8d5068 | 2019-05-14 18:01:44 -0400 | [diff] [blame] | 580 | void ethernet_input_init (vlib_main_t * vm, ethernet_main_t * em); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 581 | |
Jean-Mickael Guerin | 8941ec2 | 2016-03-04 14:14:21 +0100 | [diff] [blame] | 582 | extern vlib_node_registration_t ethernet_input_node; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 583 | |
| 584 | #endif /* included_ethernet_h */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 585 | |
| 586 | /* |
| 587 | * fd.io coding-style-patch-verification: ON |
| 588 | * |
| 589 | * Local Variables: |
| 590 | * eval: (c-set-style "gnu") |
| 591 | * End: |
| 592 | */ |