Updated through tag hostap_2_5 from git://w1.fi/hostap.git
[mech_eap.git] / libeap / src / eap_server / eap_tls_common.h
1 /*
2  * EAP-TLS/PEAP/TTLS/FAST server common functions
3  * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8
9 #ifndef EAP_TLS_COMMON_H
10 #define EAP_TLS_COMMON_H
11
12 /**
13  * struct eap_ssl_data - TLS data for EAP methods
14  */
15 struct eap_ssl_data {
16         /**
17          * conn - TLS connection context data from tls_connection_init()
18          */
19         struct tls_connection *conn;
20
21         /**
22          * tls_out - TLS message to be sent out in fragments
23          */
24         struct wpabuf *tls_out;
25
26         /**
27          * tls_out_pos - The current position in the outgoing TLS message
28          */
29         size_t tls_out_pos;
30
31         /**
32          * tls_out_limit - Maximum fragment size for outgoing TLS messages
33          */
34         size_t tls_out_limit;
35
36         /**
37          * tls_in - Received TLS message buffer for re-assembly
38          */
39         struct wpabuf *tls_in;
40
41         /**
42          * phase2 - Whether this TLS connection is used in EAP phase 2 (tunnel)
43          */
44         int phase2;
45
46         /**
47          * eap - EAP state machine allocated with eap_server_sm_init()
48          */
49         struct eap_sm *eap;
50
51         enum { MSG, FRAG_ACK, WAIT_FRAG_ACK } state;
52         struct wpabuf tmpbuf;
53 };
54
55
56 /* EAP TLS Flags */
57 #define EAP_TLS_FLAGS_LENGTH_INCLUDED 0x80
58 #define EAP_TLS_FLAGS_MORE_FRAGMENTS 0x40
59 #define EAP_TLS_FLAGS_START 0x20
60 #define EAP_TLS_VERSION_MASK 0x07
61
62  /* could be up to 128 bytes, but only the first 64 bytes are used */
63 #define EAP_TLS_KEY_LEN 64
64
65 /* dummy type used as a flag for UNAUTH-TLS */
66 #define EAP_UNAUTH_TLS_TYPE 255
67 #define EAP_WFA_UNAUTH_TLS_TYPE 254
68
69
70 struct wpabuf * eap_tls_msg_alloc(EapType type, size_t payload_len,
71                                   u8 code, u8 identifier);
72 int eap_server_tls_ssl_init(struct eap_sm *sm, struct eap_ssl_data *data,
73                             int verify_peer, int eap_type);
74 void eap_server_tls_ssl_deinit(struct eap_sm *sm, struct eap_ssl_data *data);
75 u8 * eap_server_tls_derive_key(struct eap_sm *sm, struct eap_ssl_data *data,
76                                char *label, size_t len);
77 u8 * eap_server_tls_derive_session_id(struct eap_sm *sm,
78                                       struct eap_ssl_data *data, u8 eap_type,
79                                       size_t *len);
80 struct wpabuf * eap_server_tls_build_msg(struct eap_ssl_data *data,
81                                          int eap_type, int version, u8 id);
82 struct wpabuf * eap_server_tls_build_ack(u8 id, int eap_type, int version);
83 int eap_server_tls_phase1(struct eap_sm *sm, struct eap_ssl_data *data);
84 struct wpabuf * eap_server_tls_encrypt(struct eap_sm *sm,
85                                        struct eap_ssl_data *data,
86                                        const struct wpabuf *plain);
87 int eap_server_tls_process(struct eap_sm *sm, struct eap_ssl_data *data,
88                            struct wpabuf *respData, void *priv, int eap_type,
89                            int (*proc_version)(struct eap_sm *sm, void *priv,
90                                                int peer_version),
91                            void (*proc_msg)(struct eap_sm *sm, void *priv,
92                                             const struct wpabuf *respData));
93
94 #endif /* EAP_TLS_COMMON_H */