~ubuntu-branches/ubuntu/hardy/wpasupplicant/hardy

« back to all changes in this revision

Viewing changes to src/eap_peer/eap_tlv.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler, Alexander Sack
  • Date: 2007-08-26 16:06:57 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20070826160657-2m8pxoweuxe8f93t
Tags: 0.6.0+0.5.8-0ubuntu1
* New upstream release
* remove patch 11_erroneous_manpage_ref, applied upstream
* remove patch 25_wpas_dbus_unregister_iface_fix, applied upstream

[ Alexander Sack ]
* bumping upstream version to replace development version 0.6.0 with
  this package from stable release branch.
* attempt to fix wierd timeout and high latency issues by going
  back to stable upstream version (0.5.9) (LP: #140763,
  LP: #141233).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * EAP peer method: EAP-TLV (draft-josefsson-pppext-eap-tls-eap-07.txt)
3
 
 * Copyright (c) 2004-2007, 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_H
16
 
#define EAP_TLV_H
17
 
 
18
 
/* EAP-TLV TLVs (draft-josefsson-ppext-eap-tls-eap-07.txt) */
19
 
#define EAP_TLV_RESULT_TLV 3 /* Acknowledged Result */
20
 
#define EAP_TLV_NAK_TLV 4
21
 
/* Note: RFC 4851, Section 4.2.4 defines 5 as Error TLV */
22
 
#define EAP_TLV_CRYPTO_BINDING_TLV 5
23
 
#define EAP_TLV_CONNECTION_BINDING_TLV 6
24
 
#define EAP_TLV_VENDOR_SPECIFIC_TLV 7
25
 
#define EAP_TLV_URI_TLV 8
26
 
#define EAP_TLV_EAP_PAYLOAD_TLV 9
27
 
#define EAP_TLV_INTERMEDIATE_RESULT_TLV 10
28
 
#define EAP_TLV_PAC_TLV 11 /* draft-cam-winget-eap-fast-provisioning-04.txt,
29
 
                            * Section 4.2 */
30
 
#define EAP_TLV_CRYPTO_BINDING_TLV_ 12 /* RFC 4851, Section 4.2.8 */
31
 
/* draft-cam-winget-eap-fast-provisiong-04.txt, Section 4.3.1 */
32
 
#define EAP_TLV_SERVER_TRUSTED_ROOT_TLV 18
33
 
#define EAP_TLV_REQUEST_ACTION_TLV 19 /* RFC 4851, Section 4.2.9 */
34
 
/* draft-cam-winget-eap-fast-provisiong-04.txt, Section 4.3.2 */
35
 
#define EAP_TLV_PKCS7_TLV 20
36
 
 
37
 
#define EAP_TLV_RESULT_SUCCESS 1
38
 
#define EAP_TLV_RESULT_FAILURE 2
39
 
 
40
 
#define EAP_TLV_TYPE_MANDATORY 0x8000
41
 
 
42
 
#ifdef _MSC_VER
43
 
#pragma pack(push, 1)
44
 
#endif /* _MSC_VER */
45
 
 
46
 
struct eap_tlv_hdr {
47
 
        be16 tlv_type;
48
 
        be16 length;
49
 
} STRUCT_PACKED;
50
 
 
51
 
struct eap_tlv_nak_tlv {
52
 
        be16 tlv_type;
53
 
        be16 length;
54
 
        be32 vendor_id;
55
 
        be16 nak_type;
56
 
} STRUCT_PACKED;
57
 
 
58
 
struct eap_tlv_result_tlv {
59
 
        be16 tlv_type;
60
 
        be16 length;
61
 
        be16 status;
62
 
} STRUCT_PACKED;
63
 
 
64
 
/* RFC 4851, Section 4.2.7 - Intermediate-Result TLV */
65
 
struct eap_tlv_intermediate_result_tlv {
66
 
        be16 tlv_type;
67
 
        be16 length;
68
 
        be16 status;
69
 
        /* Followed by optional TLVs */
70
 
} STRUCT_PACKED;
71
 
 
72
 
/* RFC 4851, Section 4.2.8 - Crypto-Binding TLV */
73
 
struct eap_tlv_crypto_binding__tlv {
74
 
        be16 tlv_type;
75
 
        be16 length;
76
 
        u8 reserved;
77
 
        u8 version;
78
 
        u8 received_version;
79
 
        u8 subtype;
80
 
        u8 nonce[32];
81
 
        u8 compound_mac[20];
82
 
} STRUCT_PACKED;
83
 
 
84
 
struct eap_tlv_pac_ack_tlv {
85
 
        be16 tlv_type;
86
 
        be16 length;
87
 
        be16 pac_type;
88
 
        be16 pac_len;
89
 
        be16 result;
90
 
} STRUCT_PACKED;
91
 
 
92
 
/* RFC 4851, Section 4.2.9 - Request-Action TLV */
93
 
struct eap_tlv_request_action_tlv {
94
 
        be16 tlv_type;
95
 
        be16 length;
96
 
        be16 action;
97
 
} STRUCT_PACKED;
98
 
 
99
 
/* draft-cam-winget-eap-fast-provisiong-04.txt, Section 4.2.6 - PAC-Type TLV */
100
 
struct eap_tlv_pac_type_tlv {
101
 
        be16 tlv_type; /* PAC_TYPE_PAC_TYPE */
102
 
        be16 length;
103
 
        be16 pac_type;
104
 
} STRUCT_PACKED;
105
 
 
106
 
#ifdef _MSC_VER
107
 
#pragma pack(pop)
108
 
#endif /* _MSC_VER */
109
 
 
110
 
#define EAP_TLV_CRYPTO_BINDING_SUBTYPE_REQUEST 0
111
 
#define EAP_TLV_CRYPTO_BINDING_SUBTYPE_RESPONSE 1
112
 
 
113
 
#define EAP_TLV_ACTION_PROCESS_TLV 1
114
 
#define EAP_TLV_ACTION_NEGOTIATE_EAP 2
115
 
 
116
 
 
117
 
u8 * eap_tlv_build_nak(int id, u16 nak_type, size_t *resp_len);
118
 
u8 * eap_tlv_build_result(int id, u16 status, size_t *resp_len);
119
 
int eap_tlv_process(struct eap_sm *sm, struct eap_method_ret *ret,
120
 
                    const struct eap_hdr *hdr, u8 **resp, size_t *resp_len);
121
 
 
122
 
#endif /* EAP_TLV_H */