test_scan.py 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137
  1. # Scanning tests
  2. # Copyright (c) 2013-2015, 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 os
  10. import subprocess
  11. import hostapd
  12. from wpasupplicant import WpaSupplicant
  13. from utils import HwsimSkip, fail_test, alloc_fail, wait_fail_trigger
  14. from tshark import run_tshark
  15. def check_scan(dev, params, other_started=False, test_busy=False):
  16. if not other_started:
  17. dev.dump_monitor()
  18. id = dev.request("SCAN " + params)
  19. if "FAIL" in id:
  20. raise Exception("Failed to start scan")
  21. id = int(id)
  22. if test_busy:
  23. if "FAIL-BUSY" not in dev.request("SCAN"):
  24. raise Exception("SCAN command while already scanning not rejected")
  25. if other_started:
  26. ev = dev.wait_event(["CTRL-EVENT-SCAN-STARTED"])
  27. if ev is None:
  28. raise Exception("Other scan did not start")
  29. if "id=" + str(id) in ev:
  30. raise Exception("Own scan id unexpectedly included in start event")
  31. ev = dev.wait_event(["CTRL-EVENT-SCAN-RESULTS"])
  32. if ev is None:
  33. raise Exception("Other scan did not complete")
  34. if "id=" + str(id) in ev:
  35. raise Exception("Own scan id unexpectedly included in completed event")
  36. ev = dev.wait_event(["CTRL-EVENT-SCAN-STARTED"])
  37. if ev is None:
  38. raise Exception("Scan did not start")
  39. if "id=" + str(id) not in ev:
  40. raise Exception("Scan id not included in start event")
  41. if test_busy:
  42. if "FAIL-BUSY" not in dev.request("SCAN"):
  43. raise Exception("SCAN command while already scanning not rejected")
  44. ev = dev.wait_event(["CTRL-EVENT-SCAN-RESULTS"])
  45. if ev is None:
  46. raise Exception("Scan did not complete")
  47. if "id=" + str(id) not in ev:
  48. raise Exception("Scan id not included in completed event")
  49. def check_scan_retry(dev, params, bssid):
  50. for i in range(0, 5):
  51. check_scan(dev, "freq=2412-2462,5180 use_id=1")
  52. if int(dev.get_bss(bssid)['age']) <= 1:
  53. return
  54. raise Exception("Unexpectedly old BSS entry")
  55. def test_scan(dev, apdev):
  56. """Control interface behavior on scan parameters"""
  57. hostapd.add_ap(apdev[0], { "ssid": "test-scan" })
  58. bssid = apdev[0]['bssid']
  59. logger.info("Full scan")
  60. check_scan(dev[0], "use_id=1", test_busy=True)
  61. logger.info("Limited channel scan")
  62. check_scan_retry(dev[0], "freq=2412-2462,5180 use_id=1", bssid)
  63. # wait long enough to allow next scans to be verified not to find the AP
  64. time.sleep(2)
  65. logger.info("Passive single-channel scan")
  66. check_scan(dev[0], "freq=2457 passive=1 use_id=1")
  67. logger.info("Active single-channel scan")
  68. check_scan(dev[0], "freq=2452 passive=0 use_id=1")
  69. if int(dev[0].get_bss(bssid)['age']) < 2:
  70. raise Exception("Unexpectedly updated BSS entry")
  71. logger.info("Active single-channel scan on AP's operating channel")
  72. check_scan_retry(dev[0], "freq=2412 passive=0 use_id=1", bssid)
  73. def test_scan_tsf(dev, apdev):
  74. """Scan and TSF updates from Beacon/Probe Response frames"""
  75. hostapd.add_ap(apdev[0], { "ssid": "test-scan",
  76. 'beacon_int': "100" })
  77. bssid = apdev[0]['bssid']
  78. tsf = []
  79. for passive in [ 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1 ]:
  80. check_scan(dev[0], "freq=2412 passive=%d use_id=1" % passive)
  81. bss = dev[0].get_bss(bssid)
  82. if bss:
  83. tsf.append(int(bss['tsf']))
  84. logger.info("TSF: " + bss['tsf'])
  85. if tsf[-3] <= tsf[-4]:
  86. # For now, only write this in the log without failing the test case
  87. # since mac80211_hwsim does not yet update the Timestamp field in
  88. # Probe Response frames.
  89. logger.info("Probe Response did not update TSF")
  90. #raise Exception("Probe Response did not update TSF")
  91. if tsf[-1] <= tsf[-3]:
  92. raise Exception("Beacon did not update TSF")
  93. if 0 in tsf:
  94. raise Exception("0 TSF reported")
  95. def test_scan_only(dev, apdev):
  96. """Control interface behavior on scan parameters with type=only"""
  97. hostapd.add_ap(apdev[0], { "ssid": "test-scan" })
  98. bssid = apdev[0]['bssid']
  99. logger.info("Full scan")
  100. check_scan(dev[0], "type=only use_id=1")
  101. logger.info("Limited channel scan")
  102. check_scan_retry(dev[0], "type=only freq=2412-2462,5180 use_id=1", bssid)
  103. # wait long enough to allow next scans to be verified not to find the AP
  104. time.sleep(2)
  105. logger.info("Passive single-channel scan")
  106. check_scan(dev[0], "type=only freq=2457 passive=1 use_id=1")
  107. logger.info("Active single-channel scan")
  108. check_scan(dev[0], "type=only freq=2452 passive=0 use_id=1")
  109. if int(dev[0].get_bss(bssid)['age']) < 2:
  110. raise Exception("Unexpectedly updated BSS entry")
  111. logger.info("Active single-channel scan on AP's operating channel")
  112. check_scan_retry(dev[0], "type=only freq=2412 passive=0 use_id=1", bssid)
  113. def test_scan_external_trigger(dev, apdev):
  114. """Avoid operations during externally triggered scan"""
  115. hostapd.add_ap(apdev[0], { "ssid": "test-scan" })
  116. bssid = apdev[0]['bssid']
  117. subprocess.call(['iw', dev[0].ifname, 'scan', 'trigger'])
  118. check_scan(dev[0], "use_id=1", other_started=True)
  119. def test_scan_bss_expiration_count(dev, apdev):
  120. """BSS entry expiration based on scan results without match"""
  121. if "FAIL" not in dev[0].request("BSS_EXPIRE_COUNT 0"):
  122. raise Exception("Invalid BSS_EXPIRE_COUNT accepted")
  123. if "OK" not in dev[0].request("BSS_EXPIRE_COUNT 2"):
  124. raise Exception("BSS_EXPIRE_COUNT failed")
  125. hapd = hostapd.add_ap(apdev[0], { "ssid": "test-scan" })
  126. bssid = apdev[0]['bssid']
  127. dev[0].scan(freq="2412", only_new=True)
  128. if bssid not in dev[0].request("SCAN_RESULTS"):
  129. raise Exception("BSS not found in initial scan")
  130. hapd.request("DISABLE")
  131. dev[0].scan(freq="2412", only_new=True)
  132. if bssid not in dev[0].request("SCAN_RESULTS"):
  133. raise Exception("BSS not found in first scan without match")
  134. dev[0].scan(freq="2412", only_new=True)
  135. if bssid in dev[0].request("SCAN_RESULTS"):
  136. raise Exception("BSS found after two scans without match")
  137. def test_scan_bss_expiration_age(dev, apdev):
  138. """BSS entry expiration based on age"""
  139. try:
  140. if "FAIL" not in dev[0].request("BSS_EXPIRE_AGE COUNT 9"):
  141. raise Exception("Invalid BSS_EXPIRE_AGE accepted")
  142. if "OK" not in dev[0].request("BSS_EXPIRE_AGE 10"):
  143. raise Exception("BSS_EXPIRE_AGE failed")
  144. hapd = hostapd.add_ap(apdev[0], { "ssid": "test-scan" })
  145. bssid = apdev[0]['bssid']
  146. # Allow couple more retries to avoid reporting errors during heavy load
  147. for i in range(5):
  148. dev[0].scan(freq="2412")
  149. if bssid in dev[0].request("SCAN_RESULTS"):
  150. break
  151. if bssid not in dev[0].request("SCAN_RESULTS"):
  152. raise Exception("BSS not found in initial scan")
  153. hapd.request("DISABLE")
  154. logger.info("Waiting for BSS entry to expire")
  155. time.sleep(7)
  156. if bssid not in dev[0].request("SCAN_RESULTS"):
  157. raise Exception("BSS expired too quickly")
  158. ev = dev[0].wait_event(["CTRL-EVENT-BSS-REMOVED"], timeout=15)
  159. if ev is None:
  160. raise Exception("BSS entry expiration timed out")
  161. if bssid in dev[0].request("SCAN_RESULTS"):
  162. raise Exception("BSS not removed after expiration time")
  163. finally:
  164. dev[0].request("BSS_EXPIRE_AGE 180")
  165. def test_scan_filter(dev, apdev):
  166. """Filter scan results based on SSID"""
  167. try:
  168. if "OK" not in dev[0].request("SET filter_ssids 1"):
  169. raise Exception("SET failed")
  170. id = dev[0].connect("test-scan", key_mgmt="NONE", only_add_network=True)
  171. hostapd.add_ap(apdev[0], { "ssid": "test-scan" })
  172. bssid = apdev[0]['bssid']
  173. hostapd.add_ap(apdev[1], { "ssid": "test-scan2" })
  174. bssid2 = apdev[1]['bssid']
  175. dev[0].scan(freq="2412", only_new=True)
  176. if bssid not in dev[0].request("SCAN_RESULTS"):
  177. raise Exception("BSS not found in scan results")
  178. if bssid2 in dev[0].request("SCAN_RESULTS"):
  179. raise Exception("Unexpected BSS found in scan results")
  180. dev[0].set_network_quoted(id, "ssid", "")
  181. dev[0].scan(freq="2412")
  182. id2 = dev[0].connect("test", key_mgmt="NONE", only_add_network=True)
  183. dev[0].scan(freq="2412")
  184. finally:
  185. dev[0].request("SET filter_ssids 0")
  186. def test_scan_int(dev, apdev):
  187. """scan interval configuration"""
  188. try:
  189. if "FAIL" not in dev[0].request("SCAN_INTERVAL -1"):
  190. raise Exception("Accepted invalid scan interval")
  191. if "OK" not in dev[0].request("SCAN_INTERVAL 1"):
  192. raise Exception("Failed to set scan interval")
  193. dev[0].connect("not-used", key_mgmt="NONE", scan_freq="2412",
  194. wait_connect=False)
  195. times = {}
  196. for i in range(0, 3):
  197. logger.info("Waiting for scan to start")
  198. start = os.times()[4]
  199. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-STARTED"], timeout=5)
  200. if ev is None:
  201. raise Exception("did not start a scan")
  202. stop = os.times()[4]
  203. times[i] = stop - start
  204. logger.info("Waiting for scan to complete")
  205. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], 10)
  206. if ev is None:
  207. raise Exception("did not complete a scan")
  208. logger.info("times=" + str(times))
  209. if times[0] > 1 or times[1] < 0.5 or times[1] > 1.5 or times[2] < 0.5 or times[2] > 1.5:
  210. raise Exception("Unexpected scan timing: " + str(times))
  211. finally:
  212. dev[0].request("SCAN_INTERVAL 5")
  213. def test_scan_bss_operations(dev, apdev):
  214. """Control interface behavior on BSS parameters"""
  215. hostapd.add_ap(apdev[0], { "ssid": "test-scan" })
  216. bssid = apdev[0]['bssid']
  217. hostapd.add_ap(apdev[1], { "ssid": "test2-scan" })
  218. bssid2 = apdev[1]['bssid']
  219. dev[0].scan(freq="2412")
  220. dev[0].scan(freq="2412")
  221. dev[0].scan(freq="2412")
  222. id1 = dev[0].request("BSS FIRST MASK=0x1").splitlines()[0].split('=')[1]
  223. id2 = dev[0].request("BSS LAST MASK=0x1").splitlines()[0].split('=')[1]
  224. res = dev[0].request("BSS RANGE=ALL MASK=0x20001")
  225. if "id=" + id1 not in res:
  226. raise Exception("Missing BSS " + id1)
  227. if "id=" + id2 not in res:
  228. raise Exception("Missing BSS " + id2)
  229. if "====" not in res:
  230. raise Exception("Missing delim")
  231. if "####" not in res:
  232. raise Exception("Missing end")
  233. res = dev[0].request("BSS RANGE=ALL MASK=0")
  234. if "id=" + id1 not in res:
  235. raise Exception("Missing BSS " + id1)
  236. if "id=" + id2 not in res:
  237. raise Exception("Missing BSS " + id2)
  238. if "====" in res:
  239. raise Exception("Unexpected delim")
  240. if "####" in res:
  241. raise Exception("Unexpected end delim")
  242. res = dev[0].request("BSS RANGE=ALL MASK=0x1").splitlines()
  243. if len(res) != 2:
  244. raise Exception("Unexpected result: " + str(res))
  245. res = dev[0].request("BSS FIRST MASK=0x1")
  246. if "id=" + id1 not in res:
  247. raise Exception("Unexpected result: " + res)
  248. res = dev[0].request("BSS LAST MASK=0x1")
  249. if "id=" + id2 not in res:
  250. raise Exception("Unexpected result: " + res)
  251. res = dev[0].request("BSS ID-" + id1 + " MASK=0x1")
  252. if "id=" + id1 not in res:
  253. raise Exception("Unexpected result: " + res)
  254. res = dev[0].request("BSS NEXT-" + id1 + " MASK=0x1")
  255. if "id=" + id2 not in res:
  256. raise Exception("Unexpected result: " + res)
  257. res = dev[0].request("BSS NEXT-" + id2 + " MASK=0x1")
  258. if "id=" in res:
  259. raise Exception("Unexpected result: " + res)
  260. if len(dev[0].request("BSS RANGE=" + id2 + " MASK=0x1").splitlines()) != 0:
  261. raise Exception("Unexpected RANGE=1 result")
  262. if len(dev[0].request("BSS RANGE=" + id1 + "- MASK=0x1").splitlines()) != 2:
  263. raise Exception("Unexpected RANGE=0- result")
  264. if len(dev[0].request("BSS RANGE=-" + id2 + " MASK=0x1").splitlines()) != 2:
  265. raise Exception("Unexpected RANGE=-1 result")
  266. if len(dev[0].request("BSS RANGE=" + id1 + "-" + id2 + " MASK=0x1").splitlines()) != 2:
  267. raise Exception("Unexpected RANGE=0-1 result")
  268. if len(dev[0].request("BSS RANGE=" + id2 + "-" + id2 + " MASK=0x1").splitlines()) != 1:
  269. raise Exception("Unexpected RANGE=1-1 result")
  270. if len(dev[0].request("BSS RANGE=" + str(int(id2) + 1) + "-" + str(int(id2) + 10) + " MASK=0x1").splitlines()) != 0:
  271. raise Exception("Unexpected RANGE=2-10 result")
  272. if len(dev[0].request("BSS RANGE=0-" + str(int(id2) + 10) + " MASK=0x1").splitlines()) != 2:
  273. raise Exception("Unexpected RANGE=0-10 result")
  274. if len(dev[0].request("BSS RANGE=" + id1 + "-" + id1 + " MASK=0x1").splitlines()) != 1:
  275. raise Exception("Unexpected RANGE=0-0 result")
  276. res = dev[0].request("BSS p2p_dev_addr=FOO")
  277. if "FAIL" in res or "id=" in res:
  278. raise Exception("Unexpected result: " + res)
  279. res = dev[0].request("BSS p2p_dev_addr=00:11:22:33:44:55")
  280. if "FAIL" in res or "id=" in res:
  281. raise Exception("Unexpected result: " + res)
  282. dev[0].request("BSS_FLUSH 1000")
  283. res = dev[0].request("BSS RANGE=ALL MASK=0x1").splitlines()
  284. if len(res) != 2:
  285. raise Exception("Unexpected result after BSS_FLUSH 1000")
  286. dev[0].request("BSS_FLUSH 0")
  287. res = dev[0].request("BSS RANGE=ALL MASK=0x1").splitlines()
  288. if len(res) != 0:
  289. raise Exception("Unexpected result after BSS_FLUSH 0")
  290. def test_scan_and_interface_disabled(dev, apdev):
  291. """Scan operation when interface gets disabled"""
  292. try:
  293. dev[0].request("SCAN")
  294. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-STARTED"])
  295. if ev is None:
  296. raise Exception("Scan did not start")
  297. dev[0].request("DRIVER_EVENT INTERFACE_DISABLED")
  298. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], timeout=7)
  299. if ev is not None:
  300. raise Exception("Scan completed unexpectedly")
  301. # verify that scan is rejected
  302. if "FAIL" not in dev[0].request("SCAN"):
  303. raise Exception("New scan request was accepted unexpectedly")
  304. dev[0].request("DRIVER_EVENT INTERFACE_ENABLED")
  305. dev[0].scan(freq="2412")
  306. finally:
  307. dev[0].request("DRIVER_EVENT INTERFACE_ENABLED")
  308. def test_scan_for_auth(dev, apdev):
  309. """cfg80211 workaround with scan-for-auth"""
  310. hapd = hostapd.add_ap(apdev[0], { "ssid": "open" })
  311. dev[0].scan_for_bss(apdev[0]['bssid'], freq="2412")
  312. # Block sme-connect radio work with an external radio work item, so that
  313. # SELECT_NETWORK can decide to use fast associate without a new scan while
  314. # cfg80211 still has the matching BSS entry, but the actual connection is
  315. # not yet started.
  316. id = dev[0].request("RADIO_WORK add block-work")
  317. ev = dev[0].wait_event(["EXT-RADIO-WORK-START"])
  318. if ev is None:
  319. raise Exception("Timeout while waiting radio work to start")
  320. dev[0].connect("open", key_mgmt="NONE", scan_freq="2412",
  321. wait_connect=False)
  322. dev[0].dump_monitor()
  323. # Clear cfg80211 BSS table.
  324. try:
  325. subprocess.check_call(['iw', dev[0].ifname, 'scan', 'trigger',
  326. 'freq', '2457', 'flush'])
  327. except subprocess.CalledProcessError, e:
  328. raise HwsimSkip("iw scan trigger flush not supported")
  329. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], 5)
  330. if ev is None:
  331. raise Exception("External flush scan timed out")
  332. # Release blocking radio work to allow connection to go through with the
  333. # cfg80211 BSS entry missing.
  334. dev[0].request("RADIO_WORK done " + id)
  335. dev[0].wait_connected(timeout=15)
  336. def test_scan_for_auth_fail(dev, apdev):
  337. """cfg80211 workaround with scan-for-auth failing"""
  338. hapd = hostapd.add_ap(apdev[0], { "ssid": "open" })
  339. dev[0].scan_for_bss(apdev[0]['bssid'], freq="2412")
  340. # Block sme-connect radio work with an external radio work item, so that
  341. # SELECT_NETWORK can decide to use fast associate without a new scan while
  342. # cfg80211 still has the matching BSS entry, but the actual connection is
  343. # not yet started.
  344. id = dev[0].request("RADIO_WORK add block-work")
  345. ev = dev[0].wait_event(["EXT-RADIO-WORK-START"])
  346. if ev is None:
  347. raise Exception("Timeout while waiting radio work to start")
  348. dev[0].connect("open", key_mgmt="NONE", scan_freq="2412",
  349. wait_connect=False)
  350. dev[0].dump_monitor()
  351. hapd.disable()
  352. # Clear cfg80211 BSS table.
  353. try:
  354. subprocess.check_call(['iw', dev[0].ifname, 'scan', 'trigger',
  355. 'freq', '2457', 'flush'])
  356. except subprocess.CalledProcessError, e:
  357. raise HwsimSkip("iw scan trigger flush not supported")
  358. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], 5)
  359. if ev is None:
  360. raise Exception("External flush scan timed out")
  361. # Release blocking radio work to allow connection to go through with the
  362. # cfg80211 BSS entry missing.
  363. dev[0].request("RADIO_WORK done " + id)
  364. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS",
  365. "CTRL-EVENT-CONNECTED"], 15)
  366. if ev is None:
  367. raise Exception("Scan event missing")
  368. if "CTRL-EVENT-CONNECTED" in ev:
  369. raise Exception("Unexpected connection")
  370. dev[0].request("DISCONNECT")
  371. def test_scan_for_auth_wep(dev, apdev):
  372. """cfg80211 scan-for-auth workaround with WEP keys"""
  373. dev[0].flush_scan_cache()
  374. hapd = hostapd.add_ap(apdev[0],
  375. { "ssid": "wep", "wep_key0": '"abcde"',
  376. "auth_algs": "2" })
  377. dev[0].scan_for_bss(apdev[0]['bssid'], freq="2412")
  378. # Block sme-connect radio work with an external radio work item, so that
  379. # SELECT_NETWORK can decide to use fast associate without a new scan while
  380. # cfg80211 still has the matching BSS entry, but the actual connection is
  381. # not yet started.
  382. id = dev[0].request("RADIO_WORK add block-work")
  383. ev = dev[0].wait_event(["EXT-RADIO-WORK-START"])
  384. if ev is None:
  385. raise Exception("Timeout while waiting radio work to start")
  386. dev[0].connect("wep", key_mgmt="NONE", wep_key0='"abcde"',
  387. auth_alg="SHARED", scan_freq="2412", wait_connect=False)
  388. dev[0].dump_monitor()
  389. # Clear cfg80211 BSS table.
  390. try:
  391. subprocess.check_call(['iw', dev[0].ifname, 'scan', 'trigger',
  392. 'freq', '2457', 'flush'])
  393. except subprocess.CalledProcessError, e:
  394. raise HwsimSkip("iw scan trigger flush not supported")
  395. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], 5)
  396. if ev is None:
  397. raise Exception("External flush scan timed out")
  398. # Release blocking radio work to allow connection to go through with the
  399. # cfg80211 BSS entry missing.
  400. dev[0].request("RADIO_WORK done " + id)
  401. dev[0].wait_connected(timeout=15)
  402. def test_scan_hidden(dev, apdev):
  403. """Control interface behavior on scan parameters"""
  404. hapd = hostapd.add_ap(apdev[0], { "ssid": "test-scan",
  405. "ignore_broadcast_ssid": "1" })
  406. bssid = apdev[0]['bssid']
  407. check_scan(dev[0], "freq=2412 use_id=1")
  408. if "test-scan" in dev[0].request("SCAN_RESULTS"):
  409. raise Exception("BSS unexpectedly found in initial scan")
  410. id1 = dev[0].connect("foo", key_mgmt="NONE", scan_ssid="1",
  411. only_add_network=True)
  412. id2 = dev[0].connect("test-scan", key_mgmt="NONE", scan_ssid="1",
  413. only_add_network=True)
  414. id3 = dev[0].connect("bar", key_mgmt="NONE", only_add_network=True)
  415. check_scan(dev[0], "freq=2412 use_id=1")
  416. if "test-scan" in dev[0].request("SCAN_RESULTS"):
  417. raise Exception("BSS unexpectedly found in scan")
  418. # Allow multiple attempts to be more robust under heavy CPU load that can
  419. # result in Probe Response frames getting sent only after the station has
  420. # already stopped waiting for the response on the channel.
  421. found = False
  422. for i in range(10):
  423. check_scan(dev[0], "scan_id=%d,%d,%d freq=2412 use_id=1" % (id1, id2, id3))
  424. if "test-scan" in dev[0].request("SCAN_RESULTS"):
  425. found = True
  426. break
  427. if not found:
  428. raise Exception("BSS not found in scan")
  429. if "FAIL" not in dev[0].request("SCAN scan_id=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17"):
  430. raise Exception("Too many scan_id values accepted")
  431. # Duplicate SSID removal
  432. check_scan(dev[0], "scan_id=%d,%d,%d freq=2412 use_id=1" % (id1, id1, id2))
  433. dev[0].request("REMOVE_NETWORK all")
  434. hapd.disable()
  435. dev[0].flush_scan_cache(freq=2432)
  436. dev[0].flush_scan_cache()
  437. def test_scan_and_bss_entry_removed(dev, apdev):
  438. """Last scan result and connect work processing on BSS entry update"""
  439. hapd = hostapd.add_ap(apdev[0], { "ssid": "open",
  440. "eap_server": "1",
  441. "wps_state": "2" })
  442. bssid = apdev[0]['bssid']
  443. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  444. wpas.interface_add("wlan5", drv_params="force_connect_cmd=1")
  445. # Add a BSS entry
  446. dev[0].scan_for_bss(bssid, freq="2412")
  447. wpas.scan_for_bss(bssid, freq="2412")
  448. # Start a connect radio work with a blocking entry preventing this from
  449. # proceeding; this stores a pointer to the selected BSS entry.
  450. id = dev[0].request("RADIO_WORK add block-work")
  451. w_id = wpas.request("RADIO_WORK add block-work")
  452. dev[0].wait_event(["EXT-RADIO-WORK-START"], timeout=1)
  453. wpas.wait_event(["EXT-RADIO-WORK-START"], timeout=1)
  454. nid = dev[0].connect("open", key_mgmt="NONE", scan_freq="2412",
  455. wait_connect=False)
  456. w_nid = wpas.connect("open", key_mgmt="NONE", scan_freq="2412",
  457. wait_connect=False)
  458. time.sleep(0.1)
  459. # Remove the BSS entry
  460. dev[0].request("BSS_FLUSH 0")
  461. wpas.request("BSS_FLUSH 0")
  462. # Allow the connect radio work to continue. The bss entry stored in the
  463. # pending connect work is now stale. This will result in the connection
  464. # attempt failing since the BSS entry does not exist.
  465. dev[0].request("RADIO_WORK done " + id)
  466. wpas.request("RADIO_WORK done " + w_id)
  467. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  468. if ev is not None:
  469. raise Exception("Unexpected connection")
  470. dev[0].remove_network(nid)
  471. ev = wpas.wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  472. if ev is not None:
  473. raise Exception("Unexpected connection")
  474. wpas.remove_network(w_nid)
  475. time.sleep(0.5)
  476. dev[0].request("BSS_FLUSH 0")
  477. wpas.request("BSS_FLUSH 0")
  478. # Add a BSS entry
  479. dev[0].scan_for_bss(bssid, freq="2412")
  480. wpas.scan_for_bss(bssid, freq="2412")
  481. # Start a connect radio work with a blocking entry preventing this from
  482. # proceeding; this stores a pointer to the selected BSS entry.
  483. id = dev[0].request("RADIO_WORK add block-work")
  484. w_id = wpas.request("RADIO_WORK add block-work")
  485. dev[0].wait_event(["EXT-RADIO-WORK-START"], timeout=1)
  486. wpas.wait_event(["EXT-RADIO-WORK-START"], timeout=1)
  487. # Schedule a connection based on the current BSS entry.
  488. dev[0].connect("open", key_mgmt="NONE", scan_freq="2412",
  489. wait_connect=False)
  490. wpas.connect("open", key_mgmt="NONE", scan_freq="2412",
  491. wait_connect=False)
  492. # Update scan results with results that have longer set of IEs so that new
  493. # memory needs to be allocated for the BSS entry.
  494. hapd.request("WPS_PBC")
  495. time.sleep(0.1)
  496. subprocess.call(['iw', dev[0].ifname, 'scan', 'trigger', 'freq', '2412'])
  497. subprocess.call(['iw', wpas.ifname, 'scan', 'trigger', 'freq', '2412'])
  498. time.sleep(0.1)
  499. # Allow the connect radio work to continue. The bss entry stored in the
  500. # pending connect work becomes stale during the scan and it must have been
  501. # updated for the connection to work.
  502. dev[0].request("RADIO_WORK done " + id)
  503. wpas.request("RADIO_WORK done " + w_id)
  504. dev[0].wait_connected(timeout=15, error="No connection (sme-connect)")
  505. wpas.wait_connected(timeout=15, error="No connection (connect)")
  506. dev[0].request("DISCONNECT")
  507. wpas.request("DISCONNECT")
  508. dev[0].flush_scan_cache()
  509. wpas.flush_scan_cache()
  510. def test_scan_reqs_with_non_scan_radio_work(dev, apdev):
  511. """SCAN commands while non-scan radio_work is in progress"""
  512. id = dev[0].request("RADIO_WORK add test-work-a")
  513. ev = dev[0].wait_event(["EXT-RADIO-WORK-START"])
  514. if ev is None:
  515. raise Exception("Timeout while waiting radio work to start")
  516. if "OK" not in dev[0].request("SCAN"):
  517. raise Exception("SCAN failed")
  518. if "FAIL-BUSY" not in dev[0].request("SCAN"):
  519. raise Exception("SCAN accepted while one is already pending")
  520. if "FAIL-BUSY" not in dev[0].request("SCAN"):
  521. raise Exception("SCAN accepted while one is already pending")
  522. res = dev[0].request("RADIO_WORK show").splitlines()
  523. count = 0
  524. for l in res:
  525. if "scan" in l:
  526. count += 1
  527. if count != 1:
  528. logger.info(res)
  529. raise Exception("Unexpected number of scan radio work items")
  530. dev[0].dump_monitor()
  531. dev[0].request("RADIO_WORK done " + id)
  532. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-STARTED"], timeout=5)
  533. if ev is None:
  534. raise Exception("Scan did not start")
  535. if "FAIL-BUSY" not in dev[0].request("SCAN"):
  536. raise Exception("SCAN accepted while one is already in progress")
  537. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], timeout=10)
  538. if ev is None:
  539. print "Scan did not complete"
  540. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-STARTED"], timeout=0.2)
  541. if ev is not None:
  542. raise Exception("Unexpected scan started")
  543. def test_scan_setband(dev, apdev):
  544. """Band selection for scan operations"""
  545. try:
  546. hapd = None
  547. hapd2 = None
  548. params = { "ssid": "test-setband",
  549. "hw_mode": "a",
  550. "channel": "36",
  551. "country_code": "US" }
  552. hapd = hostapd.add_ap(apdev[0], params)
  553. bssid = apdev[0]['bssid']
  554. params = { "ssid": "test-setband",
  555. "hw_mode": "g",
  556. "channel": "1" }
  557. hapd2 = hostapd.add_ap(apdev[1], params)
  558. bssid2 = apdev[1]['bssid']
  559. if "FAIL" not in dev[0].request("SET setband FOO"):
  560. raise Exception("Invalid set setband accepted")
  561. if "OK" not in dev[0].request("SET setband AUTO"):
  562. raise Exception("Failed to set setband")
  563. if "OK" not in dev[1].request("SET setband 5G"):
  564. raise Exception("Failed to set setband")
  565. if "OK" not in dev[2].request("SET setband 2G"):
  566. raise Exception("Failed to set setband")
  567. # Allow a retry to avoid reporting errors during heavy load
  568. for j in range(5):
  569. for i in range(3):
  570. dev[i].request("SCAN only_new=1")
  571. for i in range(3):
  572. ev = dev[i].wait_event(["CTRL-EVENT-SCAN-RESULTS"], 15)
  573. if ev is None:
  574. raise Exception("Scan timed out")
  575. res0 = dev[0].request("SCAN_RESULTS")
  576. res1 = dev[1].request("SCAN_RESULTS")
  577. res2 = dev[2].request("SCAN_RESULTS")
  578. if bssid in res0 and bssid2 in res0 and bssid in res1 and bssid2 in res2:
  579. break
  580. res = dev[0].request("SCAN_RESULTS")
  581. if bssid not in res or bssid2 not in res:
  582. raise Exception("Missing scan result(0)")
  583. res = dev[1].request("SCAN_RESULTS")
  584. if bssid not in res:
  585. raise Exception("Missing scan result(1)")
  586. if bssid2 in res:
  587. raise Exception("Unexpected scan result(1)")
  588. res = dev[2].request("SCAN_RESULTS")
  589. if bssid2 not in res:
  590. raise Exception("Missing scan result(2)")
  591. if bssid in res:
  592. raise Exception("Unexpected scan result(2)")
  593. finally:
  594. if hapd:
  595. hapd.request("DISABLE")
  596. if hapd2:
  597. hapd2.request("DISABLE")
  598. subprocess.call(['iw', 'reg', 'set', '00'])
  599. for i in range(3):
  600. dev[i].request("SET setband AUTO")
  601. dev[i].flush_scan_cache()
  602. def test_scan_hidden_many(dev, apdev):
  603. """scan_ssid=1 with large number of profile with hidden SSID"""
  604. try:
  605. _test_scan_hidden_many(dev, apdev)
  606. finally:
  607. dev[0].flush_scan_cache(freq=2432)
  608. dev[0].flush_scan_cache()
  609. dev[0].request("SCAN_INTERVAL 5")
  610. def _test_scan_hidden_many(dev, apdev):
  611. hapd = hostapd.add_ap(apdev[0], { "ssid": "test-scan-ssid",
  612. "ignore_broadcast_ssid": "1" })
  613. bssid = apdev[0]['bssid']
  614. dev[0].request("SCAN_INTERVAL 1")
  615. for i in range(5):
  616. id = dev[0].add_network()
  617. dev[0].set_network_quoted(id, "ssid", "foo")
  618. dev[0].set_network(id, "key_mgmt", "NONE")
  619. dev[0].set_network(id, "disabled", "0")
  620. dev[0].set_network(id, "scan_freq", "2412")
  621. dev[0].set_network(id, "scan_ssid", "1")
  622. dev[0].set_network_quoted(id, "ssid", "test-scan-ssid")
  623. dev[0].set_network(id, "key_mgmt", "NONE")
  624. dev[0].set_network(id, "disabled", "0")
  625. dev[0].set_network(id, "scan_freq", "2412")
  626. dev[0].set_network(id, "scan_ssid", "1")
  627. for i in range(5):
  628. id = dev[0].add_network()
  629. dev[0].set_network_quoted(id, "ssid", "foo")
  630. dev[0].set_network(id, "key_mgmt", "NONE")
  631. dev[0].set_network(id, "disabled", "0")
  632. dev[0].set_network(id, "scan_freq", "2412")
  633. dev[0].set_network(id, "scan_ssid", "1")
  634. dev[0].request("REASSOCIATE")
  635. dev[0].wait_connected(timeout=30)
  636. dev[0].request("REMOVE_NETWORK all")
  637. hapd.disable()
  638. def test_scan_random_mac(dev, apdev, params):
  639. """Random MAC address in scans"""
  640. try:
  641. _test_scan_random_mac(dev, apdev, params)
  642. finally:
  643. dev[0].request("MAC_RAND_SCAN all enable=0")
  644. def _test_scan_random_mac(dev, apdev, params):
  645. hostapd.add_ap(apdev[0], { "ssid": "test-scan" })
  646. bssid = apdev[0]['bssid']
  647. tests = [ "",
  648. "addr=foo",
  649. "mask=foo",
  650. "enable=1",
  651. "all enable=1 mask=00:11:22:33:44:55",
  652. "all enable=1 addr=00:11:22:33:44:55",
  653. "all enable=1 addr=01:11:22:33:44:55 mask=ff:ff:ff:ff:ff:ff",
  654. "all enable=1 addr=00:11:22:33:44:55 mask=fe:ff:ff:ff:ff:ff",
  655. "enable=2 scan sched pno all",
  656. "pno enable=1",
  657. "all enable=2",
  658. "foo" ]
  659. for args in tests:
  660. if "FAIL" not in dev[0].request("MAC_RAND_SCAN " + args):
  661. raise Exception("Invalid MAC_RAND_SCAN accepted: " + args)
  662. if dev[0].get_driver_status_field('capa.mac_addr_rand_scan_supported') != '1':
  663. raise HwsimSkip("Driver does not support random MAC address for scanning")
  664. tests = [ "all enable=1",
  665. "all enable=1 addr=f2:11:22:33:44:55 mask=ff:ff:ff:ff:ff:ff",
  666. "all enable=1 addr=f2:11:33:00:00:00 mask=ff:ff:ff:00:00:00" ]
  667. for args in tests:
  668. dev[0].request("MAC_RAND_SCAN " + args)
  669. dev[0].scan_for_bss(bssid, freq=2412, force_scan=True)
  670. out = run_tshark(os.path.join(params['logdir'], "hwsim0.pcapng"),
  671. "wlan.fc.type_subtype == 4", ["wlan.ta" ])
  672. if out is not None:
  673. addr = out.splitlines()
  674. logger.info("Probe Request frames seen from: " + str(addr))
  675. if dev[0].own_addr() in addr:
  676. raise Exception("Real address used to transmit Probe Request frame")
  677. if "f2:11:22:33:44:55" not in addr:
  678. raise Exception("Fully configured random address not seen")
  679. found = False
  680. for a in addr:
  681. if a.startswith('f2:11:33'):
  682. found = True
  683. break
  684. if not found:
  685. raise Exception("Fixed OUI random address not seen")
  686. def test_scan_trigger_failure(dev, apdev):
  687. """Scan trigger to the driver failing"""
  688. hostapd.add_ap(apdev[0], { "ssid": "test-scan" })
  689. bssid = apdev[0]['bssid']
  690. if "OK" not in dev[0].request("SET test_failure 1"):
  691. raise Exception("Failed to set test_failure")
  692. if "OK" not in dev[0].request("SCAN"):
  693. raise Exception("SCAN command failed")
  694. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-FAILED"], timeout=10)
  695. if ev is None:
  696. raise Exception("Did not receive CTRL-EVENT-SCAN-FAILED event")
  697. if "retry=1" in ev:
  698. raise Exception("Unexpected scan retry indicated")
  699. if dev[0].get_status_field('wpa_state') == "SCANNING":
  700. raise Exception("wpa_state SCANNING not cleared")
  701. id = dev[0].connect("test-scan", key_mgmt="NONE", scan_freq="2412",
  702. only_add_network=True)
  703. dev[0].select_network(id)
  704. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-FAILED"], timeout=10)
  705. if ev is None:
  706. raise Exception("Did not receive CTRL-EVENT-SCAN-FAILED event")
  707. if "retry=1" not in ev:
  708. raise Exception("No scan retry indicated for connection")
  709. if dev[0].get_status_field('wpa_state') == "SCANNING":
  710. raise Exception("wpa_state SCANNING not cleared")
  711. dev[0].request("SET test_failure 0")
  712. dev[0].wait_connected()
  713. dev[0].request("SET test_failure 1")
  714. if "OK" not in dev[0].request("SCAN"):
  715. raise Exception("SCAN command failed")
  716. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-FAILED"], timeout=10)
  717. if ev is None:
  718. raise Exception("Did not receive CTRL-EVENT-SCAN-FAILED event")
  719. if "retry=1" in ev:
  720. raise Exception("Unexpected scan retry indicated")
  721. if dev[0].get_status_field('wpa_state') != "COMPLETED":
  722. raise Exception("wpa_state COMPLETED not restored")
  723. dev[0].request("SET test_failure 0")
  724. def test_scan_specify_ssid(dev, apdev):
  725. """Control interface behavior on scan SSID parameter"""
  726. dev[0].flush_scan_cache()
  727. hapd = hostapd.add_ap(apdev[0], { "ssid": "test-hidden",
  728. "ignore_broadcast_ssid": "1" })
  729. bssid = apdev[0]['bssid']
  730. check_scan(dev[0], "freq=2412 use_id=1 ssid 414243")
  731. bss = dev[0].get_bss(bssid)
  732. if bss is not None and bss['ssid'] == 'test-hidden':
  733. raise Exception("BSS entry for hidden AP present unexpectedly")
  734. # Allow couple more retries to avoid reporting errors during heavy load
  735. for i in range(5):
  736. check_scan(dev[0], "freq=2412 ssid 414243 ssid 746573742d68696464656e ssid 616263313233 use_id=1")
  737. bss = dev[0].get_bss(bssid)
  738. if bss and 'test-hidden' in dev[0].request("SCAN_RESULTS"):
  739. break
  740. if bss is None:
  741. raise Exception("BSS entry for hidden AP not found")
  742. if 'test-hidden' not in dev[0].request("SCAN_RESULTS"):
  743. raise Exception("Expected SSID not included in the scan results");
  744. hapd.disable()
  745. dev[0].flush_scan_cache(freq=2432)
  746. dev[0].flush_scan_cache()
  747. if "FAIL" not in dev[0].request("SCAN ssid foo"):
  748. raise Exception("Invalid SCAN command accepted")
  749. def test_scan_ap_scan_2_ap_mode(dev, apdev):
  750. """AP_SCAN 2 AP mode and scan()"""
  751. try:
  752. _test_scan_ap_scan_2_ap_mode(dev, apdev)
  753. finally:
  754. dev[0].request("AP_SCAN 1")
  755. def _test_scan_ap_scan_2_ap_mode(dev, apdev):
  756. if "OK" not in dev[0].request("AP_SCAN 2"):
  757. raise Exception("Failed to set AP_SCAN 2")
  758. id = dev[0].add_network()
  759. dev[0].set_network(id, "mode", "2")
  760. dev[0].set_network_quoted(id, "ssid", "wpas-ap-open")
  761. dev[0].set_network(id, "key_mgmt", "NONE")
  762. dev[0].set_network(id, "frequency", "2412")
  763. dev[0].set_network(id, "scan_freq", "2412")
  764. dev[0].set_network(id, "disabled", "0")
  765. dev[0].select_network(id)
  766. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=5)
  767. if ev is None:
  768. raise Exception("AP failed to start")
  769. with fail_test(dev[0], 1, "wpa_driver_nl80211_scan"):
  770. if "OK" not in dev[0].request("SCAN freq=2412"):
  771. raise Exception("SCAN command failed unexpectedly")
  772. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-FAILED",
  773. "AP-DISABLED"], timeout=5)
  774. if ev is None:
  775. raise Exception("CTRL-EVENT-SCAN-FAILED not seen")
  776. if "AP-DISABLED" in ev:
  777. raise Exception("Unexpected AP-DISABLED event")
  778. if "retry=1" in ev:
  779. # Wait for the retry to scan happen
  780. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-FAILED",
  781. "AP-DISABLED"], timeout=5)
  782. if ev is None:
  783. raise Exception("CTRL-EVENT-SCAN-FAILED not seen - retry")
  784. if "AP-DISABLED" in ev:
  785. raise Exception("Unexpected AP-DISABLED event - retry")
  786. dev[1].connect("wpas-ap-open", key_mgmt="NONE", scan_freq="2412")
  787. dev[1].request("DISCONNECT")
  788. dev[1].wait_disconnected()
  789. dev[0].request("DISCONNECT")
  790. dev[0].wait_disconnected()
  791. def test_scan_bss_expiration_on_ssid_change(dev, apdev):
  792. """BSS entry expiration when AP changes SSID"""
  793. dev[0].flush_scan_cache()
  794. hapd = hostapd.add_ap(apdev[0], { "ssid": "test-scan" })
  795. bssid = apdev[0]['bssid']
  796. dev[0].scan_for_bss(apdev[0]['bssid'], freq="2412")
  797. hapd.request("DISABLE")
  798. hapd = hostapd.add_ap(apdev[0], { "ssid": "open" })
  799. if "OK" not in dev[0].request("BSS_EXPIRE_COUNT 3"):
  800. raise Exception("BSS_EXPIRE_COUNT failed")
  801. dev[0].scan(freq="2412")
  802. dev[0].scan(freq="2412")
  803. if "OK" not in dev[0].request("BSS_EXPIRE_COUNT 2"):
  804. raise Exception("BSS_EXPIRE_COUNT failed")
  805. res = dev[0].request("SCAN_RESULTS")
  806. if "test-scan" not in res:
  807. raise Exception("The first SSID not in scan results")
  808. if "open" not in res:
  809. raise Exception("The second SSID not in scan results")
  810. dev[0].connect("open", key_mgmt="NONE")
  811. dev[0].request("BSS_FLUSH 0")
  812. res = dev[0].request("SCAN_RESULTS")
  813. if "test-scan" in res:
  814. raise Exception("The BSS entry with the old SSID was not removed")
  815. dev[0].request("DISCONNECT")
  816. dev[0].wait_disconnected()
  817. def test_scan_dfs(dev, apdev, params):
  818. """Scan on DFS channels"""
  819. try:
  820. _test_scan_dfs(dev, apdev, params)
  821. finally:
  822. subprocess.call(['iw', 'reg', 'set', '00'])
  823. def _test_scan_dfs(dev, apdev, params):
  824. subprocess.call(['iw', 'reg', 'set', 'US'])
  825. for i in range(2):
  826. for j in range(5):
  827. ev = dev[i].wait_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=5)
  828. if ev is None:
  829. raise Exception("No regdom change event")
  830. if "alpha2=US" in ev:
  831. break
  832. dev[i].dump_monitor()
  833. if "OK" not in dev[0].request("SCAN"):
  834. raise Exception("SCAN command failed")
  835. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"])
  836. if ev is None:
  837. raise Exception("Scan did not complete")
  838. if "OK" not in dev[0].request("SCAN freq=2412,5180,5260,5500,5600,5745"):
  839. raise Exception("SCAN command failed")
  840. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"])
  841. if ev is None:
  842. raise Exception("Scan did not complete")
  843. out = run_tshark(os.path.join(params['logdir'], "hwsim0.pcapng"),
  844. "wlan.fc.type_subtype == 4", [ "radiotap.channel.freq" ])
  845. if out is not None:
  846. freq = out.splitlines()
  847. freq = [int(f) for f in freq]
  848. freq = list(set(freq))
  849. freq.sort()
  850. logger.info("Active scan seen on channels: " + str(freq))
  851. for f in freq:
  852. if (f >= 5260 and f <= 5320) or (f >= 5500 and f <= 5700):
  853. raise Exception("Active scan on DFS channel: %d" % f)
  854. if f in [ 2467, 2472 ]:
  855. raise Exception("Active scan on US-disallowed channel: %d" % f)
  856. def test_scan_abort(dev, apdev):
  857. """Aborting a full scan"""
  858. dev[0].request("SCAN")
  859. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-STARTED"])
  860. if ev is None:
  861. raise Exception("Scan did not start")
  862. if "OK" not in dev[0].request("ABORT_SCAN"):
  863. raise Exception("ABORT_SCAN command failed")
  864. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], timeout=2)
  865. if ev is None:
  866. raise Exception("Scan did not terminate")
  867. def test_scan_abort_on_connect(dev, apdev):
  868. """Aborting a full scan on connection request"""
  869. hostapd.add_ap(apdev[0], { "ssid": "test-scan" })
  870. bssid = apdev[0]['bssid']
  871. dev[0].scan_for_bss(apdev[0]['bssid'], freq="2412")
  872. dev[0].dump_monitor()
  873. dev[0].request("SCAN")
  874. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-STARTED"])
  875. if ev is None:
  876. raise Exception("Scan did not start")
  877. dev[0].connect("test-scan", key_mgmt="NONE")
  878. def test_scan_ext(dev, apdev):
  879. """Custom IE in Probe Request frame"""
  880. hostapd.add_ap(apdev[0], { "ssid": "test-scan" })
  881. bssid = apdev[0]['bssid']
  882. try:
  883. if "OK" not in dev[0].request("VENDOR_ELEM_ADD 14 dd050011223300"):
  884. raise Exception("VENDOR_ELEM_ADD failed")
  885. check_scan(dev[0], "freq=2412 use_id=1")
  886. finally:
  887. dev[0].request("VENDOR_ELEM_REMOVE 14 *")
  888. def test_scan_fail(dev, apdev):
  889. """Scan failures"""
  890. with fail_test(dev[0], 1, "wpa_driver_nl80211_scan"):
  891. dev[0].request("DISCONNECT")
  892. if "OK" not in dev[0].request("SCAN freq=2412"):
  893. raise Exception("SCAN failed")
  894. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-FAILED"], timeout=5)
  895. if ev is None:
  896. raise Exception("Did not see scan failure event")
  897. dev[0].dump_monitor()
  898. for i in range(1, 5):
  899. with alloc_fail(dev[0], i,
  900. "wpa_scan_clone_params;wpa_supplicant_trigger_scan"):
  901. if "OK" not in dev[0].request("SCAN ssid 112233 freq=2412"):
  902. raise Exception("SCAN failed")
  903. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-FAILED"], timeout=5)
  904. if ev is None:
  905. raise Exception("Did not see scan failure event")
  906. dev[0].dump_monitor()
  907. with alloc_fail(dev[0], 1, "radio_add_work;wpa_supplicant_trigger_scan"):
  908. if "OK" not in dev[0].request("SCAN freq=2412"):
  909. raise Exception("SCAN failed")
  910. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-FAILED"], timeout=5)
  911. if ev is None:
  912. raise Exception("Did not see scan failure event")
  913. dev[0].dump_monitor()
  914. try:
  915. if "OK" not in dev[0].request("SET filter_ssids 1"):
  916. raise Exception("SET failed")
  917. id = dev[0].connect("test-scan", key_mgmt="NONE", only_add_network=True)
  918. with alloc_fail(dev[0], 1, "wpa_supplicant_build_filter_ssids"):
  919. # While the filter list cannot be created due to memory allocation
  920. # failure, this scan is expected to be completed without SSID
  921. # filtering.
  922. if "OK" not in dev[0].request("SCAN freq=2412"):
  923. raise Exception("SCAN failed")
  924. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"])
  925. if ev is None:
  926. raise Exception("Scan did not complete")
  927. dev[0].remove_network(id)
  928. finally:
  929. dev[0].request("SET filter_ssids 0")
  930. dev[0].dump_monitor()
  931. with alloc_fail(dev[0], 1, "nl80211_get_scan_results"):
  932. if "OK" not in dev[0].request("SCAN freq=2412"):
  933. raise Exception("SCAN failed")
  934. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-STARTED"], timeout=5)
  935. if ev is None:
  936. raise Exception("Did not see scan started event")
  937. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  938. dev[0].dump_monitor()
  939. try:
  940. if "OK" not in dev[0].request("SET setband 2G"):
  941. raise Exception("SET setband failed")
  942. with alloc_fail(dev[0], 1, "=wpa_setband_scan_freqs_list"):
  943. # While the frequency list cannot be created due to memory
  944. # allocation failure, this scan is expected to be completed without
  945. # frequency filtering.
  946. if "OK" not in dev[0].request("SCAN"):
  947. raise Exception("SCAN failed")
  948. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  949. dev[0].request("ABORT_SCAN")
  950. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"])
  951. if ev is None:
  952. raise Exception("Scan did not complete")
  953. finally:
  954. dev[0].request("SET setband AUTO")
  955. dev[0].dump_monitor()
  956. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  957. wpas.interface_add("wlan5")
  958. wpas.request("SET preassoc_mac_addr 1")
  959. with fail_test(wpas, 1, "nl80211_set_mac_addr;wpas_trigger_scan_cb"):
  960. if "OK" not in wpas.request("SCAN freq=2412"):
  961. raise Exception("SCAN failed")
  962. ev = wpas.wait_event(["CTRL-EVENT-SCAN-FAILED"], timeout=5)
  963. if ev is None:
  964. raise Exception("Did not see scan failure event")
  965. wpas.request("SET preassoc_mac_addr 0")
  966. wpas.dump_monitor()
  967. hapd = hostapd.add_ap(apdev[0], { "ssid": "open" })
  968. with alloc_fail(dev[0], 1, "wpa_bss_add"):
  969. dev[0].scan_for_bss(apdev[0]['bssid'], freq="2412")
  970. def test_scan_freq_list(dev, apdev):
  971. """Scan with SET freq_list and scan_cur_freq"""
  972. try:
  973. if "OK" not in dev[0].request("SET freq_list 2412 2417"):
  974. raise Exception("SET freq_list failed")
  975. check_scan(dev[0], "use_id=1")
  976. finally:
  977. dev[0].request("SET freq_list ")
  978. hapd = hostapd.add_ap(apdev[0], { "ssid": "test-scan" })
  979. dev[0].connect("test-scan", key_mgmt="NONE", scan_freq="2412")
  980. try:
  981. if "OK" not in dev[0].request("SET scan_cur_freq 1"):
  982. raise Exception("SET scan_cur_freq failed")
  983. check_scan(dev[0], "use_id=1")
  984. finally:
  985. dev[0].request("SET scan_cur_freq 0")
  986. dev[0].request("REMOVE_NETWORK all")
  987. dev[0].wait_disconnected()
  988. def test_scan_bss_limit(dev, apdev):
  989. """Scan and wpa_supplicant BSS entry limit"""
  990. try:
  991. _test_scan_bss_limit(dev, apdev)
  992. finally:
  993. dev[0].request("SET bss_max_count 200")
  994. pass
  995. def _test_scan_bss_limit(dev, apdev):
  996. # Trigger 'Increasing the MAX BSS count to 2 because all BSSes are in use.
  997. # We should normally not get here!' message by limiting the maximum BSS
  998. # count to one so that the second AP would not fit in the BSS list and the
  999. # first AP cannot be removed from the list since it is still in use.
  1000. dev[0].request("SET bss_max_count 1")
  1001. hapd = hostapd.add_ap(apdev[0], { "ssid": "test-scan" })
  1002. dev[0].connect("test-scan", key_mgmt="NONE", scan_freq="2412")
  1003. hapd2 = hostapd.add_ap(apdev[1], { "ssid": "test-scan-2",
  1004. "channel": "6" })
  1005. dev[0].scan_for_bss(apdev[1]['bssid'], freq=2437, force_scan=True)