blob: e1e42badd067ca7936bcbe39ed291f3f20509f49 [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/packet.h: ethernet packet format.
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_packet_h
41#define included_ethernet_packet_h
42
Neale Ranns871dc422018-03-29 01:28:09 -070043#include <vnet/interface.h>
44
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070045typedef enum
46{
Ed Warnickecb9cada2015-12-08 15:45:58 -070047#define ethernet_type(n,s) ETHERNET_TYPE_##s = n,
48#include <vnet/ethernet/types.def>
49#undef ethernet_type
50} ethernet_type_t;
51
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070052typedef struct
53{
Ed Warnickecb9cada2015-12-08 15:45:58 -070054 /* Source/destination address. */
55 u8 dst_address[6];
56 u8 src_address[6];
57
58 /* Ethernet type. */
59 u16 type;
60} ethernet_header_t;
61
62#define ETHERNET_ADDRESS_UNICAST 0
63#define ETHERNET_ADDRESS_MULTICAST 1
64
65/* I/G bit: individual (unicast)/group (broadcast/multicast). */
66always_inline uword
Neale Ranns21fb4f72020-10-05 12:26:47 +000067ethernet_address_cast (const u8 * a)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070068{
69 return (a[0] >> 0) & 1;
70}
Ed Warnickecb9cada2015-12-08 15:45:58 -070071
Neale Ranns871dc422018-03-29 01:28:09 -070072always_inline int
Neale Ranns21fb4f72020-10-05 12:26:47 +000073ethernet_address_is_broadcast (const u8 * a)
Neale Ranns871dc422018-03-29 01:28:09 -070074{
75 return clib_mem_unaligned (a, u32) == 0xffffffff &&
76 clib_mem_unaligned (a + 4, u16) == 0xffff;
77}
78
Ed Warnickecb9cada2015-12-08 15:45:58 -070079always_inline uword
Neale Ranns21fb4f72020-10-05 12:26:47 +000080ethernet_address_is_locally_administered (const u8 * a)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070081{
82 return (a[0] >> 1) & 1;
83}
Ed Warnickecb9cada2015-12-08 15:45:58 -070084
85always_inline void
86ethernet_address_set_locally_administered (u8 * a)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070087{
88 a[0] |= 1 << 1;
89}
Ed Warnickecb9cada2015-12-08 15:45:58 -070090
Neale Ranns871dc422018-03-29 01:28:09 -070091always_inline int
Neale Ranns21fb4f72020-10-05 12:26:47 +000092eh_dst_addr_to_rx_ctype (const ethernet_header_t * eh)
Neale Ranns871dc422018-03-29 01:28:09 -070093{
94 if (PREDICT_TRUE (ethernet_address_cast (eh->dst_address) ==
95 ETHERNET_ADDRESS_UNICAST))
96 {
97 return VNET_INTERFACE_COUNTER_RX_UNICAST;
98 }
99 else if (ethernet_address_is_broadcast (eh->dst_address))
100 {
101 return VNET_INTERFACE_COUNTER_RX_BROADCAST;
102 }
103 else
104 {
105 return VNET_INTERFACE_COUNTER_RX_MULTICAST;
106 }
107}
108
109always_inline int
Neale Ranns21fb4f72020-10-05 12:26:47 +0000110eh_dst_addr_to_tx_ctype (const ethernet_header_t * eh)
Neale Ranns871dc422018-03-29 01:28:09 -0700111{
112 if (PREDICT_TRUE (ethernet_address_cast (eh->dst_address) ==
113 ETHERNET_ADDRESS_UNICAST))
114 {
115 return VNET_INTERFACE_COUNTER_TX_UNICAST;
116 }
117 else if (ethernet_address_is_broadcast (eh->dst_address))
118 {
119 return VNET_INTERFACE_COUNTER_TX_BROADCAST;
120 }
121 else
122 {
123 return VNET_INTERFACE_COUNTER_TX_MULTICAST;
124 }
125}
126
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127/* For VLAN ethernet type. */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700128typedef struct
129{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130 /* 3 bit priority, 1 bit CFI and 12 bit vlan id. */
131 u16 priority_cfi_and_id;
132
133#define ETHERNET_N_VLAN (1 << 12)
134
135 /* Inner ethernet type. */
136 u16 type;
137} ethernet_vlan_header_t;
138
Neale Ranns039cbfe2018-02-27 03:45:38 -0800139always_inline void
140ethernet_vlan_header_set_priority_net_order (ethernet_vlan_header_t * h,
141 u8 prio)
142{
143 u8 *bytes = (u8 *) (&h->priority_cfi_and_id);
144
Prashant Maheshwari3bcf1a92019-07-31 21:37:33 +0530145 bytes[0] &= 0x0f;
146 bytes[0] |= (prio & 0xf) << 4;
Neale Ranns039cbfe2018-02-27 03:45:38 -0800147}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148
Neale Ranns0809f6c2018-07-16 04:14:21 -0700149always_inline u8
150ethernet_vlan_header_get_priority_net_order (ethernet_vlan_header_t * h)
151{
152 u8 *bytes = (u8 *) (&h->priority_cfi_and_id);
153
Prashant Maheshwari3bcf1a92019-07-31 21:37:33 +0530154 return (bytes[0] >> 4);
Neale Ranns0809f6c2018-07-16 04:14:21 -0700155}
156
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157/* VLAN with ethertype first and vlan id second */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700158typedef struct
159{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160 /* vlan type */
161 u16 type;
162
163 /* 3 bit priority, 1 bit CFI and 12 bit vlan id. */
164 u16 priority_cfi_and_id;
165} ethernet_vlan_header_tv_t;
166
Pavel Kotucek95300d12016-08-26 16:11:36 +0200167/* PBB header with B-TAG - backbone VLAN indicator and I-TAG - service encapsulation */
168typedef struct
169{
170 /* Backbone source/destination address. */
171 u8 b_dst_address[6];
172 u8 b_src_address[6];
173
174 /* B-tag */
175 u16 b_type;
176 /* 3 bit priority, 1 bit DEI and 12 bit vlan id */
177 u16 priority_dei_id;
178
179 /* I-tag */
180 u16 i_type;
181 /* 3 bit priority, 1 bit DEI, 1 bit UCA, 3 bit RES and 24 bit I_SID (service identifier) */
182 u32 priority_dei_uca_res_sid;
183
184#define ETHERNET_N_PBB (1 << 24)
185} ethernet_pbb_header_t;
186
187/* *INDENT-OFF* */
188typedef CLIB_PACKED (struct
189{
190 /* Backbone source/destination address. */
191 u8 b_dst_address[6];
192 u8 b_src_address[6];
193
194 /* B-tag */
195 u16 b_type;
196 /* 3 bit priority, 1 bit DEI and 12 bit vlan id */
197 u16 priority_dei_id;
198
199 /* I-tag */
200 u16 i_type;
201 /* 3 bit priority, 1 bit DEI, 1 bit UCA, 3 bit RES and 24 bit I_SID (service identifier) */
202 u32 priority_dei_uca_res_sid;
203}) ethernet_pbb_header_packed_t;
204/* *INDENT-ON* */
205
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206#endif /* included_ethernet_packet_h */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700207
208/*
209 * fd.io coding-style-patch-verification: ON
210 *
211 * Local Variables:
212 * eval: (c-set-style "gnu")
213 * End:
214 */