test_ap_wps.py 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. #!/usr/bin/python
  2. #
  3. # WPS tests
  4. # Copyright (c) 2013, Jouni Malinen <j@w1.fi>
  5. #
  6. # This software may be distributed under the terms of the BSD license.
  7. # See README for more details.
  8. import time
  9. import subprocess
  10. import logging
  11. logger = logging.getLogger(__name__)
  12. import hwsim_utils
  13. import hostapd
  14. def test_ap_wps_init(dev, apdev):
  15. """Initial AP configuration with first WPS Enrollee"""
  16. ssid = "test-wps"
  17. hostapd.add_ap(apdev[0]['ifname'],
  18. { "ssid": ssid, "eap_server": "1", "wps_state": "1" })
  19. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  20. logger.info("WPS provisioning step")
  21. hapd.request("WPS_PBC")
  22. dev[0].request("SET ignore_old_scan_res 1")
  23. dev[0].dump_monitor()
  24. dev[0].request("WPS_PBC")
  25. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=15)
  26. if ev is None:
  27. raise Exception("Association with the AP timed out")
  28. status = dev[0].get_status()
  29. if status['wpa_state'] != 'COMPLETED' or status['bssid'] != apdev[0]['bssid']:
  30. raise Exception("Not fully connected")
  31. if status['ssid'] != ssid:
  32. raise Exception("Unexpected SSID")
  33. if status['pairwise_cipher'] != 'CCMP':
  34. raise Exception("Unexpected encryption configuration")
  35. if status['key_mgmt'] != 'WPA2-PSK':
  36. raise Exception("Unexpected key_mgmt")
  37. def test_ap_wps_conf(dev, apdev):
  38. """WPS PBC provisioning with configured AP"""
  39. ssid = "test-wps-conf"
  40. hostapd.add_ap(apdev[0]['ifname'],
  41. { "ssid": ssid, "eap_server": "1", "wps_state": "2",
  42. "wpa_passphrase": "12345678", "wpa": "2",
  43. "wpa_key_mgmt": "WPA-PSK", "rsn_pairwise": "CCMP"})
  44. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  45. logger.info("WPS provisioning step")
  46. hapd.request("WPS_PBC")
  47. dev[0].dump_monitor()
  48. dev[0].request("WPS_PBC")
  49. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=15)
  50. if ev is None:
  51. raise Exception("Association with the AP timed out")
  52. status = dev[0].get_status()
  53. if status['wpa_state'] != 'COMPLETED':
  54. raise Exception("Not fully connected")
  55. if status['bssid'] != apdev[0]['bssid']:
  56. raise Exception("Unexpected BSSID")
  57. if status['ssid'] != ssid:
  58. raise Exception("Unexpected SSID")
  59. if status['pairwise_cipher'] != 'CCMP' or status['group_cipher'] != 'CCMP':
  60. raise Exception("Unexpected encryption configuration")
  61. if status['key_mgmt'] != 'WPA2-PSK':
  62. raise Exception("Unexpected key_mgmt")
  63. def test_ap_wps_conf_pin(dev, apdev):
  64. """WPS PIN provisioning with configured AP"""
  65. ssid = "test-wps-conf-pin"
  66. hostapd.add_ap(apdev[0]['ifname'],
  67. { "ssid": ssid, "eap_server": "1", "wps_state": "2",
  68. "wpa_passphrase": "12345678", "wpa": "2",
  69. "wpa_key_mgmt": "WPA-PSK", "rsn_pairwise": "CCMP"})
  70. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  71. logger.info("WPS provisioning step")
  72. pin = dev[0].wps_read_pin()
  73. hapd.request("WPS_PIN any " + pin)
  74. dev[0].request("SET ignore_old_scan_res 1")
  75. dev[0].dump_monitor()
  76. dev[0].request("WPS_PIN any " + pin)
  77. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=15)
  78. if ev is None:
  79. raise Exception("Association with the AP timed out")
  80. status = dev[0].get_status()
  81. if status['wpa_state'] != 'COMPLETED' or status['bssid'] != apdev[0]['bssid']:
  82. raise Exception("Not fully connected")
  83. if status['ssid'] != ssid:
  84. raise Exception("Unexpected SSID")
  85. if status['pairwise_cipher'] != 'CCMP' or status['group_cipher'] != 'CCMP':
  86. raise Exception("Unexpected encryption configuration")
  87. if status['key_mgmt'] != 'WPA2-PSK':
  88. raise Exception("Unexpected key_mgmt")
  89. def test_ap_wps_reg_connect(dev, apdev):
  90. """WPS registrar using AP PIN to connect"""
  91. ssid = "test-wps-reg-ap-pin"
  92. appin = "12345670"
  93. hostapd.add_ap(apdev[0]['ifname'],
  94. { "ssid": ssid, "eap_server": "1", "wps_state": "2",
  95. "wpa_passphrase": "12345678", "wpa": "2",
  96. "wpa_key_mgmt": "WPA-PSK", "rsn_pairwise": "CCMP",
  97. "ap_pin": appin})
  98. logger.info("WPS provisioning step")
  99. dev[0].request("SET ignore_old_scan_res 1")
  100. dev[0].dump_monitor()
  101. dev[0].request("WPS_REG " + apdev[0]['bssid'] + " " + appin)
  102. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=15)
  103. if ev is None:
  104. raise Exception("Association with the AP timed out")
  105. status = dev[0].get_status()
  106. if status['wpa_state'] != 'COMPLETED' or status['bssid'] != apdev[0]['bssid']:
  107. raise Exception("Not fully connected")
  108. if status['ssid'] != ssid:
  109. raise Exception("Unexpected SSID")
  110. if status['pairwise_cipher'] != 'CCMP' or status['group_cipher'] != 'CCMP':
  111. raise Exception("Unexpected encryption configuration")
  112. if status['key_mgmt'] != 'WPA2-PSK':
  113. raise Exception("Unexpected key_mgmt")
  114. def test_ap_wps_reg_config(dev, apdev):
  115. """WPS registrar configuring and AP using AP PIN"""
  116. ssid = "test-wps-init-ap-pin"
  117. appin = "12345670"
  118. hostapd.add_ap(apdev[0]['ifname'],
  119. { "ssid": ssid, "eap_server": "1", "wps_state": "2",
  120. "ap_pin": appin})
  121. logger.info("WPS configuration step")
  122. dev[0].request("SET ignore_old_scan_res 1")
  123. dev[0].dump_monitor()
  124. new_ssid = "wps-new-ssid"
  125. new_passphrase = "1234567890"
  126. dev[0].request("WPS_REG " + apdev[0]['bssid'] + " " + appin + " " + new_ssid.encode("hex") + " WPA2PSK CCMP " + new_passphrase.encode("hex"))
  127. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=15)
  128. if ev is None:
  129. raise Exception("Association with the AP timed out")
  130. status = dev[0].get_status()
  131. if status['wpa_state'] != 'COMPLETED' or status['bssid'] != apdev[0]['bssid']:
  132. raise Exception("Not fully connected")
  133. if status['ssid'] != new_ssid:
  134. raise Exception("Unexpected SSID")
  135. if status['pairwise_cipher'] != 'CCMP' or status['group_cipher'] != 'CCMP':
  136. raise Exception("Unexpected encryption configuration")
  137. if status['key_mgmt'] != 'WPA2-PSK':
  138. raise Exception("Unexpected key_mgmt")
  139. def test_ap_wps_pbc_overlap_2ap(dev, apdev):
  140. """WPS PBC session overlap with two active APs"""
  141. hostapd.add_ap(apdev[0]['ifname'],
  142. { "ssid": "wps1", "eap_server": "1", "wps_state": "2",
  143. "wpa_passphrase": "12345678", "wpa": "2",
  144. "wpa_key_mgmt": "WPA-PSK", "rsn_pairwise": "CCMP",
  145. "wps_independent": "1"})
  146. hostapd.add_ap(apdev[1]['ifname'],
  147. { "ssid": "wps2", "eap_server": "1", "wps_state": "2",
  148. "wpa_passphrase": "123456789", "wpa": "2",
  149. "wpa_key_mgmt": "WPA-PSK", "rsn_pairwise": "CCMP",
  150. "wps_independent": "1"})
  151. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  152. hapd.request("WPS_PBC")
  153. hapd2 = hostapd.Hostapd(apdev[1]['ifname'])
  154. hapd2.request("WPS_PBC")
  155. logger.info("WPS provisioning step")
  156. dev[0].dump_monitor()
  157. dev[0].request("WPS_PBC")
  158. ev = dev[0].wait_event(["WPS-OVERLAP-DETECTED"], timeout=15)
  159. if ev is None:
  160. raise Exception("PBC session overlap not detected")
  161. def test_ap_wps_pbc_overlap_2sta(dev, apdev):
  162. """WPS PBC session overlap with two active STAs"""
  163. ssid = "test-wps-pbc-overlap"
  164. hostapd.add_ap(apdev[0]['ifname'],
  165. { "ssid": ssid, "eap_server": "1", "wps_state": "2",
  166. "wpa_passphrase": "12345678", "wpa": "2",
  167. "wpa_key_mgmt": "WPA-PSK", "rsn_pairwise": "CCMP"})
  168. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  169. logger.info("WPS provisioning step")
  170. hapd.request("WPS_PBC")
  171. dev[0].request("SET ignore_old_scan_res 1")
  172. dev[1].request("SET ignore_old_scan_res 1")
  173. dev[0].dump_monitor()
  174. dev[1].dump_monitor()
  175. dev[0].request("WPS_PBC")
  176. dev[1].request("WPS_PBC")
  177. ev = dev[0].wait_event(["WPS-M2D"], timeout=15)
  178. if ev is None:
  179. raise Exception("PBC session overlap not detected (dev0)")
  180. if "config_error=12" not in ev:
  181. raise Exception("PBC session overlap not correctly reported (dev0)")
  182. ev = dev[1].wait_event(["WPS-M2D"], timeout=15)
  183. if ev is None:
  184. raise Exception("PBC session overlap not detected (dev1)")
  185. if "config_error=12" not in ev:
  186. raise Exception("PBC session overlap not correctly reported (dev1)")