test_p2p_autogo.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. # P2P autonomous GO test cases
  2. # Copyright (c) 2013, 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 wlantest import Wlantest
  13. from wpasupplicant import WpaSupplicant
  14. def autogo(go, freq=None):
  15. logger.info("Start autonomous GO " + go.ifname)
  16. res = go.p2p_start_go(freq=freq)
  17. logger.debug("res: " + str(res))
  18. return res
  19. def connect_cli(go, client):
  20. logger.info("Try to connect the client to the GO")
  21. pin = client.wps_read_pin()
  22. go.p2p_go_authorize_client(pin)
  23. res = client.p2p_connect_group(go.p2p_dev_addr(), pin, timeout=60)
  24. logger.info("Client connected")
  25. hwsim_utils.test_connectivity_p2p(go, client)
  26. return res
  27. def test_autogo(dev):
  28. """P2P autonomous GO and client joining group"""
  29. res = autogo(dev[0])
  30. if "p2p-wlan" in res['ifname']:
  31. raise Exception("Unexpected group interface name on GO")
  32. res = connect_cli(dev[0], dev[1])
  33. if "p2p-wlan" in res['ifname']:
  34. raise Exception("Unexpected group interface name on client")
  35. bss = dev[1].get_bss("p2p_dev_addr=" + dev[0].p2p_dev_addr())
  36. if bss['bssid'] != dev[0].p2p_interface_addr():
  37. raise Exception("Unexpected BSSID in the BSS entry for the GO")
  38. id = bss['id']
  39. bss = dev[1].get_bss("ID-" + id)
  40. if bss['id'] != id:
  41. raise Exception("Could not find BSS entry based on id")
  42. res = dev[1].request("BSS RANGE=" + id + "- MASK=0x1")
  43. if "id=" + id not in res:
  44. raise Exception("Could not find BSS entry based on id range")
  45. # Presence request to increase testing coverage
  46. if "FAIL" in dev[1].group_request("P2P_PRESENCE_REQ 30000 102400"):
  47. raise Exception("Could not send presence request")
  48. ev = dev[1].wait_event(["P2P-PRESENCE-RESPONSE"])
  49. if ev is None:
  50. raise Exception("Timeout while waiting for Presence Response")
  51. dev[0].remove_group()
  52. dev[1].wait_go_ending_session()
  53. def test_autogo2(dev):
  54. """P2P autonomous GO with a separate group interface and client joining group"""
  55. dev[0].request("SET p2p_no_group_iface 0")
  56. res = autogo(dev[0])
  57. if "p2p-wlan" not in res['ifname']:
  58. raise Exception("Unexpected group interface name on GO")
  59. if res['ifname'] not in utils.get_ifnames():
  60. raise Exception("Could not find group interface netdev")
  61. connect_cli(dev[0], dev[1])
  62. dev[0].remove_group()
  63. dev[1].wait_go_ending_session()
  64. if res['ifname'] in utils.get_ifnames():
  65. raise Exception("Group interface netdev was not removed")
  66. def test_autogo3(dev):
  67. """P2P autonomous GO and client with a separate group interface joining group"""
  68. dev[1].request("SET p2p_no_group_iface 0")
  69. autogo(dev[0])
  70. res = connect_cli(dev[0], dev[1])
  71. if "p2p-wlan" not in res['ifname']:
  72. raise Exception("Unexpected group interface name on client")
  73. if res['ifname'] not in utils.get_ifnames():
  74. raise Exception("Could not find group interface netdev")
  75. dev[0].remove_group()
  76. dev[1].wait_go_ending_session()
  77. dev[1].ping()
  78. if res['ifname'] in utils.get_ifnames():
  79. raise Exception("Group interface netdev was not removed")
  80. def test_autogo4(dev):
  81. """P2P autonomous GO and client joining group (both with a separate group interface)"""
  82. dev[0].request("SET p2p_no_group_iface 0")
  83. dev[1].request("SET p2p_no_group_iface 0")
  84. res1 = autogo(dev[0])
  85. res2 = connect_cli(dev[0], dev[1])
  86. if "p2p-wlan" not in res1['ifname']:
  87. raise Exception("Unexpected group interface name on GO")
  88. if "p2p-wlan" not in res2['ifname']:
  89. raise Exception("Unexpected group interface name on client")
  90. ifnames = utils.get_ifnames()
  91. if res1['ifname'] not in ifnames:
  92. raise Exception("Could not find GO group interface netdev")
  93. if res2['ifname'] not in ifnames:
  94. raise Exception("Could not find client group interface netdev")
  95. dev[0].remove_group()
  96. dev[1].wait_go_ending_session()
  97. dev[1].ping()
  98. ifnames = utils.get_ifnames()
  99. if res1['ifname'] in ifnames:
  100. raise Exception("GO group interface netdev was not removed")
  101. if res2['ifname'] in ifnames:
  102. raise Exception("Client group interface netdev was not removed")
  103. def test_autogo_m2d(dev):
  104. """P2P autonomous GO and clients not authorized"""
  105. autogo(dev[0], freq="2412")
  106. go_addr = dev[0].p2p_dev_addr()
  107. dev[1].request("SET p2p_no_group_iface 0")
  108. if not dev[1].discover_peer(go_addr, social=True):
  109. raise Exception("GO " + go_addr + " not found")
  110. dev[1].dump_monitor()
  111. if not dev[2].discover_peer(go_addr, social=True):
  112. raise Exception("GO " + go_addr + " not found")
  113. dev[2].dump_monitor()
  114. logger.info("Trying to join the group when GO has not authorized the client")
  115. pin = dev[1].wps_read_pin()
  116. cmd = "P2P_CONNECT " + go_addr + " " + pin + " join"
  117. if "OK" not in dev[1].global_request(cmd):
  118. raise Exception("P2P_CONNECT join failed")
  119. pin = dev[2].wps_read_pin()
  120. cmd = "P2P_CONNECT " + go_addr + " " + pin + " join"
  121. if "OK" not in dev[2].global_request(cmd):
  122. raise Exception("P2P_CONNECT join failed")
  123. ev = dev[1].wait_global_event(["WPS-M2D"], timeout=10)
  124. if ev is None:
  125. raise Exception("No global M2D event")
  126. ifaces = dev[1].request("INTERFACES").splitlines()
  127. iface = ifaces[0] if "p2p-wlan" in ifaces[0] else ifaces[1]
  128. wpas = WpaSupplicant(ifname=iface)
  129. ev = wpas.wait_event(["WPS-M2D"], timeout=10)
  130. if ev is None:
  131. raise Exception("No M2D event on group interface")
  132. ev = dev[2].wait_global_event(["WPS-M2D"], timeout=10)
  133. if ev is None:
  134. raise Exception("No global M2D event (2)")
  135. ev = dev[2].wait_event(["WPS-M2D"], timeout=10)
  136. if ev is None:
  137. raise Exception("No M2D event on group interface (2)")
  138. def test_autogo_fail(dev):
  139. """P2P autonomous GO and incorrect PIN"""
  140. autogo(dev[0], freq="2412")
  141. go_addr = dev[0].p2p_dev_addr()
  142. dev[0].p2p_go_authorize_client("00000000")
  143. dev[1].request("SET p2p_no_group_iface 0")
  144. if not dev[1].discover_peer(go_addr, social=True):
  145. raise Exception("GO " + go_addr + " not found")
  146. dev[1].dump_monitor()
  147. logger.info("Trying to join the group when GO has not authorized the client")
  148. pin = dev[1].wps_read_pin()
  149. cmd = "P2P_CONNECT " + go_addr + " " + pin + " join"
  150. if "OK" not in dev[1].global_request(cmd):
  151. raise Exception("P2P_CONNECT join failed")
  152. ev = dev[1].wait_global_event(["WPS-FAIL"], timeout=10)
  153. if ev is None:
  154. raise Exception("No global WPS-FAIL event")
  155. def test_autogo_2cli(dev):
  156. """P2P autonomous GO and two clients joining group"""
  157. autogo(dev[0])
  158. connect_cli(dev[0], dev[1])
  159. connect_cli(dev[0], dev[2])
  160. hwsim_utils.test_connectivity_p2p(dev[1], dev[2])
  161. dev[0].global_request("P2P_REMOVE_CLIENT " + dev[1].p2p_dev_addr())
  162. dev[1].wait_go_ending_session()
  163. dev[0].remove_group()
  164. dev[2].wait_go_ending_session()
  165. def test_autogo_pbc(dev):
  166. """P2P autonomous GO and PBC"""
  167. dev[1].request("SET p2p_no_group_iface 0")
  168. autogo(dev[0], freq="2412")
  169. if "FAIL" not in dev[0].group_request("WPS_PBC p2p_dev_addr=00:11:22:33:44"):
  170. raise Exception("Invalid WPS_PBC succeeded")
  171. if "OK" not in dev[0].group_request("WPS_PBC p2p_dev_addr=" + dev[1].p2p_dev_addr()):
  172. raise Exception("WPS_PBC failed")
  173. dev[2].p2p_connect_group(dev[0].p2p_dev_addr(), "pbc", timeout=0,
  174. social=True)
  175. ev = dev[2].wait_event(["WPS-M2D"], timeout=15)
  176. if ev is None:
  177. raise Exception("WPS-M2D not reported")
  178. if "config_error=12" not in ev:
  179. raise Exception("Unexpected config_error: " + ev)
  180. dev[1].p2p_connect_group(dev[0].p2p_dev_addr(), "pbc", timeout=15,
  181. social=True)
  182. def test_autogo_tdls(dev):
  183. """P2P autonomous GO and two clients using TDLS"""
  184. wt = Wlantest()
  185. go = dev[0]
  186. logger.info("Start autonomous GO with fixed parameters " + go.ifname)
  187. id = go.add_network()
  188. go.set_network_quoted(id, "ssid", "DIRECT-tdls")
  189. go.set_network_quoted(id, "psk", "12345678")
  190. go.set_network(id, "mode", "3")
  191. go.set_network(id, "disabled", "2")
  192. res = go.p2p_start_go(persistent=id)
  193. logger.debug("res: " + str(res))
  194. wt.flush()
  195. wt.add_passphrase("12345678")
  196. connect_cli(go, dev[1])
  197. connect_cli(go, dev[2])
  198. hwsim_utils.test_connectivity_p2p(dev[1], dev[2])
  199. bssid = dev[0].p2p_interface_addr()
  200. addr1 = dev[1].p2p_interface_addr()
  201. addr2 = dev[2].p2p_interface_addr()
  202. dev[1].tdls_setup(addr2)
  203. time.sleep(1)
  204. hwsim_utils.test_connectivity_p2p(dev[1], dev[2])
  205. conf = wt.get_tdls_counter("setup_conf_ok", bssid, addr1, addr2);
  206. if conf == 0:
  207. raise Exception("No TDLS Setup Confirm (success) seen")
  208. dl = wt.get_tdls_counter("valid_direct_link", bssid, addr1, addr2);
  209. if dl == 0:
  210. raise Exception("No valid frames through direct link")
  211. wt.tdls_clear(bssid, addr1, addr2);
  212. dev[1].tdls_teardown(addr2)
  213. time.sleep(1)
  214. teardown = wt.get_tdls_counter("teardown", bssid, addr1, addr2);
  215. if teardown == 0:
  216. raise Exception("No TDLS Setup Teardown seen")
  217. wt.tdls_clear(bssid, addr1, addr2);
  218. hwsim_utils.test_connectivity_p2p(dev[1], dev[2])
  219. ap_path = wt.get_tdls_counter("valid_ap_path", bssid, addr1, addr2);
  220. if ap_path == 0:
  221. raise Exception("No valid frames via AP path")
  222. direct_link = wt.get_tdls_counter("valid_direct_link", bssid, addr1, addr2);
  223. if direct_link > 0:
  224. raise Exception("Unexpected frames through direct link")
  225. idirect_link = wt.get_tdls_counter("invalid_direct_link", bssid, addr1,
  226. addr2);
  227. if idirect_link > 0:
  228. raise Exception("Unexpected frames through direct link (invalid)")
  229. dev[2].remove_group()
  230. dev[1].remove_group()
  231. dev[0].remove_group()
  232. def test_autogo_legacy(dev):
  233. """P2P autonomous GO and legacy clients"""
  234. res = autogo(dev[0])
  235. logger.info("Connect P2P client")
  236. connect_cli(dev[0], dev[1])
  237. logger.info("Connect legacy WPS client")
  238. pin = dev[2].wps_read_pin()
  239. dev[0].p2p_go_authorize_client(pin)
  240. dev[2].request("P2P_SET disabled 1")
  241. dev[2].dump_monitor()
  242. dev[2].request("WPS_PIN any " + pin)
  243. ev = dev[2].wait_event(["CTRL-EVENT-CONNECTED"], timeout=30)
  244. if ev is None:
  245. raise Exception("Association with the GO timed out")
  246. status = dev[2].get_status()
  247. if status['wpa_state'] != 'COMPLETED':
  248. raise Exception("Not fully connected")
  249. hwsim_utils.test_connectivity_p2p_sta(dev[1], dev[2])
  250. dev[2].request("DISCONNECT")
  251. logger.info("Connect legacy non-WPS client")
  252. dev[2].request("FLUSH")
  253. dev[2].request("P2P_SET disabled 1")
  254. dev[2].connect(ssid=res['ssid'], psk=res['passphrase'], proto='RSN',
  255. key_mgmt='WPA-PSK', pairwise='CCMP', group='CCMP',
  256. scan_freq=res['freq'])
  257. hwsim_utils.test_connectivity_p2p_sta(dev[1], dev[2])
  258. dev[2].request("DISCONNECT")
  259. dev[0].remove_group()
  260. dev[1].wait_go_ending_session()
  261. def test_autogo_chan_switch(dev):
  262. """P2P autonomous GO switching channels"""
  263. autogo(dev[0], freq=2417)
  264. connect_cli(dev[0], dev[1])
  265. res = dev[0].request("CHAN_SWITCH 5 2422")
  266. if "FAIL" in res:
  267. # for now, skip test since mac80211_hwsim support is not yet widely
  268. # deployed
  269. return 'skip'
  270. ev = dev[0].wait_event(["AP-CSA-FINISHED"], timeout=10)
  271. if ev is None:
  272. raise Exception("CSA finished event timed out")
  273. if "freq=2422" not in ev:
  274. raise Exception("Unexpected cahnnel in CSA finished event")
  275. dev[0].dump_monitor()
  276. dev[1].dump_monitor()
  277. time.sleep(0.1)
  278. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])