test_p2p_autogo.py 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805
  1. # P2P autonomous GO test cases
  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 time
  7. import subprocess
  8. import logging
  9. logger = logging.getLogger()
  10. import hwsim_utils
  11. import utils
  12. from utils import HwsimSkip
  13. from wlantest import Wlantest
  14. from wpasupplicant import WpaSupplicant
  15. from p2p_utils import *
  16. from test_p2p_messages import mgmt_tx, parse_p2p_public_action
  17. def test_autogo(dev):
  18. """P2P autonomous GO and client joining group"""
  19. addr0 = dev[0].p2p_dev_addr()
  20. addr2 = dev[2].p2p_dev_addr()
  21. res = autogo(dev[0])
  22. if "p2p-wlan" in res['ifname']:
  23. raise Exception("Unexpected group interface name on GO")
  24. res = connect_cli(dev[0], dev[1])
  25. if "p2p-wlan" in res['ifname']:
  26. raise Exception("Unexpected group interface name on client")
  27. bss = dev[1].get_bss("p2p_dev_addr=" + addr0, res['ifname'])
  28. if not bss or bss['bssid'] != dev[0].p2p_interface_addr():
  29. raise Exception("Unexpected BSSID in the BSS entry for the GO")
  30. id = bss['id']
  31. bss = dev[1].get_bss("ID-" + id, res['ifname'])
  32. if not bss or bss['id'] != id:
  33. raise Exception("Could not find BSS entry based on id")
  34. res = dev[1].group_request("BSS RANGE=" + id + "- MASK=0x1")
  35. if "id=" + id not in res:
  36. raise Exception("Could not find BSS entry based on id range")
  37. res = dev[1].request("SCAN_RESULTS")
  38. if "[P2P]" not in res:
  39. raise Exception("P2P flag missing from scan results: " + res)
  40. # Presence request to increase testing coverage
  41. if "FAIL" not in dev[1].group_request("P2P_PRESENCE_REQ 30000"):
  42. raise Exception("Invald P2P_PRESENCE_REQ accepted")
  43. if "FAIL" not in dev[1].group_request("P2P_PRESENCE_REQ 30000 102400 30001"):
  44. raise Exception("Invald P2P_PRESENCE_REQ accepted")
  45. if "FAIL" in dev[1].group_request("P2P_PRESENCE_REQ 30000 102400"):
  46. raise Exception("Could not send presence request")
  47. ev = dev[1].wait_group_event(["P2P-PRESENCE-RESPONSE"], 10)
  48. if ev is None:
  49. raise Exception("Timeout while waiting for Presence Response")
  50. if "FAIL" in dev[1].group_request("P2P_PRESENCE_REQ 30000 102400 20000 102400"):
  51. raise Exception("Could not send presence request")
  52. ev = dev[1].wait_group_event(["P2P-PRESENCE-RESPONSE"])
  53. if ev is None:
  54. raise Exception("Timeout while waiting for Presence Response")
  55. if "FAIL" in dev[1].group_request("P2P_PRESENCE_REQ"):
  56. raise Exception("Could not send presence request")
  57. ev = dev[1].wait_group_event(["P2P-PRESENCE-RESPONSE"])
  58. if ev is None:
  59. raise Exception("Timeout while waiting for Presence Response")
  60. if not dev[2].discover_peer(addr0):
  61. raise Exception("Could not discover GO")
  62. dev[0].dump_monitor()
  63. dev[2].global_request("P2P_PROV_DISC " + addr0 + " display join")
  64. ev = dev[0].wait_global_event(["P2P-PROV-DISC-SHOW-PIN"], timeout=10)
  65. if ev is None:
  66. raise Exception("GO did not report P2P-PROV-DISC-SHOW-PIN")
  67. if "p2p_dev_addr=" + addr2 not in ev:
  68. raise Exception("Unexpected P2P Device Address in event: " + ev)
  69. if "group=" + dev[0].group_ifname not in ev:
  70. raise Exception("Unexpected group interface in event: " + ev)
  71. ev = dev[2].wait_global_event(["P2P-PROV-DISC-ENTER-PIN"], timeout=10)
  72. if ev is None:
  73. raise Exception("P2P-PROV-DISC-ENTER-PIN not reported")
  74. dev[0].remove_group()
  75. dev[1].wait_go_ending_session()
  76. def test_autogo2(dev):
  77. """P2P autonomous GO with a separate group interface and client joining group"""
  78. dev[0].global_request("SET p2p_no_group_iface 0")
  79. res = autogo(dev[0], freq=2437)
  80. if "p2p-wlan" not in res['ifname']:
  81. raise Exception("Unexpected group interface name on GO")
  82. if res['ifname'] not in utils.get_ifnames():
  83. raise Exception("Could not find group interface netdev")
  84. connect_cli(dev[0], dev[1], social=True, freq=2437)
  85. dev[0].remove_group()
  86. dev[1].wait_go_ending_session()
  87. if res['ifname'] in utils.get_ifnames():
  88. raise Exception("Group interface netdev was not removed")
  89. def test_autogo3(dev):
  90. """P2P autonomous GO and client with a separate group interface joining group"""
  91. dev[1].global_request("SET p2p_no_group_iface 0")
  92. autogo(dev[0], freq=2462)
  93. res = connect_cli(dev[0], dev[1], social=True, freq=2462)
  94. if "p2p-wlan" not in res['ifname']:
  95. raise Exception("Unexpected group interface name on client")
  96. if res['ifname'] not in utils.get_ifnames():
  97. raise Exception("Could not find group interface netdev")
  98. dev[0].remove_group()
  99. dev[1].wait_go_ending_session()
  100. dev[1].ping()
  101. if res['ifname'] in utils.get_ifnames():
  102. raise Exception("Group interface netdev was not removed")
  103. def test_autogo4(dev):
  104. """P2P autonomous GO and client joining group (both with a separate group interface)"""
  105. dev[0].global_request("SET p2p_no_group_iface 0")
  106. dev[1].global_request("SET p2p_no_group_iface 0")
  107. res1 = autogo(dev[0], freq=2412)
  108. res2 = connect_cli(dev[0], dev[1], social=True, freq=2412)
  109. if "p2p-wlan" not in res1['ifname']:
  110. raise Exception("Unexpected group interface name on GO")
  111. if "p2p-wlan" not in res2['ifname']:
  112. raise Exception("Unexpected group interface name on client")
  113. ifnames = utils.get_ifnames()
  114. if res1['ifname'] not in ifnames:
  115. raise Exception("Could not find GO group interface netdev")
  116. if res2['ifname'] not in ifnames:
  117. raise Exception("Could not find client group interface netdev")
  118. dev[0].remove_group()
  119. dev[1].wait_go_ending_session()
  120. dev[1].ping()
  121. ifnames = utils.get_ifnames()
  122. if res1['ifname'] in ifnames:
  123. raise Exception("GO group interface netdev was not removed")
  124. if res2['ifname'] in ifnames:
  125. raise Exception("Client group interface netdev was not removed")
  126. def test_autogo_m2d(dev):
  127. """P2P autonomous GO and clients not authorized"""
  128. autogo(dev[0], freq=2412)
  129. go_addr = dev[0].p2p_dev_addr()
  130. dev[1].request("SET p2p_no_group_iface 0")
  131. if not dev[1].discover_peer(go_addr, social=True):
  132. raise Exception("GO " + go_addr + " not found")
  133. dev[1].dump_monitor()
  134. if not dev[2].discover_peer(go_addr, social=True):
  135. raise Exception("GO " + go_addr + " not found")
  136. dev[2].dump_monitor()
  137. logger.info("Trying to join the group when GO has not authorized the client")
  138. pin = dev[1].wps_read_pin()
  139. cmd = "P2P_CONNECT " + go_addr + " " + pin + " join"
  140. if "OK" not in dev[1].global_request(cmd):
  141. raise Exception("P2P_CONNECT join failed")
  142. pin = dev[2].wps_read_pin()
  143. cmd = "P2P_CONNECT " + go_addr + " " + pin + " join"
  144. if "OK" not in dev[2].global_request(cmd):
  145. raise Exception("P2P_CONNECT join failed")
  146. ev = dev[1].wait_global_event(["WPS-M2D"], timeout=16)
  147. if ev is None:
  148. raise Exception("No global M2D event")
  149. ifaces = dev[1].request("INTERFACES").splitlines()
  150. iface = ifaces[0] if "p2p-wlan" in ifaces[0] else ifaces[1]
  151. wpas = WpaSupplicant(ifname=iface)
  152. ev = wpas.wait_event(["WPS-M2D"], timeout=10)
  153. if ev is None:
  154. raise Exception("No M2D event on group interface")
  155. ev = dev[2].wait_global_event(["WPS-M2D"], timeout=10)
  156. if ev is None:
  157. raise Exception("No global M2D event (2)")
  158. ev = dev[2].wait_event(["WPS-M2D"], timeout=10)
  159. if ev is None:
  160. raise Exception("No M2D event on group interface (2)")
  161. def test_autogo_fail(dev):
  162. """P2P autonomous GO and incorrect PIN"""
  163. autogo(dev[0], freq=2412)
  164. go_addr = dev[0].p2p_dev_addr()
  165. dev[0].p2p_go_authorize_client("00000000")
  166. dev[1].global_request("SET p2p_no_group_iface 0")
  167. if not dev[1].discover_peer(go_addr, social=True):
  168. raise Exception("GO " + go_addr + " not found")
  169. dev[1].dump_monitor()
  170. logger.info("Trying to join the group when GO has not authorized the client")
  171. pin = dev[1].wps_read_pin()
  172. cmd = "P2P_CONNECT " + go_addr + " " + pin + " join"
  173. if "OK" not in dev[1].global_request(cmd):
  174. raise Exception("P2P_CONNECT join failed")
  175. ev = dev[1].wait_global_event(["WPS-FAIL"], timeout=10)
  176. if ev is None:
  177. raise Exception("No global WPS-FAIL event")
  178. def test_autogo_2cli(dev):
  179. """P2P autonomous GO and two clients joining group"""
  180. autogo(dev[0], freq=2412)
  181. connect_cli(dev[0], dev[1], social=True, freq=2412)
  182. connect_cli(dev[0], dev[2], social=True, freq=2412)
  183. hwsim_utils.test_connectivity_p2p(dev[1], dev[2])
  184. dev[0].global_request("P2P_REMOVE_CLIENT " + dev[1].p2p_dev_addr())
  185. dev[1].wait_go_ending_session()
  186. dev[0].global_request("P2P_REMOVE_CLIENT iface=" + dev[2].p2p_interface_addr())
  187. dev[2].wait_go_ending_session()
  188. if "FAIL" not in dev[0].global_request("P2P_REMOVE_CLIENT foo"):
  189. raise Exception("Invalid P2P_REMOVE_CLIENT command accepted")
  190. dev[0].remove_group()
  191. def test_autogo_pbc(dev):
  192. """P2P autonomous GO and PBC"""
  193. dev[1].global_request("SET p2p_no_group_iface 0")
  194. autogo(dev[0], freq=2412)
  195. if "FAIL" not in dev[0].group_request("WPS_PBC p2p_dev_addr=00:11:22:33:44"):
  196. raise Exception("Invalid WPS_PBC succeeded")
  197. if "OK" not in dev[0].group_request("WPS_PBC p2p_dev_addr=" + dev[1].p2p_dev_addr()):
  198. raise Exception("WPS_PBC failed")
  199. dev[2].p2p_connect_group(dev[0].p2p_dev_addr(), "pbc", timeout=0,
  200. social=True)
  201. ev = dev[2].wait_global_event(["WPS-M2D"], timeout=15)
  202. if ev is None:
  203. raise Exception("WPS-M2D not reported")
  204. if "config_error=12" not in ev:
  205. raise Exception("Unexpected config_error: " + ev)
  206. dev[1].p2p_connect_group(dev[0].p2p_dev_addr(), "pbc", timeout=15,
  207. social=True)
  208. def test_autogo_tdls(dev):
  209. """P2P autonomous GO and two clients using TDLS"""
  210. go = dev[0]
  211. logger.info("Start autonomous GO with fixed parameters " + go.ifname)
  212. id = go.add_network()
  213. go.set_network_quoted(id, "ssid", "DIRECT-tdls")
  214. go.set_network_quoted(id, "psk", "12345678")
  215. go.set_network(id, "mode", "3")
  216. go.set_network(id, "disabled", "2")
  217. res = go.p2p_start_go(persistent=id, freq="2462")
  218. logger.debug("res: " + str(res))
  219. Wlantest.setup(go, True)
  220. wt = Wlantest()
  221. wt.flush()
  222. wt.add_passphrase("12345678")
  223. connect_cli(go, dev[1], social=True, freq=2462)
  224. connect_cli(go, dev[2], social=True, freq=2462)
  225. hwsim_utils.test_connectivity_p2p(dev[1], dev[2])
  226. bssid = dev[0].p2p_interface_addr()
  227. addr1 = dev[1].p2p_interface_addr()
  228. addr2 = dev[2].p2p_interface_addr()
  229. dev[1].tdls_setup(addr2)
  230. time.sleep(1)
  231. hwsim_utils.test_connectivity_p2p(dev[1], dev[2])
  232. conf = wt.get_tdls_counter("setup_conf_ok", bssid, addr1, addr2);
  233. if conf == 0:
  234. raise Exception("No TDLS Setup Confirm (success) seen")
  235. dl = wt.get_tdls_counter("valid_direct_link", bssid, addr1, addr2);
  236. if dl == 0:
  237. raise Exception("No valid frames through direct link")
  238. wt.tdls_clear(bssid, addr1, addr2);
  239. dev[1].tdls_teardown(addr2)
  240. time.sleep(1)
  241. teardown = wt.get_tdls_counter("teardown", bssid, addr1, addr2);
  242. if teardown == 0:
  243. raise Exception("No TDLS Setup Teardown seen")
  244. wt.tdls_clear(bssid, addr1, addr2);
  245. hwsim_utils.test_connectivity_p2p(dev[1], dev[2])
  246. ap_path = wt.get_tdls_counter("valid_ap_path", bssid, addr1, addr2);
  247. if ap_path == 0:
  248. raise Exception("No valid frames via AP path")
  249. direct_link = wt.get_tdls_counter("valid_direct_link", bssid, addr1, addr2);
  250. if direct_link > 0:
  251. raise Exception("Unexpected frames through direct link")
  252. idirect_link = wt.get_tdls_counter("invalid_direct_link", bssid, addr1,
  253. addr2);
  254. if idirect_link > 0:
  255. raise Exception("Unexpected frames through direct link (invalid)")
  256. dev[2].remove_group()
  257. dev[1].remove_group()
  258. dev[0].remove_group()
  259. def test_autogo_legacy(dev):
  260. """P2P autonomous GO and legacy clients"""
  261. res = autogo(dev[0], freq=2462)
  262. if dev[0].get_group_status_field("passphrase", extra="WPS") != res['passphrase']:
  263. raise Exception("passphrase mismatch")
  264. if dev[0].group_request("P2P_GET_PASSPHRASE") != res['passphrase']:
  265. raise Exception("passphrase mismatch(2)")
  266. logger.info("Connect P2P client")
  267. connect_cli(dev[0], dev[1], social=True, freq=2462)
  268. if "FAIL" not in dev[1].request("P2P_GET_PASSPHRASE"):
  269. raise Exception("P2P_GET_PASSPHRASE succeeded on P2P Client")
  270. logger.info("Connect legacy WPS client")
  271. pin = dev[2].wps_read_pin()
  272. dev[0].p2p_go_authorize_client(pin)
  273. dev[2].request("P2P_SET disabled 1")
  274. dev[2].dump_monitor()
  275. dev[2].request("WPS_PIN any " + pin)
  276. dev[2].wait_connected(timeout=30)
  277. status = dev[2].get_status()
  278. if status['wpa_state'] != 'COMPLETED':
  279. raise Exception("Not fully connected")
  280. hwsim_utils.test_connectivity_p2p_sta(dev[1], dev[2])
  281. dev[2].request("DISCONNECT")
  282. logger.info("Connect legacy non-WPS client")
  283. dev[2].request("FLUSH")
  284. dev[2].request("P2P_SET disabled 1")
  285. dev[2].connect(ssid=res['ssid'], psk=res['passphrase'], proto='RSN',
  286. key_mgmt='WPA-PSK', pairwise='CCMP', group='CCMP',
  287. scan_freq=res['freq'])
  288. hwsim_utils.test_connectivity_p2p_sta(dev[1], dev[2])
  289. dev[2].request("DISCONNECT")
  290. dev[0].remove_group()
  291. dev[1].wait_go_ending_session()
  292. def test_autogo_chan_switch(dev):
  293. """P2P autonomous GO switching channels"""
  294. autogo(dev[0], freq=2417)
  295. connect_cli(dev[0], dev[1])
  296. res = dev[0].request("CHAN_SWITCH 5 2422")
  297. if "FAIL" in res:
  298. # for now, skip test since mac80211_hwsim support is not yet widely
  299. # deployed
  300. raise HwsimSkip("Assume mac80211_hwsim did not support channel switching")
  301. ev = dev[0].wait_event(["AP-CSA-FINISHED"], timeout=10)
  302. if ev is None:
  303. raise Exception("CSA finished event timed out")
  304. if "freq=2422" not in ev:
  305. raise Exception("Unexpected cahnnel in CSA finished event")
  306. dev[0].dump_monitor()
  307. dev[1].dump_monitor()
  308. time.sleep(0.1)
  309. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  310. def test_autogo_extra_cred(dev):
  311. """P2P autonomous GO sending two WPS credentials"""
  312. if "FAIL" in dev[0].request("SET wps_testing_dummy_cred 1"):
  313. raise Exception("Failed to enable test mode")
  314. autogo(dev[0], freq=2412)
  315. connect_cli(dev[0], dev[1], social=True, freq=2412)
  316. dev[0].remove_group()
  317. dev[1].wait_go_ending_session()
  318. def test_autogo_ifdown(dev):
  319. """P2P autonomous GO and external ifdown"""
  320. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  321. wpas.interface_add("wlan5")
  322. res = autogo(wpas)
  323. wpas.dump_monitor()
  324. wpas.interface_remove("wlan5")
  325. wpas.interface_add("wlan5")
  326. res = autogo(wpas)
  327. wpas.dump_monitor()
  328. subprocess.call(['ifconfig', res['ifname'], 'down'])
  329. ev = wpas.wait_global_event(["P2P-GROUP-REMOVED"], timeout=10)
  330. if ev is None:
  331. raise Exception("Group removal not reported")
  332. if res['ifname'] not in ev:
  333. raise Exception("Unexpected group removal event: " + ev)
  334. def test_autogo_start_during_scan(dev):
  335. """P2P autonomous GO started during ongoing manual scan"""
  336. try:
  337. # use autoscan to set scan_req = MANUAL_SCAN_REQ
  338. if "OK" not in dev[0].request("AUTOSCAN periodic:1"):
  339. raise Exception("Failed to set autoscan")
  340. autogo(dev[0], freq=2462)
  341. connect_cli(dev[0], dev[1], social=True, freq=2462)
  342. dev[0].remove_group()
  343. dev[1].wait_go_ending_session()
  344. finally:
  345. dev[0].request("AUTOSCAN ")
  346. def test_autogo_passphrase_len(dev):
  347. """P2P autonomous GO and longer passphrase"""
  348. try:
  349. if "OK" not in dev[0].request("SET p2p_passphrase_len 13"):
  350. raise Exception("Failed to set passphrase length")
  351. res = autogo(dev[0], freq=2412)
  352. if len(res['passphrase']) != 13:
  353. raise Exception("Unexpected passphrase length")
  354. if dev[0].get_group_status_field("passphrase", extra="WPS") != res['passphrase']:
  355. raise Exception("passphrase mismatch")
  356. logger.info("Connect P2P client")
  357. connect_cli(dev[0], dev[1], social=True, freq=2412)
  358. logger.info("Connect legacy WPS client")
  359. pin = dev[2].wps_read_pin()
  360. dev[0].p2p_go_authorize_client(pin)
  361. dev[2].request("P2P_SET disabled 1")
  362. dev[2].dump_monitor()
  363. dev[2].request("WPS_PIN any " + pin)
  364. dev[2].wait_connected(timeout=30)
  365. status = dev[2].get_status()
  366. if status['wpa_state'] != 'COMPLETED':
  367. raise Exception("Not fully connected")
  368. dev[2].request("DISCONNECT")
  369. logger.info("Connect legacy non-WPS client")
  370. dev[2].request("FLUSH")
  371. dev[2].request("P2P_SET disabled 1")
  372. dev[2].connect(ssid=res['ssid'], psk=res['passphrase'], proto='RSN',
  373. key_mgmt='WPA-PSK', pairwise='CCMP', group='CCMP',
  374. scan_freq=res['freq'])
  375. hwsim_utils.test_connectivity_p2p_sta(dev[1], dev[2])
  376. dev[2].request("DISCONNECT")
  377. dev[0].remove_group()
  378. dev[1].wait_go_ending_session()
  379. finally:
  380. dev[0].request("SET p2p_passphrase_len 8")
  381. def test_autogo_bridge(dev):
  382. """P2P autonomous GO in a bridge"""
  383. try:
  384. # use autoscan to set scan_req = MANUAL_SCAN_REQ
  385. if "OK" not in dev[0].request("AUTOSCAN periodic:1"):
  386. raise Exception("Failed to set autoscan")
  387. autogo(dev[0])
  388. ifname = dev[0].get_group_ifname()
  389. subprocess.call(['brctl', 'addbr', 'p2p-br0'])
  390. subprocess.call(['brctl', 'setfd', 'p2p-br0', '0'])
  391. subprocess.call(['brctl', 'addif', 'p2p-br0', ifname])
  392. subprocess.call(['ip', 'link', 'set', 'dev', 'p2p-br0', 'up'])
  393. time.sleep(0.1)
  394. subprocess.call(['brctl', 'delif', 'p2p-br0', ifname])
  395. time.sleep(0.1)
  396. subprocess.call(['ip', 'link', 'set', 'dev', 'p2p-br0', 'down'])
  397. time.sleep(0.1)
  398. subprocess.call(['brctl', 'delbr', 'p2p-br0'])
  399. ev = dev[0].wait_global_event(["P2P-GROUP-REMOVED"], timeout=1)
  400. if ev is not None:
  401. raise Exception("P2P group removed unexpectedly")
  402. if dev[0].get_group_status_field('wpa_state') != "COMPLETED":
  403. raise Exception("Unexpected wpa_state")
  404. dev[0].remove_group()
  405. finally:
  406. dev[0].request("AUTOSCAN ")
  407. subprocess.Popen(['brctl', 'delif', 'p2p-br0', ifname],
  408. stderr=open('/dev/null', 'w'))
  409. subprocess.Popen(['ip', 'link', 'set', 'dev', 'p2p-br0', 'down'],
  410. stderr=open('/dev/null', 'w'))
  411. subprocess.Popen(['brctl', 'delbr', 'p2p-br0'],
  412. stderr=open('/dev/null', 'w'))
  413. def test_presence_req_on_group_interface(dev):
  414. """P2P_PRESENCE_REQ on group interface"""
  415. dev[1].global_request("SET p2p_no_group_iface 0")
  416. res = autogo(dev[0], freq=2437)
  417. res = connect_cli(dev[0], dev[1], social=True, freq=2437)
  418. if "FAIL" in dev[1].group_request("P2P_PRESENCE_REQ 30000 102400"):
  419. raise Exception("Could not send presence request")
  420. ev = dev[1].wait_group_event(["P2P-PRESENCE-RESPONSE"])
  421. if ev is None:
  422. raise Exception("Timeout while waiting for Presence Response")
  423. dev[0].remove_group()
  424. dev[1].wait_go_ending_session()
  425. def test_autogo_join_auto_go_not_found(dev):
  426. """P2P_CONNECT-auto not finding GO"""
  427. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  428. wpas.interface_add("wlan5")
  429. wpas.request("P2P_SET listen_channel 1")
  430. wpas.global_request("SET p2p_no_group_iface 0")
  431. autogo(wpas, freq=2412)
  432. addr = wpas.p2p_dev_addr()
  433. bssid = wpas.p2p_interface_addr()
  434. wpas.dump_monitor()
  435. dev[1].global_request("SET p2p_no_group_iface 0")
  436. dev[1].scan_for_bss(bssid, freq=2412)
  437. # This makes the GO not show up in the scan iteration following the
  438. # P2P_CONNECT command by stopping beaconing and handling Probe Request
  439. # frames externally (but not really replying to them). P2P listen mode is
  440. # needed to keep the GO listening on the operating channel for the PD
  441. # exchange.
  442. if "OK" not in wpas.group_request("STOP_AP"):
  443. raise Exception("STOP_AP failed")
  444. wpas.dump_monitor()
  445. wpas.group_request("SET ext_mgmt_frame_handling 1")
  446. wpas.p2p_listen()
  447. wpas.dump_monitor()
  448. time.sleep(0.02)
  449. dev[1].global_request("P2P_CONNECT " + addr + " pbc auto")
  450. ev = dev[1].wait_global_event(["P2P-FALLBACK-TO-GO-NEG-ENABLED"], 15)
  451. wpas.dump_monitor()
  452. if ev is None:
  453. raise Exception("Could not trigger old-scan-only case")
  454. return
  455. ev = dev[1].wait_global_event(["P2P-FALLBACK-TO-GO-NEG"], 15)
  456. wpas.remove_group()
  457. if ev is None:
  458. raise Exception("Fallback to GO Negotiation not seen")
  459. if "reason=GO-not-found" not in ev:
  460. raise Exception("Unexpected reason for fallback: " + ev)
  461. wpas.dump_monitor()
  462. def test_autogo_join_auto(dev):
  463. """P2P_CONNECT-auto joining a group"""
  464. autogo(dev[0])
  465. addr = dev[0].p2p_dev_addr()
  466. if "OK" not in dev[1].global_request("P2P_CONNECT " + addr + " pbc auto"):
  467. raise Exception("P2P_CONNECT failed")
  468. ev = dev[0].wait_global_event(["P2P-PROV-DISC-PBC-REQ"], timeout=15)
  469. if ev is None:
  470. raise Exception("Timeout on P2P-PROV-DISC-PBC-REQ")
  471. if "group=" + dev[0].group_ifname not in ev:
  472. raise Exception("Unexpected PD event contents: " + ev)
  473. dev[0].group_request("WPS_PBC")
  474. ev = dev[1].wait_global_event(["P2P-GROUP-STARTED"], timeout=15)
  475. if ev is None:
  476. raise Exception("Joining the group timed out")
  477. dev[1].group_form_result(ev)
  478. dev[0].remove_group()
  479. dev[1].wait_go_ending_session()
  480. dev[1].flush_scan_cache()
  481. def test_autogo_join_auto_go_neg(dev):
  482. """P2P_CONNECT-auto fallback to GO Neg"""
  483. dev[1].flush_scan_cache()
  484. dev[0].p2p_listen()
  485. addr = dev[0].p2p_dev_addr()
  486. if not dev[1].discover_peer(addr, social=True):
  487. raise Exception("Peer not found")
  488. dev[1].p2p_stop_find()
  489. if "OK" not in dev[1].global_request("P2P_CONNECT " + addr + " pbc auto"):
  490. raise Exception("P2P_CONNECT failed")
  491. ev = dev[0].wait_global_event(["P2P-GO-NEG-REQUEST"], timeout=15)
  492. if ev is None:
  493. raise Exception("Timeout on P2P-GO-NEG-REQUEST")
  494. peer = ev.split(' ')[1]
  495. dev[0].p2p_go_neg_init(peer, None, "pbc", timeout=15, go_intent=15)
  496. ev = dev[1].wait_global_event(["P2P-FALLBACK-TO-GO-NEG"], timeout=1)
  497. if ev is None:
  498. raise Exception("No P2P-FALLBACK-TO-GO-NEG event seen")
  499. if "P2P-FALLBACK-TO-GO-NEG-ENABLED" in ev:
  500. ev = dev[1].wait_global_event(["P2P-FALLBACK-TO-GO-NEG"], timeout=1)
  501. if ev is None:
  502. raise Exception("No P2P-FALLBACK-TO-GO-NEG event seen")
  503. if "reason=peer-not-running-GO" not in ev:
  504. raise Exception("Unexpected reason: " + ev)
  505. ev = dev[1].wait_global_event(["P2P-GROUP-STARTED"], timeout=15)
  506. if ev is None:
  507. raise Exception("Joining the group timed out")
  508. dev[1].group_form_result(ev)
  509. dev[0].remove_group()
  510. dev[1].wait_go_ending_session()
  511. dev[1].flush_scan_cache()
  512. def test_autogo_join_auto_go_neg_after_seeing_go(dev):
  513. """P2P_CONNECT-auto fallback to GO Neg after seeing GO"""
  514. autogo(dev[0], freq=2412)
  515. addr = dev[0].p2p_dev_addr()
  516. bssid = dev[0].p2p_interface_addr()
  517. dev[1].scan_for_bss(bssid, freq=2412)
  518. dev[0].remove_group()
  519. dev[0].p2p_listen()
  520. if "OK" not in dev[1].global_request("P2P_CONNECT " + addr + " pbc auto"):
  521. raise Exception("P2P_CONNECT failed")
  522. ev = dev[1].wait_global_event(["P2P-FALLBACK-TO-GO-NEG-ENABLED"],
  523. timeout=15)
  524. if ev is None:
  525. raise Exception("No P2P-FALLBACK-TO-GO-NEG-ENABLED event seen")
  526. ev = dev[0].wait_global_event(["P2P-GO-NEG-REQUEST"], timeout=15)
  527. if ev is None:
  528. raise Exception("Timeout on P2P-GO-NEG-REQUEST")
  529. peer = ev.split(' ')[1]
  530. dev[0].p2p_go_neg_init(peer, None, "pbc", timeout=15, go_intent=15)
  531. ev = dev[1].wait_global_event(["P2P-FALLBACK-TO-GO-NEG"], timeout=1)
  532. if ev is None:
  533. raise Exception("No P2P-FALLBACK-TO-GO-NEG event seen")
  534. if "reason=no-ACK-to-PD-Req" not in ev and "reason=PD-failed" not in ev:
  535. raise Exception("Unexpected reason: " + ev)
  536. ev = dev[1].wait_global_event(["P2P-GROUP-STARTED"], timeout=15)
  537. if ev is None:
  538. raise Exception("Joining the group timed out")
  539. dev[1].group_form_result(ev)
  540. dev[0].remove_group()
  541. dev[1].wait_go_ending_session()
  542. dev[1].flush_scan_cache()
  543. def test_go_search_non_social(dev):
  544. """P2P_FIND with freq parameter to scan a single channel"""
  545. addr0 = dev[0].p2p_dev_addr()
  546. autogo(dev[0], freq=2422)
  547. dev[1].p2p_find(freq=2422)
  548. ev = dev[1].wait_global_event(["P2P-DEVICE-FOUND"], timeout=3.5)
  549. if ev is None:
  550. raise Exception("Did not find GO quickly enough")
  551. dev[2].p2p_listen()
  552. ev = dev[1].wait_global_event(["P2P-DEVICE-FOUND"], timeout=5)
  553. if ev is None:
  554. raise Exception("Did not find peer")
  555. dev[2].p2p_stop_find()
  556. dev[1].p2p_stop_find()
  557. dev[0].remove_group()
  558. def test_autogo_many(dev):
  559. """P2P autonomous GO with large number of GO instances"""
  560. dev[0].global_request("SET p2p_no_group_iface 0")
  561. for i in range(100):
  562. if "OK" not in dev[0].global_request("P2P_GROUP_ADD freq=2412"):
  563. logger.info("Was able to add %d groups" % i)
  564. if i < 5:
  565. raise Exception("P2P_GROUP_ADD failed")
  566. stop_ev = dev[0].wait_global_event(["P2P-GROUP-REMOVE"], timeout=1)
  567. if stop_ev is not None:
  568. raise Exception("Unexpected P2P-GROUP-REMOVE event")
  569. break
  570. ev = dev[0].wait_global_event(["P2P-GROUP-STARTED"], timeout=5)
  571. if ev is None:
  572. raise Exception("GO start up timed out")
  573. dev[0].group_form_result(ev)
  574. for i in dev[0].global_request("INTERFACES").splitlines():
  575. dev[0].request("P2P_GROUP_REMOVE " + i)
  576. dev[0].dump_monitor()
  577. dev[0].request("P2P_GROUP_REMOVE *")
  578. def test_autogo_many_clients(dev):
  579. """P2P autonomous GO and many clients (P2P IE fragmentation)"""
  580. try:
  581. _test_autogo_many_clients(dev)
  582. finally:
  583. dev[0].global_request("SET device_name Device A")
  584. dev[1].global_request("SET device_name Device B")
  585. dev[2].global_request("SET device_name Device C")
  586. def _test_autogo_many_clients(dev):
  587. # These long device names will push the P2P IE contents beyond the limit
  588. # that requires fragmentation.
  589. name0 = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
  590. name1 = "BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB"
  591. name2 = "CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC"
  592. name3 = "DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD"
  593. dev[0].global_request("SET device_name " + name0)
  594. dev[1].global_request("SET device_name " + name1)
  595. dev[2].global_request("SET device_name " + name2)
  596. addr0 = dev[0].p2p_dev_addr()
  597. res = autogo(dev[0], freq=2412)
  598. bssid = dev[0].p2p_interface_addr()
  599. connect_cli(dev[0], dev[1], social=True, freq=2412)
  600. dev[0].dump_monitor()
  601. connect_cli(dev[0], dev[2], social=True, freq=2412)
  602. dev[0].dump_monitor()
  603. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  604. wpas.interface_add("wlan5")
  605. wpas.global_request("SET device_name " + name3)
  606. wpas.global_request("SET sec_device_type 1-11111111-1")
  607. wpas.global_request("SET sec_device_type 2-22222222-2")
  608. wpas.global_request("SET sec_device_type 3-33333333-3")
  609. wpas.global_request("SET sec_device_type 4-44444444-4")
  610. wpas.global_request("SET sec_device_type 5-55555555-5")
  611. connect_cli(dev[0], wpas, social=True, freq=2412)
  612. dev[0].dump_monitor()
  613. dev[1].dump_monitor()
  614. dev[1].p2p_find(freq=2412)
  615. ev1 = dev[1].wait_global_event(["P2P-DEVICE-FOUND"], timeout=10)
  616. if ev1 is None:
  617. raise Exception("Could not find peer (1)")
  618. ev2 = dev[1].wait_global_event(["P2P-DEVICE-FOUND"], timeout=10)
  619. if ev2 is None:
  620. raise Exception("Could not find peer (2)")
  621. ev3 = dev[1].wait_global_event(["P2P-DEVICE-FOUND"], timeout=10)
  622. if ev3 is None:
  623. raise Exception("Could not find peer (3)")
  624. dev[1].p2p_stop_find()
  625. for i in [ name0, name2, name3 ]:
  626. if i not in ev1 and i not in ev2 and i not in ev3:
  627. raise Exception('name "%s" not found' % i)
  628. def rx_pd_req(dev):
  629. msg = dev.mgmt_rx()
  630. if msg is None:
  631. raise Exception("MGMT-RX timeout")
  632. p2p = parse_p2p_public_action(msg['payload'])
  633. if p2p is None:
  634. raise Exception("Not a P2P Public Action frame " + str(dialog_token))
  635. if p2p['subtype'] != P2P_PROV_DISC_REQ:
  636. raise Exception("Unexpected subtype %d" % p2p['subtype'])
  637. p2p['freq'] = msg['freq']
  638. return p2p
  639. def test_autogo_scan(dev):
  640. """P2P autonomous GO and no P2P IE in Probe Response scan results"""
  641. addr0 = dev[0].p2p_dev_addr()
  642. addr1 = dev[1].p2p_dev_addr()
  643. dev[0].p2p_start_go(freq=2412, persistent=True)
  644. bssid = dev[0].p2p_interface_addr()
  645. dev[1].discover_peer(addr0)
  646. dev[1].p2p_stop_find()
  647. ev = dev[1].wait_global_event(["P2P-FIND-STOPPED"], timeout=2)
  648. time.sleep(0.1)
  649. dev[1].flush_scan_cache()
  650. pin = dev[1].wps_read_pin()
  651. dev[0].group_request("WPS_PIN any " + pin)
  652. try:
  653. dev[1].request("SET p2p_disabled 1")
  654. dev[1].request("SCAN freq=2412")
  655. ev = dev[1].wait_event(["CTRL-EVENT-SCAN-RESULTS"])
  656. if ev is None:
  657. raise Exception("Active scan did not complete")
  658. finally:
  659. dev[1].request("SET p2p_disabled 0")
  660. for i in range(2):
  661. dev[1].request("SCAN freq=2412 passive=1")
  662. ev = dev[1].wait_event(["CTRL-EVENT-SCAN-RESULTS"])
  663. if ev is None:
  664. raise Exception("Scan did not complete")
  665. # Disable management frame processing for a moment to skip Probe Response
  666. # frame with P2P IE.
  667. dev[0].group_request("SET ext_mgmt_frame_handling 1")
  668. dev[1].global_request("P2P_CONNECT " + bssid + " " + pin + " freq=2412 join")
  669. # Skip the first Probe Request frame
  670. ev = dev[0].wait_group_event(["MGMT-RX"], timeout=10)
  671. if ev is None:
  672. raise Exception("No Probe Request frame seen")
  673. if not ev.split(' ')[4].startswith("40"):
  674. raise Exception("Not a Probe Request frame")
  675. # If a P2P Device is not used, the PD Request will be received on the group
  676. # interface (which is actually wlan0, since a separate interface is not
  677. # used), which was set to external management frame handling, so need to
  678. # reply to it manually.
  679. res = dev[0].get_driver_status()
  680. if not (int(res['capa.flags'], 0) & 0x20000000):
  681. # Reply to PD Request while still filtering Probe Request frames
  682. msg = rx_pd_req(dev[0])
  683. mgmt_tx(dev[0], "MGMT_TX {} {} freq={} wait_time=10 no_cck=1 action={}".format(addr1, addr0, 2412, "0409506f9a0908%02xdd0a0050f204100800020008" % msg['dialog_token']))
  684. # Skip Probe Request frames until something else is received
  685. for i in range(10):
  686. ev = dev[0].wait_group_event(["MGMT-RX"], timeout=10)
  687. if ev is None:
  688. raise Exception("No frame seen")
  689. if not ev.split(' ')[4].startswith("40"):
  690. break
  691. # Allow wpa_supplicant to process authentication and association
  692. dev[0].group_request("SET ext_mgmt_frame_handling 0")
  693. # Joining the group should succeed and indicate persistent group based on
  694. # Beacon frame P2P IE.
  695. ev = dev[1].wait_global_event(["P2P-GROUP-STARTED"], timeout=10)
  696. if ev is None:
  697. raise Exception("Failed to join group")
  698. if "[PERSISTENT]" not in ev:
  699. raise Exception("Did not recognize group as persistent")
  700. dev[0].remove_group()
  701. dev[1].wait_go_ending_session()
  702. def test_autogo_join_before_found(dev):
  703. """P2P client joining a group before having found GO Device Address"""
  704. dev[0].global_request("SET p2p_no_group_iface 0")
  705. res = autogo(dev[0], freq=2412)
  706. if "p2p-wlan" not in res['ifname']:
  707. raise Exception("Unexpected group interface name on GO")
  708. status = dev[0].get_group_status()
  709. bssid = status['bssid']
  710. pin = dev[1].wps_read_pin()
  711. dev[0].p2p_go_authorize_client(pin)
  712. cmd = "P2P_CONNECT " + bssid + " " + pin + " join freq=2412"
  713. if "OK" not in dev[1].global_request(cmd):
  714. raise Exception("P2P_CONNECT join failed")
  715. ev = dev[1].wait_global_event(["P2P-GROUP-STARTED"], timeout=15)
  716. if ev is None:
  717. raise Exception("Joining the group timed out")
  718. dev[0].remove_group()
  719. dev[1].wait_go_ending_session()