blob: 9621429e4eecf3133583770f7666f063317c0c00 [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>
Damjan Marion22311502016-10-28 20:30:15 +020046#include <vnet/feature/feature.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070047
Damjan Marion650223c2018-11-14 16:55:53 +010048/* ethernet-input frame flags and scalar data */
49
50/* all packets in frame share same sw_if_index */
51#define ETH_INPUT_FRAME_F_SINGLE_SW_IF_IDX (1 << 0)
52
53/* all ip4 packets in frame have correct ip4 checksum */
54#define ETH_INPUT_FRAME_F_IP4_CKSUM_OK (1 << 1)
55
56typedef struct
57{
58 u32 sw_if_index;
59 u32 hw_if_index;
60} ethernet_input_frame_t;
61
Damjan Marion927b0712018-02-20 08:33:50 +010062#ifdef CLIB_HAVE_VEC128
Damjan Marionc6969b52018-02-19 12:14:06 +010063static const u16x8 tagged_ethertypes = {
64 (u16) ETHERNET_TYPE_VLAN,
65 (u16) ETHERNET_TYPE_DOT1AD,
66 (u16) ETHERNET_TYPE_VLAN_9100,
67 (u16) ETHERNET_TYPE_VLAN_9200,
68 /* duplicate last one to fill register */
69 (u16) ETHERNET_TYPE_VLAN_9200,
70 (u16) ETHERNET_TYPE_VLAN_9200,
71 (u16) ETHERNET_TYPE_VLAN_9200,
72 (u16) ETHERNET_TYPE_VLAN_9200
73};
Damjan Marion927b0712018-02-20 08:33:50 +010074#endif
Damjan Marionc6969b52018-02-19 12:14:06 +010075
Damjan Marionb94bdad2016-09-19 11:32:03 +020076static_always_inline int
77ethernet_frame_is_tagged (u16 type)
78{
Damjan Marionc6969b52018-02-19 12:14:06 +010079#ifdef CLIB_HAVE_VEC128
80 return !u16x8_is_all_zero (tagged_ethertypes == u16x8_splat (type));
Damjan Marionb94bdad2016-09-19 11:32:03 +020081#else
82 if ((type == ETHERNET_TYPE_VLAN) ||
83 (type == ETHERNET_TYPE_DOT1AD) ||
84 (type == ETHERNET_TYPE_VLAN_9100) || (type == ETHERNET_TYPE_VLAN_9200))
85 return 1;
86#endif
87 return 0;
88}
89
Damjan Marionc6969b52018-02-19 12:14:06 +010090static_always_inline int
91ethernet_frame_is_any_tagged_x2 (u16 type0, u16 type1)
92{
93#ifdef CLIB_HAVE_VEC128
94 u16x8 r0 = (tagged_ethertypes == u16x8_splat (type0));
95 u16x8 r1 = (tagged_ethertypes == u16x8_splat (type1));
96 return !u16x8_is_all_zero (r0 | r1);
97#else
98 return ethernet_frame_is_tagged (type0) || ethernet_frame_is_tagged (type1);
99#endif
100}
101
102static_always_inline int
103ethernet_frame_is_any_tagged_x4 (u16 type0, u16 type1, u16 type2, u16 type3)
104{
105#ifdef CLIB_HAVE_VEC128
106 u16x8 r0 = (tagged_ethertypes == u16x8_splat (type0));
107 u16x8 r1 = (tagged_ethertypes == u16x8_splat (type1));
108 u16x8 r2 = (tagged_ethertypes == u16x8_splat (type2));
109 u16x8 r3 = (tagged_ethertypes == u16x8_splat (type3));
110 return !u16x8_is_all_zero (r0 | r1 | r2 | r3);
111#else
112 return ethernet_frame_is_tagged (type0) || ethernet_frame_is_tagged (type1)
113 || ethernet_frame_is_tagged (type2) || ethernet_frame_is_tagged (type3);
114#endif
115}
116
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117/* Max. sized ethernet/vlan header for parsing. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700118typedef struct
119{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 ethernet_header_t ethernet;
121
122 /* Allow up to 2 stacked vlan headers. */
123 ethernet_vlan_header_t vlan[2];
124} ethernet_max_header_t;
125
126struct vnet_hw_interface_t;
127/* Ethernet flag change callback. */
128typedef u32 (ethernet_flag_change_function_t)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700129 (vnet_main_t * vnm, struct vnet_hw_interface_t * hi, u32 flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130
Damjan Marion5c954c42022-01-06 20:36:14 +0100131typedef struct
132{
133 ethernet_flag_change_function_t *flag_change;
134} vnet_eth_if_callbacks_t;
135
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136#define ETHERNET_MIN_PACKET_BYTES 64
137#define ETHERNET_MAX_PACKET_BYTES 9216
138
BenoƮt Ganneb44c77d2020-10-20 16:24:17 +0200139/* ethernet dataplane loads mac address as u64 for efficiency */
140typedef union ethernet_interface_address
141{
142 struct
143 {
144 mac_address_t mac;
145 u16 zero;
146 };
147 u64 as_u64;
148} ethernet_interface_address_t;
149
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150/* Ethernet interface instance. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700151typedef struct ethernet_interface
152{
Damjan Marion650223c2018-11-14 16:55:53 +0100153 u32 flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154
John Lo4a302ee2020-05-12 22:34:39 -0400155 /* Top 16 bits for status and bottom 16 bits for set operation */
156#define ETHERNET_INTERFACE_FLAGS_STATUS_MASK (0xffff0000)
157#define ETHERNET_INTERFACE_FLAGS_SET_OPN_MASK (0x0000ffff)
158
159 /* Interface driver/hw is in L3/non-promiscuous mode so packet DMAC
160 would already be filtered */
161#define ETHERNET_INTERFACE_FLAG_STATUS_L3 (1 << 16)
162
163 /* Set interface to default L3 mode */
164#define ETHERNET_INTERFACE_FLAG_DEFAULT_L3 0
165
166 /* Set interface to accept all packets (promiscuous mode). */
167#define ETHERNET_INTERFACE_FLAG_ACCEPT_ALL 1
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168
169 /* Change MTU on interface from hw interface structure */
John Lo4a302ee2020-05-12 22:34:39 -0400170#define ETHERNET_INTERFACE_FLAG_MTU 2
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171
172 /* Callback, e.g. to turn on/off promiscuous mode */
Damjan Marion5c954c42022-01-06 20:36:14 +0100173 vnet_eth_if_callbacks_t cb;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174
175 u32 driver_instance;
176
177 /* Ethernet (MAC) address for this interface. */
BenoƮt Ganneb44c77d2020-10-20 16:24:17 +0200178 ethernet_interface_address_t address;
Matthew G Smithd459bf32019-09-04 15:01:04 -0500179
180 /* Secondary MAC addresses for this interface */
BenoƮt Ganneb44c77d2020-10-20 16:24:17 +0200181 ethernet_interface_address_t *secondary_addrs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182} ethernet_interface_t;
183
Damjan Marionb8abf872016-03-14 20:02:35 +0100184extern vnet_hw_interface_class_t ethernet_hw_interface_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700186typedef struct
187{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188 /* Name (a c string). */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700189 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190
191 /* Ethernet type in host byte order. */
192 ethernet_type_t type;
193
194 /* Node which handles this type. */
195 u32 node_index;
196
197 /* Next index for this type. */
198 u32 next_index;
199} ethernet_type_info_t;
200
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700201typedef enum
202{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203#define ethernet_error(n,c,s) ETHERNET_ERROR_##n,
204#include <vnet/ethernet/error.def>
205#undef ethernet_error
206 ETHERNET_N_ERROR,
207} ethernet_error_t;
208
209
210// Structs used when parsing packet to find sw_if_index
211
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700212typedef struct
213{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700214 u32 sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700215 u32 flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216 // config entry is-valid flag
217 // exact match flags (valid if packet has 0/1/2/3 tags)
218 // L2 vs L3 forwarding mode
219#define SUBINT_CONFIG_MATCH_0_TAG (1<<0)
220#define SUBINT_CONFIG_MATCH_1_TAG (1<<1)
221#define SUBINT_CONFIG_MATCH_2_TAG (1<<2)
222#define SUBINT_CONFIG_MATCH_3_TAG (1<<3)
223#define SUBINT_CONFIG_VALID (1<<4)
224#define SUBINT_CONFIG_L2 (1<<5)
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200225#define SUBINT_CONFIG_P2P (1<<6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226
227} subint_config_t;
228
229always_inline u32
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700230eth_create_valid_subint_match_flags (u32 num_tags)
231{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232 return SUBINT_CONFIG_VALID | (1 << num_tags);
233}
234
235
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700236typedef struct
237{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238 subint_config_t untagged_subint;
239 subint_config_t default_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700240 u16 dot1q_vlans; // pool id for vlan table
241 u16 dot1ad_vlans; // pool id for vlan table
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242} main_intf_t;
243
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700244typedef struct
245{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246 subint_config_t single_tag_subint;
247 subint_config_t inner_any_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700248 u32 qinqs; // pool id for qinq table
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249} vlan_intf_t;
250
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700251typedef struct
252{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253 vlan_intf_t vlans[ETHERNET_N_VLAN];
254} vlan_table_t;
255
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700256typedef struct
257{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258 subint_config_t subint;
259} qinq_intf_t;
260
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700261typedef struct
262{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263 qinq_intf_t vlans[ETHERNET_N_VLAN];
264} qinq_table_t;
265
266// Structure mapping to a next index based on ethertype.
267// Common ethertypes are stored explicitly, others are
268// stored in a sparse table.
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700269typedef struct
270{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271 /* Sparse vector mapping ethernet type in network byte order
272 to next index. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700273 u16 *input_next_by_type;
274 u32 *sparse_index_by_input_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275
276 /* cached next indexes for common ethertypes */
277 u32 input_next_ip4;
278 u32 input_next_ip6;
279 u32 input_next_mpls;
280} next_by_ethertype_t;
281
Neale Rannscbe25aa2019-09-30 10:53:31 +0000282struct ethernet_main_t_;
283
284typedef void (ethernet_address_change_function_t)
285 (struct ethernet_main_t_ * im, u32 sw_if_index, uword opaque);
286
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700287typedef struct
288{
Neale Rannscbe25aa2019-09-30 10:53:31 +0000289 ethernet_address_change_function_t *function;
290 uword function_opaque;
291} ethernet_address_change_ctx_t;
292
293typedef struct ethernet_main_t_
294{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700295 vlib_main_t *vlib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296
297 /* next node index for the L3 input node of each ethertype */
298 next_by_ethertype_t l3_next;
299
300 /* next node index for L2 interfaces */
301 u32 l2_next;
302
303 /* flag and next node index for L3 redirect */
304 u32 redirect_l3;
305 u32 redirect_l3_next;
306
307 /* Pool of ethernet interface instances. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700308 ethernet_interface_t *interfaces;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700310 ethernet_type_info_t *type_infos;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700311
312 /* Hash tables mapping name/type to type info index. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700313 uword *type_info_by_name, *type_info_by_type;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314
315 // The root of the vlan parsing tables. A vector with one element
316 // for each main interface, indexed by hw_if_index.
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700317 main_intf_t *main_intfs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700318
319 // Pool of vlan tables
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700320 vlan_table_t *vlan_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321
322 // Pool of qinq tables;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700323 qinq_table_t *qinq_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324
325 /* Set to one to use AB.CD.EF instead of A:B:C:D:E:F as ethernet format. */
326 int format_ethernet_address_16bit;
327
Dave Barach1f49ed62016-02-24 11:29:06 -0500328 /* debug: make sure we don't wipe out an ethernet registration by mistake */
329 u8 next_by_ethertype_register_called;
330
Damjan Marion8b3191e2016-11-09 19:54:20 +0100331 /* Feature arc index */
332 u8 output_feature_arc_index;
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600333
334 /* Allocated loopback instances */
335 uword *bm_loopback_instances;
Neale Rannscbe25aa2019-09-30 10:53:31 +0000336
337 /** Functions to call when interface hw address changes. */
338 ethernet_address_change_ctx_t *address_change_callbacks;
339
Dave Barach5fa45252020-02-26 10:27:08 -0500340 /** Default interface MTU */
341 u32 default_mtu;
342
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343} ethernet_main_t;
344
Dave Wallace71612d62017-10-24 01:32:41 -0400345extern ethernet_main_t ethernet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346
347always_inline ethernet_type_info_t *
348ethernet_get_type_info (ethernet_main_t * em, ethernet_type_t type)
349{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700350 uword *p = hash_get (em->type_info_by_type, type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351 return p ? vec_elt_at_index (em->type_infos, p[0]) : 0;
352}
353
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700354ethernet_interface_t *ethernet_get_interface (ethernet_main_t * em,
355 u32 hw_if_index);
Matthew G Smithd459bf32019-09-04 15:01:04 -0500356mac_address_t *ethernet_interface_add_del_address (ethernet_main_t * em,
357 u32 hw_if_index,
358 const u8 * address,
359 u8 is_add);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361void ethernet_delete_interface (vnet_main_t * vnm, u32 hw_if_index);
362
363/* Register given node index to take input for given ethernet type. */
364void
365ethernet_register_input_type (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700366 ethernet_type_t type, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367
368/* Register given node index to take input for packet from L2 interfaces. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700369void ethernet_register_l2_input (vlib_main_t * vm, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370
371/* Register given node index to take redirected L3 traffic, and enable L3 redirect */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700372void ethernet_register_l3_redirect (vlib_main_t * vm, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373
374/* Formats ethernet address X:X:X:X:X:X */
Neale Ranns571ab202018-08-22 04:27:15 -0700375u8 *format_mac_address (u8 * s, va_list * args);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700376u8 *format_ethernet_address (u8 * s, va_list * args);
377u8 *format_ethernet_type (u8 * s, va_list * args);
378u8 *format_ethernet_vlan_tci (u8 * s, va_list * va);
379u8 *format_ethernet_header (u8 * s, va_list * args);
380u8 *format_ethernet_header_with_length (u8 * s, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381
382/* 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 -0700383uword unformat_ethernet_address (unformat_input_t * input, va_list * args);
Neale Ranns571ab202018-08-22 04:27:15 -0700384uword unformat_mac_address (unformat_input_t * input, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385
386/* Parse ethernet type as 0xXXXX or type name from ethernet/types.def.
387 In either host or network byte order. */
388uword
389unformat_ethernet_type_host_byte_order (unformat_input_t * input,
390 va_list * args);
391uword
392unformat_ethernet_type_net_byte_order (unformat_input_t * input,
393 va_list * args);
394
395/* Parse ethernet header. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700396uword unformat_ethernet_header (unformat_input_t * input, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397
398/* Parse ethernet interface name; return hw_if_index. */
399uword unformat_ethernet_interface (unformat_input_t * input, va_list * args);
400
401uword unformat_pg_ethernet_header (unformat_input_t * input, va_list * args);
402
Neale Ranns68d48d92021-06-03 14:59:47 +0000403void ethernet_setup_node (vlib_main_t *vm, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700404
405always_inline ethernet_header_t *
406ethernet_buffer_get_header (vlib_buffer_t * b)
407{
Damjan Marion072401e2017-07-13 18:53:27 +0200408 return (void *) (b->data + vnet_buffer (b)->l2_hdr_offset);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409}
410
Chris Luke194ebc52016-04-25 14:26:55 -0400411/** Returns the number of VLAN headers in the current Ethernet frame in the
412 * buffer. Returns 0, 1, 2 for the known header count. The value 3 indicates
413 * the number of headers is not known.
414 */
415#define ethernet_buffer_get_vlan_count(b) ( \
Damjan Marion213b5aa2017-07-13 21:19:27 +0200416 ((b)->flags & VNET_BUFFER_FLAGS_VLAN_BITS) >> VNET_BUFFER_F_LOG2_VLAN_1_DEEP \
Chris Luke194ebc52016-04-25 14:26:55 -0400417)
418
419/** Sets the number of VLAN headers in the current Ethernet frame in the
420 * buffer. Values 0, 1, 2 indicate the header count. The value 3 indicates
421 * the number of headers is not known.
422 */
423#define ethernet_buffer_set_vlan_count(b, v) ( \
Damjan Marion213b5aa2017-07-13 21:19:27 +0200424 (b)->flags = ((b)->flags & ~VNET_BUFFER_FLAGS_VLAN_BITS) | \
425 (((v) << VNET_BUFFER_F_LOG2_VLAN_1_DEEP) & VNET_BUFFER_FLAGS_VLAN_BITS) \
Chris Luke194ebc52016-04-25 14:26:55 -0400426)
427
428/** Adjusts the vlan count by the delta in 'v' */
429#define ethernet_buffer_adjust_vlan_count(b, v) ( \
430 ethernet_buffer_set_vlan_count(b, \
431 (word)ethernet_buffer_get_vlan_count(b) + (word)(v)) \
432)
433
434/** Adjusts the vlan count by the header size byte delta in 'v' */
435#define ethernet_buffer_adjust_vlan_count_by_bytes(b, v) ( \
Damjan Marion213b5aa2017-07-13 21:19:27 +0200436 (b)->flags = ((b)->flags & ~VNET_BUFFER_FLAGS_VLAN_BITS) | (( \
437 ((b)->flags & VNET_BUFFER_FLAGS_VLAN_BITS) + \
438 ((v) << (VNET_BUFFER_F_LOG2_VLAN_1_DEEP - 2)) \
439 ) & VNET_BUFFER_FLAGS_VLAN_BITS) \
Chris Luke194ebc52016-04-25 14:26:55 -0400440)
441
442/**
443 * Determine the size of the Ethernet headers of the current frame in
444 * the buffer. This uses the VLAN depth flags that are set by
445 * ethernet-input. Because these flags are stored in the vlib_buffer_t
446 * "flags" field this count is valid regardless of the node so long as it's
447 * checked downstream of ethernet-input; That is, the value is not stored in
448 * the opaque space.
449 */
450#define ethernet_buffer_header_size(b) ( \
451 ethernet_buffer_get_vlan_count((b)) * sizeof(ethernet_vlan_header_t) + \
452 sizeof(ethernet_header_t) \
453)
454
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700455ethernet_main_t *ethernet_get_main (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700456u32 ethernet_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700457void ethernet_sw_interface_set_l2_mode (vnet_main_t * vnm, u32 sw_if_index,
458 u32 l2);
459void ethernet_sw_interface_set_l2_mode_noport (vnet_main_t * vnm,
460 u32 sw_if_index, u32 l2);
461void ethernet_set_rx_redirect (vnet_main_t * vnm, vnet_hw_interface_t * hi,
462 u32 enable);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700463
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700464clib_error_t *next_by_ethertype_init (next_by_ethertype_t * l3_next);
465clib_error_t *next_by_ethertype_register (next_by_ethertype_t * l3_next,
466 u32 ethertype, u32 next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700467
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600468int vnet_create_loopback_interface (u32 * sw_if_indexp, u8 * mac_address,
469 u8 is_specified, u32 user_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700470int vnet_delete_loopback_interface (u32 sw_if_index);
Neale Ranns669f4e32019-10-28 07:56:15 -0700471int vnet_create_sub_interface (u32 sw_if_index, u32 id,
472 u32 flags, u16 inner_vlan_id,
473 u16 outer_vlan_id, u32 * sub_sw_if_index);
Pavel Kotucekd85590a2016-08-26 13:35:40 +0200474int vnet_delete_sub_interface (u32 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475
476// Perform ethernet subinterface classification table lookups given
477// the ports's sw_if_index and fields extracted from the ethernet header.
478// The resulting tables are used by identify_subint().
479always_inline void
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700480eth_vlan_table_lookups (ethernet_main_t * em,
481 vnet_main_t * vnm,
482 u32 port_sw_if_index0,
483 u16 first_ethertype,
484 u16 outer_id,
485 u16 inner_id,
486 vnet_hw_interface_t ** hi,
487 main_intf_t ** main_intf,
488 vlan_intf_t ** vlan_intf, qinq_intf_t ** qinq_intf)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489{
490 vlan_table_t *vlan_table;
491 qinq_table_t *qinq_table;
492 u32 vlan_table_id;
493
494 // Read the main, vlan, and qinq interface table entries
495 // TODO: Consider if/how to prefetch tables. Also consider
496 // single-entry cache to skip table lookups and identify_subint()
497 // processing.
498 *hi = vnet_get_sup_hw_interface (vnm, port_sw_if_index0);
499 *main_intf = vec_elt_at_index (em->main_intfs, (*hi)->hw_if_index);
500
501 // Always read the vlan and qinq tables, even if there are not that
502 // many tags on the packet. This makes the lookups and comparisons
503 // easier (and less branchy).
504 vlan_table_id = (first_ethertype == ETHERNET_TYPE_DOT1AD) ?
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700505 (*main_intf)->dot1ad_vlans : (*main_intf)->dot1q_vlans;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506 vlan_table = vec_elt_at_index (em->vlan_pool, vlan_table_id);
507 *vlan_intf = &vlan_table->vlans[outer_id];
508
509 qinq_table = vec_elt_at_index (em->qinq_pool, (*vlan_intf)->qinqs);
510 *qinq_intf = &qinq_table->vlans[inner_id];
511}
512
513
514// Determine the subinterface for this packet, given the result of the
515// vlan table lookups and vlan header parsing. Check the most specific
516// matches first.
517// Returns 1 if a matching subinterface was found, otherwise returns 0.
518always_inline u32
519eth_identify_subint (vnet_hw_interface_t * hi,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700520 u32 match_flags,
521 main_intf_t * main_intf,
522 vlan_intf_t * vlan_intf,
523 qinq_intf_t * qinq_intf,
524 u32 * new_sw_if_index, u8 * error0, u32 * is_l2)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700526 subint_config_t *subint;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527
528 // Each comparison is checking both the valid flag and the number of tags
529 // (incorporating exact-match/non-exact-match).
530
Damjan Marion607de1a2016-08-16 22:53:54 +0200531 // check for specific double tag
Ed Warnickecb9cada2015-12-08 15:45:58 -0700532 subint = &qinq_intf->subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700533 if ((subint->flags & match_flags) == match_flags)
534 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700535
536 // check for specific outer and 'any' inner
537 subint = &vlan_intf->inner_any_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700538 if ((subint->flags & match_flags) == match_flags)
539 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700540
Damjan Marion607de1a2016-08-16 22:53:54 +0200541 // check for specific single tag
Ed Warnickecb9cada2015-12-08 15:45:58 -0700542 subint = &vlan_intf->single_tag_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700543 if ((subint->flags & match_flags) == match_flags)
544 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545
Mike Bly88076742018-09-24 10:13:06 -0700546 // check for default interface
547 subint = &main_intf->default_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700548 if ((subint->flags & match_flags) == match_flags)
549 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700550
Mike Bly88076742018-09-24 10:13:06 -0700551 // check for untagged interface
552 subint = &main_intf->untagged_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700553 if ((subint->flags & match_flags) == match_flags)
554 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555
556 // No matching subinterface
557 *new_sw_if_index = ~0;
558 *error0 = ETHERNET_ERROR_UNKNOWN_VLAN;
559 *is_l2 = 0;
560 return 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700561
562matched:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563 *new_sw_if_index = subint->sw_if_index;
564 *is_l2 = subint->flags & SUBINT_CONFIG_L2;
565 return 1;
566}
567
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700568always_inline ethernet_main_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569vnet_get_ethernet_main (void)
570{
571 return &ethernet_main;
572}
573
Damjan Marion5c954c42022-01-06 20:36:14 +0100574typedef struct
575{
576 u32 dev_class_index;
577 u32 dev_instance;
578 vnet_eth_if_callbacks_t cb;
579 const u8 *address;
580} vnet_eth_interface_registration_t;
581
582u32 vnet_eth_register_interface (vnet_main_t *vnm,
583 vnet_eth_interface_registration_t *r);
Neale Rannsb80c5362016-10-08 13:03:40 +0100584void ethernet_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai);
585u8 *ethernet_build_rewrite (vnet_main_t * vnm,
586 u32 sw_if_index,
587 vnet_link_t link_type, const void *dst_address);
Dave Barachf8d50682019-05-14 18:01:44 -0400588void ethernet_input_init (vlib_main_t * vm, ethernet_main_t * em);
Neale Rannsb80c5362016-10-08 13:03:40 +0100589
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100590extern vlib_node_registration_t ethernet_input_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700591
592#endif /* included_ethernet_h */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700593
594/*
595 * fd.io coding-style-patch-verification: ON
596 *
597 * Local Variables:
598 * eval: (c-set-style "gnu")
599 * End:
600 */