test_p2p_device.py 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  1. # cfg80211 P2P Device
  2. # Copyright (c) 2013-2015, Jouni Malinen <j@w1.fi>
  3. #
  4. # This software may be distributed under the terms of the BSD license.
  5. # See README for more details.
  6. import logging
  7. logger = logging.getLogger()
  8. import time
  9. from wpasupplicant import WpaSupplicant
  10. from p2p_utils import *
  11. from test_nfc_p2p import set_ip_addr_info, check_ip_addr, grpform_events
  12. from hwsim import HWSimRadio
  13. from utils import HwsimSkip
  14. import hostapd
  15. import hwsim_utils
  16. def test_p2p_device_grpform(dev, apdev):
  17. """P2P group formation with driver using cfg80211 P2P Device"""
  18. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  19. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  20. wpas.interface_add(iface)
  21. [i_res, r_res] = go_neg_pin_authorized(i_dev=dev[0], i_intent=15,
  22. r_dev=wpas, r_intent=0)
  23. check_grpform_results(i_res, r_res)
  24. wpas.dump_monitor()
  25. remove_group(dev[0], wpas)
  26. wpas.dump_monitor()
  27. if not r_res['ifname'].startswith('p2p-' + iface):
  28. raise Exception("Unexpected group ifname: " + r_res['ifname'])
  29. res = wpas.global_request("IFNAME=p2p-dev-" + iface + " STATUS-DRIVER")
  30. lines = res.splitlines()
  31. found = False
  32. for l in lines:
  33. try:
  34. [name,value] = l.split('=', 1)
  35. if name == "wdev_id":
  36. found = True
  37. break
  38. except ValueError:
  39. pass
  40. if not found:
  41. raise Exception("wdev_id not found")
  42. def test_p2p_device_grpform2(dev, apdev):
  43. """P2P group formation with driver using cfg80211 P2P Device (reverse)"""
  44. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  45. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  46. wpas.interface_add(iface)
  47. [i_res, r_res] = go_neg_pin_authorized(i_dev=wpas, i_intent=15,
  48. r_dev=dev[0], r_intent=0)
  49. check_grpform_results(i_res, r_res)
  50. wpas.dump_monitor()
  51. remove_group(wpas, dev[0])
  52. wpas.dump_monitor()
  53. if not i_res['ifname'].startswith('p2p-' + iface):
  54. raise Exception("Unexpected group ifname: " + i_res['ifname'])
  55. def test_p2p_device_grpform_no_group_iface(dev, apdev):
  56. """P2P group formation with driver using cfg80211 P2P Device but no separate group interface"""
  57. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  58. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  59. wpas.interface_add(iface)
  60. wpas.global_request("SET p2p_no_group_iface 1")
  61. [i_res, r_res] = go_neg_pin_authorized(i_dev=dev[0], i_intent=15,
  62. r_dev=wpas, r_intent=0)
  63. check_grpform_results(i_res, r_res)
  64. wpas.dump_monitor()
  65. remove_group(dev[0], wpas)
  66. wpas.dump_monitor()
  67. if r_res['ifname'] != iface:
  68. raise Exception("Unexpected group ifname: " + r_res['ifname'])
  69. def test_p2p_device_grpform_no_group_iface2(dev, apdev):
  70. """P2P group formation with driver using cfg80211 P2P Device but no separate group interface (reverse)"""
  71. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  72. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  73. wpas.interface_add(iface)
  74. wpas.global_request("SET p2p_no_group_iface 1")
  75. [i_res, r_res] = go_neg_pin_authorized(i_dev=wpas, i_intent=15,
  76. r_dev=dev[0], r_intent=0)
  77. check_grpform_results(i_res, r_res)
  78. wpas.dump_monitor()
  79. remove_group(dev[0], wpas)
  80. wpas.dump_monitor()
  81. if i_res['ifname'] != iface:
  82. raise Exception("Unexpected group ifname: " + i_res['ifname'])
  83. def test_p2p_device_group_remove(dev, apdev):
  84. """P2P group removal via the P2P ctrl interface with driver using cfg80211 P2P Device"""
  85. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  86. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  87. wpas.interface_add(iface)
  88. [i_res, r_res] = go_neg_pin_authorized(i_dev=dev[0], i_intent=15,
  89. r_dev=wpas, r_intent=0)
  90. check_grpform_results(i_res, r_res)
  91. # Issue the remove request on the interface which will be removed
  92. p2p_iface_wpas = WpaSupplicant(ifname=r_res['ifname'])
  93. res = p2p_iface_wpas.request("P2P_GROUP_REMOVE *")
  94. if "OK" not in res:
  95. raise Exception("Failed to remove P2P group")
  96. ev = wpas.wait_global_event(["P2P-GROUP-REMOVED"], timeout=10)
  97. if ev is None:
  98. raise Exception("Group removal event not received")
  99. if not wpas.global_ping():
  100. raise Exception("Could not ping global ctrl_iface after group removal")
  101. def test_p2p_device_concurrent_scan(dev, apdev):
  102. """Concurrent P2P and station mode scans with driver using cfg80211 P2P Device"""
  103. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  104. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  105. wpas.interface_add(iface)
  106. wpas.p2p_find()
  107. time.sleep(0.1)
  108. wpas.request("SCAN")
  109. ev = wpas.wait_event(["CTRL-EVENT-SCAN-STARTED"], timeout=15)
  110. if ev is None:
  111. raise Exception("Station mode scan did not start")
  112. def test_p2p_device_nfc_invite(dev, apdev):
  113. """P2P NFC invitiation with driver using cfg80211 P2P Device"""
  114. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  115. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  116. wpas.interface_add(iface)
  117. set_ip_addr_info(dev[0])
  118. logger.info("Start autonomous GO")
  119. dev[0].p2p_start_go()
  120. logger.info("Write NFC Tag on the P2P Client")
  121. res = wpas.global_request("P2P_LISTEN")
  122. if "FAIL" in res:
  123. raise Exception("Failed to start Listen mode")
  124. wpas.dump_monitor()
  125. pw = wpas.global_request("WPS_NFC_TOKEN NDEF").rstrip()
  126. if "FAIL" in pw:
  127. raise Exception("Failed to generate password token")
  128. res = wpas.global_request("P2P_SET nfc_tag 1").rstrip()
  129. if "FAIL" in res:
  130. raise Exception("Failed to enable NFC Tag for P2P static handover")
  131. sel = wpas.global_request("NFC_GET_HANDOVER_SEL NDEF P2P-CR-TAG").rstrip()
  132. if "FAIL" in sel:
  133. raise Exception("Failed to generate NFC connection handover select")
  134. wpas.dump_monitor()
  135. logger.info("Read NFC Tag on the GO to trigger invitation")
  136. res = dev[0].global_request("WPS_NFC_TAG_READ " + sel)
  137. if "FAIL" in res:
  138. raise Exception("Failed to provide NFC tag contents to wpa_supplicant")
  139. ev = wpas.wait_global_event(grpform_events, timeout=20)
  140. if ev is None:
  141. raise Exception("Joining the group timed out")
  142. res = wpas.group_form_result(ev)
  143. wpas.dump_monitor()
  144. hwsim_utils.test_connectivity_p2p(dev[0], wpas)
  145. check_ip_addr(res)
  146. wpas.dump_monitor()
  147. def test_p2p_device_misuses(dev, apdev):
  148. """cfg80211 P2P Device misuses"""
  149. hapd = hostapd.add_ap(apdev[0]['ifname'], { "ssid": "open" })
  150. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  151. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  152. wpas.interface_add(iface)
  153. # Add a normal network profile to the P2P Device management only
  154. # interface to verify that it does not get used.
  155. id = int(wpas.global_request('IFNAME=p2p-dev-%s ADD_NETWORK' % iface).strip())
  156. wpas.global_request('IFNAME=p2p-dev-%s SET_NETWORK %d ssid "open"' % (iface, id))
  157. wpas.global_request('IFNAME=p2p-dev-%s SET_NETWORK %d key_mgmt NONE' % (iface, id))
  158. wpas.global_request('IFNAME=p2p-dev-%s ENABLE_NETWORK %d' % (iface, id))
  159. # Scan requests get ignored on p2p-dev
  160. wpas.global_request('IFNAME=p2p-dev-%s SCAN' % iface)
  161. dev[0].p2p_start_go(freq=2412)
  162. addr = dev[0].p2p_interface_addr()
  163. wpas.scan_for_bss(addr, freq=2412)
  164. wpas.connect("open", key_mgmt="NONE", scan_freq="2412")
  165. hwsim_utils.test_connectivity(wpas, hapd)
  166. pin = wpas.wps_read_pin()
  167. dev[0].p2p_go_authorize_client(pin)
  168. res = wpas.p2p_connect_group(dev[0].p2p_dev_addr(), pin, timeout=60,
  169. social=True, freq=2412)
  170. hwsim_utils.test_connectivity_p2p(dev[0], wpas)
  171. # Optimize scan-after-disconnect
  172. wpas.group_request("SET_NETWORK 0 scan_freq 2412")
  173. dev[0].group_request("DISASSOCIATE " + wpas.p2p_interface_addr())
  174. ev = wpas.wait_group_event(["CTRL-EVENT-DISCONNECT"])
  175. if ev is None:
  176. raise Exception("Did not see disconnect event on P2P group interface")
  177. dev[0].remove_group()
  178. ev = wpas.wait_group_event(["CTRL-EVENT-SCAN-STARTED"], timeout=5)
  179. if ev is None:
  180. raise Exception("Scan not started")
  181. ev = wpas.wait_group_event(["CTRL-EVENT-SCAN-RESULTS"], timeout=15)
  182. if ev is None:
  183. raise Exception("Scan not completed")
  184. time.sleep(1)
  185. hwsim_utils.test_connectivity(wpas, hapd)
  186. ev = hapd.wait_event([ "AP-STA-DISCONNECTED" ], timeout=0.1)
  187. if ev is not None:
  188. raise Exception("Unexpected disconnection event received from hostapd")
  189. ev = wpas.wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=0.1)
  190. if ev is not None:
  191. raise Exception("Unexpected disconnection event received from wpa_supplicant")
  192. wpas.request("DISCONNECT")
  193. wpas.wait_disconnected()
  194. def test_p2p_device_incorrect_command_interface(dev, apdev):
  195. """cfg80211 P2P Device and P2P_* command on incorrect interface"""
  196. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  197. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  198. wpas.interface_add(iface)
  199. dev[0].p2p_listen()
  200. wpas.request('P2P_FIND type=social')
  201. ev = wpas.wait_global_event(["P2P-DEVICE-FOUND"], timeout=10)
  202. if ev is None:
  203. raise Exception("Peer not found")
  204. ev = wpas.wait_event(["P2P-DEVICE-FOUND"], timeout=0.1)
  205. if ev is not None:
  206. raise Exception("Unexpected P2P-DEVICE-FOUND event on station interface")
  207. wpas.dump_monitor()
  208. pin = wpas.wps_read_pin()
  209. dev[0].p2p_go_neg_auth(wpas.p2p_dev_addr(), pin, "enter", go_intent=14,
  210. freq=2412)
  211. wpas.request('P2P_STOP_FIND')
  212. wpas.dump_monitor()
  213. if "OK" not in wpas.request('P2P_CONNECT ' + dev[0].p2p_dev_addr() + ' ' + pin + ' display go_intent=1'):
  214. raise Exception("P2P_CONNECT failed")
  215. ev = wpas.wait_global_event(["P2P-GROUP-STARTED"], timeout=15)
  216. if ev is None:
  217. raise Exception("Group formation timed out")
  218. wpas.group_form_result(ev)
  219. wpas.dump_monitor()
  220. ev = dev[0].wait_global_event(["P2P-GROUP-STARTED"], timeout=15)
  221. if ev is None:
  222. raise Exception("Group formation timed out(2)")
  223. dev[0].group_form_result(ev)
  224. dev[0].remove_group()
  225. wpas.wait_go_ending_session()
  226. wpas.dump_monitor()
  227. def test_p2p_device_incorrect_command_interface2(dev, apdev):
  228. """cfg80211 P2P Device and P2P_GROUP_ADD command on incorrect interface"""
  229. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  230. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  231. wpas.interface_add(iface)
  232. if "OK" not in wpas.request('P2P_GROUP_ADD'):
  233. raise Exception("P2P_GROUP_ADD failed")
  234. ev = wpas.wait_global_event(["P2P-GROUP-STARTED"], timeout=15)
  235. if ev is None:
  236. raise Exception("Group formation timed out")
  237. res = wpas.group_form_result(ev)
  238. wpas.dump_monitor()
  239. logger.info("Group results: " + str(res))
  240. wpas.remove_group()
  241. if not res['ifname'].startswith('p2p-' + iface + '-'):
  242. raise Exception("Unexpected group ifname: " + res['ifname'])
  243. wpas.dump_monitor()
  244. def test_p2p_device_grpform_timeout_client(dev, apdev):
  245. """P2P group formation timeout on client with cfg80211 P2P Device"""
  246. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  247. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  248. wpas.interface_add(iface)
  249. addr0 = dev[0].p2p_dev_addr()
  250. addr5 = wpas.p2p_dev_addr()
  251. wpas.p2p_listen()
  252. dev[0].discover_peer(addr5)
  253. dev[0].p2p_listen()
  254. wpas.discover_peer(addr0)
  255. wpas.p2p_ext_listen(100, 150)
  256. dev[0].global_request("P2P_CONNECT " + addr5 + " 12345670 enter go_intent=15 auth")
  257. wpas.global_request("P2P_CONNECT " + addr0 + " 12345670 display go_intent=0")
  258. ev = dev[0].wait_global_event(["P2P-GO-NEG-SUCCESS"], timeout=5)
  259. if ev is None:
  260. raise Exception("GO Negotiation did not succeed")
  261. ev = dev[0].wait_global_event(["WPS-SUCCESS"], timeout=10)
  262. if ev is None:
  263. raise Exception("WPS did not succeed (GO)")
  264. if "OK" not in dev[0].global_request("P2P_CANCEL"):
  265. wpas.global_request("P2P_CANCEL")
  266. del wpas
  267. raise HwsimSkip("Did not manage to cancel group formation")
  268. dev[0].dump_monitor()
  269. ev = wpas.wait_global_event(["WPS-SUCCESS"], timeout=10)
  270. if ev is None:
  271. raise Exception("WPS did not succeed (Client)")
  272. dev[0].dump_monitor()
  273. ev = wpas.wait_global_event(["P2P-GROUP-FORMATION-FAILURE"], timeout=20)
  274. if ev is None:
  275. raise Exception("Group formation timeout not seen on client")
  276. ev = wpas.wait_global_event(["P2P-GROUP-REMOVED"], timeout=5)
  277. if ev is None:
  278. raise Exception("Group removal not seen on client")
  279. wpas.p2p_cancel_ext_listen()
  280. time.sleep(0.1)
  281. ifaces = wpas.global_request("INTERFACES")
  282. logger.info("Remaining interfaces: " + ifaces)
  283. del wpas
  284. if "p2p-" + iface + "-" in ifaces:
  285. raise Exception("Group interface still present after failure")
  286. def test_p2p_device_grpform_timeout_go(dev, apdev):
  287. """P2P group formation timeout on GO with cfg80211 P2P Device"""
  288. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  289. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  290. wpas.interface_add(iface)
  291. addr0 = dev[0].p2p_dev_addr()
  292. addr5 = wpas.p2p_dev_addr()
  293. wpas.p2p_listen()
  294. dev[0].discover_peer(addr5)
  295. dev[0].p2p_listen()
  296. wpas.discover_peer(addr0)
  297. wpas.p2p_ext_listen(100, 150)
  298. dev[0].global_request("P2P_CONNECT " + addr5 + " 12345670 enter go_intent=0 auth")
  299. wpas.global_request("P2P_CONNECT " + addr0 + " 12345670 display go_intent=15")
  300. ev = dev[0].wait_global_event(["P2P-GO-NEG-SUCCESS"], timeout=5)
  301. if ev is None:
  302. raise Exception("GO Negotiation did not succeed")
  303. ev = dev[0].wait_global_event(["WPS-SUCCESS"], timeout=10)
  304. if ev is None:
  305. raise Exception("WPS did not succeed (Client)")
  306. if "OK" not in dev[0].global_request("P2P_CANCEL"):
  307. if "OK" not in dev[0].global_request("P2P_GROUP_REMOVE *"):
  308. wpas.global_request("P2P_CANCEL")
  309. del wpas
  310. raise HwsimSkip("Did not manage to cancel group formation")
  311. dev[0].dump_monitor()
  312. ev = wpas.wait_global_event(["WPS-SUCCESS"], timeout=10)
  313. if ev is None:
  314. raise Exception("WPS did not succeed (GO)")
  315. dev[0].dump_monitor()
  316. ev = wpas.wait_global_event(["P2P-GROUP-FORMATION-FAILURE"], timeout=20)
  317. if ev is None:
  318. raise Exception("Group formation timeout not seen on GO")
  319. ev = wpas.wait_global_event(["P2P-GROUP-REMOVED"], timeout=5)
  320. if ev is None:
  321. raise Exception("Group removal not seen on GO")
  322. wpas.p2p_cancel_ext_listen()
  323. time.sleep(0.1)
  324. ifaces = wpas.global_request("INTERFACES")
  325. logger.info("Remaining interfaces: " + ifaces)
  326. del wpas
  327. if "p2p-" + iface + "-" in ifaces:
  328. raise Exception("Group interface still present after failure")
  329. def test_p2p_device_autogo(dev, apdev):
  330. """P2P autogo using cfg80211 P2P Device"""
  331. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  332. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  333. wpas.interface_add(iface)
  334. res = wpas.p2p_start_go()
  335. if not res['ifname'].startswith('p2p-' + iface):
  336. raise Exception("Unexpected group ifname: " + res['ifname'])
  337. bssid = wpas.get_group_status_field('bssid')
  338. dev[0].scan_for_bss(bssid, res['freq'])
  339. connect_cli(wpas, dev[0], freq=res['freq'])
  340. terminate_group(wpas, dev[0])
  341. def test_p2p_device_autogo_no_group_iface(dev, apdev):
  342. """P2P autogo using cfg80211 P2P Device (no separate group interface)"""
  343. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  344. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  345. wpas.interface_add(iface)
  346. wpas.global_request("SET p2p_no_group_iface 1")
  347. res = wpas.p2p_start_go()
  348. if res['ifname'] != iface:
  349. raise Exception("Unexpected group ifname: " + res['ifname'])
  350. bssid = wpas.get_group_status_field('bssid')
  351. dev[0].scan_for_bss(bssid, res['freq'])
  352. connect_cli(wpas, dev[0], freq=res['freq'])
  353. terminate_group(wpas, dev[0])
  354. def test_p2p_device_join(dev, apdev):
  355. """P2P join-group using cfg80211 P2P Device"""
  356. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  357. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  358. wpas.interface_add(iface)
  359. res = dev[0].p2p_start_go()
  360. bssid = dev[0].get_group_status_field('bssid')
  361. wpas.scan_for_bss(bssid, res['freq'])
  362. res2 = connect_cli(dev[0], wpas, freq=res['freq'])
  363. if not res2['ifname'].startswith('p2p-' + iface):
  364. raise Exception("Unexpected group ifname: " + res2['ifname'])
  365. terminate_group(dev[0], wpas)
  366. def test_p2p_device_join_no_group_iface(dev, apdev):
  367. """P2P join-group using cfg80211 P2P Device (no separate group interface)"""
  368. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  369. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  370. wpas.interface_add(iface)
  371. wpas.global_request("SET p2p_no_group_iface 1")
  372. res = dev[0].p2p_start_go()
  373. bssid = dev[0].get_group_status_field('bssid')
  374. wpas.scan_for_bss(bssid, res['freq'])
  375. res2 = connect_cli(dev[0], wpas, freq=res['freq'])
  376. if res2['ifname'] != iface:
  377. raise Exception("Unexpected group ifname: " + res2['ifname'])
  378. terminate_group(dev[0], wpas)
  379. def test_p2p_device_persistent_group(dev):
  380. """P2P persistent group formation and re-invocation with cfg80211 P2P Device"""
  381. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  382. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  383. wpas.interface_add(iface)
  384. wpas.global_request("SET p2p_no_group_iface 0")
  385. form(dev[0], wpas)
  386. invite_from_cli(dev[0], wpas)
  387. invite_from_go(dev[0], wpas)
  388. def test_p2p_device_persistent_group_no_group_iface(dev):
  389. """P2P persistent group formation and re-invocation with cfg80211 P2P Device (no separate group interface)"""
  390. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  391. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  392. wpas.interface_add(iface)
  393. wpas.global_request("SET p2p_no_group_iface 1")
  394. form(dev[0], wpas)
  395. invite_from_cli(dev[0], wpas)
  396. invite_from_go(dev[0], wpas)
  397. def test_p2p_device_persistent_group2(dev):
  398. """P2P persistent group formation and re-invocation (reverse) with cfg80211 P2P Device"""
  399. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  400. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  401. wpas.interface_add(iface)
  402. wpas.global_request("SET p2p_no_group_iface 0")
  403. form(wpas, dev[0])
  404. invite_from_cli(wpas, dev[0])
  405. invite_from_go(wpas, dev[0])
  406. def test_p2p_device_persistent_group2_no_group_iface(dev):
  407. """P2P persistent group formation and re-invocation (reverse) with cfg80211 P2P Device (no separate group interface)"""
  408. with HWSimRadio(use_p2p_device=True) as (radio, iface):
  409. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  410. wpas.interface_add(iface)
  411. wpas.global_request("SET p2p_no_group_iface 1")
  412. form(wpas, dev[0])
  413. invite_from_cli(wpas, dev[0])
  414. invite_from_go(wpas, dev[0])