test_nfc_wps.py 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. # WPS+NFC tests
  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 hostapd
  12. def check_wpa2_connection(sta, ap, hapd, ssid, mixed=False):
  13. status = sta.get_status()
  14. if status['wpa_state'] != 'COMPLETED':
  15. raise Exception("Not fully connected")
  16. if status['bssid'] != ap['bssid']:
  17. raise Exception("Unexpected BSSID")
  18. if status['ssid'] != ssid:
  19. raise Exception("Unexpected SSID")
  20. if status['pairwise_cipher'] != 'CCMP':
  21. raise Exception("Unexpected encryption configuration")
  22. if status['group_cipher'] != 'CCMP' and not mixed:
  23. raise Exception("Unexpected encryption configuration")
  24. if status['key_mgmt'] != 'WPA2-PSK':
  25. raise Exception("Unexpected key_mgmt")
  26. hwsim_utils.test_connectivity(sta, hapd)
  27. def ap_wps_params(ssid):
  28. return { "ssid": ssid, "eap_server": "1", "wps_state": "2",
  29. "wpa_passphrase": "12345678", "wpa": "2",
  30. "wpa_key_mgmt": "WPA-PSK", "rsn_pairwise": "CCMP"}
  31. def test_nfc_wps_password_token_sta(dev, apdev):
  32. """NFC tag with password token on the station/Enrollee"""
  33. ssid = "test-wps-nfc-pw-token-conf"
  34. params = ap_wps_params(ssid)
  35. hostapd.add_ap(apdev[0]['ifname'], params)
  36. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  37. logger.info("WPS provisioning step using password token from station")
  38. pw = dev[0].request("WPS_NFC_TOKEN NDEF").rstrip()
  39. if "FAIL" in pw:
  40. raise Exception("Failed to generate password token")
  41. res = hapd.request("WPS_NFC_TAG_READ " + pw)
  42. if "FAIL" in res:
  43. raise Exception("Failed to provide NFC tag contents to hostapd")
  44. dev[0].dump_monitor()
  45. res = dev[0].request("WPS_NFC")
  46. if "FAIL" in res:
  47. raise Exception("Failed to start Enrollee using NFC password token")
  48. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=30)
  49. if ev is None:
  50. raise Exception("Association with the AP timed out")
  51. check_wpa2_connection(dev[0], apdev[0], hapd, ssid)
  52. def test_nfc_wps_config_token(dev, apdev):
  53. """NFC tag with configuration token from AP"""
  54. ssid = "test-wps-nfc-conf-token"
  55. params = ap_wps_params(ssid)
  56. hostapd.add_ap(apdev[0]['ifname'], params)
  57. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  58. logger.info("NFC configuration token from AP to station")
  59. conf = hapd.request("WPS_NFC_CONFIG_TOKEN NDEF").rstrip()
  60. if "FAIL" in conf:
  61. raise Exception("Failed to generate configuration token")
  62. dev[0].dump_monitor()
  63. res = dev[0].request("WPS_NFC_TAG_READ " + conf)
  64. if "FAIL" in res:
  65. raise Exception("Failed to provide NFC tag contents to wpa_supplicant")
  66. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=15)
  67. if ev is None:
  68. raise Exception("Association with the AP timed out")
  69. check_wpa2_connection(dev[0], apdev[0], hapd, ssid)
  70. def test_nfc_wps_config_token_init(dev, apdev):
  71. """NFC tag with configuration token from AP with auto configuration"""
  72. ssid = "test-wps-nfc-conf-token-init"
  73. hostapd.add_ap(apdev[0]['ifname'],
  74. { "ssid": ssid, "eap_server": "1", "wps_state": "1" })
  75. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  76. logger.info("NFC configuration token from AP to station")
  77. conf = hapd.request("WPS_NFC_CONFIG_TOKEN NDEF").rstrip()
  78. if "FAIL" in conf:
  79. raise Exception("Failed to generate configuration token")
  80. dev[0].dump_monitor()
  81. res = dev[0].request("WPS_NFC_TAG_READ " + conf)
  82. if "FAIL" in res:
  83. raise Exception("Failed to provide NFC tag contents to wpa_supplicant")
  84. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=15)
  85. if ev is None:
  86. raise Exception("Association with the AP timed out")
  87. check_wpa2_connection(dev[0], apdev[0], hapd, ssid, mixed=True)
  88. def test_nfc_wps_password_token_sta_init(dev, apdev):
  89. """Initial AP configuration with first WPS NFC Enrollee"""
  90. ssid = "test-wps-nfc-pw-token-init"
  91. hostapd.add_ap(apdev[0]['ifname'],
  92. { "ssid": ssid, "eap_server": "1", "wps_state": "1" })
  93. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  94. logger.info("WPS provisioning step using password token from station")
  95. pw = dev[0].request("WPS_NFC_TOKEN NDEF").rstrip()
  96. if "FAIL" in pw:
  97. raise Exception("Failed to generate password token")
  98. res = hapd.request("WPS_NFC_TAG_READ " + pw)
  99. if "FAIL" in res:
  100. raise Exception("Failed to provide NFC tag contents to hostapd")
  101. dev[0].dump_monitor()
  102. res = dev[0].request("WPS_NFC")
  103. if "FAIL" in res:
  104. raise Exception("Failed to start Enrollee using NFC password token")
  105. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=30)
  106. if ev is None:
  107. raise Exception("Association with the AP timed out")
  108. check_wpa2_connection(dev[0], apdev[0], hapd, ssid, mixed=True)
  109. def test_nfc_wps_password_token_ap(dev, apdev):
  110. """WPS registrar configuring an AP using AP password token"""
  111. ssid = "test-wps-nfc-pw-token-init"
  112. hostapd.add_ap(apdev[0]['ifname'],
  113. { "ssid": ssid, "eap_server": "1", "wps_state": "1" })
  114. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  115. logger.info("WPS configuration step")
  116. pw = hapd.request("WPS_NFC_TOKEN NDEF").rstrip()
  117. if "FAIL" in pw:
  118. raise Exception("Failed to generate password token")
  119. res = hapd.request("WPS_NFC_TOKEN enable")
  120. if "FAIL" in pw:
  121. raise Exception("Failed to enable AP password token")
  122. res = dev[0].request("WPS_NFC_TAG_READ " + pw)
  123. if "FAIL" in res:
  124. raise Exception("Failed to provide NFC tag contents to wpa_supplicant")
  125. dev[0].dump_monitor()
  126. new_ssid = "test-wps-nfc-pw-token-new-ssid"
  127. new_passphrase = "1234567890"
  128. res = dev[0].request("WPS_REG " + apdev[0]['bssid'] + " nfc-pw " + new_ssid.encode("hex") + " WPA2PSK CCMP " + new_passphrase.encode("hex"))
  129. if "FAIL" in res:
  130. raise Exception("Failed to start Registrar using NFC password token")
  131. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=30)
  132. if ev is None:
  133. raise Exception("Association with the AP timed out")
  134. check_wpa2_connection(dev[0], apdev[0], hapd, new_ssid, mixed=True)
  135. if "FAIL" in hapd.request("WPS_NFC_TOKEN disable"):
  136. raise Exception("Failed to disable AP password token")
  137. if "FAIL" in hapd.request("WPS_NFC_TOKEN WPS"):
  138. raise Exception("Unexpected WPS_NFC_TOKEN WPS failure")
  139. def test_nfc_wps_handover_init(dev, apdev):
  140. """Connect to WPS AP with NFC connection handover and move to configured state"""
  141. dev[0].request("SET ignore_old_scan_res 1")
  142. ssid = "test-wps-nfc-handover-init"
  143. hostapd.add_ap(apdev[0]['ifname'],
  144. { "ssid": ssid, "eap_server": "1", "wps_state": "1" })
  145. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  146. logger.info("NFC connection handover")
  147. req = dev[0].request("NFC_GET_HANDOVER_REQ NDEF WPS-CR").rstrip()
  148. if "FAIL" in req:
  149. raise Exception("Failed to generate NFC connection handover request")
  150. sel = hapd.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR").rstrip()
  151. if "FAIL" in sel:
  152. raise Exception("Failed to generate NFC connection handover select")
  153. res = hapd.request("NFC_REPORT_HANDOVER RESP WPS " + req + " " + sel)
  154. if "FAIL" in res:
  155. raise Exception("Failed to report NFC connection handover to to hostapd")
  156. dev[0].dump_monitor()
  157. res = dev[0].request("NFC_REPORT_HANDOVER INIT WPS " + req + " " + sel)
  158. if "FAIL" in res:
  159. raise Exception("Failed to report NFC connection handover to to wpa_supplicant")
  160. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=15)
  161. if ev is None:
  162. raise Exception("Association with the AP timed out")
  163. check_wpa2_connection(dev[0], apdev[0], hapd, ssid, mixed=True)
  164. def test_nfc_wps_handover_errors(dev, apdev):
  165. """WPS AP NFC handover report error cases"""
  166. ssid = "test-wps-nfc-handover"
  167. hostapd.add_ap(apdev[0]['ifname'],
  168. { "ssid": ssid, "eap_server": "1", "wps_state": "1" })
  169. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  170. sel = hapd.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR").rstrip()
  171. if "FAIL" in sel:
  172. raise Exception("Failed to generate NFC connection handover select")
  173. if "FAIL" not in hapd.request("NFC_REPORT_HANDOVER "):
  174. raise Exception("Unexpected handover report success")
  175. if "FAIL" not in hapd.request("NFC_REPORT_HANDOVER RESP"):
  176. raise Exception("Unexpected handover report success")
  177. if "FAIL" not in hapd.request("NFC_REPORT_HANDOVER RESP WPS"):
  178. raise Exception("Unexpected handover report success")
  179. if "FAIL" not in hapd.request("NFC_REPORT_HANDOVER RESP WPS 001122"):
  180. raise Exception("Unexpected handover report success")
  181. if "FAIL" not in hapd.request("NFC_REPORT_HANDOVER RESP WPS 001122 00"):
  182. raise Exception("Unexpected handover report success")
  183. if "FAIL" not in hapd.request("NFC_REPORT_HANDOVER RESP WPS 0 00"):
  184. raise Exception("Unexpected handover report success")
  185. if "FAIL" not in hapd.request("NFC_REPORT_HANDOVER RESP WPS 001122 0"):
  186. raise Exception("Unexpected handover report success")
  187. if "FAIL" not in hapd.request("NFC_REPORT_HANDOVER RESP WPS 00q122 001122"):
  188. raise Exception("Unexpected handover report success")
  189. if "FAIL" not in hapd.request("NFC_REPORT_HANDOVER RESP WPS 001122 001q22"):
  190. raise Exception("Unexpected handover report success")
  191. if "FAIL" not in hapd.request("NFC_REPORT_HANDOVER RESP FOO 001122 00"):
  192. raise Exception("Unexpected handover report success")
  193. def test_nfc_wps_handover(dev, apdev):
  194. """Connect to WPS AP with NFC connection handover"""
  195. ssid = "test-wps-nfc-handover"
  196. params = ap_wps_params(ssid)
  197. hostapd.add_ap(apdev[0]['ifname'], params)
  198. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  199. logger.info("NFC connection handover")
  200. req = dev[0].request("NFC_GET_HANDOVER_REQ NDEF WPS-CR").rstrip()
  201. if "FAIL" in req:
  202. raise Exception("Failed to generate NFC connection handover request")
  203. sel = hapd.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR").rstrip()
  204. if "FAIL" in sel:
  205. raise Exception("Failed to generate NFC connection handover select")
  206. res = hapd.request("NFC_REPORT_HANDOVER RESP WPS " + req + " " + sel)
  207. if "FAIL" in res:
  208. raise Exception("Failed to report NFC connection handover to to hostapd")
  209. dev[0].dump_monitor()
  210. res = dev[0].request("NFC_REPORT_HANDOVER INIT WPS " + req + " " + sel)
  211. if "FAIL" in res:
  212. raise Exception("Failed to report NFC connection handover to to wpa_supplicant")
  213. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=30)
  214. if ev is None:
  215. raise Exception("Association with the AP timed out")
  216. check_wpa2_connection(dev[0], apdev[0], hapd, ssid)
  217. def test_nfc_wps_handover_5ghz(dev, apdev):
  218. """Connect to WPS AP with NFC connection handover on 5 GHz band"""
  219. try:
  220. ssid = "test-wps-nfc-handover"
  221. params = ap_wps_params(ssid)
  222. params["country_code"] = "FI"
  223. params["hw_mode"] = "a"
  224. params["channel"] = "36"
  225. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  226. logger.info("NFC connection handover")
  227. req = dev[0].request("NFC_GET_HANDOVER_REQ NDEF WPS-CR").rstrip()
  228. if "FAIL" in req:
  229. raise Exception("Failed to generate NFC connection handover request")
  230. sel = hapd.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR").rstrip()
  231. if "FAIL" in sel:
  232. raise Exception("Failed to generate NFC connection handover select")
  233. res = hapd.request("NFC_REPORT_HANDOVER RESP WPS " + req + " " + sel)
  234. if "FAIL" in res:
  235. raise Exception("Failed to report NFC connection handover to to hostapd")
  236. dev[0].dump_monitor()
  237. res = dev[0].request("NFC_REPORT_HANDOVER INIT WPS " + req + " " + sel)
  238. if "FAIL" in res:
  239. raise Exception("Failed to report NFC connection handover to to wpa_supplicant")
  240. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=30)
  241. if ev is None:
  242. raise Exception("Association with the AP timed out")
  243. check_wpa2_connection(dev[0], apdev[0], hapd, ssid)
  244. finally:
  245. subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])
  246. def test_nfc_wps_handover_chan14(dev, apdev):
  247. """Connect to WPS AP with NFC connection handover on channel 14"""
  248. try:
  249. ssid = "test-wps-nfc-handover"
  250. params = ap_wps_params(ssid)
  251. params["country_code"] = "JP"
  252. params["hw_mode"] = "b"
  253. params["channel"] = "14"
  254. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  255. logger.info("NFC connection handover")
  256. req = dev[0].request("NFC_GET_HANDOVER_REQ NDEF WPS-CR").rstrip()
  257. if "FAIL" in req:
  258. raise Exception("Failed to generate NFC connection handover request")
  259. sel = hapd.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR").rstrip()
  260. if "FAIL" in sel:
  261. raise Exception("Failed to generate NFC connection handover select")
  262. res = hapd.request("NFC_REPORT_HANDOVER RESP WPS " + req + " " + sel)
  263. if "FAIL" in res:
  264. raise Exception("Failed to report NFC connection handover to to hostapd")
  265. dev[0].dump_monitor()
  266. res = dev[0].request("NFC_REPORT_HANDOVER INIT WPS " + req + " " + sel)
  267. if "FAIL" in res:
  268. raise Exception("Failed to report NFC connection handover to to wpa_supplicant")
  269. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=30)
  270. if ev is None:
  271. raise Exception("Association with the AP timed out")
  272. check_wpa2_connection(dev[0], apdev[0], hapd, ssid)
  273. finally:
  274. subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])
  275. def test_nfc_wps_handover_with_pw_token_set(dev, apdev):
  276. """Connect to WPS AP with NFC connection handover (wps_nfc_* set)"""
  277. ssid = "test-wps-nfc-handover2"
  278. params = ap_wps_params(ssid)
  279. hostapd.add_ap(apdev[0]['ifname'], params)
  280. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  281. # enable a password token (which won't be used in this test case)
  282. pw = hapd.request("WPS_NFC_TOKEN NDEF").rstrip()
  283. if "FAIL" in pw:
  284. raise Exception("Failed to generate password token")
  285. res = hapd.request("WPS_NFC_TOKEN enable")
  286. if "FAIL" in pw:
  287. raise Exception("Failed to enable AP password token")
  288. logger.info("NFC connection handover")
  289. req = dev[0].request("NFC_GET_HANDOVER_REQ NDEF WPS-CR").rstrip()
  290. if "FAIL" in req:
  291. raise Exception("Failed to generate NFC connection handover request")
  292. sel = hapd.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR").rstrip()
  293. if "FAIL" in sel:
  294. raise Exception("Failed to generate NFC connection handover select")
  295. res = hapd.request("NFC_REPORT_HANDOVER RESP WPS " + req + " " + sel)
  296. if "FAIL" in res:
  297. raise Exception("Failed to report NFC connection handover to to hostapd")
  298. dev[0].dump_monitor()
  299. res = dev[0].request("NFC_REPORT_HANDOVER INIT WPS " + req + " " + sel)
  300. if "FAIL" in res:
  301. raise Exception("Failed to report NFC connection handover to to wpa_supplicant")
  302. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=15)
  303. if ev is None:
  304. raise Exception("Association with the AP timed out")
  305. check_wpa2_connection(dev[0], apdev[0], hapd, ssid)
  306. def test_nfc_wps_handover_pk_hash_mismatch_sta(dev, apdev):
  307. """WPS NFC connection handover with invalid pkhash from station (negative)"""
  308. ssid = "wps-nfc-handover-pkhash-sta"
  309. if "FAIL" in dev[0].request("SET wps_corrupt_pkhash 1"):
  310. raise Exception("Could not enable wps_corrupt_pkhash")
  311. params = ap_wps_params(ssid)
  312. hostapd.add_ap(apdev[0]['ifname'], params)
  313. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  314. logger.info("NFC connection handover")
  315. req = dev[0].request("NFC_GET_HANDOVER_REQ NDEF WPS-CR").rstrip()
  316. if "FAIL" in req:
  317. raise Exception("Failed to generate NFC connection handover request")
  318. sel = hapd.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR").rstrip()
  319. if "FAIL" in sel:
  320. raise Exception("Failed to generate NFC connection handover select")
  321. res = hapd.request("NFC_REPORT_HANDOVER RESP WPS " + req + " " + sel)
  322. if "FAIL" in res:
  323. raise Exception("Failed to report NFC connection handover to to hostapd")
  324. dev[0].dump_monitor()
  325. res = dev[0].request("NFC_REPORT_HANDOVER INIT WPS " + req + " " + sel)
  326. if "FAIL" in res:
  327. raise Exception("Failed to report NFC connection handover to to wpa_supplicant")
  328. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED", "WPS-FAIL"], timeout=15)
  329. if ev is None:
  330. raise Exception("Timed out")
  331. if "WPS-FAIL" not in ev:
  332. raise Exception("Public key hash mismatch not detected")
  333. def test_nfc_wps_handover_pk_hash_mismatch_ap(dev, apdev):
  334. """WPS NFC connection handover with invalid pkhash from AP (negative)"""
  335. ssid = "wps-nfc-handover-pkhash-ap"
  336. params = ap_wps_params(ssid)
  337. hostapd.add_ap(apdev[0]['ifname'], params)
  338. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  339. if "FAIL" in hapd.request("SET wps_corrupt_pkhash 1"):
  340. raise Exception("Could not enable wps_corrupt_pkhash")
  341. logger.info("NFC connection handover")
  342. req = dev[0].request("NFC_GET_HANDOVER_REQ NDEF WPS-CR").rstrip()
  343. if "FAIL" in req:
  344. raise Exception("Failed to generate NFC connection handover request")
  345. sel = hapd.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR").rstrip()
  346. if "FAIL" in sel:
  347. raise Exception("Failed to generate NFC connection handover select")
  348. res = hapd.request("NFC_REPORT_HANDOVER RESP WPS " + req + " " + sel)
  349. if "FAIL" in res:
  350. raise Exception("Failed to report NFC connection handover to to hostapd")
  351. dev[0].dump_monitor()
  352. res = dev[0].request("NFC_REPORT_HANDOVER INIT WPS " + req + " " + sel)
  353. if "FAIL" in res:
  354. raise Exception("Failed to report NFC connection handover to to wpa_supplicant")
  355. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED", "WPS-FAIL"], timeout=15)
  356. if ev is None:
  357. raise Exception("Timed out")
  358. if "WPS-FAIL" not in ev:
  359. raise Exception("Public key hash mismatch not detected")
  360. def start_ap_er(er, ap, ssid):
  361. ap_pin = "12345670"
  362. ap_uuid = "27ea801a-9e5c-4e73-bd82-f89cbcd10d7e"
  363. hostapd.add_ap(ap['ifname'],
  364. { "ssid": ssid, "eap_server": "1", "wps_state": "2",
  365. "wpa_passphrase": "12345678", "wpa": "2",
  366. "wpa_key_mgmt": "WPA-PSK", "rsn_pairwise": "CCMP",
  367. "device_name": "Wireless AP", "manufacturer": "Company",
  368. "model_name": "WAP", "model_number": "123",
  369. "serial_number": "12345", "device_type": "6-0050F204-1",
  370. "os_version": "01020300",
  371. "config_methods": "label push_button",
  372. "ap_pin": ap_pin, "uuid": ap_uuid, "upnp_iface": "lo"})
  373. logger.info("Learn AP configuration")
  374. er.dump_monitor()
  375. er.request("SET ignore_old_scan_res 1")
  376. er.wps_reg(ap['bssid'], ap_pin)
  377. logger.info("Start ER")
  378. er.request("WPS_ER_STOP")
  379. time.sleep(1)
  380. er.request("WPS_ER_START ifname=lo")
  381. ev = er.wait_event(["WPS-ER-AP-ADD"], timeout=15)
  382. if ev is None:
  383. raise Exception("AP discovery timed out")
  384. if ap_uuid not in ev:
  385. raise Exception("Expected AP UUID not found")
  386. logger.info("Use learned network configuration on ER")
  387. er.request("WPS_ER_SET_CONFIG " + ap_uuid + " 0")
  388. def test_nfc_wps_er_pw_token(dev, apdev):
  389. """WPS NFC password token from Enrollee to ER"""
  390. ssid = "wps-nfc-er-pw-token"
  391. start_ap_er(dev[0], apdev[0], ssid)
  392. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  393. logger.info("WPS provisioning step using password token from station")
  394. dev[1].request("SET ignore_old_scan_res 1")
  395. pw = dev[1].request("WPS_NFC_TOKEN NDEF").rstrip()
  396. if "FAIL" in pw:
  397. raise Exception("Failed to generate password token")
  398. res = dev[0].request("WPS_NFC_TAG_READ " + pw)
  399. if "FAIL" in res:
  400. raise Exception("Failed to provide NFC tag contents to WPS ER")
  401. dev[0].dump_monitor()
  402. res = dev[1].request("WPS_NFC")
  403. if "FAIL" in res:
  404. raise Exception("Failed to start Enrollee using NFC password token")
  405. ev = dev[0].wait_event(["WPS-SUCCESS"], timeout=15)
  406. if ev is None:
  407. raise Exception("WPS ER did not report success")
  408. ev = dev[1].wait_event(["CTRL-EVENT-CONNECTED"], timeout=15)
  409. if ev is None:
  410. raise Exception("Association with the AP timed out")
  411. check_wpa2_connection(dev[1], apdev[0], hapd, ssid)
  412. def test_nfc_wps_er_config_token(dev, apdev):
  413. """WPS NFC configuration token from ER to Enrollee"""
  414. ssid = "wps-nfc-er-config-token"
  415. start_ap_er(dev[0], apdev[0], ssid)
  416. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  417. logger.info("WPS provisioning step using configuration token from ER")
  418. conf = dev[0].request("WPS_ER_NFC_CONFIG_TOKEN NDEF " + apdev[0]['bssid']).rstrip()
  419. if "FAIL" in conf:
  420. raise Exception("Failed to generate configugration token")
  421. dev[1].request("SET ignore_old_scan_res 1")
  422. res = dev[1].request("WPS_NFC_TAG_READ " + conf)
  423. if "FAIL" in res:
  424. raise Exception("Failed to provide NFC tag contents to wpa_supplicant")
  425. ev = dev[1].wait_event(["CTRL-EVENT-CONNECTED"], timeout=15)
  426. if ev is None:
  427. raise Exception("Association with the AP timed out")
  428. check_wpa2_connection(dev[1], apdev[0], hapd, ssid)
  429. def test_nfc_wps_er_handover(dev, apdev):
  430. """WPS NFC connection handover between Enrollee and ER"""
  431. ssid = "wps-nfc-er-handover"
  432. start_ap_er(dev[0], apdev[0], ssid)
  433. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  434. logger.info("WPS provisioning step using connection handover")
  435. req = dev[1].request("NFC_GET_HANDOVER_REQ NDEF WPS-CR").rstrip()
  436. if "FAIL" in req:
  437. raise Exception("Failed to generate NFC connection handover request")
  438. sel = dev[0].request("NFC_GET_HANDOVER_SEL NDEF WPS-CR " + apdev[0]['bssid']).rstrip()
  439. if "FAIL" in sel:
  440. raise Exception("Failed to generate NFC connection handover select")
  441. res = dev[0].request("NFC_REPORT_HANDOVER RESP WPS " + req + " " + sel)
  442. if "FAIL" in res:
  443. raise Exception("Failed to report NFC connection handover to to hostapd")
  444. dev[1].dump_monitor()
  445. res = dev[1].request("NFC_REPORT_HANDOVER INIT WPS " + req + " " + sel)
  446. if "FAIL" in res:
  447. raise Exception("Failed to report NFC connection handover to to wpa_supplicant")
  448. ev = dev[1].wait_event(["CTRL-EVENT-CONNECTED"], timeout=15)
  449. if ev is None:
  450. raise Exception("Association with the AP timed out")
  451. check_wpa2_connection(dev[1], apdev[0], hapd, ssid)
  452. def test_nfc_wps_er_handover_pk_hash_mismatch_sta(dev, apdev):
  453. """WPS NFC connection handover with invalid pkhash from station to ER (negative)"""
  454. ssid = "wps-nfc-er-handover-pkhash-sta"
  455. start_ap_er(dev[0], apdev[0], ssid)
  456. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  457. logger.info("WPS provisioning step using connection handover")
  458. if "FAIL" in dev[1].request("SET wps_corrupt_pkhash 1"):
  459. raise Exception("Could not enable wps_corrupt_pkhash")
  460. dev[1].request("SET ignore_old_scan_res 1")
  461. req = dev[1].request("NFC_GET_HANDOVER_REQ NDEF WPS-CR").rstrip()
  462. if "FAIL" in req:
  463. raise Exception("Failed to generate NFC connection handover request")
  464. sel = dev[0].request("NFC_GET_HANDOVER_SEL NDEF WPS-CR " + apdev[0]['bssid']).rstrip()
  465. if "FAIL" in sel:
  466. raise Exception("Failed to generate NFC connection handover select")
  467. res = dev[0].request("NFC_REPORT_HANDOVER RESP WPS " + req + " " + sel)
  468. if "FAIL" in res:
  469. raise Exception("Failed to report NFC connection handover to to hostapd")
  470. dev[1].dump_monitor()
  471. res = dev[1].request("NFC_REPORT_HANDOVER INIT WPS " + req + " " + sel)
  472. if "FAIL" in res:
  473. raise Exception("Failed to report NFC connection handover to to wpa_supplicant")
  474. ev = dev[1].wait_event(["CTRL-EVENT-CONNECTED", "WPS-FAIL"], timeout=15)
  475. if ev is None:
  476. raise Exception("Timed out")
  477. if "WPS-FAIL" not in ev:
  478. raise Exception("Public key hash mismatch not detected")
  479. def test_nfc_wps_er_handover_pk_hash_mismatch_er(dev, apdev):
  480. """WPS NFC connection handover with invalid pkhash from ER to station (negative)"""
  481. ssid = "wps-nfc-er-handover-pkhash-er"
  482. start_ap_er(dev[0], apdev[0], ssid)
  483. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  484. logger.info("WPS provisioning step using connection handover")
  485. if "FAIL" in dev[0].request("SET wps_corrupt_pkhash 1"):
  486. raise Exception("Could not enable wps_corrupt_pkhash")
  487. dev[1].request("SET ignore_old_scan_res 1")
  488. req = dev[1].request("NFC_GET_HANDOVER_REQ NDEF WPS-CR").rstrip()
  489. if "FAIL" in req:
  490. raise Exception("Failed to generate NFC connection handover request")
  491. sel = dev[0].request("NFC_GET_HANDOVER_SEL NDEF WPS-CR " + apdev[0]['bssid']).rstrip()
  492. if "FAIL" in sel:
  493. raise Exception("Failed to generate NFC connection handover select")
  494. res = dev[0].request("NFC_REPORT_HANDOVER RESP WPS " + req + " " + sel)
  495. if "FAIL" in res:
  496. raise Exception("Failed to report NFC connection handover to to hostapd")
  497. dev[1].dump_monitor()
  498. res = dev[1].request("NFC_REPORT_HANDOVER INIT WPS " + req + " " + sel)
  499. if "FAIL" in res:
  500. raise Exception("Failed to report NFC connection handover to to wpa_supplicant")
  501. ev = dev[1].wait_event(["CTRL-EVENT-CONNECTED", "WPS-FAIL"], timeout=15)
  502. if ev is None:
  503. raise Exception("Timed out")
  504. if "WPS-FAIL" not in ev:
  505. raise Exception("Public key hash mismatch not detected")