blob: afb932931b707d3a4d4002905d483606f76be17f [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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 Ranns37029302018-08-10 05:30:06 -070045#include <vnet/ethernet/mac_address.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070046#include <vnet/pg/pg.h>
Damjan Marion22311502016-10-28 20:30:15 +020047#include <vnet/feature/feature.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070048
Damjan Marion650223c2018-11-14 16:55:53 +010049/* 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
57typedef struct
58{
59 u32 sw_if_index;
60 u32 hw_if_index;
61} ethernet_input_frame_t;
62
Damjan Marion927b0712018-02-20 08:33:50 +010063#ifdef CLIB_HAVE_VEC128
Damjan Marionc6969b52018-02-19 12:14:06 +010064static 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 Marion927b0712018-02-20 08:33:50 +010075#endif
Damjan Marionc6969b52018-02-19 12:14:06 +010076
Damjan Marionb94bdad2016-09-19 11:32:03 +020077static_always_inline int
78ethernet_frame_is_tagged (u16 type)
79{
Damjan Marionc6969b52018-02-19 12:14:06 +010080#ifdef CLIB_HAVE_VEC128
81 return !u16x8_is_all_zero (tagged_ethertypes == u16x8_splat (type));
Damjan Marionb94bdad2016-09-19 11:32:03 +020082#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 Marionc6969b52018-02-19 12:14:06 +010091static_always_inline int
92ethernet_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
103static_always_inline int
104ethernet_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 Warnickecb9cada2015-12-08 15:45:58 -0700118/* Max. sized ethernet/vlan header for parsing. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700119typedef struct
120{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121 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
127struct vnet_hw_interface_t;
128/* Ethernet flag change callback. */
129typedef u32 (ethernet_flag_change_function_t)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700130 (vnet_main_t * vnm, struct vnet_hw_interface_t * hi, u32 flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131
132#define ETHERNET_MIN_PACKET_BYTES 64
133#define ETHERNET_MAX_PACKET_BYTES 9216
134
135/* Ethernet interface instance. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700136typedef struct ethernet_interface
137{
Damjan Marion650223c2018-11-14 16:55:53 +0100138 u32 flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139
John Lo4a302ee2020-05-12 22:34:39 -0400140 /* 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 Warnickecb9cada2015-12-08 15:45:58 -0700153
154 /* Change MTU on interface from hw interface structure */
John Lo4a302ee2020-05-12 22:34:39 -0400155#define ETHERNET_INTERFACE_FLAG_MTU 2
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156
157 /* Callback, e.g. to turn on/off promiscuous mode */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700158 ethernet_flag_change_function_t *flag_change;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159
160 u32 driver_instance;
161
162 /* Ethernet (MAC) address for this interface. */
163 u8 address[6];
Matthew G Smithd459bf32019-09-04 15:01:04 -0500164
165 /* Secondary MAC addresses for this interface */
166 mac_address_t *secondary_addrs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167} ethernet_interface_t;
168
Damjan Marionb8abf872016-03-14 20:02:35 +0100169extern vnet_hw_interface_class_t ethernet_hw_interface_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700171typedef struct
172{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173 /* Name (a c string). */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700174 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175
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)e70dcc82016-08-15 18:33:19 -0700186typedef enum
187{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188#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)e70dcc82016-08-15 18:33:19 -0700197typedef struct
198{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199 u32 sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700200 u32 flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201 // 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 Kotucek15ac81c2017-06-20 14:00:26 +0200210#define SUBINT_CONFIG_P2P (1<<6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211
212} subint_config_t;
213
214always_inline u32
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700215eth_create_valid_subint_match_flags (u32 num_tags)
216{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217 return SUBINT_CONFIG_VALID | (1 << num_tags);
218}
219
220
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700221typedef struct
222{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223 subint_config_t untagged_subint;
224 subint_config_t default_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700225 u16 dot1q_vlans; // pool id for vlan table
226 u16 dot1ad_vlans; // pool id for vlan table
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227} main_intf_t;
228
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700229typedef struct
230{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231 subint_config_t single_tag_subint;
232 subint_config_t inner_any_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700233 u32 qinqs; // pool id for qinq table
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234} vlan_intf_t;
235
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700236typedef struct
237{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238 vlan_intf_t vlans[ETHERNET_N_VLAN];
239} vlan_table_t;
240
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700241typedef struct
242{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243 subint_config_t subint;
244} qinq_intf_t;
245
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700246typedef struct
247{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700248 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)e70dcc82016-08-15 18:33:19 -0700254typedef struct
255{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 /* Sparse vector mapping ethernet type in network byte order
257 to next index. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700258 u16 *input_next_by_type;
259 u32 *sparse_index_by_input_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260
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 Rannscbe25aa2019-09-30 10:53:31 +0000267struct ethernet_main_t_;
268
269typedef void (ethernet_address_change_function_t)
270 (struct ethernet_main_t_ * im, u32 sw_if_index, uword opaque);
271
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700272typedef struct
273{
Neale Rannscbe25aa2019-09-30 10:53:31 +0000274 ethernet_address_change_function_t *function;
275 uword function_opaque;
276} ethernet_address_change_ctx_t;
277
278typedef struct ethernet_main_t_
279{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700280 vlib_main_t *vlib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281
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)e70dcc82016-08-15 18:33:19 -0700293 ethernet_interface_t *interfaces;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700295 ethernet_type_info_t *type_infos;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296
297 /* Hash tables mapping name/type to type info index. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700298 uword *type_info_by_name, *type_info_by_type;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299
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)e70dcc82016-08-15 18:33:19 -0700302 main_intf_t *main_intfs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303
304 // Pool of vlan tables
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700305 vlan_table_t *vlan_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306
307 // Pool of qinq tables;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700308 qinq_table_t *qinq_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309
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 Barach1f49ed62016-02-24 11:29:06 -0500313 /* debug: make sure we don't wipe out an ethernet registration by mistake */
314 u8 next_by_ethertype_register_called;
315
Damjan Marion8b3191e2016-11-09 19:54:20 +0100316 /* Feature arc index */
317 u8 output_feature_arc_index;
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600318
319 /* Allocated loopback instances */
320 uword *bm_loopback_instances;
Neale Rannscbe25aa2019-09-30 10:53:31 +0000321
322 /** Functions to call when interface hw address changes. */
323 ethernet_address_change_ctx_t *address_change_callbacks;
324
Dave Barach5fa45252020-02-26 10:27:08 -0500325 /** Default interface MTU */
326 u32 default_mtu;
327
Ed Warnickecb9cada2015-12-08 15:45:58 -0700328} ethernet_main_t;
329
Dave Wallace71612d62017-10-24 01:32:41 -0400330extern ethernet_main_t ethernet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331
332always_inline ethernet_type_info_t *
333ethernet_get_type_info (ethernet_main_t * em, ethernet_type_t type)
334{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700335 uword *p = hash_get (em->type_info_by_type, type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336 return p ? vec_elt_at_index (em->type_infos, p[0]) : 0;
337}
338
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700339ethernet_interface_t *ethernet_get_interface (ethernet_main_t * em,
340 u32 hw_if_index);
Matthew G Smithd459bf32019-09-04 15:01:04 -0500341mac_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 Warnickecb9cada2015-12-08 15:45:58 -0700345
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700346clib_error_t *ethernet_register_interface (vnet_main_t * vnm,
347 u32 dev_class_index,
348 u32 dev_instance,
Neale Ranns192b13f2019-03-15 02:16:20 -0700349 const u8 * address,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700350 u32 * hw_if_index_return,
351 ethernet_flag_change_function_t
352 flag_change);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353
354void ethernet_delete_interface (vnet_main_t * vnm, u32 hw_if_index);
355
356/* Register given node index to take input for given ethernet type. */
357void
358ethernet_register_input_type (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700359 ethernet_type_t type, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360
361/* Register given node index to take input for packet from L2 interfaces. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700362void ethernet_register_l2_input (vlib_main_t * vm, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700363
364/* Register given node index to take redirected L3 traffic, and enable L3 redirect */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700365void ethernet_register_l3_redirect (vlib_main_t * vm, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366
367/* Formats ethernet address X:X:X:X:X:X */
Neale Ranns571ab202018-08-22 04:27:15 -0700368u8 *format_mac_address (u8 * s, va_list * args);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700369u8 *format_ethernet_address (u8 * s, va_list * args);
370u8 *format_ethernet_type (u8 * s, va_list * args);
371u8 *format_ethernet_vlan_tci (u8 * s, va_list * va);
372u8 *format_ethernet_header (u8 * s, va_list * args);
373u8 *format_ethernet_header_with_length (u8 * s, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374
375/* Parse ethernet address in either X:X:X:X:X:X unix or X.X.X cisco format. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700376uword unformat_ethernet_address (unformat_input_t * input, va_list * args);
Neale Ranns571ab202018-08-22 04:27:15 -0700377uword unformat_mac_address (unformat_input_t * input, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378
379/* Parse ethernet type as 0xXXXX or type name from ethernet/types.def.
380 In either host or network byte order. */
381uword
382unformat_ethernet_type_host_byte_order (unformat_input_t * input,
383 va_list * args);
384uword
385unformat_ethernet_type_net_byte_order (unformat_input_t * input,
386 va_list * args);
387
388/* Parse ethernet header. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700389uword unformat_ethernet_header (unformat_input_t * input, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390
391/* Parse ethernet interface name; return hw_if_index. */
392uword unformat_ethernet_interface (unformat_input_t * input, va_list * args);
393
394uword unformat_pg_ethernet_header (unformat_input_t * input, va_list * args);
395
396always_inline void
397ethernet_setup_node (vlib_main_t * vm, u32 node_index)
398{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700399 vlib_node_t *n = vlib_get_node (vm, node_index);
400 pg_node_t *pn = pg_get_node (node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700401
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
407always_inline ethernet_header_t *
408ethernet_buffer_get_header (vlib_buffer_t * b)
409{
Damjan Marion072401e2017-07-13 18:53:27 +0200410 return (void *) (b->data + vnet_buffer (b)->l2_hdr_offset);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411}
412
Chris Luke194ebc52016-04-25 14:26:55 -0400413/** 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 Marion213b5aa2017-07-13 21:19:27 +0200418 ((b)->flags & VNET_BUFFER_FLAGS_VLAN_BITS) >> VNET_BUFFER_F_LOG2_VLAN_1_DEEP \
Chris Luke194ebc52016-04-25 14:26:55 -0400419)
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 Marion213b5aa2017-07-13 21:19:27 +0200426 (b)->flags = ((b)->flags & ~VNET_BUFFER_FLAGS_VLAN_BITS) | \
427 (((v) << VNET_BUFFER_F_LOG2_VLAN_1_DEEP) & VNET_BUFFER_FLAGS_VLAN_BITS) \
Chris Luke194ebc52016-04-25 14:26:55 -0400428)
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 Marion213b5aa2017-07-13 21:19:27 +0200438 (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 Luke194ebc52016-04-25 14:26:55 -0400442)
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)e70dcc82016-08-15 18:33:19 -0700457ethernet_main_t *ethernet_get_main (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700458u32 ethernet_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700459void ethernet_sw_interface_set_l2_mode (vnet_main_t * vnm, u32 sw_if_index,
460 u32 l2);
461void ethernet_sw_interface_set_l2_mode_noport (vnet_main_t * vnm,
462 u32 sw_if_index, u32 l2);
463void ethernet_set_rx_redirect (vnet_main_t * vnm, vnet_hw_interface_t * hi,
464 u32 enable);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700465
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700466clib_error_t *next_by_ethertype_init (next_by_ethertype_t * l3_next);
467clib_error_t *next_by_ethertype_register (next_by_ethertype_t * l3_next,
468 u32 ethertype, u32 next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600470int vnet_create_loopback_interface (u32 * sw_if_indexp, u8 * mac_address,
471 u8 is_specified, u32 user_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472int vnet_delete_loopback_interface (u32 sw_if_index);
Neale Ranns669f4e32019-10-28 07:56:15 -0700473int 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 Kotucekd85590a2016-08-26 13:35:40 +0200476int vnet_delete_sub_interface (u32 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700477
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().
481always_inline void
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700482eth_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 Warnickecb9cada2015-12-08 15:45:58 -0700491{
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)e70dcc82016-08-15 18:33:19 -0700507 (*main_intf)->dot1ad_vlans : (*main_intf)->dot1q_vlans;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508 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.
520always_inline u32
521eth_identify_subint (vnet_hw_interface_t * hi,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700522 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 Warnickecb9cada2015-12-08 15:45:58 -0700527{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700528 subint_config_t *subint;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700529
530 // Each comparison is checking both the valid flag and the number of tags
531 // (incorporating exact-match/non-exact-match).
532
Damjan Marion607de1a2016-08-16 22:53:54 +0200533 // check for specific double tag
Ed Warnickecb9cada2015-12-08 15:45:58 -0700534 subint = &qinq_intf->subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700535 if ((subint->flags & match_flags) == match_flags)
536 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700537
538 // check for specific outer and 'any' inner
539 subint = &vlan_intf->inner_any_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700540 if ((subint->flags & match_flags) == match_flags)
541 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700542
Damjan Marion607de1a2016-08-16 22:53:54 +0200543 // check for specific single tag
Ed Warnickecb9cada2015-12-08 15:45:58 -0700544 subint = &vlan_intf->single_tag_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700545 if ((subint->flags & match_flags) == match_flags)
546 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547
Mike Bly88076742018-09-24 10:13:06 -0700548 // check for default interface
549 subint = &main_intf->default_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700550 if ((subint->flags & match_flags) == match_flags)
551 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700552
Mike Bly88076742018-09-24 10:13:06 -0700553 // check for untagged interface
554 subint = &main_intf->untagged_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700555 if ((subint->flags & match_flags) == match_flags)
556 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557
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)e70dcc82016-08-15 18:33:19 -0700563
564matched:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565 *new_sw_if_index = subint->sw_if_index;
566 *is_l2 = subint->flags & SUBINT_CONFIG_L2;
567 return 1;
568}
569
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700570always_inline ethernet_main_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571vnet_get_ethernet_main (void)
572{
573 return &ethernet_main;
574}
575
Neale Rannsb80c5362016-10-08 13:03:40 +0100576void ethernet_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai);
577u8 *ethernet_build_rewrite (vnet_main_t * vnm,
578 u32 sw_if_index,
579 vnet_link_t link_type, const void *dst_address);
Dave Barachf8d50682019-05-14 18:01:44 -0400580void ethernet_input_init (vlib_main_t * vm, ethernet_main_t * em);
Neale Rannsb80c5362016-10-08 13:03:40 +0100581
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100582extern vlib_node_registration_t ethernet_input_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583
584#endif /* included_ethernet_h */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700585
586/*
587 * fd.io coding-style-patch-verification: ON
588 *
589 * Local Variables:
590 * eval: (c-set-style "gnu")
591 * End:
592 */