test_rrm.py 52 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186
  1. # Radio measurement
  2. # Copyright(c) 2013 - 2016 Intel Mobile Communications GmbH.
  3. # Copyright(c) 2011 - 2016 Intel Corporation. All rights reserved.
  4. # Copyright (c) 2017, Jouni Malinen <j@w1.fi>
  5. #
  6. # This software may be distributed under the terms of the BSD license.
  7. # See README for more details.
  8. import binascii
  9. import re
  10. import logging
  11. logger = logging.getLogger()
  12. import struct
  13. import subprocess
  14. import hostapd
  15. from utils import HwsimSkip, alloc_fail, fail_test, wait_fail_trigger
  16. from test_ap_ht import clear_scan_cache
  17. nr="00112233445500000000510107"
  18. lci="01000800101298c0b512926666f6c2f1001c00004104050000c00012"
  19. civic="01000b0011223344556677889900998877665544332211aabbccddeeff"
  20. def check_nr_results(dev, bssids=None, lci=False, civic=False):
  21. if bssids is None:
  22. ev = dev.wait_event(["RRM-NEIGHBOR-REP-REQUEST-FAILED" ], timeout=10)
  23. if ev is None:
  24. raise Exception("RRM neighbor report failure not received")
  25. return
  26. received = []
  27. for bssid in bssids:
  28. ev = dev.wait_event(["RRM-NEIGHBOR-REP-RECEIVED"], timeout=10)
  29. if ev is None:
  30. raise Exception("RRM report result not indicated")
  31. received.append(ev)
  32. for bssid in bssids:
  33. found = False
  34. for r in received:
  35. if "RRM-NEIGHBOR-REP-RECEIVED bssid=" + bssid in r:
  36. if lci and "lci=" not in r:
  37. raise Exception("LCI data not reported for %s" % bssid)
  38. if civic and "civic=" not in r:
  39. raise Exception("civic data not reported for %s" % bssid)
  40. received.remove(r)
  41. found = True
  42. break
  43. if not found:
  44. raise Exception("RRM report result for %s not indicated" % bssid)
  45. def test_rrm_neighbor_db(dev, apdev):
  46. """hostapd ctrl_iface SET_NEIGHBOR"""
  47. params = { "ssid": "test", "rrm_neighbor_report": "1" }
  48. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  49. # Bad BSSID
  50. if "FAIL" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:gg ssid=\"test1\" nr=" + nr):
  51. raise Exception("Set neighbor succeeded unexpectedly")
  52. # Bad SSID
  53. if "FAIL" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=test1 nr=" + nr):
  54. raise Exception("Set neighbor succeeded unexpectedly")
  55. # No SSID
  56. if "FAIL" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 nr=" + nr):
  57. raise Exception("Set neighbor succeeded unexpectedly")
  58. # No NR
  59. if "FAIL" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\""):
  60. raise Exception("Set neighbor succeeded unexpectedly")
  61. # Odd length of NR
  62. if "FAIL" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\" nr=" + nr[:-1]):
  63. raise Exception("Set neighbor succeeded unexpectedly")
  64. # Invalid lci
  65. if "FAIL" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\" nr=" + nr + " lci=1"):
  66. raise Exception("Set neighbor succeeded unexpectedly")
  67. # Invalid civic
  68. if "FAIL" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\" nr=" + nr + " civic=1"):
  69. raise Exception("Set neighbor succeeded unexpectedly")
  70. # No entry yet in database
  71. if "FAIL" not in hapd.request("REMOVE_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\""):
  72. raise Exception("Remove neighbor succeeded unexpectedly")
  73. # Add a neighbor entry
  74. if "OK" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\" nr=" + nr + " lci=" + lci + " civic=" + civic):
  75. raise Exception("Set neighbor failed")
  76. # Another BSSID with the same SSID
  77. if "OK" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:56 ssid=\"test1\" nr=" + nr + " lci=" + lci + " civic=" + civic):
  78. raise Exception("Set neighbor failed")
  79. # Fewer parameters
  80. if "OK" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\" nr=" + nr):
  81. raise Exception("Set neighbor failed")
  82. # SSID in hex format
  83. if "OK" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=7465737431 nr=" + nr):
  84. raise Exception("Set neighbor failed")
  85. # With more parameters
  86. if "OK" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\" nr=" + nr + " civic=" + civic):
  87. raise Exception("Set neighbor failed")
  88. # With all parameters
  89. if "OK" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\" nr=" + nr + " lci=" + lci + " civic=" + civic):
  90. raise Exception("Set neighbor failed")
  91. # Another SSID on the same BSSID
  92. if "OK" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test2\" nr=" + nr + " lci=" + lci):
  93. raise Exception("Set neighbor failed")
  94. if "OK" not in hapd.request("REMOVE_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\""):
  95. raise Exception("Remove neighbor failed")
  96. if "OK" not in hapd.request("REMOVE_NEIGHBOR 00:11:22:33:44:56 ssid=\"test1\""):
  97. raise Exception("Remove neighbor failed")
  98. if "OK" not in hapd.request("REMOVE_NEIGHBOR 00:11:22:33:44:55 ssid=\"test2\""):
  99. raise Exception("Remove neighbor failed")
  100. # Double remove
  101. if "FAIL" not in hapd.request("REMOVE_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\""):
  102. raise Exception("Remove neighbor succeeded unexpectedly")
  103. # Stationary AP
  104. if "OK" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test3\" nr=" + nr + " lci=" + lci + " civic=" + civic + " stat"):
  105. raise Exception("Set neighbor failed")
  106. if "OK" not in hapd.request("REMOVE_NEIGHBOR 00:11:22:33:44:55 ssid=\"test3\""):
  107. raise Exception("Remove neighbor failed")
  108. # Invalid remove - bad BSSID
  109. if "FAIL" not in hapd.request("REMOVE_NEIGHBOR 00:11:22:33:44:5 ssid=\"test1\""):
  110. raise Exception("Remove neighbor succeeded unexpectedly")
  111. # Invalid remove - bad SSID
  112. if "FAIL" not in hapd.request("REMOVE_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1"):
  113. raise Exception("Remove neighbor succeeded unexpectedly")
  114. # Invalid remove - missing SSID
  115. if "FAIL" not in hapd.request("REMOVE_NEIGHBOR 00:11:22:33:44:55"):
  116. raise Exception("Remove neighbor succeeded unexpectedly")
  117. def test_rrm_neighbor_rep_req(dev, apdev):
  118. """wpa_supplicant ctrl_iface NEIGHBOR_REP_REQUEST"""
  119. nr1="00112233445500000000510107"
  120. nr2="00112233445600000000510107"
  121. nr3="dd112233445500000000510107"
  122. params = { "ssid": "test" }
  123. hostapd.add_ap(apdev[0]['ifname'], params)
  124. params = { "ssid": "test2", "rrm_neighbor_report": "1" }
  125. hapd = hostapd.add_ap(apdev[1]['ifname'], params)
  126. bssid1 = apdev[1]['bssid']
  127. dev[0].connect("test", key_mgmt="NONE", scan_freq="2412")
  128. if "FAIL" not in dev[0].request("NEIGHBOR_REP_REQUEST"):
  129. raise Exception("Request succeeded unexpectedly (AP without RRM)")
  130. if "FAIL" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"abcdef\""):
  131. raise Exception("Request succeeded unexpectedly (AP without RRM 2)")
  132. dev[0].request("DISCONNECT")
  133. rrm = int(dev[0].get_driver_status_field("capa.rrm_flags"), 16)
  134. if rrm & 0x5 != 0x5 and rrm & 0x10 != 0x10:
  135. raise HwsimSkip("Required RRM capabilities are not supported")
  136. dev[0].connect("test2", key_mgmt="NONE", scan_freq="2412")
  137. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST"):
  138. raise Exception("Request failed")
  139. check_nr_results(dev[0], [bssid1])
  140. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST lci"):
  141. raise Exception("Request failed")
  142. check_nr_results(dev[0], [bssid1])
  143. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST lci civic"):
  144. raise Exception("Request failed")
  145. check_nr_results(dev[0], [bssid1])
  146. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"test3\""):
  147. raise Exception("Request failed")
  148. check_nr_results(dev[0])
  149. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"test3\" lci civic"):
  150. raise Exception("Request failed")
  151. check_nr_results(dev[0])
  152. if "OK" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test3\" nr=" + nr1 + " lci=" + lci + " civic=" + civic):
  153. raise Exception("Set neighbor failed")
  154. if "OK" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:56 ssid=\"test3\" nr=" + nr2 + " lci=" + lci + " civic=" + civic):
  155. raise Exception("Set neighbor failed")
  156. if "OK" not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:56 ssid=\"test4\" nr=" + nr2 + " lci=" + lci + " civic=" + civic):
  157. raise Exception("Set neighbor failed")
  158. if "OK" not in hapd.request("SET_NEIGHBOR dd:11:22:33:44:55 ssid=\"test5\" nr=" + nr3 + " lci=" + lci):
  159. raise Exception("Set neighbor failed")
  160. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"test3\""):
  161. raise Exception("Request failed")
  162. check_nr_results(dev[0], ["00:11:22:33:44:55", "00:11:22:33:44:56"])
  163. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"test3\" lci"):
  164. raise Exception("Request failed")
  165. check_nr_results(dev[0], ["00:11:22:33:44:55", "00:11:22:33:44:56"],
  166. lci=True)
  167. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"test3\" civic"):
  168. raise Exception("Request failed")
  169. check_nr_results(dev[0], ["00:11:22:33:44:55", "00:11:22:33:44:56"],
  170. civic=True)
  171. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"test3\" lci civic"):
  172. raise Exception("Request failed")
  173. check_nr_results(dev[0], ["00:11:22:33:44:55", "00:11:22:33:44:56"],
  174. lci=True, civic=True)
  175. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"test4\""):
  176. raise Exception("Request failed")
  177. check_nr_results(dev[0], ["00:11:22:33:44:56"])
  178. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"test4\" lci"):
  179. raise Exception("Request failed")
  180. check_nr_results(dev[0], ["00:11:22:33:44:56"], lci=True)
  181. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"test4\" civic"):
  182. raise Exception("Request failed")
  183. check_nr_results(dev[0], ["00:11:22:33:44:56"], civic=True)
  184. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"test4\" lci civic"):
  185. raise Exception("Request failed")
  186. check_nr_results(dev[0], ["00:11:22:33:44:56"], lci=True, civic=True)
  187. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"test5\""):
  188. raise Exception("Request failed")
  189. check_nr_results(dev[0], ["dd:11:22:33:44:55"])
  190. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"test5\" lci"):
  191. raise Exception("Request failed")
  192. check_nr_results(dev[0], ["dd:11:22:33:44:55"], lci=True)
  193. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"test5\" civic"):
  194. raise Exception("Request failed")
  195. check_nr_results(dev[0], ["dd:11:22:33:44:55"])
  196. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"test5\" lci civic"):
  197. raise Exception("Request failed")
  198. check_nr_results(dev[0], ["dd:11:22:33:44:55"], lci=True)
  199. def test_rrm_lci_req(dev, apdev):
  200. """hostapd lci request"""
  201. rrm = int(dev[0].get_driver_status_field("capa.rrm_flags"), 16)
  202. if rrm & 0x5 != 0x5 and rrm & 0x10 != 0x10:
  203. raise HwsimSkip("Required RRM capabilities are not supported")
  204. params = { "ssid": "rrm", "rrm_neighbor_report": "1" }
  205. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  206. # station not specified
  207. if "FAIL" not in hapd.request("REQ_LCI "):
  208. raise Exception("REQ_LCI with no station succeeded unexpectedly")
  209. # station that is not connected specified
  210. if "FAIL" not in hapd.request("REQ_LCI " + dev[0].own_addr()):
  211. raise Exception("REQ_LCI succeeded unexpectedly (station not connected)")
  212. dev[0].request("SET LCI ")
  213. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  214. # station connected without LCI
  215. if "FAIL" not in hapd.request("REQ_LCI " + dev[0].own_addr()):
  216. raise Exception("REQ_LCI succeeded unexpectedly (station without lci)")
  217. dev[0].request("DISCONNECT")
  218. dev[0].wait_disconnected(timeout=2)
  219. dev[0].request("SET LCI " + lci)
  220. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  221. # station connected with LCI
  222. if "OK" not in hapd.request("REQ_LCI " + dev[0].own_addr()):
  223. raise Exception("REQ_LCI failed unexpectedly")
  224. def test_rrm_neighbor_rep_req_from_conf(dev, apdev):
  225. """wpa_supplicant ctrl_iface NEIGHBOR_REP_REQUEST and hostapd config"""
  226. params = { "ssid": "test2", "rrm_neighbor_report": "1",
  227. "stationary_ap": "1", "lci": lci, "civic": civic }
  228. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  229. bssid = apdev[0]['bssid']
  230. rrm = int(dev[0].get_driver_status_field("capa.rrm_flags"), 16)
  231. if rrm & 0x5 != 0x5 and rrm & 0x10 != 0x10:
  232. raise HwsimSkip("Required RRM capabilities are not supported")
  233. dev[0].connect("test2", key_mgmt="NONE", scan_freq="2412")
  234. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST"):
  235. raise Exception("Request failed")
  236. check_nr_results(dev[0], [bssid])
  237. def test_rrm_neighbor_rep_req_timeout(dev, apdev):
  238. """wpa_supplicant behavior on NEIGHBOR_REP_REQUEST response timeout"""
  239. params = { "ssid": "test2", "rrm_neighbor_report": "1",
  240. "stationary_ap": "1", "lci": lci, "civic": civic }
  241. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  242. bssid = apdev[0]['bssid']
  243. rrm = int(dev[0].get_driver_status_field("capa.rrm_flags"), 16)
  244. if rrm & 0x5 != 0x5 and rrm & 0x10 != 0x10:
  245. raise HwsimSkip("Required RRM capabilities are not supported")
  246. dev[0].connect("test2", key_mgmt="NONE", scan_freq="2412")
  247. hapd.set("ext_mgmt_frame_handling", "1")
  248. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST"):
  249. raise Exception("Request failed")
  250. msg = hapd.mgmt_rx()
  251. if msg is None:
  252. raise Exception("Neighbor report request not seen")
  253. check_nr_results(dev[0])
  254. def test_rrm_neighbor_rep_req_oom(dev, apdev):
  255. """wpa_supplicant ctrl_iface NEIGHBOR_REP_REQUEST OOM"""
  256. params = { "ssid": "test2", "rrm_neighbor_report": "1",
  257. "stationary_ap": "1", "lci": lci, "civic": civic }
  258. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  259. bssid = apdev[0]['bssid']
  260. rrm = int(dev[0].get_driver_status_field("capa.rrm_flags"), 16)
  261. if rrm & 0x5 != 0x5 and rrm & 0x10 != 0x10:
  262. raise HwsimSkip("Required RRM capabilities are not supported")
  263. dev[0].connect("test2", key_mgmt="NONE", scan_freq="2412")
  264. with alloc_fail(dev[0], 1, "wpabuf_alloc;wpas_rrm_process_neighbor_rep"):
  265. if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST"):
  266. raise Exception("Request failed")
  267. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  268. with fail_test(dev[0], 1,
  269. "wpa_driver_nl80211_send_action;wpas_rrm_send_neighbor_rep_request"):
  270. if "FAIL" not in dev[0].request("NEIGHBOR_REP_REQUEST"):
  271. raise Exception("Request succeeded unexpectedly")
  272. with alloc_fail(dev[0], 1,
  273. "wpabuf_alloc;wpas_rrm_send_neighbor_rep_request"):
  274. if "FAIL" not in dev[0].request("NEIGHBOR_REP_REQUEST"):
  275. raise Exception("Request succeeded unexpectedly")
  276. def test_rrm_ftm_range_req(dev, apdev):
  277. """hostapd FTM range request command"""
  278. rrm = int(dev[0].get_driver_status_field("capa.rrm_flags"), 16)
  279. if rrm & 0x5 != 0x5 and rrm & 0x10 != 0x10:
  280. raise HwsimSkip("Required RRM capabilities are not supported")
  281. params = { "ssid": "rrm", "rrm_neighbor_report": "1" }
  282. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  283. # station not specified
  284. if "FAIL" not in hapd.request("REQ_RANGE "):
  285. raise Exception("REQ_RANGE with no station succeeded unexpectedly")
  286. # station that is not connected specified
  287. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr()):
  288. raise Exception("REQ_RANGE succeeded unexpectedly (station not connected)")
  289. # No responders specified
  290. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " 10 10"):
  291. raise Exception("REQ_RANGE succeeded unexpectedly (no responder)")
  292. # Bad responder address
  293. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " 10 10 00:11:22:33:44:"):
  294. raise Exception("REQ_RANGE succeeded unexpectedly (bad responder address)")
  295. # Bad responder address
  296. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " 10 10 00:11:22:33:44:55 00:11:22:33:44"):
  297. raise Exception("REQ_RANGE succeeded unexpectedly (bad responder address 2)")
  298. # Bad min_ap value
  299. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " 10 300 00:11:22:33:44:55"):
  300. raise Exception("REQ_RANGE succeeded unexpectedly (invalid min_ap value)")
  301. # Bad rand value
  302. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " -1 10 00:11:22:33:44:55"):
  303. raise Exception("REQ_RANGE succeeded unexpectedly (invalid rand value)")
  304. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " 65536 10 00:11:22:33:44:55"):
  305. raise Exception("REQ_RANGE succeeded unexpectedly (invalid rand value)")
  306. # Missing min_ap value
  307. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " 10"):
  308. raise Exception("REQ_RANGE succeeded unexpectedly (missing min_ap value)")
  309. # Too many responders
  310. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " 10 10" + 20*" 00:11:22:33:44:55"):
  311. raise Exception("REQ_RANGE succeeded unexpectedly (too many responders)")
  312. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  313. # Responder not in database
  314. # Note: this check would pass since the station does not support FTM range
  315. # request and not because the responder is not in the database.
  316. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " 10 10 00:11:22:33:44:55"):
  317. raise Exception("REQ_RANGE succeeded unexpectedly (responder not in database)")
  318. def test_rrm_ftm_capa_indication(dev, apdev):
  319. """FTM capability indication"""
  320. try:
  321. _test_rrm_ftm_capa_indication(dev, apdev)
  322. finally:
  323. dev[0].request("SET ftm_initiator 0")
  324. dev[0].request("SET ftm_responder 0")
  325. def _test_rrm_ftm_capa_indication(dev, apdev):
  326. params = { "ssid": "ftm",
  327. "ftm_responder": "1",
  328. "ftm_initiator": "1", }
  329. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  330. if "OK" not in dev[0].request("SET ftm_initiator 1"):
  331. raise Exception("could not set ftm_initiator")
  332. if "OK" not in dev[0].request("SET ftm_responder 1"):
  333. raise Exception("could not set ftm_responder")
  334. dev[0].scan_for_bss(apdev[0]['bssid'], freq=2412, force_scan=True)
  335. class BeaconReport:
  336. def __init__(self, report):
  337. self.opclass, self.channel, self.start, self.duration, self.frame_info, self.rcpi, self.rsni = struct.unpack("<BBQHBBB", report[0:15])
  338. report = report[15:]
  339. self.bssid = report[0:6]
  340. self.bssid_str = "%02x:%02x:%02x:%02x:%02x:%02x" % (struct.unpack('6B', self.bssid))
  341. report = report[6:]
  342. self.antenna_id, self.parent_tsf = struct.unpack("<BI", report[0:5])
  343. report = report[5:]
  344. self.subelems = report
  345. self.frame_body = None
  346. while len(report) >= 2:
  347. eid,elen = struct.unpack('BB', report[0:2])
  348. report = report[2:]
  349. if len(report) < elen:
  350. raise Exception("Invalid subelement in beacon report")
  351. if eid == 1:
  352. # Reported Frame Body
  353. # Contents depends on the reporting detail request:
  354. # 0 = no Reported Frame Body subelement
  355. # 1 = all fixed fields and any elements identified in Request
  356. # element
  357. # 2 = all fixed fields and all elements
  358. # Fixed fields: Timestamp[8] BeaconInt[2] CapabInfo[2]
  359. self.frame_body = report[0:elen]
  360. report = report[elen:]
  361. def __str__(self):
  362. txt = "opclass={} channel={} start={} duration={} frame_info={} rcpi={} rsni={} bssid={} antenna_id={} parent_tsf={}".format(self.opclass, self.channel, self.start, self.duration, self.frame_info, self.rcpi, self.rsni, self.bssid_str, self.antenna_id, self.parent_tsf)
  363. if self.frame_body:
  364. txt += " frame_body=" + binascii.hexlify(self.frame_body)
  365. return txt
  366. def run_req_beacon(hapd, addr, request):
  367. token = hapd.request("REQ_BEACON " + addr + " " + request)
  368. if "FAIL" in token:
  369. raise Exception("REQ_BEACON failed")
  370. ev = hapd.wait_event(["BEACON-REQ-TX-STATUS"], timeout=5)
  371. if ev is None:
  372. raise Exception("No TX status event for beacon request received")
  373. fields = ev.split(' ')
  374. if fields[1] != addr:
  375. raise Exception("Unexpected STA address in TX status: " + fields[1])
  376. if fields[2] != token:
  377. raise Exception("Unexpected dialog token in TX status: " + fields[2] + " (expected " + token + ")")
  378. if fields[3] != "ack=1":
  379. raise Exception("Unexected ACK status in TX status: " + fields[3])
  380. return token
  381. def test_rrm_beacon_req_table(dev, apdev):
  382. """Beacon request - beacon table mode"""
  383. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  384. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  385. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another" })
  386. tests = [ "REQ_BEACON ",
  387. "REQ_BEACON q",
  388. "REQ_BEACON 11:22:33:44:55:66 1",
  389. "REQ_BEACON 11:22:33:44:55:66 1q",
  390. "REQ_BEACON 11:22:33:44:55:66 11223344556677889900aabbccddeeff" ]
  391. for t in tests:
  392. if "FAIL" not in hapd.request(t):
  393. raise Exception("Invalid command accepted: " + t)
  394. dev[0].scan_for_bss(apdev[1]['bssid'], freq=2412)
  395. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  396. addr = dev[0].own_addr()
  397. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff")
  398. for i in range(1, 3):
  399. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  400. if ev is None:
  401. raise Exception("Beacon report %d response not received" % i)
  402. fields = ev.split(' ')
  403. if fields[1] != addr:
  404. raise Exception("Unexpected STA address in beacon report response: " + fields[1])
  405. if fields[2] != token:
  406. raise Exception("Unexpected dialog token in beacon report response: " + fields[2] + " (expected " + token + ")")
  407. if fields[3] != "00":
  408. raise Exception("Unexpected measurement report mode")
  409. report = BeaconReport(binascii.unhexlify(fields[4]))
  410. logger.info("Received beacon report: " + str(report))
  411. # Default reporting detail is 2, i.e., all fixed fields and elements.
  412. if not report.frame_body:
  413. raise Exception("Reported Frame Body subelement missing")
  414. if len(report.frame_body) <= 12:
  415. raise Exception("Too short Reported Frame Body subelement")
  416. def test_rrm_beacon_req_table_detail(dev, apdev):
  417. """Beacon request - beacon table mode - reporting detail"""
  418. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  419. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  420. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  421. addr = dev[0].own_addr()
  422. logger.info("Reporting Detail 0")
  423. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020100")
  424. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  425. if ev is None:
  426. raise Exception("Beacon report response not received")
  427. fields = ev.split(' ')
  428. report = BeaconReport(binascii.unhexlify(fields[4]))
  429. logger.info("Received beacon report: " + str(report))
  430. if report.frame_body:
  431. raise Exception("Reported Frame Body subelement included with Reporting Detail 0")
  432. hapd.dump_monitor()
  433. logger.info("Reporting Detail 1")
  434. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101")
  435. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  436. if ev is None:
  437. raise Exception("Beacon report response not received")
  438. fields = ev.split(' ')
  439. report = BeaconReport(binascii.unhexlify(fields[4]))
  440. logger.info("Received beacon report: " + str(report))
  441. if not report.frame_body:
  442. raise Exception("Reported Frame Body subelement missing")
  443. if len(report.frame_body) != 12:
  444. raise Exception("Unexpected Reported Frame Body subelement length with Reporting Detail 1")
  445. hapd.dump_monitor()
  446. logger.info("Reporting Detail 2")
  447. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020102")
  448. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  449. if ev is None:
  450. raise Exception("Beacon report response not received")
  451. fields = ev.split(' ')
  452. report = BeaconReport(binascii.unhexlify(fields[4]))
  453. logger.info("Received beacon report: " + str(report))
  454. if not report.frame_body:
  455. raise Exception("Reported Frame Body subelement missing")
  456. if len(report.frame_body) <= 12:
  457. raise Exception("Unexpected Reported Frame Body subelement length with Reporting Detail 2")
  458. hapd.dump_monitor()
  459. logger.info("Reporting Detail 3 (invalid)")
  460. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020103")
  461. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  462. if ev is not None:
  463. raise Exception("Unexpected beacon report response to invalid reporting detail 3")
  464. hapd.dump_monitor()
  465. logger.info("Reporting Detail (too short)")
  466. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "0200")
  467. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  468. if ev is not None:
  469. raise Exception("Unexpected beacon report response to invalid reporting detail")
  470. hapd.dump_monitor()
  471. def test_rrm_beacon_req_table_request(dev, apdev):
  472. """Beacon request - beacon table mode - request element"""
  473. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  474. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  475. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  476. addr = dev[0].own_addr()
  477. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101" + "0a03000106")
  478. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  479. if ev is None:
  480. raise Exception("Beacon report response not received")
  481. fields = ev.split(' ')
  482. report = BeaconReport(binascii.unhexlify(fields[4]))
  483. logger.info("Received beacon report: " + str(report))
  484. if not report.frame_body:
  485. raise Exception("Reported Frame Body subelement missing")
  486. if len(report.frame_body) != 12 + 5 + 10:
  487. raise Exception("Unexpected Reported Frame Body subelement length with Reporting Detail 1 and requested elements SSID + SuppRates")
  488. hapd.dump_monitor()
  489. logger.info("Incorrect reporting detail with request subelement")
  490. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020102" + "0a03000106")
  491. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  492. if ev is not None:
  493. raise Exception("Unexpected beacon report response (invalid reporting detail)")
  494. hapd.dump_monitor()
  495. logger.info("Invalid request subelement length")
  496. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101" + "0a00")
  497. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  498. if ev is not None:
  499. raise Exception("Unexpected beacon report response (invalid request subelement length)")
  500. hapd.dump_monitor()
  501. logger.info("Multiple request subelements")
  502. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101" + "0a0100" + "0a0101")
  503. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  504. if ev is not None:
  505. raise Exception("Unexpected beacon report response (multiple request subelements)")
  506. hapd.dump_monitor()
  507. def test_rrm_beacon_req_table_request_oom(dev, apdev):
  508. """Beacon request - beacon table mode - request element OOM"""
  509. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  510. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  511. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  512. addr = dev[0].own_addr()
  513. with alloc_fail(dev[0], 1,
  514. "bitfield_alloc;wpas_rm_handle_beacon_req_subelem"):
  515. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101" + "0a03000106")
  516. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  517. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.1)
  518. if ev is not None:
  519. raise Exception("Unexpected beacon report response received (OOM)")
  520. with alloc_fail(dev[0], 1,
  521. "wpabuf_alloc;wpas_rrm_send_msr_report_mpdu"):
  522. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101" + "0a03000106")
  523. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  524. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.1)
  525. if ev is not None:
  526. raise Exception("Unexpected beacon report response received (OOM)")
  527. with fail_test(dev[0], 1,
  528. "wpa_driver_nl80211_send_action;wpas_rrm_send_msr_report_mpdu"):
  529. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101" + "0a03000106")
  530. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  531. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.1)
  532. if ev is not None:
  533. raise Exception("Unexpected beacon report response received (OOM)")
  534. with alloc_fail(dev[0], 1,
  535. "wpabuf_resize;wpas_add_beacon_rep"):
  536. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101" + "0a03000106")
  537. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  538. if ev is None:
  539. raise Exception("Beacon report response not received (OOM -> empty report)")
  540. fields = ev.split(' ')
  541. if len(fields[4]) > 0:
  542. raise Exception("Unexpected beacon report received")
  543. def test_rrm_beacon_req_table_bssid(dev, apdev):
  544. """Beacon request - beacon table mode - specific BSSID"""
  545. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  546. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  547. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another" })
  548. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  549. addr = dev[0].own_addr()
  550. bssid2 = hapd2.own_addr()
  551. token = run_req_beacon(hapd, addr, "51000000000002" + bssid2.replace(':', ''))
  552. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  553. if ev is None:
  554. raise Exception("Beacon report response not received")
  555. fields = ev.split(' ')
  556. report = BeaconReport(binascii.unhexlify(fields[4]))
  557. logger.info("Received beacon report: " + str(report))
  558. if "bssid=" + bssid2 not in str(report):
  559. raise Exception("Report for unexpect BSS")
  560. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.1)
  561. if ev is not None:
  562. raise Exception("Unexpected beacon report response")
  563. def test_rrm_beacon_req_table_ssid(dev, apdev):
  564. """Beacon request - beacon table mode - specific SSID"""
  565. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  566. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  567. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another" })
  568. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  569. addr = dev[0].own_addr()
  570. bssid2 = hapd2.own_addr()
  571. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "0007" + "another".encode('hex'))
  572. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  573. if ev is None:
  574. raise Exception("Beacon report response not received")
  575. fields = ev.split(' ')
  576. report = BeaconReport(binascii.unhexlify(fields[4]))
  577. logger.info("Received beacon report: " + str(report))
  578. if "bssid=" + bssid2 not in str(report):
  579. raise Exception("Report for unexpect BSS")
  580. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.1)
  581. if ev is not None:
  582. raise Exception("Unexpected beacon report response")
  583. hapd.dump_monitor()
  584. logger.info("Wildcard SSID")
  585. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "0000")
  586. for i in range(2):
  587. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  588. if ev is None:
  589. raise Exception("Beacon report response not received")
  590. fields = ev.split(' ')
  591. report = BeaconReport(binascii.unhexlify(fields[4]))
  592. logger.info("Received beacon report: " + str(report))
  593. hapd.dump_monitor()
  594. logger.info("Too long SSID")
  595. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "0021" + 33*"00")
  596. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  597. if ev is not None:
  598. raise Exception("Unexpected beacon report response (invalid SSID subelement in request)")
  599. hapd.dump_monitor()
  600. def test_rrm_beacon_req_table_info(dev, apdev):
  601. """Beacon request - beacon table mode - Reporting Information subelement"""
  602. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  603. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  604. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  605. addr = dev[0].own_addr()
  606. logger.info("Unsupported reporting information 1")
  607. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "01020100")
  608. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  609. if ev is not None:
  610. raise Exception("Unexpected beacon report response (unsupported reporting information 1)")
  611. hapd.dump_monitor()
  612. logger.info("Invalid reporting information length")
  613. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "010100")
  614. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  615. if ev is not None:
  616. raise Exception("Unexpected beacon report response (invalid reporting information length)")
  617. hapd.dump_monitor()
  618. def test_rrm_beacon_req_table_unknown_subelem(dev, apdev):
  619. """Beacon request - beacon table mode - unknown subelement"""
  620. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  621. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  622. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  623. addr = dev[0].own_addr()
  624. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "330101" + "fe00")
  625. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  626. if ev is None:
  627. raise Exception("Beacon report response not received")
  628. fields = ev.split(' ')
  629. report = BeaconReport(binascii.unhexlify(fields[4]))
  630. logger.info("Received beacon report: " + str(report))
  631. def test_rrm_beacon_req_table_truncated_subelem(dev, apdev):
  632. """Beacon request - beacon table mode - Truncated subelement"""
  633. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  634. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  635. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  636. addr = dev[0].own_addr()
  637. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "0001")
  638. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  639. if ev is not None:
  640. raise Exception("Unexpected beacon report response (truncated subelement)")
  641. hapd.dump_monitor()
  642. def test_rrm_beacon_req_table_rsne(dev, apdev):
  643. """Beacon request - beacon table mode - RSNE truncation"""
  644. params = hostapd.wpa2_params(ssid="rrm-rsn", passphrase="12345678")
  645. params["rrm_beacon_report"] = "1"
  646. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  647. dev[0].connect("rrm-rsn", psk="12345678", scan_freq="2412")
  648. addr = dev[0].own_addr()
  649. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101" + "0a0130")
  650. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  651. if ev is None:
  652. raise Exception("Beacon report response not received")
  653. fields = ev.split(' ')
  654. report = BeaconReport(binascii.unhexlify(fields[4]))
  655. logger.info("Received beacon report: " + str(report))
  656. if not report.frame_body:
  657. raise Exception("Reported Frame Body subelement missing")
  658. if len(report.frame_body) != 12 + 6:
  659. raise Exception("Unexpected Reported Frame Body subelement length with Reporting Detail 1 and requested element RSNE")
  660. if binascii.unhexlify("30040100000f") not in report.frame_body:
  661. raise Exception("Truncated RSNE not found")
  662. def test_rrm_beacon_req_table_vht(dev, apdev):
  663. """Beacon request - beacon table mode - VHT"""
  664. clear_scan_cache(apdev[0])
  665. try:
  666. hapd = None
  667. params = { "ssid": "rrm-vht",
  668. "country_code": "FI",
  669. "hw_mode": "a",
  670. "channel": "36",
  671. "ht_capab": "[HT40+]",
  672. "ieee80211n": "1",
  673. "ieee80211ac": "1",
  674. "vht_oper_chwidth": "1",
  675. "vht_oper_centr_freq_seg0_idx": "42",
  676. "rrm_beacon_report": "1" }
  677. hapd = hostapd.add_ap(apdev[0], params)
  678. bssid = apdev[0]['bssid']
  679. params = { "ssid": "test-vht40",
  680. "country_code": "FI",
  681. "hw_mode": "a",
  682. "channel": "48",
  683. "ieee80211n": "1",
  684. "ieee80211ac": "1",
  685. "ht_capab": "[HT40-]",
  686. "vht_capab": "",
  687. "vht_oper_chwidth": "0",
  688. "vht_oper_centr_freq_seg0_idx": "0",
  689. }
  690. hapd2 = hostapd.add_ap(apdev[1], params)
  691. dev[0].scan_for_bss(apdev[1]['bssid'], freq=5240)
  692. dev[0].connect("rrm-vht", key_mgmt="NONE", scan_freq="5180")
  693. addr = dev[0].own_addr()
  694. token = run_req_beacon(hapd, addr, "f0000000000002ffffffffffff")
  695. for i in range(2):
  696. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  697. if ev is None:
  698. raise Exception("Beacon report %d response not received" % i)
  699. fields = ev.split(' ')
  700. report = BeaconReport(binascii.unhexlify(fields[4]))
  701. logger.info("Received beacon report: " + str(report))
  702. if report.bssid_str == apdev[0]['bssid']:
  703. if report.opclass != 128 or report.channel != 36:
  704. raise Exception("Incorrect opclass/channel for AP0")
  705. elif report.bssid_str == apdev[1]['bssid']:
  706. if report.opclass != 117 or report.channel != 48:
  707. raise Exception("Incorrect opclass/channel for AP1")
  708. except Exception, e:
  709. if isinstance(e, Exception) and str(e) == "AP startup failed":
  710. if not vht_supported():
  711. raise HwsimSkip("80 MHz channel not supported in regulatory information")
  712. raise
  713. finally:
  714. dev[0].request("DISCONNECT")
  715. if hapd:
  716. hapd.request("DISABLE")
  717. subprocess.call(['iw', 'reg', 'set', '00'])
  718. dev[0].flush_scan_cache()
  719. def test_rrm_beacon_req_active(dev, apdev):
  720. """Beacon request - active scan mode"""
  721. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  722. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  723. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another",
  724. "channel": "11" })
  725. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  726. addr = dev[0].own_addr()
  727. token = run_req_beacon(hapd, addr, "51000000640001ffffffffffff")
  728. for i in range(1, 3):
  729. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  730. if ev is None:
  731. raise Exception("Beacon report %d response not received" % i)
  732. fields = ev.split(' ')
  733. report = BeaconReport(binascii.unhexlify(fields[4]))
  734. logger.info("Received beacon report: " + str(report))
  735. if report.bssid_str == apdev[0]['bssid']:
  736. if report.opclass != 81 or report.channel != 1:
  737. raise Exception("Incorrect opclass/channel for AP0")
  738. elif report.bssid_str == apdev[1]['bssid']:
  739. if report.opclass != 81 or report.channel != 11:
  740. raise Exception("Incorrect opclass/channel for AP1")
  741. def test_rrm_beacon_req_active_ap_channels(dev, apdev):
  742. """Beacon request - active scan mode with AP Channel Report subelement"""
  743. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  744. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  745. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another",
  746. "channel": "11" })
  747. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  748. addr = dev[0].own_addr()
  749. token = run_req_beacon(hapd, addr, "51ff0000640001ffffffffffff" + "dd0111" + "330351010b" + "dd0111")
  750. for i in range(1, 3):
  751. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  752. if ev is None:
  753. raise Exception("Beacon report %d response not received" % i)
  754. fields = ev.split(' ')
  755. report = BeaconReport(binascii.unhexlify(fields[4]))
  756. logger.info("Received beacon report: " + str(report))
  757. if report.bssid_str == apdev[0]['bssid']:
  758. if report.opclass != 81 or report.channel != 1:
  759. raise Exception("Incorrect opclass/channel for AP0")
  760. elif report.bssid_str == apdev[1]['bssid']:
  761. if report.opclass != 81 or report.channel != 11:
  762. raise Exception("Incorrect opclass/channel for AP1")
  763. def test_rrm_beacon_req_passive_ap_channels(dev, apdev):
  764. """Beacon request - passive scan mode with AP Channel Report subelement"""
  765. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  766. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  767. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another",
  768. "channel": "11" })
  769. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  770. addr = dev[0].own_addr()
  771. token = run_req_beacon(hapd, addr, "51ff0000640001ffffffffffff" + "330351010b" + "3300" + "dd00")
  772. for i in range(1, 3):
  773. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  774. if ev is None:
  775. raise Exception("Beacon report %d response not received" % i)
  776. fields = ev.split(' ')
  777. report = BeaconReport(binascii.unhexlify(fields[4]))
  778. logger.info("Received beacon report: " + str(report))
  779. if report.bssid_str == apdev[0]['bssid']:
  780. if report.opclass != 81 or report.channel != 1:
  781. raise Exception("Incorrect opclass/channel for AP0")
  782. elif report.bssid_str == apdev[1]['bssid']:
  783. if report.opclass != 81 or report.channel != 11:
  784. raise Exception("Incorrect opclass/channel for AP1")
  785. def test_rrm_beacon_req_active_single_channel(dev, apdev):
  786. """Beacon request - active scan mode with single channel"""
  787. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  788. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  789. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another",
  790. "channel": "11" })
  791. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  792. addr = dev[0].own_addr()
  793. token = run_req_beacon(hapd, addr, "510b0000640001ffffffffffff")
  794. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  795. if ev is None:
  796. raise Exception("Beacon report response not received")
  797. fields = ev.split(' ')
  798. report = BeaconReport(binascii.unhexlify(fields[4]))
  799. logger.info("Received beacon report: " + str(report))
  800. def test_rrm_beacon_req_active_ap_channels_unknown_opclass(dev, apdev):
  801. """Beacon request - active scan mode with AP Channel Report subelement and unknown opclass"""
  802. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  803. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  804. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another",
  805. "channel": "11" })
  806. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  807. addr = dev[0].own_addr()
  808. token = run_req_beacon(hapd, addr, "51ff0000640001ffffffffffff" + "3303ff010b")
  809. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  810. if ev is not None:
  811. raise Exception("Unexpected Beacon report")
  812. def test_rrm_beacon_req_active_ap_channel_oom(dev, apdev):
  813. """Beacon request - AP Channel Report subelement and OOM"""
  814. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  815. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  816. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another",
  817. "channel": "11" })
  818. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  819. addr = dev[0].own_addr()
  820. with alloc_fail(dev[0], 1, "wpas_add_channels"):
  821. token = run_req_beacon(hapd, addr, "51ff0000640001ffffffffffff" + "330351010b")
  822. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  823. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.1)
  824. if ev is not None:
  825. raise Exception("Unexpected Beacon report during OOM")
  826. def test_rrm_beacon_req_active_scan_fail(dev, apdev):
  827. """Beacon request - Active scan failure"""
  828. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  829. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  830. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  831. addr = dev[0].own_addr()
  832. with alloc_fail(dev[0], 1, "wpa_supplicant_trigger_scan"):
  833. token = run_req_beacon(hapd, addr, "51ff0000640001ffffffffffff" + "330351010b")
  834. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  835. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  836. if ev is None:
  837. raise Exception("No Beacon report")
  838. fields = ev.split(' ')
  839. if fields[3] != "04":
  840. raise Exception("Unexpected Beacon report contents: " + ev)
  841. def test_rrm_beacon_req_active_zero_duration(dev, apdev):
  842. """Beacon request - Action scan and zero duration"""
  843. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  844. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  845. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another",
  846. "channel": "11" })
  847. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  848. addr = dev[0].own_addr()
  849. token = run_req_beacon(hapd, addr, "51000000000001ffffffffffff")
  850. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  851. if ev is not None:
  852. raise Exception("Unexpected Beacon report")
  853. def test_rrm_beacon_req_passive(dev, apdev):
  854. """Beacon request - passive scan mode"""
  855. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  856. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  857. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another",
  858. "channel": "11" })
  859. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  860. addr = dev[0].own_addr()
  861. token = run_req_beacon(hapd, addr, "51000000640000ffffffffffff")
  862. for i in range(1, 3):
  863. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  864. if ev is None:
  865. raise Exception("Beacon report %d response not received" % i)
  866. fields = ev.split(' ')
  867. report = BeaconReport(binascii.unhexlify(fields[4]))
  868. logger.info("Received beacon report: " + str(report))
  869. if report.bssid_str == apdev[0]['bssid']:
  870. if report.opclass != 81 or report.channel != 1:
  871. raise Exception("Incorrect opclass/channel for AP0")
  872. elif report.bssid_str == apdev[1]['bssid']:
  873. if report.opclass != 81 or report.channel != 11:
  874. raise Exception("Incorrect opclass/channel for AP1")
  875. def test_rrm_beacon_req_active_duration_mandatory(dev, apdev):
  876. """Beacon request - Action scan and duration mandatory"""
  877. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  878. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  879. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  880. addr = dev[0].own_addr()
  881. token = run_req_beacon(hapd, addr, "req_mode=10 51000000640001ffffffffffff")
  882. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  883. if ev is None:
  884. raise Exception("No Beacon report response")
  885. fields = ev.split(' ')
  886. rrm = int(dev[0].get_driver_status_field("capa.rrm_flags"), 16)
  887. if rrm & 0x20 == 0x20:
  888. report = BeaconReport(binascii.unhexlify(fields[4]))
  889. logger.info("Received beacon report: " + str(report))
  890. else:
  891. # Driver does not support scan dwell time setting, so wpa_supplicant
  892. # rejects the measurement request due to the mandatory duration using
  893. # Measurement Report Mode field Incapable=1.
  894. if fields[3] != '02':
  895. raise Exception("Unexpected Measurement Report Mode: " + fields[3])
  896. if len(fields[4]) > 0:
  897. raise Exception("Unexpected beacon report received")
  898. def test_rrm_req_proto(dev, apdev):
  899. """Radio measurement request - protocol testing"""
  900. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  901. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  902. bssid = hapd.own_addr()
  903. dev[0].request("SET LCI ")
  904. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  905. addr = dev[0].own_addr()
  906. hdr = "d0003a01" + addr.replace(':', '') + 2*bssid.replace(':', '') + "1000"
  907. hapd.set("ext_mgmt_frame_handling", "1")
  908. dev[0].request("SET ext_mgmt_frame_handling 1")
  909. tests = []
  910. # "RRM: Ignoring too short radio measurement request"
  911. tests += [ "0500", "050001", "05000100" ]
  912. # No measurement request element at all
  913. tests += [ "0500010000" ]
  914. # "RRM: Truncated element"
  915. tests += [ "050001000026" ]
  916. # "RRM: Element length too short"
  917. tests += [ "05000100002600", "0500010000260111", "050001000026021122" ]
  918. # "RRM: Element length too long"
  919. tests += [ "05000100002603", "0500010000260311", "050001000026031122" ]
  920. # "RRM: Enable bit not supported, ignore"
  921. tests += [ "05000100002603010200" ]
  922. # "RRM: Measurement report failed. TX power insertion not supported"
  923. # OR
  924. # "RRM: Link measurement report failed. Request too short"
  925. tests += [ "0502" ]
  926. # Too short LCI request
  927. tests += [ "05000100002603010008" ]
  928. # Too short neighbor report response
  929. tests += [ "0505" ]
  930. # Unexpected neighbor report response
  931. tests += [ "050500", "050501", "050502", "050503", "050504", "050505" ]
  932. # Too short beacon request
  933. tests += [ "05000100002603010005",
  934. "0500010000260f010005112233445566778899aabbcc" ]
  935. # Unknown beacon report mode
  936. tests += [ "05000100002610010005112233445566778899aabbccdd" ]
  937. # Beacon report info subelement; no valid channels
  938. tests += [ "05000100002614010005112233445566008899aabbccdd01020000" ]
  939. # "RRM: Expected Measurement Request element, but EID is 0"
  940. tests += [ "05000100000000" ]
  941. for t in tests:
  942. if "OK" not in dev[0].request("MGMT_RX_PROCESS freq=2412 datarate=0 ssi_signal=-30 frame=" + hdr + t):
  943. raise Exception("MGMT_RX_PROCESS failed")
  944. ev = hapd.wait_event(["MGMT-RX"], timeout=0.2)
  945. if ev is not None:
  946. raise Exception("Unexpected response seen at the AP: " + ev)
  947. tests = []
  948. # "RRM: Parallel measurements are not supported, reject"
  949. tests += [ "05000100002603010105" ]
  950. # "RRM: Unsupported radio measurement type 254"
  951. tests += [ "050001000026030100fe" ]
  952. # Reject LCI request
  953. tests += [ "0500010000260701000811223344" ]
  954. for t in tests:
  955. if "OK" not in dev[0].request("MGMT_RX_PROCESS freq=2412 datarate=0 ssi_signal=-30 frame=" + hdr + t):
  956. raise Exception("MGMT_RX_PROCESS failed")
  957. ev = hapd.wait_event(["MGMT-RX"], timeout=5)
  958. if ev is None:
  959. raise Exception("No response seen at the AP")
  960. hapd.dump_monitor()
  961. dev[0].request("SET LCI " + lci)
  962. tests = []
  963. # "Not building LCI report - bad location subject"
  964. tests += [ "0500010000260701000811223344" ]
  965. for t in tests:
  966. if "OK" not in dev[0].request("MGMT_RX_PROCESS freq=2412 datarate=0 ssi_signal=-30 frame=" + hdr + t):
  967. raise Exception("MGMT_RX_PROCESS failed")
  968. ev = hapd.wait_event(["MGMT-RX"], timeout=0.2)
  969. if ev is not None:
  970. raise Exception("Unexpected response seen at the AP: " + ev)
  971. tests = []
  972. # LCI report or reject
  973. tests += [ "0500010000260701000801223344",
  974. "05000100002607010008010402ff",
  975. "05000100002608010008010402ffff" ]
  976. for t in tests:
  977. if "OK" not in dev[0].request("MGMT_RX_PROCESS freq=2412 datarate=0 ssi_signal=-30 frame=" + hdr + t):
  978. raise Exception("MGMT_RX_PROCESS failed")
  979. ev = hapd.wait_event(["MGMT-RX"], timeout=5)
  980. if ev is None:
  981. raise Exception("No response seen at the AP")
  982. hapd.dump_monitor()
  983. hapd.set("ext_mgmt_frame_handling", "0")
  984. dev[0].request("SET ext_mgmt_frame_handling 0")
  985. dev[0].request("SET LCI ")