test_sigma_dut.py 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208
  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, update_hapd_config
  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. params["ieee80211w"] = "2"
  222. hapd = hostapd.add_ap(apdev[0], params)
  223. sigma_dut_cmd_check("sta_reset_default,interface,%s" % ifname)
  224. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  225. sigma_dut_cmd_check("sta_set_security,interface,%s,ssid,%s,passphrase,%s,type,SAE,encpType,aes-ccmp,keymgmttype,wpa2" % (ifname, "test-sae", "12345678"))
  226. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-sae"))
  227. sigma_dut_wait_connected(ifname)
  228. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  229. if dev[0].get_status_field('sae_group') != '19':
  230. raise Exception("Expected default SAE group not used")
  231. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  232. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  233. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  234. 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"))
  235. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-sae"))
  236. sigma_dut_wait_connected(ifname)
  237. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  238. if dev[0].get_status_field('sae_group') != '20':
  239. raise Exception("Expected SAE group not used")
  240. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  241. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  242. stop_sigma_dut(sigma)
  243. def test_sigma_dut_sae_password(dev, apdev):
  244. """sigma_dut controlled SAE association and long password"""
  245. if "SAE" not in dev[0].get_capability("auth_alg"):
  246. raise HwsimSkip("SAE not supported")
  247. ifname = dev[0].ifname
  248. sigma = start_sigma_dut(ifname)
  249. try:
  250. ssid = "test-sae"
  251. params = hostapd.wpa2_params(ssid=ssid)
  252. params['sae_password'] = 100*'B'
  253. params['wpa_key_mgmt'] = 'SAE'
  254. params["ieee80211w"] = "2"
  255. hapd = hostapd.add_ap(apdev[0], params)
  256. sigma_dut_cmd_check("sta_reset_default,interface,%s" % ifname)
  257. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  258. 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'))
  259. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-sae"))
  260. sigma_dut_wait_connected(ifname)
  261. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  262. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  263. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  264. finally:
  265. stop_sigma_dut(sigma)
  266. def test_sigma_dut_sta_override_rsne(dev, apdev):
  267. """sigma_dut and RSNE override on STA"""
  268. try:
  269. run_sigma_dut_sta_override_rsne(dev, apdev)
  270. finally:
  271. dev[0].set("ignore_old_scan_res", "0")
  272. def run_sigma_dut_sta_override_rsne(dev, apdev):
  273. ifname = dev[0].ifname
  274. sigma = start_sigma_dut(ifname)
  275. ssid = "test-psk"
  276. params = hostapd.wpa2_params(ssid=ssid, passphrase="12345678")
  277. hapd = hostapd.add_ap(apdev[0], params)
  278. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  279. tests = [ "30120100000fac040100000fac040100000fac02",
  280. "30140100000fac040100000fac040100000fac02ffff" ]
  281. for test in tests:
  282. sigma_dut_cmd_check("sta_set_security,interface,%s,ssid,%s,type,PSK,passphrase,%s,EncpType,aes-ccmp,KeyMgmtType,wpa2" % (ifname, "test-psk", "12345678"))
  283. sigma_dut_cmd_check("dev_configure_ie,interface,%s,IE_Name,RSNE,Contents,%s" % (ifname, test))
  284. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-psk"))
  285. sigma_dut_wait_connected(ifname)
  286. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  287. dev[0].dump_monitor()
  288. sigma_dut_cmd_check("sta_set_security,interface,%s,ssid,%s,type,PSK,passphrase,%s,EncpType,aes-ccmp,KeyMgmtType,wpa2" % (ifname, "test-psk", "12345678"))
  289. sigma_dut_cmd_check("dev_configure_ie,interface,%s,IE_Name,RSNE,Contents,300101" % ifname)
  290. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-psk"))
  291. ev = dev[0].wait_event(["CTRL-EVENT-ASSOC-REJECT"])
  292. if ev is None:
  293. raise Exception("Association rejection not reported")
  294. if "status_code=40" not in ev:
  295. raise Exception("Unexpected status code: " + ev)
  296. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  297. stop_sigma_dut(sigma)
  298. def test_sigma_dut_ap_psk(dev, apdev):
  299. """sigma_dut controlled AP"""
  300. with HWSimRadio() as (radio, iface):
  301. sigma = start_sigma_dut(iface)
  302. try:
  303. sigma_dut_cmd_check("ap_reset_default")
  304. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-psk,MODE,11ng")
  305. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,WPA2-PSK,PSK,12345678")
  306. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  307. dev[0].connect("test-psk", psk="12345678", scan_freq="2412")
  308. sigma_dut_cmd_check("ap_reset_default")
  309. finally:
  310. stop_sigma_dut(sigma)
  311. def test_sigma_dut_ap_pskhex(dev, apdev, params):
  312. """sigma_dut controlled AP and PSKHEX"""
  313. logdir = os.path.join(params['logdir'],
  314. "sigma_dut_ap_pskhex.sigma-hostapd")
  315. with HWSimRadio() as (radio, iface):
  316. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  317. try:
  318. psk = "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef"
  319. sigma_dut_cmd_check("ap_reset_default")
  320. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-psk,MODE,11ng")
  321. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,WPA2-PSK,PSKHEX," + psk)
  322. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  323. dev[0].connect("test-psk", raw_psk=psk, scan_freq="2412")
  324. sigma_dut_cmd_check("ap_reset_default")
  325. finally:
  326. stop_sigma_dut(sigma)
  327. def test_sigma_dut_suite_b(dev, apdev, params):
  328. """sigma_dut controlled STA Suite B"""
  329. check_suite_b_192_capa(dev)
  330. logdir = params['logdir']
  331. with open("auth_serv/ec2-ca.pem", "r") as f:
  332. with open(os.path.join(logdir, "suite_b_ca.pem"), "w") as f2:
  333. f2.write(f.read())
  334. with open("auth_serv/ec2-user.pem", "r") as f:
  335. with open("auth_serv/ec2-user.key", "r") as f2:
  336. with open(os.path.join(logdir, "suite_b.pem"), "w") as f3:
  337. f3.write(f.read())
  338. f3.write(f2.read())
  339. dev[0].flush_scan_cache()
  340. params = suite_b_as_params()
  341. params['ca_cert'] = 'auth_serv/ec2-ca.pem'
  342. params['server_cert'] = 'auth_serv/ec2-server.pem'
  343. params['private_key'] = 'auth_serv/ec2-server.key'
  344. params['openssl_ciphers'] = 'SUITEB192'
  345. hostapd.add_ap(apdev[1], params)
  346. params = { "ssid": "test-suite-b",
  347. "wpa": "2",
  348. "wpa_key_mgmt": "WPA-EAP-SUITE-B-192",
  349. "rsn_pairwise": "GCMP-256",
  350. "group_mgmt_cipher": "BIP-GMAC-256",
  351. "ieee80211w": "2",
  352. "ieee8021x": "1",
  353. 'auth_server_addr': "127.0.0.1",
  354. 'auth_server_port': "18129",
  355. 'auth_server_shared_secret': "radius",
  356. 'nas_identifier': "nas.w1.fi" }
  357. hapd = hostapd.add_ap(apdev[0], params)
  358. ifname = dev[0].ifname
  359. sigma = start_sigma_dut(ifname, cert_path=logdir)
  360. sigma_dut_cmd_check("sta_reset_default,interface,%s,prog,PMF" % ifname)
  361. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  362. 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,clientCertificate,suite_b.pem,trustedRootCA,suite_b_ca.pem,CertType,ECC" % (ifname, "test-suite-b"))
  363. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-suite-b"))
  364. sigma_dut_wait_connected(ifname)
  365. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  366. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  367. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  368. stop_sigma_dut(sigma)
  369. def test_sigma_dut_suite_b_rsa(dev, apdev, params):
  370. """sigma_dut controlled STA Suite B (RSA)"""
  371. check_suite_b_192_capa(dev)
  372. logdir = params['logdir']
  373. with open("auth_serv/rsa3072-ca.pem", "r") as f:
  374. with open(os.path.join(logdir, "suite_b_ca_rsa.pem"), "w") as f2:
  375. f2.write(f.read())
  376. with open("auth_serv/rsa3072-user.pem", "r") as f:
  377. with open("auth_serv/rsa3072-user.key", "r") as f2:
  378. with open(os.path.join(logdir, "suite_b_rsa.pem"), "w") as f3:
  379. f3.write(f.read())
  380. f3.write(f2.read())
  381. dev[0].flush_scan_cache()
  382. params = suite_b_192_rsa_ap_params()
  383. hapd = hostapd.add_ap(apdev[0], params)
  384. ifname = dev[0].ifname
  385. sigma = start_sigma_dut(ifname, cert_path=logdir)
  386. cmd = "sta_set_security,type,eaptls,interface,%s,ssid,%s,PairwiseCipher,AES-GCMP-256,GroupCipher,AES-GCMP-256,GroupMgntCipher,BIP-GMAC-256,keymgmttype,SuiteB,clientCertificate,suite_b_rsa.pem,trustedRootCA,suite_b_ca_rsa.pem,CertType,RSA" % (ifname, "test-suite-b")
  387. tests = [ "",
  388. ",TLSCipher,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
  389. ",TLSCipher,TLS_DHE_RSA_WITH_AES_256_GCM_SHA384" ]
  390. for extra in tests:
  391. sigma_dut_cmd_check("sta_reset_default,interface,%s,prog,PMF" % ifname)
  392. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  393. sigma_dut_cmd_check(cmd + extra)
  394. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s,channel,1" % (ifname, "test-suite-b"))
  395. sigma_dut_wait_connected(ifname)
  396. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  397. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  398. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  399. stop_sigma_dut(sigma)
  400. def test_sigma_dut_ap_suite_b(dev, apdev, params):
  401. """sigma_dut controlled AP Suite B"""
  402. check_suite_b_192_capa(dev)
  403. logdir = os.path.join(params['logdir'],
  404. "sigma_dut_ap_suite_b.sigma-hostapd")
  405. params = suite_b_as_params()
  406. params['ca_cert'] = 'auth_serv/ec2-ca.pem'
  407. params['server_cert'] = 'auth_serv/ec2-server.pem'
  408. params['private_key'] = 'auth_serv/ec2-server.key'
  409. params['openssl_ciphers'] = 'SUITEB192'
  410. hostapd.add_ap(apdev[1], params)
  411. with HWSimRadio() as (radio, iface):
  412. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  413. try:
  414. sigma_dut_cmd_check("ap_reset_default")
  415. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-suite-b,MODE,11ng")
  416. sigma_dut_cmd_check("ap_set_radius,NAME,AP,IPADDR,127.0.0.1,PORT,18129,PASSWORD,radius")
  417. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,SuiteB")
  418. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  419. dev[0].connect("test-suite-b", key_mgmt="WPA-EAP-SUITE-B-192",
  420. ieee80211w="2",
  421. openssl_ciphers="SUITEB192",
  422. eap="TLS", identity="tls user",
  423. ca_cert="auth_serv/ec2-ca.pem",
  424. client_cert="auth_serv/ec2-user.pem",
  425. private_key="auth_serv/ec2-user.key",
  426. pairwise="GCMP-256", group="GCMP-256",
  427. scan_freq="2412")
  428. sigma_dut_cmd_check("ap_reset_default")
  429. finally:
  430. stop_sigma_dut(sigma)
  431. def test_sigma_dut_ap_cipher_gcmp_128(dev, apdev, params):
  432. """sigma_dut controlled AP with GCMP-128/BIP-GMAC-128 cipher"""
  433. run_sigma_dut_ap_cipher(dev, apdev, params, "AES-GCMP-128", "BIP-GMAC-128",
  434. "GCMP")
  435. def test_sigma_dut_ap_cipher_gcmp_256(dev, apdev, params):
  436. """sigma_dut controlled AP with GCMP-256/BIP-GMAC-256 cipher"""
  437. run_sigma_dut_ap_cipher(dev, apdev, params, "AES-GCMP-256", "BIP-GMAC-256",
  438. "GCMP-256")
  439. def test_sigma_dut_ap_cipher_ccmp_128(dev, apdev, params):
  440. """sigma_dut controlled AP with CCMP-128/BIP-CMAC-128 cipher"""
  441. run_sigma_dut_ap_cipher(dev, apdev, params, "AES-CCMP-128", "BIP-CMAC-128",
  442. "CCMP")
  443. def test_sigma_dut_ap_cipher_ccmp_256(dev, apdev, params):
  444. """sigma_dut controlled AP with CCMP-256/BIP-CMAC-256 cipher"""
  445. run_sigma_dut_ap_cipher(dev, apdev, params, "AES-CCMP-256", "BIP-CMAC-256",
  446. "CCMP-256")
  447. def test_sigma_dut_ap_cipher_ccmp_gcmp_1(dev, apdev, params):
  448. """sigma_dut controlled AP with CCMP-128+GCMP-256 ciphers (1)"""
  449. run_sigma_dut_ap_cipher(dev, apdev, params, "AES-CCMP-128 AES-GCMP-256",
  450. "BIP-GMAC-256", "CCMP")
  451. def test_sigma_dut_ap_cipher_ccmp_gcmp_2(dev, apdev, params):
  452. """sigma_dut controlled AP with CCMP-128+GCMP-256 ciphers (2)"""
  453. run_sigma_dut_ap_cipher(dev, apdev, params, "AES-CCMP-128 AES-GCMP-256",
  454. "BIP-GMAC-256", "GCMP-256", "CCMP")
  455. def test_sigma_dut_ap_cipher_gcmp_256_group_ccmp(dev, apdev, params):
  456. """sigma_dut controlled AP with GCMP-256/CCMP/BIP-GMAC-256 cipher"""
  457. run_sigma_dut_ap_cipher(dev, apdev, params, "AES-GCMP-256", "BIP-GMAC-256",
  458. "GCMP-256", "CCMP", "AES-CCMP-128")
  459. def run_sigma_dut_ap_cipher(dev, apdev, params, ap_pairwise, ap_group_mgmt,
  460. sta_cipher, sta_cipher_group=None, ap_group=None):
  461. check_suite_b_192_capa(dev)
  462. logdir = os.path.join(params['logdir'],
  463. "sigma_dut_ap_cipher.sigma-hostapd")
  464. params = suite_b_as_params()
  465. params['ca_cert'] = 'auth_serv/ec2-ca.pem'
  466. params['server_cert'] = 'auth_serv/ec2-server.pem'
  467. params['private_key'] = 'auth_serv/ec2-server.key'
  468. params['openssl_ciphers'] = 'SUITEB192'
  469. hostapd.add_ap(apdev[1], params)
  470. with HWSimRadio() as (radio, iface):
  471. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  472. try:
  473. sigma_dut_cmd_check("ap_reset_default")
  474. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-suite-b,MODE,11ng")
  475. sigma_dut_cmd_check("ap_set_radius,NAME,AP,IPADDR,127.0.0.1,PORT,18129,PASSWORD,radius")
  476. cmd = "ap_set_security,NAME,AP,KEYMGNT,SuiteB,PMF,Required,PairwiseCipher,%s,GroupMgntCipher,%s" % (ap_pairwise, ap_group_mgmt)
  477. if ap_group:
  478. cmd += ",GroupCipher,%s" % ap_group
  479. sigma_dut_cmd_check(cmd)
  480. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  481. if sta_cipher_group is None:
  482. sta_cipher_group = sta_cipher
  483. dev[0].connect("test-suite-b", key_mgmt="WPA-EAP-SUITE-B-192",
  484. ieee80211w="2",
  485. openssl_ciphers="SUITEB192",
  486. eap="TLS", identity="tls user",
  487. ca_cert="auth_serv/ec2-ca.pem",
  488. client_cert="auth_serv/ec2-user.pem",
  489. private_key="auth_serv/ec2-user.key",
  490. pairwise=sta_cipher, group=sta_cipher_group,
  491. scan_freq="2412")
  492. sigma_dut_cmd_check("ap_reset_default")
  493. finally:
  494. stop_sigma_dut(sigma)
  495. def test_sigma_dut_ap_override_rsne(dev, apdev):
  496. """sigma_dut controlled AP overriding RSNE"""
  497. with HWSimRadio() as (radio, iface):
  498. sigma = start_sigma_dut(iface)
  499. try:
  500. sigma_dut_cmd_check("ap_reset_default")
  501. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-psk,MODE,11ng")
  502. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,WPA2-PSK,PSK,12345678")
  503. sigma_dut_cmd_check("dev_configure_ie,NAME,AP,interface,%s,IE_Name,RSNE,Contents,30180100000fac040200ffffffff000fac040100000fac020c00" % iface)
  504. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  505. dev[0].connect("test-psk", psk="12345678", scan_freq="2412")
  506. sigma_dut_cmd_check("ap_reset_default")
  507. finally:
  508. stop_sigma_dut(sigma)
  509. def test_sigma_dut_ap_sae(dev, apdev, params):
  510. """sigma_dut controlled AP with SAE"""
  511. logdir = os.path.join(params['logdir'],
  512. "sigma_dut_ap_sae.sigma-hostapd")
  513. if "SAE" not in dev[0].get_capability("auth_alg"):
  514. raise HwsimSkip("SAE not supported")
  515. with HWSimRadio() as (radio, iface):
  516. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  517. try:
  518. sigma_dut_cmd_check("ap_reset_default")
  519. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-sae,MODE,11ng")
  520. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,WPA2-SAE,PSK,12345678")
  521. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  522. dev[0].request("SET sae_groups ")
  523. dev[0].connect("test-sae", key_mgmt="SAE", psk="12345678",
  524. ieee80211w="2", scan_freq="2412")
  525. if dev[0].get_status_field('sae_group') != '19':
  526. raise Exception("Expected default SAE group not used")
  527. sigma_dut_cmd_check("ap_reset_default")
  528. finally:
  529. stop_sigma_dut(sigma)
  530. def test_sigma_dut_ap_sae_password(dev, apdev, params):
  531. """sigma_dut controlled AP with SAE and long password"""
  532. logdir = os.path.join(params['logdir'],
  533. "sigma_dut_ap_sae_password.sigma-hostapd")
  534. if "SAE" not in dev[0].get_capability("auth_alg"):
  535. raise HwsimSkip("SAE not supported")
  536. with HWSimRadio() as (radio, iface):
  537. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  538. try:
  539. sigma_dut_cmd_check("ap_reset_default")
  540. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-sae,MODE,11ng")
  541. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,WPA2-SAE,PSK," + 100*'C')
  542. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  543. dev[0].request("SET sae_groups ")
  544. dev[0].connect("test-sae", key_mgmt="SAE", sae_password=100*'C',
  545. ieee80211w="2", scan_freq="2412")
  546. if dev[0].get_status_field('sae_group') != '19':
  547. raise Exception("Expected default SAE group not used")
  548. sigma_dut_cmd_check("ap_reset_default")
  549. finally:
  550. stop_sigma_dut(sigma)
  551. def test_sigma_dut_ap_sae_group(dev, apdev, params):
  552. """sigma_dut controlled AP with SAE and specific group"""
  553. logdir = os.path.join(params['logdir'],
  554. "sigma_dut_ap_sae_group.sigma-hostapd")
  555. if "SAE" not in dev[0].get_capability("auth_alg"):
  556. raise HwsimSkip("SAE not supported")
  557. with HWSimRadio() as (radio, iface):
  558. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  559. try:
  560. sigma_dut_cmd_check("ap_reset_default")
  561. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-sae,MODE,11ng")
  562. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,WPA2-SAE,PSK,12345678,ECGroupID,20")
  563. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  564. dev[0].request("SET sae_groups ")
  565. dev[0].connect("test-sae", key_mgmt="SAE", psk="12345678",
  566. ieee80211w="2", scan_freq="2412")
  567. if dev[0].get_status_field('sae_group') != '20':
  568. raise Exception("Expected SAE group not used")
  569. sigma_dut_cmd_check("ap_reset_default")
  570. finally:
  571. stop_sigma_dut(sigma)
  572. def test_sigma_dut_ap_psk_sae(dev, apdev, params):
  573. """sigma_dut controlled AP with PSK+SAE"""
  574. if "SAE" not in dev[0].get_capability("auth_alg"):
  575. raise HwsimSkip("SAE not supported")
  576. logdir = os.path.join(params['logdir'],
  577. "sigma_dut_ap_psk_sae.sigma-hostapd")
  578. with HWSimRadio() as (radio, iface):
  579. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  580. try:
  581. sigma_dut_cmd_check("ap_reset_default")
  582. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,test-sae,MODE,11ng")
  583. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,WPA2-PSK-SAE,PSK,12345678")
  584. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  585. dev[2].request("SET sae_groups ")
  586. dev[2].connect("test-sae", key_mgmt="SAE", psk="12345678",
  587. scan_freq="2412", ieee80211w="0", wait_connect=False)
  588. dev[0].request("SET sae_groups ")
  589. dev[0].connect("test-sae", key_mgmt="SAE", psk="12345678",
  590. scan_freq="2412", ieee80211w="2")
  591. dev[1].connect("test-sae", psk="12345678", scan_freq="2412")
  592. ev = dev[2].wait_event(["CTRL-EVENT-CONNECTED"], timeout=0.1)
  593. dev[2].request("DISCONNECT")
  594. if ev is not None:
  595. raise Exception("Unexpected connection without PMF")
  596. sigma_dut_cmd_check("ap_reset_default")
  597. finally:
  598. stop_sigma_dut(sigma)
  599. def test_sigma_dut_owe(dev, apdev):
  600. """sigma_dut controlled OWE station"""
  601. try:
  602. run_sigma_dut_owe(dev, apdev)
  603. finally:
  604. dev[0].set("ignore_old_scan_res", "0")
  605. def run_sigma_dut_owe(dev, apdev):
  606. if "OWE" not in dev[0].get_capability("key_mgmt"):
  607. raise HwsimSkip("OWE not supported")
  608. ifname = dev[0].ifname
  609. sigma = start_sigma_dut(ifname)
  610. try:
  611. params = { "ssid": "owe",
  612. "wpa": "2",
  613. "wpa_key_mgmt": "OWE",
  614. "ieee80211w": "2",
  615. "rsn_pairwise": "CCMP" }
  616. hapd = hostapd.add_ap(apdev[0], params)
  617. bssid = hapd.own_addr()
  618. sigma_dut_cmd_check("sta_reset_default,interface,%s,prog,WPA3" % ifname)
  619. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  620. sigma_dut_cmd_check("sta_set_security,interface,%s,ssid,owe,Type,OWE" % ifname)
  621. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,owe,channel,1" % ifname)
  622. sigma_dut_wait_connected(ifname)
  623. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  624. dev[0].dump_monitor()
  625. sigma_dut_cmd("sta_reassoc,interface,%s,Channel,1,bssid,%s" % (ifname, bssid))
  626. dev[0].wait_connected()
  627. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  628. dev[0].wait_disconnected()
  629. dev[0].dump_monitor()
  630. sigma_dut_cmd_check("sta_reset_default,interface,%s,prog,WPA3" % ifname)
  631. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  632. sigma_dut_cmd_check("sta_set_security,interface,%s,ssid,owe,Type,OWE,ECGroupID,20" % ifname)
  633. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,owe,channel,1" % ifname)
  634. sigma_dut_wait_connected(ifname)
  635. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  636. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  637. dev[0].wait_disconnected()
  638. dev[0].dump_monitor()
  639. sigma_dut_cmd_check("sta_reset_default,interface,%s,prog,WPA3" % ifname)
  640. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  641. sigma_dut_cmd_check("sta_set_security,interface,%s,ssid,owe,Type,OWE,ECGroupID,0" % ifname)
  642. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,owe,channel,1" % ifname)
  643. ev = dev[0].wait_event(["CTRL-EVENT-ASSOC-REJECT"], timeout=10)
  644. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  645. if ev is None:
  646. raise Exception("Association not rejected")
  647. if "status_code=77" not in ev:
  648. raise Exception("Unexpected rejection reason: " + ev)
  649. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  650. finally:
  651. stop_sigma_dut(sigma)
  652. def test_sigma_dut_ap_owe(dev, apdev, params):
  653. """sigma_dut controlled AP with OWE"""
  654. logdir = os.path.join(params['logdir'],
  655. "sigma_dut_ap_owe.sigma-hostapd")
  656. if "OWE" not in dev[0].get_capability("key_mgmt"):
  657. raise HwsimSkip("OWE not supported")
  658. with HWSimRadio() as (radio, iface):
  659. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  660. try:
  661. sigma_dut_cmd_check("ap_reset_default,NAME,AP,Program,WPA3")
  662. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,owe,MODE,11ng")
  663. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,OWE")
  664. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  665. dev[0].connect("owe", key_mgmt="OWE", ieee80211w="2",
  666. scan_freq="2412")
  667. sigma_dut_cmd_check("ap_reset_default")
  668. finally:
  669. stop_sigma_dut(sigma)
  670. def test_sigma_dut_ap_owe_ecgroupid(dev, apdev):
  671. """sigma_dut controlled AP with OWE and ECGroupID"""
  672. if "OWE" not in dev[0].get_capability("key_mgmt"):
  673. raise HwsimSkip("OWE not supported")
  674. with HWSimRadio() as (radio, iface):
  675. sigma = start_sigma_dut(iface)
  676. try:
  677. sigma_dut_cmd_check("ap_reset_default,NAME,AP,Program,WPA3")
  678. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,CHANNEL,1,SSID,owe,MODE,11ng")
  679. sigma_dut_cmd_check("ap_set_security,NAME,AP,KEYMGNT,OWE,ECGroupID,20 21,PMF,Required")
  680. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  681. dev[0].connect("owe", key_mgmt="OWE", ieee80211w="2",
  682. owe_group="20", scan_freq="2412")
  683. dev[0].request("REMOVE_NETWORK all")
  684. dev[0].wait_disconnected()
  685. dev[0].connect("owe", key_mgmt="OWE", ieee80211w="2",
  686. owe_group="21", scan_freq="2412")
  687. dev[0].request("REMOVE_NETWORK all")
  688. dev[0].wait_disconnected()
  689. dev[0].connect("owe", key_mgmt="OWE", ieee80211w="2",
  690. owe_group="19", scan_freq="2412", wait_connect=False)
  691. ev = dev[0].wait_event(["CTRL-EVENT-ASSOC-REJECT"], timeout=10)
  692. dev[0].request("DISCONNECT")
  693. if ev is None:
  694. raise Exception("Association not rejected")
  695. if "status_code=77" not in ev:
  696. raise Exception("Unexpected rejection reason: " + ev)
  697. dev[0].dump_monitor()
  698. sigma_dut_cmd_check("ap_reset_default")
  699. finally:
  700. stop_sigma_dut(sigma)
  701. def test_sigma_dut_ap_owe_transition_mode(dev, apdev, params):
  702. """sigma_dut controlled AP with OWE and transition mode"""
  703. if "OWE" not in dev[0].get_capability("key_mgmt"):
  704. raise HwsimSkip("OWE not supported")
  705. logdir = os.path.join(params['logdir'],
  706. "sigma_dut_ap_owe_transition_mode.sigma-hostapd")
  707. with HWSimRadio() as (radio, iface):
  708. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  709. try:
  710. sigma_dut_cmd_check("ap_reset_default,NAME,AP,Program,WPA3")
  711. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,WLAN_TAG,1,CHANNEL,1,SSID,owe,MODE,11ng")
  712. sigma_dut_cmd_check("ap_set_security,NAME,AP,WLAN_TAG,1,KEYMGNT,OWE")
  713. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,WLAN_TAG,2,CHANNEL,1,SSID,owe,MODE,11ng")
  714. sigma_dut_cmd_check("ap_set_security,NAME,AP,WLAN_TAG,2,KEYMGNT,NONE")
  715. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  716. res1 = sigma_dut_cmd_check("ap_get_mac_address,NAME,AP,WLAN_TAG,1,Interface,24G")
  717. res2 = sigma_dut_cmd_check("ap_get_mac_address,NAME,AP,WLAN_TAG,2,Interface,24G")
  718. dev[0].connect("owe", key_mgmt="OWE", ieee80211w="2",
  719. scan_freq="2412")
  720. dev[1].connect("owe", key_mgmt="NONE", scan_freq="2412")
  721. if dev[0].get_status_field('bssid') not in res1:
  722. raise Exception("Unexpected ap_get_mac_address WLAN_TAG,1: " + res1)
  723. if dev[1].get_status_field('bssid') not in res2:
  724. raise Exception("Unexpected ap_get_mac_address WLAN_TAG,2: " + res2)
  725. sigma_dut_cmd_check("ap_reset_default")
  726. finally:
  727. stop_sigma_dut(sigma)
  728. def test_sigma_dut_ap_owe_transition_mode_2(dev, apdev, params):
  729. """sigma_dut controlled AP with OWE and transition mode (2)"""
  730. if "OWE" not in dev[0].get_capability("key_mgmt"):
  731. raise HwsimSkip("OWE not supported")
  732. logdir = os.path.join(params['logdir'],
  733. "sigma_dut_ap_owe_transition_mode_2.sigma-hostapd")
  734. with HWSimRadio() as (radio, iface):
  735. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  736. try:
  737. sigma_dut_cmd_check("ap_reset_default,NAME,AP,Program,WPA3")
  738. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,WLAN_TAG,1,CHANNEL,1,SSID,owe,MODE,11ng")
  739. sigma_dut_cmd_check("ap_set_security,NAME,AP,WLAN_TAG,1,KEYMGNT,NONE")
  740. sigma_dut_cmd_check("ap_set_wireless,NAME,AP,WLAN_TAG,2,CHANNEL,1,MODE,11ng")
  741. sigma_dut_cmd_check("ap_set_security,NAME,AP,WLAN_TAG,2,KEYMGNT,OWE")
  742. sigma_dut_cmd_check("ap_config_commit,NAME,AP")
  743. res1 = sigma_dut_cmd_check("ap_get_mac_address,NAME,AP,WLAN_TAG,1,Interface,24G")
  744. res2 = sigma_dut_cmd_check("ap_get_mac_address,NAME,AP,WLAN_TAG,2,Interface,24G")
  745. dev[0].connect("owe", key_mgmt="OWE", ieee80211w="2",
  746. scan_freq="2412")
  747. dev[1].connect("owe", key_mgmt="NONE", scan_freq="2412")
  748. if dev[0].get_status_field('bssid') not in res2:
  749. raise Exception("Unexpected ap_get_mac_address WLAN_TAG,2: " + res1)
  750. if dev[1].get_status_field('bssid') not in res1:
  751. raise Exception("Unexpected ap_get_mac_address WLAN_TAG,1: " + res2)
  752. sigma_dut_cmd_check("ap_reset_default")
  753. finally:
  754. stop_sigma_dut(sigma)
  755. def dpp_init_enrollee(dev, id1):
  756. logger.info("Starting DPP initiator/enrollee in a thread")
  757. time.sleep(1)
  758. cmd = "DPP_AUTH_INIT peer=%d role=enrollee" % id1
  759. if "OK" not in dev.request(cmd):
  760. raise Exception("Failed to initiate DPP Authentication")
  761. ev = dev.wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  762. if ev is None:
  763. raise Exception("DPP configuration not completed (Enrollee)")
  764. logger.info("DPP initiator/enrollee done")
  765. def test_sigma_dut_dpp_qr_resp_1(dev, apdev):
  766. """sigma_dut DPP/QR responder (conf index 1)"""
  767. run_sigma_dut_dpp_qr_resp(dev, apdev, 1)
  768. def test_sigma_dut_dpp_qr_resp_2(dev, apdev):
  769. """sigma_dut DPP/QR responder (conf index 2)"""
  770. run_sigma_dut_dpp_qr_resp(dev, apdev, 2)
  771. def test_sigma_dut_dpp_qr_resp_3(dev, apdev):
  772. """sigma_dut DPP/QR responder (conf index 3)"""
  773. run_sigma_dut_dpp_qr_resp(dev, apdev, 3)
  774. def test_sigma_dut_dpp_qr_resp_4(dev, apdev):
  775. """sigma_dut DPP/QR responder (conf index 4)"""
  776. run_sigma_dut_dpp_qr_resp(dev, apdev, 4)
  777. def test_sigma_dut_dpp_qr_resp_5(dev, apdev):
  778. """sigma_dut DPP/QR responder (conf index 5)"""
  779. run_sigma_dut_dpp_qr_resp(dev, apdev, 5)
  780. def test_sigma_dut_dpp_qr_resp_6(dev, apdev):
  781. """sigma_dut DPP/QR responder (conf index 6)"""
  782. run_sigma_dut_dpp_qr_resp(dev, apdev, 6)
  783. def test_sigma_dut_dpp_qr_resp_7(dev, apdev):
  784. """sigma_dut DPP/QR responder (conf index 7)"""
  785. run_sigma_dut_dpp_qr_resp(dev, apdev, 7)
  786. def test_sigma_dut_dpp_qr_resp_chan_list(dev, apdev):
  787. """sigma_dut DPP/QR responder (channel list override)"""
  788. run_sigma_dut_dpp_qr_resp(dev, apdev, 1, chan_list='81/2 81/6 81/1',
  789. listen_chan=2)
  790. def run_sigma_dut_dpp_qr_resp(dev, apdev, conf_idx, chan_list=None,
  791. listen_chan=None):
  792. check_dpp_capab(dev[0])
  793. check_dpp_capab(dev[1])
  794. sigma = start_sigma_dut(dev[0].ifname)
  795. try:
  796. cmd = "dev_exec_action,program,DPP,DPPActionType,GetLocalBootstrap,DPPCryptoIdentifier,P-256,DPPBS,QR"
  797. if chan_list:
  798. cmd += ",DPPChannelList," + chan_list
  799. res = sigma_dut_cmd(cmd)
  800. if "status,COMPLETE" not in res:
  801. raise Exception("dev_exec_action did not succeed: " + res)
  802. hex = res.split(',')[3]
  803. uri = hex.decode('hex')
  804. logger.info("URI from sigma_dut: " + uri)
  805. res = dev[1].request("DPP_QR_CODE " + uri)
  806. if "FAIL" in res:
  807. raise Exception("Failed to parse QR Code URI")
  808. id1 = int(res)
  809. t = threading.Thread(target=dpp_init_enrollee, args=(dev[1], id1))
  810. t.start()
  811. cmd = "dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Responder,DPPConfIndex,%d,DPPAuthDirection,Single,DPPProvisioningRole,Configurator,DPPConfEnrolleeRole,STA,DPPSigningKeyECC,P-256,DPPBS,QR,DPPTimeout,6" % conf_idx
  812. if listen_chan:
  813. cmd += ",DPPListenChannel," + str(listen_chan)
  814. res = sigma_dut_cmd(cmd, timeout=10)
  815. t.join()
  816. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK" not in res:
  817. raise Exception("Unexpected result: " + res)
  818. finally:
  819. stop_sigma_dut(sigma)
  820. def test_sigma_dut_dpp_qr_init_enrollee(dev, apdev):
  821. """sigma_dut DPP/QR initiator as Enrollee"""
  822. check_dpp_capab(dev[0])
  823. check_dpp_capab(dev[1])
  824. csign = "30770201010420768240a3fc89d6662d9782f120527fe7fb9edc6366ab0b9c7dde96125cfd250fa00a06082a8648ce3d030107a144034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  825. csign_pub = "3059301306072a8648ce3d020106082a8648ce3d030107034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  826. ap_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJwYWtZbXVzd1dCdWpSYTl5OEsweDViaTVrT3VNT3dzZHRlaml2UG55ZHZzIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6ImFwIn1dLCJuZXRBY2Nlc3NLZXkiOnsia3R5IjoiRUMiLCJjcnYiOiJQLTI1NiIsIngiOiIybU5vNXZuRkI5bEw3d1VWb1hJbGVPYzBNSEE1QXZKbnpwZXZULVVTYzVNIiwieSI6IlhzS3dqVHJlLTg5WWdpU3pKaG9CN1haeUttTU05OTl3V2ZaSVl0bi01Q3MifX0.XhjFpZgcSa7G2lHy0OCYTvaZFRo5Hyx6b7g7oYyusLC7C_73AJ4_BxEZQVYJXAtDuGvb3dXSkHEKxREP9Q6Qeg"
  827. ap_netaccesskey = "30770201010420ceba752db2ad5200fa7bc565b9c05c69b7eb006751b0b329b0279de1c19ca67ca00a06082a8648ce3d030107a14403420004da6368e6f9c507d94bef0515a1722578e73430703902f267ce97af4fe51273935ec2b08d3adefbcf588224b3261a01ed76722a630cf7df7059f64862d9fee42b"
  828. params = { "ssid": "DPPNET01",
  829. "wpa": "2",
  830. "ieee80211w": "2",
  831. "wpa_key_mgmt": "DPP",
  832. "rsn_pairwise": "CCMP",
  833. "dpp_connector": ap_connector,
  834. "dpp_csign": csign_pub,
  835. "dpp_netaccesskey": ap_netaccesskey }
  836. try:
  837. hapd = hostapd.add_ap(apdev[0], params)
  838. except:
  839. raise HwsimSkip("DPP not supported")
  840. sigma = start_sigma_dut(dev[0].ifname)
  841. try:
  842. dev[0].set("dpp_config_processing", "2")
  843. cmd = "DPP_CONFIGURATOR_ADD key=" + csign
  844. res = dev[1].request(cmd);
  845. if "FAIL" in res:
  846. raise Exception("Failed to add configurator")
  847. conf_id = int(res)
  848. addr = dev[1].own_addr().replace(':', '')
  849. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  850. res = dev[1].request(cmd)
  851. if "FAIL" in res:
  852. raise Exception("Failed to generate bootstrapping info")
  853. id0 = int(res)
  854. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  855. dev[1].set("dpp_configurator_params",
  856. " conf=sta-dpp ssid=%s configurator=%d" % ("DPPNET01".encode("hex"), conf_id));
  857. cmd = "DPP_LISTEN 2437 role=configurator"
  858. if "OK" not in dev[1].request(cmd):
  859. raise Exception("Failed to start listen operation")
  860. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  861. if "status,COMPLETE" not in res:
  862. raise Exception("dev_exec_action did not succeed: " + res)
  863. 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)
  864. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK,NetworkIntroResult,OK,NetworkConnectResult,OK" not in res:
  865. raise Exception("Unexpected result: " + res)
  866. finally:
  867. dev[0].set("dpp_config_processing", "0")
  868. stop_sigma_dut(sigma)
  869. def test_sigma_dut_dpp_qr_mutual_init_enrollee(dev, apdev):
  870. """sigma_dut DPP/QR (mutual) initiator as Enrollee"""
  871. run_sigma_dut_dpp_qr_mutual_init_enrollee_check(dev, apdev)
  872. def test_sigma_dut_dpp_qr_mutual_init_enrollee_check(dev, apdev):
  873. """sigma_dut DPP/QR (mutual) initiator as Enrollee (extra check)"""
  874. run_sigma_dut_dpp_qr_mutual_init_enrollee_check(dev, apdev,
  875. extra="DPPAuthDirection,Mutual,")
  876. def run_sigma_dut_dpp_qr_mutual_init_enrollee_check(dev, apdev, extra=''):
  877. check_dpp_capab(dev[0])
  878. check_dpp_capab(dev[1])
  879. csign = "30770201010420768240a3fc89d6662d9782f120527fe7fb9edc6366ab0b9c7dde96125cfd250fa00a06082a8648ce3d030107a144034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  880. csign_pub = "3059301306072a8648ce3d020106082a8648ce3d030107034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  881. ap_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJwYWtZbXVzd1dCdWpSYTl5OEsweDViaTVrT3VNT3dzZHRlaml2UG55ZHZzIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6ImFwIn1dLCJuZXRBY2Nlc3NLZXkiOnsia3R5IjoiRUMiLCJjcnYiOiJQLTI1NiIsIngiOiIybU5vNXZuRkI5bEw3d1VWb1hJbGVPYzBNSEE1QXZKbnpwZXZULVVTYzVNIiwieSI6IlhzS3dqVHJlLTg5WWdpU3pKaG9CN1haeUttTU05OTl3V2ZaSVl0bi01Q3MifX0.XhjFpZgcSa7G2lHy0OCYTvaZFRo5Hyx6b7g7oYyusLC7C_73AJ4_BxEZQVYJXAtDuGvb3dXSkHEKxREP9Q6Qeg"
  882. ap_netaccesskey = "30770201010420ceba752db2ad5200fa7bc565b9c05c69b7eb006751b0b329b0279de1c19ca67ca00a06082a8648ce3d030107a14403420004da6368e6f9c507d94bef0515a1722578e73430703902f267ce97af4fe51273935ec2b08d3adefbcf588224b3261a01ed76722a630cf7df7059f64862d9fee42b"
  883. params = { "ssid": "DPPNET01",
  884. "wpa": "2",
  885. "ieee80211w": "2",
  886. "wpa_key_mgmt": "DPP",
  887. "rsn_pairwise": "CCMP",
  888. "dpp_connector": ap_connector,
  889. "dpp_csign": csign_pub,
  890. "dpp_netaccesskey": ap_netaccesskey }
  891. try:
  892. hapd = hostapd.add_ap(apdev[0], params)
  893. except:
  894. raise HwsimSkip("DPP not supported")
  895. sigma = start_sigma_dut(dev[0].ifname)
  896. try:
  897. dev[0].set("dpp_config_processing", "2")
  898. cmd = "DPP_CONFIGURATOR_ADD key=" + csign
  899. res = dev[1].request(cmd);
  900. if "FAIL" in res:
  901. raise Exception("Failed to add configurator")
  902. conf_id = int(res)
  903. addr = dev[1].own_addr().replace(':', '')
  904. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  905. res = dev[1].request(cmd)
  906. if "FAIL" in res:
  907. raise Exception("Failed to generate bootstrapping info")
  908. id0 = int(res)
  909. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  910. dev[1].set("dpp_configurator_params",
  911. " conf=sta-dpp ssid=%s configurator=%d" % ("DPPNET01".encode("hex"), conf_id));
  912. cmd = "DPP_LISTEN 2437 role=configurator qr=mutual"
  913. if "OK" not in dev[1].request(cmd):
  914. raise Exception("Failed to start listen operation")
  915. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,GetLocalBootstrap,DPPCryptoIdentifier,P-256,DPPBS,QR")
  916. if "status,COMPLETE" not in res:
  917. raise Exception("dev_exec_action did not succeed: " + res)
  918. hex = res.split(',')[3]
  919. uri = hex.decode('hex')
  920. logger.info("URI from sigma_dut: " + uri)
  921. res = dev[1].request("DPP_QR_CODE " + uri)
  922. if "FAIL" in res:
  923. raise Exception("Failed to parse QR Code URI")
  924. id1 = int(res)
  925. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  926. if "status,COMPLETE" not in res:
  927. raise Exception("dev_exec_action did not succeed: " + res)
  928. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,%sDPPProvisioningRole,Enrollee,DPPBS,QR,DPPTimeout,6,DPPWaitForConnect,Yes" % extra, timeout=10)
  929. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK,NetworkIntroResult,OK,NetworkConnectResult,OK" not in res:
  930. raise Exception("Unexpected result: " + res)
  931. finally:
  932. dev[0].set("dpp_config_processing", "0")
  933. stop_sigma_dut(sigma)
  934. def dpp_init_conf_mutual(dev, id1, conf_id, own_id=None):
  935. time.sleep(1)
  936. logger.info("Starting DPP initiator/configurator in a thread")
  937. cmd = "DPP_AUTH_INIT peer=%d conf=sta-dpp ssid=%s configurator=%d" % (id1, "DPPNET01".encode("hex"), conf_id)
  938. if own_id is not None:
  939. cmd += " own=%d" % own_id
  940. if "OK" not in dev.request(cmd):
  941. raise Exception("Failed to initiate DPP Authentication")
  942. ev = dev.wait_event(["DPP-CONF-SENT"], timeout=10)
  943. if ev is None:
  944. raise Exception("DPP configuration not completed (Configurator)")
  945. logger.info("DPP initiator/configurator done")
  946. def test_sigma_dut_dpp_qr_mutual_resp_enrollee(dev, apdev):
  947. """sigma_dut DPP/QR (mutual) responder as Enrollee"""
  948. run_sigma_dut_dpp_qr_mutual_resp_enrollee(dev, apdev)
  949. def test_sigma_dut_dpp_qr_mutual_resp_enrollee_pending(dev, apdev):
  950. """sigma_dut DPP/QR (mutual) responder as Enrollee (response pending)"""
  951. run_sigma_dut_dpp_qr_mutual_resp_enrollee(dev, apdev, ',DPPDelayQRResponse,1')
  952. def run_sigma_dut_dpp_qr_mutual_resp_enrollee(dev, apdev, extra=None):
  953. check_dpp_capab(dev[0])
  954. check_dpp_capab(dev[1])
  955. csign = "30770201010420768240a3fc89d6662d9782f120527fe7fb9edc6366ab0b9c7dde96125cfd250fa00a06082a8648ce3d030107a144034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  956. csign_pub = "3059301306072a8648ce3d020106082a8648ce3d030107034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  957. ap_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJwYWtZbXVzd1dCdWpSYTl5OEsweDViaTVrT3VNT3dzZHRlaml2UG55ZHZzIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6ImFwIn1dLCJuZXRBY2Nlc3NLZXkiOnsia3R5IjoiRUMiLCJjcnYiOiJQLTI1NiIsIngiOiIybU5vNXZuRkI5bEw3d1VWb1hJbGVPYzBNSEE1QXZKbnpwZXZULVVTYzVNIiwieSI6IlhzS3dqVHJlLTg5WWdpU3pKaG9CN1haeUttTU05OTl3V2ZaSVl0bi01Q3MifX0.XhjFpZgcSa7G2lHy0OCYTvaZFRo5Hyx6b7g7oYyusLC7C_73AJ4_BxEZQVYJXAtDuGvb3dXSkHEKxREP9Q6Qeg"
  958. ap_netaccesskey = "30770201010420ceba752db2ad5200fa7bc565b9c05c69b7eb006751b0b329b0279de1c19ca67ca00a06082a8648ce3d030107a14403420004da6368e6f9c507d94bef0515a1722578e73430703902f267ce97af4fe51273935ec2b08d3adefbcf588224b3261a01ed76722a630cf7df7059f64862d9fee42b"
  959. params = { "ssid": "DPPNET01",
  960. "wpa": "2",
  961. "ieee80211w": "2",
  962. "wpa_key_mgmt": "DPP",
  963. "rsn_pairwise": "CCMP",
  964. "dpp_connector": ap_connector,
  965. "dpp_csign": csign_pub,
  966. "dpp_netaccesskey": ap_netaccesskey }
  967. try:
  968. hapd = hostapd.add_ap(apdev[0], params)
  969. except:
  970. raise HwsimSkip("DPP not supported")
  971. sigma = start_sigma_dut(dev[0].ifname)
  972. try:
  973. dev[0].set("dpp_config_processing", "2")
  974. cmd = "DPP_CONFIGURATOR_ADD key=" + csign
  975. res = dev[1].request(cmd);
  976. if "FAIL" in res:
  977. raise Exception("Failed to add configurator")
  978. conf_id = int(res)
  979. addr = dev[1].own_addr().replace(':', '')
  980. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  981. res = dev[1].request(cmd)
  982. if "FAIL" in res:
  983. raise Exception("Failed to generate bootstrapping info")
  984. id0 = int(res)
  985. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  986. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,GetLocalBootstrap,DPPCryptoIdentifier,P-256,DPPBS,QR")
  987. if "status,COMPLETE" not in res:
  988. raise Exception("dev_exec_action did not succeed: " + res)
  989. hex = res.split(',')[3]
  990. uri = hex.decode('hex')
  991. logger.info("URI from sigma_dut: " + uri)
  992. res = dev[1].request("DPP_QR_CODE " + uri)
  993. if "FAIL" in res:
  994. raise Exception("Failed to parse QR Code URI")
  995. id1 = int(res)
  996. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  997. if "status,COMPLETE" not in res:
  998. raise Exception("dev_exec_action did not succeed: " + res)
  999. t = threading.Thread(target=dpp_init_conf_mutual,
  1000. args=(dev[1], id1, conf_id, id0))
  1001. t.start()
  1002. cmd = "dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Responder,DPPAuthDirection,Mutual,DPPProvisioningRole,Enrollee,DPPBS,QR,DPPTimeout,20,DPPWaitForConnect,Yes"
  1003. if extra:
  1004. cmd += extra
  1005. res = sigma_dut_cmd(cmd, timeout=25)
  1006. t.join()
  1007. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK,NetworkIntroResult,OK,NetworkConnectResult,OK" not in res:
  1008. raise Exception("Unexpected result: " + res)
  1009. finally:
  1010. dev[0].set("dpp_config_processing", "0")
  1011. stop_sigma_dut(sigma)
  1012. def dpp_resp_conf_mutual(dev, conf_id, uri):
  1013. logger.info("Starting DPP responder/configurator in a thread")
  1014. dev.set("dpp_configurator_params",
  1015. " conf=sta-dpp ssid=%s configurator=%d" % ("DPPNET01".encode("hex"), conf_id));
  1016. cmd = "DPP_LISTEN 2437 role=configurator qr=mutual"
  1017. if "OK" not in dev.request(cmd):
  1018. raise Exception("Failed to initiate DPP listen")
  1019. if uri:
  1020. ev = dev.wait_event(["DPP-SCAN-PEER-QR-CODE"], timeout=10)
  1021. if ev is None:
  1022. raise Exception("QR Code scan for mutual authentication not requested")
  1023. res = dev.request("DPP_QR_CODE " + uri)
  1024. if "FAIL" in res:
  1025. raise Exception("Failed to parse QR Code URI")
  1026. ev = dev.wait_event(["DPP-CONF-SENT"], timeout=10)
  1027. if ev is None:
  1028. raise Exception("DPP configuration not completed (Configurator)")
  1029. logger.info("DPP responder/configurator done")
  1030. def test_sigma_dut_dpp_qr_mutual_init_enrollee(dev, apdev):
  1031. """sigma_dut DPP/QR (mutual) initiator as Enrollee"""
  1032. run_sigma_dut_dpp_qr_mutual_init_enrollee(dev, apdev, False)
  1033. def test_sigma_dut_dpp_qr_mutual_init_enrollee_pending(dev, apdev):
  1034. """sigma_dut DPP/QR (mutual) initiator as Enrollee (response pending)"""
  1035. run_sigma_dut_dpp_qr_mutual_init_enrollee(dev, apdev, True)
  1036. def run_sigma_dut_dpp_qr_mutual_init_enrollee(dev, apdev, resp_pending):
  1037. check_dpp_capab(dev[0])
  1038. check_dpp_capab(dev[1])
  1039. csign = "30770201010420768240a3fc89d6662d9782f120527fe7fb9edc6366ab0b9c7dde96125cfd250fa00a06082a8648ce3d030107a144034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  1040. csign_pub = "3059301306072a8648ce3d020106082a8648ce3d030107034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  1041. ap_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJwYWtZbXVzd1dCdWpSYTl5OEsweDViaTVrT3VNT3dzZHRlaml2UG55ZHZzIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6ImFwIn1dLCJuZXRBY2Nlc3NLZXkiOnsia3R5IjoiRUMiLCJjcnYiOiJQLTI1NiIsIngiOiIybU5vNXZuRkI5bEw3d1VWb1hJbGVPYzBNSEE1QXZKbnpwZXZULVVTYzVNIiwieSI6IlhzS3dqVHJlLTg5WWdpU3pKaG9CN1haeUttTU05OTl3V2ZaSVl0bi01Q3MifX0.XhjFpZgcSa7G2lHy0OCYTvaZFRo5Hyx6b7g7oYyusLC7C_73AJ4_BxEZQVYJXAtDuGvb3dXSkHEKxREP9Q6Qeg"
  1042. ap_netaccesskey = "30770201010420ceba752db2ad5200fa7bc565b9c05c69b7eb006751b0b329b0279de1c19ca67ca00a06082a8648ce3d030107a14403420004da6368e6f9c507d94bef0515a1722578e73430703902f267ce97af4fe51273935ec2b08d3adefbcf588224b3261a01ed76722a630cf7df7059f64862d9fee42b"
  1043. params = { "ssid": "DPPNET01",
  1044. "wpa": "2",
  1045. "ieee80211w": "2",
  1046. "wpa_key_mgmt": "DPP",
  1047. "rsn_pairwise": "CCMP",
  1048. "dpp_connector": ap_connector,
  1049. "dpp_csign": csign_pub,
  1050. "dpp_netaccesskey": ap_netaccesskey }
  1051. try:
  1052. hapd = hostapd.add_ap(apdev[0], params)
  1053. except:
  1054. raise HwsimSkip("DPP not supported")
  1055. sigma = start_sigma_dut(dev[0].ifname)
  1056. try:
  1057. dev[0].set("dpp_config_processing", "2")
  1058. cmd = "DPP_CONFIGURATOR_ADD key=" + csign
  1059. res = dev[1].request(cmd);
  1060. if "FAIL" in res:
  1061. raise Exception("Failed to add configurator")
  1062. conf_id = int(res)
  1063. addr = dev[1].own_addr().replace(':', '')
  1064. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  1065. res = dev[1].request(cmd)
  1066. if "FAIL" in res:
  1067. raise Exception("Failed to generate bootstrapping info")
  1068. id0 = int(res)
  1069. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1070. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,GetLocalBootstrap,DPPCryptoIdentifier,P-256,DPPBS,QR")
  1071. if "status,COMPLETE" not in res:
  1072. raise Exception("dev_exec_action did not succeed: " + res)
  1073. hex = res.split(',')[3]
  1074. uri = hex.decode('hex')
  1075. logger.info("URI from sigma_dut: " + uri)
  1076. if not resp_pending:
  1077. res = dev[1].request("DPP_QR_CODE " + uri)
  1078. if "FAIL" in res:
  1079. raise Exception("Failed to parse QR Code URI")
  1080. uri = None
  1081. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  1082. if "status,COMPLETE" not in res:
  1083. raise Exception("dev_exec_action did not succeed: " + res)
  1084. t = threading.Thread(target=dpp_resp_conf_mutual,
  1085. args=(dev[1], conf_id, uri))
  1086. t.start()
  1087. time.sleep(1)
  1088. cmd = "dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPProvisioningRole,Enrollee,DPPBS,QR,DPPTimeout,10,DPPWaitForConnect,Yes"
  1089. res = sigma_dut_cmd(cmd, timeout=15)
  1090. t.join()
  1091. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK,NetworkIntroResult,OK,NetworkConnectResult,OK" not in res:
  1092. raise Exception("Unexpected result: " + res)
  1093. finally:
  1094. dev[0].set("dpp_config_processing", "0")
  1095. stop_sigma_dut(sigma)
  1096. def test_sigma_dut_dpp_qr_init_enrollee_psk(dev, apdev):
  1097. """sigma_dut DPP/QR initiator as Enrollee (PSK)"""
  1098. check_dpp_capab(dev[0])
  1099. check_dpp_capab(dev[1])
  1100. params = hostapd.wpa2_params(ssid="DPPNET01",
  1101. passphrase="ThisIsDppPassphrase")
  1102. hapd = hostapd.add_ap(apdev[0], params)
  1103. sigma = start_sigma_dut(dev[0].ifname)
  1104. try:
  1105. dev[0].set("dpp_config_processing", "2")
  1106. cmd = "DPP_CONFIGURATOR_ADD"
  1107. res = dev[1].request(cmd);
  1108. if "FAIL" in res:
  1109. raise Exception("Failed to add configurator")
  1110. conf_id = int(res)
  1111. addr = dev[1].own_addr().replace(':', '')
  1112. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  1113. res = dev[1].request(cmd)
  1114. if "FAIL" in res:
  1115. raise Exception("Failed to generate bootstrapping info")
  1116. id0 = int(res)
  1117. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1118. dev[1].set("dpp_configurator_params",
  1119. " conf=sta-psk ssid=%s pass=%s configurator=%d" % ("DPPNET01".encode("hex"), "ThisIsDppPassphrase".encode("hex"), conf_id));
  1120. cmd = "DPP_LISTEN 2437 role=configurator"
  1121. if "OK" not in dev[1].request(cmd):
  1122. raise Exception("Failed to start listen operation")
  1123. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  1124. if "status,COMPLETE" not in res:
  1125. raise Exception("dev_exec_action did not succeed: " + res)
  1126. 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)
  1127. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK,NetworkConnectResult,OK" not in res:
  1128. raise Exception("Unexpected result: " + res)
  1129. finally:
  1130. dev[0].set("dpp_config_processing", "0")
  1131. stop_sigma_dut(sigma)
  1132. def test_sigma_dut_dpp_qr_init_configurator_1(dev, apdev):
  1133. """sigma_dut DPP/QR initiator as Configurator (conf index 1)"""
  1134. run_sigma_dut_dpp_qr_init_configurator(dev, apdev, 1)
  1135. def test_sigma_dut_dpp_qr_init_configurator_2(dev, apdev):
  1136. """sigma_dut DPP/QR initiator as Configurator (conf index 2)"""
  1137. run_sigma_dut_dpp_qr_init_configurator(dev, apdev, 2)
  1138. def test_sigma_dut_dpp_qr_init_configurator_3(dev, apdev):
  1139. """sigma_dut DPP/QR initiator as Configurator (conf index 3)"""
  1140. run_sigma_dut_dpp_qr_init_configurator(dev, apdev, 3)
  1141. def test_sigma_dut_dpp_qr_init_configurator_4(dev, apdev):
  1142. """sigma_dut DPP/QR initiator as Configurator (conf index 4)"""
  1143. run_sigma_dut_dpp_qr_init_configurator(dev, apdev, 4)
  1144. def test_sigma_dut_dpp_qr_init_configurator_5(dev, apdev):
  1145. """sigma_dut DPP/QR initiator as Configurator (conf index 5)"""
  1146. run_sigma_dut_dpp_qr_init_configurator(dev, apdev, 5)
  1147. def test_sigma_dut_dpp_qr_init_configurator_6(dev, apdev):
  1148. """sigma_dut DPP/QR initiator as Configurator (conf index 6)"""
  1149. run_sigma_dut_dpp_qr_init_configurator(dev, apdev, 6)
  1150. def test_sigma_dut_dpp_qr_init_configurator_7(dev, apdev):
  1151. """sigma_dut DPP/QR initiator as Configurator (conf index 7)"""
  1152. run_sigma_dut_dpp_qr_init_configurator(dev, apdev, 7)
  1153. def test_sigma_dut_dpp_qr_init_configurator_both(dev, apdev):
  1154. """sigma_dut DPP/QR initiator as Configurator or Enrollee (conf index 1)"""
  1155. run_sigma_dut_dpp_qr_init_configurator(dev, apdev, 1, "Both")
  1156. def test_sigma_dut_dpp_qr_init_configurator_neg_freq(dev, apdev):
  1157. """sigma_dut DPP/QR initiator as Configurator (neg_freq)"""
  1158. run_sigma_dut_dpp_qr_init_configurator(dev, apdev, 1, extra='DPPSubsequentChannel,81/11')
  1159. def run_sigma_dut_dpp_qr_init_configurator(dev, apdev, conf_idx,
  1160. prov_role="Configurator",
  1161. extra=None):
  1162. check_dpp_capab(dev[0])
  1163. check_dpp_capab(dev[1])
  1164. sigma = start_sigma_dut(dev[0].ifname)
  1165. try:
  1166. addr = dev[1].own_addr().replace(':', '')
  1167. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  1168. res = dev[1].request(cmd)
  1169. if "FAIL" in res:
  1170. raise Exception("Failed to generate bootstrapping info")
  1171. id0 = int(res)
  1172. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1173. cmd = "DPP_LISTEN 2437 role=enrollee"
  1174. if "OK" not in dev[1].request(cmd):
  1175. raise Exception("Failed to start listen operation")
  1176. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  1177. if "status,COMPLETE" not in res:
  1178. raise Exception("dev_exec_action did not succeed: " + res)
  1179. cmd = "dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPAuthDirection,Single,DPPProvisioningRole,%s,DPPConfIndex,%d,DPPSigningKeyECC,P-256,DPPConfEnrolleeRole,STA,DPPBS,QR,DPPTimeout,6" % (prov_role, conf_idx)
  1180. if extra:
  1181. cmd += "," + extra
  1182. res = sigma_dut_cmd(cmd)
  1183. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK" not in res:
  1184. raise Exception("Unexpected result: " + res)
  1185. finally:
  1186. stop_sigma_dut(sigma)
  1187. def test_sigma_dut_dpp_incompatible_roles_init(dev, apdev):
  1188. """sigma_dut DPP roles incompatible (Initiator)"""
  1189. check_dpp_capab(dev[0])
  1190. check_dpp_capab(dev[1])
  1191. sigma = start_sigma_dut(dev[0].ifname)
  1192. try:
  1193. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,GetLocalBootstrap,DPPCryptoIdentifier,P-256,DPPBS,QR")
  1194. if "status,COMPLETE" not in res:
  1195. raise Exception("dev_exec_action did not succeed: " + res)
  1196. hex = res.split(',')[3]
  1197. uri = hex.decode('hex')
  1198. logger.info("URI from sigma_dut: " + uri)
  1199. res = dev[1].request("DPP_QR_CODE " + uri)
  1200. if "FAIL" in res:
  1201. raise Exception("Failed to parse QR Code URI")
  1202. id1 = int(res)
  1203. addr = dev[1].own_addr().replace(':', '')
  1204. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  1205. res = dev[1].request(cmd)
  1206. if "FAIL" in res:
  1207. raise Exception("Failed to generate bootstrapping info")
  1208. id0 = int(res)
  1209. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1210. cmd = "DPP_LISTEN 2437 role=enrollee"
  1211. if "OK" not in dev[1].request(cmd):
  1212. raise Exception("Failed to start listen operation")
  1213. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  1214. if "status,COMPLETE" not in res:
  1215. raise Exception("dev_exec_action did not succeed: " + res)
  1216. cmd = "dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPAuthDirection,Mutual,DPPProvisioningRole,Enrollee,DPPBS,QR,DPPTimeout,6"
  1217. res = sigma_dut_cmd(cmd)
  1218. if "BootstrapResult,OK,AuthResult,ROLES_NOT_COMPATIBLE" not in res:
  1219. raise Exception("Unexpected result: " + res)
  1220. finally:
  1221. stop_sigma_dut(sigma)
  1222. def dpp_init_enrollee_mutual(dev, id1, own_id):
  1223. logger.info("Starting DPP initiator/enrollee in a thread")
  1224. time.sleep(1)
  1225. cmd = "DPP_AUTH_INIT peer=%d own=%d role=enrollee" % (id1, own_id)
  1226. if "OK" not in dev.request(cmd):
  1227. raise Exception("Failed to initiate DPP Authentication")
  1228. ev = dev.wait_event(["DPP-CONF-RECEIVED",
  1229. "DPP-NOT-COMPATIBLE"], timeout=5)
  1230. if ev is None:
  1231. raise Exception("DPP configuration not completed (Enrollee)")
  1232. logger.info("DPP initiator/enrollee done")
  1233. def test_sigma_dut_dpp_incompatible_roles_resp(dev, apdev):
  1234. """sigma_dut DPP roles incompatible (Responder)"""
  1235. check_dpp_capab(dev[0])
  1236. check_dpp_capab(dev[1])
  1237. sigma = start_sigma_dut(dev[0].ifname)
  1238. try:
  1239. cmd = "dev_exec_action,program,DPP,DPPActionType,GetLocalBootstrap,DPPCryptoIdentifier,P-256,DPPBS,QR"
  1240. res = sigma_dut_cmd(cmd)
  1241. if "status,COMPLETE" not in res:
  1242. raise Exception("dev_exec_action did not succeed: " + res)
  1243. hex = res.split(',')[3]
  1244. uri = hex.decode('hex')
  1245. logger.info("URI from sigma_dut: " + uri)
  1246. res = dev[1].request("DPP_QR_CODE " + uri)
  1247. if "FAIL" in res:
  1248. raise Exception("Failed to parse QR Code URI")
  1249. id1 = int(res)
  1250. addr = dev[1].own_addr().replace(':', '')
  1251. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  1252. res = dev[1].request(cmd)
  1253. if "FAIL" in res:
  1254. raise Exception("Failed to generate bootstrapping info")
  1255. id0 = int(res)
  1256. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1257. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  1258. if "status,COMPLETE" not in res:
  1259. raise Exception("dev_exec_action did not succeed: " + res)
  1260. t = threading.Thread(target=dpp_init_enrollee_mutual, args=(dev[1], id1, id0))
  1261. t.start()
  1262. cmd = "dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Responder,DPPAuthDirection,Mutual,DPPProvisioningRole,Enrollee,DPPBS,QR,DPPTimeout,6"
  1263. res = sigma_dut_cmd(cmd, timeout=10)
  1264. t.join()
  1265. if "BootstrapResult,OK,AuthResult,ROLES_NOT_COMPATIBLE" not in res:
  1266. raise Exception("Unexpected result: " + res)
  1267. finally:
  1268. stop_sigma_dut(sigma)
  1269. def test_sigma_dut_dpp_pkex_init_configurator(dev, apdev):
  1270. """sigma_dut DPP/PKEX initiator as Configurator"""
  1271. check_dpp_capab(dev[0])
  1272. check_dpp_capab(dev[1])
  1273. sigma = start_sigma_dut(dev[0].ifname)
  1274. try:
  1275. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1276. res = dev[1].request(cmd)
  1277. if "FAIL" in res:
  1278. raise Exception("Failed to generate bootstrapping info")
  1279. id1 = int(res)
  1280. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id1)
  1281. res = dev[1].request(cmd)
  1282. if "FAIL" in res:
  1283. raise Exception("Failed to set PKEX data (responder)")
  1284. cmd = "DPP_LISTEN 2437 role=enrollee"
  1285. if "OK" not in dev[1].request(cmd):
  1286. raise Exception("Failed to start listen operation")
  1287. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPProvisioningRole,Configurator,DPPConfIndex,1,DPPSigningKeyECC,P-256,DPPConfEnrolleeRole,STA,DPPBS,PKEX,DPPPKEXCodeIdentifier,test,DPPPKEXCode,secret,DPPTimeout,6")
  1288. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK" not in res:
  1289. raise Exception("Unexpected result: " + res)
  1290. finally:
  1291. stop_sigma_dut(sigma)
  1292. def dpp_init_conf(dev, id1, conf, conf_id, extra):
  1293. logger.info("Starting DPP initiator/configurator in a thread")
  1294. cmd = "DPP_AUTH_INIT peer=%d conf=%s %s configurator=%d" % (id1, conf, extra, conf_id)
  1295. if "OK" not in dev.request(cmd):
  1296. raise Exception("Failed to initiate DPP Authentication")
  1297. ev = dev.wait_event(["DPP-CONF-SENT"], timeout=5)
  1298. if ev is None:
  1299. raise Exception("DPP configuration not completed (Configurator)")
  1300. logger.info("DPP initiator/configurator done")
  1301. def test_sigma_dut_ap_dpp_qr(dev, apdev, params):
  1302. """sigma_dut controlled AP (DPP)"""
  1303. run_sigma_dut_ap_dpp_qr(dev, apdev, params, "ap-dpp", "sta-dpp")
  1304. def test_sigma_dut_ap_dpp_qr_legacy(dev, apdev, params):
  1305. """sigma_dut controlled AP (legacy)"""
  1306. run_sigma_dut_ap_dpp_qr(dev, apdev, params, "ap-psk", "sta-psk",
  1307. extra="pass=%s" % "qwertyuiop".encode("hex"))
  1308. def test_sigma_dut_ap_dpp_qr_legacy_psk(dev, apdev, params):
  1309. """sigma_dut controlled AP (legacy)"""
  1310. run_sigma_dut_ap_dpp_qr(dev, apdev, params, "ap-psk", "sta-psk",
  1311. extra="psk=%s" % (32*"12"))
  1312. def run_sigma_dut_ap_dpp_qr(dev, apdev, params, ap_conf, sta_conf, extra=""):
  1313. check_dpp_capab(dev[0])
  1314. logdir = os.path.join(params['logdir'], "sigma_dut_ap_dpp_qr.sigma-hostapd")
  1315. with HWSimRadio() as (radio, iface):
  1316. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  1317. try:
  1318. sigma_dut_cmd_check("ap_reset_default,program,DPP")
  1319. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,GetLocalBootstrap,DPPCryptoIdentifier,P-256,DPPBS,QR")
  1320. if "status,COMPLETE" not in res:
  1321. raise Exception("dev_exec_action did not succeed: " + res)
  1322. hex = res.split(',')[3]
  1323. uri = hex.decode('hex')
  1324. logger.info("URI from sigma_dut: " + uri)
  1325. cmd = "DPP_CONFIGURATOR_ADD"
  1326. res = dev[0].request(cmd);
  1327. if "FAIL" in res:
  1328. raise Exception("Failed to add configurator")
  1329. conf_id = int(res)
  1330. res = dev[0].request("DPP_QR_CODE " + uri)
  1331. if "FAIL" in res:
  1332. raise Exception("Failed to parse QR Code URI")
  1333. id1 = int(res)
  1334. t = threading.Thread(target=dpp_init_conf,
  1335. args=(dev[0], id1, ap_conf, conf_id, extra))
  1336. t.start()
  1337. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Responder,DPPAuthDirection,Single,DPPProvisioningRole,Enrollee,DPPBS,QR,DPPTimeout,6")
  1338. t.join()
  1339. if "ConfResult,OK" not in res:
  1340. raise Exception("Unexpected result: " + res)
  1341. addr = dev[1].own_addr().replace(':', '')
  1342. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1343. res = dev[1].request(cmd)
  1344. if "FAIL" in res:
  1345. raise Exception("Failed to generate bootstrapping info")
  1346. id1 = int(res)
  1347. uri1 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1)
  1348. res = dev[0].request("DPP_QR_CODE " + uri1)
  1349. if "FAIL" in res:
  1350. raise Exception("Failed to parse QR Code URI")
  1351. id0b = int(res)
  1352. dev[1].set("dpp_config_processing", "2")
  1353. cmd = "DPP_LISTEN 2412"
  1354. if "OK" not in dev[1].request(cmd):
  1355. raise Exception("Failed to start listen operation")
  1356. cmd = "DPP_AUTH_INIT peer=%d conf=%s %s configurator=%d" % (id0b, sta_conf, extra, conf_id)
  1357. if "OK" not in dev[0].request(cmd):
  1358. raise Exception("Failed to initiate DPP Authentication")
  1359. dev[1].wait_connected()
  1360. sigma_dut_cmd_check("ap_reset_default")
  1361. finally:
  1362. dev[1].set("dpp_config_processing", "0")
  1363. stop_sigma_dut(sigma)
  1364. def test_sigma_dut_ap_dpp_pkex_responder(dev, apdev, params):
  1365. """sigma_dut controlled AP as DPP PKEX responder"""
  1366. check_dpp_capab(dev[0])
  1367. logdir = os.path.join(params['logdir'],
  1368. "sigma_dut_ap_dpp_pkex_responder.sigma-hostapd")
  1369. with HWSimRadio() as (radio, iface):
  1370. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  1371. try:
  1372. run_sigma_dut_ap_dpp_pkex_responder(dev, apdev)
  1373. finally:
  1374. stop_sigma_dut(sigma)
  1375. def dpp_init_conf_pkex(dev, conf_id, check_config=True):
  1376. logger.info("Starting DPP PKEX initiator/configurator in a thread")
  1377. time.sleep(1.5)
  1378. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1379. res = dev.request(cmd)
  1380. if "FAIL" in res:
  1381. raise Exception("Failed to generate bootstrapping info")
  1382. id = int(res)
  1383. cmd = "DPP_PKEX_ADD own=%d init=1 conf=ap-dpp configurator=%d code=password" % (id, conf_id)
  1384. res = dev.request(cmd)
  1385. if "FAIL" in res:
  1386. raise Exception("Failed to initiate DPP PKEX")
  1387. if not check_config:
  1388. return
  1389. ev = dev.wait_event(["DPP-CONF-SENT"], timeout=5)
  1390. if ev is None:
  1391. raise Exception("DPP configuration not completed (Configurator)")
  1392. logger.info("DPP initiator/configurator done")
  1393. def run_sigma_dut_ap_dpp_pkex_responder(dev, apdev):
  1394. sigma_dut_cmd_check("ap_reset_default,program,DPP")
  1395. cmd = "DPP_CONFIGURATOR_ADD"
  1396. res = dev[0].request(cmd);
  1397. if "FAIL" in res:
  1398. raise Exception("Failed to add configurator")
  1399. conf_id = int(res)
  1400. t = threading.Thread(target=dpp_init_conf_pkex, args=(dev[0], conf_id))
  1401. t.start()
  1402. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Responder,DPPAuthDirection,Mutual,DPPProvisioningRole,Enrollee,DPPBS,PKEX,DPPPKEXCode,password,DPPTimeout,6,DPPWaitForConnect,No", timeout=10)
  1403. t.join()
  1404. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK" not in res:
  1405. raise Exception("Unexpected result: " + res)
  1406. sigma_dut_cmd_check("ap_reset_default")
  1407. def test_sigma_dut_dpp_pkex_responder_proto(dev, apdev):
  1408. """sigma_dut controlled STA as DPP PKEX responder and error case"""
  1409. check_dpp_capab(dev[0])
  1410. sigma = start_sigma_dut(dev[0].ifname)
  1411. try:
  1412. run_sigma_dut_dpp_pkex_responder_proto(dev, apdev)
  1413. finally:
  1414. stop_sigma_dut(sigma)
  1415. def run_sigma_dut_dpp_pkex_responder_proto(dev, apdev):
  1416. cmd = "DPP_CONFIGURATOR_ADD"
  1417. res = dev[1].request(cmd);
  1418. if "FAIL" in res:
  1419. raise Exception("Failed to add configurator")
  1420. conf_id = int(res)
  1421. dev[1].set("dpp_test", "44")
  1422. t = threading.Thread(target=dpp_init_conf_pkex, args=(dev[1], conf_id,
  1423. False))
  1424. t.start()
  1425. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Responder,DPPProvisioningRole,Enrollee,DPPBS,PKEX,DPPPKEXCode,password,DPPTimeout,6", timeout=10)
  1426. t.join()
  1427. if "BootstrapResult,Timeout" not in res:
  1428. raise Exception("Unexpected result: " + res)
  1429. def dpp_proto_init(dev, id1):
  1430. time.sleep(1)
  1431. logger.info("Starting DPP initiator/configurator in a thread")
  1432. cmd = "DPP_CONFIGURATOR_ADD"
  1433. res = dev.request(cmd);
  1434. if "FAIL" in res:
  1435. raise Exception("Failed to add configurator")
  1436. conf_id = int(res)
  1437. cmd = "DPP_AUTH_INIT peer=%d conf=sta-dpp configurator=%d" % (id1, conf_id)
  1438. if "OK" not in dev.request(cmd):
  1439. raise Exception("Failed to initiate DPP Authentication")
  1440. def test_sigma_dut_dpp_proto_initiator(dev, apdev):
  1441. """sigma_dut DPP protocol testing - Initiator"""
  1442. check_dpp_capab(dev[0])
  1443. check_dpp_capab(dev[1])
  1444. tests = [ ("InvalidValue", "AuthenticationRequest", "WrappedData",
  1445. "BootstrapResult,OK,AuthResult,Errorsent",
  1446. None),
  1447. ("InvalidValue", "AuthenticationConfirm", "WrappedData",
  1448. "BootstrapResult,OK,AuthResult,Errorsent",
  1449. None),
  1450. ("MissingAttribute", "AuthenticationRequest", "InitCapabilities",
  1451. "BootstrapResult,OK,AuthResult,Errorsent",
  1452. "Missing or invalid I-capabilities"),
  1453. ("InvalidValue", "AuthenticationConfirm", "InitAuthTag",
  1454. "BootstrapResult,OK,AuthResult,Errorsent",
  1455. "Mismatching Initiator Authenticating Tag"),
  1456. ("MissingAttribute", "ConfigurationResponse", "EnrolleeNonce",
  1457. "BootstrapResult,OK,AuthResult,OK,ConfResult,Errorsent",
  1458. "Missing or invalid Enrollee Nonce attribute") ]
  1459. for step, frame, attr, result, fail in tests:
  1460. dev[0].request("FLUSH")
  1461. dev[1].request("FLUSH")
  1462. sigma = start_sigma_dut(dev[0].ifname)
  1463. try:
  1464. run_sigma_dut_dpp_proto_initiator(dev, step, frame, attr, result,
  1465. fail)
  1466. finally:
  1467. stop_sigma_dut(sigma)
  1468. def run_sigma_dut_dpp_proto_initiator(dev, step, frame, attr, result, fail):
  1469. addr = dev[1].own_addr().replace(':', '')
  1470. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  1471. res = dev[1].request(cmd)
  1472. if "FAIL" in res:
  1473. raise Exception("Failed to generate bootstrapping info")
  1474. id0 = int(res)
  1475. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1476. cmd = "DPP_LISTEN 2437 role=enrollee"
  1477. if "OK" not in dev[1].request(cmd):
  1478. raise Exception("Failed to start listen operation")
  1479. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  1480. if "status,COMPLETE" not in res:
  1481. raise Exception("dev_exec_action did not succeed: " + res)
  1482. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPAuthDirection,Single,DPPProvisioningRole,Configurator,DPPConfIndex,1,DPPSigningKeyECC,P-256,DPPConfEnrolleeRole,STA,DPPBS,QR,DPPTimeout,6,DPPStep,%s,DPPFrameType,%s,DPPIEAttribute,%s" % (step, frame, attr),
  1483. timeout=10)
  1484. if result not in res:
  1485. raise Exception("Unexpected result: " + res)
  1486. if fail:
  1487. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  1488. if ev is None or fail not in ev:
  1489. raise Exception("Failure not reported correctly: " + str(ev))
  1490. dev[1].request("DPP_STOP_LISTEN")
  1491. dev[0].dump_monitor()
  1492. dev[1].dump_monitor()
  1493. def test_sigma_dut_dpp_proto_responder(dev, apdev):
  1494. """sigma_dut DPP protocol testing - Responder"""
  1495. check_dpp_capab(dev[0])
  1496. check_dpp_capab(dev[1])
  1497. tests = [ ("MissingAttribute", "AuthenticationResponse", "DPPStatus",
  1498. "BootstrapResult,OK,AuthResult,Errorsent",
  1499. "Missing or invalid required DPP Status attribute"),
  1500. ("MissingAttribute", "ConfigurationRequest", "EnrolleeNonce",
  1501. "BootstrapResult,OK,AuthResult,OK,ConfResult,Errorsent",
  1502. "Missing or invalid Enrollee Nonce attribute") ]
  1503. for step, frame, attr, result, fail in tests:
  1504. dev[0].request("FLUSH")
  1505. dev[1].request("FLUSH")
  1506. sigma = start_sigma_dut(dev[0].ifname)
  1507. try:
  1508. run_sigma_dut_dpp_proto_responder(dev, step, frame, attr, result,
  1509. fail)
  1510. finally:
  1511. stop_sigma_dut(sigma)
  1512. def run_sigma_dut_dpp_proto_responder(dev, step, frame, attr, result, fail):
  1513. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,GetLocalBootstrap,DPPCryptoIdentifier,P-256,DPPBS,QR")
  1514. if "status,COMPLETE" not in res:
  1515. raise Exception("dev_exec_action did not succeed: " + res)
  1516. hex = res.split(',')[3]
  1517. uri = hex.decode('hex')
  1518. logger.info("URI from sigma_dut: " + uri)
  1519. res = dev[1].request("DPP_QR_CODE " + uri)
  1520. if "FAIL" in res:
  1521. raise Exception("Failed to parse QR Code URI")
  1522. id1 = int(res)
  1523. t = threading.Thread(target=dpp_proto_init, args=(dev[1], id1))
  1524. t.start()
  1525. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Responder,DPPAuthDirection,Single,DPPProvisioningRole,Enrollee,DPPConfIndex,1,DPPSigningKeyECC,P-256,DPPConfEnrolleeRole,STA,DPPBS,QR,DPPTimeout,6,DPPStep,%s,DPPFrameType,%s,DPPIEAttribute,%s" % (step, frame, attr), timeout=10)
  1526. t.join()
  1527. if result not in res:
  1528. raise Exception("Unexpected result: " + res)
  1529. if fail:
  1530. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  1531. if ev is None or fail not in ev:
  1532. raise Exception("Failure not reported correctly:" + str(ev))
  1533. dev[1].request("DPP_STOP_LISTEN")
  1534. dev[0].dump_monitor()
  1535. dev[1].dump_monitor()
  1536. def test_sigma_dut_dpp_proto_stop_at_initiator(dev, apdev):
  1537. """sigma_dut DPP protocol testing - Stop at RX on Initiator"""
  1538. check_dpp_capab(dev[0])
  1539. check_dpp_capab(dev[1])
  1540. tests = [ ("AuthenticationResponse",
  1541. "BootstrapResult,OK,AuthResult,Errorsent",
  1542. None),
  1543. ("ConfigurationRequest",
  1544. "BootstrapResult,OK,AuthResult,OK,ConfResult,Errorsent",
  1545. None)]
  1546. for frame, result, fail in tests:
  1547. dev[0].request("FLUSH")
  1548. dev[1].request("FLUSH")
  1549. sigma = start_sigma_dut(dev[0].ifname)
  1550. try:
  1551. run_sigma_dut_dpp_proto_stop_at_initiator(dev, frame, result, fail)
  1552. finally:
  1553. stop_sigma_dut(sigma)
  1554. def run_sigma_dut_dpp_proto_stop_at_initiator(dev, frame, result, fail):
  1555. addr = dev[1].own_addr().replace(':', '')
  1556. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  1557. res = dev[1].request(cmd)
  1558. if "FAIL" in res:
  1559. raise Exception("Failed to generate bootstrapping info")
  1560. id0 = int(res)
  1561. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1562. cmd = "DPP_LISTEN 2437 role=enrollee"
  1563. if "OK" not in dev[1].request(cmd):
  1564. raise Exception("Failed to start listen operation")
  1565. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  1566. if "status,COMPLETE" not in res:
  1567. raise Exception("dev_exec_action did not succeed: " + res)
  1568. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPAuthDirection,Single,DPPProvisioningRole,Configurator,DPPConfIndex,1,DPPSigningKeyECC,P-256,DPPConfEnrolleeRole,STA,DPPBS,QR,DPPTimeout,6,DPPStep,Timeout,DPPFrameType,%s" % (frame))
  1569. if result not in res:
  1570. raise Exception("Unexpected result: " + res)
  1571. if fail:
  1572. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  1573. if ev is None or fail not in ev:
  1574. raise Exception("Failure not reported correctly: " + str(ev))
  1575. dev[1].request("DPP_STOP_LISTEN")
  1576. dev[0].dump_monitor()
  1577. dev[1].dump_monitor()
  1578. def test_sigma_dut_dpp_proto_stop_at_responder(dev, apdev):
  1579. """sigma_dut DPP protocol testing - Stop at RX on Responder"""
  1580. check_dpp_capab(dev[0])
  1581. check_dpp_capab(dev[1])
  1582. tests = [ ("AuthenticationRequest",
  1583. "BootstrapResult,OK,AuthResult,Errorsent",
  1584. None),
  1585. ("AuthenticationConfirm",
  1586. "BootstrapResult,OK,AuthResult,Errorsent",
  1587. None) ]
  1588. for frame, result, fail in tests:
  1589. dev[0].request("FLUSH")
  1590. dev[1].request("FLUSH")
  1591. sigma = start_sigma_dut(dev[0].ifname)
  1592. try:
  1593. run_sigma_dut_dpp_proto_stop_at_responder(dev, frame, result, fail)
  1594. finally:
  1595. stop_sigma_dut(sigma)
  1596. def run_sigma_dut_dpp_proto_stop_at_responder(dev, frame, result, fail):
  1597. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,GetLocalBootstrap,DPPCryptoIdentifier,P-256,DPPBS,QR")
  1598. if "status,COMPLETE" not in res:
  1599. raise Exception("dev_exec_action did not succeed: " + res)
  1600. hex = res.split(',')[3]
  1601. uri = hex.decode('hex')
  1602. logger.info("URI from sigma_dut: " + uri)
  1603. res = dev[1].request("DPP_QR_CODE " + uri)
  1604. if "FAIL" in res:
  1605. raise Exception("Failed to parse QR Code URI")
  1606. id1 = int(res)
  1607. t = threading.Thread(target=dpp_proto_init, args=(dev[1], id1))
  1608. t.start()
  1609. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Responder,DPPAuthDirection,Single,DPPProvisioningRole,Enrollee,DPPConfIndex,1,DPPSigningKeyECC,P-256,DPPConfEnrolleeRole,STA,DPPBS,QR,DPPTimeout,6,DPPStep,Timeout,DPPFrameType,%s" % (frame), timeout=10)
  1610. t.join()
  1611. if result not in res:
  1612. raise Exception("Unexpected result: " + res)
  1613. if fail:
  1614. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  1615. if ev is None or fail not in ev:
  1616. raise Exception("Failure not reported correctly:" + str(ev))
  1617. dev[1].request("DPP_STOP_LISTEN")
  1618. dev[0].dump_monitor()
  1619. dev[1].dump_monitor()
  1620. def dpp_proto_init_pkex(dev):
  1621. time.sleep(1)
  1622. logger.info("Starting DPP PKEX initiator/configurator in a thread")
  1623. cmd = "DPP_CONFIGURATOR_ADD"
  1624. res = dev.request(cmd);
  1625. if "FAIL" in res:
  1626. raise Exception("Failed to add configurator")
  1627. conf_id = int(res)
  1628. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1629. res = dev.request(cmd)
  1630. if "FAIL" in res:
  1631. raise Exception("Failed to generate bootstrapping info")
  1632. id = int(res)
  1633. cmd = "DPP_PKEX_ADD own=%d init=1 conf=sta-dpp configurator=%d code=secret" % (id, conf_id)
  1634. if "FAIL" in dev.request(cmd):
  1635. raise Exception("Failed to initiate DPP PKEX")
  1636. def test_sigma_dut_dpp_proto_initiator_pkex(dev, apdev):
  1637. """sigma_dut DPP protocol testing - Initiator (PKEX)"""
  1638. check_dpp_capab(dev[0])
  1639. check_dpp_capab(dev[1])
  1640. tests = [ ("InvalidValue", "PKEXCRRequest", "WrappedData",
  1641. "BootstrapResult,Errorsent",
  1642. None),
  1643. ("MissingAttribute", "PKEXExchangeRequest", "FiniteCyclicGroup",
  1644. "BootstrapResult,Errorsent",
  1645. "Missing or invalid Finite Cyclic Group attribute"),
  1646. ("MissingAttribute", "PKEXCRRequest", "BSKey",
  1647. "BootstrapResult,Errorsent",
  1648. "No valid peer bootstrapping key found") ]
  1649. for step, frame, attr, result, fail in tests:
  1650. dev[0].request("FLUSH")
  1651. dev[1].request("FLUSH")
  1652. sigma = start_sigma_dut(dev[0].ifname)
  1653. try:
  1654. run_sigma_dut_dpp_proto_initiator_pkex(dev, step, frame, attr,
  1655. result, fail)
  1656. finally:
  1657. stop_sigma_dut(sigma)
  1658. def run_sigma_dut_dpp_proto_initiator_pkex(dev, step, frame, attr, result, fail):
  1659. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1660. res = dev[1].request(cmd)
  1661. if "FAIL" in res:
  1662. raise Exception("Failed to generate bootstrapping info")
  1663. id1 = int(res)
  1664. cmd = "DPP_PKEX_ADD own=%d code=secret" % (id1)
  1665. res = dev[1].request(cmd)
  1666. if "FAIL" in res:
  1667. raise Exception("Failed to set PKEX data (responder)")
  1668. cmd = "DPP_LISTEN 2437 role=enrollee"
  1669. if "OK" not in dev[1].request(cmd):
  1670. raise Exception("Failed to start listen operation")
  1671. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPAuthDirection,Single,DPPProvisioningRole,Configurator,DPPConfIndex,1,DPPSigningKeyECC,P-256,DPPConfEnrolleeRole,STA,DPPBS,PKEX,DPPPKEXCode,secret,DPPTimeout,6,DPPStep,%s,DPPFrameType,%s,DPPIEAttribute,%s" % (step, frame, attr))
  1672. if result not in res:
  1673. raise Exception("Unexpected result: " + res)
  1674. if fail:
  1675. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  1676. if ev is None or fail not in ev:
  1677. raise Exception("Failure not reported correctly: " + str(ev))
  1678. dev[1].request("DPP_STOP_LISTEN")
  1679. dev[0].dump_monitor()
  1680. dev[1].dump_monitor()
  1681. def test_sigma_dut_dpp_proto_responder_pkex(dev, apdev):
  1682. """sigma_dut DPP protocol testing - Responder (PKEX)"""
  1683. check_dpp_capab(dev[0])
  1684. check_dpp_capab(dev[1])
  1685. tests = [ ("InvalidValue", "PKEXCRResponse", "WrappedData",
  1686. "BootstrapResult,Errorsent",
  1687. None),
  1688. ("MissingAttribute", "PKEXExchangeResponse", "DPPStatus",
  1689. "BootstrapResult,Errorsent",
  1690. "No DPP Status attribute"),
  1691. ("MissingAttribute", "PKEXCRResponse", "BSKey",
  1692. "BootstrapResult,Errorsent",
  1693. "No valid peer bootstrapping key found") ]
  1694. for step, frame, attr, result, fail in tests:
  1695. dev[0].request("FLUSH")
  1696. dev[1].request("FLUSH")
  1697. sigma = start_sigma_dut(dev[0].ifname)
  1698. try:
  1699. run_sigma_dut_dpp_proto_responder_pkex(dev, step, frame, attr,
  1700. result, fail)
  1701. finally:
  1702. stop_sigma_dut(sigma)
  1703. def run_sigma_dut_dpp_proto_responder_pkex(dev, step, frame, attr, result, fail):
  1704. t = threading.Thread(target=dpp_proto_init_pkex, args=(dev[1],))
  1705. t.start()
  1706. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Responder,DPPAuthDirection,Single,DPPProvisioningRole,Enrollee,DPPConfIndex,1,DPPSigningKeyECC,P-256,DPPConfEnrolleeRole,STA,DPPBS,PKEX,DPPPKEXCode,secret,DPPTimeout,6,DPPStep,%s,DPPFrameType,%s,DPPIEAttribute,%s" % (step, frame, attr), timeout=10)
  1707. t.join()
  1708. if result not in res:
  1709. raise Exception("Unexpected result: " + res)
  1710. if fail:
  1711. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  1712. if ev is None or fail not in ev:
  1713. raise Exception("Failure not reported correctly:" + str(ev))
  1714. dev[1].request("DPP_STOP_LISTEN")
  1715. dev[0].dump_monitor()
  1716. dev[1].dump_monitor()
  1717. def init_sigma_dut_dpp_proto_peer_disc_req(dev, apdev):
  1718. check_dpp_capab(dev[0])
  1719. check_dpp_capab(dev[1])
  1720. csign = "30770201010420768240a3fc89d6662d9782f120527fe7fb9edc6366ab0b9c7dde96125cfd250fa00a06082a8648ce3d030107a144034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  1721. csign_pub = "3059301306072a8648ce3d020106082a8648ce3d030107034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  1722. ap_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJwYWtZbXVzd1dCdWpSYTl5OEsweDViaTVrT3VNT3dzZHRlaml2UG55ZHZzIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6ImFwIn1dLCJuZXRBY2Nlc3NLZXkiOnsia3R5IjoiRUMiLCJjcnYiOiJQLTI1NiIsIngiOiIybU5vNXZuRkI5bEw3d1VWb1hJbGVPYzBNSEE1QXZKbnpwZXZULVVTYzVNIiwieSI6IlhzS3dqVHJlLTg5WWdpU3pKaG9CN1haeUttTU05OTl3V2ZaSVl0bi01Q3MifX0.XhjFpZgcSa7G2lHy0OCYTvaZFRo5Hyx6b7g7oYyusLC7C_73AJ4_BxEZQVYJXAtDuGvb3dXSkHEKxREP9Q6Qeg"
  1723. ap_netaccesskey = "30770201010420ceba752db2ad5200fa7bc565b9c05c69b7eb006751b0b329b0279de1c19ca67ca00a06082a8648ce3d030107a14403420004da6368e6f9c507d94bef0515a1722578e73430703902f267ce97af4fe51273935ec2b08d3adefbcf588224b3261a01ed76722a630cf7df7059f64862d9fee42b"
  1724. params = { "ssid": "DPPNET01",
  1725. "wpa": "2",
  1726. "ieee80211w": "2",
  1727. "wpa_key_mgmt": "DPP",
  1728. "rsn_pairwise": "CCMP",
  1729. "dpp_connector": ap_connector,
  1730. "dpp_csign": csign_pub,
  1731. "dpp_netaccesskey": ap_netaccesskey }
  1732. try:
  1733. hapd = hostapd.add_ap(apdev[0], params)
  1734. except:
  1735. raise HwsimSkip("DPP not supported")
  1736. dev[0].set("dpp_config_processing", "2")
  1737. cmd = "DPP_CONFIGURATOR_ADD key=" + csign
  1738. res = dev[1].request(cmd);
  1739. if "FAIL" in res:
  1740. raise Exception("Failed to add configurator")
  1741. conf_id = int(res)
  1742. addr = dev[1].own_addr().replace(':', '')
  1743. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  1744. res = dev[1].request(cmd)
  1745. if "FAIL" in res:
  1746. raise Exception("Failed to generate bootstrapping info")
  1747. id0 = int(res)
  1748. uri0 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1749. dev[1].set("dpp_configurator_params",
  1750. " conf=sta-dpp ssid=%s configurator=%d" % ("DPPNET01".encode("hex"), conf_id));
  1751. cmd = "DPP_LISTEN 2437 role=configurator"
  1752. if "OK" not in dev[1].request(cmd):
  1753. raise Exception("Failed to start listen operation")
  1754. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri0.encode('hex'))
  1755. if "status,COMPLETE" not in res:
  1756. raise Exception("dev_exec_action did not succeed: " + res)
  1757. def test_sigma_dut_dpp_proto_peer_disc_req(dev, apdev):
  1758. """sigma_dut DPP protocol testing - Peer Discovery Request"""
  1759. sigma = start_sigma_dut(dev[0].ifname)
  1760. try:
  1761. init_sigma_dut_dpp_proto_peer_disc_req(dev, apdev)
  1762. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPAuthDirection,Single,DPPProvisioningRole,Enrollee,DPPBS,QR,DPPTimeout,6,DPPWaitForConnect,Yes,DPPStep,MissingAttribute,DPPFrameType,PeerDiscoveryRequest,DPPIEAttribute,TransactionID", timeout=10)
  1763. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK,NetworkIntroResult,Errorsent" not in res:
  1764. raise Exception("Unexpected result: " + res)
  1765. finally:
  1766. dev[0].set("dpp_config_processing", "0")
  1767. stop_sigma_dut(sigma)
  1768. def test_sigma_dut_dpp_self_config(dev, apdev):
  1769. """sigma_dut DPP Configurator enrolling an AP and using self-configuration"""
  1770. check_dpp_capab(dev[0])
  1771. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured" })
  1772. check_dpp_capab(hapd)
  1773. sigma = start_sigma_dut(dev[0].ifname)
  1774. try:
  1775. dev[0].set("dpp_config_processing", "2")
  1776. addr = hapd.own_addr().replace(':', '')
  1777. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1778. res = hapd.request(cmd)
  1779. if "FAIL" in res:
  1780. raise Exception("Failed to generate bootstrapping info")
  1781. id = int(res)
  1782. uri = hapd.request("DPP_BOOTSTRAP_GET_URI %d" % id)
  1783. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri.encode('hex'))
  1784. if "status,COMPLETE" not in res:
  1785. raise Exception("dev_exec_action did not succeed: " + res)
  1786. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPAuthDirection,Single,DPPProvisioningRole,Configurator,DPPConfIndex,1,DPPSigningKeyECC,P-256,DPPConfEnrolleeRole,AP,DPPBS,QR,DPPTimeout,6")
  1787. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK" not in res:
  1788. raise Exception("Unexpected result: " + res)
  1789. update_hapd_config(hapd)
  1790. cmd = "dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPCryptoIdentifier,P-256,DPPBS,QR,DPPAuthRole,Initiator,DPPProvisioningRole,Configurator,DPPAuthDirection,Single,DPPConfIndex,1,DPPTimeout,6,DPPWaitForConnect,Yes,DPPSelfConfigure,Yes"
  1791. res = sigma_dut_cmd(cmd, timeout=10)
  1792. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK,NetworkIntroResult,OK,NetworkConnectResult,OK" not in res:
  1793. raise Exception("Unexpected result: " + res)
  1794. finally:
  1795. stop_sigma_dut(sigma)
  1796. dev[0].set("dpp_config_processing", "0")
  1797. def test_sigma_dut_ap_dpp_self_config(dev, apdev, params):
  1798. """sigma_dut DPP AP Configurator using self-configuration"""
  1799. logdir = os.path.join(params['logdir'],
  1800. "sigma_dut_ap_dpp_self_config.sigma-hostapd")
  1801. with HWSimRadio() as (radio, iface):
  1802. sigma = start_sigma_dut(iface, hostapd_logdir=logdir)
  1803. try:
  1804. run_sigma_dut_ap_dpp_self_config(dev, apdev)
  1805. finally:
  1806. stop_sigma_dut(sigma)
  1807. dev[0].set("dpp_config_processing", "0")
  1808. def run_sigma_dut_ap_dpp_self_config(dev, apdev):
  1809. check_dpp_capab(dev[0])
  1810. sigma_dut_cmd_check("ap_reset_default,program,DPP")
  1811. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPAuthDirection,Single,DPPProvisioningRole,Configurator,DPPConfEnrolleeRole,AP,DPPBS,QR,DPPConfIndex,1,DPPSelfConfigure,Yes,DPPTimeout,6", timeout=10)
  1812. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK" not in res:
  1813. raise Exception("Unexpected result: " + res)
  1814. dev[0].set("dpp_config_processing", "2")
  1815. addr = dev[0].own_addr().replace(':', '')
  1816. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/11 mac=" + addr
  1817. res = dev[0].request(cmd)
  1818. if "FAIL" in res:
  1819. raise Exception("Failed to generate bootstrapping info")
  1820. id = int(res)
  1821. uri = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id)
  1822. cmd = "DPP_LISTEN 2462 role=enrollee"
  1823. if "OK" not in dev[0].request(cmd):
  1824. raise Exception("Failed to start listen operation")
  1825. res = sigma_dut_cmd("dev_exec_action,program,DPP,DPPActionType,SetPeerBootstrap,DPPBootstrappingdata,%s,DPPBS,QR" % uri.encode('hex'))
  1826. if "status,COMPLETE" not in res:
  1827. raise Exception("dev_exec_action did not succeed: " + res)
  1828. cmd = "dev_exec_action,program,DPP,DPPActionType,AutomaticDPP,DPPAuthRole,Initiator,DPPAuthDirection,Single,DPPProvisioningRole,Configurator,DPPConfIndex,1,DPPSigningKeyECC,P-256,DPPConfEnrolleeRole,STA,DPPBS,QR,DPPTimeout,6"
  1829. res = sigma_dut_cmd(cmd)
  1830. if "BootstrapResult,OK,AuthResult,OK,ConfResult,OK" not in res:
  1831. raise Exception("Unexpected result: " + res)
  1832. dev[0].wait_connected()
  1833. dev[0].request("DISCONNECT")
  1834. dev[0].wait_disconnected()
  1835. sigma_dut_cmd_check("ap_reset_default")
  1836. def test_sigma_dut_preconfigured_profile(dev, apdev):
  1837. """sigma_dut controlled connection using preconfigured profile"""
  1838. try:
  1839. run_sigma_dut_preconfigured_profile(dev, apdev)
  1840. finally:
  1841. dev[0].set("ignore_old_scan_res", "0")
  1842. def run_sigma_dut_preconfigured_profile(dev, apdev):
  1843. ifname = dev[0].ifname
  1844. sigma = start_sigma_dut(ifname)
  1845. params = hostapd.wpa2_params(ssid="test-psk", passphrase="12345678")
  1846. hapd = hostapd.add_ap(apdev[0], params)
  1847. dev[0].connect("test-psk", psk="12345678", scan_freq="2412",
  1848. only_add_network=True)
  1849. sigma_dut_cmd_check("sta_set_ip_config,interface,%s,dhcp,0,ip,127.0.0.11,mask,255.255.255.0" % ifname)
  1850. sigma_dut_cmd_check("sta_associate,interface,%s,ssid,%s" % (ifname, "test-psk"))
  1851. sigma_dut_wait_connected(ifname)
  1852. sigma_dut_cmd_check("sta_get_ip_config,interface," + ifname)
  1853. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  1854. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  1855. stop_sigma_dut(sigma)
  1856. def test_sigma_dut_wps_pbc(dev, apdev):
  1857. """sigma_dut and WPS PBC Enrollee"""
  1858. try:
  1859. run_sigma_dut_wps_pbc(dev, apdev)
  1860. finally:
  1861. dev[0].set("ignore_old_scan_res", "0")
  1862. def run_sigma_dut_wps_pbc(dev, apdev):
  1863. ssid = "test-wps-conf"
  1864. hapd = hostapd.add_ap(apdev[0],
  1865. { "ssid": "wps", "eap_server": "1", "wps_state": "2",
  1866. "wpa_passphrase": "12345678", "wpa": "2",
  1867. "wpa_key_mgmt": "WPA-PSK", "rsn_pairwise": "CCMP" })
  1868. hapd.request("WPS_PBC")
  1869. ifname = dev[0].ifname
  1870. sigma = start_sigma_dut(ifname)
  1871. cmd = "start_wps_registration,interface,%s" % ifname
  1872. cmd += ",WpsRole,Enrollee"
  1873. cmd += ",WpsConfigMethod,PBC"
  1874. sigma_dut_cmd_check(cmd, timeout=15)
  1875. sigma_dut_cmd_check("sta_disconnect,interface," + ifname)
  1876. hapd.disable()
  1877. sigma_dut_cmd_check("sta_reset_default,interface," + ifname)
  1878. stop_sigma_dut(sigma)
  1879. dev[0].flush_scan_cache()
  1880. def test_sigma_dut_sta_scan_bss(dev, apdev):
  1881. """sigma_dut sta_scan_bss"""
  1882. hapd = hostapd.add_ap(apdev[0], { "ssid": "test" })
  1883. sigma = start_sigma_dut(dev[0].ifname)
  1884. try:
  1885. cmd = "sta_scan_bss,Interface,%s,BSSID,%s" % (dev[0].ifname, \
  1886. hapd.own_addr())
  1887. res = sigma_dut_cmd(cmd, timeout=10)
  1888. if "ssid,test,bsschannel,1" not in res:
  1889. raise Exception("Unexpected result: " + res)
  1890. finally:
  1891. stop_sigma_dut(sigma)