test_sigma_dut.py 69 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516
  1. # Test cases for sigma_dut
  2. # Copyright (c) 2017, Qualcomm Atheros, Inc.
  3. #
  4. # This software may be distributed under the terms of the BSD license.
  5. # See README for more details.
  6. import logging
  7. logger = logging.getLogger()
  8. import os
  9. import socket
  10. import subprocess
  11. import threading
  12. import time
  13. import hostapd
  14. from utils import HwsimSkip
  15. from hwsim import HWSimRadio
  16. from test_dpp import check_dpp_capab
  17. from test_suite_b import check_suite_b_192_capa, suite_b_as_params, suite_b_192_rsa_ap_params
  18. def check_sigma_dut():
  19. if not os.path.exists("./sigma_dut"):
  20. raise HwsimSkip("sigma_dut not available")
  21. def sigma_dut_cmd(cmd, port=9000, timeout=2):
  22. sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM,
  23. socket.IPPROTO_TCP)
  24. sock.settimeout(timeout)
  25. addr = ('127.0.0.1', port)
  26. sock.connect(addr)
  27. sock.send(cmd + "\r\n")
  28. try:
  29. res = sock.recv(1000)
  30. running = False
  31. done = False
  32. for line in res.splitlines():
  33. if line.startswith("status,RUNNING"):
  34. running = True
  35. elif line.startswith("status,INVALID"):
  36. done = True
  37. elif line.startswith("status,ERROR"):
  38. done = True
  39. elif line.startswith("status,COMPLETE"):
  40. done = True
  41. if running and not done:
  42. # Read the actual response
  43. res = sock.recv(1000)
  44. except:
  45. res = ''
  46. pass
  47. sock.close()
  48. res = res.rstrip()
  49. logger.debug("sigma_dut: '%s' --> '%s'" % (cmd, res))
  50. return res
  51. def sigma_dut_cmd_check(cmd, port=9000, timeout=2):
  52. res = sigma_dut_cmd(cmd, port=port, timeout=timeout)
  53. if "COMPLETE" not in res:
  54. raise Exception("sigma_dut command failed: " + cmd)
  55. return res
  56. def start_sigma_dut(ifname, debug=False, hostapd_logdir=None, cert_path=None):
  57. check_sigma_dut()
  58. cmd = [ './sigma_dut',
  59. '-M', ifname,
  60. '-S', ifname,
  61. '-F', '../../hostapd/hostapd',
  62. '-G',
  63. '-w', '/var/run/wpa_supplicant/',
  64. '-j', ifname ]
  65. if debug:
  66. cmd += [ '-d' ]
  67. if hostapd_logdir:
  68. cmd += [ '-H', hostapd_logdir ]
  69. if cert_path:
  70. cmd += [ '-C', cert_path ]
  71. sigma = subprocess.Popen(cmd, stdout=subprocess.PIPE,
  72. stderr=subprocess.PIPE)
  73. for i in range(20):
  74. try:
  75. res = sigma_dut_cmd("HELLO")
  76. break
  77. except:
  78. time.sleep(0.05)
  79. return sigma
  80. def stop_sigma_dut(sigma):
  81. sigma.terminate()
  82. sigma.wait()
  83. out, err = sigma.communicate()
  84. logger.debug("sigma_dut stdout: " + str(out))
  85. logger.debug("sigma_dut stderr: " + str(err))
  86. def sigma_dut_wait_connected(ifname):
  87. for i in range(50):
  88. res = sigma_dut_cmd("sta_is_connected,interface," + ifname)
  89. if "connected,1" in res:
  90. break
  91. time.sleep(0.2)
  92. if i == 49:
  93. raise Exception("Connection did not complete")
  94. def test_sigma_dut_basic(dev, apdev):
  95. """sigma_dut basic functionality"""
  96. sigma = start_sigma_dut(dev[0].ifname)
  97. res = sigma_dut_cmd("UNKNOWN")
  98. if "status,INVALID,errorCode,Unknown command" not in res:
  99. raise Exception("Unexpected sigma_dut response to unknown command")
  100. tests = [ ("ca_get_version", "status,COMPLETE,version,1.0"),
  101. ("device_get_info", "status,COMPLETE,vendor"),
  102. ("device_list_interfaces,interfaceType,foo", "status,ERROR"),
  103. ("device_list_interfaces,interfaceType,802.11",
  104. "status,COMPLETE,interfaceType,802.11,interfaceID," + dev[0].ifname) ]
  105. for cmd, response in tests:
  106. res = sigma_dut_cmd(cmd)
  107. if response not in res:
  108. raise Exception("Unexpected %s response: %s" % (cmd, res))
  109. stop_sigma_dut(sigma)
  110. def test_sigma_dut_open(dev, apdev):
  111. """sigma_dut controlled open network association"""
  112. try:
  113. run_sigma_dut_open(dev, apdev)
  114. finally:
  115. dev[0].set("ignore_old_scan_res", "0")
  116. def run_sigma_dut_open(dev, apdev):
  117. ifname = dev[0].ifname
  118. sigma = start_sigma_dut(ifname)
  119. hapd = hostapd.add_ap(apdev[0], { "ssid": "open" })
  120. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  121. sigma_dut_cmd_check("sta_set_encryption,interface,%s,ssid,%s,encpType,none" % (ifname, "open"))
  122. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s" % (ifname, "open"))
  123. sigma_dut_wait_connected(ifname)
  124. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  125. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  126. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  127. stop_sigma_dut(sigma)
  128. def test_sigma_dut_psk_pmf(dev, apdev):
  129. """sigma_dut controlled PSK+PMF association"""
  130. try:
  131. run_sigma_dut_psk_pmf(dev, apdev)
  132. finally:
  133. dev[0].set("ignore_old_scan_res", "0")
  134. def run_sigma_dut_psk_pmf(dev, apdev):
  135. ifname = dev[0].ifname
  136. sigma = start_sigma_dut(ifname)
  137. ssid = "test-pmf-required"
  138. params = hostapd.wpa2_params(ssid=ssid, passphrase="12345678")
  139. params["wpa_key_mgmt"] = "WPA-PSK-SHA256"
  140. params["ieee80211w"] = "2"
  141. hapd = hostapd.add_ap(apdev[0], params)
  142. sigma_dut_cmd_check("sta_reset_default,interface,%s,prog,PMF" % ifname)
  143. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  144. sigma_dut_cmd_check("sta_set_psk,interface,%s,ssid,%s,passphrase,%s,encpType,aes-ccmp,keymgmttype,wpa2,PMF,Required" % (ifname, "test-pmf-required", "12345678"))
  145. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-pmf-required"))
  146. sigma_dut_wait_connected(ifname)
  147. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  148. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  149. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  150. stop_sigma_dut(sigma)
  151. def test_sigma_dut_psk_pmf_bip_cmac_128(dev, apdev):
  152. """sigma_dut controlled PSK+PMF association with BIP-CMAC-128"""
  153. try:
  154. run_sigma_dut_psk_pmf_cipher(dev, apdev, "BIP-CMAC-128", "AES-128-CMAC")
  155. finally:
  156. dev[0].set("ignore_old_scan_res", "0")
  157. def test_sigma_dut_psk_pmf_bip_cmac_256(dev, apdev):
  158. """sigma_dut controlled PSK+PMF association with BIP-CMAC-256"""
  159. try:
  160. run_sigma_dut_psk_pmf_cipher(dev, apdev, "BIP-CMAC-256", "BIP-CMAC-256")
  161. finally:
  162. dev[0].set("ignore_old_scan_res", "0")
  163. def test_sigma_dut_psk_pmf_bip_gmac_128(dev, apdev):
  164. """sigma_dut controlled PSK+PMF association with BIP-GMAC-128"""
  165. try:
  166. run_sigma_dut_psk_pmf_cipher(dev, apdev, "BIP-GMAC-128", "BIP-GMAC-128")
  167. finally:
  168. dev[0].set("ignore_old_scan_res", "0")
  169. def test_sigma_dut_psk_pmf_bip_gmac_256(dev, apdev):
  170. """sigma_dut controlled PSK+PMF association with BIP-GMAC-256"""
  171. try:
  172. run_sigma_dut_psk_pmf_cipher(dev, apdev, "BIP-GMAC-256", "BIP-GMAC-256")
  173. finally:
  174. dev[0].set("ignore_old_scan_res", "0")
  175. def test_sigma_dut_psk_pmf_bip_gmac_256_mismatch(dev, apdev):
  176. """sigma_dut controlled PSK+PMF association with BIP-GMAC-256 mismatch"""
  177. try:
  178. run_sigma_dut_psk_pmf_cipher(dev, apdev, "BIP-GMAC-256", "AES-128-CMAC",
  179. failure=True)
  180. finally:
  181. dev[0].set("ignore_old_scan_res", "0")
  182. def run_sigma_dut_psk_pmf_cipher(dev, apdev, sigma_cipher, hostapd_cipher,
  183. failure=False):
  184. ifname = dev[0].ifname
  185. sigma = start_sigma_dut(ifname)
  186. ssid = "test-pmf-required"
  187. params = hostapd.wpa2_params(ssid=ssid, passphrase="12345678")
  188. params["wpa_key_mgmt"] = "WPA-PSK-SHA256"
  189. params["ieee80211w"] = "2"
  190. params["group_mgmt_cipher"] = hostapd_cipher
  191. hapd = hostapd.add_ap(apdev[0], params)
  192. sigma_dut_cmd_check("sta_reset_default,interface,%s,prog,PMF" % ifname)
  193. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  194. sigma_dut_cmd_check("sta_set_psk,interface,%s,ssid,%s,passphrase,%s,encpType,aes-ccmp,keymgmttype,wpa2,PMF,Required,GroupMgntCipher,%s" % (ifname, "test-pmf-required", "12345678", sigma_cipher))
  195. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-pmf-required"))
  196. if failure:
  197. ev = dev[0].wait_event(["CTRL-EVENT-NETWORK-NOT-FOUND",
  198. "CTRL-EVENT-CONNECTED"], timeout=10)
  199. if ev is None:
  200. raise Exception("Network selection result not indicated")
  201. if "CTRL-EVENT-CONNECTED" in ev:
  202. raise Exception("Unexpected connection")
  203. res = sigma_dut_cmd("sta_is_connected,interface," + ifname)
  204. if "connected,1" in res:
  205. raise Exception("Connection reported")
  206. else:
  207. sigma_dut_wait_connected(ifname)
  208. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  209. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  210. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  211. stop_sigma_dut(sigma)
  212. def test_sigma_dut_sae(dev, apdev):
  213. """sigma_dut controlled SAE association"""
  214. if "SAE" not in dev[0].get_capability("auth_alg"):
  215. raise HwsimSkip("SAE not supported")
  216. ifname = dev[0].ifname
  217. sigma = start_sigma_dut(ifname)
  218. ssid = "test-sae"
  219. params = hostapd.wpa2_params(ssid=ssid, passphrase="12345678")
  220. params['wpa_key_mgmt'] = 'SAE'
  221. hapd = hostapd.add_ap(apdev[0], params)
  222. sigma_dut_cmd_check("sta_reset_default,interface,%s" % ifname)
  223. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  224. sigma_dut_cmd_check("sta_set_security,interface,%s,ssid,%s,passphrase,%s,type,SAE,encpType,aes-ccmp,keymgmttype,wpa2" % (ifname, "test-sae", "12345678"))
  225. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-sae"))
  226. sigma_dut_wait_connected(ifname)
  227. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  228. if dev[0].get_status_field('sae_group') != '19':
  229. raise Exception("Expected default SAE group not used")
  230. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  231. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  232. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  233. sigma_dut_cmd_check("sta_set_security,interface,%s,ssid,%s,passphrase,%s,type,SAE,encpType,aes-ccmp,keymgmttype,wpa2,ECGroupID,20" % (ifname, "test-sae", "12345678"))
  234. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-sae"))
  235. sigma_dut_wait_connected(ifname)
  236. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  237. if dev[0].get_status_field('sae_group') != '20':
  238. raise Exception("Expected SAE group not used")
  239. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  240. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  241. stop_sigma_dut(sigma)
  242. def test_sigma_dut_sae_password(dev, apdev):
  243. """sigma_dut controlled SAE association and long password"""
  244. if "SAE" not in dev[0].get_capability("auth_alg"):
  245. raise HwsimSkip("SAE not supported")
  246. ifname = dev[0].ifname
  247. sigma = start_sigma_dut(ifname)
  248. try:
  249. ssid = "test-sae"
  250. params = hostapd.wpa2_params(ssid=ssid)
  251. params['sae_password'] = 100*'B'
  252. params['wpa_key_mgmt'] = 'SAE'
  253. hapd = hostapd.add_ap(apdev[0], params)
  254. sigma_dut_cmd_check("sta_reset_default,interface,%s" % ifname)
  255. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  256. sigma_dut_cmd_check("sta_set_security,interface,%s,ssid,%s,passphrase,%s,type,SAE,encpType,aes-ccmp,keymgmttype,wpa2" % (ifname, "test-sae", 100*'B'))
  257. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-sae"))
  258. sigma_dut_wait_connected(ifname)
  259. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  260. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  261. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  262. finally:
  263. stop_sigma_dut(sigma)
  264. def test_sigma_dut_sta_override_rsne(dev, apdev):
  265. """sigma_dut and RSNE override on STA"""
  266. try:
  267. run_sigma_dut_sta_override_rsne(dev, apdev)
  268. finally:
  269. dev[0].set("ignore_old_scan_res", "0")
  270. def run_sigma_dut_sta_override_rsne(dev, apdev):
  271. ifname = dev[0].ifname
  272. sigma = start_sigma_dut(ifname)
  273. ssid = "test-psk"
  274. params = hostapd.wpa2_params(ssid=ssid, passphrase="12345678")
  275. hapd = hostapd.add_ap(apdev[0], params)
  276. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  277. tests = [ "30120100000fac040100000fac040100000fac02",
  278. "30140100000fac040100000fac040100000fac02ffff" ]
  279. for test in tests:
  280. sigma_dut_cmd_check("sta_set_security,interface,%s,ssid,%s,type,PSK,passphrase,%s,EncpType,aes-ccmp,KeyMgmtType,wpa2" % (ifname, "test-psk", "12345678"))
  281. sigma_dut_cmd_check("dev_configure_ie,interface,%s,IE_Name,RSNE,Contents,%s" % (ifname, test))
  282. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-psk"))
  283. sigma_dut_wait_connected(ifname)
  284. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  285. dev[0].dump_monitor()
  286. sigma_dut_cmd_check("sta_set_security,interface,%s,ssid,%s,type,PSK,passphrase,%s,EncpType,aes-ccmp,KeyMgmtType,wpa2" % (ifname, "test-psk", "12345678"))
  287. sigma_dut_cmd_check("dev_configure_ie,interface,%s,IE_Name,RSNE,Contents,300101" % ifname)
  288. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-psk"))
  289. ev = dev[0].wait_event(["CTRL-EVENT-ASSOC-REJECT"])
  290. if ev is None:
  291. raise Exception("Association rejection not reported")
  292. if "status_code=40" not in ev:
  293. raise Exception("Unexpected status code: " + ev)
  294. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  295. stop_sigma_dut(sigma)
  296. def test_sigma_dut_ap_psk(dev, apdev):
  297. """sigma_dut controlled AP"""
  298. with HWSimRadio() as (radio, iface):
  299. sigma = start_sigma_dut(iface)
  300. try:
  301. sigma_dut_cmd_check("ap_reset_default")
  302. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-psk,MODE,11ng")
  303. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,WPA2-PSK,PSK,12345678")
  304. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  305. dev[0].connect("test-psk", psk="12345678", scan_freq="2412")
  306. sigma_dut_cmd_check("ap_reset_default")
  307. finally:
  308. stop_sigma_dut(sigma)
  309. def test_sigma_dut_suite_b(dev, apdev, params):
  310. """sigma_dut controlled STA Suite B"""
  311. check_suite_b_192_capa(dev)
  312. logdir = params['logdir']
  313. with open("auth_serv/ec2-ca.pem", "r") as f:
  314. with open(os.path.join(logdir, "suite_b_ca.pem"), "w") as f2:
  315. f2.write(f.read())
  316. with open("auth_serv/ec2-user.pem", "r") as f:
  317. with open("auth_serv/ec2-user.key", "r") as f2:
  318. with open(os.path.join(logdir, "suite_b.pem"), "w") as f3:
  319. f3.write(f.read())
  320. f3.write(f2.read())
  321. dev[0].flush_scan_cache()
  322. params = suite_b_as_params()
  323. params['ca_cert'] = 'auth_serv/ec2-ca.pem'
  324. params['server_cert'] = 'auth_serv/ec2-server.pem'
  325. params['private_key'] = 'auth_serv/ec2-server.key'
  326. params['openssl_ciphers'] = 'SUITEB192'
  327. hostapd.add_ap(apdev[1], params)
  328. params = { "ssid": "test-suite-b",
  329. "wpa": "2",
  330. "wpa_key_mgmt": "WPA-EAP-SUITE-B-192",
  331. "rsn_pairwise": "GCMP-256",
  332. "group_mgmt_cipher": "BIP-GMAC-256",
  333. "ieee80211w": "2",
  334. "ieee8021x": "1",
  335. 'auth_server_addr': "127.0.0.1",
  336. 'auth_server_port': "18129",
  337. 'auth_server_shared_secret': "radius",
  338. 'nas_identifier': "nas.w1.fi" }
  339. hapd = hostapd.add_ap(apdev[0], params)
  340. ifname = dev[0].ifname
  341. sigma = start_sigma_dut(ifname, cert_path=logdir)
  342. sigma_dut_cmd_check("sta_reset_default,interface,%s,prog,PMF" % ifname)
  343. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  344. sigma_dut_cmd_check("sta_set_security,type,eaptls,interface,%s,ssid,%s,PairwiseCipher,AES-GCMP-256,GroupCipher,AES-GCMP-256,GroupMgntCipher,BIP-GMAC-256,keymgmttype,SuiteB,PMF,Required,clientCertificate,suite_b.pem,trustedRootCA,suite_b_ca.pem,CertType,ECC" % (ifname, "test-suite-b"))
  345. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-suite-b"))
  346. sigma_dut_wait_connected(ifname)
  347. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  348. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  349. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  350. stop_sigma_dut(sigma)
  351. def test_sigma_dut_suite_b_rsa(dev, apdev, params):
  352. """sigma_dut controlled STA Suite B (RSA)"""
  353. check_suite_b_192_capa(dev)
  354. logdir = params['logdir']
  355. with open("auth_serv/rsa3072-ca.pem", "r") as f:
  356. with open(os.path.join(logdir, "suite_b_ca_rsa.pem"), "w") as f2:
  357. f2.write(f.read())
  358. with open("auth_serv/rsa3072-user.pem", "r") as f:
  359. with open("auth_serv/rsa3072-user.key", "r") as f2:
  360. with open(os.path.join(logdir, "suite_b_rsa.pem"), "w") as f3:
  361. f3.write(f.read())
  362. f3.write(f2.read())
  363. dev[0].flush_scan_cache()
  364. params = suite_b_192_rsa_ap_params()
  365. hapd = hostapd.add_ap(apdev[0], params)
  366. ifname = dev[0].ifname
  367. sigma = start_sigma_dut(ifname, cert_path=logdir)
  368. cmd = "sta_set_security,type,eaptls,interface,%s,ssid,%s,PairwiseCipher,AES-GCMP-256,GroupCipher,AES-GCMP-256,GroupMgntCipher,BIP-GMAC-256,keymgmttype,SuiteB,PMF,Required,clientCertificate,suite_b_rsa.pem,trustedRootCA,suite_b_ca_rsa.pem,CertType,RSA" % (ifname, "test-suite-b")
  369. tests = [ "",
  370. ",TLSCipher,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
  371. ",TLSCipher,TLS_DHE_RSA_WITH_AES_256_GCM_SHA384" ]
  372. for extra in tests:
  373. sigma_dut_cmd_check("sta_reset_default,interface,%s,prog,PMF" % ifname)
  374. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  375. sigma_dut_cmd_check(cmd + extra)
  376. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-suite-b"))
  377. sigma_dut_wait_connected(ifname)
  378. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  379. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  380. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  381. stop_sigma_dut(sigma)
  382. def test_sigma_dut_ap_suite_b(dev, apdev, params):
  383. """sigma_dut controlled AP Suite B"""
  384. check_suite_b_192_capa(dev)
  385. logdir = os.path.join(params['logdir'],
  386. "sigma_dut_ap_suite_b.sigma-hostapd")
  387. params = suite_b_as_params()
  388. params['ca_cert'] = 'auth_serv/ec2-ca.pem'
  389. params['server_cert'] = 'auth_serv/ec2-server.pem'
  390. params['private_key'] = 'auth_serv/ec2-server.key'
  391. params['openssl_ciphers'] = 'SUITEB192'
  392. hostapd.add_ap(apdev[1], params)
  393. with HWSimRadio() as (radio, iface):
  394. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  395. try:
  396. sigma_dut_cmd_check("ap_reset_default")
  397. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-suite-b,MODE,11ng")
  398. sigma_dut_cmd_check("ap_set_radius,NAME,AP,IPADDR,127.0.0.1,PORT,18129,PASSWORD,radius")
  399. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,SuiteB,PMF,Required")
  400. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  401. dev[0].connect("test-suite-b", key_mgmt="WPA-EAP-SUITE-B-192",
  402. ieee80211w="2",
  403. openssl_ciphers="SUITEB192",
  404. eap="TLS", identity="tls user",
  405. ca_cert="auth_serv/ec2-ca.pem",
  406. client_cert="auth_serv/ec2-user.pem",
  407. private_key="auth_serv/ec2-user.key",
  408. pairwise="GCMP-256", group="GCMP-256",
  409. scan_freq="2412")
  410. sigma_dut_cmd_check("ap_reset_default")
  411. finally:
  412. stop_sigma_dut(sigma)
  413. def test_sigma_dut_ap_cipher_gcmp_128(dev, apdev, params):
  414. """sigma_dut controlled AP with GCMP-128/BIP-GMAC-128 cipher"""
  415. run_sigma_dut_ap_cipher(dev, apdev, params, "AES-GCMP-128", "BIP-GMAC-128",
  416. "GCMP")
  417. def test_sigma_dut_ap_cipher_gcmp_256(dev, apdev, params):
  418. """sigma_dut controlled AP with GCMP-256/BIP-GMAC-256 cipher"""
  419. run_sigma_dut_ap_cipher(dev, apdev, params, "AES-GCMP-256", "BIP-GMAC-256",
  420. "GCMP-256")
  421. def test_sigma_dut_ap_cipher_ccmp_128(dev, apdev, params):
  422. """sigma_dut controlled AP with CCMP-128/BIP-CMAC-128 cipher"""
  423. run_sigma_dut_ap_cipher(dev, apdev, params, "AES-CCMP-128", "BIP-CMAC-128",
  424. "CCMP")
  425. def test_sigma_dut_ap_cipher_ccmp_256(dev, apdev, params):
  426. """sigma_dut controlled AP with CCMP-256/BIP-CMAC-256 cipher"""
  427. run_sigma_dut_ap_cipher(dev, apdev, params, "AES-CCMP-256", "BIP-CMAC-256",
  428. "CCMP-256")
  429. def run_sigma_dut_ap_cipher(dev, apdev, params, ap_pairwise, ap_group_mgmt,
  430. sta_cipher):
  431. check_suite_b_192_capa(dev)
  432. logdir = os.path.join(params['logdir'],
  433. "sigma_dut_ap_cipher.sigma-hostapd")
  434. params = suite_b_as_params()
  435. params['ca_cert'] = 'auth_serv/ec2-ca.pem'
  436. params['server_cert'] = 'auth_serv/ec2-server.pem'
  437. params['private_key'] = 'auth_serv/ec2-server.key'
  438. params['openssl_ciphers'] = 'SUITEB192'
  439. hostapd.add_ap(apdev[1], params)
  440. with HWSimRadio() as (radio, iface):
  441. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  442. try:
  443. sigma_dut_cmd_check("ap_reset_default")
  444. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-suite-b,MODE,11ng")
  445. sigma_dut_cmd_check("ap_set_radius,NAME,AP,IPADDR,127.0.0.1,PORT,18129,PASSWORD,radius")
  446. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,SuiteB,PMF,Required,PairwiseCipher,%s,GroupMgntCipher,%s" % (ap_pairwise, ap_group_mgmt))
  447. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  448. dev[0].connect("test-suite-b", key_mgmt="WPA-EAP-SUITE-B-192",
  449. ieee80211w="2",
  450. openssl_ciphers="SUITEB192",
  451. eap="TLS", identity="tls user",
  452. ca_cert="auth_serv/ec2-ca.pem",
  453. client_cert="auth_serv/ec2-user.pem",
  454. private_key="auth_serv/ec2-user.key",
  455. pairwise=sta_cipher, group=sta_cipher,
  456. scan_freq="2412")
  457. sigma_dut_cmd_check("ap_reset_default")
  458. finally:
  459. stop_sigma_dut(sigma)
  460. def test_sigma_dut_ap_override_rsne(dev, apdev):
  461. """sigma_dut controlled AP overriding RSNE"""
  462. with HWSimRadio() as (radio, iface):
  463. sigma = start_sigma_dut(iface)
  464. try:
  465. sigma_dut_cmd_check("ap_reset_default")
  466. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-psk,MODE,11ng")
  467. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,WPA2-PSK,PSK,12345678")
  468. sigma_dut_cmd_check("dev_configure_ie,NAME,AP,interface,%s,IE_Name,RSNE,Contents,30180100000fac040200ffffffff000fac040100000fac020c00" % iface)
  469. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  470. dev[0].connect("test-psk", psk="12345678", scan_freq="2412")
  471. sigma_dut_cmd_check("ap_reset_default")
  472. finally:
  473. stop_sigma_dut(sigma)
  474. def test_sigma_dut_ap_sae(dev, apdev):
  475. """sigma_dut controlled AP with SAE"""
  476. with HWSimRadio() as (radio, iface):
  477. sigma = start_sigma_dut(iface)
  478. try:
  479. sigma_dut_cmd_check("ap_reset_default")
  480. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-sae,MODE,11ng")
  481. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,WPA2-SAE,PSK,12345678")
  482. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  483. dev[0].request("SET sae_groups ")
  484. dev[0].connect("test-sae", key_mgmt="SAE", psk="12345678",
  485. scan_freq="2412")
  486. if dev[0].get_status_field('sae_group') != '19':
  487. raise Exception("Expected default SAE group not used")
  488. sigma_dut_cmd_check("ap_reset_default")
  489. finally:
  490. stop_sigma_dut(sigma)
  491. def test_sigma_dut_ap_sae_password(dev, apdev):
  492. """sigma_dut controlled AP with SAE and long password"""
  493. with HWSimRadio() as (radio, iface):
  494. sigma = start_sigma_dut(iface)
  495. try:
  496. sigma_dut_cmd_check("ap_reset_default")
  497. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-sae,MODE,11ng")
  498. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,WPA2-SAE,PSK," + 100*'C')
  499. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  500. dev[0].request("SET sae_groups ")
  501. dev[0].connect("test-sae", key_mgmt="SAE", sae_password=100*'C',
  502. scan_freq="2412")
  503. if dev[0].get_status_field('sae_group') != '19':
  504. raise Exception("Expected default SAE group not used")
  505. sigma_dut_cmd_check("ap_reset_default")
  506. finally:
  507. stop_sigma_dut(sigma)
  508. def test_sigma_dut_ap_sae_group(dev, apdev):
  509. """sigma_dut controlled AP with SAE and specific group"""
  510. with HWSimRadio() as (radio, iface):
  511. sigma = start_sigma_dut(iface)
  512. try:
  513. sigma_dut_cmd_check("ap_reset_default")
  514. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-sae,MODE,11ng")
  515. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,WPA2-SAE,PSK,12345678,ECGroupID,20")
  516. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  517. dev[0].request("SET sae_groups ")
  518. dev[0].connect("test-sae", key_mgmt="SAE", psk="12345678",
  519. scan_freq="2412")
  520. if dev[0].get_status_field('sae_group') != '20':
  521. raise Exception("Expected SAE group not used")
  522. sigma_dut_cmd_check("ap_reset_default")
  523. finally:
  524. stop_sigma_dut(sigma)
  525. def test_sigma_dut_ap_psk_sae(dev, apdev):
  526. """sigma_dut controlled AP with PSK+SAE"""
  527. with HWSimRadio() as (radio, iface):
  528. sigma = start_sigma_dut(iface)
  529. try:
  530. sigma_dut_cmd_check("ap_reset_default")
  531. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-sae,MODE,11ng")
  532. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,WPA2-PSK-SAE,PSK,12345678")
  533. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  534. dev[0].request("SET sae_groups ")
  535. dev[0].connect("test-sae", key_mgmt="SAE", psk="12345678",
  536. scan_freq="2412")
  537. dev[1].connect("test-sae", psk="12345678", scan_freq="2412")
  538. sigma_dut_cmd_check("ap_reset_default")
  539. finally:
  540. stop_sigma_dut(sigma)
  541. def test_sigma_dut_owe(dev, apdev):
  542. """sigma_dut controlled OWE station"""
  543. try:
  544. run_sigma_dut_owe(dev, apdev)
  545. finally:
  546. dev[0].set("ignore_old_scan_res", "0")
  547. def run_sigma_dut_owe(dev, apdev):
  548. if "OWE" not in dev[0].get_capability("key_mgmt"):
  549. raise HwsimSkip("OWE not supported")
  550. ifname = dev[0].ifname
  551. sigma = start_sigma_dut(ifname)
  552. try:
  553. params = { "ssid": "owe",
  554. "wpa": "2",
  555. "wpa_key_mgmt": "OWE",
  556. "rsn_pairwise": "CCMP" }
  557. hapd = hostapd.add_ap(apdev[0], params)
  558. bssid = hapd.own_addr()
  559. sigma_dut_cmd_check("sta_reset_default,interface,%s,prog,WPA3" % ifname)
  560. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  561. sigma_dut_cmd_check("sta_set_security,interface,%s,ssid,owe,Type,OWE" % ifname)
  562. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,owe,channel,1" % ifname)
  563. sigma_dut_wait_connected(ifname)
  564. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  565. dev[0].dump_monitor()
  566. sigma_dut_cmd("sta_reassoc,interface,%s,Channel,1,bssid,%s" % (ifname, bssid))
  567. dev[0].wait_connected()
  568. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  569. dev[0].wait_disconnected()
  570. dev[0].dump_monitor()
  571. sigma_dut_cmd_check("sta_reset_default,interface,%s,prog,WPA3" % ifname)
  572. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  573. sigma_dut_cmd_check("sta_set_security,interface,%s,ssid,owe,Type,OWE,ECGroupID,20" % ifname)
  574. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,owe,channel,1" % ifname)
  575. sigma_dut_wait_connected(ifname)
  576. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  577. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  578. dev[0].wait_disconnected()
  579. dev[0].dump_monitor()
  580. sigma_dut_cmd_check("sta_reset_default,interface,%s,prog,WPA3" % ifname)
  581. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  582. sigma_dut_cmd_check("sta_set_security,interface,%s,ssid,owe,Type,OWE,ECGroupID,0" % ifname)
  583. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,owe,channel,1" % ifname)
  584. ev = dev[0].wait_event(["CTRL-EVENT-ASSOC-REJECT"], timeout=10)
  585. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  586. if ev is None:
  587. raise Exception("Association not rejected")
  588. if "status_code=77" not in ev:
  589. raise Exception("Unexpected rejection reason: " + ev)
  590. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  591. finally:
  592. stop_sigma_dut(sigma)
  593. def test_sigma_dut_ap_owe(dev, apdev):
  594. """sigma_dut controlled AP with OWE"""
  595. if "OWE" not in dev[0].get_capability("key_mgmt"):
  596. raise HwsimSkip("OWE not supported")
  597. with HWSimRadio() as (radio, iface):
  598. sigma = start_sigma_dut(iface)
  599. try:
  600. sigma_dut_cmd_check("ap_reset_default,NAME,AP,Program,WPA3")
  601. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,owe,MODE,11ng")
  602. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,OWE")
  603. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  604. dev[0].connect("owe", key_mgmt="OWE", scan_freq="2412")
  605. sigma_dut_cmd_check("ap_reset_default")
  606. finally:
  607. stop_sigma_dut(sigma)
  608. def test_sigma_dut_ap_owe_ecgroupid(dev, apdev):
  609. """sigma_dut controlled AP with OWE and ECGroupID"""
  610. if "OWE" not in dev[0].get_capability("key_mgmt"):
  611. raise HwsimSkip("OWE not supported")
  612. with HWSimRadio() as (radio, iface):
  613. sigma = start_sigma_dut(iface)
  614. try:
  615. sigma_dut_cmd_check("ap_reset_default,NAME,AP,Program,WPA3")
  616. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,owe,MODE,11ng")
  617. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,OWE,ECGroupID,20 21,PMF,Required")
  618. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  619. dev[0].connect("owe", key_mgmt="OWE", ieee80211w="2",
  620. owe_group="20", scan_freq="2412")
  621. dev[0].request("REMOVE_NETWORK all")
  622. dev[0].wait_disconnected()
  623. dev[0].connect("owe", key_mgmt="OWE", ieee80211w="2",
  624. owe_group="21", scan_freq="2412")
  625. dev[0].request("REMOVE_NETWORK all")
  626. dev[0].wait_disconnected()
  627. dev[0].connect("owe", key_mgmt="OWE", ieee80211w="2",
  628. owe_group="19", scan_freq="2412", wait_connect=False)
  629. ev = dev[0].wait_event(["CTRL-EVENT-ASSOC-REJECT"], timeout=10)
  630. dev[0].request("DISCONNECT")
  631. if ev is None:
  632. raise Exception("Association not rejected")
  633. if "status_code=77" not in ev:
  634. raise Exception("Unexpected rejection reason: " + ev)
  635. dev[0].dump_monitor()
  636. sigma_dut_cmd_check("ap_reset_default")
  637. finally:
  638. stop_sigma_dut(sigma)
  639. def test_sigma_dut_ap_owe_transition_mode(dev, apdev, params):
  640. """sigma_dut controlled AP with OWE and transition mode"""
  641. if "OWE" not in dev[0].get_capability("key_mgmt"):
  642. raise HwsimSkip("OWE not supported")
  643. logdir = os.path.join(params['logdir'],
  644. "sigma_dut_ap_owe_transition_mode.sigma-hostapd")
  645. with HWSimRadio() as (radio, iface):
  646. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  647. try:
  648. sigma_dut_cmd_check("ap_reset_default,NAME,AP,Program,WPA3")
  649. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,WLAN_TAG,1,CHANNEL,1,SSID,owe,MODE,11ng")
  650. sigma_dut_cmd_check("ap_set_security,NAME,AP,WLAN_TAG,1,KEYMGNT,OWE")
  651. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,WLAN_TAG,2,CHANNEL,1,SSID,owe,MODE,11ng")
  652. sigma_dut_cmd_check("ap_set_security,NAME,AP,WLAN_TAG,2,KEYMGNT,NONE")
  653. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  654. res1 = sigma_dut_cmd_check("ap_get_mac_address,NAME,AP,WLAN_TAG,1,Interface,24G")
  655. res2 = sigma_dut_cmd_check("ap_get_mac_address,NAME,AP,WLAN_TAG,2,Interface,24G")
  656. dev[0].connect("owe", key_mgmt="OWE", scan_freq="2412")
  657. dev[1].connect("owe", key_mgmt="NONE", scan_freq="2412")
  658. if dev[0].get_status_field('bssid') not in res1:
  659. raise Exception("Unexpected ap_get_mac_address WLAN_TAG,1: " + res1)
  660. if dev[1].get_status_field('bssid') not in res2:
  661. raise Exception("Unexpected ap_get_mac_address WLAN_TAG,2: " + res2)
  662. sigma_dut_cmd_check("ap_reset_default")
  663. finally:
  664. stop_sigma_dut(sigma)
  665. def dpp_init_enrollee(dev, id1):
  666. logger.info("Starting DPP initiator/enrollee in a thread")
  667. time.sleep(1)
  668. cmd = "DPP_AUTH_INIT peer=%d role=enrollee" % id1
  669. if "OK" not in dev.request(cmd):
  670. raise Exception("Failed to initiate DPP Authentication")
  671. ev = dev.wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  672. if ev is None:
  673. raise Exception("DPP configuration not completed (Enrollee)")
  674. logger.info("DPP initiator/enrollee done")
  675. def test_sigma_dut_dpp_qr_resp_1(dev, apdev):
  676. """sigma_dut DPP/QR responder (conf index 1)"""
  677. run_sigma_dut_dpp_qr_resp(dev, apdev, 1)
  678. def test_sigma_dut_dpp_qr_resp_2(dev, apdev):
  679. """sigma_dut DPP/QR responder (conf index 2)"""
  680. run_sigma_dut_dpp_qr_resp(dev, apdev, 2)
  681. def test_sigma_dut_dpp_qr_resp_3(dev, apdev):
  682. """sigma_dut DPP/QR responder (conf index 3)"""
  683. run_sigma_dut_dpp_qr_resp(dev, apdev, 3)
  684. def test_sigma_dut_dpp_qr_resp_4(dev, apdev):
  685. """sigma_dut DPP/QR responder (conf index 4)"""
  686. run_sigma_dut_dpp_qr_resp(dev, apdev, 4)
  687. def run_sigma_dut_dpp_qr_resp(dev, apdev, conf_idx):
  688. check_dpp_capab(dev[0])
  689. check_dpp_capab(dev[1])
  690. sigma = start_sigma_dut(dev[0].ifname)
  691. try:
  692. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,GetLocalBootstrap,DPPCryptoIdentifier,P-256,DPPBS,QR")
  693. if "status,COMPLETE" not in res:
  694. raise Exception("dev_exec_action did not succeed: " + res)
  695. hex = res.split(',')[3]
  696. uri = hex.decode('hex')
  697. logger.info("URI from sigma_dut: " + uri)
  698. res = dev[1].request("DPP_QR_CODE " + uri)
  699. if "FAIL" in res:
  700. raise Exception("Failed to parse QR Code URI")
  701. id1 = int(res)
  702. t = threading.Thread(target=dpp_init_enrollee, args=(dev[1], id1))
  703. t.start()
  704. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Responder,DPPConfIndex,%d,DPPAuthDirection,Single,DPPProvisioningRole,Configurator,DPPConfigEnrolleeRole,STA,DPPSigningKeyECC,P-256,DPPConfigEnrolleeRole,STA,DPPBS,QR,DPPTimeout,6" % conf_idx, timeout=10)
  705. t.join()
  706. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK" not in res:
  707. raise Exception("Unexpected result: " + res)
  708. finally:
  709. stop_sigma_dut(sigma)
  710. def test_sigma_dut_dpp_qr_init_enrollee(dev, apdev):
  711. """sigma_dut DPP/QR initiator as Enrollee"""
  712. check_dpp_capab(dev[0])
  713. check_dpp_capab(dev[1])
  714. csign = "30770201010420768240a3fc89d6662d9782f120527fe7fb9edc6366ab0b9c7dde96125cfd250fa00a06082a8648ce3d030107a144034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  715. csign_pub = "3059301306072a8648ce3d020106082a8648ce3d030107034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  716. ap_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJwYWtZbXVzd1dCdWpSYTl5OEsweDViaTVrT3VNT3dzZHRlaml2UG55ZHZzIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6ImFwIn1dLCJuZXRBY2Nlc3NLZXkiOnsia3R5IjoiRUMiLCJjcnYiOiJQLTI1NiIsIngiOiIybU5vNXZuRkI5bEw3d1VWb1hJbGVPYzBNSEE1QXZKbnpwZXZULVVTYzVNIiwieSI6IlhzS3dqVHJlLTg5WWdpU3pKaG9CN1haeUttTU05OTl3V2ZaSVl0bi01Q3MifX0.XhjFpZgcSa7G2lHy0OCYTvaZFRo5Hyx6b7g7oYyusLC7C_73AJ4_BxEZQVYJXAtDuGvb3dXSkHEKxREP9Q6Qeg"
  717. ap_netaccesskey = "30770201010420ceba752db2ad5200fa7bc565b9c05c69b7eb006751b0b329b0279de1c19ca67ca00a06082a8648ce3d030107a14403420004da6368e6f9c507d94bef0515a1722578e73430703902f267ce97af4fe51273935ec2b08d3adefbcf588224b3261a01ed76722a630cf7df7059f64862d9fee42b"
  718. params = { "ssid": "DPPNET01",
  719. "wpa": "2",
  720. "wpa_key_mgmt": "DPP",
  721. "rsn_pairwise": "CCMP",
  722. "dpp_connector": ap_connector,
  723. "dpp_csign": csign_pub,
  724. "dpp_netaccesskey": ap_netaccesskey }
  725. try:
  726. hapd = hostapd.add_ap(apdev[0], params)
  727. except:
  728. raise HwsimSkip("DPP not supported")
  729. sigma = start_sigma_dut(dev[0].ifname)
  730. try:
  731. dev[0].set("dpp_config_processing", "2")
  732. cmd = "DPP_CONFIGURATOR_ADD key=" + csign
  733. res = dev[1].request(cmd);
  734. if "FAIL" in res:
  735. raise Exception("Failed to add configurator")
  736. conf_id = int(res)
  737. addr = dev[1].own_addr().replace(':', '')
  738. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  739. res = dev[1].request(cmd)
  740. if "FAIL" in res:
  741. raise Exception("Failed to generate bootstrapping info")
  742. id0 = int(res)
  743. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  744. dev[1].set("dpp_configurator_params",
  745. " conf=sta-dpp ssid=%s configurator=%d" % ("DPPNET01".encode("hex"), conf_id));
  746. cmd = "DPP_LISTEN 2437 role=configurator"
  747. if "OK" not in dev[1].request(cmd):
  748. raise Exception("Failed to start listen operation")
  749. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  750. if "status,COMPLETE" not in res:
  751. raise Exception("dev_exec_action did not succeed: " + res)
  752. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPAuthDirection,Single,DPPProvisioningRole,Enrollee,DPPBS,QR,DPPTimeout,6,DPPWaitForConnect,Yes", timeout=10)
  753. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK,NetworkIntroResult,OK,NetworkConnectResult,OK" not in res:
  754. raise Exception("Unexpected result: " + res)
  755. finally:
  756. dev[0].set("dpp_config_processing", "0")
  757. stop_sigma_dut(sigma)
  758. def test_sigma_dut_dpp_qr_mutual_init_enrollee(dev, apdev):
  759. """sigma_dut DPP/QR (mutual) initiator as Enrollee"""
  760. check_dpp_capab(dev[0])
  761. check_dpp_capab(dev[1])
  762. csign = "30770201010420768240a3fc89d6662d9782f120527fe7fb9edc6366ab0b9c7dde96125cfd250fa00a06082a8648ce3d030107a144034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  763. csign_pub = "3059301306072a8648ce3d020106082a8648ce3d030107034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  764. ap_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJwYWtZbXVzd1dCdWpSYTl5OEsweDViaTVrT3VNT3dzZHRlaml2UG55ZHZzIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6ImFwIn1dLCJuZXRBY2Nlc3NLZXkiOnsia3R5IjoiRUMiLCJjcnYiOiJQLTI1NiIsIngiOiIybU5vNXZuRkI5bEw3d1VWb1hJbGVPYzBNSEE1QXZKbnpwZXZULVVTYzVNIiwieSI6IlhzS3dqVHJlLTg5WWdpU3pKaG9CN1haeUttTU05OTl3V2ZaSVl0bi01Q3MifX0.XhjFpZgcSa7G2lHy0OCYTvaZFRo5Hyx6b7g7oYyusLC7C_73AJ4_BxEZQVYJXAtDuGvb3dXSkHEKxREP9Q6Qeg"
  765. ap_netaccesskey = "30770201010420ceba752db2ad5200fa7bc565b9c05c69b7eb006751b0b329b0279de1c19ca67ca00a06082a8648ce3d030107a14403420004da6368e6f9c507d94bef0515a1722578e73430703902f267ce97af4fe51273935ec2b08d3adefbcf588224b3261a01ed76722a630cf7df7059f64862d9fee42b"
  766. params = { "ssid": "DPPNET01",
  767. "wpa": "2",
  768. "wpa_key_mgmt": "DPP",
  769. "rsn_pairwise": "CCMP",
  770. "dpp_connector": ap_connector,
  771. "dpp_csign": csign_pub,
  772. "dpp_netaccesskey": ap_netaccesskey }
  773. try:
  774. hapd = hostapd.add_ap(apdev[0], params)
  775. except:
  776. raise HwsimSkip("DPP not supported")
  777. sigma = start_sigma_dut(dev[0].ifname)
  778. try:
  779. dev[0].set("dpp_config_processing", "2")
  780. cmd = "DPP_CONFIGURATOR_ADD key=" + csign
  781. res = dev[1].request(cmd);
  782. if "FAIL" in res:
  783. raise Exception("Failed to add configurator")
  784. conf_id = int(res)
  785. addr = dev[1].own_addr().replace(':', '')
  786. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  787. res = dev[1].request(cmd)
  788. if "FAIL" in res:
  789. raise Exception("Failed to generate bootstrapping info")
  790. id0 = int(res)
  791. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  792. dev[1].set("dpp_configurator_params",
  793. " conf=sta-dpp ssid=%s configurator=%d" % ("DPPNET01".encode("hex"), conf_id));
  794. cmd = "DPP_LISTEN 2437 role=configurator qr=mutual"
  795. if "OK" not in dev[1].request(cmd):
  796. raise Exception("Failed to start listen operation")
  797. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,GetLocalBootstrap,DPPCryptoIdentifier,P-256,DPPBS,QR")
  798. if "status,COMPLETE" not in res:
  799. raise Exception("dev_exec_action did not succeed: " + res)
  800. hex = res.split(',')[3]
  801. uri = hex.decode('hex')
  802. logger.info("URI from sigma_dut: " + uri)
  803. res = dev[1].request("DPP_QR_CODE " + uri)
  804. if "FAIL" in res:
  805. raise Exception("Failed to parse QR Code URI")
  806. id1 = int(res)
  807. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  808. if "status,COMPLETE" not in res:
  809. raise Exception("dev_exec_action did not succeed: " + res)
  810. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPAuthDirection,Mutual,DPPProvisioningRole,Enrollee,DPPBS,QR,DPPTimeout,6,DPPWaitForConnect,Yes", timeout=10)
  811. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK,NetworkIntroResult,OK,NetworkConnectResult,OK" not in res:
  812. raise Exception("Unexpected result: " + res)
  813. finally:
  814. dev[0].set("dpp_config_processing", "0")
  815. stop_sigma_dut(sigma)
  816. def dpp_init_conf_mutual(dev, id1, conf_id, own_id=None):
  817. time.sleep(1)
  818. logger.info("Starting DPP initiator/configurator in a thread")
  819. cmd = "DPP_AUTH_INIT peer=%d conf=sta-dpp ssid=%s configurator=%d" % (id1, "DPPNET01".encode("hex"), conf_id)
  820. if own_id is not None:
  821. cmd += " own=%d" % own_id
  822. if "OK" not in dev.request(cmd):
  823. raise Exception("Failed to initiate DPP Authentication")
  824. ev = dev.wait_event(["DPP-CONF-SENT"], timeout=10)
  825. if ev is None:
  826. raise Exception("DPP configuration not completed (Configurator)")
  827. logger.info("DPP initiator/configurator done")
  828. def test_sigma_dut_dpp_qr_mutual_resp_enrollee(dev, apdev):
  829. """sigma_dut DPP/QR (mutual) responder as Enrollee"""
  830. check_dpp_capab(dev[0])
  831. check_dpp_capab(dev[1])
  832. csign = "30770201010420768240a3fc89d6662d9782f120527fe7fb9edc6366ab0b9c7dde96125cfd250fa00a06082a8648ce3d030107a144034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  833. csign_pub = "3059301306072a8648ce3d020106082a8648ce3d030107034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  834. ap_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJwYWtZbXVzd1dCdWpSYTl5OEsweDViaTVrT3VNT3dzZHRlaml2UG55ZHZzIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6ImFwIn1dLCJuZXRBY2Nlc3NLZXkiOnsia3R5IjoiRUMiLCJjcnYiOiJQLTI1NiIsIngiOiIybU5vNXZuRkI5bEw3d1VWb1hJbGVPYzBNSEE1QXZKbnpwZXZULVVTYzVNIiwieSI6IlhzS3dqVHJlLTg5WWdpU3pKaG9CN1haeUttTU05OTl3V2ZaSVl0bi01Q3MifX0.XhjFpZgcSa7G2lHy0OCYTvaZFRo5Hyx6b7g7oYyusLC7C_73AJ4_BxEZQVYJXAtDuGvb3dXSkHEKxREP9Q6Qeg"
  835. ap_netaccesskey = "30770201010420ceba752db2ad5200fa7bc565b9c05c69b7eb006751b0b329b0279de1c19ca67ca00a06082a8648ce3d030107a14403420004da6368e6f9c507d94bef0515a1722578e73430703902f267ce97af4fe51273935ec2b08d3adefbcf588224b3261a01ed76722a630cf7df7059f64862d9fee42b"
  836. params = { "ssid": "DPPNET01",
  837. "wpa": "2",
  838. "wpa_key_mgmt": "DPP",
  839. "rsn_pairwise": "CCMP",
  840. "dpp_connector": ap_connector,
  841. "dpp_csign": csign_pub,
  842. "dpp_netaccesskey": ap_netaccesskey }
  843. try:
  844. hapd = hostapd.add_ap(apdev[0], params)
  845. except:
  846. raise HwsimSkip("DPP not supported")
  847. sigma = start_sigma_dut(dev[0].ifname)
  848. try:
  849. dev[0].set("dpp_config_processing", "2")
  850. cmd = "DPP_CONFIGURATOR_ADD key=" + csign
  851. res = dev[1].request(cmd);
  852. if "FAIL" in res:
  853. raise Exception("Failed to add configurator")
  854. conf_id = int(res)
  855. addr = dev[1].own_addr().replace(':', '')
  856. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  857. res = dev[1].request(cmd)
  858. if "FAIL" in res:
  859. raise Exception("Failed to generate bootstrapping info")
  860. id0 = int(res)
  861. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  862. dev[1].set("dpp_configurator_params",
  863. " conf=sta-dpp ssid=%s configurator=%d" % ("DPPNET01".encode("hex"), conf_id));
  864. cmd = "DPP_LISTEN 2437 role=configurator qr=mutual"
  865. if "OK" not in dev[1].request(cmd):
  866. raise Exception("Failed to start listen operation")
  867. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,GetLocalBootstrap,DPPCryptoIdentifier,P-256,DPPBS,QR")
  868. if "status,COMPLETE" not in res:
  869. raise Exception("dev_exec_action did not succeed: " + res)
  870. hex = res.split(',')[3]
  871. uri = hex.decode('hex')
  872. logger.info("URI from sigma_dut: " + uri)
  873. res = dev[1].request("DPP_QR_CODE " + uri)
  874. if "FAIL" in res:
  875. raise Exception("Failed to parse QR Code URI")
  876. id1 = int(res)
  877. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  878. if "status,COMPLETE" not in res:
  879. raise Exception("dev_exec_action did not succeed: " + res)
  880. t = threading.Thread(target=dpp_init_conf_mutual,
  881. args=(dev[1], id1, conf_id, id0))
  882. t.start()
  883. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Responder,DPPAuthDirection,Mutual,DPPProvisioningRole,Enrollee,DPPBS,QR,DPPTimeout,20,DPPWaitForConnect,Yes", timeout=25)
  884. t.join()
  885. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK,NetworkIntroResult,OK,NetworkConnectResult,OK" not in res:
  886. raise Exception("Unexpected result: " + res)
  887. finally:
  888. dev[0].set("dpp_config_processing", "0")
  889. stop_sigma_dut(sigma)
  890. def test_sigma_dut_dpp_qr_init_enrollee_psk(dev, apdev):
  891. """sigma_dut DPP/QR initiator as Enrollee (PSK)"""
  892. check_dpp_capab(dev[0])
  893. check_dpp_capab(dev[1])
  894. params = hostapd.wpa2_params(ssid="DPPNET01",
  895. passphrase="ThisIsDppPassphrase")
  896. hapd = hostapd.add_ap(apdev[0], params)
  897. sigma = start_sigma_dut(dev[0].ifname)
  898. try:
  899. dev[0].set("dpp_config_processing", "2")
  900. cmd = "DPP_CONFIGURATOR_ADD"
  901. res = dev[1].request(cmd);
  902. if "FAIL" in res:
  903. raise Exception("Failed to add configurator")
  904. conf_id = int(res)
  905. addr = dev[1].own_addr().replace(':', '')
  906. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  907. res = dev[1].request(cmd)
  908. if "FAIL" in res:
  909. raise Exception("Failed to generate bootstrapping info")
  910. id0 = int(res)
  911. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  912. dev[1].set("dpp_configurator_params",
  913. " conf=sta-psk ssid=%s pass=%s configurator=%d" % ("DPPNET01".encode("hex"), "ThisIsDppPassphrase".encode("hex"), conf_id));
  914. cmd = "DPP_LISTEN 2437 role=configurator"
  915. if "OK" not in dev[1].request(cmd):
  916. raise Exception("Failed to start listen operation")
  917. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  918. if "status,COMPLETE" not in res:
  919. raise Exception("dev_exec_action did not succeed: " + res)
  920. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPAuthDirection,Single,DPPProvisioningRole,Enrollee,DPPBS,QR,DPPTimeout,6,DPPWaitForConnect,Yes", timeout=10)
  921. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK,NetworkConnectResult,OK" not in res:
  922. raise Exception("Unexpected result: " + res)
  923. finally:
  924. dev[0].set("dpp_config_processing", "0")
  925. stop_sigma_dut(sigma)
  926. def test_sigma_dut_dpp_qr_init_configurator_1(dev, apdev):
  927. """sigma_dut DPP/QR initiator as Configurator (conf index 1)"""
  928. run_sigma_dut_dpp_qr_init_configurator(dev, apdev, 1)
  929. def test_sigma_dut_dpp_qr_init_configurator_2(dev, apdev):
  930. """sigma_dut DPP/QR initiator as Configurator (conf index 2)"""
  931. run_sigma_dut_dpp_qr_init_configurator(dev, apdev, 2)
  932. def test_sigma_dut_dpp_qr_init_configurator_3(dev, apdev):
  933. """sigma_dut DPP/QR initiator as Configurator (conf index 3)"""
  934. run_sigma_dut_dpp_qr_init_configurator(dev, apdev, 3)
  935. def test_sigma_dut_dpp_qr_init_configurator_4(dev, apdev):
  936. """sigma_dut DPP/QR initiator as Configurator (conf index 4)"""
  937. run_sigma_dut_dpp_qr_init_configurator(dev, apdev, 4)
  938. def run_sigma_dut_dpp_qr_init_configurator(dev, apdev, conf_idx):
  939. check_dpp_capab(dev[0])
  940. check_dpp_capab(dev[1])
  941. sigma = start_sigma_dut(dev[0].ifname)
  942. try:
  943. addr = dev[1].own_addr().replace(':', '')
  944. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  945. res = dev[1].request(cmd)
  946. if "FAIL" in res:
  947. raise Exception("Failed to generate bootstrapping info")
  948. id0 = int(res)
  949. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  950. cmd = "DPP_LISTEN 2437 role=enrollee"
  951. if "OK" not in dev[1].request(cmd):
  952. raise Exception("Failed to start listen operation")
  953. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  954. if "status,COMPLETE" not in res:
  955. raise Exception("dev_exec_action did not succeed: " + res)
  956. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPAuthDirection,Single,DPPProvisioningRole,Configurator,DPPConfIndex,%d,DPPSigningKeyECC,P-256,DPPConfigEnrolleeRole,STA,DPPBS,QR,DPPTimeout,6" % conf_idx)
  957. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK" not in res:
  958. raise Exception("Unexpected result: " + res)
  959. finally:
  960. stop_sigma_dut(sigma)
  961. def test_sigma_dut_dpp_pkex_init_configurator(dev, apdev):
  962. """sigma_dut DPP/PKEX initiator as Configurator"""
  963. check_dpp_capab(dev[0])
  964. check_dpp_capab(dev[1])
  965. sigma = start_sigma_dut(dev[0].ifname)
  966. try:
  967. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  968. res = dev[1].request(cmd)
  969. if "FAIL" in res:
  970. raise Exception("Failed to generate bootstrapping info")
  971. id1 = int(res)
  972. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id1)
  973. res = dev[1].request(cmd)
  974. if "FAIL" in res:
  975. raise Exception("Failed to set PKEX data (responder)")
  976. cmd = "DPP_LISTEN 2437 role=enrollee"
  977. if "OK" not in dev[1].request(cmd):
  978. raise Exception("Failed to start listen operation")
  979. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPAuthDirection,Mutual,DPPProvisioningRole,Configurator,DPPConfIndex,1,DPPSigningKeyECC,P-256,DPPConfigEnrolleeRole,STA,DPPBS,PKEX,DPPPKEXCodeIdentifier,test,DPPPKEXCode,secret,DPPTimeout,6")
  980. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK" not in res:
  981. raise Exception("Unexpected result: " + res)
  982. finally:
  983. stop_sigma_dut(sigma)
  984. def dpp_init_conf(dev, id1, conf, conf_id, extra):
  985. logger.info("Starting DPP initiator/configurator in a thread")
  986. cmd = "DPP_AUTH_INIT peer=%d conf=%s %s configurator=%d" % (id1, conf, extra, conf_id)
  987. if "OK" not in dev.request(cmd):
  988. raise Exception("Failed to initiate DPP Authentication")
  989. ev = dev.wait_event(["DPP-CONF-SENT"], timeout=5)
  990. if ev is None:
  991. raise Exception("DPP configuration not completed (Configurator)")
  992. logger.info("DPP initiator/configurator done")
  993. def test_sigma_dut_ap_dpp_qr(dev, apdev, params):
  994. """sigma_dut controlled AP (DPP)"""
  995. run_sigma_dut_ap_dpp_qr(dev, apdev, params, "ap-dpp", "sta-dpp")
  996. def test_sigma_dut_ap_dpp_qr_legacy(dev, apdev, params):
  997. """sigma_dut controlled AP (legacy)"""
  998. run_sigma_dut_ap_dpp_qr(dev, apdev, params, "ap-psk", "sta-psk",
  999. extra="pass=%s" % "qwertyuiop".encode("hex"))
  1000. def test_sigma_dut_ap_dpp_qr_legacy_psk(dev, apdev, params):
  1001. """sigma_dut controlled AP (legacy)"""
  1002. run_sigma_dut_ap_dpp_qr(dev, apdev, params, "ap-psk", "sta-psk",
  1003. extra="psk=%s" % (32*"12"))
  1004. def run_sigma_dut_ap_dpp_qr(dev, apdev, params, ap_conf, sta_conf, extra=""):
  1005. logdir = os.path.join(params['logdir'], "sigma_dut_ap_dpp_qr.sigma-hostapd")
  1006. with HWSimRadio() as (radio, iface):
  1007. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  1008. try:
  1009. sigma_dut_cmd_check("ap_reset_default,program,DPP")
  1010. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,GetLocalBootstrap,DPPCryptoIdentifier,P-256,DPPBS,QR")
  1011. if "status,COMPLETE" not in res:
  1012. raise Exception("dev_exec_action did not succeed: " + res)
  1013. hex = res.split(',')[3]
  1014. uri = hex.decode('hex')
  1015. logger.info("URI from sigma_dut: " + uri)
  1016. cmd = "DPP_CONFIGURATOR_ADD"
  1017. res = dev[0].request(cmd);
  1018. if "FAIL" in res:
  1019. raise Exception("Failed to add configurator")
  1020. conf_id = int(res)
  1021. res = dev[0].request("DPP_QR_CODE " + uri)
  1022. if "FAIL" in res:
  1023. raise Exception("Failed to parse QR Code URI")
  1024. id1 = int(res)
  1025. t = threading.Thread(target=dpp_init_conf,
  1026. args=(dev[0], id1, ap_conf, conf_id, extra))
  1027. t.start()
  1028. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Responder,DPPAuthDirection,Single,DPPProvisioningRole,Enrollee,DPPBS,QR,DPPTimeout,6")
  1029. t.join()
  1030. if "ConfResult,OK" not in res:
  1031. raise Exception("Unexpected result: " + res)
  1032. addr = dev[1].own_addr().replace(':', '')
  1033. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1034. res = dev[1].request(cmd)
  1035. if "FAIL" in res:
  1036. raise Exception("Failed to generate bootstrapping info")
  1037. id1 = int(res)
  1038. uri1 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1)
  1039. res = dev[0].request("DPP_QR_CODE " + uri1)
  1040. if "FAIL" in res:
  1041. raise Exception("Failed to parse QR Code URI")
  1042. id0b = int(res)
  1043. dev[1].set("dpp_config_processing", "2")
  1044. cmd = "DPP_LISTEN 2412"
  1045. if "OK" not in dev[1].request(cmd):
  1046. raise Exception("Failed to start listen operation")
  1047. cmd = "DPP_AUTH_INIT peer=%d conf=%s %s configurator=%d" % (id0b, sta_conf, extra, conf_id)
  1048. if "OK" not in dev[0].request(cmd):
  1049. raise Exception("Failed to initiate DPP Authentication")
  1050. dev[1].wait_connected()
  1051. sigma_dut_cmd_check("ap_reset_default")
  1052. finally:
  1053. dev[1].set("dpp_config_processing", "0")
  1054. stop_sigma_dut(sigma)
  1055. def test_sigma_dut_ap_dpp_pkex_responder(dev, apdev, params):
  1056. """sigma_dut controlled AP as DPP PKEX responder"""
  1057. logdir = os.path.join(params['logdir'],
  1058. "sigma_dut_ap_dpp_pkex_responder.sigma-hostapd")
  1059. with HWSimRadio() as (radio, iface):
  1060. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  1061. try:
  1062. run_sigma_dut_ap_dpp_pkex_responder(dev, apdev)
  1063. finally:
  1064. stop_sigma_dut(sigma)
  1065. def dpp_init_conf_pkex(dev, conf_id):
  1066. logger.info("Starting DPP PKEX initiator/configurator in a thread")
  1067. time.sleep(1.5)
  1068. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1069. res = dev.request(cmd)
  1070. if "FAIL" in res:
  1071. raise Exception("Failed to generate bootstrapping info")
  1072. id = int(res)
  1073. cmd = "DPP_PKEX_ADD own=%d init=1 conf=ap-dpp configurator=%d code=password" % (id, conf_id)
  1074. res = dev.request(cmd)
  1075. if "FAIL" in res:
  1076. raise Exception("Failed to initiate DPP PKEX")
  1077. ev = dev.wait_event(["DPP-CONF-SENT"], timeout=5)
  1078. if ev is None:
  1079. raise Exception("DPP configuration not completed (Configurator)")
  1080. logger.info("DPP initiator/configurator done")
  1081. def run_sigma_dut_ap_dpp_pkex_responder(dev, apdev):
  1082. sigma_dut_cmd_check("ap_reset_default,program,DPP")
  1083. cmd = "DPP_CONFIGURATOR_ADD"
  1084. res = dev[0].request(cmd);
  1085. if "FAIL" in res:
  1086. raise Exception("Failed to add configurator")
  1087. conf_id = int(res)
  1088. t = threading.Thread(target=dpp_init_conf_pkex, args=(dev[0], conf_id))
  1089. t.start()
  1090. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Responder,DPPAuthDirection,Mutual,DPPProvisioningRole,Enrollee,DPPBS,PKEX,DPPPKEXCode,password,DPPTimeout,6", timeout=10)
  1091. t.join()
  1092. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK" not in res:
  1093. raise Exception("Unexpected result: " + res)
  1094. sigma_dut_cmd_check("ap_reset_default")
  1095. def dpp_proto_init(dev, id1):
  1096. time.sleep(1)
  1097. logger.info("Starting DPP initiator/configurator in a thread")
  1098. cmd = "DPP_CONFIGURATOR_ADD"
  1099. res = dev.request(cmd);
  1100. if "FAIL" in res:
  1101. raise Exception("Failed to add configurator")
  1102. conf_id = int(res)
  1103. cmd = "DPP_AUTH_INIT peer=%d conf=sta-dpp configurator=%d" % (id1, conf_id)
  1104. if "OK" not in dev.request(cmd):
  1105. raise Exception("Failed to initiate DPP Authentication")
  1106. def test_sigma_dut_dpp_proto_initiator(dev, apdev):
  1107. """sigma_dut DPP protocol testing - Initiator"""
  1108. check_dpp_capab(dev[0])
  1109. check_dpp_capab(dev[1])
  1110. tests = [ ("InvalidValue", "AuthenticationRequest", "WrappedData",
  1111. "BootstrapResult,OK,AuthResult,Errorsent",
  1112. None),
  1113. ("InvalidValue", "AuthenticationConfirm", "WrappedData",
  1114. "BootstrapResult,OK,AuthResult,Errorsent",
  1115. None),
  1116. ("MissingAttribute", "AuthenticationRequest", "InitCapabilities",
  1117. "BootstrapResult,OK,AuthResult,Errorsent",
  1118. "Missing or invalid I-capabilities"),
  1119. ("InvalidValue", "AuthenticationConfirm", "InitAuthTag",
  1120. "BootstrapResult,OK,AuthResult,Errorsent",
  1121. "Mismatching Initiator Authenticating Tag"),
  1122. ("MissingAttribute", "ConfigurationResponse", "EnrolleeNonce",
  1123. "BootstrapResult,OK,AuthResult,OK,ConfResult,Errorsent",
  1124. "Missing or invalid Enrollee Nonce attribute") ]
  1125. for step, frame, attr, result, fail in tests:
  1126. dev[0].request("FLUSH")
  1127. dev[1].request("FLUSH")
  1128. sigma = start_sigma_dut(dev[0].ifname)
  1129. try:
  1130. run_sigma_dut_dpp_proto_initiator(dev, step, frame, attr, result,
  1131. fail)
  1132. finally:
  1133. stop_sigma_dut(sigma)
  1134. def run_sigma_dut_dpp_proto_initiator(dev, step, frame, attr, result, fail):
  1135. addr = dev[1].own_addr().replace(':', '')
  1136. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  1137. res = dev[1].request(cmd)
  1138. if "FAIL" in res:
  1139. raise Exception("Failed to generate bootstrapping info")
  1140. id0 = int(res)
  1141. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1142. cmd = "DPP_LISTEN 2437 role=enrollee"
  1143. if "OK" not in dev[1].request(cmd):
  1144. raise Exception("Failed to start listen operation")
  1145. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  1146. if "status,COMPLETE" not in res:
  1147. raise Exception("dev_exec_action did not succeed: " + res)
  1148. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPAuthDirection,Single,DPPProvisioningRole,Configurator,DPPConfIndex,1,DPPSigningKeyECC,P-256,DPPConfigEnrolleeRole,STA,DPPBS,QR,DPPTimeout,6,DPPStep,%s,DPPFrameType,%s,DPPIEAttribute,%s" % (step, frame, attr))
  1149. if result not in res:
  1150. raise Exception("Unexpected result: " + res)
  1151. if fail:
  1152. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  1153. if ev is None or fail not in ev:
  1154. raise Exception("Failure not reported correctly: " + str(ev))
  1155. dev[1].request("DPP_STOP_LISTEN")
  1156. dev[0].dump_monitor()
  1157. dev[1].dump_monitor()
  1158. def test_sigma_dut_dpp_proto_responder(dev, apdev):
  1159. """sigma_dut DPP protocol testing - Responder"""
  1160. check_dpp_capab(dev[0])
  1161. check_dpp_capab(dev[1])
  1162. tests = [ ("MissingAttribute", "AuthenticationResponse", "DPPStatus",
  1163. "BootstrapResult,OK,AuthResult,Errorsent",
  1164. "Missing or invalid required DPP Status attribute"),
  1165. ("MissingAttribute", "ConfigurationRequest", "EnrolleeNonce",
  1166. "BootstrapResult,OK,AuthResult,OK,ConfResult,Errorsent",
  1167. "Missing or invalid Enrollee Nonce attribute") ]
  1168. for step, frame, attr, result, fail in tests:
  1169. dev[0].request("FLUSH")
  1170. dev[1].request("FLUSH")
  1171. sigma = start_sigma_dut(dev[0].ifname)
  1172. try:
  1173. run_sigma_dut_dpp_proto_responder(dev, step, frame, attr, result,
  1174. fail)
  1175. finally:
  1176. stop_sigma_dut(sigma)
  1177. def run_sigma_dut_dpp_proto_responder(dev, step, frame, attr, result, fail):
  1178. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,GetLocalBootstrap,DPPCryptoIdentifier,P-256,DPPBS,QR")
  1179. if "status,COMPLETE" not in res:
  1180. raise Exception("dev_exec_action did not succeed: " + res)
  1181. hex = res.split(',')[3]
  1182. uri = hex.decode('hex')
  1183. logger.info("URI from sigma_dut: " + uri)
  1184. res = dev[1].request("DPP_QR_CODE " + uri)
  1185. if "FAIL" in res:
  1186. raise Exception("Failed to parse QR Code URI")
  1187. id1 = int(res)
  1188. t = threading.Thread(target=dpp_proto_init, args=(dev[1], id1))
  1189. t.start()
  1190. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Responder,DPPAuthDirection,Single,DPPProvisioningRole,Enrollee,DPPConfIndex,1,DPPSigningKeyECC,P-256,DPPConfigEnrolleeRole,STA,DPPBS,QR,DPPTimeout,6,DPPStep,%s,DPPFrameType,%s,DPPIEAttribute,%s" % (step, frame, attr), timeout=10)
  1191. t.join()
  1192. if result not in res:
  1193. raise Exception("Unexpected result: " + res)
  1194. if fail:
  1195. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  1196. if ev is None or fail not in ev:
  1197. raise Exception("Failure not reported correctly:" + str(ev))
  1198. dev[1].request("DPP_STOP_LISTEN")
  1199. dev[0].dump_monitor()
  1200. dev[1].dump_monitor()
  1201. def dpp_proto_init_pkex(dev):
  1202. time.sleep(1)
  1203. logger.info("Starting DPP PKEX initiator/configurator in a thread")
  1204. cmd = "DPP_CONFIGURATOR_ADD"
  1205. res = dev.request(cmd);
  1206. if "FAIL" in res:
  1207. raise Exception("Failed to add configurator")
  1208. conf_id = int(res)
  1209. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1210. res = dev.request(cmd)
  1211. if "FAIL" in res:
  1212. raise Exception("Failed to generate bootstrapping info")
  1213. id = int(res)
  1214. cmd = "DPP_PKEX_ADD own=%d init=1 conf=sta-dpp configurator=%d code=secret" % (id, conf_id)
  1215. if "FAIL" in dev.request(cmd):
  1216. raise Exception("Failed to initiate DPP PKEX")
  1217. def test_sigma_dut_dpp_proto_initiator_pkex(dev, apdev):
  1218. """sigma_dut DPP protocol testing - Initiator (PKEX)"""
  1219. check_dpp_capab(dev[0])
  1220. check_dpp_capab(dev[1])
  1221. tests = [ ("InvalidValue", "PKEXCRRequest", "WrappedData",
  1222. "BootstrapResult,Errorsent",
  1223. None),
  1224. ("MissingAttribute", "PKEXExchangeRequest", "FiniteCyclicGroup",
  1225. "BootstrapResult,Errorsent",
  1226. "Missing or invalid Finite Cyclic Group attribute"),
  1227. ("MissingAttribute", "PKEXCRRequest", "BSKey",
  1228. "BootstrapResult,Errorsent",
  1229. "No valid peer bootstrapping key found") ]
  1230. for step, frame, attr, result, fail in tests:
  1231. dev[0].request("FLUSH")
  1232. dev[1].request("FLUSH")
  1233. sigma = start_sigma_dut(dev[0].ifname)
  1234. try:
  1235. run_sigma_dut_dpp_proto_initiator_pkex(dev, step, frame, attr,
  1236. result, fail)
  1237. finally:
  1238. stop_sigma_dut(sigma)
  1239. def run_sigma_dut_dpp_proto_initiator_pkex(dev, step, frame, attr, result, fail):
  1240. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1241. res = dev[1].request(cmd)
  1242. if "FAIL" in res:
  1243. raise Exception("Failed to generate bootstrapping info")
  1244. id1 = int(res)
  1245. cmd = "DPP_PKEX_ADD own=%d code=secret" % (id1)
  1246. res = dev[1].request(cmd)
  1247. if "FAIL" in res:
  1248. raise Exception("Failed to set PKEX data (responder)")
  1249. cmd = "DPP_LISTEN 2437 role=enrollee"
  1250. if "OK" not in dev[1].request(cmd):
  1251. raise Exception("Failed to start listen operation")
  1252. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPAuthDirection,Single,DPPProvisioningRole,Configurator,DPPConfIndex,1,DPPSigningKeyECC,P-256,DPPConfigEnrolleeRole,STA,DPPBS,PKEX,DPPPKEXCode,secret,DPPTimeout,6,DPPStep,%s,DPPFrameType,%s,DPPIEAttribute,%s" % (step, frame, attr))
  1253. if result not in res:
  1254. raise Exception("Unexpected result: " + res)
  1255. if fail:
  1256. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  1257. if ev is None or fail not in ev:
  1258. raise Exception("Failure not reported correctly: " + str(ev))
  1259. dev[1].request("DPP_STOP_LISTEN")
  1260. dev[0].dump_monitor()
  1261. dev[1].dump_monitor()
  1262. def test_sigma_dut_dpp_proto_responder_pkex(dev, apdev):
  1263. """sigma_dut DPP protocol testing - Responder (PKEX)"""
  1264. check_dpp_capab(dev[0])
  1265. check_dpp_capab(dev[1])
  1266. tests = [ ("InvalidValue", "PKEXCRResponse", "WrappedData",
  1267. "BootstrapResult,Errorsent",
  1268. None),
  1269. ("MissingAttribute", "PKEXExchangeResponse", "DPPStatus",
  1270. "BootstrapResult,Errorsent",
  1271. "No DPP Status attribute"),
  1272. ("MissingAttribute", "PKEXCRResponse", "BSKey",
  1273. "BootstrapResult,Errorsent",
  1274. "No valid peer bootstrapping key found") ]
  1275. for step, frame, attr, result, fail in tests:
  1276. dev[0].request("FLUSH")
  1277. dev[1].request("FLUSH")
  1278. sigma = start_sigma_dut(dev[0].ifname)
  1279. try:
  1280. run_sigma_dut_dpp_proto_responder_pkex(dev, step, frame, attr,
  1281. result, fail)
  1282. finally:
  1283. stop_sigma_dut(sigma)
  1284. def run_sigma_dut_dpp_proto_responder_pkex(dev, step, frame, attr, result, fail):
  1285. t = threading.Thread(target=dpp_proto_init_pkex, args=(dev[1],))
  1286. t.start()
  1287. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Responder,DPPAuthDirection,Single,DPPProvisioningRole,Enrollee,DPPConfIndex,1,DPPSigningKeyECC,P-256,DPPConfigEnrolleeRole,STA,DPPBS,PKEX,DPPPKEXCode,secret,DPPTimeout,6,DPPStep,%s,DPPFrameType,%s,DPPIEAttribute,%s" % (step, frame, attr), timeout=10)
  1288. t.join()
  1289. if result not in res:
  1290. raise Exception("Unexpected result: " + res)
  1291. if fail:
  1292. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  1293. if ev is None or fail not in ev:
  1294. raise Exception("Failure not reported correctly:" + str(ev))
  1295. dev[1].request("DPP_STOP_LISTEN")
  1296. dev[0].dump_monitor()
  1297. dev[1].dump_monitor()