test_ap_vht.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. # Test cases for VHT operations with hostapd
  2. # Copyright (c) 2014, Qualcomm Atheros, Inc.
  3. # Copyright (c) 2013, Intel Corporation
  4. #
  5. # This software may be distributed under the terms of the BSD license.
  6. # See README for more details.
  7. import logging
  8. logger = logging.getLogger()
  9. import os
  10. import subprocess, time
  11. import hwsim_utils
  12. import hostapd
  13. from test_dfs import wait_dfs_event
  14. def vht_supported():
  15. cmd = subprocess.Popen(["iw", "reg", "get"], stdout=subprocess.PIPE)
  16. reg = cmd.stdout.read()
  17. if "@ 80)" in reg or "@ 160)" in reg:
  18. return True
  19. return False
  20. def test_ap_vht80(dev, apdev):
  21. """VHT with 80 MHz channel width"""
  22. try:
  23. params = { "ssid": "vht",
  24. "country_code": "FI",
  25. "hw_mode": "a",
  26. "channel": "36",
  27. "ht_capab": "[HT40+]",
  28. "ieee80211n": "1",
  29. "ieee80211ac": "1",
  30. "vht_oper_chwidth": "1",
  31. "vht_oper_centr_freq_seg0_idx": "42" }
  32. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  33. dev[0].connect("vht", key_mgmt="NONE", scan_freq="5180")
  34. hwsim_utils.test_connectivity(dev[0], hapd)
  35. except Exception, e:
  36. if isinstance(e, Exception) and str(e) == "AP startup failed":
  37. if not vht_supported():
  38. logger.info("80 MHz channel not supported in regulatory information")
  39. return "skip"
  40. raise
  41. finally:
  42. subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])
  43. def test_ap_vht80_params(dev, apdev):
  44. """VHT with 80 MHz channel width and number of optional features enabled"""
  45. try:
  46. params = { "ssid": "vht",
  47. "country_code": "FI",
  48. "hw_mode": "a",
  49. "channel": "36",
  50. "ht_capab": "[HT40+][SHORT-GI-40][DSS_CCK-40]",
  51. "ieee80211n": "1",
  52. "ieee80211ac": "1",
  53. "vht_oper_chwidth": "1",
  54. "vht_capab": "[MAX-MPDU-11454][RXLDPC][SHORT-GI-80][TX-STBC-2BY1][RX-STBC-1][MAX-A-MPDU-LEN-EXP0]",
  55. "vht_oper_centr_freq_seg0_idx": "42",
  56. "require_vht": "1" }
  57. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  58. dev[1].connect("vht", key_mgmt="NONE", scan_freq="5180",
  59. disable_vht="1", wait_connect=False)
  60. dev[0].connect("vht", key_mgmt="NONE", scan_freq="5180")
  61. ev = dev[1].wait_event(["CTRL-EVENT-ASSOC-REJECT"])
  62. if ev is None:
  63. raise Exception("Association rejection timed out")
  64. if "status_code=104" not in ev:
  65. raise Exception("Unexpected rejection status code")
  66. dev[1].request("DISCONNECT")
  67. hwsim_utils.test_connectivity(dev[0], hapd)
  68. except Exception, e:
  69. if isinstance(e, Exception) and str(e) == "AP startup failed":
  70. if not vht_supported():
  71. logger.info("80 MHz channel not supported in regulatory information")
  72. return "skip"
  73. raise
  74. finally:
  75. subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])
  76. def test_ap_vht_20(devs, apdevs):
  77. dev = devs[0]
  78. ap = apdevs[0]
  79. try:
  80. params = { "ssid": "test-vht20",
  81. "country_code": "DE",
  82. "hw_mode": "a",
  83. "channel": "36",
  84. "ieee80211n": "1",
  85. "ieee80211ac": "1",
  86. "ht_capab": "",
  87. "vht_capab": "",
  88. "vht_oper_chwidth": "0",
  89. "vht_oper_centr_freq_seg0_idx": "0",
  90. "supported_rates": "60 120 240 360 480 540",
  91. "require_vht": "1",
  92. }
  93. hapd = hostapd.add_ap(ap['ifname'], params)
  94. dev.connect("test-vht20", scan_freq="5180", key_mgmt="NONE")
  95. hwsim_utils.test_connectivity(dev, hapd)
  96. finally:
  97. subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])
  98. def test_ap_vht_capab_not_supported(dev, apdev):
  99. """VHT configuration with driver not supporting all vht_capab entries"""
  100. try:
  101. params = { "ssid": "vht",
  102. "country_code": "FI",
  103. "hw_mode": "a",
  104. "channel": "36",
  105. "ht_capab": "[HT40+][SHORT-GI-40][DSS_CCK-40]",
  106. "ieee80211n": "1",
  107. "ieee80211ac": "1",
  108. "vht_oper_chwidth": "1",
  109. "vht_capab": "[MAX-MPDU-7991][MAX-MPDU-11454][VHT160][VHT160-80PLUS80][RXLDPC][SHORT-GI-80][SHORT-GI-160][TX-STBC-2BY1][RX-STBC-1][RX-STBC-12][RX-STBC-123][RX-STBC-1234][SU-BEAMFORMER][SU-BEAMFORMEE][BF-ANTENNA-2][SOUNDING-DIMENSION-2][MU-BEAMFORMER][MU-BEAMFORMEE][VHT-TXOP-PS][HTC-VHT][MAX-A-MPDU-LEN-EXP0][MAX-A-MPDU-LEN-EXP7][VHT-LINK-ADAPT2][VHT-LINK-ADAPT3][RX-ANTENNA-PATTERN][TX-ANTENNA-PATTERN]",
  110. "vht_oper_centr_freq_seg0_idx": "42",
  111. "require_vht": "1" }
  112. hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
  113. ev = hapd.wait_event(["AP-DISABLED"], timeout=5)
  114. if ev is None:
  115. raise Exception("Startup failure not reported")
  116. for i in range(1, 7):
  117. if "OK" not in hapd.request("SET vht_capab [MAX-A-MPDU-LEN-EXP%d]" % i):
  118. raise Exception("Unexpected SET failure")
  119. finally:
  120. subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])
  121. def test_ap_vht160(dev, apdev):
  122. """VHT with 160 MHz channel width"""
  123. try:
  124. params = { "ssid": "vht",
  125. "country_code": "FI",
  126. "hw_mode": "a",
  127. "channel": "36",
  128. "ht_capab": "[HT40+]",
  129. "ieee80211n": "1",
  130. "ieee80211ac": "1",
  131. "vht_oper_chwidth": "2",
  132. "vht_oper_centr_freq_seg0_idx": "50",
  133. 'ieee80211d': '1',
  134. 'ieee80211h': '1' }
  135. hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
  136. ev = wait_dfs_event(hapd, "DFS-CAC-START", 5)
  137. if "DFS-CAC-START" not in ev:
  138. raise Exception("Unexpected DFS event")
  139. state = hapd.get_status_field("state")
  140. if state != "DFS":
  141. if state == "DISABLED" and not os.path.exists("dfs"):
  142. # Not all systems have recent enough CRDA version and
  143. # wireless-regdb changes to support 160 MHz and DFS. For now,
  144. # do not report failures for this test case.
  145. return "skip"
  146. raise Exception("Unexpected interface state: " + state)
  147. params = { "ssid": "vht2",
  148. "country_code": "FI",
  149. "hw_mode": "a",
  150. "channel": "100",
  151. "ht_capab": "[HT40+]",
  152. "ieee80211n": "1",
  153. "ieee80211ac": "1",
  154. "vht_oper_chwidth": "2",
  155. "vht_oper_centr_freq_seg0_idx": "114",
  156. 'ieee80211d': '1',
  157. 'ieee80211h': '1' }
  158. hapd2 = hostapd.add_ap(apdev[1]['ifname'], params, wait_enabled=False)
  159. ev = wait_dfs_event(hapd2, "DFS-CAC-START", 5)
  160. if "DFS-CAC-START" not in ev:
  161. raise Exception("Unexpected DFS event(2)")
  162. state = hapd2.get_status_field("state")
  163. if state != "DFS":
  164. raise Exception("Unexpected interface state(2): " + state)
  165. logger.info("Waiting for CAC to complete")
  166. ev = wait_dfs_event(hapd, "DFS-CAC-COMPLETED", 70)
  167. if "success=1" not in ev:
  168. raise Exception("CAC failed")
  169. if "freq=5180" not in ev:
  170. raise Exception("Unexpected DFS freq result")
  171. ev = hapd.wait_event(["AP-ENABLED"], timeout=5)
  172. if not ev:
  173. raise Exception("AP setup timed out")
  174. state = hapd.get_status_field("state")
  175. if state != "ENABLED":
  176. raise Exception("Unexpected interface state")
  177. ev = wait_dfs_event(hapd2, "DFS-CAC-COMPLETED", 70)
  178. if "success=1" not in ev:
  179. raise Exception("CAC failed(2)")
  180. if "freq=5500" not in ev:
  181. raise Exception("Unexpected DFS freq result(2)")
  182. ev = hapd2.wait_event(["AP-ENABLED"], timeout=5)
  183. if not ev:
  184. raise Exception("AP setup timed out(2)")
  185. state = hapd2.get_status_field("state")
  186. if state != "ENABLED":
  187. raise Exception("Unexpected interface state(2)")
  188. freq = hapd2.get_status_field("freq")
  189. if freq != "5500":
  190. raise Exception("Unexpected frequency(2)")
  191. dev[0].connect("vht", key_mgmt="NONE", scan_freq="5180")
  192. hwsim_utils.test_connectivity(dev[0], hapd)
  193. dev[1].connect("vht2", key_mgmt="NONE", scan_freq="5500")
  194. hwsim_utils.test_connectivity(dev[1], hapd2)
  195. except Exception, e:
  196. if isinstance(e, Exception) and str(e) == "AP startup failed":
  197. if not vht_supported():
  198. logger.info("80/160 MHz channel not supported in regulatory information")
  199. return "skip"
  200. raise
  201. finally:
  202. subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])
  203. def test_ap_vht80plus80(dev, apdev):
  204. """VHT with 80+80 MHz channel width"""
  205. try:
  206. params = { "ssid": "vht",
  207. "country_code": "US",
  208. "hw_mode": "a",
  209. "channel": "52",
  210. "ht_capab": "[HT40+]",
  211. "ieee80211n": "1",
  212. "ieee80211ac": "1",
  213. "vht_oper_chwidth": "3",
  214. "vht_oper_centr_freq_seg0_idx": "58",
  215. "vht_oper_centr_freq_seg1_idx": "155",
  216. 'ieee80211d': '1',
  217. 'ieee80211h': '1' }
  218. hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
  219. # This will actually fail since DFS on 80+80 is not yet supported
  220. ev = hapd.wait_event(["AP-DISABLED"], timeout=5)
  221. # ignore result to avoid breaking the test once 80+80 DFS gets enabled
  222. params = { "ssid": "vht2",
  223. "country_code": "US",
  224. "hw_mode": "a",
  225. "channel": "36",
  226. "ht_capab": "[HT40+]",
  227. "ieee80211n": "1",
  228. "ieee80211ac": "1",
  229. "vht_oper_chwidth": "3",
  230. "vht_oper_centr_freq_seg0_idx": "42",
  231. "vht_oper_centr_freq_seg1_idx": "155" }
  232. hapd2 = hostapd.add_ap(apdev[1]['ifname'], params, wait_enabled=False)
  233. ev = hapd2.wait_event(["AP-ENABLED"], timeout=5)
  234. if not ev:
  235. raise Exception("AP setup timed out(2)")
  236. state = hapd2.get_status_field("state")
  237. if state != "ENABLED":
  238. raise Exception("Unexpected interface state(2)")
  239. dev[1].connect("vht2", key_mgmt="NONE", scan_freq="5180")
  240. hwsim_utils.test_connectivity(dev[1], hapd2)
  241. except Exception, e:
  242. if isinstance(e, Exception) and str(e) == "AP startup failed":
  243. if not vht_supported():
  244. logger.info("80/160 MHz channel not supported in regulatory information")
  245. return "skip"
  246. raise
  247. finally:
  248. subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])