test_ap_vht.py 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908
  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 utils import HwsimSkip
  14. from test_dfs import wait_dfs_event
  15. from test_ap_csa import csa_supported
  16. from test_ap_ht import clear_scan_cache
  17. def vht_supported():
  18. cmd = subprocess.Popen(["iw", "reg", "get"], stdout=subprocess.PIPE)
  19. reg = cmd.stdout.read()
  20. if "@ 80)" in reg or "@ 160)" in reg:
  21. return True
  22. return False
  23. def test_ap_vht80(dev, apdev):
  24. """VHT with 80 MHz channel width"""
  25. try:
  26. hapd = None
  27. params = { "ssid": "vht",
  28. "country_code": "FI",
  29. "hw_mode": "a",
  30. "channel": "36",
  31. "ht_capab": "[HT40+]",
  32. "ieee80211n": "1",
  33. "ieee80211ac": "1",
  34. "vht_oper_chwidth": "1",
  35. "vht_oper_centr_freq_seg0_idx": "42" }
  36. hapd = hostapd.add_ap(apdev[0], params)
  37. bssid = apdev[0]['bssid']
  38. dev[0].connect("vht", key_mgmt="NONE", scan_freq="5180")
  39. hwsim_utils.test_connectivity(dev[0], hapd)
  40. sig = dev[0].request("SIGNAL_POLL").splitlines()
  41. if "FREQUENCY=5180" not in sig:
  42. raise Exception("Unexpected SIGNAL_POLL value(1): " + str(sig))
  43. if "WIDTH=80 MHz" not in sig:
  44. raise Exception("Unexpected SIGNAL_POLL value(2): " + str(sig))
  45. est = dev[0].get_bss(bssid)['est_throughput']
  46. if est != "390001":
  47. raise Exception("Unexpected BSS est_throughput: " + est)
  48. status = hapd.get_status()
  49. logger.info("hostapd STATUS: " + str(status))
  50. if status["ieee80211n"] != "1":
  51. raise Exception("Unexpected STATUS ieee80211n value")
  52. if status["ieee80211ac"] != "1":
  53. raise Exception("Unexpected STATUS ieee80211ac value")
  54. if status["secondary_channel"] != "1":
  55. raise Exception("Unexpected STATUS secondary_channel value")
  56. if status["vht_oper_chwidth"] != "1":
  57. raise Exception("Unexpected STATUS vht_oper_chwidth value")
  58. if status["vht_oper_centr_freq_seg0_idx"] != "42":
  59. raise Exception("Unexpected STATUS vht_oper_centr_freq_seg0_idx value")
  60. if "vht_caps_info" not in status:
  61. raise Exception("Missing vht_caps_info")
  62. sta = hapd.get_sta(dev[0].own_addr())
  63. logger.info("hostapd STA: " + str(sta))
  64. if "[HT]" not in sta['flags']:
  65. raise Exception("Missing STA flag: HT")
  66. if "[VHT]" not in sta['flags']:
  67. raise Exception("Missing STA flag: VHT")
  68. except Exception, e:
  69. if isinstance(e, Exception) and str(e) == "AP startup failed":
  70. if not vht_supported():
  71. raise HwsimSkip("80 MHz channel not supported in regulatory information")
  72. raise
  73. finally:
  74. dev[0].request("DISCONNECT")
  75. if hapd:
  76. hapd.request("DISABLE")
  77. subprocess.call(['iw', 'reg', 'set', '00'])
  78. dev[0].flush_scan_cache()
  79. def vht80_test(apdev, dev, channel, ht_capab):
  80. clear_scan_cache(apdev)
  81. try:
  82. hapd = None
  83. params = { "ssid": "vht",
  84. "country_code": "FI",
  85. "hw_mode": "a",
  86. "channel": str(channel),
  87. "ht_capab": ht_capab,
  88. "ieee80211n": "1",
  89. "ieee80211ac": "1",
  90. "vht_oper_chwidth": "1",
  91. "vht_oper_centr_freq_seg0_idx": "42" }
  92. hapd = hostapd.add_ap(apdev, params)
  93. bssid = apdev['bssid']
  94. dev.connect("vht", key_mgmt="NONE", scan_freq=str(5000 + 5 * channel))
  95. hwsim_utils.test_connectivity(dev, hapd)
  96. except Exception, e:
  97. if isinstance(e, Exception) and str(e) == "AP startup failed":
  98. if not vht_supported():
  99. raise HwsimSkip("80 MHz channel not supported in regulatory information")
  100. raise
  101. finally:
  102. dev.request("DISCONNECT")
  103. if hapd:
  104. hapd.request("DISABLE")
  105. subprocess.call(['iw', 'reg', 'set', '00'])
  106. dev.flush_scan_cache()
  107. def test_ap_vht80b(dev, apdev):
  108. """VHT with 80 MHz channel width (HT40- channel 40)"""
  109. vht80_test(apdev[0], dev[0], 40, "[HT40-]")
  110. def test_ap_vht80c(dev, apdev):
  111. """VHT with 80 MHz channel width (HT40+ channel 44)"""
  112. vht80_test(apdev[0], dev[0], 44, "[HT40+]")
  113. def test_ap_vht80d(dev, apdev):
  114. """VHT with 80 MHz channel width (HT40- channel 48)"""
  115. vht80_test(apdev[0], dev[0], 48, "[HT40-]")
  116. def test_ap_vht80_params(dev, apdev):
  117. """VHT with 80 MHz channel width and number of optional features enabled"""
  118. try:
  119. hapd = None
  120. params = { "ssid": "vht",
  121. "country_code": "FI",
  122. "hw_mode": "a",
  123. "channel": "36",
  124. "ht_capab": "[HT40+][SHORT-GI-40][DSS_CCK-40]",
  125. "ieee80211n": "1",
  126. "ieee80211ac": "1",
  127. "vht_oper_chwidth": "1",
  128. "vht_capab": "[MAX-MPDU-11454][RXLDPC][SHORT-GI-80][TX-STBC-2BY1][RX-STBC-1][MAX-A-MPDU-LEN-EXP0]",
  129. "vht_oper_centr_freq_seg0_idx": "42",
  130. "require_vht": "1" }
  131. hapd = hostapd.add_ap(apdev[0], params)
  132. dev[1].connect("vht", key_mgmt="NONE", scan_freq="5180",
  133. disable_vht="1", wait_connect=False)
  134. dev[0].connect("vht", key_mgmt="NONE", scan_freq="5180")
  135. ev = dev[1].wait_event(["CTRL-EVENT-ASSOC-REJECT"])
  136. if ev is None:
  137. raise Exception("Association rejection timed out")
  138. if "status_code=104" not in ev:
  139. raise Exception("Unexpected rejection status code")
  140. dev[1].request("DISCONNECT")
  141. hwsim_utils.test_connectivity(dev[0], hapd)
  142. except Exception, e:
  143. if isinstance(e, Exception) and str(e) == "AP startup failed":
  144. if not vht_supported():
  145. raise HwsimSkip("80 MHz channel not supported in regulatory information")
  146. raise
  147. finally:
  148. dev[0].request("DISCONNECT")
  149. dev[1].request("DISCONNECT")
  150. if hapd:
  151. hapd.request("DISABLE")
  152. subprocess.call(['iw', 'reg', 'set', '00'])
  153. dev[0].flush_scan_cache()
  154. dev[1].flush_scan_cache()
  155. def test_ap_vht80_invalid(dev, apdev):
  156. """VHT with invalid 80 MHz channel configuration (seg1)"""
  157. try:
  158. hapd = None
  159. params = { "ssid": "vht",
  160. "country_code": "US",
  161. "hw_mode": "a",
  162. "channel": "36",
  163. "ht_capab": "[HT40+]",
  164. "ieee80211n": "1",
  165. "ieee80211ac": "1",
  166. "vht_oper_chwidth": "1",
  167. "vht_oper_centr_freq_seg0_idx": "42",
  168. "vht_oper_centr_freq_seg1_idx": "155",
  169. 'ieee80211d': '1',
  170. 'ieee80211h': '1' }
  171. hapd = hostapd.add_ap(apdev[0], params, wait_enabled=False)
  172. # This fails due to unexpected seg1 configuration
  173. ev = hapd.wait_event(["AP-DISABLED"], timeout=5)
  174. if ev is None:
  175. raise Exception("AP-DISABLED not reported")
  176. except Exception, e:
  177. if isinstance(e, Exception) and str(e) == "AP startup failed":
  178. if not vht_supported():
  179. raise HwsimSkip("80/160 MHz channel not supported in regulatory information")
  180. raise
  181. finally:
  182. if hapd:
  183. hapd.request("DISABLE")
  184. subprocess.call(['iw', 'reg', 'set', '00'])
  185. def test_ap_vht80_invalid2(dev, apdev):
  186. """VHT with invalid 80 MHz channel configuration (seg0)"""
  187. try:
  188. hapd = None
  189. params = { "ssid": "vht",
  190. "country_code": "US",
  191. "hw_mode": "a",
  192. "channel": "36",
  193. "ht_capab": "[HT40+]",
  194. "ieee80211n": "1",
  195. "ieee80211ac": "1",
  196. "vht_oper_chwidth": "1",
  197. "vht_oper_centr_freq_seg0_idx": "46",
  198. 'ieee80211d': '1',
  199. 'ieee80211h': '1' }
  200. hapd = hostapd.add_ap(apdev[0], params, wait_enabled=False)
  201. # This fails due to invalid seg0 configuration
  202. ev = hapd.wait_event(["AP-DISABLED"], timeout=5)
  203. if ev is None:
  204. raise Exception("AP-DISABLED not reported")
  205. except Exception, e:
  206. if isinstance(e, Exception) and str(e) == "AP startup failed":
  207. if not vht_supported():
  208. raise HwsimSkip("80/160 MHz channel not supported in regulatory information")
  209. raise
  210. finally:
  211. if hapd:
  212. hapd.request("DISABLE")
  213. subprocess.call(['iw', 'reg', 'set', '00'])
  214. def test_ap_vht_20(devs, apdevs):
  215. """VHT and 20 MHz channel"""
  216. dev = devs[0]
  217. ap = apdevs[0]
  218. try:
  219. hapd = None
  220. params = { "ssid": "test-vht20",
  221. "country_code": "DE",
  222. "hw_mode": "a",
  223. "channel": "36",
  224. "ieee80211n": "1",
  225. "ieee80211ac": "1",
  226. "ht_capab": "",
  227. "vht_capab": "",
  228. "vht_oper_chwidth": "0",
  229. "vht_oper_centr_freq_seg0_idx": "0",
  230. "supported_rates": "60 120 240 360 480 540",
  231. "require_vht": "1",
  232. }
  233. hapd = hostapd.add_ap(ap, params)
  234. dev.connect("test-vht20", scan_freq="5180", key_mgmt="NONE")
  235. hwsim_utils.test_connectivity(dev, hapd)
  236. finally:
  237. dev.request("DISCONNECT")
  238. if hapd:
  239. hapd.request("DISABLE")
  240. subprocess.call(['iw', 'reg', 'set', '00'])
  241. dev.flush_scan_cache()
  242. def test_ap_vht_40(devs, apdevs):
  243. """VHT and 40 MHz channel"""
  244. dev = devs[0]
  245. ap = apdevs[0]
  246. try:
  247. hapd = None
  248. params = { "ssid": "test-vht40",
  249. "country_code": "DE",
  250. "hw_mode": "a",
  251. "channel": "36",
  252. "ieee80211n": "1",
  253. "ieee80211ac": "1",
  254. "ht_capab": "[HT40+]",
  255. "vht_capab": "",
  256. "vht_oper_chwidth": "0",
  257. "vht_oper_centr_freq_seg0_idx": "0",
  258. }
  259. hapd = hostapd.add_ap(ap, params)
  260. dev.connect("test-vht40", scan_freq="5180", key_mgmt="NONE")
  261. hwsim_utils.test_connectivity(dev, hapd)
  262. finally:
  263. dev.request("DISCONNECT")
  264. if hapd:
  265. hapd.request("DISABLE")
  266. subprocess.call(['iw', 'reg', 'set', '00'])
  267. dev.flush_scan_cache()
  268. def test_ap_vht_capab_not_supported(dev, apdev):
  269. """VHT configuration with driver not supporting all vht_capab entries"""
  270. try:
  271. params = { "ssid": "vht",
  272. "country_code": "FI",
  273. "hw_mode": "a",
  274. "channel": "36",
  275. "ht_capab": "[HT40+][SHORT-GI-40][DSS_CCK-40]",
  276. "ieee80211n": "1",
  277. "ieee80211ac": "1",
  278. "vht_oper_chwidth": "1",
  279. "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][BF-ANTENNA-3][BF-ANTENNA-4][SOUNDING-DIMENSION-2][SOUNDING-DIMENSION-3][SOUNDING-DIMENSION-4][MU-BEAMFORMER][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]",
  280. "vht_oper_centr_freq_seg0_idx": "42",
  281. "require_vht": "1" }
  282. hapd = hostapd.add_ap(apdev[0], params, wait_enabled=False)
  283. ev = hapd.wait_event(["AP-DISABLED"], timeout=5)
  284. if ev is None:
  285. raise Exception("Startup failure not reported")
  286. for i in range(1, 7):
  287. if "OK" not in hapd.request("SET vht_capab [MAX-A-MPDU-LEN-EXP%d]" % i):
  288. raise Exception("Unexpected SET failure")
  289. finally:
  290. subprocess.call(['iw', 'reg', 'set', '00'])
  291. def test_ap_vht160(dev, apdev):
  292. """VHT with 160 MHz channel width"""
  293. try:
  294. hapd = None
  295. hapd2 = None
  296. params = { "ssid": "vht",
  297. "country_code": "FI",
  298. "hw_mode": "a",
  299. "channel": "36",
  300. "ht_capab": "[HT40+]",
  301. "ieee80211n": "1",
  302. "ieee80211ac": "1",
  303. "vht_oper_chwidth": "2",
  304. "vht_oper_centr_freq_seg0_idx": "50",
  305. 'ieee80211d': '1',
  306. 'ieee80211h': '1' }
  307. hapd = hostapd.add_ap(apdev[0], params, wait_enabled=False)
  308. ev = wait_dfs_event(hapd, "DFS-CAC-START", 5)
  309. if "DFS-CAC-START" not in ev:
  310. raise Exception("Unexpected DFS event")
  311. state = hapd.get_status_field("state")
  312. if state != "DFS":
  313. if state == "DISABLED" and not os.path.exists("dfs"):
  314. # Not all systems have recent enough CRDA version and
  315. # wireless-regdb changes to support 160 MHz and DFS. For now,
  316. # do not report failures for this test case.
  317. raise HwsimSkip("CRDA or wireless-regdb did not support 160 MHz")
  318. raise Exception("Unexpected interface state: " + state)
  319. params = { "ssid": "vht2",
  320. "country_code": "FI",
  321. "hw_mode": "a",
  322. "channel": "104",
  323. "ht_capab": "[HT40-]",
  324. "ieee80211n": "1",
  325. "ieee80211ac": "1",
  326. "vht_oper_chwidth": "2",
  327. "vht_oper_centr_freq_seg0_idx": "114",
  328. 'ieee80211d': '1',
  329. 'ieee80211h': '1' }
  330. hapd2 = hostapd.add_ap(apdev[1], params, wait_enabled=False)
  331. ev = wait_dfs_event(hapd2, "DFS-CAC-START", 5)
  332. if "DFS-CAC-START" not in ev:
  333. raise Exception("Unexpected DFS event(2)")
  334. state = hapd2.get_status_field("state")
  335. if state != "DFS":
  336. raise Exception("Unexpected interface state(2): " + state)
  337. logger.info("Waiting for CAC to complete")
  338. ev = wait_dfs_event(hapd, "DFS-CAC-COMPLETED", 70)
  339. if "success=1" not in ev:
  340. raise Exception("CAC failed")
  341. if "freq=5180" not in ev:
  342. raise Exception("Unexpected DFS freq result")
  343. ev = hapd.wait_event(["AP-ENABLED"], timeout=5)
  344. if not ev:
  345. raise Exception("AP setup timed out")
  346. state = hapd.get_status_field("state")
  347. if state != "ENABLED":
  348. raise Exception("Unexpected interface state")
  349. ev = wait_dfs_event(hapd2, "DFS-CAC-COMPLETED", 70)
  350. if "success=1" not in ev:
  351. raise Exception("CAC failed(2)")
  352. if "freq=5520" not in ev:
  353. raise Exception("Unexpected DFS freq result(2)")
  354. ev = hapd2.wait_event(["AP-ENABLED"], timeout=5)
  355. if not ev:
  356. raise Exception("AP setup timed out(2)")
  357. state = hapd2.get_status_field("state")
  358. if state != "ENABLED":
  359. raise Exception("Unexpected interface state(2)")
  360. freq = hapd2.get_status_field("freq")
  361. if freq != "5520":
  362. raise Exception("Unexpected frequency(2)")
  363. dev[0].connect("vht", key_mgmt="NONE", scan_freq="5180")
  364. hwsim_utils.test_connectivity(dev[0], hapd)
  365. sig = dev[0].request("SIGNAL_POLL").splitlines()
  366. if "FREQUENCY=5180" not in sig:
  367. raise Exception("Unexpected SIGNAL_POLL value(1): " + str(sig))
  368. if "WIDTH=160 MHz" not in sig:
  369. raise Exception("Unexpected SIGNAL_POLL value(2): " + str(sig))
  370. dev[1].connect("vht2", key_mgmt="NONE", scan_freq="5520")
  371. hwsim_utils.test_connectivity(dev[1], hapd2)
  372. sig = dev[1].request("SIGNAL_POLL").splitlines()
  373. if "FREQUENCY=5520" not in sig:
  374. raise Exception("Unexpected SIGNAL_POLL value(1): " + str(sig))
  375. if "WIDTH=160 MHz" not in sig:
  376. raise Exception("Unexpected SIGNAL_POLL value(2): " + str(sig))
  377. except Exception, e:
  378. if isinstance(e, Exception) and str(e) == "AP startup failed":
  379. if not vht_supported():
  380. raise HwsimSkip("80/160 MHz channel not supported in regulatory information")
  381. raise
  382. finally:
  383. dev[0].request("DISCONNECT")
  384. dev[1].request("DISCONNECT")
  385. if hapd:
  386. hapd.request("DISABLE")
  387. if hapd2:
  388. hapd2.request("DISABLE")
  389. subprocess.call(['iw', 'reg', 'set', '00'])
  390. dev[0].flush_scan_cache()
  391. dev[1].flush_scan_cache()
  392. def test_ap_vht160_no_dfs_100_plus(dev, apdev):
  393. """VHT with 160 MHz channel width and no DFS (100 plus)"""
  394. run_ap_vht160_no_dfs(dev, apdev, "100", "[HT40+]")
  395. def test_ap_vht160_no_dfs(dev, apdev):
  396. """VHT with 160 MHz channel width and no DFS (104 minus)"""
  397. run_ap_vht160_no_dfs(dev, apdev, "104", "[HT40-]")
  398. def test_ap_vht160_no_dfs_108_plus(dev, apdev):
  399. """VHT with 160 MHz channel width and no DFS (108 plus)"""
  400. run_ap_vht160_no_dfs(dev, apdev, "108", "[HT40+]")
  401. def test_ap_vht160_no_dfs_112_minus(dev, apdev):
  402. """VHT with 160 MHz channel width and no DFS (112 minus)"""
  403. run_ap_vht160_no_dfs(dev, apdev, "112", "[HT40-]")
  404. def test_ap_vht160_no_dfs_116_plus(dev, apdev):
  405. """VHT with 160 MHz channel width and no DFS (116 plus)"""
  406. run_ap_vht160_no_dfs(dev, apdev, "116", "[HT40+]")
  407. def test_ap_vht160_no_dfs_120_minus(dev, apdev):
  408. """VHT with 160 MHz channel width and no DFS (120 minus)"""
  409. run_ap_vht160_no_dfs(dev, apdev, "120", "[HT40-]")
  410. def test_ap_vht160_no_dfs_124_plus(dev, apdev):
  411. """VHT with 160 MHz channel width and no DFS (124 plus)"""
  412. run_ap_vht160_no_dfs(dev, apdev, "124", "[HT40+]")
  413. def test_ap_vht160_no_dfs_128_minus(dev, apdev):
  414. """VHT with 160 MHz channel width and no DFS (128 minus)"""
  415. run_ap_vht160_no_dfs(dev, apdev, "128", "[HT40-]")
  416. def run_ap_vht160_no_dfs(dev, apdev, channel, ht_capab):
  417. try:
  418. hapd = None
  419. params = { "ssid": "vht",
  420. "country_code": "ZA",
  421. "hw_mode": "a",
  422. "channel": channel,
  423. "ht_capab": ht_capab,
  424. "ieee80211n": "1",
  425. "ieee80211ac": "1",
  426. "vht_oper_chwidth": "2",
  427. "vht_oper_centr_freq_seg0_idx": "114",
  428. 'ieee80211d': '1',
  429. 'ieee80211h': '1' }
  430. hapd = hostapd.add_ap(apdev[0], params, wait_enabled=False)
  431. ev = hapd.wait_event(["AP-ENABLED"], timeout=2)
  432. if not ev:
  433. cmd = subprocess.Popen(["iw", "reg", "get"], stdout=subprocess.PIPE)
  434. reg = cmd.stdout.readlines()
  435. for r in reg:
  436. if "5490" in r and "DFS" in r:
  437. raise HwsimSkip("ZA regulatory rule did not have DFS requirement removed")
  438. raise Exception("AP setup timed out")
  439. freq = str(int(channel) * 5 + 5000)
  440. dev[0].connect("vht", key_mgmt="NONE", scan_freq=freq)
  441. hwsim_utils.test_connectivity(dev[0], hapd)
  442. sig = dev[0].request("SIGNAL_POLL").splitlines()
  443. if "FREQUENCY=" + freq not in sig:
  444. raise Exception("Unexpected SIGNAL_POLL value(1): " + str(sig))
  445. if "WIDTH=160 MHz" not in sig:
  446. raise Exception("Unexpected SIGNAL_POLL value(2): " + str(sig))
  447. except Exception, e:
  448. if isinstance(e, Exception) and str(e) == "AP startup failed":
  449. if not vht_supported():
  450. raise HwsimSkip("80/160 MHz channel not supported in regulatory information")
  451. raise
  452. finally:
  453. dev[0].request("DISCONNECT")
  454. if hapd:
  455. hapd.request("DISABLE")
  456. subprocess.call(['iw', 'reg', 'set', '00'])
  457. dev[0].flush_scan_cache()
  458. def test_ap_vht160_no_ht40(dev, apdev):
  459. """VHT with 160 MHz channel width and HT40 disabled"""
  460. try:
  461. hapd = None
  462. params = { "ssid": "vht",
  463. "country_code": "ZA",
  464. "hw_mode": "a",
  465. "channel": "108",
  466. "ht_capab": "",
  467. "ieee80211n": "1",
  468. "ieee80211ac": "1",
  469. "vht_oper_chwidth": "2",
  470. "vht_oper_centr_freq_seg0_idx": "114",
  471. 'ieee80211d': '1',
  472. 'ieee80211h': '1' }
  473. hapd = hostapd.add_ap(apdev[0], params, wait_enabled=False)
  474. ev = hapd.wait_event(["AP-ENABLED", "AP-DISABLED"], timeout=2)
  475. if not ev:
  476. cmd = subprocess.Popen(["iw", "reg", "get"], stdout=subprocess.PIPE)
  477. reg = cmd.stdout.readlines()
  478. for r in reg:
  479. if "5490" in r and "DFS" in r:
  480. raise HwsimSkip("ZA regulatory rule did not have DFS requirement removed")
  481. raise Exception("AP setup timed out")
  482. if "AP-ENABLED" in ev:
  483. # This was supposed to fail due to sec_channel_offset == 0
  484. raise Exception("Unexpected AP-ENABLED")
  485. except Exception, e:
  486. if isinstance(e, Exception) and str(e) == "AP startup failed":
  487. if not vht_supported():
  488. raise HwsimSkip("80/160 MHz channel not supported in regulatory information")
  489. raise
  490. finally:
  491. if hapd:
  492. hapd.request("DISABLE")
  493. subprocess.call(['iw', 'reg', 'set', '00'])
  494. def test_ap_vht80plus80(dev, apdev):
  495. """VHT with 80+80 MHz channel width"""
  496. try:
  497. hapd = None
  498. hapd2 = None
  499. params = { "ssid": "vht",
  500. "country_code": "US",
  501. "hw_mode": "a",
  502. "channel": "52",
  503. "ht_capab": "[HT40+]",
  504. "ieee80211n": "1",
  505. "ieee80211ac": "1",
  506. "vht_oper_chwidth": "3",
  507. "vht_oper_centr_freq_seg0_idx": "58",
  508. "vht_oper_centr_freq_seg1_idx": "155",
  509. 'ieee80211d': '1',
  510. 'ieee80211h': '1' }
  511. hapd = hostapd.add_ap(apdev[0], params, wait_enabled=False)
  512. # This will actually fail since DFS on 80+80 is not yet supported
  513. ev = hapd.wait_event(["AP-DISABLED"], timeout=5)
  514. # ignore result to avoid breaking the test once 80+80 DFS gets enabled
  515. params = { "ssid": "vht2",
  516. "country_code": "US",
  517. "hw_mode": "a",
  518. "channel": "36",
  519. "ht_capab": "[HT40+]",
  520. "ieee80211n": "1",
  521. "ieee80211ac": "1",
  522. "vht_oper_chwidth": "3",
  523. "vht_oper_centr_freq_seg0_idx": "42",
  524. "vht_oper_centr_freq_seg1_idx": "155" }
  525. hapd2 = hostapd.add_ap(apdev[1], params, wait_enabled=False)
  526. ev = hapd2.wait_event(["AP-ENABLED", "AP-DISABLED"], timeout=5)
  527. if not ev:
  528. raise Exception("AP setup timed out(2)")
  529. if "AP-DISABLED" in ev:
  530. # Assume this failed due to missing regulatory update for now
  531. raise HwsimSkip("80+80 MHz channel not supported in regulatory information")
  532. state = hapd2.get_status_field("state")
  533. if state != "ENABLED":
  534. raise Exception("Unexpected interface state(2)")
  535. dev[1].connect("vht2", key_mgmt="NONE", scan_freq="5180")
  536. hwsim_utils.test_connectivity(dev[1], hapd2)
  537. sig = dev[1].request("SIGNAL_POLL").splitlines()
  538. if "FREQUENCY=5180" not in sig:
  539. raise Exception("Unexpected SIGNAL_POLL value(1): " + str(sig))
  540. if "WIDTH=80+80 MHz" not in sig:
  541. raise Exception("Unexpected SIGNAL_POLL value(2): " + str(sig))
  542. if "CENTER_FRQ1=5210" not in sig:
  543. raise Exception("Unexpected SIGNAL_POLL value(3): " + str(sig))
  544. if "CENTER_FRQ2=5775" not in sig:
  545. raise Exception("Unexpected SIGNAL_POLL value(4): " + str(sig))
  546. except Exception, e:
  547. if isinstance(e, Exception) and str(e) == "AP startup failed":
  548. if not vht_supported():
  549. raise HwsimSkip("80/160 MHz channel not supported in regulatory information")
  550. raise
  551. finally:
  552. dev[0].request("DISCONNECT")
  553. dev[1].request("DISCONNECT")
  554. if hapd:
  555. hapd.request("DISABLE")
  556. if hapd2:
  557. hapd2.request("DISABLE")
  558. subprocess.call(['iw', 'reg', 'set', '00'])
  559. dev[0].flush_scan_cache()
  560. dev[1].flush_scan_cache()
  561. def test_ap_vht80plus80_invalid(dev, apdev):
  562. """VHT with invalid 80+80 MHz channel"""
  563. try:
  564. hapd = None
  565. params = { "ssid": "vht",
  566. "country_code": "US",
  567. "hw_mode": "a",
  568. "channel": "36",
  569. "ht_capab": "[HT40+]",
  570. "ieee80211n": "1",
  571. "ieee80211ac": "1",
  572. "vht_oper_chwidth": "3",
  573. "vht_oper_centr_freq_seg0_idx": "42",
  574. "vht_oper_centr_freq_seg1_idx": "0",
  575. 'ieee80211d': '1',
  576. 'ieee80211h': '1' }
  577. hapd = hostapd.add_ap(apdev[0], params, wait_enabled=False)
  578. # This fails due to missing(invalid) seg1 configuration
  579. ev = hapd.wait_event(["AP-DISABLED"], timeout=5)
  580. if ev is None:
  581. raise Exception("AP-DISABLED not reported")
  582. except Exception, e:
  583. if isinstance(e, Exception) and str(e) == "AP startup failed":
  584. if not vht_supported():
  585. raise HwsimSkip("80/160 MHz channel not supported in regulatory information")
  586. raise
  587. finally:
  588. if hapd:
  589. hapd.request("DISABLE")
  590. subprocess.call(['iw', 'reg', 'set', '00'])
  591. def test_ap_vht80_csa(dev, apdev):
  592. """VHT with 80 MHz channel width and CSA"""
  593. csa_supported(dev[0])
  594. try:
  595. hapd = None
  596. params = { "ssid": "vht",
  597. "country_code": "US",
  598. "hw_mode": "a",
  599. "channel": "149",
  600. "ht_capab": "[HT40+]",
  601. "ieee80211n": "1",
  602. "ieee80211ac": "1",
  603. "vht_oper_chwidth": "1",
  604. "vht_oper_centr_freq_seg0_idx": "155" }
  605. hapd = hostapd.add_ap(apdev[0], params)
  606. dev[0].connect("vht", key_mgmt="NONE", scan_freq="5745")
  607. hwsim_utils.test_connectivity(dev[0], hapd)
  608. hapd.request("CHAN_SWITCH 5 5180 ht vht blocktx center_freq1=5210 sec_channel_offset=1 bandwidth=80")
  609. ev = hapd.wait_event(["AP-CSA-FINISHED"], timeout=10)
  610. if ev is None:
  611. raise Exception("CSA finished event timed out")
  612. if "freq=5180" not in ev:
  613. raise Exception("Unexpected channel in CSA finished event")
  614. time.sleep(0.5)
  615. hwsim_utils.test_connectivity(dev[0], hapd)
  616. hapd.request("CHAN_SWITCH 5 5745")
  617. ev = hapd.wait_event(["AP-CSA-FINISHED"], timeout=10)
  618. if ev is None:
  619. raise Exception("CSA finished event timed out")
  620. if "freq=5745" not in ev:
  621. raise Exception("Unexpected channel in CSA finished event")
  622. time.sleep(0.5)
  623. hwsim_utils.test_connectivity(dev[0], hapd)
  624. # This CSA to same channel will fail in kernel, so use this only for
  625. # extra code coverage.
  626. hapd.request("CHAN_SWITCH 5 5745")
  627. hapd.wait_event(["AP-CSA-FINISHED"], timeout=1)
  628. except Exception, e:
  629. if isinstance(e, Exception) and str(e) == "AP startup failed":
  630. if not vht_supported():
  631. raise HwsimSkip("80 MHz channel not supported in regulatory information")
  632. raise
  633. finally:
  634. dev[0].request("DISCONNECT")
  635. if hapd:
  636. hapd.request("DISABLE")
  637. subprocess.call(['iw', 'reg', 'set', '00'])
  638. dev[0].flush_scan_cache()
  639. def test_ap_vht_on_24ghz(dev, apdev):
  640. """Subset of VHT features on 2.4 GHz"""
  641. hapd = None
  642. params = { "ssid": "test-vht-2g",
  643. "hw_mode": "g",
  644. "channel": "1",
  645. "ieee80211n": "1",
  646. "vendor_vht": "1",
  647. "vht_capab": "[MAX-MPDU-11454]",
  648. "vht_oper_chwidth": "0",
  649. "vht_oper_centr_freq_seg0_idx": "1"
  650. }
  651. hapd = hostapd.add_ap(apdev[0], params)
  652. try:
  653. if "OK" not in dev[0].request("VENDOR_ELEM_ADD 13 dd1300904c0400bf0c3240820feaff0000eaff0000"):
  654. raise Exception("Failed to add vendor element")
  655. dev[0].connect("test-vht-2g", scan_freq="2412", key_mgmt="NONE")
  656. hwsim_utils.test_connectivity(dev[0], hapd)
  657. sta = hapd.get_sta(dev[0].own_addr())
  658. if '[VENDOR_VHT]' not in sta['flags']:
  659. raise Exception("No VENDOR_VHT STA flag")
  660. dev[1].connect("test-vht-2g", scan_freq="2412", key_mgmt="NONE")
  661. sta = hapd.get_sta(dev[1].own_addr())
  662. if '[VENDOR_VHT]' in sta['flags']:
  663. raise Exception("Unexpected VENDOR_VHT STA flag")
  664. finally:
  665. dev[0].request("VENDOR_ELEM_REMOVE 13 *")
  666. def test_prefer_vht40(dev, apdev):
  667. """Preference on VHT40 over HT40"""
  668. try:
  669. hapd2 = None
  670. params = { "ssid": "test",
  671. "country_code": "FI",
  672. "hw_mode": "a",
  673. "channel": "36",
  674. "ieee80211n": "1",
  675. "ht_capab": "[HT40+]" }
  676. hapd = hostapd.add_ap(apdev[0], params)
  677. bssid = apdev[0]['bssid']
  678. params = { "ssid": "test",
  679. "country_code": "FI",
  680. "hw_mode": "a",
  681. "channel": "36",
  682. "ieee80211n": "1",
  683. "ieee80211ac": "1",
  684. "ht_capab": "[HT40+]",
  685. "vht_capab": "",
  686. "vht_oper_chwidth": "0",
  687. "vht_oper_centr_freq_seg0_idx": "0",
  688. }
  689. hapd2 = hostapd.add_ap(apdev[1], params)
  690. bssid2 = apdev[1]['bssid']
  691. dev[0].scan_for_bss(bssid, freq=5180)
  692. dev[0].scan_for_bss(bssid2, freq=5180)
  693. dev[0].connect("test", scan_freq="5180", key_mgmt="NONE")
  694. if dev[0].get_status_field('bssid') != bssid2:
  695. raise Exception("Unexpected BSS selected")
  696. est = dev[0].get_bss(bssid)['est_throughput']
  697. if est != "135000":
  698. raise Exception("Unexpected BSS0 est_throughput: " + est)
  699. est = dev[0].get_bss(bssid2)['est_throughput']
  700. if est != "135001":
  701. raise Exception("Unexpected BSS1 est_throughput: " + est)
  702. finally:
  703. dev[0].request("DISCONNECT")
  704. if hapd2:
  705. hapd2.request("DISABLE")
  706. subprocess.call(['iw', 'reg', 'set', '00'])
  707. dev[0].flush_scan_cache()
  708. def test_ap_vht80_pwr_constraint(dev, apdev):
  709. """VHT with 80 MHz channel width and local power constraint"""
  710. hapd = None
  711. try:
  712. params = { "ssid": "vht",
  713. "country_code": "FI",
  714. "hw_mode": "a",
  715. "channel": "36",
  716. "ht_capab": "[HT40+]",
  717. "ieee80211d": "1",
  718. "local_pwr_constraint": "3",
  719. "ieee80211n": "1",
  720. "ieee80211ac": "1",
  721. "vht_oper_chwidth": "1",
  722. "vht_oper_centr_freq_seg0_idx": "42" }
  723. hapd = hostapd.add_ap(apdev[0], params)
  724. dev[0].connect("vht", key_mgmt="NONE", scan_freq="5180")
  725. except Exception, e:
  726. if isinstance(e, Exception) and str(e) == "AP startup failed":
  727. if not vht_supported():
  728. raise HwsimSkip("80 MHz channel not supported in regulatory information")
  729. raise
  730. finally:
  731. dev[0].request("DISCONNECT")
  732. if hapd:
  733. hapd.request("DISABLE")
  734. subprocess.call(['iw', 'reg', 'set', '00'])
  735. dev[0].flush_scan_cache()
  736. def test_ap_vht_use_sta_nsts(dev, apdev):
  737. """VHT with 80 MHz channel width and use_sta_nsts=1"""
  738. try:
  739. hapd = None
  740. params = { "ssid": "vht",
  741. "country_code": "FI",
  742. "hw_mode": "a",
  743. "channel": "36",
  744. "ht_capab": "[HT40+]",
  745. "ieee80211n": "1",
  746. "ieee80211ac": "1",
  747. "vht_oper_chwidth": "1",
  748. "vht_oper_centr_freq_seg0_idx": "42",
  749. "use_sta_nsts": "1" }
  750. hapd = hostapd.add_ap(apdev[0], params)
  751. bssid = apdev[0]['bssid']
  752. dev[0].connect("vht", key_mgmt="NONE", scan_freq="5180")
  753. hwsim_utils.test_connectivity(dev[0], hapd)
  754. except Exception, e:
  755. if isinstance(e, Exception) and str(e) == "AP startup failed":
  756. if not vht_supported():
  757. raise HwsimSkip("80 MHz channel not supported in regulatory information")
  758. raise
  759. finally:
  760. dev[0].request("DISCONNECT")
  761. if hapd:
  762. hapd.request("DISABLE")
  763. subprocess.call(['iw', 'reg', 'set', '00'])
  764. dev[0].flush_scan_cache()
  765. def test_ap_vht_tkip(dev, apdev):
  766. """VHT and TKIP"""
  767. try:
  768. hapd = None
  769. params = { "ssid": "vht",
  770. "wpa": "1",
  771. "wpa_key_mgmt": "WPA-PSK",
  772. "wpa_pairwise": "TKIP",
  773. "wpa_passphrase": "12345678",
  774. "country_code": "FI",
  775. "hw_mode": "a",
  776. "channel": "36",
  777. "ht_capab": "[HT40+]",
  778. "ieee80211n": "1",
  779. "ieee80211ac": "1",
  780. "vht_oper_chwidth": "1",
  781. "vht_oper_centr_freq_seg0_idx": "42" }
  782. hapd = hostapd.add_ap(apdev[0], params)
  783. bssid = apdev[0]['bssid']
  784. dev[0].connect("vht", psk="12345678", scan_freq="5180")
  785. hwsim_utils.test_connectivity(dev[0], hapd)
  786. sig = dev[0].request("SIGNAL_POLL").splitlines()
  787. if "FREQUENCY=5180" not in sig:
  788. raise Exception("Unexpected SIGNAL_POLL value(1): " + str(sig))
  789. if "WIDTH=20 MHz (no HT)" not in sig:
  790. raise Exception("Unexpected SIGNAL_POLL value(2): " + str(sig))
  791. status = hapd.get_status()
  792. logger.info("hostapd STATUS: " + str(status))
  793. if status["ieee80211n"] != "0":
  794. raise Exception("Unexpected STATUS ieee80211n value")
  795. if status["ieee80211ac"] != "0":
  796. raise Exception("Unexpected STATUS ieee80211ac value")
  797. if status["secondary_channel"] != "0":
  798. raise Exception("Unexpected STATUS secondary_channel value")
  799. except Exception, e:
  800. if isinstance(e, Exception) and str(e) == "AP startup failed":
  801. if not vht_supported():
  802. raise HwsimSkip("80 MHz channel not supported in regulatory information")
  803. raise
  804. finally:
  805. dev[0].request("DISCONNECT")
  806. if hapd:
  807. hapd.request("DISABLE")
  808. subprocess.call(['iw', 'reg', 'set', '00'])
  809. dev[0].flush_scan_cache()
  810. def test_ap_vht_40_fallback_to_20(devs, apdevs):
  811. """VHT and 40 MHz channel configuration falling back to 20 MHz"""
  812. dev = devs[0]
  813. ap = apdevs[0]
  814. try:
  815. hapd = None
  816. params = { "ssid": "test-vht40",
  817. "country_code": "US",
  818. "hw_mode": "a",
  819. "basic_rates": "60 120 240",
  820. "channel": "161",
  821. "ieee80211d": "1",
  822. "ieee80211h": "1",
  823. "ieee80211n": "1",
  824. "ieee80211ac": "1",
  825. "ht_capab": "[HT40+][SHORT-GI-20][SHORT-GI-40][DSSS_CCK-40]",
  826. "vht_capab": "[RXLDPC][SHORT-GI-80][TX-STBC-2BY1][RX-STBC1][MAX-MPDU-11454][MAX-A-MPDU-LEN-EXP7]",
  827. "vht_oper_chwidth": "0",
  828. "vht_oper_centr_freq_seg0_idx": "155",
  829. }
  830. hapd = hostapd.add_ap(ap, params)
  831. dev.connect("test-vht40", scan_freq="5805", key_mgmt="NONE")
  832. hwsim_utils.test_connectivity(dev, hapd)
  833. finally:
  834. dev.request("DISCONNECT")
  835. if hapd:
  836. hapd.request("DISABLE")
  837. subprocess.call(['iw', 'reg', 'set', '00'])
  838. dev.flush_scan_cache()