test_p2p_concurrency.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. # P2P concurrency 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 logging
  7. logger = logging.getLogger()
  8. import subprocess
  9. import time
  10. import hwsim_utils
  11. import hostapd
  12. from test_p2p_grpform import go_neg_pin_authorized
  13. from test_p2p_grpform import go_neg_pbc
  14. from test_p2p_grpform import check_grpform_results
  15. from test_p2p_grpform import remove_group
  16. from test_p2p_persistent import form
  17. from test_p2p_persistent import invite_from_cli
  18. from test_p2p_persistent import invite_from_go
  19. from test_p2p_persistent import invite
  20. from test_ap_ht import clear_scan_cache
  21. def test_concurrent_autogo(dev, apdev):
  22. """Concurrent P2P autonomous GO"""
  23. logger.info("Connect to an infrastructure AP")
  24. dev[0].request("P2P_SET cross_connect 0")
  25. hapd = hostapd.add_ap(apdev[0]['ifname'], { "ssid": "test-open" })
  26. dev[0].connect("test-open", key_mgmt="NONE", scan_freq="2412")
  27. hwsim_utils.test_connectivity(dev[0], hapd)
  28. logger.info("Start a P2P group while associated to an AP")
  29. dev[0].request("SET p2p_no_group_iface 0")
  30. dev[0].p2p_start_go()
  31. pin = dev[1].wps_read_pin()
  32. dev[0].p2p_go_authorize_client(pin)
  33. dev[1].p2p_connect_group(dev[0].p2p_dev_addr(), pin, timeout=60,
  34. social=True)
  35. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  36. dev[0].remove_group()
  37. dev[1].wait_go_ending_session()
  38. logger.info("Confirm AP connection after P2P group removal")
  39. hwsim_utils.test_connectivity(dev[0], hapd)
  40. def test_concurrent_autogo_5ghz_ht40(dev, apdev):
  41. """Concurrent P2P autonomous GO on 5 GHz and HT40 co-ex"""
  42. clear_scan_cache(apdev[1]['ifname'])
  43. try:
  44. hapd = None
  45. hapd2 = None
  46. params = { "ssid": "ht40",
  47. "hw_mode": "a",
  48. "channel": "153",
  49. "country_code": "US",
  50. "ht_capab": "[HT40-]" }
  51. hapd2 = hostapd.add_ap(apdev[1]['ifname'], params)
  52. params = { "ssid": "test-open-5",
  53. "hw_mode": "a",
  54. "channel": "149",
  55. "country_code": "US" }
  56. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  57. dev[0].request("P2P_SET cross_connect 0")
  58. dev[0].scan_for_bss(apdev[0]['bssid'], freq=5745)
  59. dev[0].scan_for_bss(apdev[1]['bssid'], freq=5765)
  60. dev[0].connect("test-open-5", key_mgmt="NONE", scan_freq="5745")
  61. dev[0].request("SET p2p_no_group_iface 0")
  62. if "OK" not in dev[0].global_request("P2P_GROUP_ADD ht40"):
  63. raise Exception("P2P_GROUP_ADD failed")
  64. ev = dev[0].wait_global_event(["P2P-GROUP-STARTED"], timeout=5)
  65. if ev is None:
  66. raise Exception("GO start up timed out")
  67. dev[0].group_form_result(ev)
  68. pin = dev[1].wps_read_pin()
  69. dev[0].p2p_go_authorize_client(pin)
  70. dev[1].p2p_find(freq=5745)
  71. addr0 = dev[0].p2p_dev_addr()
  72. count = 0
  73. while count < 10:
  74. time.sleep(0.25)
  75. count += 1
  76. if dev[1].peer_known(addr0):
  77. break
  78. dev[1].p2p_connect_group(addr0, pin, timeout=60)
  79. dev[0].remove_group()
  80. dev[1].wait_go_ending_session()
  81. finally:
  82. dev[0].request("REMOVE_NETWORK all")
  83. if hapd:
  84. hapd.request("DISABLE")
  85. if hapd2:
  86. hapd2.request("DISABLE")
  87. subprocess.call(['iw', 'reg', 'set', '00'])
  88. dev[0].flush_scan_cache()
  89. dev[1].flush_scan_cache()
  90. def test_concurrent_autogo_crossconnect(dev, apdev):
  91. """Concurrent P2P autonomous GO"""
  92. dev[0].global_request("P2P_SET cross_connect 1")
  93. hapd = hostapd.add_ap(apdev[0]['ifname'], { "ssid": "test-open" })
  94. dev[0].connect("test-open", key_mgmt="NONE", scan_freq="2412")
  95. dev[0].global_request("SET p2p_no_group_iface 0")
  96. dev[0].p2p_start_go(no_event_clear=True)
  97. ev = dev[0].wait_global_event("P2P-CROSS-CONNECT-ENABLE", timeout=10)
  98. if ev is None:
  99. raise Exception("Timeout on cross connection enabled event")
  100. if dev[0].group_ifname + " " + dev[0].ifname not in ev:
  101. raise Exception("Unexpected interfaces: " + ev)
  102. dev[0].dump_monitor()
  103. dev[0].global_request("P2P_SET cross_connect 0")
  104. ev = dev[0].wait_global_event("P2P-CROSS-CONNECT-DISABLE", timeout=10)
  105. if ev is None:
  106. raise Exception("Timeout on cross connection disabled event")
  107. if dev[0].group_ifname + " " + dev[0].ifname not in ev:
  108. raise Exception("Unexpected interfaces: " + ev)
  109. dev[0].remove_group()
  110. dev[0].global_request("P2P_SET cross_connect 1")
  111. dev[0].p2p_start_go(no_event_clear=True)
  112. ev = dev[0].wait_global_event("P2P-CROSS-CONNECT-ENABLE", timeout=10)
  113. if ev is None:
  114. raise Exception("Timeout on cross connection enabled event")
  115. if dev[0].group_ifname + " " + dev[0].ifname not in ev:
  116. raise Exception("Unexpected interfaces: " + ev)
  117. dev[0].dump_monitor()
  118. dev[0].remove_group()
  119. ev = dev[0].wait_global_event("P2P-CROSS-CONNECT-DISABLE", timeout=10)
  120. if ev is None:
  121. raise Exception("Timeout on cross connection disabled event")
  122. dev[0].global_request("P2P_SET cross_connect 0")
  123. def test_concurrent_p2pcli(dev, apdev):
  124. """Concurrent P2P client join"""
  125. logger.info("Connect to an infrastructure AP")
  126. hapd = hostapd.add_ap(apdev[0]['ifname'], { "ssid": "test-open" })
  127. dev[0].connect("test-open", key_mgmt="NONE", scan_freq="2412")
  128. hwsim_utils.test_connectivity(dev[0], hapd)
  129. logger.info("Join a P2P group while associated to an AP")
  130. dev[0].request("SET p2p_no_group_iface 0")
  131. dev[1].p2p_start_go(freq=2412)
  132. pin = dev[0].wps_read_pin()
  133. dev[1].p2p_go_authorize_client(pin)
  134. dev[0].p2p_connect_group(dev[1].p2p_dev_addr(), pin, timeout=60,
  135. social=True)
  136. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  137. dev[1].remove_group()
  138. dev[0].wait_go_ending_session()
  139. logger.info("Confirm AP connection after P2P group removal")
  140. hwsim_utils.test_connectivity(dev[0], hapd)
  141. def test_concurrent_grpform_go(dev, apdev):
  142. """Concurrent P2P group formation to become GO"""
  143. logger.info("Connect to an infrastructure AP")
  144. hapd = hostapd.add_ap(apdev[0]['ifname'], { "ssid": "test-open" })
  145. dev[0].connect("test-open", key_mgmt="NONE", scan_freq="2412")
  146. hwsim_utils.test_connectivity(dev[0], hapd)
  147. logger.info("Form a P2P group while associated to an AP")
  148. dev[0].request("SET p2p_no_group_iface 0")
  149. [i_res, r_res] = go_neg_pin_authorized(i_dev=dev[0], i_intent=15,
  150. r_dev=dev[1], r_intent=0)
  151. check_grpform_results(i_res, r_res)
  152. remove_group(dev[0], dev[1])
  153. logger.info("Confirm AP connection after P2P group removal")
  154. hwsim_utils.test_connectivity(dev[0], hapd)
  155. def test_concurrent_grpform_cli(dev, apdev):
  156. """Concurrent P2P group formation to become P2P Client"""
  157. logger.info("Connect to an infrastructure AP")
  158. hapd = hostapd.add_ap(apdev[0]['ifname'], { "ssid": "test-open" })
  159. dev[0].connect("test-open", key_mgmt="NONE", scan_freq="2412")
  160. hwsim_utils.test_connectivity(dev[0], hapd)
  161. logger.info("Form a P2P group while associated to an AP")
  162. dev[0].request("SET p2p_no_group_iface 0")
  163. [i_res, r_res] = go_neg_pin_authorized(i_dev=dev[0], i_intent=0,
  164. r_dev=dev[1], r_intent=15)
  165. check_grpform_results(i_res, r_res)
  166. remove_group(dev[0], dev[1])
  167. logger.info("Confirm AP connection after P2P group removal")
  168. hwsim_utils.test_connectivity(dev[0], hapd)
  169. def test_concurrent_grpform_while_connecting(dev, apdev):
  170. """Concurrent P2P group formation while connecting to an AP"""
  171. logger.info("Start connection to an infrastructure AP")
  172. hapd = hostapd.add_ap(apdev[0]['ifname'], { "ssid": "test-open" })
  173. dev[0].connect("test-open", key_mgmt="NONE", wait_connect=False)
  174. logger.info("Form a P2P group while connecting to an AP")
  175. dev[0].request("SET p2p_no_group_iface 0")
  176. [i_res, r_res] = go_neg_pin_authorized(i_dev=dev[0], i_freq=2412,
  177. r_dev=dev[1], r_freq=2412)
  178. check_grpform_results(i_res, r_res)
  179. remove_group(dev[0], dev[1])
  180. logger.info("Confirm AP connection after P2P group removal")
  181. hwsim_utils.test_connectivity(dev[0], hapd)
  182. def test_concurrent_grpform_while_connecting2(dev, apdev):
  183. """Concurrent P2P group formation while connecting to an AP (2)"""
  184. logger.info("Start connection to an infrastructure AP")
  185. hapd = hostapd.add_ap(apdev[0]['ifname'], { "ssid": "test-open" })
  186. dev[0].connect("test-open", key_mgmt="NONE", wait_connect=False)
  187. dev[1].flush_scan_cache()
  188. logger.info("Form a P2P group while connecting to an AP")
  189. dev[0].request("SET p2p_no_group_iface 0")
  190. [i_res, r_res] = go_neg_pbc(i_dev=dev[0], i_intent=15, i_freq=2412,
  191. r_dev=dev[1], r_intent=0, r_freq=2412)
  192. check_grpform_results(i_res, r_res)
  193. remove_group(dev[0], dev[1])
  194. logger.info("Confirm AP connection after P2P group removal")
  195. dev[0].wait_completed()
  196. hwsim_utils.test_connectivity(dev[0], hapd)
  197. def test_concurrent_grpform_while_connecting3(dev, apdev):
  198. """Concurrent P2P group formation while connecting to an AP (3)"""
  199. logger.info("Start connection to an infrastructure AP")
  200. hapd = hostapd.add_ap(apdev[0]['ifname'], { "ssid": "test-open" })
  201. dev[0].connect("test-open", key_mgmt="NONE", wait_connect=False)
  202. logger.info("Form a P2P group while connecting to an AP")
  203. dev[0].request("SET p2p_no_group_iface 0")
  204. [i_res, r_res] = go_neg_pbc(i_dev=dev[1], i_intent=15, i_freq=2412,
  205. r_dev=dev[0], r_intent=0, r_freq=2412)
  206. check_grpform_results(i_res, r_res)
  207. remove_group(dev[0], dev[1])
  208. logger.info("Confirm AP connection after P2P group removal")
  209. dev[0].wait_completed()
  210. hwsim_utils.test_connectivity(dev[0], hapd)
  211. def test_concurrent_persistent_group(dev, apdev):
  212. """Concurrent P2P persistent group"""
  213. logger.info("Connect to an infrastructure AP")
  214. hostapd.add_ap(apdev[0]['ifname'], { "ssid": "test-open", "channel": "2" })
  215. dev[0].global_request("SET p2p_no_group_iface 0")
  216. dev[0].connect("test-open", key_mgmt="NONE", scan_freq="2417")
  217. logger.info("Run persistent group test while associated to an AP")
  218. form(dev[0], dev[1])
  219. [go_res, cli_res] = invite_from_cli(dev[0], dev[1])
  220. if go_res['freq'] != '2417':
  221. raise Exception("Unexpected channel selected: " + go_res['freq'])
  222. [go_res, cli_res] = invite_from_go(dev[0], dev[1])
  223. if go_res['freq'] != '2417':
  224. raise Exception("Unexpected channel selected: " + go_res['freq'])
  225. def test_concurrent_invitation_channel_mismatch(dev, apdev):
  226. """P2P persistent group invitation and channel mismatch"""
  227. form(dev[0], dev[1])
  228. dev[0].dump_monitor()
  229. dev[1].dump_monitor()
  230. logger.info("Connect to an infrastructure AP")
  231. hostapd.add_ap(apdev[0]['ifname'], { "ssid": "test-open", "channel": "2" })
  232. dev[0].global_request("SET p2p_no_group_iface 0")
  233. dev[0].connect("test-open", key_mgmt="NONE", scan_freq="2417")
  234. invite(dev[1], dev[0], extra="freq=2412")
  235. ev = dev[1].wait_global_event(["P2P-INVITATION-RESULT"], timeout=15)
  236. if ev is None:
  237. raise Exception("P2P invitation result not received")
  238. if "status=7" not in ev:
  239. raise Exception("Unexpected P2P invitation result: " + ev)