* [PATCH 1/5] eapol: move HANDSHAKE_STARTED_EVENT to eapol_start()
@ 2024-07-17 14:55 James Prestwood
2024-07-17 14:55 ` [PATCH 2/5] station: add handshake-started debug event James Prestwood
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: James Prestwood @ 2024-07-17 14:55 UTC (permalink / raw)
To: iwd; +Cc: James Prestwood
This even is not used anywhere and can be leveraged in autotesting.
Move the event to eapol_start() so it gets called unconditionally
when the 4-way handshake is started.
---
src/eapol.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/eapol.c b/src/eapol.c
index 845ef866..6d176304 100644
--- a/src/eapol.c
+++ b/src/eapol.c
@@ -1036,8 +1036,6 @@ static void __send_eapol_start(struct eapol_sm *sm, bool noencrypt)
uint8_t buf[sizeof(struct eapol_frame)];
struct eapol_frame *frame = (struct eapol_frame *) buf;
- handshake_event(sm->handshake, HANDSHAKE_EVENT_STARTED);
-
frame->header.protocol_version = EAPOL_PROTOCOL_VERSION_2001;
frame->header.packet_type = 1;
l_put_be16(0, &frame->header.packet_len);
@@ -2858,6 +2856,8 @@ bool eapol_start(struct eapol_sm *sm)
eap_set_peer_id(sm->eap, network_id);
}
+ handshake_event(sm->handshake, HANDSHAKE_EVENT_STARTED);
+
sm->started = true;
if (sm->require_handshake)
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/5] station: add handshake-started debug event
2024-07-17 14:55 [PATCH 1/5] eapol: move HANDSHAKE_STARTED_EVENT to eapol_start() James Prestwood
@ 2024-07-17 14:55 ` James Prestwood
2024-07-17 14:55 ` [PATCH 3/5] auto-t: add clear_events() to IWD class James Prestwood
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: James Prestwood @ 2024-07-17 14:55 UTC (permalink / raw)
To: iwd; +Cc: James Prestwood
---
src/station.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/station.c b/src/station.c
index 05392fa2..bec19d79 100644
--- a/src/station.c
+++ b/src/station.c
@@ -1015,6 +1015,7 @@ static void station_handshake_event(struct handshake_state *hs,
switch (event) {
case HANDSHAKE_EVENT_STARTED:
l_debug("Handshaking");
+ station_debug_event(station, "handshake-started");
break;
case HANDSHAKE_EVENT_SETTING_KEYS:
l_debug("Setting keys");
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 3/5] auto-t: add clear_events() to IWD class
2024-07-17 14:55 [PATCH 1/5] eapol: move HANDSHAKE_STARTED_EVENT to eapol_start() James Prestwood
2024-07-17 14:55 ` [PATCH 2/5] station: add handshake-started debug event James Prestwood
@ 2024-07-17 14:55 ` James Prestwood
2024-07-17 14:55 ` [PATCH 4/5] auto-t: add reason/test arguments to hostapd deauthenticate James Prestwood
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: James Prestwood @ 2024-07-17 14:55 UTC (permalink / raw)
To: iwd; +Cc: James Prestwood
The wait_for_event() function allows past events to cause this
function to return immediately. This behavior is known, and
relied on for some tests. But in some cases you want to only
handle _new_ events, so we need a way to clear out prior events.
---
autotests/util/iwd.py | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/autotests/util/iwd.py b/autotests/util/iwd.py
index 511fb3a5..1d4a5472 100755
--- a/autotests/util/iwd.py
+++ b/autotests/util/iwd.py
@@ -299,6 +299,9 @@ class StationDebug(IWDDBusAbstract):
return False
+ def clear_events(self):
+ self._events = []
+
def wait_for_event(self, event, timeout=10):
return ctx.non_block_wait(self._poll_event, timeout, event,
exception=TimeoutError("waiting for event"))
@@ -859,6 +862,9 @@ class Device(IWDDBusAbstract):
def wait_for_event(self, event, timeout=10):
self._station_debug.wait_for_event(event, timeout)
+ def clear_events(self):
+ self._station_debug.clear_events()
+
def event_ocurred(self, event):
return self._station_debug.event_ocurred(event)
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 4/5] auto-t: add reason/test arguments to hostapd deauthenticate
2024-07-17 14:55 [PATCH 1/5] eapol: move HANDSHAKE_STARTED_EVENT to eapol_start() James Prestwood
2024-07-17 14:55 ` [PATCH 2/5] station: add handshake-started debug event James Prestwood
2024-07-17 14:55 ` [PATCH 3/5] auto-t: add clear_events() to IWD class James Prestwood
@ 2024-07-17 14:55 ` James Prestwood
2024-07-17 14:55 ` [PATCH 5/5] auto-t: Add deauth during the 4-way handshake test James Prestwood
2024-07-17 16:32 ` [PATCH 1/5] eapol: move HANDSHAKE_STARTED_EVENT to eapol_start() Denis Kenzior
4 siblings, 0 replies; 6+ messages in thread
From: James Prestwood @ 2024-07-17 14:55 UTC (permalink / raw)
To: iwd; +Cc: James Prestwood
The reason code is obvious, but the test argument is actually a
toggle to send the frame encrypted or unencrypted.
---
autotests/util/hostapd.py | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/autotests/util/hostapd.py b/autotests/util/hostapd.py
index 2f92e330..e5e35a96 100644
--- a/autotests/util/hostapd.py
+++ b/autotests/util/hostapd.py
@@ -184,8 +184,12 @@ class HostapdCLI(object):
cmd = self.cmdline + ['wps_pin', 'any', pin]
ctx.start_process(cmd).wait()
- def deauthenticate(self, client_address):
+ def deauthenticate(self, client_address, reason=None, test=None):
cmd = self.cmdline + ['deauthenticate', client_address]
+
+ if reason:
+ cmd.append(f"reason={reason} test={test}")
+
ctx.start_process(cmd).wait()
def eapol_reauth(self, client_address):
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 5/5] auto-t: Add deauth during the 4-way handshake test
2024-07-17 14:55 [PATCH 1/5] eapol: move HANDSHAKE_STARTED_EVENT to eapol_start() James Prestwood
` (2 preceding siblings ...)
2024-07-17 14:55 ` [PATCH 4/5] auto-t: add reason/test arguments to hostapd deauthenticate James Prestwood
@ 2024-07-17 14:55 ` James Prestwood
2024-07-17 16:32 ` [PATCH 1/5] eapol: move HANDSHAKE_STARTED_EVENT to eapol_start() Denis Kenzior
4 siblings, 0 replies; 6+ messages in thread
From: James Prestwood @ 2024-07-17 14:55 UTC (permalink / raw)
To: iwd; +Cc: James Prestwood
This test will fail with current upstream as IWD hangs when the
deauthenticate event arrives. Once this is fixed the test should
pass.
---
.../disconnect_during_handshake_test.py | 118 ++++++++++++++++++
autotests/testPSK-roam/ft-psk-ccmp-1.conf | 2 +-
autotests/testPSK-roam/ft-psk-ccmp-2.conf | 2 +-
autotests/testPSK-roam/ft-psk-ccmp-3.conf | 2 +-
autotests/testPSK-roam/main.conf | 3 +
5 files changed, 124 insertions(+), 3 deletions(-)
create mode 100644 autotests/testPSK-roam/disconnect_during_handshake_test.py
diff --git a/autotests/testPSK-roam/disconnect_during_handshake_test.py b/autotests/testPSK-roam/disconnect_during_handshake_test.py
new file mode 100644
index 00000000..c5016cd1
--- /dev/null
+++ b/autotests/testPSK-roam/disconnect_during_handshake_test.py
@@ -0,0 +1,118 @@
+#! /usr/bin/python3
+
+import unittest
+import sys, os
+
+sys.path.append('../util')
+import iwd
+from iwd import IWD
+from iwd import PSKAgent
+from iwd import NetworkType
+from hwsim import Hwsim
+from hostapd import HostapdCLI
+import testutil
+
+class Test(unittest.TestCase):
+ def validate_connection(self, wd):
+ device = wd.list_devices(1)[0]
+
+ ordered_network = device.get_ordered_network('TestFT', full_scan=True)
+
+ self.assertEqual(ordered_network.type, NetworkType.psk)
+
+ condition = 'not obj.connected'
+ wd.wait_for_object_condition(ordered_network.network_object, condition)
+
+ self.assertFalse(self.bss_hostapd[0].list_sta())
+ self.assertFalse(self.bss_hostapd[1].list_sta())
+
+ device.connect_bssid(self.bss_hostapd[0].bssid)
+
+ condition = 'obj.state == DeviceState.connected'
+ wd.wait_for_object_condition(device, condition)
+
+ self.bss_hostapd[0].wait_for_event('AP-STA-CONNECTED %s' % device.address)
+
+ testutil.test_iface_operstate(device.name)
+ testutil.test_ifaces_connected(self.bss_hostapd[0].ifname, device.name)
+ self.assertRaises(Exception, testutil.test_ifaces_connected,
+ (self.bss_hostapd[1].ifname, device.name, True, True))
+
+ self.rule0.enabled = True
+
+ device.roam(self.bss_hostapd[1].bssid)
+
+ device.clear_events()
+ device.wait_for_event("handshake-started")
+ self.bss_hostapd[1].deauthenticate(device.address, reason=15, test=1)
+
+ # Check that iwd is on BSS 1 once out of roaming state and doesn't
+ # go through 'disconnected', 'autoconnect', 'connecting' in between
+ from_condition = 'obj.state == DeviceState.roaming'
+ to_condition = 'obj.state == DeviceState.connected'
+ wd.wait_for_object_change(device, from_condition, to_condition)
+
+ self.bss_hostapd[1].wait_for_event('AP-STA-CONNECTED %s' % device.address)
+
+ testutil.test_iface_operstate(device.name)
+ testutil.test_ifaces_connected(self.bss_hostapd[1].ifname, device.name)
+ self.assertRaises(Exception, testutil.test_ifaces_connected,
+ (self.bss_hostapd[0].ifname, device.name, True, True))
+
+ def test_disconnect_during_handshake(self):
+ self.bss_hostapd[0].set_value('wpa_key_mgmt', 'WPA-PSK')
+ self.bss_hostapd[0].reload()
+ self.bss_hostapd[0].wait_for_event("AP-ENABLED")
+
+ self.bss_hostapd[1].set_value('wpa_key_mgmt', 'WPA-PSK')
+ self.bss_hostapd[1].reload()
+ self.bss_hostapd[1].wait_for_event("AP-ENABLED")
+
+ self.validate_connection(self.wd)
+
+ def tearDown(self):
+ os.system('ip link set "' + self.bss_hostapd[0].ifname + '" down')
+ os.system('ip link set "' + self.bss_hostapd[1].ifname + '" down')
+ os.system('ip link set "' + self.bss_hostapd[0].ifname + '" up')
+ os.system('ip link set "' + self.bss_hostapd[1].ifname + '" up')
+
+ for hapd in self.bss_hostapd:
+ hapd.default()
+
+ self.wd.stop()
+ self.wd = None
+
+ def setUp(self):
+ self.wd = IWD(True)
+
+ @classmethod
+ def setUpClass(cls):
+ hwsim = Hwsim()
+
+ IWD.copy_to_storage('TestFT.psk')
+
+ cls.bss_hostapd = [ HostapdCLI(config='ft-psk-ccmp-1.conf'),
+ HostapdCLI(config='ft-psk-ccmp-2.conf') ]
+
+ unused = HostapdCLI(config='ft-psk-ccmp-3.conf')
+ unused.disable()
+
+ cls.bss_hostapd[0].set_address('12:00:00:00:00:01')
+ cls.bss_hostapd[1].set_address('12:00:00:00:00:02')
+
+ rad1 = hwsim.get_radio('rad1')
+
+ cls.rule0 = hwsim.rules.create()
+ cls.rule0.destination = rad1.addresses[0]
+ cls.rule0.prefix = '08'
+ cls.rule0.drop = True
+
+ HostapdCLI.group_neighbors(*cls.bss_hostapd)
+
+ @classmethod
+ def tearDownClass(cls):
+ IWD.clear_storage()
+ cls.bss_hostapd = None
+
+if __name__ == '__main__':
+ unittest.main(exit=True)
diff --git a/autotests/testPSK-roam/ft-psk-ccmp-1.conf b/autotests/testPSK-roam/ft-psk-ccmp-1.conf
index b46d1f27..839eb496 100644
--- a/autotests/testPSK-roam/ft-psk-ccmp-1.conf
+++ b/autotests/testPSK-roam/ft-psk-ccmp-1.conf
@@ -13,7 +13,7 @@ wpa=2
wpa_key_mgmt=FT-PSK
wpa_pairwise=CCMP
wpa_passphrase=EasilyGuessedPassword
-ieee80211w=1
+ieee80211w=0
rsn_preauth=1
rsn_preauth_interfaces=lo
disable_pmksa_caching=0
diff --git a/autotests/testPSK-roam/ft-psk-ccmp-2.conf b/autotests/testPSK-roam/ft-psk-ccmp-2.conf
index 3e215457..2ffd7262 100644
--- a/autotests/testPSK-roam/ft-psk-ccmp-2.conf
+++ b/autotests/testPSK-roam/ft-psk-ccmp-2.conf
@@ -13,7 +13,7 @@ wpa=2
wpa_key_mgmt=FT-PSK
wpa_pairwise=CCMP
wpa_passphrase=EasilyGuessedPassword
-ieee80211w=1
+ieee80211w=0
rsn_preauth=1
rsn_preauth_interfaces=lo
disable_pmksa_caching=0
diff --git a/autotests/testPSK-roam/ft-psk-ccmp-3.conf b/autotests/testPSK-roam/ft-psk-ccmp-3.conf
index 3e215457..2ffd7262 100644
--- a/autotests/testPSK-roam/ft-psk-ccmp-3.conf
+++ b/autotests/testPSK-roam/ft-psk-ccmp-3.conf
@@ -13,7 +13,7 @@ wpa=2
wpa_key_mgmt=FT-PSK
wpa_pairwise=CCMP
wpa_passphrase=EasilyGuessedPassword
-ieee80211w=1
+ieee80211w=0
rsn_preauth=1
rsn_preauth_interfaces=lo
disable_pmksa_caching=0
diff --git a/autotests/testPSK-roam/main.conf b/autotests/testPSK-roam/main.conf
index 3d93ff57..a6887c9c 100644
--- a/autotests/testPSK-roam/main.conf
+++ b/autotests/testPSK-roam/main.conf
@@ -3,3 +3,6 @@ DisableMacAddressRandomization=true
[General]
RoamRetryInterval=1
+
+# For disconnect_during_handshake_test
+ManagementFrameProtection=0
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 1/5] eapol: move HANDSHAKE_STARTED_EVENT to eapol_start()
2024-07-17 14:55 [PATCH 1/5] eapol: move HANDSHAKE_STARTED_EVENT to eapol_start() James Prestwood
` (3 preceding siblings ...)
2024-07-17 14:55 ` [PATCH 5/5] auto-t: Add deauth during the 4-way handshake test James Prestwood
@ 2024-07-17 16:32 ` Denis Kenzior
4 siblings, 0 replies; 6+ messages in thread
From: Denis Kenzior @ 2024-07-17 16:32 UTC (permalink / raw)
To: James Prestwood, iwd
Hi James,
On 7/17/24 9:55 AM, James Prestwood wrote:
> This even is not used anywhere and can be leveraged in autotesting.
'even' -> 'event'?
> Move the event to eapol_start() so it gets called unconditionally
> when the 4-way handshake is started.
> ---
> src/eapol.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Regards,
-Denis
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-07-17 16:32 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-17 14:55 [PATCH 1/5] eapol: move HANDSHAKE_STARTED_EVENT to eapol_start() James Prestwood
2024-07-17 14:55 ` [PATCH 2/5] station: add handshake-started debug event James Prestwood
2024-07-17 14:55 ` [PATCH 3/5] auto-t: add clear_events() to IWD class James Prestwood
2024-07-17 14:55 ` [PATCH 4/5] auto-t: add reason/test arguments to hostapd deauthenticate James Prestwood
2024-07-17 14:55 ` [PATCH 5/5] auto-t: Add deauth during the 4-way handshake test James Prestwood
2024-07-17 16:32 ` [PATCH 1/5] eapol: move HANDSHAKE_STARTED_EVENT to eapol_start() Denis Kenzior
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox