From: Avraham Stern <avraham.stern@xxxxxxxxx> In case that a dedicated P2P Device interface is used, a new interface must be create for a P2P group. Thus, in order to send mgmt frames, attach a new WpaSupplicant object to the newly created group and use this object for sending the frames. Signed-off-by: Avraham Stern <avraham.stern@xxxxxxxxx> Signed-off-by: Andrei Otcheretianski <andrei.otcheretianski@xxxxxxxxx> --- tests/hwsim/test_cfg80211.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/tests/hwsim/test_cfg80211.py b/tests/hwsim/test_cfg80211.py index 36d1979..33d01a6 100644 --- a/tests/hwsim/test_cfg80211.py +++ b/tests/hwsim/test_cfg80211.py @@ -15,6 +15,7 @@ import hostapd import hwsim_utils from tshark import run_tshark from nl80211 import * +from wpasupplicant import WpaSupplicant def nl80211_command(dev, cmd, attr): res = dev.request("VENDOR ffffffff {} {}".format(nl80211_cmd[cmd], @@ -66,12 +67,12 @@ def nl80211_remain_on_channel(dev, ifindex, freq, duration): def test_cfg80211_tx_frame(dev, apdev, params): """cfg80211 offchannel TX frame command""" - ifindex = int(dev[0].get_driver_status_field("ifindex")) - - frame = binascii.unhexlify("d000000002000000010002000000000002000000010000000409506f9a090001dd5e506f9a0902020025080401001f0502006414060500585804510b0906000200000000000b1000585804510b0102030405060708090a0b0d1d000200000000000108000000000000000000101100084465766963652041110500585804510bdd190050f204104a0001101012000200011049000600372a000120") - dev[0].request("P2P_GROUP_ADD freq=2412") - res = nl80211_frame(dev[0], ifindex, frame, freq=2422, duration=500, + dev[0].p2p_start_go(freq='2412') + go = WpaSupplicant(dev[0].group_ifname) + frame = binascii.unhexlify("d0000000020000000100" + go.own_addr().translate(None, ':') + "02000000010000000409506f9a090001dd5e506f9a0902020025080401001f0502006414060500585804510b0906000200000000000b1000585804510b0102030405060708090a0b0d1d000200000000000108000000000000000000101100084465766963652041110500585804510bdd190050f204104a0001101012000200011049000600372a000120") + ifindex = int(go.get_driver_status_field("ifindex")) + res = nl80211_frame(go, ifindex, frame, freq=2422, duration=500, offchannel_tx_ok=True) time.sleep(0.1) @@ -79,7 +80,7 @@ def test_cfg80211_tx_frame(dev, apdev, params): #nl80211_frame_wait_cancel(dev[0], ifindex, res[nl80211_attr['COOKIE']]) # note: this Action frame ends up getting sent incorrectly on 2422 MHz - nl80211_frame(dev[0], ifindex, frame, freq=2412) + nl80211_frame(go, ifindex, frame, freq=2412) time.sleep(1.5) # note: also the Deauthenticate frame sent by the GO going down ends up # being transmitted incorrectly on 2422 MHz. -- 1.9.1 _______________________________________________ Hostap mailing list Hostap@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/hostap