test_dpp.py 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267
  1. # Test cases for Device Provisioning Protocol (DPP)
  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 time
  9. import hostapd
  10. import hwsim_utils
  11. from utils import HwsimSkip
  12. from wpasupplicant import WpaSupplicant
  13. def check_dpp_capab(dev, brainpool=False):
  14. if "UNKNOWN COMMAND" in dev.request("DPP_BOOTSTRAP_GET_URI 0"):
  15. raise HwsimSkip("DPP not supported")
  16. if brainpool:
  17. tls = dev.request("GET tls_library")
  18. if not tls.startswith("OpenSSL") or "run=BoringSSL" in tls:
  19. raise HwsimSkip("Crypto library does not support Brainpool curves: " + tls)
  20. def test_dpp_qr_code_parsing(dev, apdev):
  21. """DPP QR Code parsing"""
  22. check_dpp_capab(dev[0])
  23. id = []
  24. tests = [ "DPP:C:81/1,115/36;K:MDkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDIgADM2206avxHJaHXgLMkq/24e0rsrfMP9K1Tm8gx+ovP0I=;;",
  25. "DPP:I:SN=4774LH2b4044;M:010203040506;K:MDkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDIgADURzxmttZoIRIPWGoQMV00XHWCAQIhXruVWOz0NjlkIA=;;",
  26. "DPP:I:;M:010203040506;K:MDkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDIgADURzxmttZoIRIPWGoQMV00XHWCAQIhXruVWOz0NjlkIA=;;" ]
  27. for uri in tests:
  28. res = dev[0].request("DPP_QR_CODE " + uri)
  29. if "FAIL" in res:
  30. raise Exception("Failed to parse QR Code")
  31. id.append(int(res))
  32. uri2 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id[-1])
  33. if uri != uri2:
  34. raise Exception("Returned URI does not match")
  35. tests = [ "foo",
  36. "DPP:",
  37. "DPP:;;",
  38. "DPP:C:1/2;M:;K;;",
  39. "DPP:I:;M:01020304050;K:MDkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDIgADURzxmttZoIRIPWGoQMV00XHWCAQIhXruVWOz0NjlkIA=;;" ]
  40. for t in tests:
  41. res = dev[0].request("DPP_QR_CODE " + t)
  42. if "FAIL" not in res:
  43. raise Exception("Accepted invalid QR Code: " + t)
  44. logger.info("ID: " + str(id))
  45. if id[0] == id[1] or id[0] == id[2] or id[1] == id[2]:
  46. raise Exception("Duplicate ID returned")
  47. if "FAIL" not in dev[0].request("DPP_BOOTSTRAP_REMOVE 12345678"):
  48. raise Exception("DPP_BOOTSTRAP_REMOVE accepted unexpectedly")
  49. if "OK" not in dev[0].request("DPP_BOOTSTRAP_REMOVE %d" % id[1]):
  50. raise Exception("DPP_BOOTSTRAP_REMOVE failed")
  51. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode")
  52. if "FAIL" in res:
  53. raise Exception("Failed to generate bootstrapping info")
  54. uri = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % int(res))
  55. logger.info("Generated URI: " + uri)
  56. res = dev[0].request("DPP_QR_CODE " + uri)
  57. if "FAIL" in res:
  58. raise Exception("Failed to parse self-generated QR Code URI")
  59. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1,115/36 mac=010203040506 info=foo")
  60. if "FAIL" in res:
  61. raise Exception("Failed to generate bootstrapping info")
  62. uri = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % int(res))
  63. logger.info("Generated URI: " + uri)
  64. res = dev[0].request("DPP_QR_CODE " + uri)
  65. if "FAIL" in res:
  66. raise Exception("Failed to parse self-generated QR Code URI")
  67. def test_dpp_qr_code_auth_broadcast(dev, apdev):
  68. """DPP QR Code and authentication exchange (broadcast)"""
  69. check_dpp_capab(dev[0])
  70. check_dpp_capab(dev[1])
  71. logger.info("dev0 displays QR Code")
  72. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1")
  73. if "FAIL" in res:
  74. raise Exception("Failed to generate bootstrapping info")
  75. id0 = int(res)
  76. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  77. logger.info("dev1 scans QR Code")
  78. res = dev[1].request("DPP_QR_CODE " + uri0)
  79. if "FAIL" in res:
  80. raise Exception("Failed to parse QR Code URI")
  81. id1 = int(res)
  82. logger.info("dev1 initiates DPP Authentication")
  83. if "OK" not in dev[0].request("DPP_LISTEN 2412"):
  84. raise Exception("Failed to start listen operation")
  85. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d" % id1):
  86. raise Exception("Failed to initiate DPP Authentication")
  87. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  88. if ev is None:
  89. raise Exception("DPP authentication did not succeed (Responder)")
  90. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  91. if ev is None:
  92. raise Exception("DPP authentication did not succeed (Initiator)")
  93. dev[0].request("DPP_STOP_LISTEN")
  94. def test_dpp_qr_code_auth_unicast(dev, apdev):
  95. """DPP QR Code and authentication exchange (unicast)"""
  96. run_dpp_qr_code_auth_unicast(dev, apdev, None)
  97. def test_dpp_qr_code_auth_unicast_ap_enrollee(dev, apdev):
  98. """DPP QR Code and authentication exchange (AP enrollee)"""
  99. run_dpp_qr_code_auth_unicast(dev, apdev, None, netrole="ap")
  100. def test_dpp_qr_code_curve_prime256v1(dev, apdev):
  101. """DPP QR Code and curve prime256v1"""
  102. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1")
  103. def test_dpp_qr_code_curve_secp384r1(dev, apdev):
  104. """DPP QR Code and curve secp384r1"""
  105. run_dpp_qr_code_auth_unicast(dev, apdev, "secp384r1")
  106. def test_dpp_qr_code_curve_secp521r1(dev, apdev):
  107. """DPP QR Code and curve secp521r1"""
  108. run_dpp_qr_code_auth_unicast(dev, apdev, "secp521r1")
  109. def test_dpp_qr_code_curve_brainpoolP256r1(dev, apdev):
  110. """DPP QR Code and curve brainpoolP256r1"""
  111. run_dpp_qr_code_auth_unicast(dev, apdev, "brainpoolP256r1")
  112. def test_dpp_qr_code_curve_brainpoolP384r1(dev, apdev):
  113. """DPP QR Code and curve brainpoolP384r1"""
  114. run_dpp_qr_code_auth_unicast(dev, apdev, "brainpoolP384r1")
  115. def test_dpp_qr_code_curve_brainpoolP512r1(dev, apdev):
  116. """DPP QR Code and curve brainpoolP512r1"""
  117. run_dpp_qr_code_auth_unicast(dev, apdev, "brainpoolP512r1")
  118. def test_dpp_qr_code_set_key(dev, apdev):
  119. """DPP QR Code and fixed bootstrapping key"""
  120. run_dpp_qr_code_auth_unicast(dev, apdev, None, key="30770201010420e5143ac74682cc6869a830e8f5301a5fa569130ac329b1d7dd6f2a7495dbcbe1a00a06082a8648ce3d030107a144034200045e13e167c33dbc7d85541e5509600aa8139bbb3e39e25898992c5d01be92039ee2850f17e71506ded0d6b25677441eae249f8e225c68dd15a6354dca54006383")
  121. def run_dpp_qr_code_auth_unicast(dev, apdev, curve, netrole=None, key=None,
  122. require_conf_success=False, init_extra=None,
  123. require_conf_failure=False,
  124. configurator=False, conf_curve=None):
  125. check_dpp_capab(dev[0], curve and "brainpool" in curve)
  126. check_dpp_capab(dev[1], curve and "brainpool" in curve)
  127. if configurator:
  128. logger.info("Create configurator on dev1")
  129. cmd = "DPP_CONFIGURATOR_ADD"
  130. if conf_curve:
  131. cmd += " curve=" + conf_curve
  132. res = dev[1].request(cmd);
  133. if "FAIL" in res:
  134. raise Exception("Failed to add configurator")
  135. conf_id = int(res)
  136. logger.info("dev0 displays QR Code")
  137. addr = dev[0].own_addr().replace(':', '')
  138. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  139. if curve:
  140. cmd += " curve=" + curve
  141. if key:
  142. cmd += " key=" + key
  143. res = dev[0].request(cmd)
  144. if "FAIL" in res:
  145. raise Exception("Failed to generate bootstrapping info")
  146. id0 = int(res)
  147. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  148. logger.info("dev1 scans QR Code")
  149. res = dev[1].request("DPP_QR_CODE " + uri0)
  150. if "FAIL" in res:
  151. raise Exception("Failed to parse QR Code URI")
  152. id1 = int(res)
  153. logger.info("dev1 initiates DPP Authentication")
  154. cmd = "DPP_LISTEN 2412"
  155. if netrole:
  156. cmd += " netrole=" + netrole
  157. if "OK" not in dev[0].request(cmd):
  158. raise Exception("Failed to start listen operation")
  159. cmd = "DPP_AUTH_INIT peer=%d" % id1
  160. if init_extra:
  161. cmd += " " + init_extra
  162. if configurator:
  163. cmd += " configurator=%d" % conf_id
  164. if "OK" not in dev[1].request(cmd):
  165. raise Exception("Failed to initiate DPP Authentication")
  166. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  167. if ev is None:
  168. raise Exception("DPP authentication did not succeed (Responder)")
  169. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  170. if ev is None:
  171. raise Exception("DPP authentication did not succeed (Initiator)")
  172. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=5)
  173. if ev is None:
  174. raise Exception("DPP configuration not completed (Configurator)")
  175. ev = dev[0].wait_event(["DPP-CONF-RECEIVED", "DPP-CONF-FAILED"], timeout=5)
  176. if ev is None:
  177. raise Exception("DPP configuration not completed (Enrollee)")
  178. if require_conf_success:
  179. if "DPP-CONF-FAILED" in ev:
  180. raise Exception("DPP configuration failed")
  181. if require_conf_failure:
  182. if "DPP-CONF-SUCCESS" in ev:
  183. raise Exception("DPP configuration succeeded unexpectedly")
  184. dev[0].request("DPP_STOP_LISTEN")
  185. dev[0].dump_monitor()
  186. dev[1].dump_monitor()
  187. def test_dpp_qr_code_auth_mutual(dev, apdev):
  188. """DPP QR Code and authentication exchange (mutual)"""
  189. check_dpp_capab(dev[0])
  190. check_dpp_capab(dev[1])
  191. logger.info("dev0 displays QR Code")
  192. addr = dev[0].own_addr().replace(':', '')
  193. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  194. if "FAIL" in res:
  195. raise Exception("Failed to generate bootstrapping info")
  196. id0 = int(res)
  197. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  198. logger.info("dev1 scans QR Code")
  199. res = dev[1].request("DPP_QR_CODE " + uri0)
  200. if "FAIL" in res:
  201. raise Exception("Failed to parse QR Code URI")
  202. id1 = int(res)
  203. logger.info("dev1 displays QR Code")
  204. addr = dev[1].own_addr().replace(':', '')
  205. res = dev[1].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  206. if "FAIL" in res:
  207. raise Exception("Failed to generate bootstrapping info")
  208. id1b = int(res)
  209. uri1b = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1b)
  210. logger.info("dev0 scans QR Code")
  211. res = dev[0].request("DPP_QR_CODE " + uri1b)
  212. if "FAIL" in res:
  213. raise Exception("Failed to parse QR Code URI")
  214. id0b = int(res)
  215. logger.info("dev1 initiates DPP Authentication")
  216. if "OK" not in dev[0].request("DPP_LISTEN 2412"):
  217. raise Exception("Failed to start listen operation")
  218. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d own=%d" % (id1, id1b)):
  219. raise Exception("Failed to initiate DPP Authentication")
  220. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  221. if ev is None:
  222. raise Exception("DPP authentication did not succeed (Responder)")
  223. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  224. if ev is None:
  225. raise Exception("DPP authentication did not succeed (Initiator)")
  226. dev[0].request("DPP_STOP_LISTEN")
  227. def test_dpp_qr_code_auth_mutual2(dev, apdev):
  228. """DPP QR Code and authentication exchange (mutual2)"""
  229. check_dpp_capab(dev[0])
  230. check_dpp_capab(dev[1])
  231. logger.info("dev0 displays QR Code")
  232. addr = dev[0].own_addr().replace(':', '')
  233. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  234. if "FAIL" in res:
  235. raise Exception("Failed to generate bootstrapping info")
  236. id0 = int(res)
  237. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  238. logger.info("dev1 scans QR Code")
  239. res = dev[1].request("DPP_QR_CODE " + uri0)
  240. if "FAIL" in res:
  241. raise Exception("Failed to parse QR Code URI")
  242. id1 = int(res)
  243. logger.info("dev1 displays QR Code")
  244. addr = dev[1].own_addr().replace(':', '')
  245. res = dev[1].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  246. if "FAIL" in res:
  247. raise Exception("Failed to generate bootstrapping info")
  248. id1b = int(res)
  249. uri1b = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1b)
  250. logger.info("dev1 initiates DPP Authentication")
  251. if "OK" not in dev[0].request("DPP_LISTEN 2412 qr=mutual"):
  252. raise Exception("Failed to start listen operation")
  253. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d own=%d" % (id1, id1b)):
  254. raise Exception("Failed to initiate DPP Authentication")
  255. ev = dev[1].wait_event(["DPP-RESPONSE-PENDING"], timeout=5)
  256. if ev is None:
  257. raise Exception("Pending response not reported")
  258. ev = dev[0].wait_event(["DPP-SCAN-PEER-QR-CODE"], timeout=5)
  259. if ev is None:
  260. raise Exception("QR Code scan for mutual authentication not requested")
  261. logger.info("dev0 scans QR Code")
  262. res = dev[0].request("DPP_QR_CODE " + uri1b)
  263. if "FAIL" in res:
  264. raise Exception("Failed to parse QR Code URI")
  265. id0b = int(res)
  266. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  267. if ev is None:
  268. raise Exception("DPP authentication did not succeed (Responder)")
  269. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  270. if ev is None:
  271. raise Exception("DPP authentication did not succeed (Initiator)")
  272. dev[0].request("DPP_STOP_LISTEN")
  273. def test_dpp_auth_resp_retries(dev, apdev):
  274. """DPP Authentication Response retries"""
  275. check_dpp_capab(dev[0])
  276. check_dpp_capab(dev[1])
  277. dev[0].set("dpp_resp_max_tries", "3")
  278. dev[0].set("dpp_resp_retry_time", "100")
  279. logger.info("dev0 displays QR Code")
  280. addr = dev[0].own_addr().replace(':', '')
  281. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  282. if "FAIL" in res:
  283. raise Exception("Failed to generate bootstrapping info")
  284. id0 = int(res)
  285. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  286. logger.info("dev1 scans QR Code")
  287. res = dev[1].request("DPP_QR_CODE " + uri0)
  288. if "FAIL" in res:
  289. raise Exception("Failed to parse QR Code URI")
  290. id1 = int(res)
  291. logger.info("dev1 displays QR Code")
  292. addr = dev[1].own_addr().replace(':', '')
  293. res = dev[1].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  294. if "FAIL" in res:
  295. raise Exception("Failed to generate bootstrapping info")
  296. id1b = int(res)
  297. uri1b = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1b)
  298. logger.info("dev1 initiates DPP Authentication")
  299. if "OK" not in dev[0].request("DPP_LISTEN 2412 qr=mutual"):
  300. raise Exception("Failed to start listen operation")
  301. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d own=%d" % (id1, id1b)):
  302. raise Exception("Failed to initiate DPP Authentication")
  303. ev = dev[1].wait_event(["DPP-RESPONSE-PENDING"], timeout=5)
  304. if ev is None:
  305. raise Exception("Pending response not reported")
  306. ev = dev[0].wait_event(["DPP-SCAN-PEER-QR-CODE"], timeout=5)
  307. if ev is None:
  308. raise Exception("QR Code scan for mutual authentication not requested")
  309. # Stop Initiator from listening to frames to force retransmission of the
  310. # DPP Authentication Response frame with Status=0
  311. dev[1].request("DPP_STOP_LISTEN")
  312. dev[1].dump_monitor()
  313. dev[0].dump_monitor()
  314. logger.info("dev0 scans QR Code")
  315. res = dev[0].request("DPP_QR_CODE " + uri1b)
  316. if "FAIL" in res:
  317. raise Exception("Failed to parse QR Code URI")
  318. id0b = int(res)
  319. ev = dev[0].wait_event(["DPP-TX"], timeout=5)
  320. if ev is None or "type=1" not in ev:
  321. raise Exception("DPP Authentication Response not sent")
  322. ev = dev[0].wait_event(["DPP-TX-STATUS"], timeout=5)
  323. if ev is None:
  324. raise Exception("TX status for DPP Authentication Response not reported")
  325. if "result=no-ACK" not in ev:
  326. raise Exception("Unexpected TX status for Authentication Response: " + ev)
  327. ev = dev[0].wait_event(["DPP-TX"], timeout=15)
  328. if ev is None or "type=1" not in ev:
  329. raise Exception("DPP Authentication Response retransmission not sent")
  330. def test_dpp_qr_code_auth_mutual_not_used(dev, apdev):
  331. """DPP QR Code and authentication exchange (mutual not used)"""
  332. check_dpp_capab(dev[0])
  333. check_dpp_capab(dev[1])
  334. logger.info("dev0 displays QR Code")
  335. addr = dev[0].own_addr().replace(':', '')
  336. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  337. if "FAIL" in res:
  338. raise Exception("Failed to generate bootstrapping info")
  339. id0 = int(res)
  340. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  341. logger.info("dev1 scans QR Code")
  342. res = dev[1].request("DPP_QR_CODE " + uri0)
  343. if "FAIL" in res:
  344. raise Exception("Failed to parse QR Code URI")
  345. id1 = int(res)
  346. logger.info("dev1 displays QR Code")
  347. addr = dev[1].own_addr().replace(':', '')
  348. res = dev[1].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  349. if "FAIL" in res:
  350. raise Exception("Failed to generate bootstrapping info")
  351. id1b = int(res)
  352. uri1b = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1b)
  353. logger.info("dev0 does not scan QR Code")
  354. logger.info("dev1 initiates DPP Authentication")
  355. if "OK" not in dev[0].request("DPP_LISTEN 2412"):
  356. raise Exception("Failed to start listen operation")
  357. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d own=%d" % (id1, id1b)):
  358. raise Exception("Failed to initiate DPP Authentication")
  359. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  360. if ev is None:
  361. raise Exception("DPP authentication did not succeed (Responder)")
  362. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  363. if ev is None:
  364. raise Exception("DPP authentication did not succeed (Initiator)")
  365. dev[0].request("DPP_STOP_LISTEN")
  366. def test_dpp_qr_code_auth_mutual_curve_mismatch(dev, apdev):
  367. """DPP QR Code and authentication exchange (mutual/mismatch)"""
  368. check_dpp_capab(dev[0])
  369. check_dpp_capab(dev[1])
  370. logger.info("dev0 displays QR Code")
  371. addr = dev[0].own_addr().replace(':', '')
  372. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  373. if "FAIL" in res:
  374. raise Exception("Failed to generate bootstrapping info")
  375. id0 = int(res)
  376. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  377. logger.info("dev1 scans QR Code")
  378. res = dev[1].request("DPP_QR_CODE " + uri0)
  379. if "FAIL" in res:
  380. raise Exception("Failed to parse QR Code URI")
  381. id1 = int(res)
  382. logger.info("dev1 displays QR Code")
  383. addr = dev[1].own_addr().replace(':', '')
  384. res = dev[1].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr + " curve=secp384r1")
  385. if "FAIL" in res:
  386. raise Exception("Failed to generate bootstrapping info")
  387. id1b = int(res)
  388. uri1b = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1b)
  389. logger.info("dev0 scans QR Code")
  390. res = dev[0].request("DPP_QR_CODE " + uri1b)
  391. if "FAIL" in res:
  392. raise Exception("Failed to parse QR Code URI")
  393. id0b = int(res)
  394. res = dev[1].request("DPP_AUTH_INIT peer=%d own=%d" % (id1, id1b))
  395. if "FAIL" not in res:
  396. raise Exception("DPP_AUTH_INIT accepted unexpectedly")
  397. def test_dpp_qr_code_auth_hostapd_mutual2(dev, apdev):
  398. """DPP QR Code and authentication exchange (hostapd mutual2)"""
  399. check_dpp_capab(dev[0])
  400. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured" })
  401. check_dpp_capab(hapd)
  402. logger.info("AP displays QR Code")
  403. addr = hapd.own_addr().replace(':', '')
  404. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  405. res = hapd.request(cmd)
  406. if "FAIL" in res:
  407. raise Exception("Failed to generate bootstrapping info")
  408. id_h = int(res)
  409. uri_h = hapd.request("DPP_BOOTSTRAP_GET_URI %d" % id_h)
  410. logger.info("dev0 scans QR Code")
  411. res = dev[0].request("DPP_QR_CODE " + uri_h)
  412. if "FAIL" in res:
  413. raise Exception("Failed to parse QR Code URI")
  414. id0 = int(res)
  415. logger.info("dev0 displays QR Code")
  416. addr = dev[0].own_addr().replace(':', '')
  417. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  418. if "FAIL" in res:
  419. raise Exception("Failed to generate bootstrapping info")
  420. id0b = int(res)
  421. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0b)
  422. logger.info("dev0 initiates DPP Authentication")
  423. if "OK" not in hapd.request("DPP_LISTEN 2412 qr=mutual"):
  424. raise Exception("Failed to start listen operation")
  425. if "OK" not in dev[0].request("DPP_AUTH_INIT peer=%d own=%d" % (id0, id0b)):
  426. raise Exception("Failed to initiate DPP Authentication")
  427. ev = dev[0].wait_event(["DPP-RESPONSE-PENDING"], timeout=5)
  428. if ev is None:
  429. raise Exception("Pending response not reported")
  430. ev = hapd.wait_event(["DPP-SCAN-PEER-QR-CODE"], timeout=5)
  431. if ev is None:
  432. raise Exception("QR Code scan for mutual authentication not requested")
  433. logger.info("AP scans QR Code")
  434. res = hapd.request("DPP_QR_CODE " + uri0)
  435. if "FAIL" in res:
  436. raise Exception("Failed to parse QR Code URI")
  437. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  438. if ev is None:
  439. raise Exception("DPP authentication did not succeed (Responder)")
  440. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  441. if ev is None:
  442. raise Exception("DPP authentication did not succeed (Initiator)")
  443. hapd.request("DPP_STOP_LISTEN")
  444. def test_dpp_qr_code_listen_continue(dev, apdev):
  445. """DPP QR Code and listen operation needing continuation"""
  446. check_dpp_capab(dev[0])
  447. check_dpp_capab(dev[1])
  448. logger.info("dev0 displays QR Code")
  449. addr = dev[0].own_addr().replace(':', '')
  450. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  451. if "FAIL" in res:
  452. raise Exception("Failed to generate bootstrapping info")
  453. id0 = int(res)
  454. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  455. logger.info("dev1 scans QR Code")
  456. res = dev[1].request("DPP_QR_CODE " + uri0)
  457. if "FAIL" in res:
  458. raise Exception("Failed to parse QR Code URI")
  459. id1 = int(res)
  460. if "OK" not in dev[0].request("DPP_LISTEN 2412"):
  461. raise Exception("Failed to start listen operation")
  462. logger.info("Wait for listen to expire and get restarted")
  463. time.sleep(5.5)
  464. logger.info("dev1 initiates DPP Authentication")
  465. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d" % id1):
  466. raise Exception("Failed to initiate DPP Authentication")
  467. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  468. if ev is None:
  469. raise Exception("DPP authentication did not succeed (Responder)")
  470. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  471. if ev is None:
  472. raise Exception("DPP authentication did not succeed (Initiator)")
  473. dev[0].request("DPP_STOP_LISTEN")
  474. def test_dpp_qr_code_auth_initiator_enrollee(dev, apdev):
  475. """DPP QR Code and authentication exchange (Initiator in Enrollee role)"""
  476. check_dpp_capab(dev[0])
  477. check_dpp_capab(dev[1])
  478. dev[0].request("SET gas_address3 1")
  479. dev[1].request("SET gas_address3 1")
  480. logger.info("dev0 displays QR Code")
  481. addr = dev[0].own_addr().replace(':', '')
  482. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  483. if "FAIL" in res:
  484. raise Exception("Failed to generate bootstrapping info")
  485. id0 = int(res)
  486. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  487. logger.info("dev1 scans QR Code")
  488. res = dev[1].request("DPP_QR_CODE " + uri0)
  489. if "FAIL" in res:
  490. raise Exception("Failed to parse QR Code URI")
  491. id1 = int(res)
  492. logger.info("dev1 initiates DPP Authentication")
  493. if "OK" not in dev[0].request("DPP_LISTEN 2412"):
  494. raise Exception("Failed to start listen operation")
  495. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d role=enrollee" % id1):
  496. raise Exception("Failed to initiate DPP Authentication")
  497. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  498. if ev is None:
  499. raise Exception("DPP authentication did not succeed (Responder)")
  500. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  501. if ev is None:
  502. raise Exception("DPP authentication did not succeed (Initiator)")
  503. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  504. if ev is None:
  505. raise Exception("DPP configuration did not succeed (Configurator)")
  506. ev = dev[1].wait_event(["DPP-CONF-FAILED"], timeout=5)
  507. if ev is None:
  508. raise Exception("DPP configuration did not succeed (Enrollee)")
  509. dev[0].request("DPP_STOP_LISTEN")
  510. def test_dpp_qr_code_auth_initiator_either_1(dev, apdev):
  511. """DPP QR Code and authentication exchange (Initiator in either role)"""
  512. run_dpp_qr_code_auth_initiator_either(dev, apdev, None, dev[1], dev[0])
  513. def test_dpp_qr_code_auth_initiator_either_2(dev, apdev):
  514. """DPP QR Code and authentication exchange (Initiator in either role)"""
  515. run_dpp_qr_code_auth_initiator_either(dev, apdev, "enrollee",
  516. dev[1], dev[0])
  517. def test_dpp_qr_code_auth_initiator_either_3(dev, apdev):
  518. """DPP QR Code and authentication exchange (Initiator in either role)"""
  519. run_dpp_qr_code_auth_initiator_either(dev, apdev, "configurator",
  520. dev[0], dev[1])
  521. def run_dpp_qr_code_auth_initiator_either(dev, apdev, resp_role,
  522. conf_dev, enrollee_dev):
  523. check_dpp_capab(dev[0])
  524. check_dpp_capab(dev[1])
  525. logger.info("dev0 displays QR Code")
  526. addr = dev[0].own_addr().replace(':', '')
  527. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  528. if "FAIL" in res:
  529. raise Exception("Failed to generate bootstrapping info")
  530. id0 = int(res)
  531. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  532. logger.info("dev1 scans QR Code")
  533. res = dev[1].request("DPP_QR_CODE " + uri0)
  534. if "FAIL" in res:
  535. raise Exception("Failed to parse QR Code URI")
  536. id1 = int(res)
  537. logger.info("dev1 initiates DPP Authentication")
  538. cmd = "DPP_LISTEN 2412"
  539. if resp_role:
  540. cmd += " role=" + resp_role
  541. if "OK" not in dev[0].request(cmd):
  542. raise Exception("Failed to start listen operation")
  543. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d role=either" % id1):
  544. raise Exception("Failed to initiate DPP Authentication")
  545. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  546. if ev is None:
  547. raise Exception("DPP authentication did not succeed (Responder)")
  548. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  549. if ev is None:
  550. raise Exception("DPP authentication did not succeed (Initiator)")
  551. ev = conf_dev.wait_event(["DPP-CONF-SENT"], timeout=5)
  552. if ev is None:
  553. raise Exception("DPP configuration did not succeed (Configurator)")
  554. ev = enrollee_dev.wait_event(["DPP-CONF-FAILED"], timeout=5)
  555. if ev is None:
  556. raise Exception("DPP configuration did not succeed (Enrollee)")
  557. dev[0].request("DPP_STOP_LISTEN")
  558. def test_dpp_qr_code_auth_incompatible_roles(dev, apdev):
  559. """DPP QR Code and authentication exchange (incompatible roles)"""
  560. check_dpp_capab(dev[0])
  561. check_dpp_capab(dev[1])
  562. logger.info("dev0 displays QR Code")
  563. addr = dev[0].own_addr().replace(':', '')
  564. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  565. if "FAIL" in res:
  566. raise Exception("Failed to generate bootstrapping info")
  567. id0 = int(res)
  568. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  569. logger.info("dev1 scans QR Code")
  570. res = dev[1].request("DPP_QR_CODE " + uri0)
  571. if "FAIL" in res:
  572. raise Exception("Failed to parse QR Code URI")
  573. id1 = int(res)
  574. logger.info("dev1 initiates DPP Authentication")
  575. if "OK" not in dev[0].request("DPP_LISTEN 2412 role=enrollee"):
  576. raise Exception("Failed to start listen operation")
  577. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d role=enrollee" % id1):
  578. raise Exception("Failed to initiate DPP Authentication")
  579. ev = dev[1].wait_event(["DPP-NOT-COMPATIBLE"], timeout=5)
  580. if ev is None:
  581. raise Exception("DPP-NOT-COMPATIBLE event on initiator timed out")
  582. ev = dev[0].wait_event(["DPP-NOT-COMPATIBLE"], timeout=1)
  583. if ev is None:
  584. raise Exception("DPP-NOT-COMPATIBLE event on responder timed out")
  585. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d role=configurator" % id1):
  586. raise Exception("Failed to initiate DPP Authentication")
  587. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  588. if ev is None:
  589. raise Exception("DPP authentication did not succeed (Responder)")
  590. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  591. if ev is None:
  592. raise Exception("DPP authentication did not succeed (Initiator)")
  593. dev[0].request("DPP_STOP_LISTEN")
  594. def test_dpp_qr_code_auth_neg_chan(dev, apdev):
  595. """DPP QR Code and authentication exchange with requested different channel"""
  596. check_dpp_capab(dev[0])
  597. check_dpp_capab(dev[1])
  598. logger.info("Create configurator on dev1")
  599. cmd = "DPP_CONFIGURATOR_ADD"
  600. res = dev[1].request(cmd);
  601. if "FAIL" in res:
  602. raise Exception("Failed to add configurator")
  603. conf_id = int(res)
  604. logger.info("dev0 displays QR Code")
  605. addr = dev[0].own_addr().replace(':', '')
  606. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  607. res = dev[0].request(cmd)
  608. if "FAIL" in res:
  609. raise Exception("Failed to generate bootstrapping info")
  610. id0 = int(res)
  611. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  612. logger.info("dev1 scans QR Code")
  613. res = dev[1].request("DPP_QR_CODE " + uri0)
  614. if "FAIL" in res:
  615. raise Exception("Failed to parse QR Code URI")
  616. id1 = int(res)
  617. logger.info("dev1 initiates DPP Authentication")
  618. cmd = "DPP_LISTEN 2412"
  619. if "OK" not in dev[0].request(cmd):
  620. raise Exception("Failed to start listen operation")
  621. cmd = "DPP_AUTH_INIT peer=%d configurator=%d conf=sta-dpp neg_freq=2462" % (id1, conf_id)
  622. if "OK" not in dev[1].request(cmd):
  623. raise Exception("Failed to initiate DPP Authentication")
  624. ev = dev[1].wait_event(["DPP-TX"], timeout=5)
  625. if ev is None:
  626. raise Exception("DPP Authentication Request not sent")
  627. if "freq=2412 type=0" not in ev:
  628. raise Exception("Unexpected TX data for Authentication Request: " + ev)
  629. ev = dev[0].wait_event(["DPP-RX"], timeout=5)
  630. if ev is None:
  631. raise Exception("DPP Authentication Request not received")
  632. if "freq=2412 type=0" not in ev:
  633. raise Exception("Unexpected RX data for Authentication Request: " + ev)
  634. ev = dev[1].wait_event(["DPP-TX-STATUS"], timeout=5)
  635. if ev is None:
  636. raise Exception("TX status for DPP Authentication Request not reported")
  637. if "freq=2412 result=SUCCESS" not in ev:
  638. raise Exception("Unexpected TX status for Authentication Request: " + ev)
  639. ev = dev[0].wait_event(["DPP-TX"], timeout=5)
  640. if ev is None:
  641. raise Exception("DPP Authentication Response not sent")
  642. if "freq=2462 type=1" not in ev:
  643. raise Exception("Unexpected TX data for Authentication Response: " + ev)
  644. ev = dev[1].wait_event(["DPP-RX"], timeout=5)
  645. if ev is None:
  646. raise Exception("DPP Authentication Response not received")
  647. if "freq=2462 type=1" not in ev:
  648. raise Exception("Unexpected RX data for Authentication Response: " + ev)
  649. ev = dev[0].wait_event(["DPP-TX-STATUS"], timeout=5)
  650. if ev is None:
  651. raise Exception("TX status for DPP Authentication Response not reported")
  652. if "freq=2462 result=SUCCESS" not in ev:
  653. raise Exception("Unexpected TX status for Authentication Response: " + ev)
  654. ev = dev[1].wait_event(["DPP-TX"], timeout=5)
  655. if ev is None:
  656. raise Exception("DPP Authentication Confirm not sent")
  657. if "freq=2462 type=2" not in ev:
  658. raise Exception("Unexpected TX data for Authentication Confirm: " + ev)
  659. ev = dev[0].wait_event(["DPP-RX"], timeout=5)
  660. if ev is None:
  661. raise Exception("DPP Authentication Confirm not received")
  662. if "freq=2462 type=2" not in ev:
  663. raise Exception("Unexpected RX data for Authentication Confirm: " + ev)
  664. ev = dev[1].wait_event(["DPP-TX-STATUS"], timeout=5)
  665. if ev is None:
  666. raise Exception("TX status for DPP Authentication Confirm not reported")
  667. if "freq=2462 result=SUCCESS" not in ev:
  668. raise Exception("Unexpected TX status for Authentication Confirm: " + ev)
  669. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  670. if ev is None:
  671. raise Exception("DPP authentication did not succeed (Responder)")
  672. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  673. if ev is None:
  674. raise Exception("DPP authentication did not succeed (Initiator)")
  675. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=5)
  676. if ev is None:
  677. raise Exception("DPP configuration not completed (Configurator)")
  678. ev = dev[0].wait_event(["DPP-CONF-RECEIVED", "DPP-CONF-FAILED"], timeout=5)
  679. if ev is None:
  680. raise Exception("DPP configuration not completed (Enrollee)")
  681. if "DPP-CONF-FAILED" in ev:
  682. raise Exception("DPP configuration failed")
  683. dev[0].request("DPP_STOP_LISTEN")
  684. dev[0].dump_monitor()
  685. dev[1].dump_monitor()
  686. def test_dpp_config_legacy(dev, apdev):
  687. """DPP Config Object for legacy network using passphrase"""
  688. check_dpp_capab(dev[1])
  689. conf = '{"wi-fi_tech":"infra", "discovery":{"ssid":"test"},"cred":{"akm":"psk","pass":"secret passphrase"}}'
  690. dev[1].set("dpp_config_obj_override", conf)
  691. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  692. require_conf_success=True)
  693. def test_dpp_config_legacy_psk_hex(dev, apdev):
  694. """DPP Config Object for legacy network using PSK"""
  695. check_dpp_capab(dev[1])
  696. conf = '{"wi-fi_tech":"infra", "discovery":{"ssid":"test"},"cred":{"akm":"psk","psk_hex":"' + 32*"12" + '"}}'
  697. dev[1].set("dpp_config_obj_override", conf)
  698. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  699. require_conf_success=True)
  700. def test_dpp_config_fragmentation(dev, apdev):
  701. """DPP Config Object for legacy network requiring fragmentation"""
  702. check_dpp_capab(dev[1])
  703. conf = '{"wi-fi_tech":"infra", "discovery":{"ssid":"test"},"cred":{"akm":"psk","pass":"secret passphrase"}}' + 3000*' '
  704. dev[1].set("dpp_config_obj_override", conf)
  705. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  706. require_conf_success=True)
  707. def test_dpp_config_legacy_gen(dev, apdev):
  708. """Generate DPP Config Object for legacy network"""
  709. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  710. init_extra="conf=sta-psk pass=%s" % "passphrase".encode("hex"),
  711. require_conf_success=True)
  712. def test_dpp_config_dpp_gen_prime256v1(dev, apdev):
  713. """Generate DPP Config Object for DPP network (P-256)"""
  714. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  715. init_extra="conf=sta-dpp",
  716. require_conf_success=True,
  717. configurator=True)
  718. def test_dpp_config_dpp_gen_secp384r1(dev, apdev):
  719. """Generate DPP Config Object for DPP network (P-384)"""
  720. run_dpp_qr_code_auth_unicast(dev, apdev, "secp384r1",
  721. init_extra="conf=sta-dpp",
  722. require_conf_success=True,
  723. configurator=True)
  724. def test_dpp_config_dpp_gen_secp521r1(dev, apdev):
  725. """Generate DPP Config Object for DPP network (P-521)"""
  726. run_dpp_qr_code_auth_unicast(dev, apdev, "secp521r1",
  727. init_extra="conf=sta-dpp",
  728. require_conf_success=True,
  729. configurator=True)
  730. def test_dpp_config_dpp_gen_prime256v1_prime256v1(dev, apdev):
  731. """Generate DPP Config Object for DPP network (P-256 + P-256)"""
  732. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  733. init_extra="conf=sta-dpp",
  734. require_conf_success=True,
  735. configurator=True,
  736. conf_curve="prime256v1")
  737. def test_dpp_config_dpp_gen_prime256v1_secp384r1(dev, apdev):
  738. """Generate DPP Config Object for DPP network (P-256 + P-384)"""
  739. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  740. init_extra="conf=sta-dpp",
  741. require_conf_success=True,
  742. configurator=True,
  743. conf_curve="secp384r1")
  744. def test_dpp_config_dpp_gen_prime256v1_secp521r1(dev, apdev):
  745. """Generate DPP Config Object for DPP network (P-256 + P-521)"""
  746. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  747. init_extra="conf=sta-dpp",
  748. require_conf_success=True,
  749. configurator=True,
  750. conf_curve="secp521r1")
  751. def test_dpp_config_dpp_gen_secp384r1_prime256v1(dev, apdev):
  752. """Generate DPP Config Object for DPP network (P-384 + P-256)"""
  753. run_dpp_qr_code_auth_unicast(dev, apdev, "secp384r1",
  754. init_extra="conf=sta-dpp",
  755. require_conf_success=True,
  756. configurator=True,
  757. conf_curve="prime256v1")
  758. def test_dpp_config_dpp_gen_secp384r1_secp384r1(dev, apdev):
  759. """Generate DPP Config Object for DPP network (P-384 + P-384)"""
  760. run_dpp_qr_code_auth_unicast(dev, apdev, "secp384r1",
  761. init_extra="conf=sta-dpp",
  762. require_conf_success=True,
  763. configurator=True,
  764. conf_curve="secp384r1")
  765. def test_dpp_config_dpp_gen_secp384r1_secp521r1(dev, apdev):
  766. """Generate DPP Config Object for DPP network (P-384 + P-521)"""
  767. run_dpp_qr_code_auth_unicast(dev, apdev, "secp384r1",
  768. init_extra="conf=sta-dpp",
  769. require_conf_success=True,
  770. configurator=True,
  771. conf_curve="secp521r1")
  772. def test_dpp_config_dpp_gen_secp521r1_prime256v1(dev, apdev):
  773. """Generate DPP Config Object for DPP network (P-521 + P-256)"""
  774. run_dpp_qr_code_auth_unicast(dev, apdev, "secp521r1",
  775. init_extra="conf=sta-dpp",
  776. require_conf_success=True,
  777. configurator=True,
  778. conf_curve="prime256v1")
  779. def test_dpp_config_dpp_gen_secp521r1_secp384r1(dev, apdev):
  780. """Generate DPP Config Object for DPP network (P-521 + P-384)"""
  781. run_dpp_qr_code_auth_unicast(dev, apdev, "secp521r1",
  782. init_extra="conf=sta-dpp",
  783. require_conf_success=True,
  784. configurator=True,
  785. conf_curve="secp384r1")
  786. def test_dpp_config_dpp_gen_secp521r1_secp521r1(dev, apdev):
  787. """Generate DPP Config Object for DPP network (P-521 + P-521)"""
  788. run_dpp_qr_code_auth_unicast(dev, apdev, "secp521r1",
  789. init_extra="conf=sta-dpp",
  790. require_conf_success=True,
  791. configurator=True,
  792. conf_curve="secp521r1")
  793. def test_dpp_config_dpp_gen_expiry(dev, apdev):
  794. """Generate DPP Config Object for DPP network with expiry value"""
  795. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  796. init_extra="conf=sta-dpp expiry=%d" % (time.time() + 1000),
  797. require_conf_success=True,
  798. configurator=True)
  799. def test_dpp_config_dpp_gen_expired_key(dev, apdev):
  800. """Generate DPP Config Object for DPP network with expiry value"""
  801. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  802. init_extra="conf=sta-dpp expiry=%d" % (time.time() - 10),
  803. require_conf_failure=True,
  804. configurator=True)
  805. def test_dpp_config_dpp_override_prime256v1(dev, apdev):
  806. """DPP Config Object override (P-256)"""
  807. check_dpp_capab(dev[0])
  808. check_dpp_capab(dev[1])
  809. conf = '{"wi-fi_tech":"infra","discovery":{"ssid":"test"},"cred":{"akm":"dpp","signedConnector":"eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJUbkdLaklsTlphYXRyRUFZcmJiamlCNjdyamtMX0FHVldYTzZxOWhESktVIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6InN0YSJ9XSwibmV0QWNjZXNzS2V5Ijp7Imt0eSI6IkVDIiwiY3J2IjoiUC0yNTYiLCJ4IjoiYVRGNEpFR0lQS1NaMFh2OXpkQ01qbS10bjVYcE1zWUlWWjl3eVNBejFnSSIsInkiOiJRR2NIV0FfNnJiVTlYRFhBenRvWC1NNVEzc3VUbk1hcUVoVUx0bjdTU1h3In19._sm6YswxMf6hJLVTyYoU1uYUeY2VVkUNjrzjSiEhY42StD_RWowStEE-9CRsdCvLmsTptZ72_g40vTFwdId20A","csign":{"kty":"EC","crv":"P-256","x":"W4-Y5N1Pkos3UWb9A5qme0KUYRtY3CVUpekx_MapZ9s","y":"Et-M4NSF4NGjvh2VCh4B1sJ9eSCZ4RNzP2DBdP137VE","kid":"TnGKjIlNZaatrEAYrbbjiB67rjkL_AGVWXO6q9hDJKU"}}}'
  810. dev[0].set("dpp_ignore_netaccesskey_mismatch", "1")
  811. dev[1].set("dpp_config_obj_override", conf)
  812. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  813. require_conf_success=True)
  814. def test_dpp_config_dpp_override_secp384r1(dev, apdev):
  815. """DPP Config Object override (P-384)"""
  816. check_dpp_capab(dev[0])
  817. check_dpp_capab(dev[1])
  818. conf = '{"wi-fi_tech":"infra","discovery":{"ssid":"test"},"cred":{"akm":"dpp","signedConnector":"eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJabi1iMndjbjRLM2pGQklkYmhGZkpVTHJTXzdESS0yMWxFQi02R3gxNjl3IiwiYWxnIjoiRVMzODQifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6InN0YSJ9XSwibmV0QWNjZXNzS2V5Ijp7Imt0eSI6IkVDIiwiY3J2IjoiUC0zODQiLCJ4IjoickdrSGg1UUZsOUtfWjdqYUZkVVhmbThoY1RTRjM1b25Xb1NIRXVsbVNzWW9oX1RXZGpoRjhiVGdiS0ZRN2tBViIsInkiOiJBbU1QVDA5VmFENWpGdzMwTUFKQlp2VkZXeGNlVVlKLXR5blQ0bVJ5N0xOZWxhZ0dEWHpfOExaRlpOU2FaNUdLIn19.Yn_F7m-bbOQ5PlaYQJ9-1qsuqYQ6V-rAv8nWw1COKiCYwwbt3WFBJ8DljY0dPrlg5CHJC4saXwkytpI-CpELW1yUdzYb4Lrun07d20Eo_g10ICyOl5sqQCAUElKMe_Xr","csign":{"kty":"EC","crv":"P-384","x":"dmTyXXiPV2Y8a01fujL-jo08gvzyby23XmzOtzjAiujKQZZgPJsbhfEKrZDlc6ey","y":"H5Z0av5c7bqInxYb2_OOJdNiMhVf3zlcULR0516ZZitOY4U31KhL4wl4KGV7g2XW","kid":"Zn-b2wcn4K3jFBIdbhFfJULrS_7DI-21lEB-6Gx169w"}}}'
  819. dev[0].set("dpp_ignore_netaccesskey_mismatch", "1")
  820. dev[1].set("dpp_config_obj_override", conf)
  821. run_dpp_qr_code_auth_unicast(dev, apdev, "secp384r1",
  822. require_conf_success=True)
  823. def test_dpp_config_dpp_override_secp521r1(dev, apdev):
  824. """DPP Config Object override (P-521)"""
  825. check_dpp_capab(dev[0])
  826. check_dpp_capab(dev[1])
  827. conf = '{"wi-fi_tech":"infra","discovery":{"ssid":"test"},"cred":{"akm":"dpp","signedConnector":"eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJMZkhKY3hnV2ZKcG1uS2IwenZRT0F2VDB2b0ZKc0JjZnBmYzgxY3Y5ZXFnIiwiYWxnIjoiRVM1MTIifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6InN0YSJ9XSwibmV0QWNjZXNzS2V5Ijp7Imt0eSI6IkVDIiwiY3J2IjoiUC01MjEiLCJ4IjoiQVJlUFBrMFNISkRRR2NWbnlmM3lfbTlaQllHNjFJeElIbDN1NkdwRHVhMkU1WVd4TE1BSUtMMnZuUGtlSGFVRXljRmZaZlpYZ2JlNkViUUxMVkRVUm1VUSIsInkiOiJBWUtaYlNwUkFFNjJVYm9YZ2c1ZWRBVENzbEpzTlpwcm9RR1dUcW9Md04weXkzQkVoT3ZRZmZrOWhaR2lKZ295TzFobXFRRVRrS0pXb2tIYTBCQUpLSGZtIn19.ACEZLyPk13cM_OFScpLoCElQ2t1sxq5z2d_W_3_QslTQQe5SFiH_o8ycL4632YLAH4RV0gZcMKKRMtZdHgBYHjkzASDqgY-_aYN2SBmpfl8hw0YdDlUJWX3DJf-ofqNAlTbnGmhpSg69cEAhFn41Xgvx2MdwYcPVncxxESVOtWl5zNLK","csign":{"kty":"EC","crv":"P-521","x":"ADiOI_YJOAipEXHB-SpGl4KqokX8m8h3BVYCc8dgiwssZ061-nIIY3O1SIO6Re4Jjfy53RPgzDG6jitOgOGLtzZs","y":"AZKggKaQi0ExutSpJAU3-lqDV03sBQLA9C7KabfWoAn8qD6Vk4jU0WAJdt-wBBTF9o1nVuiqS2OxMVYrxN4lOz79","kid":"LfHJcxgWfJpmnKb0zvQOAvT0voFJsBcfpfc81cv9eqg"}}}'
  828. dev[0].set("dpp_ignore_netaccesskey_mismatch", "1")
  829. dev[1].set("dpp_config_obj_override", conf)
  830. run_dpp_qr_code_auth_unicast(dev, apdev, "secp521r1",
  831. require_conf_success=True)
  832. def test_dpp_config_override_objects(dev, apdev):
  833. """Generate DPP Config Object and override objects)"""
  834. check_dpp_capab(dev[1])
  835. discovery = '{\n"ssid":"mywifi"\n}'
  836. groups = '[\n {"groupId":"home","netRole":"sta"},\n {"groupId":"cottage","netRole":"sta"}\n]'
  837. dev[1].set("dpp_discovery_override", discovery)
  838. dev[1].set("dpp_groups_override", groups)
  839. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  840. init_extra="conf=sta-dpp",
  841. require_conf_success=True,
  842. configurator=True)
  843. def test_dpp_gas_timeout(dev, apdev):
  844. """DPP and GAS server timeout for a query"""
  845. check_dpp_capab(dev[0])
  846. check_dpp_capab(dev[1])
  847. logger.info("dev0 displays QR Code")
  848. addr = dev[0].own_addr().replace(':', '')
  849. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  850. res = dev[0].request(cmd)
  851. if "FAIL" in res:
  852. raise Exception("Failed to generate bootstrapping info")
  853. id0 = int(res)
  854. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  855. logger.info("dev1 scans QR Code")
  856. res = dev[1].request("DPP_QR_CODE " + uri0)
  857. if "FAIL" in res:
  858. raise Exception("Failed to parse QR Code URI")
  859. id1 = int(res)
  860. logger.info("dev1 initiates DPP Authentication")
  861. dev[0].set("ext_mgmt_frame_handling", "1")
  862. cmd = "DPP_LISTEN 2412"
  863. if "OK" not in dev[0].request(cmd):
  864. raise Exception("Failed to start listen operation")
  865. # Force GAS fragmentation
  866. conf = '{"wi-fi_tech":"infra", "discovery":{"ssid":"test"},"cred":{"akm":"psk","pass":"secret passphrase"}}' + 3000*' '
  867. dev[1].set("dpp_config_obj_override", conf)
  868. cmd = "DPP_AUTH_INIT peer=%d" % id1
  869. if "OK" not in dev[1].request(cmd):
  870. raise Exception("Failed to initiate DPP Authentication")
  871. # DPP Authentication Request
  872. msg = dev[0].mgmt_rx()
  873. if "OK" not in dev[0].request("MGMT_RX_PROCESS freq={} datarate={} ssi_signal={} frame={}".format(msg['freq'], msg['datarate'], msg['ssi_signal'], msg['frame'].encode('hex'))):
  874. raise Exception("MGMT_RX_PROCESS failed")
  875. # DPP Authentication Confirmation
  876. msg = dev[0].mgmt_rx()
  877. if "OK" not in dev[0].request("MGMT_RX_PROCESS freq={} datarate={} ssi_signal={} frame={}".format(msg['freq'], msg['datarate'], msg['ssi_signal'], msg['frame'].encode('hex'))):
  878. raise Exception("MGMT_RX_PROCESS failed")
  879. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  880. if ev is None:
  881. raise Exception("DPP authentication did not succeed (Responder)")
  882. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  883. if ev is None:
  884. raise Exception("DPP authentication did not succeed (Initiator)")
  885. # DPP Configuration Response (GAS Initial Response frame)
  886. msg = dev[0].mgmt_rx()
  887. if "OK" not in dev[0].request("MGMT_RX_PROCESS freq={} datarate={} ssi_signal={} frame={}".format(msg['freq'], msg['datarate'], msg['ssi_signal'], msg['frame'].encode('hex'))):
  888. raise Exception("MGMT_RX_PROCESS failed")
  889. # GAS Comeback Response frame
  890. msg = dev[0].mgmt_rx()
  891. # Do not continue to force timeout on GAS server
  892. ev = dev[0].wait_event(["GAS-QUERY-DONE"], timeout=10)
  893. if ev is None:
  894. raise Exception("GAS result not reported (Enrollee)")
  895. if "result=TIMEOUT" not in ev:
  896. raise Exception("Unexpected GAS result (Enrollee): " + ev)
  897. dev[0].set("ext_mgmt_frame_handling", "0")
  898. ev = dev[1].wait_event(["DPP-CONF-FAILED"], timeout=15)
  899. if ev is None:
  900. raise Exception("DPP configuration failure not reported (Configurator)")
  901. ev = dev[0].wait_event(["DPP-CONF-FAILED"], timeout=1)
  902. if ev is None:
  903. raise Exception("DPP configuration failure not reported (Enrollee)")
  904. def test_dpp_akm_sha256(dev, apdev):
  905. """DPP AKM (SHA256)"""
  906. run_dpp_akm(dev, apdev, 32)
  907. def test_dpp_akm_sha384(dev, apdev):
  908. """DPP AKM (SHA384)"""
  909. run_dpp_akm(dev, apdev, 48)
  910. def test_dpp_akm_sha512(dev, apdev):
  911. """DPP AKM (SHA512)"""
  912. run_dpp_akm(dev, apdev, 64)
  913. def run_dpp_akm(dev, apdev, pmk_len):
  914. check_dpp_capab(dev[0])
  915. check_dpp_capab(dev[1])
  916. params = { "ssid": "dpp",
  917. "wpa": "2",
  918. "wpa_key_mgmt": "DPP",
  919. "rsn_pairwise": "CCMP",
  920. "ieee80211w": "2" }
  921. try:
  922. hapd = hostapd.add_ap(apdev[0], params)
  923. except:
  924. raise HwsimSkip("DPP not supported")
  925. id = dev[0].connect("dpp", key_mgmt="DPP", ieee80211w="2", scan_freq="2412",
  926. wait_connect=False)
  927. ev = dev[0].wait_event(["CTRL-EVENT-NETWORK-NOT-FOUND"], timeout=2)
  928. if not ev:
  929. raise Exception("Network mismatch not reported")
  930. dev[0].request("DISCONNECT")
  931. dev[0].dump_monitor()
  932. bssid = hapd.own_addr()
  933. pmkid = 16*'11'
  934. akmp = 2**23
  935. pmk = pmk_len*'22'
  936. cmd = "PMKSA_ADD %d %s %s %s 30240 43200 %d 0" % (id, bssid, pmkid, pmk, akmp)
  937. if "OK" not in dev[0].request(cmd):
  938. raise Exception("PMKSA_ADD failed (wpa_supplicant)")
  939. dev[0].select_network(id, freq="2412")
  940. ev = dev[0].wait_event(["CTRL-EVENT-ASSOC-REJECT"], timeout=2)
  941. dev[0].request("DISCONNECT")
  942. dev[0].dump_monitor()
  943. if not ev:
  944. raise Exception("Association attempt was not rejected")
  945. if "status_code=53" not in ev:
  946. raise Exception("Unexpected status code: " + ev)
  947. addr = dev[0].own_addr()
  948. cmd = "PMKSA_ADD %s %s %s 0 %d" % (addr, pmkid, pmk, akmp)
  949. if "OK" not in hapd.request(cmd):
  950. raise Exception("PMKSA_ADD failed (hostapd)")
  951. dev[0].select_network(id, freq="2412")
  952. dev[0].wait_connected()
  953. val = dev[0].get_status_field("key_mgmt")
  954. if val != "DPP":
  955. raise Exception("Unexpected key_mgmt: " + val)
  956. def test_dpp_network_introduction(dev, apdev):
  957. """DPP network introduction"""
  958. check_dpp_capab(dev[0])
  959. check_dpp_capab(dev[1])
  960. csign = "3059301306072a8648ce3d020106082a8648ce3d03010703420004d02e5bd81a120762b5f0f2994777f5d40297238a6c294fd575cdf35fabec44c050a6421c401d98d659fd2ed13c961cc8287944dd3202f516977800d3ab2f39ee"
  961. ap_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJzOEFrYjg5bTV4UGhoYk5UbTVmVVo0eVBzNU5VMkdxYXNRY3hXUWhtQVFRIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6ImFwIn1dLCJuZXRBY2Nlc3NLZXkiOnsia3R5IjoiRUMiLCJjcnYiOiJQLTI1NiIsIngiOiIwOHF4TlNYRzRWemdCV3BjVUdNSmc1czNvbElOVFJsRVQ1aERpNkRKY3ZjIiwieSI6IlVhaGFYQXpKRVpRQk1YaHRUQnlZZVlrOWtJYjk5UDA3UV9NcW9TVVZTVEkifX0.a5_nfMVr7Qe1SW0ZL3u6oQRm5NUCYUSfixDAJOUFN3XUfECBZ6E8fm8xjeSfdOytgRidTz0CTlIRjzPQo82dmQ"
  962. ap_netaccesskey = "30770201010420f6531d17f29dfab655b7c9e923478d5a345164c489aadd44a3519c3e9dcc792da00a06082a8648ce3d030107a14403420004d3cab13525c6e15ce0056a5c506309839b37a2520d4d19444f98438ba0c972f751a85a5c0cc911940131786d4c1c9879893d9086fdf4fd3b43f32aa125154932"
  963. sta_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJzOEFrYjg5bTV4UGhoYk5UbTVmVVo0eVBzNU5VMkdxYXNRY3hXUWhtQVFRIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6InN0YSJ9XSwibmV0QWNjZXNzS2V5Ijp7Imt0eSI6IkVDIiwiY3J2IjoiUC0yNTYiLCJ4IjoiZWMzR3NqQ3lQMzVBUUZOQUJJdEltQnN4WXVyMGJZX1dES1lfSE9zUGdjNCIsInkiOiJTRS1HVllkdWVnTFhLMU1TQXZNMEx2QWdLREpTNWoyQVhCbE9PMTdUSTRBIn19.PDK9zsGlK-e1pEOmNxVeJfCS8pNeay6ckIS1TXCQsR64AR-9wFPCNVjqOxWvVKltehyMFqVAtOcv0IrjtMJFqQ"
  964. sta_netaccesskey = "30770201010420bc33380c26fd2168b69cd8242ed1df07ba89aa4813f8d4e8523de6ca3f8dd28ba00a06082a8648ce3d030107a1440342000479cdc6b230b23f7e40405340048b48981b3162eaf46d8fd60ca63f1ceb0f81ce484f8655876e7a02d72b531202f3342ef020283252e63d805c194e3b5ed32380"
  965. params = { "ssid": "dpp",
  966. "wpa": "2",
  967. "wpa_key_mgmt": "DPP",
  968. "ieee80211w": "2",
  969. "rsn_pairwise": "CCMP",
  970. "dpp_connector": ap_connector,
  971. "dpp_csign": csign,
  972. "dpp_netaccesskey": ap_netaccesskey }
  973. try:
  974. hapd = hostapd.add_ap(apdev[0], params)
  975. except:
  976. raise HwsimSkip("DPP not supported")
  977. id = dev[0].connect("dpp", key_mgmt="DPP", scan_freq="2412",
  978. ieee80211w="2",
  979. dpp_csign=csign,
  980. dpp_connector=sta_connector,
  981. dpp_netaccesskey=sta_netaccesskey)
  982. val = dev[0].get_status_field("key_mgmt")
  983. if val != "DPP":
  984. raise Exception("Unexpected key_mgmt: " + val)
  985. def test_dpp_ap_config(dev, apdev):
  986. """DPP and AP configuration"""
  987. run_dpp_ap_config(dev, apdev)
  988. def test_dpp_ap_config_p256_p256(dev, apdev):
  989. """DPP and AP configuration (P-256 + P-256)"""
  990. run_dpp_ap_config(dev, apdev, curve="P-256", conf_curve="P-256")
  991. def test_dpp_ap_config_p256_p384(dev, apdev):
  992. """DPP and AP configuration (P-256 + P-384)"""
  993. run_dpp_ap_config(dev, apdev, curve="P-256", conf_curve="P-384")
  994. def test_dpp_ap_config_p256_p521(dev, apdev):
  995. """DPP and AP configuration (P-256 + P-521)"""
  996. run_dpp_ap_config(dev, apdev, curve="P-256", conf_curve="P-521")
  997. def test_dpp_ap_config_p384_p256(dev, apdev):
  998. """DPP and AP configuration (P-384 + P-256)"""
  999. run_dpp_ap_config(dev, apdev, curve="P-384", conf_curve="P-256")
  1000. def test_dpp_ap_config_p384_p384(dev, apdev):
  1001. """DPP and AP configuration (P-384 + P-384)"""
  1002. run_dpp_ap_config(dev, apdev, curve="P-384", conf_curve="P-384")
  1003. def test_dpp_ap_config_p384_p521(dev, apdev):
  1004. """DPP and AP configuration (P-384 + P-521)"""
  1005. run_dpp_ap_config(dev, apdev, curve="P-384", conf_curve="P-521")
  1006. def test_dpp_ap_config_p521_p256(dev, apdev):
  1007. """DPP and AP configuration (P-521 + P-256)"""
  1008. run_dpp_ap_config(dev, apdev, curve="P-521", conf_curve="P-256")
  1009. def test_dpp_ap_config_p521_p384(dev, apdev):
  1010. """DPP and AP configuration (P-521 + P-384)"""
  1011. run_dpp_ap_config(dev, apdev, curve="P-521", conf_curve="P-384")
  1012. def test_dpp_ap_config_p521_p521(dev, apdev):
  1013. """DPP and AP configuration (P-521 + P-521)"""
  1014. run_dpp_ap_config(dev, apdev, curve="P-521", conf_curve="P-521")
  1015. def update_hapd_config(hapd):
  1016. ev = hapd.wait_event(["DPP-CONFOBJ-SSID"], timeout=1)
  1017. if ev is None:
  1018. raise Exception("SSID not reported (AP)")
  1019. ssid = ev.split(' ')[1]
  1020. ev = hapd.wait_event(["DPP-CONNECTOR"], timeout=1)
  1021. if ev is None:
  1022. raise Exception("Connector not reported (AP)")
  1023. connector = ev.split(' ')[1]
  1024. ev = hapd.wait_event(["DPP-C-SIGN-KEY"], timeout=1)
  1025. if ev is None:
  1026. raise Exception("C-sign-key not reported (AP)")
  1027. p = ev.split(' ')
  1028. csign = p[1]
  1029. ev = hapd.wait_event(["DPP-NET-ACCESS-KEY"], timeout=1)
  1030. if ev is None:
  1031. raise Exception("netAccessKey not reported (AP)")
  1032. p = ev.split(' ')
  1033. net_access_key = p[1]
  1034. net_access_key_expiry = p[2] if len(p) > 2 else None
  1035. logger.info("Update AP configuration to use key_mgmt=DPP")
  1036. hapd.disable()
  1037. hapd.set("ssid", ssid)
  1038. hapd.set("wpa", "2")
  1039. hapd.set("wpa_key_mgmt", "DPP")
  1040. hapd.set("ieee80211w", "2")
  1041. hapd.set("rsn_pairwise", "CCMP")
  1042. hapd.set("dpp_connector", connector)
  1043. hapd.set("dpp_csign", csign)
  1044. hapd.set("dpp_netaccesskey", net_access_key)
  1045. if net_access_key_expiry:
  1046. hapd.set("dpp_netaccesskey_expiry", net_access_key_expiry)
  1047. hapd.enable()
  1048. def run_dpp_ap_config(dev, apdev, curve=None, conf_curve=None):
  1049. check_dpp_capab(dev[0])
  1050. check_dpp_capab(dev[1])
  1051. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured" })
  1052. check_dpp_capab(hapd)
  1053. addr = hapd.own_addr().replace(':', '')
  1054. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1055. if curve:
  1056. cmd += " curve=" + curve
  1057. res = hapd.request(cmd)
  1058. if "FAIL" in res:
  1059. raise Exception("Failed to generate bootstrapping info")
  1060. id_h = int(res)
  1061. uri = hapd.request("DPP_BOOTSTRAP_GET_URI %d" % id_h)
  1062. cmd = "DPP_CONFIGURATOR_ADD"
  1063. if conf_curve:
  1064. cmd += " curve=" + conf_curve
  1065. res = dev[0].request(cmd);
  1066. if "FAIL" in res:
  1067. raise Exception("Failed to add configurator")
  1068. conf_id = int(res)
  1069. res = dev[0].request("DPP_QR_CODE " + uri)
  1070. if "FAIL" in res:
  1071. raise Exception("Failed to parse QR Code URI")
  1072. id = int(res)
  1073. cmd = "DPP_AUTH_INIT peer=%d conf=ap-dpp configurator=%d" % (id, conf_id)
  1074. if "OK" not in dev[0].request(cmd):
  1075. raise Exception("Failed to initiate DPP Authentication")
  1076. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1077. if ev is None:
  1078. raise Exception("DPP authentication did not succeed (Responder)")
  1079. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1080. if ev is None:
  1081. raise Exception("DPP authentication did not succeed (Initiator)")
  1082. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  1083. if ev is None:
  1084. raise Exception("DPP configuration not completed (Configurator)")
  1085. ev = hapd.wait_event(["DPP-CONF-RECEIVED", "DPP-CONF-FAILED"], timeout=5)
  1086. if ev is None:
  1087. raise Exception("DPP configuration not completed (Enrollee)")
  1088. if "DPP-CONF-FAILED" in ev:
  1089. raise Exception("DPP configuration failed")
  1090. update_hapd_config(hapd)
  1091. addr = dev[1].own_addr().replace(':', '')
  1092. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1093. if curve:
  1094. cmd += " curve=" + curve
  1095. res = dev[1].request(cmd)
  1096. if "FAIL" in res:
  1097. raise Exception("Failed to generate bootstrapping info")
  1098. id1 = int(res)
  1099. uri1 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1)
  1100. res = dev[0].request("DPP_QR_CODE " + uri1)
  1101. if "FAIL" in res:
  1102. raise Exception("Failed to parse QR Code URI")
  1103. id0b = int(res)
  1104. cmd = "DPP_LISTEN 2412"
  1105. if "OK" not in dev[1].request(cmd):
  1106. raise Exception("Failed to start listen operation")
  1107. cmd = "DPP_AUTH_INIT peer=%d conf=sta-dpp configurator=%d" % (id0b, conf_id)
  1108. if "OK" not in dev[0].request(cmd):
  1109. raise Exception("Failed to initiate DPP Authentication")
  1110. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1111. if ev is None:
  1112. raise Exception("DPP authentication did not succeed (Responder)")
  1113. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1114. if ev is None:
  1115. raise Exception("DPP authentication did not succeed (Initiator)")
  1116. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  1117. if ev is None:
  1118. raise Exception("DPP configuration not completed (Configurator)")
  1119. ev = dev[1].wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  1120. if ev is None:
  1121. raise Exception("DPP configuration not completed (Enrollee)")
  1122. dev[1].request("DPP_STOP_LISTEN")
  1123. ev = dev[1].wait_event(["DPP-CONFOBJ-SSID"], timeout=1)
  1124. if ev is None:
  1125. raise Exception("SSID not reported")
  1126. ssid = ev.split(' ')[1]
  1127. ev = dev[1].wait_event(["DPP-CONNECTOR"], timeout=1)
  1128. if ev is None:
  1129. raise Exception("Connector not reported")
  1130. connector = ev.split(' ')[1]
  1131. ev = dev[1].wait_event(["DPP-C-SIGN-KEY"], timeout=1)
  1132. if ev is None:
  1133. raise Exception("C-sign-key not reported")
  1134. p = ev.split(' ')
  1135. csign = p[1]
  1136. ev = dev[1].wait_event(["DPP-NET-ACCESS-KEY"], timeout=1)
  1137. if ev is None:
  1138. raise Exception("netAccessKey not reported")
  1139. p = ev.split(' ')
  1140. net_access_key = p[1]
  1141. net_access_key_expiry = p[2] if len(p) > 2 else None
  1142. dev[1].dump_monitor()
  1143. id = dev[1].connect(ssid, key_mgmt="DPP", ieee80211w="2", scan_freq="2412",
  1144. only_add_network=True)
  1145. dev[1].set_network_quoted(id, "dpp_connector", connector)
  1146. dev[1].set_network(id, "dpp_csign", csign)
  1147. dev[1].set_network(id, "dpp_netaccesskey", net_access_key)
  1148. if net_access_key_expiry:
  1149. dev[1].set_network(id, "dpp_netaccess_expiry", net_access_key_expiry)
  1150. logger.info("Check data connection")
  1151. dev[1].select_network(id, freq="2412")
  1152. dev[1].wait_connected()
  1153. def test_dpp_auto_connect_1(dev, apdev):
  1154. """DPP and auto connect (1)"""
  1155. try:
  1156. run_dpp_auto_connect(dev, apdev, 1)
  1157. finally:
  1158. dev[0].set("dpp_config_processing", "0")
  1159. def test_dpp_auto_connect_2(dev, apdev):
  1160. """DPP and auto connect (2)"""
  1161. try:
  1162. run_dpp_auto_connect(dev, apdev, 2)
  1163. finally:
  1164. dev[0].set("dpp_config_processing", "0")
  1165. def test_dpp_auto_connect_2_connect_cmd(dev, apdev):
  1166. """DPP and auto connect (2) using connect_cmd"""
  1167. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  1168. wpas.interface_add("wlan5", drv_params="force_connect_cmd=1")
  1169. dev_new = [ wpas, dev[1] ]
  1170. try:
  1171. run_dpp_auto_connect(dev_new, apdev, 2)
  1172. finally:
  1173. wpas.set("dpp_config_processing", "0")
  1174. def run_dpp_auto_connect(dev, apdev, processing):
  1175. check_dpp_capab(dev[0])
  1176. check_dpp_capab(dev[1])
  1177. csign = "30770201010420768240a3fc89d6662d9782f120527fe7fb9edc6366ab0b9c7dde96125cfd250fa00a06082a8648ce3d030107a144034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  1178. csign_pub = "3059301306072a8648ce3d020106082a8648ce3d030107034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  1179. ap_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJwYWtZbXVzd1dCdWpSYTl5OEsweDViaTVrT3VNT3dzZHRlaml2UG55ZHZzIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6ImFwIn1dLCJuZXRBY2Nlc3NLZXkiOnsia3R5IjoiRUMiLCJjcnYiOiJQLTI1NiIsIngiOiIybU5vNXZuRkI5bEw3d1VWb1hJbGVPYzBNSEE1QXZKbnpwZXZULVVTYzVNIiwieSI6IlhzS3dqVHJlLTg5WWdpU3pKaG9CN1haeUttTU05OTl3V2ZaSVl0bi01Q3MifX0.XhjFpZgcSa7G2lHy0OCYTvaZFRo5Hyx6b7g7oYyusLC7C_73AJ4_BxEZQVYJXAtDuGvb3dXSkHEKxREP9Q6Qeg"
  1180. ap_netaccesskey = "30770201010420ceba752db2ad5200fa7bc565b9c05c69b7eb006751b0b329b0279de1c19ca67ca00a06082a8648ce3d030107a14403420004da6368e6f9c507d94bef0515a1722578e73430703902f267ce97af4fe51273935ec2b08d3adefbcf588224b3261a01ed76722a630cf7df7059f64862d9fee42b"
  1181. params = { "ssid": "test",
  1182. "wpa": "2",
  1183. "wpa_key_mgmt": "DPP",
  1184. "ieee80211w": "2",
  1185. "rsn_pairwise": "CCMP",
  1186. "dpp_connector": ap_connector,
  1187. "dpp_csign": csign_pub,
  1188. "dpp_netaccesskey": ap_netaccesskey }
  1189. try:
  1190. hapd = hostapd.add_ap(apdev[0], params)
  1191. except:
  1192. raise HwsimSkip("DPP not supported")
  1193. cmd = "DPP_CONFIGURATOR_ADD key=" + csign
  1194. res = dev[1].request(cmd)
  1195. if "FAIL" in res:
  1196. raise Exception("DPP_CONFIGURATOR_ADD failed")
  1197. conf_id = int(res)
  1198. dev[0].set("dpp_config_processing", str(processing))
  1199. addr = dev[0].own_addr().replace(':', '')
  1200. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1201. res = dev[0].request(cmd)
  1202. if "FAIL" in res:
  1203. raise Exception("Failed to generate bootstrapping info")
  1204. id0 = int(res)
  1205. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1206. res = dev[1].request("DPP_QR_CODE " + uri0)
  1207. if "FAIL" in res:
  1208. raise Exception("Failed to parse QR Code URI")
  1209. id1 = int(res)
  1210. cmd = "DPP_LISTEN 2412"
  1211. if "OK" not in dev[0].request(cmd):
  1212. raise Exception("Failed to start listen operation")
  1213. cmd = "DPP_AUTH_INIT peer=%d conf=sta-dpp configurator=%d" % (id1, conf_id)
  1214. if "OK" not in dev[1].request(cmd):
  1215. raise Exception("Failed to initiate DPP Authentication")
  1216. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=10)
  1217. if ev is None:
  1218. raise Exception("DPP configuration not completed (Configurator)")
  1219. ev = dev[0].wait_event(["DPP-CONF-RECEIVED"], timeout=2)
  1220. if ev is None:
  1221. raise Exception("DPP configuration not completed (Enrollee)")
  1222. ev = dev[0].wait_event(["DPP-NETWORK-ID"], timeout=1)
  1223. if ev is None:
  1224. raise Exception("DPP network profile not generated")
  1225. id = ev.split(' ')[1]
  1226. if processing == 1:
  1227. dev[0].select_network(id, freq=2412)
  1228. dev[0].wait_connected()
  1229. hwsim_utils.test_connectivity(dev[0], hapd)
  1230. def test_dpp_auto_connect_legacy(dev, apdev):
  1231. """DPP and auto connect (legacy)"""
  1232. try:
  1233. run_dpp_auto_connect_legacy(dev, apdev)
  1234. finally:
  1235. dev[0].set("dpp_config_processing", "0")
  1236. def test_dpp_auto_connect_legacy_sae_1(dev, apdev):
  1237. """DPP and auto connect (legacy SAE)"""
  1238. try:
  1239. run_dpp_auto_connect_legacy(dev, apdev, conf='sta-sae', psk_sae=True)
  1240. finally:
  1241. dev[0].set("dpp_config_processing", "0")
  1242. def test_dpp_auto_connect_legacy_sae_2(dev, apdev):
  1243. """DPP and auto connect (legacy SAE)"""
  1244. try:
  1245. run_dpp_auto_connect_legacy(dev, apdev, conf='sta-sae', sae_only=True)
  1246. finally:
  1247. dev[0].set("dpp_config_processing", "0")
  1248. def test_dpp_auto_connect_legacy_psk_sae_1(dev, apdev):
  1249. """DPP and auto connect (legacy PSK+SAE)"""
  1250. try:
  1251. run_dpp_auto_connect_legacy(dev, apdev, conf='sta-psk-sae',
  1252. psk_sae=True)
  1253. finally:
  1254. dev[0].set("dpp_config_processing", "0")
  1255. def test_dpp_auto_connect_legacy_psk_sae_2(dev, apdev):
  1256. """DPP and auto connect (legacy PSK+SAE)"""
  1257. try:
  1258. run_dpp_auto_connect_legacy(dev, apdev, conf='sta-psk-sae',
  1259. sae_only=True)
  1260. finally:
  1261. dev[0].set("dpp_config_processing", "0")
  1262. def test_dpp_auto_connect_legacy_psk_sae_3(dev, apdev):
  1263. """DPP and auto connect (legacy PSK+SAE)"""
  1264. try:
  1265. run_dpp_auto_connect_legacy(dev, apdev, conf='sta-psk-sae')
  1266. finally:
  1267. dev[0].set("dpp_config_processing", "0")
  1268. def run_dpp_auto_connect_legacy(dev, apdev, conf='sta-psk',
  1269. psk_sae=False, sae_only=False):
  1270. check_dpp_capab(dev[0])
  1271. check_dpp_capab(dev[1])
  1272. params = hostapd.wpa2_params(ssid="dpp-legacy",
  1273. passphrase="secret passphrase")
  1274. if sae_only:
  1275. params['wpa_key_mgmt'] = 'SAE'
  1276. elif psk_sae:
  1277. params['wpa_key_mgmt'] = 'WPA-PSK SAE'
  1278. hapd = hostapd.add_ap(apdev[0], params)
  1279. dev[0].set("dpp_config_processing", "2")
  1280. addr = dev[0].own_addr().replace(':', '')
  1281. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1282. res = dev[0].request(cmd)
  1283. if "FAIL" in res:
  1284. raise Exception("Failed to generate bootstrapping info")
  1285. id0 = int(res)
  1286. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1287. res = dev[1].request("DPP_QR_CODE " + uri0)
  1288. if "FAIL" in res:
  1289. raise Exception("Failed to parse QR Code URI")
  1290. id1 = int(res)
  1291. cmd = "DPP_LISTEN 2412"
  1292. if "OK" not in dev[0].request(cmd):
  1293. raise Exception("Failed to start listen operation")
  1294. cmd = "DPP_AUTH_INIT peer=%d conf=%s ssid=%s pass=%s" % (id1, conf, "dpp-legacy".encode("hex"), "secret passphrase".encode("hex"))
  1295. if "OK" not in dev[1].request(cmd):
  1296. raise Exception("Failed to initiate DPP Authentication")
  1297. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=10)
  1298. if ev is None:
  1299. raise Exception("DPP configuration not completed (Configurator)")
  1300. ev = dev[0].wait_event(["DPP-CONF-RECEIVED"], timeout=2)
  1301. if ev is None:
  1302. raise Exception("DPP configuration not completed (Enrollee)")
  1303. ev = dev[0].wait_event(["DPP-NETWORK-ID"], timeout=1)
  1304. if ev is None:
  1305. raise Exception("DPP network profile not generated")
  1306. id = ev.split(' ')[1]
  1307. dev[0].wait_connected()
  1308. def test_dpp_auto_connect_legacy_pmf_required(dev, apdev):
  1309. """DPP and auto connect (legacy, PMF required)"""
  1310. try:
  1311. run_dpp_auto_connect_legacy_pmf_required(dev, apdev)
  1312. finally:
  1313. dev[0].set("dpp_config_processing", "0")
  1314. def run_dpp_auto_connect_legacy_pmf_required(dev, apdev):
  1315. check_dpp_capab(dev[0])
  1316. check_dpp_capab(dev[1])
  1317. params = hostapd.wpa2_params(ssid="dpp-legacy",
  1318. passphrase="secret passphrase")
  1319. params['wpa_key_mgmt'] = "WPA-PSK-SHA256"
  1320. params['ieee80211w'] = "2"
  1321. hapd = hostapd.add_ap(apdev[0], params)
  1322. dev[0].set("dpp_config_processing", "2")
  1323. addr = dev[0].own_addr().replace(':', '')
  1324. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1325. res = dev[0].request(cmd)
  1326. if "FAIL" in res:
  1327. raise Exception("Failed to generate bootstrapping info")
  1328. id0 = int(res)
  1329. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1330. res = dev[1].request("DPP_QR_CODE " + uri0)
  1331. if "FAIL" in res:
  1332. raise Exception("Failed to parse QR Code URI")
  1333. id1 = int(res)
  1334. cmd = "DPP_LISTEN 2412"
  1335. if "OK" not in dev[0].request(cmd):
  1336. raise Exception("Failed to start listen operation")
  1337. cmd = "DPP_AUTH_INIT peer=%d conf=sta-psk ssid=%s pass=%s" % (id1, "dpp-legacy".encode("hex"), "secret passphrase".encode("hex"))
  1338. if "OK" not in dev[1].request(cmd):
  1339. raise Exception("Failed to initiate DPP Authentication")
  1340. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=10)
  1341. if ev is None:
  1342. raise Exception("DPP configuration not completed (Configurator)")
  1343. ev = dev[0].wait_event(["DPP-CONF-RECEIVED"], timeout=2)
  1344. if ev is None:
  1345. raise Exception("DPP configuration not completed (Enrollee)")
  1346. ev = dev[0].wait_event(["DPP-NETWORK-ID"], timeout=1)
  1347. if ev is None:
  1348. raise Exception("DPP network profile not generated")
  1349. id = ev.split(' ')[1]
  1350. dev[0].wait_connected()
  1351. def test_dpp_qr_code_auth_responder_configurator(dev, apdev):
  1352. """DPP QR Code and responder as the configurator"""
  1353. check_dpp_capab(dev[0])
  1354. check_dpp_capab(dev[1])
  1355. cmd = "DPP_CONFIGURATOR_ADD"
  1356. res = dev[0].request(cmd);
  1357. if "FAIL" in res:
  1358. raise Exception("Failed to add configurator")
  1359. conf_id = int(res)
  1360. addr = dev[0].own_addr().replace(':', '')
  1361. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1362. res = dev[0].request(cmd)
  1363. if "FAIL" in res:
  1364. raise Exception("Failed to generate bootstrapping info")
  1365. id0 = int(res)
  1366. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1367. res = dev[1].request("DPP_QR_CODE " + uri0)
  1368. if "FAIL" in res:
  1369. raise Exception("Failed to parse QR Code URI")
  1370. id1 = int(res)
  1371. dev[0].set("dpp_configurator_params", " conf=sta-dpp configurator=%d" % conf_id);
  1372. cmd = "DPP_LISTEN 2412 role=configurator"
  1373. if "OK" not in dev[0].request(cmd):
  1374. raise Exception("Failed to start listen operation")
  1375. cmd = "DPP_AUTH_INIT peer=%d role=enrollee" % id1
  1376. if "OK" not in dev[1].request(cmd):
  1377. raise Exception("Failed to initiate DPP Authentication")
  1378. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1379. if ev is None:
  1380. raise Exception("DPP authentication did not succeed (Responder)")
  1381. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1382. if ev is None:
  1383. raise Exception("DPP authentication did not succeed (Initiator)")
  1384. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  1385. if ev is None:
  1386. raise Exception("DPP configuration not completed (Configurator)")
  1387. ev = dev[1].wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  1388. if ev is None:
  1389. raise Exception("DPP configuration not completed (Enrollee)")
  1390. dev[0].request("DPP_STOP_LISTEN")
  1391. dev[0].dump_monitor()
  1392. dev[1].dump_monitor()
  1393. def test_dpp_qr_code_hostapd_init(dev, apdev):
  1394. """DPP QR Code and hostapd as initiator"""
  1395. check_dpp_capab(dev[0])
  1396. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured",
  1397. "channel": "6" })
  1398. check_dpp_capab(hapd)
  1399. cmd = "DPP_CONFIGURATOR_ADD"
  1400. res = dev[0].request(cmd);
  1401. if "FAIL" in res:
  1402. raise Exception("Failed to add configurator")
  1403. conf_id = int(res)
  1404. addr = dev[0].own_addr().replace(':', '')
  1405. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  1406. res = dev[0].request(cmd)
  1407. if "FAIL" in res:
  1408. raise Exception("Failed to generate bootstrapping info")
  1409. id0 = int(res)
  1410. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1411. dev[0].set("dpp_configurator_params",
  1412. " conf=ap-dpp configurator=%d" % conf_id);
  1413. cmd = "DPP_LISTEN 2437 role=configurator"
  1414. if "OK" not in dev[0].request(cmd):
  1415. raise Exception("Failed to start listen operation")
  1416. res = hapd.request("DPP_QR_CODE " + uri0)
  1417. if "FAIL" in res:
  1418. raise Exception("Failed to parse QR Code URI")
  1419. id1 = int(res)
  1420. cmd = "DPP_AUTH_INIT peer=%d role=enrollee" % id1
  1421. if "OK" not in hapd.request(cmd):
  1422. raise Exception("Failed to initiate DPP Authentication")
  1423. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1424. if ev is None:
  1425. raise Exception("DPP authentication did not succeed (Responder)")
  1426. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1427. if ev is None:
  1428. raise Exception("DPP authentication did not succeed (Initiator)")
  1429. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  1430. if ev is None:
  1431. raise Exception("DPP configuration not completed (Configurator)")
  1432. ev = hapd.wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  1433. if ev is None:
  1434. raise Exception("DPP configuration not completed (Enrollee)")
  1435. dev[0].request("DPP_STOP_LISTEN")
  1436. dev[0].dump_monitor()
  1437. def test_dpp_pkex(dev, apdev):
  1438. """DPP and PKEX"""
  1439. run_dpp_pkex(dev, apdev)
  1440. def test_dpp_pkex_p256(dev, apdev):
  1441. """DPP and PKEX (P-256)"""
  1442. run_dpp_pkex(dev, apdev, "P-256")
  1443. def test_dpp_pkex_p384(dev, apdev):
  1444. """DPP and PKEX (P-384)"""
  1445. run_dpp_pkex(dev, apdev, "P-384")
  1446. def test_dpp_pkex_p521(dev, apdev):
  1447. """DPP and PKEX (P-521)"""
  1448. run_dpp_pkex(dev, apdev, "P-521")
  1449. def test_dpp_pkex_bp256(dev, apdev):
  1450. """DPP and PKEX (BP-256)"""
  1451. run_dpp_pkex(dev, apdev, "brainpoolP256r1")
  1452. def test_dpp_pkex_bp384(dev, apdev):
  1453. """DPP and PKEX (BP-384)"""
  1454. run_dpp_pkex(dev, apdev, "brainpoolP384r1")
  1455. def test_dpp_pkex_bp512(dev, apdev):
  1456. """DPP and PKEX (BP-512)"""
  1457. run_dpp_pkex(dev, apdev, "brainpoolP512r1")
  1458. def test_dpp_pkex_config(dev, apdev):
  1459. """DPP and PKEX with initiator as the configurator"""
  1460. check_dpp_capab(dev[1])
  1461. cmd = "DPP_CONFIGURATOR_ADD"
  1462. res = dev[1].request(cmd);
  1463. if "FAIL" in res:
  1464. raise Exception("Failed to add configurator")
  1465. conf_id = int(res)
  1466. run_dpp_pkex(dev, apdev,
  1467. init_extra="conf=sta-dpp configurator=%d" % (conf_id),
  1468. check_config=True)
  1469. def run_dpp_pkex(dev, apdev, curve=None, init_extra="", check_config=False):
  1470. check_dpp_capab(dev[0], curve and "brainpool" in curve)
  1471. check_dpp_capab(dev[1], curve and "brainpool" in curve)
  1472. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1473. if curve:
  1474. cmd += " curve=" + curve
  1475. res = dev[0].request(cmd)
  1476. if "FAIL" in res:
  1477. raise Exception("Failed to generate bootstrapping info")
  1478. id0 = int(res)
  1479. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1480. if curve:
  1481. cmd += " curve=" + curve
  1482. res = dev[1].request(cmd)
  1483. if "FAIL" in res:
  1484. raise Exception("Failed to generate bootstrapping info")
  1485. id1 = int(res)
  1486. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  1487. res = dev[0].request(cmd)
  1488. if "FAIL" in res:
  1489. raise Exception("Failed to set PKEX data (responder)")
  1490. cmd = "DPP_LISTEN 2437"
  1491. if "OK" not in dev[0].request(cmd):
  1492. raise Exception("Failed to start listen operation")
  1493. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 %s code=secret" % (id1, init_extra)
  1494. res = dev[1].request(cmd)
  1495. if "FAIL" in res:
  1496. raise Exception("Failed to set PKEX data (initiator)")
  1497. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1498. if ev is None:
  1499. raise Exception("DPP authentication did not succeed (Initiator)")
  1500. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1501. if ev is None:
  1502. raise Exception("DPP authentication did not succeed (Responder)")
  1503. if check_config:
  1504. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=5)
  1505. if ev is None:
  1506. raise Exception("DPP configuration not completed (Configurator)")
  1507. ev = dev[0].wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  1508. if ev is None:
  1509. raise Exception("DPP configuration not completed (Enrollee)")
  1510. def test_dpp_pkex_code_mismatch(dev, apdev):
  1511. """DPP and PKEX with mismatching code"""
  1512. check_dpp_capab(dev[0])
  1513. check_dpp_capab(dev[1])
  1514. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1515. res = dev[0].request(cmd)
  1516. if "FAIL" in res:
  1517. raise Exception("Failed to generate bootstrapping info")
  1518. id0 = int(res)
  1519. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1520. res = dev[1].request(cmd)
  1521. if "FAIL" in res:
  1522. raise Exception("Failed to generate bootstrapping info")
  1523. id1 = int(res)
  1524. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  1525. res = dev[0].request(cmd)
  1526. if "FAIL" in res:
  1527. raise Exception("Failed to set PKEX data (responder)")
  1528. cmd = "DPP_LISTEN 2437"
  1529. if "OK" not in dev[0].request(cmd):
  1530. raise Exception("Failed to start listen operation")
  1531. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 code=unknown" % id1
  1532. res = dev[1].request(cmd)
  1533. if "FAIL" in res:
  1534. raise Exception("Failed to set PKEX data (initiator)")
  1535. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  1536. if ev is None:
  1537. raise Exception("Failure not reported")
  1538. if "possible PKEX code mismatch" not in ev:
  1539. raise Exception("Unexpected result: " + ev)
  1540. dev[0].dump_monitor()
  1541. dev[1].dump_monitor()
  1542. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 code=secret" % id1
  1543. res = dev[1].request(cmd)
  1544. if "FAIL" in res:
  1545. raise Exception("Failed to set PKEX data (initiator, retry)")
  1546. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1547. if ev is None:
  1548. raise Exception("DPP authentication did not succeed (Initiator, retry)")
  1549. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1550. if ev is None:
  1551. raise Exception("DPP authentication did not succeed (Responder, retry)")
  1552. def test_dpp_pkex_code_mismatch_limit(dev, apdev):
  1553. """DPP and PKEX with mismatching code limit"""
  1554. check_dpp_capab(dev[0])
  1555. check_dpp_capab(dev[1])
  1556. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1557. res = dev[0].request(cmd)
  1558. if "FAIL" in res:
  1559. raise Exception("Failed to generate bootstrapping info")
  1560. id0 = int(res)
  1561. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1562. res = dev[1].request(cmd)
  1563. if "FAIL" in res:
  1564. raise Exception("Failed to generate bootstrapping info")
  1565. id1 = int(res)
  1566. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  1567. res = dev[0].request(cmd)
  1568. if "FAIL" in res:
  1569. raise Exception("Failed to set PKEX data (responder)")
  1570. cmd = "DPP_LISTEN 2437"
  1571. if "OK" not in dev[0].request(cmd):
  1572. raise Exception("Failed to start listen operation")
  1573. for i in range(5):
  1574. dev[0].dump_monitor()
  1575. dev[1].dump_monitor()
  1576. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 code=unknown" % id1
  1577. res = dev[1].request(cmd)
  1578. if "FAIL" in res:
  1579. raise Exception("Failed to set PKEX data (initiator)")
  1580. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  1581. if ev is None:
  1582. raise Exception("Failure not reported")
  1583. if "possible PKEX code mismatch" not in ev:
  1584. raise Exception("Unexpected result: " + ev)
  1585. ev = dev[0].wait_event(["DPP-PKEX-T-LIMIT"], timeout=1)
  1586. if ev is None:
  1587. raise Exception("PKEX t limit not reported")
  1588. def test_dpp_pkex_curve_mismatch(dev, apdev):
  1589. """DPP and PKEX with mismatching curve"""
  1590. check_dpp_capab(dev[0])
  1591. check_dpp_capab(dev[1])
  1592. cmd = "DPP_BOOTSTRAP_GEN type=pkex curve=P-256"
  1593. res = dev[0].request(cmd)
  1594. if "FAIL" in res:
  1595. raise Exception("Failed to generate bootstrapping info")
  1596. id0 = int(res)
  1597. cmd = "DPP_BOOTSTRAP_GEN type=pkex curve=P-384"
  1598. res = dev[1].request(cmd)
  1599. if "FAIL" in res:
  1600. raise Exception("Failed to generate bootstrapping info")
  1601. id1 = int(res)
  1602. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  1603. res = dev[0].request(cmd)
  1604. if "FAIL" in res:
  1605. raise Exception("Failed to set PKEX data (responder)")
  1606. cmd = "DPP_LISTEN 2437"
  1607. if "OK" not in dev[0].request(cmd):
  1608. raise Exception("Failed to start listen operation")
  1609. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 code=secret" % id1
  1610. res = dev[1].request(cmd)
  1611. if "FAIL" in res:
  1612. raise Exception("Failed to set PKEX data (initiator)")
  1613. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  1614. if ev is None:
  1615. raise Exception("Failure not reported (dev 0)")
  1616. if "Mismatching PKEX curve: peer=20 own=19" not in ev:
  1617. raise Exception("Unexpected result: " + ev)
  1618. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  1619. if ev is None:
  1620. raise Exception("Failure not reported (dev 1)")
  1621. if "Peer indicated mismatching PKEX group - proposed 19" not in ev:
  1622. raise Exception("Unexpected result: " + ev)
  1623. def test_dpp_pkex_config2(dev, apdev):
  1624. """DPP and PKEX with responder as the configurator"""
  1625. check_dpp_capab(dev[0])
  1626. cmd = "DPP_CONFIGURATOR_ADD"
  1627. res = dev[0].request(cmd);
  1628. if "FAIL" in res:
  1629. raise Exception("Failed to add configurator")
  1630. conf_id = int(res)
  1631. dev[0].set("dpp_configurator_params",
  1632. " conf=sta-dpp configurator=%d" % conf_id);
  1633. run_dpp_pkex2(dev, apdev)
  1634. def run_dpp_pkex2(dev, apdev, curve=None, init_extra=""):
  1635. check_dpp_capab(dev[0])
  1636. check_dpp_capab(dev[1])
  1637. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1638. if curve:
  1639. cmd += " curve=" + curve
  1640. res = dev[0].request(cmd)
  1641. if "FAIL" in res:
  1642. raise Exception("Failed to generate bootstrapping info")
  1643. id0 = int(res)
  1644. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1645. if curve:
  1646. cmd += " curve=" + curve
  1647. res = dev[1].request(cmd)
  1648. if "FAIL" in res:
  1649. raise Exception("Failed to generate bootstrapping info")
  1650. id1 = int(res)
  1651. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  1652. res = dev[0].request(cmd)
  1653. if "FAIL" in res:
  1654. raise Exception("Failed to set PKEX data (responder)")
  1655. cmd = "DPP_LISTEN 2437 role=configurator"
  1656. if "OK" not in dev[0].request(cmd):
  1657. raise Exception("Failed to start listen operation")
  1658. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 role=enrollee %s code=secret" % (id1, init_extra)
  1659. res = dev[1].request(cmd)
  1660. if "FAIL" in res:
  1661. raise Exception("Failed to set PKEX data (initiator)")
  1662. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1663. if ev is None:
  1664. raise Exception("DPP authentication did not succeed (Initiator)")
  1665. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1666. if ev is None:
  1667. raise Exception("DPP authentication did not succeed (Responder)")
  1668. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  1669. if ev is None:
  1670. raise Exception("DPP configuration not completed (Configurator)")
  1671. ev = dev[1].wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  1672. if ev is None:
  1673. raise Exception("DPP configuration not completed (Enrollee)")
  1674. def test_dpp_pkex_no_responder(dev, apdev):
  1675. """DPP and PKEX with no responder (retry behavior)"""
  1676. check_dpp_capab(dev[0])
  1677. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1678. res = dev[0].request(cmd)
  1679. if "FAIL" in res:
  1680. raise Exception("Failed to generate bootstrapping info")
  1681. id0 = int(res)
  1682. cmd = "DPP_PKEX_ADD own=%d init=1 identifier=test code=secret" % (id0)
  1683. res = dev[0].request(cmd)
  1684. if "FAIL" in res:
  1685. raise Exception("Failed to set PKEX data (initiator)")
  1686. ev = dev[0].wait_event(["DPP-FAIL"], timeout=15)
  1687. if ev is None:
  1688. raise Exception("DPP PKEX failure not reported")
  1689. if "No response from PKEX peer" not in ev:
  1690. raise Exception("Unexpected failure reason: " + ev)
  1691. def test_dpp_pkex_after_retry(dev, apdev):
  1692. """DPP and PKEX completing after retry"""
  1693. check_dpp_capab(dev[0])
  1694. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1695. res = dev[0].request(cmd)
  1696. if "FAIL" in res:
  1697. raise Exception("Failed to generate bootstrapping info")
  1698. id0 = int(res)
  1699. cmd = "DPP_PKEX_ADD own=%d init=1 identifier=test code=secret" % (id0)
  1700. res = dev[0].request(cmd)
  1701. if "FAIL" in res:
  1702. raise Exception("Failed to set PKEX data (initiator)")
  1703. time.sleep(0.1)
  1704. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1705. res = dev[1].request(cmd)
  1706. if "FAIL" in res:
  1707. raise Exception("Failed to generate bootstrapping info")
  1708. id1 = int(res)
  1709. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id1)
  1710. res = dev[1].request(cmd)
  1711. if "FAIL" in res:
  1712. raise Exception("Failed to set PKEX data (responder)")
  1713. cmd = "DPP_LISTEN 2437"
  1714. if "OK" not in dev[1].request(cmd):
  1715. raise Exception("Failed to start listen operation")
  1716. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=10)
  1717. if ev is None:
  1718. raise Exception("DPP authentication did not succeed (Responder)")
  1719. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1720. if ev is None:
  1721. raise Exception("DPP authentication did not succeed (Initiator)")
  1722. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  1723. if ev is None:
  1724. raise Exception("DPP configuration not completed (Configurator)")
  1725. # Ignore Enrollee result since configurator was not set here
  1726. def test_dpp_pkex_hostapd_responder(dev, apdev):
  1727. """DPP PKEX with hostapd as responder"""
  1728. check_dpp_capab(dev[0])
  1729. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured",
  1730. "channel": "6" })
  1731. check_dpp_capab(hapd)
  1732. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1733. res = hapd.request(cmd)
  1734. if "FAIL" in res:
  1735. raise Exception("Failed to generate bootstrapping info (hostapd)")
  1736. id_h = int(res)
  1737. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id_h)
  1738. res = hapd.request(cmd)
  1739. if "FAIL" in res:
  1740. raise Exception("Failed to set PKEX data (responder/hostapd)")
  1741. cmd = "DPP_CONFIGURATOR_ADD"
  1742. res = dev[0].request(cmd);
  1743. if "FAIL" in res:
  1744. raise Exception("Failed to add configurator")
  1745. conf_id = int(res)
  1746. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1747. res = dev[0].request(cmd)
  1748. if "FAIL" in res:
  1749. raise Exception("Failed to generate bootstrapping info (wpa_supplicant)")
  1750. id0 = int(res)
  1751. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 conf=ap-dpp configurator=%d code=secret" % (id0, conf_id)
  1752. res = dev[0].request(cmd)
  1753. if "FAIL" in res:
  1754. raise Exception("Failed to set PKEX data (initiator/wpa_supplicant)")
  1755. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1756. if ev is None:
  1757. raise Exception("DPP authentication did not succeed (Initiator)")
  1758. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1759. if ev is None:
  1760. raise Exception("DPP authentication did not succeed (Responder)")
  1761. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  1762. if ev is None:
  1763. raise Exception("DPP configuration not completed (Configurator)")
  1764. ev = hapd.wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  1765. if ev is None:
  1766. raise Exception("DPP configuration not completed (Enrollee)")
  1767. dev[0].request("DPP_STOP_LISTEN")
  1768. dev[0].dump_monitor()
  1769. def test_dpp_pkex_hostapd_initiator(dev, apdev):
  1770. """DPP PKEX with hostapd as initiator"""
  1771. check_dpp_capab(dev[0])
  1772. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured",
  1773. "channel": "6" })
  1774. check_dpp_capab(hapd)
  1775. cmd = "DPP_CONFIGURATOR_ADD"
  1776. res = dev[0].request(cmd);
  1777. if "FAIL" in res:
  1778. raise Exception("Failed to add configurator")
  1779. conf_id = int(res)
  1780. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1781. res = dev[0].request(cmd)
  1782. if "FAIL" in res:
  1783. raise Exception("Failed to generate bootstrapping info (wpa_supplicant)")
  1784. id0 = int(res)
  1785. dev[0].set("dpp_configurator_params",
  1786. " conf=ap-dpp configurator=%d" % conf_id);
  1787. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  1788. res = dev[0].request(cmd)
  1789. if "FAIL" in res:
  1790. raise Exception("Failed to set PKEX data (responder/wpa_supplicant)")
  1791. cmd = "DPP_LISTEN 2437 role=configurator"
  1792. if "OK" not in dev[0].request(cmd):
  1793. raise Exception("Failed to start listen operation")
  1794. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1795. res = hapd.request(cmd)
  1796. if "FAIL" in res:
  1797. raise Exception("Failed to generate bootstrapping info (hostapd)")
  1798. id_h = int(res)
  1799. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 role=enrollee code=secret" % (id_h)
  1800. res = hapd.request(cmd)
  1801. if "FAIL" in res:
  1802. raise Exception("Failed to set PKEX data (initiator/hostapd)")
  1803. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1804. if ev is None:
  1805. raise Exception("DPP authentication did not succeed (Initiator)")
  1806. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1807. if ev is None:
  1808. raise Exception("DPP authentication did not succeed (Responder)")
  1809. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  1810. if ev is None:
  1811. raise Exception("DPP configuration not completed (Configurator)")
  1812. ev = hapd.wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  1813. if ev is None:
  1814. raise Exception("DPP configuration not completed (Enrollee)")
  1815. dev[0].request("DPP_STOP_LISTEN")
  1816. dev[0].dump_monitor()
  1817. def test_dpp_hostapd_configurator(dev, apdev):
  1818. """DPP with hostapd as configurator/initiator"""
  1819. check_dpp_capab(dev[0])
  1820. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured",
  1821. "channel": "1" })
  1822. check_dpp_capab(hapd)
  1823. cmd = "DPP_CONFIGURATOR_ADD"
  1824. res = hapd.request(cmd);
  1825. if "FAIL" in res:
  1826. raise Exception("Failed to add configurator")
  1827. conf_id = int(res)
  1828. addr = dev[0].own_addr().replace(':', '')
  1829. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1830. res = dev[0].request(cmd)
  1831. if "FAIL" in res:
  1832. raise Exception("Failed to generate bootstrapping info")
  1833. id0 = int(res)
  1834. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1835. res = hapd.request("DPP_QR_CODE " + uri0)
  1836. if "FAIL" in res:
  1837. raise Exception("Failed to parse QR Code URI")
  1838. id1 = int(res)
  1839. res = hapd.request("DPP_BOOTSTRAP_INFO %d" % id0)
  1840. if "FAIL" in res:
  1841. raise Exception("DPP_BOOTSTRAP_INFO failed")
  1842. if "type=QRCODE" not in res:
  1843. raise Exception("DPP_BOOTSTRAP_INFO did not report correct type")
  1844. if "mac_addr=" + dev[0].own_addr() not in res:
  1845. raise Exception("DPP_BOOTSTRAP_INFO did not report correct mac_addr")
  1846. cmd = "DPP_LISTEN 2412"
  1847. if "OK" not in dev[0].request(cmd):
  1848. raise Exception("Failed to start listen operation")
  1849. cmd = "DPP_AUTH_INIT peer=%d configurator=%d conf=sta-dpp" % (id1, conf_id)
  1850. if "OK" not in hapd.request(cmd):
  1851. raise Exception("Failed to initiate DPP Authentication")
  1852. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1853. if ev is None:
  1854. raise Exception("DPP authentication did not succeed (Responder)")
  1855. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1856. if ev is None:
  1857. raise Exception("DPP authentication did not succeed (Initiator)")
  1858. ev = hapd.wait_event(["DPP-CONF-SENT"], timeout=5)
  1859. if ev is None:
  1860. raise Exception("DPP configuration not completed (Configurator)")
  1861. ev = dev[0].wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  1862. if ev is None:
  1863. raise Exception("DPP configuration not completed (Enrollee)")
  1864. dev[0].request("DPP_STOP_LISTEN")
  1865. dev[0].dump_monitor()
  1866. def test_dpp_hostapd_configurator_responder(dev, apdev):
  1867. """DPP with hostapd as configurator/responder"""
  1868. check_dpp_capab(dev[0])
  1869. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured",
  1870. "channel": "1" })
  1871. check_dpp_capab(hapd)
  1872. cmd = "DPP_CONFIGURATOR_ADD"
  1873. res = hapd.request(cmd);
  1874. if "FAIL" in res:
  1875. raise Exception("Failed to add configurator")
  1876. conf_id = int(res)
  1877. hapd.set("dpp_configurator_params",
  1878. " conf=sta-dpp configurator=%d" % conf_id);
  1879. addr = hapd.own_addr().replace(':', '')
  1880. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1881. res = hapd.request(cmd)
  1882. if "FAIL" in res:
  1883. raise Exception("Failed to generate bootstrapping info")
  1884. id0 = int(res)
  1885. uri0 = hapd.request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1886. res = dev[0].request("DPP_QR_CODE " + uri0)
  1887. if "FAIL" in res:
  1888. raise Exception("Failed to parse QR Code URI")
  1889. id1 = int(res)
  1890. cmd = "DPP_AUTH_INIT peer=%d role=enrollee" % (id1)
  1891. if "OK" not in dev[0].request(cmd):
  1892. raise Exception("Failed to initiate DPP Authentication")
  1893. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1894. if ev is None:
  1895. raise Exception("DPP authentication did not succeed (Responder)")
  1896. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1897. if ev is None:
  1898. raise Exception("DPP authentication did not succeed (Initiator)")
  1899. ev = hapd.wait_event(["DPP-CONF-SENT"], timeout=5)
  1900. if ev is None:
  1901. raise Exception("DPP configuration not completed (Configurator)")
  1902. ev = dev[0].wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  1903. if ev is None:
  1904. raise Exception("DPP configuration not completed (Enrollee)")
  1905. dev[0].request("DPP_STOP_LISTEN")
  1906. dev[0].dump_monitor()
  1907. def test_dpp_own_config(dev, apdev):
  1908. """DPP configurator signing own connector"""
  1909. try:
  1910. run_dpp_own_config(dev, apdev)
  1911. finally:
  1912. dev[0].set("dpp_config_processing", "0")
  1913. def test_dpp_own_config_curve_mismatch(dev, apdev):
  1914. """DPP configurator signing own connector using mismatching curve"""
  1915. try:
  1916. run_dpp_own_config(dev, apdev, own_curve="BP-384", expect_failure=True)
  1917. finally:
  1918. dev[0].set("dpp_config_processing", "0")
  1919. def run_dpp_own_config(dev, apdev, own_curve=None, expect_failure=False):
  1920. check_dpp_capab(dev[0], own_curve and "BP" in own_curve)
  1921. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured" })
  1922. check_dpp_capab(hapd)
  1923. addr = hapd.own_addr().replace(':', '')
  1924. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1925. res = hapd.request(cmd)
  1926. if "FAIL" in res:
  1927. raise Exception("Failed to generate bootstrapping info")
  1928. id_h = int(res)
  1929. uri = hapd.request("DPP_BOOTSTRAP_GET_URI %d" % id_h)
  1930. cmd = "DPP_CONFIGURATOR_ADD"
  1931. res = dev[0].request(cmd);
  1932. if "FAIL" in res:
  1933. raise Exception("Failed to add configurator")
  1934. conf_id = int(res)
  1935. res = dev[0].request("DPP_QR_CODE " + uri)
  1936. if "FAIL" in res:
  1937. raise Exception("Failed to parse QR Code URI")
  1938. id = int(res)
  1939. cmd = "DPP_AUTH_INIT peer=%d conf=ap-dpp configurator=%d" % (id, conf_id)
  1940. if "OK" not in dev[0].request(cmd):
  1941. raise Exception("Failed to initiate DPP Authentication")
  1942. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1943. if ev is None:
  1944. raise Exception("DPP authentication did not succeed (Responder)")
  1945. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1946. if ev is None:
  1947. raise Exception("DPP authentication did not succeed (Initiator)")
  1948. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  1949. if ev is None:
  1950. raise Exception("DPP configuration not completed (Configurator)")
  1951. ev = hapd.wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  1952. if ev is None:
  1953. raise Exception("DPP configuration not completed (Enrollee)")
  1954. update_hapd_config(hapd)
  1955. dev[0].set("dpp_config_processing", "1")
  1956. cmd = "DPP_CONFIGURATOR_SIGN conf=sta-dpp configurator=%d" % (conf_id)
  1957. if own_curve:
  1958. cmd += " curve=" + own_curve
  1959. res = dev[0].request(cmd)
  1960. if "FAIL" in res:
  1961. raise Exception("Failed to generate own configuration")
  1962. ev = dev[0].wait_event(["DPP-NETWORK-ID"], timeout=1)
  1963. if ev is None:
  1964. raise Exception("DPP network profile not generated")
  1965. id = ev.split(' ')[1]
  1966. dev[0].select_network(id, freq="2412")
  1967. if expect_failure:
  1968. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  1969. if ev is not None:
  1970. raise Exception("Unexpected connection");
  1971. dev[0].request("DISCONNECT")
  1972. else:
  1973. dev[0].wait_connected()
  1974. def test_dpp_intro_mismatch(dev, apdev):
  1975. """DPP network introduction mismatch cases"""
  1976. try:
  1977. wpas = None
  1978. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  1979. wpas.interface_add("wlan5")
  1980. check_dpp_capab(wpas)
  1981. run_dpp_intro_mismatch(dev, apdev, wpas)
  1982. finally:
  1983. dev[0].set("dpp_config_processing", "0")
  1984. dev[2].set("dpp_config_processing", "0")
  1985. if wpas:
  1986. wpas.set("dpp_config_processing", "0")
  1987. def run_dpp_intro_mismatch(dev, apdev, wpas):
  1988. check_dpp_capab(dev[0])
  1989. check_dpp_capab(dev[1])
  1990. check_dpp_capab(dev[2])
  1991. logger.info("Start AP in unconfigured state")
  1992. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured" })
  1993. check_dpp_capab(hapd)
  1994. addr = hapd.own_addr().replace(':', '')
  1995. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1996. res = hapd.request(cmd)
  1997. if "FAIL" in res:
  1998. raise Exception("Failed to generate bootstrapping info")
  1999. id_h = int(res)
  2000. uri = hapd.request("DPP_BOOTSTRAP_GET_URI %d" % id_h)
  2001. logger.info("Provision AP with DPP configuration")
  2002. res = dev[1].request("DPP_CONFIGURATOR_ADD");
  2003. if "FAIL" in res:
  2004. raise Exception("Failed to add configurator")
  2005. conf_id = int(res)
  2006. res = dev[1].request("DPP_QR_CODE " + uri)
  2007. if "FAIL" in res:
  2008. raise Exception("Failed to parse QR Code URI")
  2009. id = int(res)
  2010. dev[1].set("dpp_groups_override", '[{"groupId":"a","netRole":"ap"}]')
  2011. cmd = "DPP_AUTH_INIT peer=%d conf=ap-dpp configurator=%d" % (id, conf_id)
  2012. if "OK" not in dev[1].request(cmd):
  2013. raise Exception("Failed to initiate DPP Authentication")
  2014. update_hapd_config(hapd)
  2015. logger.info("Provision STA0 with DPP Connector that has mismatching groupId")
  2016. dev[0].set("dpp_config_processing", "2")
  2017. addr = dev[0].own_addr().replace(':', '')
  2018. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  2019. res = dev[0].request(cmd)
  2020. if "FAIL" in res:
  2021. raise Exception("Failed to generate bootstrapping info")
  2022. id0 = int(res)
  2023. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  2024. res = dev[1].request("DPP_QR_CODE " + uri0)
  2025. if "FAIL" in res:
  2026. raise Exception("Failed to parse QR Code URI")
  2027. id1 = int(res)
  2028. cmd = "DPP_LISTEN 2412"
  2029. if "OK" not in dev[0].request(cmd):
  2030. raise Exception("Failed to start listen operation")
  2031. dev[1].set("dpp_groups_override", '[{"groupId":"b","netRole":"sta"}]')
  2032. cmd = "DPP_AUTH_INIT peer=%d conf=sta-dpp configurator=%d" % (id1, conf_id)
  2033. if "OK" not in dev[1].request(cmd):
  2034. raise Exception("Failed to initiate DPP Authentication")
  2035. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=5)
  2036. if ev is None:
  2037. raise Exception("DPP configuration not completed (Configurator for STA0)")
  2038. ev = dev[0].wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  2039. if ev is None:
  2040. raise Exception("DPP configuration not completed (Enrollee STA0)")
  2041. logger.info("Provision STA2 with DPP Connector that has mismatching C-sign-key")
  2042. dev[2].set("dpp_config_processing", "2")
  2043. addr = dev[2].own_addr().replace(':', '')
  2044. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  2045. res = dev[2].request(cmd)
  2046. if "FAIL" in res:
  2047. raise Exception("Failed to generate bootstrapping info")
  2048. id2 = int(res)
  2049. uri2 = dev[2].request("DPP_BOOTSTRAP_GET_URI %d" % id2)
  2050. res = dev[1].request("DPP_QR_CODE " + uri2)
  2051. if "FAIL" in res:
  2052. raise Exception("Failed to parse QR Code URI")
  2053. id1 = int(res)
  2054. cmd = "DPP_LISTEN 2412"
  2055. if "OK" not in dev[2].request(cmd):
  2056. raise Exception("Failed to start listen operation")
  2057. res = dev[1].request("DPP_CONFIGURATOR_ADD");
  2058. if "FAIL" in res:
  2059. raise Exception("Failed to add configurator")
  2060. conf_id_2 = int(res)
  2061. dev[1].set("dpp_groups_override", '')
  2062. cmd = "DPP_AUTH_INIT peer=%d conf=sta-dpp configurator=%d" % (id1, conf_id_2)
  2063. if "OK" not in dev[1].request(cmd):
  2064. raise Exception("Failed to initiate DPP Authentication")
  2065. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=5)
  2066. if ev is None:
  2067. raise Exception("DPP configuration not completed (Configurator for STA2)")
  2068. ev = dev[2].wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  2069. if ev is None:
  2070. raise Exception("DPP configuration not completed (Enrollee STA2)")
  2071. logger.info("Provision STA5 with DPP Connector that has mismatching netAccessKey EC group")
  2072. wpas.set("dpp_config_processing", "2")
  2073. addr = wpas.own_addr().replace(':', '')
  2074. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  2075. cmd += " curve=P-521"
  2076. res = wpas.request(cmd)
  2077. if "FAIL" in res:
  2078. raise Exception("Failed to generate bootstrapping info")
  2079. id5 = int(res)
  2080. uri5 = wpas.request("DPP_BOOTSTRAP_GET_URI %d" % id5)
  2081. res = dev[1].request("DPP_QR_CODE " + uri5)
  2082. if "FAIL" in res:
  2083. raise Exception("Failed to parse QR Code URI")
  2084. id1 = int(res)
  2085. cmd = "DPP_LISTEN 2412"
  2086. if "OK" not in wpas.request(cmd):
  2087. raise Exception("Failed to start listen operation")
  2088. dev[1].set("dpp_groups_override", '')
  2089. cmd = "DPP_AUTH_INIT peer=%d conf=sta-dpp configurator=%d" % (id1, conf_id)
  2090. if "OK" not in dev[1].request(cmd):
  2091. raise Exception("Failed to initiate DPP Authentication")
  2092. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=5)
  2093. if ev is None:
  2094. raise Exception("DPP configuration not completed (Configurator for STA0)")
  2095. ev = wpas.wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  2096. if ev is None:
  2097. raise Exception("DPP configuration not completed (Enrollee STA5)")
  2098. logger.info("Verify network introduction results")
  2099. ev = dev[0].wait_event(["DPP-INTRO"], timeout=10)
  2100. if ev is None:
  2101. raise Exception("DPP network introduction result not seen on STA0")
  2102. if "status=8" not in ev:
  2103. raise Exception("Unexpected network introduction result on STA0: " + ev)
  2104. ev = dev[2].wait_event(["DPP-INTRO"], timeout=5)
  2105. if ev is None:
  2106. raise Exception("DPP network introduction result not seen on STA2")
  2107. if "status=8" not in ev:
  2108. raise Exception("Unexpected network introduction result on STA2: " + ev)
  2109. ev = wpas.wait_event(["DPP-INTRO"], timeout=10)
  2110. if ev is None:
  2111. raise Exception("DPP network introduction result not seen on STA5")
  2112. if "status=7" not in ev:
  2113. raise Exception("Unexpected network introduction result on STA5: " + ev)
  2114. def run_dpp_proto_init(dev, test_dev, test, mutual=False, unicast=True,
  2115. listen=True, chan="81/1"):
  2116. check_dpp_capab(dev[0])
  2117. check_dpp_capab(dev[1])
  2118. dev[test_dev].set("dpp_test", str(test))
  2119. cmd = "DPP_CONFIGURATOR_ADD"
  2120. res = dev[1].request(cmd);
  2121. if "FAIL" in res:
  2122. raise Exception("Failed to add configurator")
  2123. conf_id = int(res)
  2124. addr = dev[0].own_addr().replace(':', '')
  2125. cmd = "DPP_BOOTSTRAP_GEN type=qrcode"
  2126. if chan:
  2127. cmd += " chan=" + chan
  2128. if unicast:
  2129. cmd += " mac=" + addr
  2130. res = dev[0].request(cmd)
  2131. if "FAIL" in res:
  2132. raise Exception("Failed to generate bootstrapping info")
  2133. id0 = int(res)
  2134. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  2135. res = dev[1].request("DPP_QR_CODE " + uri0)
  2136. if "FAIL" in res:
  2137. raise Exception("Failed to parse QR Code URI")
  2138. id1 = int(res)
  2139. if mutual:
  2140. addr = dev[1].own_addr().replace(':', '')
  2141. res = dev[1].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  2142. if "FAIL" in res:
  2143. raise Exception("Failed to generate bootstrapping info")
  2144. id1b = int(res)
  2145. uri1b = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1b)
  2146. res = dev[0].request("DPP_QR_CODE " + uri1b)
  2147. if "FAIL" in res:
  2148. raise Exception("Failed to parse QR Code URI")
  2149. id0b = int(res)
  2150. cmd = "DPP_LISTEN 2412 qr=mutual"
  2151. else:
  2152. cmd = "DPP_LISTEN 2412"
  2153. if listen:
  2154. if "OK" not in dev[0].request(cmd):
  2155. raise Exception("Failed to start listen operation")
  2156. cmd = "DPP_AUTH_INIT peer=%d configurator=%d conf=sta-dpp" % (id1, conf_id)
  2157. if mutual:
  2158. cmd += " own=%d" % id1b
  2159. if "OK" not in dev[1].request(cmd):
  2160. raise Exception("Failed to initiate DPP Authentication")
  2161. def test_dpp_proto_after_wrapped_data_auth_req(dev, apdev):
  2162. """DPP protocol testing - attribute after Wrapped Data in Auth Req"""
  2163. run_dpp_proto_init(dev, 1, 1)
  2164. ev = dev[0].wait_event(["DPP-RX"], timeout=5)
  2165. if ev is None:
  2166. raise Exception("DPP Authentication Request not seen")
  2167. if "type=0" not in ev or "ignore=invalid-attributes" not in ev:
  2168. raise Exception("Unexpected RX info: " + ev)
  2169. ev = dev[1].wait_event(["DPP-RX"], timeout=0.1)
  2170. if ev is not None:
  2171. raise Exception("Unexpected DPP message seen")
  2172. def test_dpp_auth_req_stop_after_ack(dev, apdev):
  2173. """DPP initiator stopping after ACK, but no response"""
  2174. run_dpp_proto_init(dev, 1, 1, listen=True)
  2175. ev = dev[1].wait_event(["DPP-AUTH-INIT-FAILED"], timeout=5)
  2176. if ev is None:
  2177. raise Exception("Authentication failure not reported")
  2178. def test_dpp_auth_req_retries(dev, apdev):
  2179. """DPP initiator retries with no ACK"""
  2180. dev[1].set("dpp_init_max_tries", "3")
  2181. dev[1].set("dpp_init_retry_time", "1000")
  2182. dev[1].set("dpp_resp_wait_time", "100")
  2183. run_dpp_proto_init(dev, 1, 1, unicast=False, listen=False)
  2184. for i in range(3):
  2185. ev = dev[1].wait_event(["DPP-TX"], timeout=5)
  2186. if ev is None:
  2187. raise Exception("Auth Req not sent (%d)" % i)
  2188. ev = dev[1].wait_event(["DPP-TX-STATUS"], timeout=5)
  2189. if ev is None:
  2190. raise Exception("Auth Req TX status not seen (%d)" % i)
  2191. ev = dev[1].wait_event(["DPP-AUTH-INIT-FAILED"], timeout=5)
  2192. if ev is None:
  2193. raise Exception("Authentication failure not reported")
  2194. def test_dpp_auth_req_retries_multi_chan(dev, apdev):
  2195. """DPP initiator retries with no ACK and multiple channels"""
  2196. dev[1].set("dpp_init_max_tries", "3")
  2197. dev[1].set("dpp_init_retry_time", "1000")
  2198. dev[1].set("dpp_resp_wait_time", "100")
  2199. run_dpp_proto_init(dev, 1, 1, unicast=False, listen=False,
  2200. chan="81/1,81/6,81/11")
  2201. for i in range(3 * 3):
  2202. ev = dev[1].wait_event(["DPP-TX"], timeout=5)
  2203. if ev is None:
  2204. raise Exception("Auth Req not sent (%d)" % i)
  2205. ev = dev[1].wait_event(["DPP-TX-STATUS"], timeout=5)
  2206. if ev is None:
  2207. raise Exception("Auth Req TX status not seen (%d)" % i)
  2208. ev = dev[1].wait_event(["DPP-AUTH-INIT-FAILED"], timeout=5)
  2209. if ev is None:
  2210. raise Exception("Authentication failure not reported")
  2211. def test_dpp_proto_after_wrapped_data_auth_resp(dev, apdev):
  2212. """DPP protocol testing - attribute after Wrapped Data in Auth Resp"""
  2213. run_dpp_proto_init(dev, 0, 2)
  2214. ev = dev[1].wait_event(["DPP-RX"], timeout=5)
  2215. if ev is None:
  2216. raise Exception("DPP Authentication Response not seen")
  2217. if "type=1" not in ev or "ignore=invalid-attributes" not in ev:
  2218. raise Exception("Unexpected RX info: " + ev)
  2219. ev = dev[0].wait_event(["DPP-RX"], timeout=1)
  2220. if ev is None or "type=0" not in ev:
  2221. raise Exception("DPP Authentication Request not seen")
  2222. ev = dev[0].wait_event(["DPP-RX"], timeout=0.1)
  2223. if ev is not None:
  2224. raise Exception("Unexpected DPP message seen")
  2225. def test_dpp_proto_after_wrapped_data_auth_conf(dev, apdev):
  2226. """DPP protocol testing - attribute after Wrapped Data in Auth Conf"""
  2227. run_dpp_proto_init(dev, 1, 3)
  2228. ev = dev[0].wait_event(["DPP-RX"], timeout=5)
  2229. if ev is None or "type=0" not in ev:
  2230. raise Exception("DPP Authentication Request not seen")
  2231. ev = dev[0].wait_event(["DPP-RX"], timeout=5)
  2232. if ev is None:
  2233. raise Exception("DPP Authentication Confirm not seen")
  2234. if "type=2" not in ev or "ignore=invalid-attributes" not in ev:
  2235. raise Exception("Unexpected RX info: " + ev)
  2236. def test_dpp_proto_after_wrapped_data_conf_req(dev, apdev):
  2237. """DPP protocol testing - attribute after Wrapped Data in Conf Req"""
  2238. run_dpp_proto_init(dev, 0, 6)
  2239. ev = dev[1].wait_event(["DPP-CONF-FAILED"], timeout=10)
  2240. if ev is None:
  2241. raise Exception("DPP Configuration failure not seen")
  2242. def test_dpp_proto_after_wrapped_data_conf_resp(dev, apdev):
  2243. """DPP protocol testing - attribute after Wrapped Data in Conf Resp"""
  2244. run_dpp_proto_init(dev, 1, 7)
  2245. ev = dev[0].wait_event(["DPP-CONF-FAILED"], timeout=10)
  2246. if ev is None:
  2247. raise Exception("DPP Configuration failure not seen")
  2248. def test_dpp_proto_zero_i_capab(dev, apdev):
  2249. """DPP protocol testing - zero I-capability in Auth Req"""
  2250. run_dpp_proto_init(dev, 1, 8)
  2251. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2252. if ev is None:
  2253. raise Exception("DPP failure not seen")
  2254. if "Invalid role in I-capabilities 0x00" not in ev:
  2255. raise Exception("Unexpected failure: " + ev)
  2256. ev = dev[1].wait_event(["DPP-RX"], timeout=0.1)
  2257. if ev is not None:
  2258. raise Exception("Unexpected DPP message seen")
  2259. def test_dpp_proto_zero_r_capab(dev, apdev):
  2260. """DPP protocol testing - zero R-capability in Auth Resp"""
  2261. run_dpp_proto_init(dev, 0, 9)
  2262. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  2263. if ev is None:
  2264. raise Exception("DPP failure not seen")
  2265. if "Unexpected role in R-capabilities 0x00" not in ev:
  2266. raise Exception("Unexpected failure: " + ev)
  2267. ev = dev[0].wait_event(["DPP-RX"], timeout=1)
  2268. if ev is None or "type=0" not in ev:
  2269. raise Exception("DPP Authentication Request not seen")
  2270. ev = dev[0].wait_event(["DPP-RX"], timeout=0.1)
  2271. if ev is not None:
  2272. raise Exception("Unexpected DPP message seen")
  2273. def run_dpp_proto_auth_req_missing(dev, test, reason, mutual=False):
  2274. run_dpp_proto_init(dev, 1, test, mutual=mutual)
  2275. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2276. if ev is None:
  2277. raise Exception("DPP failure not seen")
  2278. if reason not in ev:
  2279. raise Exception("Unexpected failure: " + ev)
  2280. ev = dev[1].wait_event(["DPP-RX"], timeout=0.1)
  2281. if ev is not None:
  2282. raise Exception("Unexpected DPP message seen")
  2283. def test_dpp_proto_auth_req_no_r_bootstrap_key(dev, apdev):
  2284. """DPP protocol testing - no R-bootstrap key in Auth Req"""
  2285. run_dpp_proto_auth_req_missing(dev, 10, "Missing or invalid required Responder Bootstrapping Key Hash attribute")
  2286. def test_dpp_proto_auth_req_invalid_r_bootstrap_key(dev, apdev):
  2287. """DPP protocol testing - invalid R-bootstrap key in Auth Req"""
  2288. run_dpp_proto_auth_req_missing(dev, 68, "No matching own bootstrapping key found - ignore message")
  2289. def test_dpp_proto_auth_req_no_i_bootstrap_key(dev, apdev):
  2290. """DPP protocol testing - no I-bootstrap key in Auth Req"""
  2291. run_dpp_proto_auth_req_missing(dev, 11, "Missing or invalid required Initiator Bootstrapping Key Hash attribute")
  2292. def test_dpp_proto_auth_req_invalid_i_bootstrap_key(dev, apdev):
  2293. """DPP protocol testing - invalid I-bootstrap key in Auth Req"""
  2294. run_dpp_proto_init(dev, 1, 69, mutual=True)
  2295. ev = dev[0].wait_event(["DPP-SCAN-PEER-QR-CODE"], timeout=5)
  2296. if ev is None:
  2297. raise Exception("DPP scan request not seen")
  2298. ev = dev[1].wait_event(["DPP-RESPONSE-PENDING"], timeout=5)
  2299. if ev is None:
  2300. raise Exception("DPP response pending indivation not seen")
  2301. def test_dpp_proto_auth_req_no_i_proto_key(dev, apdev):
  2302. """DPP protocol testing - no I-proto key in Auth Req"""
  2303. run_dpp_proto_auth_req_missing(dev, 12, "Missing required Initiator Protocol Key attribute")
  2304. def test_dpp_proto_auth_req_invalid_i_proto_key(dev, apdev):
  2305. """DPP protocol testing - invalid I-proto key in Auth Req"""
  2306. run_dpp_proto_auth_req_missing(dev, 66, "Invalid Initiator Protocol Key")
  2307. def test_dpp_proto_auth_req_no_i_nonce(dev, apdev):
  2308. """DPP protocol testing - no I-nonce in Auth Req"""
  2309. run_dpp_proto_auth_req_missing(dev, 13, "Missing or invalid I-nonce")
  2310. def test_dpp_proto_auth_req_invalid_i_nonce(dev, apdev):
  2311. """DPP protocol testing - invalid I-nonce in Auth Req"""
  2312. run_dpp_proto_auth_req_missing(dev, 81, "Missing or invalid I-nonce")
  2313. def test_dpp_proto_auth_req_no_i_capab(dev, apdev):
  2314. """DPP protocol testing - no I-capab in Auth Req"""
  2315. run_dpp_proto_auth_req_missing(dev, 14, "Missing or invalid I-capab")
  2316. def test_dpp_proto_auth_req_no_wrapped_data(dev, apdev):
  2317. """DPP protocol testing - no Wrapped Data in Auth Req"""
  2318. run_dpp_proto_auth_req_missing(dev, 15, "Missing or invalid required Wrapped Data attribute")
  2319. def run_dpp_proto_auth_resp_missing(dev, test, reason):
  2320. run_dpp_proto_init(dev, 0, test, mutual=True)
  2321. if reason is None:
  2322. time.sleep(0.1)
  2323. return
  2324. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  2325. if ev is None:
  2326. raise Exception("DPP failure not seen")
  2327. if reason not in ev:
  2328. raise Exception("Unexpected failure: " + ev)
  2329. ev = dev[0].wait_event(["DPP-RX"], timeout=1)
  2330. if ev is None or "type=0" not in ev:
  2331. raise Exception("DPP Authentication Request not seen")
  2332. ev = dev[0].wait_event(["DPP-RX"], timeout=0.1)
  2333. if ev is not None:
  2334. raise Exception("Unexpected DPP message seen")
  2335. def test_dpp_proto_auth_resp_no_status(dev, apdev):
  2336. """DPP protocol testing - no Status in Auth Resp"""
  2337. run_dpp_proto_auth_resp_missing(dev, 16, "Missing or invalid required DPP Status attribute")
  2338. def test_dpp_proto_auth_resp_invalid_status(dev, apdev):
  2339. """DPP protocol testing - invalid Status in Auth Resp"""
  2340. run_dpp_proto_auth_resp_missing(dev, 74, "Responder reported failure")
  2341. def test_dpp_proto_auth_resp_no_r_bootstrap_key(dev, apdev):
  2342. """DPP protocol testing - no R-bootstrap key in Auth Resp"""
  2343. run_dpp_proto_auth_resp_missing(dev, 17, "Missing or invalid required Responder Bootstrapping Key Hash attribute")
  2344. def test_dpp_proto_auth_resp_invalid_r_bootstrap_key(dev, apdev):
  2345. """DPP protocol testing - invalid R-bootstrap key in Auth Resp"""
  2346. run_dpp_proto_auth_resp_missing(dev, 70, "Unexpected Responder Bootstrapping Key Hash value")
  2347. def test_dpp_proto_auth_resp_no_i_bootstrap_key(dev, apdev):
  2348. """DPP protocol testing - no I-bootstrap key in Auth Resp"""
  2349. run_dpp_proto_auth_resp_missing(dev, 18, None)
  2350. def test_dpp_proto_auth_resp_invalid_i_bootstrap_key(dev, apdev):
  2351. """DPP protocol testing - invalid I-bootstrap key in Auth Resp"""
  2352. run_dpp_proto_auth_resp_missing(dev, 71, "Initiator Bootstrapping Key Hash attribute did not match")
  2353. def test_dpp_proto_auth_resp_no_r_proto_key(dev, apdev):
  2354. """DPP protocol testing - no R-Proto Key in Auth Resp"""
  2355. run_dpp_proto_auth_resp_missing(dev, 19, "Missing required Responder Protocol Key attribute")
  2356. def test_dpp_proto_auth_resp_invalid_r_proto_key(dev, apdev):
  2357. """DPP protocol testing - invalid R-Proto Key in Auth Resp"""
  2358. run_dpp_proto_auth_resp_missing(dev, 67, "Invalid Responder Protocol Key")
  2359. def test_dpp_proto_auth_resp_no_r_nonce(dev, apdev):
  2360. """DPP protocol testing - no R-nonce in Auth Resp"""
  2361. run_dpp_proto_auth_resp_missing(dev, 20, "Missing or invalid R-nonce")
  2362. def test_dpp_proto_auth_resp_no_i_nonce(dev, apdev):
  2363. """DPP protocol testing - no I-nonce in Auth Resp"""
  2364. run_dpp_proto_auth_resp_missing(dev, 21, "Missing or invalid I-nonce")
  2365. def test_dpp_proto_auth_resp_no_r_capab(dev, apdev):
  2366. """DPP protocol testing - no R-capab in Auth Resp"""
  2367. run_dpp_proto_auth_resp_missing(dev, 22, "Missing or invalid R-capabilities")
  2368. def test_dpp_proto_auth_resp_no_r_auth(dev, apdev):
  2369. """DPP protocol testing - no R-auth in Auth Resp"""
  2370. run_dpp_proto_auth_resp_missing(dev, 23, "Missing or invalid Secondary Wrapped Data")
  2371. def test_dpp_proto_auth_resp_no_wrapped_data(dev, apdev):
  2372. """DPP protocol testing - no Wrapped Data in Auth Resp"""
  2373. run_dpp_proto_auth_resp_missing(dev, 24, "Missing or invalid required Wrapped Data attribute")
  2374. def test_dpp_proto_auth_resp_i_nonce_mismatch(dev, apdev):
  2375. """DPP protocol testing - I-nonce mismatch in Auth Resp"""
  2376. run_dpp_proto_init(dev, 0, 30, mutual=True)
  2377. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  2378. if ev is None:
  2379. raise Exception("DPP failure not seen")
  2380. if "I-nonce mismatch" not in ev:
  2381. raise Exception("Unexpected failure: " + ev)
  2382. ev = dev[0].wait_event(["DPP-RX"], timeout=1)
  2383. if ev is None or "type=0" not in ev:
  2384. raise Exception("DPP Authentication Request not seen")
  2385. ev = dev[0].wait_event(["DPP-RX"], timeout=0.1)
  2386. if ev is not None:
  2387. raise Exception("Unexpected DPP message seen")
  2388. def test_dpp_proto_auth_resp_incompatible_r_capab(dev, apdev):
  2389. """DPP protocol testing - Incompatible R-capab in Auth Resp"""
  2390. run_dpp_proto_init(dev, 0, 31, mutual=True)
  2391. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  2392. if ev is None:
  2393. raise Exception("DPP failure not seen")
  2394. if "Unexpected role in R-capabilities 0x02" not in ev:
  2395. raise Exception("Unexpected failure: " + ev)
  2396. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2397. if ev is None:
  2398. raise Exception("DPP failure not seen")
  2399. if "Peer reported incompatible R-capab role" not in ev:
  2400. raise Exception("Unexpected failure: " + ev)
  2401. def test_dpp_proto_auth_resp_r_auth_mismatch(dev, apdev):
  2402. """DPP protocol testing - R-auth mismatch in Auth Resp"""
  2403. run_dpp_proto_init(dev, 0, 32, mutual=True)
  2404. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  2405. if ev is None:
  2406. raise Exception("DPP failure not seen")
  2407. if "Mismatching Responder Authenticating Tag" not in ev:
  2408. raise Exception("Unexpected failure: " + ev)
  2409. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2410. if ev is None:
  2411. raise Exception("DPP failure not seen")
  2412. if "Peer reported authentication failure" not in ev:
  2413. raise Exception("Unexpected failure: " + ev)
  2414. def run_dpp_proto_auth_conf_missing(dev, test, reason):
  2415. run_dpp_proto_init(dev, 1, test, mutual=True)
  2416. if reason is None:
  2417. time.sleep(0.1)
  2418. return
  2419. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2420. if ev is None:
  2421. raise Exception("DPP failure not seen")
  2422. if reason not in ev:
  2423. raise Exception("Unexpected failure: " + ev)
  2424. def test_dpp_proto_auth_conf_no_status(dev, apdev):
  2425. """DPP protocol testing - no Status in Auth Conf"""
  2426. run_dpp_proto_auth_conf_missing(dev, 25, "Missing or invalid required DPP Status attribute")
  2427. def test_dpp_proto_auth_conf_invalid_status(dev, apdev):
  2428. """DPP protocol testing - invalid Status in Auth Conf"""
  2429. run_dpp_proto_auth_conf_missing(dev, 75, "Authentication failed")
  2430. def test_dpp_proto_auth_conf_no_r_bootstrap_key(dev, apdev):
  2431. """DPP protocol testing - no R-bootstrap key in Auth Conf"""
  2432. run_dpp_proto_auth_conf_missing(dev, 26, "Missing or invalid required Responder Bootstrapping Key Hash attribute")
  2433. def test_dpp_proto_auth_conf_invalid_r_bootstrap_key(dev, apdev):
  2434. """DPP protocol testing - invalid R-bootstrap key in Auth Conf"""
  2435. run_dpp_proto_auth_conf_missing(dev, 72, "Responder Bootstrapping Key Hash mismatch")
  2436. def test_dpp_proto_auth_conf_no_i_bootstrap_key(dev, apdev):
  2437. """DPP protocol testing - no I-bootstrap key in Auth Conf"""
  2438. run_dpp_proto_auth_conf_missing(dev, 27, "Missing Initiator Bootstrapping Key Hash attribute")
  2439. def test_dpp_proto_auth_conf_invalid_i_bootstrap_key(dev, apdev):
  2440. """DPP protocol testing - invalid I-bootstrap key in Auth Conf"""
  2441. run_dpp_proto_auth_conf_missing(dev, 73, "Initiator Bootstrapping Key Hash mismatch")
  2442. def test_dpp_proto_auth_conf_no_i_auth(dev, apdev):
  2443. """DPP protocol testing - no I-Auth in Auth Conf"""
  2444. run_dpp_proto_auth_conf_missing(dev, 28, "Missing or invalid Initiator Authenticating Tag")
  2445. def test_dpp_proto_auth_conf_no_wrapped_data(dev, apdev):
  2446. """DPP protocol testing - no Wrapped Data in Auth Conf"""
  2447. run_dpp_proto_auth_conf_missing(dev, 29, "Missing or invalid required Wrapped Data attribute")
  2448. def test_dpp_proto_auth_conf_i_auth_mismatch(dev, apdev):
  2449. """DPP protocol testing - I-auth mismatch in Auth Conf"""
  2450. run_dpp_proto_init(dev, 1, 33, mutual=True)
  2451. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2452. if ev is None:
  2453. raise Exception("DPP failure not seen")
  2454. if "Mismatching Initiator Authenticating Tag" not in ev:
  2455. raise Excception("Unexpected failure: " + ev)
  2456. def test_dpp_proto_auth_conf_replaced_by_resp(dev, apdev):
  2457. """DPP protocol testing - Auth Conf replaced by Resp"""
  2458. run_dpp_proto_init(dev, 1, 65, mutual=True)
  2459. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2460. if ev is None:
  2461. raise Exception("DPP failure not seen")
  2462. if "Unexpected Authentication Response" not in ev:
  2463. raise Excception("Unexpected failure: " + ev)
  2464. def run_dpp_proto_conf_req_missing(dev, test, reason):
  2465. run_dpp_proto_init(dev, 0, test)
  2466. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  2467. if ev is None:
  2468. raise Exception("DPP failure not seen")
  2469. if reason not in ev:
  2470. raise Exception("Unexpected failure: " + ev)
  2471. def test_dpp_proto_conf_req_no_e_nonce(dev, apdev):
  2472. """DPP protocol testing - no E-nonce in Conf Req"""
  2473. run_dpp_proto_conf_req_missing(dev, 51,
  2474. "Missing or invalid Enrollee Nonce attribute")
  2475. def test_dpp_proto_conf_req_no_config_attr_obj(dev, apdev):
  2476. """DPP protocol testing - no Config Attr Obj in Conf Req"""
  2477. run_dpp_proto_conf_req_missing(dev, 52,
  2478. "Missing or invalid Config Attributes attribute")
  2479. def test_dpp_proto_conf_req_invalid_config_attr_obj(dev, apdev):
  2480. """DPP protocol testing - invalid Config Attr Obj in Conf Req"""
  2481. run_dpp_proto_conf_req_missing(dev, 76,
  2482. "Unsupported wi-fi_tech")
  2483. def test_dpp_proto_conf_req_no_wrapped_data(dev, apdev):
  2484. """DPP protocol testing - no Wrapped Data in Conf Req"""
  2485. run_dpp_proto_conf_req_missing(dev, 53,
  2486. "Missing or invalid required Wrapped Data attribute")
  2487. def run_dpp_proto_conf_resp_missing(dev, test, reason):
  2488. run_dpp_proto_init(dev, 1, test)
  2489. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2490. if ev is None:
  2491. raise Exception("DPP failure not seen")
  2492. if reason not in ev:
  2493. raise Exception("Unexpected failure: " + ev)
  2494. def test_dpp_proto_conf_resp_no_e_nonce(dev, apdev):
  2495. """DPP protocol testing - no E-nonce in Conf Resp"""
  2496. run_dpp_proto_conf_resp_missing(dev, 54,
  2497. "Missing or invalid Enrollee Nonce attribute")
  2498. def test_dpp_proto_conf_resp_no_config_obj(dev, apdev):
  2499. """DPP protocol testing - no Config Object in Conf Resp"""
  2500. run_dpp_proto_conf_resp_missing(dev, 55,
  2501. "Missing required Configuration Object attribute")
  2502. def test_dpp_proto_conf_resp_no_status(dev, apdev):
  2503. """DPP protocol testing - no Status in Conf Resp"""
  2504. run_dpp_proto_conf_resp_missing(dev, 56,
  2505. "Missing or invalid required DPP Status attribute")
  2506. def test_dpp_proto_conf_resp_no_wrapped_data(dev, apdev):
  2507. """DPP protocol testing - no Wrapped Data in Conf Resp"""
  2508. run_dpp_proto_conf_resp_missing(dev, 57,
  2509. "Missing or invalid required Wrapped Data attribute")
  2510. def test_dpp_proto_conf_resp_invalid_status(dev, apdev):
  2511. """DPP protocol testing - invalid Status in Conf Resp"""
  2512. run_dpp_proto_conf_resp_missing(dev, 58,
  2513. "Configurator rejected configuration")
  2514. def test_dpp_proto_conf_resp_e_nonce_mismatch(dev, apdev):
  2515. """DPP protocol testing - E-nonce mismatch in Conf Resp"""
  2516. run_dpp_proto_conf_resp_missing(dev, 59,
  2517. "Enrollee Nonce mismatch")
  2518. def run_dpp_proto_init_pkex(dev, test_dev, test):
  2519. check_dpp_capab(dev[0])
  2520. check_dpp_capab(dev[1])
  2521. dev[test_dev].set("dpp_test", str(test))
  2522. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  2523. res = dev[0].request(cmd)
  2524. if "FAIL" in res:
  2525. raise Exception("Failed to generate bootstrapping info")
  2526. id0 = int(res)
  2527. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  2528. res = dev[1].request(cmd)
  2529. if "FAIL" in res:
  2530. raise Exception("Failed to generate bootstrapping info")
  2531. id1 = int(res)
  2532. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  2533. res = dev[0].request(cmd)
  2534. if "FAIL" in res:
  2535. raise Exception("Failed to set PKEX data (responder)")
  2536. cmd = "DPP_LISTEN 2437"
  2537. if "OK" not in dev[0].request(cmd):
  2538. raise Exception("Failed to start listen operation")
  2539. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 code=secret" % id1
  2540. res = dev[1].request(cmd)
  2541. if "FAIL" in res:
  2542. raise Exception("Failed to set PKEX data (initiator)")
  2543. def test_dpp_proto_after_wrapped_data_pkex_cr_req(dev, apdev):
  2544. """DPP protocol testing - attribute after Wrapped Data in PKEX CR Req"""
  2545. run_dpp_proto_init_pkex(dev, 1, 4)
  2546. ev = dev[0].wait_event(["DPP-RX"], timeout=5)
  2547. if ev is None or "type=7" not in ev:
  2548. raise Exception("PKEX Exchange Request not seen")
  2549. ev = dev[0].wait_event(["DPP-RX"], timeout=5)
  2550. if ev is None or "type=9" not in ev:
  2551. raise Exception("PKEX Commit-Reveal Request not seen")
  2552. if "ignore=invalid-attributes" not in ev:
  2553. raise Exception("Unexpected RX info: " + ev)
  2554. def test_dpp_proto_after_wrapped_data_pkex_cr_resp(dev, apdev):
  2555. """DPP protocol testing - attribute after Wrapped Data in PKEX CR Resp"""
  2556. run_dpp_proto_init_pkex(dev, 0, 5)
  2557. ev = dev[1].wait_event(["DPP-RX"], timeout=5)
  2558. if ev is None or "type=8" not in ev:
  2559. raise Exception("PKEX Exchange Response not seen")
  2560. ev = dev[1].wait_event(["DPP-RX"], timeout=5)
  2561. if ev is None or "type=10" not in ev:
  2562. raise Exception("PKEX Commit-Reveal Response not seen")
  2563. if "ignore=invalid-attributes" not in ev:
  2564. raise Exception("Unexpected RX info: " + ev)
  2565. def run_dpp_proto_pkex_req_missing(dev, test, reason):
  2566. run_dpp_proto_init_pkex(dev, 1, test)
  2567. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2568. if ev is None:
  2569. raise Exception("DPP failure not seen")
  2570. if reason not in ev:
  2571. raise Exception("Unexpected failure: " + ev)
  2572. def run_dpp_proto_pkex_resp_missing(dev, test, reason):
  2573. run_dpp_proto_init_pkex(dev, 0, test)
  2574. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  2575. if ev is None:
  2576. raise Exception("DPP failure not seen")
  2577. if reason not in ev:
  2578. raise Exception("Unexpected failure: " + ev)
  2579. def test_dpp_proto_pkex_exchange_req_no_finite_cyclic_group(dev, apdev):
  2580. """DPP protocol testing - no Finite Cyclic Group in PKEX Exchange Request"""
  2581. run_dpp_proto_pkex_req_missing(dev, 34,
  2582. "Missing or invalid Finite Cyclic Group attribute")
  2583. def test_dpp_proto_pkex_exchange_req_no_encrypted_key(dev, apdev):
  2584. """DPP protocol testing - no Encrypted Key in PKEX Exchange Request"""
  2585. run_dpp_proto_pkex_req_missing(dev, 35,
  2586. "Missing Encrypted Key attribute")
  2587. def test_dpp_proto_pkex_exchange_resp_no_status(dev, apdev):
  2588. """DPP protocol testing - no Status in PKEX Exchange Response"""
  2589. run_dpp_proto_pkex_resp_missing(dev, 36, "No DPP Status attribute")
  2590. def test_dpp_proto_pkex_exchange_resp_no_encrypted_key(dev, apdev):
  2591. """DPP protocol testing - no Encrypted Key in PKEX Exchange Response"""
  2592. run_dpp_proto_pkex_resp_missing(dev, 37, "Missing Encrypted Key attribute")
  2593. def test_dpp_proto_pkex_cr_req_no_bootstrap_key(dev, apdev):
  2594. """DPP protocol testing - no Bootstrap Key in PKEX Commit-Reveal Request"""
  2595. run_dpp_proto_pkex_req_missing(dev, 38,
  2596. "No valid peer bootstrapping key found")
  2597. def test_dpp_proto_pkex_cr_req_no_i_auth_tag(dev, apdev):
  2598. """DPP protocol testing - no I-Auth Tag in PKEX Commit-Reveal Request"""
  2599. run_dpp_proto_pkex_req_missing(dev, 39, "No valid u (I-Auth tag) found")
  2600. def test_dpp_proto_pkex_cr_req_no_wrapped_data(dev, apdev):
  2601. """DPP protocol testing - no Wrapped Data in PKEX Commit-Reveal Request"""
  2602. run_dpp_proto_pkex_req_missing(dev, 40, "Missing or invalid required Wrapped Data attribute")
  2603. def test_dpp_proto_pkex_cr_resp_no_bootstrap_key(dev, apdev):
  2604. """DPP protocol testing - no Bootstrap Key in PKEX Commit-Reveal Response"""
  2605. run_dpp_proto_pkex_resp_missing(dev, 41,
  2606. "No valid peer bootstrapping key found")
  2607. def test_dpp_proto_pkex_cr_resp_no_r_auth_tag(dev, apdev):
  2608. """DPP protocol testing - no R-Auth Tag in PKEX Commit-Reveal Response"""
  2609. run_dpp_proto_pkex_resp_missing(dev, 42, "No valid v (R-Auth tag) found")
  2610. def test_dpp_proto_pkex_cr_resp_no_wrapped_data(dev, apdev):
  2611. """DPP protocol testing - no Wrapped Data in PKEX Commit-Reveal Response"""
  2612. run_dpp_proto_pkex_resp_missing(dev, 43, "Missing or invalid required Wrapped Data attribute")
  2613. def test_dpp_proto_pkex_exchange_req_invalid_encrypted_key(dev, apdev):
  2614. """DPP protocol testing - invalid Encrypted Key in PKEX Exchange Request"""
  2615. run_dpp_proto_pkex_req_missing(dev, 44,
  2616. "Invalid Encrypted Key value")
  2617. def test_dpp_proto_pkex_exchange_resp_invalid_encrypted_key(dev, apdev):
  2618. """DPP protocol testing - invalid Encrypted Key in PKEX Exchange Response"""
  2619. run_dpp_proto_pkex_resp_missing(dev, 45,
  2620. "Invalid Encrypted Key value")
  2621. def test_dpp_proto_pkex_exchange_resp_invalid_status(dev, apdev):
  2622. """DPP protocol testing - invalid Status in PKEX Exchange Response"""
  2623. run_dpp_proto_pkex_resp_missing(dev, 46,
  2624. "PKEX failed (peer indicated failure)")
  2625. def test_dpp_proto_pkex_cr_req_invalid_bootstrap_key(dev, apdev):
  2626. """DPP protocol testing - invalid Bootstrap Key in PKEX Commit-Reveal Request"""
  2627. run_dpp_proto_pkex_req_missing(dev, 47,
  2628. "Peer bootstrapping key is invalid")
  2629. def test_dpp_proto_pkex_cr_resp_invalid_bootstrap_key(dev, apdev):
  2630. """DPP protocol testing - invalid Bootstrap Key in PKEX Commit-Reveal Response"""
  2631. run_dpp_proto_pkex_resp_missing(dev, 48,
  2632. "Peer bootstrapping key is invalid")
  2633. def test_dpp_proto_pkex_cr_req_i_auth_tag_mismatch(dev, apdev):
  2634. """DPP protocol testing - I-auth tag mismatch in PKEX Commit-Reveal Request"""
  2635. run_dpp_proto_pkex_req_missing(dev, 49, "No valid u (I-Auth tag) found")
  2636. def test_dpp_proto_pkex_cr_resp_r_auth_tag_mismatch(dev, apdev):
  2637. """DPP protocol testing - R-auth tag mismatch in PKEX Commit-Reveal Response"""
  2638. run_dpp_proto_pkex_resp_missing(dev, 50, "No valid v (R-Auth tag) found")
  2639. def test_dpp_proto_network_introduction(dev, apdev):
  2640. """DPP protocol testing - network introduction"""
  2641. check_dpp_capab(dev[0])
  2642. check_dpp_capab(dev[1])
  2643. csign = "3059301306072a8648ce3d020106082a8648ce3d03010703420004d02e5bd81a120762b5f0f2994777f5d40297238a6c294fd575cdf35fabec44c050a6421c401d98d659fd2ed13c961cc8287944dd3202f516977800d3ab2f39ee"
  2644. ap_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJzOEFrYjg5bTV4UGhoYk5UbTVmVVo0eVBzNU5VMkdxYXNRY3hXUWhtQVFRIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6ImFwIn1dLCJuZXRBY2Nlc3NLZXkiOnsia3R5IjoiRUMiLCJjcnYiOiJQLTI1NiIsIngiOiIwOHF4TlNYRzRWemdCV3BjVUdNSmc1czNvbElOVFJsRVQ1aERpNkRKY3ZjIiwieSI6IlVhaGFYQXpKRVpRQk1YaHRUQnlZZVlrOWtJYjk5UDA3UV9NcW9TVVZTVEkifX0.a5_nfMVr7Qe1SW0ZL3u6oQRm5NUCYUSfixDAJOUFN3XUfECBZ6E8fm8xjeSfdOytgRidTz0CTlIRjzPQo82dmQ"
  2645. ap_netaccesskey = "30770201010420f6531d17f29dfab655b7c9e923478d5a345164c489aadd44a3519c3e9dcc792da00a06082a8648ce3d030107a14403420004d3cab13525c6e15ce0056a5c506309839b37a2520d4d19444f98438ba0c972f751a85a5c0cc911940131786d4c1c9879893d9086fdf4fd3b43f32aa125154932"
  2646. sta_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJzOEFrYjg5bTV4UGhoYk5UbTVmVVo0eVBzNU5VMkdxYXNRY3hXUWhtQVFRIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6InN0YSJ9XSwibmV0QWNjZXNzS2V5Ijp7Imt0eSI6IkVDIiwiY3J2IjoiUC0yNTYiLCJ4IjoiZWMzR3NqQ3lQMzVBUUZOQUJJdEltQnN4WXVyMGJZX1dES1lfSE9zUGdjNCIsInkiOiJTRS1HVllkdWVnTFhLMU1TQXZNMEx2QWdLREpTNWoyQVhCbE9PMTdUSTRBIn19.PDK9zsGlK-e1pEOmNxVeJfCS8pNeay6ckIS1TXCQsR64AR-9wFPCNVjqOxWvVKltehyMFqVAtOcv0IrjtMJFqQ"
  2647. sta_netaccesskey = "30770201010420bc33380c26fd2168b69cd8242ed1df07ba89aa4813f8d4e8523de6ca3f8dd28ba00a06082a8648ce3d030107a1440342000479cdc6b230b23f7e40405340048b48981b3162eaf46d8fd60ca63f1ceb0f81ce484f8655876e7a02d72b531202f3342ef020283252e63d805c194e3b5ed32380"
  2648. params = { "ssid": "dpp",
  2649. "wpa": "2",
  2650. "wpa_key_mgmt": "DPP",
  2651. "ieee80211w": "2",
  2652. "rsn_pairwise": "CCMP",
  2653. "dpp_connector": ap_connector,
  2654. "dpp_csign": csign,
  2655. "dpp_netaccesskey": ap_netaccesskey }
  2656. try:
  2657. hapd = hostapd.add_ap(apdev[0], params)
  2658. except:
  2659. raise HwsimSkip("DPP not supported")
  2660. for test in [ 60, 61, 80 ]:
  2661. dev[0].set("dpp_test", str(test))
  2662. dev[0].connect("dpp", key_mgmt="DPP", scan_freq="2412", ieee80211w="2",
  2663. dpp_csign=csign, dpp_connector=sta_connector,
  2664. dpp_netaccesskey=sta_netaccesskey, wait_connect=False)
  2665. ev = dev[0].wait_event(["DPP-TX"], timeout=10)
  2666. if ev is None or "type=5" not in ev:
  2667. raise Exception("Peer Discovery Request TX not reported")
  2668. ev = dev[0].wait_event(["DPP-TX-STATUS"], timeout=2)
  2669. if ev is None or "result=SUCCESS" not in ev:
  2670. raise Exception("Peer Discovery Request TX status not reported")
  2671. ev = hapd.wait_event(["DPP-RX"], timeout=10)
  2672. if ev is None or "type=5" not in ev:
  2673. raise Exception("Peer Discovery Request RX not reported")
  2674. if test == 80:
  2675. ev = dev[0].wait_event(["DPP-INTRO"], timeout=10)
  2676. if ev is None:
  2677. raise Exception("DPP-INTRO not reported for test 80")
  2678. if "status=7" not in ev:
  2679. raise Exception("Unexpected result in test 80: " + ev)
  2680. dev[0].request("REMOVE_NETWORK all")
  2681. dev[0].dump_monitor()
  2682. hapd.dump_monitor()
  2683. dev[0].set("dpp_test", "0")
  2684. for test in [ 62, 63, 64, 77, 78, 79 ]:
  2685. hapd.set("dpp_test", str(test))
  2686. dev[0].connect("dpp", key_mgmt="DPP", scan_freq="2412", ieee80211w="2",
  2687. dpp_csign=csign, dpp_connector=sta_connector,
  2688. dpp_netaccesskey=sta_netaccesskey, wait_connect=False)
  2689. ev = dev[0].wait_event(["DPP-INTRO"], timeout=10)
  2690. if ev is None:
  2691. raise Exception("Peer introduction result not reported (test %d)" % test)
  2692. if test == 77:
  2693. if "fail=transaction_id_mismatch" not in ev:
  2694. raise Exception("Connector validation failure not reported")
  2695. elif test == 78:
  2696. if "status=254" not in ev:
  2697. raise Exception("Invalid status value not reported")
  2698. elif test == 79:
  2699. if "fail=peer_connector_validation_failed" not in ev:
  2700. raise Exception("Connector validation failure not reported")
  2701. elif "status=" in ev:
  2702. raise Exception("Unexpected peer introduction result (test %d): " % test + ev)
  2703. dev[0].request("REMOVE_NETWORK all")
  2704. dev[0].dump_monitor()
  2705. hapd.dump_monitor()
  2706. hapd.set("dpp_test", "0")
  2707. dev[0].connect("dpp", key_mgmt="DPP", scan_freq="2412", ieee80211w="2",
  2708. dpp_csign=csign, dpp_connector=sta_connector,
  2709. dpp_netaccesskey=sta_netaccesskey)
  2710. def test_dpp_qr_code_no_chan_list_unicast(dev, apdev):
  2711. """DPP QR Code and no channel list (unicast)"""
  2712. run_dpp_qr_code_chan_list(dev, apdev, True, 2417, None)
  2713. def test_dpp_qr_code_chan_list_unicast(dev, apdev):
  2714. """DPP QR Code and 2.4 GHz channels (unicast)"""
  2715. run_dpp_qr_code_chan_list(dev, apdev, True, 2417,
  2716. "81/1,81/2,81/3,81/4,81/5,81/6,81/7,81/8,81/9,81/10,81/11,81/12,81/13")
  2717. def test_dpp_qr_code_chan_list_no_peer_unicast(dev, apdev):
  2718. """DPP QR Code and channel list and no peer (unicast)"""
  2719. run_dpp_qr_code_chan_list(dev, apdev, True, 2417, "81/1,81/6,81/11",
  2720. no_wait=True)
  2721. ev = dev[1].wait_event(["DPP-AUTH-INIT-FAILED"], timeout=5)
  2722. if ev is None:
  2723. raise Exception("Initiation failure not reported")
  2724. def test_dpp_qr_code_no_chan_list_broadcast(dev, apdev):
  2725. """DPP QR Code and no channel list (broadcast)"""
  2726. run_dpp_qr_code_chan_list(dev, apdev, False, 2412, None)
  2727. def test_dpp_qr_code_chan_list_broadcast(dev, apdev):
  2728. """DPP QR Code and some 2.4 GHz channels (broadcast)"""
  2729. run_dpp_qr_code_chan_list(dev, apdev, False, 2412, "81/1,81/6,81/11",
  2730. timeout=10)
  2731. def run_dpp_qr_code_chan_list(dev, apdev, unicast, listen_freq, chanlist,
  2732. no_wait=False, timeout=5):
  2733. check_dpp_capab(dev[0])
  2734. check_dpp_capab(dev[1])
  2735. dev[1].set("dpp_init_max_tries", "3")
  2736. dev[1].set("dpp_init_retry_time", "100")
  2737. dev[1].set("dpp_resp_wait_time", "1000")
  2738. logger.info("dev0 displays QR Code")
  2739. cmd = "DPP_BOOTSTRAP_GEN type=qrcode"
  2740. if chanlist:
  2741. cmd += " chan=" + chanlist
  2742. if unicast:
  2743. addr = dev[0].own_addr().replace(':', '')
  2744. cmd += " mac=" + addr
  2745. res = dev[0].request(cmd)
  2746. if "FAIL" in res:
  2747. raise Exception("Failed to generate bootstrapping info")
  2748. id0 = int(res)
  2749. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  2750. logger.info("dev1 scans QR Code")
  2751. res = dev[1].request("DPP_QR_CODE " + uri0)
  2752. if "FAIL" in res:
  2753. raise Exception("Failed to parse QR Code URI")
  2754. id1 = int(res)
  2755. logger.info("dev1 initiates DPP Authentication")
  2756. cmd = "DPP_LISTEN %d" % listen_freq
  2757. if "OK" not in dev[0].request(cmd):
  2758. raise Exception("Failed to start listen operation")
  2759. cmd = "DPP_AUTH_INIT peer=%d" % id1
  2760. if "OK" not in dev[1].request(cmd):
  2761. raise Exception("Failed to initiate DPP Authentication")
  2762. if no_wait:
  2763. return
  2764. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=timeout)
  2765. if ev is None:
  2766. raise Exception("DPP authentication did not succeed (Responder)")
  2767. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2768. if ev is None:
  2769. raise Exception("DPP authentication did not succeed (Initiator)")
  2770. ev = dev[0].wait_event(["DPP-CONF-RECEIVED", "DPP-CONF-FAILED"], timeout=5)
  2771. if ev is None:
  2772. raise Exception("DPP configuration not completed (Enrollee)")
  2773. dev[0].request("DPP_STOP_LISTEN")
  2774. dev[0].dump_monitor()
  2775. dev[1].dump_monitor()
  2776. def test_dpp_qr_code_chan_list_no_match(dev, apdev):
  2777. """DPP QR Code and no matching supported channel"""
  2778. check_dpp_capab(dev[0])
  2779. check_dpp_capab(dev[1])
  2780. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=123/123"
  2781. res = dev[0].request(cmd)
  2782. if "FAIL" in res:
  2783. raise Exception("Failed to generate bootstrapping info")
  2784. id0 = int(res)
  2785. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  2786. res = dev[1].request("DPP_QR_CODE " + uri0)
  2787. if "FAIL" in res:
  2788. raise Exception("Failed to parse QR Code URI")
  2789. id1 = int(res)
  2790. cmd = "DPP_AUTH_INIT peer=%d" % id1
  2791. if "FAIL" not in dev[1].request(cmd):
  2792. raise Exception("DPP Authentication started unexpectedly")