test_wpas_mesh.py 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982
  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 subprocess
  10. import time
  11. import hwsim_utils
  12. from wpasupplicant import WpaSupplicant
  13. from utils import HwsimSkip, alloc_fail, wait_fail_trigger
  14. from tshark import run_tshark
  15. def check_mesh_support(dev, secure=False):
  16. if "MESH" not in dev.get_capability("modes"):
  17. raise HwsimSkip("Driver does not support mesh")
  18. if secure and "SAE" not in dev.get_capability("auth_alg"):
  19. raise HwsimSkip("SAE not supported")
  20. def check_mesh_scan(dev, params, other_started=False, beacon_int=0):
  21. if not other_started:
  22. dev.dump_monitor()
  23. id = dev.request("SCAN " + params)
  24. if "FAIL" in id:
  25. raise Exception("Failed to start scan")
  26. id = int(id)
  27. if other_started:
  28. ev = dev.wait_event(["CTRL-EVENT-SCAN-STARTED"])
  29. if ev is None:
  30. raise Exception("Other scan did not start")
  31. if "id=" + str(id) in ev:
  32. raise Exception("Own scan id unexpectedly included in start event")
  33. ev = dev.wait_event(["CTRL-EVENT-SCAN-RESULTS"])
  34. if ev is None:
  35. raise Exception("Other scan did not complete")
  36. if "id=" + str(id) in ev:
  37. raise Exception(
  38. "Own scan id unexpectedly included in completed event")
  39. ev = dev.wait_event(["CTRL-EVENT-SCAN-STARTED"])
  40. if ev is None:
  41. raise Exception("Scan did not start")
  42. if "id=" + str(id) not in ev:
  43. raise Exception("Scan id not included in start event")
  44. ev = dev.wait_event(["CTRL-EVENT-SCAN-RESULTS"])
  45. if ev is None:
  46. raise Exception("Scan did not complete")
  47. if "id=" + str(id) not in ev:
  48. raise Exception("Scan id not included in completed event")
  49. res = dev.request("SCAN_RESULTS")
  50. if res.find("[MESH]") < 0:
  51. raise Exception("Scan did not contain a MESH network")
  52. bssid = res.splitlines()[1].split(' ')[0]
  53. bss = dev.get_bss(bssid)
  54. if bss is None:
  55. raise Exception("Could not get BSS entry for mesh")
  56. if 'mesh_capability' not in bss:
  57. raise Exception("mesh_capability missing from BSS entry")
  58. if beacon_int:
  59. if 'beacon_int' not in bss:
  60. raise Exception("beacon_int missing from BSS entry")
  61. if str(beacon_int) != bss['beacon_int']:
  62. raise Exception("Unexpected beacon_int in BSS entry: " + bss['beacon_int'])
  63. def check_mesh_group_added(dev):
  64. ev = dev.wait_event(["MESH-GROUP-STARTED"])
  65. if ev is None:
  66. raise Exception("Test exception: Couldn't join mesh")
  67. def check_mesh_group_removed(dev):
  68. ev = dev.wait_event(["MESH-GROUP-REMOVED"])
  69. if ev is None:
  70. raise Exception("Test exception: Couldn't leave mesh")
  71. def check_mesh_peer_connected(dev, timeout=10):
  72. ev = dev.wait_event(["MESH-PEER-CONNECTED"], timeout=timeout)
  73. if ev is None:
  74. raise Exception("Test exception: Remote peer did not connect.")
  75. def check_mesh_peer_disconnected(dev):
  76. ev = dev.wait_event(["MESH-PEER-DISCONNECTED"])
  77. if ev is None:
  78. raise Exception("Test exception: Peer disconnect event not detected.")
  79. def test_wpas_add_set_remove_support(dev):
  80. """wpa_supplicant MESH add/set/remove network support"""
  81. check_mesh_support(dev[0])
  82. id = dev[0].add_network()
  83. dev[0].set_network(id, "mode", "5")
  84. dev[0].remove_network(id)
  85. def add_open_mesh_network(dev, freq="2412", start=True, beacon_int=0,
  86. basic_rates=None, chwidth=0):
  87. id = dev.add_network()
  88. dev.set_network(id, "mode", "5")
  89. dev.set_network_quoted(id, "ssid", "wpas-mesh-open")
  90. dev.set_network(id, "key_mgmt", "NONE")
  91. dev.set_network(id, "frequency", freq)
  92. if chwidth > 0:
  93. dev.set_network(id, "max_oper_chwidth", str(chwidth))
  94. if beacon_int:
  95. dev.set_network(id, "beacon_int", str(beacon_int))
  96. if basic_rates:
  97. dev.set_network(id, "mesh_basic_rates", basic_rates)
  98. if start:
  99. dev.mesh_group_add(id)
  100. return id
  101. def test_wpas_mesh_group_added(dev):
  102. """wpa_supplicant MESH group add"""
  103. check_mesh_support(dev[0])
  104. add_open_mesh_network(dev[0])
  105. # Check for MESH-GROUP-STARTED event
  106. check_mesh_group_added(dev[0])
  107. def test_wpas_mesh_group_remove(dev):
  108. """wpa_supplicant MESH group remove"""
  109. check_mesh_support(dev[0])
  110. add_open_mesh_network(dev[0])
  111. # Check for MESH-GROUP-STARTED event
  112. check_mesh_group_added(dev[0])
  113. dev[0].mesh_group_remove()
  114. # Check for MESH-GROUP-REMOVED event
  115. check_mesh_group_removed(dev[0])
  116. dev[0].mesh_group_remove()
  117. def test_wpas_mesh_peer_connected(dev):
  118. """wpa_supplicant MESH peer connected"""
  119. check_mesh_support(dev[0])
  120. add_open_mesh_network(dev[0], beacon_int=160)
  121. add_open_mesh_network(dev[1], beacon_int=160)
  122. # Check for mesh joined
  123. check_mesh_group_added(dev[0])
  124. check_mesh_group_added(dev[1])
  125. # Check for peer connected
  126. check_mesh_peer_connected(dev[0])
  127. check_mesh_peer_connected(dev[1])
  128. def test_wpas_mesh_peer_disconnected(dev):
  129. """wpa_supplicant MESH peer disconnected"""
  130. check_mesh_support(dev[0])
  131. add_open_mesh_network(dev[0])
  132. add_open_mesh_network(dev[1])
  133. # Check for mesh joined
  134. check_mesh_group_added(dev[0])
  135. check_mesh_group_added(dev[1])
  136. # Check for peer connected
  137. check_mesh_peer_connected(dev[0])
  138. check_mesh_peer_connected(dev[1])
  139. # Remove group on dev 1
  140. dev[1].mesh_group_remove()
  141. # Device 0 should get a disconnection event
  142. check_mesh_peer_disconnected(dev[0])
  143. def test_wpas_mesh_mode_scan(dev):
  144. """wpa_supplicant MESH scan support"""
  145. check_mesh_support(dev[0])
  146. add_open_mesh_network(dev[0])
  147. add_open_mesh_network(dev[1], beacon_int=175)
  148. # Check for mesh joined
  149. check_mesh_group_added(dev[0])
  150. check_mesh_group_added(dev[1])
  151. # Check for Mesh scan
  152. check_mesh_scan(dev[0], "use_id=1", beacon_int=175)
  153. def test_wpas_mesh_open(dev, apdev):
  154. """wpa_supplicant open MESH network connectivity"""
  155. check_mesh_support(dev[0])
  156. add_open_mesh_network(dev[0], freq="2462", basic_rates="60 120 240")
  157. add_open_mesh_network(dev[1], freq="2462", basic_rates="60 120 240")
  158. # Check for mesh joined
  159. check_mesh_group_added(dev[0])
  160. check_mesh_group_added(dev[1])
  161. # Check for peer connected
  162. check_mesh_peer_connected(dev[0])
  163. check_mesh_peer_connected(dev[1])
  164. # Test connectivity 0->1 and 1->0
  165. hwsim_utils.test_connectivity(dev[0], dev[1])
  166. def test_wpas_mesh_open_no_auto(dev, apdev):
  167. """wpa_supplicant open MESH network connectivity"""
  168. check_mesh_support(dev[0])
  169. id = add_open_mesh_network(dev[0], start=False)
  170. dev[0].set_network(id, "dot11MeshMaxRetries", "16")
  171. dev[0].set_network(id, "dot11MeshRetryTimeout", "255")
  172. dev[0].mesh_group_add(id)
  173. id = add_open_mesh_network(dev[1], start=False)
  174. dev[1].set_network(id, "no_auto_peer", "1")
  175. dev[1].mesh_group_add(id)
  176. # Check for mesh joined
  177. check_mesh_group_added(dev[0])
  178. check_mesh_group_added(dev[1])
  179. # Check for peer connected
  180. check_mesh_peer_connected(dev[0], timeout=30)
  181. check_mesh_peer_connected(dev[1])
  182. # Test connectivity 0->1 and 1->0
  183. hwsim_utils.test_connectivity(dev[0], dev[1])
  184. def add_mesh_secure_net(dev, psk=True):
  185. id = dev.add_network()
  186. dev.set_network(id, "mode", "5")
  187. dev.set_network_quoted(id, "ssid", "wpas-mesh-sec")
  188. dev.set_network(id, "key_mgmt", "SAE")
  189. dev.set_network(id, "frequency", "2412")
  190. if psk:
  191. dev.set_network_quoted(id, "psk", "thisismypassphrase!")
  192. return id
  193. def test_wpas_mesh_secure(dev, apdev):
  194. """wpa_supplicant secure MESH network connectivity"""
  195. check_mesh_support(dev[0], secure=True)
  196. dev[0].request("SET sae_groups ")
  197. id = add_mesh_secure_net(dev[0])
  198. dev[0].mesh_group_add(id)
  199. dev[1].request("SET sae_groups ")
  200. id = add_mesh_secure_net(dev[1])
  201. dev[1].mesh_group_add(id)
  202. # Check for mesh joined
  203. check_mesh_group_added(dev[0])
  204. check_mesh_group_added(dev[1])
  205. # Check for peer connected
  206. check_mesh_peer_connected(dev[0])
  207. check_mesh_peer_connected(dev[1])
  208. # Test connectivity 0->1 and 1->0
  209. hwsim_utils.test_connectivity(dev[0], dev[1])
  210. def test_wpas_mesh_secure_sae_group_mismatch(dev, apdev):
  211. """wpa_supplicant secure MESH and SAE group mismatch"""
  212. check_mesh_support(dev[0], secure=True)
  213. addr0 = dev[0].p2p_interface_addr()
  214. addr1 = dev[1].p2p_interface_addr()
  215. addr2 = dev[2].p2p_interface_addr()
  216. dev[0].request("SET sae_groups 19 25")
  217. id = add_mesh_secure_net(dev[0])
  218. dev[0].mesh_group_add(id)
  219. dev[1].request("SET sae_groups 19")
  220. id = add_mesh_secure_net(dev[1])
  221. dev[1].mesh_group_add(id)
  222. dev[2].request("SET sae_groups 26")
  223. id = add_mesh_secure_net(dev[2])
  224. dev[2].mesh_group_add(id)
  225. check_mesh_group_added(dev[0])
  226. check_mesh_group_added(dev[1])
  227. check_mesh_group_added(dev[2])
  228. ev = dev[0].wait_event(["MESH-PEER-CONNECTED"])
  229. if ev is None:
  230. raise Exception("Remote peer did not connect")
  231. if addr1 not in ev:
  232. raise Exception("Unexpected peer connected: " + ev)
  233. ev = dev[1].wait_event(["MESH-PEER-CONNECTED"])
  234. if ev is None:
  235. raise Exception("Remote peer did not connect")
  236. if addr0 not in ev:
  237. raise Exception("Unexpected peer connected: " + ev)
  238. ev = dev[2].wait_event(["MESH-PEER-CONNECTED"], timeout=1)
  239. if ev is not None:
  240. raise Exception("Unexpected peer connection at dev[2]: " + ev)
  241. ev = dev[0].wait_event(["MESH-PEER-CONNECTED"], timeout=0.1)
  242. if ev is not None:
  243. raise Exception("Unexpected peer connection: " + ev)
  244. ev = dev[1].wait_event(["MESH-PEER-CONNECTED"], timeout=0.1)
  245. if ev is not None:
  246. raise Exception("Unexpected peer connection: " + ev)
  247. dev[0].request("SET sae_groups ")
  248. dev[1].request("SET sae_groups ")
  249. dev[2].request("SET sae_groups ")
  250. def test_wpas_mesh_secure_sae_missing_password(dev, apdev):
  251. """wpa_supplicant secure MESH and missing SAE password"""
  252. check_mesh_support(dev[0], secure=True)
  253. id = add_mesh_secure_net(dev[0], psk=False)
  254. dev[0].set_network(id, "psk", "8f20b381f9b84371d61b5080ad85cac3c61ab3ca9525be5b2d0f4da3d979187a")
  255. dev[0].mesh_group_add(id)
  256. ev = dev[0].wait_event(["MESH-GROUP-STARTED", "Could not join mesh"],
  257. timeout=5)
  258. if ev is None:
  259. raise Exception("Timeout on mesh start event")
  260. if "MESH-GROUP-STARTED" in ev:
  261. raise Exception("Unexpected mesh group start")
  262. ev = dev[0].wait_event(["MESH-GROUP-STARTED"], timeout=0.1)
  263. if ev is not None:
  264. raise Exception("Unexpected mesh group start")
  265. def test_wpas_mesh_secure_no_auto(dev, apdev):
  266. """wpa_supplicant secure MESH network connectivity"""
  267. check_mesh_support(dev[0], secure=True)
  268. dev[0].request("SET sae_groups 19")
  269. id = add_mesh_secure_net(dev[0])
  270. dev[0].mesh_group_add(id)
  271. dev[1].request("SET sae_groups 19")
  272. id = add_mesh_secure_net(dev[1])
  273. dev[1].set_network(id, "no_auto_peer", "1")
  274. dev[1].mesh_group_add(id)
  275. # Check for mesh joined
  276. check_mesh_group_added(dev[0])
  277. check_mesh_group_added(dev[1])
  278. # Check for peer connected
  279. check_mesh_peer_connected(dev[0], timeout=30)
  280. check_mesh_peer_connected(dev[1])
  281. # Test connectivity 0->1 and 1->0
  282. hwsim_utils.test_connectivity(dev[0], dev[1])
  283. dev[0].request("SET sae_groups ")
  284. dev[1].request("SET sae_groups ")
  285. def test_wpas_mesh_secure_dropped_frame(dev, apdev):
  286. """Secure mesh network connectivity when the first plink Open is dropped"""
  287. check_mesh_support(dev[0], secure=True)
  288. dev[0].request("SET ext_mgmt_frame_handling 1")
  289. dev[0].request("SET sae_groups ")
  290. id = add_mesh_secure_net(dev[0])
  291. dev[0].mesh_group_add(id)
  292. dev[1].request("SET sae_groups ")
  293. id = add_mesh_secure_net(dev[1])
  294. dev[1].mesh_group_add(id)
  295. # Check for mesh joined
  296. check_mesh_group_added(dev[0])
  297. check_mesh_group_added(dev[1])
  298. # Drop the first Action frame (plink Open) to test unexpected order of
  299. # Confirm/Open messages.
  300. count = 0
  301. while True:
  302. count += 1
  303. if count > 10:
  304. raise Exception("Did not see Action frames")
  305. rx_msg = dev[0].mgmt_rx()
  306. if rx_msg is None:
  307. raise Exception("MGMT-RX timeout")
  308. if rx_msg['subtype'] == 13:
  309. logger.info("Drop the first Action frame")
  310. break
  311. 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'))):
  312. raise Exception("MGMT_RX_PROCESS failed")
  313. dev[0].request("SET ext_mgmt_frame_handling 0")
  314. # Check for peer connected
  315. check_mesh_peer_connected(dev[0])
  316. check_mesh_peer_connected(dev[1])
  317. # Test connectivity 0->1 and 1->0
  318. hwsim_utils.test_connectivity(dev[0], dev[1])
  319. def test_wpas_mesh_ctrl(dev):
  320. """wpa_supplicant ctrl_iface mesh command error cases"""
  321. check_mesh_support(dev[0])
  322. if "FAIL" not in dev[0].request("MESH_GROUP_ADD 123"):
  323. raise Exception("Unexpected MESH_GROUP_ADD success")
  324. id = dev[0].add_network()
  325. if "FAIL" not in dev[0].request("MESH_GROUP_ADD %d" % id):
  326. raise Exception("Unexpected MESH_GROUP_ADD success")
  327. dev[0].set_network(id, "mode", "5")
  328. dev[0].set_network(id, "key_mgmt", "WPA-PSK")
  329. if "FAIL" not in dev[0].request("MESH_GROUP_ADD %d" % id):
  330. raise Exception("Unexpected MESH_GROUP_ADD success")
  331. if "FAIL" not in dev[0].request("MESH_GROUP_REMOVE foo"):
  332. raise Exception("Unexpected MESH_GROUP_REMOVE success")
  333. def test_wpas_mesh_dynamic_interface(dev):
  334. """wpa_supplicant mesh with dynamic interface"""
  335. check_mesh_support(dev[0])
  336. mesh0 = None
  337. mesh1 = None
  338. try:
  339. mesh0 = dev[0].request("MESH_INTERFACE_ADD ifname=mesh0")
  340. if "FAIL" in mesh0:
  341. raise Exception("MESH_INTERFACE_ADD failed")
  342. mesh1 = dev[1].request("MESH_INTERFACE_ADD")
  343. if "FAIL" in mesh1:
  344. raise Exception("MESH_INTERFACE_ADD failed")
  345. wpas0 = WpaSupplicant(ifname=mesh0)
  346. wpas1 = WpaSupplicant(ifname=mesh1)
  347. logger.info(mesh0 + " address " + wpas0.get_status_field("address"))
  348. logger.info(mesh1 + " address " + wpas1.get_status_field("address"))
  349. add_open_mesh_network(wpas0)
  350. add_open_mesh_network(wpas1)
  351. check_mesh_group_added(wpas0)
  352. check_mesh_group_added(wpas1)
  353. check_mesh_peer_connected(wpas0)
  354. check_mesh_peer_connected(wpas1)
  355. hwsim_utils.test_connectivity(wpas0, wpas1)
  356. # Must not allow MESH_GROUP_REMOVE on dynamic interface
  357. if "FAIL" not in wpas0.request("MESH_GROUP_REMOVE " + mesh0):
  358. raise Exception("Invalid MESH_GROUP_REMOVE accepted")
  359. if "FAIL" not in wpas1.request("MESH_GROUP_REMOVE " + mesh1):
  360. raise Exception("Invalid MESH_GROUP_REMOVE accepted")
  361. # Must not allow MESH_GROUP_REMOVE on another radio interface
  362. if "FAIL" not in wpas0.request("MESH_GROUP_REMOVE " + mesh1):
  363. raise Exception("Invalid MESH_GROUP_REMOVE accepted")
  364. if "FAIL" not in wpas1.request("MESH_GROUP_REMOVE " + mesh0):
  365. raise Exception("Invalid MESH_GROUP_REMOVE accepted")
  366. wpas0.remove_ifname()
  367. wpas1.remove_ifname()
  368. if "OK" not in dev[0].request("MESH_GROUP_REMOVE " + mesh0):
  369. raise Exception("MESH_GROUP_REMOVE failed")
  370. if "OK" not in dev[1].request("MESH_GROUP_REMOVE " + mesh1):
  371. raise Exception("MESH_GROUP_REMOVE failed")
  372. if "FAIL" not in dev[0].request("MESH_GROUP_REMOVE " + mesh0):
  373. raise Exception("Invalid MESH_GROUP_REMOVE accepted")
  374. if "FAIL" not in dev[1].request("MESH_GROUP_REMOVE " + mesh1):
  375. raise Exception("Invalid MESH_GROUP_REMOVE accepted")
  376. logger.info("Make sure another dynamic group can be added")
  377. mesh0 = dev[0].request("MESH_INTERFACE_ADD ifname=mesh0")
  378. if "FAIL" in mesh0:
  379. raise Exception("MESH_INTERFACE_ADD failed")
  380. mesh1 = dev[1].request("MESH_INTERFACE_ADD")
  381. if "FAIL" in mesh1:
  382. raise Exception("MESH_INTERFACE_ADD failed")
  383. wpas0 = WpaSupplicant(ifname=mesh0)
  384. wpas1 = WpaSupplicant(ifname=mesh1)
  385. logger.info(mesh0 + " address " + wpas0.get_status_field("address"))
  386. logger.info(mesh1 + " address " + wpas1.get_status_field("address"))
  387. add_open_mesh_network(wpas0)
  388. add_open_mesh_network(wpas1)
  389. check_mesh_group_added(wpas0)
  390. check_mesh_group_added(wpas1)
  391. check_mesh_peer_connected(wpas0)
  392. check_mesh_peer_connected(wpas1)
  393. hwsim_utils.test_connectivity(wpas0, wpas1)
  394. finally:
  395. if mesh0:
  396. dev[0].request("MESH_GROUP_REMOVE " + mesh0)
  397. if mesh1:
  398. dev[1].request("MESH_GROUP_REMOVE " + mesh1)
  399. def test_wpas_mesh_max_peering(dev, apdev):
  400. """Mesh max peering limit"""
  401. check_mesh_support(dev[0])
  402. try:
  403. dev[0].request("SET max_peer_links 1")
  404. # first, connect dev[0] and dev[1]
  405. add_open_mesh_network(dev[0])
  406. add_open_mesh_network(dev[1])
  407. for i in range(2):
  408. ev = dev[i].wait_event(["MESH-PEER-CONNECTED"])
  409. if ev is None:
  410. raise Exception("dev%d did not connect with any peer" % i)
  411. # add dev[2] which will try to connect with both dev[0] and dev[1],
  412. # but can complete connection only with dev[1]
  413. add_open_mesh_network(dev[2])
  414. for i in range(1, 3):
  415. ev = dev[i].wait_event(["MESH-PEER-CONNECTED"])
  416. if ev is None:
  417. raise Exception("dev%d did not connect the second peer" % i)
  418. ev = dev[0].wait_event(["MESH-PEER-CONNECTED"], timeout=1)
  419. if ev is not None:
  420. raise Exception("dev0 connection beyond max peering limit")
  421. ev = dev[2].wait_event(["MESH-PEER-CONNECTED"], timeout=0.1)
  422. if ev is not None:
  423. raise Exception("dev2 reported unexpected peering: " + ev)
  424. for i in range(3):
  425. dev[i].mesh_group_remove()
  426. check_mesh_group_removed(dev[i])
  427. finally:
  428. dev[0].request("SET max_peer_links 99")
  429. def test_wpas_mesh_open_5ghz(dev, apdev):
  430. """wpa_supplicant open MESH network on 5 GHz band"""
  431. try:
  432. _test_wpas_mesh_open_5ghz(dev, apdev)
  433. finally:
  434. subprocess.call(['iw', 'reg', 'set', '00'])
  435. dev[0].flush_scan_cache()
  436. dev[1].flush_scan_cache()
  437. def _test_wpas_mesh_open_5ghz(dev, apdev):
  438. check_mesh_support(dev[0])
  439. subprocess.call(['iw', 'reg', 'set', 'US'])
  440. for i in range(2):
  441. for j in range(5):
  442. ev = dev[i].wait_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=5)
  443. if ev is None:
  444. raise Exception("No regdom change event")
  445. if "alpha2=US" in ev:
  446. break
  447. add_open_mesh_network(dev[i], freq="5180")
  448. # Check for mesh joined
  449. check_mesh_group_added(dev[0])
  450. check_mesh_group_added(dev[1])
  451. # Check for peer connected
  452. check_mesh_peer_connected(dev[0])
  453. check_mesh_peer_connected(dev[1])
  454. # Test connectivity 0->1 and 1->0
  455. hwsim_utils.test_connectivity(dev[0], dev[1])
  456. def test_wpas_mesh_open_vht_80p80(dev, apdev):
  457. """wpa_supplicant open MESH network on VHT 80+80 MHz channel"""
  458. try:
  459. _test_wpas_mesh_open_vht_80p80(dev, apdev)
  460. finally:
  461. subprocess.call(['iw', 'reg', 'set', '00'])
  462. dev[0].flush_scan_cache()
  463. dev[1].flush_scan_cache()
  464. def _test_wpas_mesh_open_vht_80p80(dev, apdev):
  465. check_mesh_support(dev[0])
  466. subprocess.call(['iw', 'reg', 'set', 'US'])
  467. for i in range(2):
  468. for j in range(5):
  469. ev = dev[i].wait_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=5)
  470. if ev is None:
  471. raise Exception("No regdom change event")
  472. if "alpha2=US" in ev:
  473. break
  474. add_open_mesh_network(dev[i], freq="5180", chwidth=3)
  475. # Check for mesh joined
  476. check_mesh_group_added(dev[0])
  477. check_mesh_group_added(dev[1])
  478. # Check for peer connected
  479. check_mesh_peer_connected(dev[0])
  480. check_mesh_peer_connected(dev[1])
  481. # Test connectivity 0->1 and 1->0
  482. hwsim_utils.test_connectivity(dev[0], dev[1])
  483. sig = dev[0].request("SIGNAL_POLL").splitlines()
  484. if "WIDTH=80+80 MHz" not in sig:
  485. raise Exception("Unexpected SIGNAL_POLL value(2): " + str(sig))
  486. if "CENTER_FRQ1=5210" not in sig:
  487. raise Exception("Unexpected SIGNAL_POLL value(3): " + str(sig))
  488. if "CENTER_FRQ2=5775" not in sig:
  489. raise Exception("Unexpected SIGNAL_POLL value(4): " + str(sig))
  490. sig = dev[1].request("SIGNAL_POLL").splitlines()
  491. if "WIDTH=80+80 MHz" not in sig:
  492. raise Exception("Unexpected SIGNAL_POLL value(2b): " + str(sig))
  493. if "CENTER_FRQ1=5210" not in sig:
  494. raise Exception("Unexpected SIGNAL_POLL value(3b): " + str(sig))
  495. if "CENTER_FRQ2=5775" not in sig:
  496. raise Exception("Unexpected SIGNAL_POLL value(4b): " + str(sig))
  497. def test_wpas_mesh_password_mismatch(dev, apdev):
  498. """Mesh network and one device with mismatching password"""
  499. check_mesh_support(dev[0], secure=True)
  500. dev[0].request("SET sae_groups ")
  501. id = add_mesh_secure_net(dev[0])
  502. dev[0].mesh_group_add(id)
  503. dev[1].request("SET sae_groups ")
  504. id = add_mesh_secure_net(dev[1])
  505. dev[1].mesh_group_add(id)
  506. dev[2].request("SET sae_groups ")
  507. id = add_mesh_secure_net(dev[2])
  508. dev[2].set_network_quoted(id, "psk", "wrong password")
  509. dev[2].mesh_group_add(id)
  510. # The two peers with matching password need to be able to connect
  511. check_mesh_group_added(dev[0])
  512. check_mesh_group_added(dev[1])
  513. check_mesh_peer_connected(dev[0])
  514. check_mesh_peer_connected(dev[1])
  515. ev = dev[2].wait_event(["MESH-SAE-AUTH-FAILURE"], timeout=20)
  516. if ev is None:
  517. raise Exception("dev2 did not report auth failure (1)")
  518. ev = dev[2].wait_event(["MESH-SAE-AUTH-FAILURE"], timeout=20)
  519. if ev is None:
  520. raise Exception("dev2 did not report auth failure (2)")
  521. count = 0
  522. ev = dev[0].wait_event(["MESH-SAE-AUTH-FAILURE"], timeout=1)
  523. if ev is None:
  524. logger.info("dev0 did not report auth failure")
  525. else:
  526. if "addr=" + dev[2].own_addr() not in ev:
  527. raise Exception("Unexpected peer address in dev0 event: " + ev)
  528. count += 1
  529. ev = dev[1].wait_event(["MESH-SAE-AUTH-FAILURE"], timeout=1)
  530. if ev is None:
  531. logger.info("dev1 did not report auth failure")
  532. else:
  533. if "addr=" + dev[2].own_addr() not in ev:
  534. raise Exception("Unexpected peer address in dev1 event: " + ev)
  535. count += 1
  536. hwsim_utils.test_connectivity(dev[0], dev[1])
  537. for i in range(2):
  538. try:
  539. hwsim_utils.test_connectivity(dev[i], dev[2], timeout=1)
  540. raise Exception("Data connectivity test passed unexpectedly")
  541. except Exception, e:
  542. if "data delivery failed" not in str(e):
  543. raise
  544. if count == 0:
  545. raise Exception("Neither dev0 nor dev1 reported auth failure")
  546. def test_wpas_mesh_password_mismatch_retry(dev, apdev, params):
  547. """Mesh password mismatch and retry [long]"""
  548. if not params['long']:
  549. raise HwsimSkip("Skip test case with long duration due to --long not specified")
  550. check_mesh_support(dev[0], secure=True)
  551. dev[0].request("SET sae_groups ")
  552. id = add_mesh_secure_net(dev[0])
  553. dev[0].mesh_group_add(id)
  554. dev[1].request("SET sae_groups ")
  555. id = add_mesh_secure_net(dev[1])
  556. dev[1].set_network_quoted(id, "psk", "wrong password")
  557. dev[1].mesh_group_add(id)
  558. # Check for mesh joined
  559. check_mesh_group_added(dev[0])
  560. check_mesh_group_added(dev[1])
  561. for i in range(4):
  562. ev = dev[0].wait_event(["MESH-SAE-AUTH-FAILURE"], timeout=20)
  563. if ev is None:
  564. raise Exception("dev0 did not report auth failure (%d)" % i)
  565. ev = dev[1].wait_event(["MESH-SAE-AUTH-FAILURE"], timeout=20)
  566. if ev is None:
  567. raise Exception("dev1 did not report auth failure (%d)" % i)
  568. ev = dev[0].wait_event(["MESH-SAE-AUTH-BLOCKED"], timeout=10)
  569. if ev is None:
  570. raise Exception("dev0 did not report auth blocked")
  571. ev = dev[1].wait_event(["MESH-SAE-AUTH-BLOCKED"], timeout=10)
  572. if ev is None:
  573. raise Exception("dev1 did not report auth blocked")
  574. def test_mesh_wpa_auth_init_oom(dev, apdev):
  575. """Secure mesh network setup failing due to wpa_init() OOM"""
  576. check_mesh_support(dev[0], secure=True)
  577. dev[0].request("SET sae_groups ")
  578. with alloc_fail(dev[0], 1, "wpa_init"):
  579. id = add_mesh_secure_net(dev[0])
  580. dev[0].mesh_group_add(id)
  581. ev = dev[0].wait_event(["MESH-GROUP-STARTED"], timeout=0.2)
  582. if ev is not None:
  583. raise Exception("Unexpected mesh group start during OOM")
  584. def test_wpas_mesh_reconnect(dev, apdev):
  585. """Secure mesh network plink counting during reconnection"""
  586. check_mesh_support(dev[0])
  587. try:
  588. _test_wpas_mesh_reconnect(dev)
  589. finally:
  590. dev[0].request("SET max_peer_links 99")
  591. def _test_wpas_mesh_reconnect(dev):
  592. dev[0].request("SET max_peer_links 2")
  593. dev[0].request("SET sae_groups ")
  594. id = add_mesh_secure_net(dev[0])
  595. dev[0].set_network(id, "beacon_int", "100")
  596. dev[0].mesh_group_add(id)
  597. dev[1].request("SET sae_groups ")
  598. id = add_mesh_secure_net(dev[1])
  599. dev[1].mesh_group_add(id)
  600. check_mesh_group_added(dev[0])
  601. check_mesh_group_added(dev[1])
  602. check_mesh_peer_connected(dev[0])
  603. check_mesh_peer_connected(dev[1])
  604. for i in range(3):
  605. # Drop incoming management frames to avoid handling link close
  606. dev[0].request("SET ext_mgmt_frame_handling 1")
  607. dev[1].mesh_group_remove()
  608. check_mesh_group_removed(dev[1])
  609. dev[1].request("FLUSH")
  610. dev[0].request("SET ext_mgmt_frame_handling 0")
  611. id = add_mesh_secure_net(dev[1])
  612. dev[1].mesh_group_add(id)
  613. check_mesh_group_added(dev[1])
  614. check_mesh_peer_connected(dev[1])
  615. dev[0].dump_monitor()
  616. dev[1].dump_monitor()
  617. def test_wpas_mesh_gate_forwarding(dev, apdev, p):
  618. """Mesh forwards traffic to unknown sta to mesh gates"""
  619. addr0 = dev[0].own_addr()
  620. addr1 = dev[1].own_addr()
  621. addr2 = dev[2].own_addr()
  622. external_sta = '02:11:22:33:44:55'
  623. # start 3 node connected mesh
  624. check_mesh_support(dev[0])
  625. for i in range(3):
  626. add_open_mesh_network(dev[i])
  627. check_mesh_group_added(dev[i])
  628. for i in range(3):
  629. check_mesh_peer_connected(dev[i])
  630. hwsim_utils.test_connectivity(dev[0], dev[1])
  631. hwsim_utils.test_connectivity(dev[1], dev[2])
  632. hwsim_utils.test_connectivity(dev[0], dev[2])
  633. # dev0 and dev1 are mesh gates
  634. subprocess.call(['iw', 'dev', dev[0].ifname, 'set', 'mesh_param',
  635. 'mesh_gate_announcements=1'])
  636. subprocess.call(['iw', 'dev', dev[1].ifname, 'set', 'mesh_param',
  637. 'mesh_gate_announcements=1'])
  638. # wait for gate announcement frames
  639. time.sleep(1)
  640. # data frame from dev2 -> external sta should be sent to both gates
  641. dev[2].request("DATA_TEST_CONFIG 1")
  642. dev[2].request("DATA_TEST_TX {} {} 0".format(external_sta, addr2))
  643. dev[2].request("DATA_TEST_CONFIG 0")
  644. capfile = os.path.join(p['logdir'], "hwsim0.pcapng")
  645. filt = "wlan.sa==%s && wlan_mgt.fixed.mesh_addr5==%s" % (addr2,
  646. external_sta)
  647. for i in range(15):
  648. da = run_tshark(capfile, filt, [ "wlan.da" ])
  649. if addr0 in da and addr1 in da:
  650. logger.debug("Frames seen in tshark iteration %d" % i)
  651. break
  652. time.sleep(0.3)
  653. if addr0 not in da:
  654. raise Exception("Frame to gate %s not observed" % addr0)
  655. if addr1 not in da:
  656. raise Exception("Frame to gate %s not observed" % addr1)
  657. def test_wpas_mesh_pmksa_caching(dev, apdev):
  658. """Secure mesh network and PMKSA caching"""
  659. check_mesh_support(dev[0], secure=True)
  660. dev[0].request("SET sae_groups ")
  661. id = add_mesh_secure_net(dev[0])
  662. dev[0].mesh_group_add(id)
  663. dev[1].request("SET sae_groups ")
  664. id = add_mesh_secure_net(dev[1])
  665. dev[1].mesh_group_add(id)
  666. # Check for mesh joined
  667. check_mesh_group_added(dev[0])
  668. check_mesh_group_added(dev[1])
  669. # Check for peer connected
  670. check_mesh_peer_connected(dev[0])
  671. check_mesh_peer_connected(dev[1])
  672. addr0 = dev[0].own_addr()
  673. addr1 = dev[1].own_addr()
  674. pmksa0 = dev[0].get_pmksa(addr1)
  675. pmksa1 = dev[1].get_pmksa(addr0)
  676. if pmksa0 is None or pmksa1 is None:
  677. raise Exception("No PMKSA cache entry created")
  678. if pmksa0['pmkid'] != pmksa1['pmkid']:
  679. raise Exception("PMKID mismatch in PMKSA cache entries")
  680. if "OK" not in dev[0].request("MESH_PEER_REMOVE " + addr1):
  681. raise Exception("Failed to remove peer")
  682. pmksa0b = dev[0].get_pmksa(addr1)
  683. if pmksa0b is None:
  684. raise Exception("PMKSA cache entry not maintained")
  685. time.sleep(0.1)
  686. if "FAIL" not in dev[0].request("MESH_PEER_ADD " + addr1):
  687. raise Exception("MESH_PEER_ADD unexpectedly succeeded in no_auto_peer=0 case")
  688. def test_wpas_mesh_pmksa_caching2(dev, apdev):
  689. """Secure mesh network and PMKSA caching with no_auto_peer=1"""
  690. check_mesh_support(dev[0], secure=True)
  691. addr0 = dev[0].own_addr()
  692. addr1 = dev[1].own_addr()
  693. dev[0].request("SET sae_groups ")
  694. id = add_mesh_secure_net(dev[0])
  695. dev[0].set_network(id, "no_auto_peer", "1")
  696. dev[0].mesh_group_add(id)
  697. dev[1].request("SET sae_groups ")
  698. id = add_mesh_secure_net(dev[1])
  699. dev[1].set_network(id, "no_auto_peer", "1")
  700. dev[1].mesh_group_add(id)
  701. # Check for mesh joined
  702. check_mesh_group_added(dev[0])
  703. check_mesh_group_added(dev[1])
  704. # Check for peer connected
  705. ev = dev[0].wait_event(["will not initiate new peer link"], timeout=10)
  706. if ev is None:
  707. raise Exception("Missing no-initiate message")
  708. if "OK" not in dev[0].request("MESH_PEER_ADD " + addr1):
  709. raise Exception("MESH_PEER_ADD failed")
  710. check_mesh_peer_connected(dev[0])
  711. check_mesh_peer_connected(dev[1])
  712. pmksa0 = dev[0].get_pmksa(addr1)
  713. pmksa1 = dev[1].get_pmksa(addr0)
  714. if pmksa0 is None or pmksa1 is None:
  715. raise Exception("No PMKSA cache entry created")
  716. if pmksa0['pmkid'] != pmksa1['pmkid']:
  717. raise Exception("PMKID mismatch in PMKSA cache entries")
  718. if "OK" not in dev[0].request("MESH_PEER_REMOVE " + addr1):
  719. raise Exception("Failed to remove peer")
  720. pmksa0b = dev[0].get_pmksa(addr1)
  721. if pmksa0b is None:
  722. raise Exception("PMKSA cache entry not maintained")
  723. ev = dev[0].wait_event(["will not initiate new peer link"], timeout=10)
  724. if ev is None:
  725. raise Exception("Missing no-initiate message (2)")
  726. if "OK" not in dev[0].request("MESH_PEER_ADD " + addr1):
  727. raise Exception("MESH_PEER_ADD failed (2)")
  728. check_mesh_peer_connected(dev[0])
  729. check_mesh_peer_connected(dev[1])
  730. pmksa0c = dev[0].get_pmksa(addr1)
  731. pmksa1c = dev[1].get_pmksa(addr0)
  732. if pmksa0c is None or pmksa1c is None:
  733. raise Exception("No PMKSA cache entry created (2)")
  734. if pmksa0c['pmkid'] != pmksa1c['pmkid']:
  735. raise Exception("PMKID mismatch in PMKSA cache entries")
  736. if pmksa0['pmkid'] != pmksa0c['pmkid']:
  737. raise Exception("PMKID changed")
  738. hwsim_utils.test_connectivity(dev[0], dev[1])
  739. def test_wpas_mesh_pmksa_caching_no_match(dev, apdev):
  740. """Secure mesh network and PMKSA caching with no PMKID match"""
  741. check_mesh_support(dev[0], secure=True)
  742. addr0 = dev[0].own_addr()
  743. addr1 = dev[1].own_addr()
  744. dev[0].request("SET sae_groups ")
  745. id = add_mesh_secure_net(dev[0])
  746. dev[0].set_network(id, "no_auto_peer", "1")
  747. dev[0].mesh_group_add(id)
  748. dev[1].request("SET sae_groups ")
  749. id = add_mesh_secure_net(dev[1])
  750. dev[1].set_network(id, "no_auto_peer", "1")
  751. dev[1].mesh_group_add(id)
  752. # Check for mesh joined
  753. check_mesh_group_added(dev[0])
  754. check_mesh_group_added(dev[1])
  755. # Check for peer connected
  756. ev = dev[0].wait_event(["will not initiate new peer link"], timeout=10)
  757. if ev is None:
  758. raise Exception("Missing no-initiate message")
  759. if "OK" not in dev[0].request("MESH_PEER_ADD " + addr1):
  760. raise Exception("MESH_PEER_ADD failed")
  761. check_mesh_peer_connected(dev[0])
  762. check_mesh_peer_connected(dev[1])
  763. pmksa0 = dev[0].get_pmksa(addr1)
  764. pmksa1 = dev[1].get_pmksa(addr0)
  765. if pmksa0 is None or pmksa1 is None:
  766. raise Exception("No PMKSA cache entry created")
  767. if pmksa0['pmkid'] != pmksa1['pmkid']:
  768. raise Exception("PMKID mismatch in PMKSA cache entries")
  769. if "OK" not in dev[0].request("MESH_PEER_REMOVE " + addr1):
  770. raise Exception("Failed to remove peer")
  771. if "OK" not in dev[1].request("PMKSA_FLUSH"):
  772. raise Exception("Failed to flush PMKSA cache")
  773. ev = dev[0].wait_event(["will not initiate new peer link"], timeout=10)
  774. if ev is None:
  775. raise Exception("Missing no-initiate message (2)")
  776. if "OK" not in dev[0].request("MESH_PEER_ADD " + addr1):
  777. raise Exception("MESH_PEER_ADD failed (2)")
  778. check_mesh_peer_connected(dev[0])
  779. check_mesh_peer_connected(dev[1])
  780. pmksa0c = dev[0].get_pmksa(addr1)
  781. pmksa1c = dev[1].get_pmksa(addr0)
  782. if pmksa0c is None or pmksa1c is None:
  783. raise Exception("No PMKSA cache entry created (2)")
  784. if pmksa0c['pmkid'] != pmksa1c['pmkid']:
  785. raise Exception("PMKID mismatch in PMKSA cache entries")
  786. if pmksa0['pmkid'] == pmksa0c['pmkid']:
  787. raise Exception("PMKID did not change")
  788. hwsim_utils.test_connectivity(dev[0], dev[1])
  789. def test_mesh_oom(dev, apdev):
  790. """Mesh network setup failing due to OOM"""
  791. check_mesh_support(dev[0], secure=True)
  792. dev[0].request("SET sae_groups ")
  793. with alloc_fail(dev[0], 1, "mesh_config_create"):
  794. add_open_mesh_network(dev[0])
  795. ev = dev[0].wait_event(["Failed to init mesh"])
  796. if ev is None:
  797. raise Exception("Init failure not reported")
  798. for i in range(1, 65):
  799. with alloc_fail(dev[0], i, "wpa_supplicant_mesh_init"):
  800. add_open_mesh_network(dev[0])
  801. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  802. ev = dev[0].wait_event(["Failed to init mesh",
  803. "MESH-GROUP-STARTED"])
  804. if ev is None:
  805. raise Exception("Init failure not reported")
  806. def test_mesh_add_interface_oom(dev):
  807. """wpa_supplicant mesh with dynamic interface addition failing"""
  808. check_mesh_support(dev[0])
  809. for i in range(1, 3):
  810. mesh = None
  811. try:
  812. with alloc_fail(dev[0], i, "wpas_mesh_add_interface"):
  813. mesh = dev[0].request("MESH_INTERFACE_ADD").strip()
  814. finally:
  815. if mesh and mesh != "FAIL":
  816. dev[0].request("MESH_GROUP_REMOVE " + mesh)