1 /*
2  * hostapd - IEEE 802.11i-2004 / WPA Authenticator: Internal definitions
3  * Copyright (c) 2004-2007, 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 WPA_AUTH_I_H
10 #define WPA_AUTH_I_H
11 
12 /* max(dot11RSNAConfigGroupUpdateCount,dot11RSNAConfigPairwiseUpdateCount) */
13 #define RSNA_MAX_EAPOL_RETRIES 4
14 
15 struct wpa_group;
16 
17 struct wpa_stsl_negotiation {
18 	struct wpa_stsl_negotiation *next;
19 	u8 initiator[ETH_ALEN];
20 	u8 peer[ETH_ALEN];
21 };
22 
23 
24 struct wpa_state_machine {
25 	struct wpa_authenticator *wpa_auth;
26 	struct wpa_group *group;
27 
28 	u8 addr[ETH_ALEN];
29 
30 	enum {
31 		WPA_PTK_INITIALIZE, WPA_PTK_DISCONNECT, WPA_PTK_DISCONNECTED,
32 		WPA_PTK_AUTHENTICATION, WPA_PTK_AUTHENTICATION2,
33 		WPA_PTK_INITPMK, WPA_PTK_INITPSK, WPA_PTK_PTKSTART,
34 		WPA_PTK_PTKCALCNEGOTIATING, WPA_PTK_PTKCALCNEGOTIATING2,
35 		WPA_PTK_PTKINITNEGOTIATING, WPA_PTK_PTKINITDONE
36 	} wpa_ptk_state;
37 
38 	enum {
39 		WPA_PTK_GROUP_IDLE = 0,
40 		WPA_PTK_GROUP_REKEYNEGOTIATING,
41 		WPA_PTK_GROUP_REKEYESTABLISHED,
42 		WPA_PTK_GROUP_KEYERROR
43 	} wpa_ptk_group_state;
44 
45 	Boolean Init;
46 	Boolean DeauthenticationRequest;
47 	Boolean AuthenticationRequest;
48 	Boolean ReAuthenticationRequest;
49 	Boolean Disconnect;
50 	int TimeoutCtr;
51 	int GTimeoutCtr;
52 	Boolean TimeoutEvt;
53 	Boolean EAPOLKeyReceived;
54 	Boolean EAPOLKeyPairwise;
55 	Boolean EAPOLKeyRequest;
56 	Boolean MICVerified;
57 	Boolean GUpdateStationKeys;
58 	u8 ANonce[WPA_NONCE_LEN];
59 	u8 SNonce[WPA_NONCE_LEN];
60 	u8 PMK[PMK_LEN];
61 	struct wpa_ptk PTK;
62 	Boolean PTK_valid;
63 	Boolean pairwise_set;
64 	int keycount;
65 	Boolean Pair;
66 	struct wpa_key_replay_counter {
67 		u8 counter[WPA_REPLAY_COUNTER_LEN];
68 		Boolean valid;
69 	} key_replay[RSNA_MAX_EAPOL_RETRIES],
70 		prev_key_replay[RSNA_MAX_EAPOL_RETRIES];
71 	Boolean PInitAKeys; /* WPA only, not in IEEE 802.11i */
72 	Boolean PTKRequest; /* not in IEEE 802.11i state machine */
73 	Boolean has_GTK;
74 	Boolean PtkGroupInit; /* init request for PTK Group state machine */
75 
76 	u8 *last_rx_eapol_key; /* starting from IEEE 802.1X header */
77 	size_t last_rx_eapol_key_len;
78 
79 	unsigned int changed:1;
80 	unsigned int in_step_loop:1;
81 	unsigned int pending_deinit:1;
82 	unsigned int started:1;
83 	unsigned int mgmt_frame_prot:1;
84 	unsigned int rx_eapol_key_secure:1;
85 	unsigned int update_snonce:1;
86 #ifdef CONFIG_IEEE80211R
87 	unsigned int ft_completed:1;
88 	unsigned int pmk_r1_name_valid:1;
89 #endif /* CONFIG_IEEE80211R */
90 	unsigned int is_wnmsleep:1;
91 
92 	u8 req_replay_counter[WPA_REPLAY_COUNTER_LEN];
93 	int req_replay_counter_used;
94 
95 	u8 *wpa_ie;
96 	size_t wpa_ie_len;
97 
98 	enum {
99 		WPA_VERSION_NO_WPA = 0 /* WPA not used */,
100 		WPA_VERSION_WPA = 1 /* WPA / IEEE 802.11i/D3.0 */,
101 		WPA_VERSION_WPA2 = 2 /* WPA2 / IEEE 802.11i */
102 	} wpa;
103 	int pairwise; /* Pairwise cipher suite, WPA_CIPHER_* */
104 	int wpa_key_mgmt; /* the selected WPA_KEY_MGMT_* */
105 
106 #ifdef CONFIG_IEEE80211R
107 	u8 xxkey[PMK_LEN]; /* PSK or the second 256 bits of MSK */
108 	size_t xxkey_len;
109 	u8 pmk_r1_name[WPA_PMK_NAME_LEN]; /* PMKR1Name derived from FT Auth
110 					   * Request */
111 	u8 r0kh_id[FT_R0KH_ID_MAX_LEN]; /* R0KH-ID from FT Auth Request */
112 	size_t r0kh_id_len;
113 	u8 sup_pmk_r1_name[WPA_PMK_NAME_LEN]; /* PMKR1Name from EAPOL-Key
114 					       * message 2/4 */
115 	u8 *assoc_resp_ftie;
116 #endif /* CONFIG_IEEE80211R */
117 
118 	int pending_1_of_4_timeout;
119 	u32 index;
120 	ETSTimer resend_eapol;
121 	struct rsn_sppamsdu_sup spp_sup;
122 };
123 
124 
125 /* per group key state machine data */
126 struct wpa_group {
127 	struct wpa_group *next;
128 	int vlan_id;
129 
130 	Boolean GInit;
131 	int GKeyDoneStations;
132 	Boolean GTKReKey;
133 	int GTK_len;
134 	int GN, GM;
135 	Boolean GTKAuthenticator;
136 	u8 Counter[WPA_NONCE_LEN];
137 
138 	enum {
139 		WPA_GROUP_GTK_INIT = 0,
140 		WPA_GROUP_SETKEYS, WPA_GROUP_SETKEYSDONE
141 	} wpa_group_state;
142 
143 	u8 GMK[WPA_GMK_LEN];
144 	u8 GTK[2][WPA_GTK_MAX_LEN];
145 	u8 GNonce[WPA_NONCE_LEN];
146 	Boolean changed;
147 	Boolean first_sta_seen;
148 	Boolean reject_4way_hs_for_entropy;
149 #ifdef CONFIG_IEEE80211W
150 	u8 IGTK[2][WPA_IGTK_LEN];
151 	int GN_igtk, GM_igtk;
152 #endif /* CONFIG_IEEE80211W */
153 };
154 
155 
156 struct wpa_ft_pmk_cache;
157 
158 /* per authenticator data */
159 struct wpa_authenticator {
160 	struct wpa_group *group;
161 
162 	struct wpa_auth_config conf;
163 
164 	u8 *wpa_ie;
165 	size_t wpa_ie_len;
166 
167 	u8 addr[ETH_ALEN];
168 
169 };
170 
171 
172 int wpa_write_rsn_ie(struct wpa_auth_config *conf, u8 *buf, size_t len,
173 		     const u8 *pmkid);
174 void __wpa_send_eapol(struct wpa_authenticator *wpa_auth,
175 		      struct wpa_state_machine *sm, int key_info,
176 		      const u8 *key_rsc, const u8 *nonce,
177 		      const u8 *kde, size_t kde_len,
178 		      int keyidx, int encr, int force_version);
179 int wpa_auth_for_each_sta(struct wpa_authenticator *wpa_auth,
180 			  int (*cb)(struct wpa_state_machine *sm, void *ctx),
181 			  void *cb_ctx);
182 int wpa_auth_for_each_auth(struct wpa_authenticator *wpa_auth,
183 			   int (*cb)(struct wpa_authenticator *a, void *ctx),
184 			   void *cb_ctx);
185 
186 #ifdef CONFIG_PEERKEY
187 int wpa_stsl_remove(struct wpa_authenticator *wpa_auth,
188 		    struct wpa_stsl_negotiation *neg);
189 void wpa_smk_error(struct wpa_authenticator *wpa_auth,
190 		   struct wpa_state_machine *sm, struct wpa_eapol_key *key);
191 void wpa_smk_m1(struct wpa_authenticator *wpa_auth,
192 		struct wpa_state_machine *sm, struct wpa_eapol_key *key);
193 void wpa_smk_m3(struct wpa_authenticator *wpa_auth,
194 		struct wpa_state_machine *sm, struct wpa_eapol_key *key);
195 #endif /* CONFIG_PEERKEY */
196 
197 #ifdef CONFIG_IEEE80211R
198 int wpa_write_mdie(struct wpa_auth_config *conf, u8 *buf, size_t len);
199 int wpa_write_ftie(struct wpa_auth_config *conf, const u8 *r0kh_id,
200 		   size_t r0kh_id_len,
201 		   const u8 *anonce, const u8 *snonce,
202 		   u8 *buf, size_t len, const u8 *subelem,
203 		   size_t subelem_len);
204 int wpa_auth_derive_ptk_ft(struct wpa_state_machine *sm, const u8 *pmk,
205 			   struct wpa_ptk *ptk, size_t ptk_len);
206 struct wpa_ft_pmk_cache * wpa_ft_pmk_cache_init(void);
207 void wpa_ft_pmk_cache_deinit(struct wpa_ft_pmk_cache *cache);
208 void wpa_ft_install_ptk(struct wpa_state_machine *sm);
209 #endif /* CONFIG_IEEE80211R */
210 
211 #endif /* WPA_AUTH_I_H */
212