From 49ac2466c3008d6113fc759efa4b91f21f30b758 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 7 Dec 2019 14:00:23 +0200 Subject: [PATCH] tests: sigma_dut controlled SAE H2E misbehavior with RSNXE Signed-off-by: Jouni Malinen --- tests/hwsim/test_sigma_dut.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/tests/hwsim/test_sigma_dut.py b/tests/hwsim/test_sigma_dut.py index 9d6c57e0c..b5a28f975 100644 --- a/tests/hwsim/test_sigma_dut.py +++ b/tests/hwsim/test_sigma_dut.py @@ -3531,3 +3531,33 @@ def test_sigma_dut_sae_h2e_enabled_group_rejected(dev, apdev): raise Exception("Unexpected connection reported") finally: stop_sigma_dut(sigma) + +def test_sigma_dut_sae_h2e_rsnxe_mismatch(dev, apdev): + """sigma_dut controlled SAE H2E misbehavior with RSNXE""" + if "SAE" not in dev[0].get_capability("auth_alg"): + raise HwsimSkip("SAE not supported") + + ssid = "test-sae" + params = hostapd.wpa2_params(ssid=ssid, passphrase="12345678") + params['wpa_key_mgmt'] = 'SAE' + params["ieee80211w"] = "2" + params['sae_groups'] = "19" + params['sae_pwe'] = '1' + hapd = hostapd.add_ap(apdev[0], params) + + ifname = dev[0].ifname + try: + sigma = start_sigma_dut(ifname, sae_h2e=True) + + sigma_dut_cmd_check("sta_reset_default,interface,%s" % ifname) + sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname) + sigma_dut_cmd_check("sta_set_security,interface,%s,ssid,%s,passphrase,%s,type,SAE,encpType,aes-ccmp,keymgmttype,wpa2,RSNXE_Content,EapolM2:F40100" % (ifname, "test-sae", "12345678")) + sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-sae")) + ev = dev[0].wait_event(["SME: Trying to authenticate with"], timeout=10) + if ev is None: + raise Exception("No authentication attempt reported") + ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=0.5) + if ev is not None: + raise Exception("Unexpected connection reported") + finally: + stop_sigma_dut(sigma)