]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Fix wlan.mesh.config.cap workaround for test_wpas_mesh_max_peering
authorSven Eckelmann <sven@narfation.org>
Fri, 12 Jul 2019 10:48:53 +0000 (12:48 +0200)
committerJouni Malinen <j@w1.fi>
Tue, 13 Aug 2019 10:57:50 +0000 (13:57 +0300)
The wlan.mesh.config doesn't have to be the last element of beacon. Things
like VHT or HE oper/cap are usually follow the mesh configuration element.

The workaround must first get the position of a correct reference value in
wlan.mesh.config (ps_protocol) and then calculate the correct
wlan.mesh.config.cap offset based on that.

Reported-by: Johannes Berg <johannes@sipsolutions.net>
Fixes: 2cbaf0de223b ("tests: Work around tshark bug in wpas_mesh_max_peering")
Signed-off-by: Sven Eckelmann <sven@narfation.org>
tests/hwsim/test_wpas_mesh.py

index 5b8b166027644db0866321ea5580a5f184787b8d..cb1bb8c31d915d0c5a7edf161b3ac81d9f143054 100644 (file)
@@ -877,8 +877,21 @@ def test_wpas_mesh_max_peering(dev, apdev, params):
             out = run_tshark_json(capfile, filt + " && wlan.sa == " + addr)
             pkts = json.loads(out)
             for pkt in pkts:
+                wlan = pkt["_source"]["layers"]["wlan"]
+                if "wlan.tagged.all" not in wlan:
+                    continue
+
+                tagged = wlan["wlan.tagged.all"]
+                if "wlan.tag" not in tagged:
+                    continue
+
+                wlan_tag = tagged["wlan.tag"]
+                if "wlan.mesh.config.ps_protocol_raw" not in wlan_tag:
+                    continue
+
                 frame = pkt["_source"]["layers"]["frame_raw"][0]
-                cap = int(frame[-2:], 16)
+                cap_offset = wlan_tag["wlan.mesh.config.ps_protocol_raw"][1] + 6
+                cap = int(frame[(cap_offset * 2):(cap_offset * 2 + 2)], 16)
                 if cap & 0x01:
                     one[idx] += 1
                 else: