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