source: mainline/uspace/srv/net/nil/eth/eth_header.h@ 6067284

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 6067284 was 6067284, checked in by Jakub Jermar <jakub@…>, 15 years ago

Cleanup eth.

  • Property mode set to 100644
File size: 6.1 KB
RevLine 
[21580dd]1/*
2 * Copyright (c) 2009 Lukas Mejdrech
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup eth
30 * @{
31 */
32
33/** @file
[6067284]34 * Ethernet protocol header definitions.
35 * Based on the IEEE 802.3-2005
[21580dd]36 */
37
[6067284]38#ifndef NET_ETH_HEADER_H_
39#define NET_ETH_HEADER_H_
[21580dd]40
41#include <sys/types.h>
42
[6067284]43/** Ethernet address length. */
44#define ETH_ADDR 6
[21580dd]45
[6067284]46/** Ethernet header preamble value. */
[21580dd]47#define ETH_PREAMBLE 0x55
48
[6067284]49/** Ethernet header start of frame value. */
50#define ETH_SFD 0xD5
[21580dd]51
[6067284]52/** IEEE 802.2 unordered information control field. */
[21580dd]53#define IEEE_8023_2_UI 0x03
54
55/** Type definition of the Ethernet header IEEE 802.3 + 802.2 + SNAP extensions.
[6067284]56 * @see eth_header_snap
[21580dd]57 */
[6067284]58typedef struct eth_header_snap eth_header_snap_t;
[21580dd]59
[6067284]60/** Type definition of the Ethernet header IEEE 802.3 + 802.2 + SNAP extensions
61 * pointer.
62 *
63 * @see eth_header_snap
[21580dd]64 */
[6067284]65typedef eth_header_snap_t *eth_header_snap_ref;
[21580dd]66
67/** Type definition of the Ethernet header IEEE 802.3 + 802.2 + SNAP extensions.
[6067284]68 * @see eth_header_lsap
[21580dd]69 */
[6067284]70typedef struct eth_header_lsap eth_header_lsap_t;
[21580dd]71
72/** Type definition of the Ethernet header IEEE 802.3 + 802.2 extension pointer.
[6067284]73 * @see eth_header_lsap
[21580dd]74 */
[6067284]75typedef eth_header_lsap_t *eth_header_lsap_ref;
[21580dd]76
77/** Type definition of the Ethernet header LSAP extension.
[6067284]78 * @see eth_ieee_lsap
[21580dd]79 */
[6067284]80typedef struct eth_ieee_lsap eth_ieee_lsap_t;
[21580dd]81
82/** Type definition of the Ethernet header LSAP extension pointer.
[6067284]83 * @see eth_ieee_lsap
[21580dd]84 */
[6067284]85typedef eth_ieee_lsap_t *eth_ieee_lsap_ref;
[21580dd]86
87/** Type definition of the Ethernet header SNAP extension.
[6067284]88 * @see eth_snap
[21580dd]89 */
[6067284]90typedef struct eth_snap eth_snap_t;
[21580dd]91
92/** Type definition of the Ethernet header SNAP extension pointer.
[6067284]93 * @see eth_snap
[21580dd]94 */
[6067284]95typedef eth_snap_t *eth_snap_ref;
[21580dd]96
97/** Type definition of the Ethernet header preamble.
[6067284]98 * @see preamble
[21580dd]99 */
[6067284]100typedef struct eth_preamble eth_preamble_t;
[21580dd]101
102/** Type definition of the Ethernet header preamble pointer.
[6067284]103 * @see eth_preamble
[21580dd]104 */
[6067284]105typedef eth_preamble_t *eth_preamble_ref;
[21580dd]106
107/** Type definition of the Ethernet header.
[6067284]108 * @see eth_header
[21580dd]109 */
[6067284]110typedef struct eth_header eth_header_t;
[21580dd]111
112/** Type definition of the Ethernet header pointer.
[6067284]113 * @see eth_header
[21580dd]114 */
[6067284]115typedef eth_header_t *eth_header_ref;
[21580dd]116
[6067284]117/** Ethernet header Link Service Access Point extension. */
118struct eth_ieee_lsap {
119 /**
120 * Destination Service Access Point identifier.
[aadf01e]121 * The possible values are assigned by an IEEE committee.
[21580dd]122 */
[aadf01e]123 uint8_t dsap;
[6067284]124
125 /**
126 * Source Service Access Point identifier.
[aadf01e]127 * The possible values are assigned by an IEEE committee.
[21580dd]128 */
[aadf01e]129 uint8_t ssap;
[6067284]130
131 /**
132 * Control parameter.
[aadf01e]133 * The possible values are assigned by an IEEE committee.
[21580dd]134 */
[aadf01e]135 uint8_t ctrl;
[21580dd]136} __attribute__ ((packed));
137
[6067284]138/** Ethernet header SNAP extension. */
139struct eth_snap {
140 /** Protocol identifier or organization code. */
[aadf01e]141 uint8_t protocol[3];
[6067284]142
143 /**
144 * Ethernet protocol identifier in the network byte order (big endian).
145 * @see ethernet_protocols.h
[21580dd]146 */
[aadf01e]147 uint16_t ethertype;
[21580dd]148} __attribute__ ((packed));
149
150/** Ethernet header preamble.
[6067284]151 *
152 * Used for dummy devices.
[21580dd]153 */
[6067284]154struct eth_preamble {
155 /**
156 * Controlling preamble used for the frame transmission synchronization.
157 * All should be set to ETH_PREAMBLE.
[21580dd]158 */
[aadf01e]159 uint8_t preamble[7];
[6067284]160
161 /**
162 * Start of Frame Delimiter used for the frame transmission
163 * synchronization.
164 * Should be set to ETH_SFD.
[21580dd]165 */
[aadf01e]166 uint8_t sfd;
[21580dd]167} __attribute__ ((packed));
168
[6067284]169/** Ethernet header. */
170struct eth_header {
171 /** Destination host Ethernet address (MAC address). */
[aadf01e]172 uint8_t destination_address[ETH_ADDR];
[6067284]173 /** Source host Ethernet address (MAC address). */
[aadf01e]174 uint8_t source_address[ETH_ADDR];
[6067284]175
176 /**
177 * Ethernet protocol identifier in the network byte order (big endian).
178 * @see ethernet_protocols.h
[21580dd]179 */
[aadf01e]180 uint16_t ethertype;
[21580dd]181} __attribute__ ((packed));
182
[6067284]183/** Ethernet header IEEE 802.3 + 802.2 extension. */
184struct eth_header_lsap {
185 /** Ethernet header. */
[aadf01e]186 eth_header_t header;
[6067284]187
188 /**
189 * LSAP extension.
190 * If DSAP and SSAP are set to ETH_LSAP_SNAP the SNAP extension is being
191 * used.
192 * If DSAP and SSAP fields are equal to ETH_RAW the raw Ethernet packet
193 * without any extensions is being used and the frame content starts
194 * rigth after the two fields.
[21580dd]195 */
[aadf01e]196 eth_ieee_lsap_t lsap;
[21580dd]197} __attribute__ ((packed));
198
[6067284]199/** Ethernet header IEEE 802.3 + 802.2 + SNAP extensions. */
200struct eth_header_snap {
201 /** Ethernet header. */
[aadf01e]202 eth_header_t header;
[6067284]203
204 /**
205 * LSAP extension.
206 * If DSAP and SSAP are set to ETH_LSAP_SNAP the SNAP extension is being
207 * used.
208 * If DSAP and SSAP fields are equal to ETH_RAW the raw Ethernet packet
209 * without any extensions is being used and the frame content starts
210 * rigth after the two fields.
[21580dd]211 */
[aadf01e]212 eth_ieee_lsap_t lsap;
[6067284]213
214 /** SNAP extension. */
[aadf01e]215 eth_snap_t snap;
[21580dd]216} __attribute__ ((packed));
217
[6067284]218/** Ethernet Frame Check Sequence. */
219typedef uint32_t eth_fcs_t;
[21580dd]220
[6067284]221/** Ethernet Frame Check Sequence pointer. */
222typedef eth_fcs_t *eth_fcs_ref;
[21580dd]223
224#endif
225
226/** @}
227 */
Note: See TracBrowser for help on using the repository browser.