test_fst_module.py 80 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664
  1. # FST functionality tests
  2. # Copyright (c) 2015, Qualcomm Atheros, Inc.
  3. #
  4. # This software may be distributed under the terms of the BSD license.
  5. # See README for more details.
  6. import logging
  7. logger = logging.getLogger()
  8. import subprocess
  9. import time
  10. import os
  11. import hwsim_utils
  12. from hwsim import HWSimRadio
  13. import hostapd
  14. import fst_test_common
  15. import fst_module_aux
  16. #enum - bad parameter types
  17. bad_param_none = 0
  18. bad_param_session_add_no_params = 1
  19. bad_param_group_id = 2
  20. bad_param_session_set_no_params = 3
  21. bad_param_session_set_unknown_param = 4
  22. bad_param_session_id = 5
  23. bad_param_old_iface = 6
  24. bad_param_new_iface = 7
  25. bad_param_negative_llt = 8
  26. bad_param_zero_llt = 9
  27. bad_param_llt_too_big = 10
  28. bad_param_llt_nan = 11
  29. bad_param_peer_addr = 12
  30. bad_param_session_initiate_no_params = 13
  31. bad_param_session_initiate_bad_session_id = 14
  32. bad_param_session_initiate_with_no_new_iface_set = 15
  33. bad_param_session_initiate_with_bad_peer_addr_set = 16
  34. bad_param_session_initiate_request_with_bad_stie = 17
  35. bad_param_session_initiate_response_with_reject = 18
  36. bad_param_session_initiate_response_with_bad_stie = 19
  37. bad_param_session_initiate_response_with_zero_llt = 20
  38. bad_param_session_initiate_stt_no_response = 21
  39. bad_param_session_initiate_concurrent_setup_request = 22
  40. bad_param_session_transfer_no_params = 23
  41. bad_param_session_transfer_bad_session_id = 24
  42. bad_param_session_transfer_setup_skipped = 25
  43. bad_param_session_teardown_no_params = 26
  44. bad_param_session_teardown_bad_session_id = 27
  45. bad_param_session_teardown_setup_skipped = 28
  46. bad_param_session_teardown_bad_fsts_id = 29
  47. bad_param_names = ("None",
  48. "No params passed to session add",
  49. "Group ID",
  50. "No params passed to session set",
  51. "Unknown param passed to session set",
  52. "Session ID",
  53. "Old interface name",
  54. "New interface name",
  55. "Negative LLT",
  56. "Zero LLT",
  57. "LLT too big",
  58. "LLT is not a number",
  59. "Peer address",
  60. "No params passed to session initiate",
  61. "Session ID",
  62. "No new_iface was set",
  63. "Peer address",
  64. "Request with bad st ie",
  65. "Response with reject",
  66. "Response with bad st ie",
  67. "Response with zero llt",
  68. "No response, STT",
  69. "Concurrent setup request",
  70. "No params passed to session transfer",
  71. "Session ID",
  72. "Session setup skipped",
  73. "No params passed to session teardown",
  74. "Bad session",
  75. "Session setup skipped",
  76. "Bad fsts_id")
  77. def fst_start_session(apdev, test_params, bad_param_type, start_on_ap,
  78. peer_addr = None):
  79. """This function makes the necessary preparations and the adds and sets a
  80. session using either correct or incorrect parameters depending on the value
  81. of bad_param_type. If the call ends as expected (with session being
  82. successfully added and set in case of correct parameters or with the
  83. expected exception in case of incorrect parameters), the function silently
  84. exits. Otherwise, it throws an exception thus failing the test."""
  85. ap1, ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  86. bad_parameter_detected = False
  87. exception_already_raised = False
  88. try:
  89. fst_module_aux.connect_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  90. if start_on_ap:
  91. initiator = ap1
  92. responder = sta1
  93. new_iface = ap2.ifname()
  94. new_peer_addr = ap2.get_actual_peer_addr()
  95. else:
  96. initiator = sta1
  97. responder = ap1
  98. new_iface = sta2.ifname()
  99. new_peer_addr = sta2.get_actual_peer_addr()
  100. initiator.add_peer(responder, peer_addr, new_peer_addr)
  101. group_id = None
  102. if bad_param_type == bad_param_group_id:
  103. group_id = '-1'
  104. elif bad_param_type == bad_param_session_add_no_params:
  105. group_id = ''
  106. initiator.set_fst_parameters(group_id=group_id)
  107. sid = initiator.add_session()
  108. if bad_param_type == bad_param_session_set_no_params:
  109. res = initiator.set_session_param(None)
  110. if not res.startswith("OK"):
  111. raise Exception("Session set operation failed")
  112. elif bad_param_type == bad_param_session_set_unknown_param:
  113. res = initiator.set_session_param("bad_param=1")
  114. if not res.startswith("OK"):
  115. raise Exception("Session set operation failed")
  116. else:
  117. if bad_param_type == bad_param_session_initiate_with_no_new_iface_set:
  118. new_iface = None
  119. elif bad_param_type == bad_param_new_iface:
  120. new_iface = 'wlan12'
  121. old_iface = None if bad_param_type != bad_param_old_iface else 'wlan12'
  122. llt = None
  123. if bad_param_type == bad_param_negative_llt:
  124. llt = '-1'
  125. elif bad_param_type == bad_param_zero_llt:
  126. llt = '0'
  127. elif bad_param_type == bad_param_llt_too_big:
  128. llt = '4294967296' #0x100000000
  129. elif bad_param_type == bad_param_llt_nan:
  130. llt = 'nan'
  131. elif bad_param_type == bad_param_session_id:
  132. sid = '-1'
  133. initiator.set_fst_parameters(llt=llt)
  134. initiator.configure_session(sid, new_iface, old_iface)
  135. except Exception, e:
  136. if e.args[0].startswith("Cannot add FST session with groupid"):
  137. if bad_param_type == bad_param_group_id or bad_param_type == bad_param_session_add_no_params:
  138. bad_parameter_detected = True
  139. elif e.args[0].startswith("Cannot set FST session new_ifname:"):
  140. if bad_param_type == bad_param_new_iface:
  141. bad_parameter_detected = True
  142. elif e.args[0].startswith("Session set operation failed"):
  143. if (bad_param_type == bad_param_session_set_no_params or
  144. bad_param_type == bad_param_session_set_unknown_param):
  145. bad_parameter_detected = True
  146. elif e.args[0].startswith("Cannot set FST session old_ifname:"):
  147. if (bad_param_type == bad_param_old_iface or
  148. bad_param_type == bad_param_session_id or
  149. bad_param_type == bad_param_session_set_no_params):
  150. bad_parameter_detected = True
  151. elif e.args[0].startswith("Cannot set FST session llt:"):
  152. if (bad_param_type == bad_param_negative_llt or
  153. bad_param_type == bad_param_llt_too_big or
  154. bad_param_type == bad_param_llt_nan):
  155. bad_parameter_detected = True
  156. elif e.args[0].startswith("Cannot set FST session peer address:"):
  157. if bad_param_type == bad_param_peer_addr:
  158. bad_parameter_detected = True
  159. if not bad_parameter_detected:
  160. # The exception was unexpected
  161. logger.info(e)
  162. exception_already_raised = True
  163. raise
  164. finally:
  165. fst_module_aux.disconnect_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  166. fst_module_aux.stop_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  167. if not exception_already_raised:
  168. if bad_parameter_detected:
  169. logger.info("Success. Bad parameter was detected (%s)" % bad_param_names[bad_param_type])
  170. else:
  171. if bad_param_type == bad_param_none or bad_param_type == bad_param_zero_llt:
  172. logger.info("Success. Session added and set")
  173. else:
  174. exception_text = ""
  175. if bad_param_type == bad_param_peer_addr:
  176. exception_text = "Failure. Bad parameter was not detected (Peer address == %s)" % ap1.get_new_peer_addr()
  177. else:
  178. exception_text = "Failure. Bad parameter was not detected (%s)" % bad_param_names[bad_param_type]
  179. raise Exception(exception_text)
  180. else:
  181. print "Failure. Unexpected exception"
  182. def fst_initiate_session(apdev, test_params, bad_param_type, init_on_ap):
  183. """This function makes the necessary preparations and then adds, sets and
  184. initiates a session using either correct or incorrect parameters at each
  185. stage depending on the value of bad_param_type. If the call ends as expected
  186. (with session being successfully added, set and initiated in case of correct
  187. parameters or with the expected exception in case of incorrect parameters),
  188. the function silently exits. Otherwise it throws an exception thus failing
  189. the test."""
  190. ap1, ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  191. bad_parameter_detected = False
  192. exception_already_raised = False
  193. try:
  194. fst_module_aux.connect_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  195. # This call makes sure FstHostapd singleton object is created and, as a
  196. # result, the global control interface is registered (this is done from
  197. # the constructor).
  198. ap1.get_global_instance()
  199. if init_on_ap:
  200. initiator = ap1
  201. responder = sta1
  202. new_iface = ap2.ifname() if bad_param_type != bad_param_session_initiate_with_no_new_iface_set else None
  203. new_peer_addr = ap2.get_actual_peer_addr()
  204. resp_newif = sta2.ifname()
  205. else:
  206. initiator = sta1
  207. responder = ap1
  208. new_iface = sta2.ifname() if bad_param_type != bad_param_session_initiate_with_no_new_iface_set else None
  209. new_peer_addr = sta2.get_actual_peer_addr()
  210. resp_newif = ap2.ifname()
  211. peeraddr = None if bad_param_type != bad_param_session_initiate_with_bad_peer_addr_set else '10:DE:AD:DE:AD:11'
  212. initiator.add_peer(responder, peeraddr, new_peer_addr)
  213. if bad_param_type == bad_param_session_initiate_response_with_zero_llt:
  214. initiator.set_fst_parameters(llt='0')
  215. sid = initiator.add_session()
  216. initiator.configure_session(sid, new_iface)
  217. if bad_param_type == bad_param_session_initiate_no_params:
  218. sid = ''
  219. elif bad_param_type == bad_param_session_initiate_bad_session_id:
  220. sid = '-1'
  221. if bad_param_type == bad_param_session_initiate_request_with_bad_stie:
  222. actual_fsts_id = initiator.get_fsts_id_by_sid(sid)
  223. initiator.send_test_session_setup_request(str(actual_fsts_id), "bad_new_band")
  224. responder.wait_for_session_event(5)
  225. elif bad_param_type == bad_param_session_initiate_response_with_reject:
  226. initiator.send_session_setup_request(sid)
  227. initiator.wait_for_session_event(5, [], ["EVENT_FST_SESSION_STATE"])
  228. setup_event = responder.wait_for_session_event(5, [],
  229. ['EVENT_FST_SETUP'])
  230. if not 'id' in setup_event:
  231. raise Exception("No session id in FST setup event")
  232. responder.send_session_setup_response(str(setup_event['id']),
  233. "reject")
  234. event = initiator.wait_for_session_event(5, [], ["EVENT_FST_SESSION_STATE"])
  235. if event['new_state'] != "INITIAL" or event['reason'] != "REASON_REJECT":
  236. raise Exception("Response with reject not handled as expected")
  237. bad_parameter_detected = True
  238. elif bad_param_type == bad_param_session_initiate_response_with_bad_stie:
  239. initiator.send_session_setup_request(sid)
  240. initiator.wait_for_session_event(5, [], ["EVENT_FST_SESSION_STATE"])
  241. responder.wait_for_session_event(5, [], ['EVENT_FST_SETUP'])
  242. actual_fsts_id = initiator.get_fsts_id_by_sid(sid)
  243. responder.send_test_session_setup_response(str(actual_fsts_id),
  244. "accept", "bad_new_band")
  245. event = initiator.wait_for_session_event(5, [], ["EVENT_FST_SESSION_STATE"])
  246. if event['new_state'] != "INITIAL" or event['reason'] != "REASON_ERROR_PARAMS":
  247. raise Exception("Response with bad STIE not handled as expected")
  248. bad_parameter_detected = True
  249. elif bad_param_type == bad_param_session_initiate_response_with_zero_llt:
  250. initiator.initiate_session(sid, "accept")
  251. event = initiator.wait_for_session_event(5, [], ["EVENT_FST_SESSION_STATE"])
  252. if event['new_state'] != "TRANSITION_DONE":
  253. raise Exception("Response reception for a session with llt=0 not handled as expected")
  254. bad_parameter_detected = True
  255. elif bad_param_type == bad_param_session_initiate_stt_no_response:
  256. initiator.send_session_setup_request(sid)
  257. initiator.wait_for_session_event(5, [], ["EVENT_FST_SESSION_STATE"])
  258. responder.wait_for_session_event(5, [], ['EVENT_FST_SETUP'])
  259. event = initiator.wait_for_session_event(5, [], ["EVENT_FST_SESSION_STATE"])
  260. if event['new_state'] != "INITIAL" or event['reason'] != "REASON_STT":
  261. raise Exception("No response scenario not handled as expected")
  262. bad_parameter_detected = True
  263. elif bad_param_type == bad_param_session_initiate_concurrent_setup_request:
  264. responder.add_peer(initiator)
  265. resp_sid = responder.add_session()
  266. responder.configure_session(resp_sid, resp_newif)
  267. initiator.send_session_setup_request(sid)
  268. actual_fsts_id = initiator.get_fsts_id_by_sid(sid)
  269. responder.send_test_session_setup_request(str(actual_fsts_id))
  270. event = initiator.wait_for_session_event(5, [], ["EVENT_FST_SESSION_STATE"])
  271. initiator_addr = initiator.get_own_mac_address()
  272. responder_addr = responder.get_own_mac_address()
  273. if initiator_addr < responder_addr:
  274. event = initiator.wait_for_session_event(5, [], ["EVENT_FST_SESSION_STATE"])
  275. if event['new_state'] != "INITIAL" or event['reason'] != "REASON_SETUP":
  276. raise Exception("Concurrent setup scenario not handled as expected")
  277. event = initiator.wait_for_session_event(5, [], ["EVENT_FST_SETUP"])
  278. # The incoming setup request received by the initiator has
  279. # priority over the one sent previously by the initiator itself
  280. # because the initiator's MAC address is numerically lower than
  281. # the one of the responder. Thus, the initiator should generate
  282. # an FST_SETUP event.
  283. else:
  284. event = initiator.wait_for_session_event(5, [], ["EVENT_FST_SESSION_STATE"])
  285. if event['new_state'] != "INITIAL" or event['reason'] != "REASON_STT":
  286. raise Exception("Concurrent setup scenario not handled as expected")
  287. # The incoming setup request was dropped at the initiator
  288. # because its MAC address is numerically bigger than the one of
  289. # the responder. Thus, the initiator continue to wait for a
  290. # setup response until the STT event fires.
  291. bad_parameter_detected = True
  292. else:
  293. initiator.initiate_session(sid, "accept")
  294. except Exception, e:
  295. if e.args[0].startswith("Cannot initiate fst session"):
  296. if bad_param_type != bad_param_none:
  297. bad_parameter_detected = True
  298. elif e.args[0].startswith("No FST-EVENT-SESSION received"):
  299. if bad_param_type == bad_param_session_initiate_request_with_bad_stie:
  300. bad_parameter_detected = True
  301. if not bad_parameter_detected:
  302. #The exception was unexpected
  303. logger.info(e)
  304. exception_already_raised = True
  305. raise
  306. finally:
  307. fst_module_aux.disconnect_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  308. fst_module_aux.stop_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  309. if not exception_already_raised:
  310. if bad_parameter_detected:
  311. logger.info("Success. Bad parameter was detected (%s)" % bad_param_names[bad_param_type])
  312. else:
  313. if bad_param_type == bad_param_none:
  314. logger.info("Success. Session initiated")
  315. else:
  316. raise Exception("Failure. Bad parameter was not detected (%s)" % bad_param_names[bad_param_type])
  317. else:
  318. print "Failure. Unexpected exception"
  319. def fst_transfer_session(apdev, test_params, bad_param_type, init_on_ap):
  320. """This function makes the necessary preparations and then adds, sets,
  321. initiates and attempts to transfer a session using either correct or
  322. incorrect parameters at each stage depending on the value of bad_param_type.
  323. If the call ends as expected the function silently exits. Otherwise, it
  324. throws an exception thus failing the test."""
  325. ap1, ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  326. bad_parameter_detected = False
  327. exception_already_raised = False
  328. try:
  329. fst_module_aux.connect_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  330. # This call makes sure FstHostapd singleton object is created and, as a
  331. # result, the global control interface is registered (this is done from
  332. # the constructor).
  333. ap1.get_global_instance()
  334. if init_on_ap:
  335. initiator = ap1
  336. responder = sta1
  337. new_iface = ap2.ifname()
  338. new_peer_addr = ap2.get_actual_peer_addr()
  339. else:
  340. initiator = sta1
  341. responder = ap1
  342. new_iface = sta2.ifname()
  343. new_peer_addr = sta2.get_actual_peer_addr()
  344. initiator.add_peer(responder, new_peer_addr = new_peer_addr)
  345. sid = initiator.add_session()
  346. initiator.configure_session(sid, new_iface)
  347. if bad_param_type != bad_param_session_transfer_setup_skipped:
  348. initiator.initiate_session(sid, "accept")
  349. if bad_param_type == bad_param_session_transfer_no_params:
  350. sid = ''
  351. elif bad_param_type == bad_param_session_transfer_bad_session_id:
  352. sid = '-1'
  353. initiator.transfer_session(sid)
  354. except Exception, e:
  355. if e.args[0].startswith("Cannot transfer fst session"):
  356. if bad_param_type != bad_param_none:
  357. bad_parameter_detected = True
  358. if not bad_parameter_detected:
  359. # The exception was unexpected
  360. logger.info(e)
  361. exception_already_raised = True
  362. raise
  363. finally:
  364. fst_module_aux.disconnect_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  365. fst_module_aux.stop_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  366. if not exception_already_raised:
  367. if bad_parameter_detected:
  368. logger.info("Success. Bad parameter was detected (%s)" % bad_param_names[bad_param_type])
  369. else:
  370. if bad_param_type == bad_param_none:
  371. logger.info("Success. Session transferred")
  372. else:
  373. raise Exception("Failure. Bad parameter was not detected (%s)" % bad_param_names[bad_param_type])
  374. else:
  375. print "Failure. Unexpected exception"
  376. def fst_tear_down_session(apdev, test_params, bad_param_type, init_on_ap):
  377. """This function makes the necessary preparations and then adds, sets, and
  378. initiates a session. It then issues a tear down command using either
  379. correct or incorrect parameters at each stage. If the call ends as expected,
  380. the function silently exits. Otherwise, it throws an exception thus failing
  381. the test."""
  382. ap1, ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  383. bad_parameter_detected = False
  384. exception_already_raised = False
  385. try:
  386. fst_module_aux.connect_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  387. # This call makes sure FstHostapd singleton object is created and, as a
  388. # result, the global control interface is registered (this is done from
  389. # the constructor).
  390. ap1.get_global_instance()
  391. if init_on_ap:
  392. initiator = ap1
  393. responder = sta1
  394. new_iface = ap2.ifname()
  395. new_peer_addr = ap2.get_actual_peer_addr()
  396. else:
  397. initiator = sta1
  398. responder = ap1
  399. new_iface = sta2.ifname()
  400. new_peer_addr = sta2.get_actual_peer_addr()
  401. initiator.add_peer(responder, new_peer_addr = new_peer_addr)
  402. sid = initiator.add_session()
  403. initiator.configure_session(sid, new_iface)
  404. if bad_param_type != bad_param_session_teardown_setup_skipped:
  405. initiator.initiate_session(sid, "accept")
  406. if bad_param_type == bad_param_session_teardown_bad_fsts_id:
  407. initiator.send_test_tear_down('-1')
  408. responder.wait_for_session_event(5)
  409. else:
  410. if bad_param_type == bad_param_session_teardown_no_params:
  411. sid = ''
  412. elif bad_param_type == bad_param_session_teardown_bad_session_id:
  413. sid = '-1'
  414. initiator.teardown_session(sid)
  415. except Exception, e:
  416. if e.args[0].startswith("Cannot tear down fst session"):
  417. if (bad_param_type == bad_param_session_teardown_no_params or
  418. bad_param_type == bad_param_session_teardown_bad_session_id or
  419. bad_param_type == bad_param_session_teardown_setup_skipped):
  420. bad_parameter_detected = True
  421. elif e.args[0].startswith("No FST-EVENT-SESSION received"):
  422. if bad_param_type == bad_param_session_teardown_bad_fsts_id:
  423. bad_parameter_detected = True
  424. if not bad_parameter_detected:
  425. # The exception was unexpected
  426. logger.info(e)
  427. exception_already_raised = True
  428. raise
  429. finally:
  430. fst_module_aux.disconnect_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  431. fst_module_aux.stop_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  432. if not exception_already_raised:
  433. if bad_parameter_detected:
  434. logger.info("Success. Bad parameter was detected (%s)" % bad_param_names[bad_param_type])
  435. else:
  436. if bad_param_type == bad_param_none:
  437. logger.info("Success. Session torn down")
  438. else:
  439. raise Exception("Failure. Bad parameter was not detected (%s)" % bad_param_names[bad_param_type])
  440. else:
  441. print "Failure. Unexpected exception"
  442. #enum - remove session scenarios
  443. remove_scenario_no_params = 0
  444. remove_scenario_bad_session_id = 1
  445. remove_scenario_non_established_session = 2
  446. remove_scenario_established_session = 3
  447. remove_scenario_names = ("No params",
  448. "Bad session id",
  449. "Remove non-established session",
  450. "Remove established session")
  451. def fst_remove_session(apdev, test_params, remove_session_scenario, init_on_ap):
  452. """This function attempts to remove a session at various stages of its
  453. formation, depending on the value of remove_session_scenario. If the call
  454. ends as expected, the function silently exits. Otherwise, it throws an
  455. exception thus failing the test."""
  456. ap1, ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  457. bad_parameter_detected = False
  458. exception_already_raised = False
  459. try:
  460. fst_module_aux.connect_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  461. # This call makes sure FstHostapd singleton object is created and, as a
  462. # result, the global control interface is registered (this is done from
  463. # the constructor).
  464. ap1.get_global_instance()
  465. if init_on_ap:
  466. initiator = ap1
  467. responder = sta1
  468. new_iface = ap2.ifname()
  469. new_peer_addr = ap2.get_actual_peer_addr()
  470. else:
  471. initiator = sta1
  472. responder = ap1
  473. new_iface = sta2.ifname()
  474. new_peer_addr = sta2.get_actual_peer_addr()
  475. initiator.add_peer(responder, new_peer_addr = new_peer_addr)
  476. sid = initiator.add_session()
  477. initiator.configure_session(sid, new_iface)
  478. if remove_session_scenario != remove_scenario_no_params:
  479. if remove_session_scenario != remove_scenario_non_established_session:
  480. initiator.initiate_session(sid, "accept")
  481. if remove_session_scenario == remove_scenario_no_params:
  482. sid = ''
  483. elif remove_session_scenario == remove_scenario_bad_session_id:
  484. sid = '-1'
  485. initiator.remove_session(sid)
  486. except Exception, e:
  487. if e.args[0].startswith("Cannot remove fst session"):
  488. if (remove_session_scenario == remove_scenario_no_params or
  489. remove_session_scenario == remove_scenario_bad_session_id):
  490. bad_parameter_detected = True
  491. elif e.args[0].startswith("No FST-EVENT-SESSION received"):
  492. if remove_session_scenario == remove_scenario_non_established_session:
  493. bad_parameter_detected = True
  494. if not bad_parameter_detected:
  495. #The exception was unexpected
  496. logger.info(e)
  497. exception_already_raised = True
  498. raise
  499. finally:
  500. fst_module_aux.disconnect_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  501. fst_module_aux.stop_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  502. if not exception_already_raised:
  503. if bad_parameter_detected:
  504. logger.info("Success. Remove scenario ended as expected (%s)" % remove_scenario_names[remove_session_scenario])
  505. else:
  506. if remove_session_scenario == remove_scenario_established_session:
  507. logger.info("Success. Session removed")
  508. else:
  509. raise Exception("Failure. Remove scenario ended in an unexpected way (%s)" % remove_scenario_names[remove_session_scenario])
  510. else:
  511. print "Failure. Unexpected exception"
  512. #enum - frame types
  513. frame_type_session_request = 0
  514. frame_type_session_response = 1
  515. frame_type_ack_request = 2
  516. frame_type_ack_response = 3
  517. frame_type_tear_down = 4
  518. frame_type_names = ("Session request",
  519. "Session Response",
  520. "Ack request",
  521. "Ack response",
  522. "Tear down")
  523. def fst_send_unexpected_frame(apdev, test_params, frame_type, send_from_ap, additional_param = ''):
  524. """This function creates two pairs of APs and stations, makes them connect
  525. and then causes one side to send an unexpected FST frame of the specified
  526. type to the other. The other side should then identify and ignore the
  527. frame."""
  528. ap1, ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  529. exception_already_raised = False
  530. frame_receive_timeout = False
  531. try:
  532. fst_module_aux.connect_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  533. # This call makes sure FstHostapd singleton object is created and, as a
  534. # result, the global control interface is registered (this is done from
  535. # the constructor).
  536. ap1.get_global_instance()
  537. if send_from_ap:
  538. sender = ap1
  539. receiver = sta1
  540. new_iface = ap2.ifname()
  541. new_peer_addr = ap2.get_actual_peer_addr()
  542. else:
  543. sender = sta1
  544. receiver = ap1
  545. new_iface = sta2.ifname()
  546. new_peer_addr = sta2.get_actual_peer_addr()
  547. sender.add_peer(receiver, new_peer_addr = new_peer_addr)
  548. sid=sender.add_session()
  549. sender.configure_session(sid, new_iface)
  550. if frame_type == frame_type_session_request:
  551. sender.send_session_setup_request(sid)
  552. event = receiver.wait_for_session_event(5)
  553. if event['type'] != 'EVENT_FST_SETUP':
  554. raise Exception("Unexpected indication: " + event['type'])
  555. elif frame_type == frame_type_session_response:
  556. #fsts_id doesn't matter, no actual session exists
  557. sender.send_test_session_setup_response('0', additional_param)
  558. receiver.wait_for_session_event(5)
  559. elif frame_type == frame_type_ack_request:
  560. #fsts_id doesn't matter, no actual session exists
  561. sender.send_test_ack_request('0')
  562. receiver.wait_for_session_event(5)
  563. elif frame_type == frame_type_ack_response:
  564. #fsts_id doesn't matter, no actual session exists
  565. sender.send_test_ack_response('0')
  566. receiver.wait_for_session_event(5)
  567. elif frame_type == frame_type_tear_down:
  568. #fsts_id doesn't matter, no actual session exists
  569. sender.send_test_tear_down('0')
  570. receiver.wait_for_session_event(5)
  571. except Exception, e:
  572. if e.args[0].startswith("No FST-EVENT-SESSION received"):
  573. if frame_type != frame_type_session_request:
  574. frame_receive_timeout = True
  575. else:
  576. logger.info(e)
  577. exception_already_raised = True
  578. raise
  579. finally:
  580. fst_module_aux.disconnect_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  581. fst_module_aux.stop_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  582. if not exception_already_raised:
  583. if frame_receive_timeout:
  584. logger.info("Success. Frame was ignored (%s)" % frame_type_names[frame_type])
  585. else:
  586. if frame_type == frame_type_session_request:
  587. logger.info("Success. Frame received, session created")
  588. else:
  589. raise Exception("Failure. Frame was not ignored (%s)" % frame_type_names[frame_type])
  590. else:
  591. print "Failure. Unexpected exception"
  592. #enum - bad session transfer scenarios
  593. bad_scenario_none = 0
  594. bad_scenario_ack_req_session_not_set_up = 1
  595. bad_scenario_ack_req_session_not_established_init_side = 2
  596. bad_scenario_ack_req_session_not_established_resp_side = 3
  597. bad_scenario_ack_req_bad_fsts_id = 4
  598. bad_scenario_ack_resp_session_not_set_up = 5
  599. bad_scenario_ack_resp_session_not_established_init_side = 6
  600. bad_scenario_ack_resp_session_not_established_resp_side = 7
  601. bad_scenario_ack_resp_no_ack_req = 8
  602. bad_scenario_ack_resp_bad_fsts_id = 9
  603. bad_scenario_names = ("None",
  604. "Ack request received before the session was set up",
  605. "Ack request received on the initiator side before session was established",
  606. "Ack request received on the responder side before session was established",
  607. "Ack request received with bad fsts_id",
  608. "Ack response received before the session was set up",
  609. "Ack response received on the initiator side before session was established",
  610. "Ack response received on the responder side before session was established",
  611. "Ack response received before ack request was sent",
  612. "Ack response received with bad fsts_id")
  613. def fst_bad_transfer(apdev, test_params, bad_scenario_type, init_on_ap):
  614. """This function makes the necessary preparations and then adds and sets a
  615. session. It then initiates and it unless instructed otherwise) and attempts
  616. to send one of the frames involved in the session transfer protocol,
  617. skipping or distorting one of the stages according to the value of
  618. bad_scenario_type parameter."""
  619. ap1, ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  620. bad_parameter_detected = False
  621. exception_already_raised = False
  622. try:
  623. fst_module_aux.connect_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  624. # This call makes sure FstHostapd singleton object is created and, as a
  625. # result, the global control interface is registered (this is done from
  626. # the constructor).
  627. ap1.get_global_instance()
  628. if init_on_ap:
  629. initiator = ap1
  630. responder = sta1
  631. new_iface = ap2.ifname()
  632. new_peer_addr = ap2.get_actual_peer_addr()
  633. else:
  634. initiator = sta1
  635. responder = ap1
  636. new_iface = sta2.ifname()
  637. new_peer_addr = sta2.get_actual_peer_addr()
  638. initiator.add_peer(responder, new_peer_addr = new_peer_addr)
  639. sid = initiator.add_session()
  640. initiator.configure_session(sid, new_iface)
  641. if (bad_scenario_type != bad_scenario_ack_req_session_not_set_up and
  642. bad_scenario_type != bad_scenario_ack_resp_session_not_set_up):
  643. if (bad_scenario_type != bad_scenario_ack_req_session_not_established_init_side and
  644. bad_scenario_type != bad_scenario_ack_resp_session_not_established_init_side and
  645. bad_scenario_type != bad_scenario_ack_req_session_not_established_resp_side and
  646. bad_scenario_type != bad_scenario_ack_resp_session_not_established_resp_side):
  647. response = "accept"
  648. else:
  649. response = ''
  650. initiator.initiate_session(sid, response)
  651. if bad_scenario_type == bad_scenario_ack_req_session_not_set_up:
  652. #fsts_id doesn't matter, no actual session exists
  653. responder.send_test_ack_request('0')
  654. initiator.wait_for_session_event(5)
  655. # We want to send the unexpected frame to the side that already has
  656. # a session created
  657. elif bad_scenario_type == bad_scenario_ack_resp_session_not_set_up:
  658. #fsts_id doesn't matter, no actual session exists
  659. responder.send_test_ack_response('0')
  660. initiator.wait_for_session_event(5)
  661. # We want to send the unexpected frame to the side that already has
  662. # a session created
  663. elif bad_scenario_type == bad_scenario_ack_req_session_not_established_init_side:
  664. #fsts_id doesn't matter, no actual session exists
  665. initiator.send_test_ack_request('0')
  666. responder.wait_for_session_event(5, ["EVENT_FST_SESSION_STATE"])
  667. elif bad_scenario_type == bad_scenario_ack_req_session_not_established_resp_side:
  668. #fsts_id doesn't matter, no actual session exists
  669. responder.send_test_ack_request('0')
  670. initiator.wait_for_session_event(5, ["EVENT_FST_SESSION_STATE"])
  671. elif bad_scenario_type == bad_scenario_ack_resp_session_not_established_init_side:
  672. #fsts_id doesn't matter, no actual session exists
  673. initiator.send_test_ack_response('0')
  674. responder.wait_for_session_event(5, ["EVENT_FST_SESSION_STATE"])
  675. elif bad_scenario_type == bad_scenario_ack_resp_session_not_established_resp_side:
  676. #fsts_id doesn't matter, no actual session exists
  677. responder.send_test_ack_response('0')
  678. initiator.wait_for_session_event(5, ["EVENT_FST_SESSION_STATE"])
  679. elif bad_scenario_type == bad_scenario_ack_req_bad_fsts_id:
  680. initiator.send_test_ack_request('-1')
  681. responder.wait_for_session_event(5, ["EVENT_FST_SESSION_STATE"])
  682. elif bad_scenario_type == bad_scenario_ack_resp_bad_fsts_id:
  683. initiator.send_test_ack_response('-1')
  684. responder.wait_for_session_event(5, ["EVENT_FST_SESSION_STATE"])
  685. elif bad_scenario_type == bad_scenario_ack_resp_no_ack_req:
  686. actual_fsts_id = initiator.get_fsts_id_by_sid(sid)
  687. initiator.send_test_ack_response(str(actual_fsts_id))
  688. responder.wait_for_session_event(5, ["EVENT_FST_SESSION_STATE"])
  689. else:
  690. raise Exception("Unknown bad scenario identifier")
  691. except Exception, e:
  692. if e.args[0].startswith("No FST-EVENT-SESSION received"):
  693. bad_parameter_detected = True
  694. if not bad_parameter_detected:
  695. # The exception was unexpected
  696. logger.info(e)
  697. exception_already_raised = True
  698. raise
  699. finally:
  700. fst_module_aux.disconnect_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  701. fst_module_aux.stop_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  702. if not exception_already_raised:
  703. if bad_parameter_detected:
  704. logger.info("Success. Bad scenario was handled correctly (%s)" % bad_scenario_names[bad_scenario_type])
  705. else:
  706. raise Exception("Failure. Bad scenario was handled incorrectly (%s)" % bad_scenario_names[bad_scenario_type])
  707. else:
  708. print "Failure. Unexpected exception"
  709. def test_fst_sta_connect_to_non_fst_ap(dev, apdev, test_params):
  710. """FST STA connecting to non-FST AP"""
  711. ap1, ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  712. with HWSimRadio() as (radio, iface):
  713. non_fst_ap = hostapd.add_ap(iface, { "ssid": "non_fst_11g" })
  714. try:
  715. orig_sta1_mbies = sta1.get_local_mbies()
  716. orig_sta2_mbies = sta2.get_local_mbies()
  717. vals = sta2.scan()
  718. freq = vals['freq']
  719. sta2.connect_to_external_ap(non_fst_ap, ssid="non_fst_11g",
  720. key_mgmt="NONE", scan_freq=freq)
  721. time.sleep(2)
  722. res_sta1_mbies = sta1.get_local_mbies()
  723. res_sta2_mbies = sta2.get_local_mbies()
  724. if (orig_sta1_mbies.startswith("FAIL") or
  725. orig_sta2_mbies.startswith("FAIL") or
  726. not res_sta1_mbies.startswith("FAIL") or
  727. not res_sta2_mbies.startswith("FAIL")):
  728. raise Exception("Failure. MB IEs have not been removed on the stations")
  729. except Exception, e:
  730. logger.info(e)
  731. raise
  732. finally:
  733. sta2.disconnect_from_external_ap()
  734. fst_module_aux.stop_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  735. def test_fst_sta_connect_to_fst_ap(dev, apdev, test_params):
  736. """FST STA connecting to FST AP"""
  737. ap1, ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  738. try:
  739. orig_sta2_mbies = sta2.get_local_mbies()
  740. vals = sta1.scan(freq=fst_test_common.fst_test_def_freq_a)
  741. sta1.connect(ap1, key_mgmt="NONE",
  742. scan_freq=fst_test_common.fst_test_def_freq_a)
  743. time.sleep(2)
  744. res_sta2_mbies = sta2.get_local_mbies()
  745. if res_sta2_mbies == orig_sta2_mbies:
  746. raise Exception("Failure. MB IEs have not been updated")
  747. except Exception, e:
  748. logger.info(e)
  749. raise
  750. finally:
  751. sta1.disconnect()
  752. fst_module_aux.stop_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  753. def test_fst_ap_connect_to_fst_sta(dev, apdev, test_params):
  754. """FST AP connecting to FST STA"""
  755. ap1, ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  756. try:
  757. orig_ap_mbies = ap1.get_local_mbies()
  758. vals = sta1.scan(freq=fst_test_common.fst_test_def_freq_a)
  759. sta1.connect(ap1, key_mgmt="NONE",
  760. scan_freq=fst_test_common.fst_test_def_freq_a)
  761. time.sleep(2)
  762. res_ap_mbies = ap1.get_local_mbies()
  763. if res_ap_mbies != orig_ap_mbies:
  764. raise Exception("Failure. MB IEs have been unexpectedly updated on the AP")
  765. except Exception, e:
  766. logger.info(e)
  767. raise
  768. finally:
  769. sta1.disconnect()
  770. fst_module_aux.stop_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  771. def test_fst_ap_connect_to_non_fst_sta(dev, apdev, test_params):
  772. """FST AP connecting to non-FST STA"""
  773. ap1, ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  774. try:
  775. orig_ap_mbies = ap2.get_local_mbies()
  776. vals = dev[0].scan(None, fst_test_common.fst_test_def_freq_g)
  777. fst_module_aux.external_sta_connect(dev[0], ap2, key_mgmt="NONE",
  778. scan_freq=fst_test_common.fst_test_def_freq_g)
  779. time.sleep(2)
  780. res_ap_mbies = ap2.get_local_mbies()
  781. if res_ap_mbies != orig_ap_mbies:
  782. raise Exception("Failure. MB IEs have been unexpectedly updated on the AP")
  783. except Exception, e:
  784. logger.info(e)
  785. raise
  786. finally:
  787. fst_module_aux.disconnect_external_sta(dev[0], ap2)
  788. fst_module_aux.stop_two_ap_sta_pairs(ap1, ap2, sta1, sta2)
  789. def test_fst_second_sta_connect_to_non_fst_ap(dev, apdev, test_params):
  790. """FST STA 2nd connecting to non-FST AP"""
  791. fst_ap1, fst_ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  792. with HWSimRadio() as (radio, iface):
  793. non_fst_ap = hostapd.add_ap(iface, { "ssid": "non_fst_11g" })
  794. try:
  795. vals = sta1.scan(freq=fst_test_common.fst_test_def_freq_a)
  796. sta1.connect(fst_ap1, key_mgmt="NONE", scan_freq=fst_test_common.fst_test_def_freq_a)
  797. time.sleep(2)
  798. orig_sta1_mbies = sta1.get_local_mbies()
  799. orig_sta2_mbies = sta2.get_local_mbies()
  800. vals = sta2.scan()
  801. freq = vals['freq']
  802. sta2.connect_to_external_ap(non_fst_ap, ssid="non_fst_11g", key_mgmt="NONE", scan_freq=freq)
  803. time.sleep(2)
  804. res_sta1_mbies = sta1.get_local_mbies()
  805. res_sta2_mbies = sta2.get_local_mbies()
  806. if (orig_sta1_mbies.startswith("FAIL") or
  807. orig_sta2_mbies.startswith("FAIL") or
  808. not res_sta1_mbies.startswith("FAIL") or
  809. not res_sta2_mbies.startswith("FAIL")):
  810. raise Exception("Failure. MB IEs have not been removed on the stations")
  811. except Exception, e:
  812. logger.info(e)
  813. raise
  814. finally:
  815. sta1.disconnect()
  816. sta2.disconnect_from_external_ap()
  817. fst_module_aux.stop_two_ap_sta_pairs(fst_ap1, fst_ap2, sta1, sta2)
  818. def test_fst_second_sta_connect_to_fst_ap(dev, apdev, test_params):
  819. """FST STA 2nd connecting to FST AP"""
  820. fst_ap1, fst_ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  821. with HWSimRadio() as (radio, iface):
  822. non_fst_ap = hostapd.add_ap(iface, { "ssid": "non_fst_11g" })
  823. try:
  824. vals = sta2.scan()
  825. freq = vals['freq']
  826. sta2.connect_to_external_ap(non_fst_ap, ssid="non_fst_11g", key_mgmt="NONE", scan_freq=freq)
  827. time.sleep(2)
  828. orig_sta1_mbies = sta1.get_local_mbies()
  829. orig_sta2_mbies = sta2.get_local_mbies()
  830. vals = sta1.scan(freq=fst_test_common.fst_test_def_freq_a)
  831. sta1.connect(fst_ap1, key_mgmt="NONE", scan_freq=fst_test_common.fst_test_def_freq_a)
  832. time.sleep(2)
  833. res_sta1_mbies = sta1.get_local_mbies()
  834. res_sta2_mbies = sta2.get_local_mbies()
  835. if (not orig_sta1_mbies.startswith("FAIL") or
  836. not orig_sta2_mbies.startswith("FAIL") or
  837. not res_sta1_mbies.startswith("FAIL") or
  838. not res_sta2_mbies.startswith("FAIL")):
  839. raise Exception("Failure. MB IEs should have stayed non-present on the stations")
  840. except Exception, e:
  841. logger.info(e)
  842. raise
  843. finally:
  844. sta1.disconnect()
  845. sta2.disconnect_from_external_ap()
  846. fst_module_aux.stop_two_ap_sta_pairs(fst_ap1, fst_ap2, sta1, sta2)
  847. def test_fst_disconnect_1_of_2_stas_from_non_fst_ap(dev, apdev, test_params):
  848. """FST disconnect 1 of 2 STAs from non-FST AP"""
  849. fst_ap1, fst_ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  850. with HWSimRadio() as (radio, iface):
  851. non_fst_ap = hostapd.add_ap(iface, { "ssid": "non_fst_11g" })
  852. try:
  853. vals = sta1.scan(freq=fst_test_common.fst_test_def_freq_a)
  854. sta1.connect(fst_ap1, key_mgmt="NONE", scan_freq=fst_test_common.fst_test_def_freq_a)
  855. vals = sta2.scan()
  856. freq = vals['freq']
  857. sta2.connect_to_external_ap(non_fst_ap, ssid="non_fst_11g", key_mgmt="NONE", scan_freq=freq)
  858. time.sleep(2)
  859. orig_sta1_mbies = sta1.get_local_mbies()
  860. orig_sta2_mbies = sta2.get_local_mbies()
  861. sta2.disconnect_from_external_ap()
  862. time.sleep(2)
  863. res_sta1_mbies = sta1.get_local_mbies()
  864. res_sta2_mbies = sta2.get_local_mbies()
  865. if (not orig_sta1_mbies.startswith("FAIL") or
  866. not orig_sta2_mbies.startswith("FAIL") or
  867. res_sta1_mbies.startswith("FAIL") or
  868. res_sta2_mbies.startswith("FAIL")):
  869. raise Exception("Failure. MB IEs haven't reappeared on the stations")
  870. except Exception, e:
  871. logger.info(e)
  872. raise
  873. finally:
  874. sta1.disconnect()
  875. sta2.disconnect_from_external_ap()
  876. fst_module_aux.stop_two_ap_sta_pairs(fst_ap1, fst_ap2, sta1, sta2)
  877. def test_fst_disconnect_1_of_2_stas_from_fst_ap(dev, apdev, test_params):
  878. """FST disconnect 1 of 2 STAs from FST AP"""
  879. fst_ap1, fst_ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  880. with HWSimRadio() as (radio, iface):
  881. non_fst_ap = hostapd.add_ap(iface, { "ssid": "non_fst_11g" })
  882. try:
  883. vals = sta1.scan(freq=fst_test_common.fst_test_def_freq_a)
  884. sta1.connect(fst_ap1, key_mgmt="NONE", scan_freq=fst_test_common.fst_test_def_freq_a)
  885. vals = sta2.scan()
  886. freq = vals['freq']
  887. sta2.connect_to_external_ap(non_fst_ap, ssid="non_fst_11g", key_mgmt="NONE", scan_freq=freq)
  888. time.sleep(2)
  889. orig_sta1_mbies = sta1.get_local_mbies()
  890. orig_sta2_mbies = sta2.get_local_mbies()
  891. sta1.disconnect()
  892. time.sleep(2)
  893. res_sta1_mbies = sta1.get_local_mbies()
  894. res_sta2_mbies = sta2.get_local_mbies()
  895. if (not orig_sta1_mbies.startswith("FAIL") or
  896. not orig_sta2_mbies.startswith("FAIL") or
  897. not res_sta1_mbies.startswith("FAIL") or
  898. not res_sta2_mbies.startswith("FAIL")):
  899. raise Exception("Failure. MB IEs should have stayed non-present on the stations")
  900. except Exception, e:
  901. logger.info(e)
  902. raise
  903. finally:
  904. sta1.disconnect()
  905. sta2.disconnect_from_external_ap()
  906. fst_module_aux.stop_two_ap_sta_pairs(fst_ap1, fst_ap2, sta1, sta2)
  907. def test_fst_disconnect_2_of_2_stas_from_non_fst_ap(dev, apdev, test_params):
  908. """FST disconnect 2 of 2 STAs from non-FST AP"""
  909. fst_ap1, fst_ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  910. with HWSimRadio() as (radio, iface):
  911. non_fst_ap = hostapd.add_ap(iface, { "ssid": "non_fst_11g" })
  912. try:
  913. vals = sta1.scan(freq=fst_test_common.fst_test_def_freq_a)
  914. sta1.connect(fst_ap1, key_mgmt="NONE", scan_freq=fst_test_common.fst_test_def_freq_a)
  915. vals = sta2.scan()
  916. freq = vals['freq']
  917. sta2.connect_to_external_ap(non_fst_ap, ssid="non_fst_11g", key_mgmt="NONE", scan_freq=freq)
  918. time.sleep(2)
  919. sta1.disconnect()
  920. time.sleep(2)
  921. orig_sta1_mbies = sta1.get_local_mbies()
  922. orig_sta2_mbies = sta2.get_local_mbies()
  923. sta2.disconnect_from_external_ap()
  924. time.sleep(2)
  925. res_sta1_mbies = sta1.get_local_mbies()
  926. res_sta2_mbies = sta2.get_local_mbies()
  927. if (not orig_sta1_mbies.startswith("FAIL") or
  928. not orig_sta2_mbies.startswith("FAIL") or
  929. res_sta1_mbies.startswith("FAIL") or
  930. res_sta2_mbies.startswith("FAIL")):
  931. raise Exception("Failure. MB IEs haven't reappeared on the stations")
  932. except Exception, e:
  933. logger.info(e)
  934. raise
  935. finally:
  936. sta1.disconnect()
  937. sta2.disconnect_from_external_ap()
  938. fst_module_aux.stop_two_ap_sta_pairs(fst_ap1, fst_ap2, sta1, sta2)
  939. def test_fst_disconnect_2_of_2_stas_from_fst_ap(dev, apdev, test_params):
  940. """FST disconnect 2 of 2 STAs from FST AP"""
  941. fst_ap1, fst_ap2, sta1, sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  942. with HWSimRadio() as (radio, iface):
  943. non_fst_ap = hostapd.add_ap(iface, { "ssid": "non_fst_11g"})
  944. try:
  945. vals = sta1.scan(freq=fst_test_common.fst_test_def_freq_a)
  946. sta1.connect(fst_ap1, key_mgmt="NONE", scan_freq=fst_test_common.fst_test_def_freq_a)
  947. vals = sta2.scan()
  948. freq = vals['freq']
  949. sta2.connect_to_external_ap(non_fst_ap, ssid="non_fst_11g", key_mgmt="NONE", scan_freq=freq)
  950. time.sleep(2)
  951. sta2.disconnect_from_external_ap()
  952. time.sleep(2)
  953. orig_sta1_mbies = sta1.get_local_mbies()
  954. orig_sta2_mbies = sta2.get_local_mbies()
  955. sta1.disconnect()
  956. time.sleep(2)
  957. res_sta1_mbies = sta1.get_local_mbies()
  958. res_sta2_mbies = sta2.get_local_mbies()
  959. if (orig_sta1_mbies.startswith("FAIL") or
  960. orig_sta2_mbies.startswith("FAIL") or
  961. res_sta1_mbies.startswith("FAIL") or
  962. res_sta2_mbies.startswith("FAIL")):
  963. raise Exception("Failure. MB IEs should have stayed present on both stations")
  964. # Mandatory part of 8.4.2.140 Multi-band element is 24 bytes = 48 hex chars
  965. basic_sta1_mbies = res_sta1_mbies[0:48] + res_sta1_mbies[60:108]
  966. basic_sta2_mbies = res_sta2_mbies[0:48] + res_sta2_mbies[60:108]
  967. if (basic_sta1_mbies != basic_sta2_mbies):
  968. raise Exception("Failure. Basic MB IEs should have become identical on both stations")
  969. addr_sta1_str = sta1.get_own_mac_address().replace(":", "")
  970. addr_sta2_str = sta2.get_own_mac_address().replace(":", "")
  971. # Mandatory part of 8.4.2.140 Multi-band element is followed by STA MAC Address field (6 bytes = 12 hex chars)
  972. addr_sta1_mbie1 = res_sta1_mbies[48:60]
  973. addr_sta1_mbie2 = res_sta1_mbies[108:120]
  974. addr_sta2_mbie1 = res_sta2_mbies[48:60]
  975. addr_sta2_mbie2 = res_sta2_mbies[108:120]
  976. if (addr_sta1_mbie1 != addr_sta1_mbie2 or
  977. addr_sta1_mbie1 != addr_sta2_str or
  978. addr_sta2_mbie1 != addr_sta2_mbie2 or
  979. addr_sta2_mbie1 != addr_sta1_str):
  980. raise Exception("Failure. STA Address in MB IEs should have been same as the other STA's")
  981. except Exception, e:
  982. logger.info(e)
  983. raise
  984. finally:
  985. sta1.disconnect()
  986. sta2.disconnect_from_external_ap()
  987. fst_module_aux.stop_two_ap_sta_pairs(fst_ap1, fst_ap2, sta1, sta2)
  988. def test_fst_disconnect_non_fst_sta(dev, apdev, test_params):
  989. """FST disconnect non-FST STA"""
  990. ap1, ap2, fst_sta1, fst_sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  991. external_sta_connected = False
  992. try:
  993. vals = fst_sta1.scan(freq=fst_test_common.fst_test_def_freq_a)
  994. fst_sta1.connect(ap1, key_mgmt="NONE",
  995. scan_freq=fst_test_common.fst_test_def_freq_a)
  996. vals = dev[0].scan(None, fst_test_common.fst_test_def_freq_g)
  997. fst_module_aux.external_sta_connect(dev[0], ap2, key_mgmt="NONE",
  998. scan_freq=fst_test_common.fst_test_def_freq_g)
  999. external_sta_connected = True
  1000. time.sleep(2)
  1001. fst_sta1.disconnect()
  1002. time.sleep(2)
  1003. orig_ap_mbies = ap2.get_local_mbies()
  1004. fst_module_aux.disconnect_external_sta(dev[0], ap2)
  1005. external_sta_connected = False
  1006. time.sleep(2)
  1007. res_ap_mbies = ap2.get_local_mbies()
  1008. if res_ap_mbies != orig_ap_mbies:
  1009. raise Exception("Failure. MB IEs have been unexpectedly updated on the AP")
  1010. except Exception, e:
  1011. logger.info(e)
  1012. raise
  1013. finally:
  1014. fst_sta1.disconnect()
  1015. if external_sta_connected:
  1016. fst_module_aux.disconnect_external_sta(dev[0], ap2)
  1017. fst_module_aux.stop_two_ap_sta_pairs(ap1, ap2, fst_sta1, fst_sta2)
  1018. def test_fst_disconnect_fst_sta(dev, apdev, test_params):
  1019. """FST disconnect FST STA"""
  1020. ap1, ap2, fst_sta1, fst_sta2 = fst_module_aux.start_two_ap_sta_pairs(apdev)
  1021. external_sta_connected = False;
  1022. try:
  1023. vals = fst_sta1.scan(freq=fst_test_common.fst_test_def_freq_a)
  1024. fst_sta1.connect(ap1, key_mgmt="NONE",
  1025. scan_freq=fst_test_common.fst_test_def_freq_a)
  1026. vals = dev[0].scan(None, fst_test_common.fst_test_def_freq_g)
  1027. fst_module_aux.external_sta_connect(dev[0], ap2, key_mgmt="NONE",
  1028. scan_freq=fst_test_common.fst_test_def_freq_g)
  1029. external_sta_connected = True
  1030. time.sleep(2)
  1031. fst_module_aux.disconnect_external_sta(dev[0], ap2)
  1032. external_sta_connected = False
  1033. time.sleep(2)
  1034. orig_ap_mbies = ap2.get_local_mbies()
  1035. fst_sta1.disconnect()
  1036. time.sleep(2)
  1037. res_ap_mbies = ap2.get_local_mbies()
  1038. if res_ap_mbies != orig_ap_mbies:
  1039. raise Exception("Failure. MB IEs have been unexpectedly updated on the AP")
  1040. except Exception, e:
  1041. logger.info(e)
  1042. raise
  1043. finally:
  1044. fst_sta1.disconnect()
  1045. if external_sta_connected:
  1046. fst_module_aux.disconnect_external_sta(dev[0], ap2)
  1047. fst_module_aux.stop_two_ap_sta_pairs(ap1, ap2, fst_sta1, fst_sta2)
  1048. def test_fst_dynamic_iface_attach(dev, apdev, test_params):
  1049. """FST dynamic interface attach"""
  1050. ap1 = fst_module_aux.FstAP(apdev[0]['ifname'], 'fst_11a', 'a',
  1051. fst_test_common.fst_test_def_chan_a,
  1052. fst_test_common.fst_test_def_group,
  1053. fst_test_common.fst_test_def_prio_low,
  1054. fst_test_common.fst_test_def_llt)
  1055. ap1.start()
  1056. ap2 = fst_module_aux.FstAP(apdev[1]['ifname'], 'fst_11g', 'b',
  1057. fst_test_common.fst_test_def_chan_g,
  1058. '', '', '')
  1059. ap2.start()
  1060. sta1 = fst_module_aux.FstSTA('wlan5',
  1061. fst_module_aux.fst_test_common.fst_test_def_group,
  1062. fst_test_common.fst_test_def_prio_low,
  1063. fst_test_common.fst_test_def_llt)
  1064. sta1.start()
  1065. sta2 = fst_module_aux.FstSTA('wlan6', '', '', '')
  1066. sta2.start()
  1067. try:
  1068. orig_sta2_mbies = sta2.get_local_mbies()
  1069. orig_ap2_mbies = ap2.get_local_mbies()
  1070. sta2.send_iface_attach_request(sta2.ifname(),
  1071. fst_module_aux.fst_test_common.fst_test_def_group,
  1072. '52', '27')
  1073. event = sta2.wait_for_iface_event(5)
  1074. if event['event_type'] != 'attached':
  1075. raise Exception("Failure. Iface was not properly attached")
  1076. ap2.send_iface_attach_request(ap2.ifname(),
  1077. fst_module_aux.fst_test_common.fst_test_def_group,
  1078. '102', '77')
  1079. event = ap2.wait_for_iface_event(5)
  1080. if event['event_type'] != 'attached':
  1081. raise Exception("Failure. Iface was not properly attached")
  1082. time.sleep(2)
  1083. res_sta2_mbies = sta2.get_local_mbies()
  1084. res_ap2_mbies = ap2.get_local_mbies()
  1085. sta2.send_iface_detach_request(sta2.ifname())
  1086. event = sta2.wait_for_iface_event(5)
  1087. if event['event_type'] != 'detached':
  1088. raise Exception("Failure. Iface was not properly detached")
  1089. ap2.send_iface_detach_request(ap2.ifname())
  1090. event = ap2.wait_for_iface_event(5)
  1091. if event['event_type'] != 'detached':
  1092. raise Exception("Failure. Iface was not properly detached")
  1093. if (not orig_sta2_mbies.startswith("FAIL") or
  1094. not orig_ap2_mbies.startswith("FAIL") or
  1095. res_sta2_mbies.startswith("FAIL") or
  1096. res_ap2_mbies.startswith("FAIL")):
  1097. raise Exception("Failure. MB IEs should have appeared on the station and on the AP")
  1098. except Exception, e:
  1099. logger.info(e)
  1100. raise
  1101. finally:
  1102. ap1.stop()
  1103. ap2.stop()
  1104. sta1.stop()
  1105. sta2.stop()
  1106. # AP side FST module tests
  1107. def test_fst_ap_start_session(dev, apdev, test_params):
  1108. """FST AP start session"""
  1109. fst_start_session(apdev, test_params, bad_param_none, True)
  1110. def test_fst_ap_start_session_no_add_params(dev, apdev, test_params):
  1111. """FST AP start session - no add params"""
  1112. fst_start_session(apdev, test_params, bad_param_session_add_no_params, True)
  1113. def test_fst_ap_start_session_bad_group_id(dev, apdev, test_params):
  1114. """FST AP start session - bad group id"""
  1115. fst_start_session(apdev, test_params, bad_param_group_id, True)
  1116. def test_fst_ap_start_session_no_set_params(dev, apdev, test_params):
  1117. """FST AP start session - no set params"""
  1118. fst_start_session(apdev, test_params, bad_param_session_set_no_params, True)
  1119. def test_fst_ap_start_session_set_unknown_param(dev, apdev, test_params):
  1120. """FST AP start session - set unknown param"""
  1121. fst_start_session(apdev, test_params, bad_param_session_set_unknown_param,
  1122. True)
  1123. def test_fst_ap_start_session_bad_session_id(dev, apdev, test_params):
  1124. """FST AP start session - bad session id"""
  1125. fst_start_session(apdev, test_params, bad_param_session_id, True)
  1126. def test_fst_ap_start_session_bad_new_iface(dev, apdev, test_params):
  1127. """FST AP start session - bad new iface"""
  1128. fst_start_session(apdev, test_params, bad_param_new_iface, True)
  1129. def test_fst_ap_start_session_bad_old_iface(dev, apdev, test_params):
  1130. """FST AP start session - bad old iface"""
  1131. fst_start_session(apdev, test_params, bad_param_old_iface, True)
  1132. def test_fst_ap_start_session_negative_llt(dev, apdev, test_params):
  1133. """FST AP start session - negative llt"""
  1134. fst_start_session(apdev, test_params, bad_param_negative_llt, True)
  1135. def test_fst_ap_start_session_zero_llt(dev, apdev, test_params):
  1136. """FST AP start session - zero llt"""
  1137. fst_start_session(apdev, test_params, bad_param_zero_llt, True)
  1138. def test_fst_ap_start_session_llt_too_big(dev, apdev, test_params):
  1139. """FST AP start session - llt too large"""
  1140. fst_start_session(apdev, test_params, bad_param_llt_too_big, True)
  1141. def test_fst_ap_start_session_invalid_peer_addr(dev, apdev, test_params):
  1142. """FST AP start session - invalid peer address"""
  1143. fst_start_session(apdev, test_params, bad_param_peer_addr, True,
  1144. 'GG:GG:GG:GG:GG:GG')
  1145. def test_fst_ap_start_session_multicast_peer_addr(dev, apdev, test_params):
  1146. """FST AP start session - multicast peer address"""
  1147. fst_start_session(apdev, test_params, bad_param_peer_addr, True,
  1148. '01:00:11:22:33:44')
  1149. def test_fst_ap_start_session_broadcast_peer_addr(dev, apdev, test_params):
  1150. """FST AP start session - broadcast peer address"""
  1151. fst_start_session(apdev, test_params, bad_param_peer_addr, True,
  1152. 'FF:FF:FF:FF:FF:FF')
  1153. def test_fst_ap_initiate_session(dev, apdev, test_params):
  1154. """FST AP initiate session"""
  1155. fst_initiate_session(apdev, test_params, bad_param_none, True)
  1156. def test_fst_ap_initiate_session_no_params(dev, apdev, test_params):
  1157. """FST AP initiate session - no params"""
  1158. fst_initiate_session(apdev, test_params,
  1159. bad_param_session_initiate_no_params, True)
  1160. def test_fst_ap_initiate_session_invalid_session_id(dev, apdev, test_params):
  1161. """FST AP initiate session - invalid session id"""
  1162. fst_initiate_session(apdev, test_params,
  1163. bad_param_session_initiate_bad_session_id, True)
  1164. def test_fst_ap_initiate_session_no_new_iface(dev, apdev, test_params):
  1165. """FST AP initiate session - no new iface"""
  1166. fst_initiate_session(apdev, test_params,
  1167. bad_param_session_initiate_with_no_new_iface_set, True)
  1168. def test_fst_ap_initiate_session_bad_peer_addr(dev, apdev, test_params):
  1169. """FST AP initiate session - bad peer address"""
  1170. fst_initiate_session(apdev, test_params,
  1171. bad_param_session_initiate_with_bad_peer_addr_set,
  1172. True)
  1173. def test_fst_ap_initiate_session_request_with_bad_stie(dev, apdev, test_params):
  1174. """FST AP initiate session - request with bad stie"""
  1175. fst_initiate_session(apdev, test_params,
  1176. bad_param_session_initiate_request_with_bad_stie, True)
  1177. def test_fst_ap_initiate_session_response_with_reject(dev, apdev, test_params):
  1178. """FST AP initiate session - response with reject"""
  1179. fst_initiate_session(apdev, test_params,
  1180. bad_param_session_initiate_response_with_reject, True)
  1181. def test_fst_ap_initiate_session_response_with_bad_stie(dev, apdev,
  1182. test_params):
  1183. """FST AP initiate session - response with bad stie"""
  1184. fst_initiate_session(apdev, test_params,
  1185. bad_param_session_initiate_response_with_bad_stie,
  1186. True)
  1187. def test_fst_ap_initiate_session_response_with_zero_llt(dev, apdev,
  1188. test_params):
  1189. """FST AP initiate session - zero llt"""
  1190. fst_initiate_session(apdev, test_params,
  1191. bad_param_session_initiate_response_with_zero_llt,
  1192. True)
  1193. def test_fst_ap_initiate_session_stt_no_response(dev, apdev, test_params):
  1194. """FST AP initiate session - stt no response"""
  1195. fst_initiate_session(apdev, test_params,
  1196. bad_param_session_initiate_stt_no_response, True)
  1197. def test_fst_ap_initiate_session_concurrent_setup_request(dev, apdev,
  1198. test_params):
  1199. """FST AP initiate session - concurrent setup request"""
  1200. fst_initiate_session(apdev, test_params,
  1201. bad_param_session_initiate_concurrent_setup_request,
  1202. True)
  1203. def test_fst_ap_session_request_with_no_session(dev, apdev, test_params):
  1204. """FST AP session request with no session"""
  1205. fst_send_unexpected_frame(apdev, test_params, frame_type_session_request,
  1206. True)
  1207. def test_fst_ap_session_response_accept_with_no_session(dev, apdev,
  1208. test_params):
  1209. """FST AP session response accept with no session"""
  1210. fst_send_unexpected_frame(apdev, test_params, frame_type_session_response,
  1211. True, "accept")
  1212. def test_fst_ap_session_response_reject_with_no_session(dev, apdev,
  1213. test_params):
  1214. """FST AP session response reject with no session"""
  1215. fst_send_unexpected_frame(apdev, test_params, frame_type_session_response,
  1216. True, "reject")
  1217. def test_fst_ap_ack_request_with_no_session(dev, apdev, test_params):
  1218. """FST AP ack request with no session"""
  1219. fst_send_unexpected_frame(apdev, test_params, frame_type_ack_request, True)
  1220. def test_fst_ap_ack_response_with_no_session(dev, apdev, test_params):
  1221. """FST AP ack response with no session"""
  1222. fst_send_unexpected_frame(apdev, test_params, frame_type_ack_response, True)
  1223. def test_fst_ap_tear_down_response_with_no_session(dev, apdev, test_params):
  1224. """FST AP tear down response with no session"""
  1225. fst_send_unexpected_frame(apdev, test_params, frame_type_tear_down, True)
  1226. def test_fst_ap_transfer_session(dev, apdev, test_params):
  1227. """FST AP transfer session"""
  1228. fst_transfer_session(apdev, test_params, bad_param_none, True)
  1229. def test_fst_ap_transfer_session_no_params(dev, apdev, test_params):
  1230. """FST AP transfer session - no params"""
  1231. fst_transfer_session(apdev, test_params,
  1232. bad_param_session_transfer_no_params, True)
  1233. def test_fst_ap_transfer_session_bad_session_id(dev, apdev, test_params):
  1234. """FST AP transfer session - bad session id"""
  1235. fst_transfer_session(apdev, test_params,
  1236. bad_param_session_transfer_bad_session_id, True)
  1237. def test_fst_ap_transfer_session_setup_skipped(dev, apdev, test_params):
  1238. """FST AP transfer session - setup skipped"""
  1239. fst_transfer_session(apdev, test_params,
  1240. bad_param_session_transfer_setup_skipped, True)
  1241. def test_fst_ap_ack_request_with_session_not_set_up(dev, apdev, test_params):
  1242. """FST AP ack request with session not set up"""
  1243. fst_bad_transfer(apdev, test_params,
  1244. bad_scenario_ack_req_session_not_set_up, True)
  1245. def test_fst_ap_ack_request_with_session_not_established_init_side(dev, apdev,
  1246. test_params):
  1247. """FST AP ack request with session not established init side"""
  1248. fst_bad_transfer(apdev, test_params,
  1249. bad_scenario_ack_req_session_not_established_init_side,
  1250. True)
  1251. def test_fst_ap_ack_request_with_session_not_established_resp_side(dev, apdev,
  1252. test_params):
  1253. """FST AP ack request with session not established resp side"""
  1254. fst_bad_transfer(apdev, test_params,
  1255. bad_scenario_ack_req_session_not_established_resp_side,
  1256. True)
  1257. def test_fst_ap_ack_request_with_bad_fsts_id(dev, apdev, test_params):
  1258. """FST AP ack request with bad fsts id"""
  1259. fst_bad_transfer(apdev, test_params, bad_scenario_ack_req_bad_fsts_id, True)
  1260. def test_fst_ap_ack_response_with_session_not_set_up(dev, apdev, test_params):
  1261. """FST AP ack response with session not set up"""
  1262. fst_bad_transfer(apdev, test_params,
  1263. bad_scenario_ack_resp_session_not_set_up, True)
  1264. def test_fst_ap_ack_response_with_session_not_established_init_side(dev, apdev, test_params):
  1265. """FST AP ack response with session not established init side"""
  1266. fst_bad_transfer(apdev, test_params,
  1267. bad_scenario_ack_resp_session_not_established_init_side,
  1268. True)
  1269. def test_fst_ap_ack_response_with_session_not_established_resp_side(dev, apdev, test_params):
  1270. """FST AP ack response with session not established resp side"""
  1271. fst_bad_transfer(apdev, test_params,
  1272. bad_scenario_ack_resp_session_not_established_resp_side,
  1273. True)
  1274. def test_fst_ap_ack_response_with_no_ack_request(dev, apdev, test_params):
  1275. """FST AP ack response with no ack request"""
  1276. fst_bad_transfer(apdev, test_params, bad_scenario_ack_resp_no_ack_req, True)
  1277. def test_fst_ap_tear_down_session(dev, apdev, test_params):
  1278. """FST AP tear down session"""
  1279. fst_tear_down_session(apdev, test_params, bad_param_none, True)
  1280. def test_fst_ap_tear_down_session_no_params(dev, apdev, test_params):
  1281. """FST AP tear down session - no params"""
  1282. fst_tear_down_session(apdev, test_params,
  1283. bad_param_session_teardown_no_params, True)
  1284. def test_fst_ap_tear_down_session_bad_session_id(dev, apdev, test_params):
  1285. """FST AP tear down session - bad session id"""
  1286. fst_tear_down_session(apdev, test_params,
  1287. bad_param_session_teardown_bad_session_id, True)
  1288. def test_fst_ap_tear_down_session_setup_skipped(dev, apdev, test_params):
  1289. """FST AP tear down session - setup skipped"""
  1290. fst_tear_down_session(apdev, test_params,
  1291. bad_param_session_teardown_setup_skipped, True)
  1292. def test_fst_ap_tear_down_session_bad_fsts_id(dev, apdev, test_params):
  1293. """FST AP tear down session - bad fsts id"""
  1294. fst_tear_down_session(apdev, test_params,
  1295. bad_param_session_teardown_bad_fsts_id, True)
  1296. def test_fst_ap_remove_session_not_established(dev, apdev, test_params):
  1297. """FST AP remove session - not established"""
  1298. fst_remove_session(apdev, test_params,
  1299. remove_scenario_non_established_session, True)
  1300. def test_fst_ap_remove_session_established(dev, apdev, test_params):
  1301. """FST AP remove session - established"""
  1302. fst_remove_session(apdev, test_params,
  1303. remove_scenario_established_session, True)
  1304. def test_fst_ap_remove_session_no_params(dev, apdev, test_params):
  1305. """FST AP remove session - no params"""
  1306. fst_remove_session(apdev, test_params, remove_scenario_no_params, True)
  1307. def test_fst_ap_remove_session_bad_session_id(dev, apdev, test_params):
  1308. """FST AP remove session - bad session id"""
  1309. fst_remove_session(apdev, test_params, remove_scenario_bad_session_id, True)
  1310. # STA side FST module tests
  1311. def test_fst_sta_start_session(dev, apdev, test_params):
  1312. """FST STA start session"""
  1313. fst_start_session(apdev, test_params, bad_param_none, False)
  1314. def test_fst_sta_start_session_no_add_params(dev, apdev, test_params):
  1315. """FST STA start session - no add params"""
  1316. fst_start_session(apdev, test_params, bad_param_session_add_no_params,
  1317. False)
  1318. def test_fst_sta_start_session_bad_group_id(dev, apdev, test_params):
  1319. """FST STA start session - bad group id"""
  1320. fst_start_session(apdev, test_params, bad_param_group_id, False)
  1321. def test_fst_sta_start_session_no_set_params(dev, apdev, test_params):
  1322. """FST STA start session - no set params"""
  1323. fst_start_session(apdev, test_params, bad_param_session_set_no_params,
  1324. False)
  1325. def test_fst_sta_start_session_set_unknown_param(dev, apdev, test_params):
  1326. """FST STA start session - set unknown param"""
  1327. fst_start_session(apdev, test_params, bad_param_session_set_unknown_param,
  1328. False)
  1329. def test_fst_sta_start_session_bad_session_id(dev, apdev, test_params):
  1330. """FST STA start session - bad session id"""
  1331. fst_start_session(apdev, test_params, bad_param_session_id, False)
  1332. def test_fst_sta_start_session_bad_new_iface(dev, apdev, test_params):
  1333. """FST STA start session - bad new iface"""
  1334. fst_start_session(apdev, test_params, bad_param_new_iface, False)
  1335. def test_fst_sta_start_session_bad_old_iface(dev, apdev, test_params):
  1336. """FST STA start session - bad old iface"""
  1337. fst_start_session(apdev, test_params, bad_param_old_iface, False)
  1338. def test_fst_sta_start_session_negative_llt(dev, apdev, test_params):
  1339. """FST STA start session - negative llt"""
  1340. fst_start_session(apdev, test_params, bad_param_negative_llt, False)
  1341. def test_fst_sta_start_session_zero_llt(dev, apdev, test_params):
  1342. """FST STA start session - zero llt"""
  1343. fst_start_session(apdev, test_params, bad_param_zero_llt, False)
  1344. def test_fst_sta_start_session_llt_too_big(dev, apdev, test_params):
  1345. """FST STA start session - llt too large"""
  1346. fst_start_session(apdev, test_params, bad_param_llt_too_big, False)
  1347. def test_fst_sta_start_session_invalid_peer_addr(dev, apdev, test_params):
  1348. """FST STA start session - invalid peer address"""
  1349. fst_start_session(apdev, test_params, bad_param_peer_addr, False,
  1350. 'GG:GG:GG:GG:GG:GG')
  1351. def test_fst_sta_start_session_multicast_peer_addr(dev, apdev, test_params):
  1352. """FST STA start session - multicast peer address"""
  1353. fst_start_session(apdev, test_params, bad_param_peer_addr, False,
  1354. '11:00:11:22:33:44')
  1355. def test_fst_sta_start_session_broadcast_peer_addr(dev, apdev, test_params):
  1356. """FST STA start session - broadcast peer addr"""
  1357. fst_start_session(apdev, test_params, bad_param_peer_addr, False,
  1358. 'FF:FF:FF:FF:FF:FF')
  1359. def test_fst_sta_initiate_session(dev, apdev, test_params):
  1360. """FST STA initiate session"""
  1361. fst_initiate_session(apdev, test_params, bad_param_none, False)
  1362. def test_fst_sta_initiate_session_no_params(dev, apdev, test_params):
  1363. """FST STA initiate session - no params"""
  1364. fst_initiate_session(apdev, test_params,
  1365. bad_param_session_initiate_no_params, False)
  1366. def test_fst_sta_initiate_session_invalid_session_id(dev, apdev, test_params):
  1367. """FST STA initiate session - invalid session id"""
  1368. fst_initiate_session(apdev, test_params,
  1369. bad_param_session_initiate_bad_session_id, False)
  1370. def test_fst_sta_initiate_session_no_new_iface(dev, apdev, test_params):
  1371. """FST STA initiate session - no new iface"""
  1372. fst_initiate_session(apdev, test_params,
  1373. bad_param_session_initiate_with_no_new_iface_set,
  1374. False)
  1375. def test_fst_sta_initiate_session_bad_peer_addr(dev, apdev, test_params):
  1376. """FST STA initiate session - bad peer address"""
  1377. fst_initiate_session(apdev, test_params,
  1378. bad_param_session_initiate_with_bad_peer_addr_set,
  1379. False)
  1380. def test_fst_sta_initiate_session_request_with_bad_stie(dev, apdev,
  1381. test_params):
  1382. """FST STA initiate session - request with bad stie"""
  1383. fst_initiate_session(apdev, test_params,
  1384. bad_param_session_initiate_request_with_bad_stie,
  1385. False)
  1386. def test_fst_sta_initiate_session_response_with_reject(dev, apdev, test_params):
  1387. """FST STA initiate session - response with reject"""
  1388. fst_initiate_session(apdev, test_params, bad_param_session_initiate_response_with_reject, False)
  1389. def test_fst_sta_initiate_session_response_with_bad_stie(dev, apdev, test_params):
  1390. """FST STA initiate session - response with bad stie"""
  1391. fst_initiate_session(apdev, test_params,
  1392. bad_param_session_initiate_response_with_bad_stie,
  1393. False)
  1394. def test_fst_sta_initiate_session_response_with_zero_llt(dev, apdev,
  1395. test_params):
  1396. """FST STA initiate session - response with zero llt"""
  1397. fst_initiate_session(apdev, test_params,
  1398. bad_param_session_initiate_response_with_zero_llt,
  1399. False)
  1400. def test_fst_sta_initiate_session_stt_no_response(dev, apdev, test_params):
  1401. """FST STA initiate session - stt no response"""
  1402. fst_initiate_session(apdev, test_params,
  1403. bad_param_session_initiate_stt_no_response, False)
  1404. def test_fst_sta_initiate_session_concurrent_setup_request(dev, apdev,
  1405. test_params):
  1406. """FST STA initiate session - concurrent setup request"""
  1407. fst_initiate_session(apdev, test_params,
  1408. bad_param_session_initiate_concurrent_setup_request,
  1409. False)
  1410. def test_fst_sta_session_request_with_no_session(dev, apdev, test_params):
  1411. """FST STA session request with no session"""
  1412. fst_send_unexpected_frame(apdev, test_params, frame_type_session_request,
  1413. False)
  1414. def test_fst_sta_session_response_accept_with_no_session(dev, apdev,
  1415. test_params):
  1416. """FST STA session response accept with no session"""
  1417. fst_send_unexpected_frame(apdev, test_params, frame_type_session_response,
  1418. False, "accept")
  1419. def test_fst_sta_session_response_reject_with_no_session(dev, apdev,
  1420. test_params):
  1421. """FST STA session response reject with no session"""
  1422. fst_send_unexpected_frame(apdev, test_params, frame_type_session_response,
  1423. False, "reject")
  1424. def test_fst_sta_ack_request_with_no_session(dev, apdev, test_params):
  1425. """FST STA ack request with no session"""
  1426. fst_send_unexpected_frame(apdev, test_params, frame_type_ack_request, False)
  1427. def test_fst_sta_ack_response_with_no_session(dev, apdev, test_params):
  1428. """FST STA ack response with no session"""
  1429. fst_send_unexpected_frame(apdev, test_params, frame_type_ack_response,
  1430. False)
  1431. def test_fst_sta_tear_down_response_with_no_session(dev, apdev, test_params):
  1432. """FST STA tear down response with no session"""
  1433. fst_send_unexpected_frame(apdev, test_params, frame_type_tear_down, False)
  1434. def test_fst_sta_transfer_session(dev, apdev, test_params):
  1435. """FST STA transfer session"""
  1436. fst_transfer_session(apdev, test_params, bad_param_none, False)
  1437. def test_fst_sta_transfer_session_no_params(dev, apdev, test_params):
  1438. """FST STA transfer session - no params"""
  1439. fst_transfer_session(apdev, test_params,
  1440. bad_param_session_transfer_no_params, False)
  1441. def test_fst_sta_transfer_session_bad_session_id(dev, apdev, test_params):
  1442. """FST STA transfer session - bad session id"""
  1443. fst_transfer_session(apdev, test_params,
  1444. bad_param_session_transfer_bad_session_id, False)
  1445. def test_fst_sta_transfer_session_setup_skipped(dev, apdev, test_params):
  1446. """FST STA transfer session - setup skipped"""
  1447. fst_transfer_session(apdev, test_params,
  1448. bad_param_session_transfer_setup_skipped, False)
  1449. def test_fst_sta_ack_request_with_session_not_set_up(dev, apdev, test_params):
  1450. """FST STA ack request with session not set up"""
  1451. fst_bad_transfer(apdev, test_params,
  1452. bad_scenario_ack_req_session_not_set_up, False)
  1453. def test_fst_sta_ack_request_with_session_not_established_init_side(dev, apdev, test_params):
  1454. """FST STA ack request with session not established init side"""
  1455. fst_bad_transfer(apdev, test_params,
  1456. bad_scenario_ack_req_session_not_established_init_side,
  1457. False)
  1458. def test_fst_sta_ack_request_with_session_not_established_resp_side(dev, apdev, test_params):
  1459. """FST STA ack request with session not established resp side"""
  1460. fst_bad_transfer(apdev, test_params,
  1461. bad_scenario_ack_req_session_not_established_resp_side,
  1462. False)
  1463. def test_fst_sta_ack_request_with_bad_fsts_id(dev, apdev, test_params):
  1464. """FST STA ack request with bad fsts id"""
  1465. fst_bad_transfer(apdev, test_params, bad_scenario_ack_req_bad_fsts_id,
  1466. False)
  1467. def test_fst_sta_ack_response_with_session_not_set_up(dev, apdev, test_params):
  1468. """FST STA ack response with session not set up"""
  1469. fst_bad_transfer(apdev, test_params,
  1470. bad_scenario_ack_resp_session_not_set_up, False)
  1471. def test_fst_sta_ack_response_with_session_not_established_init_side(dev, apdev, test_params):
  1472. """FST STA ack response with session not established init side"""
  1473. fst_bad_transfer(apdev, test_params,
  1474. bad_scenario_ack_resp_session_not_established_init_side,
  1475. False)
  1476. def test_fst_sta_ack_response_with_session_not_established_resp_side(dev, apdev, test_params):
  1477. """FST STA ack response with session not established resp side"""
  1478. fst_bad_transfer(apdev, test_params,
  1479. bad_scenario_ack_resp_session_not_established_resp_side,
  1480. False)
  1481. def test_fst_sta_ack_response_with_no_ack_request(dev, apdev, test_params):
  1482. """FST STA ack response with no ack request"""
  1483. fst_bad_transfer(apdev, test_params, bad_scenario_ack_resp_no_ack_req,
  1484. False)
  1485. def test_fst_sta_tear_down_session(dev, apdev, test_params):
  1486. """FST STA tear down session"""
  1487. fst_tear_down_session(apdev, test_params, bad_param_none, False)
  1488. def test_fst_sta_tear_down_session_no_params(dev, apdev, test_params):
  1489. """FST STA tear down session - no params"""
  1490. fst_tear_down_session(apdev, test_params,
  1491. bad_param_session_teardown_no_params, False)
  1492. def test_fst_sta_tear_down_session_bad_session_id(dev, apdev, test_params):
  1493. """FST STA tear down session - bad session id"""
  1494. fst_tear_down_session(apdev, test_params,
  1495. bad_param_session_teardown_bad_session_id, False)
  1496. def test_fst_sta_tear_down_session_setup_skipped(dev, apdev, test_params):
  1497. """FST STA tear down session - setup skipped"""
  1498. fst_tear_down_session(apdev, test_params,
  1499. bad_param_session_teardown_setup_skipped, False)
  1500. def test_fst_sta_tear_down_session_bad_fsts_id(dev, apdev, test_params):
  1501. """FST STA tear down session - bad fsts id"""
  1502. fst_tear_down_session(apdev, test_params,
  1503. bad_param_session_teardown_bad_fsts_id, False)
  1504. def test_fst_sta_remove_session_not_established(dev, apdev, test_params):
  1505. """FST STA tear down session - not established"""
  1506. fst_remove_session(apdev, test_params,
  1507. remove_scenario_non_established_session, False)
  1508. def test_fst_sta_remove_session_established(dev, apdev, test_params):
  1509. """FST STA remove session - established"""
  1510. fst_remove_session(apdev, test_params,
  1511. remove_scenario_established_session, False)
  1512. def test_fst_sta_remove_session_no_params(dev, apdev, test_params):
  1513. """FST STA remove session - no params"""
  1514. fst_remove_session(apdev, test_params, remove_scenario_no_params, False)
  1515. def test_fst_sta_remove_session_bad_session_id(dev, apdev, test_params):
  1516. """FST STA remove session - bad session id"""
  1517. fst_remove_session(apdev, test_params, remove_scenario_bad_session_id,
  1518. False)