automake build system
[mech_eap.orig] / src / eap_common / eap_tlv_common.h
1 /*
2  * EAP-TLV definitions (draft-josefsson-pppext-eap-tls-eap-10.txt)
3  * Copyright (c) 2004-2008, Jouni Malinen <j@w1.fi>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  */
14
15 #ifndef EAP_TLV_COMMON_H
16 #define EAP_TLV_COMMON_H
17
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21
22 /* EAP-TLV TLVs (draft-josefsson-ppext-eap-tls-eap-10.txt) */
23 #define EAP_TLV_RESULT_TLV 3 /* Acknowledged Result */
24 #define EAP_TLV_NAK_TLV 4
25 #define EAP_TLV_ERROR_CODE_TLV 5
26 #define EAP_TLV_CONNECTION_BINDING_TLV 6
27 #define EAP_TLV_VENDOR_SPECIFIC_TLV 7
28 #define EAP_TLV_URI_TLV 8
29 #define EAP_TLV_EAP_PAYLOAD_TLV 9
30 #define EAP_TLV_INTERMEDIATE_RESULT_TLV 10
31 #define EAP_TLV_PAC_TLV 11 /* RFC 5422, Section 4.2 */
32 #define EAP_TLV_CRYPTO_BINDING_TLV 12
33 #define EAP_TLV_CALLING_STATION_ID_TLV 13
34 #define EAP_TLV_CALLED_STATION_ID_TLV 14
35 #define EAP_TLV_NAS_PORT_TYPE_TLV 15
36 #define EAP_TLV_SERVER_IDENTIFIER_TLV 16
37 #define EAP_TLV_IDENTITY_TYPE_TLV 17
38 #define EAP_TLV_SERVER_TRUSTED_ROOT_TLV 18
39 #define EAP_TLV_REQUEST_ACTION_TLV 19
40 #define EAP_TLV_PKCS7_TLV 20
41
42 #define EAP_TLV_RESULT_SUCCESS 1
43 #define EAP_TLV_RESULT_FAILURE 2
44
45 #define EAP_TLV_TYPE_MANDATORY 0x8000
46 #define EAP_TLV_TYPE_MASK 0x3fff
47
48 #ifdef _MSC_VER
49 #pragma pack(push, 1)
50 #endif /* _MSC_VER */
51
52 struct eap_tlv_hdr {
53         be16 tlv_type;
54         be16 length;
55 } STRUCT_PACKED;
56
57 struct eap_tlv_nak_tlv {
58         be16 tlv_type;
59         be16 length;
60         be32 vendor_id;
61         be16 nak_type;
62 } STRUCT_PACKED;
63
64 struct eap_tlv_result_tlv {
65         be16 tlv_type;
66         be16 length;
67         be16 status;
68 } STRUCT_PACKED;
69
70 /* RFC 4851, Section 4.2.7 - Intermediate-Result TLV */
71 struct eap_tlv_intermediate_result_tlv {
72         be16 tlv_type;
73         be16 length;
74         be16 status;
75         /* Followed by optional TLVs */
76 } STRUCT_PACKED;
77
78 /* RFC 4851, Section 4.2.8 - Crypto-Binding TLV */
79 struct eap_tlv_crypto_binding_tlv {
80         be16 tlv_type;
81         be16 length;
82         u8 reserved;
83         u8 version;
84         u8 received_version;
85         u8 subtype;
86         u8 nonce[32];
87         u8 compound_mac[20];
88 } STRUCT_PACKED;
89
90 struct eap_tlv_pac_ack_tlv {
91         be16 tlv_type;
92         be16 length;
93         be16 pac_type;
94         be16 pac_len;
95         be16 result;
96 } STRUCT_PACKED;
97
98 /* RFC 4851, Section 4.2.9 - Request-Action TLV */
99 struct eap_tlv_request_action_tlv {
100         be16 tlv_type;
101         be16 length;
102         be16 action;
103 } STRUCT_PACKED;
104
105 /* RFC 5422, Section 4.2.6 - PAC-Type TLV */
106 struct eap_tlv_pac_type_tlv {
107         be16 tlv_type; /* PAC_TYPE_PAC_TYPE */
108         be16 length;
109         be16 pac_type;
110 } STRUCT_PACKED;
111
112 #ifdef _MSC_VER
113 #pragma pack(pop)
114 #endif /* _MSC_VER */
115
116 #define EAP_TLV_CRYPTO_BINDING_SUBTYPE_REQUEST 0
117 #define EAP_TLV_CRYPTO_BINDING_SUBTYPE_RESPONSE 1
118
119 #define EAP_TLV_ACTION_PROCESS_TLV 1
120 #define EAP_TLV_ACTION_NEGOTIATE_EAP 2
121
122 #ifdef __cplusplus
123 }
124 #endif
125
126 #endif /* EAP_TLV_COMMON_H */