test_dfs.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. # Test cases for DFS
  2. # Copyright (c) 2013, Jouni Malinen <j@w1.fi>
  3. #
  4. # This software may be distributed under the terms of the BSD license.
  5. # See README for more details.
  6. import os
  7. import subprocess
  8. import time
  9. import logging
  10. logger = logging.getLogger()
  11. import hwsim_utils
  12. import hostapd
  13. from utils import HwsimSkip
  14. def wait_dfs_event(hapd, event, timeout):
  15. dfs_events = [ "DFS-RADAR-DETECTED", "DFS-NEW-CHANNEL",
  16. "DFS-CAC-START", "DFS-CAC-COMPLETED",
  17. "DFS-NOP-FINISHED", "AP-ENABLED", "AP-CSA-FINISHED" ]
  18. ev = hapd.wait_event(dfs_events, timeout=timeout)
  19. if not ev:
  20. raise Exception("DFS event timed out")
  21. if event and event not in ev:
  22. raise Exception("Unexpected DFS event")
  23. return ev
  24. def start_dfs_ap(ap, allow_failure=False, ssid="dfs", ht=True, ht40=False,
  25. ht40minus=False, vht80=False, vht20=False, chanlist=None):
  26. ifname = ap['ifname']
  27. logger.info("Starting AP " + ifname + " on DFS channel")
  28. hapd_global = hostapd.HostapdGlobal()
  29. hapd_global.remove(ifname)
  30. hapd_global.add(ifname)
  31. hapd = hostapd.Hostapd(ifname)
  32. if not hapd.ping():
  33. raise Exception("Could not ping hostapd")
  34. hapd.set_defaults()
  35. hapd.set("ssid", ssid)
  36. hapd.set("country_code", "FI")
  37. hapd.set("ieee80211d", "1")
  38. hapd.set("ieee80211h", "1")
  39. hapd.set("hw_mode", "a")
  40. hapd.set("channel", "52")
  41. if not ht:
  42. hapd.set("ieee80211n", "0")
  43. if ht40:
  44. hapd.set("ht_capab", "[HT40+]")
  45. elif ht40minus:
  46. hapd.set("ht_capab", "[HT40-]")
  47. hapd.set("channel", "56")
  48. if vht80:
  49. hapd.set("ieee80211ac", "1")
  50. hapd.set("vht_oper_chwidth", "1")
  51. hapd.set("vht_oper_centr_freq_seg0_idx", "58")
  52. if vht20:
  53. hapd.set("ieee80211ac", "1")
  54. hapd.set("vht_oper_chwidth", "0")
  55. hapd.set("vht_oper_centr_freq_seg0_idx", "0")
  56. if chanlist:
  57. hapd.set("chanlist", chanlist)
  58. hapd.enable()
  59. ev = wait_dfs_event(hapd, "DFS-CAC-START", 5)
  60. if "DFS-CAC-START" not in ev:
  61. raise Exception("Unexpected DFS event")
  62. state = hapd.get_status_field("state")
  63. if state != "DFS":
  64. if allow_failure:
  65. logger.info("Interface state not DFS: " + state)
  66. if not os.path.exists("dfs"):
  67. raise HwsimSkip("Assume DFS testing not supported")
  68. raise Exception("Failed to start DFS AP")
  69. raise Exception("Unexpected interface state: " + state)
  70. return hapd
  71. def dfs_simulate_radar(hapd):
  72. logger.info("Trigger a simulated radar event")
  73. phyname = hapd.get_driver_status_field("phyname")
  74. radar_file = '/sys/kernel/debug/ieee80211/' + phyname + '/hwsim/dfs_simulate_radar'
  75. with open(radar_file, 'w') as f:
  76. f.write('1')
  77. def test_dfs(dev, apdev):
  78. """DFS CAC functionality on clear channel"""
  79. try:
  80. hapd = start_dfs_ap(apdev[0], allow_failure=True)
  81. ev = wait_dfs_event(hapd, "DFS-CAC-COMPLETED", 70)
  82. if "success=1" not in ev:
  83. raise Exception("CAC failed")
  84. if "freq=5260" not in ev:
  85. raise Exception("Unexpected DFS freq result")
  86. ev = hapd.wait_event(["AP-ENABLED"], timeout=5)
  87. if not ev:
  88. raise Exception("AP setup timed out")
  89. state = hapd.get_status_field("state")
  90. if state != "ENABLED":
  91. raise Exception("Unexpected interface state")
  92. freq = hapd.get_status_field("freq")
  93. if freq != "5260":
  94. raise Exception("Unexpected frequency")
  95. dev[0].connect("dfs", key_mgmt="NONE")
  96. hwsim_utils.test_connectivity(dev[0], hapd)
  97. hapd.request("RADAR DETECTED freq=5260 ht_enabled=1 chan_width=1")
  98. ev = hapd.wait_event(["DFS-RADAR-DETECTED"], timeout=10)
  99. if ev is None:
  100. raise Exception("DFS-RADAR-DETECTED event not reported")
  101. if "freq=5260" not in ev:
  102. raise Exception("Incorrect frequency in radar detected event: " + ev);
  103. ev = hapd.wait_event(["DFS-NEW-CHANNEL"], timeout=70)
  104. if ev is None:
  105. raise Exception("DFS-NEW-CHANNEL event not reported")
  106. if "freq=5260" in ev:
  107. raise Exception("Channel did not change after radar was detected");
  108. ev = hapd.wait_event(["AP-CSA-FINISHED"], timeout=70)
  109. if ev is None:
  110. raise Exception("AP-CSA-FINISHED event not reported")
  111. if "freq=5260" in ev:
  112. raise Exception("Channel did not change after radar was detected(2)");
  113. time.sleep(1)
  114. hwsim_utils.test_connectivity(dev[0], hapd)
  115. finally:
  116. dev[0].request("DISCONNECT")
  117. if hapd:
  118. hapd.request("DISABLE")
  119. subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])
  120. dev[0].flush_scan_cache()
  121. def test_dfs_radar(dev, apdev):
  122. """DFS CAC functionality with radar detected"""
  123. try:
  124. hapd2 = None
  125. hapd = start_dfs_ap(apdev[0], allow_failure=True)
  126. time.sleep(1)
  127. dfs_simulate_radar(hapd)
  128. hapd2 = start_dfs_ap(apdev[1], ssid="dfs2", ht40=True)
  129. ev = wait_dfs_event(hapd, "DFS-CAC-COMPLETED", 5)
  130. if ev is None:
  131. raise Exception("Timeout on DFS aborted event")
  132. if "success=0 freq=5260" not in ev:
  133. raise Exception("Unexpected DFS aborted event contents: " + ev)
  134. ev = wait_dfs_event(hapd, "DFS-RADAR-DETECTED", 5)
  135. if "freq=5260" not in ev:
  136. raise Exception("Unexpected DFS radar detection freq")
  137. ev = wait_dfs_event(hapd, "DFS-NEW-CHANNEL", 5)
  138. if "freq=5260" in ev:
  139. raise Exception("Unexpected DFS new freq")
  140. ev = wait_dfs_event(hapd, None, 5)
  141. if "AP-ENABLED" in ev:
  142. logger.info("Started AP on non-DFS channel")
  143. else:
  144. logger.info("Trying to start AP on another DFS channel")
  145. if "DFS-CAC-START" not in ev:
  146. raise Exception("Unexpected DFS event")
  147. if "freq=5260" in ev:
  148. raise Exception("Unexpected DFS CAC freq")
  149. ev = wait_dfs_event(hapd, "DFS-CAC-COMPLETED", 70)
  150. if "success=1" not in ev:
  151. raise Exception("CAC failed")
  152. if "freq=5260" in ev:
  153. raise Exception("Unexpected DFS freq result - radar channel")
  154. ev = hapd.wait_event(["AP-ENABLED"], timeout=5)
  155. if not ev:
  156. raise Exception("AP setup timed out")
  157. state = hapd.get_status_field("state")
  158. if state != "ENABLED":
  159. raise Exception("Unexpected interface state")
  160. freq = hapd.get_status_field("freq")
  161. if freq == "5260":
  162. raise Exception("Unexpected frequency: " + freq)
  163. dev[0].connect("dfs", key_mgmt="NONE")
  164. ev = hapd2.wait_event(["AP-ENABLED"], timeout=70)
  165. if not ev:
  166. raise Exception("AP2 setup timed out")
  167. dfs_simulate_radar(hapd2)
  168. ev = wait_dfs_event(hapd2, "DFS-RADAR-DETECTED", 5)
  169. if "freq=5260 ht_enabled=1 chan_offset=1 chan_width=2" not in ev:
  170. raise Exception("Unexpected DFS radar detection freq from AP2")
  171. ev = wait_dfs_event(hapd2, "DFS-NEW-CHANNEL", 5)
  172. if "freq=5260" in ev:
  173. raise Exception("Unexpected DFS new freq for AP2")
  174. wait_dfs_event(hapd2, None, 5)
  175. finally:
  176. dev[0].request("DISCONNECT")
  177. if hapd:
  178. hapd.request("DISABLE")
  179. if hapd2:
  180. hapd2.request("DISABLE")
  181. subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])
  182. dev[0].flush_scan_cache()
  183. def test_dfs_radar_on_non_dfs_channel(dev, apdev):
  184. """DFS radar detection test code on non-DFS channel"""
  185. params = { "ssid": "radar" }
  186. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  187. hapd.request("RADAR DETECTED freq=5260 ht_enabled=1 chan_width=1")
  188. hapd.request("RADAR DETECTED freq=2412 ht_enabled=1 chan_width=1")
  189. def test_dfs_radar_chanlist(dev, apdev):
  190. """DFS chanlist when radar is detected"""
  191. try:
  192. hapd = start_dfs_ap(apdev[0], chanlist="40 44", allow_failure=True)
  193. time.sleep(1)
  194. dfs_simulate_radar(hapd)
  195. ev = wait_dfs_event(hapd, "DFS-CAC-COMPLETED", 5)
  196. if ev is None:
  197. raise Exception("Timeout on DFS aborted event")
  198. if "success=0 freq=5260" not in ev:
  199. raise Exception("Unexpected DFS aborted event contents: " + ev)
  200. ev = wait_dfs_event(hapd, "DFS-RADAR-DETECTED", 5)
  201. if "freq=5260" not in ev:
  202. raise Exception("Unexpected DFS radar detection freq")
  203. ev = wait_dfs_event(hapd, "DFS-NEW-CHANNEL", 5)
  204. if "freq=5200 chan=40" not in ev and "freq=5220 chan=44" not in ev:
  205. raise Exception("Unexpected DFS new freq: " + ev)
  206. ev = wait_dfs_event(hapd, None, 5)
  207. if "AP-ENABLED" not in ev:
  208. raise Exception("Unexpected DFS event")
  209. dev[0].connect("dfs", key_mgmt="NONE")
  210. finally:
  211. dev[0].request("DISCONNECT")
  212. if hapd:
  213. hapd.request("DISABLE")
  214. subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])
  215. dev[0].flush_scan_cache()
  216. def test_dfs_radar_chanlist_vht80(dev, apdev):
  217. """DFS chanlist when radar is detected and VHT80 configured"""
  218. try:
  219. hapd = start_dfs_ap(apdev[0], chanlist="36", ht40=True, vht80=True,
  220. allow_failure=True)
  221. time.sleep(1)
  222. dfs_simulate_radar(hapd)
  223. ev = wait_dfs_event(hapd, "DFS-CAC-COMPLETED", 5)
  224. if ev is None:
  225. raise Exception("Timeout on DFS aborted event")
  226. if "success=0 freq=5260" not in ev:
  227. raise Exception("Unexpected DFS aborted event contents: " + ev)
  228. ev = wait_dfs_event(hapd, "DFS-RADAR-DETECTED", 5)
  229. if "freq=5260" not in ev:
  230. raise Exception("Unexpected DFS radar detection freq")
  231. ev = wait_dfs_event(hapd, "DFS-NEW-CHANNEL", 5)
  232. if "freq=5180 chan=36 sec_chan=1" not in ev:
  233. raise Exception("Unexpected DFS new freq: " + ev)
  234. ev = wait_dfs_event(hapd, None, 5)
  235. if "AP-ENABLED" not in ev:
  236. raise Exception("Unexpected DFS event")
  237. dev[0].connect("dfs", key_mgmt="NONE")
  238. if hapd.get_status_field('vht_oper_centr_freq_seg0_idx') != "42":
  239. raise Exception("Unexpected seg0 idx")
  240. finally:
  241. dev[0].request("DISCONNECT")
  242. if hapd:
  243. hapd.request("DISABLE")
  244. subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])
  245. dev[0].flush_scan_cache()
  246. def test_dfs_radar_chanlist_vht20(dev, apdev):
  247. """DFS chanlist when radar is detected and VHT40 configured"""
  248. try:
  249. hapd = start_dfs_ap(apdev[0], chanlist="36", vht20=True,
  250. allow_failure=True)
  251. time.sleep(1)
  252. dfs_simulate_radar(hapd)
  253. ev = wait_dfs_event(hapd, "DFS-CAC-COMPLETED", 5)
  254. if ev is None:
  255. raise Exception("Timeout on DFS aborted event")
  256. if "success=0 freq=5260" not in ev:
  257. raise Exception("Unexpected DFS aborted event contents: " + ev)
  258. ev = wait_dfs_event(hapd, "DFS-RADAR-DETECTED", 5)
  259. if "freq=5260" not in ev:
  260. raise Exception("Unexpected DFS radar detection freq")
  261. ev = wait_dfs_event(hapd, "DFS-NEW-CHANNEL", 5)
  262. if "freq=5180 chan=36 sec_chan=0" not in ev:
  263. raise Exception("Unexpected DFS new freq: " + ev)
  264. ev = wait_dfs_event(hapd, None, 5)
  265. if "AP-ENABLED" not in ev:
  266. raise Exception("Unexpected DFS event")
  267. dev[0].connect("dfs", key_mgmt="NONE")
  268. finally:
  269. dev[0].request("DISCONNECT")
  270. if hapd:
  271. hapd.request("DISABLE")
  272. subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])
  273. dev[0].flush_scan_cache()
  274. def test_dfs_radar_no_ht(dev, apdev):
  275. """DFS chanlist when radar is detected and no HT configured"""
  276. try:
  277. hapd = start_dfs_ap(apdev[0], chanlist="36", ht=False,
  278. allow_failure=True)
  279. time.sleep(1)
  280. dfs_simulate_radar(hapd)
  281. ev = wait_dfs_event(hapd, "DFS-CAC-COMPLETED", 5)
  282. if ev is None:
  283. raise Exception("Timeout on DFS aborted event")
  284. if "success=0 freq=5260" not in ev:
  285. raise Exception("Unexpected DFS aborted event contents: " + ev)
  286. ev = wait_dfs_event(hapd, "DFS-RADAR-DETECTED", 5)
  287. if "freq=5260 ht_enabled=0" not in ev:
  288. raise Exception("Unexpected DFS radar detection freq: " + ev)
  289. ev = wait_dfs_event(hapd, "DFS-NEW-CHANNEL", 5)
  290. if "freq=5180 chan=36 sec_chan=0" not in ev:
  291. raise Exception("Unexpected DFS new freq: " + ev)
  292. ev = wait_dfs_event(hapd, None, 5)
  293. if "AP-ENABLED" not in ev:
  294. raise Exception("Unexpected DFS event")
  295. dev[0].connect("dfs", key_mgmt="NONE")
  296. finally:
  297. dev[0].request("DISCONNECT")
  298. if hapd:
  299. hapd.request("DISABLE")
  300. subprocess.call(['iw', 'reg', 'set', '00'])
  301. dev[0].flush_scan_cache()
  302. def test_dfs_radar_ht40minus(dev, apdev):
  303. """DFS chanlist when radar is detected and HT40- configured"""
  304. try:
  305. hapd = start_dfs_ap(apdev[0], chanlist="36", ht40minus=True,
  306. allow_failure=True)
  307. time.sleep(1)
  308. dfs_simulate_radar(hapd)
  309. ev = wait_dfs_event(hapd, "DFS-CAC-COMPLETED", 5)
  310. if ev is None:
  311. raise Exception("Timeout on DFS aborted event")
  312. if "success=0 freq=5280 ht_enabled=1 chan_offset=-1" not in ev:
  313. raise Exception("Unexpected DFS aborted event contents: " + ev)
  314. ev = wait_dfs_event(hapd, "DFS-RADAR-DETECTED", 5)
  315. if "freq=5280 ht_enabled=1 chan_offset=-1" not in ev:
  316. raise Exception("Unexpected DFS radar detection freq: " + ev)
  317. ev = wait_dfs_event(hapd, "DFS-NEW-CHANNEL", 5)
  318. if "freq=5180 chan=36 sec_chan=1" not in ev:
  319. raise Exception("Unexpected DFS new freq: " + ev)
  320. ev = wait_dfs_event(hapd, None, 5)
  321. if "AP-ENABLED" not in ev:
  322. raise Exception("Unexpected DFS event")
  323. dev[0].connect("dfs", key_mgmt="NONE")
  324. finally:
  325. dev[0].request("DISCONNECT")
  326. if hapd:
  327. hapd.request("DISABLE")
  328. subprocess.call(['iw', 'reg', 'set', '00'])
  329. dev[0].flush_scan_cache()