test_nfc_p2p.py 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723
  1. # P2P+NFC tests
  2. # Copyright (c) 2013, Qualcomm Atheros, Inc.
  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(__name__)
  10. import hwsim_utils
  11. grpform_events = ["P2P-GROUP-STARTED",
  12. "P2P-GO-NEG-FAILURE",
  13. "P2P-GROUP-FORMATION-FAILURE",
  14. "WPS-PIN-NEEDED",
  15. "WPS-M2D",
  16. "WPS-FAIL"]
  17. def set_ip_addr_info(dev):
  18. dev.global_request("SET ip_addr_go 192.168.42.1")
  19. dev.global_request("SET ip_addr_mask 255.255.255.0")
  20. dev.global_request("SET ip_addr_start 192.168.42.100")
  21. dev.global_request("SET ip_addr_end 192.168.42.199")
  22. def check_ip_addr(res):
  23. if 'ip_addr' not in res:
  24. raise Exception("Did not receive IP address from GO")
  25. if '192.168.42.' not in res['ip_addr']:
  26. raise Exception("Unexpected IP address received from GO")
  27. if 'ip_mask' not in res:
  28. raise Exception("Did not receive IP address mask from GO")
  29. if '255.255.255.' not in res['ip_mask']:
  30. raise Exception("Unexpected IP address mask received from GO")
  31. if 'go_ip_addr' not in res:
  32. raise Exception("Did not receive GO IP address from GO")
  33. if '192.168.42.' not in res['go_ip_addr']:
  34. raise Exception("Unexpected GO IP address received from GO")
  35. def test_nfc_p2p_go_neg(dev):
  36. """NFC connection handover to form a new P2P group (initiator becomes GO)"""
  37. set_ip_addr_info(dev[0])
  38. ip = dev[0].request("GET ip_addr_go")
  39. if ip != "192.168.42.1":
  40. raise Exception("Unexpected ip_addr_go returned: " + ip)
  41. dev[0].global_request("SET p2p_go_intent 10")
  42. logger.info("Perform NFC connection handover")
  43. req = dev[0].global_request("NFC_GET_HANDOVER_REQ NDEF P2P-CR").rstrip()
  44. if "FAIL" in req:
  45. raise Exception("Failed to generate NFC connection handover request")
  46. sel = dev[1].global_request("NFC_GET_HANDOVER_SEL NDEF P2P-CR").rstrip()
  47. if "FAIL" in sel:
  48. raise Exception("Failed to generate NFC connection handover select")
  49. dev[0].dump_monitor()
  50. dev[1].dump_monitor()
  51. res = dev[1].global_request("NFC_REPORT_HANDOVER RESP P2P " + req + " " + sel)
  52. if "FAIL" in res:
  53. raise Exception("Failed to report NFC connection handover to wpa_supplicant(resp)")
  54. res = dev[0].global_request("NFC_REPORT_HANDOVER INIT P2P " + req + " " + sel)
  55. if "FAIL" in res:
  56. raise Exception("Failed to report NFC connection handover to wpa_supplicant(init)")
  57. ev = dev[0].wait_global_event(["P2P-GROUP-STARTED",
  58. "P2P-GO-NEG-FAILURE",
  59. "P2P-GROUP-FORMATION-FAILURE",
  60. "WPS-PIN-NEEDED"], timeout=15)
  61. if ev is None:
  62. raise Exception("Group formation timed out")
  63. res0 = dev[0].group_form_result(ev)
  64. ev = dev[1].wait_global_event(["P2P-GROUP-STARTED",
  65. "P2P-GO-NEG-FAILURE",
  66. "P2P-GROUP-FORMATION-FAILURE",
  67. "WPS-PIN-NEEDED"], timeout=1)
  68. if ev is None:
  69. raise Exception("Group formation timed out")
  70. res1 = dev[1].group_form_result(ev)
  71. logger.info("Group formed")
  72. if res1['role'] != 'client' or res0['role'] != 'GO':
  73. raise Exception("Unexpected roles negotiated")
  74. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  75. check_ip_addr(res1)
  76. def test_nfc_p2p_go_neg_reverse(dev):
  77. """NFC connection handover to form a new P2P group (responder becomes GO)"""
  78. set_ip_addr_info(dev[1])
  79. dev[0].global_request("SET p2p_go_intent 3")
  80. logger.info("Perform NFC connection handover")
  81. req = dev[0].global_request("NFC_GET_HANDOVER_REQ NDEF P2P-CR").rstrip()
  82. if "FAIL" in req:
  83. raise Exception("Failed to generate NFC connection handover request")
  84. sel = dev[1].global_request("NFC_GET_HANDOVER_SEL NDEF P2P-CR").rstrip()
  85. if "FAIL" in sel:
  86. raise Exception("Failed to generate NFC connection handover select")
  87. dev[0].dump_monitor()
  88. dev[1].dump_monitor()
  89. res = dev[1].global_request("NFC_REPORT_HANDOVER RESP P2P " + req + " " + sel)
  90. if "FAIL" in res:
  91. raise Exception("Failed to report NFC connection handover to wpa_supplicant(resp)")
  92. res = dev[0].global_request("NFC_REPORT_HANDOVER INIT P2P " + req + " " + sel)
  93. if "FAIL" in res:
  94. raise Exception("Failed to report NFC connection handover to wpa_supplicant(init)")
  95. ev = dev[0].wait_global_event(["P2P-GROUP-STARTED",
  96. "P2P-GO-NEG-FAILURE",
  97. "P2P-GROUP-FORMATION-FAILURE",
  98. "WPS-PIN-NEEDED"], timeout=15)
  99. if ev is None:
  100. raise Exception("Group formation timed out")
  101. res0 = dev[0].group_form_result(ev)
  102. ev = dev[1].wait_global_event(["P2P-GROUP-STARTED",
  103. "P2P-GO-NEG-FAILURE",
  104. "P2P-GROUP-FORMATION-FAILURE",
  105. "WPS-PIN-NEEDED"], timeout=1)
  106. if ev is None:
  107. raise Exception("Group formation timed out")
  108. res1 = dev[1].group_form_result(ev)
  109. logger.info("Group formed")
  110. if res0['role'] != 'client' or res1['role'] != 'GO':
  111. raise Exception("Unexpected roles negotiated")
  112. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  113. check_ip_addr(res0)
  114. def test_nfc_p2p_initiator_go(dev):
  115. """NFC connection handover with initiator already GO"""
  116. set_ip_addr_info(dev[0])
  117. logger.info("Start autonomous GO")
  118. dev[0].p2p_start_go()
  119. logger.info("Perform NFC connection handover")
  120. req = dev[0].global_request("NFC_GET_HANDOVER_REQ NDEF P2P-CR").rstrip()
  121. if "FAIL" in req:
  122. raise Exception("Failed to generate NFC connection handover request")
  123. sel = dev[1].global_request("NFC_GET_HANDOVER_SEL NDEF P2P-CR").rstrip()
  124. if "FAIL" in sel:
  125. raise Exception("Failed to generate NFC connection handover select")
  126. dev[0].dump_monitor()
  127. dev[1].dump_monitor()
  128. res = dev[1].global_request("NFC_REPORT_HANDOVER RESP P2P " + req + " " + sel)
  129. if "FAIL" in res:
  130. raise Exception("Failed to report NFC connection handover to wpa_supplicant(resp)")
  131. res = dev[0].global_request("NFC_REPORT_HANDOVER INIT P2P " + req + " " + sel)
  132. if "FAIL" in res:
  133. raise Exception("Failed to report NFC connection handover to wpa_supplicant(init)")
  134. ev = dev[1].wait_global_event(["P2P-GROUP-STARTED"], timeout=15)
  135. if ev is None:
  136. raise Exception("Connection to the group timed out")
  137. res1 = dev[1].group_form_result(ev)
  138. if res1['result'] != 'success':
  139. raise Exception("Unexpected connection failure")
  140. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  141. check_ip_addr(res1)
  142. def test_nfc_p2p_responder_go(dev):
  143. """NFC connection handover with responder already GO"""
  144. set_ip_addr_info(dev[1])
  145. logger.info("Start autonomous GO")
  146. dev[1].p2p_start_go()
  147. logger.info("Perform NFC connection handover")
  148. req = dev[0].global_request("NFC_GET_HANDOVER_REQ NDEF P2P-CR").rstrip()
  149. if "FAIL" in req:
  150. raise Exception("Failed to generate NFC connection handover request")
  151. sel = dev[1].global_request("NFC_GET_HANDOVER_SEL NDEF P2P-CR").rstrip()
  152. if "FAIL" in sel:
  153. raise Exception("Failed to generate NFC connection handover select")
  154. dev[0].dump_monitor()
  155. dev[1].dump_monitor()
  156. res = dev[1].global_request("NFC_REPORT_HANDOVER RESP P2P " + req + " " + sel)
  157. if "FAIL" in res:
  158. raise Exception("Failed to report NFC connection handover to wpa_supplicant(resp)")
  159. res = dev[0].global_request("NFC_REPORT_HANDOVER INIT P2P " + req + " " + sel)
  160. if "FAIL" in res:
  161. raise Exception("Failed to report NFC connection handover to wpa_supplicant(init)")
  162. ev = dev[0].wait_global_event(["P2P-GROUP-STARTED"], timeout=15)
  163. if ev is None:
  164. raise Exception("Connection to the group timed out")
  165. res0 = dev[0].group_form_result(ev)
  166. if res0['result'] != 'success':
  167. raise Exception("Unexpected connection failure")
  168. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  169. check_ip_addr(res0)
  170. def test_nfc_p2p_both_go(dev):
  171. """NFC connection handover with both devices already GOs"""
  172. set_ip_addr_info(dev[0])
  173. set_ip_addr_info(dev[1])
  174. logger.info("Start autonomous GOs")
  175. dev[0].p2p_start_go()
  176. dev[1].p2p_start_go()
  177. logger.info("Perform NFC connection handover")
  178. req = dev[0].request("NFC_GET_HANDOVER_REQ NDEF P2P-CR").rstrip()
  179. if "FAIL" in req:
  180. raise Exception("Failed to generate NFC connection handover request")
  181. sel = dev[1].request("NFC_GET_HANDOVER_SEL NDEF P2P-CR").rstrip()
  182. if "FAIL" in sel:
  183. raise Exception("Failed to generate NFC connection handover select")
  184. dev[0].dump_monitor()
  185. dev[1].dump_monitor()
  186. res = dev[1].request("NFC_REPORT_HANDOVER RESP P2P " + req + " " + sel)
  187. if "FAIL" in res:
  188. raise Exception("Failed to report NFC connection handover to wpa_supplicant(resp)")
  189. res = dev[0].request("NFC_REPORT_HANDOVER INIT P2P " + req + " " + sel)
  190. if "FAIL" in res:
  191. raise Exception("Failed to report NFC connection handover to wpa_supplicant(init)")
  192. ev = dev[0].wait_event(["P2P-NFC-BOTH-GO"], timeout=15)
  193. if ev is None:
  194. raise Exception("Time out waiting for P2P-NFC-BOTH-GO (dev0)")
  195. ev = dev[1].wait_event(["P2P-NFC-BOTH-GO"], timeout=1)
  196. if ev is None:
  197. raise Exception("Time out waiting for P2P-NFC-BOTH-GO (dev1)")
  198. dev[0].remove_group()
  199. dev[1].remove_group()
  200. def test_nfc_p2p_client(dev):
  201. """NFC connection handover when one device is P2P client"""
  202. logger.info("Start autonomous GOs")
  203. dev[0].p2p_start_go()
  204. logger.info("Connect one device as a P2P client")
  205. pin = dev[1].wps_read_pin()
  206. dev[0].p2p_go_authorize_client(pin)
  207. dev[1].p2p_connect_group(dev[0].p2p_dev_addr(), pin, timeout=60)
  208. logger.info("Client connected")
  209. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  210. logger.info("NFC connection handover between P2P client and P2P device")
  211. req = dev[1].request("NFC_GET_HANDOVER_REQ NDEF P2P-CR").rstrip()
  212. if "FAIL" in req:
  213. raise Exception("Failed to generate NFC connection handover request")
  214. sel = dev[2].request("NFC_GET_HANDOVER_SEL NDEF P2P-CR").rstrip()
  215. if "FAIL" in sel:
  216. raise Exception("Failed to generate NFC connection handover select")
  217. dev[1].dump_monitor()
  218. dev[2].dump_monitor()
  219. res = dev[2].request("NFC_REPORT_HANDOVER RESP P2P " + req + " " + sel)
  220. if "FAIL" in res:
  221. raise Exception("Failed to report NFC connection handover to wpa_supplicant(resp)")
  222. res = dev[1].request("NFC_REPORT_HANDOVER INIT P2P " + req + " " + sel)
  223. if "FAIL" in res:
  224. raise Exception("Failed to report NFC connection handover to wpa_supplicant(init)")
  225. ev = dev[1].wait_event(["P2P-NFC-WHILE-CLIENT"], timeout=15)
  226. if ev is None:
  227. raise Exception("Time out waiting for P2P-NFC-WHILE-CLIENT")
  228. ev = dev[2].wait_event(["P2P-NFC-PEER-CLIENT"], timeout=1)
  229. if ev is None:
  230. raise Exception("Time out waiting for P2P-NFC-PEER-CLIENT")
  231. logger.info("Connect to group based on upper layer trigger")
  232. pin = dev[2].wps_read_pin()
  233. dev[0].p2p_go_authorize_client(pin)
  234. dev[2].p2p_connect_group(dev[0].p2p_dev_addr(), pin, timeout=60)
  235. logger.info("Client connected")
  236. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  237. hwsim_utils.test_connectivity_p2p(dev[1], dev[2])
  238. dev[2].remove_group()
  239. dev[1].remove_group()
  240. dev[0].remove_group()
  241. def test_nfc_p2p_static_handover_tagdev_client(dev):
  242. """NFC static handover to form a new P2P group (NFC Tag device becomes P2P Client)"""
  243. set_ip_addr_info(dev[0])
  244. logger.info("Perform NFC connection handover")
  245. res = dev[1].global_request("SET p2p_listen_reg_class 81")
  246. res2 = dev[1].global_request("SET p2p_listen_channel 6")
  247. if "FAIL" in res or "FAIL" in res2:
  248. raise Exception("Could not set Listen channel")
  249. pw = dev[1].global_request("WPS_NFC_TOKEN NDEF").rstrip()
  250. if "FAIL" in pw:
  251. raise Exception("Failed to generate password token")
  252. res = dev[1].global_request("P2P_SET nfc_tag 1").rstrip()
  253. if "FAIL" in res:
  254. raise Exception("Failed to enable NFC Tag for P2P static handover")
  255. sel = dev[1].global_request("NFC_GET_HANDOVER_SEL NDEF P2P-CR-TAG").rstrip()
  256. if "FAIL" in sel:
  257. raise Exception("Failed to generate NFC connection handover select")
  258. res = dev[1].global_request("P2P_LISTEN")
  259. if "FAIL" in res:
  260. raise Exception("Failed to start Listen mode")
  261. dev[1].dump_monitor()
  262. dev[0].dump_monitor()
  263. dev[0].global_request("SET p2p_go_intent 10")
  264. res = dev[0].global_request("WPS_NFC_TAG_READ " + sel)
  265. if "FAIL" in res:
  266. raise Exception("Failed to provide NFC tag contents to wpa_supplicant")
  267. ev = dev[0].wait_global_event(grpform_events, timeout=15)
  268. if ev is None:
  269. raise Exception("Group formation timed out")
  270. res0 = dev[0].group_form_result(ev)
  271. ev = dev[1].wait_global_event(grpform_events, timeout=1)
  272. if ev is None:
  273. raise Exception("Group formation timed out")
  274. res1 = dev[1].group_form_result(ev)
  275. logger.info("Group formed")
  276. if res1['role'] != 'client' or res0['role'] != 'GO':
  277. raise Exception("Unexpected roles negotiated")
  278. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  279. check_ip_addr(res1)
  280. def test_nfc_p2p_static_handover_tagdev_client_group_iface(dev):
  281. """NFC static handover to form a new P2P group (NFC Tag device becomes P2P Client with group iface)"""
  282. set_ip_addr_info(dev[0])
  283. logger.info("Perform NFC connection handover")
  284. res = dev[1].global_request("SET p2p_listen_reg_class 81")
  285. res2 = dev[1].global_request("SET p2p_listen_channel 6")
  286. if "FAIL" in res or "FAIL" in res2:
  287. raise Exception("Could not set Listen channel")
  288. pw = dev[1].global_request("WPS_NFC_TOKEN NDEF").rstrip()
  289. if "FAIL" in pw:
  290. raise Exception("Failed to generate password token")
  291. dev[1].global_request("SET p2p_no_group_iface 0")
  292. res = dev[1].global_request("P2P_SET nfc_tag 1").rstrip()
  293. if "FAIL" in res:
  294. raise Exception("Failed to enable NFC Tag for P2P static handover")
  295. sel = dev[1].global_request("NFC_GET_HANDOVER_SEL NDEF P2P-CR-TAG").rstrip()
  296. if "FAIL" in sel:
  297. raise Exception("Failed to generate NFC connection handover select")
  298. res = dev[1].global_request("P2P_LISTEN")
  299. if "FAIL" in res:
  300. raise Exception("Failed to start Listen mode")
  301. dev[1].dump_monitor()
  302. dev[0].dump_monitor()
  303. dev[0].global_request("SET p2p_go_intent 10")
  304. res = dev[0].global_request("WPS_NFC_TAG_READ " + sel)
  305. if "FAIL" in res:
  306. raise Exception("Failed to provide NFC tag contents to wpa_supplicant")
  307. ev = dev[0].wait_global_event(grpform_events, timeout=15)
  308. if ev is None:
  309. raise Exception("Group formation timed out")
  310. res0 = dev[0].group_form_result(ev)
  311. ev = dev[1].wait_global_event(grpform_events, timeout=1)
  312. if ev is None:
  313. raise Exception("Group formation timed out")
  314. res1 = dev[1].group_form_result(ev)
  315. logger.info("Group formed")
  316. if res1['role'] != 'client' or res0['role'] != 'GO':
  317. raise Exception("Unexpected roles negotiated")
  318. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  319. check_ip_addr(res1)
  320. def test_nfc_p2p_static_handover_tagdev_go(dev):
  321. """NFC static handover to form a new P2P group (NFC Tag device becomes GO)"""
  322. set_ip_addr_info(dev[1])
  323. logger.info("Perform NFC connection handover")
  324. res = dev[1].global_request("SET p2p_listen_reg_class 81")
  325. res2 = dev[1].global_request("SET p2p_listen_channel 6")
  326. if "FAIL" in res or "FAIL" in res2:
  327. raise Exception("Could not set Listen channel")
  328. pw = dev[1].global_request("WPS_NFC_TOKEN NDEF").rstrip()
  329. if "FAIL" in pw:
  330. raise Exception("Failed to generate password token")
  331. res = dev[1].global_request("P2P_SET nfc_tag 1").rstrip()
  332. if "FAIL" in res:
  333. raise Exception("Failed to enable NFC Tag for P2P static handover")
  334. sel = dev[1].global_request("NFC_GET_HANDOVER_SEL NDEF P2P-CR-TAG").rstrip()
  335. if "FAIL" in sel:
  336. raise Exception("Failed to generate NFC connection handover select")
  337. res = dev[1].global_request("P2P_LISTEN")
  338. if "FAIL" in res:
  339. raise Exception("Failed to start Listen mode")
  340. dev[1].dump_monitor()
  341. dev[0].dump_monitor()
  342. dev[0].global_request("SET p2p_go_intent 3")
  343. res = dev[0].global_request("WPS_NFC_TAG_READ " + sel)
  344. if "FAIL" in res:
  345. raise Exception("Failed to provide NFC tag contents to wpa_supplicant")
  346. ev = dev[0].wait_global_event(grpform_events, timeout=15)
  347. if ev is None:
  348. raise Exception("Group formation timed out")
  349. res0 = dev[0].group_form_result(ev)
  350. ev = dev[1].wait_global_event(grpform_events, timeout=1)
  351. if ev is None:
  352. raise Exception("Group formation timed out")
  353. res1 = dev[1].group_form_result(ev)
  354. logger.info("Group formed")
  355. if res0['role'] != 'client' or res1['role'] != 'GO':
  356. raise Exception("Unexpected roles negotiated")
  357. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  358. check_ip_addr(res0)
  359. def test_nfc_p2p_static_handover_tagdev_go_forced_freq(dev):
  360. """NFC static handover to form a new P2P group on forced channel (NFC Tag device becomes GO)"""
  361. set_ip_addr_info(dev[1])
  362. logger.info("Perform NFC connection handover")
  363. res = dev[1].global_request("SET p2p_listen_reg_class 81")
  364. res2 = dev[1].global_request("SET p2p_listen_channel 6")
  365. if "FAIL" in res or "FAIL" in res2:
  366. raise Exception("Could not set Listen channel")
  367. pw = dev[1].global_request("WPS_NFC_TOKEN NDEF").rstrip()
  368. if "FAIL" in pw:
  369. raise Exception("Failed to generate password token")
  370. res = dev[1].global_request("P2P_SET nfc_tag 1").rstrip()
  371. if "FAIL" in res:
  372. raise Exception("Failed to enable NFC Tag for P2P static handover")
  373. sel = dev[1].global_request("NFC_GET_HANDOVER_SEL NDEF P2P-CR-TAG").rstrip()
  374. if "FAIL" in sel:
  375. raise Exception("Failed to generate NFC connection handover select")
  376. res = dev[1].global_request("P2P_LISTEN")
  377. if "FAIL" in res:
  378. raise Exception("Failed to start Listen mode")
  379. dev[1].dump_monitor()
  380. dev[0].dump_monitor()
  381. dev[0].global_request("SET p2p_go_intent 3")
  382. res = dev[0].global_request("WPS_NFC_TAG_READ " + sel + " freq=2442")
  383. if "FAIL" in res:
  384. raise Exception("Failed to provide NFC tag contents to wpa_supplicant")
  385. ev = dev[0].wait_global_event(grpform_events, timeout=15)
  386. if ev is None:
  387. raise Exception("Group formation timed out")
  388. res0 = dev[0].group_form_result(ev)
  389. ev = dev[1].wait_global_event(grpform_events, timeout=1)
  390. if ev is None:
  391. raise Exception("Group formation timed out")
  392. res1 = dev[1].group_form_result(ev)
  393. logger.info("Group formed")
  394. if res0['role'] != 'client' or res1['role'] != 'GO':
  395. raise Exception("Unexpected roles negotiated")
  396. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  397. check_ip_addr(res0)
  398. def test_nfc_p2p_static_handover_join_tagdev_go(dev):
  399. """NFC static handover to join a P2P group (NFC Tag device is the GO)"""
  400. logger.info("Start autonomous GO")
  401. set_ip_addr_info(dev[0])
  402. dev[0].p2p_start_go()
  403. logger.info("Write NFC Tag on the GO")
  404. pw = dev[0].request("WPS_NFC_TOKEN NDEF").rstrip()
  405. if "FAIL" in pw:
  406. raise Exception("Failed to generate password token")
  407. res = dev[0].request("P2P_SET nfc_tag 1").rstrip()
  408. if "FAIL" in res:
  409. raise Exception("Failed to enable NFC Tag for P2P static handover")
  410. sel = dev[0].request("NFC_GET_HANDOVER_SEL NDEF P2P-CR-TAG").rstrip()
  411. if "FAIL" in sel:
  412. raise Exception("Failed to generate NFC connection handover select")
  413. logger.info("Read NFC Tag on a P2P Device to join a group")
  414. res = dev[1].request("WPS_NFC_TAG_READ " + sel)
  415. if "FAIL" in res:
  416. raise Exception("Failed to provide NFC tag contents to wpa_supplicant")
  417. ev = dev[1].wait_event(grpform_events, timeout=30)
  418. if ev is None:
  419. raise Exception("Joining the group timed out")
  420. res = dev[1].group_form_result(ev)
  421. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  422. check_ip_addr(res)
  423. logger.info("Read NFC Tag on another P2P Device to join a group")
  424. res = dev[2].request("WPS_NFC_TAG_READ " + sel)
  425. if "FAIL" in res:
  426. raise Exception("Failed to provide NFC tag contents to wpa_supplicant")
  427. ev = dev[2].wait_event(grpform_events, timeout=30)
  428. if ev is None:
  429. raise Exception("Joining the group timed out")
  430. res = dev[2].group_form_result(ev)
  431. hwsim_utils.test_connectivity_p2p(dev[0], dev[2])
  432. check_ip_addr(res)
  433. def test_nfc_p2p_static_handover_join_tagdev_client(dev):
  434. """NFC static handover to join a P2P group (NFC Tag device is the P2P Client)"""
  435. set_ip_addr_info(dev[0])
  436. logger.info("Start autonomous GO")
  437. dev[0].p2p_start_go()
  438. dev[1].global_request("SET ignore_old_scan_res 1")
  439. dev[2].global_request("SET ignore_old_scan_res 1")
  440. logger.info("Write NFC Tag on the P2P Client")
  441. res = dev[1].global_request("P2P_LISTEN")
  442. if "FAIL" in res:
  443. raise Exception("Failed to start Listen mode")
  444. pw = dev[1].global_request("WPS_NFC_TOKEN NDEF").rstrip()
  445. if "FAIL" in pw:
  446. raise Exception("Failed to generate password token")
  447. res = dev[1].global_request("P2P_SET nfc_tag 1").rstrip()
  448. if "FAIL" in res:
  449. raise Exception("Failed to enable NFC Tag for P2P static handover")
  450. sel = dev[1].global_request("NFC_GET_HANDOVER_SEL NDEF P2P-CR-TAG").rstrip()
  451. if "FAIL" in sel:
  452. raise Exception("Failed to generate NFC connection handover select")
  453. logger.info("Read NFC Tag on the GO to trigger invitation")
  454. res = dev[0].global_request("WPS_NFC_TAG_READ " + sel)
  455. if "FAIL" in res:
  456. raise Exception("Failed to provide NFC tag contents to wpa_supplicant")
  457. ev = dev[1].wait_global_event(grpform_events, timeout=30)
  458. if ev is None:
  459. raise Exception("Joining the group timed out")
  460. res = dev[1].group_form_result(ev)
  461. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  462. check_ip_addr(res)
  463. logger.info("Write NFC Tag on another P2P Client")
  464. res = dev[2].global_request("P2P_LISTEN")
  465. if "FAIL" in res:
  466. raise Exception("Failed to start Listen mode")
  467. pw = dev[2].global_request("WPS_NFC_TOKEN NDEF").rstrip()
  468. if "FAIL" in pw:
  469. raise Exception("Failed to generate password token")
  470. res = dev[2].global_request("P2P_SET nfc_tag 1").rstrip()
  471. if "FAIL" in res:
  472. raise Exception("Failed to enable NFC Tag for P2P static handover")
  473. sel = dev[2].global_request("NFC_GET_HANDOVER_SEL NDEF P2P-CR-TAG").rstrip()
  474. if "FAIL" in sel:
  475. raise Exception("Failed to generate NFC connection handover select")
  476. logger.info("Read NFC Tag on the GO to trigger invitation")
  477. res = dev[0].global_request("WPS_NFC_TAG_READ " + sel)
  478. if "FAIL" in res:
  479. raise Exception("Failed to provide NFC tag contents to wpa_supplicant")
  480. ev = dev[2].wait_global_event(grpform_events, timeout=30)
  481. if ev is None:
  482. raise Exception("Joining the group timed out")
  483. res = dev[2].group_form_result(ev)
  484. hwsim_utils.test_connectivity_p2p(dev[0], dev[2])
  485. check_ip_addr(res)
  486. def test_nfc_p2p_go_legacy_config_token(dev):
  487. """NFC config token from P2P GO to legacy WPS STA"""
  488. logger.info("Start autonomous GOs")
  489. dev[0].p2p_start_go()
  490. logger.info("Connect legacy WPS STA with configuration token")
  491. conf = dev[0].group_request("WPS_NFC_CONFIG_TOKEN NDEF").rstrip()
  492. if "FAIL" in conf:
  493. raise Exception("Failed to generate configuration token")
  494. dev[1].dump_monitor()
  495. res = dev[1].request("WPS_NFC_TAG_READ " + conf)
  496. if "FAIL" in res:
  497. raise Exception("Failed to provide NFC tag contents to wpa_supplicant")
  498. dev[1].wait_connected(timeout=15, error="Joining the group timed out")
  499. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  500. dev[1].request("DISCONNECT")
  501. dev[0].remove_group()
  502. def test_nfc_p2p_go_legacy_handover(dev):
  503. """NFC token from legacy WPS STA to P2P GO"""
  504. logger.info("Start autonomous GOs")
  505. dev[0].p2p_start_go()
  506. logger.info("Connect legacy WPS STA with connection handover")
  507. req = dev[1].request("NFC_GET_HANDOVER_REQ NDEF WPS-CR").rstrip()
  508. if "FAIL" in req:
  509. raise Exception("Failed to generate NFC connection handover request")
  510. sel = dev[0].group_request("NFC_GET_HANDOVER_SEL NDEF WPS-CR").rstrip()
  511. if "FAIL" in sel:
  512. raise Exception("Failed to generate NFC connection handover select")
  513. res = dev[0].group_request("NFC_REPORT_HANDOVER RESP WPS " + req + " " + sel)
  514. if "FAIL" in res:
  515. raise Exception("Failed to report NFC connection handover to wpa_supplicant (GO)")
  516. dev[1].dump_monitor()
  517. res = dev[1].request("NFC_REPORT_HANDOVER INIT WPS " + req + " " + sel)
  518. if "FAIL" in res:
  519. raise Exception("Failed to report NFC connection handover to wpa_supplicant (legacy STA)")
  520. dev[1].wait_connected(timeout=15, error="Joining the group timed out")
  521. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  522. dev[1].request("DISCONNECT")
  523. dev[0].remove_group()
  524. def test_nfc_p2p_ip_addr_assignment(dev):
  525. """NFC connection handover and legacy station IP address assignment"""
  526. set_ip_addr_info(dev[1])
  527. dev[0].global_request("SET p2p_go_intent 3")
  528. logger.info("Perform NFC connection handover")
  529. req = dev[0].global_request("NFC_GET_HANDOVER_REQ NDEF P2P-CR").rstrip()
  530. if "FAIL" in req:
  531. raise Exception("Failed to generate NFC connection handover request")
  532. sel = dev[1].global_request("NFC_GET_HANDOVER_SEL NDEF P2P-CR").rstrip()
  533. if "FAIL" in sel:
  534. raise Exception("Failed to generate NFC connection handover select")
  535. dev[0].dump_monitor()
  536. dev[1].dump_monitor()
  537. res = dev[1].global_request("NFC_REPORT_HANDOVER RESP P2P " + req + " " + sel)
  538. if "FAIL" in res:
  539. raise Exception("Failed to report NFC connection handover to wpa_supplicant(resp)")
  540. res = dev[0].global_request("NFC_REPORT_HANDOVER INIT P2P " + req + " " + sel)
  541. if "FAIL" in res:
  542. raise Exception("Failed to report NFC connection handover to wpa_supplicant(init)")
  543. ev = dev[0].wait_global_event(["P2P-GROUP-STARTED",
  544. "P2P-GO-NEG-FAILURE",
  545. "P2P-GROUP-FORMATION-FAILURE",
  546. "WPS-PIN-NEEDED"], timeout=15)
  547. if ev is None:
  548. raise Exception("Group formation timed out")
  549. res0 = dev[0].group_form_result(ev)
  550. ev = dev[1].wait_global_event(["P2P-GROUP-STARTED",
  551. "P2P-GO-NEG-FAILURE",
  552. "P2P-GROUP-FORMATION-FAILURE",
  553. "WPS-PIN-NEEDED"], timeout=1)
  554. if ev is None:
  555. raise Exception("Group formation timed out")
  556. res1 = dev[1].group_form_result(ev)
  557. logger.info("Group formed")
  558. if res0['role'] != 'client' or res1['role'] != 'GO':
  559. raise Exception("Unexpected roles negotiated")
  560. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  561. check_ip_addr(res0)
  562. logger.info("Connect legacy P2P client that does not use new IP address assignment")
  563. res = dev[2].global_request("P2P_SET disable_ip_addr_req 1")
  564. if "FAIL" in res:
  565. raise Exception("Failed to disable IP address assignment request")
  566. pin = dev[2].wps_read_pin()
  567. dev[1].p2p_go_authorize_client(pin)
  568. res = dev[2].p2p_connect_group(dev[1].p2p_dev_addr(), pin, timeout=60)
  569. logger.info("Client connected")
  570. res = dev[2].global_request("P2P_SET disable_ip_addr_req 0")
  571. hwsim_utils.test_connectivity_p2p(dev[1], dev[2])
  572. if 'ip_addr' in res:
  573. raise Exception("Unexpected IP address assignment")
  574. def test_nfc_p2p_ip_addr_assignment2(dev):
  575. """NFC connection handover and IP address assignment for two clients"""
  576. set_ip_addr_info(dev[1])
  577. dev[0].global_request("SET p2p_go_intent 3")
  578. logger.info("Perform NFC connection handover")
  579. req = dev[0].global_request("NFC_GET_HANDOVER_REQ NDEF P2P-CR").rstrip()
  580. if "FAIL" in req:
  581. raise Exception("Failed to generate NFC connection handover request")
  582. sel = dev[1].global_request("NFC_GET_HANDOVER_SEL NDEF P2P-CR").rstrip()
  583. if "FAIL" in sel:
  584. raise Exception("Failed to generate NFC connection handover select")
  585. dev[0].dump_monitor()
  586. dev[1].dump_monitor()
  587. res = dev[1].global_request("NFC_REPORT_HANDOVER RESP P2P " + req + " " + sel)
  588. if "FAIL" in res:
  589. raise Exception("Failed to report NFC connection handover to wpa_supplicant(resp)")
  590. res = dev[0].global_request("NFC_REPORT_HANDOVER INIT P2P " + req + " " + sel)
  591. if "FAIL" in res:
  592. raise Exception("Failed to report NFC connection handover to wpa_supplicant(init)")
  593. ev = dev[0].wait_global_event(["P2P-GROUP-STARTED",
  594. "P2P-GO-NEG-FAILURE",
  595. "P2P-GROUP-FORMATION-FAILURE",
  596. "WPS-PIN-NEEDED"], timeout=15)
  597. if ev is None:
  598. raise Exception("Group formation timed out")
  599. res0 = dev[0].group_form_result(ev)
  600. ev = dev[1].wait_global_event(["P2P-GROUP-STARTED",
  601. "P2P-GO-NEG-FAILURE",
  602. "P2P-GROUP-FORMATION-FAILURE",
  603. "WPS-PIN-NEEDED"], timeout=1)
  604. if ev is None:
  605. raise Exception("Group formation timed out")
  606. res1 = dev[1].group_form_result(ev)
  607. logger.info("Group formed")
  608. if res0['role'] != 'client' or res1['role'] != 'GO':
  609. raise Exception("Unexpected roles negotiated")
  610. hwsim_utils.test_connectivity_p2p(dev[0], dev[1])
  611. check_ip_addr(res0)
  612. logger.info("Client 1 IP address: " + res0['ip_addr'])
  613. logger.info("Connect a P2P client")
  614. pin = dev[2].wps_read_pin()
  615. dev[1].p2p_go_authorize_client(pin)
  616. res = dev[2].p2p_connect_group(dev[1].p2p_dev_addr(), pin, timeout=60)
  617. logger.info("Client connected")
  618. hwsim_utils.test_connectivity_p2p(dev[1], dev[2])
  619. check_ip_addr(res)
  620. logger.info("Client 2 IP address: " + res['ip_addr'])
  621. if res['ip_addr'] == res0['ip_addr']:
  622. raise Exception("Same IP address assigned to both clients")
  623. def test_nfc_p2p_tag_enable_disable(dev):
  624. """NFC tag enable/disable for P2P"""
  625. if "FAIL" in dev[0].request("WPS_NFC_TOKEN NDEF").rstrip():
  626. raise Exception("Failed to generate password token")
  627. if "OK" not in dev[0].request("P2P_SET nfc_tag 1"):
  628. raise Exception("Failed to enable NFC Tag for P2P static handover")
  629. if "OK" not in dev[0].request("P2P_SET nfc_tag 0"):
  630. raise Exception("Failed to disable NFC Tag for P2P static handover")
  631. dev[0].request("SET p2p_no_group_iface 0")
  632. if "OK" not in dev[0].request("P2P_SET nfc_tag 1"):
  633. raise Exception("Failed to enable NFC Tag for P2P static handover")
  634. if "OK" not in dev[0].request("P2P_SET nfc_tag 0"):
  635. raise Exception("Failed to disable NFC Tag for P2P static handover")
  636. if "OK" not in dev[0].request("P2P_SET nfc_tag 1"):
  637. raise Exception("Failed to enable NFC Tag for P2P static handover")
  638. if "OK" not in dev[0].request("P2P_SET nfc_tag 0"):
  639. raise Exception("Failed to disable NFC Tag for P2P static handover")