test_ap_roam.py 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. # Roaming 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. from remotehost import remote_compatible
  7. import time
  8. import logging
  9. logger = logging.getLogger()
  10. import hwsim_utils
  11. import hostapd
  12. from wpasupplicant import WpaSupplicant
  13. @remote_compatible
  14. def test_ap_roam_open(dev, apdev):
  15. """Roam between two open APs"""
  16. hapd0 = hostapd.add_ap(apdev[0], { "ssid": "test-open" })
  17. dev[0].connect("test-open", key_mgmt="NONE")
  18. hwsim_utils.test_connectivity(dev[0], hapd0)
  19. hapd1 = hostapd.add_ap(apdev[1], { "ssid": "test-open" })
  20. dev[0].scan(type="ONLY")
  21. dev[0].roam(apdev[1]['bssid'])
  22. hwsim_utils.test_connectivity(dev[0], hapd1)
  23. dev[0].roam(apdev[0]['bssid'])
  24. hwsim_utils.test_connectivity(dev[0], hapd0)
  25. @remote_compatible
  26. def test_ap_roam_open_failed(dev, apdev):
  27. """Roam failure due to rejected authentication"""
  28. hapd0 = hostapd.add_ap(apdev[0], { "ssid": "test-open" })
  29. dev[0].connect("test-open", key_mgmt="NONE", scan_freq="2412")
  30. hwsim_utils.test_connectivity(dev[0], hapd0)
  31. params = { "ssid": "test-open", "max_num_sta" : "0" }
  32. hapd1 = hostapd.add_ap(apdev[1], params)
  33. bssid = hapd1.own_addr()
  34. dev[0].scan_for_bss(bssid, freq=2412)
  35. dev[0].dump_monitor()
  36. if "OK" not in dev[0].request("ROAM " + bssid):
  37. raise Exception("ROAM failed")
  38. ev = dev[0].wait_event(["CTRL-EVENT-AUTH-REJECT"], 1)
  39. if not ev:
  40. raise Exception("CTRL-EVENT-AUTH-REJECT was not seen")
  41. dev[0].wait_connected(timeout=5)
  42. hwsim_utils.test_connectivity(dev[0], hapd0)
  43. @remote_compatible
  44. def test_ap_roam_wpa2_psk(dev, apdev):
  45. """Roam between two WPA2-PSK APs"""
  46. params = hostapd.wpa2_params(ssid="test-wpa2-psk", passphrase="12345678")
  47. hapd0 = hostapd.add_ap(apdev[0], params)
  48. dev[0].connect("test-wpa2-psk", psk="12345678")
  49. hwsim_utils.test_connectivity(dev[0], hapd0)
  50. hapd1 = hostapd.add_ap(apdev[1], params)
  51. dev[0].scan(type="ONLY")
  52. dev[0].roam(apdev[1]['bssid'])
  53. hwsim_utils.test_connectivity(dev[0], hapd1)
  54. dev[0].roam(apdev[0]['bssid'])
  55. hwsim_utils.test_connectivity(dev[0], hapd0)
  56. def get_blacklist(dev):
  57. return dev.request("BLACKLIST").splitlines()
  58. def test_ap_roam_with_reassoc_auth_timeout(dev, apdev, params):
  59. """Roam using reassoc between two APs and authentication times out"""
  60. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  61. wpas.interface_add("wlan5",
  62. drv_params="force_connect_cmd=1,force_bss_selection=1")
  63. params = hostapd.wpa2_params(ssid="test-wpa2-psk", passphrase="12345678")
  64. hapd0 = hostapd.add_ap(apdev[0], params)
  65. bssid0 = hapd0.own_addr()
  66. id = wpas.connect("test-wpa2-psk", psk="12345678", scan_freq="2412")
  67. hwsim_utils.test_connectivity(wpas, hapd0)
  68. hapd1 = hostapd.add_ap(apdev[1], params)
  69. bssid1 = hapd1.own_addr()
  70. wpas.scan_for_bss(bssid1, freq=2412)
  71. if "OK" not in wpas.request("SET_NETWORK " + str(id) + " bssid " + bssid1):
  72. raise Exception("SET_NETWORK failed")
  73. if "OK" not in wpas.request("SET ignore_auth_resp 1"):
  74. raise Exception("SET ignore_auth_resp failed")
  75. if "OK" not in wpas.request("REASSOCIATE"):
  76. raise Exception("REASSOCIATE failed")
  77. logger.info("Wait ~10s for auth timeout...")
  78. time.sleep(10)
  79. ev = wpas.wait_event(["CTRL-EVENT-SCAN-STARTED"], 12)
  80. if not ev:
  81. raise Exception("CTRL-EVENT-SCAN-STARTED not seen");
  82. b = get_blacklist(wpas)
  83. if bssid0 in b:
  84. raise Exception("Unexpected blacklist contents: " + str(b))
  85. def test_ap_roam_wpa2_psk_failed(dev, apdev, params):
  86. """Roam failure with WPA2-PSK AP due to wrong passphrase"""
  87. params = hostapd.wpa2_params(ssid="test-wpa2-psk", passphrase="12345678")
  88. hapd0 = hostapd.add_ap(apdev[0], params)
  89. id = dev[0].connect("test-wpa2-psk", psk="12345678", scan_freq="2412")
  90. hwsim_utils.test_connectivity(dev[0], hapd0)
  91. params['wpa_passphrase'] = "22345678"
  92. hapd1 = hostapd.add_ap(apdev[1], params)
  93. bssid = hapd1.own_addr()
  94. dev[0].scan_for_bss(bssid, freq=2412)
  95. dev[0].dump_monitor()
  96. if "OK" not in dev[0].request("ROAM " + bssid):
  97. raise Exception("ROAM failed")
  98. ev = dev[0].wait_event(["CTRL-EVENT-SSID-TEMP-DISABLED",
  99. "CTRL-EVENT-CONNECTED"], 5)
  100. if "CTRL-EVENT-CONNECTED" in ev:
  101. raise Exception("Got unexpected CTRL-EVENT-CONNECTED")
  102. if "CTRL-EVENT-SSID-TEMP-DISABLED" not in ev:
  103. raise Exception("CTRL-EVENT-SSID-TEMP-DISABLED not seen")
  104. if "OK" not in dev[0].request("SELECT_NETWORK id=" + str(id)):
  105. raise Exception("SELECT_NETWORK failed")
  106. ev = dev[0].wait_event(["CTRL-EVENT-SSID-REENABLED"], 3)
  107. if not ev:
  108. raise Exception("CTRL-EVENT-SSID-REENABLED not seen")
  109. dev[0].wait_connected(timeout=5)
  110. hwsim_utils.test_connectivity(dev[0], hapd0)
  111. @remote_compatible
  112. def test_ap_reassociation_to_same_bss(dev, apdev):
  113. """Reassociate to the same BSS"""
  114. hapd = hostapd.add_ap(apdev[0], { "ssid": "test-open" })
  115. dev[0].connect("test-open", key_mgmt="NONE")
  116. dev[0].request("REASSOCIATE")
  117. dev[0].wait_connected(timeout=10, error="Reassociation timed out")
  118. hwsim_utils.test_connectivity(dev[0], hapd)
  119. dev[0].request("REATTACH")
  120. dev[0].wait_connected(timeout=10, error="Reattach timed out")
  121. hwsim_utils.test_connectivity(dev[0], hapd)
  122. # Wait for previous scan results to expire to trigger new scan
  123. time.sleep(5)
  124. dev[0].request("REATTACH")
  125. dev[0].wait_connected(timeout=10, error="Reattach timed out")
  126. hwsim_utils.test_connectivity(dev[0], hapd)
  127. @remote_compatible
  128. def test_ap_roam_set_bssid(dev, apdev):
  129. """Roam control"""
  130. hostapd.add_ap(apdev[0], { "ssid": "test-open" })
  131. hostapd.add_ap(apdev[1], { "ssid": "test-open" })
  132. id = dev[0].connect("test-open", key_mgmt="NONE", bssid=apdev[1]['bssid'],
  133. scan_freq="2412")
  134. if dev[0].get_status_field('bssid') != apdev[1]['bssid']:
  135. raise Exception("Unexpected BSS")
  136. # for now, these are just verifying that the code path to indicate
  137. # within-ESS roaming changes can be executed; the actual results of those
  138. # operations are not currently verified (that would require a test driver
  139. # that does BSS selection)
  140. dev[0].set_network(id, "bssid", "")
  141. dev[0].set_network(id, "bssid", apdev[0]['bssid'])
  142. dev[0].set_network(id, "bssid", apdev[1]['bssid'])
  143. @remote_compatible
  144. def test_ap_roam_wpa2_psk_race(dev, apdev):
  145. """Roam between two WPA2-PSK APs and try to hit a disconnection race"""
  146. params = hostapd.wpa2_params(ssid="test-wpa2-psk", passphrase="12345678")
  147. hapd0 = hostapd.add_ap(apdev[0], params)
  148. dev[0].connect("test-wpa2-psk", psk="12345678", scan_freq="2412")
  149. hwsim_utils.test_connectivity(dev[0], hapd0)
  150. params['channel'] = '2'
  151. hapd1 = hostapd.add_ap(apdev[1], params)
  152. dev[0].scan_for_bss(apdev[1]['bssid'], freq=2417)
  153. dev[0].roam(apdev[1]['bssid'])
  154. hwsim_utils.test_connectivity(dev[0], hapd1)
  155. dev[0].roam(apdev[0]['bssid'])
  156. hwsim_utils.test_connectivity(dev[0], hapd0)
  157. # Wait at least two seconds to trigger the previous issue with the
  158. # disconnection callback.
  159. for i in range(3):
  160. time.sleep(0.8)
  161. hwsim_utils.test_connectivity(dev[0], hapd0)