test_rrm.py 50 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157
  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_ftm_range_req(dev, apdev):
  255. """hostapd FTM range request command"""
  256. rrm = int(dev[0].get_driver_status_field("capa.rrm_flags"), 16)
  257. if rrm & 0x5 != 0x5 and rrm & 0x10 != 0x10:
  258. raise HwsimSkip("Required RRM capabilities are not supported")
  259. params = { "ssid": "rrm", "rrm_neighbor_report": "1" }
  260. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  261. # station not specified
  262. if "FAIL" not in hapd.request("REQ_RANGE "):
  263. raise Exception("REQ_RANGE with no station succeeded unexpectedly")
  264. # station that is not connected specified
  265. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr()):
  266. raise Exception("REQ_RANGE succeeded unexpectedly (station not connected)")
  267. # No responders specified
  268. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " 10 10"):
  269. raise Exception("REQ_RANGE succeeded unexpectedly (no responder)")
  270. # Bad responder address
  271. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " 10 10 00:11:22:33:44:"):
  272. raise Exception("REQ_RANGE succeeded unexpectedly (bad responder address)")
  273. # Bad responder address
  274. 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"):
  275. raise Exception("REQ_RANGE succeeded unexpectedly (bad responder address 2)")
  276. # Bad min_ap value
  277. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " 10 300 00:11:22:33:44:55"):
  278. raise Exception("REQ_RANGE succeeded unexpectedly (invalid min_ap value)")
  279. # Bad rand value
  280. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " -1 10 00:11:22:33:44:55"):
  281. raise Exception("REQ_RANGE succeeded unexpectedly (invalid rand value)")
  282. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " 65536 10 00:11:22:33:44:55"):
  283. raise Exception("REQ_RANGE succeeded unexpectedly (invalid rand value)")
  284. # Missing min_ap value
  285. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " 10"):
  286. raise Exception("REQ_RANGE succeeded unexpectedly (missing min_ap value)")
  287. # Too many responders
  288. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " 10 10" + 20*" 00:11:22:33:44:55"):
  289. raise Exception("REQ_RANGE succeeded unexpectedly (too many responders)")
  290. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  291. # Responder not in database
  292. # Note: this check would pass since the station does not support FTM range
  293. # request and not because the responder is not in the database.
  294. if "FAIL" not in hapd.request("REQ_RANGE " + dev[0].own_addr() + " 10 10 00:11:22:33:44:55"):
  295. raise Exception("REQ_RANGE succeeded unexpectedly (responder not in database)")
  296. def test_rrm_ftm_capa_indication(dev, apdev):
  297. """FTM capability indication"""
  298. try:
  299. _test_rrm_ftm_capa_indication(dev, apdev)
  300. finally:
  301. dev[0].request("SET ftm_initiator 0")
  302. dev[0].request("SET ftm_responder 0")
  303. def _test_rrm_ftm_capa_indication(dev, apdev):
  304. params = { "ssid": "ftm",
  305. "ftm_responder": "1",
  306. "ftm_initiator": "1", }
  307. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  308. if "OK" not in dev[0].request("SET ftm_initiator 1"):
  309. raise Exception("could not set ftm_initiator")
  310. if "OK" not in dev[0].request("SET ftm_responder 1"):
  311. raise Exception("could not set ftm_responder")
  312. dev[0].scan_for_bss(apdev[0]['bssid'], freq=2412, force_scan=True)
  313. class BeaconReport:
  314. def __init__(self, report):
  315. self.opclass, self.channel, self.start, self.duration, self.frame_info, self.rcpi, self.rsni = struct.unpack("<BBQHBBB", report[0:15])
  316. report = report[15:]
  317. self.bssid = report[0:6]
  318. self.bssid_str = "%02x:%02x:%02x:%02x:%02x:%02x" % (struct.unpack('6B', self.bssid))
  319. report = report[6:]
  320. self.antenna_id, self.parent_tsf = struct.unpack("<BI", report[0:5])
  321. report = report[5:]
  322. self.subelems = report
  323. self.frame_body = None
  324. while len(report) >= 2:
  325. eid,elen = struct.unpack('BB', report[0:2])
  326. report = report[2:]
  327. if len(report) < elen:
  328. raise Exception("Invalid subelement in beacon report")
  329. if eid == 1:
  330. # Reported Frame Body
  331. # Contents depends on the reporting detail request:
  332. # 0 = no Reported Frame Body subelement
  333. # 1 = all fixed fields and any elements identified in Request
  334. # element
  335. # 2 = all fixed fields and all elements
  336. # Fixed fields: Timestamp[8] BeaconInt[2] CapabInfo[2]
  337. self.frame_body = report[0:elen]
  338. report = report[elen:]
  339. def __str__(self):
  340. 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)
  341. if self.frame_body:
  342. txt += " frame_body=" + binascii.hexlify(self.frame_body)
  343. return txt
  344. def run_req_beacon(hapd, addr, request):
  345. token = hapd.request("REQ_BEACON " + addr + " " + request)
  346. if "FAIL" in token:
  347. raise Exception("REQ_BEACON failed")
  348. ev = hapd.wait_event(["BEACON-REQ-TX-STATUS"], timeout=5)
  349. if ev is None:
  350. raise Exception("No TX status event for beacon request received")
  351. fields = ev.split(' ')
  352. if fields[1] != addr:
  353. raise Exception("Unexpected STA address in TX status: " + fields[1])
  354. if fields[2] != token:
  355. raise Exception("Unexpected dialog token in TX status: " + fields[2] + " (expected " + token + ")")
  356. if fields[3] != "ack=1":
  357. raise Exception("Unexected ACK status in TX status: " + fields[3])
  358. return token
  359. def test_rrm_beacon_req_table(dev, apdev):
  360. """Beacon request - beacon table mode"""
  361. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  362. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  363. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another" })
  364. tests = [ "REQ_BEACON ",
  365. "REQ_BEACON q",
  366. "REQ_BEACON 11:22:33:44:55:66 1",
  367. "REQ_BEACON 11:22:33:44:55:66 1q",
  368. "REQ_BEACON 11:22:33:44:55:66 11223344556677889900aabbccddeeff" ]
  369. for t in tests:
  370. if "FAIL" not in hapd.request(t):
  371. raise Exception("Invalid command accepted: " + t)
  372. dev[0].scan_for_bss(apdev[1]['bssid'], freq=2412)
  373. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  374. addr = dev[0].own_addr()
  375. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff")
  376. for i in range(1, 3):
  377. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  378. if ev is None:
  379. raise Exception("Beacon report %d response not received" % i)
  380. fields = ev.split(' ')
  381. if fields[1] != addr:
  382. raise Exception("Unexpected STA address in beacon report response: " + fields[1])
  383. if fields[2] != token:
  384. raise Exception("Unexpected dialog token in beacon report response: " + fields[2] + " (expected " + token + ")")
  385. if fields[3] != "00":
  386. raise Exception("Unexpected measurement report mode")
  387. report = BeaconReport(binascii.unhexlify(fields[4]))
  388. logger.info("Received beacon report: " + str(report))
  389. # Default reporting detail is 2, i.e., all fixed fields and elements.
  390. if not report.frame_body:
  391. raise Exception("Reported Frame Body subelement missing")
  392. if len(report.frame_body) <= 12:
  393. raise Exception("Too short Reported Frame Body subelement")
  394. def test_rrm_beacon_req_table_detail(dev, apdev):
  395. """Beacon request - beacon table mode - reporting detail"""
  396. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  397. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  398. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  399. addr = dev[0].own_addr()
  400. logger.info("Reporting Detail 0")
  401. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020100")
  402. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  403. if ev is None:
  404. raise Exception("Beacon report response not received")
  405. fields = ev.split(' ')
  406. report = BeaconReport(binascii.unhexlify(fields[4]))
  407. logger.info("Received beacon report: " + str(report))
  408. if report.frame_body:
  409. raise Exception("Reported Frame Body subelement included with Reporting Detail 0")
  410. hapd.dump_monitor()
  411. logger.info("Reporting Detail 1")
  412. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101")
  413. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  414. if ev is None:
  415. raise Exception("Beacon report response not received")
  416. fields = ev.split(' ')
  417. report = BeaconReport(binascii.unhexlify(fields[4]))
  418. logger.info("Received beacon report: " + str(report))
  419. if not report.frame_body:
  420. raise Exception("Reported Frame Body subelement missing")
  421. if len(report.frame_body) != 12:
  422. raise Exception("Unexpected Reported Frame Body subelement length with Reporting Detail 1")
  423. hapd.dump_monitor()
  424. logger.info("Reporting Detail 2")
  425. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020102")
  426. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  427. if ev is None:
  428. raise Exception("Beacon report response not received")
  429. fields = ev.split(' ')
  430. report = BeaconReport(binascii.unhexlify(fields[4]))
  431. logger.info("Received beacon report: " + str(report))
  432. if not report.frame_body:
  433. raise Exception("Reported Frame Body subelement missing")
  434. if len(report.frame_body) <= 12:
  435. raise Exception("Unexpected Reported Frame Body subelement length with Reporting Detail 2")
  436. hapd.dump_monitor()
  437. logger.info("Reporting Detail 3 (invalid)")
  438. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020103")
  439. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  440. if ev is not None:
  441. raise Exception("Unexpected beacon report response to invalid reporting detail 3")
  442. hapd.dump_monitor()
  443. logger.info("Reporting Detail (too short)")
  444. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "0200")
  445. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  446. if ev is not None:
  447. raise Exception("Unexpected beacon report response to invalid reporting detail")
  448. hapd.dump_monitor()
  449. def test_rrm_beacon_req_table_request(dev, apdev):
  450. """Beacon request - beacon table mode - request element"""
  451. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  452. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  453. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  454. addr = dev[0].own_addr()
  455. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101" + "0a03000106")
  456. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  457. if ev is None:
  458. raise Exception("Beacon report response not received")
  459. fields = ev.split(' ')
  460. report = BeaconReport(binascii.unhexlify(fields[4]))
  461. logger.info("Received beacon report: " + str(report))
  462. if not report.frame_body:
  463. raise Exception("Reported Frame Body subelement missing")
  464. if len(report.frame_body) != 12 + 5 + 10:
  465. raise Exception("Unexpected Reported Frame Body subelement length with Reporting Detail 1 and requested elements SSID + SuppRates")
  466. hapd.dump_monitor()
  467. logger.info("Incorrect reporting detail with request subelement")
  468. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020102" + "0a03000106")
  469. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  470. if ev is not None:
  471. raise Exception("Unexpected beacon report response (invalid reporting detail)")
  472. hapd.dump_monitor()
  473. logger.info("Invalid request subelement length")
  474. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101" + "0a00")
  475. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  476. if ev is not None:
  477. raise Exception("Unexpected beacon report response (invalid request subelement length)")
  478. hapd.dump_monitor()
  479. logger.info("Multiple request subelements")
  480. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101" + "0a0100" + "0a0101")
  481. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  482. if ev is not None:
  483. raise Exception("Unexpected beacon report response (multiple request subelements)")
  484. hapd.dump_monitor()
  485. def test_rrm_beacon_req_table_request_oom(dev, apdev):
  486. """Beacon request - beacon table mode - request element OOM"""
  487. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  488. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  489. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  490. addr = dev[0].own_addr()
  491. with alloc_fail(dev[0], 1,
  492. "bitfield_alloc;wpas_rm_handle_beacon_req_subelem"):
  493. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101" + "0a03000106")
  494. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  495. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.1)
  496. if ev is not None:
  497. raise Exception("Unexpected beacon report response received (OOM)")
  498. with alloc_fail(dev[0], 1,
  499. "wpabuf_alloc;wpas_rrm_send_msr_report_mpdu"):
  500. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101" + "0a03000106")
  501. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  502. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.1)
  503. if ev is not None:
  504. raise Exception("Unexpected beacon report response received (OOM)")
  505. with fail_test(dev[0], 1,
  506. "wpa_driver_nl80211_send_action;wpas_rrm_send_msr_report_mpdu"):
  507. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101" + "0a03000106")
  508. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  509. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.1)
  510. if ev is not None:
  511. raise Exception("Unexpected beacon report response received (OOM)")
  512. with alloc_fail(dev[0], 1,
  513. "wpabuf_resize;wpas_add_beacon_rep"):
  514. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101" + "0a03000106")
  515. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  516. if ev is None:
  517. raise Exception("Beacon report response not received (OOM -> empty report)")
  518. fields = ev.split(' ')
  519. if len(fields[4]) > 0:
  520. raise Exception("Unexpected beacon report received")
  521. def test_rrm_beacon_req_table_bssid(dev, apdev):
  522. """Beacon request - beacon table mode - specific BSSID"""
  523. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  524. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  525. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another" })
  526. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  527. addr = dev[0].own_addr()
  528. bssid2 = hapd2.own_addr()
  529. token = run_req_beacon(hapd, addr, "51000000000002" + bssid2.replace(':', ''))
  530. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  531. if ev is None:
  532. raise Exception("Beacon report response not received")
  533. fields = ev.split(' ')
  534. report = BeaconReport(binascii.unhexlify(fields[4]))
  535. logger.info("Received beacon report: " + str(report))
  536. if "bssid=" + bssid2 not in str(report):
  537. raise Exception("Report for unexpect BSS")
  538. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.1)
  539. if ev is not None:
  540. raise Exception("Unexpected beacon report response")
  541. def test_rrm_beacon_req_table_ssid(dev, apdev):
  542. """Beacon request - beacon table mode - specific SSID"""
  543. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  544. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  545. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another" })
  546. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  547. addr = dev[0].own_addr()
  548. bssid2 = hapd2.own_addr()
  549. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "0007" + "another".encode('hex'))
  550. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  551. if ev is None:
  552. raise Exception("Beacon report response not received")
  553. fields = ev.split(' ')
  554. report = BeaconReport(binascii.unhexlify(fields[4]))
  555. logger.info("Received beacon report: " + str(report))
  556. if "bssid=" + bssid2 not in str(report):
  557. raise Exception("Report for unexpect BSS")
  558. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.1)
  559. if ev is not None:
  560. raise Exception("Unexpected beacon report response")
  561. hapd.dump_monitor()
  562. logger.info("Wildcard SSID")
  563. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "0000")
  564. for i in range(2):
  565. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  566. if ev is None:
  567. raise Exception("Beacon report response not received")
  568. fields = ev.split(' ')
  569. report = BeaconReport(binascii.unhexlify(fields[4]))
  570. logger.info("Received beacon report: " + str(report))
  571. hapd.dump_monitor()
  572. logger.info("Too long SSID")
  573. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "0021" + 33*"00")
  574. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  575. if ev is not None:
  576. raise Exception("Unexpected beacon report response (invalid SSID subelement in request)")
  577. hapd.dump_monitor()
  578. def test_rrm_beacon_req_table_info(dev, apdev):
  579. """Beacon request - beacon table mode - Reporting Information subelement"""
  580. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  581. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  582. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  583. addr = dev[0].own_addr()
  584. logger.info("Unsupported reporting information 1")
  585. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "01020100")
  586. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  587. if ev is not None:
  588. raise Exception("Unexpected beacon report response (unsupported reporting information 1)")
  589. hapd.dump_monitor()
  590. logger.info("Invalid reporting information length")
  591. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "010100")
  592. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  593. if ev is not None:
  594. raise Exception("Unexpected beacon report response (invalid reporting information length)")
  595. hapd.dump_monitor()
  596. def test_rrm_beacon_req_table_unknown_subelem(dev, apdev):
  597. """Beacon request - beacon table mode - unknown subelement"""
  598. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  599. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  600. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  601. addr = dev[0].own_addr()
  602. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "330101" + "fe00")
  603. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  604. if ev is None:
  605. raise Exception("Beacon report response not received")
  606. fields = ev.split(' ')
  607. report = BeaconReport(binascii.unhexlify(fields[4]))
  608. logger.info("Received beacon report: " + str(report))
  609. def test_rrm_beacon_req_table_truncated_subelem(dev, apdev):
  610. """Beacon request - beacon table mode - Truncated subelement"""
  611. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  612. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  613. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  614. addr = dev[0].own_addr()
  615. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "0001")
  616. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  617. if ev is not None:
  618. raise Exception("Unexpected beacon report response (truncated subelement)")
  619. hapd.dump_monitor()
  620. def test_rrm_beacon_req_table_rsne(dev, apdev):
  621. """Beacon request - beacon table mode - RSNE truncation"""
  622. params = hostapd.wpa2_params(ssid="rrm-rsn", passphrase="12345678")
  623. params["rrm_beacon_report"] = "1"
  624. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  625. dev[0].connect("rrm-rsn", psk="12345678", scan_freq="2412")
  626. addr = dev[0].own_addr()
  627. token = run_req_beacon(hapd, addr, "51000000000002ffffffffffff" + "020101" + "0a0130")
  628. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  629. if ev is None:
  630. raise Exception("Beacon report response not received")
  631. fields = ev.split(' ')
  632. report = BeaconReport(binascii.unhexlify(fields[4]))
  633. logger.info("Received beacon report: " + str(report))
  634. if not report.frame_body:
  635. raise Exception("Reported Frame Body subelement missing")
  636. if len(report.frame_body) != 12 + 6:
  637. raise Exception("Unexpected Reported Frame Body subelement length with Reporting Detail 1 and requested element RSNE")
  638. if binascii.unhexlify("30040100000f") not in report.frame_body:
  639. raise Exception("Truncated RSNE not found")
  640. def test_rrm_beacon_req_table_vht(dev, apdev):
  641. """Beacon request - beacon table mode - VHT"""
  642. clear_scan_cache(apdev[0])
  643. try:
  644. hapd = None
  645. params = { "ssid": "rrm-vht",
  646. "country_code": "FI",
  647. "hw_mode": "a",
  648. "channel": "36",
  649. "ht_capab": "[HT40+]",
  650. "ieee80211n": "1",
  651. "ieee80211ac": "1",
  652. "vht_oper_chwidth": "1",
  653. "vht_oper_centr_freq_seg0_idx": "42",
  654. "rrm_beacon_report": "1" }
  655. hapd = hostapd.add_ap(apdev[0], params)
  656. bssid = apdev[0]['bssid']
  657. params = { "ssid": "test-vht40",
  658. "country_code": "FI",
  659. "hw_mode": "a",
  660. "channel": "48",
  661. "ieee80211n": "1",
  662. "ieee80211ac": "1",
  663. "ht_capab": "[HT40-]",
  664. "vht_capab": "",
  665. "vht_oper_chwidth": "0",
  666. "vht_oper_centr_freq_seg0_idx": "0",
  667. }
  668. hapd2 = hostapd.add_ap(apdev[1], params)
  669. dev[0].scan_for_bss(apdev[1]['bssid'], freq=5240)
  670. dev[0].connect("rrm-vht", key_mgmt="NONE", scan_freq="5180")
  671. addr = dev[0].own_addr()
  672. token = run_req_beacon(hapd, addr, "f0000000000002ffffffffffff")
  673. for i in range(2):
  674. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  675. if ev is None:
  676. raise Exception("Beacon report %d response not received" % i)
  677. fields = ev.split(' ')
  678. report = BeaconReport(binascii.unhexlify(fields[4]))
  679. logger.info("Received beacon report: " + str(report))
  680. if report.bssid_str == apdev[0]['bssid']:
  681. if report.opclass != 128 or report.channel != 36:
  682. raise Exception("Incorrect opclass/channel for AP0")
  683. elif report.bssid_str == apdev[1]['bssid']:
  684. if report.opclass != 117 or report.channel != 48:
  685. raise Exception("Incorrect opclass/channel for AP1")
  686. except Exception, e:
  687. if isinstance(e, Exception) and str(e) == "AP startup failed":
  688. if not vht_supported():
  689. raise HwsimSkip("80 MHz channel not supported in regulatory information")
  690. raise
  691. finally:
  692. dev[0].request("DISCONNECT")
  693. if hapd:
  694. hapd.request("DISABLE")
  695. subprocess.call(['iw', 'reg', 'set', '00'])
  696. dev[0].flush_scan_cache()
  697. def test_rrm_beacon_req_active(dev, apdev):
  698. """Beacon request - active scan mode"""
  699. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  700. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  701. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another",
  702. "channel": "11" })
  703. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  704. addr = dev[0].own_addr()
  705. token = run_req_beacon(hapd, addr, "51000000640001ffffffffffff")
  706. for i in range(1, 3):
  707. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  708. if ev is None:
  709. raise Exception("Beacon report %d response not received" % i)
  710. fields = ev.split(' ')
  711. report = BeaconReport(binascii.unhexlify(fields[4]))
  712. logger.info("Received beacon report: " + str(report))
  713. if report.bssid_str == apdev[0]['bssid']:
  714. if report.opclass != 81 or report.channel != 1:
  715. raise Exception("Incorrect opclass/channel for AP0")
  716. elif report.bssid_str == apdev[1]['bssid']:
  717. if report.opclass != 81 or report.channel != 11:
  718. raise Exception("Incorrect opclass/channel for AP1")
  719. def test_rrm_beacon_req_active_ap_channels(dev, apdev):
  720. """Beacon request - active scan mode with AP Channel Report subelement"""
  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, "51ff0000640001ffffffffffff" + "dd0111" + "330351010b" + "dd0111")
  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_passive_ap_channels(dev, apdev):
  742. """Beacon request - passive 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" + "330351010b" + "3300" + "dd00")
  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_active_single_channel(dev, apdev):
  764. """Beacon request - active scan mode with single channel"""
  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, "510b0000640001ffffffffffff")
  772. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  773. if ev is None:
  774. raise Exception("Beacon report response not received")
  775. fields = ev.split(' ')
  776. report = BeaconReport(binascii.unhexlify(fields[4]))
  777. logger.info("Received beacon report: " + str(report))
  778. def test_rrm_beacon_req_active_ap_channels_unknown_opclass(dev, apdev):
  779. """Beacon request - active scan mode with AP Channel Report subelement and unknown opclass"""
  780. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  781. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  782. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another",
  783. "channel": "11" })
  784. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  785. addr = dev[0].own_addr()
  786. token = run_req_beacon(hapd, addr, "51ff0000640001ffffffffffff" + "3303ff010b")
  787. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  788. if ev is not None:
  789. raise Exception("Unexpected Beacon report")
  790. def test_rrm_beacon_req_active_ap_channel_oom(dev, apdev):
  791. """Beacon request - AP Channel Report subelement and OOM"""
  792. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  793. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  794. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another",
  795. "channel": "11" })
  796. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  797. addr = dev[0].own_addr()
  798. with alloc_fail(dev[0], 1, "wpas_add_channels"):
  799. token = run_req_beacon(hapd, addr, "51ff0000640001ffffffffffff" + "330351010b")
  800. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  801. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.1)
  802. if ev is not None:
  803. raise Exception("Unexpected Beacon report during OOM")
  804. def test_rrm_beacon_req_active_scan_fail(dev, apdev):
  805. """Beacon request - Active scan failure"""
  806. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  807. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  808. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  809. addr = dev[0].own_addr()
  810. with alloc_fail(dev[0], 1, "wpa_supplicant_trigger_scan"):
  811. token = run_req_beacon(hapd, addr, "51ff0000640001ffffffffffff" + "330351010b")
  812. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  813. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  814. if ev is None:
  815. raise Exception("No Beacon report")
  816. fields = ev.split(' ')
  817. if fields[3] != "04":
  818. raise Exception("Unexpected Beacon report contents: " + ev)
  819. def test_rrm_beacon_req_active_zero_duration(dev, apdev):
  820. """Beacon request - Action scan and zero duration"""
  821. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  822. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  823. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another",
  824. "channel": "11" })
  825. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  826. addr = dev[0].own_addr()
  827. token = run_req_beacon(hapd, addr, "51000000000001ffffffffffff")
  828. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=0.2)
  829. if ev is not None:
  830. raise Exception("Unexpected Beacon report")
  831. def test_rrm_beacon_req_passive(dev, apdev):
  832. """Beacon request - passive scan mode"""
  833. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  834. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  835. hapd2 = hostapd.add_ap(apdev[1]['ifname'], { "ssid": "another",
  836. "channel": "11" })
  837. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  838. addr = dev[0].own_addr()
  839. token = run_req_beacon(hapd, addr, "51000000640000ffffffffffff")
  840. for i in range(1, 3):
  841. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  842. if ev is None:
  843. raise Exception("Beacon report %d response not received" % i)
  844. fields = ev.split(' ')
  845. report = BeaconReport(binascii.unhexlify(fields[4]))
  846. logger.info("Received beacon report: " + str(report))
  847. if report.bssid_str == apdev[0]['bssid']:
  848. if report.opclass != 81 or report.channel != 1:
  849. raise Exception("Incorrect opclass/channel for AP0")
  850. elif report.bssid_str == apdev[1]['bssid']:
  851. if report.opclass != 81 or report.channel != 11:
  852. raise Exception("Incorrect opclass/channel for AP1")
  853. def test_rrm_beacon_req_active_duration_mandatory(dev, apdev):
  854. """Beacon request - Action scan and duration mandatory"""
  855. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  856. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  857. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  858. addr = dev[0].own_addr()
  859. token = run_req_beacon(hapd, addr, "req_mode=10 51000000640001ffffffffffff")
  860. ev = hapd.wait_event(["BEACON-RESP-RX"], timeout=10)
  861. if ev is None:
  862. raise Exception("No Beacon report response")
  863. fields = ev.split(' ')
  864. rrm = int(dev[0].get_driver_status_field("capa.rrm_flags"), 16)
  865. if rrm & 0x20 == 0x20:
  866. report = BeaconReport(binascii.unhexlify(fields[4]))
  867. logger.info("Received beacon report: " + str(report))
  868. else:
  869. # Driver does not support scan dwell time setting, so wpa_supplicant
  870. # rejects the measurement request due to the mandatory duration using
  871. # Measurement Report Mode field Incapable=1.
  872. if fields[3] != '02':
  873. raise Exception("Unexpected Measurement Report Mode: " + fields[3])
  874. if len(fields[4]) > 0:
  875. raise Exception("Unexpected beacon report received")
  876. def test_rrm_req_proto(dev, apdev):
  877. """Radio measurement request - protocol testing"""
  878. params = { "ssid": "rrm", "rrm_beacon_report": "1" }
  879. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  880. bssid = hapd.own_addr()
  881. dev[0].request("SET LCI ")
  882. dev[0].connect("rrm", key_mgmt="NONE", scan_freq="2412")
  883. addr = dev[0].own_addr()
  884. hdr = "d0003a01" + addr.replace(':', '') + 2*bssid.replace(':', '') + "1000"
  885. hapd.set("ext_mgmt_frame_handling", "1")
  886. dev[0].request("SET ext_mgmt_frame_handling 1")
  887. tests = []
  888. # "RRM: Ignoring too short radio measurement request"
  889. tests += [ "0500", "050001", "05000100" ]
  890. # No measurement request element at all
  891. tests += [ "0500010000" ]
  892. # "RRM: Truncated element"
  893. tests += [ "050001000026" ]
  894. # "RRM: Element length too short"
  895. tests += [ "05000100002600", "0500010000260111", "050001000026021122" ]
  896. # "RRM: Element length too long"
  897. tests += [ "05000100002603", "0500010000260311", "050001000026031122" ]
  898. # "RRM: Enable bit not supported, ignore"
  899. tests += [ "05000100002603010200" ]
  900. # "RRM: Measurement report failed. TX power insertion not supported"
  901. # OR
  902. # "RRM: Link measurement report failed. Request too short"
  903. tests += [ "0502" ]
  904. # Too short LCI request
  905. tests += [ "05000100002603010008" ]
  906. # Too short neighbor report response
  907. tests += [ "0505" ]
  908. # Unexpected neighbor report response
  909. tests += [ "050500", "050501", "050502", "050503", "050504", "050505" ]
  910. # Too short beacon request
  911. tests += [ "05000100002603010005",
  912. "0500010000260f010005112233445566778899aabbcc" ]
  913. # Unknown beacon report mode
  914. tests += [ "05000100002610010005112233445566778899aabbccdd" ]
  915. # Beacon report info subelement; no valid channels
  916. tests += [ "05000100002614010005112233445566008899aabbccdd01020000" ]
  917. # "RRM: Expected Measurement Request element, but EID is 0"
  918. tests += [ "05000100000000" ]
  919. for t in tests:
  920. if "OK" not in dev[0].request("MGMT_RX_PROCESS freq=2412 datarate=0 ssi_signal=-30 frame=" + hdr + t):
  921. raise Exception("MGMT_RX_PROCESS failed")
  922. ev = hapd.wait_event(["MGMT-RX"], timeout=0.2)
  923. if ev is not None:
  924. raise Exception("Unexpected response seen at the AP: " + ev)
  925. tests = []
  926. # "RRM: Parallel measurements are not supported, reject"
  927. tests += [ "05000100002603010105" ]
  928. # "RRM: Unsupported radio measurement type 254"
  929. tests += [ "050001000026030100fe" ]
  930. # Reject LCI request
  931. tests += [ "0500010000260701000811223344" ]
  932. for t in tests:
  933. if "OK" not in dev[0].request("MGMT_RX_PROCESS freq=2412 datarate=0 ssi_signal=-30 frame=" + hdr + t):
  934. raise Exception("MGMT_RX_PROCESS failed")
  935. ev = hapd.wait_event(["MGMT-RX"], timeout=5)
  936. if ev is None:
  937. raise Exception("No response seen at the AP")
  938. hapd.dump_monitor()
  939. dev[0].request("SET LCI " + lci)
  940. tests = []
  941. # "Not building LCI report - bad location subject"
  942. tests += [ "0500010000260701000811223344" ]
  943. for t in tests:
  944. if "OK" not in dev[0].request("MGMT_RX_PROCESS freq=2412 datarate=0 ssi_signal=-30 frame=" + hdr + t):
  945. raise Exception("MGMT_RX_PROCESS failed")
  946. ev = hapd.wait_event(["MGMT-RX"], timeout=0.2)
  947. if ev is not None:
  948. raise Exception("Unexpected response seen at the AP: " + ev)
  949. tests = []
  950. # LCI report or reject
  951. tests += [ "0500010000260701000801223344",
  952. "05000100002607010008010402ff",
  953. "05000100002608010008010402ffff" ]
  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. hapd.set("ext_mgmt_frame_handling", "0")
  962. dev[0].request("SET ext_mgmt_frame_handling 0")
  963. dev[0].request("SET LCI ")