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