From 9524e7e5a4a18539f0fb532544d2de63621b5f8b Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Thu, 5 May 2016 21:08:23 +0300 Subject: [PATCH] tests: Open network connection with pmf=2 This verifies that pmf=2 is ignored for a non-RSN network while a network profile specific ieee80211w=2 is enforced. Signed-off-by: Jouni Malinen --- tests/hwsim/test_ap_open.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/tests/hwsim/test_ap_open.py b/tests/hwsim/test_ap_open.py index 59e4289d2..c9cb265fb 100644 --- a/tests/hwsim/test_ap_open.py +++ b/tests/hwsim/test_ap_open.py @@ -551,3 +551,26 @@ def test_ap_open_poll_sta(dev, apdev): raise Exception("Poll response not seen") if addr not in ev: raise Exception("Unexpected poll response: " + ev) + +def test_ap_open_pmf_default(dev, apdev): + """AP with open mode (no security) configuration and pmf=2""" + hapd = hostapd.add_ap(apdev[0], { "ssid": "open" }) + dev[1].connect("open", key_mgmt="NONE", scan_freq="2412", + ieee80211w="2", wait_connect=False) + dev[2].connect("open", key_mgmt="NONE", scan_freq="2412", + ieee80211w="1") + try: + dev[0].request("SET pmf 2") + dev[0].connect("open", key_mgmt="NONE", scan_freq="2412") + + dev[0].request("DISCONNECT") + dev[0].wait_disconnected() + finally: + dev[0].request("SET pmf 0") + dev[2].request("DISCONNECT") + dev[2].wait_disconnected() + + ev = dev[1].wait_event(["CTRL-EVENT-CONNECTED"], timeout=0.1) + if ev is not None: + raise Exception("Unexpected dev[1] connection") + dev[1].request("DISCONNECT")