FD.io VPP  v21.10.1-2-g0a485f517
Vector Packet Processing
ethernet.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /*
16  * ethernet.h: types/functions for ethernet.
17  *
18  * Copyright (c) 2008 Eliot Dresselhaus
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining
21  * a copy of this software and associated documentation files (the
22  * "Software"), to deal in the Software without restriction, including
23  * without limitation the rights to use, copy, modify, merge, publish,
24  * distribute, sublicense, and/or sell copies of the Software, and to
25  * permit persons to whom the Software is furnished to do so, subject to
26  * the following conditions:
27  *
28  * The above copyright notice and this permission notice shall be
29  * included in all copies or substantial portions of the Software.
30  *
31  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  */
39 
40 #ifndef included_ethernet_h
41 #define included_ethernet_h
42 
43 #include <vnet/vnet.h>
44 #include <vnet/ethernet/packet.h>
46 #include <vnet/feature/feature.h>
47 
48 /* 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 
56 typedef struct
57 {
61 
62 #ifdef CLIB_HAVE_VEC128
63 static 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 };
74 #endif
75 
78 {
79 #ifdef CLIB_HAVE_VEC128
80  return !u16x8_is_all_zero (tagged_ethertypes == u16x8_splat (type));
81 #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 
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 
103 ethernet_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)
114 #endif
115 }
116 
117 /* Max. sized ethernet/vlan header for parsing. */
118 typedef struct
119 {
121 
122  /* Allow up to 2 stacked vlan headers. */
125 
126 struct vnet_hw_interface_t;
127 /* Ethernet flag change callback. */
130 
131 #define ETHERNET_MIN_PACKET_BYTES 64
132 #define ETHERNET_MAX_PACKET_BYTES 9216
133 
134 /* ethernet dataplane loads mac address as u64 for efficiency */
136 {
137  struct
138  {
141  };
144 
145 /* Ethernet interface instance. */
146 typedef struct ethernet_interface
147 {
149 
150  /* Top 16 bits for status and bottom 16 bits for set operation */
151 #define ETHERNET_INTERFACE_FLAGS_STATUS_MASK (0xffff0000)
152 #define ETHERNET_INTERFACE_FLAGS_SET_OPN_MASK (0x0000ffff)
153 
154  /* Interface driver/hw is in L3/non-promiscuous mode so packet DMAC
155  would already be filtered */
156 #define ETHERNET_INTERFACE_FLAG_STATUS_L3 (1 << 16)
157 
158  /* Set interface to default L3 mode */
159 #define ETHERNET_INTERFACE_FLAG_DEFAULT_L3 0
160 
161  /* Set interface to accept all packets (promiscuous mode). */
162 #define ETHERNET_INTERFACE_FLAG_ACCEPT_ALL 1
163 
164  /* Change MTU on interface from hw interface structure */
165 #define ETHERNET_INTERFACE_FLAG_MTU 2
166 
167  /* Callback, e.g. to turn on/off promiscuous mode */
169 
171 
172  /* Ethernet (MAC) address for this interface. */
174 
175  /* Secondary MAC addresses for this interface */
178 
180 
181 typedef struct
182 {
183  /* Name (a c string). */
184  char *name;
185 
186  /* Ethernet type in host byte order. */
188 
189  /* Node which handles this type. */
191 
192  /* Next index for this type. */
195 
196 typedef enum
197 {
198 #define ethernet_error(n,c,s) ETHERNET_ERROR_##n,
199 #include <vnet/ethernet/error.def>
200 #undef ethernet_error
203 
204 
205 // Structs used when parsing packet to find sw_if_index
206 
207 typedef struct
208 {
211  // config entry is-valid flag
212  // exact match flags (valid if packet has 0/1/2/3 tags)
213  // L2 vs L3 forwarding mode
214 #define SUBINT_CONFIG_MATCH_0_TAG (1<<0)
215 #define SUBINT_CONFIG_MATCH_1_TAG (1<<1)
216 #define SUBINT_CONFIG_MATCH_2_TAG (1<<2)
217 #define SUBINT_CONFIG_MATCH_3_TAG (1<<3)
218 #define SUBINT_CONFIG_VALID (1<<4)
219 #define SUBINT_CONFIG_L2 (1<<5)
220 #define SUBINT_CONFIG_P2P (1<<6)
221 
223 
226 {
227  return SUBINT_CONFIG_VALID | (1 << num_tags);
228 }
229 
230 
231 typedef struct
232 {
235  u16 dot1q_vlans; // pool id for vlan table
236  u16 dot1ad_vlans; // pool id for vlan table
237 } main_intf_t;
238 
239 typedef struct
240 {
243  u32 qinqs; // pool id for qinq table
244 } vlan_intf_t;
245 
246 typedef struct
247 {
249 } vlan_table_t;
250 
251 typedef struct
252 {
254 } qinq_intf_t;
255 
256 typedef struct
257 {
259 } qinq_table_t;
260 
261 // Structure mapping to a next index based on ethertype.
262 // Common ethertypes are stored explicitly, others are
263 // stored in a sparse table.
264 typedef struct
265 {
266  /* Sparse vector mapping ethernet type in network byte order
267  to next index. */
270 
271  /* cached next indexes for common ethertypes */
276 
277 struct ethernet_main_t_;
278 
280  (struct ethernet_main_t_ * im, u32 sw_if_index, uword opaque);
281 
282 typedef struct
283 {
287 
288 typedef struct ethernet_main_t_
289 {
291 
292  /* next node index for the L3 input node of each ethertype */
294 
295  /* next node index for L2 interfaces */
297 
298  /* flag and next node index for L3 redirect */
301 
302  /* Pool of ethernet interface instances. */
304 
306 
307  /* Hash tables mapping name/type to type info index. */
309 
310  // The root of the vlan parsing tables. A vector with one element
311  // for each main interface, indexed by hw_if_index.
313 
314  // Pool of vlan tables
316 
317  // Pool of qinq tables;
319 
320  /* Set to one to use AB.CD.EF instead of A:B:C:D:E:F as ethernet format. */
322 
323  /* debug: make sure we don't wipe out an ethernet registration by mistake */
325 
326  /* Feature arc index */
328 
329  /* Allocated loopback instances */
331 
332  /** Functions to call when interface hw address changes. */
334 
335  /** Default interface MTU */
337 
339 
341 
344 {
345  uword *p = hash_get (em->type_info_by_type, type);
346  return p ? vec_elt_at_index (em->type_infos, p[0]) : 0;
347 }
348 
350  u32 hw_if_index);
352  u32 hw_if_index,
353  const u8 * address,
354  u8 is_add);
355 
357  u32 dev_class_index,
358  u32 dev_instance,
359  const u8 * address,
360  u32 * hw_if_index_return,
362  flag_change);
363 
364 void ethernet_delete_interface (vnet_main_t * vnm, u32 hw_if_index);
365 
366 /* Register given node index to take input for given ethernet type. */
367 void
370 
371 /* Register given node index to take input for packet from L2 interfaces. */
373 
374 /* Register given node index to take redirected L3 traffic, and enable L3 redirect */
376 
377 /* Formats ethernet address X:X:X:X:X:X */
378 u8 *format_mac_address (u8 * s, va_list * args);
379 u8 *format_ethernet_address (u8 * s, va_list * args);
380 u8 *format_ethernet_type (u8 * s, va_list * args);
381 u8 *format_ethernet_vlan_tci (u8 * s, va_list * va);
382 u8 *format_ethernet_header (u8 * s, va_list * args);
383 u8 *format_ethernet_header_with_length (u8 * s, va_list * args);
384 
385 /* Parse ethernet address in either X:X:X:X:X:X unix or X.X.X cisco format. */
386 uword unformat_ethernet_address (unformat_input_t * input, va_list * args);
387 uword unformat_mac_address (unformat_input_t * input, va_list * args);
388 
389 /* Parse ethernet type as 0xXXXX or type name from ethernet/types.def.
390  In either host or network byte order. */
391 uword
393  va_list * args);
394 uword
396  va_list * args);
397 
398 /* Parse ethernet header. */
399 uword unformat_ethernet_header (unformat_input_t * input, va_list * args);
400 
401 /* Parse ethernet interface name; return hw_if_index. */
402 uword unformat_ethernet_interface (unformat_input_t * input, va_list * args);
403 
404 uword unformat_pg_ethernet_header (unformat_input_t * input, va_list * args);
405 
407 
410 {
411  return (void *) (b->data + vnet_buffer (b)->l2_hdr_offset);
412 }
413 
414 /** Returns the number of VLAN headers in the current Ethernet frame in the
415  * buffer. Returns 0, 1, 2 for the known header count. The value 3 indicates
416  * the number of headers is not known.
417  */
418 #define ethernet_buffer_get_vlan_count(b) ( \
419  ((b)->flags & VNET_BUFFER_FLAGS_VLAN_BITS) >> VNET_BUFFER_F_LOG2_VLAN_1_DEEP \
420 )
421 
422 /** Sets the number of VLAN headers in the current Ethernet frame in the
423  * buffer. Values 0, 1, 2 indicate the header count. The value 3 indicates
424  * the number of headers is not known.
425  */
426 #define ethernet_buffer_set_vlan_count(b, v) ( \
427  (b)->flags = ((b)->flags & ~VNET_BUFFER_FLAGS_VLAN_BITS) | \
428  (((v) << VNET_BUFFER_F_LOG2_VLAN_1_DEEP) & VNET_BUFFER_FLAGS_VLAN_BITS) \
429 )
430 
431 /** Adjusts the vlan count by the delta in 'v' */
432 #define ethernet_buffer_adjust_vlan_count(b, v) ( \
433  ethernet_buffer_set_vlan_count(b, \
434  (word)ethernet_buffer_get_vlan_count(b) + (word)(v)) \
435 )
436 
437 /** Adjusts the vlan count by the header size byte delta in 'v' */
438 #define ethernet_buffer_adjust_vlan_count_by_bytes(b, v) ( \
439  (b)->flags = ((b)->flags & ~VNET_BUFFER_FLAGS_VLAN_BITS) | (( \
440  ((b)->flags & VNET_BUFFER_FLAGS_VLAN_BITS) + \
441  ((v) << (VNET_BUFFER_F_LOG2_VLAN_1_DEEP - 2)) \
442  ) & VNET_BUFFER_FLAGS_VLAN_BITS) \
443 )
444 
445 /**
446  * Determine the size of the Ethernet headers of the current frame in
447  * the buffer. This uses the VLAN depth flags that are set by
448  * ethernet-input. Because these flags are stored in the vlib_buffer_t
449  * "flags" field this count is valid regardless of the node so long as it's
450  * checked downstream of ethernet-input; That is, the value is not stored in
451  * the opaque space.
452  */
453 #define ethernet_buffer_header_size(b) ( \
454  ethernet_buffer_get_vlan_count((b)) * sizeof(ethernet_vlan_header_t) + \
455  sizeof(ethernet_header_t) \
456 )
457 
459 u32 ethernet_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags);
461  u32 l2);
463  u32 sw_if_index, u32 l2);
465  u32 enable);
466 
469  u32 ethertype, u32 next_index);
470 
471 int vnet_create_loopback_interface (u32 * sw_if_indexp, u8 * mac_address,
472  u8 is_specified, u32 user_instance);
475  u32 flags, u16 inner_vlan_id,
476  u16 outer_vlan_id, u32 * sub_sw_if_index);
478 
479 // Perform ethernet subinterface classification table lookups given
480 // the ports's sw_if_index and fields extracted from the ethernet header.
481 // The resulting tables are used by identify_subint().
482 always_inline void
484  vnet_main_t * vnm,
485  u32 port_sw_if_index0,
486  u16 first_ethertype,
487  u16 outer_id,
488  u16 inner_id,
490  main_intf_t ** main_intf,
491  vlan_intf_t ** vlan_intf, qinq_intf_t ** qinq_intf)
492 {
493  vlan_table_t *vlan_table;
494  qinq_table_t *qinq_table;
495  u32 vlan_table_id;
496 
497  // Read the main, vlan, and qinq interface table entries
498  // TODO: Consider if/how to prefetch tables. Also consider
499  // single-entry cache to skip table lookups and identify_subint()
500  // processing.
501  *hi = vnet_get_sup_hw_interface (vnm, port_sw_if_index0);
502  *main_intf = vec_elt_at_index (em->main_intfs, (*hi)->hw_if_index);
503 
504  // Always read the vlan and qinq tables, even if there are not that
505  // many tags on the packet. This makes the lookups and comparisons
506  // easier (and less branchy).
507  vlan_table_id = (first_ethertype == ETHERNET_TYPE_DOT1AD) ?
508  (*main_intf)->dot1ad_vlans : (*main_intf)->dot1q_vlans;
509  vlan_table = vec_elt_at_index (em->vlan_pool, vlan_table_id);
510  *vlan_intf = &vlan_table->vlans[outer_id];
511 
512  qinq_table = vec_elt_at_index (em->qinq_pool, (*vlan_intf)->qinqs);
513  *qinq_intf = &qinq_table->vlans[inner_id];
514 }
515 
516 
517 // Determine the subinterface for this packet, given the result of the
518 // vlan table lookups and vlan header parsing. Check the most specific
519 // matches first.
520 // Returns 1 if a matching subinterface was found, otherwise returns 0.
523  u32 match_flags,
524  main_intf_t * main_intf,
525  vlan_intf_t * vlan_intf,
526  qinq_intf_t * qinq_intf,
527  u32 * new_sw_if_index, u8 * error0, u32 * is_l2)
528 {
529  subint_config_t *subint;
530 
531  // Each comparison is checking both the valid flag and the number of tags
532  // (incorporating exact-match/non-exact-match).
533 
534  // check for specific double tag
535  subint = &qinq_intf->subint;
536  if ((subint->flags & match_flags) == match_flags)
537  goto matched;
538 
539  // check for specific outer and 'any' inner
540  subint = &vlan_intf->inner_any_subint;
541  if ((subint->flags & match_flags) == match_flags)
542  goto matched;
543 
544  // check for specific single tag
545  subint = &vlan_intf->single_tag_subint;
546  if ((subint->flags & match_flags) == match_flags)
547  goto matched;
548 
549  // check for default interface
550  subint = &main_intf->default_subint;
551  if ((subint->flags & match_flags) == match_flags)
552  goto matched;
553 
554  // check for untagged interface
555  subint = &main_intf->untagged_subint;
556  if ((subint->flags & match_flags) == match_flags)
557  goto matched;
558 
559  // No matching subinterface
560  *new_sw_if_index = ~0;
561  *error0 = ETHERNET_ERROR_UNKNOWN_VLAN;
562  *is_l2 = 0;
563  return 0;
564 
565 matched:
566  *new_sw_if_index = subint->sw_if_index;
567  *is_l2 = subint->flags & SUBINT_CONFIG_L2;
568  return 1;
569 }
570 
573 {
574  return &ethernet_main;
575 }
576 
580  vnet_link_t link_type, const void *dst_address);
582 
584 
585 #endif /* included_ethernet_h */
586 
587 /*
588  * fd.io coding-style-patch-verification: ON
589  *
590  * Local Variables:
591  * eval: (c-set-style "gnu")
592  * End:
593  */
ethernet_flag_change_function_t
u32() ethernet_flag_change_function_t(vnet_main_t *vnm, struct vnet_hw_interface_t *hi, u32 flags)
Definition: ethernet.h:129
vlan_table_t::vlans
vlan_intf_t vlans[ETHERNET_N_VLAN]
Definition: ethernet.h:248
next_by_ethertype_init
clib_error_t * next_by_ethertype_init(next_by_ethertype_t *l3_next)
Definition: node.c:2164
next_by_ethertype_t::input_next_by_type
u16 * input_next_by_type
Definition: ethernet.h:268
unformat_ethernet_type_net_byte_order
uword unformat_ethernet_type_net_byte_order(unformat_input_t *input, va_list *args)
Definition: format.c:278
ethernet_register_l2_input
void ethernet_register_l2_input(vlib_main_t *vm, u32 node_index)
Definition: node.c:2310
im
vnet_interface_main_t * im
Definition: interface_output.c:415
unformat_ethernet_address
uword unformat_ethernet_address(unformat_input_t *input, va_list *args)
Definition: format.c:233
SUBINT_CONFIG_L2
#define SUBINT_CONFIG_L2
Definition: ethernet.h:219
ethernet_main_t_::type_infos
ethernet_type_info_t * type_infos
Definition: ethernet.h:305
ethernet_type_info_t
Definition: ethernet.h:181
eth_identify_subint
static u32 eth_identify_subint(vnet_hw_interface_t *hi, u32 match_flags, main_intf_t *main_intf, vlan_intf_t *vlan_intf, qinq_intf_t *qinq_intf, u32 *new_sw_if_index, u8 *error0, u32 *is_l2)
Definition: ethernet.h:522
ethernet_main_t_::format_ethernet_address_16bit
int format_ethernet_address_16bit
Definition: ethernet.h:321
ethernet_main_t_::next_by_ethertype_register_called
u8 next_by_ethertype_register_called
Definition: ethernet.h:324
ethernet_type_info_t::node_index
u32 node_index
Definition: ethernet.h:190
ethernet_build_rewrite
u8 * ethernet_build_rewrite(vnet_main_t *vnm, u32 sw_if_index, vnet_link_t link_type, const void *dst_address)
build a rewrite string to use for sending packets of type 'link_type' to 'dst_address'
Definition: interface.c:83
vlan_intf_t
Definition: ethernet.h:239
next_index
nat44_ei_hairpin_src_next_t next_index
Definition: nat44_ei_hairpinning.c:412
ethernet_set_flags
u32 ethernet_set_flags(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Definition: interface.c:441
ethernet_vlan_header_t
Definition: packet.h:128
ethernet_sw_interface_set_l2_mode
void ethernet_sw_interface_set_l2_mode(vnet_main_t *vnm, u32 sw_if_index, u32 l2)
Definition: node.c:1960
ethernet_frame_is_tagged
static_always_inline int ethernet_frame_is_tagged(u16 type)
Definition: ethernet.h:77
vnet_create_sub_interface
int vnet_create_sub_interface(u32 sw_if_index, u32 id, u32 flags, u16 inner_vlan_id, u16 outer_vlan_id, u32 *sub_sw_if_index)
Definition: interface.c:1053
format_ethernet_address
u8 * format_ethernet_address(u8 *s, va_list *args)
Definition: format.c:44
ethernet_interface_add_del_address
mac_address_t * ethernet_interface_add_del_address(ethernet_main_t *em, u32 hw_if_index, const u8 *address, u8 is_add)
Definition: interface.c:992
ethernet_frame_is_any_tagged_x2
static_always_inline int ethernet_frame_is_any_tagged_x2(u16 type0, u16 type1)
Definition: ethernet.h:91
vlan_intf_t::qinqs
u32 qinqs
Definition: ethernet.h:243
next_by_ethertype_t::input_next_ip4
u32 input_next_ip4
Definition: ethernet.h:272
format_ethernet_header
u8 * format_ethernet_header(u8 *s, va_list *args)
Definition: format.c:178
eth_create_valid_subint_match_flags
static u32 eth_create_valid_subint_match_flags(u32 num_tags)
Definition: ethernet.h:225
ethernet_interface_address_t
union ethernet_interface_address ethernet_interface_address_t
ethernet_interface_address::as_u64
u64 as_u64
Definition: ethernet.h:142
u16
unsigned short u16
Definition: types.h:57
ethernet_input_init
void ethernet_input_init(vlib_main_t *vm, ethernet_main_t *em)
Definition: node.c:2251
ethernet_input_node
vlib_node_registration_t ethernet_input_node
(constructor) VLIB_REGISTER_NODE (ethernet_input_node)
Definition: node.c:2104
ethernet_hw_interface_class
vnet_hw_interface_class_t ethernet_hw_interface_class
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
ethernet_address_change_ctx_t
Definition: ethernet.h:282
qinq_table_t::vlans
qinq_intf_t vlans[ETHERNET_N_VLAN]
Definition: ethernet.h:258
node_index
node node_index
Definition: interface_output.c:440
ethernet_main_t_::type_info_by_name
uword * type_info_by_name
Definition: ethernet.h:308
hi
vl_api_ip4_address_t hi
Definition: arp.api:37
ethernet_interface_address::zero
u16 zero
Definition: ethernet.h:140
ethernet_main_t_::output_feature_arc_index
u8 output_feature_arc_index
Definition: ethernet.h:327
unformat_input_t
struct _unformat_input_t unformat_input_t
subint_config_t::flags
u32 flags
Definition: ethernet.h:210
next_by_ethertype_t
Definition: ethernet.h:264
unformat_ethernet_interface
uword unformat_ethernet_interface(unformat_input_t *input, va_list *args)
Definition: interface.c:327
main_intf_t::untagged_subint
subint_config_t untagged_subint
Definition: ethernet.h:233
format_mac_address
u8 * format_mac_address(u8 *s, va_list *args)
Definition: format.c:58
ethernet_type_info_t::type
ethernet_type_t type
Definition: ethernet.h:187
vlan_intf_t::inner_any_subint
subint_config_t inner_any_subint
Definition: ethernet.h:242
vnet_get_ethernet_main
static ethernet_main_t * vnet_get_ethernet_main(void)
Definition: ethernet.h:572
vlan_intf_t::single_tag_subint
subint_config_t single_tag_subint
Definition: ethernet.h:241
ethernet_main_t_::interfaces
ethernet_interface_t * interfaces
Definition: ethernet.h:303
ethernet_max_header_t
Definition: ethernet.h:118
ethernet_main_t_::l3_next
next_by_ethertype_t l3_next
Definition: ethernet.h:293
ethernet_interface_address
Definition: ethernet.h:135
packet.h
ethernet_address_change_ctx_t::function_opaque
uword function_opaque
Definition: ethernet.h:285
unformat_ethernet_type_host_byte_order
uword unformat_ethernet_type_host_byte_order(unformat_input_t *input, va_list *args)
Definition: format.c:249
feature.h
next_by_ethertype_t::input_next_ip6
u32 input_next_ip6
Definition: ethernet.h:273
format_ethernet_vlan_tci
u8 * format_ethernet_vlan_tci(u8 *s, va_list *va)
Definition: format.c:79
ethernet_main_t_
Definition: ethernet.h:288
ethernet_main_t_::default_mtu
u32 default_mtu
Default interface MTU.
Definition: ethernet.h:336
vnet_buffer
#define vnet_buffer(b)
Definition: buffer.h:441
ethernet_main_t_::main_intfs
main_intf_t * main_intfs
Definition: ethernet.h:312
qinq_intf_t
Definition: ethernet.h:251
vec_elt_at_index
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
Definition: vec_bootstrap.h:203
ethernet_main_t_::qinq_pool
qinq_table_t * qinq_pool
Definition: ethernet.h:318
main_intf_t::dot1ad_vlans
u16 dot1ad_vlans
Definition: ethernet.h:236
mac_address.h
ethernet_main_t_::vlan_pool
vlan_table_t * vlan_pool
Definition: ethernet.h:315
hash_get
#define hash_get(h, key)
Definition: hash.h:249
vnet_create_loopback_interface
int vnet_create_loopback_interface(u32 *sw_if_indexp, u8 *mac_address, u8 is_specified, u32 user_instance)
Definition: interface.c:831
main_intf_t
Definition: ethernet.h:231
static_always_inline
#define static_always_inline
Definition: clib.h:112
vlan_table_t
Definition: ethernet.h:246
uword
u64 uword
Definition: types.h:112
ethernet_header_t
Definition: packet.h:52
ethernet_main_t_::l2_next
u32 l2_next
Definition: ethernet.h:296
ethernet_type_t
ethernet_type_t
Definition: packet.h:45
ethernet_interface
Definition: ethernet.h:146
address
manual_print typedef address
Definition: ip_types.api:96
ethernet_error_t
ethernet_error_t
Definition: ethernet.h:196
ethernet_type_info_t::name
char * name
Definition: ethernet.h:184
main_intf_t::default_subint
subint_config_t default_subint
Definition: ethernet.h:234
ethernet_set_rx_redirect
void ethernet_set_rx_redirect(vnet_main_t *vnm, vnet_hw_interface_t *hi, u32 enable)
Definition: node.c:2149
ethernet_main_t_::address_change_callbacks
ethernet_address_change_ctx_t * address_change_callbacks
Functions to call when interface hw address changes.
Definition: ethernet.h:333
vlib_node_registration_t
struct _vlib_node_registration vlib_node_registration_t
ethernet_main_t_::type_info_by_type
uword * type_info_by_type
Definition: ethernet.h:308
qinq_table_t
Definition: ethernet.h:256
ethernet_get_interface
ethernet_interface_t * ethernet_get_interface(ethernet_main_t *em, u32 hw_if_index)
Definition: interface.c:982
format_ethernet_type
u8 * format_ethernet_type(u8 *s, va_list *args)
Definition: format.c:64
qinq_intf_t::subint
subint_config_t subint
Definition: ethernet.h:253
next_by_ethertype_t::sparse_index_by_input_next_index
u32 * sparse_index_by_input_next_index
Definition: ethernet.h:269
ethernet_main_t_::bm_loopback_instances
uword * bm_loopback_instances
Definition: ethernet.h:330
ethernet_max_header_t::ethernet
ethernet_header_t ethernet
Definition: ethernet.h:120
ethernet_input_frame_t::sw_if_index
u32 sw_if_index
Definition: ethernet.h:58
ethernet_interface_address::mac
mac_address_t mac
Definition: ethernet.h:139
vnet_hw_interface_t
Definition: interface.h:638
vnet_main_t
Definition: vnet.h:76
vnet_delete_loopback_interface
int vnet_delete_loopback_interface(u32 sw_if_index)
Definition: interface.c:1033
always_inline
#define always_inline
Definition: rdma_mlx5dv.h:23
u16x8
_mm_packus_epi16 u16x8
Definition: vector_sse42.h:159
unformat_ethernet_header
uword unformat_ethernet_header(unformat_input_t *input, va_list *args)
Definition: format.c:290
ethernet_main
ethernet_main_t ethernet_main
Definition: init.c:45
u64
unsigned long u64
Definition: types.h:89
ethernet_register_l3_redirect
void ethernet_register_l3_redirect(vlib_main_t *vm, u32 node_index)
Definition: node.c:2331
u32
unsigned int u32
Definition: types.h:88
subint_config_t::sw_if_index
u32 sw_if_index
Definition: ethernet.h:209
vnet_get_sup_hw_interface
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface_funcs.h:92
ethernet_delete_interface
void ethernet_delete_interface(vnet_main_t *vnm, u32 hw_if_index)
Definition: interface.c:393
format_ethernet_header_with_length
u8 * format_ethernet_header_with_length(u8 *s, va_list *args)
Definition: format.c:97
SUBINT_CONFIG_VALID
#define SUBINT_CONFIG_VALID
Definition: ethernet.h:218
ethernet_interface::driver_instance
u32 driver_instance
Definition: ethernet.h:170
next_by_ethertype_t::input_next_mpls
u32 input_next_mpls
Definition: ethernet.h:274
unformat_pg_ethernet_header
uword unformat_pg_ethernet_header(unformat_input_t *input, va_list *args)
Definition: pg.c:82
ethernet_get_type_info
static ethernet_type_info_t * ethernet_get_type_info(ethernet_main_t *em, ethernet_type_t type)
Definition: ethernet.h:343
ethernet_input_frame_t::hw_if_index
u32 hw_if_index
Definition: ethernet.h:59
ETHERNET_N_VLAN
#define ETHERNET_N_VLAN
Definition: packet.h:133
mac_address_t_
Definition: mac_address.h:21
error.def
vlib_main_t
Definition: main.h:102
vnet_link_t
enum vnet_link_t_ vnet_link_t
Link Type: A description of the protocol of packets on the link.
ethernet_frame_is_any_tagged_x4
static_always_inline int ethernet_frame_is_any_tagged_x4(u16 type0, u16 type1, u16 type2, u16 type3)
Definition: ethernet.h:103
b
vlib_buffer_t ** b
Definition: nat44_ei_out2in.c:717
u8
unsigned char u8
Definition: types.h:56
clib_error_t
Definition: clib_error.h:21
ethernet_main_t_::vlib_main
vlib_main_t * vlib_main
Definition: ethernet.h:290
vlib_buffer_t::data
u8 data[]
Packet data.
Definition: buffer.h:204
ethernet_input_frame_t
Definition: ethernet.h:56
ethernet_buffer_get_header
static ethernet_header_t * ethernet_buffer_get_header(vlib_buffer_t *b)
Definition: ethernet.h:409
ethernet_main_t
struct ethernet_main_t_ ethernet_main_t
ethernet_interface::flags
u32 flags
Definition: ethernet.h:148
next_by_ethertype_register
clib_error_t * next_by_ethertype_register(next_by_ethertype_t *l3_next, u32 ethertype, u32 next_index)
Definition: node.c:2194
ethernet_main_t_::redirect_l3_next
u32 redirect_l3_next
Definition: ethernet.h:300
vnet.h
ethernet_address_change_function_t
void() ethernet_address_change_function_t(struct ethernet_main_t_ *im, u32 sw_if_index, uword opaque)
Definition: ethernet.h:280
ETHERNET_N_ERROR
@ ETHERNET_N_ERROR
Definition: ethernet.h:201
ethernet_setup_node
void ethernet_setup_node(vlib_main_t *vm, u32 node_index)
Definition: node.c:2240
ethernet_interface::flag_change
ethernet_flag_change_function_t * flag_change
Definition: ethernet.h:168
ethernet_update_adjacency
void ethernet_update_adjacency(vnet_main_t *vnm, u32 sw_if_index, u32 ai)
Definition: interface.c:198
ethernet_type_info_t::next_index
u32 next_index
Definition: ethernet.h:193
sw_if_index
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
ethernet_interface::secondary_addrs
ethernet_interface_address_t * secondary_addrs
Definition: ethernet.h:176
ethernet_sw_interface_set_l2_mode_noport
void ethernet_sw_interface_set_l2_mode_noport(vnet_main_t *vnm, u32 sw_if_index, u32 l2)
Definition: node.c:2009
ethernet_interface::address
ethernet_interface_address_t address
Definition: ethernet.h:173
unformat_mac_address
uword unformat_mac_address(unformat_input_t *input, va_list *args)
Definition: format.c:241
vnet_hw_interface_class_t
struct _vnet_hw_interface_class vnet_hw_interface_class_t
subint_config_t
Definition: ethernet.h:207
type
vl_api_fib_path_type_t type
Definition: fib_types.api:123
ethernet_register_input_type
void ethernet_register_input_type(vlib_main_t *vm, ethernet_type_t type, u32 node_index)
Definition: node.c:2274
vnet_delete_sub_interface
int vnet_delete_sub_interface(u32 sw_if_index)
Definition: interface.c:1095
main_intf_t::dot1q_vlans
u16 dot1q_vlans
Definition: ethernet.h:235
ethernet_register_interface
clib_error_t * ethernet_register_interface(vnet_main_t *vnm, u32 dev_class_index, u32 dev_instance, const u8 *address, u32 *hw_if_index_return, ethernet_flag_change_function_t flag_change)
Definition: interface.c:348
ethernet_get_main
ethernet_main_t * ethernet_get_main(vlib_main_t *vm)
Definition: init.c:125
eth_vlan_table_lookups
static void eth_vlan_table_lookups(ethernet_main_t *em, vnet_main_t *vnm, u32 port_sw_if_index0, u16 first_ethertype, u16 outer_id, u16 inner_id, vnet_hw_interface_t **hi, main_intf_t **main_intf, vlan_intf_t **vlan_intf, qinq_intf_t **qinq_intf)
Definition: ethernet.h:483
ethernet_main_t_::redirect_l3
u32 redirect_l3
Definition: ethernet.h:299
ethernet_interface_t
struct ethernet_interface ethernet_interface_t
vlib_buffer_t
VLIB buffer representation.
Definition: buffer.h:111
mac_address
manual_print typedef u8 mac_address[6]
Definition: ethernet_types.api:19
flags
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:105