From df49b90e35ec4dbb6c6ec3fa00965ab3f4477c63 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 13 May 2016 20:50:11 +0300 Subject: [PATCH] tests: Secure mesh and the first plink Open dropped This is a regression test case to verify that MTK is calculated properly also in this unexpected sequence. Signed-off-by: Jouni Malinen --- tests/hwsim/test_wpas_mesh.py | 42 +++++++++++++++++++++++++++++++++++ tests/hwsim/wpasupplicant.py | 11 +++++++++ 2 files changed, 53 insertions(+) diff --git a/tests/hwsim/test_wpas_mesh.py b/tests/hwsim/test_wpas_mesh.py index da045b395..2dc8f863c 100644 --- a/tests/hwsim/test_wpas_mesh.py +++ b/tests/hwsim/test_wpas_mesh.py @@ -355,6 +355,48 @@ def test_wpas_mesh_secure_no_auto(dev, apdev): dev[0].request("SET sae_groups ") dev[1].request("SET sae_groups ") +def test_wpas_mesh_secure_dropped_frame(dev, apdev): + """Secure mesh network connectivity when the first plink Open is dropped""" + check_mesh_support(dev[0], secure=True) + + dev[0].request("SET ext_mgmt_frame_handling 1") + dev[0].request("SET sae_groups ") + id = add_mesh_secure_net(dev[0]) + dev[0].mesh_group_add(id) + + dev[1].request("SET sae_groups ") + id = add_mesh_secure_net(dev[1]) + dev[1].mesh_group_add(id) + + # Check for mesh joined + check_mesh_group_added(dev[0]) + check_mesh_group_added(dev[1]) + + # Drop the first Action frame (plink Open) to test unexpected order of + # Confirm/Open messages. + count = 0 + while True: + count += 1 + if count > 10: + raise Exception("Did not see Action frames") + rx_msg = dev[0].mgmt_rx() + if rx_msg is None: + raise Exception("MGMT-RX timeout") + if rx_msg['subtype'] == 13: + logger.info("Drop the first Action frame") + break + if "OK" not in dev[0].request("MGMT_RX_PROCESS freq={} datarate={} ssi_signal={} frame={}".format(rx_msg['freq'], rx_msg['datarate'], rx_msg['ssi_signal'], rx_msg['frame'].encode('hex'))): + raise Exception("MGMT_RX_PROCESS failed") + + dev[0].request("SET ext_mgmt_frame_handling 0") + + # Check for peer connected + check_mesh_peer_connected(dev[0]) + check_mesh_peer_connected(dev[1]) + + # Test connectivity 0->1 and 1->0 + hwsim_utils.test_connectivity(dev[0], dev[1]) + def test_wpas_mesh_ctrl(dev): """wpa_supplicant ctrl_iface mesh command error cases""" check_mesh_support(dev[0]) diff --git a/tests/hwsim/wpasupplicant.py b/tests/hwsim/wpasupplicant.py index 4894fa13b..eba1bb0e5 100644 --- a/tests/hwsim/wpasupplicant.py +++ b/tests/hwsim/wpasupplicant.py @@ -1165,6 +1165,17 @@ class WpaSupplicant: if field != "freq": raise Exception("Unexpected MGMT-RX event format: " + ev) msg['freq'] = val + + field,val = items[2].split('=') + if field != "datarate": + raise Exception("Unexpected MGMT-RX event format: " + ev) + msg['datarate'] = val + + field,val = items[3].split('=') + if field != "ssi_signal": + raise Exception("Unexpected MGMT-RX event format: " + ev) + msg['ssi_signal'] = val + frame = binascii.unhexlify(items[4]) msg['frame'] = frame