blob: 9b19143b03faddf0ad501bccea5e5381bebc096d [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
140 /* Accept all packets (promiscuous mode). */
141#define ETHERNET_INTERFACE_FLAG_ACCEPT_ALL (1 << 0)
142#define ETHERNET_INTERFACE_FLAG_CONFIG_PROMISC(flags) \
143 (((flags) & ~ETHERNET_INTERFACE_FLAG_ACCEPT_ALL) == 0)
144
145 /* Change MTU on interface from hw interface structure */
146#define ETHERNET_INTERFACE_FLAG_MTU (1 << 1)
147#define ETHERNET_INTERFACE_FLAG_CONFIG_MTU(flags) \
148 ((flags) & ETHERNET_INTERFACE_FLAG_MTU)
149
150 /* Callback, e.g. to turn on/off promiscuous mode */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700151 ethernet_flag_change_function_t *flag_change;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152
153 u32 driver_instance;
154
155 /* Ethernet (MAC) address for this interface. */
156 u8 address[6];
157} ethernet_interface_t;
158
Damjan Marionb8abf872016-03-14 20:02:35 +0100159extern vnet_hw_interface_class_t ethernet_hw_interface_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700161typedef struct
162{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163 /* Name (a c string). */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700164 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165
166 /* Ethernet type in host byte order. */
167 ethernet_type_t type;
168
169 /* Node which handles this type. */
170 u32 node_index;
171
172 /* Next index for this type. */
173 u32 next_index;
174} ethernet_type_info_t;
175
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700176typedef enum
177{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178#define ethernet_error(n,c,s) ETHERNET_ERROR_##n,
179#include <vnet/ethernet/error.def>
180#undef ethernet_error
181 ETHERNET_N_ERROR,
182} ethernet_error_t;
183
184
185// Structs used when parsing packet to find sw_if_index
186
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700187typedef struct
188{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189 u32 sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700190 u32 flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191 // config entry is-valid flag
192 // exact match flags (valid if packet has 0/1/2/3 tags)
193 // L2 vs L3 forwarding mode
194#define SUBINT_CONFIG_MATCH_0_TAG (1<<0)
195#define SUBINT_CONFIG_MATCH_1_TAG (1<<1)
196#define SUBINT_CONFIG_MATCH_2_TAG (1<<2)
197#define SUBINT_CONFIG_MATCH_3_TAG (1<<3)
198#define SUBINT_CONFIG_VALID (1<<4)
199#define SUBINT_CONFIG_L2 (1<<5)
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200200#define SUBINT_CONFIG_P2P (1<<6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201
202} subint_config_t;
203
204always_inline u32
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700205eth_create_valid_subint_match_flags (u32 num_tags)
206{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207 return SUBINT_CONFIG_VALID | (1 << num_tags);
208}
209
210
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700211typedef struct
212{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213 subint_config_t untagged_subint;
214 subint_config_t default_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700215 u16 dot1q_vlans; // pool id for vlan table
216 u16 dot1ad_vlans; // pool id for vlan table
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217} main_intf_t;
218
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700219typedef struct
220{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221 subint_config_t single_tag_subint;
222 subint_config_t inner_any_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700223 u32 qinqs; // pool id for qinq table
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224} vlan_intf_t;
225
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700226typedef struct
227{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228 vlan_intf_t vlans[ETHERNET_N_VLAN];
229} vlan_table_t;
230
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700231typedef struct
232{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233 subint_config_t subint;
234} qinq_intf_t;
235
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700236typedef struct
237{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238 qinq_intf_t vlans[ETHERNET_N_VLAN];
239} qinq_table_t;
240
241// Structure mapping to a next index based on ethertype.
242// Common ethertypes are stored explicitly, others are
243// stored in a sparse table.
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700244typedef struct
245{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246 /* Sparse vector mapping ethernet type in network byte order
247 to next index. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700248 u16 *input_next_by_type;
249 u32 *sparse_index_by_input_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
251 /* cached next indexes for common ethertypes */
252 u32 input_next_ip4;
253 u32 input_next_ip6;
254 u32 input_next_mpls;
255} next_by_ethertype_t;
256
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700257typedef struct
258{
259 vlib_main_t *vlib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260
261 /* next node index for the L3 input node of each ethertype */
262 next_by_ethertype_t l3_next;
263
264 /* next node index for L2 interfaces */
265 u32 l2_next;
266
267 /* flag and next node index for L3 redirect */
268 u32 redirect_l3;
269 u32 redirect_l3_next;
270
271 /* Pool of ethernet interface instances. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700272 ethernet_interface_t *interfaces;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700273
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700274 ethernet_type_info_t *type_infos;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275
276 /* Hash tables mapping name/type to type info index. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700277 uword *type_info_by_name, *type_info_by_type;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278
279 // The root of the vlan parsing tables. A vector with one element
280 // for each main interface, indexed by hw_if_index.
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700281 main_intf_t *main_intfs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282
283 // Pool of vlan tables
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700284 vlan_table_t *vlan_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285
286 // Pool of qinq tables;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700287 qinq_table_t *qinq_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288
289 /* Set to one to use AB.CD.EF instead of A:B:C:D:E:F as ethernet format. */
290 int format_ethernet_address_16bit;
291
Dave Barach1f49ed62016-02-24 11:29:06 -0500292 /* debug: make sure we don't wipe out an ethernet registration by mistake */
293 u8 next_by_ethertype_register_called;
294
Damjan Marion8b3191e2016-11-09 19:54:20 +0100295 /* Feature arc index */
296 u8 output_feature_arc_index;
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600297
298 /* Allocated loopback instances */
299 uword *bm_loopback_instances;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700300} ethernet_main_t;
301
Dave Wallace71612d62017-10-24 01:32:41 -0400302extern ethernet_main_t ethernet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303
304always_inline ethernet_type_info_t *
305ethernet_get_type_info (ethernet_main_t * em, ethernet_type_t type)
306{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700307 uword *p = hash_get (em->type_info_by_type, type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700308 return p ? vec_elt_at_index (em->type_infos, p[0]) : 0;
309}
310
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700311ethernet_interface_t *ethernet_get_interface (ethernet_main_t * em,
312 u32 hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700314clib_error_t *ethernet_register_interface (vnet_main_t * vnm,
315 u32 dev_class_index,
316 u32 dev_instance,
317 u8 * address,
318 u32 * hw_if_index_return,
319 ethernet_flag_change_function_t
320 flag_change);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321
322void ethernet_delete_interface (vnet_main_t * vnm, u32 hw_if_index);
323
324/* Register given node index to take input for given ethernet type. */
325void
326ethernet_register_input_type (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700327 ethernet_type_t type, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700328
329/* Register given node index to take input for packet from L2 interfaces. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700330void ethernet_register_l2_input (vlib_main_t * vm, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331
332/* Register given node index to take redirected L3 traffic, and enable L3 redirect */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700333void ethernet_register_l3_redirect (vlib_main_t * vm, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334
335/* Formats ethernet address X:X:X:X:X:X */
Neale Ranns571ab202018-08-22 04:27:15 -0700336u8 *format_mac_address (u8 * s, va_list * args);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700337u8 *format_ethernet_address (u8 * s, va_list * args);
338u8 *format_ethernet_type (u8 * s, va_list * args);
339u8 *format_ethernet_vlan_tci (u8 * s, va_list * va);
340u8 *format_ethernet_header (u8 * s, va_list * args);
341u8 *format_ethernet_header_with_length (u8 * s, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700342
343/* 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 -0700344uword unformat_ethernet_address (unformat_input_t * input, va_list * args);
Neale Ranns571ab202018-08-22 04:27:15 -0700345uword unformat_mac_address (unformat_input_t * input, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346
347/* Parse ethernet type as 0xXXXX or type name from ethernet/types.def.
348 In either host or network byte order. */
349uword
350unformat_ethernet_type_host_byte_order (unformat_input_t * input,
351 va_list * args);
352uword
353unformat_ethernet_type_net_byte_order (unformat_input_t * input,
354 va_list * args);
355
356/* Parse ethernet header. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700357uword unformat_ethernet_header (unformat_input_t * input, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358
359/* Parse ethernet interface name; return hw_if_index. */
360uword unformat_ethernet_interface (unformat_input_t * input, va_list * args);
361
362uword unformat_pg_ethernet_header (unformat_input_t * input, va_list * args);
363
364always_inline void
365ethernet_setup_node (vlib_main_t * vm, u32 node_index)
366{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700367 vlib_node_t *n = vlib_get_node (vm, node_index);
368 pg_node_t *pn = pg_get_node (node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369
370 n->format_buffer = format_ethernet_header_with_length;
371 n->unformat_buffer = unformat_ethernet_header;
372 pn->unformat_edit = unformat_pg_ethernet_header;
373}
374
375always_inline ethernet_header_t *
376ethernet_buffer_get_header (vlib_buffer_t * b)
377{
Damjan Marion072401e2017-07-13 18:53:27 +0200378 return (void *) (b->data + vnet_buffer (b)->l2_hdr_offset);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379}
380
Chris Luke194ebc52016-04-25 14:26:55 -0400381/** Returns the number of VLAN headers in the current Ethernet frame in the
382 * buffer. Returns 0, 1, 2 for the known header count. The value 3 indicates
383 * the number of headers is not known.
384 */
385#define ethernet_buffer_get_vlan_count(b) ( \
Damjan Marion213b5aa2017-07-13 21:19:27 +0200386 ((b)->flags & VNET_BUFFER_FLAGS_VLAN_BITS) >> VNET_BUFFER_F_LOG2_VLAN_1_DEEP \
Chris Luke194ebc52016-04-25 14:26:55 -0400387)
388
389/** Sets the number of VLAN headers in the current Ethernet frame in the
390 * buffer. Values 0, 1, 2 indicate the header count. The value 3 indicates
391 * the number of headers is not known.
392 */
393#define ethernet_buffer_set_vlan_count(b, v) ( \
Damjan Marion213b5aa2017-07-13 21:19:27 +0200394 (b)->flags = ((b)->flags & ~VNET_BUFFER_FLAGS_VLAN_BITS) | \
395 (((v) << VNET_BUFFER_F_LOG2_VLAN_1_DEEP) & VNET_BUFFER_FLAGS_VLAN_BITS) \
Chris Luke194ebc52016-04-25 14:26:55 -0400396)
397
398/** Adjusts the vlan count by the delta in 'v' */
399#define ethernet_buffer_adjust_vlan_count(b, v) ( \
400 ethernet_buffer_set_vlan_count(b, \
401 (word)ethernet_buffer_get_vlan_count(b) + (word)(v)) \
402)
403
404/** Adjusts the vlan count by the header size byte delta in 'v' */
405#define ethernet_buffer_adjust_vlan_count_by_bytes(b, v) ( \
Damjan Marion213b5aa2017-07-13 21:19:27 +0200406 (b)->flags = ((b)->flags & ~VNET_BUFFER_FLAGS_VLAN_BITS) | (( \
407 ((b)->flags & VNET_BUFFER_FLAGS_VLAN_BITS) + \
408 ((v) << (VNET_BUFFER_F_LOG2_VLAN_1_DEEP - 2)) \
409 ) & VNET_BUFFER_FLAGS_VLAN_BITS) \
Chris Luke194ebc52016-04-25 14:26:55 -0400410)
411
412/**
413 * Determine the size of the Ethernet headers of the current frame in
414 * the buffer. This uses the VLAN depth flags that are set by
415 * ethernet-input. Because these flags are stored in the vlib_buffer_t
416 * "flags" field this count is valid regardless of the node so long as it's
417 * checked downstream of ethernet-input; That is, the value is not stored in
418 * the opaque space.
419 */
420#define ethernet_buffer_header_size(b) ( \
421 ethernet_buffer_get_vlan_count((b)) * sizeof(ethernet_vlan_header_t) + \
422 sizeof(ethernet_header_t) \
423)
424
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700425ethernet_main_t *ethernet_get_main (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426u32 ethernet_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700427void ethernet_sw_interface_set_l2_mode (vnet_main_t * vnm, u32 sw_if_index,
428 u32 l2);
429void ethernet_sw_interface_set_l2_mode_noport (vnet_main_t * vnm,
430 u32 sw_if_index, u32 l2);
431void ethernet_set_rx_redirect (vnet_main_t * vnm, vnet_hw_interface_t * hi,
432 u32 enable);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700433
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700434clib_error_t *next_by_ethertype_init (next_by_ethertype_t * l3_next);
435clib_error_t *next_by_ethertype_register (next_by_ethertype_t * l3_next,
436 u32 ethertype, u32 next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600438int vnet_create_loopback_interface (u32 * sw_if_indexp, u8 * mac_address,
439 u8 is_specified, u32 user_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700440int vnet_delete_loopback_interface (u32 sw_if_index);
Pavel Kotucekd85590a2016-08-26 13:35:40 +0200441int vnet_delete_sub_interface (u32 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700442
443// Perform ethernet subinterface classification table lookups given
444// the ports's sw_if_index and fields extracted from the ethernet header.
445// The resulting tables are used by identify_subint().
446always_inline void
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700447eth_vlan_table_lookups (ethernet_main_t * em,
448 vnet_main_t * vnm,
449 u32 port_sw_if_index0,
450 u16 first_ethertype,
451 u16 outer_id,
452 u16 inner_id,
453 vnet_hw_interface_t ** hi,
454 main_intf_t ** main_intf,
455 vlan_intf_t ** vlan_intf, qinq_intf_t ** qinq_intf)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700456{
457 vlan_table_t *vlan_table;
458 qinq_table_t *qinq_table;
459 u32 vlan_table_id;
460
461 // Read the main, vlan, and qinq interface table entries
462 // TODO: Consider if/how to prefetch tables. Also consider
463 // single-entry cache to skip table lookups and identify_subint()
464 // processing.
465 *hi = vnet_get_sup_hw_interface (vnm, port_sw_if_index0);
466 *main_intf = vec_elt_at_index (em->main_intfs, (*hi)->hw_if_index);
467
468 // Always read the vlan and qinq tables, even if there are not that
469 // many tags on the packet. This makes the lookups and comparisons
470 // easier (and less branchy).
471 vlan_table_id = (first_ethertype == ETHERNET_TYPE_DOT1AD) ?
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700472 (*main_intf)->dot1ad_vlans : (*main_intf)->dot1q_vlans;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473 vlan_table = vec_elt_at_index (em->vlan_pool, vlan_table_id);
474 *vlan_intf = &vlan_table->vlans[outer_id];
475
476 qinq_table = vec_elt_at_index (em->qinq_pool, (*vlan_intf)->qinqs);
477 *qinq_intf = &qinq_table->vlans[inner_id];
478}
479
480
481// Determine the subinterface for this packet, given the result of the
482// vlan table lookups and vlan header parsing. Check the most specific
483// matches first.
484// Returns 1 if a matching subinterface was found, otherwise returns 0.
485always_inline u32
486eth_identify_subint (vnet_hw_interface_t * hi,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700487 u32 match_flags,
488 main_intf_t * main_intf,
489 vlan_intf_t * vlan_intf,
490 qinq_intf_t * qinq_intf,
491 u32 * new_sw_if_index, u8 * error0, u32 * is_l2)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700493 subint_config_t *subint;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494
495 // Each comparison is checking both the valid flag and the number of tags
496 // (incorporating exact-match/non-exact-match).
497
Damjan Marion607de1a2016-08-16 22:53:54 +0200498 // check for specific double tag
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499 subint = &qinq_intf->subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700500 if ((subint->flags & match_flags) == match_flags)
501 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502
503 // check for specific outer and 'any' inner
504 subint = &vlan_intf->inner_any_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700505 if ((subint->flags & match_flags) == match_flags)
506 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700507
Damjan Marion607de1a2016-08-16 22:53:54 +0200508 // check for specific single tag
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509 subint = &vlan_intf->single_tag_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700510 if ((subint->flags & match_flags) == match_flags)
511 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512
Mike Bly88076742018-09-24 10:13:06 -0700513 // check for default interface
514 subint = &main_intf->default_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700515 if ((subint->flags & match_flags) == match_flags)
516 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517
Mike Bly88076742018-09-24 10:13:06 -0700518 // check for untagged interface
519 subint = &main_intf->untagged_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700520 if ((subint->flags & match_flags) == match_flags)
521 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700522
523 // No matching subinterface
524 *new_sw_if_index = ~0;
525 *error0 = ETHERNET_ERROR_UNKNOWN_VLAN;
526 *is_l2 = 0;
527 return 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700528
529matched:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700530 *new_sw_if_index = subint->sw_if_index;
531 *is_l2 = subint->flags & SUBINT_CONFIG_L2;
532 return 1;
533}
534
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700535always_inline ethernet_main_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536vnet_get_ethernet_main (void)
537{
538 return &ethernet_main;
539}
540
Neale Rannsb80c5362016-10-08 13:03:40 +0100541void ethernet_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai);
542u8 *ethernet_build_rewrite (vnet_main_t * vnm,
543 u32 sw_if_index,
544 vnet_link_t link_type, const void *dst_address);
Neale Ranns32e1c012016-11-22 17:07:28 +0000545const u8 *ethernet_ip4_mcast_dst_addr (void);
546const u8 *ethernet_ip6_mcast_dst_addr (void);
Neale Rannsb80c5362016-10-08 13:03:40 +0100547
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100548extern vlib_node_registration_t ethernet_input_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700549
550#endif /* included_ethernet_h */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700551
552/*
553 * fd.io coding-style-patch-verification: ON
554 *
555 * Local Variables:
556 * eval: (c-set-style "gnu")
557 * End:
558 */