blob: 0bfd48723e2f6ef4d0a29b425d0b04c27940a098 [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>
45#include <vnet/pg/pg.h>
Damjan Marion22311502016-10-28 20:30:15 +020046#include <vnet/feature/feature.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070047
48always_inline u64
49ethernet_mac_address_u64 (u8 * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -070050{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070051 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
58static inline int
59ethernet_mac_address_is_multicast_u64 (u64 a)
60{
61 return (a & (1ULL << (5 * 8))) != 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070062}
63
Damjan Marion2df39092017-12-04 20:03:37 +010064static inline int
65ethernet_mac_address_is_zero (u8 * mac)
66{
67 return ((*((u32 *) mac) == 0) && (*((u16 *) (mac + 4)) == 0));
68}
69
Damjan Marion927b0712018-02-20 08:33:50 +010070#ifdef CLIB_HAVE_VEC128
Damjan Marionc6969b52018-02-19 12:14:06 +010071static const u16x8 tagged_ethertypes = {
72 (u16) ETHERNET_TYPE_VLAN,
73 (u16) ETHERNET_TYPE_DOT1AD,
74 (u16) ETHERNET_TYPE_VLAN_9100,
75 (u16) ETHERNET_TYPE_VLAN_9200,
76 /* duplicate last one to fill register */
77 (u16) ETHERNET_TYPE_VLAN_9200,
78 (u16) ETHERNET_TYPE_VLAN_9200,
79 (u16) ETHERNET_TYPE_VLAN_9200,
80 (u16) ETHERNET_TYPE_VLAN_9200
81};
Damjan Marion927b0712018-02-20 08:33:50 +010082#endif
Damjan Marionc6969b52018-02-19 12:14:06 +010083
Damjan Marionb94bdad2016-09-19 11:32:03 +020084static_always_inline int
85ethernet_frame_is_tagged (u16 type)
86{
Damjan Marionc6969b52018-02-19 12:14:06 +010087#ifdef CLIB_HAVE_VEC128
88 return !u16x8_is_all_zero (tagged_ethertypes == u16x8_splat (type));
Damjan Marionb94bdad2016-09-19 11:32:03 +020089#else
90 if ((type == ETHERNET_TYPE_VLAN) ||
91 (type == ETHERNET_TYPE_DOT1AD) ||
92 (type == ETHERNET_TYPE_VLAN_9100) || (type == ETHERNET_TYPE_VLAN_9200))
93 return 1;
94#endif
95 return 0;
96}
97
Damjan Marionc6969b52018-02-19 12:14:06 +010098static_always_inline int
99ethernet_frame_is_any_tagged_x2 (u16 type0, u16 type1)
100{
101#ifdef CLIB_HAVE_VEC128
102 u16x8 r0 = (tagged_ethertypes == u16x8_splat (type0));
103 u16x8 r1 = (tagged_ethertypes == u16x8_splat (type1));
104 return !u16x8_is_all_zero (r0 | r1);
105#else
106 return ethernet_frame_is_tagged (type0) || ethernet_frame_is_tagged (type1);
107#endif
108}
109
110static_always_inline int
111ethernet_frame_is_any_tagged_x4 (u16 type0, u16 type1, u16 type2, u16 type3)
112{
113#ifdef CLIB_HAVE_VEC128
114 u16x8 r0 = (tagged_ethertypes == u16x8_splat (type0));
115 u16x8 r1 = (tagged_ethertypes == u16x8_splat (type1));
116 u16x8 r2 = (tagged_ethertypes == u16x8_splat (type2));
117 u16x8 r3 = (tagged_ethertypes == u16x8_splat (type3));
118 return !u16x8_is_all_zero (r0 | r1 | r2 | r3);
119#else
120 return ethernet_frame_is_tagged (type0) || ethernet_frame_is_tagged (type1)
121 || ethernet_frame_is_tagged (type2) || ethernet_frame_is_tagged (type3);
122#endif
123}
124
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125/* Max. sized ethernet/vlan header for parsing. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700126typedef struct
127{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128 ethernet_header_t ethernet;
129
130 /* Allow up to 2 stacked vlan headers. */
131 ethernet_vlan_header_t vlan[2];
132} ethernet_max_header_t;
133
134struct vnet_hw_interface_t;
135/* Ethernet flag change callback. */
136typedef u32 (ethernet_flag_change_function_t)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700137 (vnet_main_t * vnm, struct vnet_hw_interface_t * hi, u32 flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138
139#define ETHERNET_MIN_PACKET_BYTES 64
140#define ETHERNET_MAX_PACKET_BYTES 9216
141
142/* Ethernet interface instance. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700143typedef struct ethernet_interface
144{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145
146 /* Accept all packets (promiscuous mode). */
147#define ETHERNET_INTERFACE_FLAG_ACCEPT_ALL (1 << 0)
148#define ETHERNET_INTERFACE_FLAG_CONFIG_PROMISC(flags) \
149 (((flags) & ~ETHERNET_INTERFACE_FLAG_ACCEPT_ALL) == 0)
150
151 /* Change MTU on interface from hw interface structure */
152#define ETHERNET_INTERFACE_FLAG_MTU (1 << 1)
153#define ETHERNET_INTERFACE_FLAG_CONFIG_MTU(flags) \
154 ((flags) & ETHERNET_INTERFACE_FLAG_MTU)
155
156 /* Callback, e.g. to turn on/off promiscuous mode */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700157 ethernet_flag_change_function_t *flag_change;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158
159 u32 driver_instance;
160
161 /* Ethernet (MAC) address for this interface. */
162 u8 address[6];
163} ethernet_interface_t;
164
Damjan Marionb8abf872016-03-14 20:02:35 +0100165extern vnet_hw_interface_class_t ethernet_hw_interface_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700167typedef struct
168{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169 /* Name (a c string). */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700170 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171
172 /* Ethernet type in host byte order. */
173 ethernet_type_t type;
174
175 /* Node which handles this type. */
176 u32 node_index;
177
178 /* Next index for this type. */
179 u32 next_index;
180} ethernet_type_info_t;
181
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700182typedef enum
183{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184#define ethernet_error(n,c,s) ETHERNET_ERROR_##n,
185#include <vnet/ethernet/error.def>
186#undef ethernet_error
187 ETHERNET_N_ERROR,
188} ethernet_error_t;
189
190
191// Structs used when parsing packet to find sw_if_index
192
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700193typedef struct
194{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195 u32 sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700196 u32 flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197 // config entry is-valid flag
198 // exact match flags (valid if packet has 0/1/2/3 tags)
199 // L2 vs L3 forwarding mode
200#define SUBINT_CONFIG_MATCH_0_TAG (1<<0)
201#define SUBINT_CONFIG_MATCH_1_TAG (1<<1)
202#define SUBINT_CONFIG_MATCH_2_TAG (1<<2)
203#define SUBINT_CONFIG_MATCH_3_TAG (1<<3)
204#define SUBINT_CONFIG_VALID (1<<4)
205#define SUBINT_CONFIG_L2 (1<<5)
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200206#define SUBINT_CONFIG_P2P (1<<6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207
208} subint_config_t;
209
210always_inline u32
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700211eth_create_valid_subint_match_flags (u32 num_tags)
212{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213 return SUBINT_CONFIG_VALID | (1 << num_tags);
214}
215
216
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700217typedef struct
218{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219 subint_config_t untagged_subint;
220 subint_config_t default_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700221 u16 dot1q_vlans; // pool id for vlan table
222 u16 dot1ad_vlans; // pool id for vlan table
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223} main_intf_t;
224
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700225typedef struct
226{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227 subint_config_t single_tag_subint;
228 subint_config_t inner_any_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700229 u32 qinqs; // pool id for qinq table
Ed Warnickecb9cada2015-12-08 15:45:58 -0700230} vlan_intf_t;
231
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700232typedef struct
233{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234 vlan_intf_t vlans[ETHERNET_N_VLAN];
235} vlan_table_t;
236
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700237typedef struct
238{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239 subint_config_t subint;
240} qinq_intf_t;
241
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700242typedef struct
243{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244 qinq_intf_t vlans[ETHERNET_N_VLAN];
245} qinq_table_t;
246
247// Structure mapping to a next index based on ethertype.
248// Common ethertypes are stored explicitly, others are
249// stored in a sparse table.
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700250typedef struct
251{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252 /* Sparse vector mapping ethernet type in network byte order
253 to next index. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700254 u16 *input_next_by_type;
255 u32 *sparse_index_by_input_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256
257 /* cached next indexes for common ethertypes */
258 u32 input_next_ip4;
259 u32 input_next_ip6;
260 u32 input_next_mpls;
261} next_by_ethertype_t;
262
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700263typedef struct
264{
265 vlib_main_t *vlib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266
267 /* next node index for the L3 input node of each ethertype */
268 next_by_ethertype_t l3_next;
269
270 /* next node index for L2 interfaces */
271 u32 l2_next;
272
273 /* flag and next node index for L3 redirect */
274 u32 redirect_l3;
275 u32 redirect_l3_next;
276
277 /* Pool of ethernet interface instances. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700278 ethernet_interface_t *interfaces;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700280 ethernet_type_info_t *type_infos;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281
282 /* Hash tables mapping name/type to type info index. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700283 uword *type_info_by_name, *type_info_by_type;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284
285 // The root of the vlan parsing tables. A vector with one element
286 // for each main interface, indexed by hw_if_index.
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700287 main_intf_t *main_intfs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288
289 // Pool of vlan tables
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700290 vlan_table_t *vlan_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291
292 // Pool of qinq tables;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700293 qinq_table_t *qinq_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294
295 /* Set to one to use AB.CD.EF instead of A:B:C:D:E:F as ethernet format. */
296 int format_ethernet_address_16bit;
297
Dave Barach1f49ed62016-02-24 11:29:06 -0500298 /* debug: make sure we don't wipe out an ethernet registration by mistake */
299 u8 next_by_ethertype_register_called;
300
Damjan Marion8b3191e2016-11-09 19:54:20 +0100301 /* Feature arc index */
302 u8 output_feature_arc_index;
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600303
304 /* Allocated loopback instances */
305 uword *bm_loopback_instances;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306} ethernet_main_t;
307
Dave Wallace71612d62017-10-24 01:32:41 -0400308extern ethernet_main_t ethernet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309
310always_inline ethernet_type_info_t *
311ethernet_get_type_info (ethernet_main_t * em, ethernet_type_t type)
312{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700313 uword *p = hash_get (em->type_info_by_type, type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314 return p ? vec_elt_at_index (em->type_infos, p[0]) : 0;
315}
316
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700317ethernet_interface_t *ethernet_get_interface (ethernet_main_t * em,
318 u32 hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700320clib_error_t *ethernet_register_interface (vnet_main_t * vnm,
321 u32 dev_class_index,
322 u32 dev_instance,
323 u8 * address,
324 u32 * hw_if_index_return,
325 ethernet_flag_change_function_t
326 flag_change);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327
328void ethernet_delete_interface (vnet_main_t * vnm, u32 hw_if_index);
329
330/* Register given node index to take input for given ethernet type. */
331void
332ethernet_register_input_type (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700333 ethernet_type_t type, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334
335/* Register given node index to take input for packet from L2 interfaces. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700336void ethernet_register_l2_input (vlib_main_t * vm, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337
338/* Register given node index to take redirected L3 traffic, and enable L3 redirect */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700339void ethernet_register_l3_redirect (vlib_main_t * vm, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340
341/* Formats ethernet address X:X:X:X:X:X */
Neale Ranns571ab202018-08-22 04:27:15 -0700342u8 *format_mac_address (u8 * s, va_list * args);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700343u8 *format_ethernet_address (u8 * s, va_list * args);
344u8 *format_ethernet_type (u8 * s, va_list * args);
345u8 *format_ethernet_vlan_tci (u8 * s, va_list * va);
346u8 *format_ethernet_header (u8 * s, va_list * args);
347u8 *format_ethernet_header_with_length (u8 * s, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348
349/* 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 -0700350uword unformat_ethernet_address (unformat_input_t * input, va_list * args);
Neale Ranns571ab202018-08-22 04:27:15 -0700351uword unformat_mac_address (unformat_input_t * input, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352
353/* Parse ethernet type as 0xXXXX or type name from ethernet/types.def.
354 In either host or network byte order. */
355uword
356unformat_ethernet_type_host_byte_order (unformat_input_t * input,
357 va_list * args);
358uword
359unformat_ethernet_type_net_byte_order (unformat_input_t * input,
360 va_list * args);
361
362/* Parse ethernet header. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700363uword unformat_ethernet_header (unformat_input_t * input, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700364
365/* Parse ethernet interface name; return hw_if_index. */
366uword unformat_ethernet_interface (unformat_input_t * input, va_list * args);
367
368uword unformat_pg_ethernet_header (unformat_input_t * input, va_list * args);
369
370always_inline void
371ethernet_setup_node (vlib_main_t * vm, u32 node_index)
372{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700373 vlib_node_t *n = vlib_get_node (vm, node_index);
374 pg_node_t *pn = pg_get_node (node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375
376 n->format_buffer = format_ethernet_header_with_length;
377 n->unformat_buffer = unformat_ethernet_header;
378 pn->unformat_edit = unformat_pg_ethernet_header;
379}
380
381always_inline ethernet_header_t *
382ethernet_buffer_get_header (vlib_buffer_t * b)
383{
Damjan Marion072401e2017-07-13 18:53:27 +0200384 return (void *) (b->data + vnet_buffer (b)->l2_hdr_offset);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385}
386
Chris Luke194ebc52016-04-25 14:26:55 -0400387/** Returns the number of VLAN headers in the current Ethernet frame in the
388 * buffer. Returns 0, 1, 2 for the known header count. The value 3 indicates
389 * the number of headers is not known.
390 */
391#define ethernet_buffer_get_vlan_count(b) ( \
Damjan Marion213b5aa2017-07-13 21:19:27 +0200392 ((b)->flags & VNET_BUFFER_FLAGS_VLAN_BITS) >> VNET_BUFFER_F_LOG2_VLAN_1_DEEP \
Chris Luke194ebc52016-04-25 14:26:55 -0400393)
394
395/** Sets the number of VLAN headers in the current Ethernet frame in the
396 * buffer. Values 0, 1, 2 indicate the header count. The value 3 indicates
397 * the number of headers is not known.
398 */
399#define ethernet_buffer_set_vlan_count(b, v) ( \
Damjan Marion213b5aa2017-07-13 21:19:27 +0200400 (b)->flags = ((b)->flags & ~VNET_BUFFER_FLAGS_VLAN_BITS) | \
401 (((v) << VNET_BUFFER_F_LOG2_VLAN_1_DEEP) & VNET_BUFFER_FLAGS_VLAN_BITS) \
Chris Luke194ebc52016-04-25 14:26:55 -0400402)
403
404/** Adjusts the vlan count by the delta in 'v' */
405#define ethernet_buffer_adjust_vlan_count(b, v) ( \
406 ethernet_buffer_set_vlan_count(b, \
407 (word)ethernet_buffer_get_vlan_count(b) + (word)(v)) \
408)
409
410/** Adjusts the vlan count by the header size byte delta in 'v' */
411#define ethernet_buffer_adjust_vlan_count_by_bytes(b, v) ( \
Damjan Marion213b5aa2017-07-13 21:19:27 +0200412 (b)->flags = ((b)->flags & ~VNET_BUFFER_FLAGS_VLAN_BITS) | (( \
413 ((b)->flags & VNET_BUFFER_FLAGS_VLAN_BITS) + \
414 ((v) << (VNET_BUFFER_F_LOG2_VLAN_1_DEEP - 2)) \
415 ) & VNET_BUFFER_FLAGS_VLAN_BITS) \
Chris Luke194ebc52016-04-25 14:26:55 -0400416)
417
418/**
419 * Determine the size of the Ethernet headers of the current frame in
420 * the buffer. This uses the VLAN depth flags that are set by
421 * ethernet-input. Because these flags are stored in the vlib_buffer_t
422 * "flags" field this count is valid regardless of the node so long as it's
423 * checked downstream of ethernet-input; That is, the value is not stored in
424 * the opaque space.
425 */
426#define ethernet_buffer_header_size(b) ( \
427 ethernet_buffer_get_vlan_count((b)) * sizeof(ethernet_vlan_header_t) + \
428 sizeof(ethernet_header_t) \
429)
430
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700431ethernet_main_t *ethernet_get_main (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432u32 ethernet_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700433void ethernet_sw_interface_set_l2_mode (vnet_main_t * vnm, u32 sw_if_index,
434 u32 l2);
435void ethernet_sw_interface_set_l2_mode_noport (vnet_main_t * vnm,
436 u32 sw_if_index, u32 l2);
437void ethernet_set_rx_redirect (vnet_main_t * vnm, vnet_hw_interface_t * hi,
438 u32 enable);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700439
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700440clib_error_t *next_by_ethertype_init (next_by_ethertype_t * l3_next);
441clib_error_t *next_by_ethertype_register (next_by_ethertype_t * l3_next,
442 u32 ethertype, u32 next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600444int vnet_create_loopback_interface (u32 * sw_if_indexp, u8 * mac_address,
445 u8 is_specified, u32 user_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446int vnet_delete_loopback_interface (u32 sw_if_index);
Pavel Kotucekd85590a2016-08-26 13:35:40 +0200447int vnet_delete_sub_interface (u32 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448
449// Perform ethernet subinterface classification table lookups given
450// the ports's sw_if_index and fields extracted from the ethernet header.
451// The resulting tables are used by identify_subint().
452always_inline void
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700453eth_vlan_table_lookups (ethernet_main_t * em,
454 vnet_main_t * vnm,
455 u32 port_sw_if_index0,
456 u16 first_ethertype,
457 u16 outer_id,
458 u16 inner_id,
459 vnet_hw_interface_t ** hi,
460 main_intf_t ** main_intf,
461 vlan_intf_t ** vlan_intf, qinq_intf_t ** qinq_intf)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462{
463 vlan_table_t *vlan_table;
464 qinq_table_t *qinq_table;
465 u32 vlan_table_id;
466
467 // Read the main, vlan, and qinq interface table entries
468 // TODO: Consider if/how to prefetch tables. Also consider
469 // single-entry cache to skip table lookups and identify_subint()
470 // processing.
471 *hi = vnet_get_sup_hw_interface (vnm, port_sw_if_index0);
472 *main_intf = vec_elt_at_index (em->main_intfs, (*hi)->hw_if_index);
473
474 // Always read the vlan and qinq tables, even if there are not that
475 // many tags on the packet. This makes the lookups and comparisons
476 // easier (and less branchy).
477 vlan_table_id = (first_ethertype == ETHERNET_TYPE_DOT1AD) ?
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700478 (*main_intf)->dot1ad_vlans : (*main_intf)->dot1q_vlans;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700479 vlan_table = vec_elt_at_index (em->vlan_pool, vlan_table_id);
480 *vlan_intf = &vlan_table->vlans[outer_id];
481
482 qinq_table = vec_elt_at_index (em->qinq_pool, (*vlan_intf)->qinqs);
483 *qinq_intf = &qinq_table->vlans[inner_id];
484}
485
486
487// Determine the subinterface for this packet, given the result of the
488// vlan table lookups and vlan header parsing. Check the most specific
489// matches first.
490// Returns 1 if a matching subinterface was found, otherwise returns 0.
491always_inline u32
492eth_identify_subint (vnet_hw_interface_t * hi,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700493 vlib_buffer_t * b0,
494 u32 match_flags,
495 main_intf_t * main_intf,
496 vlan_intf_t * vlan_intf,
497 qinq_intf_t * qinq_intf,
498 u32 * new_sw_if_index, u8 * error0, u32 * is_l2)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700500 subint_config_t *subint;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501
502 // Each comparison is checking both the valid flag and the number of tags
503 // (incorporating exact-match/non-exact-match).
504
Damjan Marion607de1a2016-08-16 22:53:54 +0200505 // check for specific double tag
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506 subint = &qinq_intf->subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700507 if ((subint->flags & match_flags) == match_flags)
508 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509
510 // check for specific outer and 'any' inner
511 subint = &vlan_intf->inner_any_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700512 if ((subint->flags & match_flags) == match_flags)
513 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514
Damjan Marion607de1a2016-08-16 22:53:54 +0200515 // check for specific single tag
Ed Warnickecb9cada2015-12-08 15:45:58 -0700516 subint = &vlan_intf->single_tag_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700517 if ((subint->flags & match_flags) == match_flags)
518 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519
520 // check for untagged interface
521 subint = &main_intf->untagged_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700522 if ((subint->flags & match_flags) == match_flags)
523 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700524
Damjan Marion607de1a2016-08-16 22:53:54 +0200525 // check for default interface
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526 subint = &main_intf->default_subint;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700527 if ((subint->flags & match_flags) == match_flags)
528 goto matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700529
530 // No matching subinterface
531 *new_sw_if_index = ~0;
532 *error0 = ETHERNET_ERROR_UNKNOWN_VLAN;
533 *is_l2 = 0;
534 return 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700535
536matched:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700537 *new_sw_if_index = subint->sw_if_index;
538 *is_l2 = subint->flags & SUBINT_CONFIG_L2;
539 return 1;
540}
541
John Lo7185c3b2016-06-04 00:02:37 -0400542// Compare two ethernet macs. Return 1 if they are the same, 0 if different
543always_inline u32
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700544eth_mac_equal (u8 * mac1, u8 * mac2)
545{
546 return (*((u32 *) (mac1 + 0)) == *((u32 *) (mac2 + 0)) &&
547 *((u32 *) (mac1 + 2)) == *((u32 *) (mac2 + 2)));
John Lo7185c3b2016-06-04 00:02:37 -0400548}
549
550
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700551always_inline ethernet_main_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700552vnet_get_ethernet_main (void)
553{
554 return &ethernet_main;
555}
556
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700557void vnet_register_ip4_arp_resolution_event (vnet_main_t * vnm,
558 void *address_arg,
559 uword node_index,
560 uword type_opaque, uword data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561
562
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700563int vnet_add_del_ip4_arp_change_event (vnet_main_t * vnm,
564 void *data_callback,
565 u32 pid,
566 void *address_arg,
567 uword node_index,
568 uword type_opaque,
569 uword data, int is_add);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570
Eyal Baric125ecc2017-09-20 11:29:17 +0300571void wc_arp_set_publisher_node (uword inode_index, uword event_type);
Eyal Bari20197482017-09-13 12:29:08 +0300572
Neale Ranns3be6b282016-12-20 14:24:01 +0000573void ethernet_arp_change_mac (u32 sw_if_index);
574void ethernet_ndp_change_mac (u32 sw_if_index);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +0200575
Neale Rannsb80c5362016-10-08 13:03:40 +0100576void arp_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai);
577
578void ethernet_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai);
579u8 *ethernet_build_rewrite (vnet_main_t * vnm,
580 u32 sw_if_index,
581 vnet_link_t link_type, const void *dst_address);
Neale Ranns32e1c012016-11-22 17:07:28 +0000582const u8 *ethernet_ip4_mcast_dst_addr (void);
583const u8 *ethernet_ip6_mcast_dst_addr (void);
Neale Rannsb80c5362016-10-08 13:03:40 +0100584
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100585extern vlib_node_registration_t ethernet_input_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700586
Eyal Bari20197482017-09-13 12:29:08 +0300587typedef struct
588{
589 u32 sw_if_index;
590 u32 ip4;
591 u8 mac[6];
592} wc_arp_report_t;
593
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594#endif /* included_ethernet_h */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700595
596/*
597 * fd.io coding-style-patch-verification: ON
598 *
599 * Local Variables:
600 * eval: (c-set-style "gnu")
601 * End:
602 */