]> git.ipfire.org Git - thirdparty/hostap.git/blame - tests/hwsim/test_ap_eap.py
Propagate the EAP method error code
[thirdparty/hostap.git] / tests / hwsim / test_ap_eap.py
CommitLineData
eac67440 1# -*- coding: utf-8 -*-
9626962d 2# WPA2-Enterprise tests
3b51cc63 3# Copyright (c) 2013-2015, Jouni Malinen <j@w1.fi>
9626962d
JM
4#
5# This software may be distributed under the terms of the BSD license.
6# See README for more details.
7
6ea231e6 8import base64
5b3c40a6 9import binascii
9626962d
JM
10import time
11import subprocess
12import logging
c9aa4308 13logger = logging.getLogger()
873e7c29 14import os
c9aba19b 15import signal
d4c3c055
JM
16import socket
17import SocketServer
98d125ca
JM
18import struct
19import tempfile
9626962d
JM
20
21import hwsim_utils
22import hostapd
7c0d66cf 23from utils import HwsimSkip, alloc_fail, fail_test, skip_with_fips, wait_fail_trigger
52352802 24from wpasupplicant import WpaSupplicant
0ceff76e 25from test_ap_psk import check_mib, find_wpas_process, read_process_memory, verify_not_present, get_key_locations, set_test_assoc_ie
9626962d 26
ca27ee09
JM
27try:
28 import OpenSSL
29 openssl_imported = True
30except ImportError:
31 openssl_imported = False
32
81e787b7
JM
33def check_hlr_auc_gw_support():
34 if not os.path.exists("/tmp/hlr_auc_gw.sock"):
35 raise HwsimSkip("No hlr_auc_gw available")
36
3b51cc63
JM
37def check_eap_capa(dev, method):
38 res = dev.get_capability("eap")
39 if method not in res:
40 raise HwsimSkip("EAP method %s not supported in the build" % method)
41
506b2f05
JM
42def check_subject_match_support(dev):
43 tls = dev.request("GET tls_library")
d8003dcb 44 if not tls.startswith("OpenSSL") and not tls.startswith("wolfSSL"):
506b2f05
JM
45 raise HwsimSkip("subject_match not supported with this TLS library: " + tls)
46
47def check_altsubject_match_support(dev):
48 tls = dev.request("GET tls_library")
d8003dcb 49 if not tls.startswith("OpenSSL") and not tls.startswith("wolfSSL"):
506b2f05
JM
50 raise HwsimSkip("altsubject_match not supported with this TLS library: " + tls)
51
e78eb404
JM
52def check_domain_match(dev):
53 tls = dev.request("GET tls_library")
54 if tls.startswith("internal"):
55 raise HwsimSkip("domain_match not supported with this TLS library: " + tls)
56
57def check_domain_suffix_match(dev):
58 tls = dev.request("GET tls_library")
59 if tls.startswith("internal"):
60 raise HwsimSkip("domain_suffix_match not supported with this TLS library: " + tls)
61
24579e70
JM
62def check_domain_match_full(dev):
63 tls = dev.request("GET tls_library")
d8003dcb 64 if not tls.startswith("OpenSSL") and not tls.startswith("wolfSSL"):
24579e70
JM
65 raise HwsimSkip("domain_suffix_match requires full match with this TLS library: " + tls)
66
4bf4e9db
JM
67def check_cert_probe_support(dev):
68 tls = dev.request("GET tls_library")
0fc1b583 69 if not tls.startswith("OpenSSL") and not tls.startswith("internal"):
4bf4e9db
JM
70 raise HwsimSkip("Certificate probing not supported with this TLS library: " + tls)
71
ca27ee09
JM
72def check_ext_cert_check_support(dev):
73 tls = dev.request("GET tls_library")
74 if not tls.startswith("OpenSSL"):
75 raise HwsimSkip("ext_cert_check not supported with this TLS library: " + tls)
76
0dae8c99
JM
77def check_ocsp_support(dev):
78 tls = dev.request("GET tls_library")
138903f9
JM
79 #if tls.startswith("internal"):
80 # raise HwsimSkip("OCSP not supported with this TLS library: " + tls)
0c6185fc
JM
81 #if "BoringSSL" in tls:
82 # raise HwsimSkip("OCSP not supported with this TLS library: " + tls)
0dae8c99 83
969e5250
JM
84def check_pkcs5_v15_support(dev):
85 tls = dev.request("GET tls_library")
2d9ad634 86 if "BoringSSL" in tls or "GnuTLS" in tls:
969e5250
JM
87 raise HwsimSkip("PKCS#5 v1.5 not supported with this TLS library: " + tls)
88
98d125ca
JM
89def check_ocsp_multi_support(dev):
90 tls = dev.request("GET tls_library")
91 if not tls.startswith("internal"):
92 raise HwsimSkip("OCSP-multi not supported with this TLS library: " + tls)
93 as_hapd = hostapd.Hostapd("as")
94 res = as_hapd.request("GET tls_library")
95 del as_hapd
96 if not res.startswith("internal"):
97 raise HwsimSkip("Authentication server does not support ocsp_multi")
98
686eee77
JM
99def check_pkcs12_support(dev):
100 tls = dev.request("GET tls_library")
16c43d2a
JM
101 #if tls.startswith("internal"):
102 # raise HwsimSkip("PKCS#12 not supported with this TLS library: " + tls)
d8003dcb
SP
103 if tls.startswith("wolfSSL"):
104 raise HwsimSkip("PKCS#12 not supported with this TLS library: " + tls)
686eee77 105
404597e6
JM
106def check_dh_dsa_support(dev):
107 tls = dev.request("GET tls_library")
108 if tls.startswith("internal"):
109 raise HwsimSkip("DH DSA not supported with this TLS library: " + tls)
110
6ea231e6
JM
111def read_pem(fname):
112 with open(fname, "r") as f:
113 lines = f.readlines()
114 copy = False
115 cert = ""
116 for l in lines:
117 if "-----END" in l:
118 break
119 if copy:
120 cert = cert + l
121 if "-----BEGIN" in l:
122 copy = True
123 return base64.b64decode(cert)
124
3b3e2687 125def eap_connect(dev, hapd, method, identity,
6f939e59 126 sha256=False, expect_failure=False, local_error_report=False,
9dd21d51 127 maybe_local_error=False, **kwargs):
2bb9e283
JM
128 id = dev.connect("test-wpa2-eap", key_mgmt="WPA-EAP WPA-EAP-SHA256",
129 eap=method, identity=identity,
6f939e59
JM
130 wait_connect=False, scan_freq="2412", ieee80211w="1",
131 **kwargs)
f10ba3b2
JM
132 eap_check_auth(dev, method, True, sha256=sha256,
133 expect_failure=expect_failure,
9dd21d51
JM
134 local_error_report=local_error_report,
135 maybe_local_error=maybe_local_error)
f10ba3b2
JM
136 if expect_failure:
137 return id
cb33ee14
JM
138 ev = hapd.wait_event([ "AP-STA-CONNECTED" ], timeout=5)
139 if ev is None:
140 raise Exception("No connection event received from hostapd")
2bb9e283 141 return id
75b2b9cf 142
f10ba3b2 143def eap_check_auth(dev, method, initial, rsn=True, sha256=False,
9dd21d51
JM
144 expect_failure=False, local_error_report=False,
145 maybe_local_error=False):
412c6030 146 ev = dev.wait_event(["CTRL-EVENT-EAP-STARTED"], timeout=16)
9626962d
JM
147 if ev is None:
148 raise Exception("Association and EAP start timed out")
06cdd1cd
JM
149 ev = dev.wait_event(["CTRL-EVENT-EAP-METHOD",
150 "CTRL-EVENT-EAP-FAILURE"], timeout=10)
9626962d
JM
151 if ev is None:
152 raise Exception("EAP method selection timed out")
06cdd1cd
JM
153 if "CTRL-EVENT-EAP-FAILURE" in ev:
154 if maybe_local_error:
155 return
156 raise Exception("Could not select EAP method")
9626962d
JM
157 if method not in ev:
158 raise Exception("Unexpected EAP method")
f10ba3b2
JM
159 if expect_failure:
160 ev = dev.wait_event(["CTRL-EVENT-EAP-FAILURE"])
161 if ev is None:
162 raise Exception("EAP failure timed out")
5f35a5e2 163 ev = dev.wait_disconnected(timeout=10)
9dd21d51
JM
164 if maybe_local_error and "locally_generated=1" in ev:
165 return
f10ba3b2
JM
166 if not local_error_report:
167 if "reason=23" not in ev:
168 raise Exception("Proper reason code for disconnection not reported")
169 return
9626962d
JM
170 ev = dev.wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
171 if ev is None:
172 raise Exception("EAP success timed out")
9626962d 173
75b2b9cf
JM
174 if initial:
175 ev = dev.wait_event(["CTRL-EVENT-CONNECTED"], timeout=10)
75b2b9cf 176 else:
bce774ad
JM
177 ev = dev.wait_event(["WPA: Key negotiation completed"], timeout=10)
178 if ev is None:
179 raise Exception("Association with the AP timed out")
180 status = dev.get_status()
181 if status["wpa_state"] != "COMPLETED":
182 raise Exception("Connection not completed")
75b2b9cf 183
9626962d
JM
184 if status["suppPortStatus"] != "Authorized":
185 raise Exception("Port not authorized")
447fb0b0
JM
186 if "selectedMethod" not in status:
187 logger.info("Status: " + str(status))
188 raise Exception("No selectedMethod in status")
9626962d
JM
189 if method not in status["selectedMethod"]:
190 raise Exception("Incorrect EAP method status")
2b005194
JM
191 if sha256:
192 e = "WPA2-EAP-SHA256"
193 elif rsn:
71390dc8
JM
194 e = "WPA2/IEEE 802.1X/EAP"
195 else:
196 e = "WPA/IEEE 802.1X/EAP"
197 if status["key_mgmt"] != e:
198 raise Exception("Unexpected key_mgmt status: " + status["key_mgmt"])
2fc4749c 199 return status
9626962d 200
5b1aaf6c 201def eap_reauth(dev, method, rsn=True, sha256=False, expect_failure=False):
75b2b9cf 202 dev.request("REAUTHENTICATE")
2fc4749c
JM
203 return eap_check_auth(dev, method, False, rsn=rsn, sha256=sha256,
204 expect_failure=expect_failure)
75b2b9cf 205
9626962d
JM
206def test_ap_wpa2_eap_sim(dev, apdev):
207 """WPA2-Enterprise connection using EAP-SIM"""
81e787b7 208 check_hlr_auc_gw_support()
9626962d 209 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 210 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 211 eap_connect(dev[0], hapd, "SIM", "1232010000000000",
9626962d 212 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581")
a8375c94 213 hwsim_utils.test_connectivity(dev[0], hapd)
75b2b9cf 214 eap_reauth(dev[0], "SIM")
9626962d 215
3b3e2687 216 eap_connect(dev[1], hapd, "SIM", "1232010000000001",
a0f350fd 217 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581")
3b3e2687 218 eap_connect(dev[2], hapd, "SIM", "1232010000000002",
a0f350fd
JM
219 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581",
220 expect_failure=True)
221
f10ba3b2
JM
222 logger.info("Negative test with incorrect key")
223 dev[0].request("REMOVE_NETWORK all")
3b3e2687 224 eap_connect(dev[0], hapd, "SIM", "1232010000000000",
f10ba3b2
JM
225 password="ffdca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581",
226 expect_failure=True)
227
32747a3e
JM
228 logger.info("Invalid GSM-Milenage key")
229 dev[0].request("REMOVE_NETWORK all")
3b3e2687 230 eap_connect(dev[0], hapd, "SIM", "1232010000000000",
32747a3e
JM
231 password="ffdca4eda45b53cf0f12d7c9c3bc6a",
232 expect_failure=True)
233
234 logger.info("Invalid GSM-Milenage key(2)")
235 dev[0].request("REMOVE_NETWORK all")
3b3e2687 236 eap_connect(dev[0], hapd, "SIM", "1232010000000000",
32747a3e
JM
237 password="ffdca4eda45b53cf0f12d7c9c3bc6a8q:cb9cccc4b9258e6dca4760379fb82581",
238 expect_failure=True)
239
240 logger.info("Invalid GSM-Milenage key(3)")
241 dev[0].request("REMOVE_NETWORK all")
3b3e2687 242 eap_connect(dev[0], hapd, "SIM", "1232010000000000",
32747a3e
JM
243 password="ffdca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb8258q",
244 expect_failure=True)
245
246 logger.info("Invalid GSM-Milenage key(4)")
247 dev[0].request("REMOVE_NETWORK all")
3b3e2687 248 eap_connect(dev[0], hapd, "SIM", "1232010000000000",
32747a3e
JM
249 password="ffdca4eda45b53cf0f12d7c9c3bc6a89qcb9cccc4b9258e6dca4760379fb82581",
250 expect_failure=True)
251
252 logger.info("Missing key configuration")
253 dev[0].request("REMOVE_NETWORK all")
3b3e2687 254 eap_connect(dev[0], hapd, "SIM", "1232010000000000",
32747a3e
JM
255 expect_failure=True)
256
5b1aaf6c
JM
257def test_ap_wpa2_eap_sim_sql(dev, apdev, params):
258 """WPA2-Enterprise connection using EAP-SIM (SQL)"""
81e787b7 259 check_hlr_auc_gw_support()
5b1aaf6c
JM
260 try:
261 import sqlite3
262 except ImportError:
81e787b7 263 raise HwsimSkip("No sqlite3 module available")
5b1aaf6c
JM
264 con = sqlite3.connect(os.path.join(params['logdir'], "hostapd.db"))
265 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
266 params['auth_server_port'] = "1814"
3b3e2687
JD
267 hapd = hostapd.add_ap(apdev[0], params)
268 eap_connect(dev[0], hapd, "SIM", "1232010000000000",
5b1aaf6c
JM
269 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581")
270
271 logger.info("SIM fast re-authentication")
272 eap_reauth(dev[0], "SIM")
273
274 logger.info("SIM full auth with pseudonym")
275 with con:
276 cur = con.cursor()
277 cur.execute("DELETE FROM reauth WHERE permanent='1232010000000000'")
278 eap_reauth(dev[0], "SIM")
279
280 logger.info("SIM full auth with permanent identity")
281 with con:
282 cur = con.cursor()
283 cur.execute("DELETE FROM reauth WHERE permanent='1232010000000000'")
284 cur.execute("DELETE FROM pseudonyms WHERE permanent='1232010000000000'")
285 eap_reauth(dev[0], "SIM")
286
287 logger.info("SIM reauth with mismatching MK")
288 with con:
289 cur = con.cursor()
290 cur.execute("UPDATE reauth SET mk='0000000000000000000000000000000000000000' WHERE permanent='1232010000000000'")
291 eap_reauth(dev[0], "SIM", expect_failure=True)
292 dev[0].request("REMOVE_NETWORK all")
293
3b3e2687 294 eap_connect(dev[0], hapd, "SIM", "1232010000000000",
5b1aaf6c
JM
295 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581")
296 with con:
297 cur = con.cursor()
298 cur.execute("UPDATE reauth SET counter='10' WHERE permanent='1232010000000000'")
299 eap_reauth(dev[0], "SIM")
300 with con:
301 cur = con.cursor()
302 cur.execute("UPDATE reauth SET counter='10' WHERE permanent='1232010000000000'")
303 logger.info("SIM reauth with mismatching counter")
304 eap_reauth(dev[0], "SIM")
305 dev[0].request("REMOVE_NETWORK all")
306
3b3e2687 307 eap_connect(dev[0], hapd, "SIM", "1232010000000000",
5b1aaf6c
JM
308 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581")
309 with con:
310 cur = con.cursor()
311 cur.execute("UPDATE reauth SET counter='1001' WHERE permanent='1232010000000000'")
312 logger.info("SIM reauth with max reauth count reached")
313 eap_reauth(dev[0], "SIM")
314
e2a90a4c
JM
315def test_ap_wpa2_eap_sim_config(dev, apdev):
316 """EAP-SIM configuration options"""
317 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687 318 hapd = hostapd.add_ap(apdev[0], params)
e2a90a4c
JM
319 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="SIM",
320 identity="1232010000000000",
321 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581",
322 phase1="sim_min_num_chal=1",
323 wait_connect=False, scan_freq="2412")
324 ev = dev[0].wait_event(["EAP: Failed to initialize EAP method: vendor 0 method 18 (SIM)"], timeout=10)
325 if ev is None:
326 raise Exception("No EAP error message seen")
327 dev[0].request("REMOVE_NETWORK all")
328
329 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="SIM",
330 identity="1232010000000000",
331 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581",
332 phase1="sim_min_num_chal=4",
333 wait_connect=False, scan_freq="2412")
334 ev = dev[0].wait_event(["EAP: Failed to initialize EAP method: vendor 0 method 18 (SIM)"], timeout=10)
335 if ev is None:
336 raise Exception("No EAP error message seen (2)")
337 dev[0].request("REMOVE_NETWORK all")
338
3b3e2687 339 eap_connect(dev[0], hapd, "SIM", "1232010000000000",
e2a90a4c
JM
340 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581",
341 phase1="sim_min_num_chal=2")
3b3e2687 342 eap_connect(dev[1], hapd, "SIM", "1232010000000000",
e2a90a4c
JM
343 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581",
344 anonymous_identity="345678")
345
72cbc684
JM
346def test_ap_wpa2_eap_sim_ext(dev, apdev):
347 """WPA2-Enterprise connection using EAP-SIM and external GSM auth"""
47dcb118 348 try:
81e787b7 349 _test_ap_wpa2_eap_sim_ext(dev, apdev)
47dcb118
JM
350 finally:
351 dev[0].request("SET external_sim 0")
352
353def _test_ap_wpa2_eap_sim_ext(dev, apdev):
81e787b7 354 check_hlr_auc_gw_support()
72cbc684 355 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 356 hostapd.add_ap(apdev[0], params)
72cbc684
JM
357 dev[0].request("SET external_sim 1")
358 id = dev[0].connect("test-wpa2-eap", eap="SIM", key_mgmt="WPA-EAP",
359 identity="1232010000000000",
360 wait_connect=False, scan_freq="2412")
361 ev = dev[0].wait_event(["CTRL-EVENT-EAP-METHOD"], timeout=15)
362 if ev is None:
363 raise Exception("Network connected timed out")
364
365 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
366 if ev is None:
367 raise Exception("Wait for external SIM processing request timed out")
368 p = ev.split(':', 2)
369 if p[1] != "GSM-AUTH":
370 raise Exception("Unexpected CTRL-REQ-SIM type")
371 rid = p[0].split('-')[3]
372
373 # IK:CK:RES
374 resp = "00112233445566778899aabbccddeeff:00112233445566778899aabbccddeeff:0011223344"
375 # This will fail during processing, but the ctrl_iface command succeeds
376 dev[0].request("CTRL-RSP-SIM-" + rid + ":UMTS-AUTH:" + resp)
377 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=15)
378 if ev is None:
379 raise Exception("EAP failure not reported")
380 dev[0].request("DISCONNECT")
90ad11e6
JM
381 dev[0].wait_disconnected()
382 time.sleep(0.1)
72cbc684
JM
383
384 dev[0].select_network(id, freq="2412")
385 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
386 if ev is None:
387 raise Exception("Wait for external SIM processing request timed out")
388 p = ev.split(':', 2)
389 if p[1] != "GSM-AUTH":
390 raise Exception("Unexpected CTRL-REQ-SIM type")
391 rid = p[0].split('-')[3]
392 # This will fail during GSM auth validation
393 if "OK" not in dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:q"):
394 raise Exception("CTRL-RSP-SIM failed")
395 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=15)
396 if ev is None:
397 raise Exception("EAP failure not reported")
398 dev[0].request("DISCONNECT")
90ad11e6
JM
399 dev[0].wait_disconnected()
400 time.sleep(0.1)
72cbc684
JM
401
402 dev[0].select_network(id, freq="2412")
403 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
404 if ev is None:
405 raise Exception("Wait for external SIM processing request timed out")
406 p = ev.split(':', 2)
407 if p[1] != "GSM-AUTH":
408 raise Exception("Unexpected CTRL-REQ-SIM type")
409 rid = p[0].split('-')[3]
410 # This will fail during GSM auth validation
411 if "OK" not in dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:34"):
412 raise Exception("CTRL-RSP-SIM failed")
413 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=15)
414 if ev is None:
415 raise Exception("EAP failure not reported")
416 dev[0].request("DISCONNECT")
90ad11e6
JM
417 dev[0].wait_disconnected()
418 time.sleep(0.1)
72cbc684
JM
419
420 dev[0].select_network(id, freq="2412")
421 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
422 if ev is None:
423 raise Exception("Wait for external SIM processing request timed out")
424 p = ev.split(':', 2)
425 if p[1] != "GSM-AUTH":
426 raise Exception("Unexpected CTRL-REQ-SIM type")
427 rid = p[0].split('-')[3]
428 # This will fail during GSM auth validation
429 if "OK" not in dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:0011223344556677"):
430 raise Exception("CTRL-RSP-SIM failed")
431 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=15)
432 if ev is None:
433 raise Exception("EAP failure not reported")
434 dev[0].request("DISCONNECT")
90ad11e6
JM
435 dev[0].wait_disconnected()
436 time.sleep(0.1)
72cbc684
JM
437
438 dev[0].select_network(id, freq="2412")
439 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
440 if ev is None:
441 raise Exception("Wait for external SIM processing request timed out")
442 p = ev.split(':', 2)
443 if p[1] != "GSM-AUTH":
444 raise Exception("Unexpected CTRL-REQ-SIM type")
445 rid = p[0].split('-')[3]
446 # This will fail during GSM auth validation
447 if "OK" not in dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:0011223344556677:q"):
448 raise Exception("CTRL-RSP-SIM failed")
449 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=15)
450 if ev is None:
451 raise Exception("EAP failure not reported")
452 dev[0].request("DISCONNECT")
90ad11e6
JM
453 dev[0].wait_disconnected()
454 time.sleep(0.1)
72cbc684
JM
455
456 dev[0].select_network(id, freq="2412")
457 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
458 if ev is None:
459 raise Exception("Wait for external SIM processing request timed out")
460 p = ev.split(':', 2)
461 if p[1] != "GSM-AUTH":
462 raise Exception("Unexpected CTRL-REQ-SIM type")
463 rid = p[0].split('-')[3]
464 # This will fail during GSM auth validation
465 if "OK" not in dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:0011223344556677:00112233"):
466 raise Exception("CTRL-RSP-SIM failed")
467 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=15)
468 if ev is None:
469 raise Exception("EAP failure not reported")
470 dev[0].request("DISCONNECT")
90ad11e6
JM
471 dev[0].wait_disconnected()
472 time.sleep(0.1)
72cbc684
JM
473
474 dev[0].select_network(id, freq="2412")
475 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
476 if ev is None:
477 raise Exception("Wait for external SIM processing request timed out")
478 p = ev.split(':', 2)
479 if p[1] != "GSM-AUTH":
480 raise Exception("Unexpected CTRL-REQ-SIM type")
481 rid = p[0].split('-')[3]
482 # This will fail during GSM auth validation
483 if "OK" not in dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:0011223344556677:00112233:q"):
484 raise Exception("CTRL-RSP-SIM failed")
485 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=15)
486 if ev is None:
487 raise Exception("EAP failure not reported")
488
40c654cc
JM
489def test_ap_wpa2_eap_sim_ext_replace_sim(dev, apdev):
490 """EAP-SIM with external GSM auth and replacing SIM without clearing pseudonym id"""
491 try:
492 _test_ap_wpa2_eap_sim_ext_replace_sim(dev, apdev)
493 finally:
494 dev[0].request("SET external_sim 0")
495
496def _test_ap_wpa2_eap_sim_ext_replace_sim(dev, apdev):
497 check_hlr_auc_gw_support()
498 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 499 hostapd.add_ap(apdev[0], params)
40c654cc
JM
500 dev[0].request("SET external_sim 1")
501 id = dev[0].connect("test-wpa2-eap", eap="SIM", key_mgmt="WPA-EAP",
502 identity="1232010000000000",
503 wait_connect=False, scan_freq="2412")
504
505 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
506 if ev is None:
507 raise Exception("Wait for external SIM processing request timed out")
508 p = ev.split(':', 2)
509 if p[1] != "GSM-AUTH":
510 raise Exception("Unexpected CTRL-REQ-SIM type")
511 rid = p[0].split('-')[3]
512 rand = p[2].split(' ')[0]
513
514 res = subprocess.check_output(["../../hostapd/hlr_auc_gw",
515 "-m",
516 "auth_serv/hlr_auc_gw.milenage_db",
517 "GSM-AUTH-REQ 232010000000000 " + rand])
518 if "GSM-AUTH-RESP" not in res:
519 raise Exception("Unexpected hlr_auc_gw response")
520 resp = res.split(' ')[2].rstrip()
521
522 dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:" + resp)
523 dev[0].wait_connected(timeout=15)
524 dev[0].request("DISCONNECT")
525 dev[0].wait_disconnected()
526
527 # Replace SIM, but forget to drop the previous pseudonym identity
528 dev[0].set_network_quoted(id, "identity", "1232010000000009")
529 dev[0].select_network(id, freq="2412")
530
531 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
532 if ev is None:
533 raise Exception("Wait for external SIM processing request timed out")
534 p = ev.split(':', 2)
535 if p[1] != "GSM-AUTH":
536 raise Exception("Unexpected CTRL-REQ-SIM type")
537 rid = p[0].split('-')[3]
538 rand = p[2].split(' ')[0]
539
540 res = subprocess.check_output(["../../hostapd/hlr_auc_gw",
541 "-m",
542 "auth_serv/hlr_auc_gw.milenage_db",
543 "GSM-AUTH-REQ 232010000000009 " + rand])
544 if "GSM-AUTH-RESP" not in res:
545 raise Exception("Unexpected hlr_auc_gw response")
546 resp = res.split(' ')[2].rstrip()
547
548 dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:" + resp)
549 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=15)
550 if ev is None:
551 raise Exception("EAP-Failure not reported")
552 dev[0].request("DISCONNECT")
553 dev[0].wait_disconnected()
554
555def test_ap_wpa2_eap_sim_ext_replace_sim2(dev, apdev):
556 """EAP-SIM with external GSM auth and replacing SIM and clearing pseudonym identity"""
557 try:
558 _test_ap_wpa2_eap_sim_ext_replace_sim2(dev, apdev)
559 finally:
560 dev[0].request("SET external_sim 0")
561
562def _test_ap_wpa2_eap_sim_ext_replace_sim2(dev, apdev):
563 check_hlr_auc_gw_support()
564 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 565 hostapd.add_ap(apdev[0], params)
40c654cc
JM
566 dev[0].request("SET external_sim 1")
567 id = dev[0].connect("test-wpa2-eap", eap="SIM", key_mgmt="WPA-EAP",
568 identity="1232010000000000",
569 wait_connect=False, scan_freq="2412")
570
571 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
572 if ev is None:
573 raise Exception("Wait for external SIM processing request timed out")
574 p = ev.split(':', 2)
575 if p[1] != "GSM-AUTH":
576 raise Exception("Unexpected CTRL-REQ-SIM type")
577 rid = p[0].split('-')[3]
578 rand = p[2].split(' ')[0]
579
580 res = subprocess.check_output(["../../hostapd/hlr_auc_gw",
581 "-m",
582 "auth_serv/hlr_auc_gw.milenage_db",
583 "GSM-AUTH-REQ 232010000000000 " + rand])
584 if "GSM-AUTH-RESP" not in res:
585 raise Exception("Unexpected hlr_auc_gw response")
586 resp = res.split(' ')[2].rstrip()
587
588 dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:" + resp)
589 dev[0].wait_connected(timeout=15)
590 dev[0].request("DISCONNECT")
591 dev[0].wait_disconnected()
592
593 # Replace SIM and drop the previous pseudonym identity
594 dev[0].set_network_quoted(id, "identity", "1232010000000009")
595 dev[0].set_network(id, "anonymous_identity", "NULL")
596 dev[0].select_network(id, freq="2412")
597
598 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
599 if ev is None:
600 raise Exception("Wait for external SIM processing request timed out")
601 p = ev.split(':', 2)
602 if p[1] != "GSM-AUTH":
603 raise Exception("Unexpected CTRL-REQ-SIM type")
604 rid = p[0].split('-')[3]
605 rand = p[2].split(' ')[0]
606
607 res = subprocess.check_output(["../../hostapd/hlr_auc_gw",
608 "-m",
609 "auth_serv/hlr_auc_gw.milenage_db",
610 "GSM-AUTH-REQ 232010000000009 " + rand])
611 if "GSM-AUTH-RESP" not in res:
612 raise Exception("Unexpected hlr_auc_gw response")
613 resp = res.split(' ')[2].rstrip()
614
615 dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:" + resp)
616 dev[0].wait_connected()
617 dev[0].request("DISCONNECT")
618 dev[0].wait_disconnected()
619
620def test_ap_wpa2_eap_sim_ext_replace_sim3(dev, apdev):
621 """EAP-SIM with external GSM auth, replacing SIM, and no identity in config"""
622 try:
623 _test_ap_wpa2_eap_sim_ext_replace_sim3(dev, apdev)
624 finally:
625 dev[0].request("SET external_sim 0")
626
627def _test_ap_wpa2_eap_sim_ext_replace_sim3(dev, apdev):
628 check_hlr_auc_gw_support()
629 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 630 hostapd.add_ap(apdev[0], params)
40c654cc
JM
631 dev[0].request("SET external_sim 1")
632 id = dev[0].connect("test-wpa2-eap", eap="SIM", key_mgmt="WPA-EAP",
633 wait_connect=False, scan_freq="2412")
634
635 ev = dev[0].wait_event(["CTRL-REQ-IDENTITY"])
636 if ev is None:
637 raise Exception("Request for identity timed out")
638 rid = ev.split(':')[0].split('-')[-1]
639 dev[0].request("CTRL-RSP-IDENTITY-" + rid + ":1232010000000000")
640
641 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
642 if ev is None:
643 raise Exception("Wait for external SIM processing request timed out")
644 p = ev.split(':', 2)
645 if p[1] != "GSM-AUTH":
646 raise Exception("Unexpected CTRL-REQ-SIM type")
647 rid = p[0].split('-')[3]
648 rand = p[2].split(' ')[0]
649
650 res = subprocess.check_output(["../../hostapd/hlr_auc_gw",
651 "-m",
652 "auth_serv/hlr_auc_gw.milenage_db",
653 "GSM-AUTH-REQ 232010000000000 " + rand])
654 if "GSM-AUTH-RESP" not in res:
655 raise Exception("Unexpected hlr_auc_gw response")
656 resp = res.split(' ')[2].rstrip()
657
658 dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:" + resp)
659 dev[0].wait_connected(timeout=15)
660 dev[0].request("DISCONNECT")
661 dev[0].wait_disconnected()
662
663 # Replace SIM and drop the previous permanent and pseudonym identities
664 dev[0].set_network(id, "identity", "NULL")
665 dev[0].set_network(id, "anonymous_identity", "NULL")
666 dev[0].select_network(id, freq="2412")
667
668 ev = dev[0].wait_event(["CTRL-REQ-IDENTITY"])
669 if ev is None:
670 raise Exception("Request for identity timed out")
671 rid = ev.split(':')[0].split('-')[-1]
672 dev[0].request("CTRL-RSP-IDENTITY-" + rid + ":1232010000000009")
673
674 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
675 if ev is None:
676 raise Exception("Wait for external SIM processing request timed out")
677 p = ev.split(':', 2)
678 if p[1] != "GSM-AUTH":
679 raise Exception("Unexpected CTRL-REQ-SIM type")
680 rid = p[0].split('-')[3]
681 rand = p[2].split(' ')[0]
682
683 res = subprocess.check_output(["../../hostapd/hlr_auc_gw",
684 "-m",
685 "auth_serv/hlr_auc_gw.milenage_db",
686 "GSM-AUTH-REQ 232010000000009 " + rand])
687 if "GSM-AUTH-RESP" not in res:
688 raise Exception("Unexpected hlr_auc_gw response")
689 resp = res.split(' ')[2].rstrip()
690
691 dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:" + resp)
692 dev[0].wait_connected()
693 dev[0].request("DISCONNECT")
694 dev[0].wait_disconnected()
695
c397edf2
JM
696def test_ap_wpa2_eap_sim_ext_auth_fail(dev, apdev):
697 """EAP-SIM with external GSM auth and auth failing"""
698 try:
699 _test_ap_wpa2_eap_sim_ext_auth_fail(dev, apdev)
700 finally:
701 dev[0].request("SET external_sim 0")
702
703def _test_ap_wpa2_eap_sim_ext_auth_fail(dev, apdev):
704 check_hlr_auc_gw_support()
705 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 706 hostapd.add_ap(apdev[0], params)
c397edf2
JM
707 dev[0].request("SET external_sim 1")
708 id = dev[0].connect("test-wpa2-eap", eap="SIM", key_mgmt="WPA-EAP",
709 identity="1232010000000000",
710 wait_connect=False, scan_freq="2412")
711
712 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
713 if ev is None:
714 raise Exception("Wait for external SIM processing request timed out")
715 p = ev.split(':', 2)
716 rid = p[0].split('-')[3]
717 dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-FAIL")
718 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=5)
719 if ev is None:
720 raise Exception("EAP failure not reported")
721 dev[0].request("REMOVE_NETWORK all")
722 dev[0].wait_disconnected()
723
6c7fed46
JM
724def test_ap_wpa2_eap_sim_change_bssid(dev, apdev):
725 """EAP-SIM and external GSM auth to check fast reauth with bssid change"""
726 try:
727 _test_ap_wpa2_eap_sim_change_bssid(dev, apdev)
728 finally:
729 dev[0].request("SET external_sim 0")
730
731def _test_ap_wpa2_eap_sim_change_bssid(dev, apdev):
732 check_hlr_auc_gw_support()
733 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 734 hostapd.add_ap(apdev[0], params)
6c7fed46
JM
735 dev[0].request("SET external_sim 1")
736 id = dev[0].connect("test-wpa2-eap", eap="SIM", key_mgmt="WPA-EAP",
737 identity="1232010000000000",
738 wait_connect=False, scan_freq="2412")
739
740 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
741 if ev is None:
742 raise Exception("Wait for external SIM processing request timed out")
743 p = ev.split(':', 2)
744 if p[1] != "GSM-AUTH":
745 raise Exception("Unexpected CTRL-REQ-SIM type")
746 rid = p[0].split('-')[3]
747 rand = p[2].split(' ')[0]
748
749 res = subprocess.check_output(["../../hostapd/hlr_auc_gw",
750 "-m",
751 "auth_serv/hlr_auc_gw.milenage_db",
752 "GSM-AUTH-REQ 232010000000000 " + rand])
753 if "GSM-AUTH-RESP" not in res:
754 raise Exception("Unexpected hlr_auc_gw response")
755 resp = res.split(' ')[2].rstrip()
756
757 dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:" + resp)
758 dev[0].wait_connected(timeout=15)
759
760 # Verify that EAP-SIM Reauthentication can be used after a profile change
761 # that does not affect EAP parameters.
762 dev[0].set_network(id, "bssid", "any")
763 eap_reauth(dev[0], "SIM")
764
07f0da30
JM
765def test_ap_wpa2_eap_sim_no_change_set(dev, apdev):
766 """EAP-SIM and external GSM auth to check fast reauth with no-change SET_NETWORK"""
767 try:
768 _test_ap_wpa2_eap_sim_no_change_set(dev, apdev)
769 finally:
770 dev[0].request("SET external_sim 0")
771
772def _test_ap_wpa2_eap_sim_no_change_set(dev, apdev):
773 check_hlr_auc_gw_support()
774 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 775 hostapd.add_ap(apdev[0], params)
07f0da30
JM
776 dev[0].request("SET external_sim 1")
777 id = dev[0].connect("test-wpa2-eap", eap="SIM", key_mgmt="WPA-EAP",
778 identity="1232010000000000",
779 wait_connect=False, scan_freq="2412")
780
781 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
782 if ev is None:
783 raise Exception("Wait for external SIM processing request timed out")
784 p = ev.split(':', 2)
785 if p[1] != "GSM-AUTH":
786 raise Exception("Unexpected CTRL-REQ-SIM type")
787 rid = p[0].split('-')[3]
788 rand = p[2].split(' ')[0]
789
790 res = subprocess.check_output(["../../hostapd/hlr_auc_gw",
791 "-m",
792 "auth_serv/hlr_auc_gw.milenage_db",
793 "GSM-AUTH-REQ 232010000000000 " + rand])
794 if "GSM-AUTH-RESP" not in res:
795 raise Exception("Unexpected hlr_auc_gw response")
796 resp = res.split(' ')[2].rstrip()
797
798 dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:" + resp)
799 dev[0].wait_connected(timeout=15)
800
801 # Verify that EAP-SIM Reauthentication can be used after network profile
802 # SET_NETWORK commands that do not actually change previously set
803 # parameter values.
804 dev[0].set_network(id, "key_mgmt", "WPA-EAP")
805 dev[0].set_network(id, "eap", "SIM")
806 dev[0].set_network_quoted(id, "identity", "1232010000000000")
807 dev[0].set_network_quoted(id, "ssid", "test-wpa2-eap")
808 eap_reauth(dev[0], "SIM")
809
486f4e3c
JM
810def test_ap_wpa2_eap_sim_oom(dev, apdev):
811 """EAP-SIM and OOM"""
812 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 813 hostapd.add_ap(apdev[0], params)
486f4e3c
JM
814 tests = [ (1, "milenage_f2345"),
815 (2, "milenage_f2345"),
816 (3, "milenage_f2345"),
817 (4, "milenage_f2345"),
818 (5, "milenage_f2345"),
819 (6, "milenage_f2345"),
820 (7, "milenage_f2345"),
821 (8, "milenage_f2345"),
822 (9, "milenage_f2345"),
823 (10, "milenage_f2345"),
824 (11, "milenage_f2345"),
825 (12, "milenage_f2345") ]
826 for count, func in tests:
7cbc8e67 827 with fail_test(dev[0], count, func):
486f4e3c
JM
828 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="SIM",
829 identity="1232010000000000",
830 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581",
831 wait_connect=False, scan_freq="2412")
832 ev = dev[0].wait_event(["CTRL-EVENT-EAP-METHOD"], timeout=5)
833 if ev is None:
834 raise Exception("EAP method not selected")
835 dev[0].wait_disconnected()
836 dev[0].request("REMOVE_NETWORK all")
837
9626962d
JM
838def test_ap_wpa2_eap_aka(dev, apdev):
839 """WPA2-Enterprise connection using EAP-AKA"""
81e787b7 840 check_hlr_auc_gw_support()
9626962d 841 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 842 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 843 eap_connect(dev[0], hapd, "AKA", "0232010000000000",
9626962d 844 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581:000000000123")
a8375c94 845 hwsim_utils.test_connectivity(dev[0], hapd)
75b2b9cf 846 eap_reauth(dev[0], "AKA")
9626962d 847
f10ba3b2
JM
848 logger.info("Negative test with incorrect key")
849 dev[0].request("REMOVE_NETWORK all")
3b3e2687 850 eap_connect(dev[0], hapd, "AKA", "0232010000000000",
f10ba3b2
JM
851 password="ffdca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581:000000000123",
852 expect_failure=True)
853
32747a3e
JM
854 logger.info("Invalid Milenage key")
855 dev[0].request("REMOVE_NETWORK all")
3b3e2687 856 eap_connect(dev[0], hapd, "AKA", "0232010000000000",
32747a3e
JM
857 password="ffdca4eda45b53cf0f12d7c9c3bc6a",
858 expect_failure=True)
859
860 logger.info("Invalid Milenage key(2)")
3b3e2687 861 eap_connect(dev[0], hapd, "AKA", "0232010000000000",
32747a3e
JM
862 password="ffdca4eda45b53cf0f12d7c9c3bc6a8q:cb9cccc4b9258e6dca4760379fb82581:000000000123",
863 expect_failure=True)
864
865 logger.info("Invalid Milenage key(3)")
3b3e2687 866 eap_connect(dev[0], hapd, "AKA", "0232010000000000",
32747a3e
JM
867 password="ffdca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb8258q:000000000123",
868 expect_failure=True)
869
870 logger.info("Invalid Milenage key(4)")
3b3e2687 871 eap_connect(dev[0], hapd, "AKA", "0232010000000000",
32747a3e
JM
872 password="ffdca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581:00000000012q",
873 expect_failure=True)
874
875 logger.info("Invalid Milenage key(5)")
876 dev[0].request("REMOVE_NETWORK all")
3b3e2687 877 eap_connect(dev[0], hapd, "AKA", "0232010000000000",
32747a3e
JM
878 password="ffdca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581q000000000123",
879 expect_failure=True)
880
881 logger.info("Invalid Milenage key(6)")
882 dev[0].request("REMOVE_NETWORK all")
3b3e2687 883 eap_connect(dev[0], hapd, "AKA", "0232010000000000",
32747a3e
JM
884 password="ffdca4eda45b53cf0f12d7c9c3bc6a89qcb9cccc4b9258e6dca4760379fb82581q000000000123",
885 expect_failure=True)
886
887 logger.info("Missing key configuration")
888 dev[0].request("REMOVE_NETWORK all")
3b3e2687 889 eap_connect(dev[0], hapd, "AKA", "0232010000000000",
32747a3e
JM
890 expect_failure=True)
891
5b1aaf6c
JM
892def test_ap_wpa2_eap_aka_sql(dev, apdev, params):
893 """WPA2-Enterprise connection using EAP-AKA (SQL)"""
81e787b7 894 check_hlr_auc_gw_support()
5b1aaf6c
JM
895 try:
896 import sqlite3
897 except ImportError:
81e787b7 898 raise HwsimSkip("No sqlite3 module available")
5b1aaf6c
JM
899 con = sqlite3.connect(os.path.join(params['logdir'], "hostapd.db"))
900 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
901 params['auth_server_port'] = "1814"
3b3e2687
JD
902 hapd = hostapd.add_ap(apdev[0], params)
903 eap_connect(dev[0], hapd, "AKA", "0232010000000000",
5b1aaf6c
JM
904 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581:000000000123")
905
906 logger.info("AKA fast re-authentication")
907 eap_reauth(dev[0], "AKA")
908
909 logger.info("AKA full auth with pseudonym")
910 with con:
911 cur = con.cursor()
912 cur.execute("DELETE FROM reauth WHERE permanent='0232010000000000'")
913 eap_reauth(dev[0], "AKA")
914
915 logger.info("AKA full auth with permanent identity")
916 with con:
917 cur = con.cursor()
918 cur.execute("DELETE FROM reauth WHERE permanent='0232010000000000'")
919 cur.execute("DELETE FROM pseudonyms WHERE permanent='0232010000000000'")
920 eap_reauth(dev[0], "AKA")
921
922 logger.info("AKA reauth with mismatching MK")
923 with con:
924 cur = con.cursor()
925 cur.execute("UPDATE reauth SET mk='0000000000000000000000000000000000000000' WHERE permanent='0232010000000000'")
926 eap_reauth(dev[0], "AKA", expect_failure=True)
927 dev[0].request("REMOVE_NETWORK all")
928
3b3e2687 929 eap_connect(dev[0], hapd, "AKA", "0232010000000000",
5b1aaf6c
JM
930 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581:000000000123")
931 with con:
932 cur = con.cursor()
933 cur.execute("UPDATE reauth SET counter='10' WHERE permanent='0232010000000000'")
934 eap_reauth(dev[0], "AKA")
935 with con:
936 cur = con.cursor()
937 cur.execute("UPDATE reauth SET counter='10' WHERE permanent='0232010000000000'")
938 logger.info("AKA reauth with mismatching counter")
939 eap_reauth(dev[0], "AKA")
940 dev[0].request("REMOVE_NETWORK all")
941
3b3e2687 942 eap_connect(dev[0], hapd, "AKA", "0232010000000000",
5b1aaf6c
JM
943 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581:000000000123")
944 with con:
945 cur = con.cursor()
946 cur.execute("UPDATE reauth SET counter='1001' WHERE permanent='0232010000000000'")
947 logger.info("AKA reauth with max reauth count reached")
948 eap_reauth(dev[0], "AKA")
949
e2a90a4c
JM
950def test_ap_wpa2_eap_aka_config(dev, apdev):
951 """EAP-AKA configuration options"""
952 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
953 hapd = hostapd.add_ap(apdev[0], params)
954 eap_connect(dev[0], hapd, "AKA", "0232010000000000",
e2a90a4c
JM
955 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581:000000000123",
956 anonymous_identity="2345678")
957
d314bedf
JM
958def test_ap_wpa2_eap_aka_ext(dev, apdev):
959 """WPA2-Enterprise connection using EAP-AKA and external UMTS auth"""
47dcb118 960 try:
81e787b7 961 _test_ap_wpa2_eap_aka_ext(dev, apdev)
47dcb118
JM
962 finally:
963 dev[0].request("SET external_sim 0")
964
965def _test_ap_wpa2_eap_aka_ext(dev, apdev):
81e787b7 966 check_hlr_auc_gw_support()
d314bedf 967 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 968 hostapd.add_ap(apdev[0], params)
d314bedf
JM
969 dev[0].request("SET external_sim 1")
970 id = dev[0].connect("test-wpa2-eap", eap="AKA", key_mgmt="WPA-EAP",
971 identity="0232010000000000",
972 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581:000000000123",
973 wait_connect=False, scan_freq="2412")
974 ev = dev[0].wait_event(["CTRL-EVENT-EAP-METHOD"], timeout=15)
975 if ev is None:
976 raise Exception("Network connected timed out")
977
978 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
979 if ev is None:
980 raise Exception("Wait for external SIM processing request timed out")
981 p = ev.split(':', 2)
982 if p[1] != "UMTS-AUTH":
983 raise Exception("Unexpected CTRL-REQ-SIM type")
984 rid = p[0].split('-')[3]
985
986 # IK:CK:RES
987 resp = "00112233445566778899aabbccddeeff:00112233445566778899aabbccddeeff:0011223344"
988 # This will fail during processing, but the ctrl_iface command succeeds
989 dev[0].request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:" + resp)
990 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=15)
991 if ev is None:
992 raise Exception("EAP failure not reported")
993 dev[0].request("DISCONNECT")
584e4197 994 dev[0].wait_disconnected()
90ad11e6 995 time.sleep(0.1)
a359c7bb 996 dev[0].dump_monitor()
d314bedf 997
d8e02214
JM
998 dev[0].select_network(id, freq="2412")
999 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
1000 if ev is None:
1001 raise Exception("Wait for external SIM processing request timed out")
1002 p = ev.split(':', 2)
1003 if p[1] != "UMTS-AUTH":
1004 raise Exception("Unexpected CTRL-REQ-SIM type")
1005 rid = p[0].split('-')[3]
1006 # This will fail during UMTS auth validation
1007 if "OK" not in dev[0].request("CTRL-RSP-SIM-" + rid + ":UMTS-AUTS:112233445566778899aabbccddee"):
1008 raise Exception("CTRL-RSP-SIM failed")
1009 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
1010 if ev is None:
1011 raise Exception("Wait for external SIM processing request timed out")
1012 p = ev.split(':', 2)
1013 if p[1] != "UMTS-AUTH":
1014 raise Exception("Unexpected CTRL-REQ-SIM type")
1015 rid = p[0].split('-')[3]
1016 # This will fail during UMTS auth validation
1017 if "OK" not in dev[0].request("CTRL-RSP-SIM-" + rid + ":UMTS-AUTS:12"):
1018 raise Exception("CTRL-RSP-SIM failed")
1019 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=15)
1020 if ev is None:
1021 raise Exception("EAP failure not reported")
1022 dev[0].request("DISCONNECT")
584e4197 1023 dev[0].wait_disconnected()
90ad11e6 1024 time.sleep(0.1)
a359c7bb 1025 dev[0].dump_monitor()
d8e02214 1026
0258cf10
JM
1027 tests = [ ":UMTS-AUTH:00112233445566778899aabbccddeeff:00112233445566778899aabbccddeeff:0011223344",
1028 ":UMTS-AUTH:34",
1029 ":UMTS-AUTH:00112233445566778899aabbccddeeff.00112233445566778899aabbccddeeff:0011223344",
1030 ":UMTS-AUTH:00112233445566778899aabbccddeeff:00112233445566778899aabbccddee:0011223344",
1031 ":UMTS-AUTH:00112233445566778899aabbccddeeff:00112233445566778899aabbccddeeff.0011223344",
1032 ":UMTS-AUTH:00112233445566778899aabbccddeeff:00112233445566778899aabbccddeeff:00112233445566778899aabbccddeeff0011223344",
1033 ":UMTS-AUTH:00112233445566778899aabbccddeeff:00112233445566778899aabbccddeeff:001122334q" ]
1034 for t in tests:
1035 dev[0].select_network(id, freq="2412")
1036 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
1037 if ev is None:
1038 raise Exception("Wait for external SIM processing request timed out")
1039 p = ev.split(':', 2)
1040 if p[1] != "UMTS-AUTH":
1041 raise Exception("Unexpected CTRL-REQ-SIM type")
1042 rid = p[0].split('-')[3]
1043 # This will fail during UMTS auth validation
1044 if "OK" not in dev[0].request("CTRL-RSP-SIM-" + rid + t):
1045 raise Exception("CTRL-RSP-SIM failed")
1046 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=15)
1047 if ev is None:
1048 raise Exception("EAP failure not reported")
1049 dev[0].request("DISCONNECT")
1050 dev[0].wait_disconnected()
90ad11e6 1051 time.sleep(0.1)
a359c7bb 1052 dev[0].dump_monitor()
d314bedf 1053
c397edf2
JM
1054def test_ap_wpa2_eap_aka_ext_auth_fail(dev, apdev):
1055 """EAP-AKA with external UMTS auth and auth failing"""
1056 try:
1057 _test_ap_wpa2_eap_aka_ext_auth_fail(dev, apdev)
1058 finally:
1059 dev[0].request("SET external_sim 0")
1060
1061def _test_ap_wpa2_eap_aka_ext_auth_fail(dev, apdev):
1062 check_hlr_auc_gw_support()
1063 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1064 hostapd.add_ap(apdev[0], params)
c397edf2
JM
1065 dev[0].request("SET external_sim 1")
1066 id = dev[0].connect("test-wpa2-eap", eap="AKA", key_mgmt="WPA-EAP",
1067 identity="0232010000000000",
1068 wait_connect=False, scan_freq="2412")
1069
1070 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
1071 if ev is None:
1072 raise Exception("Wait for external SIM processing request timed out")
1073 p = ev.split(':', 2)
1074 rid = p[0].split('-')[3]
1075 dev[0].request("CTRL-RSP-SIM-" + rid + ":UMTS-FAIL")
1076 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=5)
1077 if ev is None:
1078 raise Exception("EAP failure not reported")
1079 dev[0].request("REMOVE_NETWORK all")
1080 dev[0].wait_disconnected()
1081
9626962d
JM
1082def test_ap_wpa2_eap_aka_prime(dev, apdev):
1083 """WPA2-Enterprise connection using EAP-AKA'"""
81e787b7 1084 check_hlr_auc_gw_support()
9626962d 1085 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1086 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1087 eap_connect(dev[0], hapd, "AKA'", "6555444333222111",
9626962d 1088 password="5122250214c33e723a5dd523fc145fc0:981d464c7c52eb6e5036234984ad0bcf:000000000123")
a8375c94 1089 hwsim_utils.test_connectivity(dev[0], hapd)
75b2b9cf 1090 eap_reauth(dev[0], "AKA'")
9626962d 1091
8583d664
JM
1092 logger.info("EAP-AKA' bidding protection when EAP-AKA enabled as well")
1093 dev[1].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="AKA' AKA",
1094 identity="6555444333222111@both",
1095 password="5122250214c33e723a5dd523fc145fc0:981d464c7c52eb6e5036234984ad0bcf:000000000123",
1096 wait_connect=False, scan_freq="2412")
5f35a5e2 1097 dev[1].wait_connected(timeout=15)
8583d664 1098
f10ba3b2
JM
1099 logger.info("Negative test with incorrect key")
1100 dev[0].request("REMOVE_NETWORK all")
3b3e2687 1101 eap_connect(dev[0], hapd, "AKA'", "6555444333222111",
f10ba3b2
JM
1102 password="ff22250214c33e723a5dd523fc145fc0:981d464c7c52eb6e5036234984ad0bcf:000000000123",
1103 expect_failure=True)
1104
5b1aaf6c
JM
1105def test_ap_wpa2_eap_aka_prime_sql(dev, apdev, params):
1106 """WPA2-Enterprise connection using EAP-AKA' (SQL)"""
81e787b7 1107 check_hlr_auc_gw_support()
5b1aaf6c
JM
1108 try:
1109 import sqlite3
1110 except ImportError:
81e787b7 1111 raise HwsimSkip("No sqlite3 module available")
5b1aaf6c
JM
1112 con = sqlite3.connect(os.path.join(params['logdir'], "hostapd.db"))
1113 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
1114 params['auth_server_port'] = "1814"
3b3e2687
JD
1115 hapd = hostapd.add_ap(apdev[0], params)
1116 eap_connect(dev[0], hapd, "AKA'", "6555444333222111",
5b1aaf6c
JM
1117 password="5122250214c33e723a5dd523fc145fc0:981d464c7c52eb6e5036234984ad0bcf:000000000123")
1118
1119 logger.info("AKA' fast re-authentication")
1120 eap_reauth(dev[0], "AKA'")
1121
1122 logger.info("AKA' full auth with pseudonym")
1123 with con:
1124 cur = con.cursor()
1125 cur.execute("DELETE FROM reauth WHERE permanent='6555444333222111'")
1126 eap_reauth(dev[0], "AKA'")
1127
1128 logger.info("AKA' full auth with permanent identity")
1129 with con:
1130 cur = con.cursor()
1131 cur.execute("DELETE FROM reauth WHERE permanent='6555444333222111'")
1132 cur.execute("DELETE FROM pseudonyms WHERE permanent='6555444333222111'")
1133 eap_reauth(dev[0], "AKA'")
1134
1135 logger.info("AKA' reauth with mismatching k_aut")
1136 with con:
1137 cur = con.cursor()
1138 cur.execute("UPDATE reauth SET k_aut='0000000000000000000000000000000000000000000000000000000000000000' WHERE permanent='6555444333222111'")
1139 eap_reauth(dev[0], "AKA'", expect_failure=True)
1140 dev[0].request("REMOVE_NETWORK all")
1141
3b3e2687 1142 eap_connect(dev[0], hapd, "AKA'", "6555444333222111",
5b1aaf6c
JM
1143 password="5122250214c33e723a5dd523fc145fc0:981d464c7c52eb6e5036234984ad0bcf:000000000123")
1144 with con:
1145 cur = con.cursor()
1146 cur.execute("UPDATE reauth SET counter='10' WHERE permanent='6555444333222111'")
1147 eap_reauth(dev[0], "AKA'")
1148 with con:
1149 cur = con.cursor()
1150 cur.execute("UPDATE reauth SET counter='10' WHERE permanent='6555444333222111'")
1151 logger.info("AKA' reauth with mismatching counter")
1152 eap_reauth(dev[0], "AKA'")
1153 dev[0].request("REMOVE_NETWORK all")
1154
3b3e2687 1155 eap_connect(dev[0], hapd, "AKA'", "6555444333222111",
5b1aaf6c
JM
1156 password="5122250214c33e723a5dd523fc145fc0:981d464c7c52eb6e5036234984ad0bcf:000000000123")
1157 with con:
1158 cur = con.cursor()
1159 cur.execute("UPDATE reauth SET counter='1001' WHERE permanent='6555444333222111'")
1160 logger.info("AKA' reauth with max reauth count reached")
1161 eap_reauth(dev[0], "AKA'")
1162
c397edf2
JM
1163def test_ap_wpa2_eap_aka_prime_ext_auth_fail(dev, apdev):
1164 """EAP-AKA' with external UMTS auth and auth failing"""
1165 try:
1166 _test_ap_wpa2_eap_aka_prime_ext_auth_fail(dev, apdev)
1167 finally:
1168 dev[0].request("SET external_sim 0")
1169
1170def _test_ap_wpa2_eap_aka_prime_ext_auth_fail(dev, apdev):
1171 check_hlr_auc_gw_support()
1172 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1173 hostapd.add_ap(apdev[0], params)
c397edf2
JM
1174 dev[0].request("SET external_sim 1")
1175 id = dev[0].connect("test-wpa2-eap", eap="AKA'", key_mgmt="WPA-EAP",
1176 identity="6555444333222111",
1177 wait_connect=False, scan_freq="2412")
1178
1179 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
1180 if ev is None:
1181 raise Exception("Wait for external SIM processing request timed out")
1182 p = ev.split(':', 2)
1183 rid = p[0].split('-')[3]
1184 dev[0].request("CTRL-RSP-SIM-" + rid + ":UMTS-FAIL")
1185 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=5)
1186 if ev is None:
1187 raise Exception("EAP failure not reported")
1188 dev[0].request("REMOVE_NETWORK all")
1189 dev[0].wait_disconnected()
1190
c25aada9
JM
1191def test_ap_wpa2_eap_aka_prime_ext(dev, apdev):
1192 """EAP-AKA' with external UMTS auth to hit Synchronization-Failure"""
1193 try:
1194 _test_ap_wpa2_eap_aka_prime_ext(dev, apdev)
1195 finally:
1196 dev[0].request("SET external_sim 0")
1197
1198def _test_ap_wpa2_eap_aka_prime_ext(dev, apdev):
1199 check_hlr_auc_gw_support()
1200 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
1201 hostapd.add_ap(apdev[0], params)
1202 dev[0].request("SET external_sim 1")
1203 id = dev[0].connect("test-wpa2-eap", eap="AKA'", key_mgmt="WPA-EAP",
1204 identity="6555444333222111",
1205 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581:000000000123",
1206 wait_connect=False, scan_freq="2412")
1207 ev = dev[0].wait_event(["CTRL-EVENT-EAP-METHOD"], timeout=15)
1208 if ev is None:
1209 raise Exception("Network connected timed out")
1210
1211 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
1212 if ev is None:
1213 raise Exception("Wait for external SIM processing request timed out")
1214 p = ev.split(':', 2)
1215 if p[1] != "UMTS-AUTH":
1216 raise Exception("Unexpected CTRL-REQ-SIM type")
1217 rid = p[0].split('-')[3]
1218 # This will fail during UMTS auth validation
1219 if "OK" not in dev[0].request("CTRL-RSP-SIM-" + rid + ":UMTS-AUTS:112233445566778899aabbccddee"):
1220 raise Exception("CTRL-RSP-SIM failed")
1221 ev = dev[0].wait_event(["CTRL-REQ-SIM"], timeout=15)
1222 if ev is None:
1223 raise Exception("Wait for external SIM processing request timed out")
1224
9626962d
JM
1225def test_ap_wpa2_eap_ttls_pap(dev, apdev):
1226 """WPA2-Enterprise connection using EAP-TTLS/PAP"""
1227 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1228 hapd = hostapd.add_ap(apdev[0], params)
65038313
JM
1229 key_mgmt = hapd.get_config()['key_mgmt']
1230 if key_mgmt.split(' ')[0] != "WPA-EAP":
1231 raise Exception("Unexpected GET_CONFIG(key_mgmt): " + key_mgmt)
3b3e2687 1232 eap_connect(dev[0], hapd, "TTLS", "pap user",
9626962d 1233 anonymous_identity="ttls", password="password",
506b2f05 1234 ca_cert="auth_serv/ca.pem", phase2="auth=PAP")
a8375c94 1235 hwsim_utils.test_connectivity(dev[0], hapd)
75b2b9cf 1236 eap_reauth(dev[0], "TTLS")
eaf3f9b1
JM
1237 check_mib(dev[0], [ ("dot11RSNAAuthenticationSuiteRequested", "00-0f-ac-1"),
1238 ("dot11RSNAAuthenticationSuiteSelected", "00-0f-ac-1") ])
9626962d 1239
506b2f05
JM
1240def test_ap_wpa2_eap_ttls_pap_subject_match(dev, apdev):
1241 """WPA2-Enterprise connection using EAP-TTLS/PAP and (alt)subject_match"""
1242 check_subject_match_support(dev[0])
1243 check_altsubject_match_support(dev[0])
1244 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1245 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1246 eap_connect(dev[0], hapd, "TTLS", "pap user",
506b2f05
JM
1247 anonymous_identity="ttls", password="password",
1248 ca_cert="auth_serv/ca.pem", phase2="auth=PAP",
1249 subject_match="/C=FI/O=w1.fi/CN=server.w1.fi",
1250 altsubject_match="EMAIL:noone@example.com;DNS:server.w1.fi;URI:http://example.com/")
1251 eap_reauth(dev[0], "TTLS")
1252
82a8f5b5
JM
1253def test_ap_wpa2_eap_ttls_pap_incorrect_password(dev, apdev):
1254 """WPA2-Enterprise connection using EAP-TTLS/PAP - incorrect password"""
1255 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1256 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1257 eap_connect(dev[0], hapd, "TTLS", "pap user",
82a8f5b5
JM
1258 anonymous_identity="ttls", password="wrong",
1259 ca_cert="auth_serv/ca.pem", phase2="auth=PAP",
1260 expect_failure=True)
3b3e2687 1261 eap_connect(dev[1], hapd, "TTLS", "user",
82a8f5b5
JM
1262 anonymous_identity="ttls", password="password",
1263 ca_cert="auth_serv/ca.pem", phase2="auth=PAP",
1264 expect_failure=True)
1265
9626962d
JM
1266def test_ap_wpa2_eap_ttls_chap(dev, apdev):
1267 """WPA2-Enterprise connection using EAP-TTLS/CHAP"""
ca158ea6 1268 skip_with_fips(dev[0])
9626962d 1269 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1270 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1271 eap_connect(dev[0], hapd, "TTLS", "chap user",
506b2f05
JM
1272 anonymous_identity="ttls", password="password",
1273 ca_cert="auth_serv/ca.der", phase2="auth=CHAP")
1274 hwsim_utils.test_connectivity(dev[0], hapd)
1275 eap_reauth(dev[0], "TTLS")
1276
1277def test_ap_wpa2_eap_ttls_chap_altsubject_match(dev, apdev):
1278 """WPA2-Enterprise connection using EAP-TTLS/CHAP"""
ca158ea6 1279 skip_with_fips(dev[0])
506b2f05
JM
1280 check_altsubject_match_support(dev[0])
1281 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1282 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1283 eap_connect(dev[0], hapd, "TTLS", "chap user",
9626962d 1284 anonymous_identity="ttls", password="password",
5c65e277
JM
1285 ca_cert="auth_serv/ca.der", phase2="auth=CHAP",
1286 altsubject_match="EMAIL:noone@example.com;URI:http://example.com/;DNS:server.w1.fi")
75b2b9cf 1287 eap_reauth(dev[0], "TTLS")
9626962d 1288
82a8f5b5
JM
1289def test_ap_wpa2_eap_ttls_chap_incorrect_password(dev, apdev):
1290 """WPA2-Enterprise connection using EAP-TTLS/CHAP - incorrect password"""
ca158ea6 1291 skip_with_fips(dev[0])
82a8f5b5 1292 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1293 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1294 eap_connect(dev[0], hapd, "TTLS", "chap user",
82a8f5b5
JM
1295 anonymous_identity="ttls", password="wrong",
1296 ca_cert="auth_serv/ca.pem", phase2="auth=CHAP",
1297 expect_failure=True)
3b3e2687 1298 eap_connect(dev[1], hapd, "TTLS", "user",
82a8f5b5
JM
1299 anonymous_identity="ttls", password="password",
1300 ca_cert="auth_serv/ca.pem", phase2="auth=CHAP",
1301 expect_failure=True)
1302
9626962d
JM
1303def test_ap_wpa2_eap_ttls_mschap(dev, apdev):
1304 """WPA2-Enterprise connection using EAP-TTLS/MSCHAP"""
ca158ea6 1305 skip_with_fips(dev[0])
e78eb404 1306 check_domain_suffix_match(dev[0])
9626962d 1307 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1308 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1309 eap_connect(dev[0], hapd, "TTLS", "mschap user",
9626962d 1310 anonymous_identity="ttls", password="password",
72c052d5
JM
1311 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
1312 domain_suffix_match="server.w1.fi")
a8375c94 1313 hwsim_utils.test_connectivity(dev[0], hapd)
75b2b9cf 1314 eap_reauth(dev[0], "TTLS")
6daf5b9c 1315 dev[0].request("REMOVE_NETWORK all")
3b3e2687 1316 eap_connect(dev[0], hapd, "TTLS", "mschap user",
6daf5b9c
JM
1317 anonymous_identity="ttls", password="password",
1318 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
1319 fragment_size="200")
bfdb90d4
JM
1320 dev[0].request("REMOVE_NETWORK all")
1321 dev[0].wait_disconnected()
3b3e2687 1322 eap_connect(dev[0], hapd, "TTLS", "mschap user",
bfdb90d4
JM
1323 anonymous_identity="ttls",
1324 password_hex="hash:8846f7eaee8fb117ad06bdd830b7586c",
1325 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP")
9626962d 1326
82a8f5b5 1327def test_ap_wpa2_eap_ttls_mschap_incorrect_password(dev, apdev):
ca158ea6
JM
1328 """WPA2-Enterprise connection using EAP-TTLS/MSCHAP - incorrect password"""
1329 skip_with_fips(dev[0])
82a8f5b5 1330 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1331 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1332 eap_connect(dev[0], hapd, "TTLS", "mschap user",
82a8f5b5
JM
1333 anonymous_identity="ttls", password="wrong",
1334 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
1335 expect_failure=True)
3b3e2687 1336 eap_connect(dev[1], hapd, "TTLS", "user",
82a8f5b5
JM
1337 anonymous_identity="ttls", password="password",
1338 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
1339 expect_failure=True)
3b3e2687 1340 eap_connect(dev[2], hapd, "TTLS", "no such user",
82a8f5b5
JM
1341 anonymous_identity="ttls", password="password",
1342 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
1343 expect_failure=True)
1344
9626962d
JM
1345def test_ap_wpa2_eap_ttls_mschapv2(dev, apdev):
1346 """WPA2-Enterprise connection using EAP-TTLS/MSCHAPv2"""
e78eb404 1347 check_domain_suffix_match(dev[0])
ca158ea6 1348 check_eap_capa(dev[0], "MSCHAPV2")
9626962d 1349 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
1350 hapd = hostapd.add_ap(apdev[0], params)
1351 eap_connect(dev[0], hapd, "TTLS", "DOMAIN\mschapv2 user",
9626962d 1352 anonymous_identity="ttls", password="password",
72c052d5 1353 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
24579e70 1354 domain_suffix_match="server.w1.fi")
a8375c94 1355 hwsim_utils.test_connectivity(dev[0], hapd)
5dec879d
JM
1356 sta1 = hapd.get_sta(dev[0].p2p_interface_addr())
1357 eapol1 = hapd.get_sta(dev[0].p2p_interface_addr(), info="eapol")
75b2b9cf 1358 eap_reauth(dev[0], "TTLS")
5dec879d
JM
1359 sta2 = hapd.get_sta(dev[0].p2p_interface_addr())
1360 eapol2 = hapd.get_sta(dev[0].p2p_interface_addr(), info="eapol")
1361 if int(sta2['dot1xAuthEapolFramesRx']) <= int(sta1['dot1xAuthEapolFramesRx']):
1362 raise Exception("dot1xAuthEapolFramesRx did not increase")
1363 if int(eapol2['authAuthEapStartsWhileAuthenticated']) < 1:
1364 raise Exception("authAuthEapStartsWhileAuthenticated did not increase")
1365 if int(eapol2['backendAuthSuccesses']) <= int(eapol1['backendAuthSuccesses']):
1366 raise Exception("backendAuthSuccesses did not increase")
9626962d 1367
fa0ddb14
JM
1368 logger.info("Password as hash value")
1369 dev[0].request("REMOVE_NETWORK all")
3b3e2687 1370 eap_connect(dev[0], hapd, "TTLS", "DOMAIN\mschapv2 user",
fa0ddb14
JM
1371 anonymous_identity="ttls",
1372 password_hex="hash:8846f7eaee8fb117ad06bdd830b7586c",
1373 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2")
1374
c4e06b9b
JM
1375def test_ap_wpa2_eap_ttls_invalid_phase2(dev, apdev):
1376 """EAP-TTLS with invalid phase2 parameter values"""
1377 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1378 hostapd.add_ap(apdev[0], params)
c4e06b9b 1379 tests = [ "auth=MSCHAPv2", "auth=MSCHAPV2 autheap=MD5",
53827125
JM
1380 "autheap=MD5 auth=MSCHAPV2", "auth=PAP auth=CHAP",
1381 "autheap=MD5 autheap=FOO autheap=MSCHAPV2" ]
c4e06b9b
JM
1382 for t in tests:
1383 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
1384 identity="DOMAIN\mschapv2 user",
1385 anonymous_identity="ttls", password="password",
1386 ca_cert="auth_serv/ca.pem", phase2=t,
1387 wait_connect=False, scan_freq="2412")
1388 ev = dev[0].wait_event(["CTRL-EVENT-EAP-PROPOSED-METHOD"], timeout=10)
1389 if ev is None or "method=21" not in ev:
1390 raise Exception("EAP-TTLS not started")
1391 ev = dev[0].wait_event(["EAP: Failed to initialize EAP method",
1392 "CTRL-EVENT-CONNECTED"], timeout=5)
1393 if ev is None or "CTRL-EVENT-CONNECTED" in ev:
1394 raise Exception("No EAP-TTLS failure reported for phase2=" + t)
1395 dev[0].request("REMOVE_NETWORK all")
1396 dev[0].wait_disconnected()
1397 dev[0].dump_monitor()
1398
24579e70
JM
1399def test_ap_wpa2_eap_ttls_mschapv2_suffix_match(dev, apdev):
1400 """WPA2-Enterprise connection using EAP-TTLS/MSCHAPv2"""
1401 check_domain_match_full(dev[0])
ca158ea6 1402 skip_with_fips(dev[0])
24579e70 1403 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
1404 hapd = hostapd.add_ap(apdev[0], params)
1405 eap_connect(dev[0], hapd, "TTLS", "DOMAIN\mschapv2 user",
24579e70
JM
1406 anonymous_identity="ttls", password="password",
1407 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
1408 domain_suffix_match="w1.fi")
1409 hwsim_utils.test_connectivity(dev[0], hapd)
1410 eap_reauth(dev[0], "TTLS")
1411
061cbb25
JM
1412def test_ap_wpa2_eap_ttls_mschapv2_domain_match(dev, apdev):
1413 """WPA2-Enterprise connection using EAP-TTLS/MSCHAPv2 (domain_match)"""
e78eb404 1414 check_domain_match(dev[0])
ca158ea6 1415 skip_with_fips(dev[0])
061cbb25 1416 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
1417 hapd = hostapd.add_ap(apdev[0], params)
1418 eap_connect(dev[0], hapd, "TTLS", "DOMAIN\mschapv2 user",
061cbb25
JM
1419 anonymous_identity="ttls", password="password",
1420 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
1421 domain_match="Server.w1.fi")
1422 hwsim_utils.test_connectivity(dev[0], hapd)
1423 eap_reauth(dev[0], "TTLS")
1424
82a8f5b5
JM
1425def test_ap_wpa2_eap_ttls_mschapv2_incorrect_password(dev, apdev):
1426 """WPA2-Enterprise connection using EAP-TTLS/MSCHAPv2 - incorrect password"""
ca158ea6 1427 skip_with_fips(dev[0])
82a8f5b5 1428 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1429 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1430 eap_connect(dev[0], hapd, "TTLS", "DOMAIN\mschapv2 user",
f10ba3b2
JM
1431 anonymous_identity="ttls", password="password1",
1432 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
1433 expect_failure=True)
3b3e2687 1434 eap_connect(dev[1], hapd, "TTLS", "user",
82a8f5b5
JM
1435 anonymous_identity="ttls", password="password",
1436 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
1437 expect_failure=True)
f10ba3b2 1438
eac67440
JM
1439def test_ap_wpa2_eap_ttls_mschapv2_utf8(dev, apdev):
1440 """WPA2-Enterprise connection using EAP-TTLS/MSCHAPv2 and UTF-8 password"""
ca158ea6 1441 skip_with_fips(dev[0])
eac67440 1442 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
1443 hapd = hostapd.add_ap(apdev[0], params)
1444 eap_connect(dev[0], hapd, "TTLS", "utf8-user-hash",
eac67440
JM
1445 anonymous_identity="ttls", password="secret-åäö-€-password",
1446 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2")
3b3e2687 1447 eap_connect(dev[1], hapd, "TTLS", "utf8-user",
eac67440
JM
1448 anonymous_identity="ttls",
1449 password_hex="hash:bd5844fad2489992da7fe8c5a01559cf",
1450 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2")
0d2a7bad
JM
1451 for p in [ "80", "41c041e04141e041", 257*"41" ]:
1452 dev[2].connect("test-wpa2-eap", key_mgmt="WPA-EAP",
1453 eap="TTLS", identity="utf8-user-hash",
1454 anonymous_identity="ttls", password_hex=p,
1455 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
1456 wait_connect=False, scan_freq="2412")
1457 ev = dev[2].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=1)
1458 if ev is None:
1459 raise Exception("No failure reported")
1460 dev[2].request("REMOVE_NETWORK all")
1461 dev[2].wait_disconnected()
eac67440 1462
9626962d
JM
1463def test_ap_wpa2_eap_ttls_eap_gtc(dev, apdev):
1464 """WPA2-Enterprise connection using EAP-TTLS/EAP-GTC"""
1465 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1466 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1467 eap_connect(dev[0], hapd, "TTLS", "user",
9626962d
JM
1468 anonymous_identity="ttls", password="password",
1469 ca_cert="auth_serv/ca.pem", phase2="autheap=GTC")
a8375c94 1470 hwsim_utils.test_connectivity(dev[0], hapd)
75b2b9cf 1471 eap_reauth(dev[0], "TTLS")
9626962d 1472
95a15d79
JM
1473def test_ap_wpa2_eap_ttls_eap_gtc_incorrect_password(dev, apdev):
1474 """WPA2-Enterprise connection using EAP-TTLS/EAP-GTC - incorrect password"""
1475 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1476 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1477 eap_connect(dev[0], hapd, "TTLS", "user",
95a15d79
JM
1478 anonymous_identity="ttls", password="wrong",
1479 ca_cert="auth_serv/ca.pem", phase2="autheap=GTC",
1480 expect_failure=True)
1481
1482def test_ap_wpa2_eap_ttls_eap_gtc_no_password(dev, apdev):
1483 """WPA2-Enterprise connection using EAP-TTLS/EAP-GTC - no password"""
1484 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1485 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1486 eap_connect(dev[0], hapd, "TTLS", "user-no-passwd",
95a15d79
JM
1487 anonymous_identity="ttls", password="password",
1488 ca_cert="auth_serv/ca.pem", phase2="autheap=GTC",
1489 expect_failure=True)
1490
1491def test_ap_wpa2_eap_ttls_eap_gtc_server_oom(dev, apdev):
1492 """WPA2-Enterprise connection using EAP-TTLS/EAP-GTC - server OOM"""
1493 params = int_eap_server_params()
8b8a1864 1494 hapd = hostapd.add_ap(apdev[0], params)
95a15d79 1495 with alloc_fail(hapd, 1, "eap_gtc_init"):
3b3e2687 1496 eap_connect(dev[0], hapd, "TTLS", "user",
95a15d79
JM
1497 anonymous_identity="ttls", password="password",
1498 ca_cert="auth_serv/ca.pem", phase2="autheap=GTC",
1499 expect_failure=True)
1500 dev[0].request("REMOVE_NETWORK all")
1501
1502 with alloc_fail(hapd, 1, "eap_gtc_buildReq"):
1503 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP WPA-EAP-SHA256",
1504 eap="TTLS", identity="user",
1505 anonymous_identity="ttls", password="password",
1506 ca_cert="auth_serv/ca.pem", phase2="autheap=GTC",
1507 wait_connect=False, scan_freq="2412")
1508 # This would eventually time out, but we can stop after having reached
1509 # the allocation failure.
1510 for i in range(20):
1511 time.sleep(0.1)
1512 if hapd.request("GET_ALLOC_FAIL").startswith('0'):
1513 break
1514
ac713c09
JM
1515def test_ap_wpa2_eap_ttls_eap_gtc_oom(dev, apdev):
1516 """WPA2-Enterprise connection using EAP-TTLS/EAP-GTC (OOM)"""
1517 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1518 hapd = hostapd.add_ap(apdev[0], params)
ac713c09
JM
1519
1520 tests = [ "eap_gtc_init",
1521 "eap_msg_alloc;eap_gtc_process" ]
1522 for func in tests:
1523 with alloc_fail(dev[0], 1, func):
1524 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP",
1525 scan_freq="2412",
1526 eap="TTLS", identity="user",
1527 anonymous_identity="ttls", password="password",
1528 ca_cert="auth_serv/ca.pem", phase2="autheap=GTC",
1529 wait_connect=False)
1530 wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
1531 dev[0].request("REMOVE_NETWORK all")
1532 dev[0].wait_disconnected()
1533
9626962d
JM
1534def test_ap_wpa2_eap_ttls_eap_md5(dev, apdev):
1535 """WPA2-Enterprise connection using EAP-TTLS/EAP-MD5"""
e7ac04ce 1536 check_eap_capa(dev[0], "MD5")
9626962d 1537 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1538 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1539 eap_connect(dev[0], hapd, "TTLS", "user",
9626962d
JM
1540 anonymous_identity="ttls", password="password",
1541 ca_cert="auth_serv/ca.pem", phase2="autheap=MD5")
a8375c94 1542 hwsim_utils.test_connectivity(dev[0], hapd)
75b2b9cf 1543 eap_reauth(dev[0], "TTLS")
9626962d 1544
ee9533eb
JM
1545def test_ap_wpa2_eap_ttls_eap_md5_incorrect_password(dev, apdev):
1546 """WPA2-Enterprise connection using EAP-TTLS/EAP-MD5 - incorrect password"""
e7ac04ce 1547 check_eap_capa(dev[0], "MD5")
ee9533eb 1548 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1549 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1550 eap_connect(dev[0], hapd, "TTLS", "user",
ee9533eb
JM
1551 anonymous_identity="ttls", password="wrong",
1552 ca_cert="auth_serv/ca.pem", phase2="autheap=MD5",
1553 expect_failure=True)
1554
95a15d79
JM
1555def test_ap_wpa2_eap_ttls_eap_md5_no_password(dev, apdev):
1556 """WPA2-Enterprise connection using EAP-TTLS/EAP-MD5 - no password"""
e7ac04ce 1557 check_eap_capa(dev[0], "MD5")
95a15d79 1558 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1559 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1560 eap_connect(dev[0], hapd, "TTLS", "user-no-passwd",
95a15d79
JM
1561 anonymous_identity="ttls", password="password",
1562 ca_cert="auth_serv/ca.pem", phase2="autheap=MD5",
1563 expect_failure=True)
1564
ee9533eb
JM
1565def test_ap_wpa2_eap_ttls_eap_md5_server_oom(dev, apdev):
1566 """WPA2-Enterprise connection using EAP-TTLS/EAP-MD5 - server OOM"""
e7ac04ce 1567 check_eap_capa(dev[0], "MD5")
ee9533eb 1568 params = int_eap_server_params()
8b8a1864 1569 hapd = hostapd.add_ap(apdev[0], params)
ee9533eb 1570 with alloc_fail(hapd, 1, "eap_md5_init"):
3b3e2687 1571 eap_connect(dev[0], hapd, "TTLS", "user",
ee9533eb
JM
1572 anonymous_identity="ttls", password="password",
1573 ca_cert="auth_serv/ca.pem", phase2="autheap=MD5",
1574 expect_failure=True)
1575 dev[0].request("REMOVE_NETWORK all")
1576
1577 with alloc_fail(hapd, 1, "eap_md5_buildReq"):
1578 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP WPA-EAP-SHA256",
1579 eap="TTLS", identity="user",
1580 anonymous_identity="ttls", password="password",
1581 ca_cert="auth_serv/ca.pem", phase2="autheap=MD5",
1582 wait_connect=False, scan_freq="2412")
1583 # This would eventually time out, but we can stop after having reached
1584 # the allocation failure.
1585 for i in range(20):
1586 time.sleep(0.1)
1587 if hapd.request("GET_ALLOC_FAIL").startswith('0'):
1588 break
1589
9626962d
JM
1590def test_ap_wpa2_eap_ttls_eap_mschapv2(dev, apdev):
1591 """WPA2-Enterprise connection using EAP-TTLS/EAP-MSCHAPv2"""
e7ac04ce 1592 check_eap_capa(dev[0], "MSCHAPV2")
9626962d 1593 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1594 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1595 eap_connect(dev[0], hapd, "TTLS", "user",
9626962d
JM
1596 anonymous_identity="ttls", password="password",
1597 ca_cert="auth_serv/ca.pem", phase2="autheap=MSCHAPV2")
a8375c94 1598 hwsim_utils.test_connectivity(dev[0], hapd)
75b2b9cf 1599 eap_reauth(dev[0], "TTLS")
9626962d 1600
f10ba3b2
JM
1601 logger.info("Negative test with incorrect password")
1602 dev[0].request("REMOVE_NETWORK all")
3b3e2687 1603 eap_connect(dev[0], hapd, "TTLS", "user",
f10ba3b2
JM
1604 anonymous_identity="ttls", password="password1",
1605 ca_cert="auth_serv/ca.pem", phase2="autheap=MSCHAPV2",
1606 expect_failure=True)
1607
95a15d79
JM
1608def test_ap_wpa2_eap_ttls_eap_mschapv2_no_password(dev, apdev):
1609 """WPA2-Enterprise connection using EAP-TTLS/EAP-MSCHAPv2 - no password"""
e7ac04ce 1610 check_eap_capa(dev[0], "MSCHAPV2")
95a15d79 1611 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1612 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1613 eap_connect(dev[0], hapd, "TTLS", "user-no-passwd",
95a15d79
JM
1614 anonymous_identity="ttls", password="password",
1615 ca_cert="auth_serv/ca.pem", phase2="autheap=MSCHAPV2",
1616 expect_failure=True)
1617
ef318402
JM
1618def test_ap_wpa2_eap_ttls_eap_mschapv2_server_oom(dev, apdev):
1619 """WPA2-Enterprise connection using EAP-TTLS/EAP-MSCHAPv2 - server OOM"""
e7ac04ce 1620 check_eap_capa(dev[0], "MSCHAPV2")
ef318402 1621 params = int_eap_server_params()
8b8a1864 1622 hapd = hostapd.add_ap(apdev[0], params)
ef318402 1623 with alloc_fail(hapd, 1, "eap_mschapv2_init"):
3b3e2687 1624 eap_connect(dev[0], hapd, "TTLS", "user",
ef318402
JM
1625 anonymous_identity="ttls", password="password",
1626 ca_cert="auth_serv/ca.pem", phase2="autheap=MSCHAPV2",
1627 expect_failure=True)
1628 dev[0].request("REMOVE_NETWORK all")
1629
1630 with alloc_fail(hapd, 1, "eap_mschapv2_build_challenge"):
1631 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP WPA-EAP-SHA256",
1632 eap="TTLS", identity="user",
1633 anonymous_identity="ttls", password="password",
1634 ca_cert="auth_serv/ca.pem", phase2="autheap=MSCHAPV2",
1635 wait_connect=False, scan_freq="2412")
1636 # This would eventually time out, but we can stop after having reached
1637 # the allocation failure.
1638 for i in range(20):
1639 time.sleep(0.1)
1640 if hapd.request("GET_ALLOC_FAIL").startswith('0'):
1641 break
1642 dev[0].request("REMOVE_NETWORK all")
1643
1644 with alloc_fail(hapd, 1, "eap_mschapv2_build_success_req"):
1645 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP WPA-EAP-SHA256",
1646 eap="TTLS", identity="user",
1647 anonymous_identity="ttls", password="password",
1648 ca_cert="auth_serv/ca.pem", phase2="autheap=MSCHAPV2",
1649 wait_connect=False, scan_freq="2412")
1650 # This would eventually time out, but we can stop after having reached
1651 # the allocation failure.
1652 for i in range(20):
1653 time.sleep(0.1)
1654 if hapd.request("GET_ALLOC_FAIL").startswith('0'):
1655 break
1656 dev[0].request("REMOVE_NETWORK all")
1657
1658 with alloc_fail(hapd, 1, "eap_mschapv2_build_failure_req"):
1659 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP WPA-EAP-SHA256",
1660 eap="TTLS", identity="user",
1661 anonymous_identity="ttls", password="wrong",
1662 ca_cert="auth_serv/ca.pem", phase2="autheap=MSCHAPV2",
1663 wait_connect=False, scan_freq="2412")
1664 # This would eventually time out, but we can stop after having reached
1665 # the allocation failure.
1666 for i in range(20):
1667 time.sleep(0.1)
1668 if hapd.request("GET_ALLOC_FAIL").startswith('0'):
1669 break
1670 dev[0].request("REMOVE_NETWORK all")
1671
f22bc118
JM
1672def test_ap_wpa2_eap_ttls_eap_sim(dev, apdev):
1673 """WPA2-Enterprise connection using EAP-TTLS/EAP-SIM"""
1674 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
1675 hapd = hostapd.add_ap(apdev[0], params)
1676 eap_connect(dev[0], hapd, "TTLS", "1232010000000000",
1677 anonymous_identity="1232010000000000@ttls",
1678 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581",
1679 ca_cert="auth_serv/ca.pem", phase2="autheap=SIM")
1680 eap_reauth(dev[0], "TTLS")
1681
1682def run_ext_sim_auth(dev):
1683 ev = dev.wait_event(["CTRL-REQ-SIM"], timeout=15)
1684 if ev is None:
1685 raise Exception("Wait for external SIM processing request timed out")
1686 p = ev.split(':', 2)
1687 if p[1] != "GSM-AUTH":
1688 raise Exception("Unexpected CTRL-REQ-SIM type")
1689 rid = p[0].split('-')[3]
1690 rand = p[2].split(' ')[0]
1691
1692 res = subprocess.check_output(["../../hostapd/hlr_auc_gw",
1693 "-m",
1694 "auth_serv/hlr_auc_gw.milenage_db",
1695 "GSM-AUTH-REQ 232010000000000 " + rand])
1696 if "GSM-AUTH-RESP" not in res:
1697 raise Exception("Unexpected hlr_auc_gw response")
1698 resp = res.split(' ')[2].rstrip()
1699
1700 dev.request("CTRL-RSP-SIM-" + rid + ":GSM-AUTH:" + resp)
1701 dev.wait_connected(timeout=15)
1702
1703 dev.dump_monitor()
1704 dev.request("REAUTHENTICATE")
1705 ev = dev.wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=5)
1706 if ev is None:
1707 raise Exception("EAP reauthentication did not succeed")
1708 ev = dev.wait_event(["WPA: Key negotiation completed"], timeout=5)
1709 if ev is None:
1710 raise Exception("Key negotiation did not complete")
1711 dev.dump_monitor()
1712
1713def test_ap_wpa2_eap_ttls_eap_sim_ext(dev, apdev):
1714 """WPA2-Enterprise connection using EAP-TTLS/EAP-SIM and external GSM auth"""
1715 check_hlr_auc_gw_support()
1716 try:
1717 run_ap_wpa2_eap_ttls_eap_sim_ext(dev, apdev)
1718 finally:
1719 dev[0].request("SET external_sim 0")
1720
1721def run_ap_wpa2_eap_ttls_eap_sim_ext(dev, apdev):
1722 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
1723 hapd = hostapd.add_ap(apdev[0], params)
1724 dev[0].request("SET external_sim 1")
1725 dev[0].connect("test-wpa2-eap", eap="TTLS", key_mgmt="WPA-EAP",
1726 identity="1232010000000000",
1727 anonymous_identity="1232010000000000@ttls",
1728 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581",
1729 ca_cert="auth_serv/ca.pem", phase2="autheap=SIM",
1730 wait_connect=False, scan_freq="2412")
1731 run_ext_sim_auth(dev[0])
1732
1733def test_ap_wpa2_eap_peap_eap_sim(dev, apdev):
1734 """WPA2-Enterprise connection using EAP-PEAP/EAP-SIM"""
1735 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
1736 hapd = hostapd.add_ap(apdev[0], params)
1737 eap_connect(dev[0], hapd, "PEAP", "1232010000000000",
1738 anonymous_identity="1232010000000000@peap",
1739 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581",
1740 ca_cert="auth_serv/ca.pem", phase2="auth=SIM")
1741 eap_reauth(dev[0], "PEAP")
1742
1743def test_ap_wpa2_eap_peap_eap_sim_ext(dev, apdev):
1744 """WPA2-Enterprise connection using EAP-PEAP/EAP-SIM and external GSM auth"""
1745 check_hlr_auc_gw_support()
1746 try:
1747 run_ap_wpa2_eap_peap_eap_sim_ext(dev, apdev)
1748 finally:
1749 dev[0].request("SET external_sim 0")
1750
1751def run_ap_wpa2_eap_peap_eap_sim_ext(dev, apdev):
1752 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
1753 hapd = hostapd.add_ap(apdev[0], params)
1754 dev[0].request("SET external_sim 1")
1755 dev[0].connect("test-wpa2-eap", eap="PEAP", key_mgmt="WPA-EAP",
1756 identity="1232010000000000",
1757 anonymous_identity="1232010000000000@peap",
1758 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581",
1759 ca_cert="auth_serv/ca.pem", phase2="auth=SIM",
1760 wait_connect=False, scan_freq="2412")
1761 run_ext_sim_auth(dev[0])
1762
1763def test_ap_wpa2_eap_fast_eap_sim(dev, apdev):
1764 """WPA2-Enterprise connection using EAP-FAST/EAP-SIM"""
9626bfbb 1765 check_eap_capa(dev[0], "FAST")
f22bc118
JM
1766 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
1767 hapd = hostapd.add_ap(apdev[0], params)
1768 eap_connect(dev[0], hapd, "FAST", "1232010000000000",
1769 anonymous_identity="1232010000000000@fast",
1770 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581",
1771 phase1="fast_provisioning=2",
1772 pac_file="blob://fast_pac_auth_sim",
1773 ca_cert="auth_serv/ca.pem", phase2="auth=SIM")
1774 eap_reauth(dev[0], "FAST")
1775
1776def test_ap_wpa2_eap_fast_eap_sim_ext(dev, apdev):
1777 """WPA2-Enterprise connection using EAP-FAST/EAP-SIM and external GSM auth"""
1778 check_hlr_auc_gw_support()
1779 try:
1780 run_ap_wpa2_eap_fast_eap_sim_ext(dev, apdev)
1781 finally:
1782 dev[0].request("SET external_sim 0")
1783
1784def run_ap_wpa2_eap_fast_eap_sim_ext(dev, apdev):
1785 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
1786 hapd = hostapd.add_ap(apdev[0], params)
1787 dev[0].request("SET external_sim 1")
1788 dev[0].connect("test-wpa2-eap", eap="PEAP", key_mgmt="WPA-EAP",
1789 identity="1232010000000000",
1790 anonymous_identity="1232010000000000@peap",
1791 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581",
1792 phase1="fast_provisioning=2",
1793 pac_file="blob://fast_pac_auth_sim",
1794 ca_cert="auth_serv/ca.pem", phase2="auth=SIM",
1795 wait_connect=False, scan_freq="2412")
1796 run_ext_sim_auth(dev[0])
1797
95fb531c
JM
1798def test_ap_wpa2_eap_ttls_eap_aka(dev, apdev):
1799 """WPA2-Enterprise connection using EAP-TTLS/EAP-AKA"""
1800 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
1801 hapd = hostapd.add_ap(apdev[0], params)
1802 eap_connect(dev[0], hapd, "TTLS", "0232010000000000",
95fb531c
JM
1803 anonymous_identity="0232010000000000@ttls",
1804 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581:000000000123",
1805 ca_cert="auth_serv/ca.pem", phase2="autheap=AKA")
8a303f09 1806 eap_reauth(dev[0], "TTLS")
95fb531c
JM
1807
1808def test_ap_wpa2_eap_peap_eap_aka(dev, apdev):
1809 """WPA2-Enterprise connection using EAP-PEAP/EAP-AKA"""
1810 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
1811 hapd = hostapd.add_ap(apdev[0], params)
1812 eap_connect(dev[0], hapd, "PEAP", "0232010000000000",
95fb531c
JM
1813 anonymous_identity="0232010000000000@peap",
1814 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581:000000000123",
1815 ca_cert="auth_serv/ca.pem", phase2="auth=AKA")
8a303f09 1816 eap_reauth(dev[0], "PEAP")
95fb531c
JM
1817
1818def test_ap_wpa2_eap_fast_eap_aka(dev, apdev):
1819 """WPA2-Enterprise connection using EAP-FAST/EAP-AKA"""
3b51cc63 1820 check_eap_capa(dev[0], "FAST")
95fb531c 1821 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
1822 hapd = hostapd.add_ap(apdev[0], params)
1823 eap_connect(dev[0], hapd, "FAST", "0232010000000000",
95fb531c
JM
1824 anonymous_identity="0232010000000000@fast",
1825 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581:000000000123",
1826 phase1="fast_provisioning=2",
1827 pac_file="blob://fast_pac_auth_aka",
1828 ca_cert="auth_serv/ca.pem", phase2="auth=AKA")
8a303f09 1829 eap_reauth(dev[0], "FAST")
95fb531c 1830
9626962d
JM
1831def test_ap_wpa2_eap_peap_eap_mschapv2(dev, apdev):
1832 """WPA2-Enterprise connection using EAP-PEAP/EAP-MSCHAPv2"""
e7ac04ce 1833 check_eap_capa(dev[0], "MSCHAPV2")
9626962d 1834 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1835 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1836 eap_connect(dev[0], hapd, "PEAP", "user",
698f8324 1837 anonymous_identity="peap", password="password",
9626962d 1838 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2")
a8375c94 1839 hwsim_utils.test_connectivity(dev[0], hapd)
75b2b9cf 1840 eap_reauth(dev[0], "PEAP")
6daf5b9c 1841 dev[0].request("REMOVE_NETWORK all")
3b3e2687 1842 eap_connect(dev[0], hapd, "PEAP", "user",
6daf5b9c
JM
1843 anonymous_identity="peap", password="password",
1844 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
1845 fragment_size="200")
c7afc078 1846
fa0ddb14
JM
1847 logger.info("Password as hash value")
1848 dev[0].request("REMOVE_NETWORK all")
3b3e2687 1849 eap_connect(dev[0], hapd, "PEAP", "user",
fa0ddb14
JM
1850 anonymous_identity="peap",
1851 password_hex="hash:8846f7eaee8fb117ad06bdd830b7586c",
1852 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2")
1853
f10ba3b2
JM
1854 logger.info("Negative test with incorrect password")
1855 dev[0].request("REMOVE_NETWORK all")
3b3e2687 1856 eap_connect(dev[0], hapd, "PEAP", "user",
f10ba3b2
JM
1857 anonymous_identity="peap", password="password1",
1858 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
1859 expect_failure=True)
1860
0d33f504
JM
1861def test_ap_wpa2_eap_peap_eap_mschapv2_domain(dev, apdev):
1862 """WPA2-Enterprise connection using EAP-PEAP/EAP-MSCHAPv2 with domain"""
e7ac04ce 1863 check_eap_capa(dev[0], "MSCHAPV2")
0d33f504 1864 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1865 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1866 eap_connect(dev[0], hapd, "PEAP", "DOMAIN\user3",
0d33f504
JM
1867 anonymous_identity="peap", password="password",
1868 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2")
1869 hwsim_utils.test_connectivity(dev[0], hapd)
1870 eap_reauth(dev[0], "PEAP")
1871
f4cd0f64
JM
1872def test_ap_wpa2_eap_peap_eap_mschapv2_incorrect_password(dev, apdev):
1873 """WPA2-Enterprise connection using EAP-PEAP/EAP-MSCHAPv2 - incorrect password"""
e7ac04ce 1874 check_eap_capa(dev[0], "MSCHAPV2")
f4cd0f64 1875 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1876 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1877 eap_connect(dev[0], hapd, "PEAP", "user",
f4cd0f64
JM
1878 anonymous_identity="peap", password="wrong",
1879 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
1880 expect_failure=True)
1881
698f8324
JM
1882def test_ap_wpa2_eap_peap_crypto_binding(dev, apdev):
1883 """WPA2-Enterprise connection using EAP-PEAPv0/EAP-MSCHAPv2 and crypto binding"""
e7ac04ce 1884 check_eap_capa(dev[0], "MSCHAPV2")
698f8324 1885 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 1886 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 1887 eap_connect(dev[0], hapd, "PEAP", "user", password="password",
698f8324
JM
1888 ca_cert="auth_serv/ca.pem",
1889 phase1="peapver=0 crypto_binding=2",
1890 phase2="auth=MSCHAPV2")
a8375c94 1891 hwsim_utils.test_connectivity(dev[0], hapd)
75b2b9cf 1892 eap_reauth(dev[0], "PEAP")
698f8324 1893
3b3e2687 1894 eap_connect(dev[1], hapd, "PEAP", "user", password="password",
ea6464b0
JM
1895 ca_cert="auth_serv/ca.pem",
1896 phase1="peapver=0 crypto_binding=1",
1897 phase2="auth=MSCHAPV2")
3b3e2687 1898 eap_connect(dev[2], hapd, "PEAP", "user", password="password",
ea6464b0
JM
1899 ca_cert="auth_serv/ca.pem",
1900 phase1="peapver=0 crypto_binding=0",
1901 phase2="auth=MSCHAPV2")
1902
ef318402
JM
1903def test_ap_wpa2_eap_peap_crypto_binding_server_oom(dev, apdev):
1904 """WPA2-Enterprise connection using EAP-PEAPv0/EAP-MSCHAPv2 and crypto binding with server OOM"""
e7ac04ce 1905 check_eap_capa(dev[0], "MSCHAPV2")
ef318402 1906 params = int_eap_server_params()
8b8a1864 1907 hapd = hostapd.add_ap(apdev[0], params)
ef318402 1908 with alloc_fail(hapd, 1, "eap_mschapv2_getKey"):
3b3e2687 1909 eap_connect(dev[0], hapd, "PEAP", "user", password="password",
ef318402
JM
1910 ca_cert="auth_serv/ca.pem",
1911 phase1="peapver=0 crypto_binding=2",
1912 phase2="auth=MSCHAPV2",
1913 expect_failure=True, local_error_report=True)
1914
c4d37011
JM
1915def test_ap_wpa2_eap_peap_params(dev, apdev):
1916 """WPA2-Enterprise connection using EAP-PEAPv0/EAP-MSCHAPv2 and various parameters"""
e7ac04ce 1917 check_eap_capa(dev[0], "MSCHAPV2")
c4d37011 1918 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
1919 hapd = hostapd.add_ap(apdev[0], params)
1920 eap_connect(dev[0], hapd, "PEAP", "user",
c4d37011
JM
1921 anonymous_identity="peap", password="password",
1922 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
1923 phase1="peapver=0 peaplabel=1",
1924 expect_failure=True)
1925 dev[0].request("REMOVE_NETWORK all")
09ad98c5
JM
1926 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="PEAP",
1927 identity="user",
1928 anonymous_identity="peap", password="password",
1929 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
1930 phase1="peap_outer_success=0",
1931 wait_connect=False, scan_freq="2412")
1932 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=15)
1933 if ev is None:
1934 raise Exception("No EAP success seen")
1935 # This won't succeed to connect with peap_outer_success=0, so stop here.
1936 dev[0].request("REMOVE_NETWORK all")
1937 dev[0].wait_disconnected()
3b3e2687 1938 eap_connect(dev[1], hapd, "PEAP", "user", password="password",
c4d37011
JM
1939 ca_cert="auth_serv/ca.pem",
1940 phase1="peap_outer_success=1",
1941 phase2="auth=MSCHAPV2")
3b3e2687 1942 eap_connect(dev[2], hapd, "PEAP", "user", password="password",
c4d37011
JM
1943 ca_cert="auth_serv/ca.pem",
1944 phase1="peap_outer_success=2",
1945 phase2="auth=MSCHAPV2")
1946 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="PEAP",
1947 identity="user",
1948 anonymous_identity="peap", password="password",
1949 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
1950 phase1="peapver=1 peaplabel=1",
1951 wait_connect=False, scan_freq="2412")
1952 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=15)
1953 if ev is None:
1954 raise Exception("No EAP success seen")
1955 ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
1956 if ev is not None:
1957 raise Exception("Unexpected connection")
1958
09a4404a
JM
1959 tests = [ ("peap-ver0", ""),
1960 ("peap-ver1", ""),
1961 ("peap-ver0", "peapver=0"),
1962 ("peap-ver1", "peapver=1") ]
1963 for anon,phase1 in tests:
1964 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="PEAP",
1965 identity="user", anonymous_identity=anon,
1966 password="password", phase1=phase1,
1967 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
1968 scan_freq="2412")
1969 dev[0].request("REMOVE_NETWORK all")
1970 dev[0].wait_disconnected()
1971
1972 tests = [ ("peap-ver0", "peapver=1"),
1973 ("peap-ver1", "peapver=0") ]
1974 for anon,phase1 in tests:
1975 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="PEAP",
1976 identity="user", anonymous_identity=anon,
1977 password="password", phase1=phase1,
1978 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
1979 wait_connect=False, scan_freq="2412")
1980 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=15)
1981 if ev is None:
1982 raise Exception("No EAP-Failure seen")
1983 dev[0].request("REMOVE_NETWORK all")
1984 dev[0].wait_disconnected()
1985
3b3e2687 1986 eap_connect(dev[0], hapd, "PEAP", "user", password="password",
d5f5d260
JM
1987 ca_cert="auth_serv/ca.pem",
1988 phase1="tls_allow_md5=1 tls_disable_session_ticket=1 tls_disable_tlsv1_0=0 tls_disable_tlsv1_1=0 tls_disable_tlsv1_2=0 tls_ext_cert_check=0",
1989 phase2="auth=MSCHAPV2")
1990
d0ce1050
JM
1991def test_ap_wpa2_eap_peap_eap_tls(dev, apdev):
1992 """WPA2-Enterprise connection using EAP-PEAP/EAP-TLS"""
1993 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
1994 hapd = hostapd.add_ap(apdev[0], params)
1995 eap_connect(dev[0], hapd, "PEAP", "cert user",
d0ce1050
JM
1996 ca_cert="auth_serv/ca.pem", phase2="auth=TLS",
1997 ca_cert2="auth_serv/ca.pem",
1998 client_cert2="auth_serv/user.pem",
1999 private_key2="auth_serv/user.key")
2000 eap_reauth(dev[0], "PEAP")
2001
e114c49c
JM
2002def test_ap_wpa2_eap_tls(dev, apdev):
2003 """WPA2-Enterprise connection using EAP-TLS"""
2004 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
2005 hapd = hostapd.add_ap(apdev[0], params)
2006 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
e114c49c
JM
2007 client_cert="auth_serv/user.pem",
2008 private_key="auth_serv/user.key")
75b2b9cf 2009 eap_reauth(dev[0], "TLS")
e114c49c 2010
96bf8fe1
JM
2011def test_eap_tls_pkcs8_pkcs5_v2_des3(dev, apdev):
2012 """WPA2-Enterprise connection using EAP-TLS and PKCS #8, PKCS #5 v2 DES3 key"""
2013 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
2014 hapd = hostapd.add_ap(apdev[0], params)
2015 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
96bf8fe1
JM
2016 client_cert="auth_serv/user.pem",
2017 private_key="auth_serv/user.key.pkcs8",
2018 private_key_passwd="whatever")
2019
2020def test_eap_tls_pkcs8_pkcs5_v15(dev, apdev):
2021 """WPA2-Enterprise connection using EAP-TLS and PKCS #8, PKCS #5 v1.5 key"""
969e5250 2022 check_pkcs5_v15_support(dev[0])
96bf8fe1 2023 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
2024 hapd = hostapd.add_ap(apdev[0], params)
2025 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
96bf8fe1
JM
2026 client_cert="auth_serv/user.pem",
2027 private_key="auth_serv/user.key.pkcs8.pkcs5v15",
2028 private_key_passwd="whatever")
2029
6ea231e6
JM
2030def test_ap_wpa2_eap_tls_blob(dev, apdev):
2031 """WPA2-Enterprise connection using EAP-TLS and config blobs"""
2032 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687 2033 hapd = hostapd.add_ap(apdev[0], params)
6ea231e6
JM
2034 cert = read_pem("auth_serv/ca.pem")
2035 if "OK" not in dev[0].request("SET blob cacert " + cert.encode("hex")):
2036 raise Exception("Could not set cacert blob")
2037 cert = read_pem("auth_serv/user.pem")
2038 if "OK" not in dev[0].request("SET blob usercert " + cert.encode("hex")):
2039 raise Exception("Could not set usercert blob")
62750c3e 2040 key = read_pem("auth_serv/user.rsa-key")
6ea231e6
JM
2041 if "OK" not in dev[0].request("SET blob userkey " + key.encode("hex")):
2042 raise Exception("Could not set cacert blob")
3b3e2687 2043 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="blob://cacert",
6ea231e6
JM
2044 client_cert="blob://usercert",
2045 private_key="blob://userkey")
2046
cef42a44
JM
2047def test_ap_wpa2_eap_tls_blob_missing(dev, apdev):
2048 """EAP-TLS and config blob missing"""
2049 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 2050 hostapd.add_ap(apdev[0], params)
cef42a44
JM
2051 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
2052 identity="tls user",
2053 ca_cert="blob://testing-blob-does-not-exist",
2054 client_cert="blob://testing-blob-does-not-exist",
2055 private_key="blob://testing-blob-does-not-exist",
2056 wait_connect=False, scan_freq="2412")
2057 ev = dev[0].wait_event(["EAP: Failed to initialize EAP method"], timeout=10)
2058 if ev is None:
2059 raise Exception("EAP failure not reported")
2060 dev[0].request("REMOVE_NETWORK all")
2061 dev[0].wait_disconnected()
2062
7cb27f89
JM
2063def test_ap_wpa2_eap_tls_with_tls_len(dev, apdev):
2064 """EAP-TLS and TLS Message Length in unfragmented packets"""
2065 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
2066 hapd = hostapd.add_ap(apdev[0], params)
2067 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
7cb27f89
JM
2068 phase1="include_tls_length=1",
2069 client_cert="auth_serv/user.pem",
2070 private_key="auth_serv/user.key")
2071
2d10eb0e
JM
2072def test_ap_wpa2_eap_tls_pkcs12(dev, apdev):
2073 """WPA2-Enterprise connection using EAP-TLS and PKCS#12"""
686eee77 2074 check_pkcs12_support(dev[0])
2d10eb0e 2075 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
2076 hapd = hostapd.add_ap(apdev[0], params)
2077 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
2d10eb0e
JM
2078 private_key="auth_serv/user.pkcs12",
2079 private_key_passwd="whatever")
2080 dev[0].request("REMOVE_NETWORK all")
0c83ae04
JM
2081 dev[0].wait_disconnected()
2082
2d10eb0e
JM
2083 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
2084 identity="tls user",
2085 ca_cert="auth_serv/ca.pem",
2086 private_key="auth_serv/user.pkcs12",
2087 wait_connect=False, scan_freq="2412")
2088 ev = dev[0].wait_event(["CTRL-REQ-PASSPHRASE"])
2089 if ev is None:
2090 raise Exception("Request for private key passphrase timed out")
2091 id = ev.split(':')[0].split('-')[-1]
2092 dev[0].request("CTRL-RSP-PASSPHRASE-" + id + ":whatever")
5f35a5e2 2093 dev[0].wait_connected(timeout=10)
0c83ae04
JM
2094 dev[0].request("REMOVE_NETWORK all")
2095 dev[0].wait_disconnected()
2096
6da3b745
JM
2097 # Run this twice to verify certificate chain handling with OpenSSL. Use two
2098 # different files to cover both cases of the extra certificate being the
2099 # one that signed the client certificate and it being unrelated to the
2100 # client certificate.
2101 for pkcs12 in "auth_serv/user2.pkcs12", "auth_serv/user3.pkcs12":
2102 for i in range(2):
3b3e2687 2103 eap_connect(dev[0], hapd, "TLS", "tls user",
6da3b745
JM
2104 ca_cert="auth_serv/ca.pem",
2105 private_key=pkcs12,
2106 private_key_passwd="whatever")
2107 dev[0].request("REMOVE_NETWORK all")
2108 dev[0].wait_disconnected()
2d10eb0e 2109
6ea231e6
JM
2110def test_ap_wpa2_eap_tls_pkcs12_blob(dev, apdev):
2111 """WPA2-Enterprise connection using EAP-TLS and PKCS#12 from configuration blob"""
686eee77 2112 check_pkcs12_support(dev[0])
6ea231e6 2113 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687 2114 hapd = hostapd.add_ap(apdev[0], params)
6ea231e6
JM
2115 cert = read_pem("auth_serv/ca.pem")
2116 if "OK" not in dev[0].request("SET blob cacert " + cert.encode("hex")):
2117 raise Exception("Could not set cacert blob")
2118 with open("auth_serv/user.pkcs12", "rb") as f:
2119 if "OK" not in dev[0].request("SET blob pkcs12 " + f.read().encode("hex")):
2120 raise Exception("Could not set pkcs12 blob")
3b3e2687 2121 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="blob://cacert",
6ea231e6
JM
2122 private_key="blob://pkcs12",
2123 private_key_passwd="whatever")
2124
c7afc078
JM
2125def test_ap_wpa2_eap_tls_neg_incorrect_trust_root(dev, apdev):
2126 """WPA2-Enterprise negative test - incorrect trust root"""
e7ac04ce 2127 check_eap_capa(dev[0], "MSCHAPV2")
c7afc078 2128 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 2129 hostapd.add_ap(apdev[0], params)
6ea231e6
JM
2130 cert = read_pem("auth_serv/ca-incorrect.pem")
2131 if "OK" not in dev[0].request("SET blob cacert " + cert.encode("hex")):
2132 raise Exception("Could not set cacert blob")
c7afc078 2133 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
6ea231e6
JM
2134 identity="DOMAIN\mschapv2 user", anonymous_identity="ttls",
2135 password="password", phase2="auth=MSCHAPV2",
2136 ca_cert="blob://cacert",
2137 wait_connect=False, scan_freq="2412")
2138 dev[1].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
c7afc078
JM
2139 identity="DOMAIN\mschapv2 user", anonymous_identity="ttls",
2140 password="password", phase2="auth=MSCHAPV2",
2141 ca_cert="auth_serv/ca-incorrect.pem",
c65f23ab 2142 wait_connect=False, scan_freq="2412")
c7afc078 2143
6ea231e6 2144 for dev in (dev[0], dev[1]):
412c6030 2145 ev = dev.wait_event(["CTRL-EVENT-EAP-STARTED"], timeout=16)
6ea231e6
JM
2146 if ev is None:
2147 raise Exception("Association and EAP start timed out")
c7afc078 2148
6ea231e6
JM
2149 ev = dev.wait_event(["CTRL-EVENT-EAP-METHOD"], timeout=10)
2150 if ev is None:
2151 raise Exception("EAP method selection timed out")
2152 if "TTLS" not in ev:
2153 raise Exception("Unexpected EAP method")
2154
2155 ev = dev.wait_event(["CTRL-EVENT-EAP-TLS-CERT-ERROR",
2156 "CTRL-EVENT-EAP-SUCCESS",
2157 "CTRL-EVENT-EAP-FAILURE",
2158 "CTRL-EVENT-CONNECTED",
2159 "CTRL-EVENT-DISCONNECTED"], timeout=10)
2160 if ev is None:
2161 raise Exception("EAP result timed out")
2162 if "CTRL-EVENT-EAP-TLS-CERT-ERROR" not in ev:
2163 raise Exception("TLS certificate error not reported")
2164
2165 ev = dev.wait_event(["CTRL-EVENT-EAP-SUCCESS",
2166 "CTRL-EVENT-EAP-FAILURE",
2167 "CTRL-EVENT-CONNECTED",
2168 "CTRL-EVENT-DISCONNECTED"], timeout=10)
2169 if ev is None:
2170 raise Exception("EAP result(2) timed out")
2171 if "CTRL-EVENT-EAP-FAILURE" not in ev:
2172 raise Exception("EAP failure not reported")
c7afc078 2173
6ea231e6
JM
2174 ev = dev.wait_event(["CTRL-EVENT-CONNECTED",
2175 "CTRL-EVENT-DISCONNECTED"], timeout=10)
2176 if ev is None:
2177 raise Exception("EAP result(3) timed out")
2178 if "CTRL-EVENT-DISCONNECTED" not in ev:
2179 raise Exception("Disconnection not reported")
c7afc078 2180
6ea231e6
JM
2181 ev = dev.wait_event(["CTRL-EVENT-SSID-TEMP-DISABLED"], timeout=10)
2182 if ev is None:
2183 raise Exception("Network block disabling not reported")
72c052d5 2184
9a5cfd70
JM
2185def test_ap_wpa2_eap_tls_diff_ca_trust(dev, apdev):
2186 """WPA2-Enterprise connection using EAP-TTLS/PAP and different CA trust"""
2187 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 2188 hapd = hostapd.add_ap(apdev[0], params)
9a5cfd70
JM
2189 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
2190 identity="pap user", anonymous_identity="ttls",
2191 password="password", phase2="auth=PAP",
2192 ca_cert="auth_serv/ca.pem",
2193 wait_connect=True, scan_freq="2412")
2194 id = dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
2195 identity="pap user", anonymous_identity="ttls",
2196 password="password", phase2="auth=PAP",
2197 ca_cert="auth_serv/ca-incorrect.pem",
2198 only_add_network=True, scan_freq="2412")
2199
2200 dev[0].request("DISCONNECT")
90ad11e6 2201 dev[0].wait_disconnected()
9a5cfd70
JM
2202 dev[0].dump_monitor()
2203 dev[0].select_network(id, freq="2412")
2204
2205 ev = dev[0].wait_event(["CTRL-EVENT-EAP-PROPOSED-METHOD vendor=0 method=21"], timeout=15)
2206 if ev is None:
2207 raise Exception("EAP-TTLS not re-started")
db98b587 2208
5f35a5e2 2209 ev = dev[0].wait_disconnected(timeout=15)
9a5cfd70
JM
2210 if "reason=23" not in ev:
2211 raise Exception("Proper reason code for disconnection not reported")
2212
2213def test_ap_wpa2_eap_tls_diff_ca_trust2(dev, apdev):
2214 """WPA2-Enterprise connection using EAP-TTLS/PAP and different CA trust"""
2215 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 2216 hapd = hostapd.add_ap(apdev[0], params)
9a5cfd70
JM
2217 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
2218 identity="pap user", anonymous_identity="ttls",
2219 password="password", phase2="auth=PAP",
2220 wait_connect=True, scan_freq="2412")
2221 id = dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
2222 identity="pap user", anonymous_identity="ttls",
2223 password="password", phase2="auth=PAP",
2224 ca_cert="auth_serv/ca-incorrect.pem",
2225 only_add_network=True, scan_freq="2412")
2226
2227 dev[0].request("DISCONNECT")
90ad11e6 2228 dev[0].wait_disconnected()
9a5cfd70
JM
2229 dev[0].dump_monitor()
2230 dev[0].select_network(id, freq="2412")
2231
2232 ev = dev[0].wait_event(["CTRL-EVENT-EAP-PROPOSED-METHOD vendor=0 method=21"], timeout=15)
2233 if ev is None:
2234 raise Exception("EAP-TTLS not re-started")
db98b587 2235
5f35a5e2 2236 ev = dev[0].wait_disconnected(timeout=15)
9a5cfd70
JM
2237 if "reason=23" not in ev:
2238 raise Exception("Proper reason code for disconnection not reported")
2239
2240def test_ap_wpa2_eap_tls_diff_ca_trust3(dev, apdev):
2241 """WPA2-Enterprise connection using EAP-TTLS/PAP and different CA trust"""
2242 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 2243 hapd = hostapd.add_ap(apdev[0], params)
9a5cfd70
JM
2244 id = dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
2245 identity="pap user", anonymous_identity="ttls",
2246 password="password", phase2="auth=PAP",
2247 ca_cert="auth_serv/ca.pem",
2248 wait_connect=True, scan_freq="2412")
2249 dev[0].request("DISCONNECT")
90ad11e6 2250 dev[0].wait_disconnected()
9a5cfd70
JM
2251 dev[0].dump_monitor()
2252 dev[0].set_network_quoted(id, "ca_cert", "auth_serv/ca-incorrect.pem")
2253 dev[0].select_network(id, freq="2412")
2254
2255 ev = dev[0].wait_event(["CTRL-EVENT-EAP-PROPOSED-METHOD vendor=0 method=21"], timeout=15)
2256 if ev is None:
2257 raise Exception("EAP-TTLS not re-started")
db98b587 2258
5f35a5e2 2259 ev = dev[0].wait_disconnected(timeout=15)
9a5cfd70
JM
2260 if "reason=23" not in ev:
2261 raise Exception("Proper reason code for disconnection not reported")
2262
72c052d5
JM
2263def test_ap_wpa2_eap_tls_neg_suffix_match(dev, apdev):
2264 """WPA2-Enterprise negative test - domain suffix mismatch"""
e78eb404 2265 check_domain_suffix_match(dev[0])
72c052d5 2266 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 2267 hostapd.add_ap(apdev[0], params)
72c052d5
JM
2268 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
2269 identity="DOMAIN\mschapv2 user", anonymous_identity="ttls",
2270 password="password", phase2="auth=MSCHAPV2",
2271 ca_cert="auth_serv/ca.pem",
2272 domain_suffix_match="incorrect.example.com",
c65f23ab 2273 wait_connect=False, scan_freq="2412")
72c052d5 2274
412c6030 2275 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STARTED"], timeout=16)
72c052d5
JM
2276 if ev is None:
2277 raise Exception("Association and EAP start timed out")
2278
2279 ev = dev[0].wait_event(["CTRL-EVENT-EAP-METHOD"], timeout=10)
2280 if ev is None:
2281 raise Exception("EAP method selection timed out")
2282 if "TTLS" not in ev:
2283 raise Exception("Unexpected EAP method")
2284
2285 ev = dev[0].wait_event(["CTRL-EVENT-EAP-TLS-CERT-ERROR",
2286 "CTRL-EVENT-EAP-SUCCESS",
2287 "CTRL-EVENT-EAP-FAILURE",
2288 "CTRL-EVENT-CONNECTED",
2289 "CTRL-EVENT-DISCONNECTED"], timeout=10)
2290 if ev is None:
2291 raise Exception("EAP result timed out")
2292 if "CTRL-EVENT-EAP-TLS-CERT-ERROR" not in ev:
2293 raise Exception("TLS certificate error not reported")
2294 if "Domain suffix mismatch" not in ev:
2295 raise Exception("Domain suffix mismatch not reported")
2296
2297 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS",
2298 "CTRL-EVENT-EAP-FAILURE",
2299 "CTRL-EVENT-CONNECTED",
2300 "CTRL-EVENT-DISCONNECTED"], timeout=10)
2301 if ev is None:
2302 raise Exception("EAP result(2) timed out")
2303 if "CTRL-EVENT-EAP-FAILURE" not in ev:
2304 raise Exception("EAP failure not reported")
2305
2306 ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED",
2307 "CTRL-EVENT-DISCONNECTED"], timeout=10)
2308 if ev is None:
2309 raise Exception("EAP result(3) timed out")
2310 if "CTRL-EVENT-DISCONNECTED" not in ev:
2311 raise Exception("Disconnection not reported")
2312
2313 ev = dev[0].wait_event(["CTRL-EVENT-SSID-TEMP-DISABLED"], timeout=10)
2314 if ev is None:
2315 raise Exception("Network block disabling not reported")
22b99086 2316
061cbb25
JM
2317def test_ap_wpa2_eap_tls_neg_domain_match(dev, apdev):
2318 """WPA2-Enterprise negative test - domain mismatch"""
e78eb404 2319 check_domain_match(dev[0])
061cbb25 2320 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 2321 hostapd.add_ap(apdev[0], params)
061cbb25
JM
2322 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
2323 identity="DOMAIN\mschapv2 user", anonymous_identity="ttls",
2324 password="password", phase2="auth=MSCHAPV2",
2325 ca_cert="auth_serv/ca.pem",
2326 domain_match="w1.fi",
2327 wait_connect=False, scan_freq="2412")
2328
412c6030 2329 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STARTED"], timeout=16)
061cbb25
JM
2330 if ev is None:
2331 raise Exception("Association and EAP start timed out")
2332
2333 ev = dev[0].wait_event(["CTRL-EVENT-EAP-METHOD"], timeout=10)
2334 if ev is None:
2335 raise Exception("EAP method selection timed out")
2336 if "TTLS" not in ev:
2337 raise Exception("Unexpected EAP method")
2338
2339 ev = dev[0].wait_event(["CTRL-EVENT-EAP-TLS-CERT-ERROR",
2340 "CTRL-EVENT-EAP-SUCCESS",
2341 "CTRL-EVENT-EAP-FAILURE",
2342 "CTRL-EVENT-CONNECTED",
2343 "CTRL-EVENT-DISCONNECTED"], timeout=10)
2344 if ev is None:
2345 raise Exception("EAP result timed out")
2346 if "CTRL-EVENT-EAP-TLS-CERT-ERROR" not in ev:
2347 raise Exception("TLS certificate error not reported")
2348 if "Domain mismatch" not in ev:
2349 raise Exception("Domain mismatch not reported")
2350
2351 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS",
2352 "CTRL-EVENT-EAP-FAILURE",
2353 "CTRL-EVENT-CONNECTED",
2354 "CTRL-EVENT-DISCONNECTED"], timeout=10)
2355 if ev is None:
2356 raise Exception("EAP result(2) timed out")
2357 if "CTRL-EVENT-EAP-FAILURE" not in ev:
2358 raise Exception("EAP failure not reported")
2359
2360 ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED",
2361 "CTRL-EVENT-DISCONNECTED"], timeout=10)
2362 if ev is None:
2363 raise Exception("EAP result(3) timed out")
2364 if "CTRL-EVENT-DISCONNECTED" not in ev:
2365 raise Exception("Disconnection not reported")
2366
2367 ev = dev[0].wait_event(["CTRL-EVENT-SSID-TEMP-DISABLED"], timeout=10)
2368 if ev is None:
2369 raise Exception("Network block disabling not reported")
2370
3b74982f
JM
2371def test_ap_wpa2_eap_tls_neg_subject_match(dev, apdev):
2372 """WPA2-Enterprise negative test - subject mismatch"""
2373 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 2374 hostapd.add_ap(apdev[0], params)
3b74982f
JM
2375 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
2376 identity="DOMAIN\mschapv2 user", anonymous_identity="ttls",
2377 password="password", phase2="auth=MSCHAPV2",
2378 ca_cert="auth_serv/ca.pem",
2379 subject_match="/C=FI/O=w1.fi/CN=example.com",
2380 wait_connect=False, scan_freq="2412")
2381
412c6030 2382 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STARTED"], timeout=16)
3b74982f
JM
2383 if ev is None:
2384 raise Exception("Association and EAP start timed out")
2385
506b2f05
JM
2386 ev = dev[0].wait_event(["CTRL-EVENT-EAP-METHOD",
2387 "EAP: Failed to initialize EAP method"], timeout=10)
3b74982f
JM
2388 if ev is None:
2389 raise Exception("EAP method selection timed out")
506b2f05
JM
2390 if "EAP: Failed to initialize EAP method" in ev:
2391 tls = dev[0].request("GET tls_library")
2392 if tls.startswith("OpenSSL"):
2393 raise Exception("Failed to select EAP method")
2394 logger.info("subject_match not supported - connection failed, so test succeeded")
2395 return
3b74982f
JM
2396 if "TTLS" not in ev:
2397 raise Exception("Unexpected EAP method")
2398
2399 ev = dev[0].wait_event(["CTRL-EVENT-EAP-TLS-CERT-ERROR",
2400 "CTRL-EVENT-EAP-SUCCESS",
2401 "CTRL-EVENT-EAP-FAILURE",
2402 "CTRL-EVENT-CONNECTED",
2403 "CTRL-EVENT-DISCONNECTED"], timeout=10)
2404 if ev is None:
2405 raise Exception("EAP result timed out")
2406 if "CTRL-EVENT-EAP-TLS-CERT-ERROR" not in ev:
2407 raise Exception("TLS certificate error not reported")
2408 if "Subject mismatch" not in ev:
2409 raise Exception("Subject mismatch not reported")
2410
2411 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS",
2412 "CTRL-EVENT-EAP-FAILURE",
2413 "CTRL-EVENT-CONNECTED",
2414 "CTRL-EVENT-DISCONNECTED"], timeout=10)
2415 if ev is None:
2416 raise Exception("EAP result(2) timed out")
2417 if "CTRL-EVENT-EAP-FAILURE" not in ev:
2418 raise Exception("EAP failure not reported")
2419
2420 ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED",
2421 "CTRL-EVENT-DISCONNECTED"], timeout=10)
2422 if ev is None:
2423 raise Exception("EAP result(3) timed out")
2424 if "CTRL-EVENT-DISCONNECTED" not in ev:
2425 raise Exception("Disconnection not reported")
2426
2427 ev = dev[0].wait_event(["CTRL-EVENT-SSID-TEMP-DISABLED"], timeout=10)
2428 if ev is None:
2429 raise Exception("Network block disabling not reported")
2430
2431def test_ap_wpa2_eap_tls_neg_altsubject_match(dev, apdev):
2432 """WPA2-Enterprise negative test - altsubject mismatch"""
2433 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 2434 hostapd.add_ap(apdev[0], params)
37d61355
JM
2435
2436 tests = [ "incorrect.example.com",
2437 "DNS:incorrect.example.com",
2438 "DNS:w1.fi",
2439 "DNS:erver.w1.fi" ]
2440 for match in tests:
2441 _test_ap_wpa2_eap_tls_neg_altsubject_match(dev, apdev, match)
2442
2443def _test_ap_wpa2_eap_tls_neg_altsubject_match(dev, apdev, match):
3b74982f
JM
2444 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
2445 identity="DOMAIN\mschapv2 user", anonymous_identity="ttls",
2446 password="password", phase2="auth=MSCHAPV2",
2447 ca_cert="auth_serv/ca.pem",
37d61355 2448 altsubject_match=match,
3b74982f
JM
2449 wait_connect=False, scan_freq="2412")
2450
412c6030 2451 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STARTED"], timeout=16)
3b74982f
JM
2452 if ev is None:
2453 raise Exception("Association and EAP start timed out")
2454
506b2f05
JM
2455 ev = dev[0].wait_event(["CTRL-EVENT-EAP-METHOD",
2456 "EAP: Failed to initialize EAP method"], timeout=10)
3b74982f
JM
2457 if ev is None:
2458 raise Exception("EAP method selection timed out")
506b2f05
JM
2459 if "EAP: Failed to initialize EAP method" in ev:
2460 tls = dev[0].request("GET tls_library")
2461 if tls.startswith("OpenSSL"):
2462 raise Exception("Failed to select EAP method")
2463 logger.info("altsubject_match not supported - connection failed, so test succeeded")
2464 return
3b74982f
JM
2465 if "TTLS" not in ev:
2466 raise Exception("Unexpected EAP method")
2467
2468 ev = dev[0].wait_event(["CTRL-EVENT-EAP-TLS-CERT-ERROR",
2469 "CTRL-EVENT-EAP-SUCCESS",
2470 "CTRL-EVENT-EAP-FAILURE",
2471 "CTRL-EVENT-CONNECTED",
2472 "CTRL-EVENT-DISCONNECTED"], timeout=10)
2473 if ev is None:
2474 raise Exception("EAP result timed out")
2475 if "CTRL-EVENT-EAP-TLS-CERT-ERROR" not in ev:
2476 raise Exception("TLS certificate error not reported")
2477 if "AltSubject mismatch" not in ev:
2478 raise Exception("altsubject mismatch not reported")
2479
2480 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS",
2481 "CTRL-EVENT-EAP-FAILURE",
2482 "CTRL-EVENT-CONNECTED",
2483 "CTRL-EVENT-DISCONNECTED"], timeout=10)
2484 if ev is None:
2485 raise Exception("EAP result(2) timed out")
2486 if "CTRL-EVENT-EAP-FAILURE" not in ev:
2487 raise Exception("EAP failure not reported")
2488
2489 ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED",
2490 "CTRL-EVENT-DISCONNECTED"], timeout=10)
2491 if ev is None:
2492 raise Exception("EAP result(3) timed out")
2493 if "CTRL-EVENT-DISCONNECTED" not in ev:
2494 raise Exception("Disconnection not reported")
2495
2496 ev = dev[0].wait_event(["CTRL-EVENT-SSID-TEMP-DISABLED"], timeout=10)
2497 if ev is None:
2498 raise Exception("Network block disabling not reported")
2499
37d61355
JM
2500 dev[0].request("REMOVE_NETWORK all")
2501
5a0c1517
JM
2502def test_ap_wpa2_eap_unauth_tls(dev, apdev):
2503 """WPA2-Enterprise connection using UNAUTH-TLS"""
2504 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
2505 hapd = hostapd.add_ap(apdev[0], params)
2506 eap_connect(dev[0], hapd, "UNAUTH-TLS", "unauth-tls",
5a0c1517
JM
2507 ca_cert="auth_serv/ca.pem")
2508 eap_reauth(dev[0], "UNAUTH-TLS")
2509
57be05e1
JM
2510def test_ap_wpa2_eap_ttls_server_cert_hash(dev, apdev):
2511 """WPA2-Enterprise connection using EAP-TTLS and server certificate hash"""
4bf4e9db 2512 check_cert_probe_support(dev[0])
ca158ea6 2513 skip_with_fips(dev[0])
0ba13e86 2514 srv_cert_hash = "53728dde442d4adc27cb10a847234a4315590f0b36786353023c3b0f2e9fdf49"
57be05e1 2515 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687 2516 hapd = hostapd.add_ap(apdev[0], params)
57be05e1
JM
2517 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
2518 identity="probe", ca_cert="probe://",
2519 wait_connect=False, scan_freq="2412")
412c6030 2520 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STARTED"], timeout=16)
57be05e1
JM
2521 if ev is None:
2522 raise Exception("Association and EAP start timed out")
2523 ev = dev[0].wait_event(["CTRL-EVENT-EAP-PEER-CERT depth=0"], timeout=10)
2524 if ev is None:
2525 raise Exception("No peer server certificate event seen")
2526 if "hash=" + srv_cert_hash not in ev:
2527 raise Exception("Expected server certificate hash not reported")
2528 ev = dev[0].wait_event(["CTRL-EVENT-EAP-TLS-CERT-ERROR"], timeout=10)
2529 if ev is None:
2530 raise Exception("EAP result timed out")
2531 if "Server certificate chain probe" not in ev:
2532 raise Exception("Server certificate probe not reported")
5f35a5e2 2533 dev[0].wait_disconnected(timeout=10)
57be05e1
JM
2534 dev[0].request("REMOVE_NETWORK all")
2535
2536 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
2537 identity="DOMAIN\mschapv2 user", anonymous_identity="ttls",
2538 password="password", phase2="auth=MSCHAPV2",
2539 ca_cert="hash://server/sha256/5a1bc1296205e6fdbe3979728efe3920798885c1c4590b5f90f43222d239ca6a",
2540 wait_connect=False, scan_freq="2412")
412c6030 2541 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STARTED"], timeout=16)
57be05e1
JM
2542 if ev is None:
2543 raise Exception("Association and EAP start timed out")
2544 ev = dev[0].wait_event(["CTRL-EVENT-EAP-TLS-CERT-ERROR"], timeout=10)
2545 if ev is None:
2546 raise Exception("EAP result timed out")
2547 if "Server certificate mismatch" not in ev:
2548 raise Exception("Server certificate mismatch not reported")
5f35a5e2 2549 dev[0].wait_disconnected(timeout=10)
57be05e1
JM
2550 dev[0].request("REMOVE_NETWORK all")
2551
3b3e2687 2552 eap_connect(dev[0], hapd, "TTLS", "DOMAIN\mschapv2 user",
57be05e1
JM
2553 anonymous_identity="ttls", password="password",
2554 ca_cert="hash://server/sha256/" + srv_cert_hash,
2555 phase2="auth=MSCHAPV2")
2556
2a6a2192
JM
2557def test_ap_wpa2_eap_ttls_server_cert_hash_invalid(dev, apdev):
2558 """WPA2-Enterprise connection using EAP-TTLS and server certificate hash (invalid config)"""
2559 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 2560 hostapd.add_ap(apdev[0], params)
2a6a2192
JM
2561 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
2562 identity="DOMAIN\mschapv2 user", anonymous_identity="ttls",
2563 password="password", phase2="auth=MSCHAPV2",
2564 ca_cert="hash://server/md5/5a1bc1296205e6fdbe3979728efe3920798885c1c4590b5f90f43222d239ca6a",
2565 wait_connect=False, scan_freq="2412")
2566 dev[1].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
2567 identity="DOMAIN\mschapv2 user", anonymous_identity="ttls",
2568 password="password", phase2="auth=MSCHAPV2",
2569 ca_cert="hash://server/sha256/5a1bc1296205e6fdbe3979728efe3920798885c1c4590b5f90f43222d239ca",
2570 wait_connect=False, scan_freq="2412")
2571 dev[2].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
2572 identity="DOMAIN\mschapv2 user", anonymous_identity="ttls",
2573 password="password", phase2="auth=MSCHAPV2",
2574 ca_cert="hash://server/sha256/5a1bc1296205e6fdbe3979728efe3920798885c1c4590b5f90f43222d239ca6Q",
2575 wait_connect=False, scan_freq="2412")
2576 for i in range(0, 3):
412c6030 2577 ev = dev[i].wait_event(["CTRL-EVENT-EAP-STARTED"], timeout=16)
2a6a2192
JM
2578 if ev is None:
2579 raise Exception("Association and EAP start timed out")
cbb85a03
JM
2580 ev = dev[i].wait_event(["EAP: Failed to initialize EAP method: vendor 0 method 21 (TTLS)"], timeout=5)
2581 if ev is None:
2582 raise Exception("Did not report EAP method initialization failure")
2a6a2192 2583
22b99086
JM
2584def test_ap_wpa2_eap_pwd(dev, apdev):
2585 """WPA2-Enterprise connection using EAP-pwd"""
3b51cc63 2586 check_eap_capa(dev[0], "PWD")
22b99086 2587 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
2588 hapd = hostapd.add_ap(apdev[0], params)
2589 eap_connect(dev[0], hapd, "PWD", "pwd user", password="secret password")
75b2b9cf 2590 eap_reauth(dev[0], "PWD")
6daf5b9c 2591 dev[0].request("REMOVE_NETWORK all")
0403fa0a 2592
3b3e2687 2593 eap_connect(dev[1], hapd, "PWD",
0403fa0a
JM
2594 "pwd.user@test123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890.example.com",
2595 password="secret password",
6daf5b9c
JM
2596 fragment_size="90")
2597
f10ba3b2 2598 logger.info("Negative test with incorrect password")
3b3e2687 2599 eap_connect(dev[2], hapd, "PWD", "pwd user", password="secret-password",
f10ba3b2
JM
2600 expect_failure=True, local_error_report=True)
2601
3b3e2687 2602 eap_connect(dev[0], hapd, "PWD",
0403fa0a
JM
2603 "pwd.user@test123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890.example.com",
2604 password="secret password",
2605 fragment_size="31")
2606
b898a6ee
JM
2607def test_ap_wpa2_eap_pwd_nthash(dev, apdev):
2608 """WPA2-Enterprise connection using EAP-pwd and NTHash"""
2609 check_eap_capa(dev[0], "PWD")
0392867b 2610 skip_with_fips(dev[0])
b898a6ee 2611 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
2612 hapd = hostapd.add_ap(apdev[0], params)
2613 eap_connect(dev[0], hapd, "PWD", "pwd-hash", password="secret password")
2614 eap_connect(dev[1], hapd, "PWD", "pwd-hash",
b898a6ee 2615 password_hex="hash:e3718ece8ab74792cbbfffd316d2d19a")
3b3e2687 2616 eap_connect(dev[2], hapd, "PWD", "pwd user",
b898a6ee
JM
2617 password_hex="hash:e3718ece8ab74792cbbfffd316d2d19a",
2618 expect_failure=True, local_error_report=True)
2619
c075f040
JM
2620def test_ap_wpa2_eap_pwd_groups(dev, apdev):
2621 """WPA2-Enterprise connection using various EAP-pwd groups"""
3b51cc63 2622 check_eap_capa(dev[0], "PWD")
5f2e4547 2623 tls = dev[0].request("GET tls_library")
c075f040
JM
2624 params = { "ssid": "test-wpa2-eap", "wpa": "2", "wpa_key_mgmt": "WPA-EAP",
2625 "rsn_pairwise": "CCMP", "ieee8021x": "1",
2626 "eap_server": "1", "eap_user_file": "auth_serv/eap_user.conf" }
f2d789f2
JM
2627 groups = [ 19, 20, 21, 25, 26 ]
2628 if tls.startswith("OpenSSL") and "build=OpenSSL 1.0.2" in tls and "run=OpenSSL 1.0.2" in tls:
2629 logger.info("Add Brainpool EC groups since OpenSSL is new enough")
2630 groups += [ 27, 28, 29, 30 ]
2631 for i in groups:
2632 logger.info("Group %d" % i)
c075f040 2633 params['pwd_group'] = str(i)
3b3e2687 2634 hapd = hostapd.add_ap(apdev[0], params)
5f2e4547 2635 try:
3b3e2687 2636 eap_connect(dev[0], hapd, "PWD", "pwd user",
5f2e4547 2637 password="secret password")
f2d789f2
JM
2638 dev[0].request("REMOVE_NETWORK all")
2639 dev[0].wait_disconnected()
2640 dev[0].dump_monitor()
5f2e4547
JM
2641 except:
2642 if "BoringSSL" in tls and i in [ 25 ]:
2643 logger.info("Ignore connection failure with group %d with BoringSSL" % i)
2644 dev[0].request("DISCONNECT")
2645 time.sleep(0.1)
f2d789f2
JM
2646 dev[0].request("REMOVE_NETWORK all")
2647 dev[0].dump_monitor()
5f2e4547
JM
2648 continue
2649 raise
c075f040 2650
4b2d2098
JM
2651def test_ap_wpa2_eap_pwd_invalid_group(dev, apdev):
2652 """WPA2-Enterprise connection using invalid EAP-pwd group"""
3b51cc63 2653 check_eap_capa(dev[0], "PWD")
4b2d2098
JM
2654 params = { "ssid": "test-wpa2-eap", "wpa": "2", "wpa_key_mgmt": "WPA-EAP",
2655 "rsn_pairwise": "CCMP", "ieee8021x": "1",
2656 "eap_server": "1", "eap_user_file": "auth_serv/eap_user.conf" }
2657 params['pwd_group'] = "0"
8b8a1864 2658 hostapd.add_ap(apdev[0], params)
4b2d2098
JM
2659 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="PWD",
2660 identity="pwd user", password="secret password",
2661 scan_freq="2412", wait_connect=False)
2662 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
2663 if ev is None:
2664 raise Exception("Timeout on EAP failure report")
2665
8ba89e0a
JM
2666def test_ap_wpa2_eap_pwd_as_frag(dev, apdev):
2667 """WPA2-Enterprise connection using EAP-pwd with server fragmentation"""
3b51cc63 2668 check_eap_capa(dev[0], "PWD")
8ba89e0a
JM
2669 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
2670 params = { "ssid": "test-wpa2-eap", "wpa": "2", "wpa_key_mgmt": "WPA-EAP",
2671 "rsn_pairwise": "CCMP", "ieee8021x": "1",
2672 "eap_server": "1", "eap_user_file": "auth_serv/eap_user.conf",
2673 "pwd_group": "19", "fragment_size": "40" }
3b3e2687
JD
2674 hapd = hostapd.add_ap(apdev[0], params)
2675 eap_connect(dev[0], hapd, "PWD", "pwd user", password="secret password")
8ba89e0a 2676
22b99086
JM
2677def test_ap_wpa2_eap_gpsk(dev, apdev):
2678 """WPA2-Enterprise connection using EAP-GPSK"""
2679 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
2680 hapd = hostapd.add_ap(apdev[0], params)
2681 id = eap_connect(dev[0], hapd, "GPSK", "gpsk user",
369f9c20 2682 password="abcdefghijklmnop0123456789abcdef")
75b2b9cf 2683 eap_reauth(dev[0], "GPSK")
22b99086 2684
369f9c20
JM
2685 logger.info("Test forced algorithm selection")
2686 for phase1 in [ "cipher=1", "cipher=2" ]:
2687 dev[0].set_network_quoted(id, "phase1", phase1)
2688 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
2689 if ev is None:
2690 raise Exception("EAP success timed out")
5f35a5e2 2691 dev[0].wait_connected(timeout=10)
369f9c20
JM
2692
2693 logger.info("Test failed algorithm negotiation")
2694 dev[0].set_network_quoted(id, "phase1", "cipher=9")
2695 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=10)
2696 if ev is None:
2697 raise Exception("EAP failure timed out")
2698
f10ba3b2
JM
2699 logger.info("Negative test with incorrect password")
2700 dev[0].request("REMOVE_NETWORK all")
3b3e2687 2701 eap_connect(dev[0], hapd, "GPSK", "gpsk user",
f10ba3b2
JM
2702 password="ffcdefghijklmnop0123456789abcdef",
2703 expect_failure=True)
2704
22b99086
JM
2705def test_ap_wpa2_eap_sake(dev, apdev):
2706 """WPA2-Enterprise connection using EAP-SAKE"""
2707 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
2708 hapd = hostapd.add_ap(apdev[0], params)
2709 eap_connect(dev[0], hapd, "SAKE", "sake user",
22b99086 2710 password_hex="0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef")
75b2b9cf 2711 eap_reauth(dev[0], "SAKE")
22b99086 2712
f10ba3b2
JM
2713 logger.info("Negative test with incorrect password")
2714 dev[0].request("REMOVE_NETWORK all")
3b3e2687 2715 eap_connect(dev[0], hapd, "SAKE", "sake user",
f10ba3b2
JM
2716 password_hex="ff23456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef",
2717 expect_failure=True)
2718
22b99086
JM
2719def test_ap_wpa2_eap_eke(dev, apdev):
2720 """WPA2-Enterprise connection using EAP-EKE"""
2721 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
2722 hapd = hostapd.add_ap(apdev[0], params)
2723 id = eap_connect(dev[0], hapd, "EKE", "eke user", password="hello")
75b2b9cf 2724 eap_reauth(dev[0], "EKE")
22b99086 2725
2bb9e283
JM
2726 logger.info("Test forced algorithm selection")
2727 for phase1 in [ "dhgroup=5 encr=1 prf=2 mac=2",
2728 "dhgroup=4 encr=1 prf=2 mac=2",
2729 "dhgroup=3 encr=1 prf=2 mac=2",
2730 "dhgroup=3 encr=1 prf=1 mac=1" ]:
2731 dev[0].set_network_quoted(id, "phase1", phase1)
2732 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
2733 if ev is None:
2734 raise Exception("EAP success timed out")
5f35a5e2 2735 dev[0].wait_connected(timeout=10)
2bb9e283
JM
2736
2737 logger.info("Test failed algorithm negotiation")
2738 dev[0].set_network_quoted(id, "phase1", "dhgroup=9 encr=9 prf=9 mac=9")
2739 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=10)
2740 if ev is None:
2741 raise Exception("EAP failure timed out")
2742
f10ba3b2
JM
2743 logger.info("Negative test with incorrect password")
2744 dev[0].request("REMOVE_NETWORK all")
3b3e2687 2745 eap_connect(dev[0], hapd, "EKE", "eke user", password="hello1",
f10ba3b2
JM
2746 expect_failure=True)
2747
3b6f3b37
JM
2748def test_ap_wpa2_eap_eke_many(dev, apdev, params):
2749 """WPA2-Enterprise connection using EAP-EKE (many connections) [long]"""
2750 if not params['long']:
2751 raise HwsimSkip("Skip test case with long duration due to --long not specified")
2752 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 2753 hostapd.add_ap(apdev[0], params)
3b6f3b37
JM
2754 success = 0
2755 fail = 0
2756 for i in range(100):
2757 for j in range(3):
2758 dev[j].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="EKE",
2759 identity="eke user", password="hello",
2760 phase1="dhgroup=3 encr=1 prf=1 mac=1",
2761 scan_freq="2412", wait_connect=False)
2762 for j in range(3):
2763 ev = dev[j].wait_event(["CTRL-EVENT-CONNECTED",
2764 "CTRL-EVENT-DISCONNECTED"], timeout=15)
2765 if ev is None:
2766 raise Exception("No connected/disconnected event")
2767 if "CTRL-EVENT-DISCONNECTED" in ev:
2768 fail += 1
2769 # The RADIUS server limits on active sessions can be hit when
2770 # going through this test case, so try to give some more time
2771 # for the server to remove sessions.
2772 logger.info("Failed to connect i=%d j=%d" % (i, j))
2773 dev[j].request("REMOVE_NETWORK all")
2774 time.sleep(1)
2775 else:
2776 success += 1
2777 dev[j].request("REMOVE_NETWORK all")
2778 dev[j].wait_disconnected()
2779 dev[j].dump_monitor()
2780 logger.info("Total success=%d failure=%d" % (success, fail))
2781
f7e3c17b
JM
2782def test_ap_wpa2_eap_eke_serverid_nai(dev, apdev):
2783 """WPA2-Enterprise connection using EAP-EKE with serverid NAI"""
2784 params = int_eap_server_params()
2785 params['server_id'] = 'example.server@w1.fi'
3b3e2687
JD
2786 hapd = hostapd.add_ap(apdev[0], params)
2787 eap_connect(dev[0], hapd, "EKE", "eke user", password="hello")
f7e3c17b 2788
5e0bedc6
JM
2789def test_ap_wpa2_eap_eke_server_oom(dev, apdev):
2790 """WPA2-Enterprise connection using EAP-EKE with server OOM"""
2791 params = int_eap_server_params()
8b8a1864 2792 hapd = hostapd.add_ap(apdev[0], params)
5e0bedc6
JM
2793 dev[0].scan_for_bss(apdev[0]['bssid'], freq=2412)
2794
2795 for count,func in [ (1, "eap_eke_build_commit"),
2796 (2, "eap_eke_build_commit"),
2797 (3, "eap_eke_build_commit"),
2798 (1, "eap_eke_build_confirm"),
2799 (2, "eap_eke_build_confirm"),
2800 (1, "eap_eke_process_commit"),
2801 (2, "eap_eke_process_commit"),
2802 (1, "eap_eke_process_confirm"),
2803 (1, "eap_eke_process_identity"),
2804 (2, "eap_eke_process_identity"),
2805 (3, "eap_eke_process_identity"),
2806 (4, "eap_eke_process_identity") ]:
2807 with alloc_fail(hapd, count, func):
3b3e2687 2808 eap_connect(dev[0], hapd, "EKE", "eke user", password="hello",
5e0bedc6
JM
2809 expect_failure=True)
2810 dev[0].request("REMOVE_NETWORK all")
2811
2812 for count,func,pw in [ (1, "eap_eke_init", "hello"),
2813 (1, "eap_eke_get_session_id", "hello"),
2814 (1, "eap_eke_getKey", "hello"),
2815 (1, "eap_eke_build_msg", "hello"),
2816 (1, "eap_eke_build_failure", "wrong"),
2817 (1, "eap_eke_build_identity", "hello"),
2818 (2, "eap_eke_build_identity", "hello") ]:
2819 with alloc_fail(hapd, count, func):
2820 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP WPA-EAP-SHA256",
2821 eap="EKE", identity="eke user", password=pw,
2822 wait_connect=False, scan_freq="2412")
2823 # This would eventually time out, but we can stop after having
2824 # reached the allocation failure.
2825 for i in range(20):
2826 time.sleep(0.1)
2827 if hapd.request("GET_ALLOC_FAIL").startswith('0'):
2828 break
2829 dev[0].request("REMOVE_NETWORK all")
2830
2831 for count in range(1, 1000):
2832 try:
2833 with alloc_fail(hapd, count, "eap_server_sm_step"):
2834 dev[0].connect("test-wpa2-eap",
2835 key_mgmt="WPA-EAP WPA-EAP-SHA256",
2836 eap="EKE", identity="eke user", password=pw,
2837 wait_connect=False, scan_freq="2412")
2838 # This would eventually time out, but we can stop after having
2839 # reached the allocation failure.
2840 for i in range(10):
2841 time.sleep(0.1)
2842 if hapd.request("GET_ALLOC_FAIL").startswith('0'):
2843 break
2844 dev[0].request("REMOVE_NETWORK all")
2845 except Exception, e:
2846 if str(e) == "Allocation failure did not trigger":
2847 if count < 30:
2848 raise Exception("Too few allocation failures")
2849 logger.info("%d allocation failures tested" % (count - 1))
2850 break
2851 raise e
2852
22b99086
JM
2853def test_ap_wpa2_eap_ikev2(dev, apdev):
2854 """WPA2-Enterprise connection using EAP-IKEv2"""
c8e82c94 2855 check_eap_capa(dev[0], "IKEV2")
22b99086 2856 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
2857 hapd = hostapd.add_ap(apdev[0], params)
2858 eap_connect(dev[0], hapd, "IKEV2", "ikev2 user",
cb33ee14 2859 password="ike password")
75b2b9cf 2860 eap_reauth(dev[0], "IKEV2")
6daf5b9c 2861 dev[0].request("REMOVE_NETWORK all")
3b3e2687 2862 eap_connect(dev[0], hapd, "IKEV2", "ikev2 user",
47a74ad8 2863 password="ike password", fragment_size="50")
22b99086 2864
f10ba3b2
JM
2865 logger.info("Negative test with incorrect password")
2866 dev[0].request("REMOVE_NETWORK all")
3b3e2687 2867 eap_connect(dev[0], hapd, "IKEV2", "ikev2 user",
f10ba3b2 2868 password="ike-password", expect_failure=True)
35372f6c
JM
2869 dev[0].request("REMOVE_NETWORK all")
2870
3b3e2687 2871 eap_connect(dev[0], hapd, "IKEV2", "ikev2 user",
35372f6c
JM
2872 password="ike password", fragment_size="0")
2873 dev[0].request("REMOVE_NETWORK all")
2874 dev[0].wait_disconnected()
f10ba3b2 2875
47a74ad8
JM
2876def test_ap_wpa2_eap_ikev2_as_frag(dev, apdev):
2877 """WPA2-Enterprise connection using EAP-IKEv2 with server fragmentation"""
c8e82c94 2878 check_eap_capa(dev[0], "IKEV2")
47a74ad8
JM
2879 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
2880 params = { "ssid": "test-wpa2-eap", "wpa": "2", "wpa_key_mgmt": "WPA-EAP",
2881 "rsn_pairwise": "CCMP", "ieee8021x": "1",
2882 "eap_server": "1", "eap_user_file": "auth_serv/eap_user.conf",
2883 "fragment_size": "50" }
3b3e2687
JD
2884 hapd = hostapd.add_ap(apdev[0], params)
2885 eap_connect(dev[0], hapd, "IKEV2", "ikev2 user",
47a74ad8
JM
2886 password="ike password")
2887 eap_reauth(dev[0], "IKEV2")
2888
f1ab79c3
JM
2889def test_ap_wpa2_eap_ikev2_oom(dev, apdev):
2890 """WPA2-Enterprise connection using EAP-IKEv2 and OOM"""
c8e82c94 2891 check_eap_capa(dev[0], "IKEV2")
f1ab79c3 2892 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 2893 hostapd.add_ap(apdev[0], params)
f1ab79c3
JM
2894
2895 tests = [ (1, "dh_init"),
2896 (2, "dh_init"),
2897 (1, "dh_derive_shared") ]
2898 for count, func in tests:
2899 with alloc_fail(dev[0], count, func):
2900 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="IKEV2",
2901 identity="ikev2 user", password="ike password",
2902 wait_connect=False, scan_freq="2412")
2903 ev = dev[0].wait_event(["CTRL-EVENT-EAP-METHOD"], timeout=5)
2904 if ev is None:
2905 raise Exception("EAP method not selected")
2906 for i in range(10):
2907 if "0:" in dev[0].request("GET_ALLOC_FAIL"):
2908 break
2909 time.sleep(0.02)
2910 dev[0].request("REMOVE_NETWORK all")
2911
d8003dcb
SP
2912 tls = dev[0].request("GET tls_library")
2913 if not tls.startswith("wolfSSL"):
2914 tests = [ (1, "os_get_random;dh_init") ]
2915 else:
2916 tests = [ (1, "crypto_dh_init;dh_init") ]
f1ab79c3
JM
2917 for count, func in tests:
2918 with fail_test(dev[0], count, func):
2919 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="IKEV2",
2920 identity="ikev2 user", password="ike password",
2921 wait_connect=False, scan_freq="2412")
2922 ev = dev[0].wait_event(["CTRL-EVENT-EAP-METHOD"], timeout=5)
2923 if ev is None:
2924 raise Exception("EAP method not selected")
2925 for i in range(10):
2926 if "0:" in dev[0].request("GET_FAIL"):
2927 break
2928 time.sleep(0.02)
2929 dev[0].request("REMOVE_NETWORK all")
2930
22b99086
JM
2931def test_ap_wpa2_eap_pax(dev, apdev):
2932 """WPA2-Enterprise connection using EAP-PAX"""
2933 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
2934 hapd = hostapd.add_ap(apdev[0], params)
2935 eap_connect(dev[0], hapd, "PAX", "pax.user@example.com",
22b99086 2936 password_hex="0123456789abcdef0123456789abcdef")
75b2b9cf 2937 eap_reauth(dev[0], "PAX")
22b99086 2938
f10ba3b2
JM
2939 logger.info("Negative test with incorrect password")
2940 dev[0].request("REMOVE_NETWORK all")
3b3e2687 2941 eap_connect(dev[0], hapd, "PAX", "pax.user@example.com",
f10ba3b2
JM
2942 password_hex="ff23456789abcdef0123456789abcdef",
2943 expect_failure=True)
2944
22b99086
JM
2945def test_ap_wpa2_eap_psk(dev, apdev):
2946 """WPA2-Enterprise connection using EAP-PSK"""
2947 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
2b005194
JM
2948 params["wpa_key_mgmt"] = "WPA-EAP-SHA256"
2949 params["ieee80211w"] = "2"
3b3e2687
JD
2950 hapd = hostapd.add_ap(apdev[0], params)
2951 eap_connect(dev[0], hapd, "PSK", "psk.user@example.com",
2b005194
JM
2952 password_hex="0123456789abcdef0123456789abcdef", sha256=True)
2953 eap_reauth(dev[0], "PSK", sha256=True)
eaf3f9b1
JM
2954 check_mib(dev[0], [ ("dot11RSNAAuthenticationSuiteRequested", "00-0f-ac-5"),
2955 ("dot11RSNAAuthenticationSuiteSelected", "00-0f-ac-5") ])
71390dc8 2956
d463c556
JM
2957 bss = dev[0].get_bss(apdev[0]['bssid'])
2958 if 'flags' not in bss:
2959 raise Exception("Could not get BSS flags from BSS table")
2960 if "[WPA2-EAP-SHA256-CCMP]" not in bss['flags']:
2961 raise Exception("Unexpected BSS flags: " + bss['flags'])
2962
f10ba3b2
JM
2963 logger.info("Negative test with incorrect password")
2964 dev[0].request("REMOVE_NETWORK all")
3b3e2687 2965 eap_connect(dev[0], hapd, "PSK", "psk.user@example.com",
f10ba3b2
JM
2966 password_hex="ff23456789abcdef0123456789abcdef", sha256=True,
2967 expect_failure=True)
2968
8c4e4c01
JM
2969def test_ap_wpa2_eap_psk_oom(dev, apdev):
2970 """WPA2-Enterprise connection using EAP-PSK and OOM"""
38934ed1 2971 skip_with_fips(dev[0])
8c4e4c01 2972 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 2973 hostapd.add_ap(apdev[0], params)
7cbc8e67
JM
2974 tests = [ (1, "=aes_128_eax_encrypt"),
2975 (1, "=aes_128_eax_decrypt") ]
2976 for count, func in tests:
2977 with alloc_fail(dev[0], count, func):
2978 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="PSK",
2979 identity="psk.user@example.com",
2980 password_hex="0123456789abcdef0123456789abcdef",
2981 wait_connect=False, scan_freq="2412")
2982 ev = dev[0].wait_event(["CTRL-EVENT-EAP-METHOD"], timeout=5)
2983 if ev is None:
2984 raise Exception("EAP method not selected")
2985 wait_fail_trigger(dev[0], "GET_ALLOC_FAIL",
2986 note="Failure not triggered: %d:%s" % (count, func))
2987 dev[0].request("REMOVE_NETWORK all")
2988 dev[0].wait_disconnected()
2989
677c2283 2990 tests = [ (1, "aes_ctr_encrypt;aes_128_eax_encrypt"),
8c4e4c01
JM
2991 (1, "omac1_aes_128;aes_128_eax_encrypt"),
2992 (2, "omac1_aes_128;aes_128_eax_encrypt"),
2993 (3, "omac1_aes_128;aes_128_eax_encrypt"),
8c4e4c01 2994 (1, "omac1_aes_vector"),
8c4e4c01
JM
2995 (1, "omac1_aes_128;aes_128_eax_decrypt"),
2996 (2, "omac1_aes_128;aes_128_eax_decrypt"),
2997 (3, "omac1_aes_128;aes_128_eax_decrypt"),
677c2283 2998 (1, "aes_ctr_encrypt;aes_128_eax_decrypt") ]
8c4e4c01 2999 for count, func in tests:
7cbc8e67 3000 with fail_test(dev[0], count, func):
8c4e4c01
JM
3001 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="PSK",
3002 identity="psk.user@example.com",
3003 password_hex="0123456789abcdef0123456789abcdef",
3004 wait_connect=False, scan_freq="2412")
3005 ev = dev[0].wait_event(["CTRL-EVENT-EAP-METHOD"], timeout=5)
3006 if ev is None:
3007 raise Exception("EAP method not selected")
7cbc8e67
JM
3008 wait_fail_trigger(dev[0], "GET_FAIL",
3009 note="Failure not triggered: %d:%s" % (count, func))
8c4e4c01 3010 dev[0].request("REMOVE_NETWORK all")
7cbc8e67 3011 dev[0].wait_disconnected()
8c4e4c01 3012
7cbc8e67 3013 with fail_test(dev[0], 1, "aes_128_encrypt_block"):
8c4e4c01
JM
3014 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="PSK",
3015 identity="psk.user@example.com",
3016 password_hex="0123456789abcdef0123456789abcdef",
3017 wait_connect=False, scan_freq="2412")
3018 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=10)
3019 if ev is None:
3020 raise Exception("EAP method failure not reported")
3021 dev[0].request("REMOVE_NETWORK all")
7cbc8e67 3022 dev[0].wait_disconnected()
8c4e4c01 3023
71390dc8
JM
3024def test_ap_wpa_eap_peap_eap_mschapv2(dev, apdev):
3025 """WPA-Enterprise connection using EAP-PEAP/EAP-MSCHAPv2"""
e7ac04ce 3026 check_eap_capa(dev[0], "MSCHAPV2")
71390dc8 3027 params = hostapd.wpa_eap_params(ssid="test-wpa-eap")
8b8a1864 3028 hapd = hostapd.add_ap(apdev[0], params)
71390dc8
JM
3029 dev[0].connect("test-wpa-eap", key_mgmt="WPA-EAP", eap="PEAP",
3030 identity="user", password="password", phase2="auth=MSCHAPV2",
3031 ca_cert="auth_serv/ca.pem", wait_connect=False,
3032 scan_freq="2412")
3033 eap_check_auth(dev[0], "PEAP", True, rsn=False)
a8375c94 3034 hwsim_utils.test_connectivity(dev[0], hapd)
71390dc8 3035 eap_reauth(dev[0], "PEAP", rsn=False)
eaf3f9b1
JM
3036 check_mib(dev[0], [ ("dot11RSNAAuthenticationSuiteRequested", "00-50-f2-1"),
3037 ("dot11RSNAAuthenticationSuiteSelected", "00-50-f2-1") ])
48bb2e68
JM
3038 status = dev[0].get_status(extra="VERBOSE")
3039 if 'portControl' not in status:
3040 raise Exception("portControl missing from STATUS-VERBOSE")
3041 if status['portControl'] != 'Auto':
3042 raise Exception("Unexpected portControl value: " + status['portControl'])
3043 if 'eap_session_id' not in status:
3044 raise Exception("eap_session_id missing from STATUS-VERBOSE")
3045 if not status['eap_session_id'].startswith("19"):
3046 raise Exception("Unexpected eap_session_id value: " + status['eap_session_id'])
40759604
JM
3047
3048def test_ap_wpa2_eap_interactive(dev, apdev):
3049 """WPA2-Enterprise connection using interactive identity/password entry"""
e7ac04ce 3050 check_eap_capa(dev[0], "MSCHAPV2")
40759604 3051 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
6f334bf7 3052 hapd = hostapd.add_ap(apdev[0], params)
40759604
JM
3053
3054 tests = [ ("Connection with dynamic TTLS/MSCHAPv2 password entry",
3055 "TTLS", "ttls", "DOMAIN\mschapv2 user", "auth=MSCHAPV2",
3056 None, "password"),
3057 ("Connection with dynamic TTLS/MSCHAPv2 identity and password entry",
3058 "TTLS", "ttls", None, "auth=MSCHAPV2",
3059 "DOMAIN\mschapv2 user", "password"),
3060 ("Connection with dynamic TTLS/EAP-MSCHAPv2 password entry",
3061 "TTLS", "ttls", "user", "autheap=MSCHAPV2", None, "password"),
3062 ("Connection with dynamic TTLS/EAP-MD5 password entry",
3063 "TTLS", "ttls", "user", "autheap=MD5", None, "password"),
3064 ("Connection with dynamic PEAP/EAP-MSCHAPv2 password entry",
3065 "PEAP", None, "user", "auth=MSCHAPV2", None, "password"),
3066 ("Connection with dynamic PEAP/EAP-GTC password entry",
3067 "PEAP", None, "user", "auth=GTC", None, "password") ]
3068 for [desc,eap,anon,identity,phase2,req_id,req_pw] in tests:
3069 logger.info(desc)
3070 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap=eap,
3071 anonymous_identity=anon, identity=identity,
3072 ca_cert="auth_serv/ca.pem", phase2=phase2,
3073 wait_connect=False, scan_freq="2412")
3074 if req_id:
3075 ev = dev[0].wait_event(["CTRL-REQ-IDENTITY"])
3076 if ev is None:
3077 raise Exception("Request for identity timed out")
3078 id = ev.split(':')[0].split('-')[-1]
3079 dev[0].request("CTRL-RSP-IDENTITY-" + id + ":" + req_id)
3080 ev = dev[0].wait_event(["CTRL-REQ-PASSWORD","CTRL-REQ-OTP"])
3081 if ev is None:
3082 raise Exception("Request for password timed out")
3083 id = ev.split(':')[0].split('-')[-1]
3084 type = "OTP" if "CTRL-REQ-OTP" in ev else "PASSWORD"
3085 dev[0].request("CTRL-RSP-" + type + "-" + id + ":" + req_pw)
5f35a5e2 3086 dev[0].wait_connected(timeout=10)
40759604 3087 dev[0].request("REMOVE_NETWORK all")
e745c811 3088
f455998a
JM
3089def test_ap_wpa2_eap_ext_enable_network_while_connected(dev, apdev):
3090 """WPA2-Enterprise interactive identity entry and ENABLE_NETWORK"""
3091 check_eap_capa(dev[0], "MSCHAPV2")
3092 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
6f334bf7 3093 hapd = hostapd.add_ap(apdev[0], params)
f455998a
JM
3094
3095 id_other = dev[0].connect("other", key_mgmt="NONE", scan_freq="2412",
3096 only_add_network=True)
3097
3098 req_id = "DOMAIN\mschapv2 user"
3099 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
3100 anonymous_identity="ttls", identity=None,
3101 password="password",
3102 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3103 wait_connect=False, scan_freq="2412")
3104 ev = dev[0].wait_event(["CTRL-REQ-IDENTITY"])
3105 if ev is None:
3106 raise Exception("Request for identity timed out")
3107 id = ev.split(':')[0].split('-')[-1]
3108 dev[0].request("CTRL-RSP-IDENTITY-" + id + ":" + req_id)
3109 dev[0].wait_connected(timeout=10)
3110
3111 if "OK" not in dev[0].request("ENABLE_NETWORK " + str(id_other)):
3112 raise Exception("Failed to enable network")
3113 ev = dev[0].wait_event(["SME: Trying to authenticate"], timeout=1)
3114 if ev is not None:
3115 raise Exception("Unexpected reconnection attempt on ENABLE_NETWORK")
3116 dev[0].request("REMOVE_NETWORK all")
3117
e745c811
JM
3118def test_ap_wpa2_eap_vendor_test(dev, apdev):
3119 """WPA2-Enterprise connection using EAP vendor test"""
3120 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
3121 hapd = hostapd.add_ap(apdev[0], params)
3122 eap_connect(dev[0], hapd, "VENDOR-TEST", "vendor-test")
e745c811 3123 eap_reauth(dev[0], "VENDOR-TEST")
3b3e2687 3124 eap_connect(dev[1], hapd, "VENDOR-TEST", "vendor-test",
467775c5 3125 password="pending")
53a6f06a 3126
79a3973c
JM
3127def test_ap_wpa2_eap_vendor_test_oom(dev, apdev):
3128 """WPA2-Enterprise connection using EAP vendor test (OOM)"""
3129 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 3130 hostapd.add_ap(apdev[0], params)
79a3973c
JM
3131
3132 tests = [ "eap_vendor_test_init",
3133 "eap_msg_alloc;eap_vendor_test_process",
3134 "eap_vendor_test_getKey" ]
3135 for func in tests:
3136 with alloc_fail(dev[0], 1, func):
3137 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP",
3138 scan_freq="2412",
3139 eap="VENDOR-TEST", identity="vendor-test",
3140 wait_connect=False)
3141 wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
3142 dev[0].request("REMOVE_NETWORK all")
3143 dev[0].wait_disconnected()
3144
53a6f06a
JM
3145def test_ap_wpa2_eap_fast_mschapv2_unauth_prov(dev, apdev):
3146 """WPA2-Enterprise connection using EAP-FAST/MSCHAPv2 and unauthenticated provisioning"""
3b51cc63 3147 check_eap_capa(dev[0], "FAST")
53a6f06a 3148 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 3149 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 3150 eap_connect(dev[0], hapd, "FAST", "user",
53a6f06a
JM
3151 anonymous_identity="FAST", password="password",
3152 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3153 phase1="fast_provisioning=1", pac_file="blob://fast_pac")
a8375c94 3154 hwsim_utils.test_connectivity(dev[0], hapd)
2fc4749c
JM
3155 res = eap_reauth(dev[0], "FAST")
3156 if res['tls_session_reused'] != '1':
3157 raise Exception("EAP-FAST could not use PAC session ticket")
53a6f06a 3158
873e7c29
JM
3159def test_ap_wpa2_eap_fast_pac_file(dev, apdev, params):
3160 """WPA2-Enterprise connection using EAP-FAST/MSCHAPv2 and PAC file"""
3b51cc63 3161 check_eap_capa(dev[0], "FAST")
873e7c29
JM
3162 pac_file = os.path.join(params['logdir'], "fast.pac")
3163 pac_file2 = os.path.join(params['logdir'], "fast-bin.pac")
3164 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687 3165 hapd = hostapd.add_ap(apdev[0], params)
873e7c29
JM
3166
3167 try:
3b3e2687 3168 eap_connect(dev[0], hapd, "FAST", "user",
873e7c29
JM
3169 anonymous_identity="FAST", password="password",
3170 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3171 phase1="fast_provisioning=1", pac_file=pac_file)
3172 with open(pac_file, "r") as f:
3173 data = f.read()
3174 if "wpa_supplicant EAP-FAST PAC file - version 1" not in data:
3175 raise Exception("PAC file header missing")
3176 if "PAC-Key=" not in data:
3177 raise Exception("PAC-Key missing from PAC file")
3178 dev[0].request("REMOVE_NETWORK all")
3b3e2687 3179 eap_connect(dev[0], hapd, "FAST", "user",
873e7c29
JM
3180 anonymous_identity="FAST", password="password",
3181 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3182 pac_file=pac_file)
3183
3b3e2687 3184 eap_connect(dev[1], hapd, "FAST", "user",
873e7c29
JM
3185 anonymous_identity="FAST", password="password",
3186 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3187 phase1="fast_provisioning=1 fast_pac_format=binary",
3188 pac_file=pac_file2)
3189 dev[1].request("REMOVE_NETWORK all")
3b3e2687 3190 eap_connect(dev[1], hapd, "FAST", "user",
873e7c29
JM
3191 anonymous_identity="FAST", password="password",
3192 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3193 phase1="fast_pac_format=binary",
3194 pac_file=pac_file2)
3195 finally:
b638f703
JM
3196 try:
3197 os.remove(pac_file)
3198 except:
3199 pass
3200 try:
3201 os.remove(pac_file2)
3202 except:
3203 pass
873e7c29 3204
c6ab1cdb
JM
3205def test_ap_wpa2_eap_fast_binary_pac(dev, apdev):
3206 """WPA2-Enterprise connection using EAP-FAST and binary PAC format"""
3b51cc63 3207 check_eap_capa(dev[0], "FAST")
c6ab1cdb 3208 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
3209 hapd = hostapd.add_ap(apdev[0], params)
3210 eap_connect(dev[0], hapd, "FAST", "user",
c6ab1cdb
JM
3211 anonymous_identity="FAST", password="password",
3212 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3213 phase1="fast_provisioning=1 fast_max_pac_list_len=1 fast_pac_format=binary",
3214 pac_file="blob://fast_pac_bin")
2fc4749c
JM
3215 res = eap_reauth(dev[0], "FAST")
3216 if res['tls_session_reused'] != '1':
3217 raise Exception("EAP-FAST could not use PAC session ticket")
c6ab1cdb 3218
d7ef6e63
JM
3219 # Verify fast_max_pac_list_len=0 special case
3220 dev[0].request("REMOVE_NETWORK all")
3221 dev[0].wait_disconnected()
3b3e2687 3222 eap_connect(dev[0], hapd, "FAST", "user",
d7ef6e63
JM
3223 anonymous_identity="FAST", password="password",
3224 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3225 phase1="fast_provisioning=1 fast_max_pac_list_len=0 fast_pac_format=binary",
3226 pac_file="blob://fast_pac_bin")
3227
46e094bd
JM
3228def test_ap_wpa2_eap_fast_missing_pac_config(dev, apdev):
3229 """WPA2-Enterprise connection using EAP-FAST and missing PAC config"""
3b51cc63 3230 check_eap_capa(dev[0], "FAST")
46e094bd 3231 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 3232 hostapd.add_ap(apdev[0], params)
46e094bd
JM
3233
3234 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="FAST",
3235 identity="user", anonymous_identity="FAST",
3236 password="password",
3237 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3238 pac_file="blob://fast_pac_not_in_use",
3239 wait_connect=False, scan_freq="2412")
3240 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
3241 if ev is None:
3242 raise Exception("Timeout on EAP failure report")
3243 dev[0].request("REMOVE_NETWORK all")
3244
3245 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="FAST",
3246 identity="user", anonymous_identity="FAST",
3247 password="password",
3248 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3249 wait_connect=False, scan_freq="2412")
3250 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
3251 if ev is None:
3252 raise Exception("Timeout on EAP failure report")
3253
93aa1e16
JM
3254def test_ap_wpa2_eap_fast_binary_pac_errors(dev, apdev):
3255 """EAP-FAST and binary PAC errors"""
3256 check_eap_capa(dev[0], "FAST")
3257 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687 3258 hapd = hostapd.add_ap(apdev[0], params)
93aa1e16
JM
3259
3260 tests = [ (1, "=eap_fast_save_pac_bin"),
3261 (1, "eap_fast_write_pac"),
3262 (2, "eap_fast_write_pac"), ]
3263 for count, func in tests:
3264 if "OK" not in dev[0].request("SET blob fast_pac_bin_errors "):
3265 raise Exception("Could not set blob")
3266
3267 with alloc_fail(dev[0], count, func):
3b3e2687 3268 eap_connect(dev[0], hapd, "FAST", "user",
93aa1e16
JM
3269 anonymous_identity="FAST", password="password",
3270 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3271 phase1="fast_provisioning=1 fast_pac_format=binary",
3272 pac_file="blob://fast_pac_bin_errors")
3273 dev[0].request("REMOVE_NETWORK all")
3274 dev[0].wait_disconnected()
3275
3276 tests = [ "00", "000000000000", "6ae4920c0001",
3277 "6ae4920c000000",
3278 "6ae4920c0000" + "0000" + 32*"00" + "ffff" + "0000",
3279 "6ae4920c0000" + "0000" + 32*"00" + "0001" + "0000",
3280 "6ae4920c0000" + "0000" + 32*"00" + "0000" + "0001",
3281 "6ae4920c0000" + "0000" + 32*"00" + "0000" + "0008" + "00040000" + "0007000100"]
3282 for t in tests:
3283 if "OK" not in dev[0].request("SET blob fast_pac_bin_errors " + t):
3284 raise Exception("Could not set blob")
3285
3286 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="FAST",
3287 identity="user", anonymous_identity="FAST",
3288 password="password",
3289 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3290 phase1="fast_provisioning=1 fast_pac_format=binary",
3291 pac_file="blob://fast_pac_bin_errors",
3292 scan_freq="2412", wait_connect=False)
3293 ev = dev[0].wait_event(["EAP: Failed to initialize EAP method"],
3294 timeout=5)
3295 if ev is None:
3296 raise Exception("Failure not reported")
3297 dev[0].request("REMOVE_NETWORK all")
3298 dev[0].wait_disconnected()
3299
3300 pac = "6ae4920c0000" + "0000" + 32*"00" + "0000" + "0000"
3301 tests = [ (1, "eap_fast_load_pac_bin"),
3302 (2, "eap_fast_load_pac_bin"),
3303 (3, "eap_fast_load_pac_bin") ]
3304 for count, func in tests:
3305 if "OK" not in dev[0].request("SET blob fast_pac_bin_errors " + pac):
3306 raise Exception("Could not set blob")
3307
3308 with alloc_fail(dev[0], count, func):
3309 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="FAST",
3310 identity="user", anonymous_identity="FAST",
3311 password="password",
3312 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3313 phase1="fast_provisioning=1 fast_pac_format=binary",
3314 pac_file="blob://fast_pac_bin_errors",
3315 scan_freq="2412", wait_connect=False)
3316 ev = dev[0].wait_event(["EAP: Failed to initialize EAP method"],
3317 timeout=5)
3318 if ev is None:
3319 raise Exception("Failure not reported")
3320 dev[0].request("REMOVE_NETWORK all")
3321 dev[0].wait_disconnected()
3322
3323 pac = "6ae4920c0000" + "0000" + 32*"00" + "0000" + "0005" + "0011223344"
3324 if "OK" not in dev[0].request("SET blob fast_pac_bin_errors " + pac):
3325 raise Exception("Could not set blob")
3326
3b3e2687 3327 eap_connect(dev[0], hapd, "FAST", "user",
93aa1e16
JM
3328 anonymous_identity="FAST", password="password",
3329 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3330 phase1="fast_provisioning=1 fast_pac_format=binary",
3331 pac_file="blob://fast_pac_bin_errors")
3332 dev[0].request("REMOVE_NETWORK all")
3333 dev[0].wait_disconnected()
3334
3335 pac = "6ae4920c0000" + "0000" + 32*"00" + "0000" + "0009" + "00040000" + "0007000100"
3336 tests = [ (1, "eap_fast_pac_get_a_id"),
3337 (2, "eap_fast_pac_get_a_id") ]
3338 for count, func in tests:
3339 if "OK" not in dev[0].request("SET blob fast_pac_bin_errors " + pac):
3340 raise Exception("Could not set blob")
3341 with alloc_fail(dev[0], count, func):
3b3e2687 3342 eap_connect(dev[0], hapd, "FAST", "user",
93aa1e16
JM
3343 anonymous_identity="FAST", password="password",
3344 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3345 phase1="fast_provisioning=1 fast_pac_format=binary",
3346 pac_file="blob://fast_pac_bin_errors")
3347 dev[0].request("REMOVE_NETWORK all")
3348 dev[0].wait_disconnected()
3349
592790bf
JM
3350def test_ap_wpa2_eap_fast_text_pac_errors(dev, apdev):
3351 """EAP-FAST and text PAC errors"""
3352 check_eap_capa(dev[0], "FAST")
3353 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 3354 hostapd.add_ap(apdev[0], params)
592790bf
JM
3355
3356 tests = [ (1, "eap_fast_parse_hex;eap_fast_parse_pac_key"),
3357 (1, "eap_fast_parse_hex;eap_fast_parse_pac_opaque"),
3358 (1, "eap_fast_parse_hex;eap_fast_parse_a_id"),
3359 (1, "eap_fast_parse_start"),
3360 (1, "eap_fast_save_pac") ]
3361 for count, func in tests:
3362 dev[0].request("FLUSH")
3363 if "OK" not in dev[0].request("SET blob fast_pac_text_errors "):
3364 raise Exception("Could not set blob")
3365
3366 with alloc_fail(dev[0], count, func):
3367 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="FAST",
3368 identity="user", anonymous_identity="FAST",
3369 password="password",
3370 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3371 phase1="fast_provisioning=1",
3372 pac_file="blob://fast_pac_text_errors",
3373 scan_freq="2412", wait_connect=False)
3374 wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
3375 dev[0].request("REMOVE_NETWORK all")
3376 dev[0].wait_disconnected()
3377
3378 pac = "wpa_supplicant EAP-FAST PAC file - version 1\n"
3379 pac += "START\n"
3380 pac += "PAC-Type\n"
3381 pac += "END\n"
3382 if "OK" not in dev[0].request("SET blob fast_pac_text_errors " + pac.encode("hex")):
3383 raise Exception("Could not set blob")
3384
3385 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="FAST",
3386 identity="user", anonymous_identity="FAST",
3387 password="password",
3388 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3389 phase1="fast_provisioning=1",
3390 pac_file="blob://fast_pac_text_errors",
3391 scan_freq="2412", wait_connect=False)
3392 ev = dev[0].wait_event(["EAP: Failed to initialize EAP method"], timeout=5)
3393 if ev is None:
3394 raise Exception("Failure not reported")
3395 dev[0].request("REMOVE_NETWORK all")
3396 dev[0].wait_disconnected()
3397
3398 dev[0].request("FLUSH")
3399 if "OK" not in dev[0].request("SET blob fast_pac_text_errors "):
3400 raise Exception("Could not set blob")
3401
3402 with alloc_fail(dev[0], 1, "eap_fast_add_pac_data"):
3403 for i in range(3):
3404 params = int_eap_server_params()
3405 params['ssid'] = "test-wpa2-eap-2"
3406 params['pac_opaque_encr_key'] = "000102030405060708090a0b0c0dff%02x" % i
3407 params['eap_fast_a_id'] = "101112131415161718191a1b1c1dff%02x" % i
3408 params['eap_fast_a_id_info'] = "test server %d" % i
3409
8b8a1864 3410 hapd2 = hostapd.add_ap(apdev[1], params)
592790bf
JM
3411
3412 dev[0].connect("test-wpa2-eap-2", key_mgmt="WPA-EAP", eap="FAST",
3413 identity="user", anonymous_identity="FAST",
3414 password="password",
3415 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3416 phase1="fast_provisioning=1",
3417 pac_file="blob://fast_pac_text_errors",
3418 scan_freq="2412", wait_connect=False)
3419 dev[0].wait_connected()
3420 dev[0].request("REMOVE_NETWORK all")
3421 dev[0].wait_disconnected()
3422
3423 hapd2.disable()
3424
3425def test_ap_wpa2_eap_fast_pac_truncate(dev, apdev):
3426 """EAP-FAST and PAC list truncation"""
3427 check_eap_capa(dev[0], "FAST")
3428 if "OK" not in dev[0].request("SET blob fast_pac_truncate "):
3429 raise Exception("Could not set blob")
3430 for i in range(5):
3431 params = int_eap_server_params()
3432 params['pac_opaque_encr_key'] = "000102030405060708090a0b0c0dff%02x" % i
3433 params['eap_fast_a_id'] = "101112131415161718191a1b1c1dff%02x" % i
3434 params['eap_fast_a_id_info'] = "test server %d" % i
8b8a1864 3435 hapd = hostapd.add_ap(apdev[0], params)
592790bf
JM
3436
3437 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="FAST",
3438 identity="user", anonymous_identity="FAST",
3439 password="password",
3440 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3441 phase1="fast_provisioning=1 fast_max_pac_list_len=2",
3442 pac_file="blob://fast_pac_truncate",
3443 scan_freq="2412", wait_connect=False)
3444 dev[0].wait_connected()
3445 dev[0].request("REMOVE_NETWORK all")
3446 dev[0].wait_disconnected()
3447
3448 hapd.disable()
3449
3450def test_ap_wpa2_eap_fast_pac_refresh(dev, apdev):
3451 """EAP-FAST and PAC refresh"""
3452 check_eap_capa(dev[0], "FAST")
3453 if "OK" not in dev[0].request("SET blob fast_pac_refresh "):
3454 raise Exception("Could not set blob")
3455 for i in range(2):
3456 params = int_eap_server_params()
3457 params['pac_opaque_encr_key'] = "000102030405060708090a0b0c0dff%02x" % i
3458 params['eap_fast_a_id'] = "101112131415161718191a1b1c1dff%02x" % i
3459 params['eap_fast_a_id_info'] = "test server %d" % i
3460 params['pac_key_refresh_time'] = "1"
3461 params['pac_key_lifetime'] = "10"
8b8a1864 3462 hapd = hostapd.add_ap(apdev[0], params)
592790bf
JM
3463
3464 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="FAST",
3465 identity="user", anonymous_identity="FAST",
3466 password="password",
3467 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3468 phase1="fast_provisioning=1",
3469 pac_file="blob://fast_pac_refresh",
3470 scan_freq="2412", wait_connect=False)
3471 dev[0].wait_connected()
3472 dev[0].request("REMOVE_NETWORK all")
3473 dev[0].wait_disconnected()
3474
3475 hapd.disable()
3476
3477 for i in range(2):
3478 params = int_eap_server_params()
3479 params['pac_opaque_encr_key'] = "000102030405060708090a0b0c0dff%02x" % i
3480 params['eap_fast_a_id'] = "101112131415161718191a1b1c1dff%02x" % i
3481 params['eap_fast_a_id_info'] = "test server %d" % i
3482 params['pac_key_refresh_time'] = "10"
3483 params['pac_key_lifetime'] = "10"
8b8a1864 3484 hapd = hostapd.add_ap(apdev[0], params)
592790bf
JM
3485
3486 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="FAST",
3487 identity="user", anonymous_identity="FAST",
3488 password="password",
3489 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3490 phase1="fast_provisioning=1",
3491 pac_file="blob://fast_pac_refresh",
3492 scan_freq="2412", wait_connect=False)
3493 dev[0].wait_connected()
3494 dev[0].request("REMOVE_NETWORK all")
3495 dev[0].wait_disconnected()
3496
3497 hapd.disable()
3498
3499def test_ap_wpa2_eap_fast_pac_lifetime(dev, apdev):
3500 """EAP-FAST and PAC lifetime"""
3501 check_eap_capa(dev[0], "FAST")
3502 if "OK" not in dev[0].request("SET blob fast_pac_refresh "):
3503 raise Exception("Could not set blob")
3504
3505 i = 0
3506 params = int_eap_server_params()
3507 params['pac_opaque_encr_key'] = "000102030405060708090a0b0c0dff%02x" % i
3508 params['eap_fast_a_id'] = "101112131415161718191a1b1c1dff%02x" % i
3509 params['eap_fast_a_id_info'] = "test server %d" % i
3510 params['pac_key_refresh_time'] = "0"
3511 params['pac_key_lifetime'] = "2"
8b8a1864 3512 hapd = hostapd.add_ap(apdev[0], params)
592790bf
JM
3513
3514 id = dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="FAST",
3515 identity="user", anonymous_identity="FAST",
3516 password="password",
3517 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3518 phase1="fast_provisioning=2",
3519 pac_file="blob://fast_pac_refresh",
3520 scan_freq="2412", wait_connect=False)
3521 dev[0].wait_connected()
3522 dev[0].request("DISCONNECT")
3523 dev[0].wait_disconnected()
3524
3525 time.sleep(3)
3526 dev[0].request("PMKSA_FLUSH")
3527 dev[0].request("RECONNECT")
3528 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=10)
3529 if ev is None:
3530 raise Exception("No EAP-Failure seen after expired PAC")
3531 dev[0].request("DISCONNECT")
3532 dev[0].wait_disconnected()
3533
3534 dev[0].select_network(id)
3535 dev[0].wait_connected()
3536 dev[0].request("REMOVE_NETWORK all")
3537 dev[0].wait_disconnected()
3538
53a6f06a
JM
3539def test_ap_wpa2_eap_fast_gtc_auth_prov(dev, apdev):
3540 """WPA2-Enterprise connection using EAP-FAST/GTC and authenticated provisioning"""
3b51cc63 3541 check_eap_capa(dev[0], "FAST")
53a6f06a 3542 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 3543 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 3544 eap_connect(dev[0], hapd, "FAST", "user",
53a6f06a
JM
3545 anonymous_identity="FAST", password="password",
3546 ca_cert="auth_serv/ca.pem", phase2="auth=GTC",
3547 phase1="fast_provisioning=2", pac_file="blob://fast_pac_auth")
a8375c94 3548 hwsim_utils.test_connectivity(dev[0], hapd)
2fc4749c
JM
3549 res = eap_reauth(dev[0], "FAST")
3550 if res['tls_session_reused'] != '1':
3551 raise Exception("EAP-FAST could not use PAC session ticket")
d4c7a2b9 3552
95a15d79
JM
3553def test_ap_wpa2_eap_fast_gtc_identity_change(dev, apdev):
3554 """WPA2-Enterprise connection using EAP-FAST/GTC and identity changing"""
3555 check_eap_capa(dev[0], "FAST")
3556 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 3557 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 3558 id = eap_connect(dev[0], hapd, "FAST", "user",
95a15d79
JM
3559 anonymous_identity="FAST", password="password",
3560 ca_cert="auth_serv/ca.pem", phase2="auth=GTC",
3561 phase1="fast_provisioning=2",
3562 pac_file="blob://fast_pac_auth")
3563 dev[0].set_network_quoted(id, "identity", "user2")
3564 dev[0].wait_disconnected()
3565 ev = dev[0].wait_event(["CTRL-EVENT-EAP-METHOD"], timeout=15)
3566 if ev is None:
3567 raise Exception("EAP-FAST not started")
3568 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=5)
3569 if ev is None:
3570 raise Exception("EAP failure not reported")
3571 dev[0].wait_disconnected()
3572
27f2fab0
JM
3573def test_ap_wpa2_eap_fast_prf_oom(dev, apdev):
3574 """WPA2-Enterprise connection using EAP-FAST and OOM in PRF"""
3575 check_eap_capa(dev[0], "FAST")
cc71035f
JM
3576 tls = dev[0].request("GET tls_library")
3577 if tls.startswith("OpenSSL"):
90b4c73f 3578 func = "tls_connection_get_eap_fast_key"
cc71035f
JM
3579 count = 2
3580 elif tls.startswith("internal"):
3581 func = "tls_connection_prf"
3582 count = 1
3583 else:
3584 raise HwsimSkip("Unsupported TLS library")
27f2fab0 3585 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 3586 hapd = hostapd.add_ap(apdev[0], params)
cc71035f 3587 with alloc_fail(dev[0], count, func):
27f2fab0
JM
3588 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="FAST",
3589 identity="user", anonymous_identity="FAST",
3590 password="password", ca_cert="auth_serv/ca.pem",
3591 phase2="auth=GTC",
3592 phase1="fast_provisioning=2",
3593 pac_file="blob://fast_pac_auth",
3594 wait_connect=False, scan_freq="2412")
3595 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=15)
3596 if ev is None:
3597 raise Exception("EAP failure not reported")
3598 dev[0].request("DISCONNECT")
3599
6eddd530
JM
3600def test_ap_wpa2_eap_fast_server_oom(dev, apdev):
3601 """EAP-FAST/MSCHAPv2 and server OOM"""
3602 check_eap_capa(dev[0], "FAST")
3603
3604 params = int_eap_server_params()
3605 params['dh_file'] = 'auth_serv/dh.conf'
3606 params['pac_opaque_encr_key'] = '000102030405060708090a0b0c0d0e0f'
3607 params['eap_fast_a_id'] = '1011'
3608 params['eap_fast_a_id_info'] = 'another test server'
8b8a1864 3609 hapd = hostapd.add_ap(apdev[0], params)
6eddd530
JM
3610
3611 with alloc_fail(hapd, 1, "tls_session_ticket_ext_cb"):
3b3e2687 3612 id = eap_connect(dev[0], hapd, "FAST", "user",
6eddd530
JM
3613 anonymous_identity="FAST", password="password",
3614 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3615 phase1="fast_provisioning=1",
3616 pac_file="blob://fast_pac",
3617 expect_failure=True)
3618 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=10)
3619 if ev is None:
3620 raise Exception("No EAP failure reported")
3621 dev[0].wait_disconnected()
3622 dev[0].request("DISCONNECT")
3623
3624 dev[0].select_network(id, freq="2412")
3625
ecd07de4
JM
3626def test_ap_wpa2_eap_fast_cipher_suites(dev, apdev):
3627 """EAP-FAST and different TLS cipher suites"""
3628 check_eap_capa(dev[0], "FAST")
3629 tls = dev[0].request("GET tls_library")
d8003dcb
SP
3630 if not tls.startswith("OpenSSL") and not tls.startswith("wolfSSL"):
3631 raise HwsimSkip("TLS library is not OpenSSL or wolfSSL: " + tls)
ecd07de4
JM
3632
3633 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 3634 hapd = hostapd.add_ap(apdev[0], params)
ecd07de4
JM
3635
3636 dev[0].request("SET blob fast_pac_ciphers ")
3b3e2687 3637 eap_connect(dev[0], hapd, "FAST", "user",
ecd07de4
JM
3638 anonymous_identity="FAST", password="password",
3639 ca_cert="auth_serv/ca.pem", phase2="auth=GTC",
3640 phase1="fast_provisioning=2",
3641 pac_file="blob://fast_pac_ciphers")
3642 res = dev[0].get_status_field('EAP TLS cipher')
3643 dev[0].request("REMOVE_NETWORK all")
3644 dev[0].wait_disconnected()
3645 if res != "DHE-RSA-AES256-SHA":
3646 raise Exception("Unexpected cipher suite for provisioning: " + res)
3647
3648 tests = [ "DHE-RSA-AES128-SHA",
3649 "RC4-SHA",
3650 "AES128-SHA",
3651 "AES256-SHA",
3652 "DHE-RSA-AES256-SHA" ]
3653 for cipher in tests:
71666dc3
JM
3654 dev[0].dump_monitor()
3655 logger.info("Testing " + cipher)
3656 try:
3b3e2687 3657 eap_connect(dev[0], hapd, "FAST", "user",
71666dc3
JM
3658 openssl_ciphers=cipher,
3659 anonymous_identity="FAST", password="password",
3660 ca_cert="auth_serv/ca.pem", phase2="auth=GTC",
3661 pac_file="blob://fast_pac_ciphers")
3662 except Exception, e:
3663 if "Could not select EAP method" in str(e) and cipher == "RC4-SHA":
3664 tls = dev[0].request("GET tls_library")
3665 if "run=OpenSSL 1.1" in tls:
3666 logger.info("Allow failure due to missing TLS library support")
3667 dev[0].request("REMOVE_NETWORK all")
3668 dev[0].wait_disconnected()
3669 continue
3670 raise
ecd07de4
JM
3671 res = dev[0].get_status_field('EAP TLS cipher')
3672 dev[0].request("REMOVE_NETWORK all")
3673 dev[0].wait_disconnected()
3674 if res != cipher:
3675 raise Exception("Unexpected TLS cipher info (configured %s): %s" % (cipher, res))
3676
4c626382
JM
3677def test_ap_wpa2_eap_fast_prov(dev, apdev):
3678 """EAP-FAST and provisioning options"""
3679 check_eap_capa(dev[0], "FAST")
3680 if "OK" not in dev[0].request("SET blob fast_pac_prov "):
3681 raise Exception("Could not set blob")
3682
3683 i = 100
3684 params = int_eap_server_params()
3685 params['disable_pmksa_caching'] = '1'
3686 params['pac_opaque_encr_key'] = "000102030405060708090a0b0c0dff%02x" % i
3687 params['eap_fast_a_id'] = "101112131415161718191a1b1c1dff%02x" % i
3688 params['eap_fast_a_id_info'] = "test server %d" % i
3689 params['eap_fast_prov'] = "0"
3690 hapd = hostapd.add_ap(apdev[0], params)
3691
3692 logger.info("Provisioning attempt while server has provisioning disabled")
3693 id = dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="FAST",
3694 identity="user", anonymous_identity="FAST",
3695 password="password",
3696 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
3697 phase1="fast_provisioning=2",
3698 pac_file="blob://fast_pac_prov",
3699 scan_freq="2412", wait_connect=False)
3700 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS status='completion'"],
3701 timeout=15)
3702 if ev is None:
3703 raise Exception("EAP result not reported")
3704 if "parameter='failure'" not in ev:
3705 raise Exception("Unexpected EAP result: " + ev)
3706 dev[0].wait_disconnected()
3707 dev[0].request("DISCONNECT")
3708 dev[0].dump_monitor()
3709
3710 hapd.disable()
3711 logger.info("Authenticated provisioning")
3712 hapd.set("eap_fast_prov", "2")
3713 hapd.enable()
3714
3715 dev[0].select_network(id, freq="2412")
3716 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS status='completion'"],
3717 timeout=15)
3718 if ev is None:
3719 raise Exception("EAP result not reported")
3720 if "parameter='success'" not in ev:
3721 raise Exception("Unexpected EAP result: " + ev)
3722 dev[0].wait_connected()
3723 dev[0].request("DISCONNECT")
3724 dev[0].wait_disconnected()
3725 dev[0].dump_monitor()
3726
3727 hapd.disable()
3728 logger.info("Provisioning disabled - using previously provisioned PAC")
3729 hapd.set("eap_fast_prov", "0")
3730 hapd.enable()
3731
3732 dev[0].select_network(id, freq="2412")
3733 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS status='completion'"],
3734 timeout=15)
3735 if ev is None:
3736 raise Exception("EAP result not reported")
3737 if "parameter='success'" not in ev:
3738 raise Exception("Unexpected EAP result: " + ev)
3739 dev[0].wait_connected()
3740 dev[0].request("DISCONNECT")
3741 dev[0].wait_disconnected()
3742 dev[0].dump_monitor()
3743
3744 logger.info("Drop PAC and verify connection failure")
3745 if "OK" not in dev[0].request("SET blob fast_pac_prov "):
3746 raise Exception("Could not set blob")
3747
3748 dev[0].select_network(id, freq="2412")
3749 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS status='completion'"],
3750 timeout=15)
3751 if ev is None:
3752 raise Exception("EAP result not reported")
3753 if "parameter='failure'" not in ev:
3754 raise Exception("Unexpected EAP result: " + ev)
3755 dev[0].wait_disconnected()
3756 dev[0].request("DISCONNECT")
3757 dev[0].dump_monitor()
3758
3759 hapd.disable()
3760 logger.info("Anonymous provisioning")
3761 hapd.set("eap_fast_prov", "1")
3762 hapd.enable()
3763 dev[0].set_network_quoted(id, "phase1", "fast_provisioning=1")
3764 dev[0].select_network(id, freq="2412")
3765 # Anonymous provisioning results in EAP-Failure first
3766 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS status='completion'"],
3767 timeout=15)
3768 if ev is None:
3769 raise Exception("EAP result not reported")
3770 if "parameter='failure'" not in ev:
3771 raise Exception("Unexpected EAP result: " + ev)
3772 dev[0].wait_disconnected()
3773 # And then the actual data connection
3774 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS status='completion'"],
3775 timeout=15)
3776 if ev is None:
3777 raise Exception("EAP result not reported")
3778 if "parameter='success'" not in ev:
3779 raise Exception("Unexpected EAP result: " + ev)
3780 dev[0].wait_connected()
3781 dev[0].request("DISCONNECT")
3782 dev[0].wait_disconnected()
3783 dev[0].dump_monitor()
3784
3785 hapd.disable()
3786 logger.info("Provisioning disabled - using previously provisioned PAC")
3787 hapd.set("eap_fast_prov", "0")
3788 hapd.enable()
3789
3790 dev[0].select_network(id, freq="2412")
3791 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS status='completion'"],
3792 timeout=15)
3793 if ev is None:
3794 raise Exception("EAP result not reported")
3795 if "parameter='success'" not in ev:
3796 raise Exception("Unexpected EAP result: " + ev)
3797 dev[0].wait_connected()
3798 dev[0].request("DISCONNECT")
3799 dev[0].wait_disconnected()
3800 dev[0].dump_monitor()
3801
d4c7a2b9
JM
3802def test_ap_wpa2_eap_tls_ocsp(dev, apdev):
3803 """WPA2-Enterprise connection using EAP-TLS and verifying OCSP"""
0dae8c99 3804 check_ocsp_support(dev[0])
16c43d2a 3805 check_pkcs12_support(dev[0])
d4c7a2b9 3806 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
3807 hapd = hostapd.add_ap(apdev[0], params)
3808 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
d4c7a2b9
JM
3809 private_key="auth_serv/user.pkcs12",
3810 private_key_passwd="whatever", ocsp=2)
3811
98d125ca
JM
3812def test_ap_wpa2_eap_tls_ocsp_multi(dev, apdev):
3813 """WPA2-Enterprise connection using EAP-TLS and verifying OCSP-multi"""
3814 check_ocsp_multi_support(dev[0])
3815 check_pkcs12_support(dev[0])
3816
3817 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
3818 hapd = hostapd.add_ap(apdev[0], params)
3819 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
98d125ca
JM
3820 private_key="auth_serv/user.pkcs12",
3821 private_key_passwd="whatever", ocsp=2)
3822
64e05f96 3823def int_eap_server_params():
d4c7a2b9
JM
3824 params = { "ssid": "test-wpa2-eap", "wpa": "2", "wpa_key_mgmt": "WPA-EAP",
3825 "rsn_pairwise": "CCMP", "ieee8021x": "1",
3826 "eap_server": "1", "eap_user_file": "auth_serv/eap_user.conf",
3827 "ca_cert": "auth_serv/ca.pem",
3828 "server_cert": "auth_serv/server.pem",
8adce07a
JM
3829 "private_key": "auth_serv/server.key",
3830 "dh_file": "auth_serv/dh.conf" }
64e05f96 3831 return params
d2a1047e 3832
58a40620
JM
3833def test_ap_wpa2_eap_tls_ocsp_key_id(dev, apdev, params):
3834 """EAP-TLS and OCSP certificate signed OCSP response using key ID"""
3835 check_ocsp_support(dev[0])
ff7affcc 3836 check_pkcs12_support(dev[0])
58a40620
JM
3837 ocsp = os.path.join(params['logdir'], "ocsp-server-cache-key-id.der")
3838 if not os.path.exists(ocsp):
3839 raise HwsimSkip("No OCSP response available")
3840 params = int_eap_server_params()
3841 params["ocsp_stapling_response"] = ocsp
8b8a1864 3842 hostapd.add_ap(apdev[0], params)
58a40620
JM
3843 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
3844 identity="tls user", ca_cert="auth_serv/ca.pem",
3845 private_key="auth_serv/user.pkcs12",
3846 private_key_passwd="whatever", ocsp=2,
3847 scan_freq="2412")
3848
d79ce4a6
JM
3849def test_ap_wpa2_eap_tls_ocsp_ca_signed_good(dev, apdev, params):
3850 """EAP-TLS and CA signed OCSP response (good)"""
3851 check_ocsp_support(dev[0])
ff7affcc 3852 check_pkcs12_support(dev[0])
d79ce4a6
JM
3853 ocsp = os.path.join(params['logdir'], "ocsp-resp-ca-signed.der")
3854 if not os.path.exists(ocsp):
3855 raise HwsimSkip("No OCSP response available")
3856 params = int_eap_server_params()
3857 params["ocsp_stapling_response"] = ocsp
8b8a1864 3858 hostapd.add_ap(apdev[0], params)
d79ce4a6
JM
3859 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
3860 identity="tls user", ca_cert="auth_serv/ca.pem",
3861 private_key="auth_serv/user.pkcs12",
3862 private_key_passwd="whatever", ocsp=2,
3863 scan_freq="2412")
3864
3865def test_ap_wpa2_eap_tls_ocsp_ca_signed_revoked(dev, apdev, params):
3866 """EAP-TLS and CA signed OCSP response (revoked)"""
3867 check_ocsp_support(dev[0])
ff7affcc 3868 check_pkcs12_support(dev[0])
d79ce4a6
JM
3869 ocsp = os.path.join(params['logdir'], "ocsp-resp-ca-signed-revoked.der")
3870 if not os.path.exists(ocsp):
3871 raise HwsimSkip("No OCSP response available")
3872 params = int_eap_server_params()
3873 params["ocsp_stapling_response"] = ocsp
8b8a1864 3874 hostapd.add_ap(apdev[0], params)
d79ce4a6
JM
3875 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
3876 identity="tls user", ca_cert="auth_serv/ca.pem",
3877 private_key="auth_serv/user.pkcs12",
3878 private_key_passwd="whatever", ocsp=2,
3879 wait_connect=False, scan_freq="2412")
3880 count = 0
3881 while True:
3882 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS"])
3883 if ev is None:
3884 raise Exception("Timeout on EAP status")
3885 if 'bad certificate status response' in ev:
3886 break
3887 if 'certificate revoked' in ev:
3888 break
3889 count = count + 1
3890 if count > 10:
3891 raise Exception("Unexpected number of EAP status messages")
3892
3893 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
3894 if ev is None:
3895 raise Exception("Timeout on EAP failure report")
3896
3897def test_ap_wpa2_eap_tls_ocsp_ca_signed_unknown(dev, apdev, params):
3898 """EAP-TLS and CA signed OCSP response (unknown)"""
3899 check_ocsp_support(dev[0])
ff7affcc 3900 check_pkcs12_support(dev[0])
d79ce4a6
JM
3901 ocsp = os.path.join(params['logdir'], "ocsp-resp-ca-signed-unknown.der")
3902 if not os.path.exists(ocsp):
3903 raise HwsimSkip("No OCSP response available")
3904 params = int_eap_server_params()
3905 params["ocsp_stapling_response"] = ocsp
8b8a1864 3906 hostapd.add_ap(apdev[0], params)
d79ce4a6
JM
3907 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
3908 identity="tls user", ca_cert="auth_serv/ca.pem",
3909 private_key="auth_serv/user.pkcs12",
3910 private_key_passwd="whatever", ocsp=2,
3911 wait_connect=False, scan_freq="2412")
3912 count = 0
3913 while True:
3914 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS"])
3915 if ev is None:
3916 raise Exception("Timeout on EAP status")
3917 if 'bad certificate status response' in ev:
3918 break
3919 count = count + 1
3920 if count > 10:
3921 raise Exception("Unexpected number of EAP status messages")
3922
3923 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
3924 if ev is None:
3925 raise Exception("Timeout on EAP failure report")
3926
3927def test_ap_wpa2_eap_tls_ocsp_server_signed(dev, apdev, params):
3928 """EAP-TLS and server signed OCSP response"""
3929 check_ocsp_support(dev[0])
ff7affcc 3930 check_pkcs12_support(dev[0])
d79ce4a6
JM
3931 ocsp = os.path.join(params['logdir'], "ocsp-resp-server-signed.der")
3932 if not os.path.exists(ocsp):
3933 raise HwsimSkip("No OCSP response available")
3934 params = int_eap_server_params()
3935 params["ocsp_stapling_response"] = ocsp
8b8a1864 3936 hostapd.add_ap(apdev[0], params)
d79ce4a6
JM
3937 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
3938 identity="tls user", ca_cert="auth_serv/ca.pem",
3939 private_key="auth_serv/user.pkcs12",
3940 private_key_passwd="whatever", ocsp=2,
3941 wait_connect=False, scan_freq="2412")
3942 count = 0
3943 while True:
3944 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS"])
3945 if ev is None:
3946 raise Exception("Timeout on EAP status")
3947 if 'bad certificate status response' in ev:
3948 break
3949 count = count + 1
3950 if count > 10:
3951 raise Exception("Unexpected number of EAP status messages")
3952
3953 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
3954 if ev is None:
3955 raise Exception("Timeout on EAP failure report")
3956
d2a1047e
JM
3957def test_ap_wpa2_eap_tls_ocsp_invalid_data(dev, apdev):
3958 """WPA2-Enterprise connection using EAP-TLS and invalid OCSP data"""
0dae8c99 3959 check_ocsp_support(dev[0])
ff7affcc 3960 check_pkcs12_support(dev[0])
d2a1047e
JM
3961 params = int_eap_server_params()
3962 params["ocsp_stapling_response"] = "auth_serv/ocsp-req.der"
8b8a1864 3963 hostapd.add_ap(apdev[0], params)
d2a1047e
JM
3964 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
3965 identity="tls user", ca_cert="auth_serv/ca.pem",
3966 private_key="auth_serv/user.pkcs12",
3967 private_key_passwd="whatever", ocsp=2,
3968 wait_connect=False, scan_freq="2412")
3969 count = 0
3970 while True:
3971 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS"])
3972 if ev is None:
3973 raise Exception("Timeout on EAP status")
3974 if 'bad certificate status response' in ev:
3975 break
3976 count = count + 1
3977 if count > 10:
3978 raise Exception("Unexpected number of EAP status messages")
3979
3980 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
3981 if ev is None:
3982 raise Exception("Timeout on EAP failure report")
3983
64e05f96
JM
3984def test_ap_wpa2_eap_tls_ocsp_invalid(dev, apdev):
3985 """WPA2-Enterprise connection using EAP-TLS and invalid OCSP response"""
0dae8c99 3986 check_ocsp_support(dev[0])
ff7affcc 3987 check_pkcs12_support(dev[0])
64e05f96
JM
3988 params = int_eap_server_params()
3989 params["ocsp_stapling_response"] = "auth_serv/ocsp-server-cache.der-invalid"
8b8a1864 3990 hostapd.add_ap(apdev[0], params)
df7ad0fa
JM
3991 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
3992 identity="tls user", ca_cert="auth_serv/ca.pem",
3993 private_key="auth_serv/user.pkcs12",
3994 private_key_passwd="whatever", ocsp=2,
3995 wait_connect=False, scan_freq="2412")
3996 count = 0
3997 while True:
3998 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS"])
3999 if ev is None:
4000 raise Exception("Timeout on EAP status")
4001 if 'bad certificate status response' in ev:
4002 break
4003 count = count + 1
4004 if count > 10:
4005 raise Exception("Unexpected number of EAP status messages")
4006
4007 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
4008 if ev is None:
4009 raise Exception("Timeout on EAP failure report")
4010
4011def test_ap_wpa2_eap_tls_ocsp_unknown_sign(dev, apdev):
4012 """WPA2-Enterprise connection using EAP-TLS and unknown OCSP signer"""
0dae8c99 4013 check_ocsp_support(dev[0])
ff7affcc 4014 check_pkcs12_support(dev[0])
df7ad0fa
JM
4015 params = int_eap_server_params()
4016 params["ocsp_stapling_response"] = "auth_serv/ocsp-server-cache.der-unknown-sign"
8b8a1864 4017 hostapd.add_ap(apdev[0], params)
d4c7a2b9
JM
4018 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
4019 identity="tls user", ca_cert="auth_serv/ca.pem",
4020 private_key="auth_serv/user.pkcs12",
4021 private_key_passwd="whatever", ocsp=2,
4022 wait_connect=False, scan_freq="2412")
4023 count = 0
4024 while True:
4025 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS"])
4026 if ev is None:
4027 raise Exception("Timeout on EAP status")
4028 if 'bad certificate status response' in ev:
4029 break
4030 count = count + 1
4031 if count > 10:
4032 raise Exception("Unexpected number of EAP status messages")
4033
4034 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
4035 if ev is None:
4036 raise Exception("Timeout on EAP failure report")
64e05f96 4037
37b4a66c
JM
4038def test_ap_wpa2_eap_ttls_ocsp_revoked(dev, apdev, params):
4039 """WPA2-Enterprise connection using EAP-TTLS and OCSP status revoked"""
0dae8c99 4040 check_ocsp_support(dev[0])
37b4a66c
JM
4041 ocsp = os.path.join(params['logdir'], "ocsp-server-cache-revoked.der")
4042 if not os.path.exists(ocsp):
4043 raise HwsimSkip("No OCSP response available")
4044 params = int_eap_server_params()
4045 params["ocsp_stapling_response"] = ocsp
8b8a1864 4046 hostapd.add_ap(apdev[0], params)
37b4a66c
JM
4047 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4048 identity="pap user", ca_cert="auth_serv/ca.pem",
4049 anonymous_identity="ttls", password="password",
4050 phase2="auth=PAP", ocsp=2,
4051 wait_connect=False, scan_freq="2412")
4052 count = 0
4053 while True:
4054 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS"])
4055 if ev is None:
4056 raise Exception("Timeout on EAP status")
4057 if 'bad certificate status response' in ev:
4058 break
4059 if 'certificate revoked' in ev:
4060 break
4061 count = count + 1
4062 if count > 10:
4063 raise Exception("Unexpected number of EAP status messages")
4064
4065 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
4066 if ev is None:
4067 raise Exception("Timeout on EAP failure report")
4068
4069def test_ap_wpa2_eap_ttls_ocsp_unknown(dev, apdev, params):
4070 """WPA2-Enterprise connection using EAP-TTLS and OCSP status revoked"""
0dae8c99 4071 check_ocsp_support(dev[0])
37b4a66c
JM
4072 ocsp = os.path.join(params['logdir'], "ocsp-server-cache-unknown.der")
4073 if not os.path.exists(ocsp):
4074 raise HwsimSkip("No OCSP response available")
4075 params = int_eap_server_params()
4076 params["ocsp_stapling_response"] = ocsp
8b8a1864 4077 hostapd.add_ap(apdev[0], params)
37b4a66c
JM
4078 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4079 identity="pap user", ca_cert="auth_serv/ca.pem",
4080 anonymous_identity="ttls", password="password",
4081 phase2="auth=PAP", ocsp=2,
4082 wait_connect=False, scan_freq="2412")
4083 count = 0
4084 while True:
4085 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS"])
4086 if ev is None:
4087 raise Exception("Timeout on EAP status")
4088 if 'bad certificate status response' in ev:
4089 break
4090 count = count + 1
4091 if count > 10:
4092 raise Exception("Unexpected number of EAP status messages")
4093
4094 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
4095 if ev is None:
4096 raise Exception("Timeout on EAP failure report")
4097
4098def test_ap_wpa2_eap_ttls_optional_ocsp_unknown(dev, apdev, params):
4099 """WPA2-Enterprise connection using EAP-TTLS and OCSP status revoked"""
4100 ocsp = os.path.join(params['logdir'], "ocsp-server-cache-unknown.der")
4101 if not os.path.exists(ocsp):
4102 raise HwsimSkip("No OCSP response available")
4103 params = int_eap_server_params()
4104 params["ocsp_stapling_response"] = ocsp
8b8a1864 4105 hostapd.add_ap(apdev[0], params)
37b4a66c
JM
4106 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4107 identity="pap user", ca_cert="auth_serv/ca.pem",
4108 anonymous_identity="ttls", password="password",
4109 phase2="auth=PAP", ocsp=1, scan_freq="2412")
4110
52811b8c
JM
4111def test_ap_wpa2_eap_tls_intermediate_ca(dev, apdev, params):
4112 """EAP-TLS with intermediate server/user CA"""
4113 params = int_eap_server_params()
4114 params["ca_cert"] = "auth_serv/iCA-server/ca-and-root.pem"
4115 params["server_cert"] = "auth_serv/iCA-server/server.pem"
4116 params["private_key"] = "auth_serv/iCA-server/server.key"
8b8a1864 4117 hostapd.add_ap(apdev[0], params)
b4635f0a
JM
4118 tls = dev[0].request("GET tls_library")
4119 if "GnuTLS" in tls:
4120 ca_cert = "auth_serv/iCA-user/ca-and-root.pem"
4121 client_cert = "auth_serv/iCA-user/user_and_ica.pem"
4122 else:
4123 ca_cert = "auth_serv/iCA-user/ca-and-root.pem"
4124 client_cert = "auth_serv/iCA-user/user.pem"
52811b8c
JM
4125 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
4126 identity="tls user",
b4635f0a
JM
4127 ca_cert=ca_cert,
4128 client_cert=client_cert,
52811b8c
JM
4129 private_key="auth_serv/iCA-user/user.key",
4130 scan_freq="2412")
4131
4132def root_ocsp(cert):
4133 ca = "auth_serv/ca.pem"
4134
4135 fd2, fn2 = tempfile.mkstemp()
4136 os.close(fd2)
4137
d40d959e
JB
4138 arg = [ "openssl", "ocsp", "-reqout", fn2, "-issuer", ca, "-sha256",
4139 "-cert", cert, "-no_nonce", "-text" ]
4140 logger.info(' '.join(arg))
52811b8c
JM
4141 cmd = subprocess.Popen(arg, stdout=subprocess.PIPE,
4142 stderr=subprocess.PIPE)
4143 res = cmd.stdout.read() + "\n" + cmd.stderr.read()
4144 cmd.stdout.close()
4145 cmd.stderr.close()
d40d959e
JB
4146 cmd.wait()
4147 if cmd.returncode != 0:
4148 raise Exception("bad return code from openssl ocsp\n\n" + res)
52811b8c
JM
4149 logger.info("OCSP request:\n" + res)
4150
4151 fd, fn = tempfile.mkstemp()
4152 os.close(fd)
40ae4a2f
JM
4153 arg = [ "openssl", "ocsp", "-index", "auth_serv/rootCA/index.txt",
4154 "-rsigner", ca, "-rkey", "auth_serv/ca-key.pem",
52811b8c
JM
4155 "-CA", ca, "-issuer", ca, "-verify_other", ca, "-trust_other",
4156 "-ndays", "7", "-reqin", fn2, "-resp_no_certs", "-respout", fn,
4157 "-text" ]
4158 cmd = subprocess.Popen(arg, stdout=subprocess.PIPE,
4159 stderr=subprocess.PIPE)
4160 res = cmd.stdout.read() + "\n" + cmd.stderr.read()
4161 cmd.stdout.close()
4162 cmd.stderr.close()
d40d959e
JB
4163 cmd.wait()
4164 if cmd.returncode != 0:
4165 raise Exception("bad return code from openssl ocsp\n\n" + res)
52811b8c
JM
4166 logger.info("OCSP response:\n" + res)
4167 os.unlink(fn2)
4168 return fn
4169
b7288e5d 4170def ica_ocsp(cert, md="-sha256"):
52811b8c
JM
4171 prefix = "auth_serv/iCA-server/"
4172 ca = prefix + "cacert.pem"
4173 cert = prefix + cert
4174
4175 fd2, fn2 = tempfile.mkstemp()
4176 os.close(fd2)
4177
b7288e5d 4178 arg = [ "openssl", "ocsp", "-reqout", fn2, "-issuer", ca, md,
d40d959e 4179 "-cert", cert, "-no_nonce", "-text" ]
52811b8c
JM
4180 cmd = subprocess.Popen(arg, stdout=subprocess.PIPE,
4181 stderr=subprocess.PIPE)
4182 res = cmd.stdout.read() + "\n" + cmd.stderr.read()
4183 cmd.stdout.close()
4184 cmd.stderr.close()
d40d959e
JB
4185 cmd.wait()
4186 if cmd.returncode != 0:
4187 raise Exception("bad return code from openssl ocsp\n\n" + res)
52811b8c
JM
4188 logger.info("OCSP request:\n" + res)
4189
4190 fd, fn = tempfile.mkstemp()
4191 os.close(fd)
4192 arg = [ "openssl", "ocsp", "-index", prefix + "index.txt",
4193 "-rsigner", ca, "-rkey", prefix + "private/cakey.pem",
4194 "-CA", ca, "-issuer", ca, "-verify_other", ca, "-trust_other",
4195 "-ndays", "7", "-reqin", fn2, "-resp_no_certs", "-respout", fn,
4196 "-text" ]
4197 cmd = subprocess.Popen(arg, stdout=subprocess.PIPE,
4198 stderr=subprocess.PIPE)
4199 res = cmd.stdout.read() + "\n" + cmd.stderr.read()
4200 cmd.stdout.close()
4201 cmd.stderr.close()
d40d959e
JB
4202 cmd.wait()
4203 if cmd.returncode != 0:
4204 raise Exception("bad return code from openssl ocsp\n\n" + res)
52811b8c
JM
4205 logger.info("OCSP response:\n" + res)
4206 os.unlink(fn2)
4207 return fn
4208
4209def test_ap_wpa2_eap_tls_intermediate_ca_ocsp(dev, apdev, params):
4210 """EAP-TLS with intermediate server/user CA and OCSP on server certificate"""
b7288e5d
JM
4211 run_ap_wpa2_eap_tls_intermediate_ca_ocsp(dev, apdev, params, "-sha256")
4212
4213def test_ap_wpa2_eap_tls_intermediate_ca_ocsp_sha1(dev, apdev, params):
4214 """EAP-TLS with intermediate server/user CA and OCSP on server certificate )SHA1)"""
4215 run_ap_wpa2_eap_tls_intermediate_ca_ocsp(dev, apdev, params, "-sha1")
4216
4217def run_ap_wpa2_eap_tls_intermediate_ca_ocsp(dev, apdev, params, md):
52811b8c
JM
4218 params = int_eap_server_params()
4219 params["ca_cert"] = "auth_serv/iCA-server/ca-and-root.pem"
4220 params["server_cert"] = "auth_serv/iCA-server/server.pem"
4221 params["private_key"] = "auth_serv/iCA-server/server.key"
b7288e5d 4222 fn = ica_ocsp("server.pem", md)
52811b8c
JM
4223 params["ocsp_stapling_response"] = fn
4224 try:
8b8a1864 4225 hostapd.add_ap(apdev[0], params)
b4635f0a
JM
4226 tls = dev[0].request("GET tls_library")
4227 if "GnuTLS" in tls:
4228 ca_cert = "auth_serv/iCA-user/ca-and-root.pem"
4229 client_cert = "auth_serv/iCA-user/user_and_ica.pem"
4230 else:
4231 ca_cert = "auth_serv/iCA-user/ca-and-root.pem"
4232 client_cert = "auth_serv/iCA-user/user.pem"
52811b8c
JM
4233 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
4234 identity="tls user",
b4635f0a
JM
4235 ca_cert=ca_cert,
4236 client_cert=client_cert,
52811b8c
JM
4237 private_key="auth_serv/iCA-user/user.key",
4238 scan_freq="2412", ocsp=2)
4239 finally:
4240 os.unlink(fn)
4241
4242def test_ap_wpa2_eap_tls_intermediate_ca_ocsp_revoked(dev, apdev, params):
4243 """EAP-TLS with intermediate server/user CA and OCSP on revoked server certificate"""
b7288e5d
JM
4244 run_ap_wpa2_eap_tls_intermediate_ca_ocsp_revoked(dev, apdev, params,
4245 "-sha256")
4246
4247def test_ap_wpa2_eap_tls_intermediate_ca_ocsp_revoked_sha1(dev, apdev, params):
4248 """EAP-TLS with intermediate server/user CA and OCSP on revoked server certificate (SHA1)"""
4249 run_ap_wpa2_eap_tls_intermediate_ca_ocsp_revoked(dev, apdev, params,
4250 "-sha1")
4251
4252def run_ap_wpa2_eap_tls_intermediate_ca_ocsp_revoked(dev, apdev, params, md):
52811b8c
JM
4253 params = int_eap_server_params()
4254 params["ca_cert"] = "auth_serv/iCA-server/ca-and-root.pem"
4255 params["server_cert"] = "auth_serv/iCA-server/server-revoked.pem"
4256 params["private_key"] = "auth_serv/iCA-server/server-revoked.key"
b7288e5d 4257 fn = ica_ocsp("server-revoked.pem", md)
52811b8c
JM
4258 params["ocsp_stapling_response"] = fn
4259 try:
8b8a1864 4260 hostapd.add_ap(apdev[0], params)
b4635f0a
JM
4261 tls = dev[0].request("GET tls_library")
4262 if "GnuTLS" in tls:
4263 ca_cert = "auth_serv/iCA-user/ca-and-root.pem"
4264 client_cert = "auth_serv/iCA-user/user_and_ica.pem"
4265 else:
4266 ca_cert = "auth_serv/iCA-user/ca-and-root.pem"
4267 client_cert = "auth_serv/iCA-user/user.pem"
52811b8c
JM
4268 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
4269 identity="tls user",
b4635f0a
JM
4270 ca_cert=ca_cert,
4271 client_cert=client_cert,
52811b8c
JM
4272 private_key="auth_serv/iCA-user/user.key",
4273 scan_freq="2412", ocsp=1, wait_connect=False)
4274 count = 0
4275 while True:
4276 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS",
4277 "CTRL-EVENT-EAP-SUCCESS"])
4278 if ev is None:
4279 raise Exception("Timeout on EAP status")
4280 if "CTRL-EVENT-EAP-SUCCESS" in ev:
4281 raise Exception("Unexpected EAP-Success")
4282 if 'bad certificate status response' in ev:
4283 break
4284 if 'certificate revoked' in ev:
4285 break
4286 count = count + 1
4287 if count > 10:
4288 raise Exception("Unexpected number of EAP status messages")
4289
4290 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
4291 if ev is None:
4292 raise Exception("Timeout on EAP failure report")
4293 dev[0].request("REMOVE_NETWORK all")
4294 dev[0].wait_disconnected()
4295 finally:
4296 os.unlink(fn)
4297
4298def test_ap_wpa2_eap_tls_intermediate_ca_ocsp_multi_missing_resp(dev, apdev, params):
4299 """EAP-TLS with intermediate server/user CA and OCSP multi missing response"""
4300 check_ocsp_support(dev[0])
4301 check_ocsp_multi_support(dev[0])
4302
4303 params = int_eap_server_params()
4304 params["ca_cert"] = "auth_serv/iCA-server/ca-and-root.pem"
4305 params["server_cert"] = "auth_serv/iCA-server/server.pem"
4306 params["private_key"] = "auth_serv/iCA-server/server.key"
4307 fn = ica_ocsp("server.pem")
4308 params["ocsp_stapling_response"] = fn
4309 try:
8b8a1864 4310 hostapd.add_ap(apdev[0], params)
b4635f0a
JM
4311 tls = dev[0].request("GET tls_library")
4312 if "GnuTLS" in tls:
4313 ca_cert = "auth_serv/iCA-user/ca-and-root.pem"
4314 client_cert = "auth_serv/iCA-user/user_and_ica.pem"
4315 else:
4316 ca_cert = "auth_serv/iCA-user/ca-and-root.pem"
4317 client_cert = "auth_serv/iCA-user/user.pem"
52811b8c
JM
4318 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
4319 identity="tls user",
b4635f0a
JM
4320 ca_cert=ca_cert,
4321 client_cert=client_cert,
52811b8c
JM
4322 private_key="auth_serv/iCA-user/user.key",
4323 scan_freq="2412", ocsp=3, wait_connect=False)
4324 count = 0
4325 while True:
4326 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS",
4327 "CTRL-EVENT-EAP-SUCCESS"])
4328 if ev is None:
4329 raise Exception("Timeout on EAP status")
4330 if "CTRL-EVENT-EAP-SUCCESS" in ev:
4331 raise Exception("Unexpected EAP-Success")
4332 if 'bad certificate status response' in ev:
4333 break
4334 if 'certificate revoked' in ev:
4335 break
4336 count = count + 1
4337 if count > 10:
4338 raise Exception("Unexpected number of EAP status messages")
4339
4340 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
4341 if ev is None:
4342 raise Exception("Timeout on EAP failure report")
4343 dev[0].request("REMOVE_NETWORK all")
4344 dev[0].wait_disconnected()
4345 finally:
4346 os.unlink(fn)
4347
4348def test_ap_wpa2_eap_tls_intermediate_ca_ocsp_multi(dev, apdev, params):
4349 """EAP-TLS with intermediate server/user CA and OCSP multi OK"""
4350 check_ocsp_support(dev[0])
4351 check_ocsp_multi_support(dev[0])
4352
4353 params = int_eap_server_params()
4354 params["ca_cert"] = "auth_serv/iCA-server/ca-and-root.pem"
4355 params["server_cert"] = "auth_serv/iCA-server/server.pem"
4356 params["private_key"] = "auth_serv/iCA-server/server.key"
4357 fn = ica_ocsp("server.pem")
4358 fn2 = root_ocsp("auth_serv/iCA-server/cacert.pem")
4359 params["ocsp_stapling_response"] = fn
4360
4361 with open(fn, "r") as f:
4362 resp_server = f.read()
4363 with open(fn2, "r") as f:
4364 resp_ica = f.read()
4365
4366 fd3, fn3 = tempfile.mkstemp()
4367 try:
4368 f = os.fdopen(fd3, 'w')
4369 f.write(struct.pack(">L", len(resp_server))[1:4])
4370 f.write(resp_server)
4371 f.write(struct.pack(">L", len(resp_ica))[1:4])
4372 f.write(resp_ica)
4373 f.close()
4374
4375 params["ocsp_stapling_response_multi"] = fn3
4376
8b8a1864 4377 hostapd.add_ap(apdev[0], params)
b4635f0a
JM
4378 tls = dev[0].request("GET tls_library")
4379 if "GnuTLS" in tls:
4380 ca_cert = "auth_serv/iCA-user/ca-and-root.pem"
4381 client_cert = "auth_serv/iCA-user/user_and_ica.pem"
4382 else:
4383 ca_cert = "auth_serv/iCA-user/ca-and-root.pem"
4384 client_cert = "auth_serv/iCA-user/user.pem"
52811b8c
JM
4385 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
4386 identity="tls user",
b4635f0a
JM
4387 ca_cert=ca_cert,
4388 client_cert=client_cert,
52811b8c 4389 private_key="auth_serv/iCA-user/user.key",
40ae4a2f 4390 scan_freq="2412", ocsp=3)
52811b8c
JM
4391 dev[0].request("REMOVE_NETWORK all")
4392 dev[0].wait_disconnected()
4393 finally:
4394 os.unlink(fn)
4395 os.unlink(fn2)
4396 os.unlink(fn3)
4397
98d125ca
JM
4398def test_ap_wpa2_eap_tls_ocsp_multi_revoked(dev, apdev, params):
4399 """EAP-TLS and CA signed OCSP multi response (revoked)"""
4400 check_ocsp_support(dev[0])
4401 check_ocsp_multi_support(dev[0])
ff7affcc 4402 check_pkcs12_support(dev[0])
98d125ca
JM
4403
4404 ocsp_revoked = os.path.join(params['logdir'],
4405 "ocsp-resp-ca-signed-revoked.der")
4406 if not os.path.exists(ocsp_revoked):
4407 raise HwsimSkip("No OCSP response (revoked) available")
4408 ocsp_unknown = os.path.join(params['logdir'],
4409 "ocsp-resp-ca-signed-unknown.der")
4410 if not os.path.exists(ocsp_unknown):
4411 raise HwsimSkip("No OCSP response(unknown) available")
4412
4413 with open(ocsp_revoked, "r") as f:
4414 resp_revoked = f.read()
4415 with open(ocsp_unknown, "r") as f:
4416 resp_unknown = f.read()
4417
4418 fd, fn = tempfile.mkstemp()
4419 try:
4420 # This is not really a valid order of the OCSPResponse items in the
4421 # list, but this works for now to verify parsing and processing of
4422 # multiple responses.
4423 f = os.fdopen(fd, 'w')
4424 f.write(struct.pack(">L", len(resp_unknown))[1:4])
4425 f.write(resp_unknown)
4426 f.write(struct.pack(">L", len(resp_revoked))[1:4])
4427 f.write(resp_revoked)
4428 f.write(struct.pack(">L", 0)[1:4])
4429 f.write(struct.pack(">L", len(resp_unknown))[1:4])
4430 f.write(resp_unknown)
4431 f.close()
4432
4433 params = int_eap_server_params()
4434 params["ocsp_stapling_response_multi"] = fn
8b8a1864 4435 hostapd.add_ap(apdev[0], params)
98d125ca
JM
4436 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
4437 identity="tls user", ca_cert="auth_serv/ca.pem",
4438 private_key="auth_serv/user.pkcs12",
4439 private_key_passwd="whatever", ocsp=1,
4440 wait_connect=False, scan_freq="2412")
4441 count = 0
4442 while True:
4443 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS",
4444 "CTRL-EVENT-EAP-SUCCESS"])
4445 if ev is None:
4446 raise Exception("Timeout on EAP status")
4447 if "CTRL-EVENT-EAP-SUCCESS" in ev:
4448 raise Exception("Unexpected EAP-Success")
4449 if 'bad certificate status response' in ev:
4450 break
4451 if 'certificate revoked' in ev:
4452 break
4453 count = count + 1
4454 if count > 10:
4455 raise Exception("Unexpected number of EAP status messages")
4456 finally:
4457 os.unlink(fn)
4458
24579e70 4459def test_ap_wpa2_eap_tls_domain_suffix_match_cn_full(dev, apdev):
64e05f96 4460 """WPA2-Enterprise using EAP-TLS and domain suffix match (CN)"""
e78eb404 4461 check_domain_match_full(dev[0])
ff7affcc 4462 check_pkcs12_support(dev[0])
64e05f96
JM
4463 params = int_eap_server_params()
4464 params["server_cert"] = "auth_serv/server-no-dnsname.pem"
4465 params["private_key"] = "auth_serv/server-no-dnsname.key"
8b8a1864 4466 hostapd.add_ap(apdev[0], params)
64e05f96
JM
4467 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
4468 identity="tls user", ca_cert="auth_serv/ca.pem",
4469 private_key="auth_serv/user.pkcs12",
4470 private_key_passwd="whatever",
4471 domain_suffix_match="server3.w1.fi",
4472 scan_freq="2412")
24579e70 4473
061cbb25
JM
4474def test_ap_wpa2_eap_tls_domain_match_cn(dev, apdev):
4475 """WPA2-Enterprise using EAP-TLS and domainmatch (CN)"""
e78eb404 4476 check_domain_match(dev[0])
ff7affcc 4477 check_pkcs12_support(dev[0])
061cbb25
JM
4478 params = int_eap_server_params()
4479 params["server_cert"] = "auth_serv/server-no-dnsname.pem"
4480 params["private_key"] = "auth_serv/server-no-dnsname.key"
8b8a1864 4481 hostapd.add_ap(apdev[0], params)
061cbb25
JM
4482 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
4483 identity="tls user", ca_cert="auth_serv/ca.pem",
4484 private_key="auth_serv/user.pkcs12",
4485 private_key_passwd="whatever",
4486 domain_match="server3.w1.fi",
4487 scan_freq="2412")
4488
24579e70
JM
4489def test_ap_wpa2_eap_tls_domain_suffix_match_cn(dev, apdev):
4490 """WPA2-Enterprise using EAP-TLS and domain suffix match (CN)"""
4491 check_domain_match_full(dev[0])
ff7affcc 4492 check_pkcs12_support(dev[0])
24579e70
JM
4493 params = int_eap_server_params()
4494 params["server_cert"] = "auth_serv/server-no-dnsname.pem"
4495 params["private_key"] = "auth_serv/server-no-dnsname.key"
8b8a1864 4496 hostapd.add_ap(apdev[0], params)
64e05f96
JM
4497 dev[1].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
4498 identity="tls user", ca_cert="auth_serv/ca.pem",
4499 private_key="auth_serv/user.pkcs12",
4500 private_key_passwd="whatever",
4501 domain_suffix_match="w1.fi",
4502 scan_freq="2412")
4503
4504def test_ap_wpa2_eap_tls_domain_suffix_mismatch_cn(dev, apdev):
4505 """WPA2-Enterprise using EAP-TLS and domain suffix mismatch (CN)"""
e78eb404 4506 check_domain_suffix_match(dev[0])
ff7affcc 4507 check_pkcs12_support(dev[0])
64e05f96
JM
4508 params = int_eap_server_params()
4509 params["server_cert"] = "auth_serv/server-no-dnsname.pem"
4510 params["private_key"] = "auth_serv/server-no-dnsname.key"
8b8a1864 4511 hostapd.add_ap(apdev[0], params)
64e05f96
JM
4512 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
4513 identity="tls user", ca_cert="auth_serv/ca.pem",
4514 private_key="auth_serv/user.pkcs12",
4515 private_key_passwd="whatever",
4516 domain_suffix_match="example.com",
4517 wait_connect=False,
4518 scan_freq="2412")
c61dca40
JM
4519 dev[1].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
4520 identity="tls user", ca_cert="auth_serv/ca.pem",
4521 private_key="auth_serv/user.pkcs12",
4522 private_key_passwd="whatever",
4523 domain_suffix_match="erver3.w1.fi",
4524 wait_connect=False,
4525 scan_freq="2412")
64e05f96
JM
4526 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
4527 if ev is None:
4528 raise Exception("Timeout on EAP failure report")
c61dca40
JM
4529 ev = dev[1].wait_event(["CTRL-EVENT-EAP-FAILURE"])
4530 if ev is None:
4531 raise Exception("Timeout on EAP failure report (2)")
6a4d0dbe 4532
061cbb25
JM
4533def test_ap_wpa2_eap_tls_domain_mismatch_cn(dev, apdev):
4534 """WPA2-Enterprise using EAP-TLS and domain mismatch (CN)"""
e78eb404 4535 check_domain_match(dev[0])
ff7affcc 4536 check_pkcs12_support(dev[0])
061cbb25
JM
4537 params = int_eap_server_params()
4538 params["server_cert"] = "auth_serv/server-no-dnsname.pem"
4539 params["private_key"] = "auth_serv/server-no-dnsname.key"
8b8a1864 4540 hostapd.add_ap(apdev[0], params)
061cbb25
JM
4541 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
4542 identity="tls user", ca_cert="auth_serv/ca.pem",
4543 private_key="auth_serv/user.pkcs12",
4544 private_key_passwd="whatever",
4545 domain_match="example.com",
4546 wait_connect=False,
4547 scan_freq="2412")
4548 dev[1].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
4549 identity="tls user", ca_cert="auth_serv/ca.pem",
4550 private_key="auth_serv/user.pkcs12",
4551 private_key_passwd="whatever",
4552 domain_match="w1.fi",
4553 wait_connect=False,
4554 scan_freq="2412")
4555 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
4556 if ev is None:
4557 raise Exception("Timeout on EAP failure report")
4558 ev = dev[1].wait_event(["CTRL-EVENT-EAP-FAILURE"])
4559 if ev is None:
4560 raise Exception("Timeout on EAP failure report (2)")
4561
6a4d0dbe
JM
4562def test_ap_wpa2_eap_ttls_expired_cert(dev, apdev):
4563 """WPA2-Enterprise using EAP-TTLS and expired certificate"""
ca158ea6 4564 skip_with_fips(dev[0])
6a4d0dbe
JM
4565 params = int_eap_server_params()
4566 params["server_cert"] = "auth_serv/server-expired.pem"
4567 params["private_key"] = "auth_serv/server-expired.key"
8b8a1864 4568 hostapd.add_ap(apdev[0], params)
6a4d0dbe
JM
4569 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4570 identity="mschap user", password="password",
4571 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
4572 wait_connect=False,
4573 scan_freq="2412")
4574 ev = dev[0].wait_event(["CTRL-EVENT-EAP-TLS-CERT-ERROR"])
4575 if ev is None:
4576 raise Exception("Timeout on EAP certificate error report")
4577 if "reason=4" not in ev or "certificate has expired" not in ev:
4578 raise Exception("Unexpected failure reason: " + ev)
4579 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
4580 if ev is None:
4581 raise Exception("Timeout on EAP failure report")
4582
4583def test_ap_wpa2_eap_ttls_ignore_expired_cert(dev, apdev):
4584 """WPA2-Enterprise using EAP-TTLS and ignore certificate expiration"""
ca158ea6 4585 skip_with_fips(dev[0])
6a4d0dbe
JM
4586 params = int_eap_server_params()
4587 params["server_cert"] = "auth_serv/server-expired.pem"
4588 params["private_key"] = "auth_serv/server-expired.key"
8b8a1864 4589 hostapd.add_ap(apdev[0], params)
6a4d0dbe
JM
4590 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4591 identity="mschap user", password="password",
4592 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
4593 phase1="tls_disable_time_checks=1",
4594 scan_freq="2412")
6ab4a7aa 4595
5748d1e5
JM
4596def test_ap_wpa2_eap_ttls_long_duration(dev, apdev):
4597 """WPA2-Enterprise using EAP-TTLS and long certificate duration"""
ca158ea6 4598 skip_with_fips(dev[0])
5748d1e5
JM
4599 params = int_eap_server_params()
4600 params["server_cert"] = "auth_serv/server-long-duration.pem"
4601 params["private_key"] = "auth_serv/server-long-duration.key"
8b8a1864 4602 hostapd.add_ap(apdev[0], params)
5748d1e5
JM
4603 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4604 identity="mschap user", password="password",
4605 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
4606 scan_freq="2412")
4607
6ab4a7aa
JM
4608def test_ap_wpa2_eap_ttls_server_cert_eku_client(dev, apdev):
4609 """WPA2-Enterprise using EAP-TTLS and server cert with client EKU"""
ca158ea6 4610 skip_with_fips(dev[0])
6ab4a7aa
JM
4611 params = int_eap_server_params()
4612 params["server_cert"] = "auth_serv/server-eku-client.pem"
4613 params["private_key"] = "auth_serv/server-eku-client.key"
8b8a1864 4614 hostapd.add_ap(apdev[0], params)
6ab4a7aa
JM
4615 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4616 identity="mschap user", password="password",
4617 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
4618 wait_connect=False,
4619 scan_freq="2412")
4620 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
4621 if ev is None:
4622 raise Exception("Timeout on EAP failure report")
242219c5 4623
14bef66d
JM
4624def test_ap_wpa2_eap_ttls_server_cert_eku_client_server(dev, apdev):
4625 """WPA2-Enterprise using EAP-TTLS and server cert with client and server EKU"""
ca158ea6 4626 skip_with_fips(dev[0])
14bef66d
JM
4627 params = int_eap_server_params()
4628 params["server_cert"] = "auth_serv/server-eku-client-server.pem"
4629 params["private_key"] = "auth_serv/server-eku-client-server.key"
8b8a1864 4630 hostapd.add_ap(apdev[0], params)
14bef66d
JM
4631 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4632 identity="mschap user", password="password",
4633 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
4634 scan_freq="2412")
4635
c37b02fc
JM
4636def test_ap_wpa2_eap_ttls_server_pkcs12(dev, apdev):
4637 """WPA2-Enterprise using EAP-TTLS and server PKCS#12 file"""
ca158ea6 4638 skip_with_fips(dev[0])
c37b02fc
JM
4639 params = int_eap_server_params()
4640 del params["server_cert"]
4641 params["private_key"] = "auth_serv/server.pkcs12"
8b8a1864 4642 hostapd.add_ap(apdev[0], params)
c37b02fc
JM
4643 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4644 identity="mschap user", password="password",
4645 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
4646 scan_freq="2412")
4647
31dd3153
JM
4648def test_ap_wpa2_eap_ttls_server_pkcs12_extra(dev, apdev):
4649 """EAP-TTLS and server PKCS#12 file with extra certs"""
4650 skip_with_fips(dev[0])
4651 params = int_eap_server_params()
4652 del params["server_cert"]
4653 params["private_key"] = "auth_serv/server-extra.pkcs12"
4654 params["private_key_passwd"] = "whatever"
8b8a1864 4655 hostapd.add_ap(apdev[0], params)
31dd3153
JM
4656 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4657 identity="mschap user", password="password",
4658 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
4659 scan_freq="2412")
4660
242219c5
JM
4661def test_ap_wpa2_eap_ttls_dh_params(dev, apdev):
4662 """WPA2-Enterprise connection using EAP-TTLS/CHAP and setting DH params"""
4663 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
4664 hapd = hostapd.add_ap(apdev[0], params)
4665 eap_connect(dev[0], hapd, "TTLS", "pap user",
242219c5 4666 anonymous_identity="ttls", password="password",
ca158ea6 4667 ca_cert="auth_serv/ca.der", phase2="auth=PAP",
242219c5 4668 dh_file="auth_serv/dh.conf")
7c50093f 4669
b3ff3dec
JM
4670def test_ap_wpa2_eap_ttls_dh_params_dsa(dev, apdev):
4671 """WPA2-Enterprise connection using EAP-TTLS and setting DH params (DSA)"""
404597e6 4672 check_dh_dsa_support(dev[0])
b3ff3dec 4673 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687
JD
4674 hapd = hostapd.add_ap(apdev[0], params)
4675 eap_connect(dev[0], hapd, "TTLS", "pap user",
b3ff3dec 4676 anonymous_identity="ttls", password="password",
ca158ea6 4677 ca_cert="auth_serv/ca.der", phase2="auth=PAP",
b3ff3dec
JM
4678 dh_file="auth_serv/dsaparam.pem")
4679
4680def test_ap_wpa2_eap_ttls_dh_params_not_found(dev, apdev):
4681 """EAP-TTLS and DH params file not found"""
ca158ea6 4682 skip_with_fips(dev[0])
b3ff3dec 4683 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 4684 hostapd.add_ap(apdev[0], params)
b3ff3dec
JM
4685 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4686 identity="mschap user", password="password",
4687 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
4688 dh_file="auth_serv/dh-no-such-file.conf",
4689 scan_freq="2412", wait_connect=False)
4690 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
4691 if ev is None:
4692 raise Exception("EAP failure timed out")
4693 dev[0].request("REMOVE_NETWORK all")
4694 dev[0].wait_disconnected()
4695
4696def test_ap_wpa2_eap_ttls_dh_params_invalid(dev, apdev):
4697 """EAP-TTLS and invalid DH params file"""
ca158ea6 4698 skip_with_fips(dev[0])
b3ff3dec 4699 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 4700 hostapd.add_ap(apdev[0], params)
b3ff3dec
JM
4701 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4702 identity="mschap user", password="password",
4703 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
4704 dh_file="auth_serv/ca.pem",
4705 scan_freq="2412", wait_connect=False)
4706 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
4707 if ev is None:
4708 raise Exception("EAP failure timed out")
4709 dev[0].request("REMOVE_NETWORK all")
4710 dev[0].wait_disconnected()
4711
6ea231e6
JM
4712def test_ap_wpa2_eap_ttls_dh_params_blob(dev, apdev):
4713 """WPA2-Enterprise connection using EAP-TTLS/CHAP and setting DH params from blob"""
4714 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687 4715 hapd = hostapd.add_ap(apdev[0], params)
768ea0bc 4716 dh = read_pem("auth_serv/dh2.conf")
6ea231e6
JM
4717 if "OK" not in dev[0].request("SET blob dhparams " + dh.encode("hex")):
4718 raise Exception("Could not set dhparams blob")
3b3e2687 4719 eap_connect(dev[0], hapd, "TTLS", "pap user",
6ea231e6 4720 anonymous_identity="ttls", password="password",
ca158ea6 4721 ca_cert="auth_serv/ca.der", phase2="auth=PAP",
6ea231e6
JM
4722 dh_file="blob://dhparams")
4723
768ea0bc
JM
4724def test_ap_wpa2_eap_ttls_dh_params_server(dev, apdev):
4725 """WPA2-Enterprise using EAP-TTLS and alternative server dhparams"""
4726 params = int_eap_server_params()
4727 params["dh_file"] = "auth_serv/dh2.conf"
3b3e2687
JD
4728 hapd = hostapd.add_ap(apdev[0], params)
4729 eap_connect(dev[0], hapd, "TTLS", "pap user",
768ea0bc 4730 anonymous_identity="ttls", password="password",
ca158ea6 4731 ca_cert="auth_serv/ca.der", phase2="auth=PAP")
768ea0bc 4732
b3ff3dec
JM
4733def test_ap_wpa2_eap_ttls_dh_params_dsa_server(dev, apdev):
4734 """WPA2-Enterprise using EAP-TTLS and alternative server dhparams (DSA)"""
4735 params = int_eap_server_params()
4736 params["dh_file"] = "auth_serv/dsaparam.pem"
3b3e2687
JD
4737 hapd = hostapd.add_ap(apdev[0], params)
4738 eap_connect(dev[0], hapd, "TTLS", "pap user",
b3ff3dec 4739 anonymous_identity="ttls", password="password",
ca158ea6 4740 ca_cert="auth_serv/ca.der", phase2="auth=PAP")
b3ff3dec
JM
4741
4742def test_ap_wpa2_eap_ttls_dh_params_not_found(dev, apdev):
4743 """EAP-TLS server and dhparams file not found"""
4744 params = int_eap_server_params()
4745 params["dh_file"] = "auth_serv/dh-no-such-file.conf"
8b8a1864 4746 hapd = hostapd.add_ap(apdev[0], params, no_enable=True)
b3ff3dec
JM
4747 if "FAIL" not in hapd.request("ENABLE"):
4748 raise Exception("Invalid configuration accepted")
4749
4750def test_ap_wpa2_eap_ttls_dh_params_invalid(dev, apdev):
4751 """EAP-TLS server and invalid dhparams file"""
4752 params = int_eap_server_params()
4753 params["dh_file"] = "auth_serv/ca.pem"
8b8a1864 4754 hapd = hostapd.add_ap(apdev[0], params, no_enable=True)
b3ff3dec
JM
4755 if "FAIL" not in hapd.request("ENABLE"):
4756 raise Exception("Invalid configuration accepted")
4757
7c50093f
JM
4758def test_ap_wpa2_eap_reauth(dev, apdev):
4759 """WPA2-Enterprise and Authenticator forcing reauthentication"""
4760 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
4761 params['eap_reauth_period'] = '2'
3b3e2687
JD
4762 hapd = hostapd.add_ap(apdev[0], params)
4763 eap_connect(dev[0], hapd, "PAX", "pax.user@example.com",
7c50093f
JM
4764 password_hex="0123456789abcdef0123456789abcdef")
4765 logger.info("Wait for reauthentication")
4766 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STARTED"], timeout=10)
4767 if ev is None:
4768 raise Exception("Timeout on reauthentication")
4769 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
4770 if ev is None:
4771 raise Exception("Timeout on reauthentication")
4772 for i in range(0, 20):
4773 state = dev[0].get_status_field("wpa_state")
4774 if state == "COMPLETED":
4775 break
4776 time.sleep(0.1)
4777 if state != "COMPLETED":
4778 raise Exception("Reauthentication did not complete")
8b56743e
JM
4779
4780def test_ap_wpa2_eap_request_identity_message(dev, apdev):
4781 """Optional displayable message in EAP Request-Identity"""
4782 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
4783 params['eap_message'] = 'hello\\0networkid=netw,nasid=foo,portid=0,NAIRealms=example.com'
3b3e2687
JD
4784 hapd = hostapd.add_ap(apdev[0], params)
4785 eap_connect(dev[0], hapd, "PAX", "pax.user@example.com",
8b56743e 4786 password_hex="0123456789abcdef0123456789abcdef")
910f16ca
JM
4787
4788def test_ap_wpa2_eap_sim_aka_result_ind(dev, apdev):
4789 """WPA2-Enterprise using EAP-SIM/AKA and protected result indication"""
81e787b7 4790 check_hlr_auc_gw_support()
910f16ca
JM
4791 params = int_eap_server_params()
4792 params['eap_sim_db'] = "unix:/tmp/hlr_auc_gw.sock"
4793 params['eap_sim_aka_result_ind'] = "1"
3b3e2687 4794 hapd = hostapd.add_ap(apdev[0], params)
910f16ca 4795
3b3e2687 4796 eap_connect(dev[0], hapd, "SIM", "1232010000000000",
910f16ca
JM
4797 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581",
4798 phase1="result_ind=1")
4799 eap_reauth(dev[0], "SIM")
3b3e2687 4800 eap_connect(dev[1], hapd, "SIM", "1232010000000000",
910f16ca
JM
4801 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581")
4802
4803 dev[0].request("REMOVE_NETWORK all")
4804 dev[1].request("REMOVE_NETWORK all")
4805
3b3e2687 4806 eap_connect(dev[0], hapd, "AKA", "0232010000000000",
910f16ca
JM
4807 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581:000000000123",
4808 phase1="result_ind=1")
4809 eap_reauth(dev[0], "AKA")
3b3e2687 4810 eap_connect(dev[1], hapd, "AKA", "0232010000000000",
910f16ca
JM
4811 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581:000000000123")
4812
4813 dev[0].request("REMOVE_NETWORK all")
4814 dev[1].request("REMOVE_NETWORK all")
4815
3b3e2687 4816 eap_connect(dev[0], hapd, "AKA'", "6555444333222111",
910f16ca
JM
4817 password="5122250214c33e723a5dd523fc145fc0:981d464c7c52eb6e5036234984ad0bcf:000000000123",
4818 phase1="result_ind=1")
4819 eap_reauth(dev[0], "AKA'")
3b3e2687 4820 eap_connect(dev[1], hapd, "AKA'", "6555444333222111",
910f16ca 4821 password="5122250214c33e723a5dd523fc145fc0:981d464c7c52eb6e5036234984ad0bcf:000000000123")
633e364b 4822
a8217972
JM
4823def test_ap_wpa2_eap_sim_zero_db_timeout(dev, apdev):
4824 """WPA2-Enterprise using EAP-SIM with zero database timeout"""
4825 check_hlr_auc_gw_support()
4826 params = int_eap_server_params()
4827 params['eap_sim_db'] = "unix:/tmp/hlr_auc_gw.sock"
4828 params['eap_sim_db_timeout'] = "0"
4829 params['disable_pmksa_caching'] = '1'
4830 hapd = hostapd.add_ap(apdev[0], params)
4831
4832 # Run multiple iterations to make it more likely to hit the case where the
4833 # DB request times out and response is lost.
4834 for i in range(20):
a8217972
JM
4835 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="SIM",
4836 identity="1232010000000000",
4837 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581",
4838 wait_connect=False, scan_freq="2412")
4839 ev = dev[0].wait_event([ "CTRL-EVENT-CONNECTED",
4840 "CTRL-EVENT-DISCONNECTED" ],
4841 timeout=15)
4842 if ev is None:
4843 raise Exception("No connection result")
4844 dev[0].request("REMOVE_NETWORK all")
4845 if "CTRL-EVENT-DISCONNECTED" in ev:
4846 break
4847 dev[0].wait_disconnected()
4848 hapd.ping()
4849
633e364b
JM
4850def test_ap_wpa2_eap_too_many_roundtrips(dev, apdev):
4851 """WPA2-Enterprise connection resulting in too many EAP roundtrips"""
ca158ea6 4852 skip_with_fips(dev[0])
633e364b 4853 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 4854 hostapd.add_ap(apdev[0], params)
633e364b
JM
4855 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP WPA-EAP-SHA256",
4856 eap="TTLS", identity="mschap user",
4857 wait_connect=False, scan_freq="2412", ieee80211w="1",
4858 anonymous_identity="ttls", password="password",
4859 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
78d2233f
JM
4860 fragment_size="8")
4861 ev = dev[0].wait_event(["EAP: more than",
4862 "CTRL-EVENT-EAP-SUCCESS"], timeout=20)
4863 if ev is None or "EAP: more than" not in ev:
633e364b 4864 raise Exception("EAP roundtrip limit not reached")
32dca985
JM
4865
4866def test_ap_wpa2_eap_expanded_nak(dev, apdev):
4867 """WPA2-Enterprise connection with EAP resulting in expanded NAK"""
4868 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 4869 hostapd.add_ap(apdev[0], params)
32dca985
JM
4870 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP WPA-EAP-SHA256",
4871 eap="PSK", identity="vendor-test",
4872 password_hex="ff23456789abcdef0123456789abcdef",
4873 wait_connect=False)
4874
4875 found = False
4876 for i in range(0, 5):
412c6030 4877 ev = dev[0].wait_event(["CTRL-EVENT-EAP-STATUS"], timeout=16)
32dca985
JM
4878 if ev is None:
4879 raise Exception("Association and EAP start timed out")
4880 if "refuse proposed method" in ev:
4881 found = True
4882 break
4883 if not found:
4884 raise Exception("Unexpected EAP status: " + ev)
4885
4886 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"])
4887 if ev is None:
4888 raise Exception("EAP failure timed out")
745f8771
JM
4889
4890def test_ap_wpa2_eap_sql(dev, apdev, params):
4891 """WPA2-Enterprise connection using SQLite for user DB"""
ca158ea6 4892 skip_with_fips(dev[0])
745f8771
JM
4893 try:
4894 import sqlite3
4895 except ImportError:
81e787b7 4896 raise HwsimSkip("No sqlite3 module available")
745f8771
JM
4897 dbfile = os.path.join(params['logdir'], "eap-user.db")
4898 try:
4899 os.remove(dbfile)
4900 except:
4901 pass
4902 con = sqlite3.connect(dbfile)
4903 with con:
4904 cur = con.cursor()
4905 cur.execute("CREATE TABLE users(identity TEXT PRIMARY KEY, methods TEXT, password TEXT, remediation TEXT, phase2 INTEGER)")
4906 cur.execute("CREATE TABLE wildcards(identity TEXT PRIMARY KEY, methods TEXT)")
4907 cur.execute("INSERT INTO users(identity,methods,password,phase2) VALUES ('user-pap','TTLS-PAP','password',1)")
4908 cur.execute("INSERT INTO users(identity,methods,password,phase2) VALUES ('user-chap','TTLS-CHAP','password',1)")
4909 cur.execute("INSERT INTO users(identity,methods,password,phase2) VALUES ('user-mschap','TTLS-MSCHAP','password',1)")
4910 cur.execute("INSERT INTO users(identity,methods,password,phase2) VALUES ('user-mschapv2','TTLS-MSCHAPV2','password',1)")
4911 cur.execute("INSERT INTO wildcards(identity,methods) VALUES ('','TTLS,TLS')")
4912 cur.execute("CREATE TABLE authlog(timestamp TEXT, session TEXT, nas_ip TEXT, username TEXT, note TEXT)")
4913
4914 try:
4915 params = int_eap_server_params()
4916 params["eap_user_file"] = "sqlite:" + dbfile
3b3e2687
JD
4917 hapd = hostapd.add_ap(apdev[0], params)
4918 eap_connect(dev[0], hapd, "TTLS", "user-mschapv2",
745f8771
JM
4919 anonymous_identity="ttls", password="password",
4920 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2")
4921 dev[0].request("REMOVE_NETWORK all")
3b3e2687 4922 eap_connect(dev[1], hapd, "TTLS", "user-mschap",
745f8771
JM
4923 anonymous_identity="ttls", password="password",
4924 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP")
4925 dev[1].request("REMOVE_NETWORK all")
3b3e2687 4926 eap_connect(dev[0], hapd, "TTLS", "user-chap",
745f8771
JM
4927 anonymous_identity="ttls", password="password",
4928 ca_cert="auth_serv/ca.pem", phase2="auth=CHAP")
3b3e2687 4929 eap_connect(dev[1], hapd, "TTLS", "user-pap",
745f8771
JM
4930 anonymous_identity="ttls", password="password",
4931 ca_cert="auth_serv/ca.pem", phase2="auth=PAP")
4932 finally:
4933 os.remove(dbfile)
b246e2af
JM
4934
4935def test_ap_wpa2_eap_non_ascii_identity(dev, apdev):
4936 """WPA2-Enterprise connection attempt using non-ASCII identity"""
4937 params = int_eap_server_params()
8b8a1864 4938 hostapd.add_ap(apdev[0], params)
b246e2af
JM
4939 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4940 identity="\x80", password="password", wait_connect=False)
4941 dev[1].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4942 identity="a\x80", password="password", wait_connect=False)
4943 for i in range(0, 2):
412c6030 4944 ev = dev[i].wait_event(["CTRL-EVENT-EAP-STARTED"], timeout=16)
b246e2af
JM
4945 if ev is None:
4946 raise Exception("Association and EAP start timed out")
4947 ev = dev[i].wait_event(["CTRL-EVENT-EAP-METHOD"], timeout=10)
4948 if ev is None:
4949 raise Exception("EAP method selection timed out")
4950
4951def test_ap_wpa2_eap_non_ascii_identity2(dev, apdev):
4952 """WPA2-Enterprise connection attempt using non-ASCII identity"""
4953 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 4954 hostapd.add_ap(apdev[0], params)
b246e2af
JM
4955 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4956 identity="\x80", password="password", wait_connect=False)
4957 dev[1].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4958 identity="a\x80", password="password", wait_connect=False)
4959 for i in range(0, 2):
412c6030 4960 ev = dev[i].wait_event(["CTRL-EVENT-EAP-STARTED"], timeout=16)
b246e2af
JM
4961 if ev is None:
4962 raise Exception("Association and EAP start timed out")
4963 ev = dev[i].wait_event(["CTRL-EVENT-EAP-METHOD"], timeout=10)
4964 if ev is None:
4965 raise Exception("EAP method selection timed out")
89f20842
JM
4966
4967def test_openssl_cipher_suite_config_wpas(dev, apdev):
4968 """OpenSSL cipher suite configuration on wpa_supplicant"""
a783340d
JM
4969 tls = dev[0].request("GET tls_library")
4970 if not tls.startswith("OpenSSL"):
4971 raise HwsimSkip("TLS library is not OpenSSL: " + tls)
89f20842 4972 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 4973 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 4974 eap_connect(dev[0], hapd, "TTLS", "pap user",
89f20842
JM
4975 anonymous_identity="ttls", password="password",
4976 openssl_ciphers="AES128",
4977 ca_cert="auth_serv/ca.pem", phase2="auth=PAP")
3b3e2687 4978 eap_connect(dev[1], hapd, "TTLS", "pap user",
89f20842
JM
4979 anonymous_identity="ttls", password="password",
4980 openssl_ciphers="EXPORT",
4981 ca_cert="auth_serv/ca.pem", phase2="auth=PAP",
9dd21d51 4982 expect_failure=True, maybe_local_error=True)
7be5ec99
JM
4983 dev[2].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
4984 identity="pap user", anonymous_identity="ttls",
4985 password="password",
4986 openssl_ciphers="FOO",
4987 ca_cert="auth_serv/ca.pem", phase2="auth=PAP",
4988 wait_connect=False)
4989 ev = dev[2].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=10)
4990 if ev is None:
4991 raise Exception("EAP failure after invalid openssl_ciphers not reported")
4992 dev[2].request("DISCONNECT")
89f20842
JM
4993
4994def test_openssl_cipher_suite_config_hapd(dev, apdev):
4995 """OpenSSL cipher suite configuration on hostapd"""
a783340d
JM
4996 tls = dev[0].request("GET tls_library")
4997 if not tls.startswith("OpenSSL"):
4998 raise HwsimSkip("wpa_supplicant TLS library is not OpenSSL: " + tls)
89f20842
JM
4999 params = int_eap_server_params()
5000 params['openssl_ciphers'] = "AES256"
8b8a1864 5001 hapd = hostapd.add_ap(apdev[0], params)
a783340d
JM
5002 tls = hapd.request("GET tls_library")
5003 if not tls.startswith("OpenSSL"):
5004 raise HwsimSkip("hostapd TLS library is not OpenSSL: " + tls)
3b3e2687 5005 eap_connect(dev[0], hapd, "TTLS", "pap user",
89f20842
JM
5006 anonymous_identity="ttls", password="password",
5007 ca_cert="auth_serv/ca.pem", phase2="auth=PAP")
3b3e2687 5008 eap_connect(dev[1], hapd, "TTLS", "pap user",
89f20842
JM
5009 anonymous_identity="ttls", password="password",
5010 openssl_ciphers="AES128",
5011 ca_cert="auth_serv/ca.pem", phase2="auth=PAP",
5012 expect_failure=True)
3b3e2687 5013 eap_connect(dev[2], hapd, "TTLS", "pap user",
89f20842
JM
5014 anonymous_identity="ttls", password="password",
5015 openssl_ciphers="HIGH:!ADH",
5016 ca_cert="auth_serv/ca.pem", phase2="auth=PAP")
5b3c40a6 5017
7be5ec99 5018 params['openssl_ciphers'] = "FOO"
8b8a1864 5019 hapd2 = hostapd.add_ap(apdev[1], params, no_enable=True)
7be5ec99
JM
5020 if "FAIL" not in hapd2.request("ENABLE"):
5021 raise Exception("Invalid openssl_ciphers value accepted")
5022
5b3c40a6
JM
5023def test_wpa2_eap_ttls_pap_key_lifetime_in_memory(dev, apdev, params):
5024 """Key lifetime in memory with WPA2-Enterprise using EAP-TTLS/PAP"""
5025 p = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 5026 hapd = hostapd.add_ap(apdev[0], p)
5b3c40a6
JM
5027 password = "63d2d21ac3c09ed567ee004a34490f1d16e7fa5835edf17ddba70a63f1a90a25"
5028 pid = find_wpas_process(dev[0])
3b3e2687 5029 id = eap_connect(dev[0], hapd, "TTLS", "pap-secret",
5b3c40a6
JM
5030 anonymous_identity="ttls", password=password,
5031 ca_cert="auth_serv/ca.pem", phase2="auth=PAP")
8e416cec
JM
5032 # The decrypted copy of GTK is freed only after the CTRL-EVENT-CONNECTED
5033 # event has been delivered, so verify that wpa_supplicant has returned to
5034 # eloop before reading process memory.
54f2cae2 5035 time.sleep(1)
8e416cec 5036 dev[0].ping()
5b3c40a6
JM
5037 buf = read_process_memory(pid, password)
5038
5039 dev[0].request("DISCONNECT")
5040 dev[0].wait_disconnected()
5041
5042 dev[0].relog()
750904dd
JM
5043 msk = None
5044 emsk = None
5b3c40a6
JM
5045 pmk = None
5046 ptk = None
5047 gtk = None
5048 with open(os.path.join(params['logdir'], 'log0'), 'r') as f:
5049 for l in f.readlines():
750904dd
JM
5050 if "EAP-TTLS: Derived key - hexdump" in l:
5051 val = l.strip().split(':')[3].replace(' ', '')
5052 msk = binascii.unhexlify(val)
5053 if "EAP-TTLS: Derived EMSK - hexdump" in l:
5054 val = l.strip().split(':')[3].replace(' ', '')
5055 emsk = binascii.unhexlify(val)
5b3c40a6
JM
5056 if "WPA: PMK - hexdump" in l:
5057 val = l.strip().split(':')[3].replace(' ', '')
5058 pmk = binascii.unhexlify(val)
5059 if "WPA: PTK - hexdump" in l:
5060 val = l.strip().split(':')[3].replace(' ', '')
5061 ptk = binascii.unhexlify(val)
5062 if "WPA: Group Key - hexdump" in l:
5063 val = l.strip().split(':')[3].replace(' ', '')
5064 gtk = binascii.unhexlify(val)
750904dd 5065 if not msk or not emsk or not pmk or not ptk or not gtk:
5b3c40a6
JM
5066 raise Exception("Could not find keys from debug log")
5067 if len(gtk) != 16:
5068 raise Exception("Unexpected GTK length")
5069
5070 kck = ptk[0:16]
5071 kek = ptk[16:32]
5072 tk = ptk[32:48]
5073
5074 fname = os.path.join(params['logdir'],
5075 'wpa2_eap_ttls_pap_key_lifetime_in_memory.memctx-')
5076
5077 logger.info("Checking keys in memory while associated")
5078 get_key_locations(buf, password, "Password")
5079 get_key_locations(buf, pmk, "PMK")
750904dd
JM
5080 get_key_locations(buf, msk, "MSK")
5081 get_key_locations(buf, emsk, "EMSK")
5b3c40a6 5082 if password not in buf:
81e787b7 5083 raise HwsimSkip("Password not found while associated")
5b3c40a6 5084 if pmk not in buf:
81e787b7 5085 raise HwsimSkip("PMK not found while associated")
5b3c40a6
JM
5086 if kck not in buf:
5087 raise Exception("KCK not found while associated")
5088 if kek not in buf:
5089 raise Exception("KEK not found while associated")
b74f82a4
JM
5090 #if tk in buf:
5091 # raise Exception("TK found from memory")
5b3c40a6
JM
5092
5093 logger.info("Checking keys in memory after disassociation")
5094 buf = read_process_memory(pid, password)
5095
5096 # Note: Password is still present in network configuration
5097 # Note: PMK is in PMKSA cache and EAP fast re-auth data
5098
5099 get_key_locations(buf, password, "Password")
5100 get_key_locations(buf, pmk, "PMK")
750904dd
JM
5101 get_key_locations(buf, msk, "MSK")
5102 get_key_locations(buf, emsk, "EMSK")
5b3c40a6
JM
5103 verify_not_present(buf, kck, fname, "KCK")
5104 verify_not_present(buf, kek, fname, "KEK")
5105 verify_not_present(buf, tk, fname, "TK")
6db556b2
JM
5106 if gtk in buf:
5107 get_key_locations(buf, gtk, "GTK")
5b3c40a6
JM
5108 verify_not_present(buf, gtk, fname, "GTK")
5109
5110 dev[0].request("PMKSA_FLUSH")
5111 dev[0].set_network_quoted(id, "identity", "foo")
5112 logger.info("Checking keys in memory after PMKSA cache and EAP fast reauth flush")
5113 buf = read_process_memory(pid, password)
5114 get_key_locations(buf, password, "Password")
5115 get_key_locations(buf, pmk, "PMK")
750904dd
JM
5116 get_key_locations(buf, msk, "MSK")
5117 get_key_locations(buf, emsk, "EMSK")
5b3c40a6
JM
5118 verify_not_present(buf, pmk, fname, "PMK")
5119
5120 dev[0].request("REMOVE_NETWORK all")
5121
5122 logger.info("Checking keys in memory after network profile removal")
5123 buf = read_process_memory(pid, password)
5124
5125 get_key_locations(buf, password, "Password")
5126 get_key_locations(buf, pmk, "PMK")
750904dd
JM
5127 get_key_locations(buf, msk, "MSK")
5128 get_key_locations(buf, emsk, "EMSK")
5b3c40a6
JM
5129 verify_not_present(buf, password, fname, "password")
5130 verify_not_present(buf, pmk, fname, "PMK")
5131 verify_not_present(buf, kck, fname, "KCK")
5132 verify_not_present(buf, kek, fname, "KEK")
5133 verify_not_present(buf, tk, fname, "TK")
5134 verify_not_present(buf, gtk, fname, "GTK")
750904dd
JM
5135 verify_not_present(buf, msk, fname, "MSK")
5136 verify_not_present(buf, emsk, fname, "EMSK")
a08fdb17
JM
5137
5138def test_ap_wpa2_eap_unexpected_wep_eapol_key(dev, apdev):
5139 """WPA2-Enterprise connection and unexpected WEP EAPOL-Key"""
5140 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 5141 hapd = hostapd.add_ap(apdev[0], params)
a08fdb17 5142 bssid = apdev[0]['bssid']
3b3e2687 5143 eap_connect(dev[0], hapd, "TTLS", "pap user",
a08fdb17
JM
5144 anonymous_identity="ttls", password="password",
5145 ca_cert="auth_serv/ca.pem", phase2="auth=PAP")
5146
5147 # Send unexpected WEP EAPOL-Key; this gets dropped
5148 res = dev[0].request("EAPOL_RX " + bssid + " 0203002c0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
5149 if "OK" not in res:
5150 raise Exception("EAPOL_RX to wpa_supplicant failed")
52352802
JM
5151
5152def test_ap_wpa2_eap_in_bridge(dev, apdev):
5153 """WPA2-EAP and wpas interface in a bridge"""
5154 br_ifname='sta-br0'
5155 ifname='wlan5'
5156 try:
5157 _test_ap_wpa2_eap_in_bridge(dev, apdev)
5158 finally:
5159 subprocess.call(['ip', 'link', 'set', 'dev', br_ifname, 'down'])
5160 subprocess.call(['brctl', 'delif', br_ifname, ifname])
5161 subprocess.call(['brctl', 'delbr', br_ifname])
5162 subprocess.call(['iw', ifname, 'set', '4addr', 'off'])
5163
5164def _test_ap_wpa2_eap_in_bridge(dev, apdev):
5165 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 5166 hapd = hostapd.add_ap(apdev[0], params)
52352802
JM
5167
5168 br_ifname='sta-br0'
5169 ifname='wlan5'
5170 wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
5171 subprocess.call(['brctl', 'addbr', br_ifname])
5172 subprocess.call(['brctl', 'setfd', br_ifname, '0'])
5173 subprocess.call(['ip', 'link', 'set', 'dev', br_ifname, 'up'])
5174 subprocess.call(['iw', ifname, 'set', '4addr', 'on'])
5175 subprocess.check_call(['brctl', 'addif', br_ifname, ifname])
5176 wpas.interface_add(ifname, br_ifname=br_ifname)
4b9d79b6 5177 wpas.dump_monitor()
52352802 5178
3b3e2687 5179 id = eap_connect(wpas, hapd, "PAX", "pax.user@example.com",
52352802 5180 password_hex="0123456789abcdef0123456789abcdef")
4b9d79b6 5181 wpas.dump_monitor()
52352802 5182 eap_reauth(wpas, "PAX")
4b9d79b6 5183 wpas.dump_monitor()
52352802
JM
5184 # Try again as a regression test for packet socket workaround
5185 eap_reauth(wpas, "PAX")
4b9d79b6 5186 wpas.dump_monitor()
52352802
JM
5187 wpas.request("DISCONNECT")
5188 wpas.wait_disconnected()
4b9d79b6 5189 wpas.dump_monitor()
52352802
JM
5190 wpas.request("RECONNECT")
5191 wpas.wait_connected()
4b9d79b6 5192 wpas.dump_monitor()
febf5752
JM
5193
5194def test_ap_wpa2_eap_session_ticket(dev, apdev):
5195 """WPA2-Enterprise connection using EAP-TTLS and TLS session ticket enabled"""
5196 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 5197 hapd = hostapd.add_ap(apdev[0], params)
febf5752
JM
5198 key_mgmt = hapd.get_config()['key_mgmt']
5199 if key_mgmt.split(' ')[0] != "WPA-EAP":
5200 raise Exception("Unexpected GET_CONFIG(key_mgmt): " + key_mgmt)
3b3e2687 5201 eap_connect(dev[0], hapd, "TTLS", "pap user",
febf5752
JM
5202 anonymous_identity="ttls", password="password",
5203 ca_cert="auth_serv/ca.pem",
5204 phase1="tls_disable_session_ticket=0", phase2="auth=PAP")
5205 eap_reauth(dev[0], "TTLS")
5206
5207def test_ap_wpa2_eap_no_workaround(dev, apdev):
5208 """WPA2-Enterprise connection using EAP-TTLS and eap_workaround=0"""
5209 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 5210 hapd = hostapd.add_ap(apdev[0], params)
febf5752
JM
5211 key_mgmt = hapd.get_config()['key_mgmt']
5212 if key_mgmt.split(' ')[0] != "WPA-EAP":
5213 raise Exception("Unexpected GET_CONFIG(key_mgmt): " + key_mgmt)
3b3e2687 5214 eap_connect(dev[0], hapd, "TTLS", "pap user",
febf5752
JM
5215 anonymous_identity="ttls", password="password",
5216 ca_cert="auth_serv/ca.pem", eap_workaround='0',
5217 phase2="auth=PAP")
5218 eap_reauth(dev[0], "TTLS")
b197a819
JM
5219
5220def test_ap_wpa2_eap_tls_check_crl(dev, apdev):
5221 """EAP-TLS and server checking CRL"""
5222 params = int_eap_server_params()
5223 params['check_crl'] = '1'
8b8a1864 5224 hapd = hostapd.add_ap(apdev[0], params)
b197a819
JM
5225
5226 # check_crl=1 and no CRL available --> reject connection
3b3e2687 5227 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
b197a819
JM
5228 client_cert="auth_serv/user.pem",
5229 private_key="auth_serv/user.key", expect_failure=True)
5230 dev[0].request("REMOVE_NETWORK all")
5231
5232 hapd.disable()
5233 hapd.set("ca_cert", "auth_serv/ca-and-crl.pem")
5234 hapd.enable()
5235
5236 # check_crl=1 and valid CRL --> accept
3b3e2687 5237 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
b197a819
JM
5238 client_cert="auth_serv/user.pem",
5239 private_key="auth_serv/user.key")
5240 dev[0].request("REMOVE_NETWORK all")
5241
5242 hapd.disable()
5243 hapd.set("check_crl", "2")
5244 hapd.enable()
5245
5246 # check_crl=2 and valid CRL --> accept
3b3e2687 5247 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
b197a819
JM
5248 client_cert="auth_serv/user.pem",
5249 private_key="auth_serv/user.key")
5250 dev[0].request("REMOVE_NETWORK all")
b1fb4275
JM
5251
5252def test_ap_wpa2_eap_tls_oom(dev, apdev):
5253 """EAP-TLS and OOM"""
5254 check_subject_match_support(dev[0])
5255 check_altsubject_match_support(dev[0])
e78eb404 5256 check_domain_match(dev[0])
b1fb4275
JM
5257 check_domain_match_full(dev[0])
5258
5259 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 5260 hostapd.add_ap(apdev[0], params)
b1fb4275
JM
5261
5262 tests = [ (1, "tls_connection_set_subject_match"),
5263 (2, "tls_connection_set_subject_match"),
5264 (3, "tls_connection_set_subject_match"),
5265 (4, "tls_connection_set_subject_match") ]
5266 for count, func in tests:
5267 with alloc_fail(dev[0], count, func):
5268 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
5269 identity="tls user", ca_cert="auth_serv/ca.pem",
5270 client_cert="auth_serv/user.pem",
5271 private_key="auth_serv/user.key",
5272 subject_match="/C=FI/O=w1.fi/CN=server.w1.fi",
5273 altsubject_match="EMAIL:noone@example.com;DNS:server.w1.fi;URI:http://example.com/",
5274 domain_suffix_match="server.w1.fi",
5275 domain_match="server.w1.fi",
5276 wait_connect=False, scan_freq="2412")
5277 # TLS parameter configuration error results in CTRL-REQ-PASSPHRASE
5278 ev = dev[0].wait_event(["CTRL-REQ-PASSPHRASE"], timeout=5)
5279 if ev is None:
5280 raise Exception("No passphrase request")
5281 dev[0].request("REMOVE_NETWORK all")
5282 dev[0].wait_disconnected()
405c621c
JM
5283
5284def test_ap_wpa2_eap_tls_macacl(dev, apdev):
5285 """WPA2-Enterprise connection using MAC ACL"""
5286 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
5287 params["macaddr_acl"] = "2"
3b3e2687
JD
5288 hapd = hostapd.add_ap(apdev[0], params)
5289 eap_connect(dev[1], hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
405c621c
JM
5290 client_cert="auth_serv/user.pem",
5291 private_key="auth_serv/user.key")
85774b70
JM
5292
5293def test_ap_wpa2_eap_oom(dev, apdev):
5294 """EAP server and OOM"""
5295 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 5296 hapd = hostapd.add_ap(apdev[0], params)
85774b70
JM
5297 dev[0].scan_for_bss(apdev[0]['bssid'], freq=2412)
5298
5299 with alloc_fail(hapd, 1, "eapol_auth_alloc"):
5300 # The first attempt fails, but STA will send EAPOL-Start to retry and
5301 # that succeeds.
5302 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
5303 identity="tls user", ca_cert="auth_serv/ca.pem",
5304 client_cert="auth_serv/user.pem",
5305 private_key="auth_serv/user.key",
5306 scan_freq="2412")
6c4b5da4 5307
3b3e2687
JD
5308def check_tls_ver(dev, hapd, phase1, expected):
5309 eap_connect(dev, hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
6c4b5da4
JM
5310 client_cert="auth_serv/user.pem",
5311 private_key="auth_serv/user.key",
5312 phase1=phase1)
5313 ver = dev.get_status_field("eap_tls_version")
5314 if ver != expected:
5315 raise Exception("Unexpected TLS version (expected %s): %s" % (expected, ver))
5316
5317def test_ap_wpa2_eap_tls_versions(dev, apdev):
5318 """EAP-TLS and TLS version configuration"""
5319 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
3b3e2687 5320 hapd = hostapd.add_ap(apdev[0], params)
6c4b5da4
JM
5321
5322 tls = dev[0].request("GET tls_library")
5323 if tls.startswith("OpenSSL"):
41d5af55 5324 if "build=OpenSSL 1.0.1" not in tls and "run=OpenSSL 1.0.1" not in tls:
3b3e2687 5325 check_tls_ver(dev[0], hapd,
6c4b5da4
JM
5326 "tls_disable_tlsv1_0=1 tls_disable_tlsv1_1=1",
5327 "TLSv1.2")
d8003dcb
SP
5328 if tls.startswith("wolfSSL"):
5329 if ("build=3.10.0" in tls and "run=3.10.0" in tls) or \
5330 ("build=3.13.0" in tls and "run=3.13.0" in tls):
5331 check_tls_ver(dev[0], hapd,
5332 "tls_disable_tlsv1_0=1 tls_disable_tlsv1_1=1",
5333 "TLSv1.2")
2286578f 5334 elif tls.startswith("internal"):
3b3e2687 5335 check_tls_ver(dev[0], hapd,
2286578f 5336 "tls_disable_tlsv1_0=1 tls_disable_tlsv1_1=1", "TLSv1.2")
3b3e2687 5337 check_tls_ver(dev[1], hapd,
6c4b5da4 5338 "tls_disable_tlsv1_0=1 tls_disable_tlsv1_2=1", "TLSv1.1")
3b3e2687 5339 check_tls_ver(dev[2], hapd,
6c4b5da4 5340 "tls_disable_tlsv1_1=1 tls_disable_tlsv1_2=1", "TLSv1")
ecafa0cf
JM
5341
5342def test_rsn_ie_proto_eap_sta(dev, apdev):
5343 """RSN element protocol testing for EAP cases on STA side"""
5344 bssid = apdev[0]['bssid']
5345 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
5346 # This is the RSN element used normally by hostapd
5347 params['own_ie_override'] = '30140100000fac040100000fac040100000fac010c00'
8b8a1864 5348 hapd = hostapd.add_ap(apdev[0], params)
ecafa0cf
JM
5349 id = dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="GPSK",
5350 identity="gpsk user",
5351 password="abcdefghijklmnop0123456789abcdef",
5352 scan_freq="2412")
5353
5354 tests = [ ('No RSN Capabilities field',
5355 '30120100000fac040100000fac040100000fac01'),
5356 ('No AKM Suite fields',
5357 '300c0100000fac040100000fac04'),
5358 ('No Pairwise Cipher Suite fields',
5359 '30060100000fac04'),
5360 ('No Group Data Cipher Suite field',
5361 '30020100') ]
5362 for txt,ie in tests:
5363 dev[0].request("DISCONNECT")
5364 dev[0].wait_disconnected()
5365 logger.info(txt)
5366 hapd.disable()
5367 hapd.set('own_ie_override', ie)
5368 hapd.enable()
5369 dev[0].request("BSS_FLUSH 0")
5370 dev[0].scan_for_bss(bssid, 2412, force_scan=True, only_new=True)
5371 dev[0].select_network(id, freq=2412)
5372 dev[0].wait_connected()
f9dd43ea 5373
9353f07f
JM
5374 dev[0].request("DISCONNECT")
5375 dev[0].wait_disconnected()
5376 dev[0].flush_scan_cache()
5377
f9dd43ea
JM
5378def check_tls_session_resumption_capa(dev, hapd):
5379 tls = hapd.request("GET tls_library")
5380 if not tls.startswith("OpenSSL"):
d8003dcb 5381 raise HwsimSkip("hostapd TLS library is not OpenSSL or wolfSSL: " + tls)
f9dd43ea
JM
5382
5383 tls = dev.request("GET tls_library")
5384 if not tls.startswith("OpenSSL"):
5385 raise HwsimSkip("Session resumption not supported with this TLS library: " + tls)
5386
5387def test_eap_ttls_pap_session_resumption(dev, apdev):
5388 """EAP-TTLS/PAP session resumption"""
5389 params = int_eap_server_params()
5390 params['tls_session_lifetime'] = '60'
8b8a1864 5391 hapd = hostapd.add_ap(apdev[0], params)
f9dd43ea 5392 check_tls_session_resumption_capa(dev[0], hapd)
3b3e2687 5393 eap_connect(dev[0], hapd, "TTLS", "pap user",
f9dd43ea
JM
5394 anonymous_identity="ttls", password="password",
5395 ca_cert="auth_serv/ca.pem", eap_workaround='0',
5396 phase2="auth=PAP")
5397 if dev[0].get_status_field("tls_session_reused") != '0':
5398 raise Exception("Unexpected session resumption on the first connection")
5399
5400 dev[0].request("REAUTHENTICATE")
5401 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
5402 if ev is None:
5403 raise Exception("EAP success timed out")
5404 ev = dev[0].wait_event(["WPA: Key negotiation completed"], timeout=10)
5405 if ev is None:
5406 raise Exception("Key handshake with the AP timed out")
5407 if dev[0].get_status_field("tls_session_reused") != '1':
5408 raise Exception("Session resumption not used on the second connection")
5409
5410def test_eap_ttls_chap_session_resumption(dev, apdev):
5411 """EAP-TTLS/CHAP session resumption"""
5412 params = int_eap_server_params()
5413 params['tls_session_lifetime'] = '60'
8b8a1864 5414 hapd = hostapd.add_ap(apdev[0], params)
f9dd43ea 5415 check_tls_session_resumption_capa(dev[0], hapd)
3b3e2687 5416 eap_connect(dev[0], hapd, "TTLS", "chap user",
f9dd43ea
JM
5417 anonymous_identity="ttls", password="password",
5418 ca_cert="auth_serv/ca.der", phase2="auth=CHAP")
5419 if dev[0].get_status_field("tls_session_reused") != '0':
5420 raise Exception("Unexpected session resumption on the first connection")
5421
5422 dev[0].request("REAUTHENTICATE")
5423 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
5424 if ev is None:
5425 raise Exception("EAP success timed out")
5426 ev = dev[0].wait_event(["WPA: Key negotiation completed"], timeout=10)
5427 if ev is None:
5428 raise Exception("Key handshake with the AP timed out")
5429 if dev[0].get_status_field("tls_session_reused") != '1':
5430 raise Exception("Session resumption not used on the second connection")
5431
5432def test_eap_ttls_mschap_session_resumption(dev, apdev):
5433 """EAP-TTLS/MSCHAP session resumption"""
e78eb404 5434 check_domain_suffix_match(dev[0])
f9dd43ea
JM
5435 params = int_eap_server_params()
5436 params['tls_session_lifetime'] = '60'
8b8a1864 5437 hapd = hostapd.add_ap(apdev[0], params)
f9dd43ea 5438 check_tls_session_resumption_capa(dev[0], hapd)
3b3e2687 5439 eap_connect(dev[0], hapd, "TTLS", "mschap user",
f9dd43ea
JM
5440 anonymous_identity="ttls", password="password",
5441 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
5442 domain_suffix_match="server.w1.fi")
5443 if dev[0].get_status_field("tls_session_reused") != '0':
5444 raise Exception("Unexpected session resumption on the first connection")
5445
5446 dev[0].request("REAUTHENTICATE")
5447 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
5448 if ev is None:
5449 raise Exception("EAP success timed out")
5450 ev = dev[0].wait_event(["WPA: Key negotiation completed"], timeout=10)
5451 if ev is None:
5452 raise Exception("Key handshake with the AP timed out")
5453 if dev[0].get_status_field("tls_session_reused") != '1':
5454 raise Exception("Session resumption not used on the second connection")
5455
5456def test_eap_ttls_mschapv2_session_resumption(dev, apdev):
5457 """EAP-TTLS/MSCHAPv2 session resumption"""
e78eb404 5458 check_domain_suffix_match(dev[0])
f9dd43ea
JM
5459 check_eap_capa(dev[0], "MSCHAPV2")
5460 params = int_eap_server_params()
5461 params['tls_session_lifetime'] = '60'
8b8a1864 5462 hapd = hostapd.add_ap(apdev[0], params)
f9dd43ea 5463 check_tls_session_resumption_capa(dev[0], hapd)
3b3e2687 5464 eap_connect(dev[0], hapd, "TTLS", "DOMAIN\mschapv2 user",
f9dd43ea
JM
5465 anonymous_identity="ttls", password="password",
5466 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
5467 domain_suffix_match="server.w1.fi")
5468 if dev[0].get_status_field("tls_session_reused") != '0':
5469 raise Exception("Unexpected session resumption on the first connection")
5470
5471 dev[0].request("REAUTHENTICATE")
5472 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
5473 if ev is None:
5474 raise Exception("EAP success timed out")
5475 ev = dev[0].wait_event(["WPA: Key negotiation completed"], timeout=10)
5476 if ev is None:
5477 raise Exception("Key handshake with the AP timed out")
5478 if dev[0].get_status_field("tls_session_reused") != '1':
5479 raise Exception("Session resumption not used on the second connection")
5480
5481def test_eap_ttls_eap_gtc_session_resumption(dev, apdev):
5482 """EAP-TTLS/EAP-GTC session resumption"""
5483 params = int_eap_server_params()
5484 params['tls_session_lifetime'] = '60'
8b8a1864 5485 hapd = hostapd.add_ap(apdev[0], params)
f9dd43ea 5486 check_tls_session_resumption_capa(dev[0], hapd)
3b3e2687 5487 eap_connect(dev[0], hapd, "TTLS", "user",
f9dd43ea
JM
5488 anonymous_identity="ttls", password="password",
5489 ca_cert="auth_serv/ca.pem", phase2="autheap=GTC")
5490 if dev[0].get_status_field("tls_session_reused") != '0':
5491 raise Exception("Unexpected session resumption on the first connection")
5492
5493 dev[0].request("REAUTHENTICATE")
5494 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
5495 if ev is None:
5496 raise Exception("EAP success timed out")
5497 ev = dev[0].wait_event(["WPA: Key negotiation completed"], timeout=10)
5498 if ev is None:
5499 raise Exception("Key handshake with the AP timed out")
5500 if dev[0].get_status_field("tls_session_reused") != '1':
5501 raise Exception("Session resumption not used on the second connection")
5502
5503def test_eap_ttls_no_session_resumption(dev, apdev):
5504 """EAP-TTLS session resumption disabled on server"""
5505 params = int_eap_server_params()
5506 params['tls_session_lifetime'] = '0'
8b8a1864 5507 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 5508 eap_connect(dev[0], hapd, "TTLS", "pap user",
f9dd43ea
JM
5509 anonymous_identity="ttls", password="password",
5510 ca_cert="auth_serv/ca.pem", eap_workaround='0',
5511 phase2="auth=PAP")
5512 if dev[0].get_status_field("tls_session_reused") != '0':
5513 raise Exception("Unexpected session resumption on the first connection")
5514
5515 dev[0].request("REAUTHENTICATE")
5516 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
5517 if ev is None:
5518 raise Exception("EAP success timed out")
5519 ev = dev[0].wait_event(["WPA: Key negotiation completed"], timeout=10)
5520 if ev is None:
5521 raise Exception("Key handshake with the AP timed out")
5522 if dev[0].get_status_field("tls_session_reused") != '0':
5523 raise Exception("Unexpected session resumption on the second connection")
5524
5525def test_eap_peap_session_resumption(dev, apdev):
5526 """EAP-PEAP session resumption"""
ead550b9 5527 check_eap_capa(dev[0], "MSCHAPV2")
f9dd43ea
JM
5528 params = int_eap_server_params()
5529 params['tls_session_lifetime'] = '60'
8b8a1864 5530 hapd = hostapd.add_ap(apdev[0], params)
f9dd43ea 5531 check_tls_session_resumption_capa(dev[0], hapd)
3b3e2687 5532 eap_connect(dev[0], hapd, "PEAP", "user",
f9dd43ea
JM
5533 anonymous_identity="peap", password="password",
5534 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2")
5535 if dev[0].get_status_field("tls_session_reused") != '0':
5536 raise Exception("Unexpected session resumption on the first connection")
5537
5538 dev[0].request("REAUTHENTICATE")
5539 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
5540 if ev is None:
5541 raise Exception("EAP success timed out")
5542 ev = dev[0].wait_event(["WPA: Key negotiation completed"], timeout=10)
5543 if ev is None:
5544 raise Exception("Key handshake with the AP timed out")
5545 if dev[0].get_status_field("tls_session_reused") != '1':
5546 raise Exception("Session resumption not used on the second connection")
5547
81e1ab85
JM
5548def test_eap_peap_session_resumption_crypto_binding(dev, apdev):
5549 """EAP-PEAP session resumption with crypto binding"""
5550 params = int_eap_server_params()
5551 params['tls_session_lifetime'] = '60'
8b8a1864 5552 hapd = hostapd.add_ap(apdev[0], params)
81e1ab85 5553 check_tls_session_resumption_capa(dev[0], hapd)
3b3e2687 5554 eap_connect(dev[0], hapd, "PEAP", "user",
81e1ab85
JM
5555 anonymous_identity="peap", password="password",
5556 phase1="peapver=0 crypto_binding=2",
5557 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2")
5558 if dev[0].get_status_field("tls_session_reused") != '0':
5559 raise Exception("Unexpected session resumption on the first connection")
5560
5561 dev[0].request("REAUTHENTICATE")
5562 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
5563 if ev is None:
5564 raise Exception("EAP success timed out")
5565 ev = dev[0].wait_event(["WPA: Key negotiation completed"], timeout=10)
5566 if ev is None:
5567 raise Exception("Key handshake with the AP timed out")
5568 if dev[0].get_status_field("tls_session_reused") != '1':
5569 raise Exception("Session resumption not used on the second connection")
5570
f9dd43ea
JM
5571def test_eap_peap_no_session_resumption(dev, apdev):
5572 """EAP-PEAP session resumption disabled on server"""
5573 params = int_eap_server_params()
8b8a1864 5574 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 5575 eap_connect(dev[0], hapd, "PEAP", "user",
f9dd43ea
JM
5576 anonymous_identity="peap", password="password",
5577 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2")
5578 if dev[0].get_status_field("tls_session_reused") != '0':
5579 raise Exception("Unexpected session resumption on the first connection")
5580
5581 dev[0].request("REAUTHENTICATE")
5582 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
5583 if ev is None:
5584 raise Exception("EAP success timed out")
5585 ev = dev[0].wait_event(["WPA: Key negotiation completed"], timeout=10)
5586 if ev is None:
5587 raise Exception("Key handshake with the AP timed out")
5588 if dev[0].get_status_field("tls_session_reused") != '0':
5589 raise Exception("Unexpected session resumption on the second connection")
5590
5591def test_eap_tls_session_resumption(dev, apdev):
5592 """EAP-TLS session resumption"""
5593 params = int_eap_server_params()
5594 params['tls_session_lifetime'] = '60'
8b8a1864 5595 hapd = hostapd.add_ap(apdev[0], params)
f9dd43ea 5596 check_tls_session_resumption_capa(dev[0], hapd)
3b3e2687 5597 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
f9dd43ea
JM
5598 client_cert="auth_serv/user.pem",
5599 private_key="auth_serv/user.key")
5600 if dev[0].get_status_field("tls_session_reused") != '0':
5601 raise Exception("Unexpected session resumption on the first connection")
5602
5603 dev[0].request("REAUTHENTICATE")
5604 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
5605 if ev is None:
5606 raise Exception("EAP success timed out")
5607 ev = dev[0].wait_event(["WPA: Key negotiation completed"], timeout=10)
5608 if ev is None:
5609 raise Exception("Key handshake with the AP timed out")
5610 if dev[0].get_status_field("tls_session_reused") != '1':
5611 raise Exception("Session resumption not used on the second connection")
5612
5613 dev[0].request("REAUTHENTICATE")
5614 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
5615 if ev is None:
5616 raise Exception("EAP success timed out")
5617 ev = dev[0].wait_event(["WPA: Key negotiation completed"], timeout=10)
5618 if ev is None:
5619 raise Exception("Key handshake with the AP timed out")
5620 if dev[0].get_status_field("tls_session_reused") != '1':
5621 raise Exception("Session resumption not used on the third connection")
5622
5623def test_eap_tls_session_resumption_expiration(dev, apdev):
5624 """EAP-TLS session resumption"""
5625 params = int_eap_server_params()
5626 params['tls_session_lifetime'] = '1'
8b8a1864 5627 hapd = hostapd.add_ap(apdev[0], params)
f9dd43ea 5628 check_tls_session_resumption_capa(dev[0], hapd)
3b3e2687 5629 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
f9dd43ea
JM
5630 client_cert="auth_serv/user.pem",
5631 private_key="auth_serv/user.key")
5632 if dev[0].get_status_field("tls_session_reused") != '0':
5633 raise Exception("Unexpected session resumption on the first connection")
5634
5635 # Allow multiple attempts since OpenSSL may not expire the cached entry
5636 # immediately.
5637 for i in range(10):
5638 time.sleep(1.2)
5639
5640 dev[0].request("REAUTHENTICATE")
5641 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
5642 if ev is None:
5643 raise Exception("EAP success timed out")
5644 ev = dev[0].wait_event(["WPA: Key negotiation completed"], timeout=10)
5645 if ev is None:
5646 raise Exception("Key handshake with the AP timed out")
5647 if dev[0].get_status_field("tls_session_reused") == '0':
5648 break
5649 if dev[0].get_status_field("tls_session_reused") != '0':
5650 raise Exception("Session resumption used after lifetime expiration")
5651
5652def test_eap_tls_no_session_resumption(dev, apdev):
5653 """EAP-TLS session resumption disabled on server"""
5654 params = int_eap_server_params()
8b8a1864 5655 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 5656 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
f9dd43ea
JM
5657 client_cert="auth_serv/user.pem",
5658 private_key="auth_serv/user.key")
5659 if dev[0].get_status_field("tls_session_reused") != '0':
5660 raise Exception("Unexpected session resumption on the first connection")
5661
5662 dev[0].request("REAUTHENTICATE")
5663 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
5664 if ev is None:
5665 raise Exception("EAP success timed out")
5666 ev = dev[0].wait_event(["WPA: Key negotiation completed"], timeout=10)
5667 if ev is None:
5668 raise Exception("Key handshake with the AP timed out")
5669 if dev[0].get_status_field("tls_session_reused") != '0':
5670 raise Exception("Unexpected session resumption on the second connection")
5671
5672def test_eap_tls_session_resumption_radius(dev, apdev):
5673 """EAP-TLS session resumption (RADIUS)"""
5674 params = { "ssid": "as", "beacon_int": "2000",
5675 "radius_server_clients": "auth_serv/radius_clients.conf",
5676 "radius_server_auth_port": '18128',
5677 "eap_server": "1",
5678 "eap_user_file": "auth_serv/eap_user.conf",
5679 "ca_cert": "auth_serv/ca.pem",
5680 "server_cert": "auth_serv/server.pem",
5681 "private_key": "auth_serv/server.key",
5682 "tls_session_lifetime": "60" }
8b8a1864 5683 authsrv = hostapd.add_ap(apdev[1], params)
f9dd43ea
JM
5684 check_tls_session_resumption_capa(dev[0], authsrv)
5685
5686 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
5687 params['auth_server_port'] = "18128"
8b8a1864 5688 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 5689 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
f9dd43ea
JM
5690 client_cert="auth_serv/user.pem",
5691 private_key="auth_serv/user.key")
5692 if dev[0].get_status_field("tls_session_reused") != '0':
5693 raise Exception("Unexpected session resumption on the first connection")
5694
5695 dev[0].request("REAUTHENTICATE")
5696 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
5697 if ev is None:
5698 raise Exception("EAP success timed out")
5699 ev = dev[0].wait_event(["WPA: Key negotiation completed"], timeout=10)
5700 if ev is None:
5701 raise Exception("Key handshake with the AP timed out")
5702 if dev[0].get_status_field("tls_session_reused") != '1':
5703 raise Exception("Session resumption not used on the second connection")
5704
5705def test_eap_tls_no_session_resumption_radius(dev, apdev):
5706 """EAP-TLS session resumption disabled (RADIUS)"""
5707 params = { "ssid": "as", "beacon_int": "2000",
5708 "radius_server_clients": "auth_serv/radius_clients.conf",
5709 "radius_server_auth_port": '18128',
5710 "eap_server": "1",
5711 "eap_user_file": "auth_serv/eap_user.conf",
5712 "ca_cert": "auth_serv/ca.pem",
5713 "server_cert": "auth_serv/server.pem",
5714 "private_key": "auth_serv/server.key",
5715 "tls_session_lifetime": "0" }
8b8a1864 5716 hostapd.add_ap(apdev[1], params)
f9dd43ea
JM
5717
5718 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
5719 params['auth_server_port'] = "18128"
8b8a1864 5720 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 5721 eap_connect(dev[0], hapd, "TLS", "tls user", ca_cert="auth_serv/ca.pem",
f9dd43ea
JM
5722 client_cert="auth_serv/user.pem",
5723 private_key="auth_serv/user.key")
5724 if dev[0].get_status_field("tls_session_reused") != '0':
5725 raise Exception("Unexpected session resumption on the first connection")
5726
5727 dev[0].request("REAUTHENTICATE")
5728 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=10)
5729 if ev is None:
5730 raise Exception("EAP success timed out")
5731 ev = dev[0].wait_event(["WPA: Key negotiation completed"], timeout=10)
5732 if ev is None:
5733 raise Exception("Key handshake with the AP timed out")
5734 if dev[0].get_status_field("tls_session_reused") != '0':
5735 raise Exception("Unexpected session resumption on the second connection")
7c0d66cf
JM
5736
5737def test_eap_mschapv2_errors(dev, apdev):
5738 """EAP-MSCHAPv2 error cases"""
5739 check_eap_capa(dev[0], "MSCHAPV2")
5740 check_eap_capa(dev[0], "FAST")
5741
5742 params = hostapd.wpa2_eap_params(ssid="test-wpa-eap")
8b8a1864 5743 hapd = hostapd.add_ap(apdev[0], params)
7c0d66cf
JM
5744 dev[0].connect("test-wpa-eap", key_mgmt="WPA-EAP", eap="MSCHAPV2",
5745 identity="phase1-user", password="password",
5746 scan_freq="2412")
5747 dev[0].request("REMOVE_NETWORK all")
5748 dev[0].wait_disconnected()
5749
5750 tests = [ (1, "hash_nt_password_hash;mschapv2_derive_response"),
5751 (1, "nt_password_hash;mschapv2_derive_response"),
5752 (1, "nt_password_hash;=mschapv2_derive_response"),
5753 (1, "generate_nt_response;mschapv2_derive_response"),
5754 (1, "generate_authenticator_response;mschapv2_derive_response"),
5755 (1, "nt_password_hash;=mschapv2_derive_response"),
5756 (1, "get_master_key;mschapv2_derive_response"),
5757 (1, "os_get_random;eap_mschapv2_challenge_reply") ]
5758 for count, func in tests:
5759 with fail_test(dev[0], count, func):
5760 dev[0].connect("test-wpa-eap", key_mgmt="WPA-EAP", eap="MSCHAPV2",
5761 identity="phase1-user", password="password",
5762 wait_connect=False, scan_freq="2412")
5763 wait_fail_trigger(dev[0], "GET_FAIL")
5764 dev[0].request("REMOVE_NETWORK all")
5765 dev[0].wait_disconnected()
5766
5767 tests = [ (1, "hash_nt_password_hash;mschapv2_derive_response"),
5768 (1, "hash_nt_password_hash;=mschapv2_derive_response"),
5769 (1, "generate_nt_response_pwhash;mschapv2_derive_response"),
5770 (1, "generate_authenticator_response_pwhash;mschapv2_derive_response") ]
5771 for count, func in tests:
5772 with fail_test(dev[0], count, func):
5773 dev[0].connect("test-wpa-eap", key_mgmt="WPA-EAP", eap="MSCHAPV2",
5774 identity="phase1-user",
5775 password_hex="hash:8846f7eaee8fb117ad06bdd830b7586c",
5776 wait_connect=False, scan_freq="2412")
5777 wait_fail_trigger(dev[0], "GET_FAIL")
5778 dev[0].request("REMOVE_NETWORK all")
5779 dev[0].wait_disconnected()
5780
5781 tests = [ (1, "eap_mschapv2_init"),
5782 (1, "eap_msg_alloc;eap_mschapv2_challenge_reply"),
5783 (1, "eap_msg_alloc;eap_mschapv2_success"),
5784 (1, "eap_mschapv2_getKey") ]
5785 for count, func in tests:
5786 with alloc_fail(dev[0], count, func):
5787 dev[0].connect("test-wpa-eap", key_mgmt="WPA-EAP", eap="MSCHAPV2",
5788 identity="phase1-user", password="password",
5789 wait_connect=False, scan_freq="2412")
5790 wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
5791 dev[0].request("REMOVE_NETWORK all")
5792 dev[0].wait_disconnected()
5793
5794 tests = [ (1, "eap_msg_alloc;eap_mschapv2_failure") ]
5795 for count, func in tests:
5796 with alloc_fail(dev[0], count, func):
5797 dev[0].connect("test-wpa-eap", key_mgmt="WPA-EAP", eap="MSCHAPV2",
5798 identity="phase1-user", password="wrong password",
5799 wait_connect=False, scan_freq="2412")
5800 wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
5801 dev[0].request("REMOVE_NETWORK all")
5802 dev[0].wait_disconnected()
5803
5804 tests = [ (2, "eap_mschapv2_init"),
5805 (3, "eap_mschapv2_init") ]
5806 for count, func in tests:
5807 with alloc_fail(dev[0], count, func):
5808 dev[0].connect("test-wpa-eap", key_mgmt="WPA-EAP", eap="FAST",
5809 anonymous_identity="FAST", identity="user",
5810 password="password",
5811 ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAPV2",
5812 phase1="fast_provisioning=1",
5813 pac_file="blob://fast_pac",
5814 wait_connect=False, scan_freq="2412")
5815 wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
5816 dev[0].request("REMOVE_NETWORK all")
5817 dev[0].wait_disconnected()
bf0ec17a
JM
5818
5819def test_eap_gpsk_errors(dev, apdev):
5820 """EAP-GPSK error cases"""
5821 params = hostapd.wpa2_eap_params(ssid="test-wpa-eap")
8b8a1864 5822 hapd = hostapd.add_ap(apdev[0], params)
bf0ec17a
JM
5823 dev[0].connect("test-wpa-eap", key_mgmt="WPA-EAP", eap="GPSK",
5824 identity="gpsk user",
5825 password="abcdefghijklmnop0123456789abcdef",
5826 scan_freq="2412")
5827 dev[0].request("REMOVE_NETWORK all")
5828 dev[0].wait_disconnected()
5829
5830 tests = [ (1, "os_get_random;eap_gpsk_send_gpsk_2", None),
5831 (1, "eap_gpsk_derive_session_id;eap_gpsk_send_gpsk_2",
5832 "cipher=1"),
5833 (1, "eap_gpsk_derive_session_id;eap_gpsk_send_gpsk_2",
5834 "cipher=2"),
5835 (1, "eap_gpsk_derive_keys_helper", None),
5836 (2, "eap_gpsk_derive_keys_helper", None),
5837 (1, "eap_gpsk_compute_mic_aes;eap_gpsk_compute_mic;eap_gpsk_send_gpsk_2",
5838 "cipher=1"),
5839 (1, "hmac_sha256;eap_gpsk_compute_mic;eap_gpsk_send_gpsk_2",
5840 "cipher=2"),
5841 (1, "eap_gpsk_compute_mic;eap_gpsk_validate_gpsk_3_mic", None),
5842 (1, "eap_gpsk_compute_mic;eap_gpsk_send_gpsk_4", None),
5843 (1, "eap_gpsk_derive_mid_helper", None) ]
5844 for count, func, phase1 in tests:
5845 with fail_test(dev[0], count, func):
5846 dev[0].connect("test-wpa-eap", key_mgmt="WPA-EAP", eap="GPSK",
5847 identity="gpsk user",
5848 password="abcdefghijklmnop0123456789abcdef",
5849 phase1=phase1,
5850 wait_connect=False, scan_freq="2412")
5851 wait_fail_trigger(dev[0], "GET_FAIL")
5852 dev[0].request("REMOVE_NETWORK all")
5853 dev[0].wait_disconnected()
5854
5855 tests = [ (1, "eap_gpsk_init"),
5856 (2, "eap_gpsk_init"),
5857 (3, "eap_gpsk_init"),
5858 (1, "eap_gpsk_process_id_server"),
5859 (1, "eap_msg_alloc;eap_gpsk_send_gpsk_2"),
5860 (1, "eap_gpsk_derive_session_id;eap_gpsk_send_gpsk_2"),
5861 (1, "eap_gpsk_derive_mid_helper;eap_gpsk_derive_session_id;eap_gpsk_send_gpsk_2"),
5862 (1, "eap_gpsk_derive_keys"),
5863 (1, "eap_gpsk_derive_keys_helper"),
5864 (1, "eap_msg_alloc;eap_gpsk_send_gpsk_4"),
5865 (1, "eap_gpsk_getKey"),
5866 (1, "eap_gpsk_get_emsk"),
5867 (1, "eap_gpsk_get_session_id") ]
5868 for count, func in tests:
5869 with alloc_fail(dev[0], count, func):
5870 dev[0].request("ERP_FLUSH")
5871 dev[0].connect("test-wpa-eap", key_mgmt="WPA-EAP", eap="GPSK",
0a0c4dc1 5872 identity="gpsk user@domain", erp="1",
bf0ec17a
JM
5873 password="abcdefghijklmnop0123456789abcdef",
5874 wait_connect=False, scan_freq="2412")
5875 wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
5876 dev[0].request("REMOVE_NETWORK all")
5877 dev[0].wait_disconnected()
d4c3c055
JM
5878
5879def test_ap_wpa2_eap_sim_db(dev, apdev, params):
5880 """EAP-SIM DB error cases"""
5881 sockpath = '/tmp/hlr_auc_gw.sock-test'
5882 try:
5883 os.remove(sockpath)
5884 except:
5885 pass
5886 hparams = int_eap_server_params()
5887 hparams['eap_sim_db'] = 'unix:' + sockpath
8b8a1864 5888 hapd = hostapd.add_ap(apdev[0], hparams)
d4c3c055
JM
5889
5890 # Initial test with hlr_auc_gw socket not available
5891 id = dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP WPA-EAP-SHA256",
5892 eap="SIM", identity="1232010000000000",
5893 password="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581",
5894 scan_freq="2412", wait_connect=False)
5895 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=10)
5896 if ev is None:
5897 raise Exception("EAP-Failure not reported")
5898 dev[0].wait_disconnected()
5899 dev[0].request("DISCONNECT")
5900
5901 # Test with invalid responses and response timeout
5902
5903 class test_handler(SocketServer.DatagramRequestHandler):
5904 def handle(self):
5905 data = self.request[0].strip()
5906 socket = self.request[1]
5907 logger.debug("Received hlr_auc_gw request: " + data)
5908 # EAP-SIM DB: Failed to parse response string
5909 socket.sendto("FOO", self.client_address)
5910 # EAP-SIM DB: Failed to parse response string
5911 socket.sendto("FOO 1", self.client_address)
5912 # EAP-SIM DB: Unknown external response
5913 socket.sendto("FOO 1 2", self.client_address)
5914 logger.info("No proper response - wait for pending eap_sim_db request timeout")
5915
5916 server = SocketServer.UnixDatagramServer(sockpath, test_handler)
5917 server.timeout = 1
5918
5919 dev[0].select_network(id)
5920 server.handle_request()
5921 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=10)
5922 if ev is None:
5923 raise Exception("EAP-Failure not reported")
5924 dev[0].wait_disconnected()
5925 dev[0].request("DISCONNECT")
5926
5927 # Test with a valid response
5928
5929 class test_handler2(SocketServer.DatagramRequestHandler):
5930 def handle(self):
5931 data = self.request[0].strip()
5932 socket = self.request[1]
5933 logger.debug("Received hlr_auc_gw request: " + data)
5934 fname = os.path.join(params['logdir'],
5935 'hlr_auc_gw.milenage_db')
5936 cmd = subprocess.Popen(['../../hostapd/hlr_auc_gw',
5937 '-m', fname, data],
5938 stdout=subprocess.PIPE)
5939 res = cmd.stdout.read().strip()
5940 cmd.stdout.close()
5941 logger.debug("hlr_auc_gw response: " + res)
5942 socket.sendto(res, self.client_address)
5943
5944 server.RequestHandlerClass = test_handler2
5945
5946 dev[0].select_network(id)
5947 server.handle_request()
5948 dev[0].wait_connected()
5949 dev[0].request("DISCONNECT")
5950 dev[0].wait_disconnected()
d6ba709a
JM
5951
5952def test_eap_tls_sha512(dev, apdev, params):
5953 """EAP-TLS with SHA512 signature"""
5954 params = int_eap_server_params()
5955 params["ca_cert"] = "auth_serv/sha512-ca.pem"
5956 params["server_cert"] = "auth_serv/sha512-server.pem"
5957 params["private_key"] = "auth_serv/sha512-server.key"
8b8a1864 5958 hostapd.add_ap(apdev[0], params)
d6ba709a
JM
5959
5960 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
5961 identity="tls user sha512",
5962 ca_cert="auth_serv/sha512-ca.pem",
5963 client_cert="auth_serv/sha512-user.pem",
5964 private_key="auth_serv/sha512-user.key",
5965 scan_freq="2412")
5966 dev[1].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
5967 identity="tls user sha512",
5968 ca_cert="auth_serv/sha512-ca.pem",
5969 client_cert="auth_serv/sha384-user.pem",
5970 private_key="auth_serv/sha384-user.key",
5971 scan_freq="2412")
5972
5973def test_eap_tls_sha384(dev, apdev, params):
5974 """EAP-TLS with SHA384 signature"""
5975 params = int_eap_server_params()
5976 params["ca_cert"] = "auth_serv/sha512-ca.pem"
5977 params["server_cert"] = "auth_serv/sha384-server.pem"
5978 params["private_key"] = "auth_serv/sha384-server.key"
8b8a1864 5979 hostapd.add_ap(apdev[0], params)
d6ba709a
JM
5980
5981 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
5982 identity="tls user sha512",
5983 ca_cert="auth_serv/sha512-ca.pem",
5984 client_cert="auth_serv/sha512-user.pem",
5985 private_key="auth_serv/sha512-user.key",
5986 scan_freq="2412")
5987 dev[1].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
5988 identity="tls user sha512",
5989 ca_cert="auth_serv/sha512-ca.pem",
5990 client_cert="auth_serv/sha384-user.pem",
5991 private_key="auth_serv/sha384-user.key",
5992 scan_freq="2412")
0ceff76e
JM
5993
5994def test_ap_wpa2_eap_assoc_rsn(dev, apdev):
5995 """WPA2-Enterprise AP and association request RSN IE differences"""
5996 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 5997 hostapd.add_ap(apdev[0], params)
0ceff76e
JM
5998
5999 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap-11w")
6000 params["ieee80211w"] = "2"
8b8a1864 6001 hostapd.add_ap(apdev[1], params)
0ceff76e
JM
6002
6003 # Success cases with optional RSN IE fields removed one by one
6004 tests = [ ("Normal wpa_supplicant assoc req RSN IE",
6005 "30140100000fac040100000fac040100000fac010000"),
6006 ("Extra PMKIDCount field in RSN IE",
6007 "30160100000fac040100000fac040100000fac0100000000"),
6008 ("Extra Group Management Cipher Suite in RSN IE",
6009 "301a0100000fac040100000fac040100000fac0100000000000fac06"),
6010 ("Extra undefined extension field in RSN IE",
6011 "301c0100000fac040100000fac040100000fac0100000000000fac061122"),
6012 ("RSN IE without RSN Capabilities",
6013 "30120100000fac040100000fac040100000fac01"),
6014 ("RSN IE without AKM", "300c0100000fac040100000fac04"),
6015 ("RSN IE without pairwise", "30060100000fac04"),
6016 ("RSN IE without group", "30020100") ]
6017 for title, ie in tests:
6018 logger.info(title)
6019 set_test_assoc_ie(dev[0], ie)
6020 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="GPSK",
6021 identity="gpsk user",
6022 password="abcdefghijklmnop0123456789abcdef",
6023 scan_freq="2412")
6024 dev[0].request("REMOVE_NETWORK all")
6025 dev[0].wait_disconnected()
6026
6027 tests = [ ("Normal wpa_supplicant assoc req RSN IE",
6028 "30140100000fac040100000fac040100000fac01cc00"),
6029 ("Group management cipher included in assoc req RSN IE",
6030 "301a0100000fac040100000fac040100000fac01cc000000000fac06") ]
6031 for title, ie in tests:
6032 logger.info(title)
6033 set_test_assoc_ie(dev[0], ie)
6034 dev[0].connect("test-wpa2-eap-11w", key_mgmt="WPA-EAP", ieee80211w="1",
6035 eap="GPSK", identity="gpsk user",
6036 password="abcdefghijklmnop0123456789abcdef",
6037 scan_freq="2412")
6038 dev[0].request("REMOVE_NETWORK all")
6039 dev[0].wait_disconnected()
6040
6041 tests = [ ("Invalid group cipher", "30060100000fac02", 41),
6042 ("Invalid pairwise cipher", "300c0100000fac040100000fac02", 42) ]
6043 for title, ie, status in tests:
6044 logger.info(title)
6045 set_test_assoc_ie(dev[0], ie)
6046 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="GPSK",
6047 identity="gpsk user",
6048 password="abcdefghijklmnop0123456789abcdef",
6049 scan_freq="2412", wait_connect=False)
6050 ev = dev[0].wait_event(["CTRL-EVENT-ASSOC-REJECT"])
6051 if ev is None:
6052 raise Exception("Association rejection not reported")
6053 if "status_code=" + str(status) not in ev:
6054 raise Exception("Unexpected status code: " + ev)
6055 dev[0].request("REMOVE_NETWORK all")
6056 dev[0].dump_monitor()
6057
6058 tests = [ ("Management frame protection not enabled",
6059 "30140100000fac040100000fac040100000fac010000", 31),
6060 ("Unsupported management group cipher",
80ad0680 6061 "301a0100000fac040100000fac040100000fac01cc000000000fac0b", 46) ]
0ceff76e
JM
6062 for title, ie, status in tests:
6063 logger.info(title)
6064 set_test_assoc_ie(dev[0], ie)
6065 dev[0].connect("test-wpa2-eap-11w", key_mgmt="WPA-EAP", ieee80211w="1",
6066 eap="GPSK", identity="gpsk user",
6067 password="abcdefghijklmnop0123456789abcdef",
6068 scan_freq="2412", wait_connect=False)
6069 ev = dev[0].wait_event(["CTRL-EVENT-ASSOC-REJECT"])
6070 if ev is None:
6071 raise Exception("Association rejection not reported")
6072 if "status_code=" + str(status) not in ev:
6073 raise Exception("Unexpected status code: " + ev)
6074 dev[0].request("REMOVE_NETWORK all")
6075 dev[0].dump_monitor()
ca27ee09
JM
6076
6077def test_eap_tls_ext_cert_check(dev, apdev):
6078 """EAP-TLS and external server certification validation"""
6079 # With internal server certificate chain validation
6080 id = dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
6081 identity="tls user",
6082 ca_cert="auth_serv/ca.pem",
6083 client_cert="auth_serv/user.pem",
6084 private_key="auth_serv/user.key",
6085 phase1="tls_ext_cert_check=1", scan_freq="2412",
6086 only_add_network=True)
6087 run_ext_cert_check(dev, apdev, id)
6088
6089def test_eap_ttls_ext_cert_check(dev, apdev):
6090 """EAP-TTLS and external server certification validation"""
6091 # Without internal server certificate chain validation
6092 id = dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
6093 identity="pap user", anonymous_identity="ttls",
6094 password="password", phase2="auth=PAP",
6095 phase1="tls_ext_cert_check=1", scan_freq="2412",
6096 only_add_network=True)
6097 run_ext_cert_check(dev, apdev, id)
6098
6099def test_eap_peap_ext_cert_check(dev, apdev):
6100 """EAP-PEAP and external server certification validation"""
6101 # With internal server certificate chain validation
6102 id = dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="PEAP",
6103 identity="user", anonymous_identity="peap",
6104 ca_cert="auth_serv/ca.pem",
6105 password="password", phase2="auth=MSCHAPV2",
6106 phase1="tls_ext_cert_check=1", scan_freq="2412",
6107 only_add_network=True)
6108 run_ext_cert_check(dev, apdev, id)
6109
6110def test_eap_fast_ext_cert_check(dev, apdev):
6111 """EAP-FAST and external server certification validation"""
6112 check_eap_capa(dev[0], "FAST")
6113 # With internal server certificate chain validation
6114 dev[0].request("SET blob fast_pac_auth_ext ")
6115 id = dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="FAST",
6116 identity="user", anonymous_identity="FAST",
6117 ca_cert="auth_serv/ca.pem",
6118 password="password", phase2="auth=GTC",
6119 phase1="tls_ext_cert_check=1 fast_provisioning=2",
6120 pac_file="blob://fast_pac_auth_ext",
6121 scan_freq="2412",
6122 only_add_network=True)
6123 run_ext_cert_check(dev, apdev, id)
6124
6125def run_ext_cert_check(dev, apdev, net_id):
6126 check_ext_cert_check_support(dev[0])
6127 if not openssl_imported:
6128 raise HwsimSkip("OpenSSL python method not available")
6129
6130 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 6131 hapd = hostapd.add_ap(apdev[0], params)
ca27ee09
JM
6132
6133 dev[0].select_network(net_id)
6134 certs = {}
6135 while True:
6136 ev = dev[0].wait_event(["CTRL-EVENT-EAP-PEER-CERT",
6137 "CTRL-REQ-EXT_CERT_CHECK",
6138 "CTRL-EVENT-EAP-SUCCESS"], timeout=10)
6139 if ev is None:
6140 raise Exception("No peer server certificate event seen")
6141 if "CTRL-EVENT-EAP-PEER-CERT" in ev:
6142 depth = None
6143 cert = None
6144 vals = ev.split(' ')
6145 for v in vals:
6146 if v.startswith("depth="):
6147 depth = int(v.split('=')[1])
6148 elif v.startswith("cert="):
6149 cert = v.split('=')[1]
6150 if depth is not None and cert:
6151 certs[depth] = binascii.unhexlify(cert)
6152 elif "CTRL-EVENT-EAP-SUCCESS" in ev:
6153 raise Exception("Unexpected EAP-Success")
6154 elif "CTRL-REQ-EXT_CERT_CHECK" in ev:
6155 id = ev.split(':')[0].split('-')[-1]
6156 break
6157 if 0 not in certs:
6158 raise Exception("Server certificate not received")
6159 if 1 not in certs:
6160 raise Exception("Server certificate issuer not received")
6161
6162 cert = OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_ASN1,
6163 certs[0])
6164 cn = cert.get_subject().commonName
6165 logger.info("Server certificate CN=" + cn)
6166
6167 issuer = OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_ASN1,
6168 certs[1])
6169 icn = issuer.get_subject().commonName
6170 logger.info("Issuer certificate CN=" + icn)
6171
6172 if cn != "server.w1.fi":
6173 raise Exception("Unexpected server certificate CN: " + cn)
6174 if icn != "Root CA":
6175 raise Exception("Unexpected server certificate issuer CN: " + icn)
6176
6177 ev = dev[0].wait_event(["CTRL-EVENT-EAP-SUCCESS"], timeout=0.1)
6178 if ev:
6179 raise Exception("Unexpected EAP-Success before external check result indication")
6180
6181 dev[0].request("CTRL-RSP-EXT_CERT_CHECK-" + id + ":good")
6182 dev[0].wait_connected()
6183
6184 dev[0].request("DISCONNECT")
6185 dev[0].wait_disconnected()
6186 if "FAIL" in dev[0].request("PMKSA_FLUSH"):
6187 raise Exception("PMKSA_FLUSH failed")
6188 dev[0].request("SET blob fast_pac_auth_ext ")
6189 dev[0].request("RECONNECT")
6190
6191 ev = dev[0].wait_event(["CTRL-REQ-EXT_CERT_CHECK"], timeout=10)
6192 if ev is None:
6193 raise Exception("No peer server certificate event seen (2)")
6194 id = ev.split(':')[0].split('-')[-1]
6195 dev[0].request("CTRL-RSP-EXT_CERT_CHECK-" + id + ":bad")
6196 ev = dev[0].wait_event(["CTRL-EVENT-EAP-FAILURE"], timeout=5)
6197 if ev is None:
6198 raise Exception("EAP-Failure not reported")
6199 dev[0].request("REMOVE_NETWORK all")
6200 dev[0].wait_disconnected()
a89faedc
JM
6201
6202def test_eap_tls_errors(dev, apdev):
6203 """EAP-TLS error cases"""
6204 params = int_eap_server_params()
6205 params['fragment_size'] = '100'
8b8a1864 6206 hostapd.add_ap(apdev[0], params)
a89faedc
JM
6207 with alloc_fail(dev[0], 1,
6208 "eap_peer_tls_reassemble_fragment"):
6209 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
6210 identity="tls user", ca_cert="auth_serv/ca.pem",
6211 client_cert="auth_serv/user.pem",
6212 private_key="auth_serv/user.key",
6213 wait_connect=False, scan_freq="2412")
6214 wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
6215 dev[0].request("REMOVE_NETWORK all")
6216 dev[0].wait_disconnected()
6217
6218 with alloc_fail(dev[0], 1, "eap_tls_init"):
6219 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
6220 identity="tls user", ca_cert="auth_serv/ca.pem",
6221 client_cert="auth_serv/user.pem",
6222 private_key="auth_serv/user.key",
6223 wait_connect=False, scan_freq="2412")
6224 wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
6225 dev[0].request("REMOVE_NETWORK all")
6226 dev[0].wait_disconnected()
6227
6228 with alloc_fail(dev[0], 1, "eap_peer_tls_ssl_init"):
6229 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
6230 identity="tls user", ca_cert="auth_serv/ca.pem",
6231 client_cert="auth_serv/user.pem",
6232 private_key="auth_serv/user.key",
6233 engine="1",
6234 wait_connect=False, scan_freq="2412")
6235 wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
6236 ev = dev[0].wait_event(["CTRL-REQ-PIN"], timeout=5)
6237 if ev is None:
6238 raise Exception("No CTRL-REQ-PIN seen")
6239 dev[0].request("REMOVE_NETWORK all")
6240 dev[0].wait_disconnected()
6241
6242 tests = [ "eap_peer_tls_derive_key;eap_tls_success",
6243 "eap_peer_tls_derive_session_id;eap_tls_success",
6244 "eap_tls_getKey",
6245 "eap_tls_get_emsk",
6246 "eap_tls_get_session_id" ]
6247 for func in tests:
6248 with alloc_fail(dev[0], 1, func):
6249 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TLS",
0a0c4dc1
JM
6250 identity="tls user@domain",
6251 ca_cert="auth_serv/ca.pem",
a89faedc
JM
6252 client_cert="auth_serv/user.pem",
6253 private_key="auth_serv/user.key",
6254 erp="1",
6255 wait_connect=False, scan_freq="2412")
6256 wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
6257 dev[0].request("REMOVE_NETWORK all")
6258 dev[0].wait_disconnected()
6259
6260 with alloc_fail(dev[0], 1, "eap_unauth_tls_init"):
6261 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="UNAUTH-TLS",
6262 identity="unauth-tls", ca_cert="auth_serv/ca.pem",
6263 wait_connect=False, scan_freq="2412")
6264 wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
6265 dev[0].request("REMOVE_NETWORK all")
6266 dev[0].wait_disconnected()
6267
6268 with alloc_fail(dev[0], 1, "eap_peer_tls_ssl_init;eap_unauth_tls_init"):
6269 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="UNAUTH-TLS",
6270 identity="unauth-tls", ca_cert="auth_serv/ca.pem",
6271 wait_connect=False, scan_freq="2412")
6272 wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
6273 dev[0].request("REMOVE_NETWORK all")
6274 dev[0].wait_disconnected()
6275
6276 with alloc_fail(dev[0], 1, "eap_wfa_unauth_tls_init"):
6277 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP",
6278 eap="WFA-UNAUTH-TLS",
6279 identity="osen@example.com", ca_cert="auth_serv/ca.pem",
6280 wait_connect=False, scan_freq="2412")
6281 wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
6282 dev[0].request("REMOVE_NETWORK all")
6283 dev[0].wait_disconnected()
6284
6285 with alloc_fail(dev[0], 1, "eap_peer_tls_ssl_init;eap_wfa_unauth_tls_init"):
6286 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP",
6287 eap="WFA-UNAUTH-TLS",
6288 identity="osen@example.com", ca_cert="auth_serv/ca.pem",
6289 wait_connect=False, scan_freq="2412")
6290 wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
6291 dev[0].request("REMOVE_NETWORK all")
6292 dev[0].wait_disconnected()
0918fe4d
JM
6293
6294def test_ap_wpa2_eap_status(dev, apdev):
6295 """EAP state machine status information"""
6296 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
8b8a1864 6297 hostapd.add_ap(apdev[0], params)
0918fe4d
JM
6298 dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="PEAP",
6299 identity="cert user",
6300 ca_cert="auth_serv/ca.pem", phase2="auth=TLS",
6301 ca_cert2="auth_serv/ca.pem",
6302 client_cert2="auth_serv/user.pem",
6303 private_key2="auth_serv/user.key",
6304 scan_freq="2412", wait_connect=False)
6305 success = False
6306 states = []
6307 method_states = []
6308 decisions = []
6309 req_methods = []
6310 selected_methods = []
6311 for i in range(100000):
6312 s = dev[0].get_status(extra="VERBOSE")
6313 if 'EAP state' in s:
6314 state = s['EAP state']
6315 if state:
6316 if state not in states:
6317 states.append(state)
6318 if state == "SUCCESS":
6319 success = True
6320 break
6321 if 'methodState' in s:
6322 val = s['methodState']
6323 if val not in method_states:
6324 method_states.append(val)
6325 if 'decision' in s:
6326 val = s['decision']
6327 if val not in decisions:
6328 decisions.append(val)
6329 if 'reqMethod' in s:
6330 val = s['reqMethod']
6331 if val not in req_methods:
6332 req_methods.append(val)
6333 if 'selectedMethod' in s:
6334 val = s['selectedMethod']
6335 if val not in selected_methods:
6336 selected_methods.append(val)
6337 logger.info("Iterations: %d" % i)
6338 logger.info("EAP states: " + str(states))
6339 logger.info("methodStates: " + str(method_states))
6340 logger.info("decisions: " + str(decisions))
6341 logger.info("reqMethods: " + str(req_methods))
6342 logger.info("selectedMethods: " + str(selected_methods))
6343 if not success:
6344 raise Exception("EAP did not succeed")
6345 dev[0].wait_connected()
6346 dev[0].request("REMOVE_NETWORK all")
6347 dev[0].wait_disconnected()
29b508e7
JM
6348
6349def test_ap_wpa2_eap_gpsk_ptk_rekey_ap(dev, apdev):
6350 """WPA2-Enterprise with EAP-GPSK and PTK rekey enforced by AP"""
6351 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
6352 params['wpa_ptk_rekey'] = '2'
8b8a1864 6353 hapd = hostapd.add_ap(apdev[0], params)
3b3e2687 6354 id = eap_connect(dev[0], hapd, "GPSK", "gpsk user",
29b508e7
JM
6355 password="abcdefghijklmnop0123456789abcdef")
6356 ev = dev[0].wait_event(["WPA: Key negotiation completed"])
6357 if ev is None:
6358 raise Exception("PTK rekey timed out")
6359 hwsim_utils.test_connectivity(dev[0], hapd)
2833743d
JM
6360
6361def test_ap_wpa2_eap_wildcard_ssid(dev, apdev):
6362 """WPA2-Enterprise connection using EAP-GPSK and wildcard SSID"""
6363 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
6364 hapd = hostapd.add_ap(apdev[0], params)
6365 dev[0].connect(bssid=apdev[0]['bssid'], key_mgmt="WPA-EAP", eap="GPSK",
6366 identity="gpsk user",
6367 password="abcdefghijklmnop0123456789abcdef",
6368 scan_freq="2412")
c9aba19b
JM
6369
6370def test_ap_wpa2_eap_psk_mac_addr_change(dev, apdev):
6371 """WPA2-Enterprise connection using EAP-PSK after MAC address change"""
6372 params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
6373 hapd = hostapd.add_ap(apdev[0], params)
6374
6375 cmd = subprocess.Popen(['ps', '-eo', 'pid,command'], stdout=subprocess.PIPE)
6376 res = cmd.stdout.read()
6377 cmd.stdout.close()
6378 pid = 0
6379 for p in res.splitlines():
6380 if "wpa_supplicant" not in p:
6381 continue
6382 if dev[0].ifname not in p:
6383 continue
6384 pid = int(p.strip().split(' ')[0])
6385 if pid == 0:
6386 logger.info("Could not find wpa_supplicant PID")
6387 else:
6388 logger.info("wpa_supplicant PID %d" % pid)
6389
6390 addr = dev[0].get_status_field("address")
6391 subprocess.call(['ip', 'link', 'set', 'dev', dev[0].ifname, 'down'])
6392 subprocess.call(['ip', 'link', 'set', 'dev', dev[0].ifname, 'address',
6393 '02:11:22:33:44:55'])
6394 subprocess.call(['ip', 'link', 'set', 'dev', dev[0].ifname, 'up'])
6395 addr1 = dev[0].get_status_field("address")
6396 if addr1 != '02:11:22:33:44:55':
6397 raise Exception("Failed to change MAC address")
6398
6399 # Scan using the externally set MAC address, stop the wpa_supplicant
6400 # process to avoid it from processing the ifdown event before the interface
6401 # is already UP, change the MAC address back, allow the wpa_supplicant
6402 # process to continue. This will result in the ifdown + ifup sequence of
6403 # RTM_NEWLINK events to be processed while the interface is already UP.
6404 try:
6405 dev[0].scan_for_bss(apdev[0]['bssid'], freq=2412)
6406 os.kill(pid, signal.SIGSTOP)
6407 time.sleep(0.1)
6408 finally:
6409 subprocess.call(['ip', 'link', 'set', 'dev', dev[0].ifname, 'down'])
6410 subprocess.call(['ip', 'link', 'set', 'dev', dev[0].ifname, 'address',
6411 addr])
6412 subprocess.call(['ip', 'link', 'set', 'dev', dev[0].ifname, 'up'])
6413 time.sleep(0.1)
6414 os.kill(pid, signal.SIGCONT)
6415
6416 eap_connect(dev[0], hapd, "PSK", "psk.user@example.com",
6417 password_hex="0123456789abcdef0123456789abcdef")
6418
6419 addr2 = dev[0].get_status_field("address")
6420 if addr != addr2:
6421 raise Exception("Failed to restore MAC address")