test_ap_ht.py 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126
  1. # Test cases for HT operations with hostapd
  2. # Copyright (c) 2013-2014, 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. import time
  7. import logging
  8. logger = logging.getLogger()
  9. import struct
  10. import subprocess
  11. import hostapd
  12. from utils import HwsimSkip, alloc_fail
  13. import hwsim_utils
  14. from test_ap_csa import csa_supported
  15. def clear_scan_cache(ifname):
  16. subprocess.call(['ifconfig', ifname, 'up'])
  17. subprocess.call(['iw', ifname, 'scan', 'freq', '2412', 'flush'])
  18. time.sleep(0.1)
  19. subprocess.call(['ifconfig', ifname, 'down'])
  20. def test_ap_ht40_scan(dev, apdev):
  21. """HT40 co-ex scan"""
  22. clear_scan_cache(apdev[0]['ifname'])
  23. params = { "ssid": "test-ht40",
  24. "channel": "5",
  25. "ht_capab": "[HT40-]"}
  26. hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
  27. state = hapd.get_status_field("state")
  28. if state != "HT_SCAN":
  29. time.sleep(0.1)
  30. state = hapd.get_status_field("state")
  31. if state != "HT_SCAN":
  32. raise Exception("Unexpected interface state - expected HT_SCAN")
  33. ev = hapd.wait_event(["AP-ENABLED"], timeout=10)
  34. if not ev:
  35. raise Exception("AP setup timed out")
  36. state = hapd.get_status_field("state")
  37. if state != "ENABLED":
  38. raise Exception("Unexpected interface state - expected ENABLED")
  39. freq = hapd.get_status_field("freq")
  40. if freq != "2432":
  41. raise Exception("Unexpected frequency")
  42. pri = hapd.get_status_field("channel")
  43. if pri != "5":
  44. raise Exception("Unexpected primary channel")
  45. sec = hapd.get_status_field("secondary_channel")
  46. if sec != "-1":
  47. raise Exception("Unexpected secondary channel")
  48. dev[0].connect("test-ht40", key_mgmt="NONE", scan_freq=freq)
  49. def test_ap_ht40_scan_conflict(dev, apdev):
  50. """HT40 co-ex scan conflict"""
  51. clear_scan_cache(apdev[0]['ifname'])
  52. params = { "ssid": "test-ht40",
  53. "channel": "6",
  54. "ht_capab": "[HT40+]"}
  55. hostapd.add_ap(apdev[1]['ifname'], params)
  56. params = { "ssid": "test-ht40",
  57. "channel": "5",
  58. "ht_capab": "[HT40-]"}
  59. hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
  60. state = hapd.get_status_field("state")
  61. if state != "HT_SCAN":
  62. time.sleep(0.1)
  63. state = hapd.get_status_field("state")
  64. if state != "HT_SCAN":
  65. raise Exception("Unexpected interface state - expected HT_SCAN")
  66. ev = hapd.wait_event(["AP-ENABLED"], timeout=10)
  67. if not ev:
  68. raise Exception("AP setup timed out")
  69. state = hapd.get_status_field("state")
  70. if state != "ENABLED":
  71. raise Exception("Unexpected interface state - expected ENABLED")
  72. freq = hapd.get_status_field("freq")
  73. if freq != "2432":
  74. raise Exception("Unexpected frequency")
  75. pri = hapd.get_status_field("channel")
  76. if pri != "5":
  77. raise Exception("Unexpected primary channel")
  78. sec = hapd.get_status_field("secondary_channel")
  79. if sec != "0":
  80. raise Exception("Unexpected secondary channel: " + sec)
  81. dev[0].connect("test-ht40", key_mgmt="NONE", scan_freq=freq)
  82. def test_ap_ht40_scan_conflict2(dev, apdev):
  83. """HT40 co-ex scan conflict (HT40-)"""
  84. clear_scan_cache(apdev[0]['ifname'])
  85. params = { "ssid": "test-ht40",
  86. "channel": "11",
  87. "ht_capab": "[HT40-]"}
  88. hostapd.add_ap(apdev[1]['ifname'], params)
  89. params = { "ssid": "test-ht40",
  90. "channel": "1",
  91. "ht_capab": "[HT40+]"}
  92. hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
  93. state = hapd.get_status_field("state")
  94. if state != "HT_SCAN":
  95. time.sleep(0.1)
  96. state = hapd.get_status_field("state")
  97. if state != "HT_SCAN":
  98. raise Exception("Unexpected interface state - expected HT_SCAN")
  99. ev = hapd.wait_event(["AP-ENABLED"], timeout=10)
  100. if not ev:
  101. raise Exception("AP setup timed out")
  102. state = hapd.get_status_field("state")
  103. if state != "ENABLED":
  104. raise Exception("Unexpected interface state - expected ENABLED")
  105. freq = hapd.get_status_field("freq")
  106. if freq != "2412":
  107. raise Exception("Unexpected frequency")
  108. pri = hapd.get_status_field("channel")
  109. if pri != "1":
  110. raise Exception("Unexpected primary channel")
  111. sec = hapd.get_status_field("secondary_channel")
  112. if sec != "0":
  113. raise Exception("Unexpected secondary channel: " + sec)
  114. dev[0].connect("test-ht40", key_mgmt="NONE", scan_freq=freq)
  115. def test_ap_ht40_scan_not_affected(dev, apdev):
  116. """HT40 co-ex scan and other BSS not affected"""
  117. clear_scan_cache(apdev[0]['ifname'])
  118. params = { "ssid": "test-ht20",
  119. "channel": "11" }
  120. hostapd.add_ap(apdev[1]['ifname'], params)
  121. subprocess.call(['ifconfig', apdev[0]['ifname'], 'up'])
  122. subprocess.call(['iw', apdev[0]['ifname'], 'scan', 'freq', '2462'],
  123. stdout=open('/dev/null', 'w'))
  124. time.sleep(0.1)
  125. subprocess.call(['ifconfig', apdev[0]['ifname'], 'down'])
  126. params = { "ssid": "test-ht40",
  127. "channel": "1",
  128. "ht_capab": "[HT40+]"}
  129. hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
  130. state = hapd.get_status_field("state")
  131. if state != "HT_SCAN":
  132. time.sleep(0.1)
  133. state = hapd.get_status_field("state")
  134. if state != "HT_SCAN":
  135. raise Exception("Unexpected interface state - expected HT_SCAN")
  136. ev = hapd.wait_event(["AP-ENABLED"], timeout=10)
  137. if not ev:
  138. raise Exception("AP setup timed out")
  139. state = hapd.get_status_field("state")
  140. if state != "ENABLED":
  141. raise Exception("Unexpected interface state - expected ENABLED")
  142. freq = hapd.get_status_field("freq")
  143. if freq != "2412":
  144. raise Exception("Unexpected frequency")
  145. pri = hapd.get_status_field("channel")
  146. if pri != "1":
  147. raise Exception("Unexpected primary channel")
  148. sec = hapd.get_status_field("secondary_channel")
  149. if sec != "1":
  150. raise Exception("Unexpected secondary channel: " + sec)
  151. dev[0].connect("test-ht40", key_mgmt="NONE", scan_freq=freq)
  152. def test_ap_ht40_scan_legacy_conflict(dev, apdev):
  153. """HT40 co-ex scan conflict with legacy 20 MHz AP"""
  154. clear_scan_cache(apdev[0]['ifname'])
  155. params = { "ssid": "legacy-20",
  156. "channel": "7", "ieee80211n": "0" }
  157. hostapd.add_ap(apdev[1]['ifname'], params)
  158. params = { "ssid": "test-ht40",
  159. "channel": "5",
  160. "ht_capab": "[HT40-]"}
  161. hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
  162. state = hapd.get_status_field("state")
  163. if state != "HT_SCAN":
  164. time.sleep(0.1)
  165. state = hapd.get_status_field("state")
  166. if state != "HT_SCAN":
  167. raise Exception("Unexpected interface state - expected HT_SCAN")
  168. ev = hapd.wait_event(["AP-ENABLED"], timeout=10)
  169. if not ev:
  170. raise Exception("AP setup timed out")
  171. state = hapd.get_status_field("state")
  172. if state != "ENABLED":
  173. raise Exception("Unexpected interface state - expected ENABLED")
  174. freq = hapd.get_status_field("freq")
  175. if freq != "2432":
  176. raise Exception("Unexpected frequency: " + freq)
  177. pri = hapd.get_status_field("channel")
  178. if pri != "5":
  179. raise Exception("Unexpected primary channel: " + pri)
  180. sec = hapd.get_status_field("secondary_channel")
  181. if sec != "0":
  182. raise Exception("Unexpected secondary channel: " + sec)
  183. dev[0].connect("test-ht40", key_mgmt="NONE", scan_freq=freq)
  184. def test_ap_ht40_scan_ht20_conflict(dev, apdev):
  185. """HT40 co-ex scan conflict with HT 20 MHz AP"""
  186. clear_scan_cache(apdev[0]['ifname'])
  187. params = { "ssid": "ht-20",
  188. "channel": "7", "ieee80211n": "1" }
  189. hostapd.add_ap(apdev[1]['ifname'], params)
  190. params = { "ssid": "test-ht40",
  191. "channel": "5",
  192. "ht_capab": "[HT40-]"}
  193. hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
  194. state = hapd.get_status_field("state")
  195. if state != "HT_SCAN":
  196. time.sleep(0.1)
  197. state = hapd.get_status_field("state")
  198. if state != "HT_SCAN":
  199. raise Exception("Unexpected interface state - expected HT_SCAN")
  200. ev = hapd.wait_event(["AP-ENABLED"], timeout=10)
  201. if not ev:
  202. raise Exception("AP setup timed out")
  203. state = hapd.get_status_field("state")
  204. if state != "ENABLED":
  205. raise Exception("Unexpected interface state - expected ENABLED")
  206. freq = hapd.get_status_field("freq")
  207. if freq != "2432":
  208. raise Exception("Unexpected frequency: " + freq)
  209. pri = hapd.get_status_field("channel")
  210. if pri != "5":
  211. raise Exception("Unexpected primary channel: " + pri)
  212. sec = hapd.get_status_field("secondary_channel")
  213. if sec != "0":
  214. raise Exception("Unexpected secondary channel: " + sec)
  215. dev[0].connect("test-ht40", key_mgmt="NONE", scan_freq=freq)
  216. def test_ap_ht40_scan_intolerant(dev, apdev):
  217. """HT40 co-ex scan finding an AP advertising 40 MHz intolerant"""
  218. clear_scan_cache(apdev[0]['ifname'])
  219. params = { "ssid": "another-bss",
  220. "channel": "1",
  221. "ht_capab": "[40-INTOLERANT]" }
  222. hostapd.add_ap(apdev[1]['ifname'], params)
  223. params = { "ssid": "test-ht40",
  224. "channel": "1",
  225. "ht_capab": "[HT40+]"}
  226. hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
  227. state = hapd.get_status_field("state")
  228. if state != "HT_SCAN":
  229. time.sleep(0.1)
  230. state = hapd.get_status_field("state")
  231. if state != "HT_SCAN":
  232. raise Exception("Unexpected interface state - expected HT_SCAN")
  233. ev = hapd.wait_event(["AP-ENABLED"], timeout=10)
  234. if not ev:
  235. raise Exception("AP setup timed out")
  236. state = hapd.get_status_field("state")
  237. if state != "ENABLED":
  238. raise Exception("Unexpected interface state - expected ENABLED")
  239. freq = hapd.get_status_field("freq")
  240. if freq != "2412":
  241. raise Exception("Unexpected frequency: " + freq)
  242. pri = hapd.get_status_field("channel")
  243. if pri != "1":
  244. raise Exception("Unexpected primary channel: " + pri)
  245. sec = hapd.get_status_field("secondary_channel")
  246. if sec != "0":
  247. raise Exception("Unexpected secondary channel: " + sec)
  248. dev[0].connect("test-ht40", key_mgmt="NONE", scan_freq=freq)
  249. def test_ap_ht40_scan_match(dev, apdev):
  250. """HT40 co-ex scan matching configuration"""
  251. clear_scan_cache(apdev[0]['ifname'])
  252. params = { "ssid": "test-ht40",
  253. "channel": "5",
  254. "ht_capab": "[HT40-]"}
  255. hostapd.add_ap(apdev[1]['ifname'], params)
  256. params = { "ssid": "test-ht40",
  257. "channel": "5",
  258. "ht_capab": "[HT40-]"}
  259. hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
  260. state = hapd.get_status_field("state")
  261. if state != "HT_SCAN":
  262. time.sleep(0.1)
  263. state = hapd.get_status_field("state")
  264. if state != "HT_SCAN":
  265. raise Exception("Unexpected interface state - expected HT_SCAN")
  266. ev = hapd.wait_event(["AP-ENABLED"], timeout=10)
  267. if not ev:
  268. raise Exception("AP setup timed out")
  269. state = hapd.get_status_field("state")
  270. if state != "ENABLED":
  271. raise Exception("Unexpected interface state - expected ENABLED")
  272. freq = hapd.get_status_field("freq")
  273. if freq != "2432":
  274. raise Exception("Unexpected frequency")
  275. pri = hapd.get_status_field("channel")
  276. if pri != "5":
  277. raise Exception("Unexpected primary channel")
  278. sec = hapd.get_status_field("secondary_channel")
  279. if sec != "-1":
  280. raise Exception("Unexpected secondary channel: " + sec)
  281. dev[0].connect("test-ht40", key_mgmt="NONE", scan_freq=freq)
  282. def test_ap_ht40_5ghz_match(dev, apdev):
  283. """HT40 co-ex scan on 5 GHz with matching pri/sec channel"""
  284. clear_scan_cache(apdev[0]['ifname'])
  285. try:
  286. hapd = None
  287. hapd2 = None
  288. params = { "ssid": "test-ht40",
  289. "hw_mode": "a",
  290. "channel": "36",
  291. "country_code": "US",
  292. "ht_capab": "[HT40+]"}
  293. hapd2 = hostapd.add_ap(apdev[1]['ifname'], params)
  294. params = { "ssid": "test-ht40",
  295. "hw_mode": "a",
  296. "channel": "36",
  297. "ht_capab": "[HT40+]"}
  298. hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
  299. state = hapd.get_status_field("state")
  300. if state != "HT_SCAN":
  301. time.sleep(0.1)
  302. state = hapd.get_status_field("state")
  303. if state != "HT_SCAN":
  304. raise Exception("Unexpected interface state - expected HT_SCAN")
  305. ev = hapd.wait_event(["AP-ENABLED"], timeout=10)
  306. if not ev:
  307. raise Exception("AP setup timed out")
  308. state = hapd.get_status_field("state")
  309. if state != "ENABLED":
  310. raise Exception("Unexpected interface state - expected ENABLED")
  311. freq = hapd.get_status_field("freq")
  312. if freq != "5180":
  313. raise Exception("Unexpected frequency")
  314. pri = hapd.get_status_field("channel")
  315. if pri != "36":
  316. raise Exception("Unexpected primary channel")
  317. sec = hapd.get_status_field("secondary_channel")
  318. if sec != "1":
  319. raise Exception("Unexpected secondary channel: " + sec)
  320. dev[0].connect("test-ht40", key_mgmt="NONE", scan_freq=freq)
  321. finally:
  322. dev[0].request("DISCONNECT")
  323. if hapd:
  324. hapd.request("DISABLE")
  325. if hapd2:
  326. hapd2.request("DISABLE")
  327. subprocess.call(['iw', 'reg', 'set', '00'])
  328. dev[0].flush_scan_cache()
  329. def test_ap_ht40_5ghz_switch(dev, apdev):
  330. """HT40 co-ex scan on 5 GHz switching pri/sec channel"""
  331. clear_scan_cache(apdev[0]['ifname'])
  332. try:
  333. hapd = None
  334. hapd2 = None
  335. params = { "ssid": "test-ht40",
  336. "hw_mode": "a",
  337. "channel": "36",
  338. "country_code": "US",
  339. "ht_capab": "[HT40+]"}
  340. hapd2 = hostapd.add_ap(apdev[1]['ifname'], params)
  341. params = { "ssid": "test-ht40",
  342. "hw_mode": "a",
  343. "channel": "40",
  344. "ht_capab": "[HT40-]"}
  345. hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
  346. state = hapd.get_status_field("state")
  347. if state != "HT_SCAN":
  348. time.sleep(0.1)
  349. state = hapd.get_status_field("state")
  350. if state != "HT_SCAN":
  351. raise Exception("Unexpected interface state - expected HT_SCAN")
  352. ev = hapd.wait_event(["AP-ENABLED"], timeout=10)
  353. if not ev:
  354. raise Exception("AP setup timed out")
  355. state = hapd.get_status_field("state")
  356. if state != "ENABLED":
  357. raise Exception("Unexpected interface state - expected ENABLED")
  358. freq = hapd.get_status_field("freq")
  359. if freq != "5180":
  360. raise Exception("Unexpected frequency: " + freq)
  361. pri = hapd.get_status_field("channel")
  362. if pri != "36":
  363. raise Exception("Unexpected primary channel: " + pri)
  364. sec = hapd.get_status_field("secondary_channel")
  365. if sec != "1":
  366. raise Exception("Unexpected secondary channel: " + sec)
  367. dev[0].connect("test-ht40", key_mgmt="NONE", scan_freq=freq)
  368. finally:
  369. dev[0].request("DISCONNECT")
  370. if hapd:
  371. hapd.request("DISABLE")
  372. if hapd2:
  373. hapd2.request("DISABLE")
  374. subprocess.call(['iw', 'reg', 'set', '00'])
  375. def test_ap_ht40_5ghz_switch2(dev, apdev):
  376. """HT40 co-ex scan on 5 GHz switching pri/sec channel (2)"""
  377. clear_scan_cache(apdev[0]['ifname'])
  378. try:
  379. hapd = None
  380. hapd2 = None
  381. params = { "ssid": "test-ht40",
  382. "hw_mode": "a",
  383. "channel": "36",
  384. "country_code": "US",
  385. "ht_capab": "[HT40+]"}
  386. hapd2 = hostapd.add_ap(apdev[1]['ifname'], params)
  387. id = dev[0].add_network()
  388. dev[0].set_network(id, "mode", "2")
  389. dev[0].set_network_quoted(id, "ssid", "wpas-ap-open")
  390. dev[0].set_network(id, "key_mgmt", "NONE")
  391. dev[0].set_network(id, "frequency", "5200")
  392. dev[0].set_network(id, "scan_freq", "5200")
  393. dev[0].select_network(id)
  394. time.sleep(1)
  395. params = { "ssid": "test-ht40",
  396. "hw_mode": "a",
  397. "channel": "40",
  398. "ht_capab": "[HT40-]"}
  399. hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
  400. state = hapd.get_status_field("state")
  401. if state != "HT_SCAN":
  402. time.sleep(0.1)
  403. state = hapd.get_status_field("state")
  404. if state != "HT_SCAN":
  405. raise Exception("Unexpected interface state - expected HT_SCAN")
  406. ev = hapd.wait_event(["AP-ENABLED"], timeout=10)
  407. if not ev:
  408. raise Exception("AP setup timed out")
  409. state = hapd.get_status_field("state")
  410. if state != "ENABLED":
  411. raise Exception("Unexpected interface state - expected ENABLED")
  412. freq = hapd.get_status_field("freq")
  413. if freq != "5180":
  414. raise Exception("Unexpected frequency: " + freq)
  415. pri = hapd.get_status_field("channel")
  416. if pri != "36":
  417. raise Exception("Unexpected primary channel: " + pri)
  418. sec = hapd.get_status_field("secondary_channel")
  419. if sec != "1":
  420. raise Exception("Unexpected secondary channel: " + sec)
  421. dev[0].connect("test-ht40", key_mgmt="NONE", scan_freq=freq)
  422. finally:
  423. dev[0].request("DISCONNECT")
  424. if hapd:
  425. hapd.request("DISABLE")
  426. if hapd2:
  427. hapd2.request("DISABLE")
  428. subprocess.call(['iw', 'reg', 'set', '00'])
  429. dev[0].flush_scan_cache()
  430. def test_obss_scan(dev, apdev):
  431. """Overlapping BSS scan request"""
  432. params = { "ssid": "obss-scan",
  433. "channel": "6",
  434. "ht_capab": "[HT40-]",
  435. "obss_interval": "10" }
  436. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  437. params = { "ssid": "another-bss",
  438. "channel": "9",
  439. "ieee80211n": "0" }
  440. hostapd.add_ap(apdev[1]['ifname'], params)
  441. dev[0].connect("obss-scan", key_mgmt="NONE", scan_freq="2437")
  442. hapd.set("ext_mgmt_frame_handling", "1")
  443. logger.info("Waiting for OBSS scan to occur")
  444. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-STARTED"], timeout=15)
  445. if ev is None:
  446. raise Exception("Timed out while waiting for OBSS scan to start")
  447. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], timeout=10)
  448. if ev is None:
  449. raise Exception("Timed out while waiting for OBSS scan results")
  450. received = False
  451. for i in range(0, 4):
  452. frame = hapd.mgmt_rx(timeout=5)
  453. if frame is None:
  454. raise Exception("MGMT RX wait timed out")
  455. if frame['subtype'] != 13:
  456. continue
  457. payload = frame['payload']
  458. if len(payload) < 3:
  459. continue
  460. (category, action, ie) = struct.unpack('BBB', payload[0:3])
  461. if category != 4:
  462. continue
  463. if action != 0:
  464. continue
  465. if ie == 72:
  466. logger.info("20/40 BSS Coexistence report received")
  467. received = True
  468. break
  469. if not received:
  470. raise Exception("20/40 BSS Coexistence report not seen")
  471. def test_obss_scan_40_intolerant(dev, apdev):
  472. """Overlapping BSS scan request with 40 MHz intolerant AP"""
  473. params = { "ssid": "obss-scan",
  474. "channel": "6",
  475. "ht_capab": "[HT40-]",
  476. "obss_interval": "10" }
  477. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  478. params = { "ssid": "another-bss",
  479. "channel": "7",
  480. "ht_capab": "[40-INTOLERANT]" }
  481. hostapd.add_ap(apdev[1]['ifname'], params)
  482. dev[0].connect("obss-scan", key_mgmt="NONE", scan_freq="2437")
  483. hapd.set("ext_mgmt_frame_handling", "1")
  484. logger.info("Waiting for OBSS scan to occur")
  485. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-STARTED"], timeout=15)
  486. if ev is None:
  487. raise Exception("Timed out while waiting for OBSS scan to start")
  488. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], timeout=10)
  489. if ev is None:
  490. raise Exception("Timed out while waiting for OBSS scan results")
  491. received = False
  492. for i in range(0, 4):
  493. frame = hapd.mgmt_rx(timeout=5)
  494. if frame is None:
  495. raise Exception("MGMT RX wait timed out")
  496. if frame['subtype'] != 13:
  497. continue
  498. payload = frame['payload']
  499. if len(payload) < 3:
  500. continue
  501. (category, action, ie) = struct.unpack('BBB', payload[0:3])
  502. if category != 4:
  503. continue
  504. if action != 0:
  505. continue
  506. if ie == 72:
  507. logger.info("20/40 BSS Coexistence report received")
  508. received = True
  509. break
  510. if not received:
  511. raise Exception("20/40 BSS Coexistence report not seen")
  512. def test_obss_coex_report_handling(dev, apdev):
  513. """Overlapping BSS scan report handling with obss_interval=0"""
  514. clear_scan_cache(apdev[0]['ifname'])
  515. params = { "ssid": "obss-scan",
  516. "channel": "6",
  517. "ht_capab": "[HT40-]" }
  518. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  519. bssid = apdev[0]['bssid']
  520. dev[0].connect("obss-scan", key_mgmt="NONE", scan_freq="2437")
  521. sec = hapd.get_status_field("secondary_channel")
  522. if sec != "-1":
  523. raise Exception("AP is not using 40 MHz channel")
  524. # 20/40 MHz co-ex report tests: number of invalid reports and a valid report
  525. # that forces 20 MHz channel.
  526. tests = [ '0400', '040048', '04004801', '0400480000', '0400490100',
  527. '040048ff0000', '04004801ff49ff00', '04004801004900',
  528. '0400480100490101', '0400480100490201ff',
  529. '040048010449020005' ]
  530. for msg in tests:
  531. req = "MGMT_TX {} {} freq=2437 action={}".format(bssid, bssid, msg)
  532. if "OK" not in dev[0].request(req):
  533. raise Exception("Could not send management frame")
  534. time.sleep(0.5)
  535. sec = hapd.get_status_field("secondary_channel")
  536. if sec != "0":
  537. raise Exception("AP did not move to 20 MHz channel")
  538. def test_obss_coex_report_handling1(dev, apdev):
  539. """Overlapping BSS scan report handling with obss_interval=1"""
  540. clear_scan_cache(apdev[0]['ifname'])
  541. params = { "ssid": "obss-scan",
  542. "channel": "6",
  543. "ht_capab": "[HT40+]",
  544. "obss_interval": "1" }
  545. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  546. bssid = apdev[0]['bssid']
  547. dev[0].connect("obss-scan", key_mgmt="NONE", scan_freq="2437")
  548. sec = hapd.get_status_field("secondary_channel")
  549. if sec != "1":
  550. raise Exception("AP is not using 40 MHz channel")
  551. # 20/40 MHz co-ex report forcing 20 MHz channel
  552. msg = '040048010449020005'
  553. req = "MGMT_TX {} {} freq=2437 action={}".format(bssid, bssid, msg)
  554. if "OK" not in dev[0].request(req):
  555. raise Exception("Could not send management frame")
  556. time.sleep(0.5)
  557. sec = hapd.get_status_field("secondary_channel")
  558. if sec != "0":
  559. raise Exception("AP did not move to 20 MHz channel")
  560. # No 20/40 MHz co-ex reports forcing 20 MHz channel during next interval
  561. for i in range(20):
  562. sec = hapd.get_status_field("secondary_channel")
  563. if sec == "1":
  564. break
  565. time.sleep(0.5)
  566. if sec != "1":
  567. raise Exception("AP did not return to 40 MHz channel")
  568. def test_olbc(dev, apdev):
  569. """OLBC detection"""
  570. params = { "ssid": "test-olbc",
  571. "channel": "6",
  572. "ht_capab": "[HT40-]",
  573. "ap_table_expiration_time": "2" }
  574. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  575. status = hapd.get_status()
  576. if status['olbc'] != '0' or status['olbc_ht'] != '0':
  577. raise Exception("Unexpected OLBC information")
  578. params = { "ssid": "olbc-ap",
  579. "hw_mode": "b",
  580. "channel": "6",
  581. "wmm_enabled": "0" }
  582. hostapd.add_ap(apdev[1]['ifname'], params)
  583. time.sleep(0.5)
  584. status = hapd.get_status()
  585. if status['olbc'] != '1' or status['olbc_ht'] != '1':
  586. raise Exception("Missing OLBC information")
  587. hapd_global = hostapd.HostapdGlobal()
  588. hapd_global.remove(apdev[1]['ifname'])
  589. logger.info("Waiting for OLBC state to time out")
  590. cleared = False
  591. for i in range(0, 15):
  592. time.sleep(1)
  593. status = hapd.get_status()
  594. if status['olbc'] == '0' and status['olbc_ht'] == '0':
  595. cleared = True
  596. break
  597. if not cleared:
  598. raise Exception("OLBC state did nto time out")
  599. def test_olbc_table_limit(dev, apdev):
  600. """OLBC AP table size limit"""
  601. ifname1 = apdev[0]['ifname']
  602. ifname2 = apdev[0]['ifname'] + '-2'
  603. ifname3 = apdev[0]['ifname'] + '-3'
  604. hostapd.add_bss('phy3', ifname1, 'bss-1.conf')
  605. hostapd.add_bss('phy3', ifname2, 'bss-2.conf')
  606. hostapd.add_bss('phy3', ifname3, 'bss-3.conf')
  607. params = { "ssid": "test-olbc",
  608. "channel": "1",
  609. "ap_table_max_size": "2" }
  610. hapd = hostapd.add_ap(apdev[1]['ifname'], params)
  611. time.sleep(0.3)
  612. with alloc_fail(hapd, 1, "ap_list_process_beacon"):
  613. time.sleep(0.3)
  614. hapd.set("ap_table_max_size", "1")
  615. time.sleep(0.3)
  616. hapd.set("ap_table_max_size", "0")
  617. time.sleep(0.3)
  618. def test_olbc_5ghz(dev, apdev):
  619. """OLBC detection on 5 GHz"""
  620. try:
  621. hapd = None
  622. hapd2 = None
  623. params = { "ssid": "test-olbc",
  624. "country_code": "FI",
  625. "hw_mode": "a",
  626. "channel": "36",
  627. "ht_capab": "[HT40+]" }
  628. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  629. status = hapd.get_status()
  630. if status['olbc'] != '0' or status['olbc_ht'] != '0':
  631. raise Exception("Unexpected OLBC information")
  632. params = { "ssid": "olbc-ap",
  633. "country_code": "FI",
  634. "hw_mode": "a",
  635. "channel": "36",
  636. "ieee80211n": "0",
  637. "wmm_enabled": "0" }
  638. hapd2 = hostapd.add_ap(apdev[1]['ifname'], params)
  639. found = False
  640. for i in range(20):
  641. time.sleep(0.1)
  642. status = hapd.get_status()
  643. logger.debug('olbc_ht: ' + status['olbc_ht'])
  644. if status['olbc_ht'] == '1':
  645. found = True
  646. break
  647. if not found:
  648. raise Exception("Missing OLBC information")
  649. finally:
  650. if hapd:
  651. hapd.request("DISABLE")
  652. if hapd2:
  653. hapd2.request("DISABLE")
  654. subprocess.call(['iw', 'reg', 'set', '00'])
  655. def test_ap_require_ht(dev, apdev):
  656. """Require HT"""
  657. params = { "ssid": "require-ht",
  658. "require_ht": "1" }
  659. hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
  660. dev[1].connect("require-ht", key_mgmt="NONE", scan_freq="2412",
  661. disable_ht="1", wait_connect=False)
  662. dev[0].connect("require-ht", key_mgmt="NONE", scan_freq="2412")
  663. ev = dev[1].wait_event(["CTRL-EVENT-ASSOC-REJECT"])
  664. if ev is None:
  665. raise Exception("Association rejection timed out")
  666. if "status_code=27" not in ev:
  667. raise Exception("Unexpected rejection status code")
  668. dev[2].connect("require-ht", key_mgmt="NONE", scan_freq="2412",
  669. ht_mcs="0x01 00 00 00 00 00 00 00 00 00",
  670. disable_max_amsdu="1", ampdu_factor="2",
  671. ampdu_density="1", disable_ht40="1", disable_sgi="1",
  672. disable_ldpc="1")
  673. def test_ap_require_ht_limited_rates(dev, apdev):
  674. """Require HT with limited supported rates"""
  675. params = { "ssid": "require-ht",
  676. "supported_rates": "60 120 240 360 480 540",
  677. "require_ht": "1" }
  678. hapd = hostapd.add_ap(apdev[0]['ifname'], params, wait_enabled=False)
  679. dev[1].connect("require-ht", key_mgmt="NONE", scan_freq="2412",
  680. disable_ht="1", wait_connect=False)
  681. dev[0].connect("require-ht", key_mgmt="NONE", scan_freq="2412")
  682. ev = dev[1].wait_event(["CTRL-EVENT-ASSOC-REJECT"])
  683. if ev is None:
  684. raise Exception("Association rejection timed out")
  685. if "status_code=27" not in ev:
  686. raise Exception("Unexpected rejection status code")
  687. def test_ap_ht_capab_not_supported(dev, apdev):
  688. """HT configuration with driver not supporting all ht_capab entries"""
  689. params = { "ssid": "test-ht40",
  690. "channel": "5",
  691. "ht_capab": "[HT40-][LDPC][SMPS-STATIC][SMPS-DYNAMIC][GF][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][RX-STBC12][RX-STBC123][DELAYED-BA][MAX-AMSDU-7935][DSSS_CCK-40][LSIG-TXOP-PROT]"}
  692. hapd = hostapd.add_ap(apdev[0]['ifname'], params, no_enable=True)
  693. if "FAIL" not in hapd.request("ENABLE"):
  694. raise Exception("Unexpected ENABLE success")
  695. def test_ap_ht_40mhz_intolerant_sta(dev, apdev):
  696. """Associated STA indicating 40 MHz intolerant"""
  697. clear_scan_cache(apdev[0]['ifname'])
  698. params = { "ssid": "intolerant",
  699. "channel": "6",
  700. "ht_capab": "[HT40-]" }
  701. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  702. if hapd.get_status_field("num_sta_ht40_intolerant") != "0":
  703. raise Exception("Unexpected num_sta_ht40_intolerant value")
  704. if hapd.get_status_field("secondary_channel") != "-1":
  705. raise Exception("Unexpected secondary_channel")
  706. dev[0].connect("intolerant", key_mgmt="NONE", scan_freq="2437")
  707. if hapd.get_status_field("num_sta_ht40_intolerant") != "0":
  708. raise Exception("Unexpected num_sta_ht40_intolerant value")
  709. if hapd.get_status_field("secondary_channel") != "-1":
  710. raise Exception("Unexpected secondary_channel")
  711. dev[2].connect("intolerant", key_mgmt="NONE", scan_freq="2437",
  712. ht40_intolerant="1")
  713. time.sleep(1)
  714. if hapd.get_status_field("num_sta_ht40_intolerant") != "1":
  715. raise Exception("Unexpected num_sta_ht40_intolerant value (expected 1)")
  716. if hapd.get_status_field("secondary_channel") != "0":
  717. raise Exception("Unexpected secondary_channel (did not disable 40 MHz)")
  718. dev[2].request("DISCONNECT")
  719. time.sleep(1)
  720. if hapd.get_status_field("num_sta_ht40_intolerant") != "0":
  721. raise Exception("Unexpected num_sta_ht40_intolerant value (expected 0)")
  722. if hapd.get_status_field("secondary_channel") != "-1":
  723. raise Exception("Unexpected secondary_channel (did not re-enable 40 MHz)")
  724. def test_ap_ht_40mhz_intolerant_ap(dev, apdev):
  725. """Associated STA reports 40 MHz intolerant AP after association"""
  726. clear_scan_cache(apdev[0]['ifname'])
  727. params = { "ssid": "ht",
  728. "channel": "6",
  729. "ht_capab": "[HT40-]",
  730. "obss_interval": "3" }
  731. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  732. dev[0].connect("ht", key_mgmt="NONE", scan_freq="2437")
  733. if hapd.get_status_field("secondary_channel") != "-1":
  734. raise Exception("Unexpected secondary channel information")
  735. logger.info("Start 40 MHz intolerant AP")
  736. params = { "ssid": "intolerant",
  737. "channel": "5",
  738. "ht_capab": "[40-INTOLERANT]" }
  739. hapd2 = hostapd.add_ap(apdev[1]['ifname'], params)
  740. logger.info("Waiting for co-ex report from STA")
  741. ok = False
  742. for i in range(0, 20):
  743. time.sleep(1)
  744. if hapd.get_status_field("secondary_channel") == "0":
  745. logger.info("AP moved to 20 MHz channel")
  746. ok = True
  747. break
  748. if not ok:
  749. raise Exception("AP did not move to 20 MHz channel")
  750. if "OK" not in hapd2.request("DISABLE"):
  751. raise Exception("Failed to disable 40 MHz intolerant AP")
  752. # make sure the intolerant AP disappears from scan results more quickly
  753. dev[0].scan(type="ONLY", freq="2432", only_new=True)
  754. dev[0].scan(type="ONLY", freq="2432", only_new=True)
  755. dev[0].dump_monitor()
  756. logger.info("Waiting for AP to move back to 40 MHz channel")
  757. ok = False
  758. for i in range(0, 30):
  759. time.sleep(1)
  760. if hapd.get_status_field("secondary_channel") == "-1":
  761. logger.info("AP moved to 40 MHz channel")
  762. ok = True
  763. break
  764. if not ok:
  765. raise Exception("AP did not move to 40 MHz channel")
  766. def test_ap_ht40_csa(dev, apdev):
  767. """HT with 40 MHz channel width and CSA"""
  768. csa_supported(dev[0])
  769. try:
  770. hapd = None
  771. params = { "ssid": "ht",
  772. "country_code": "US",
  773. "hw_mode": "a",
  774. "channel": "36",
  775. "ht_capab": "[HT40+]",
  776. "ieee80211n": "1" }
  777. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  778. dev[0].connect("ht", key_mgmt="NONE", scan_freq="5180")
  779. hwsim_utils.test_connectivity(dev[0], hapd)
  780. hapd.request("CHAN_SWITCH 5 5200 ht sec_channel_offset=-1 bandwidth=40")
  781. ev = hapd.wait_event(["AP-CSA-FINISHED"], timeout=10)
  782. if ev is None:
  783. raise Exception("CSA finished event timed out")
  784. if "freq=5200" not in ev:
  785. raise Exception("Unexpected channel in CSA finished event")
  786. ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=0.5)
  787. if ev is not None:
  788. raise Exception("Unexpected STA disconnection during CSA")
  789. hwsim_utils.test_connectivity(dev[0], hapd)
  790. hapd.request("CHAN_SWITCH 5 5180 ht sec_channel_offset=1 bandwidth=40")
  791. ev = hapd.wait_event(["AP-CSA-FINISHED"], timeout=10)
  792. if ev is None:
  793. raise Exception("CSA finished event timed out")
  794. if "freq=5180" not in ev:
  795. raise Exception("Unexpected channel in CSA finished event")
  796. ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=0.5)
  797. if ev is not None:
  798. raise Exception("Unexpected STA disconnection during CSA")
  799. hwsim_utils.test_connectivity(dev[0], hapd)
  800. finally:
  801. dev[0].request("DISCONNECT")
  802. if hapd:
  803. hapd.request("DISABLE")
  804. subprocess.call(['iw', 'reg', 'set', '00'])
  805. dev[0].flush_scan_cache()
  806. def test_ap_ht40_csa2(dev, apdev):
  807. """HT with 40 MHz channel width and CSA"""
  808. csa_supported(dev[0])
  809. try:
  810. hapd = None
  811. params = { "ssid": "ht",
  812. "country_code": "US",
  813. "hw_mode": "a",
  814. "channel": "36",
  815. "ht_capab": "[HT40+]",
  816. "ieee80211n": "1" }
  817. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  818. dev[0].connect("ht", key_mgmt="NONE", scan_freq="5180")
  819. hwsim_utils.test_connectivity(dev[0], hapd)
  820. hapd.request("CHAN_SWITCH 5 5220 ht sec_channel_offset=1 bandwidth=40")
  821. ev = hapd.wait_event(["AP-CSA-FINISHED"], timeout=10)
  822. if ev is None:
  823. raise Exception("CSA finished event timed out")
  824. if "freq=5220" not in ev:
  825. raise Exception("Unexpected channel in CSA finished event")
  826. ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=0.5)
  827. if ev is not None:
  828. raise Exception("Unexpected STA disconnection during CSA")
  829. hwsim_utils.test_connectivity(dev[0], hapd)
  830. hapd.request("CHAN_SWITCH 5 5180 ht sec_channel_offset=1 bandwidth=40")
  831. ev = hapd.wait_event(["AP-CSA-FINISHED"], timeout=10)
  832. if ev is None:
  833. raise Exception("CSA finished event timed out")
  834. if "freq=5180" not in ev:
  835. raise Exception("Unexpected channel in CSA finished event")
  836. ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=0.5)
  837. if ev is not None:
  838. raise Exception("Unexpected STA disconnection during CSA")
  839. hwsim_utils.test_connectivity(dev[0], hapd)
  840. finally:
  841. dev[0].request("DISCONNECT")
  842. if hapd:
  843. hapd.request("DISABLE")
  844. subprocess.call(['iw', 'reg', 'set', '00'])
  845. dev[0].flush_scan_cache()
  846. def test_ap_ht40_csa3(dev, apdev):
  847. """HT with 40 MHz channel width and CSA"""
  848. csa_supported(dev[0])
  849. try:
  850. hapd = None
  851. params = { "ssid": "ht",
  852. "country_code": "US",
  853. "hw_mode": "a",
  854. "channel": "36",
  855. "ht_capab": "[HT40+]",
  856. "ieee80211n": "1" }
  857. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  858. dev[0].connect("ht", key_mgmt="NONE", scan_freq="5180")
  859. hwsim_utils.test_connectivity(dev[0], hapd)
  860. hapd.request("CHAN_SWITCH 5 5240 ht sec_channel_offset=-1 bandwidth=40")
  861. ev = hapd.wait_event(["AP-CSA-FINISHED"], timeout=10)
  862. if ev is None:
  863. raise Exception("CSA finished event timed out")
  864. if "freq=5240" not in ev:
  865. raise Exception("Unexpected channel in CSA finished event")
  866. ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=0.5)
  867. if ev is not None:
  868. raise Exception("Unexpected STA disconnection during CSA")
  869. hwsim_utils.test_connectivity(dev[0], hapd)
  870. hapd.request("CHAN_SWITCH 5 5180 ht sec_channel_offset=1 bandwidth=40")
  871. ev = hapd.wait_event(["AP-CSA-FINISHED"], timeout=10)
  872. if ev is None:
  873. raise Exception("CSA finished event timed out")
  874. if "freq=5180" not in ev:
  875. raise Exception("Unexpected channel in CSA finished event")
  876. ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=0.5)
  877. if ev is not None:
  878. raise Exception("Unexpected STA disconnection during CSA")
  879. hwsim_utils.test_connectivity(dev[0], hapd)
  880. finally:
  881. dev[0].request("DISCONNECT")
  882. if hapd:
  883. hapd.request("DISABLE")
  884. subprocess.call(['iw', 'reg', 'set', '00'])
  885. dev[0].flush_scan_cache()
  886. def test_ap_ht_smps(dev, apdev):
  887. """SMPS AP configuration options"""
  888. params = { "ssid": "ht1", "ht_capab": "[SMPS-STATIC]" }
  889. try:
  890. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  891. except:
  892. raise HwsimSkip("Assume mac80211_hwsim was not recent enough to support SMPS")
  893. params = { "ssid": "ht2", "ht_capab": "[SMPS-DYNAMIC]" }
  894. hapd2 = hostapd.add_ap(apdev[1]['ifname'], params)
  895. dev[0].connect("ht1", key_mgmt="NONE", scan_freq="2412")
  896. dev[1].connect("ht2", key_mgmt="NONE", scan_freq="2412")
  897. hwsim_utils.test_connectivity(dev[0], hapd)
  898. hwsim_utils.test_connectivity(dev[1], hapd2)
  899. def test_prefer_ht20(dev, apdev):
  900. """Preference on HT20 over no-HT"""
  901. params = { "ssid": "test",
  902. "channel": "1",
  903. "ieee80211n": "0" }
  904. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  905. bssid = apdev[0]['bssid']
  906. params = { "ssid": "test",
  907. "channel": "1",
  908. "ieee80211n": "1" }
  909. hapd2 = hostapd.add_ap(apdev[1]['ifname'], params)
  910. bssid2 = apdev[1]['bssid']
  911. dev[0].scan_for_bss(bssid, freq=2412)
  912. dev[0].scan_for_bss(bssid2, freq=2412)
  913. dev[0].connect("test", key_mgmt="NONE", scan_freq="2412")
  914. if dev[0].get_status_field('bssid') != bssid2:
  915. raise Exception("Unexpected BSS selected")
  916. est = dev[0].get_bss(bssid)['est_throughput']
  917. if est != "54000":
  918. raise Exception("Unexpected BSS0 est_throughput: " + est)
  919. est = dev[0].get_bss(bssid2)['est_throughput']
  920. if est != "65000":
  921. raise Exception("Unexpected BSS1 est_throughput: " + est)
  922. def test_prefer_ht40(dev, apdev):
  923. """Preference on HT40 over HT20"""
  924. params = { "ssid": "test",
  925. "channel": "1",
  926. "ieee80211n": "1" }
  927. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  928. bssid = apdev[0]['bssid']
  929. params = { "ssid": "test",
  930. "channel": "1",
  931. "ieee80211n": "1",
  932. "ht_capab": "[HT40+]" }
  933. hapd2 = hostapd.add_ap(apdev[1]['ifname'], params)
  934. bssid2 = apdev[1]['bssid']
  935. dev[0].scan_for_bss(bssid, freq=2412)
  936. dev[0].scan_for_bss(bssid2, freq=2412)
  937. dev[0].connect("test", key_mgmt="NONE", scan_freq="2412")
  938. if dev[0].get_status_field('bssid') != bssid2:
  939. raise Exception("Unexpected BSS selected")
  940. est = dev[0].get_bss(bssid)['est_throughput']
  941. if est != "65000":
  942. raise Exception("Unexpected BSS0 est_throughput: " + est)
  943. est = dev[0].get_bss(bssid2)['est_throughput']
  944. if est != "135000":
  945. raise Exception("Unexpected BSS1 est_throughput: " + est)
  946. def test_prefer_ht20_during_roam(dev, apdev):
  947. """Preference on HT20 over no-HT in roaming consideration"""
  948. params = { "ssid": "test",
  949. "channel": "1",
  950. "ieee80211n": "0" }
  951. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  952. bssid = apdev[0]['bssid']
  953. dev[0].scan_for_bss(bssid, freq=2412)
  954. dev[0].connect("test", key_mgmt="NONE", scan_freq="2412")
  955. params = { "ssid": "test",
  956. "channel": "1",
  957. "ieee80211n": "1" }
  958. hapd2 = hostapd.add_ap(apdev[1]['ifname'], params)
  959. bssid2 = apdev[1]['bssid']
  960. dev[0].scan_for_bss(bssid2, freq=2412)
  961. dev[0].scan(freq=2412)
  962. dev[0].wait_connected()
  963. if dev[0].get_status_field('bssid') != bssid2:
  964. raise Exception("Unexpected BSS selected")
  965. def test_ap_ht40_5ghz_invalid_pair(dev, apdev):
  966. """HT40 on 5 GHz with invalid channel pair"""
  967. clear_scan_cache(apdev[0]['ifname'])
  968. try:
  969. params = { "ssid": "test-ht40",
  970. "hw_mode": "a",
  971. "channel": "40",
  972. "country_code": "US",
  973. "ht_capab": "[HT40+]"}
  974. hapd = hostapd.add_ap(apdev[1]['ifname'], params, wait_enabled=False)
  975. ev = hapd.wait_event(["AP-DISABLED"], timeout=10)
  976. if not ev:
  977. raise Exception("AP setup failure timed out")
  978. finally:
  979. subprocess.call(['iw', 'reg', 'set', '00'])