test_ap_dynamic.py 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. #!/usr/bin/python
  2. #
  3. # Test cases for dynamic BSS changes with hostapd
  4. # Copyright (c) 2013, Qualcomm Atheros, Inc.
  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()
  12. import hwsim_utils
  13. import hostapd
  14. def test_ap_change_ssid(dev, apdev):
  15. """Dynamic SSID change with hostapd and WPA2-PSK"""
  16. params = hostapd.wpa2_params(ssid="test-wpa2-psk-start",
  17. passphrase="12345678")
  18. hostapd.add_ap(apdev[0]['ifname'], params)
  19. id = dev[0].connect("test-wpa2-psk-start", psk="12345678",
  20. scan_freq="2412")
  21. dev[0].request("DISCONNECT")
  22. logger.info("Change SSID dynamically")
  23. hapd = hostapd.Hostapd(apdev[0]['ifname'])
  24. res = hapd.request("SET ssid test-wpa2-psk-new")
  25. if "OK" not in res:
  26. raise Exception("SET command failed")
  27. res = hapd.request("RELOAD")
  28. if "OK" not in res:
  29. raise Exception("RELOAD command failed")
  30. dev[0].set_network_quoted(id, "ssid", "test-wpa2-psk-new")
  31. dev[0].connect_network(id)
  32. def multi_check(dev, check0, check1, check2):
  33. for d in dev:
  34. d.request("BSS_FLUSH 0")
  35. d.dump_monitor()
  36. id0 = dev[0].connect("bss-1", key_mgmt="NONE", scan_freq="2412",
  37. wait_connect=check0)
  38. id1 = dev[1].connect("bss-2", key_mgmt="NONE", scan_freq="2412",
  39. wait_connect=check1)
  40. id2 = dev[2].connect("bss-3", key_mgmt="NONE", scan_freq="2412",
  41. wait_connect=check2)
  42. if not check0:
  43. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=0.2)
  44. if ev:
  45. raise Exception("Unexpected connection")
  46. if not check1:
  47. ev = dev[1].wait_event(["CTRL-EVENT-CONNECTED"], timeout=0.2)
  48. if ev:
  49. raise Exception("Unexpected connection")
  50. if not check2:
  51. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=0.2)
  52. if ev:
  53. raise Exception("Unexpected connection")
  54. dev[0].remove_network(id0)
  55. dev[1].remove_network(id1)
  56. dev[2].remove_network(id2)
  57. time.sleep(0.3)
  58. res0 = dev[0].request("BSS RANGE=ALL MASK=0x2")
  59. res1 = dev[1].request("BSS RANGE=ALL MASK=0x2")
  60. res2 = dev[2].request("BSS RANGE=ALL MASK=0x2")
  61. if not check0:
  62. if ('02:00:00:00:03:00' in res0 or
  63. '02:00:00:00:03:00' in res1 or
  64. '02:00:00:00:03:00' in res2):
  65. raise Exception("Unexpected BSS0 in scan results")
  66. if not check1:
  67. if ('02:00:00:00:03:01' in res0 or
  68. '02:00:00:00:03:01' in res1 or
  69. '02:00:00:00:03:01' in res2):
  70. raise Exception("Unexpected BSS1 in scan results")
  71. if not check2:
  72. if ('02:00:00:00:03:02' in res0 or
  73. '02:00:00:00:03:02' in res1 or
  74. '02:00:00:00:03:02' in res2):
  75. raise Exception("Unexpected BSS2 in scan results")
  76. def test_ap_bss_add_remove(dev, apdev):
  77. """Dynamic BSS add/remove operations with hostapd"""
  78. for d in dev:
  79. d.request("SET ignore_old_scan_res 1")
  80. ifname1 = apdev[0]['ifname']
  81. ifname2 = apdev[0]['ifname'] + '-2'
  82. ifname3 = apdev[0]['ifname'] + '-3'
  83. logger.info("Set up three BSSes one by one")
  84. hostapd.add_bss('phy3', ifname1, 'bss-1.conf')
  85. multi_check(dev, True, False, False)
  86. hostapd.add_bss('phy3', ifname2, 'bss-2.conf')
  87. multi_check(dev, True, True, False)
  88. hostapd.add_bss('phy3', ifname3, 'bss-3.conf')
  89. multi_check(dev, True, True, True)
  90. logger.info("Remove the last BSS and re-add it")
  91. hostapd.remove_bss(ifname3)
  92. multi_check(dev, True, True, False)
  93. hostapd.add_bss('phy3', ifname3, 'bss-3.conf')
  94. multi_check(dev, True, True, True)
  95. logger.info("Remove the middle BSS and re-add it")
  96. hostapd.remove_bss(ifname2)
  97. multi_check(dev, True, False, True)
  98. hostapd.add_bss('phy3', ifname2, 'bss-2.conf')
  99. multi_check(dev, True, True, True)
  100. logger.info("Remove the first BSS and re-add it")
  101. hostapd.remove_bss(ifname1)
  102. multi_check(dev, False, True, True)
  103. hostapd.add_bss('phy3', ifname1, 'bss-1.conf')
  104. multi_check(dev, True, True, True)
  105. logger.info("Remove two BSSes and re-add them")
  106. hostapd.remove_bss(ifname2)
  107. multi_check(dev, True, False, True)
  108. hostapd.remove_bss(ifname3)
  109. multi_check(dev, True, False, False)
  110. dev[0].request("NOTE failure-done")
  111. hostapd.add_bss('phy3', ifname2, 'bss-2.conf')
  112. multi_check(dev, True, True, False)
  113. hostapd.add_bss('phy3', ifname3, 'bss-3.conf')
  114. multi_check(dev, True, True, True)
  115. logger.info("Remove three BSSes and re-add them")
  116. hostapd.remove_bss(ifname1)
  117. multi_check(dev, False, True, True)
  118. hostapd.remove_bss(ifname2)
  119. multi_check(dev, False, False, True)
  120. hostapd.remove_bss(ifname3)
  121. multi_check(dev, False, False, False)
  122. hostapd.add_bss('phy3', ifname1, 'bss-1.conf')
  123. multi_check(dev, True, False, False)
  124. hostapd.add_bss('phy3', ifname2, 'bss-2.conf')
  125. multi_check(dev, True, True, False)
  126. hostapd.add_bss('phy3', ifname3, 'bss-3.conf')
  127. multi_check(dev, True, True, True)
  128. logger.info("Remove three BSSes in reverse order and re-add them")
  129. hostapd.remove_bss(ifname3)
  130. multi_check(dev, True, True, False)
  131. hostapd.remove_bss(ifname2)
  132. multi_check(dev, True, False, False)
  133. hostapd.remove_bss(ifname1)
  134. hostapd.add_bss('phy3', ifname1, 'bss-1.conf')
  135. multi_check(dev, True, False, False)
  136. hostapd.add_bss('phy3', ifname2, 'bss-2.conf')
  137. multi_check(dev, True, True, False)
  138. hostapd.add_bss('phy3', ifname3, 'bss-3.conf')
  139. multi_check(dev, True, True, True)
  140. logger.info("Test error handling if a duplicate ifname is tried")
  141. hostapd.add_bss('phy3', ifname3, 'bss-3.conf', ignore_error=True)
  142. multi_check(dev, True, True, True)