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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 774e6d1a was 774e6d1a, checked in by martin@…>, 14 years ago

partial networking stack overhaul

  • a lot of coding style changes (comments, indentation, etc.)
  • convert several ints to unsigned ints or size_t values
  • streamline many of the IPC-related macros (they no longer dereference the call structure by themselves)
  • get rid of netif_interface.h (containing only aliases for remote functions and not serving any purpose)
  • rename netif_local.{c|h} to netif_skel.{c|h} (it is really just a skeleton)
  • drop the "_remote" and "_standalone" suffixes from most of the netif_ functions (they do not serve any purpose anymore)
  • implement netif_client_connection() as a common framework function for all netif modules
    • update the lo module accordingly
  • ip module now reports the default gateway to the user whenever it is being set
  • Property mode set to 100644
File size: 5.2 KB
Line 
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
34 * Ethernet protocol header definitions.
35 * Based on the IEEE 802.3-2005
36 */
37
38#ifndef NET_ETH_HEADER_H_
39#define NET_ETH_HEADER_H_
40
41#include <sys/types.h>
42
43/** Ethernet address length. */
44#define ETH_ADDR 6
45
46/** Ethernet header preamble value. */
47#define ETH_PREAMBLE 0x55
48
49/** Ethernet header start of frame value. */
50#define ETH_SFD 0xD5
51
52/** IEEE 802.2 unordered information control field. */
53#define IEEE_8023_2_UI 0x03
54
55/** Type definition of the Ethernet header IEEE 802.3 + 802.2 + SNAP extensions.
56 * @see eth_header_snap
57 */
58typedef struct eth_header_snap eth_header_snap_t;
59
60/** Type definition of the Ethernet header IEEE 802.3 + 802.2 + SNAP extensions.
61 * @see eth_header_lsap
62 */
63typedef struct eth_header_lsap eth_header_lsap_t;
64
65/** Type definition of the Ethernet header LSAP extension.
66 * @see eth_ieee_lsap
67 */
68typedef struct eth_ieee_lsap eth_ieee_lsap_t;
69
70/** Type definition of the Ethernet header SNAP extension.
71 * @see eth_snap
72 */
73typedef struct eth_snap eth_snap_t;
74
75/** Type definition of the Ethernet header preamble.
76 * @see preamble
77 */
78typedef struct eth_preamble eth_preamble_t;
79
80/** Type definition of the Ethernet header.
81 * @see eth_header
82 */
83typedef struct eth_header eth_header_t;
84
85/** Ethernet header Link Service Access Point extension. */
86struct eth_ieee_lsap {
87 /**
88 * Destination Service Access Point identifier.
89 * The possible values are assigned by an IEEE committee.
90 */
91 uint8_t dsap;
92
93 /**
94 * Source Service Access Point identifier.
95 * The possible values are assigned by an IEEE committee.
96 */
97 uint8_t ssap;
98
99 /**
100 * Control parameter.
101 * The possible values are assigned by an IEEE committee.
102 */
103 uint8_t ctrl;
104} __attribute__ ((packed));
105
106/** Ethernet header SNAP extension. */
107struct eth_snap {
108 /** Protocol identifier or organization code. */
109 uint8_t protocol[3];
110
111 /**
112 * Ethernet protocol identifier in the network byte order (big endian).
113 * @see ethernet_protocols.h
114 */
115 uint16_t ethertype;
116} __attribute__ ((packed));
117
118/** Ethernet header preamble.
119 *
120 * Used for dummy devices.
121 */
122struct eth_preamble {
123 /**
124 * Controlling preamble used for the frame transmission synchronization.
125 * All should be set to ETH_PREAMBLE.
126 */
127 uint8_t preamble[7];
128
129 /**
130 * Start of Frame Delimiter used for the frame transmission
131 * synchronization.
132 * Should be set to ETH_SFD.
133 */
134 uint8_t sfd;
135} __attribute__ ((packed));
136
137/** Ethernet header. */
138struct eth_header {
139 /** Destination host Ethernet address (MAC address). */
140 uint8_t destination_address[ETH_ADDR];
141 /** Source host Ethernet address (MAC address). */
142 uint8_t source_address[ETH_ADDR];
143
144 /**
145 * Ethernet protocol identifier in the network byte order (big endian).
146 * @see ethernet_protocols.h
147 */
148 uint16_t ethertype;
149} __attribute__ ((packed));
150
151/** Ethernet header IEEE 802.3 + 802.2 extension. */
152struct eth_header_lsap {
153 /** Ethernet header. */
154 eth_header_t header;
155
156 /**
157 * LSAP extension.
158 * If DSAP and SSAP are set to ETH_LSAP_SNAP the SNAP extension is being
159 * used.
160 * If DSAP and SSAP fields are equal to ETH_RAW the raw Ethernet packet
161 * without any extensions is being used and the frame content starts
162 * rigth after the two fields.
163 */
164 eth_ieee_lsap_t lsap;
165} __attribute__ ((packed));
166
167/** Ethernet header IEEE 802.3 + 802.2 + SNAP extensions. */
168struct eth_header_snap {
169 /** Ethernet header. */
170 eth_header_t header;
171
172 /**
173 * LSAP extension.
174 * If DSAP and SSAP are set to ETH_LSAP_SNAP the SNAP extension is being
175 * used.
176 * If DSAP and SSAP fields are equal to ETH_RAW the raw Ethernet packet
177 * without any extensions is being used and the frame content starts
178 * rigth after the two fields.
179 */
180 eth_ieee_lsap_t lsap;
181
182 /** SNAP extension. */
183 eth_snap_t snap;
184} __attribute__ ((packed));
185
186/** Ethernet Frame Check Sequence. */
187typedef uint32_t eth_fcs_t;
188
189#endif
190
191/** @}
192 */
Note: See TracBrowser for help on using the repository browser.