/modules-available/systemstatus/hooks/

lx.org/openslx-ng/ipxe.git' title='openslx-ng/ipxe.git Git repository'/>
summaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/eapol.h
blob: 5ca9c2815044c6b1eaca7f6a6e231f98d9128d88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
 * Copyright (c) 2009 Joshua Oreman <oremanj@rwcr.net>.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA.
 */

#ifndef _IPXE_EAPOL_H
#define _IPXE_EAPOL_H

/** @file
 *
 * Definitions for EAPOL (Extensible Authentication Protocol over
 * LANs) frames. Definitions for the packets usually encapsulated in
 * them are elsewhere.
 */

#include <ipxe/tables.h>
#include <stdint.h>

FILE_LICENCE ( GPL2_OR_LATER );


/**
 * @defgroup eapol_type EAPOL archetype identifiers
 * @{
 */
#define EAPOL_TYPE_EAP		0 /**< EAP authentication handshake packet */
#define EAPOL_TYPE_START	1 /**< Request by Peer to begin (no data) */
#define EAPOL_TYPE_LOGOFF	2 /**< Request by Peer to terminate (no data) */
#define EAPOL_TYPE_KEY		3 /**< EAPOL-Key packet */
/** @} */

/** Expected EAPOL version field value
 *
 * Version 2 is often seen and has no format differences from version 1;
 * however, many older APs will completely drop version-2 packets, so
 * we advertise ourselves as version 1.
 */
#define EAPOL_THIS_VERSION	1

/** Length of an EAPOL frame header */
#define EAPOL_HDR_LEN		4

/** An EAPOL frame
 *
 * This may encapsulate an eap_pkt, an eapol_key_pkt, or a Start or
 * Logoff request with no data attached. It is transmitted directly in
 * an Ethernet frame, with no IP packet header.
 */
struct eapol_frame
{
	/** EAPOL version identifier, always 1 */
	u8 version;

	/** EAPOL archetype identifier indicating format of payload */
	u8 type;

	/** Length of payload, in network byte order */
	u16 length;

	/** Payload, if @a type is EAP or EAPOL-Key */
	u8 data[0];
} __attribute__ (( packed ));


/** An EAPOL frame type handler
 *
 * Normally there will be at most two of these, one for EAP and one
 * for EAPOL-Key frames. The EAPOL interface code handles Start and
 * Logoff directly.
 */
struct eapol_handler
{
	/** EAPOL archetype identifier for payload this handler will handle */
	u8 type;

	/** Receive EAPOL-encapsulated packet of specified type
	 *
	 * @v iob	I/O buffer containing packet payload
	 * @v netdev	Network device from which packet was received
	 * @V ll_dest	Destination link-layer address
	 * @v ll_source	Source link-layer address
	 * @ret rc	Return status code