HAMMER 60I/Many: Mirroring
[dragonfly.git] / sys / net / ethernet.h
blob6f18d2fd6c02f708d878625f95d90da1d733458c
1 /*
2 * Fundamental constants relating to ethernet.
4 * $FreeBSD: src/sys/net/ethernet.h,v 1.12.2.8 2002/12/01 14:03:09 sobomax Exp $
5 * $DragonFly: src/sys/net/ethernet.h,v 1.19 2008/06/24 11:40:56 sephe Exp $
7 */
9 #ifndef _NET_ETHERNET_H_
10 #define _NET_ETHERNET_H_
12 #ifndef _SYS_TYPES_H_
13 #include <sys/types.h>
14 #endif
17 * The number of bytes in an ethernet (MAC) address.
19 #define ETHER_ADDR_LEN 6
22 * The number of bytes in the type field.
24 #define ETHER_TYPE_LEN 2
27 * The number of bytes in the trailing CRC field.
29 #define ETHER_CRC_LEN 4
32 * Mbuf adjust factor to force 32-bit alignment of IP header.
33 * Drivers should do m_adj(m, ETHER_ALIGN) when setting up a
34 * receive so the upper layers get the IP header properly aligned
35 * past the 14-byte Ethernet header.
37 #define ETHER_ALIGN 2
40 * The length of the combined header.
42 #define ETHER_HDR_LEN (ETHER_ADDR_LEN*2+ETHER_TYPE_LEN)
45 * The minimum packet length.
47 #define ETHER_MIN_LEN 64
50 * The maximum packet length.
52 #define ETHER_MAX_LEN 1518
55 * A macro to validate a length with
57 #define ETHER_IS_VALID_LEN(foo) \
58 ((foo) >= ETHER_MIN_LEN && (foo) <= ETHER_MAX_LEN)
61 * Ethernet CRC32 polynomials (big- and little-endian verions).
63 #define ETHER_CRC_POLY_LE 0xedb88320
64 #define ETHER_CRC_POLY_BE 0x04c11db6
67 * Structure of a 10Mb/s Ethernet header.
69 struct ether_header {
70 u_char ether_dhost[ETHER_ADDR_LEN];
71 u_char ether_shost[ETHER_ADDR_LEN];
72 u_short ether_type;
76 * Structure of a 48-bit Ethernet address.
78 struct ether_addr {
79 u_char octet[ETHER_ADDR_LEN];
82 extern const uint8_t etherbroadcastaddr[ETHER_ADDR_LEN];
84 #define ETHER_IS_MULTICAST(addr) (*(addr) & 0x01) /* is address mcast/bcast? */
87 * NOTE: 0x0000-0x05DC (0..1500) are generally IEEE 802.3 length fields.
88 * However, there are some conflicts.
91 #define ETHERTYPE_8023 0x0004 /* IEEE 802.3 packet */
92 /* 0x0101 .. 0x1FF Experimental */
93 #define ETHERTYPE_PUP 0x0200 /* Xerox PUP protocol - see 0A00 */
94 #define ETHERTYPE_PUPAT 0x0200 /* PUP Address Translation - see 0A01 */
95 #define ETHERTYPE_SPRITE 0x0500 /* ??? */
96 /* 0x0400 Nixdorf */
97 #define ETHERTYPE_NS 0x0600 /* XNS */
98 #define ETHERTYPE_NSAT 0x0601 /* XNS Address Translation (3Mb only) */
99 #define ETHERTYPE_DLOG1 0x0660 /* DLOG (?) */
100 #define ETHERTYPE_DLOG2 0x0661 /* DLOG (?) */
101 #define ETHERTYPE_IP 0x0800 /* IP protocol */
102 #define ETHERTYPE_X75 0x0801 /* X.75 Internet */
103 #define ETHERTYPE_NBS 0x0802 /* NBS Internet */
104 #define ETHERTYPE_ECMA 0x0803 /* ECMA Internet */
105 #define ETHERTYPE_CHAOS 0x0804 /* CHAOSnet */
106 #define ETHERTYPE_X25 0x0805 /* X.25 Level 3 */
107 #define ETHERTYPE_ARP 0x0806 /* Address resolution protocol */
108 #define ETHERTYPE_NSCOMPAT 0x0807 /* XNS Compatibility */
109 #define ETHERTYPE_FRARP 0x0808 /* Frame Relay ARP (RFC1701) */
110 /* 0x081C Symbolics Private */
111 /* 0x0888 - 0x088A Xyplex */
112 #define ETHERTYPE_UBDEBUG 0x0900 /* Ungermann-Bass network debugger */
113 #define ETHERTYPE_IEEEPUP 0x0A00 /* Xerox IEEE802.3 PUP */
114 #define ETHERTYPE_IEEEPUPAT 0x0A01 /* Xerox IEEE802.3 PUP Address Translation */
115 #define ETHERTYPE_VINES 0x0BAD /* Banyan VINES */
116 #define ETHERTYPE_VINESLOOP 0x0BAE /* Banyan VINES Loopback */
117 #define ETHERTYPE_VINESECHO 0x0BAF /* Banyan VINES Echo */
119 /* 0x1000 - 0x100F Berkeley Trailer */
121 * The ETHERTYPE_NTRAILER packet types starting at ETHERTYPE_TRAIL have
122 * (type-ETHERTYPE_TRAIL)*512 bytes of data followed
123 * by an ETHER type (as given above) and then the (variable-length) header.
125 #define ETHERTYPE_TRAIL 0x1000 /* Trailer packet */
126 #define ETHERTYPE_NTRAILER 16
128 #define ETHERTYPE_DCA 0x1234 /* DCA - Multicast */
129 #define ETHERTYPE_VALID 0x1600 /* VALID system protocol */
130 #define ETHERTYPE_DOGFIGHT 0x1989 /* Artificial Horizons ("Aviator" dogfight simulator [on Sun]) */
131 #define ETHERTYPE_RCL 0x1995 /* Datapoint Corporation (RCL lan protocol) */
133 /* The following 3C0x types
134 are unregistered: */
135 #define ETHERTYPE_NBPVCD 0x3C00 /* 3Com NBP virtual circuit datagram (like XNS SPP) not registered */
136 #define ETHERTYPE_NBPSCD 0x3C01 /* 3Com NBP System control datagram not registered */
137 #define ETHERTYPE_NBPCREQ 0x3C02 /* 3Com NBP Connect request (virtual cct) not registered */
138 #define ETHERTYPE_NBPCRSP 0x3C03 /* 3Com NBP Connect repsonse not registered */
139 #define ETHERTYPE_NBPCC 0x3C04 /* 3Com NBP Connect complete not registered */
140 #define ETHERTYPE_NBPCLREQ 0x3C05 /* 3Com NBP Close request (virtual cct) not registered */
141 #define ETHERTYPE_NBPCLRSP 0x3C06 /* 3Com NBP Close response not registered */
142 #define ETHERTYPE_NBPDG 0x3C07 /* 3Com NBP Datagram (like XNS IDP) not registered */
143 #define ETHERTYPE_NBPDGB 0x3C08 /* 3Com NBP Datagram broadcast not registered */
144 #define ETHERTYPE_NBPCLAIM 0x3C09 /* 3Com NBP Claim NetBIOS name not registered */
145 #define ETHERTYPE_NBPDLTE 0x3C0A /* 3Com NBP Delete Netbios name not registered */
146 #define ETHERTYPE_NBPRAS 0x3C0B /* 3Com NBP Remote adaptor status request not registered */
147 #define ETHERTYPE_NBPRAR 0x3C0C /* 3Com NBP Remote adaptor response not registered */
148 #define ETHERTYPE_NBPRST 0x3C0D /* 3Com NBP Reset not registered */
150 #define ETHERTYPE_PCS 0x4242 /* PCS Basic Block Protocol */
151 #define ETHERTYPE_IMLBLDIAG 0x424C /* Information Modes Little Big LAN diagnostic */
152 #define ETHERTYPE_DIDDLE 0x4321 /* THD - Diddle */
153 #define ETHERTYPE_IMLBL 0x4C42 /* Information Modes Little Big LAN */
154 #define ETHERTYPE_SIMNET 0x5208 /* BBN Simnet Private */
155 #define ETHERTYPE_DECEXPER 0x6000 /* DEC Unassigned, experimental */
156 #define ETHERTYPE_MOPDL 0x6001 /* DEC MOP dump/load */
157 #define ETHERTYPE_MOPRC 0x6002 /* DEC MOP remote console */
158 #define ETHERTYPE_DECnet 0x6003 /* DEC DECNET Phase IV route */
159 #define ETHERTYPE_DN ETHERTYPE_DECnet /* libpcap, tcpdump */
160 #define ETHERTYPE_LAT 0x6004 /* DEC LAT */
161 #define ETHERTYPE_DECDIAG 0x6005 /* DEC diagnostic protocol (at interface initialization?) */
162 #define ETHERTYPE_DECCUST 0x6006 /* DEC customer protocol */
163 #define ETHERTYPE_SCA 0x6007 /* DEC LAVC, SCA */
164 #define ETHERTYPE_AMBER 0x6008 /* DEC AMBER */
165 #define ETHERTYPE_DECMUMPS 0x6009 /* DEC MUMPS */
166 /* 0x6010 - 0x6014 3Com Corporation */
167 #define ETHERTYPE_TRANSETHER 0x6558 /* Trans Ether Bridging (RFC1701)*/
168 #define ETHERTYPE_RAWFR 0x6559 /* Raw Frame Relay (RFC1701) */
169 #define ETHERTYPE_UBDL 0x7000 /* Ungermann-Bass download */
170 #define ETHERTYPE_UBNIU 0x7001 /* Ungermann-Bass NIUs */
171 #define ETHERTYPE_UBDIAGLOOP 0x7002 /* Ungermann-Bass diagnostic/loopback */
172 #define ETHERTYPE_UBNMC 0x7003 /* Ungermann-Bass ??? (NMC to/from UB Bridge) */
173 #define ETHERTYPE_UBBST 0x7005 /* Ungermann-Bass Bridge Spanning Tree */
174 #define ETHERTYPE_OS9 0x7007 /* OS/9 Microware */
175 #define ETHERTYPE_OS9NET 0x7009 /* OS/9 Net? */
176 /* 0x7020 - 0x7029 LRT (England) (now Sintrom) */
177 #define ETHERTYPE_RACAL 0x7030 /* Racal-Interlan */
178 #define ETHERTYPE_PRIMENTS 0x7031 /* Prime NTS (Network Terminal Service) */
179 #define ETHERTYPE_CABLETRON 0x7034 /* Cabletron */
180 #define ETHERTYPE_CRONUSVLN 0x8003 /* Cronus VLN */
181 #define ETHERTYPE_CRONUS 0x8004 /* Cronus Direct */
182 #define ETHERTYPE_HP 0x8005 /* HP Probe */
183 #define ETHERTYPE_NESTAR 0x8006 /* Nestar */
184 #define ETHERTYPE_ATTSTANFORD 0x8008 /* AT&T/Stanford (local use) */
185 #define ETHERTYPE_EXCELAN 0x8010 /* Excelan */
186 #define ETHERTYPE_SG_DIAG 0x8013 /* SGI diagnostic type */
187 #define ETHERTYPE_SG_NETGAMES 0x8014 /* SGI network games */
188 #define ETHERTYPE_SG_RESV 0x8015 /* SGI reserved type */
189 #define ETHERTYPE_SG_BOUNCE 0x8016 /* SGI bounce server */
190 #define ETHERTYPE_APOLLODOMAIN 0x8019 /* Apollo DOMAIN */
191 #define ETHERTYPE_TYMSHARE 0x802E /* Tymeshare */
192 #define ETHERTYPE_TIGAN 0x802F /* Tigan, Inc. */
193 #define ETHERTYPE_REVARP 0x8035 /* Reverse addr resolution protocol */
194 #define ETHERTYPE_AEONIC 0x8036 /* Aeonic Systems */
195 #define ETHERTYPE_IPXNEW 0x8037 /* IPX (Novell Netware?) */
196 #define ETHERTYPE_LANBRIDGE 0x8038 /* DEC LANBridge */
197 #define ETHERTYPE_DSMD 0x8039 /* DEC DSM/DDP */
198 #define ETHERTYPE_ARGONAUT 0x803A /* DEC Argonaut Console */
199 #define ETHERTYPE_VAXELN 0x803B /* DEC VAXELN */
200 #define ETHERTYPE_DECDNS 0x803C /* DEC DNS Naming Service */
201 #define ETHERTYPE_ENCRYPT 0x803D /* DEC Ethernet Encryption */
202 #define ETHERTYPE_DECDTS 0x803E /* DEC Distributed Time Service */
203 #define ETHERTYPE_DECLTM 0x803F /* DEC LAN Traffic Monitor */
204 #define ETHERTYPE_DECNETBIOS 0x8040 /* DEC PATHWORKS DECnet NETBIOS Emulation */
205 #define ETHERTYPE_DECLAST 0x8041 /* DEC Local Area System Transport */
206 /* 0x8042 DEC Unassigned */
207 #define ETHERTYPE_PLANNING 0x8044 /* Planning Research Corp. */
208 /* 0x8046 - 0x8047 AT&T */
209 #define ETHERTYPE_DECAM 0x8048 /* DEC Availability Manager for Distributed Systems DECamds (but someone at DEC says not) */
210 #define ETHERTYPE_EXPERDATA 0x8049 /* ExperData */
211 #define ETHERTYPE_VEXP 0x805B /* Stanford V Kernel exp. */
212 #define ETHERTYPE_VPROD 0x805C /* Stanford V Kernel prod. */
213 #define ETHERTYPE_ES 0x805D /* Evans & Sutherland */
214 #define ETHERTYPE_LITTLE 0x8060 /* Little Machines */
215 #define ETHERTYPE_COUNTERPOINT 0x8062 /* Counterpoint Computers */
216 /* 0x8065 - 0x8066 Univ. of Mass @ Amherst */
217 #define ETHERTYPE_VEECO 0x8067 /* Veeco Integrated Auto. */
218 #define ETHERTYPE_GENDYN 0x8068 /* General Dynamics */
219 #define ETHERTYPE_ATT 0x8069 /* AT&T */
220 #define ETHERTYPE_AUTOPHON 0x806A /* Autophon */
221 #define ETHERTYPE_COMDESIGN 0x806C /* ComDesign */
222 #define ETHERTYPE_COMPUGRAPHIC 0x806D /* Compugraphic Corporation */
223 /* 0x806E - 0x8077 Landmark Graphics Corp. */
224 #define ETHERTYPE_MATRA 0x807A /* Matra */
225 #define ETHERTYPE_DDE 0x807B /* Dansk Data Elektronik */
226 #define ETHERTYPE_MERIT 0x807C /* Merit Internodal (or Univ of Michigan?) */
227 /* 0x807D - 0x807F Vitalink Communications */
228 #define ETHERTYPE_VLTLMAN 0x8080 /* Vitalink TransLAN III Management */
229 /* 0x8081 - 0x8083 Counterpoint Computers */
230 /* 0x8088 - 0x808A Xyplex */
231 #define ETHERTYPE_ATALK 0x809B /* AppleTalk */
232 #define ETHERTYPE_AT ETHERTYPE_ATALK /* old NetBSD */
233 #define ETHERTYPE_APPLETALK ETHERTYPE_ATALK /* HP-UX */
234 /* 0x809C - 0x809E Datability */
235 #define ETHERTYPE_SPIDER 0x809F /* Spider Systems Ltd. */
236 /* 0x80A3 Nixdorf */
237 /* 0x80A4 - 0x80B3 Siemens Gammasonics Inc. */
238 /* 0x80C0 - 0x80C3 DCA (Digital Comm. Assoc.) Data Exchange Cluster */
239 /* 0x80C4 - 0x80C5 Banyan Systems */
240 #define ETHERTYPE_PACER 0x80C6 /* Pacer Software */
241 #define ETHERTYPE_APPLITEK 0x80C7 /* Applitek Corporation */
242 /* 0x80C8 - 0x80CC Intergraph Corporation */
243 /* 0x80CD - 0x80CE Harris Corporation */
244 /* 0x80CF - 0x80D2 Taylor Instrument */
245 /* 0x80D3 - 0x80D4 Rosemount Corporation */
246 #define ETHERTYPE_SNA 0x80D5 /* IBM SNA Services over Ethernet */
247 #define ETHERTYPE_VARIAN 0x80DD /* Varian Associates */
248 /* 0x80DE - 0x80DF TRFS (Integrated Solutions Transparent Remote File System) */
249 /* 0x80E0 - 0x80E3 Allen-Bradley */
250 /* 0x80E4 - 0x80F0 Datability */
251 #define ETHERTYPE_RETIX 0x80F2 /* Retix */
252 #define ETHERTYPE_AARP 0x80F3 /* AppleTalk AARP */
253 /* 0x80F4 - 0x80F5 Kinetics */
254 #define ETHERTYPE_APOLLO 0x80F7 /* Apollo Computer */
255 #define ETHERTYPE_VLAN 0x8100 /* IEEE 802.1Q VLAN tagging (XXX conflicts) */
256 /* 0x80FF - 0x8101 Wellfleet Communications (XXX conflicts) */
257 #define ETHERTYPE_BOFL 0x8102 /* Wellfleet; BOFL (Breath OF Life) pkts [every 5-10 secs.] */
258 #define ETHERTYPE_WELLFLEET 0x8103 /* Wellfleet Communications */
259 /* 0x8107 - 0x8109 Symbolics Private */
260 #define ETHERTYPE_TALARIS 0x812B /* Talaris */
261 #define ETHERTYPE_WATERLOO 0x8130 /* Waterloo Microsystems Inc. (XXX which?) */
262 #define ETHERTYPE_HAYES 0x8130 /* Hayes Microcomputers (XXX which?) */
263 #define ETHERTYPE_VGLAB 0x8131 /* VG Laboratory Systems */
264 /* 0x8132 - 0x8137 Bridge Communications */
265 #define ETHERTYPE_IPX 0x8137 /* Novell (old) NetWare IPX (ECONFIG E option) */
266 #define ETHERTYPE_NOVELL 0x8138 /* Novell, Inc. */
267 /* 0x8139 - 0x813D KTI */
268 #define ETHERTYPE_MUMPS 0x813F /* M/MUMPS data sharing */
269 #define ETHERTYPE_AMOEBA 0x8145 /* Vrije Universiteit (NL) Amoeba 4 RPC (obsolete) */
270 #define ETHERTYPE_FLIP 0x8146 /* Vrije Universiteit (NL) FLIP (Fast Local Internet Protocol) */
271 #define ETHERTYPE_VURESERVED 0x8147 /* Vrije Universiteit (NL) [reserved] */
272 #define ETHERTYPE_LOGICRAFT 0x8148 /* Logicraft */
273 #define ETHERTYPE_NCD 0x8149 /* Network Computing Devices */
274 #define ETHERTYPE_ALPHA 0x814A /* Alpha Micro */
275 #define ETHERTYPE_SNMP 0x814C /* SNMP over Ethernet (see RFC1089) */
276 /* 0x814D - 0x814E BIIN */
277 #define ETHERTYPE_TEC 0x814F /* Technically Elite Concepts */
278 #define ETHERTYPE_RATIONAL 0x8150 /* Rational Corp */
279 /* 0x8151 - 0x8153 Qualcomm */
280 /* 0x815C - 0x815E Computer Protocol Pty Ltd */
281 /* 0x8164 - 0x8166 Charles River Data Systems */
282 #define ETHERTYPE_XTP 0x817D /* Protocol Engines XTP */
283 #define ETHERTYPE_SGITW 0x817E /* SGI/Time Warner prop. */
284 #define ETHERTYPE_HIPPI_FP 0x8180 /* HIPPI-FP encapsulation */
285 #define ETHERTYPE_STP 0x8181 /* Scheduled Transfer STP, HIPPI-ST */
286 /* 0x8182 - 0x8183 Reserved for HIPPI-6400 */
287 /* 0x8184 - 0x818C SGI prop. */
288 #define ETHERTYPE_MOTOROLA 0x818D /* Motorola */
289 #define ETHERTYPE_NETBEUI 0x8191 /* PowerLAN NetBIOS/NetBEUI (PC) */
290 /* 0x819A - 0x81A3 RAD Network Devices */
291 /* 0x81B7 - 0x81B9 Xyplex */
292 /* 0x81CC - 0x81D5 Apricot Computers */
293 /* 0x81D6 - 0x81DD Artisoft Lantastic */
294 /* 0x81E6 - 0x81EF Polygon */
295 /* 0x81F0 - 0x81F2 Comsat Labs */
296 /* 0x81F3 - 0x81F5 SAIC */
297 /* 0x81F6 - 0x81F8 VG Analytical */
298 /* 0x8203 - 0x8205 QNX Software Systems Ltd. */
299 /* 0x8221 - 0x8222 Ascom Banking Systems */
300 /* 0x823E - 0x8240 Advanced Encryption Systems */
301 /* 0x8263 - 0x826A Charles River Data Systems */
302 /* 0x827F - 0x8282 Athena Programming */
303 /* 0x829A - 0x829B Inst Ind Info Tech */
304 /* 0x829C - 0x82AB Taurus Controls */
305 /* 0x82AC - 0x8693 Walker Richer & Quinn */
306 #define ETHERTYPE_ACCTON 0x8390 /* Accton Technologies (unregistered) */
307 #define ETHERTYPE_TALARISMC 0x852B /* Talaris multicast */
308 #define ETHERTYPE_KALPANA 0x8582 /* Kalpana */
309 /* 0x8694 - 0x869D Idea Courier */
310 /* 0x869E - 0x86A1 Computer Network Tech */
311 /* 0x86A3 - 0x86AC Gateway Communications */
312 #define ETHERTYPE_SECTRA 0x86DB /* SECTRA */
313 #define ETHERTYPE_IPV6 0x86DD /* IP protocol version 6 */
314 #define ETHERTYPE_DELTACON 0x86DE /* Delta Controls */
315 #define ETHERTYPE_ATOMIC 0x86DF /* ATOMIC */
316 /* 0x86E0 - 0x86EF Landis & Gyr Powers */
317 /* 0x8700 - 0x8710 Motorola */
318 #define ETHERTYPE_RDP 0x8739 /* Control Technology Inc. RDP Without IP */
319 #define ETHERTYPE_MICP 0x873A /* Control Technology Inc. Mcast Industrial Ctrl Proto. */
320 /* 0x873B - 0x873C Control Technology Inc. Proprietary */
321 #define ETHERTYPE_TCPCOMP 0x876B /* TCP/IP Compression (RFC1701) */
322 #define ETHERTYPE_IPAS 0x876C /* IP Autonomous Systems (RFC1701) */
323 #define ETHERTYPE_SECUREDATA 0x876D /* Secure Data (RFC1701) */
324 #define ETHERTYPE_FLOWCONTROL 0x8808 /* 802.3x flow control packet */
325 #define ETHERTYPE_PPP 0x880B /* PPP (obsolete by PPPOE) */
326 #define ETHERTYPE_HITACHI 0x8820 /* Hitachi Cable (Optoelectronic Systems Laboratory) */
327 #define ETHERTYPE_MPLS 0x8847 /* MPLS Unicast */
328 #define ETHERTYPE_MPLS_MCAST 0x8848 /* MPLS Multicast */
329 #define ETHERTYPE_AXIS 0x8856 /* Axis Communications AB proprietary bootstrap/config */
330 #define ETHERTYPE_PPPOEDISC 0x8863 /* PPP Over Ethernet Discovery Stage */
331 #define ETHERTYPE_PPPOE 0x8864 /* PPP Over Ethernet Session Stage */
332 #define ETHERTYPE_LANPROBE 0x8888 /* HP LanProbe test? */
333 #define ETHERTYPE_PAE 0x888e /* EAPOL PAE/802.1x */
334 #define ETHERTYPE_LOOPBACK 0x9000 /* Loopback: used to test interfaces */
335 #define ETHERTYPE_LBACK ETHERTYPE_LOOPBACK /* DEC MOP loopback */
336 #define ETHERTYPE_XNSSM 0x9001 /* 3Com (Formerly Bridge Communications), XNS Systems Management */
337 #define ETHERTYPE_TCPSM 0x9002 /* 3Com (Formerly Bridge Communications), TCP/IP Systems Management */
338 #define ETHERTYPE_BCLOOP 0x9003 /* 3Com (Formerly Bridge Communications), loopback detection */
339 #define ETHERTYPE_DEBNI 0xAAAA /* DECNET? Used by VAX 6220 DEBNI */
340 #define ETHERTYPE_SONIX 0xFAF5 /* Sonix Arpeggio */
341 #define ETHERTYPE_VITAL 0xFF00 /* BBN VITAL-LanBridge cache wakeups */
342 /* 0xFF00 - 0xFFOF ISC Bunker Ramo */
344 #define ETHERTYPE_MAX 0xFFFF /* Maximum valid ethernet type, reserved */
347 * The ETHERTYPE_NTRAILER packet types starting at ETHERTYPE_TRAIL have
348 * (type-ETHERTYPE_TRAIL)*512 bytes of data followed
349 * by an ETHER type (as given above) and then the (variable-length) header.
351 #define ETHERTYPE_TRAIL 0x1000 /* Trailer packet */
352 #define ETHERTYPE_NTRAILER 16
354 #define ETHERMTU (ETHER_MAX_LEN-ETHER_HDR_LEN-ETHER_CRC_LEN)
355 #define ETHERMIN (ETHER_MIN_LEN-ETHER_HDR_LEN-ETHER_CRC_LEN)
357 #ifdef _KERNEL
359 struct ifnet;
360 struct mbuf;
361 struct mbuf_chain;
363 extern void (*ng_ether_input_p)(struct ifnet *ifp, struct mbuf **mp);
364 extern void (*ng_ether_input_orphan_p)(struct ifnet *ifp,
365 struct mbuf *m, const struct ether_header *eh);
366 extern int (*ng_ether_output_p)(struct ifnet *ifp, struct mbuf **mp);
367 extern void (*ng_ether_attach_p)(struct ifnet *ifp);
368 extern void (*ng_ether_detach_p)(struct ifnet *ifp);
370 extern int (*vlan_input_p)(struct mbuf *m, struct mbuf_chain *chain);
371 extern void (*vlan_input2_p)(struct mbuf *m);
374 * The ETHER_BPF_MTAP macro should be used by drivers which support hardware
375 * offload for VLAN tag processing. It will check the mbuf to see if it has
376 * M_VLANTAG set, and if it does, will pass the packet along to
377 * vlan_ether_ptap. This function will re-insert VLAN tags for the duration
378 * of the tap, so they show up properly for network analyzers.
380 #define ETHER_BPF_MTAP(_ifp, _m) do { \
381 if ((_ifp)->if_bpf) { \
382 M_ASSERTPKTHDR((_m)); \
383 if ((_m)->m_flags & M_VLANTAG) { \
384 vlan_ether_ptap((_ifp)->if_bpf, (_m), \
385 (_m)->m_pkthdr.ether_vlantag); \
386 } else { \
387 bpf_mtap((_ifp)->if_bpf, (_m)); \
390 } while (0)
392 struct altq_pktattr;
393 struct ifaltq;
395 void altq_etherclassify(struct ifaltq *, struct mbuf *, struct altq_pktattr *);
397 #else /* _KERNEL */
399 #include <sys/cdefs.h>
402 * Ethernet address conversion/parsing routines.
404 __BEGIN_DECLS
405 struct ether_addr *ether_aton (const char *);
406 int ether_hostton (const char *, struct ether_addr *);
407 int ether_line (const char *, struct ether_addr *, char *);
408 char *ether_ntoa (const struct ether_addr *);
409 int ether_ntohost (char *, const struct ether_addr *);
410 __END_DECLS
412 #endif /* !_KERNEL */
414 #endif /* !_NET_ETHERNET_H_ */