test_wpas_mesh.py 61 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693
  1. # wpa_supplicant mesh mode tests
  2. # Copyright (c) 2014, cozybit 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 os
  9. import struct
  10. import subprocess
  11. import time
  12. import hwsim_utils
  13. import hostapd
  14. from wpasupplicant import WpaSupplicant
  15. from utils import HwsimSkip, alloc_fail, fail_test, wait_fail_trigger
  16. from tshark import run_tshark
  17. def check_mesh_support(dev, secure=False):
  18. if "MESH" not in dev.get_capability("modes"):
  19. raise HwsimSkip("Driver does not support mesh")
  20. if secure and "SAE" not in dev.get_capability("auth_alg"):
  21. raise HwsimSkip("SAE not supported")
  22. def check_mesh_scan(dev, params, other_started=False, beacon_int=0):
  23. if not other_started:
  24. dev.dump_monitor()
  25. id = dev.request("SCAN " + params)
  26. if "FAIL" in id:
  27. raise Exception("Failed to start scan")
  28. id = int(id)
  29. if other_started:
  30. ev = dev.wait_event(["CTRL-EVENT-SCAN-STARTED"])
  31. if ev is None:
  32. raise Exception("Other scan did not start")
  33. if "id=" + str(id) in ev:
  34. raise Exception("Own scan id unexpectedly included in start event")
  35. ev = dev.wait_event(["CTRL-EVENT-SCAN-RESULTS"])
  36. if ev is None:
  37. raise Exception("Other scan did not complete")
  38. if "id=" + str(id) in ev:
  39. raise Exception(
  40. "Own scan id unexpectedly included in completed event")
  41. ev = dev.wait_event(["CTRL-EVENT-SCAN-STARTED"])
  42. if ev is None:
  43. raise Exception("Scan did not start")
  44. if "id=" + str(id) not in ev:
  45. raise Exception("Scan id not included in start event")
  46. ev = dev.wait_event(["CTRL-EVENT-SCAN-RESULTS"])
  47. if ev is None:
  48. raise Exception("Scan did not complete")
  49. if "id=" + str(id) not in ev:
  50. raise Exception("Scan id not included in completed event")
  51. res = dev.request("SCAN_RESULTS")
  52. if res.find("[MESH]") < 0:
  53. raise Exception("Scan did not contain a MESH network")
  54. bssid = res.splitlines()[1].split(' ')[0]
  55. bss = dev.get_bss(bssid)
  56. if bss is None:
  57. raise Exception("Could not get BSS entry for mesh")
  58. if 'mesh_capability' not in bss:
  59. raise Exception("mesh_capability missing from BSS entry")
  60. if beacon_int:
  61. if 'beacon_int' not in bss:
  62. raise Exception("beacon_int missing from BSS entry")
  63. if str(beacon_int) != bss['beacon_int']:
  64. raise Exception("Unexpected beacon_int in BSS entry: " + bss['beacon_int'])
  65. def check_mesh_group_added(dev):
  66. ev = dev.wait_event(["MESH-GROUP-STARTED"])
  67. if ev is None:
  68. raise Exception("Test exception: Couldn't join mesh")
  69. def check_mesh_group_removed(dev):
  70. ev = dev.wait_event(["MESH-GROUP-REMOVED"])
  71. if ev is None:
  72. raise Exception("Test exception: Couldn't leave mesh")
  73. def check_mesh_peer_connected(dev, timeout=10):
  74. ev = dev.wait_event(["MESH-PEER-CONNECTED"], timeout=timeout)
  75. if ev is None:
  76. raise Exception("Test exception: Remote peer did not connect.")
  77. def check_mesh_peer_disconnected(dev):
  78. ev = dev.wait_event(["MESH-PEER-DISCONNECTED"])
  79. if ev is None:
  80. raise Exception("Test exception: Peer disconnect event not detected.")
  81. def test_wpas_add_set_remove_support(dev):
  82. """wpa_supplicant MESH add/set/remove network support"""
  83. check_mesh_support(dev[0])
  84. id = dev[0].add_network()
  85. dev[0].set_network(id, "mode", "5")
  86. dev[0].remove_network(id)
  87. def add_open_mesh_network(dev, freq="2412", start=True, beacon_int=0,
  88. basic_rates=None, chwidth=0):
  89. id = dev.add_network()
  90. dev.set_network(id, "mode", "5")
  91. dev.set_network_quoted(id, "ssid", "wpas-mesh-open")
  92. dev.set_network(id, "key_mgmt", "NONE")
  93. if freq:
  94. dev.set_network(id, "frequency", freq)
  95. if chwidth > 0:
  96. dev.set_network(id, "max_oper_chwidth", str(chwidth))
  97. if beacon_int:
  98. dev.set_network(id, "beacon_int", str(beacon_int))
  99. if basic_rates:
  100. dev.set_network(id, "mesh_basic_rates", basic_rates)
  101. if start:
  102. dev.mesh_group_add(id)
  103. return id
  104. def test_wpas_mesh_group_added(dev):
  105. """wpa_supplicant MESH group add"""
  106. check_mesh_support(dev[0])
  107. add_open_mesh_network(dev[0])
  108. # Check for MESH-GROUP-STARTED event
  109. check_mesh_group_added(dev[0])
  110. def test_wpas_mesh_group_remove(dev):
  111. """wpa_supplicant MESH group remove"""
  112. check_mesh_support(dev[0])
  113. add_open_mesh_network(dev[0])
  114. # Check for MESH-GROUP-STARTED event
  115. check_mesh_group_added(dev[0])
  116. dev[0].mesh_group_remove()
  117. # Check for MESH-GROUP-REMOVED event
  118. check_mesh_group_removed(dev[0])
  119. dev[0].mesh_group_remove()
  120. def test_wpas_mesh_peer_connected(dev):
  121. """wpa_supplicant MESH peer connected"""
  122. check_mesh_support(dev[0])
  123. add_open_mesh_network(dev[0], beacon_int=160)
  124. add_open_mesh_network(dev[1], beacon_int=160)
  125. # Check for mesh joined
  126. check_mesh_group_added(dev[0])
  127. check_mesh_group_added(dev[1])
  128. # Check for peer connected
  129. check_mesh_peer_connected(dev[0])
  130. check_mesh_peer_connected(dev[1])
  131. def test_wpas_mesh_peer_disconnected(dev):
  132. """wpa_supplicant MESH peer disconnected"""
  133. check_mesh_support(dev[0])
  134. add_open_mesh_network(dev[0])
  135. add_open_mesh_network(dev[1])
  136. # Check for mesh joined
  137. check_mesh_group_added(dev[0])
  138. check_mesh_group_added(dev[1])
  139. # Check for peer connected
  140. check_mesh_peer_connected(dev[0])
  141. check_mesh_peer_connected(dev[1])
  142. # Remove group on dev 1
  143. dev[1].mesh_group_remove()
  144. # Device 0 should get a disconnection event
  145. check_mesh_peer_disconnected(dev[0])
  146. def test_wpas_mesh_mode_scan(dev):
  147. """wpa_supplicant MESH scan support"""
  148. check_mesh_support(dev[0])
  149. add_open_mesh_network(dev[0])
  150. add_open_mesh_network(dev[1], beacon_int=175)
  151. # Check for mesh joined
  152. check_mesh_group_added(dev[0])
  153. check_mesh_group_added(dev[1])
  154. # Check for Mesh scan
  155. check_mesh_scan(dev[0], "use_id=1", beacon_int=175)
  156. def test_wpas_mesh_open(dev, apdev):
  157. """wpa_supplicant open MESH network connectivity"""
  158. check_mesh_support(dev[0])
  159. add_open_mesh_network(dev[0], freq="2462", basic_rates="60 120 240")
  160. add_open_mesh_network(dev[1], freq="2462", basic_rates="60 120 240")
  161. # Check for mesh joined
  162. check_mesh_group_added(dev[0])
  163. check_mesh_group_added(dev[1])
  164. # Check for peer connected
  165. check_mesh_peer_connected(dev[0])
  166. check_mesh_peer_connected(dev[1])
  167. # Test connectivity 0->1 and 1->0
  168. hwsim_utils.test_connectivity(dev[0], dev[1])
  169. def test_wpas_mesh_open_no_auto(dev, apdev):
  170. """wpa_supplicant open MESH network connectivity"""
  171. check_mesh_support(dev[0])
  172. id = add_open_mesh_network(dev[0], start=False)
  173. dev[0].set_network(id, "dot11MeshMaxRetries", "16")
  174. dev[0].set_network(id, "dot11MeshRetryTimeout", "255")
  175. dev[0].mesh_group_add(id)
  176. id = add_open_mesh_network(dev[1], start=False)
  177. dev[1].set_network(id, "no_auto_peer", "1")
  178. dev[1].mesh_group_add(id)
  179. # Check for mesh joined
  180. check_mesh_group_added(dev[0])
  181. check_mesh_group_added(dev[1])
  182. # Check for peer connected
  183. check_mesh_peer_connected(dev[0], timeout=30)
  184. check_mesh_peer_connected(dev[1])
  185. # Test connectivity 0->1 and 1->0
  186. hwsim_utils.test_connectivity(dev[0], dev[1])
  187. def add_mesh_secure_net(dev, psk=True, pmf=False, pairwise=None, group=None):
  188. id = dev.add_network()
  189. dev.set_network(id, "mode", "5")
  190. dev.set_network_quoted(id, "ssid", "wpas-mesh-sec")
  191. dev.set_network(id, "key_mgmt", "SAE")
  192. dev.set_network(id, "frequency", "2412")
  193. if psk:
  194. dev.set_network_quoted(id, "psk", "thisismypassphrase!")
  195. if pmf:
  196. dev.set_network(id, "ieee80211w", "2")
  197. if pairwise:
  198. dev.set_network(id, "pairwise", pairwise)
  199. if group:
  200. dev.set_network(id, "group", group)
  201. return id
  202. def test_wpas_mesh_secure(dev, apdev):
  203. """wpa_supplicant secure MESH network connectivity"""
  204. check_mesh_support(dev[0], secure=True)
  205. dev[0].request("SET sae_groups ")
  206. id = add_mesh_secure_net(dev[0])
  207. dev[0].mesh_group_add(id)
  208. dev[1].request("SET sae_groups ")
  209. id = add_mesh_secure_net(dev[1])
  210. dev[1].mesh_group_add(id)
  211. # Check for mesh joined
  212. check_mesh_group_added(dev[0])
  213. check_mesh_group_added(dev[1])
  214. # Check for peer connected
  215. check_mesh_peer_connected(dev[0])
  216. check_mesh_peer_connected(dev[1])
  217. # Test connectivity 0->1 and 1->0
  218. hwsim_utils.test_connectivity(dev[0], dev[1])
  219. def test_mesh_secure_pmf(dev, apdev):
  220. """Secure mesh network connectivity with PMF enabled"""
  221. check_mesh_support(dev[0], secure=True)
  222. dev[0].request("SET sae_groups ")
  223. id = add_mesh_secure_net(dev[0], pmf=True)
  224. dev[0].mesh_group_add(id)
  225. dev[1].request("SET sae_groups ")
  226. id = add_mesh_secure_net(dev[1], pmf=True)
  227. dev[1].mesh_group_add(id)
  228. # Check for mesh joined
  229. check_mesh_group_added(dev[0])
  230. check_mesh_group_added(dev[1])
  231. # Check for peer connected
  232. check_mesh_peer_connected(dev[0])
  233. check_mesh_peer_connected(dev[1])
  234. # Test connectivity 0->1 and 1->0
  235. hwsim_utils.test_connectivity(dev[0], dev[1])
  236. def run_mesh_secure(dev, cipher):
  237. if cipher not in dev[0].get_capability("pairwise"):
  238. raise HwsimSkip("Cipher %s not supported" % cipher)
  239. check_mesh_support(dev[0], secure=True)
  240. dev[0].request("SET sae_groups ")
  241. id = add_mesh_secure_net(dev[0], pairwise=cipher, group=cipher)
  242. dev[0].mesh_group_add(id)
  243. dev[1].request("SET sae_groups ")
  244. id = add_mesh_secure_net(dev[1], pairwise=cipher, group=cipher)
  245. dev[1].mesh_group_add(id)
  246. # Check for mesh joined
  247. check_mesh_group_added(dev[0])
  248. check_mesh_group_added(dev[1])
  249. # Check for peer connected
  250. check_mesh_peer_connected(dev[0])
  251. check_mesh_peer_connected(dev[1])
  252. # Test connectivity 0->1 and 1->0
  253. hwsim_utils.test_connectivity(dev[0], dev[1])
  254. def test_mesh_secure_ccmp(dev, apdev):
  255. """Secure mesh with CCMP"""
  256. run_mesh_secure(dev, "CCMP")
  257. def test_mesh_secure_gcmp(dev, apdev):
  258. """Secure mesh with GCMP"""
  259. run_mesh_secure(dev, "GCMP")
  260. def test_mesh_secure_gcmp_256(dev, apdev):
  261. """Secure mesh with GCMP-256"""
  262. run_mesh_secure(dev, "GCMP-256")
  263. def test_mesh_secure_ccmp_256(dev, apdev):
  264. """Secure mesh with CCMP-256"""
  265. run_mesh_secure(dev, "CCMP-256")
  266. def test_mesh_secure_invalid_pairwise_cipher(dev, apdev):
  267. """Secure mesh and invalid group cipher"""
  268. check_mesh_support(dev[0], secure=True)
  269. dev[0].request("SET sae_groups ")
  270. id = add_mesh_secure_net(dev[0], pairwise="TKIP", group="CCMP")
  271. if dev[0].mesh_group_add(id) != None:
  272. raise Exception("Unexpected group add success")
  273. ev = dev[0].wait_event(["mesh: Invalid pairwise cipher"], timeout=1)
  274. if ev is None:
  275. raise Exception("Invalid pairwise cipher not reported")
  276. def test_mesh_secure_invalid_group_cipher(dev, apdev):
  277. """Secure mesh and invalid group cipher"""
  278. check_mesh_support(dev[0], secure=True)
  279. dev[0].request("SET sae_groups ")
  280. id = add_mesh_secure_net(dev[0], pairwise="CCMP", group="TKIP")
  281. if dev[0].mesh_group_add(id) != None:
  282. raise Exception("Unexpected group add success")
  283. ev = dev[0].wait_event(["mesh: Invalid group cipher"], timeout=1)
  284. if ev is None:
  285. raise Exception("Invalid group cipher not reported")
  286. def test_wpas_mesh_secure_sae_group_mismatch(dev, apdev):
  287. """wpa_supplicant secure MESH and SAE group mismatch"""
  288. check_mesh_support(dev[0], secure=True)
  289. addr0 = dev[0].p2p_interface_addr()
  290. addr1 = dev[1].p2p_interface_addr()
  291. addr2 = dev[2].p2p_interface_addr()
  292. dev[0].request("SET sae_groups 19 25")
  293. id = add_mesh_secure_net(dev[0])
  294. dev[0].mesh_group_add(id)
  295. dev[1].request("SET sae_groups 19")
  296. id = add_mesh_secure_net(dev[1])
  297. dev[1].mesh_group_add(id)
  298. dev[2].request("SET sae_groups 26")
  299. id = add_mesh_secure_net(dev[2])
  300. dev[2].mesh_group_add(id)
  301. check_mesh_group_added(dev[0])
  302. check_mesh_group_added(dev[1])
  303. check_mesh_group_added(dev[2])
  304. ev = dev[0].wait_event(["MESH-PEER-CONNECTED"])
  305. if ev is None:
  306. raise Exception("Remote peer did not connect")
  307. if addr1 not in ev:
  308. raise Exception("Unexpected peer connected: " + ev)
  309. ev = dev[1].wait_event(["MESH-PEER-CONNECTED"])
  310. if ev is None:
  311. raise Exception("Remote peer did not connect")
  312. if addr0 not in ev:
  313. raise Exception("Unexpected peer connected: " + ev)
  314. ev = dev[2].wait_event(["MESH-PEER-CONNECTED"], timeout=1)
  315. if ev is not None:
  316. raise Exception("Unexpected peer connection at dev[2]: " + ev)
  317. ev = dev[0].wait_event(["MESH-PEER-CONNECTED"], timeout=0.1)
  318. if ev is not None:
  319. raise Exception("Unexpected peer connection: " + ev)
  320. ev = dev[1].wait_event(["MESH-PEER-CONNECTED"], timeout=0.1)
  321. if ev is not None:
  322. raise Exception("Unexpected peer connection: " + ev)
  323. dev[0].request("SET sae_groups ")
  324. dev[1].request("SET sae_groups ")
  325. dev[2].request("SET sae_groups ")
  326. def test_wpas_mesh_secure_sae_group_negotiation(dev, apdev):
  327. """wpa_supplicant secure MESH and SAE group negotiation"""
  328. check_mesh_support(dev[0], secure=True)
  329. addr0 = dev[0].own_addr()
  330. addr1 = dev[1].own_addr()
  331. #dev[0].request("SET sae_groups 21 20 25 26")
  332. dev[0].request("SET sae_groups 25")
  333. id = add_mesh_secure_net(dev[0])
  334. dev[0].mesh_group_add(id)
  335. dev[1].request("SET sae_groups 19 25")
  336. id = add_mesh_secure_net(dev[1])
  337. dev[1].mesh_group_add(id)
  338. check_mesh_group_added(dev[0])
  339. check_mesh_group_added(dev[1])
  340. check_mesh_peer_connected(dev[0])
  341. check_mesh_peer_connected(dev[1])
  342. dev[0].request("SET sae_groups ")
  343. dev[1].request("SET sae_groups ")
  344. def test_wpas_mesh_secure_sae_missing_password(dev, apdev):
  345. """wpa_supplicant secure MESH and missing SAE password"""
  346. check_mesh_support(dev[0], secure=True)
  347. id = add_mesh_secure_net(dev[0], psk=False)
  348. dev[0].set_network(id, "psk", "8f20b381f9b84371d61b5080ad85cac3c61ab3ca9525be5b2d0f4da3d979187a")
  349. dev[0].mesh_group_add(id)
  350. ev = dev[0].wait_event(["MESH-GROUP-STARTED", "Could not join mesh"],
  351. timeout=5)
  352. if ev is None:
  353. raise Exception("Timeout on mesh start event")
  354. if "MESH-GROUP-STARTED" in ev:
  355. raise Exception("Unexpected mesh group start")
  356. ev = dev[0].wait_event(["MESH-GROUP-STARTED"], timeout=0.1)
  357. if ev is not None:
  358. raise Exception("Unexpected mesh group start")
  359. def test_wpas_mesh_secure_no_auto(dev, apdev):
  360. """wpa_supplicant secure MESH network connectivity"""
  361. check_mesh_support(dev[0], secure=True)
  362. dev[0].request("SET sae_groups 19")
  363. id = add_mesh_secure_net(dev[0])
  364. dev[0].mesh_group_add(id)
  365. dev[1].request("SET sae_groups 19")
  366. id = add_mesh_secure_net(dev[1])
  367. dev[1].set_network(id, "no_auto_peer", "1")
  368. dev[1].mesh_group_add(id)
  369. # Check for mesh joined
  370. check_mesh_group_added(dev[0])
  371. check_mesh_group_added(dev[1])
  372. # Check for peer connected
  373. check_mesh_peer_connected(dev[0], timeout=30)
  374. check_mesh_peer_connected(dev[1])
  375. # Test connectivity 0->1 and 1->0
  376. hwsim_utils.test_connectivity(dev[0], dev[1])
  377. dev[0].request("SET sae_groups ")
  378. dev[1].request("SET sae_groups ")
  379. def test_wpas_mesh_secure_dropped_frame(dev, apdev):
  380. """Secure mesh network connectivity when the first plink Open is dropped"""
  381. check_mesh_support(dev[0], secure=True)
  382. dev[0].request("SET ext_mgmt_frame_handling 1")
  383. dev[0].request("SET sae_groups ")
  384. id = add_mesh_secure_net(dev[0])
  385. dev[0].mesh_group_add(id)
  386. dev[1].request("SET sae_groups ")
  387. id = add_mesh_secure_net(dev[1])
  388. dev[1].mesh_group_add(id)
  389. # Check for mesh joined
  390. check_mesh_group_added(dev[0])
  391. check_mesh_group_added(dev[1])
  392. # Drop the first Action frame (plink Open) to test unexpected order of
  393. # Confirm/Open messages.
  394. count = 0
  395. while True:
  396. count += 1
  397. if count > 10:
  398. raise Exception("Did not see Action frames")
  399. rx_msg = dev[0].mgmt_rx()
  400. if rx_msg is None:
  401. raise Exception("MGMT-RX timeout")
  402. if rx_msg['subtype'] == 13:
  403. logger.info("Drop the first Action frame")
  404. break
  405. if "OK" not in dev[0].request("MGMT_RX_PROCESS freq={} datarate={} ssi_signal={} frame={}".format(rx_msg['freq'], rx_msg['datarate'], rx_msg['ssi_signal'], rx_msg['frame'].encode('hex'))):
  406. raise Exception("MGMT_RX_PROCESS failed")
  407. dev[0].request("SET ext_mgmt_frame_handling 0")
  408. # Check for peer connected
  409. check_mesh_peer_connected(dev[0])
  410. check_mesh_peer_connected(dev[1])
  411. # Test connectivity 0->1 and 1->0
  412. hwsim_utils.test_connectivity(dev[0], dev[1])
  413. def test_wpas_mesh_ctrl(dev):
  414. """wpa_supplicant ctrl_iface mesh command error cases"""
  415. check_mesh_support(dev[0])
  416. if "FAIL" not in dev[0].request("MESH_GROUP_ADD 123"):
  417. raise Exception("Unexpected MESH_GROUP_ADD success")
  418. id = dev[0].add_network()
  419. if "FAIL" not in dev[0].request("MESH_GROUP_ADD %d" % id):
  420. raise Exception("Unexpected MESH_GROUP_ADD success")
  421. dev[0].set_network(id, "mode", "5")
  422. dev[0].set_network(id, "key_mgmt", "WPA-PSK")
  423. if "FAIL" not in dev[0].request("MESH_GROUP_ADD %d" % id):
  424. raise Exception("Unexpected MESH_GROUP_ADD success")
  425. if "FAIL" not in dev[0].request("MESH_GROUP_REMOVE foo"):
  426. raise Exception("Unexpected MESH_GROUP_REMOVE success")
  427. def test_wpas_mesh_dynamic_interface(dev):
  428. """wpa_supplicant mesh with dynamic interface"""
  429. check_mesh_support(dev[0])
  430. mesh0 = None
  431. mesh1 = None
  432. try:
  433. mesh0 = dev[0].request("MESH_INTERFACE_ADD ifname=mesh0")
  434. if "FAIL" in mesh0:
  435. raise Exception("MESH_INTERFACE_ADD failed")
  436. mesh1 = dev[1].request("MESH_INTERFACE_ADD")
  437. if "FAIL" in mesh1:
  438. raise Exception("MESH_INTERFACE_ADD failed")
  439. wpas0 = WpaSupplicant(ifname=mesh0)
  440. wpas1 = WpaSupplicant(ifname=mesh1)
  441. logger.info(mesh0 + " address " + wpas0.get_status_field("address"))
  442. logger.info(mesh1 + " address " + wpas1.get_status_field("address"))
  443. add_open_mesh_network(wpas0)
  444. add_open_mesh_network(wpas1)
  445. check_mesh_group_added(wpas0)
  446. check_mesh_group_added(wpas1)
  447. check_mesh_peer_connected(wpas0)
  448. check_mesh_peer_connected(wpas1)
  449. hwsim_utils.test_connectivity(wpas0, wpas1)
  450. # Must not allow MESH_GROUP_REMOVE on dynamic interface
  451. if "FAIL" not in wpas0.request("MESH_GROUP_REMOVE " + mesh0):
  452. raise Exception("Invalid MESH_GROUP_REMOVE accepted")
  453. if "FAIL" not in wpas1.request("MESH_GROUP_REMOVE " + mesh1):
  454. raise Exception("Invalid MESH_GROUP_REMOVE accepted")
  455. # Must not allow MESH_GROUP_REMOVE on another radio interface
  456. if "FAIL" not in wpas0.request("MESH_GROUP_REMOVE " + mesh1):
  457. raise Exception("Invalid MESH_GROUP_REMOVE accepted")
  458. if "FAIL" not in wpas1.request("MESH_GROUP_REMOVE " + mesh0):
  459. raise Exception("Invalid MESH_GROUP_REMOVE accepted")
  460. wpas0.remove_ifname()
  461. wpas1.remove_ifname()
  462. if "OK" not in dev[0].request("MESH_GROUP_REMOVE " + mesh0):
  463. raise Exception("MESH_GROUP_REMOVE failed")
  464. if "OK" not in dev[1].request("MESH_GROUP_REMOVE " + mesh1):
  465. raise Exception("MESH_GROUP_REMOVE failed")
  466. if "FAIL" not in dev[0].request("MESH_GROUP_REMOVE " + mesh0):
  467. raise Exception("Invalid MESH_GROUP_REMOVE accepted")
  468. if "FAIL" not in dev[1].request("MESH_GROUP_REMOVE " + mesh1):
  469. raise Exception("Invalid MESH_GROUP_REMOVE accepted")
  470. logger.info("Make sure another dynamic group can be added")
  471. mesh0 = dev[0].request("MESH_INTERFACE_ADD ifname=mesh0")
  472. if "FAIL" in mesh0:
  473. raise Exception("MESH_INTERFACE_ADD failed")
  474. mesh1 = dev[1].request("MESH_INTERFACE_ADD")
  475. if "FAIL" in mesh1:
  476. raise Exception("MESH_INTERFACE_ADD failed")
  477. wpas0 = WpaSupplicant(ifname=mesh0)
  478. wpas1 = WpaSupplicant(ifname=mesh1)
  479. logger.info(mesh0 + " address " + wpas0.get_status_field("address"))
  480. logger.info(mesh1 + " address " + wpas1.get_status_field("address"))
  481. add_open_mesh_network(wpas0)
  482. add_open_mesh_network(wpas1)
  483. check_mesh_group_added(wpas0)
  484. check_mesh_group_added(wpas1)
  485. check_mesh_peer_connected(wpas0)
  486. check_mesh_peer_connected(wpas1)
  487. hwsim_utils.test_connectivity(wpas0, wpas1)
  488. finally:
  489. if mesh0:
  490. dev[0].request("MESH_GROUP_REMOVE " + mesh0)
  491. if mesh1:
  492. dev[1].request("MESH_GROUP_REMOVE " + mesh1)
  493. def test_wpas_mesh_max_peering(dev, apdev, params):
  494. """Mesh max peering limit"""
  495. check_mesh_support(dev[0])
  496. try:
  497. dev[0].request("SET max_peer_links 1")
  498. # first, connect dev[0] and dev[1]
  499. add_open_mesh_network(dev[0])
  500. add_open_mesh_network(dev[1])
  501. for i in range(2):
  502. ev = dev[i].wait_event(["MESH-PEER-CONNECTED"])
  503. if ev is None:
  504. raise Exception("dev%d did not connect with any peer" % i)
  505. # add dev[2] which will try to connect with both dev[0] and dev[1],
  506. # but can complete connection only with dev[1]
  507. add_open_mesh_network(dev[2])
  508. for i in range(1, 3):
  509. ev = dev[i].wait_event(["MESH-PEER-CONNECTED"])
  510. if ev is None:
  511. raise Exception("dev%d did not connect the second peer" % i)
  512. ev = dev[0].wait_event(["MESH-PEER-CONNECTED"], timeout=1)
  513. if ev is not None:
  514. raise Exception("dev0 connection beyond max peering limit")
  515. ev = dev[2].wait_event(["MESH-PEER-CONNECTED"], timeout=0.1)
  516. if ev is not None:
  517. raise Exception("dev2 reported unexpected peering: " + ev)
  518. for i in range(3):
  519. dev[i].mesh_group_remove()
  520. check_mesh_group_removed(dev[i])
  521. finally:
  522. dev[0].request("SET max_peer_links 99")
  523. addr0 = dev[0].own_addr()
  524. addr1 = dev[1].own_addr()
  525. addr2 = dev[2].own_addr()
  526. capfile = os.path.join(params['logdir'], "hwsim0.pcapng")
  527. filt = "wlan.fc.type_subtype == 8"
  528. out = run_tshark(capfile, filt, [ "wlan.sa", "wlan.mesh.config.cap" ])
  529. pkts = out.splitlines()
  530. one = [ 0, 0, 0 ]
  531. zero = [ 0, 0, 0 ]
  532. for pkt in pkts:
  533. addr, cap = pkt.split('\t')
  534. cap = int(cap, 16)
  535. if addr == addr0:
  536. idx = 0
  537. elif addr == addr1:
  538. idx = 1
  539. elif addr == addr2:
  540. idx = 2
  541. else:
  542. continue
  543. if cap & 0x01:
  544. one[idx] += 1
  545. else:
  546. zero[idx] += 1
  547. logger.info("one: " + str(one))
  548. logger.info("zero: " + str(zero))
  549. if zero[0] == 0:
  550. raise Exception("Accepting Additional Mesh Peerings not cleared")
  551. if one[0] == 0:
  552. raise Exception("Accepting Additional Mesh Peerings was not set in the first Beacon frame")
  553. if zero[1] > 0 or zero[2] > 0 or one[1] == 0 or one[2] == 0:
  554. raise Exception("Unexpected value in Accepting Additional Mesh Peerings from other STAs")
  555. def test_wpas_mesh_open_5ghz(dev, apdev):
  556. """wpa_supplicant open MESH network on 5 GHz band"""
  557. try:
  558. _test_wpas_mesh_open_5ghz(dev, apdev)
  559. finally:
  560. subprocess.call(['iw', 'reg', 'set', '00'])
  561. dev[0].flush_scan_cache()
  562. dev[1].flush_scan_cache()
  563. def _test_wpas_mesh_open_5ghz(dev, apdev):
  564. check_mesh_support(dev[0])
  565. subprocess.call(['iw', 'reg', 'set', 'US'])
  566. for i in range(2):
  567. for j in range(5):
  568. ev = dev[i].wait_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=5)
  569. if ev is None:
  570. raise Exception("No regdom change event")
  571. if "alpha2=US" in ev:
  572. break
  573. add_open_mesh_network(dev[i], freq="5180")
  574. # Check for mesh joined
  575. check_mesh_group_added(dev[0])
  576. check_mesh_group_added(dev[1])
  577. # Check for peer connected
  578. check_mesh_peer_connected(dev[0])
  579. check_mesh_peer_connected(dev[1])
  580. # Test connectivity 0->1 and 1->0
  581. hwsim_utils.test_connectivity(dev[0], dev[1])
  582. def test_wpas_mesh_open_vht_80p80(dev, apdev):
  583. """wpa_supplicant open MESH network on VHT 80+80 MHz channel"""
  584. try:
  585. _test_wpas_mesh_open_vht_80p80(dev, apdev)
  586. finally:
  587. subprocess.call(['iw', 'reg', 'set', '00'])
  588. dev[0].flush_scan_cache()
  589. dev[1].flush_scan_cache()
  590. def _test_wpas_mesh_open_vht_80p80(dev, apdev):
  591. check_mesh_support(dev[0])
  592. subprocess.call(['iw', 'reg', 'set', 'US'])
  593. for i in range(2):
  594. for j in range(5):
  595. ev = dev[i].wait_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=5)
  596. if ev is None:
  597. raise Exception("No regdom change event")
  598. if "alpha2=US" in ev:
  599. break
  600. add_open_mesh_network(dev[i], freq="5180", chwidth=3)
  601. # Check for mesh joined
  602. check_mesh_group_added(dev[0])
  603. check_mesh_group_added(dev[1])
  604. # Check for peer connected
  605. check_mesh_peer_connected(dev[0])
  606. check_mesh_peer_connected(dev[1])
  607. # Test connectivity 0->1 and 1->0
  608. hwsim_utils.test_connectivity(dev[0], dev[1])
  609. sig = dev[0].request("SIGNAL_POLL").splitlines()
  610. if "WIDTH=80+80 MHz" not in sig:
  611. raise Exception("Unexpected SIGNAL_POLL value(2): " + str(sig))
  612. if "CENTER_FRQ1=5210" not in sig:
  613. raise Exception("Unexpected SIGNAL_POLL value(3): " + str(sig))
  614. if "CENTER_FRQ2=5775" not in sig:
  615. raise Exception("Unexpected SIGNAL_POLL value(4): " + str(sig))
  616. sig = dev[1].request("SIGNAL_POLL").splitlines()
  617. if "WIDTH=80+80 MHz" not in sig:
  618. raise Exception("Unexpected SIGNAL_POLL value(2b): " + str(sig))
  619. if "CENTER_FRQ1=5210" not in sig:
  620. raise Exception("Unexpected SIGNAL_POLL value(3b): " + str(sig))
  621. if "CENTER_FRQ2=5775" not in sig:
  622. raise Exception("Unexpected SIGNAL_POLL value(4b): " + str(sig))
  623. def test_mesh_open_vht_160(dev, apdev):
  624. """Open mesh network on VHT 160 MHz channel"""
  625. try:
  626. _test_mesh_open_vht_160(dev, apdev)
  627. finally:
  628. subprocess.call(['iw', 'reg', 'set', '00'])
  629. dev[0].flush_scan_cache()
  630. dev[1].flush_scan_cache()
  631. def _test_mesh_open_vht_160(dev, apdev):
  632. check_mesh_support(dev[0])
  633. subprocess.call(['iw', 'reg', 'set', 'ZA'])
  634. for i in range(2):
  635. for j in range(5):
  636. ev = dev[i].wait_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=5)
  637. if ev is None:
  638. raise Exception("No regdom change event")
  639. if "alpha2=ZA" in ev:
  640. break
  641. cmd = subprocess.Popen(["iw", "reg", "get"], stdout=subprocess.PIPE)
  642. reg = cmd.stdout.read()
  643. if "@ 160)" not in reg:
  644. raise HwsimSkip("160 MHz channel not supported in regulatory information")
  645. add_open_mesh_network(dev[i], freq="5520", chwidth=2)
  646. # Check for mesh joined
  647. check_mesh_group_added(dev[0])
  648. check_mesh_group_added(dev[1])
  649. # Check for peer connected
  650. check_mesh_peer_connected(dev[0])
  651. check_mesh_peer_connected(dev[1])
  652. # Test connectivity 0->1 and 1->0
  653. hwsim_utils.test_connectivity(dev[0], dev[1])
  654. sig = dev[0].request("SIGNAL_POLL").splitlines()
  655. if "WIDTH=160 MHz" not in sig:
  656. raise Exception("Unexpected SIGNAL_POLL value(2): " + str(sig))
  657. if "FREQUENCY=5520" not in sig:
  658. raise Exception("Unexpected SIGNAL_POLL value(3): " + str(sig))
  659. sig = dev[1].request("SIGNAL_POLL").splitlines()
  660. if "WIDTH=160 MHz" not in sig:
  661. raise Exception("Unexpected SIGNAL_POLL value(2b): " + str(sig))
  662. if "FREQUENCY=5520" not in sig:
  663. raise Exception("Unexpected SIGNAL_POLL value(3b): " + str(sig))
  664. def test_wpas_mesh_password_mismatch(dev, apdev):
  665. """Mesh network and one device with mismatching password"""
  666. check_mesh_support(dev[0], secure=True)
  667. dev[0].request("SET sae_groups ")
  668. id = add_mesh_secure_net(dev[0])
  669. dev[0].mesh_group_add(id)
  670. dev[1].request("SET sae_groups ")
  671. id = add_mesh_secure_net(dev[1])
  672. dev[1].mesh_group_add(id)
  673. dev[2].request("SET sae_groups ")
  674. id = add_mesh_secure_net(dev[2])
  675. dev[2].set_network_quoted(id, "psk", "wrong password")
  676. dev[2].mesh_group_add(id)
  677. # The two peers with matching password need to be able to connect
  678. check_mesh_group_added(dev[0])
  679. check_mesh_group_added(dev[1])
  680. check_mesh_peer_connected(dev[0])
  681. check_mesh_peer_connected(dev[1])
  682. ev = dev[2].wait_event(["MESH-SAE-AUTH-FAILURE"], timeout=20)
  683. if ev is None:
  684. raise Exception("dev2 did not report auth failure (1)")
  685. ev = dev[2].wait_event(["MESH-SAE-AUTH-FAILURE"], timeout=20)
  686. if ev is None:
  687. raise Exception("dev2 did not report auth failure (2)")
  688. count = 0
  689. ev = dev[0].wait_event(["MESH-SAE-AUTH-FAILURE"], timeout=1)
  690. if ev is None:
  691. logger.info("dev0 did not report auth failure")
  692. else:
  693. if "addr=" + dev[2].own_addr() not in ev:
  694. raise Exception("Unexpected peer address in dev0 event: " + ev)
  695. count += 1
  696. ev = dev[1].wait_event(["MESH-SAE-AUTH-FAILURE"], timeout=1)
  697. if ev is None:
  698. logger.info("dev1 did not report auth failure")
  699. else:
  700. if "addr=" + dev[2].own_addr() not in ev:
  701. raise Exception("Unexpected peer address in dev1 event: " + ev)
  702. count += 1
  703. hwsim_utils.test_connectivity(dev[0], dev[1])
  704. for i in range(2):
  705. try:
  706. hwsim_utils.test_connectivity(dev[i], dev[2], timeout=1)
  707. raise Exception("Data connectivity test passed unexpectedly")
  708. except Exception, e:
  709. if "data delivery failed" not in str(e):
  710. raise
  711. if count == 0:
  712. raise Exception("Neither dev0 nor dev1 reported auth failure")
  713. def test_wpas_mesh_password_mismatch_retry(dev, apdev, params):
  714. """Mesh password mismatch and retry [long]"""
  715. if not params['long']:
  716. raise HwsimSkip("Skip test case with long duration due to --long not specified")
  717. check_mesh_support(dev[0], secure=True)
  718. dev[0].request("SET sae_groups ")
  719. id = add_mesh_secure_net(dev[0])
  720. dev[0].mesh_group_add(id)
  721. dev[1].request("SET sae_groups ")
  722. id = add_mesh_secure_net(dev[1])
  723. dev[1].set_network_quoted(id, "psk", "wrong password")
  724. dev[1].mesh_group_add(id)
  725. # Check for mesh joined
  726. check_mesh_group_added(dev[0])
  727. check_mesh_group_added(dev[1])
  728. for i in range(4):
  729. ev = dev[0].wait_event(["MESH-SAE-AUTH-FAILURE"], timeout=20)
  730. if ev is None:
  731. raise Exception("dev0 did not report auth failure (%d)" % i)
  732. ev = dev[1].wait_event(["MESH-SAE-AUTH-FAILURE"], timeout=20)
  733. if ev is None:
  734. raise Exception("dev1 did not report auth failure (%d)" % i)
  735. ev = dev[0].wait_event(["MESH-SAE-AUTH-BLOCKED"], timeout=10)
  736. if ev is None:
  737. raise Exception("dev0 did not report auth blocked")
  738. ev = dev[1].wait_event(["MESH-SAE-AUTH-BLOCKED"], timeout=10)
  739. if ev is None:
  740. raise Exception("dev1 did not report auth blocked")
  741. def test_mesh_wpa_auth_init_oom(dev, apdev):
  742. """Secure mesh network setup failing due to wpa_init() OOM"""
  743. check_mesh_support(dev[0], secure=True)
  744. dev[0].request("SET sae_groups ")
  745. with alloc_fail(dev[0], 1, "wpa_init"):
  746. id = add_mesh_secure_net(dev[0])
  747. dev[0].mesh_group_add(id)
  748. ev = dev[0].wait_event(["MESH-GROUP-STARTED"], timeout=0.2)
  749. if ev is not None:
  750. raise Exception("Unexpected mesh group start during OOM")
  751. def test_mesh_wpa_init_fail(dev, apdev):
  752. """Secure mesh network setup local failure"""
  753. check_mesh_support(dev[0], secure=True)
  754. dev[0].request("SET sae_groups ")
  755. with fail_test(dev[0], 1, "os_get_random;=__mesh_rsn_auth_init"):
  756. id = add_mesh_secure_net(dev[0])
  757. dev[0].mesh_group_add(id)
  758. wait_fail_trigger(dev[0], "GET_FAIL")
  759. dev[0].dump_monitor()
  760. with alloc_fail(dev[0], 1, "mesh_rsn_auth_init"):
  761. id = add_mesh_secure_net(dev[0])
  762. dev[0].mesh_group_add(id)
  763. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  764. dev[0].dump_monitor()
  765. with fail_test(dev[0], 1, "os_get_random;mesh_rsn_init_ampe_sta"):
  766. id = add_mesh_secure_net(dev[0])
  767. dev[0].mesh_group_add(id)
  768. dev[1].request("SET sae_groups ")
  769. id = add_mesh_secure_net(dev[1])
  770. dev[1].mesh_group_add(id)
  771. wait_fail_trigger(dev[0], "GET_FAIL")
  772. def test_wpas_mesh_reconnect(dev, apdev):
  773. """Secure mesh network plink counting during reconnection"""
  774. check_mesh_support(dev[0])
  775. try:
  776. _test_wpas_mesh_reconnect(dev)
  777. finally:
  778. dev[0].request("SET max_peer_links 99")
  779. def _test_wpas_mesh_reconnect(dev):
  780. dev[0].request("SET max_peer_links 2")
  781. dev[0].request("SET sae_groups ")
  782. id = add_mesh_secure_net(dev[0])
  783. dev[0].set_network(id, "beacon_int", "100")
  784. dev[0].mesh_group_add(id)
  785. dev[1].request("SET sae_groups ")
  786. id = add_mesh_secure_net(dev[1])
  787. dev[1].mesh_group_add(id)
  788. check_mesh_group_added(dev[0])
  789. check_mesh_group_added(dev[1])
  790. check_mesh_peer_connected(dev[0])
  791. check_mesh_peer_connected(dev[1])
  792. for i in range(3):
  793. # Drop incoming management frames to avoid handling link close
  794. dev[0].request("SET ext_mgmt_frame_handling 1")
  795. dev[1].mesh_group_remove()
  796. check_mesh_group_removed(dev[1])
  797. dev[1].request("FLUSH")
  798. dev[0].request("SET ext_mgmt_frame_handling 0")
  799. id = add_mesh_secure_net(dev[1])
  800. dev[1].mesh_group_add(id)
  801. check_mesh_group_added(dev[1])
  802. check_mesh_peer_connected(dev[1])
  803. dev[0].dump_monitor()
  804. dev[1].dump_monitor()
  805. def test_wpas_mesh_gate_forwarding(dev, apdev, p):
  806. """Mesh forwards traffic to unknown sta to mesh gates"""
  807. addr0 = dev[0].own_addr()
  808. addr1 = dev[1].own_addr()
  809. addr2 = dev[2].own_addr()
  810. external_sta = '02:11:22:33:44:55'
  811. # start 3 node connected mesh
  812. check_mesh_support(dev[0])
  813. for i in range(3):
  814. add_open_mesh_network(dev[i])
  815. check_mesh_group_added(dev[i])
  816. for i in range(3):
  817. check_mesh_peer_connected(dev[i])
  818. hwsim_utils.test_connectivity(dev[0], dev[1])
  819. hwsim_utils.test_connectivity(dev[1], dev[2])
  820. hwsim_utils.test_connectivity(dev[0], dev[2])
  821. # dev0 and dev1 are mesh gates
  822. subprocess.call(['iw', 'dev', dev[0].ifname, 'set', 'mesh_param',
  823. 'mesh_gate_announcements=1'])
  824. subprocess.call(['iw', 'dev', dev[1].ifname, 'set', 'mesh_param',
  825. 'mesh_gate_announcements=1'])
  826. # wait for gate announcement frames
  827. time.sleep(1)
  828. # data frame from dev2 -> external sta should be sent to both gates
  829. dev[2].request("DATA_TEST_CONFIG 1")
  830. dev[2].request("DATA_TEST_TX {} {} 0".format(external_sta, addr2))
  831. dev[2].request("DATA_TEST_CONFIG 0")
  832. capfile = os.path.join(p['logdir'], "hwsim0.pcapng")
  833. filt = "wlan.sa==%s && wlan_mgt.fixed.mesh_addr5==%s" % (addr2,
  834. external_sta)
  835. for i in range(15):
  836. da = run_tshark(capfile, filt, [ "wlan.da" ])
  837. if addr0 in da and addr1 in da:
  838. logger.debug("Frames seen in tshark iteration %d" % i)
  839. break
  840. time.sleep(0.3)
  841. if addr0 not in da:
  842. raise Exception("Frame to gate %s not observed" % addr0)
  843. if addr1 not in da:
  844. raise Exception("Frame to gate %s not observed" % addr1)
  845. def test_wpas_mesh_pmksa_caching(dev, apdev):
  846. """Secure mesh network and PMKSA caching"""
  847. check_mesh_support(dev[0], secure=True)
  848. dev[0].request("SET sae_groups ")
  849. id = add_mesh_secure_net(dev[0])
  850. dev[0].mesh_group_add(id)
  851. dev[1].request("SET sae_groups ")
  852. id = add_mesh_secure_net(dev[1])
  853. dev[1].mesh_group_add(id)
  854. # Check for mesh joined
  855. check_mesh_group_added(dev[0])
  856. check_mesh_group_added(dev[1])
  857. # Check for peer connected
  858. check_mesh_peer_connected(dev[0])
  859. check_mesh_peer_connected(dev[1])
  860. addr0 = dev[0].own_addr()
  861. addr1 = dev[1].own_addr()
  862. pmksa0 = dev[0].get_pmksa(addr1)
  863. pmksa1 = dev[1].get_pmksa(addr0)
  864. if pmksa0 is None or pmksa1 is None:
  865. raise Exception("No PMKSA cache entry created")
  866. if pmksa0['pmkid'] != pmksa1['pmkid']:
  867. raise Exception("PMKID mismatch in PMKSA cache entries")
  868. if "OK" not in dev[0].request("MESH_PEER_REMOVE " + addr1):
  869. raise Exception("Failed to remove peer")
  870. pmksa0b = dev[0].get_pmksa(addr1)
  871. if pmksa0b is None:
  872. raise Exception("PMKSA cache entry not maintained")
  873. time.sleep(0.1)
  874. if "FAIL" not in dev[0].request("MESH_PEER_ADD " + addr1):
  875. raise Exception("MESH_PEER_ADD unexpectedly succeeded in no_auto_peer=0 case")
  876. def test_wpas_mesh_pmksa_caching2(dev, apdev):
  877. """Secure mesh network and PMKSA caching with no_auto_peer=1"""
  878. check_mesh_support(dev[0], secure=True)
  879. addr0 = dev[0].own_addr()
  880. addr1 = dev[1].own_addr()
  881. dev[0].request("SET sae_groups ")
  882. id = add_mesh_secure_net(dev[0])
  883. dev[0].set_network(id, "no_auto_peer", "1")
  884. dev[0].mesh_group_add(id)
  885. dev[1].request("SET sae_groups ")
  886. id = add_mesh_secure_net(dev[1])
  887. dev[1].set_network(id, "no_auto_peer", "1")
  888. dev[1].mesh_group_add(id)
  889. # Check for mesh joined
  890. check_mesh_group_added(dev[0])
  891. check_mesh_group_added(dev[1])
  892. # Check for peer connected
  893. ev = dev[0].wait_event(["will not initiate new peer link"], timeout=10)
  894. if ev is None:
  895. raise Exception("Missing no-initiate message")
  896. if "OK" not in dev[0].request("MESH_PEER_ADD " + addr1):
  897. raise Exception("MESH_PEER_ADD failed")
  898. check_mesh_peer_connected(dev[0])
  899. check_mesh_peer_connected(dev[1])
  900. pmksa0 = dev[0].get_pmksa(addr1)
  901. pmksa1 = dev[1].get_pmksa(addr0)
  902. if pmksa0 is None or pmksa1 is None:
  903. raise Exception("No PMKSA cache entry created")
  904. if pmksa0['pmkid'] != pmksa1['pmkid']:
  905. raise Exception("PMKID mismatch in PMKSA cache entries")
  906. if "OK" not in dev[0].request("MESH_PEER_REMOVE " + addr1):
  907. raise Exception("Failed to remove peer")
  908. pmksa0b = dev[0].get_pmksa(addr1)
  909. if pmksa0b is None:
  910. raise Exception("PMKSA cache entry not maintained")
  911. ev = dev[0].wait_event(["will not initiate new peer link"], timeout=10)
  912. if ev is None:
  913. raise Exception("Missing no-initiate message (2)")
  914. if "OK" not in dev[0].request("MESH_PEER_ADD " + addr1):
  915. raise Exception("MESH_PEER_ADD failed (2)")
  916. check_mesh_peer_connected(dev[0])
  917. check_mesh_peer_connected(dev[1])
  918. pmksa0c = dev[0].get_pmksa(addr1)
  919. pmksa1c = dev[1].get_pmksa(addr0)
  920. if pmksa0c is None or pmksa1c is None:
  921. raise Exception("No PMKSA cache entry created (2)")
  922. if pmksa0c['pmkid'] != pmksa1c['pmkid']:
  923. raise Exception("PMKID mismatch in PMKSA cache entries")
  924. if pmksa0['pmkid'] != pmksa0c['pmkid']:
  925. raise Exception("PMKID changed")
  926. hwsim_utils.test_connectivity(dev[0], dev[1])
  927. def test_wpas_mesh_pmksa_caching_no_match(dev, apdev):
  928. """Secure mesh network and PMKSA caching with no PMKID match"""
  929. check_mesh_support(dev[0], secure=True)
  930. addr0 = dev[0].own_addr()
  931. addr1 = dev[1].own_addr()
  932. dev[0].request("SET sae_groups ")
  933. id = add_mesh_secure_net(dev[0])
  934. dev[0].set_network(id, "no_auto_peer", "1")
  935. dev[0].mesh_group_add(id)
  936. dev[1].request("SET sae_groups ")
  937. id = add_mesh_secure_net(dev[1])
  938. dev[1].set_network(id, "no_auto_peer", "1")
  939. dev[1].mesh_group_add(id)
  940. # Check for mesh joined
  941. check_mesh_group_added(dev[0])
  942. check_mesh_group_added(dev[1])
  943. # Check for peer connected
  944. ev = dev[0].wait_event(["will not initiate new peer link"], timeout=10)
  945. if ev is None:
  946. raise Exception("Missing no-initiate message")
  947. if "OK" not in dev[0].request("MESH_PEER_ADD " + addr1):
  948. raise Exception("MESH_PEER_ADD failed")
  949. check_mesh_peer_connected(dev[0])
  950. check_mesh_peer_connected(dev[1])
  951. pmksa0 = dev[0].get_pmksa(addr1)
  952. pmksa1 = dev[1].get_pmksa(addr0)
  953. if pmksa0 is None or pmksa1 is None:
  954. raise Exception("No PMKSA cache entry created")
  955. if pmksa0['pmkid'] != pmksa1['pmkid']:
  956. raise Exception("PMKID mismatch in PMKSA cache entries")
  957. if "OK" not in dev[0].request("MESH_PEER_REMOVE " + addr1):
  958. raise Exception("Failed to remove peer")
  959. if "OK" not in dev[1].request("PMKSA_FLUSH"):
  960. raise Exception("Failed to flush PMKSA cache")
  961. ev = dev[0].wait_event(["will not initiate new peer link"], timeout=10)
  962. if ev is None:
  963. raise Exception("Missing no-initiate message (2)")
  964. if "OK" not in dev[0].request("MESH_PEER_ADD " + addr1):
  965. raise Exception("MESH_PEER_ADD failed (2)")
  966. check_mesh_peer_connected(dev[0])
  967. check_mesh_peer_connected(dev[1])
  968. pmksa0c = dev[0].get_pmksa(addr1)
  969. pmksa1c = dev[1].get_pmksa(addr0)
  970. if pmksa0c is None or pmksa1c is None:
  971. raise Exception("No PMKSA cache entry created (2)")
  972. if pmksa0c['pmkid'] != pmksa1c['pmkid']:
  973. raise Exception("PMKID mismatch in PMKSA cache entries")
  974. if pmksa0['pmkid'] == pmksa0c['pmkid']:
  975. raise Exception("PMKID did not change")
  976. hwsim_utils.test_connectivity(dev[0], dev[1])
  977. def test_mesh_pmksa_caching_oom(dev, apdev):
  978. """Secure mesh network and PMKSA caching failing due to OOM"""
  979. check_mesh_support(dev[0], secure=True)
  980. addr0 = dev[0].own_addr()
  981. addr1 = dev[1].own_addr()
  982. dev[0].request("SET sae_groups ")
  983. id = add_mesh_secure_net(dev[0])
  984. dev[0].set_network(id, "no_auto_peer", "1")
  985. dev[0].mesh_group_add(id)
  986. dev[1].request("SET sae_groups ")
  987. id = add_mesh_secure_net(dev[1])
  988. dev[1].set_network(id, "no_auto_peer", "1")
  989. dev[1].mesh_group_add(id)
  990. # Check for mesh joined
  991. check_mesh_group_added(dev[0])
  992. check_mesh_group_added(dev[1])
  993. # Check for peer connected
  994. ev = dev[0].wait_event(["will not initiate new peer link"], timeout=10)
  995. if ev is None:
  996. raise Exception("Missing no-initiate message")
  997. if "OK" not in dev[0].request("MESH_PEER_ADD " + addr1):
  998. raise Exception("MESH_PEER_ADD failed")
  999. check_mesh_peer_connected(dev[0])
  1000. check_mesh_peer_connected(dev[1])
  1001. if "OK" not in dev[0].request("MESH_PEER_REMOVE " + addr1):
  1002. raise Exception("Failed to remove peer")
  1003. pmksa0b = dev[0].get_pmksa(addr1)
  1004. if pmksa0b is None:
  1005. raise Exception("PMKSA cache entry not maintained")
  1006. ev = dev[0].wait_event(["will not initiate new peer link"], timeout=10)
  1007. if ev is None:
  1008. raise Exception("Missing no-initiate message (2)")
  1009. with alloc_fail(dev[0], 1, "wpa_auth_sta_init;mesh_rsn_auth_sae_sta"):
  1010. if "OK" not in dev[0].request("MESH_PEER_ADD " + addr1):
  1011. raise Exception("MESH_PEER_ADD failed (2)")
  1012. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  1013. def test_mesh_oom(dev, apdev):
  1014. """Mesh network setup failing due to OOM"""
  1015. check_mesh_support(dev[0], secure=True)
  1016. dev[0].request("SET sae_groups ")
  1017. with alloc_fail(dev[0], 1, "mesh_config_create"):
  1018. add_open_mesh_network(dev[0])
  1019. ev = dev[0].wait_event(["Failed to init mesh"])
  1020. if ev is None:
  1021. raise Exception("Init failure not reported")
  1022. with alloc_fail(dev[0], 4, "=wpa_supplicant_mesh_init"):
  1023. add_open_mesh_network(dev[0], basic_rates="60 120 240")
  1024. ev = dev[0].wait_event(["Failed to init mesh"])
  1025. if ev is None:
  1026. raise Exception("Init failure not reported")
  1027. for i in range(1, 66):
  1028. dev[0].dump_monitor()
  1029. logger.info("Test instance %d" % i)
  1030. try:
  1031. with alloc_fail(dev[0], i, "wpa_supplicant_mesh_init"):
  1032. add_open_mesh_network(dev[0])
  1033. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  1034. ev = dev[0].wait_event(["Failed to init mesh",
  1035. "MESH-GROUP-STARTED"])
  1036. if ev is None:
  1037. raise Exception("Init failure not reported")
  1038. except Exception, e:
  1039. if i < 15:
  1040. raise
  1041. logger.info("Ignore no-oom for i=%d" % i)
  1042. with alloc_fail(dev[0], 5, "=wpa_supplicant_mesh_init"):
  1043. id = add_mesh_secure_net(dev[0])
  1044. dev[0].mesh_group_add(id)
  1045. ev = dev[0].wait_event(["Failed to init mesh"])
  1046. if ev is None:
  1047. raise Exception("Init failure not reported")
  1048. def test_mesh_add_interface_oom(dev):
  1049. """wpa_supplicant mesh with dynamic interface addition failing"""
  1050. check_mesh_support(dev[0])
  1051. for i in range(1, 3):
  1052. mesh = None
  1053. try:
  1054. with alloc_fail(dev[0], i, "wpas_mesh_add_interface"):
  1055. mesh = dev[0].request("MESH_INTERFACE_ADD").strip()
  1056. finally:
  1057. if mesh and mesh != "FAIL":
  1058. dev[0].request("MESH_GROUP_REMOVE " + mesh)
  1059. def test_mesh_scan_oom(dev):
  1060. """wpa_supplicant mesh scan results and OOM"""
  1061. check_mesh_support(dev[0])
  1062. add_open_mesh_network(dev[0])
  1063. check_mesh_group_added(dev[0])
  1064. for i in range(5):
  1065. dev[1].scan(freq="2412")
  1066. res = dev[1].request("SCAN_RESULTS")
  1067. if "[MESH]" in res:
  1068. break
  1069. for r in res.splitlines():
  1070. if "[MESH]" in r:
  1071. break
  1072. bssid = r.split('\t')[0]
  1073. bss = dev[1].get_bss(bssid)
  1074. if bss is None:
  1075. raise Exception("Could not get BSS entry for mesh")
  1076. for i in range(1, 3):
  1077. with alloc_fail(dev[1], i, "mesh_attr_text"):
  1078. bss = dev[1].get_bss(bssid)
  1079. if bss is not None:
  1080. raise Exception("Unexpected BSS result during OOM")
  1081. def test_mesh_drv_fail(dev, apdev):
  1082. """Mesh network setup failing due to driver command failure"""
  1083. check_mesh_support(dev[0], secure=True)
  1084. dev[0].request("SET sae_groups ")
  1085. with fail_test(dev[0], 1, "nl80211_join_mesh"):
  1086. add_open_mesh_network(dev[0])
  1087. ev = dev[0].wait_event(["mesh join error"])
  1088. if ev is None:
  1089. raise Exception("Join failure not reported")
  1090. dev[0].dump_monitor()
  1091. with fail_test(dev[0], 1, "wpa_driver_nl80211_if_add"):
  1092. if "FAIL" not in dev[0].request("MESH_INTERFACE_ADD").strip():
  1093. raise Exception("Interface added unexpectedly")
  1094. dev[0].dump_monitor()
  1095. with fail_test(dev[0], 1, "wpa_driver_nl80211_init_mesh"):
  1096. add_open_mesh_network(dev[0])
  1097. ev = dev[0].wait_event(["Could not join mesh"])
  1098. if ev is None:
  1099. raise Exception("Join failure not reported")
  1100. def test_mesh_sae_groups_invalid(dev, apdev):
  1101. """Mesh with invalid SAE group configuration"""
  1102. check_mesh_support(dev[0], secure=True)
  1103. dev[0].request("SET sae_groups 25")
  1104. id = add_mesh_secure_net(dev[0])
  1105. dev[0].mesh_group_add(id)
  1106. dev[1].request("SET sae_groups 123 122 121")
  1107. id = add_mesh_secure_net(dev[1])
  1108. dev[1].mesh_group_add(id)
  1109. check_mesh_group_added(dev[0])
  1110. check_mesh_group_added(dev[1])
  1111. ev = dev[0].wait_event(["new peer notification"], timeout=10)
  1112. if ev is None:
  1113. raise Exception("dev[0] did not see peer")
  1114. ev = dev[1].wait_event(["new peer notification"], timeout=10)
  1115. if ev is None:
  1116. raise Exception("dev[1] did not see peer")
  1117. ev = dev[0].wait_event(["MESH-PEER-CONNECTED"], timeout=0.1)
  1118. if ev is not None:
  1119. raise Exception("Unexpected connection(0)")
  1120. ev = dev[1].wait_event(["MESH-PEER-CONNECTED"], timeout=0.01)
  1121. if ev is not None:
  1122. raise Exception("Unexpected connection(1)")
  1123. # Additional coverage in mesh_rsn_sae_group() with non-zero
  1124. # wpa_s->mesh_rsn->sae_group_index.
  1125. dev[0].dump_monitor()
  1126. dev[1].dump_monitor()
  1127. id = add_mesh_secure_net(dev[2])
  1128. dev[2].mesh_group_add(id)
  1129. check_mesh_group_added(dev[2])
  1130. check_mesh_peer_connected(dev[0])
  1131. check_mesh_peer_connected(dev[2])
  1132. ev = dev[1].wait_event(["new peer notification"], timeout=10)
  1133. if ev is None:
  1134. raise Exception("dev[1] did not see peer(2)")
  1135. dev[0].dump_monitor()
  1136. dev[1].dump_monitor()
  1137. dev[2].dump_monitor()
  1138. dev[0].request("SET sae_groups ")
  1139. dev[1].request("SET sae_groups ")
  1140. def test_mesh_sae_failure(dev, apdev):
  1141. """Mesh and local SAE failures"""
  1142. check_mesh_support(dev[0], secure=True)
  1143. dev[0].request("SET sae_groups ")
  1144. dev[1].request("SET sae_groups ")
  1145. funcs = [ (1, "=mesh_rsn_auth_sae_sta", True),
  1146. (1, "mesh_rsn_build_sae_commit;mesh_rsn_auth_sae_sta", False),
  1147. (1, "auth_sae_init_committed;mesh_rsn_auth_sae_sta", True),
  1148. (1, "=mesh_rsn_protect_frame", True),
  1149. (2, "=mesh_rsn_protect_frame", True),
  1150. (1, "aes_siv_encrypt;mesh_rsn_protect_frame", True),
  1151. (1, "=mesh_rsn_process_ampe", True),
  1152. (1, "aes_siv_decrypt;mesh_rsn_process_ampe", True) ]
  1153. for count, func, success in funcs:
  1154. id = add_mesh_secure_net(dev[0])
  1155. dev[0].mesh_group_add(id)
  1156. with alloc_fail(dev[1], count, func):
  1157. id = add_mesh_secure_net(dev[1])
  1158. dev[1].mesh_group_add(id)
  1159. check_mesh_group_added(dev[0])
  1160. check_mesh_group_added(dev[1])
  1161. if success:
  1162. # retry is expected to work
  1163. check_mesh_peer_connected(dev[0])
  1164. check_mesh_peer_connected(dev[1])
  1165. else:
  1166. wait_fail_trigger(dev[1], "GET_ALLOC_FAIL")
  1167. dev[0].mesh_group_remove()
  1168. dev[1].mesh_group_remove()
  1169. check_mesh_group_removed(dev[0])
  1170. check_mesh_group_removed(dev[1])
  1171. def test_mesh_failure(dev, apdev):
  1172. """Mesh and local failures"""
  1173. check_mesh_support(dev[0])
  1174. funcs = [ (1, "ap_sta_add;mesh_mpm_add_peer", True),
  1175. (1, "wpabuf_alloc;mesh_mpm_send_plink_action", True) ]
  1176. for count, func, success in funcs:
  1177. add_open_mesh_network(dev[0])
  1178. with alloc_fail(dev[1], count, func):
  1179. add_open_mesh_network(dev[1])
  1180. check_mesh_group_added(dev[0])
  1181. check_mesh_group_added(dev[1])
  1182. if success:
  1183. # retry is expected to work
  1184. check_mesh_peer_connected(dev[0])
  1185. check_mesh_peer_connected(dev[1])
  1186. else:
  1187. wait_fail_trigger(dev[1], "GET_ALLOC_FAIL")
  1188. dev[0].mesh_group_remove()
  1189. dev[1].mesh_group_remove()
  1190. check_mesh_group_removed(dev[0])
  1191. check_mesh_group_removed(dev[1])
  1192. funcs = [ (1, "mesh_mpm_init_link", True) ]
  1193. for count, func, success in funcs:
  1194. add_open_mesh_network(dev[0])
  1195. with fail_test(dev[1], count, func):
  1196. add_open_mesh_network(dev[1])
  1197. check_mesh_group_added(dev[0])
  1198. check_mesh_group_added(dev[1])
  1199. if success:
  1200. # retry is expected to work
  1201. check_mesh_peer_connected(dev[0])
  1202. check_mesh_peer_connected(dev[1])
  1203. else:
  1204. wait_fail_trigger(dev[1], "GET_FAIL")
  1205. dev[0].mesh_group_remove()
  1206. dev[1].mesh_group_remove()
  1207. check_mesh_group_removed(dev[0])
  1208. check_mesh_group_removed(dev[1])
  1209. def test_mesh_invalid_frequency(dev, apdev):
  1210. """Mesh and invalid frequency configuration"""
  1211. check_mesh_support(dev[0])
  1212. add_open_mesh_network(dev[0], freq=None)
  1213. ev = dev[0].wait_event(["MESH-GROUP-STARTED",
  1214. "Could not join mesh"])
  1215. if ev is None or "Could not join mesh" not in ev:
  1216. raise Exception("Mesh join failure not reported")
  1217. dev[0].request("REMOVE_NETWORK all")
  1218. add_open_mesh_network(dev[0], freq="2413")
  1219. ev = dev[0].wait_event(["MESH-GROUP-STARTED",
  1220. "Could not join mesh"])
  1221. if ev is None or "Could not join mesh" not in ev:
  1222. raise Exception("Mesh join failure not reported")
  1223. def test_mesh_default_beacon_int(dev, apdev):
  1224. """Mesh and default beacon interval"""
  1225. check_mesh_support(dev[0])
  1226. try:
  1227. dev[0].request("SET beacon_int 200")
  1228. add_open_mesh_network(dev[0])
  1229. check_mesh_group_added(dev[0])
  1230. finally:
  1231. dev[0].request("SET beacon_int 0")
  1232. def test_mesh_scan_parse_error(dev, apdev):
  1233. """Mesh scan element parse error"""
  1234. check_mesh_support(dev[0])
  1235. params = { "ssid": "open",
  1236. "beacon_int": "2000" }
  1237. hapd = hostapd.add_ap(apdev[0], params)
  1238. bssid = apdev[0]['bssid']
  1239. hapd.set('vendor_elements', 'dd0201')
  1240. for i in range(10):
  1241. dev[0].scan(freq=2412)
  1242. if bssid in dev[0].request("SCAN_RESULTS"):
  1243. break
  1244. # This will fail in IE parsing due to the truncated IE in the Probe
  1245. # Response frame.
  1246. bss = dev[0].request("BSS " + bssid)
  1247. def test_mesh_missing_mic(dev, apdev):
  1248. """Secure mesh network and missing MIC"""
  1249. check_mesh_support(dev[0], secure=True)
  1250. dev[0].request("SET ext_mgmt_frame_handling 1")
  1251. dev[0].request("SET sae_groups ")
  1252. id = add_mesh_secure_net(dev[0])
  1253. dev[0].mesh_group_add(id)
  1254. dev[1].request("SET sae_groups ")
  1255. id = add_mesh_secure_net(dev[1])
  1256. dev[1].mesh_group_add(id)
  1257. # Check for mesh joined
  1258. check_mesh_group_added(dev[0])
  1259. check_mesh_group_added(dev[1])
  1260. count = 0
  1261. remove_mic = True
  1262. while True:
  1263. count += 1
  1264. if count > 15:
  1265. raise Exception("Did not see Action frames")
  1266. rx_msg = dev[0].mgmt_rx()
  1267. if rx_msg is None:
  1268. ev = dev[1].wait_event(["MESH-PEER-CONNECTED"], timeout=0.01)
  1269. if ev:
  1270. break
  1271. raise Exception("MGMT-RX timeout")
  1272. if rx_msg['subtype'] == 13:
  1273. payload = rx_msg['payload']
  1274. frame = rx_msg['frame']
  1275. (categ, action) = struct.unpack('BB', payload[0:2])
  1276. if categ == 15 and action == 1 and remove_mic:
  1277. # Mesh Peering Open
  1278. pos = frame.find('\x8c\x10')
  1279. if not pos:
  1280. raise Exception("Could not find MIC element")
  1281. logger.info("Found MIC at %d" % pos)
  1282. # Remove MIC
  1283. rx_msg['frame'] = frame[0:pos]
  1284. remove_mic = False
  1285. if "OK" not in dev[0].request("MGMT_RX_PROCESS freq={} datarate={} ssi_signal={} frame={}".format(rx_msg['freq'], rx_msg['datarate'], rx_msg['ssi_signal'], rx_msg['frame'].encode('hex'))):
  1286. raise Exception("MGMT_RX_PROCESS failed")
  1287. ev = dev[1].wait_event(["MESH-PEER-CONNECTED"], timeout=0.01)
  1288. if ev:
  1289. break
  1290. def test_mesh_pmkid_mismatch(dev, apdev):
  1291. """Secure mesh network and PMKID mismatch"""
  1292. check_mesh_support(dev[0], secure=True)
  1293. addr0 = dev[0].own_addr()
  1294. addr1 = dev[1].own_addr()
  1295. dev[0].request("SET sae_groups ")
  1296. id = add_mesh_secure_net(dev[0])
  1297. dev[0].set_network(id, "no_auto_peer", "1")
  1298. dev[0].mesh_group_add(id)
  1299. dev[1].request("SET sae_groups ")
  1300. id = add_mesh_secure_net(dev[1])
  1301. dev[1].set_network(id, "no_auto_peer", "1")
  1302. dev[1].mesh_group_add(id)
  1303. # Check for mesh joined
  1304. check_mesh_group_added(dev[0])
  1305. check_mesh_group_added(dev[1])
  1306. # Check for peer connected
  1307. ev = dev[0].wait_event(["will not initiate new peer link"], timeout=10)
  1308. if ev is None:
  1309. raise Exception("Missing no-initiate message")
  1310. if "OK" not in dev[0].request("MESH_PEER_ADD " + addr1):
  1311. raise Exception("MESH_PEER_ADD failed")
  1312. check_mesh_peer_connected(dev[0])
  1313. check_mesh_peer_connected(dev[1])
  1314. if "OK" not in dev[0].request("MESH_PEER_REMOVE " + addr1):
  1315. raise Exception("Failed to remove peer")
  1316. ev = dev[0].wait_event(["will not initiate new peer link"], timeout=10)
  1317. if ev is None:
  1318. raise Exception("Missing no-initiate message (2)")
  1319. dev[0].dump_monitor()
  1320. dev[1].dump_monitor()
  1321. dev[0].request("SET ext_mgmt_frame_handling 1")
  1322. if "OK" not in dev[0].request("MESH_PEER_ADD " + addr1):
  1323. raise Exception("MESH_PEER_ADD failed (2)")
  1324. count = 0
  1325. break_pmkid = True
  1326. while True:
  1327. count += 1
  1328. if count > 50:
  1329. raise Exception("Did not see Action frames")
  1330. rx_msg = dev[0].mgmt_rx()
  1331. if rx_msg is None:
  1332. ev = dev[1].wait_event(["MESH-PEER-CONNECTED"], timeout=0.1)
  1333. if ev:
  1334. break
  1335. raise Exception("MGMT-RX timeout")
  1336. if rx_msg['subtype'] == 13:
  1337. payload = rx_msg['payload']
  1338. frame = rx_msg['frame']
  1339. (categ, action) = struct.unpack('BB', payload[0:2])
  1340. if categ == 15 and action == 1 and break_pmkid:
  1341. # Mesh Peering Open
  1342. pos = frame.find('\x75\x14')
  1343. if not pos:
  1344. raise Exception("Could not find Mesh Peering Management element")
  1345. logger.info("Found Mesh Peering Management element at %d" % pos)
  1346. # Break PMKID to hit "Mesh RSN: Invalid PMKID (Chosen PMK did
  1347. # not match calculated PMKID)"
  1348. rx_msg['frame'] = frame[0:pos + 6] + '\x00\x00\x00\x00' + frame[pos + 10:]
  1349. break_pmkid = False
  1350. if "OK" not in dev[0].request("MGMT_RX_PROCESS freq={} datarate={} ssi_signal={} frame={}".format(rx_msg['freq'], rx_msg['datarate'], rx_msg['ssi_signal'], rx_msg['frame'].encode('hex'))):
  1351. raise Exception("MGMT_RX_PROCESS failed")
  1352. ev = dev[1].wait_event(["MESH-PEER-CONNECTED"], timeout=0.01)
  1353. if ev:
  1354. break
  1355. def test_mesh_peering_proto(dev, apdev):
  1356. """Mesh peering management protocol testing"""
  1357. check_mesh_support(dev[0])
  1358. dev[0].request("SET ext_mgmt_frame_handling 1")
  1359. add_open_mesh_network(dev[0], beacon_int=160)
  1360. add_open_mesh_network(dev[1], beacon_int=160)
  1361. count = 0
  1362. test = 1
  1363. while True:
  1364. count += 1
  1365. if count > 50:
  1366. raise Exception("Did not see Action frames")
  1367. rx_msg = dev[0].mgmt_rx()
  1368. if rx_msg is None:
  1369. ev = dev[1].wait_event(["MESH-PEER-CONNECTED"], timeout=0.01)
  1370. if ev:
  1371. break
  1372. raise Exception("MGMT-RX timeout")
  1373. if rx_msg['subtype'] == 13:
  1374. payload = rx_msg['payload']
  1375. frame = rx_msg['frame']
  1376. (categ, action) = struct.unpack('BB', payload[0:2])
  1377. if categ == 15 and action == 1 and test == 1:
  1378. # Mesh Peering Open
  1379. pos = frame.find('\x75\x04')
  1380. if not pos:
  1381. raise Exception("Could not find Mesh Peering Management element")
  1382. logger.info("Found Mesh Peering Management element at %d" % pos)
  1383. # Remove the element to hit
  1384. # "MPM: No Mesh Peering Management element"
  1385. rx_msg['frame'] = frame[0:pos]
  1386. test += 1
  1387. elif categ == 15 and action == 1 and test == 2:
  1388. # Mesh Peering Open
  1389. pos = frame.find('\x72\x0e')
  1390. if not pos:
  1391. raise Exception("Could not find Mesh ID element")
  1392. logger.info("Found Mesh ID element at %d" % pos)
  1393. # Remove the element to hit
  1394. # "MPM: No Mesh ID or Mesh Configuration element"
  1395. rx_msg['frame'] = frame[0:pos] + frame[pos + 16:]
  1396. test += 1
  1397. elif categ == 15 and action == 1 and test == 3:
  1398. # Mesh Peering Open
  1399. pos = frame.find('\x72\x0e')
  1400. if not pos:
  1401. raise Exception("Could not find Mesh ID element")
  1402. logger.info("Found Mesh ID element at %d" % pos)
  1403. # Replace Mesh ID to hit "MPM: Mesh ID or Mesh Configuration
  1404. # element do not match local MBSS"
  1405. rx_msg['frame'] = frame[0:pos] + '\x72\x0etest-test-test' + frame[pos + 16:]
  1406. test += 1
  1407. elif categ == 15 and action == 1 and test == 4:
  1408. # Mesh Peering Open
  1409. # Remove IEs to hit
  1410. # "MPM: Ignore too short action frame 1 ie_len 0"
  1411. rx_msg['frame'] = frame[0:26]
  1412. test += 1
  1413. elif categ == 15 and action == 1 and test == 5:
  1414. # Mesh Peering Open
  1415. # Truncate IEs to hit
  1416. # "MPM: Failed to parse PLINK IEs"
  1417. rx_msg['frame'] = frame[0:30]
  1418. test += 1
  1419. elif categ == 15 and action == 1 and test == 6:
  1420. # Mesh Peering Open
  1421. pos = frame.find('\x75\x04')
  1422. if not pos:
  1423. raise Exception("Could not find Mesh Peering Management element")
  1424. logger.info("Found Mesh Peering Management element at %d" % pos)
  1425. # Truncate the element to hit
  1426. # "MPM: Invalid peer mgmt ie" and
  1427. # "MPM: Mesh parsing rejected frame"
  1428. rx_msg['frame'] = frame[0:pos] + '\x75\x00\x00\x00' + frame[pos + 6:]
  1429. test += 1
  1430. if "OK" not in dev[0].request("MGMT_RX_PROCESS freq={} datarate={} ssi_signal={} frame={}".format(rx_msg['freq'], rx_msg['datarate'], rx_msg['ssi_signal'], rx_msg['frame'].encode('hex'))):
  1431. raise Exception("MGMT_RX_PROCESS failed")
  1432. ev = dev[1].wait_event(["MESH-PEER-CONNECTED"], timeout=0.01)
  1433. if ev:
  1434. break
  1435. if test != 7:
  1436. raise Exception("Not all test frames completed")