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