test_sae.py 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078
  1. # Test cases for SAE
  2. # Copyright (c) 2013-2016, Jouni Malinen <j@w1.fi>
  3. #
  4. # This software may be distributed under the terms of the BSD license.
  5. # See README for more details.
  6. from remotehost import remote_compatible
  7. import binascii
  8. import os
  9. import time
  10. import logging
  11. logger = logging.getLogger()
  12. import hwsim_utils
  13. import hostapd
  14. from utils import HwsimSkip, alloc_fail, fail_test, wait_fail_trigger
  15. from test_ap_psk import find_wpas_process, read_process_memory, verify_not_present, get_key_locations
  16. @remote_compatible
  17. def test_sae(dev, apdev):
  18. """SAE with default group"""
  19. if "SAE" not in dev[0].get_capability("auth_alg"):
  20. raise HwsimSkip("SAE not supported")
  21. params = hostapd.wpa2_params(ssid="test-sae",
  22. passphrase="12345678")
  23. params['wpa_key_mgmt'] = 'SAE'
  24. hapd = hostapd.add_ap(apdev[0], params)
  25. key_mgmt = hapd.get_config()['key_mgmt']
  26. if key_mgmt.split(' ')[0] != "SAE":
  27. raise Exception("Unexpected GET_CONFIG(key_mgmt): " + key_mgmt)
  28. dev[0].request("SET sae_groups ")
  29. id = dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  30. scan_freq="2412")
  31. if dev[0].get_status_field('sae_group') != '19':
  32. raise Exception("Expected default SAE group not used")
  33. bss = dev[0].get_bss(apdev[0]['bssid'])
  34. if 'flags' not in bss:
  35. raise Exception("Could not get BSS flags from BSS table")
  36. if "[WPA2-SAE-CCMP]" not in bss['flags']:
  37. raise Exception("Unexpected BSS flags: " + bss['flags'])
  38. res = hapd.request("STA-FIRST")
  39. if "sae_group=19" not in res.splitlines():
  40. raise Exception("hostapd STA output did not specify SAE group")
  41. @remote_compatible
  42. def test_sae_password_ecc(dev, apdev):
  43. """SAE with number of different passwords (ECC)"""
  44. if "SAE" not in dev[0].get_capability("auth_alg"):
  45. raise HwsimSkip("SAE not supported")
  46. params = hostapd.wpa2_params(ssid="test-sae",
  47. passphrase="12345678")
  48. params['wpa_key_mgmt'] = 'SAE'
  49. hapd = hostapd.add_ap(apdev[0], params)
  50. dev[0].request("SET sae_groups 19")
  51. for i in range(10):
  52. password = "12345678-" + str(i)
  53. hapd.set("wpa_passphrase", password)
  54. dev[0].connect("test-sae", psk=password, key_mgmt="SAE",
  55. scan_freq="2412")
  56. dev[0].request("REMOVE_NETWORK all")
  57. dev[0].wait_disconnected()
  58. @remote_compatible
  59. def test_sae_password_ffc(dev, apdev):
  60. """SAE with number of different passwords (FFC)"""
  61. if "SAE" not in dev[0].get_capability("auth_alg"):
  62. raise HwsimSkip("SAE not supported")
  63. params = hostapd.wpa2_params(ssid="test-sae",
  64. passphrase="12345678")
  65. params['wpa_key_mgmt'] = 'SAE'
  66. params['sae_groups'] = '22'
  67. hapd = hostapd.add_ap(apdev[0], params)
  68. dev[0].request("SET sae_groups 22")
  69. for i in range(10):
  70. password = "12345678-" + str(i)
  71. hapd.set("wpa_passphrase", password)
  72. dev[0].connect("test-sae", psk=password, key_mgmt="SAE",
  73. scan_freq="2412")
  74. dev[0].request("REMOVE_NETWORK all")
  75. dev[0].wait_disconnected()
  76. @remote_compatible
  77. def test_sae_pmksa_caching(dev, apdev):
  78. """SAE and PMKSA caching"""
  79. if "SAE" not in dev[0].get_capability("auth_alg"):
  80. raise HwsimSkip("SAE not supported")
  81. params = hostapd.wpa2_params(ssid="test-sae",
  82. passphrase="12345678")
  83. params['wpa_key_mgmt'] = 'SAE'
  84. hapd = hostapd.add_ap(apdev[0], params)
  85. dev[0].request("SET sae_groups ")
  86. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  87. scan_freq="2412")
  88. ev = hapd.wait_event([ "AP-STA-CONNECTED" ], timeout=5)
  89. if ev is None:
  90. raise Exception("No connection event received from hostapd")
  91. dev[0].request("DISCONNECT")
  92. dev[0].wait_disconnected()
  93. dev[0].request("RECONNECT")
  94. dev[0].wait_connected(timeout=15, error="Reconnect timed out")
  95. if dev[0].get_status_field('sae_group') is not None:
  96. raise Exception("SAE group claimed to have been used")
  97. @remote_compatible
  98. def test_sae_pmksa_caching_disabled(dev, apdev):
  99. """SAE and PMKSA caching disabled"""
  100. if "SAE" not in dev[0].get_capability("auth_alg"):
  101. raise HwsimSkip("SAE not supported")
  102. params = hostapd.wpa2_params(ssid="test-sae",
  103. passphrase="12345678")
  104. params['wpa_key_mgmt'] = 'SAE'
  105. params['disable_pmksa_caching'] = '1'
  106. hapd = hostapd.add_ap(apdev[0], params)
  107. dev[0].request("SET sae_groups ")
  108. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  109. scan_freq="2412")
  110. ev = hapd.wait_event([ "AP-STA-CONNECTED" ], timeout=5)
  111. if ev is None:
  112. raise Exception("No connection event received from hostapd")
  113. dev[0].request("DISCONNECT")
  114. dev[0].wait_disconnected()
  115. dev[0].request("RECONNECT")
  116. dev[0].wait_connected(timeout=15, error="Reconnect timed out")
  117. if dev[0].get_status_field('sae_group') != '19':
  118. raise Exception("Expected default SAE group not used")
  119. def test_sae_groups(dev, apdev):
  120. """SAE with all supported groups"""
  121. if "SAE" not in dev[0].get_capability("auth_alg"):
  122. raise HwsimSkip("SAE not supported")
  123. # This is the full list of supported groups, but groups 14-16 (2048-4096 bit
  124. # MODP) and group 21 (521-bit random ECP group) are a bit too slow on some
  125. # VMs and can result in hitting the mac80211 authentication timeout, so
  126. # allow them to fail and just report such failures in the debug log.
  127. sae_groups = [ 19, 25, 26, 20, 21, 2, 5, 14, 15, 16, 22, 23, 24 ]
  128. tls = dev[0].request("GET tls_library")
  129. if tls.startswith("OpenSSL") and "build=OpenSSL 1.0.2" in tls and "run=OpenSSL 1.0.2" in tls:
  130. logger.info("Add Brainpool EC groups since OpenSSL is new enough")
  131. sae_groups += [ 27, 28, 29, 30 ]
  132. heavy_groups = [ 14, 15, 16 ]
  133. groups = [str(g) for g in sae_groups]
  134. params = hostapd.wpa2_params(ssid="test-sae-groups",
  135. passphrase="12345678")
  136. params['wpa_key_mgmt'] = 'SAE'
  137. params['sae_groups'] = ' '.join(groups)
  138. hostapd.add_ap(apdev[0], params)
  139. for g in groups:
  140. logger.info("Testing SAE group " + g)
  141. dev[0].request("SET sae_groups " + g)
  142. id = dev[0].connect("test-sae-groups", psk="12345678", key_mgmt="SAE",
  143. scan_freq="2412", wait_connect=False)
  144. if int(g) in heavy_groups:
  145. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=5)
  146. if ev is None:
  147. logger.info("No connection with heavy SAE group %s did not connect - likely hitting timeout in mac80211" % g)
  148. dev[0].remove_network(id)
  149. time.sleep(0.1)
  150. dev[0].dump_monitor()
  151. continue
  152. logger.info("Connection with heavy SAE group " + g)
  153. else:
  154. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=10)
  155. if ev is None:
  156. if "BoringSSL" in tls and int(g) in [ 25 ]:
  157. logger.info("Ignore connection failure with group " + g + " with BoringSSL")
  158. dev[0].remove_network(id)
  159. dev[0].dump_monitor()
  160. continue
  161. raise Exception("Connection timed out with group " + g)
  162. if dev[0].get_status_field('sae_group') != g:
  163. raise Exception("Expected SAE group not used")
  164. dev[0].remove_network(id)
  165. dev[0].wait_disconnected()
  166. dev[0].dump_monitor()
  167. @remote_compatible
  168. def test_sae_group_nego(dev, apdev):
  169. """SAE group negotiation"""
  170. if "SAE" not in dev[0].get_capability("auth_alg"):
  171. raise HwsimSkip("SAE not supported")
  172. params = hostapd.wpa2_params(ssid="test-sae-group-nego",
  173. passphrase="12345678")
  174. params['wpa_key_mgmt'] = 'SAE'
  175. params['sae_groups'] = '19'
  176. hostapd.add_ap(apdev[0], params)
  177. dev[0].request("SET sae_groups 25 26 20 19")
  178. dev[0].connect("test-sae-group-nego", psk="12345678", key_mgmt="SAE",
  179. scan_freq="2412")
  180. if dev[0].get_status_field('sae_group') != '19':
  181. raise Exception("Expected SAE group not used")
  182. @remote_compatible
  183. def test_sae_anti_clogging(dev, apdev):
  184. """SAE anti clogging"""
  185. if "SAE" not in dev[0].get_capability("auth_alg"):
  186. raise HwsimSkip("SAE not supported")
  187. params = hostapd.wpa2_params(ssid="test-sae", passphrase="12345678")
  188. params['wpa_key_mgmt'] = 'SAE'
  189. params['sae_anti_clogging_threshold'] = '1'
  190. hostapd.add_ap(apdev[0], params)
  191. dev[0].request("SET sae_groups ")
  192. dev[1].request("SET sae_groups ")
  193. id = {}
  194. for i in range(0, 2):
  195. dev[i].scan(freq="2412")
  196. id[i] = dev[i].connect("test-sae", psk="12345678", key_mgmt="SAE",
  197. scan_freq="2412", only_add_network=True)
  198. for i in range(0, 2):
  199. dev[i].select_network(id[i])
  200. for i in range(0, 2):
  201. dev[i].wait_connected(timeout=10)
  202. def test_sae_forced_anti_clogging(dev, apdev):
  203. """SAE anti clogging (forced)"""
  204. if "SAE" not in dev[0].get_capability("auth_alg"):
  205. raise HwsimSkip("SAE not supported")
  206. params = hostapd.wpa2_params(ssid="test-sae", passphrase="12345678")
  207. params['wpa_key_mgmt'] = 'SAE WPA-PSK'
  208. params['sae_anti_clogging_threshold'] = '0'
  209. hostapd.add_ap(apdev[0], params)
  210. dev[2].connect("test-sae", psk="12345678", scan_freq="2412")
  211. for i in range(0, 2):
  212. dev[i].request("SET sae_groups ")
  213. dev[i].connect("test-sae", psk="12345678", key_mgmt="SAE",
  214. scan_freq="2412")
  215. def test_sae_mixed(dev, apdev):
  216. """Mixed SAE and non-SAE network"""
  217. if "SAE" not in dev[0].get_capability("auth_alg"):
  218. raise HwsimSkip("SAE not supported")
  219. params = hostapd.wpa2_params(ssid="test-sae", passphrase="12345678")
  220. params['wpa_key_mgmt'] = 'SAE WPA-PSK'
  221. params['sae_anti_clogging_threshold'] = '0'
  222. hostapd.add_ap(apdev[0], params)
  223. dev[2].connect("test-sae", psk="12345678", scan_freq="2412")
  224. for i in range(0, 2):
  225. dev[i].request("SET sae_groups ")
  226. dev[i].connect("test-sae", psk="12345678", key_mgmt="SAE",
  227. scan_freq="2412")
  228. @remote_compatible
  229. def test_sae_missing_password(dev, apdev):
  230. """SAE and missing password"""
  231. if "SAE" not in dev[0].get_capability("auth_alg"):
  232. raise HwsimSkip("SAE not supported")
  233. params = hostapd.wpa2_params(ssid="test-sae",
  234. passphrase="12345678")
  235. params['wpa_key_mgmt'] = 'SAE'
  236. hapd = hostapd.add_ap(apdev[0], params)
  237. dev[0].request("SET sae_groups ")
  238. id = dev[0].connect("test-sae",
  239. raw_psk="46b4a73b8a951ad53ebd2e0afdb9c5483257edd4c21d12b7710759da70945858",
  240. key_mgmt="SAE", scan_freq="2412", wait_connect=False)
  241. ev = dev[0].wait_event(['CTRL-EVENT-SSID-TEMP-DISABLED'], timeout=10)
  242. if ev is None:
  243. raise Exception("Invalid network not temporarily disabled")
  244. def test_sae_key_lifetime_in_memory(dev, apdev, params):
  245. """SAE and key lifetime in memory"""
  246. if "SAE" not in dev[0].get_capability("auth_alg"):
  247. raise HwsimSkip("SAE not supported")
  248. password = "5ad144a7c1f5a5503baa6fa01dabc15b1843e8c01662d78d16b70b5cd23cf8b"
  249. p = hostapd.wpa2_params(ssid="test-sae", passphrase=password)
  250. p['wpa_key_mgmt'] = 'SAE'
  251. hapd = hostapd.add_ap(apdev[0], p)
  252. pid = find_wpas_process(dev[0])
  253. dev[0].request("SET sae_groups ")
  254. id = dev[0].connect("test-sae", psk=password, key_mgmt="SAE",
  255. scan_freq="2412")
  256. # The decrypted copy of GTK is freed only after the CTRL-EVENT-CONNECTED
  257. # event has been delivered, so verify that wpa_supplicant has returned to
  258. # eloop before reading process memory.
  259. time.sleep(1)
  260. dev[0].ping()
  261. buf = read_process_memory(pid, password)
  262. dev[0].request("DISCONNECT")
  263. dev[0].wait_disconnected()
  264. dev[0].relog()
  265. sae_k = None
  266. sae_keyseed = None
  267. sae_kck = None
  268. pmk = None
  269. ptk = None
  270. gtk = None
  271. with open(os.path.join(params['logdir'], 'log0'), 'r') as f:
  272. for l in f.readlines():
  273. if "SAE: k - hexdump" in l:
  274. val = l.strip().split(':')[3].replace(' ', '')
  275. sae_k = binascii.unhexlify(val)
  276. if "SAE: keyseed - hexdump" in l:
  277. val = l.strip().split(':')[3].replace(' ', '')
  278. sae_keyseed = binascii.unhexlify(val)
  279. if "SAE: KCK - hexdump" in l:
  280. val = l.strip().split(':')[3].replace(' ', '')
  281. sae_kck = binascii.unhexlify(val)
  282. if "SAE: PMK - hexdump" in l:
  283. val = l.strip().split(':')[3].replace(' ', '')
  284. pmk = binascii.unhexlify(val)
  285. if "WPA: PTK - hexdump" in l:
  286. val = l.strip().split(':')[3].replace(' ', '')
  287. ptk = binascii.unhexlify(val)
  288. if "WPA: Group Key - hexdump" in l:
  289. val = l.strip().split(':')[3].replace(' ', '')
  290. gtk = binascii.unhexlify(val)
  291. if not sae_k or not sae_keyseed or not sae_kck or not pmk or not ptk or not gtk:
  292. raise Exception("Could not find keys from debug log")
  293. if len(gtk) != 16:
  294. raise Exception("Unexpected GTK length")
  295. kck = ptk[0:16]
  296. kek = ptk[16:32]
  297. tk = ptk[32:48]
  298. fname = os.path.join(params['logdir'],
  299. 'sae_key_lifetime_in_memory.memctx-')
  300. logger.info("Checking keys in memory while associated")
  301. get_key_locations(buf, password, "Password")
  302. get_key_locations(buf, pmk, "PMK")
  303. if password not in buf:
  304. raise HwsimSkip("Password not found while associated")
  305. if pmk not in buf:
  306. raise HwsimSkip("PMK not found while associated")
  307. if kck not in buf:
  308. raise Exception("KCK not found while associated")
  309. if kek not in buf:
  310. raise Exception("KEK not found while associated")
  311. if tk in buf:
  312. raise Exception("TK found from memory")
  313. verify_not_present(buf, sae_k, fname, "SAE(k)")
  314. verify_not_present(buf, sae_keyseed, fname, "SAE(keyseed)")
  315. verify_not_present(buf, sae_kck, fname, "SAE(KCK)")
  316. logger.info("Checking keys in memory after disassociation")
  317. buf = read_process_memory(pid, password)
  318. # Note: Password is still present in network configuration
  319. # Note: PMK is in PMKSA cache
  320. get_key_locations(buf, password, "Password")
  321. get_key_locations(buf, pmk, "PMK")
  322. verify_not_present(buf, kck, fname, "KCK")
  323. verify_not_present(buf, kek, fname, "KEK")
  324. verify_not_present(buf, tk, fname, "TK")
  325. if gtk in buf:
  326. get_key_locations(buf, gtk, "GTK")
  327. verify_not_present(buf, gtk, fname, "GTK")
  328. verify_not_present(buf, sae_k, fname, "SAE(k)")
  329. verify_not_present(buf, sae_keyseed, fname, "SAE(keyseed)")
  330. verify_not_present(buf, sae_kck, fname, "SAE(KCK)")
  331. dev[0].request("PMKSA_FLUSH")
  332. logger.info("Checking keys in memory after PMKSA cache flush")
  333. buf = read_process_memory(pid, password)
  334. get_key_locations(buf, password, "Password")
  335. get_key_locations(buf, pmk, "PMK")
  336. verify_not_present(buf, pmk, fname, "PMK")
  337. dev[0].request("REMOVE_NETWORK all")
  338. logger.info("Checking keys in memory after network profile removal")
  339. buf = read_process_memory(pid, password)
  340. get_key_locations(buf, password, "Password")
  341. get_key_locations(buf, pmk, "PMK")
  342. verify_not_present(buf, password, fname, "password")
  343. verify_not_present(buf, pmk, fname, "PMK")
  344. verify_not_present(buf, kck, fname, "KCK")
  345. verify_not_present(buf, kek, fname, "KEK")
  346. verify_not_present(buf, tk, fname, "TK")
  347. verify_not_present(buf, gtk, fname, "GTK")
  348. verify_not_present(buf, sae_k, fname, "SAE(k)")
  349. verify_not_present(buf, sae_keyseed, fname, "SAE(keyseed)")
  350. verify_not_present(buf, sae_kck, fname, "SAE(KCK)")
  351. @remote_compatible
  352. def test_sae_oom_wpas(dev, apdev):
  353. """SAE and OOM in wpa_supplicant"""
  354. if "SAE" not in dev[0].get_capability("auth_alg"):
  355. raise HwsimSkip("SAE not supported")
  356. params = hostapd.wpa2_params(ssid="test-sae",
  357. passphrase="12345678")
  358. params['wpa_key_mgmt'] = 'SAE'
  359. hapd = hostapd.add_ap(apdev[0], params)
  360. dev[0].request("SET sae_groups 25")
  361. tls = dev[0].request("GET tls_library")
  362. if "BoringSSL" in tls:
  363. dev[0].request("SET sae_groups 26")
  364. with alloc_fail(dev[0], 1, "sae_set_group"):
  365. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  366. scan_freq="2412")
  367. dev[0].request("REMOVE_NETWORK all")
  368. dev[0].request("SET sae_groups ")
  369. with alloc_fail(dev[0], 2, "sae_set_group"):
  370. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  371. scan_freq="2412")
  372. dev[0].request("REMOVE_NETWORK all")
  373. with alloc_fail(dev[0], 1, "wpabuf_alloc;sme_auth_build_sae_commit"):
  374. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  375. scan_freq="2412")
  376. dev[0].request("REMOVE_NETWORK all")
  377. with alloc_fail(dev[0], 1, "wpabuf_alloc;sme_auth_build_sae_confirm"):
  378. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  379. scan_freq="2412", wait_connect=False)
  380. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  381. dev[0].request("REMOVE_NETWORK all")
  382. with alloc_fail(dev[0], 1, "=sme_authenticate"):
  383. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  384. scan_freq="2412", wait_connect=False)
  385. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  386. dev[0].request("REMOVE_NETWORK all")
  387. with alloc_fail(dev[0], 1, "radio_add_work;sme_authenticate"):
  388. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  389. scan_freq="2412", wait_connect=False)
  390. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
  391. dev[0].request("REMOVE_NETWORK all")
  392. @remote_compatible
  393. def test_sae_proto_ecc(dev, apdev):
  394. """SAE protocol testing (ECC)"""
  395. if "SAE" not in dev[0].get_capability("auth_alg"):
  396. raise HwsimSkip("SAE not supported")
  397. params = hostapd.wpa2_params(ssid="test-sae",
  398. passphrase="12345678")
  399. params['wpa_key_mgmt'] = 'SAE'
  400. hapd = hostapd.add_ap(apdev[0], params)
  401. bssid = apdev[0]['bssid']
  402. dev[0].request("SET sae_groups 19")
  403. tests = [ ("Confirm mismatch",
  404. "1300" + "033d3635b39666ed427fd4a3e7d37acec2810afeaf1687f746a14163ff0e6d03" + "559cb8928db4ce4e3cbd6555e837591995e5ebe503ef36b503d9ca519d63728dd3c7c676b8e8081831b6bc3a64bdf136061a7de175e17d1965bfa41983ed02f8",
  405. "0000800edebc3f260dc1fe7e0b20888af2b8a3316252ec37388a8504e25b73dc4240"),
  406. ("Commit without even full cyclic group field",
  407. "13",
  408. None),
  409. ("Too short commit",
  410. "1300" + "033d3635b39666ed427fd4a3e7d37acec2810afeaf1687f746a14163ff0e6d03" + "559cb8928db4ce4e3cbd6555e837591995e5ebe503ef36b503d9ca519d63728dd3c7c676b8e8081831b6bc3a64bdf136061a7de175e17d1965bfa41983ed02",
  411. None),
  412. ("Invalid commit scalar (0)",
  413. "1300" + "0000000000000000000000000000000000000000000000000000000000000000" + "559cb8928db4ce4e3cbd6555e837591995e5ebe503ef36b503d9ca519d63728dd3c7c676b8e8081831b6bc3a64bdf136061a7de175e17d1965bfa41983ed02f8",
  414. None),
  415. ("Invalid commit scalar (1)",
  416. "1300" + "0000000000000000000000000000000000000000000000000000000000000001" + "559cb8928db4ce4e3cbd6555e837591995e5ebe503ef36b503d9ca519d63728dd3c7c676b8e8081831b6bc3a64bdf136061a7de175e17d1965bfa41983ed02f8",
  417. None),
  418. ("Invalid commit scalar (> r)",
  419. "1300" + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "559cb8928db4ce4e3cbd6555e837591995e5ebe503ef36b503d9ca519d63728dd3c7c676b8e8081831b6bc3a64bdf136061a7de175e17d1965bfa41983ed02f8",
  420. None),
  421. ("Commit element not on curve",
  422. "1300" + "033d3635b39666ed427fd4a3e7d37acec2810afeaf1687f746a14163ff0e6d03" + "559cb8928db4ce4e3cbd6555e837591995e5ebe503ef36b503d9ca519d63728d0000000000000000000000000000000000000000000000000000000000000000",
  423. None),
  424. ("Invalid commit element (y coordinate > P)",
  425. "1300" + "033d3635b39666ed427fd4a3e7d37acec2810afeaf1687f746a14163ff0e6d03" + "559cb8928db4ce4e3cbd6555e837591995e5ebe503ef36b503d9ca519d63728dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
  426. None),
  427. ("Invalid commit element (x coordinate > P)",
  428. "1300" + "033d3635b39666ed427fd4a3e7d37acec2810afeaf1687f746a14163ff0e6d03" + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd3c7c676b8e8081831b6bc3a64bdf136061a7de175e17d1965bfa41983ed02f8",
  429. None),
  430. ("Different group in commit",
  431. "1400" + "033d3635b39666ed427fd4a3e7d37acec2810afeaf1687f746a14163ff0e6d03" + "559cb8928db4ce4e3cbd6555e837591995e5ebe503ef36b503d9ca519d63728dd3c7c676b8e8081831b6bc3a64bdf136061a7de175e17d1965bfa41983ed02f8",
  432. None),
  433. ("Too short confirm",
  434. "1300" + "033d3635b39666ed427fd4a3e7d37acec2810afeaf1687f746a14163ff0e6d03" + "559cb8928db4ce4e3cbd6555e837591995e5ebe503ef36b503d9ca519d63728dd3c7c676b8e8081831b6bc3a64bdf136061a7de175e17d1965bfa41983ed02f8",
  435. "0000800edebc3f260dc1fe7e0b20888af2b8a3316252ec37388a8504e25b73dc42")]
  436. for (note, commit, confirm) in tests:
  437. logger.info(note)
  438. dev[0].scan_for_bss(bssid, freq=2412)
  439. hapd.set("ext_mgmt_frame_handling", "1")
  440. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  441. scan_freq="2412", wait_connect=False)
  442. logger.info("Commit")
  443. for i in range(0, 10):
  444. req = hapd.mgmt_rx()
  445. if req is None:
  446. raise Exception("MGMT RX wait timed out (commit)")
  447. if req['subtype'] == 11:
  448. break
  449. req = None
  450. if not req:
  451. raise Exception("Authentication frame (commit) not received")
  452. hapd.dump_monitor()
  453. resp = {}
  454. resp['fc'] = req['fc']
  455. resp['da'] = req['sa']
  456. resp['sa'] = req['da']
  457. resp['bssid'] = req['bssid']
  458. resp['payload'] = binascii.unhexlify("030001000000" + commit)
  459. hapd.mgmt_tx(resp)
  460. if confirm:
  461. logger.info("Confirm")
  462. for i in range(0, 10):
  463. req = hapd.mgmt_rx()
  464. if req is None:
  465. raise Exception("MGMT RX wait timed out (confirm)")
  466. if req['subtype'] == 11:
  467. break
  468. req = None
  469. if not req:
  470. raise Exception("Authentication frame (confirm) not received")
  471. hapd.dump_monitor()
  472. resp = {}
  473. resp['fc'] = req['fc']
  474. resp['da'] = req['sa']
  475. resp['sa'] = req['da']
  476. resp['bssid'] = req['bssid']
  477. resp['payload'] = binascii.unhexlify("030002000000" + confirm)
  478. hapd.mgmt_tx(resp)
  479. time.sleep(0.1)
  480. dev[0].request("REMOVE_NETWORK all")
  481. hapd.set("ext_mgmt_frame_handling", "0")
  482. hapd.dump_monitor()
  483. @remote_compatible
  484. def test_sae_proto_ffc(dev, apdev):
  485. """SAE protocol testing (FFC)"""
  486. if "SAE" not in dev[0].get_capability("auth_alg"):
  487. raise HwsimSkip("SAE not supported")
  488. params = hostapd.wpa2_params(ssid="test-sae",
  489. passphrase="12345678")
  490. params['wpa_key_mgmt'] = 'SAE'
  491. hapd = hostapd.add_ap(apdev[0], params)
  492. bssid = apdev[0]['bssid']
  493. dev[0].request("SET sae_groups 2")
  494. tests = [ ("Confirm mismatch",
  495. "0200" + "0c70519d874e3e4930a917cc5e17ea7a26028211159f217bab28b8d6c56691805e49f03249b2c6e22c7c9f86b30e04ccad2deedd5e5108ae07b737c00001c59cd0eb08b1dfc7f1b06a1542e2b6601a963c066e0c65940983a03917ae57a101ce84b5cbbc76ff33ebb990aac2e54aa0f0ab6ec0a58113d927683502b2cb2347d2" + "a8c00117493cdffa5dd671e934bc9cb1a69f39e25e9dd9cd9afd3aea2441a0f5491211c7ba50a753563f9ce943b043557cb71193b28e86ed9544f4289c471bf91b70af5c018cf4663e004165b0fd0bc1d8f3f78adf42eee92bcbc55246fd3ee9f107ab965dc7d4986f23eb71d616ebfe6bfe0a6c1ac5dc1718acee17c9a17486",
  496. "0000f3116a9731f1259622e3eb55d4b3b50ba16f8c5f5565b28e609b180c51460251"),
  497. ("Too short commit",
  498. "0200" + "0c70519d874e3e4930a917cc5e17ea7a26028211159f217bab28b8d6c56691805e49f03249b2c6e22c7c9f86b30e04ccad2deedd5e5108ae07b737c00001c59cd0eb08b1dfc7f1b06a1542e2b6601a963c066e0c65940983a03917ae57a101ce84b5cbbc76ff33ebb990aac2e54aa0f0ab6ec0a58113d927683502b2cb2347d2" + "a8c00117493cdffa5dd671e934bc9cb1a69f39e25e9dd9cd9afd3aea2441a0f5491211c7ba50a753563f9ce943b043557cb71193b28e86ed9544f4289c471bf91b70af5c018cf4663e004165b0fd0bc1d8f3f78adf42eee92bcbc55246fd3ee9f107ab965dc7d4986f23eb71d616ebfe6bfe0a6c1ac5dc1718acee17c9a174",
  499. None),
  500. ("Invalid element (0) in commit",
  501. "0200" + "0c70519d874e3e4930a917cc5e17ea7a26028211159f217bab28b8d6c56691805e49f03249b2c6e22c7c9f86b30e04ccad2deedd5e5108ae07b737c00001c59cd0eb08b1dfc7f1b06a1542e2b6601a963c066e0c65940983a03917ae57a101ce84b5cbbc76ff33ebb990aac2e54aa0f0ab6ec0a58113d927683502b2cb2347d2" + "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
  502. None),
  503. ("Invalid element (1) in commit",
  504. "0200" + "0c70519d874e3e4930a917cc5e17ea7a26028211159f217bab28b8d6c56691805e49f03249b2c6e22c7c9f86b30e04ccad2deedd5e5108ae07b737c00001c59cd0eb08b1dfc7f1b06a1542e2b6601a963c066e0c65940983a03917ae57a101ce84b5cbbc76ff33ebb990aac2e54aa0f0ab6ec0a58113d927683502b2cb2347d2" + "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001",
  505. None),
  506. ("Invalid element (> P) in commit",
  507. "0200" + "0c70519d874e3e4930a917cc5e17ea7a26028211159f217bab28b8d6c56691805e49f03249b2c6e22c7c9f86b30e04ccad2deedd5e5108ae07b737c00001c59cd0eb08b1dfc7f1b06a1542e2b6601a963c066e0c65940983a03917ae57a101ce84b5cbbc76ff33ebb990aac2e54aa0f0ab6ec0a58113d927683502b2cb2347d2" + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
  508. None) ]
  509. for (note, commit, confirm) in tests:
  510. logger.info(note)
  511. dev[0].scan_for_bss(bssid, freq=2412)
  512. hapd.set("ext_mgmt_frame_handling", "1")
  513. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  514. scan_freq="2412", wait_connect=False)
  515. logger.info("Commit")
  516. for i in range(0, 10):
  517. req = hapd.mgmt_rx()
  518. if req is None:
  519. raise Exception("MGMT RX wait timed out (commit)")
  520. if req['subtype'] == 11:
  521. break
  522. req = None
  523. if not req:
  524. raise Exception("Authentication frame (commit) not received")
  525. hapd.dump_monitor()
  526. resp = {}
  527. resp['fc'] = req['fc']
  528. resp['da'] = req['sa']
  529. resp['sa'] = req['da']
  530. resp['bssid'] = req['bssid']
  531. resp['payload'] = binascii.unhexlify("030001000000" + commit)
  532. hapd.mgmt_tx(resp)
  533. if confirm:
  534. logger.info("Confirm")
  535. for i in range(0, 10):
  536. req = hapd.mgmt_rx()
  537. if req is None:
  538. raise Exception("MGMT RX wait timed out (confirm)")
  539. if req['subtype'] == 11:
  540. break
  541. req = None
  542. if not req:
  543. raise Exception("Authentication frame (confirm) not received")
  544. hapd.dump_monitor()
  545. resp = {}
  546. resp['fc'] = req['fc']
  547. resp['da'] = req['sa']
  548. resp['sa'] = req['da']
  549. resp['bssid'] = req['bssid']
  550. resp['payload'] = binascii.unhexlify("030002000000" + confirm)
  551. hapd.mgmt_tx(resp)
  552. time.sleep(0.1)
  553. dev[0].request("REMOVE_NETWORK all")
  554. hapd.set("ext_mgmt_frame_handling", "0")
  555. hapd.dump_monitor()
  556. def test_sae_proto_hostapd(dev, apdev):
  557. """SAE protocol testing with hostapd"""
  558. params = hostapd.wpa2_params(ssid="test-sae", passphrase="12345678")
  559. params['wpa_key_mgmt'] = 'SAE'
  560. params['sae_groups'] = "19 65535"
  561. hapd = hostapd.add_ap(apdev[0], params)
  562. hapd.set("ext_mgmt_frame_handling", "1")
  563. bssid = hapd.own_addr().replace(':', '')
  564. addr = "020000000000"
  565. addr2 = "020000000001"
  566. hdr = "b0003a01" + bssid + addr + bssid + "1000"
  567. hdr2 = "b0003a01" + bssid + addr2 + bssid + "1000"
  568. group = "1300"
  569. scalar = "f7df19f4a7fef1d3b895ea1de150b7c5a7a705c8ebb31a52b623e0057908bd93"
  570. element_x = "21931572027f2e953e2a49fab3d992944102cc95aa19515fc068b394fb25ae3c"
  571. element_y = "cb4eeb94d7b0b789abfdb73a67ab9d6d5efa94dd553e0e724a6289821cbce530"
  572. hapd.request("MGMT_RX_PROCESS freq=2412 datarate=0 ssi_signal=-30 frame=" + hdr + "030001000000" + group + scalar + element_x + element_y)
  573. # "SAE: Not enough data for scalar"
  574. hapd.request("MGMT_RX_PROCESS freq=2412 datarate=0 ssi_signal=-30 frame=" + hdr + "030001000000" + group + scalar[:-2])
  575. # "SAE: Do not allow group to be changed"
  576. hapd.request("MGMT_RX_PROCESS freq=2412 datarate=0 ssi_signal=-30 frame=" + hdr + "030001000000" + "ffff" + scalar[:-2])
  577. # "SAE: Unsupported Finite Cyclic Group 65535"
  578. hapd.request("MGMT_RX_PROCESS freq=2412 datarate=0 ssi_signal=-30 frame=" + hdr2 + "030001000000" + "ffff" + scalar[:-2])
  579. @remote_compatible
  580. def test_sae_no_ffc_by_default(dev, apdev):
  581. """SAE and default groups rejecting FFC"""
  582. if "SAE" not in dev[0].get_capability("auth_alg"):
  583. raise HwsimSkip("SAE not supported")
  584. params = hostapd.wpa2_params(ssid="test-sae", passphrase="12345678")
  585. params['wpa_key_mgmt'] = 'SAE'
  586. hapd = hostapd.add_ap(apdev[0], params)
  587. dev[0].request("SET sae_groups 5")
  588. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE", scan_freq="2412",
  589. wait_connect=False)
  590. ev = dev[0].wait_event(["SME: Trying to authenticate"], timeout=3)
  591. if ev is None:
  592. raise Exception("Did not try to authenticate")
  593. ev = dev[0].wait_event(["SME: Trying to authenticate"], timeout=3)
  594. if ev is None:
  595. raise Exception("Did not try to authenticate (2)")
  596. dev[0].request("REMOVE_NETWORK all")
  597. def sae_reflection_attack(apdev, dev, group):
  598. if "SAE" not in dev.get_capability("auth_alg"):
  599. raise HwsimSkip("SAE not supported")
  600. params = hostapd.wpa2_params(ssid="test-sae",
  601. passphrase="no-knowledge-of-passphrase")
  602. params['wpa_key_mgmt'] = 'SAE'
  603. hapd = hostapd.add_ap(apdev, params)
  604. bssid = apdev['bssid']
  605. dev.scan_for_bss(bssid, freq=2412)
  606. hapd.set("ext_mgmt_frame_handling", "1")
  607. dev.request("SET sae_groups %d" % group)
  608. dev.connect("test-sae", psk="reflection-attack", key_mgmt="SAE",
  609. scan_freq="2412", wait_connect=False)
  610. # Commit
  611. for i in range(0, 10):
  612. req = hapd.mgmt_rx()
  613. if req is None:
  614. raise Exception("MGMT RX wait timed out")
  615. if req['subtype'] == 11:
  616. break
  617. req = None
  618. if not req:
  619. raise Exception("Authentication frame not received")
  620. resp = {}
  621. resp['fc'] = req['fc']
  622. resp['da'] = req['sa']
  623. resp['sa'] = req['da']
  624. resp['bssid'] = req['bssid']
  625. resp['payload'] = req['payload']
  626. hapd.mgmt_tx(resp)
  627. # Confirm
  628. req = hapd.mgmt_rx(timeout=0.5)
  629. if req is not None:
  630. if req['subtype'] == 11:
  631. raise Exception("Unexpected Authentication frame seen")
  632. @remote_compatible
  633. def test_sae_reflection_attack_ecc(dev, apdev):
  634. """SAE reflection attack (ECC)"""
  635. sae_reflection_attack(apdev[0], dev[0], 19)
  636. @remote_compatible
  637. def test_sae_reflection_attack_ffc(dev, apdev):
  638. """SAE reflection attack (FFC)"""
  639. sae_reflection_attack(apdev[0], dev[0], 5)
  640. def sae_reflection_attack_internal(apdev, dev, group):
  641. if "SAE" not in dev.get_capability("auth_alg"):
  642. raise HwsimSkip("SAE not supported")
  643. params = hostapd.wpa2_params(ssid="test-sae",
  644. passphrase="no-knowledge-of-passphrase")
  645. params['wpa_key_mgmt'] = 'SAE'
  646. params['sae_reflection_attack'] = '1'
  647. hapd = hostapd.add_ap(apdev, params)
  648. bssid = apdev['bssid']
  649. dev.scan_for_bss(bssid, freq=2412)
  650. dev.request("SET sae_groups %d" % group)
  651. dev.connect("test-sae", psk="reflection-attack", key_mgmt="SAE",
  652. scan_freq="2412", wait_connect=False)
  653. ev = dev.wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  654. if ev is not None:
  655. raise Exception("Unexpected connection")
  656. @remote_compatible
  657. def test_sae_reflection_attack_ecc_internal(dev, apdev):
  658. """SAE reflection attack (ECC) - internal"""
  659. sae_reflection_attack_internal(apdev[0], dev[0], 19)
  660. @remote_compatible
  661. def test_sae_reflection_attack_ffc_internal(dev, apdev):
  662. """SAE reflection attack (FFC) - internal"""
  663. sae_reflection_attack_internal(apdev[0], dev[0], 5)
  664. @remote_compatible
  665. def test_sae_commit_override(dev, apdev):
  666. """SAE commit override (hostapd)"""
  667. if "SAE" not in dev[0].get_capability("auth_alg"):
  668. raise HwsimSkip("SAE not supported")
  669. params = hostapd.wpa2_params(ssid="test-sae",
  670. passphrase="12345678")
  671. params['wpa_key_mgmt'] = 'SAE'
  672. params['sae_commit_override'] = '13ffbad00d215867a7c5ff37d87bb9bdb7cb116e520f71e8d7a794ca2606d537ddc6c099c40e7a25372b80a8fd443cd7dd222c8ea21b8ef372d4b3e316c26a73fd999cc79ad483eb826e7b3893ea332da68fa13224bcdeb4fb18b0584dd100a2c514'
  673. hapd = hostapd.add_ap(apdev[0], params)
  674. dev[0].request("SET sae_groups ")
  675. dev[0].connect("test-sae", psk="test-sae", key_mgmt="SAE",
  676. scan_freq="2412", wait_connect=False)
  677. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  678. if ev is not None:
  679. raise Exception("Unexpected connection")
  680. @remote_compatible
  681. def test_sae_commit_override2(dev, apdev):
  682. """SAE commit override (wpa_supplicant)"""
  683. if "SAE" not in dev[0].get_capability("auth_alg"):
  684. raise HwsimSkip("SAE not supported")
  685. params = hostapd.wpa2_params(ssid="test-sae",
  686. passphrase="12345678")
  687. params['wpa_key_mgmt'] = 'SAE'
  688. hapd = hostapd.add_ap(apdev[0], params)
  689. dev[0].request("SET sae_groups ")
  690. dev[0].set('sae_commit_override', '13ffbad00d215867a7c5ff37d87bb9bdb7cb116e520f71e8d7a794ca2606d537ddc6c099c40e7a25372b80a8fd443cd7dd222c8ea21b8ef372d4b3e316c26a73fd999cc79ad483eb826e7b3893ea332da68fa13224bcdeb4fb18b0584dd100a2c514')
  691. dev[0].connect("test-sae", psk="test-sae", key_mgmt="SAE",
  692. scan_freq="2412", wait_connect=False)
  693. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  694. if ev is not None:
  695. raise Exception("Unexpected connection")
  696. @remote_compatible
  697. def test_sae_anti_clogging_proto(dev, apdev):
  698. """SAE anti clogging protocol testing"""
  699. if "SAE" not in dev[0].get_capability("auth_alg"):
  700. raise HwsimSkip("SAE not supported")
  701. params = hostapd.wpa2_params(ssid="test-sae",
  702. passphrase="no-knowledge-of-passphrase")
  703. params['wpa_key_mgmt'] = 'SAE'
  704. hapd = hostapd.add_ap(apdev[0], params)
  705. bssid = apdev[0]['bssid']
  706. dev[0].scan_for_bss(bssid, freq=2412)
  707. hapd.set("ext_mgmt_frame_handling", "1")
  708. dev[0].request("SET sae_groups ")
  709. dev[0].connect("test-sae", psk="anti-cloggign", key_mgmt="SAE",
  710. scan_freq="2412", wait_connect=False)
  711. # Commit
  712. for i in range(0, 10):
  713. req = hapd.mgmt_rx()
  714. if req is None:
  715. raise Exception("MGMT RX wait timed out")
  716. if req['subtype'] == 11:
  717. break
  718. req = None
  719. if not req:
  720. raise Exception("Authentication frame not received")
  721. resp = {}
  722. resp['fc'] = req['fc']
  723. resp['da'] = req['sa']
  724. resp['sa'] = req['da']
  725. resp['bssid'] = req['bssid']
  726. resp['payload'] = binascii.unhexlify("030001004c00" + "ffff00")
  727. hapd.mgmt_tx(resp)
  728. # Confirm (not received due to DH group being rejected)
  729. req = hapd.mgmt_rx(timeout=0.5)
  730. if req is not None:
  731. if req['subtype'] == 11:
  732. raise Exception("Unexpected Authentication frame seen")
  733. @remote_compatible
  734. def test_sae_no_random(dev, apdev):
  735. """SAE and no random numbers available"""
  736. if "SAE" not in dev[0].get_capability("auth_alg"):
  737. raise HwsimSkip("SAE not supported")
  738. params = hostapd.wpa2_params(ssid="test-sae", passphrase="12345678")
  739. params['wpa_key_mgmt'] = 'SAE'
  740. hapd = hostapd.add_ap(apdev[0], params)
  741. dev[0].request("SET sae_groups ")
  742. tests = [ (1, "os_get_random;sae_get_rand"),
  743. (1, "os_get_random;get_rand_1_to_p_1"),
  744. (1, "os_get_random;get_random_qr_qnr"),
  745. (1, "os_get_random;sae_derive_pwe_ecc") ]
  746. for count, func in tests:
  747. with fail_test(dev[0], count, func):
  748. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  749. scan_freq="2412")
  750. dev[0].request("REMOVE_NETWORK all")
  751. dev[0].wait_disconnected()
  752. @remote_compatible
  753. def test_sae_pwe_failure(dev, apdev):
  754. """SAE and pwe failure"""
  755. if "SAE" not in dev[0].get_capability("auth_alg"):
  756. raise HwsimSkip("SAE not supported")
  757. params = hostapd.wpa2_params(ssid="test-sae", passphrase="12345678")
  758. params['wpa_key_mgmt'] = 'SAE'
  759. params['sae_groups'] = '19 5'
  760. hapd = hostapd.add_ap(apdev[0], params)
  761. dev[0].request("SET sae_groups 19")
  762. with fail_test(dev[0], 1, "hmac_sha256_vector;sae_derive_pwe_ecc"):
  763. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  764. scan_freq="2412")
  765. dev[0].request("REMOVE_NETWORK all")
  766. dev[0].wait_disconnected()
  767. with fail_test(dev[0], 1, "sae_test_pwd_seed_ecc"):
  768. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  769. scan_freq="2412")
  770. dev[0].request("REMOVE_NETWORK all")
  771. dev[0].wait_disconnected()
  772. dev[0].request("SET sae_groups 5")
  773. with fail_test(dev[0], 1, "hmac_sha256_vector;sae_derive_pwe_ffc"):
  774. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  775. scan_freq="2412")
  776. dev[0].request("REMOVE_NETWORK all")
  777. dev[0].wait_disconnected()
  778. dev[0].request("SET sae_groups 5")
  779. with fail_test(dev[0], 1, "sae_test_pwd_seed_ffc"):
  780. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  781. scan_freq="2412")
  782. dev[0].request("REMOVE_NETWORK all")
  783. dev[0].wait_disconnected()
  784. with fail_test(dev[0], 2, "sae_test_pwd_seed_ffc"):
  785. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  786. scan_freq="2412")
  787. dev[0].request("REMOVE_NETWORK all")
  788. dev[0].wait_disconnected()
  789. @remote_compatible
  790. def test_sae_bignum_failure(dev, apdev):
  791. """SAE and bignum failure"""
  792. if "SAE" not in dev[0].get_capability("auth_alg"):
  793. raise HwsimSkip("SAE not supported")
  794. params = hostapd.wpa2_params(ssid="test-sae", passphrase="12345678")
  795. params['wpa_key_mgmt'] = 'SAE'
  796. params['sae_groups'] = '19 5 22'
  797. hapd = hostapd.add_ap(apdev[0], params)
  798. dev[0].request("SET sae_groups 19")
  799. tests = [ (1, "crypto_bignum_init_set;get_rand_1_to_p_1"),
  800. (1, "crypto_bignum_init;is_quadratic_residue_blind"),
  801. (1, "crypto_bignum_mulmod;is_quadratic_residue_blind"),
  802. (2, "crypto_bignum_mulmod;is_quadratic_residue_blind"),
  803. (3, "crypto_bignum_mulmod;is_quadratic_residue_blind"),
  804. (1, "crypto_bignum_legendre;is_quadratic_residue_blind"),
  805. (1, "crypto_bignum_init_set;sae_test_pwd_seed_ecc"),
  806. (1, "crypto_ec_point_compute_y_sqr;sae_test_pwd_seed_ecc"),
  807. (1, "crypto_bignum_init_set;get_random_qr_qnr"),
  808. (1, "crypto_bignum_to_bin;sae_derive_pwe_ecc"),
  809. (1, "crypto_ec_point_init;sae_derive_pwe_ecc"),
  810. (1, "crypto_ec_point_solve_y_coord;sae_derive_pwe_ecc"),
  811. (1, "crypto_ec_point_init;sae_derive_commit_element_ecc"),
  812. (1, "crypto_ec_point_mul;sae_derive_commit_element_ecc"),
  813. (1, "crypto_ec_point_invert;sae_derive_commit_element_ecc"),
  814. (1, "crypto_bignum_init;=sae_derive_commit"),
  815. (1, "crypto_ec_point_init;sae_derive_k_ecc"),
  816. (1, "crypto_ec_point_mul;sae_derive_k_ecc"),
  817. (1, "crypto_ec_point_add;sae_derive_k_ecc"),
  818. (2, "crypto_ec_point_mul;sae_derive_k_ecc"),
  819. (1, "crypto_ec_point_to_bin;sae_derive_k_ecc"),
  820. (1, "crypto_bignum_legendre;get_random_qr_qnr"),
  821. (1, "sha256_prf;sae_derive_keys"),
  822. (1, "crypto_bignum_init;sae_derive_keys"),
  823. (1, "crypto_bignum_init_set;sae_parse_commit_scalar"),
  824. (1, "crypto_bignum_to_bin;sae_parse_commit_element_ecc"),
  825. (1, "crypto_ec_point_from_bin;sae_parse_commit_element_ecc") ]
  826. for count, func in tests:
  827. with fail_test(dev[0], count, func):
  828. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  829. scan_freq="2412", wait_connect=False)
  830. wait_fail_trigger(dev[0], "GET_FAIL")
  831. dev[0].request("REMOVE_NETWORK all")
  832. dev[0].request("SET sae_groups 5")
  833. tests = [ (1, "crypto_bignum_init_set;sae_set_group"),
  834. (2, "crypto_bignum_init_set;sae_set_group"),
  835. (1, "crypto_bignum_init_set;sae_get_rand"),
  836. (1, "crypto_bignum_init_set;sae_test_pwd_seed_ffc"),
  837. (1, "crypto_bignum_exptmod;sae_test_pwd_seed_ffc"),
  838. (1, "crypto_bignum_init;sae_derive_pwe_ffc"),
  839. (1, "crypto_bignum_init;sae_derive_commit_element_ffc"),
  840. (1, "crypto_bignum_exptmod;sae_derive_commit_element_ffc"),
  841. (1, "crypto_bignum_inverse;sae_derive_commit_element_ffc"),
  842. (1, "crypto_bignum_init;sae_derive_k_ffc"),
  843. (1, "crypto_bignum_exptmod;sae_derive_k_ffc"),
  844. (1, "crypto_bignum_mulmod;sae_derive_k_ffc"),
  845. (2, "crypto_bignum_exptmod;sae_derive_k_ffc"),
  846. (1, "crypto_bignum_to_bin;sae_derive_k_ffc"),
  847. (1, "crypto_bignum_init_set;sae_parse_commit_element_ffc"),
  848. (1, "crypto_bignum_init;sae_parse_commit_element_ffc"),
  849. (2, "crypto_bignum_init_set;sae_parse_commit_element_ffc"),
  850. (1, "crypto_bignum_exptmod;sae_parse_commit_element_ffc") ]
  851. for count, func in tests:
  852. with fail_test(dev[0], count, func):
  853. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  854. scan_freq="2412", wait_connect=False)
  855. wait_fail_trigger(dev[0], "GET_FAIL")
  856. dev[0].request("REMOVE_NETWORK all")
  857. dev[0].request("SET sae_groups 22")
  858. tests = [ (1, "crypto_bignum_init_set;sae_test_pwd_seed_ffc"),
  859. (1, "crypto_bignum_sub;sae_test_pwd_seed_ffc"),
  860. (1, "crypto_bignum_div;sae_test_pwd_seed_ffc") ]
  861. for count, func in tests:
  862. with fail_test(dev[0], count, func):
  863. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  864. scan_freq="2412", wait_connect=False)
  865. wait_fail_trigger(dev[0], "GET_FAIL")
  866. dev[0].request("REMOVE_NETWORK all")
  867. def test_sae_invalid_anti_clogging_token_req(dev, apdev):
  868. """SAE and invalid anti-clogging token request"""
  869. if "SAE" not in dev[0].get_capability("auth_alg"):
  870. raise HwsimSkip("SAE not supported")
  871. params = hostapd.wpa2_params(ssid="test-sae", passphrase="12345678")
  872. params['wpa_key_mgmt'] = 'SAE'
  873. hapd = hostapd.add_ap(apdev[0], params)
  874. bssid = apdev[0]['bssid']
  875. dev[0].request("SET sae_groups 19")
  876. dev[0].scan_for_bss(bssid, freq=2412)
  877. hapd.set("ext_mgmt_frame_handling", "1")
  878. dev[0].connect("test-sae", psk="12345678", key_mgmt="SAE",
  879. scan_freq="2412", wait_connect=False)
  880. ev = dev[0].wait_event(["SME: Trying to authenticate"])
  881. if ev is None:
  882. raise Exception("No authentication attempt seen")
  883. dev[0].dump_monitor()
  884. for i in range(0, 10):
  885. req = hapd.mgmt_rx()
  886. if req is None:
  887. raise Exception("MGMT RX wait timed out (commit)")
  888. if req['subtype'] == 11:
  889. break
  890. req = None
  891. if not req:
  892. raise Exception("Authentication frame (commit) not received")
  893. hapd.dump_monitor()
  894. resp = {}
  895. resp['fc'] = req['fc']
  896. resp['da'] = req['sa']
  897. resp['sa'] = req['da']
  898. resp['bssid'] = req['bssid']
  899. resp['payload'] = binascii.unhexlify("030001004c0013")
  900. hapd.mgmt_tx(resp)
  901. ev = dev[0].wait_event(["SME: Trying to authenticate"])
  902. if ev is None:
  903. raise Exception("No authentication attempt seen")
  904. dev[0].dump_monitor()
  905. for i in range(0, 10):
  906. req = hapd.mgmt_rx()
  907. if req is None:
  908. raise Exception("MGMT RX wait timed out (commit) (2)")
  909. if req['subtype'] == 11:
  910. break
  911. req = None
  912. if not req:
  913. raise Exception("Authentication frame (commit) not received (2)")
  914. hapd.dump_monitor()
  915. resp = {}
  916. resp['fc'] = req['fc']
  917. resp['da'] = req['sa']
  918. resp['sa'] = req['da']
  919. resp['bssid'] = req['bssid']
  920. resp['payload'] = binascii.unhexlify("030001000100")
  921. hapd.mgmt_tx(resp)
  922. ev = dev[0].wait_event(["SME: Trying to authenticate"])
  923. if ev is None:
  924. raise Exception("No authentication attempt seen")
  925. dev[0].dump_monitor()
  926. dev[0].request("DISCONNECT")
  927. def test_sae_password(dev, apdev):
  928. """SAE and sae_password in hostapd configuration"""
  929. if "SAE" not in dev[0].get_capability("auth_alg"):
  930. raise HwsimSkip("SAE not supported")
  931. params = hostapd.wpa2_params(ssid="test-sae",
  932. passphrase="12345678")
  933. params['wpa_key_mgmt'] = 'SAE WPA-PSK'
  934. params['sae_password'] = "sae-password"
  935. hapd = hostapd.add_ap(apdev[0], params)
  936. dev[0].request("SET sae_groups ")
  937. dev[0].connect("test-sae", psk="sae-password", key_mgmt="SAE",
  938. scan_freq="2412")
  939. dev[1].connect("test-sae", psk="12345678", scan_freq="2412")
  940. dev[2].request("SET sae_groups ")
  941. dev[2].connect("test-sae", sae_password="sae-password", key_mgmt="SAE",
  942. scan_freq="2412")
  943. def test_sae_password_short(dev, apdev):
  944. """SAE and short password"""
  945. if "SAE" not in dev[0].get_capability("auth_alg"):
  946. raise HwsimSkip("SAE not supported")
  947. params = hostapd.wpa2_params(ssid="test-sae")
  948. params['wpa_key_mgmt'] = 'SAE'
  949. params['sae_password'] = "secret"
  950. hapd = hostapd.add_ap(apdev[0], params)
  951. dev[0].request("SET sae_groups ")
  952. dev[0].connect("test-sae", sae_password="secret", key_mgmt="SAE",
  953. scan_freq="2412")
  954. def test_sae_password_long(dev, apdev):
  955. """SAE and long password"""
  956. if "SAE" not in dev[0].get_capability("auth_alg"):
  957. raise HwsimSkip("SAE not supported")
  958. params = hostapd.wpa2_params(ssid="test-sae")
  959. params['wpa_key_mgmt'] = 'SAE'
  960. params['sae_password'] = 100*"A"
  961. hapd = hostapd.add_ap(apdev[0], params)
  962. dev[0].request("SET sae_groups ")
  963. dev[0].connect("test-sae", sae_password=100*"A", key_mgmt="SAE",
  964. scan_freq="2412")