test_dpp.py 180 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314
  1. # Test cases for Device Provisioning Protocol (DPP)
  2. # Copyright (c) 2017, Qualcomm Atheros, Inc.
  3. # Copyright (c) 2018, The Linux Foundation
  4. #
  5. # This software may be distributed under the terms of the BSD license.
  6. # See README for more details.
  7. import logging
  8. logger = logging.getLogger()
  9. import subprocess
  10. import time
  11. import hostapd
  12. import hwsim_utils
  13. from utils import HwsimSkip, alloc_fail, fail_test, wait_fail_trigger
  14. from wpasupplicant import WpaSupplicant
  15. def check_dpp_capab(dev, brainpool=False):
  16. if "UNKNOWN COMMAND" in dev.request("DPP_BOOTSTRAP_GET_URI 0"):
  17. raise HwsimSkip("DPP not supported")
  18. if brainpool:
  19. tls = dev.request("GET tls_library")
  20. if not tls.startswith("OpenSSL") or "run=BoringSSL" in tls:
  21. raise HwsimSkip("Crypto library does not support Brainpool curves: " + tls)
  22. def test_dpp_qr_code_parsing(dev, apdev):
  23. """DPP QR Code parsing"""
  24. check_dpp_capab(dev[0])
  25. id = []
  26. tests = [ "DPP:C:81/1,115/36;K:MDkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDIgADM2206avxHJaHXgLMkq/24e0rsrfMP9K1Tm8gx+ovP0I=;;",
  27. "DPP:I:SN=4774LH2b4044;M:010203040506;K:MDkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDIgADURzxmttZoIRIPWGoQMV00XHWCAQIhXruVWOz0NjlkIA=;;",
  28. "DPP:I:;M:010203040506;K:MDkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDIgADURzxmttZoIRIPWGoQMV00XHWCAQIhXruVWOz0NjlkIA=;;" ]
  29. for uri in tests:
  30. res = dev[0].request("DPP_QR_CODE " + uri)
  31. if "FAIL" in res:
  32. raise Exception("Failed to parse QR Code")
  33. id.append(int(res))
  34. uri2 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id[-1])
  35. if uri != uri2:
  36. raise Exception("Returned URI does not match")
  37. tests = [ "foo",
  38. "DPP:",
  39. "DPP:;;",
  40. "DPP:C:1/2;M:;K;;",
  41. "DPP:I:;M:01020304050;K:MDkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDIgADURzxmttZoIRIPWGoQMV00XHWCAQIhXruVWOz0NjlkIA=;;" ]
  42. for t in tests:
  43. res = dev[0].request("DPP_QR_CODE " + t)
  44. if "FAIL" not in res:
  45. raise Exception("Accepted invalid QR Code: " + t)
  46. logger.info("ID: " + str(id))
  47. if id[0] == id[1] or id[0] == id[2] or id[1] == id[2]:
  48. raise Exception("Duplicate ID returned")
  49. if "FAIL" not in dev[0].request("DPP_BOOTSTRAP_REMOVE 12345678"):
  50. raise Exception("DPP_BOOTSTRAP_REMOVE accepted unexpectedly")
  51. if "OK" not in dev[0].request("DPP_BOOTSTRAP_REMOVE %d" % id[1]):
  52. raise Exception("DPP_BOOTSTRAP_REMOVE failed")
  53. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode")
  54. if "FAIL" in res:
  55. raise Exception("Failed to generate bootstrapping info")
  56. uri = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % int(res))
  57. logger.info("Generated URI: " + uri)
  58. res = dev[0].request("DPP_QR_CODE " + uri)
  59. if "FAIL" in res:
  60. raise Exception("Failed to parse self-generated QR Code URI")
  61. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1,115/36 mac=010203040506 info=foo")
  62. if "FAIL" in res:
  63. raise Exception("Failed to generate bootstrapping info")
  64. uri = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % int(res))
  65. logger.info("Generated URI: " + uri)
  66. res = dev[0].request("DPP_QR_CODE " + uri)
  67. if "FAIL" in res:
  68. raise Exception("Failed to parse self-generated QR Code URI")
  69. dpp_key_p256 ="30570201010420777fc55dc51e967c10ec051b91d860b5f1e6c934e48d5daffef98d032c64b170a00a06082a8648ce3d030107a124032200020c804188c7f85beb6e91070d2b3e5e39b90ca77b4d3c5251bc1844d6ca29dcad"
  70. dpp_key_p384 = "307402010104302f56fdd83b5345cacb630eb7c22fa5ad5daba37307c95191e2a75756d137003bd8b32dbcb00eb5650c1eb499ecfcaec0a00706052b81040022a13403320003615ec2141b5b77aebb6523f8a012755f9a34405a8398d2ceeeebca7f5ce868bf55056cba4c4ec62fad3ed26dd29e0f23"
  71. dpp_key_p521 = "308198020101044200c8010d5357204c252551aaf4e210343111e503fd1dc615b257058997c49b6b643c975226e93be8181cca3d83a7072defd161dfbdf433c19abe1f2ad51867a05761a00706052b81040023a1460344000301cdf3608b1305fe34a1f976095dcf001182b9973354efe156291a66830292f9babd8f412ad462958663e7a75d1d0610abdfc3dd95d40669f7ab3bc001668cfb3b7c"
  72. dpp_key_bp256 = "3058020101042057133a676fb60bf2a3e6797e19833c7b0f89dc192ab99ab5fa377ae23a157765a00b06092b2403030208010107a12403220002945d9bf7ce30c9c1ac0ff21ca62b984d5bb80ff69d2be8c9716ab39a10d2caf0"
  73. dpp_key_bp384 = "307802010104304902df9f3033a9b7128554c0851dc7127c3573eed150671dae74c0013e9896a9b1c22b6f7d43d8a2ebb7cd474dc55039a00b06092b240303020801010ba13403320003623cb5e68787f351faababf3425161571560add2e6f9a306fcbffb507735bf955bb46dd20ba246b0d5cadce73e5bd6a6"
  74. dpp_key_bp512 = "30819802010104405803494226eb7e50bf0e90633f37e7e35d33f5fa502165eeba721d927f9f846caf12e925701d18e123abaaaf4a7edb4fc4de21ce18bc10c4d12e8b3439f74e40a00b06092b240303020801010da144034200033b086ccd47486522d35dc16fbb2229642c2e9e87897d45abbf21f9fb52acb5a6272b31d1b227c3e53720769cc16b4cb181b26cd0d35fe463218aaedf3b6ec00a"
  75. def test_dpp_qr_code_curves(dev, apdev):
  76. """DPP QR Code and supported curves"""
  77. check_dpp_capab(dev[0])
  78. tests = [ ("prime256v1", dpp_key_p256),
  79. ("secp384r1", dpp_key_p384),
  80. ("secp521r1", dpp_key_p521) ]
  81. for curve, hex in tests:
  82. id = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode key=" + hex)
  83. if "FAIL" in id:
  84. raise Exception("Failed to set key for " + curve)
  85. info = dev[0].request("DPP_BOOTSTRAP_INFO " + id)
  86. if "FAIL" in info:
  87. raise Exception("Failed to get info for " + curve)
  88. if "curve=" + curve not in info:
  89. raise Exception("Curve mismatch for " + curve)
  90. def test_dpp_qr_code_curves_brainpool(dev, apdev):
  91. """DPP QR Code and supported Brainpool curves"""
  92. check_dpp_capab(dev[0], brainpool=True)
  93. tests = [ ("brainpoolP256r1", dpp_key_bp256),
  94. ("brainpoolP384r1", dpp_key_bp384),
  95. ("brainpoolP512r1", dpp_key_bp512) ]
  96. for curve, hex in tests:
  97. id = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode key=" + hex)
  98. if "FAIL" in id:
  99. raise Exception("Failed to set key for " + curve)
  100. info = dev[0].request("DPP_BOOTSTRAP_INFO " + id)
  101. if "FAIL" in info:
  102. raise Exception("Failed to get info for " + curve)
  103. if "curve=" + curve not in info:
  104. raise Exception("Curve mismatch for " + curve)
  105. def test_dpp_qr_code_curve_select(dev, apdev):
  106. """DPP QR Code and curve selection"""
  107. check_dpp_capab(dev[0], brainpool=True)
  108. check_dpp_capab(dev[1], brainpool=True)
  109. addr = dev[0].own_addr().replace(':', '')
  110. bi = []
  111. for key in [ dpp_key_p256, dpp_key_p384, dpp_key_p521,
  112. dpp_key_bp256, dpp_key_bp384, dpp_key_bp512 ]:
  113. id = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr + " key=" + key)
  114. if "FAIL" in id:
  115. raise Exception("Failed to set key for " + curve)
  116. info = dev[0].request("DPP_BOOTSTRAP_INFO " + id)
  117. for i in info.splitlines():
  118. if '=' in i:
  119. name, val = i.split('=')
  120. if name == "curve":
  121. curve = val
  122. break
  123. uri = dev[0].request("DPP_BOOTSTRAP_GET_URI " + id)
  124. bi.append((curve, uri))
  125. for curve, uri in bi:
  126. logger.info("Curve: " + curve)
  127. logger.info("URI: " + uri)
  128. if "OK" not in dev[0].request("DPP_LISTEN 2412"):
  129. raise Exception("Failed to start listen operation")
  130. res = dev[1].request("DPP_QR_CODE " + uri)
  131. if "FAIL" in res:
  132. raise Exception("Failed to parse QR Code URI")
  133. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=" + res):
  134. raise Exception("Failed to initiate DPP Authentication")
  135. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  136. if ev is None:
  137. raise Exception("DPP authentication did not succeed (Responder)")
  138. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  139. if ev is None:
  140. raise Exception("DPP authentication did not succeed (Initiator)")
  141. ev = dev[0].wait_event(["DPP-CONF-FAILED"], timeout=2)
  142. if ev is None:
  143. raise Exception("DPP configuration result not seen (Enrollee)")
  144. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=2)
  145. if ev is None:
  146. raise Exception("DPP configuration result not seen (Responder)")
  147. dev[0].request("DPP_STOP_LISTEN")
  148. dev[1].request("DPP_STOP_LISTEN")
  149. dev[0].dump_monitor()
  150. dev[1].dump_monitor()
  151. def test_dpp_qr_code_auth_broadcast(dev, apdev):
  152. """DPP QR Code and authentication exchange (broadcast)"""
  153. check_dpp_capab(dev[0])
  154. check_dpp_capab(dev[1])
  155. logger.info("dev0 displays QR Code")
  156. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1")
  157. if "FAIL" in res:
  158. raise Exception("Failed to generate bootstrapping info")
  159. id0 = int(res)
  160. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  161. logger.info("dev1 scans QR Code")
  162. res = dev[1].request("DPP_QR_CODE " + uri0)
  163. if "FAIL" in res:
  164. raise Exception("Failed to parse QR Code URI")
  165. id1 = int(res)
  166. logger.info("dev1 initiates DPP Authentication")
  167. if "OK" not in dev[0].request("DPP_LISTEN 2412"):
  168. raise Exception("Failed to start listen operation")
  169. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d" % id1):
  170. raise Exception("Failed to initiate DPP Authentication")
  171. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  172. if ev is None:
  173. raise Exception("DPP authentication did not succeed (Responder)")
  174. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  175. if ev is None:
  176. raise Exception("DPP authentication did not succeed (Initiator)")
  177. dev[0].request("DPP_STOP_LISTEN")
  178. def test_dpp_qr_code_auth_unicast(dev, apdev):
  179. """DPP QR Code and authentication exchange (unicast)"""
  180. run_dpp_qr_code_auth_unicast(dev, apdev, None)
  181. def test_dpp_qr_code_auth_unicast_ap_enrollee(dev, apdev):
  182. """DPP QR Code and authentication exchange (AP enrollee)"""
  183. run_dpp_qr_code_auth_unicast(dev, apdev, None, netrole="ap")
  184. def test_dpp_qr_code_curve_prime256v1(dev, apdev):
  185. """DPP QR Code and curve prime256v1"""
  186. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1")
  187. def test_dpp_qr_code_curve_secp384r1(dev, apdev):
  188. """DPP QR Code and curve secp384r1"""
  189. run_dpp_qr_code_auth_unicast(dev, apdev, "secp384r1")
  190. def test_dpp_qr_code_curve_secp521r1(dev, apdev):
  191. """DPP QR Code and curve secp521r1"""
  192. run_dpp_qr_code_auth_unicast(dev, apdev, "secp521r1")
  193. def test_dpp_qr_code_curve_brainpoolP256r1(dev, apdev):
  194. """DPP QR Code and curve brainpoolP256r1"""
  195. run_dpp_qr_code_auth_unicast(dev, apdev, "brainpoolP256r1")
  196. def test_dpp_qr_code_curve_brainpoolP384r1(dev, apdev):
  197. """DPP QR Code and curve brainpoolP384r1"""
  198. run_dpp_qr_code_auth_unicast(dev, apdev, "brainpoolP384r1")
  199. def test_dpp_qr_code_curve_brainpoolP512r1(dev, apdev):
  200. """DPP QR Code and curve brainpoolP512r1"""
  201. run_dpp_qr_code_auth_unicast(dev, apdev, "brainpoolP512r1")
  202. def test_dpp_qr_code_set_key(dev, apdev):
  203. """DPP QR Code and fixed bootstrapping key"""
  204. run_dpp_qr_code_auth_unicast(dev, apdev, None, key="30770201010420e5143ac74682cc6869a830e8f5301a5fa569130ac329b1d7dd6f2a7495dbcbe1a00a06082a8648ce3d030107a144034200045e13e167c33dbc7d85541e5509600aa8139bbb3e39e25898992c5d01be92039ee2850f17e71506ded0d6b25677441eae249f8e225c68dd15a6354dca54006383")
  205. def run_dpp_qr_code_auth_unicast(dev, apdev, curve, netrole=None, key=None,
  206. require_conf_success=False, init_extra=None,
  207. require_conf_failure=False,
  208. configurator=False, conf_curve=None):
  209. check_dpp_capab(dev[0], curve and "brainpool" in curve)
  210. check_dpp_capab(dev[1], curve and "brainpool" in curve)
  211. if configurator:
  212. logger.info("Create configurator on dev1")
  213. cmd = "DPP_CONFIGURATOR_ADD"
  214. if conf_curve:
  215. cmd += " curve=" + conf_curve
  216. res = dev[1].request(cmd);
  217. if "FAIL" in res:
  218. raise Exception("Failed to add configurator")
  219. conf_id = int(res)
  220. logger.info("dev0 displays QR Code")
  221. addr = dev[0].own_addr().replace(':', '')
  222. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  223. if curve:
  224. cmd += " curve=" + curve
  225. if key:
  226. cmd += " key=" + key
  227. res = dev[0].request(cmd)
  228. if "FAIL" in res:
  229. raise Exception("Failed to generate bootstrapping info")
  230. id0 = int(res)
  231. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  232. logger.info("dev1 scans QR Code")
  233. res = dev[1].request("DPP_QR_CODE " + uri0)
  234. if "FAIL" in res:
  235. raise Exception("Failed to parse QR Code URI")
  236. id1 = int(res)
  237. logger.info("dev1 initiates DPP Authentication")
  238. cmd = "DPP_LISTEN 2412"
  239. if netrole:
  240. cmd += " netrole=" + netrole
  241. if "OK" not in dev[0].request(cmd):
  242. raise Exception("Failed to start listen operation")
  243. cmd = "DPP_AUTH_INIT peer=%d" % id1
  244. if init_extra:
  245. cmd += " " + init_extra
  246. if configurator:
  247. cmd += " configurator=%d" % conf_id
  248. if "OK" not in dev[1].request(cmd):
  249. raise Exception("Failed to initiate DPP Authentication")
  250. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  251. if ev is None:
  252. raise Exception("DPP authentication did not succeed (Responder)")
  253. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  254. if ev is None:
  255. raise Exception("DPP authentication did not succeed (Initiator)")
  256. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=5)
  257. if ev is None:
  258. raise Exception("DPP configuration not completed (Configurator)")
  259. ev = dev[0].wait_event(["DPP-CONF-RECEIVED", "DPP-CONF-FAILED"], timeout=5)
  260. if ev is None:
  261. raise Exception("DPP configuration not completed (Enrollee)")
  262. if require_conf_success:
  263. if "DPP-CONF-FAILED" in ev:
  264. raise Exception("DPP configuration failed")
  265. if require_conf_failure:
  266. if "DPP-CONF-SUCCESS" in ev:
  267. raise Exception("DPP configuration succeeded unexpectedly")
  268. dev[0].request("DPP_STOP_LISTEN")
  269. dev[0].dump_monitor()
  270. dev[1].dump_monitor()
  271. def test_dpp_qr_code_auth_mutual(dev, apdev):
  272. """DPP QR Code and authentication exchange (mutual)"""
  273. check_dpp_capab(dev[0])
  274. check_dpp_capab(dev[1])
  275. logger.info("dev0 displays QR Code")
  276. addr = dev[0].own_addr().replace(':', '')
  277. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  278. if "FAIL" in res:
  279. raise Exception("Failed to generate bootstrapping info")
  280. id0 = int(res)
  281. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  282. logger.info("dev1 scans QR Code")
  283. res = dev[1].request("DPP_QR_CODE " + uri0)
  284. if "FAIL" in res:
  285. raise Exception("Failed to parse QR Code URI")
  286. id1 = int(res)
  287. logger.info("dev1 displays QR Code")
  288. addr = dev[1].own_addr().replace(':', '')
  289. res = dev[1].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  290. if "FAIL" in res:
  291. raise Exception("Failed to generate bootstrapping info")
  292. id1b = int(res)
  293. uri1b = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1b)
  294. logger.info("dev0 scans QR Code")
  295. res = dev[0].request("DPP_QR_CODE " + uri1b)
  296. if "FAIL" in res:
  297. raise Exception("Failed to parse QR Code URI")
  298. id0b = int(res)
  299. logger.info("dev1 initiates DPP Authentication")
  300. if "OK" not in dev[0].request("DPP_LISTEN 2412"):
  301. raise Exception("Failed to start listen operation")
  302. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d own=%d" % (id1, id1b)):
  303. raise Exception("Failed to initiate DPP Authentication")
  304. ev = dev[1].wait_event(["DPP-AUTH-DIRECTION"], timeout=5)
  305. if ev is None:
  306. raise Exception("DPP authentication direction not indicated (Initiator)")
  307. if "mutual=1" not in ev:
  308. raise Exception("Mutual authentication not used")
  309. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  310. if ev is None:
  311. raise Exception("DPP authentication did not succeed (Responder)")
  312. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  313. if ev is None:
  314. raise Exception("DPP authentication did not succeed (Initiator)")
  315. dev[0].request("DPP_STOP_LISTEN")
  316. def test_dpp_qr_code_auth_mutual2(dev, apdev):
  317. """DPP QR Code and authentication exchange (mutual2)"""
  318. check_dpp_capab(dev[0])
  319. check_dpp_capab(dev[1])
  320. logger.info("dev0 displays QR Code")
  321. addr = dev[0].own_addr().replace(':', '')
  322. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  323. if "FAIL" in res:
  324. raise Exception("Failed to generate bootstrapping info")
  325. id0 = int(res)
  326. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  327. logger.info("dev1 scans QR Code")
  328. res = dev[1].request("DPP_QR_CODE " + uri0)
  329. if "FAIL" in res:
  330. raise Exception("Failed to parse QR Code URI")
  331. id1 = int(res)
  332. logger.info("dev1 displays QR Code")
  333. addr = dev[1].own_addr().replace(':', '')
  334. res = dev[1].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  335. if "FAIL" in res:
  336. raise Exception("Failed to generate bootstrapping info")
  337. id1b = int(res)
  338. uri1b = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1b)
  339. logger.info("dev1 initiates DPP Authentication")
  340. if "OK" not in dev[0].request("DPP_LISTEN 2412 qr=mutual"):
  341. raise Exception("Failed to start listen operation")
  342. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d own=%d" % (id1, id1b)):
  343. raise Exception("Failed to initiate DPP Authentication")
  344. ev = dev[1].wait_event(["DPP-RESPONSE-PENDING"], timeout=5)
  345. if ev is None:
  346. raise Exception("Pending response not reported")
  347. ev = dev[0].wait_event(["DPP-SCAN-PEER-QR-CODE"], timeout=5)
  348. if ev is None:
  349. raise Exception("QR Code scan for mutual authentication not requested")
  350. logger.info("dev0 scans QR Code")
  351. res = dev[0].request("DPP_QR_CODE " + uri1b)
  352. if "FAIL" in res:
  353. raise Exception("Failed to parse QR Code URI")
  354. id0b = int(res)
  355. ev = dev[1].wait_event(["DPP-AUTH-DIRECTION"], timeout=5)
  356. if ev is None:
  357. raise Exception("DPP authentication direction not indicated (Initiator)")
  358. if "mutual=1" not in ev:
  359. raise Exception("Mutual authentication not used")
  360. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  361. if ev is None:
  362. raise Exception("DPP authentication did not succeed (Responder)")
  363. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  364. if ev is None:
  365. raise Exception("DPP authentication did not succeed (Initiator)")
  366. dev[0].request("DPP_STOP_LISTEN")
  367. def test_dpp_qr_code_auth_mutual_p_256(dev, apdev):
  368. """DPP QR Code and authentication exchange (mutual, autogen P-256)"""
  369. run_dpp_qr_code_auth_mutual(dev, apdev, "P-256")
  370. def test_dpp_qr_code_auth_mutual_p_384(dev, apdev):
  371. """DPP QR Code and authentication exchange (mutual, autogen P-384)"""
  372. run_dpp_qr_code_auth_mutual(dev, apdev, "P-384")
  373. def test_dpp_qr_code_auth_mutual_p_521(dev, apdev):
  374. """DPP QR Code and authentication exchange (mutual, autogen P-521)"""
  375. run_dpp_qr_code_auth_mutual(dev, apdev, "P-521")
  376. def test_dpp_qr_code_auth_mutual_bp_256(dev, apdev):
  377. """DPP QR Code and authentication exchange (mutual, autogen BP-256)"""
  378. run_dpp_qr_code_auth_mutual(dev, apdev, "BP-256")
  379. def test_dpp_qr_code_auth_mutual_bp_384(dev, apdev):
  380. """DPP QR Code and authentication exchange (mutual, autogen BP-384)"""
  381. run_dpp_qr_code_auth_mutual(dev, apdev, "BP-384")
  382. def test_dpp_qr_code_auth_mutual_bp_512(dev, apdev):
  383. """DPP QR Code and authentication exchange (mutual, autogen BP-512)"""
  384. run_dpp_qr_code_auth_mutual(dev, apdev, "BP-512")
  385. def run_dpp_qr_code_auth_mutual(dev, apdev, curve):
  386. check_dpp_capab(dev[0], curve and "BP-" in curve)
  387. check_dpp_capab(dev[1], curve and "BP-" in curve)
  388. logger.info("dev0 displays QR Code")
  389. addr = dev[0].own_addr().replace(':', '')
  390. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  391. cmd += " curve=" + curve
  392. res = dev[0].request(cmd)
  393. if "FAIL" in res:
  394. raise Exception("Failed to generate bootstrapping info")
  395. id0 = int(res)
  396. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  397. logger.info("dev1 scans QR Code")
  398. res = dev[1].request("DPP_QR_CODE " + uri0)
  399. if "FAIL" in res:
  400. raise Exception("Failed to parse QR Code URI")
  401. id1 = int(res)
  402. logger.info("dev1 initiates DPP Authentication")
  403. if "OK" not in dev[0].request("DPP_LISTEN 2412 qr=mutual"):
  404. raise Exception("Failed to start listen operation")
  405. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d" % (id1)):
  406. raise Exception("Failed to initiate DPP Authentication")
  407. ev = dev[1].wait_event(["DPP-RESPONSE-PENDING"], timeout=5)
  408. if ev is None:
  409. raise Exception("Pending response not reported")
  410. uri = ev.split(' ')[1]
  411. ev = dev[0].wait_event(["DPP-SCAN-PEER-QR-CODE"], timeout=5)
  412. if ev is None:
  413. raise Exception("QR Code scan for mutual authentication not requested")
  414. logger.info("dev0 scans QR Code")
  415. res = dev[0].request("DPP_QR_CODE " + uri)
  416. if "FAIL" in res:
  417. raise Exception("Failed to parse QR Code URI")
  418. ev = dev[1].wait_event(["DPP-AUTH-DIRECTION"], timeout=5)
  419. if ev is None:
  420. raise Exception("DPP authentication direction not indicated (Initiator)")
  421. if "mutual=1" not in ev:
  422. raise Exception("Mutual authentication not used")
  423. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  424. if ev is None:
  425. raise Exception("DPP authentication did not succeed (Responder)")
  426. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  427. if ev is None:
  428. raise Exception("DPP authentication did not succeed (Initiator)")
  429. dev[0].request("DPP_STOP_LISTEN")
  430. def test_dpp_auth_resp_retries(dev, apdev):
  431. """DPP Authentication Response retries"""
  432. check_dpp_capab(dev[0])
  433. check_dpp_capab(dev[1])
  434. dev[0].set("dpp_resp_max_tries", "3")
  435. dev[0].set("dpp_resp_retry_time", "100")
  436. logger.info("dev0 displays QR Code")
  437. addr = dev[0].own_addr().replace(':', '')
  438. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  439. if "FAIL" in res:
  440. raise Exception("Failed to generate bootstrapping info")
  441. id0 = int(res)
  442. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  443. logger.info("dev1 scans QR Code")
  444. res = dev[1].request("DPP_QR_CODE " + uri0)
  445. if "FAIL" in res:
  446. raise Exception("Failed to parse QR Code URI")
  447. id1 = int(res)
  448. logger.info("dev1 displays QR Code")
  449. addr = dev[1].own_addr().replace(':', '')
  450. res = dev[1].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. id1b = int(res)
  454. uri1b = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1b)
  455. logger.info("dev1 initiates DPP Authentication")
  456. if "OK" not in dev[0].request("DPP_LISTEN 2412 qr=mutual"):
  457. raise Exception("Failed to start listen operation")
  458. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d own=%d" % (id1, id1b)):
  459. raise Exception("Failed to initiate DPP Authentication")
  460. ev = dev[1].wait_event(["DPP-RESPONSE-PENDING"], timeout=5)
  461. if ev is None:
  462. raise Exception("Pending response not reported")
  463. ev = dev[0].wait_event(["DPP-SCAN-PEER-QR-CODE"], timeout=5)
  464. if ev is None:
  465. raise Exception("QR Code scan for mutual authentication not requested")
  466. # Stop Initiator from listening to frames to force retransmission of the
  467. # DPP Authentication Response frame with Status=0
  468. dev[1].request("DPP_STOP_LISTEN")
  469. dev[1].dump_monitor()
  470. dev[0].dump_monitor()
  471. logger.info("dev0 scans QR Code")
  472. res = dev[0].request("DPP_QR_CODE " + uri1b)
  473. if "FAIL" in res:
  474. raise Exception("Failed to parse QR Code URI")
  475. id0b = int(res)
  476. ev = dev[0].wait_event(["DPP-TX"], timeout=5)
  477. if ev is None or "type=1" not in ev:
  478. raise Exception("DPP Authentication Response not sent")
  479. ev = dev[0].wait_event(["DPP-TX-STATUS"], timeout=5)
  480. if ev is None:
  481. raise Exception("TX status for DPP Authentication Response not reported")
  482. if "result=no-ACK" not in ev:
  483. raise Exception("Unexpected TX status for Authentication Response: " + ev)
  484. ev = dev[0].wait_event(["DPP-TX"], timeout=15)
  485. if ev is None or "type=1" not in ev:
  486. raise Exception("DPP Authentication Response retransmission not sent")
  487. def test_dpp_qr_code_auth_mutual_not_used(dev, apdev):
  488. """DPP QR Code and authentication exchange (mutual not used)"""
  489. check_dpp_capab(dev[0])
  490. check_dpp_capab(dev[1])
  491. logger.info("dev0 displays QR Code")
  492. addr = dev[0].own_addr().replace(':', '')
  493. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  494. if "FAIL" in res:
  495. raise Exception("Failed to generate bootstrapping info")
  496. id0 = int(res)
  497. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  498. logger.info("dev1 scans QR Code")
  499. res = dev[1].request("DPP_QR_CODE " + uri0)
  500. if "FAIL" in res:
  501. raise Exception("Failed to parse QR Code URI")
  502. id1 = int(res)
  503. logger.info("dev1 displays QR Code")
  504. addr = dev[1].own_addr().replace(':', '')
  505. res = dev[1].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  506. if "FAIL" in res:
  507. raise Exception("Failed to generate bootstrapping info")
  508. id1b = int(res)
  509. uri1b = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1b)
  510. logger.info("dev0 does not scan QR Code")
  511. logger.info("dev1 initiates DPP Authentication")
  512. if "OK" not in dev[0].request("DPP_LISTEN 2412"):
  513. raise Exception("Failed to start listen operation")
  514. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d own=%d" % (id1, id1b)):
  515. raise Exception("Failed to initiate DPP Authentication")
  516. ev = dev[1].wait_event(["DPP-AUTH-DIRECTION"], timeout=5)
  517. if ev is None:
  518. raise Exception("DPP authentication direction not indicated (Initiator)")
  519. if "mutual=0" not in ev:
  520. raise Exception("Mutual authentication not used")
  521. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  522. if ev is None:
  523. raise Exception("DPP authentication did not succeed (Responder)")
  524. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  525. if ev is None:
  526. raise Exception("DPP authentication did not succeed (Initiator)")
  527. dev[0].request("DPP_STOP_LISTEN")
  528. def test_dpp_qr_code_auth_mutual_curve_mismatch(dev, apdev):
  529. """DPP QR Code and authentication exchange (mutual/mismatch)"""
  530. check_dpp_capab(dev[0])
  531. check_dpp_capab(dev[1])
  532. logger.info("dev0 displays QR Code")
  533. addr = dev[0].own_addr().replace(':', '')
  534. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  535. if "FAIL" in res:
  536. raise Exception("Failed to generate bootstrapping info")
  537. id0 = int(res)
  538. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  539. logger.info("dev1 scans QR Code")
  540. res = dev[1].request("DPP_QR_CODE " + uri0)
  541. if "FAIL" in res:
  542. raise Exception("Failed to parse QR Code URI")
  543. id1 = int(res)
  544. logger.info("dev1 displays QR Code")
  545. addr = dev[1].own_addr().replace(':', '')
  546. res = dev[1].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr + " curve=secp384r1")
  547. if "FAIL" in res:
  548. raise Exception("Failed to generate bootstrapping info")
  549. id1b = int(res)
  550. uri1b = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1b)
  551. logger.info("dev0 scans QR Code")
  552. res = dev[0].request("DPP_QR_CODE " + uri1b)
  553. if "FAIL" in res:
  554. raise Exception("Failed to parse QR Code URI")
  555. id0b = int(res)
  556. res = dev[1].request("DPP_AUTH_INIT peer=%d own=%d" % (id1, id1b))
  557. if "FAIL" not in res:
  558. raise Exception("DPP_AUTH_INIT accepted unexpectedly")
  559. def test_dpp_qr_code_auth_hostapd_mutual2(dev, apdev):
  560. """DPP QR Code and authentication exchange (hostapd mutual2)"""
  561. check_dpp_capab(dev[0])
  562. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured" })
  563. check_dpp_capab(hapd)
  564. logger.info("AP displays QR Code")
  565. addr = hapd.own_addr().replace(':', '')
  566. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  567. res = hapd.request(cmd)
  568. if "FAIL" in res:
  569. raise Exception("Failed to generate bootstrapping info")
  570. id_h = int(res)
  571. uri_h = hapd.request("DPP_BOOTSTRAP_GET_URI %d" % id_h)
  572. logger.info("dev0 scans QR Code")
  573. res = dev[0].request("DPP_QR_CODE " + uri_h)
  574. if "FAIL" in res:
  575. raise Exception("Failed to parse QR Code URI")
  576. id0 = int(res)
  577. logger.info("dev0 displays QR Code")
  578. addr = dev[0].own_addr().replace(':', '')
  579. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  580. if "FAIL" in res:
  581. raise Exception("Failed to generate bootstrapping info")
  582. id0b = int(res)
  583. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0b)
  584. logger.info("dev0 initiates DPP Authentication")
  585. if "OK" not in hapd.request("DPP_LISTEN 2412 qr=mutual"):
  586. raise Exception("Failed to start listen operation")
  587. if "OK" not in dev[0].request("DPP_AUTH_INIT peer=%d own=%d" % (id0, id0b)):
  588. raise Exception("Failed to initiate DPP Authentication")
  589. ev = dev[0].wait_event(["DPP-RESPONSE-PENDING"], timeout=5)
  590. if ev is None:
  591. raise Exception("Pending response not reported")
  592. ev = hapd.wait_event(["DPP-SCAN-PEER-QR-CODE"], timeout=5)
  593. if ev is None:
  594. raise Exception("QR Code scan for mutual authentication not requested")
  595. logger.info("AP scans QR Code")
  596. res = hapd.request("DPP_QR_CODE " + uri0)
  597. if "FAIL" in res:
  598. raise Exception("Failed to parse QR Code URI")
  599. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  600. if ev is None:
  601. raise Exception("DPP authentication did not succeed (Responder)")
  602. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  603. if ev is None:
  604. raise Exception("DPP authentication did not succeed (Initiator)")
  605. hapd.request("DPP_STOP_LISTEN")
  606. def test_dpp_qr_code_listen_continue(dev, apdev):
  607. """DPP QR Code and listen operation needing continuation"""
  608. check_dpp_capab(dev[0])
  609. check_dpp_capab(dev[1])
  610. logger.info("dev0 displays QR Code")
  611. addr = dev[0].own_addr().replace(':', '')
  612. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  613. if "FAIL" in res:
  614. raise Exception("Failed to generate bootstrapping info")
  615. id0 = int(res)
  616. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  617. logger.info("dev1 scans QR Code")
  618. res = dev[1].request("DPP_QR_CODE " + uri0)
  619. if "FAIL" in res:
  620. raise Exception("Failed to parse QR Code URI")
  621. id1 = int(res)
  622. if "OK" not in dev[0].request("DPP_LISTEN 2412"):
  623. raise Exception("Failed to start listen operation")
  624. logger.info("Wait for listen to expire and get restarted")
  625. time.sleep(5.5)
  626. logger.info("dev1 initiates DPP Authentication")
  627. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d" % id1):
  628. raise Exception("Failed to initiate DPP Authentication")
  629. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  630. if ev is None:
  631. raise Exception("DPP authentication did not succeed (Responder)")
  632. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  633. if ev is None:
  634. raise Exception("DPP authentication did not succeed (Initiator)")
  635. dev[0].request("DPP_STOP_LISTEN")
  636. def test_dpp_qr_code_auth_initiator_enrollee(dev, apdev):
  637. """DPP QR Code and authentication exchange (Initiator in Enrollee role)"""
  638. check_dpp_capab(dev[0])
  639. check_dpp_capab(dev[1])
  640. dev[0].request("SET gas_address3 1")
  641. dev[1].request("SET gas_address3 1")
  642. logger.info("dev0 displays QR Code")
  643. addr = dev[0].own_addr().replace(':', '')
  644. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  645. if "FAIL" in res:
  646. raise Exception("Failed to generate bootstrapping info")
  647. id0 = int(res)
  648. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  649. logger.info("dev1 scans QR Code")
  650. res = dev[1].request("DPP_QR_CODE " + uri0)
  651. if "FAIL" in res:
  652. raise Exception("Failed to parse QR Code URI")
  653. id1 = int(res)
  654. logger.info("dev1 initiates DPP Authentication")
  655. if "OK" not in dev[0].request("DPP_LISTEN 2412"):
  656. raise Exception("Failed to start listen operation")
  657. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d role=enrollee" % id1):
  658. raise Exception("Failed to initiate DPP Authentication")
  659. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  660. if ev is None:
  661. raise Exception("DPP authentication did not succeed (Responder)")
  662. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  663. if ev is None:
  664. raise Exception("DPP authentication did not succeed (Initiator)")
  665. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  666. if ev is None:
  667. raise Exception("DPP configuration did not succeed (Configurator)")
  668. ev = dev[1].wait_event(["DPP-CONF-FAILED"], timeout=5)
  669. if ev is None:
  670. raise Exception("DPP configuration did not succeed (Enrollee)")
  671. dev[0].request("DPP_STOP_LISTEN")
  672. def test_dpp_qr_code_auth_initiator_either_1(dev, apdev):
  673. """DPP QR Code and authentication exchange (Initiator in either role)"""
  674. run_dpp_qr_code_auth_initiator_either(dev, apdev, None, dev[1], dev[0])
  675. def test_dpp_qr_code_auth_initiator_either_2(dev, apdev):
  676. """DPP QR Code and authentication exchange (Initiator in either role)"""
  677. run_dpp_qr_code_auth_initiator_either(dev, apdev, "enrollee",
  678. dev[1], dev[0])
  679. def test_dpp_qr_code_auth_initiator_either_3(dev, apdev):
  680. """DPP QR Code and authentication exchange (Initiator in either role)"""
  681. run_dpp_qr_code_auth_initiator_either(dev, apdev, "configurator",
  682. dev[0], dev[1])
  683. def run_dpp_qr_code_auth_initiator_either(dev, apdev, resp_role,
  684. conf_dev, enrollee_dev):
  685. check_dpp_capab(dev[0])
  686. check_dpp_capab(dev[1])
  687. logger.info("dev0 displays QR Code")
  688. addr = dev[0].own_addr().replace(':', '')
  689. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  690. if "FAIL" in res:
  691. raise Exception("Failed to generate bootstrapping info")
  692. id0 = int(res)
  693. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  694. logger.info("dev1 scans QR Code")
  695. res = dev[1].request("DPP_QR_CODE " + uri0)
  696. if "FAIL" in res:
  697. raise Exception("Failed to parse QR Code URI")
  698. id1 = int(res)
  699. logger.info("dev1 initiates DPP Authentication")
  700. cmd = "DPP_LISTEN 2412"
  701. if resp_role:
  702. cmd += " role=" + resp_role
  703. if "OK" not in dev[0].request(cmd):
  704. raise Exception("Failed to start listen operation")
  705. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d role=either" % id1):
  706. raise Exception("Failed to initiate DPP Authentication")
  707. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  708. if ev is None:
  709. raise Exception("DPP authentication did not succeed (Responder)")
  710. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  711. if ev is None:
  712. raise Exception("DPP authentication did not succeed (Initiator)")
  713. ev = conf_dev.wait_event(["DPP-CONF-SENT"], timeout=5)
  714. if ev is None:
  715. raise Exception("DPP configuration did not succeed (Configurator)")
  716. ev = enrollee_dev.wait_event(["DPP-CONF-FAILED"], timeout=5)
  717. if ev is None:
  718. raise Exception("DPP configuration did not succeed (Enrollee)")
  719. dev[0].request("DPP_STOP_LISTEN")
  720. def test_dpp_qr_code_auth_incompatible_roles(dev, apdev):
  721. """DPP QR Code and authentication exchange (incompatible roles)"""
  722. check_dpp_capab(dev[0])
  723. check_dpp_capab(dev[1])
  724. logger.info("dev0 displays QR Code")
  725. addr = dev[0].own_addr().replace(':', '')
  726. res = dev[0].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  727. if "FAIL" in res:
  728. raise Exception("Failed to generate bootstrapping info")
  729. id0 = int(res)
  730. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  731. logger.info("dev1 scans QR Code")
  732. res = dev[1].request("DPP_QR_CODE " + uri0)
  733. if "FAIL" in res:
  734. raise Exception("Failed to parse QR Code URI")
  735. id1 = int(res)
  736. logger.info("dev1 initiates DPP Authentication")
  737. if "OK" not in dev[0].request("DPP_LISTEN 2412 role=enrollee"):
  738. raise Exception("Failed to start listen operation")
  739. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d role=enrollee" % id1):
  740. raise Exception("Failed to initiate DPP Authentication")
  741. ev = dev[1].wait_event(["DPP-NOT-COMPATIBLE"], timeout=5)
  742. if ev is None:
  743. raise Exception("DPP-NOT-COMPATIBLE event on initiator timed out")
  744. ev = dev[0].wait_event(["DPP-NOT-COMPATIBLE"], timeout=1)
  745. if ev is None:
  746. raise Exception("DPP-NOT-COMPATIBLE event on responder timed out")
  747. if "OK" not in dev[1].request("DPP_AUTH_INIT peer=%d role=configurator" % id1):
  748. raise Exception("Failed to initiate DPP Authentication")
  749. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  750. if ev is None:
  751. raise Exception("DPP authentication did not succeed (Responder)")
  752. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  753. if ev is None:
  754. raise Exception("DPP authentication did not succeed (Initiator)")
  755. dev[0].request("DPP_STOP_LISTEN")
  756. def test_dpp_qr_code_auth_neg_chan(dev, apdev):
  757. """DPP QR Code and authentication exchange with requested different channel"""
  758. check_dpp_capab(dev[0])
  759. check_dpp_capab(dev[1])
  760. logger.info("Create configurator on dev1")
  761. cmd = "DPP_CONFIGURATOR_ADD"
  762. res = dev[1].request(cmd);
  763. if "FAIL" in res:
  764. raise Exception("Failed to add configurator")
  765. conf_id = int(res)
  766. logger.info("dev0 displays QR Code")
  767. addr = dev[0].own_addr().replace(':', '')
  768. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  769. res = dev[0].request(cmd)
  770. if "FAIL" in res:
  771. raise Exception("Failed to generate bootstrapping info")
  772. id0 = int(res)
  773. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  774. logger.info("dev1 scans QR Code")
  775. res = dev[1].request("DPP_QR_CODE " + uri0)
  776. if "FAIL" in res:
  777. raise Exception("Failed to parse QR Code URI")
  778. id1 = int(res)
  779. logger.info("dev1 initiates DPP Authentication")
  780. cmd = "DPP_LISTEN 2412"
  781. if "OK" not in dev[0].request(cmd):
  782. raise Exception("Failed to start listen operation")
  783. cmd = "DPP_AUTH_INIT peer=%d configurator=%d conf=sta-dpp neg_freq=2462" % (id1, conf_id)
  784. if "OK" not in dev[1].request(cmd):
  785. raise Exception("Failed to initiate DPP Authentication")
  786. ev = dev[1].wait_event(["DPP-TX"], timeout=5)
  787. if ev is None:
  788. raise Exception("DPP Authentication Request not sent")
  789. if "freq=2412 type=0" not in ev:
  790. raise Exception("Unexpected TX data for Authentication Request: " + ev)
  791. ev = dev[0].wait_event(["DPP-RX"], timeout=5)
  792. if ev is None:
  793. raise Exception("DPP Authentication Request not received")
  794. if "freq=2412 type=0" not in ev:
  795. raise Exception("Unexpected RX data for Authentication Request: " + ev)
  796. ev = dev[1].wait_event(["DPP-TX-STATUS"], timeout=5)
  797. if ev is None:
  798. raise Exception("TX status for DPP Authentication Request not reported")
  799. if "freq=2412 result=SUCCESS" not in ev:
  800. raise Exception("Unexpected TX status for Authentication Request: " + ev)
  801. ev = dev[0].wait_event(["DPP-TX"], timeout=5)
  802. if ev is None:
  803. raise Exception("DPP Authentication Response not sent")
  804. if "freq=2462 type=1" not in ev:
  805. raise Exception("Unexpected TX data for Authentication Response: " + ev)
  806. ev = dev[1].wait_event(["DPP-RX"], timeout=5)
  807. if ev is None:
  808. raise Exception("DPP Authentication Response not received")
  809. if "freq=2462 type=1" not in ev:
  810. raise Exception("Unexpected RX data for Authentication Response: " + ev)
  811. ev = dev[0].wait_event(["DPP-TX-STATUS"], timeout=5)
  812. if ev is None:
  813. raise Exception("TX status for DPP Authentication Response not reported")
  814. if "freq=2462 result=SUCCESS" not in ev:
  815. raise Exception("Unexpected TX status for Authentication Response: " + ev)
  816. ev = dev[1].wait_event(["DPP-TX"], timeout=5)
  817. if ev is None:
  818. raise Exception("DPP Authentication Confirm not sent")
  819. if "freq=2462 type=2" not in ev:
  820. raise Exception("Unexpected TX data for Authentication Confirm: " + ev)
  821. ev = dev[0].wait_event(["DPP-RX"], timeout=5)
  822. if ev is None:
  823. raise Exception("DPP Authentication Confirm not received")
  824. if "freq=2462 type=2" not in ev:
  825. raise Exception("Unexpected RX data for Authentication Confirm: " + ev)
  826. ev = dev[1].wait_event(["DPP-TX-STATUS"], timeout=5)
  827. if ev is None:
  828. raise Exception("TX status for DPP Authentication Confirm not reported")
  829. if "freq=2462 result=SUCCESS" not in ev:
  830. raise Exception("Unexpected TX status for Authentication Confirm: " + ev)
  831. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  832. if ev is None:
  833. raise Exception("DPP authentication did not succeed (Responder)")
  834. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  835. if ev is None:
  836. raise Exception("DPP authentication did not succeed (Initiator)")
  837. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=5)
  838. if ev is None:
  839. raise Exception("DPP configuration not completed (Configurator)")
  840. ev = dev[0].wait_event(["DPP-CONF-RECEIVED", "DPP-CONF-FAILED"], timeout=5)
  841. if ev is None:
  842. raise Exception("DPP configuration not completed (Enrollee)")
  843. if "DPP-CONF-FAILED" in ev:
  844. raise Exception("DPP configuration failed")
  845. dev[0].request("DPP_STOP_LISTEN")
  846. dev[0].dump_monitor()
  847. dev[1].dump_monitor()
  848. def test_dpp_config_legacy(dev, apdev):
  849. """DPP Config Object for legacy network using passphrase"""
  850. check_dpp_capab(dev[1])
  851. conf = '{"wi-fi_tech":"infra", "discovery":{"ssid":"test"},"cred":{"akm":"psk","pass":"secret passphrase"}}'
  852. dev[1].set("dpp_config_obj_override", conf)
  853. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  854. require_conf_success=True)
  855. def test_dpp_config_legacy_psk_hex(dev, apdev):
  856. """DPP Config Object for legacy network using PSK"""
  857. check_dpp_capab(dev[1])
  858. conf = '{"wi-fi_tech":"infra", "discovery":{"ssid":"test"},"cred":{"akm":"psk","psk_hex":"' + 32*"12" + '"}}'
  859. dev[1].set("dpp_config_obj_override", conf)
  860. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  861. require_conf_success=True)
  862. def test_dpp_config_fragmentation(dev, apdev):
  863. """DPP Config Object for legacy network requiring fragmentation"""
  864. check_dpp_capab(dev[1])
  865. conf = '{"wi-fi_tech":"infra", "discovery":{"ssid":"test"},"cred":{"akm":"psk","pass":"secret passphrase"}}' + 3000*' '
  866. dev[1].set("dpp_config_obj_override", conf)
  867. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  868. require_conf_success=True)
  869. def test_dpp_config_legacy_gen(dev, apdev):
  870. """Generate DPP Config Object for legacy network"""
  871. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  872. init_extra="conf=sta-psk pass=%s" % "passphrase".encode("hex"),
  873. require_conf_success=True)
  874. def test_dpp_config_legacy_gen_psk(dev, apdev):
  875. """Generate DPP Config Object for legacy network (PSK)"""
  876. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  877. init_extra="conf=sta-psk psk=0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef",
  878. require_conf_success=True)
  879. def test_dpp_config_dpp_gen_prime256v1(dev, apdev):
  880. """Generate DPP Config Object for DPP network (P-256)"""
  881. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  882. init_extra="conf=sta-dpp",
  883. require_conf_success=True,
  884. configurator=True)
  885. def test_dpp_config_dpp_gen_secp384r1(dev, apdev):
  886. """Generate DPP Config Object for DPP network (P-384)"""
  887. run_dpp_qr_code_auth_unicast(dev, apdev, "secp384r1",
  888. init_extra="conf=sta-dpp",
  889. require_conf_success=True,
  890. configurator=True)
  891. def test_dpp_config_dpp_gen_secp521r1(dev, apdev):
  892. """Generate DPP Config Object for DPP network (P-521)"""
  893. run_dpp_qr_code_auth_unicast(dev, apdev, "secp521r1",
  894. init_extra="conf=sta-dpp",
  895. require_conf_success=True,
  896. configurator=True)
  897. def test_dpp_config_dpp_gen_prime256v1_prime256v1(dev, apdev):
  898. """Generate DPP Config Object for DPP network (P-256 + P-256)"""
  899. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  900. init_extra="conf=sta-dpp",
  901. require_conf_success=True,
  902. configurator=True,
  903. conf_curve="prime256v1")
  904. def test_dpp_config_dpp_gen_prime256v1_secp384r1(dev, apdev):
  905. """Generate DPP Config Object for DPP network (P-256 + P-384)"""
  906. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  907. init_extra="conf=sta-dpp",
  908. require_conf_success=True,
  909. configurator=True,
  910. conf_curve="secp384r1")
  911. def test_dpp_config_dpp_gen_prime256v1_secp521r1(dev, apdev):
  912. """Generate DPP Config Object for DPP network (P-256 + P-521)"""
  913. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  914. init_extra="conf=sta-dpp",
  915. require_conf_success=True,
  916. configurator=True,
  917. conf_curve="secp521r1")
  918. def test_dpp_config_dpp_gen_secp384r1_prime256v1(dev, apdev):
  919. """Generate DPP Config Object for DPP network (P-384 + P-256)"""
  920. run_dpp_qr_code_auth_unicast(dev, apdev, "secp384r1",
  921. init_extra="conf=sta-dpp",
  922. require_conf_success=True,
  923. configurator=True,
  924. conf_curve="prime256v1")
  925. def test_dpp_config_dpp_gen_secp384r1_secp384r1(dev, apdev):
  926. """Generate DPP Config Object for DPP network (P-384 + P-384)"""
  927. run_dpp_qr_code_auth_unicast(dev, apdev, "secp384r1",
  928. init_extra="conf=sta-dpp",
  929. require_conf_success=True,
  930. configurator=True,
  931. conf_curve="secp384r1")
  932. def test_dpp_config_dpp_gen_secp384r1_secp521r1(dev, apdev):
  933. """Generate DPP Config Object for DPP network (P-384 + P-521)"""
  934. run_dpp_qr_code_auth_unicast(dev, apdev, "secp384r1",
  935. init_extra="conf=sta-dpp",
  936. require_conf_success=True,
  937. configurator=True,
  938. conf_curve="secp521r1")
  939. def test_dpp_config_dpp_gen_secp521r1_prime256v1(dev, apdev):
  940. """Generate DPP Config Object for DPP network (P-521 + P-256)"""
  941. run_dpp_qr_code_auth_unicast(dev, apdev, "secp521r1",
  942. init_extra="conf=sta-dpp",
  943. require_conf_success=True,
  944. configurator=True,
  945. conf_curve="prime256v1")
  946. def test_dpp_config_dpp_gen_secp521r1_secp384r1(dev, apdev):
  947. """Generate DPP Config Object for DPP network (P-521 + P-384)"""
  948. run_dpp_qr_code_auth_unicast(dev, apdev, "secp521r1",
  949. init_extra="conf=sta-dpp",
  950. require_conf_success=True,
  951. configurator=True,
  952. conf_curve="secp384r1")
  953. def test_dpp_config_dpp_gen_secp521r1_secp521r1(dev, apdev):
  954. """Generate DPP Config Object for DPP network (P-521 + P-521)"""
  955. run_dpp_qr_code_auth_unicast(dev, apdev, "secp521r1",
  956. init_extra="conf=sta-dpp",
  957. require_conf_success=True,
  958. configurator=True,
  959. conf_curve="secp521r1")
  960. def test_dpp_config_dpp_gen_expiry(dev, apdev):
  961. """Generate DPP Config Object for DPP network with expiry value"""
  962. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  963. init_extra="conf=sta-dpp expiry=%d" % (time.time() + 1000),
  964. require_conf_success=True,
  965. configurator=True)
  966. def test_dpp_config_dpp_gen_expired_key(dev, apdev):
  967. """Generate DPP Config Object for DPP network with expiry value"""
  968. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  969. init_extra="conf=sta-dpp expiry=%d" % (time.time() - 10),
  970. require_conf_failure=True,
  971. configurator=True)
  972. def test_dpp_config_dpp_override_prime256v1(dev, apdev):
  973. """DPP Config Object override (P-256)"""
  974. check_dpp_capab(dev[0])
  975. check_dpp_capab(dev[1])
  976. 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"}}}'
  977. dev[0].set("dpp_ignore_netaccesskey_mismatch", "1")
  978. dev[1].set("dpp_config_obj_override", conf)
  979. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  980. require_conf_success=True)
  981. def test_dpp_config_dpp_override_secp384r1(dev, apdev):
  982. """DPP Config Object override (P-384)"""
  983. check_dpp_capab(dev[0])
  984. check_dpp_capab(dev[1])
  985. 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"}}}'
  986. dev[0].set("dpp_ignore_netaccesskey_mismatch", "1")
  987. dev[1].set("dpp_config_obj_override", conf)
  988. run_dpp_qr_code_auth_unicast(dev, apdev, "secp384r1",
  989. require_conf_success=True)
  990. def test_dpp_config_dpp_override_secp521r1(dev, apdev):
  991. """DPP Config Object override (P-521)"""
  992. check_dpp_capab(dev[0])
  993. check_dpp_capab(dev[1])
  994. 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"}}}'
  995. dev[0].set("dpp_ignore_netaccesskey_mismatch", "1")
  996. dev[1].set("dpp_config_obj_override", conf)
  997. run_dpp_qr_code_auth_unicast(dev, apdev, "secp521r1",
  998. require_conf_success=True)
  999. def test_dpp_config_override_objects(dev, apdev):
  1000. """Generate DPP Config Object and override objects)"""
  1001. check_dpp_capab(dev[1])
  1002. discovery = '{\n"ssid":"mywifi"\n}'
  1003. groups = '[\n {"groupId":"home","netRole":"sta"},\n {"groupId":"cottage","netRole":"sta"}\n]'
  1004. dev[1].set("dpp_discovery_override", discovery)
  1005. dev[1].set("dpp_groups_override", groups)
  1006. run_dpp_qr_code_auth_unicast(dev, apdev, "prime256v1",
  1007. init_extra="conf=sta-dpp",
  1008. require_conf_success=True,
  1009. configurator=True)
  1010. def test_dpp_gas_timeout(dev, apdev):
  1011. """DPP and GAS server timeout for a query"""
  1012. check_dpp_capab(dev[0])
  1013. check_dpp_capab(dev[1])
  1014. logger.info("dev0 displays QR Code")
  1015. addr = dev[0].own_addr().replace(':', '')
  1016. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1017. res = dev[0].request(cmd)
  1018. if "FAIL" in res:
  1019. raise Exception("Failed to generate bootstrapping info")
  1020. id0 = int(res)
  1021. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1022. logger.info("dev1 scans QR Code")
  1023. res = dev[1].request("DPP_QR_CODE " + uri0)
  1024. if "FAIL" in res:
  1025. raise Exception("Failed to parse QR Code URI")
  1026. id1 = int(res)
  1027. logger.info("dev1 initiates DPP Authentication")
  1028. dev[0].set("ext_mgmt_frame_handling", "1")
  1029. cmd = "DPP_LISTEN 2412"
  1030. if "OK" not in dev[0].request(cmd):
  1031. raise Exception("Failed to start listen operation")
  1032. # Force GAS fragmentation
  1033. conf = '{"wi-fi_tech":"infra", "discovery":{"ssid":"test"},"cred":{"akm":"psk","pass":"secret passphrase"}}' + 3000*' '
  1034. dev[1].set("dpp_config_obj_override", conf)
  1035. cmd = "DPP_AUTH_INIT peer=%d" % id1
  1036. if "OK" not in dev[1].request(cmd):
  1037. raise Exception("Failed to initiate DPP Authentication")
  1038. # DPP Authentication Request
  1039. msg = dev[0].mgmt_rx()
  1040. 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'))):
  1041. raise Exception("MGMT_RX_PROCESS failed")
  1042. # DPP Authentication Confirmation
  1043. msg = dev[0].mgmt_rx()
  1044. 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'))):
  1045. raise Exception("MGMT_RX_PROCESS failed")
  1046. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1047. if ev is None:
  1048. raise Exception("DPP authentication did not succeed (Responder)")
  1049. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1050. if ev is None:
  1051. raise Exception("DPP authentication did not succeed (Initiator)")
  1052. # DPP Configuration Response (GAS Initial Response frame)
  1053. msg = dev[0].mgmt_rx()
  1054. 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'))):
  1055. raise Exception("MGMT_RX_PROCESS failed")
  1056. # GAS Comeback Response frame
  1057. msg = dev[0].mgmt_rx()
  1058. # Do not continue to force timeout on GAS server
  1059. ev = dev[0].wait_event(["GAS-QUERY-DONE"], timeout=10)
  1060. if ev is None:
  1061. raise Exception("GAS result not reported (Enrollee)")
  1062. if "result=TIMEOUT" not in ev:
  1063. raise Exception("Unexpected GAS result (Enrollee): " + ev)
  1064. dev[0].set("ext_mgmt_frame_handling", "0")
  1065. ev = dev[1].wait_event(["DPP-CONF-FAILED"], timeout=15)
  1066. if ev is None:
  1067. raise Exception("DPP configuration failure not reported (Configurator)")
  1068. ev = dev[0].wait_event(["DPP-CONF-FAILED"], timeout=1)
  1069. if ev is None:
  1070. raise Exception("DPP configuration failure not reported (Enrollee)")
  1071. def test_dpp_akm_sha256(dev, apdev):
  1072. """DPP AKM (SHA256)"""
  1073. run_dpp_akm(dev, apdev, 32)
  1074. def test_dpp_akm_sha384(dev, apdev):
  1075. """DPP AKM (SHA384)"""
  1076. run_dpp_akm(dev, apdev, 48)
  1077. def test_dpp_akm_sha512(dev, apdev):
  1078. """DPP AKM (SHA512)"""
  1079. run_dpp_akm(dev, apdev, 64)
  1080. def run_dpp_akm(dev, apdev, pmk_len):
  1081. check_dpp_capab(dev[0])
  1082. check_dpp_capab(dev[1])
  1083. params = { "ssid": "dpp",
  1084. "wpa": "2",
  1085. "wpa_key_mgmt": "DPP",
  1086. "rsn_pairwise": "CCMP",
  1087. "ieee80211w": "2" }
  1088. try:
  1089. hapd = hostapd.add_ap(apdev[0], params)
  1090. except:
  1091. raise HwsimSkip("DPP not supported")
  1092. id = dev[0].connect("dpp", key_mgmt="DPP", ieee80211w="2", scan_freq="2412",
  1093. wait_connect=False)
  1094. ev = dev[0].wait_event(["CTRL-EVENT-NETWORK-NOT-FOUND"], timeout=2)
  1095. if not ev:
  1096. raise Exception("Network mismatch not reported")
  1097. dev[0].request("DISCONNECT")
  1098. dev[0].dump_monitor()
  1099. bssid = hapd.own_addr()
  1100. pmkid = 16*'11'
  1101. akmp = 2**23
  1102. pmk = pmk_len*'22'
  1103. cmd = "PMKSA_ADD %d %s %s %s 30240 43200 %d 0" % (id, bssid, pmkid, pmk, akmp)
  1104. if "OK" not in dev[0].request(cmd):
  1105. raise Exception("PMKSA_ADD failed (wpa_supplicant)")
  1106. dev[0].select_network(id, freq="2412")
  1107. ev = dev[0].wait_event(["CTRL-EVENT-ASSOC-REJECT"], timeout=2)
  1108. dev[0].request("DISCONNECT")
  1109. dev[0].dump_monitor()
  1110. if not ev:
  1111. raise Exception("Association attempt was not rejected")
  1112. if "status_code=53" not in ev:
  1113. raise Exception("Unexpected status code: " + ev)
  1114. addr = dev[0].own_addr()
  1115. cmd = "PMKSA_ADD %s %s %s 0 %d" % (addr, pmkid, pmk, akmp)
  1116. if "OK" not in hapd.request(cmd):
  1117. raise Exception("PMKSA_ADD failed (hostapd)")
  1118. dev[0].select_network(id, freq="2412")
  1119. dev[0].wait_connected()
  1120. val = dev[0].get_status_field("key_mgmt")
  1121. if val != "DPP":
  1122. raise Exception("Unexpected key_mgmt: " + val)
  1123. def test_dpp_network_introduction(dev, apdev):
  1124. """DPP network introduction"""
  1125. check_dpp_capab(dev[0])
  1126. check_dpp_capab(dev[1])
  1127. csign = "3059301306072a8648ce3d020106082a8648ce3d03010703420004d02e5bd81a120762b5f0f2994777f5d40297238a6c294fd575cdf35fabec44c050a6421c401d98d659fd2ed13c961cc8287944dd3202f516977800d3ab2f39ee"
  1128. ap_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJzOEFrYjg5bTV4UGhoYk5UbTVmVVo0eVBzNU5VMkdxYXNRY3hXUWhtQVFRIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6ImFwIn1dLCJuZXRBY2Nlc3NLZXkiOnsia3R5IjoiRUMiLCJjcnYiOiJQLTI1NiIsIngiOiIwOHF4TlNYRzRWemdCV3BjVUdNSmc1czNvbElOVFJsRVQ1aERpNkRKY3ZjIiwieSI6IlVhaGFYQXpKRVpRQk1YaHRUQnlZZVlrOWtJYjk5UDA3UV9NcW9TVVZTVEkifX0.a5_nfMVr7Qe1SW0ZL3u6oQRm5NUCYUSfixDAJOUFN3XUfECBZ6E8fm8xjeSfdOytgRidTz0CTlIRjzPQo82dmQ"
  1129. ap_netaccesskey = "30770201010420f6531d17f29dfab655b7c9e923478d5a345164c489aadd44a3519c3e9dcc792da00a06082a8648ce3d030107a14403420004d3cab13525c6e15ce0056a5c506309839b37a2520d4d19444f98438ba0c972f751a85a5c0cc911940131786d4c1c9879893d9086fdf4fd3b43f32aa125154932"
  1130. sta_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJzOEFrYjg5bTV4UGhoYk5UbTVmVVo0eVBzNU5VMkdxYXNRY3hXUWhtQVFRIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6InN0YSJ9XSwibmV0QWNjZXNzS2V5Ijp7Imt0eSI6IkVDIiwiY3J2IjoiUC0yNTYiLCJ4IjoiZWMzR3NqQ3lQMzVBUUZOQUJJdEltQnN4WXVyMGJZX1dES1lfSE9zUGdjNCIsInkiOiJTRS1HVllkdWVnTFhLMU1TQXZNMEx2QWdLREpTNWoyQVhCbE9PMTdUSTRBIn19.PDK9zsGlK-e1pEOmNxVeJfCS8pNeay6ckIS1TXCQsR64AR-9wFPCNVjqOxWvVKltehyMFqVAtOcv0IrjtMJFqQ"
  1131. sta_netaccesskey = "30770201010420bc33380c26fd2168b69cd8242ed1df07ba89aa4813f8d4e8523de6ca3f8dd28ba00a06082a8648ce3d030107a1440342000479cdc6b230b23f7e40405340048b48981b3162eaf46d8fd60ca63f1ceb0f81ce484f8655876e7a02d72b531202f3342ef020283252e63d805c194e3b5ed32380"
  1132. params = { "ssid": "dpp",
  1133. "wpa": "2",
  1134. "wpa_key_mgmt": "DPP",
  1135. "ieee80211w": "2",
  1136. "rsn_pairwise": "CCMP",
  1137. "dpp_connector": ap_connector,
  1138. "dpp_csign": csign,
  1139. "dpp_netaccesskey": ap_netaccesskey }
  1140. try:
  1141. hapd = hostapd.add_ap(apdev[0], params)
  1142. except:
  1143. raise HwsimSkip("DPP not supported")
  1144. id = dev[0].connect("dpp", key_mgmt="DPP", scan_freq="2412",
  1145. ieee80211w="2",
  1146. dpp_csign=csign,
  1147. dpp_connector=sta_connector,
  1148. dpp_netaccesskey=sta_netaccesskey)
  1149. val = dev[0].get_status_field("key_mgmt")
  1150. if val != "DPP":
  1151. raise Exception("Unexpected key_mgmt: " + val)
  1152. def test_dpp_ap_config(dev, apdev):
  1153. """DPP and AP configuration"""
  1154. run_dpp_ap_config(dev, apdev)
  1155. def test_dpp_ap_config_p256_p256(dev, apdev):
  1156. """DPP and AP configuration (P-256 + P-256)"""
  1157. run_dpp_ap_config(dev, apdev, curve="P-256", conf_curve="P-256")
  1158. def test_dpp_ap_config_p256_p384(dev, apdev):
  1159. """DPP and AP configuration (P-256 + P-384)"""
  1160. run_dpp_ap_config(dev, apdev, curve="P-256", conf_curve="P-384")
  1161. def test_dpp_ap_config_p256_p521(dev, apdev):
  1162. """DPP and AP configuration (P-256 + P-521)"""
  1163. run_dpp_ap_config(dev, apdev, curve="P-256", conf_curve="P-521")
  1164. def test_dpp_ap_config_p384_p256(dev, apdev):
  1165. """DPP and AP configuration (P-384 + P-256)"""
  1166. run_dpp_ap_config(dev, apdev, curve="P-384", conf_curve="P-256")
  1167. def test_dpp_ap_config_p384_p384(dev, apdev):
  1168. """DPP and AP configuration (P-384 + P-384)"""
  1169. run_dpp_ap_config(dev, apdev, curve="P-384", conf_curve="P-384")
  1170. def test_dpp_ap_config_p384_p521(dev, apdev):
  1171. """DPP and AP configuration (P-384 + P-521)"""
  1172. run_dpp_ap_config(dev, apdev, curve="P-384", conf_curve="P-521")
  1173. def test_dpp_ap_config_p521_p256(dev, apdev):
  1174. """DPP and AP configuration (P-521 + P-256)"""
  1175. run_dpp_ap_config(dev, apdev, curve="P-521", conf_curve="P-256")
  1176. def test_dpp_ap_config_p521_p384(dev, apdev):
  1177. """DPP and AP configuration (P-521 + P-384)"""
  1178. run_dpp_ap_config(dev, apdev, curve="P-521", conf_curve="P-384")
  1179. def test_dpp_ap_config_p521_p521(dev, apdev):
  1180. """DPP and AP configuration (P-521 + P-521)"""
  1181. run_dpp_ap_config(dev, apdev, curve="P-521", conf_curve="P-521")
  1182. def update_hapd_config(hapd):
  1183. ev = hapd.wait_event(["DPP-CONFOBJ-SSID"], timeout=1)
  1184. if ev is None:
  1185. raise Exception("SSID not reported (AP)")
  1186. ssid = ev.split(' ')[1]
  1187. ev = hapd.wait_event(["DPP-CONNECTOR"], timeout=1)
  1188. if ev is None:
  1189. raise Exception("Connector not reported (AP)")
  1190. connector = ev.split(' ')[1]
  1191. ev = hapd.wait_event(["DPP-C-SIGN-KEY"], timeout=1)
  1192. if ev is None:
  1193. raise Exception("C-sign-key not reported (AP)")
  1194. p = ev.split(' ')
  1195. csign = p[1]
  1196. ev = hapd.wait_event(["DPP-NET-ACCESS-KEY"], timeout=1)
  1197. if ev is None:
  1198. raise Exception("netAccessKey not reported (AP)")
  1199. p = ev.split(' ')
  1200. net_access_key = p[1]
  1201. net_access_key_expiry = p[2] if len(p) > 2 else None
  1202. logger.info("Update AP configuration to use key_mgmt=DPP")
  1203. hapd.disable()
  1204. hapd.set("ssid", ssid)
  1205. hapd.set("wpa", "2")
  1206. hapd.set("wpa_key_mgmt", "DPP")
  1207. hapd.set("ieee80211w", "2")
  1208. hapd.set("rsn_pairwise", "CCMP")
  1209. hapd.set("dpp_connector", connector)
  1210. hapd.set("dpp_csign", csign)
  1211. hapd.set("dpp_netaccesskey", net_access_key)
  1212. if net_access_key_expiry:
  1213. hapd.set("dpp_netaccesskey_expiry", net_access_key_expiry)
  1214. hapd.enable()
  1215. def run_dpp_ap_config(dev, apdev, curve=None, conf_curve=None):
  1216. check_dpp_capab(dev[0])
  1217. check_dpp_capab(dev[1])
  1218. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured" })
  1219. check_dpp_capab(hapd)
  1220. addr = hapd.own_addr().replace(':', '')
  1221. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1222. if curve:
  1223. cmd += " curve=" + curve
  1224. res = hapd.request(cmd)
  1225. if "FAIL" in res:
  1226. raise Exception("Failed to generate bootstrapping info")
  1227. id_h = int(res)
  1228. uri = hapd.request("DPP_BOOTSTRAP_GET_URI %d" % id_h)
  1229. cmd = "DPP_CONFIGURATOR_ADD"
  1230. if conf_curve:
  1231. cmd += " curve=" + conf_curve
  1232. res = dev[0].request(cmd);
  1233. if "FAIL" in res:
  1234. raise Exception("Failed to add configurator")
  1235. conf_id = int(res)
  1236. res = dev[0].request("DPP_QR_CODE " + uri)
  1237. if "FAIL" in res:
  1238. raise Exception("Failed to parse QR Code URI")
  1239. id = int(res)
  1240. cmd = "DPP_AUTH_INIT peer=%d conf=ap-dpp configurator=%d" % (id, conf_id)
  1241. if "OK" not in dev[0].request(cmd):
  1242. raise Exception("Failed to initiate DPP Authentication")
  1243. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1244. if ev is None:
  1245. raise Exception("DPP authentication did not succeed (Responder)")
  1246. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1247. if ev is None:
  1248. raise Exception("DPP authentication did not succeed (Initiator)")
  1249. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  1250. if ev is None:
  1251. raise Exception("DPP configuration not completed (Configurator)")
  1252. ev = hapd.wait_event(["DPP-CONF-RECEIVED", "DPP-CONF-FAILED"], timeout=5)
  1253. if ev is None:
  1254. raise Exception("DPP configuration not completed (Enrollee)")
  1255. if "DPP-CONF-FAILED" in ev:
  1256. raise Exception("DPP configuration failed")
  1257. update_hapd_config(hapd)
  1258. addr = dev[1].own_addr().replace(':', '')
  1259. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1260. if curve:
  1261. cmd += " curve=" + curve
  1262. res = dev[1].request(cmd)
  1263. if "FAIL" in res:
  1264. raise Exception("Failed to generate bootstrapping info")
  1265. id1 = int(res)
  1266. uri1 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1)
  1267. res = dev[0].request("DPP_QR_CODE " + uri1)
  1268. if "FAIL" in res:
  1269. raise Exception("Failed to parse QR Code URI")
  1270. id0b = int(res)
  1271. cmd = "DPP_LISTEN 2412"
  1272. if "OK" not in dev[1].request(cmd):
  1273. raise Exception("Failed to start listen operation")
  1274. cmd = "DPP_AUTH_INIT peer=%d conf=sta-dpp configurator=%d" % (id0b, conf_id)
  1275. if "OK" not in dev[0].request(cmd):
  1276. raise Exception("Failed to initiate DPP Authentication")
  1277. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1278. if ev is None:
  1279. raise Exception("DPP authentication did not succeed (Responder)")
  1280. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1281. if ev is None:
  1282. raise Exception("DPP authentication did not succeed (Initiator)")
  1283. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  1284. if ev is None:
  1285. raise Exception("DPP configuration not completed (Configurator)")
  1286. ev = dev[1].wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  1287. if ev is None:
  1288. raise Exception("DPP configuration not completed (Enrollee)")
  1289. dev[1].request("DPP_STOP_LISTEN")
  1290. ev = dev[1].wait_event(["DPP-CONFOBJ-SSID"], timeout=1)
  1291. if ev is None:
  1292. raise Exception("SSID not reported")
  1293. ssid = ev.split(' ')[1]
  1294. ev = dev[1].wait_event(["DPP-CONNECTOR"], timeout=1)
  1295. if ev is None:
  1296. raise Exception("Connector not reported")
  1297. connector = ev.split(' ')[1]
  1298. ev = dev[1].wait_event(["DPP-C-SIGN-KEY"], timeout=1)
  1299. if ev is None:
  1300. raise Exception("C-sign-key not reported")
  1301. p = ev.split(' ')
  1302. csign = p[1]
  1303. ev = dev[1].wait_event(["DPP-NET-ACCESS-KEY"], timeout=1)
  1304. if ev is None:
  1305. raise Exception("netAccessKey not reported")
  1306. p = ev.split(' ')
  1307. net_access_key = p[1]
  1308. net_access_key_expiry = p[2] if len(p) > 2 else None
  1309. dev[1].dump_monitor()
  1310. id = dev[1].connect(ssid, key_mgmt="DPP", ieee80211w="2", scan_freq="2412",
  1311. only_add_network=True)
  1312. dev[1].set_network_quoted(id, "dpp_connector", connector)
  1313. dev[1].set_network(id, "dpp_csign", csign)
  1314. dev[1].set_network(id, "dpp_netaccesskey", net_access_key)
  1315. if net_access_key_expiry:
  1316. dev[1].set_network(id, "dpp_netaccess_expiry", net_access_key_expiry)
  1317. logger.info("Check data connection")
  1318. dev[1].select_network(id, freq="2412")
  1319. dev[1].wait_connected()
  1320. def test_dpp_auto_connect_1(dev, apdev):
  1321. """DPP and auto connect (1)"""
  1322. try:
  1323. run_dpp_auto_connect(dev, apdev, 1)
  1324. finally:
  1325. dev[0].set("dpp_config_processing", "0")
  1326. def test_dpp_auto_connect_2(dev, apdev):
  1327. """DPP and auto connect (2)"""
  1328. try:
  1329. run_dpp_auto_connect(dev, apdev, 2)
  1330. finally:
  1331. dev[0].set("dpp_config_processing", "0")
  1332. def test_dpp_auto_connect_2_connect_cmd(dev, apdev):
  1333. """DPP and auto connect (2) using connect_cmd"""
  1334. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  1335. wpas.interface_add("wlan5", drv_params="force_connect_cmd=1")
  1336. dev_new = [ wpas, dev[1] ]
  1337. try:
  1338. run_dpp_auto_connect(dev_new, apdev, 2)
  1339. finally:
  1340. wpas.set("dpp_config_processing", "0")
  1341. def run_dpp_auto_connect(dev, apdev, processing):
  1342. check_dpp_capab(dev[0])
  1343. check_dpp_capab(dev[1])
  1344. csign = "30770201010420768240a3fc89d6662d9782f120527fe7fb9edc6366ab0b9c7dde96125cfd250fa00a06082a8648ce3d030107a144034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  1345. csign_pub = "3059301306072a8648ce3d020106082a8648ce3d030107034200042908e1baf7bf413cc66f9e878a03e8bb1835ba94b033dbe3d6969fc8575d5eb5dfda1cb81c95cee21d0cd7d92ba30541ffa05cb6296f5dd808b0c1c2a83c0708"
  1346. ap_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJwYWtZbXVzd1dCdWpSYTl5OEsweDViaTVrT3VNT3dzZHRlaml2UG55ZHZzIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6ImFwIn1dLCJuZXRBY2Nlc3NLZXkiOnsia3R5IjoiRUMiLCJjcnYiOiJQLTI1NiIsIngiOiIybU5vNXZuRkI5bEw3d1VWb1hJbGVPYzBNSEE1QXZKbnpwZXZULVVTYzVNIiwieSI6IlhzS3dqVHJlLTg5WWdpU3pKaG9CN1haeUttTU05OTl3V2ZaSVl0bi01Q3MifX0.XhjFpZgcSa7G2lHy0OCYTvaZFRo5Hyx6b7g7oYyusLC7C_73AJ4_BxEZQVYJXAtDuGvb3dXSkHEKxREP9Q6Qeg"
  1347. ap_netaccesskey = "30770201010420ceba752db2ad5200fa7bc565b9c05c69b7eb006751b0b329b0279de1c19ca67ca00a06082a8648ce3d030107a14403420004da6368e6f9c507d94bef0515a1722578e73430703902f267ce97af4fe51273935ec2b08d3adefbcf588224b3261a01ed76722a630cf7df7059f64862d9fee42b"
  1348. params = { "ssid": "test",
  1349. "wpa": "2",
  1350. "wpa_key_mgmt": "DPP",
  1351. "ieee80211w": "2",
  1352. "rsn_pairwise": "CCMP",
  1353. "dpp_connector": ap_connector,
  1354. "dpp_csign": csign_pub,
  1355. "dpp_netaccesskey": ap_netaccesskey }
  1356. try:
  1357. hapd = hostapd.add_ap(apdev[0], params)
  1358. except:
  1359. raise HwsimSkip("DPP not supported")
  1360. cmd = "DPP_CONFIGURATOR_ADD key=" + csign
  1361. res = dev[1].request(cmd)
  1362. if "FAIL" in res:
  1363. raise Exception("DPP_CONFIGURATOR_ADD failed")
  1364. conf_id = int(res)
  1365. dev[0].set("dpp_config_processing", str(processing))
  1366. addr = dev[0].own_addr().replace(':', '')
  1367. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1368. res = dev[0].request(cmd)
  1369. if "FAIL" in res:
  1370. raise Exception("Failed to generate bootstrapping info")
  1371. id0 = int(res)
  1372. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1373. res = dev[1].request("DPP_QR_CODE " + uri0)
  1374. if "FAIL" in res:
  1375. raise Exception("Failed to parse QR Code URI")
  1376. id1 = int(res)
  1377. cmd = "DPP_LISTEN 2412"
  1378. if "OK" not in dev[0].request(cmd):
  1379. raise Exception("Failed to start listen operation")
  1380. cmd = "DPP_AUTH_INIT peer=%d conf=sta-dpp configurator=%d" % (id1, conf_id)
  1381. if "OK" not in dev[1].request(cmd):
  1382. raise Exception("Failed to initiate DPP Authentication")
  1383. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=10)
  1384. if ev is None:
  1385. raise Exception("DPP configuration not completed (Configurator)")
  1386. ev = dev[0].wait_event(["DPP-CONF-RECEIVED"], timeout=2)
  1387. if ev is None:
  1388. raise Exception("DPP configuration not completed (Enrollee)")
  1389. ev = dev[0].wait_event(["DPP-NETWORK-ID"], timeout=1)
  1390. if ev is None:
  1391. raise Exception("DPP network profile not generated")
  1392. id = ev.split(' ')[1]
  1393. if processing == 1:
  1394. dev[0].select_network(id, freq=2412)
  1395. dev[0].wait_connected()
  1396. hwsim_utils.test_connectivity(dev[0], hapd)
  1397. def test_dpp_auto_connect_legacy(dev, apdev):
  1398. """DPP and auto connect (legacy)"""
  1399. try:
  1400. run_dpp_auto_connect_legacy(dev, apdev)
  1401. finally:
  1402. dev[0].set("dpp_config_processing", "0")
  1403. def test_dpp_auto_connect_legacy_sae_1(dev, apdev):
  1404. """DPP and auto connect (legacy SAE)"""
  1405. try:
  1406. run_dpp_auto_connect_legacy(dev, apdev, conf='sta-sae', psk_sae=True)
  1407. finally:
  1408. dev[0].set("dpp_config_processing", "0")
  1409. def test_dpp_auto_connect_legacy_sae_2(dev, apdev):
  1410. """DPP and auto connect (legacy SAE)"""
  1411. try:
  1412. run_dpp_auto_connect_legacy(dev, apdev, conf='sta-sae', sae_only=True)
  1413. finally:
  1414. dev[0].set("dpp_config_processing", "0")
  1415. def test_dpp_auto_connect_legacy_psk_sae_1(dev, apdev):
  1416. """DPP and auto connect (legacy PSK+SAE)"""
  1417. try:
  1418. run_dpp_auto_connect_legacy(dev, apdev, conf='sta-psk-sae',
  1419. psk_sae=True)
  1420. finally:
  1421. dev[0].set("dpp_config_processing", "0")
  1422. def test_dpp_auto_connect_legacy_psk_sae_2(dev, apdev):
  1423. """DPP and auto connect (legacy PSK+SAE)"""
  1424. try:
  1425. run_dpp_auto_connect_legacy(dev, apdev, conf='sta-psk-sae',
  1426. sae_only=True)
  1427. finally:
  1428. dev[0].set("dpp_config_processing", "0")
  1429. def test_dpp_auto_connect_legacy_psk_sae_3(dev, apdev):
  1430. """DPP and auto connect (legacy PSK+SAE)"""
  1431. try:
  1432. run_dpp_auto_connect_legacy(dev, apdev, conf='sta-psk-sae')
  1433. finally:
  1434. dev[0].set("dpp_config_processing", "0")
  1435. def run_dpp_auto_connect_legacy(dev, apdev, conf='sta-psk',
  1436. psk_sae=False, sae_only=False):
  1437. check_dpp_capab(dev[0])
  1438. check_dpp_capab(dev[1])
  1439. params = hostapd.wpa2_params(ssid="dpp-legacy",
  1440. passphrase="secret passphrase")
  1441. if sae_only:
  1442. params['wpa_key_mgmt'] = 'SAE'
  1443. params['ieee80211w'] = '2'
  1444. elif psk_sae:
  1445. params['wpa_key_mgmt'] = 'WPA-PSK SAE'
  1446. params['ieee80211w'] = '1'
  1447. params['sae_require_mfp'] = '1'
  1448. hapd = hostapd.add_ap(apdev[0], params)
  1449. dev[0].set("dpp_config_processing", "2")
  1450. addr = dev[0].own_addr().replace(':', '')
  1451. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1452. res = dev[0].request(cmd)
  1453. if "FAIL" in res:
  1454. raise Exception("Failed to generate bootstrapping info")
  1455. id0 = int(res)
  1456. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1457. res = dev[1].request("DPP_QR_CODE " + uri0)
  1458. if "FAIL" in res:
  1459. raise Exception("Failed to parse QR Code URI")
  1460. id1 = int(res)
  1461. cmd = "DPP_LISTEN 2412"
  1462. if "OK" not in dev[0].request(cmd):
  1463. raise Exception("Failed to start listen operation")
  1464. cmd = "DPP_AUTH_INIT peer=%d conf=%s ssid=%s pass=%s" % (id1, conf, "dpp-legacy".encode("hex"), "secret passphrase".encode("hex"))
  1465. if "OK" not in dev[1].request(cmd):
  1466. raise Exception("Failed to initiate DPP Authentication")
  1467. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=10)
  1468. if ev is None:
  1469. raise Exception("DPP configuration not completed (Configurator)")
  1470. ev = dev[0].wait_event(["DPP-CONF-RECEIVED"], timeout=2)
  1471. if ev is None:
  1472. raise Exception("DPP configuration not completed (Enrollee)")
  1473. ev = dev[0].wait_event(["DPP-NETWORK-ID"], timeout=1)
  1474. if ev is None:
  1475. raise Exception("DPP network profile not generated")
  1476. id = ev.split(' ')[1]
  1477. dev[0].wait_connected()
  1478. def test_dpp_auto_connect_legacy_pmf_required(dev, apdev):
  1479. """DPP and auto connect (legacy, PMF required)"""
  1480. try:
  1481. run_dpp_auto_connect_legacy_pmf_required(dev, apdev)
  1482. finally:
  1483. dev[0].set("dpp_config_processing", "0")
  1484. def run_dpp_auto_connect_legacy_pmf_required(dev, apdev):
  1485. check_dpp_capab(dev[0])
  1486. check_dpp_capab(dev[1])
  1487. params = hostapd.wpa2_params(ssid="dpp-legacy",
  1488. passphrase="secret passphrase")
  1489. params['wpa_key_mgmt'] = "WPA-PSK-SHA256"
  1490. params['ieee80211w'] = "2"
  1491. hapd = hostapd.add_ap(apdev[0], params)
  1492. dev[0].set("dpp_config_processing", "2")
  1493. addr = dev[0].own_addr().replace(':', '')
  1494. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1495. res = dev[0].request(cmd)
  1496. if "FAIL" in res:
  1497. raise Exception("Failed to generate bootstrapping info")
  1498. id0 = int(res)
  1499. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1500. res = dev[1].request("DPP_QR_CODE " + uri0)
  1501. if "FAIL" in res:
  1502. raise Exception("Failed to parse QR Code URI")
  1503. id1 = int(res)
  1504. cmd = "DPP_LISTEN 2412"
  1505. if "OK" not in dev[0].request(cmd):
  1506. raise Exception("Failed to start listen operation")
  1507. cmd = "DPP_AUTH_INIT peer=%d conf=sta-psk ssid=%s pass=%s" % (id1, "dpp-legacy".encode("hex"), "secret passphrase".encode("hex"))
  1508. if "OK" not in dev[1].request(cmd):
  1509. raise Exception("Failed to initiate DPP Authentication")
  1510. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=10)
  1511. if ev is None:
  1512. raise Exception("DPP configuration not completed (Configurator)")
  1513. ev = dev[0].wait_event(["DPP-CONF-RECEIVED"], timeout=2)
  1514. if ev is None:
  1515. raise Exception("DPP configuration not completed (Enrollee)")
  1516. ev = dev[0].wait_event(["DPP-NETWORK-ID"], timeout=1)
  1517. if ev is None:
  1518. raise Exception("DPP network profile not generated")
  1519. id = ev.split(' ')[1]
  1520. dev[0].wait_connected()
  1521. def test_dpp_qr_code_auth_responder_configurator(dev, apdev):
  1522. """DPP QR Code and responder as the configurator"""
  1523. check_dpp_capab(dev[0])
  1524. check_dpp_capab(dev[1])
  1525. cmd = "DPP_CONFIGURATOR_ADD"
  1526. res = dev[0].request(cmd);
  1527. if "FAIL" in res:
  1528. raise Exception("Failed to add configurator")
  1529. conf_id = int(res)
  1530. addr = dev[0].own_addr().replace(':', '')
  1531. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  1532. res = dev[0].request(cmd)
  1533. if "FAIL" in res:
  1534. raise Exception("Failed to generate bootstrapping info")
  1535. id0 = int(res)
  1536. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1537. res = dev[1].request("DPP_QR_CODE " + uri0)
  1538. if "FAIL" in res:
  1539. raise Exception("Failed to parse QR Code URI")
  1540. id1 = int(res)
  1541. dev[0].set("dpp_configurator_params", " conf=sta-dpp configurator=%d" % conf_id);
  1542. cmd = "DPP_LISTEN 2412 role=configurator"
  1543. if "OK" not in dev[0].request(cmd):
  1544. raise Exception("Failed to start listen operation")
  1545. cmd = "DPP_AUTH_INIT peer=%d role=enrollee" % id1
  1546. if "OK" not in dev[1].request(cmd):
  1547. raise Exception("Failed to initiate DPP Authentication")
  1548. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1549. if ev is None:
  1550. raise Exception("DPP authentication did not succeed (Responder)")
  1551. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1552. if ev is None:
  1553. raise Exception("DPP authentication did not succeed (Initiator)")
  1554. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  1555. if ev is None:
  1556. raise Exception("DPP configuration not completed (Configurator)")
  1557. ev = dev[1].wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  1558. if ev is None:
  1559. raise Exception("DPP configuration not completed (Enrollee)")
  1560. dev[0].request("DPP_STOP_LISTEN")
  1561. dev[0].dump_monitor()
  1562. dev[1].dump_monitor()
  1563. def test_dpp_qr_code_hostapd_init(dev, apdev):
  1564. """DPP QR Code and hostapd as initiator"""
  1565. check_dpp_capab(dev[0])
  1566. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured",
  1567. "channel": "6" })
  1568. check_dpp_capab(hapd)
  1569. cmd = "DPP_CONFIGURATOR_ADD"
  1570. res = dev[0].request(cmd);
  1571. if "FAIL" in res:
  1572. raise Exception("Failed to add configurator")
  1573. conf_id = int(res)
  1574. addr = dev[0].own_addr().replace(':', '')
  1575. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/6 mac=" + addr
  1576. res = dev[0].request(cmd)
  1577. if "FAIL" in res:
  1578. raise Exception("Failed to generate bootstrapping info")
  1579. id0 = int(res)
  1580. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1581. dev[0].set("dpp_configurator_params",
  1582. " conf=ap-dpp configurator=%d" % conf_id);
  1583. cmd = "DPP_LISTEN 2437 role=configurator"
  1584. if "OK" not in dev[0].request(cmd):
  1585. raise Exception("Failed to start listen operation")
  1586. res = hapd.request("DPP_QR_CODE " + uri0)
  1587. if "FAIL" in res:
  1588. raise Exception("Failed to parse QR Code URI")
  1589. id1 = int(res)
  1590. cmd = "DPP_AUTH_INIT peer=%d role=enrollee" % id1
  1591. if "OK" not in hapd.request(cmd):
  1592. raise Exception("Failed to initiate DPP Authentication")
  1593. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1594. if ev is None:
  1595. raise Exception("DPP authentication did not succeed (Responder)")
  1596. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1597. if ev is None:
  1598. raise Exception("DPP authentication did not succeed (Initiator)")
  1599. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  1600. if ev is None:
  1601. raise Exception("DPP configuration not completed (Configurator)")
  1602. ev = hapd.wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  1603. if ev is None:
  1604. raise Exception("DPP configuration not completed (Enrollee)")
  1605. dev[0].request("DPP_STOP_LISTEN")
  1606. dev[0].dump_monitor()
  1607. def test_dpp_qr_code_hostapd_init_offchannel(dev, apdev):
  1608. """DPP QR Code and hostapd as initiator (offchannel)"""
  1609. run_dpp_qr_code_hostapd_init_offchannel(dev, apdev, None)
  1610. def test_dpp_qr_code_hostapd_init_offchannel_neg_freq(dev, apdev):
  1611. """DPP QR Code and hostapd as initiator (offchannel, neg_freq)"""
  1612. run_dpp_qr_code_hostapd_init_offchannel(dev, apdev, "neg_freq=2437")
  1613. def run_dpp_qr_code_hostapd_init_offchannel(dev, apdev, extra):
  1614. check_dpp_capab(dev[0])
  1615. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured",
  1616. "channel": "6" })
  1617. check_dpp_capab(hapd)
  1618. cmd = "DPP_CONFIGURATOR_ADD"
  1619. res = dev[0].request(cmd);
  1620. if "FAIL" in res:
  1621. raise Exception("Failed to add configurator")
  1622. conf_id = int(res)
  1623. addr = dev[0].own_addr().replace(':', '')
  1624. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1,81/11 mac=" + addr
  1625. res = dev[0].request(cmd)
  1626. if "FAIL" in res:
  1627. raise Exception("Failed to generate bootstrapping info")
  1628. id0 = int(res)
  1629. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1630. dev[0].set("dpp_configurator_params",
  1631. " conf=ap-dpp configurator=%d" % conf_id);
  1632. cmd = "DPP_LISTEN 2462 role=configurator"
  1633. if "OK" not in dev[0].request(cmd):
  1634. raise Exception("Failed to start listen operation")
  1635. res = hapd.request("DPP_QR_CODE " + uri0)
  1636. if "FAIL" in res:
  1637. raise Exception("Failed to parse QR Code URI")
  1638. id1 = int(res)
  1639. cmd = "DPP_AUTH_INIT peer=%d role=enrollee" % id1
  1640. if extra:
  1641. cmd += " " + extra
  1642. if "OK" not in hapd.request(cmd):
  1643. raise Exception("Failed to initiate DPP Authentication")
  1644. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1645. if ev is None:
  1646. raise Exception("DPP authentication did not succeed (Responder)")
  1647. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1648. if ev is None:
  1649. raise Exception("DPP authentication did not succeed (Initiator)")
  1650. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  1651. if ev is None:
  1652. raise Exception("DPP configuration not completed (Configurator)")
  1653. ev = hapd.wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  1654. if ev is None:
  1655. raise Exception("DPP configuration not completed (Enrollee)")
  1656. dev[0].request("DPP_STOP_LISTEN")
  1657. dev[0].dump_monitor()
  1658. def test_dpp_test_vector_p_256(dev, apdev):
  1659. """DPP P-256 test vector (mutual auth)"""
  1660. check_dpp_capab(dev[0])
  1661. check_dpp_capab(dev[1])
  1662. # Responder bootstrapping key
  1663. priv = "54ce181a98525f217216f59b245f60e9df30ac7f6b26c939418cfc3c42d1afa0"
  1664. addr = dev[0].own_addr().replace(':', '')
  1665. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/11 mac=" + addr + " key=30310201010420" + priv + "a00a06082a8648ce3d030107"
  1666. res = dev[0].request(cmd)
  1667. if "FAIL" in res:
  1668. raise Exception("Failed to generate bootstrapping info")
  1669. id0 = int(res)
  1670. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1671. # Responder protocol keypair override
  1672. priv = "f798ed2e19286f6a6efe210b1863badb99af2a14b497634dbfd2a97394fb5aa5"
  1673. dev[0].set("dpp_protocol_key_override",
  1674. "30310201010420" + priv + "a00a06082a8648ce3d030107")
  1675. dev[0].set("dpp_nonce_override", "3d0cfb011ca916d796f7029ff0b43393")
  1676. # Initiator bootstrapping key
  1677. priv = "15b2a83c5a0a38b61f2aa8200ee4994b8afdc01c58507d10d0a38f7eedf051bb"
  1678. cmd = "DPP_BOOTSTRAP_GEN type=qrcode key=30310201010420" + priv + "a00a06082a8648ce3d030107"
  1679. res = dev[1].request(cmd)
  1680. if "FAIL" in res:
  1681. raise Exception("Failed to generate bootstrapping info")
  1682. id1 = int(res)
  1683. uri1 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1)
  1684. # Initiator protocol keypair override
  1685. priv = "a87de9afbb406c96e5f79a3df895ecac3ad406f95da66314c8cb3165e0c61783"
  1686. dev[1].set("dpp_protocol_key_override",
  1687. "30310201010420" + priv + "a00a06082a8648ce3d030107")
  1688. dev[1].set("dpp_nonce_override", "13f4602a16daeb69712263b9c46cba31")
  1689. res = dev[1].request("DPP_QR_CODE " + uri0)
  1690. if "FAIL" in res:
  1691. raise Exception("Failed to parse QR Code URI")
  1692. id1peer = int(res)
  1693. res = dev[0].request("DPP_QR_CODE " + uri1)
  1694. if "FAIL" in res:
  1695. raise Exception("Failed to parse QR Code URI")
  1696. id0peer = int(res)
  1697. cmd = "DPP_LISTEN 2462 qr=mutual"
  1698. if "OK" not in dev[0].request(cmd):
  1699. raise Exception("Failed to start listen operation")
  1700. cmd = "DPP_AUTH_INIT peer=%d own=%d neg_freq=2412" % (id1peer, id1)
  1701. if "OK" not in dev[1].request(cmd):
  1702. raise Exception("Failed to initiate operation")
  1703. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1704. if ev is None:
  1705. raise Exception("DPP authentication did not succeed (Initiator)")
  1706. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1707. if ev is None:
  1708. raise Exception("DPP authentication did not succeed (Responder)")
  1709. def test_dpp_test_vector_p_256_b(dev, apdev):
  1710. """DPP P-256 test vector (Responder-only auth)"""
  1711. check_dpp_capab(dev[0])
  1712. check_dpp_capab(dev[1])
  1713. # Responder bootstrapping key
  1714. priv = "54ce181a98525f217216f59b245f60e9df30ac7f6b26c939418cfc3c42d1afa0"
  1715. addr = dev[0].own_addr().replace(':', '')
  1716. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/11 mac=" + addr + " key=30310201010420" + priv + "a00a06082a8648ce3d030107"
  1717. res = dev[0].request(cmd)
  1718. if "FAIL" in res:
  1719. raise Exception("Failed to generate bootstrapping info")
  1720. id0 = int(res)
  1721. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1722. # Responder protocol keypair override
  1723. priv = "f798ed2e19286f6a6efe210b1863badb99af2a14b497634dbfd2a97394fb5aa5"
  1724. dev[0].set("dpp_protocol_key_override",
  1725. "30310201010420" + priv + "a00a06082a8648ce3d030107")
  1726. dev[0].set("dpp_nonce_override", "3d0cfb011ca916d796f7029ff0b43393")
  1727. # Initiator bootstrapping key
  1728. priv = "15b2a83c5a0a38b61f2aa8200ee4994b8afdc01c58507d10d0a38f7eedf051bb"
  1729. cmd = "DPP_BOOTSTRAP_GEN type=qrcode key=30310201010420" + priv + "a00a06082a8648ce3d030107"
  1730. res = dev[1].request(cmd)
  1731. if "FAIL" in res:
  1732. raise Exception("Failed to generate bootstrapping info")
  1733. id1 = int(res)
  1734. uri1 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1)
  1735. # Initiator protocol keypair override
  1736. priv = "a87de9afbb406c96e5f79a3df895ecac3ad406f95da66314c8cb3165e0c61783"
  1737. dev[1].set("dpp_protocol_key_override",
  1738. "30310201010420" + priv + "a00a06082a8648ce3d030107")
  1739. dev[1].set("dpp_nonce_override", "13f4602a16daeb69712263b9c46cba31")
  1740. res = dev[1].request("DPP_QR_CODE " + uri0)
  1741. if "FAIL" in res:
  1742. raise Exception("Failed to parse QR Code URI")
  1743. id1peer = int(res)
  1744. cmd = "DPP_LISTEN 2462"
  1745. if "OK" not in dev[0].request(cmd):
  1746. raise Exception("Failed to start listen operation")
  1747. cmd = "DPP_AUTH_INIT peer=%d own=%d neg_freq=2412" % (id1peer, id1)
  1748. if "OK" not in dev[1].request(cmd):
  1749. raise Exception("Failed to initiate operation")
  1750. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1751. if ev is None:
  1752. raise Exception("DPP authentication did not succeed (Initiator)")
  1753. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1754. if ev is None:
  1755. raise Exception("DPP authentication did not succeed (Responder)")
  1756. def der_priv_key_p_521(priv):
  1757. if len(priv) != 2 * 66:
  1758. raise Exception("Unexpected der_priv_key_p_521 parameter: " + priv)
  1759. der_prefix = "3081500201010442"
  1760. der_postfix = "a00706052b81040023"
  1761. return der_prefix + priv + der_postfix
  1762. def test_dpp_test_vector_p_521(dev, apdev):
  1763. """DPP P-521 test vector (mutual auth)"""
  1764. check_dpp_capab(dev[0])
  1765. check_dpp_capab(dev[1])
  1766. # Responder bootstrapping key
  1767. priv = "0061e54f518cdf859735da3dd64c6f72c2f086f41a6fd52915152ea2fe0f24ddaecd8883730c9c9fd82cf7c043a41021696388cf5190b731dd83638bcd56d8b6c743"
  1768. addr = dev[0].own_addr().replace(':', '')
  1769. #cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/11 mac=" + addr + " key=" + der_prefix + priv + der_postfix
  1770. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/11 mac=" + addr + " key=" + der_priv_key_p_521(priv)
  1771. res = dev[0].request(cmd)
  1772. if "FAIL" in res:
  1773. raise Exception("Failed to generate bootstrapping info")
  1774. id0 = int(res)
  1775. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  1776. # Responder protocol keypair override
  1777. priv = "01d8b7b17cd1b0a33f7c66fb4220999329cdaf4f8b44b2ffadde8ab8ed8abffa9f5358c5b1caae26709ca4fb78e52a4d08f2e4f24111a36a6f440d20a0000ff51597"
  1778. dev[0].set("dpp_protocol_key_override", der_priv_key_p_521(priv))
  1779. dev[0].set("dpp_nonce_override",
  1780. "d749a782012eb0a8595af30b2dfc8d0880d004ebddb55ecc5afbdef18c400e01")
  1781. # Initiator bootstrapping key
  1782. priv = "0060c10df14af5ef27f6e362d31bdd9eeb44be77a323ba64b08f3f03d58b92cbfe05c182a91660caa081ca344243c47b5aa088bcdf738840eb35f0218b9f26881e02"
  1783. cmd = "DPP_BOOTSTRAP_GEN type=qrcode key=" + der_priv_key_p_521(priv)
  1784. res = dev[1].request(cmd)
  1785. if "FAIL" in res:
  1786. raise Exception("Failed to generate bootstrapping info")
  1787. id1 = int(res)
  1788. uri1 = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1)
  1789. # Initiator protocol keypair override
  1790. priv = "019c1c08caaeec38fb931894699b095bc3ab8c1ec7ef0622d2e3eba821477c8c6fca41774f21166ad98aebda37c067d9aa08a8a2e1b5c44c61f2bae02a61f85d9661"
  1791. dev[1].set("dpp_protocol_key_override", der_priv_key_p_521(priv))
  1792. dev[1].set("dpp_nonce_override",
  1793. "de972af3847bec3ba2aedd9f5c21cfdec7bf0bc5fe8b276cbcd0267807fb15b0")
  1794. res = dev[1].request("DPP_QR_CODE " + uri0)
  1795. if "FAIL" in res:
  1796. raise Exception("Failed to parse QR Code URI")
  1797. id1peer = int(res)
  1798. res = dev[0].request("DPP_QR_CODE " + uri1)
  1799. if "FAIL" in res:
  1800. raise Exception("Failed to parse QR Code URI")
  1801. id0peer = int(res)
  1802. cmd = "DPP_LISTEN 2462 qr=mutual"
  1803. if "OK" not in dev[0].request(cmd):
  1804. raise Exception("Failed to start listen operation")
  1805. cmd = "DPP_AUTH_INIT peer=%d own=%d neg_freq=2412" % (id1peer, id1)
  1806. if "OK" not in dev[1].request(cmd):
  1807. raise Exception("Failed to initiate operation")
  1808. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1809. if ev is None:
  1810. raise Exception("DPP authentication did not succeed (Initiator)")
  1811. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1812. if ev is None:
  1813. raise Exception("DPP authentication did not succeed (Responder)")
  1814. def test_dpp_pkex(dev, apdev):
  1815. """DPP and PKEX"""
  1816. run_dpp_pkex(dev, apdev)
  1817. def test_dpp_pkex_p256(dev, apdev):
  1818. """DPP and PKEX (P-256)"""
  1819. run_dpp_pkex(dev, apdev, "P-256")
  1820. def test_dpp_pkex_p384(dev, apdev):
  1821. """DPP and PKEX (P-384)"""
  1822. run_dpp_pkex(dev, apdev, "P-384")
  1823. def test_dpp_pkex_p521(dev, apdev):
  1824. """DPP and PKEX (P-521)"""
  1825. run_dpp_pkex(dev, apdev, "P-521")
  1826. def test_dpp_pkex_bp256(dev, apdev):
  1827. """DPP and PKEX (BP-256)"""
  1828. run_dpp_pkex(dev, apdev, "brainpoolP256r1")
  1829. def test_dpp_pkex_bp384(dev, apdev):
  1830. """DPP and PKEX (BP-384)"""
  1831. run_dpp_pkex(dev, apdev, "brainpoolP384r1")
  1832. def test_dpp_pkex_bp512(dev, apdev):
  1833. """DPP and PKEX (BP-512)"""
  1834. run_dpp_pkex(dev, apdev, "brainpoolP512r1")
  1835. def test_dpp_pkex_config(dev, apdev):
  1836. """DPP and PKEX with initiator as the configurator"""
  1837. check_dpp_capab(dev[1])
  1838. cmd = "DPP_CONFIGURATOR_ADD"
  1839. res = dev[1].request(cmd);
  1840. if "FAIL" in res:
  1841. raise Exception("Failed to add configurator")
  1842. conf_id = int(res)
  1843. run_dpp_pkex(dev, apdev,
  1844. init_extra="conf=sta-dpp configurator=%d" % (conf_id),
  1845. check_config=True)
  1846. def run_dpp_pkex(dev, apdev, curve=None, init_extra="", check_config=False):
  1847. check_dpp_capab(dev[0], curve and "brainpool" in curve)
  1848. check_dpp_capab(dev[1], curve and "brainpool" in curve)
  1849. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1850. if curve:
  1851. cmd += " curve=" + curve
  1852. res = dev[0].request(cmd)
  1853. if "FAIL" in res:
  1854. raise Exception("Failed to generate bootstrapping info")
  1855. id0 = int(res)
  1856. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1857. if curve:
  1858. cmd += " curve=" + curve
  1859. res = dev[1].request(cmd)
  1860. if "FAIL" in res:
  1861. raise Exception("Failed to generate bootstrapping info")
  1862. id1 = int(res)
  1863. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  1864. res = dev[0].request(cmd)
  1865. if "FAIL" in res:
  1866. raise Exception("Failed to set PKEX data (responder)")
  1867. cmd = "DPP_LISTEN 2437"
  1868. if "OK" not in dev[0].request(cmd):
  1869. raise Exception("Failed to start listen operation")
  1870. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 %s code=secret" % (id1, init_extra)
  1871. res = dev[1].request(cmd)
  1872. if "FAIL" in res:
  1873. raise Exception("Failed to set PKEX data (initiator)")
  1874. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1875. if ev is None:
  1876. raise Exception("DPP authentication did not succeed (Initiator)")
  1877. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1878. if ev is None:
  1879. raise Exception("DPP authentication did not succeed (Responder)")
  1880. if check_config:
  1881. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=5)
  1882. if ev is None:
  1883. raise Exception("DPP configuration not completed (Configurator)")
  1884. ev = dev[0].wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  1885. if ev is None:
  1886. raise Exception("DPP configuration not completed (Enrollee)")
  1887. def test_dpp_pkex_5ghz(dev, apdev):
  1888. """DPP and PKEX on 5 GHz"""
  1889. try:
  1890. dev[0].request("SET country US")
  1891. dev[1].request("SET country US")
  1892. ev = dev[0].wait_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=1)
  1893. if ev is None:
  1894. ev = dev[0].wait_global_event(["CTRL-EVENT-REGDOM-CHANGE"],
  1895. timeout=1)
  1896. run_dpp_pkex_5ghz(dev, apdev)
  1897. finally:
  1898. dev[0].request("SET country 00")
  1899. dev[1].request("SET country 00")
  1900. subprocess.call(['iw', 'reg', 'set', '00'])
  1901. def run_dpp_pkex_5ghz(dev, apdev):
  1902. check_dpp_capab(dev[0])
  1903. check_dpp_capab(dev[1])
  1904. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1905. res = dev[0].request(cmd)
  1906. if "FAIL" in res:
  1907. raise Exception("Failed to generate bootstrapping info")
  1908. id0 = int(res)
  1909. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1910. res = dev[1].request(cmd)
  1911. if "FAIL" in res:
  1912. raise Exception("Failed to generate bootstrapping info")
  1913. id1 = int(res)
  1914. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  1915. res = dev[0].request(cmd)
  1916. if "FAIL" in res:
  1917. raise Exception("Failed to set PKEX data (responder)")
  1918. cmd = "DPP_LISTEN 5745"
  1919. if "OK" not in dev[0].request(cmd):
  1920. raise Exception("Failed to start listen operation")
  1921. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 code=secret" % (id1)
  1922. res = dev[1].request(cmd)
  1923. if "FAIL" in res:
  1924. raise Exception("Failed to set PKEX data (initiator)")
  1925. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS", "DPP-FAIL"], timeout=20)
  1926. if ev is None or "DPP-AUTH-SUCCESS" not in ev:
  1927. raise Exception("DPP authentication did not succeed (Initiator)")
  1928. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1929. if ev is None:
  1930. raise Exception("DPP authentication did not succeed (Responder)")
  1931. def test_dpp_pkex_test_vector(dev, apdev):
  1932. """DPP and PKEX (P-256) test vector"""
  1933. check_dpp_capab(dev[0])
  1934. check_dpp_capab(dev[1])
  1935. init_addr = "ac:64:91:f4:52:07"
  1936. resp_addr = "6e:5e:ce:6e:f3:dd"
  1937. identifier = "joes_key"
  1938. code = "thisisreallysecret"
  1939. # Initiator bootstrapping private key
  1940. init_priv = "5941b51acfc702cdc1c347264beb2920db88eb1a0bf03a211868b1632233c269"
  1941. # Responder bootstrapping private key
  1942. resp_priv = "2ae8956293f49986b6d0b8169a86805d9232babb5f6813fdfe96f19d59536c60"
  1943. # Initiator x/X keypair override
  1944. init_x_priv = "8365c5ed93d751bef2d92b410dc6adfd95670889183fac1bd66759ad85c3187a"
  1945. # Responder y/Y keypair override
  1946. resp_y_priv = "d98faa24d7dd3f592665d71a95c862bfd02c4c48acb0c515a41cbc6e929675ea"
  1947. p256_prefix = "30310201010420"
  1948. p256_postfix = "a00a06082a8648ce3d030107"
  1949. dev[0].set("dpp_pkex_own_mac_override", resp_addr)
  1950. dev[0].set("dpp_pkex_peer_mac_override", init_addr)
  1951. dev[1].set("dpp_pkex_own_mac_override", init_addr)
  1952. dev[1].set("dpp_pkex_peer_mac_override", resp_addr)
  1953. # Responder bootstrapping key
  1954. cmd = "DPP_BOOTSTRAP_GEN type=pkex key=" + p256_prefix + resp_priv + p256_postfix
  1955. res = dev[0].request(cmd)
  1956. if "FAIL" in res:
  1957. raise Exception("Failed to generate bootstrapping info")
  1958. id0 = int(res)
  1959. # Responder y/Y keypair override
  1960. dev[0].set("dpp_pkex_ephemeral_key_override",
  1961. p256_prefix + resp_y_priv + p256_postfix)
  1962. # Initiator bootstrapping key
  1963. cmd = "DPP_BOOTSTRAP_GEN type=pkex key=" + p256_prefix + init_priv + p256_postfix
  1964. res = dev[1].request(cmd)
  1965. if "FAIL" in res:
  1966. raise Exception("Failed to generate bootstrapping info")
  1967. id1 = int(res)
  1968. # Initiator x/X keypair override
  1969. dev[1].set("dpp_pkex_ephemeral_key_override",
  1970. p256_prefix + init_x_priv + p256_postfix)
  1971. cmd = "DPP_PKEX_ADD own=%d identifier=%s code=%s" % (id0, identifier, code)
  1972. res = dev[0].request(cmd)
  1973. if "FAIL" in res:
  1974. raise Exception("Failed to set PKEX data (responder)")
  1975. cmd = "DPP_LISTEN 2437"
  1976. if "OK" not in dev[0].request(cmd):
  1977. raise Exception("Failed to start listen operation")
  1978. cmd = "DPP_PKEX_ADD own=%d identifier=%s init=1 code=%s" % (id1, identifier, code)
  1979. res = dev[1].request(cmd)
  1980. if "FAIL" in res:
  1981. raise Exception("Failed to set PKEX data (initiator)")
  1982. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1983. if ev is None:
  1984. raise Exception("DPP authentication did not succeed (Initiator)")
  1985. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  1986. if ev is None:
  1987. raise Exception("DPP authentication did not succeed (Responder)")
  1988. def test_dpp_pkex_code_mismatch(dev, apdev):
  1989. """DPP and PKEX with mismatching code"""
  1990. check_dpp_capab(dev[0])
  1991. check_dpp_capab(dev[1])
  1992. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1993. res = dev[0].request(cmd)
  1994. if "FAIL" in res:
  1995. raise Exception("Failed to generate bootstrapping info")
  1996. id0 = int(res)
  1997. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  1998. res = dev[1].request(cmd)
  1999. if "FAIL" in res:
  2000. raise Exception("Failed to generate bootstrapping info")
  2001. id1 = int(res)
  2002. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  2003. res = dev[0].request(cmd)
  2004. if "FAIL" in res:
  2005. raise Exception("Failed to set PKEX data (responder)")
  2006. cmd = "DPP_LISTEN 2437"
  2007. if "OK" not in dev[0].request(cmd):
  2008. raise Exception("Failed to start listen operation")
  2009. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 code=unknown" % id1
  2010. res = dev[1].request(cmd)
  2011. if "FAIL" in res:
  2012. raise Exception("Failed to set PKEX data (initiator)")
  2013. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2014. if ev is None:
  2015. raise Exception("Failure not reported")
  2016. if "possible PKEX code mismatch" not in ev:
  2017. raise Exception("Unexpected result: " + ev)
  2018. dev[0].dump_monitor()
  2019. dev[1].dump_monitor()
  2020. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 code=secret" % id1
  2021. res = dev[1].request(cmd)
  2022. if "FAIL" in res:
  2023. raise Exception("Failed to set PKEX data (initiator, retry)")
  2024. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2025. if ev is None:
  2026. raise Exception("DPP authentication did not succeed (Initiator, retry)")
  2027. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2028. if ev is None:
  2029. raise Exception("DPP authentication did not succeed (Responder, retry)")
  2030. def test_dpp_pkex_code_mismatch_limit(dev, apdev):
  2031. """DPP and PKEX with mismatching code limit"""
  2032. check_dpp_capab(dev[0])
  2033. check_dpp_capab(dev[1])
  2034. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  2035. res = dev[0].request(cmd)
  2036. if "FAIL" in res:
  2037. raise Exception("Failed to generate bootstrapping info")
  2038. id0 = int(res)
  2039. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  2040. res = dev[1].request(cmd)
  2041. if "FAIL" in res:
  2042. raise Exception("Failed to generate bootstrapping info")
  2043. id1 = int(res)
  2044. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  2045. res = dev[0].request(cmd)
  2046. if "FAIL" in res:
  2047. raise Exception("Failed to set PKEX data (responder)")
  2048. cmd = "DPP_LISTEN 2437"
  2049. if "OK" not in dev[0].request(cmd):
  2050. raise Exception("Failed to start listen operation")
  2051. for i in range(5):
  2052. dev[0].dump_monitor()
  2053. dev[1].dump_monitor()
  2054. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 code=unknown" % id1
  2055. res = dev[1].request(cmd)
  2056. if "FAIL" in res:
  2057. raise Exception("Failed to set PKEX data (initiator)")
  2058. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2059. if ev is None:
  2060. raise Exception("Failure not reported")
  2061. if "possible PKEX code mismatch" not in ev:
  2062. raise Exception("Unexpected result: " + ev)
  2063. ev = dev[0].wait_event(["DPP-PKEX-T-LIMIT"], timeout=1)
  2064. if ev is None:
  2065. raise Exception("PKEX t limit not reported")
  2066. def test_dpp_pkex_curve_mismatch(dev, apdev):
  2067. """DPP and PKEX with mismatching curve"""
  2068. check_dpp_capab(dev[0])
  2069. check_dpp_capab(dev[1])
  2070. cmd = "DPP_BOOTSTRAP_GEN type=pkex curve=P-256"
  2071. res = dev[0].request(cmd)
  2072. if "FAIL" in res:
  2073. raise Exception("Failed to generate bootstrapping info")
  2074. id0 = int(res)
  2075. cmd = "DPP_BOOTSTRAP_GEN type=pkex curve=P-384"
  2076. res = dev[1].request(cmd)
  2077. if "FAIL" in res:
  2078. raise Exception("Failed to generate bootstrapping info")
  2079. id1 = int(res)
  2080. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  2081. res = dev[0].request(cmd)
  2082. if "FAIL" in res:
  2083. raise Exception("Failed to set PKEX data (responder)")
  2084. cmd = "DPP_LISTEN 2437"
  2085. if "OK" not in dev[0].request(cmd):
  2086. raise Exception("Failed to start listen operation")
  2087. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 code=secret" % id1
  2088. res = dev[1].request(cmd)
  2089. if "FAIL" in res:
  2090. raise Exception("Failed to set PKEX data (initiator)")
  2091. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2092. if ev is None:
  2093. raise Exception("Failure not reported (dev 0)")
  2094. if "Mismatching PKEX curve: peer=20 own=19" not in ev:
  2095. raise Exception("Unexpected result: " + ev)
  2096. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  2097. if ev is None:
  2098. raise Exception("Failure not reported (dev 1)")
  2099. if "Peer indicated mismatching PKEX group - proposed 19" not in ev:
  2100. raise Exception("Unexpected result: " + ev)
  2101. def test_dpp_pkex_config2(dev, apdev):
  2102. """DPP and PKEX with responder as the configurator"""
  2103. check_dpp_capab(dev[0])
  2104. cmd = "DPP_CONFIGURATOR_ADD"
  2105. res = dev[0].request(cmd);
  2106. if "FAIL" in res:
  2107. raise Exception("Failed to add configurator")
  2108. conf_id = int(res)
  2109. dev[0].set("dpp_configurator_params",
  2110. " conf=sta-dpp configurator=%d" % conf_id);
  2111. run_dpp_pkex2(dev, apdev)
  2112. def run_dpp_pkex2(dev, apdev, curve=None, init_extra=""):
  2113. check_dpp_capab(dev[0])
  2114. check_dpp_capab(dev[1])
  2115. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  2116. if curve:
  2117. cmd += " curve=" + curve
  2118. res = dev[0].request(cmd)
  2119. if "FAIL" in res:
  2120. raise Exception("Failed to generate bootstrapping info")
  2121. id0 = int(res)
  2122. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  2123. if curve:
  2124. cmd += " curve=" + curve
  2125. res = dev[1].request(cmd)
  2126. if "FAIL" in res:
  2127. raise Exception("Failed to generate bootstrapping info")
  2128. id1 = int(res)
  2129. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  2130. res = dev[0].request(cmd)
  2131. if "FAIL" in res:
  2132. raise Exception("Failed to set PKEX data (responder)")
  2133. cmd = "DPP_LISTEN 2437 role=configurator"
  2134. if "OK" not in dev[0].request(cmd):
  2135. raise Exception("Failed to start listen operation")
  2136. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 role=enrollee %s code=secret" % (id1, init_extra)
  2137. res = dev[1].request(cmd)
  2138. if "FAIL" in res:
  2139. raise Exception("Failed to set PKEX data (initiator)")
  2140. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2141. if ev is None:
  2142. raise Exception("DPP authentication did not succeed (Initiator)")
  2143. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2144. if ev is None:
  2145. raise Exception("DPP authentication did not succeed (Responder)")
  2146. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  2147. if ev is None:
  2148. raise Exception("DPP configuration not completed (Configurator)")
  2149. ev = dev[1].wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  2150. if ev is None:
  2151. raise Exception("DPP configuration not completed (Enrollee)")
  2152. def test_dpp_pkex_no_responder(dev, apdev):
  2153. """DPP and PKEX with no responder (retry behavior)"""
  2154. check_dpp_capab(dev[0])
  2155. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  2156. res = dev[0].request(cmd)
  2157. if "FAIL" in res:
  2158. raise Exception("Failed to generate bootstrapping info")
  2159. id0 = int(res)
  2160. cmd = "DPP_PKEX_ADD own=%d init=1 identifier=test code=secret" % (id0)
  2161. res = dev[0].request(cmd)
  2162. if "FAIL" in res:
  2163. raise Exception("Failed to set PKEX data (initiator)")
  2164. ev = dev[0].wait_event(["DPP-FAIL"], timeout=15)
  2165. if ev is None:
  2166. raise Exception("DPP PKEX failure not reported")
  2167. if "No response from PKEX peer" not in ev:
  2168. raise Exception("Unexpected failure reason: " + ev)
  2169. def test_dpp_pkex_after_retry(dev, apdev):
  2170. """DPP and PKEX completing after retry"""
  2171. check_dpp_capab(dev[0])
  2172. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  2173. res = dev[0].request(cmd)
  2174. if "FAIL" in res:
  2175. raise Exception("Failed to generate bootstrapping info")
  2176. id0 = int(res)
  2177. cmd = "DPP_PKEX_ADD own=%d init=1 identifier=test code=secret" % (id0)
  2178. res = dev[0].request(cmd)
  2179. if "FAIL" in res:
  2180. raise Exception("Failed to set PKEX data (initiator)")
  2181. time.sleep(0.1)
  2182. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  2183. res = dev[1].request(cmd)
  2184. if "FAIL" in res:
  2185. raise Exception("Failed to generate bootstrapping info")
  2186. id1 = int(res)
  2187. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id1)
  2188. res = dev[1].request(cmd)
  2189. if "FAIL" in res:
  2190. raise Exception("Failed to set PKEX data (responder)")
  2191. cmd = "DPP_LISTEN 2437"
  2192. if "OK" not in dev[1].request(cmd):
  2193. raise Exception("Failed to start listen operation")
  2194. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=10)
  2195. if ev is None:
  2196. raise Exception("DPP authentication did not succeed (Responder)")
  2197. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2198. if ev is None:
  2199. raise Exception("DPP authentication did not succeed (Initiator)")
  2200. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  2201. if ev is None:
  2202. raise Exception("DPP configuration not completed (Configurator)")
  2203. # Ignore Enrollee result since configurator was not set here
  2204. def test_dpp_pkex_hostapd_responder(dev, apdev):
  2205. """DPP PKEX with hostapd as responder"""
  2206. check_dpp_capab(dev[0])
  2207. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured",
  2208. "channel": "6" })
  2209. check_dpp_capab(hapd)
  2210. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  2211. res = hapd.request(cmd)
  2212. if "FAIL" in res:
  2213. raise Exception("Failed to generate bootstrapping info (hostapd)")
  2214. id_h = int(res)
  2215. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id_h)
  2216. res = hapd.request(cmd)
  2217. if "FAIL" in res:
  2218. raise Exception("Failed to set PKEX data (responder/hostapd)")
  2219. cmd = "DPP_CONFIGURATOR_ADD"
  2220. res = dev[0].request(cmd);
  2221. if "FAIL" in res:
  2222. raise Exception("Failed to add configurator")
  2223. conf_id = int(res)
  2224. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  2225. res = dev[0].request(cmd)
  2226. if "FAIL" in res:
  2227. raise Exception("Failed to generate bootstrapping info (wpa_supplicant)")
  2228. id0 = int(res)
  2229. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 conf=ap-dpp configurator=%d code=secret" % (id0, conf_id)
  2230. res = dev[0].request(cmd)
  2231. if "FAIL" in res:
  2232. raise Exception("Failed to set PKEX data (initiator/wpa_supplicant)")
  2233. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2234. if ev is None:
  2235. raise Exception("DPP authentication did not succeed (Initiator)")
  2236. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2237. if ev is None:
  2238. raise Exception("DPP authentication did not succeed (Responder)")
  2239. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  2240. if ev is None:
  2241. raise Exception("DPP configuration not completed (Configurator)")
  2242. ev = hapd.wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  2243. if ev is None:
  2244. raise Exception("DPP configuration not completed (Enrollee)")
  2245. dev[0].request("DPP_STOP_LISTEN")
  2246. dev[0].dump_monitor()
  2247. def test_dpp_pkex_hostapd_initiator(dev, apdev):
  2248. """DPP PKEX with hostapd as initiator"""
  2249. check_dpp_capab(dev[0])
  2250. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured",
  2251. "channel": "6" })
  2252. check_dpp_capab(hapd)
  2253. cmd = "DPP_CONFIGURATOR_ADD"
  2254. res = dev[0].request(cmd);
  2255. if "FAIL" in res:
  2256. raise Exception("Failed to add configurator")
  2257. conf_id = int(res)
  2258. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  2259. res = dev[0].request(cmd)
  2260. if "FAIL" in res:
  2261. raise Exception("Failed to generate bootstrapping info (wpa_supplicant)")
  2262. id0 = int(res)
  2263. dev[0].set("dpp_configurator_params",
  2264. " conf=ap-dpp configurator=%d" % conf_id);
  2265. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  2266. res = dev[0].request(cmd)
  2267. if "FAIL" in res:
  2268. raise Exception("Failed to set PKEX data (responder/wpa_supplicant)")
  2269. cmd = "DPP_LISTEN 2437 role=configurator"
  2270. if "OK" not in dev[0].request(cmd):
  2271. raise Exception("Failed to start listen operation")
  2272. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  2273. res = hapd.request(cmd)
  2274. if "FAIL" in res:
  2275. raise Exception("Failed to generate bootstrapping info (hostapd)")
  2276. id_h = int(res)
  2277. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 role=enrollee code=secret" % (id_h)
  2278. res = hapd.request(cmd)
  2279. if "FAIL" in res:
  2280. raise Exception("Failed to set PKEX data (initiator/hostapd)")
  2281. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2282. if ev is None:
  2283. raise Exception("DPP authentication did not succeed (Initiator)")
  2284. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2285. if ev is None:
  2286. raise Exception("DPP authentication did not succeed (Responder)")
  2287. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  2288. if ev is None:
  2289. raise Exception("DPP configuration not completed (Configurator)")
  2290. ev = hapd.wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  2291. if ev is None:
  2292. raise Exception("DPP configuration not completed (Enrollee)")
  2293. dev[0].request("DPP_STOP_LISTEN")
  2294. dev[0].dump_monitor()
  2295. def test_dpp_hostapd_configurator(dev, apdev):
  2296. """DPP with hostapd as configurator/initiator"""
  2297. check_dpp_capab(dev[0])
  2298. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured",
  2299. "channel": "1" })
  2300. check_dpp_capab(hapd)
  2301. cmd = "DPP_CONFIGURATOR_ADD"
  2302. res = hapd.request(cmd);
  2303. if "FAIL" in res:
  2304. raise Exception("Failed to add configurator")
  2305. conf_id = int(res)
  2306. addr = dev[0].own_addr().replace(':', '')
  2307. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  2308. res = dev[0].request(cmd)
  2309. if "FAIL" in res:
  2310. raise Exception("Failed to generate bootstrapping info")
  2311. id0 = int(res)
  2312. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  2313. res = hapd.request("DPP_QR_CODE " + uri0)
  2314. if "FAIL" in res:
  2315. raise Exception("Failed to parse QR Code URI")
  2316. id1 = int(res)
  2317. res = hapd.request("DPP_BOOTSTRAP_INFO %d" % id0)
  2318. if "FAIL" in res:
  2319. raise Exception("DPP_BOOTSTRAP_INFO failed")
  2320. if "type=QRCODE" not in res:
  2321. raise Exception("DPP_BOOTSTRAP_INFO did not report correct type")
  2322. if "mac_addr=" + dev[0].own_addr() not in res:
  2323. raise Exception("DPP_BOOTSTRAP_INFO did not report correct mac_addr")
  2324. cmd = "DPP_LISTEN 2412"
  2325. if "OK" not in dev[0].request(cmd):
  2326. raise Exception("Failed to start listen operation")
  2327. cmd = "DPP_AUTH_INIT peer=%d configurator=%d conf=sta-dpp" % (id1, conf_id)
  2328. if "OK" not in hapd.request(cmd):
  2329. raise Exception("Failed to initiate DPP Authentication")
  2330. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2331. if ev is None:
  2332. raise Exception("DPP authentication did not succeed (Responder)")
  2333. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2334. if ev is None:
  2335. raise Exception("DPP authentication did not succeed (Initiator)")
  2336. ev = hapd.wait_event(["DPP-CONF-SENT"], timeout=5)
  2337. if ev is None:
  2338. raise Exception("DPP configuration not completed (Configurator)")
  2339. ev = dev[0].wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  2340. if ev is None:
  2341. raise Exception("DPP configuration not completed (Enrollee)")
  2342. dev[0].request("DPP_STOP_LISTEN")
  2343. dev[0].dump_monitor()
  2344. def test_dpp_hostapd_configurator_responder(dev, apdev):
  2345. """DPP with hostapd as configurator/responder"""
  2346. check_dpp_capab(dev[0])
  2347. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured",
  2348. "channel": "1" })
  2349. check_dpp_capab(hapd)
  2350. cmd = "DPP_CONFIGURATOR_ADD"
  2351. res = hapd.request(cmd);
  2352. if "FAIL" in res:
  2353. raise Exception("Failed to add configurator")
  2354. conf_id = int(res)
  2355. hapd.set("dpp_configurator_params",
  2356. " conf=sta-dpp configurator=%d" % conf_id);
  2357. addr = hapd.own_addr().replace(':', '')
  2358. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  2359. res = hapd.request(cmd)
  2360. if "FAIL" in res:
  2361. raise Exception("Failed to generate bootstrapping info")
  2362. id0 = int(res)
  2363. uri0 = hapd.request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  2364. res = dev[0].request("DPP_QR_CODE " + uri0)
  2365. if "FAIL" in res:
  2366. raise Exception("Failed to parse QR Code URI")
  2367. id1 = int(res)
  2368. cmd = "DPP_AUTH_INIT peer=%d role=enrollee" % (id1)
  2369. if "OK" not in dev[0].request(cmd):
  2370. raise Exception("Failed to initiate DPP Authentication")
  2371. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2372. if ev is None:
  2373. raise Exception("DPP authentication did not succeed (Responder)")
  2374. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2375. if ev is None:
  2376. raise Exception("DPP authentication did not succeed (Initiator)")
  2377. ev = hapd.wait_event(["DPP-CONF-SENT"], timeout=5)
  2378. if ev is None:
  2379. raise Exception("DPP configuration not completed (Configurator)")
  2380. ev = dev[0].wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  2381. if ev is None:
  2382. raise Exception("DPP configuration not completed (Enrollee)")
  2383. dev[0].request("DPP_STOP_LISTEN")
  2384. dev[0].dump_monitor()
  2385. def test_dpp_own_config(dev, apdev):
  2386. """DPP configurator signing own connector"""
  2387. try:
  2388. run_dpp_own_config(dev, apdev)
  2389. finally:
  2390. dev[0].set("dpp_config_processing", "0")
  2391. def test_dpp_own_config_curve_mismatch(dev, apdev):
  2392. """DPP configurator signing own connector using mismatching curve"""
  2393. try:
  2394. run_dpp_own_config(dev, apdev, own_curve="BP-384", expect_failure=True)
  2395. finally:
  2396. dev[0].set("dpp_config_processing", "0")
  2397. def run_dpp_own_config(dev, apdev, own_curve=None, expect_failure=False):
  2398. check_dpp_capab(dev[0], own_curve and "BP" in own_curve)
  2399. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured" })
  2400. check_dpp_capab(hapd)
  2401. addr = hapd.own_addr().replace(':', '')
  2402. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  2403. res = hapd.request(cmd)
  2404. if "FAIL" in res:
  2405. raise Exception("Failed to generate bootstrapping info")
  2406. id_h = int(res)
  2407. uri = hapd.request("DPP_BOOTSTRAP_GET_URI %d" % id_h)
  2408. cmd = "DPP_CONFIGURATOR_ADD"
  2409. res = dev[0].request(cmd);
  2410. if "FAIL" in res:
  2411. raise Exception("Failed to add configurator")
  2412. conf_id = int(res)
  2413. res = dev[0].request("DPP_QR_CODE " + uri)
  2414. if "FAIL" in res:
  2415. raise Exception("Failed to parse QR Code URI")
  2416. id = int(res)
  2417. cmd = "DPP_AUTH_INIT peer=%d conf=ap-dpp configurator=%d" % (id, conf_id)
  2418. if "OK" not in dev[0].request(cmd):
  2419. raise Exception("Failed to initiate DPP Authentication")
  2420. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2421. if ev is None:
  2422. raise Exception("DPP authentication did not succeed (Responder)")
  2423. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2424. if ev is None:
  2425. raise Exception("DPP authentication did not succeed (Initiator)")
  2426. ev = dev[0].wait_event(["DPP-CONF-SENT"], timeout=5)
  2427. if ev is None:
  2428. raise Exception("DPP configuration not completed (Configurator)")
  2429. ev = hapd.wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  2430. if ev is None:
  2431. raise Exception("DPP configuration not completed (Enrollee)")
  2432. update_hapd_config(hapd)
  2433. dev[0].set("dpp_config_processing", "1")
  2434. cmd = "DPP_CONFIGURATOR_SIGN conf=sta-dpp configurator=%d" % (conf_id)
  2435. if own_curve:
  2436. cmd += " curve=" + own_curve
  2437. res = dev[0].request(cmd)
  2438. if "FAIL" in res:
  2439. raise Exception("Failed to generate own configuration")
  2440. ev = dev[0].wait_event(["DPP-NETWORK-ID"], timeout=1)
  2441. if ev is None:
  2442. raise Exception("DPP network profile not generated")
  2443. id = ev.split(' ')[1]
  2444. dev[0].select_network(id, freq="2412")
  2445. if expect_failure:
  2446. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  2447. if ev is not None:
  2448. raise Exception("Unexpected connection");
  2449. dev[0].request("DISCONNECT")
  2450. else:
  2451. dev[0].wait_connected()
  2452. def test_dpp_own_config_ap(dev, apdev):
  2453. """DPP configurator (AP) signing own connector"""
  2454. try:
  2455. run_dpp_own_config_ap(dev, apdev)
  2456. finally:
  2457. dev[0].set("dpp_config_processing", "0")
  2458. def run_dpp_own_config_ap(dev, apdev):
  2459. check_dpp_capab(dev[0])
  2460. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured" })
  2461. check_dpp_capab(hapd)
  2462. cmd = "DPP_CONFIGURATOR_ADD"
  2463. res = hapd.request(cmd);
  2464. if "FAIL" in res:
  2465. raise Exception("Failed to add configurator")
  2466. conf_id = int(res)
  2467. cmd = "DPP_CONFIGURATOR_SIGN conf=ap-dpp configurator=%d" % (conf_id)
  2468. res = hapd.request(cmd)
  2469. if "FAIL" in res:
  2470. raise Exception("Failed to generate own configuration")
  2471. update_hapd_config(hapd)
  2472. addr = dev[0].own_addr().replace(':', '')
  2473. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  2474. res = dev[0].request(cmd)
  2475. if "FAIL" in res:
  2476. raise Exception("Failed to generate bootstrapping info")
  2477. id = int(res)
  2478. uri = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id)
  2479. res = hapd.request("DPP_QR_CODE " + uri)
  2480. if "FAIL" in res:
  2481. raise Exception("Failed to parse QR Code URI")
  2482. id = int(res)
  2483. dev[0].set("dpp_config_processing", "2")
  2484. if "OK" not in dev[0].request("DPP_LISTEN 2412"):
  2485. raise Exception("Failed to start listen operation")
  2486. cmd = "DPP_AUTH_INIT peer=%d conf=sta-dpp configurator=%d" % (id, conf_id)
  2487. if "OK" not in hapd.request(cmd):
  2488. raise Exception("Failed to initiate DPP Authentication")
  2489. ev = hapd.wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  2490. if ev is None:
  2491. raise Exception("DPP authentication did not succeed (Initiator)")
  2492. ev = hapd.wait_event(["DPP-CONF-SENT"], timeout=5)
  2493. if ev is None:
  2494. raise Exception("DPP configuration not completed (Configurator)")
  2495. ev = dev[0].wait_event(["DPP-CONF-RECEIVED", "DPP-CONF-FAILED"], timeout=5)
  2496. if ev is None:
  2497. raise Exception("DPP configuration not completed (Enrollee)")
  2498. if "DPP-CONF-RECEIVED" not in ev:
  2499. raise Exception("DPP configuration failed (Enrollee)")
  2500. dev[0].wait_connected()
  2501. def test_dpp_intro_mismatch(dev, apdev):
  2502. """DPP network introduction mismatch cases"""
  2503. try:
  2504. wpas = None
  2505. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  2506. wpas.interface_add("wlan5")
  2507. check_dpp_capab(wpas)
  2508. run_dpp_intro_mismatch(dev, apdev, wpas)
  2509. finally:
  2510. dev[0].set("dpp_config_processing", "0")
  2511. dev[2].set("dpp_config_processing", "0")
  2512. if wpas:
  2513. wpas.set("dpp_config_processing", "0")
  2514. def run_dpp_intro_mismatch(dev, apdev, wpas):
  2515. check_dpp_capab(dev[0])
  2516. check_dpp_capab(dev[1])
  2517. check_dpp_capab(dev[2])
  2518. logger.info("Start AP in unconfigured state")
  2519. hapd = hostapd.add_ap(apdev[0], { "ssid": "unconfigured" })
  2520. check_dpp_capab(hapd)
  2521. addr = hapd.own_addr().replace(':', '')
  2522. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  2523. res = hapd.request(cmd)
  2524. if "FAIL" in res:
  2525. raise Exception("Failed to generate bootstrapping info")
  2526. id_h = int(res)
  2527. uri = hapd.request("DPP_BOOTSTRAP_GET_URI %d" % id_h)
  2528. logger.info("Provision AP with DPP configuration")
  2529. res = dev[1].request("DPP_CONFIGURATOR_ADD");
  2530. if "FAIL" in res:
  2531. raise Exception("Failed to add configurator")
  2532. conf_id = int(res)
  2533. res = dev[1].request("DPP_QR_CODE " + uri)
  2534. if "FAIL" in res:
  2535. raise Exception("Failed to parse QR Code URI")
  2536. id = int(res)
  2537. dev[1].set("dpp_groups_override", '[{"groupId":"a","netRole":"ap"}]')
  2538. cmd = "DPP_AUTH_INIT peer=%d conf=ap-dpp configurator=%d" % (id, conf_id)
  2539. if "OK" not in dev[1].request(cmd):
  2540. raise Exception("Failed to initiate DPP Authentication")
  2541. update_hapd_config(hapd)
  2542. logger.info("Provision STA0 with DPP Connector that has mismatching groupId")
  2543. dev[0].set("dpp_config_processing", "2")
  2544. addr = dev[0].own_addr().replace(':', '')
  2545. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  2546. res = dev[0].request(cmd)
  2547. if "FAIL" in res:
  2548. raise Exception("Failed to generate bootstrapping info")
  2549. id0 = int(res)
  2550. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  2551. res = dev[1].request("DPP_QR_CODE " + uri0)
  2552. if "FAIL" in res:
  2553. raise Exception("Failed to parse QR Code URI")
  2554. id1 = int(res)
  2555. cmd = "DPP_LISTEN 2412"
  2556. if "OK" not in dev[0].request(cmd):
  2557. raise Exception("Failed to start listen operation")
  2558. dev[1].set("dpp_groups_override", '[{"groupId":"b","netRole":"sta"}]')
  2559. cmd = "DPP_AUTH_INIT peer=%d conf=sta-dpp configurator=%d" % (id1, conf_id)
  2560. if "OK" not in dev[1].request(cmd):
  2561. raise Exception("Failed to initiate DPP Authentication")
  2562. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=5)
  2563. if ev is None:
  2564. raise Exception("DPP configuration not completed (Configurator for STA0)")
  2565. ev = dev[0].wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  2566. if ev is None:
  2567. raise Exception("DPP configuration not completed (Enrollee STA0)")
  2568. logger.info("Provision STA2 with DPP Connector that has mismatching C-sign-key")
  2569. dev[2].set("dpp_config_processing", "2")
  2570. addr = dev[2].own_addr().replace(':', '')
  2571. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  2572. res = dev[2].request(cmd)
  2573. if "FAIL" in res:
  2574. raise Exception("Failed to generate bootstrapping info")
  2575. id2 = int(res)
  2576. uri2 = dev[2].request("DPP_BOOTSTRAP_GET_URI %d" % id2)
  2577. res = dev[1].request("DPP_QR_CODE " + uri2)
  2578. if "FAIL" in res:
  2579. raise Exception("Failed to parse QR Code URI")
  2580. id1 = int(res)
  2581. cmd = "DPP_LISTEN 2412"
  2582. if "OK" not in dev[2].request(cmd):
  2583. raise Exception("Failed to start listen operation")
  2584. res = dev[1].request("DPP_CONFIGURATOR_ADD");
  2585. if "FAIL" in res:
  2586. raise Exception("Failed to add configurator")
  2587. conf_id_2 = int(res)
  2588. dev[1].set("dpp_groups_override", '')
  2589. cmd = "DPP_AUTH_INIT peer=%d conf=sta-dpp configurator=%d" % (id1, conf_id_2)
  2590. if "OK" not in dev[1].request(cmd):
  2591. raise Exception("Failed to initiate DPP Authentication")
  2592. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=5)
  2593. if ev is None:
  2594. raise Exception("DPP configuration not completed (Configurator for STA2)")
  2595. ev = dev[2].wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  2596. if ev is None:
  2597. raise Exception("DPP configuration not completed (Enrollee STA2)")
  2598. logger.info("Provision STA5 with DPP Connector that has mismatching netAccessKey EC group")
  2599. wpas.set("dpp_config_processing", "2")
  2600. addr = wpas.own_addr().replace(':', '')
  2601. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr
  2602. cmd += " curve=P-521"
  2603. res = wpas.request(cmd)
  2604. if "FAIL" in res:
  2605. raise Exception("Failed to generate bootstrapping info")
  2606. id5 = int(res)
  2607. uri5 = wpas.request("DPP_BOOTSTRAP_GET_URI %d" % id5)
  2608. res = dev[1].request("DPP_QR_CODE " + uri5)
  2609. if "FAIL" in res:
  2610. raise Exception("Failed to parse QR Code URI")
  2611. id1 = int(res)
  2612. cmd = "DPP_LISTEN 2412"
  2613. if "OK" not in wpas.request(cmd):
  2614. raise Exception("Failed to start listen operation")
  2615. dev[1].set("dpp_groups_override", '')
  2616. cmd = "DPP_AUTH_INIT peer=%d conf=sta-dpp configurator=%d" % (id1, conf_id)
  2617. if "OK" not in dev[1].request(cmd):
  2618. raise Exception("Failed to initiate DPP Authentication")
  2619. ev = dev[1].wait_event(["DPP-CONF-SENT"], timeout=5)
  2620. if ev is None:
  2621. raise Exception("DPP configuration not completed (Configurator for STA0)")
  2622. ev = wpas.wait_event(["DPP-CONF-RECEIVED"], timeout=5)
  2623. if ev is None:
  2624. raise Exception("DPP configuration not completed (Enrollee STA5)")
  2625. logger.info("Verify network introduction results")
  2626. ev = dev[0].wait_event(["DPP-INTRO"], timeout=10)
  2627. if ev is None:
  2628. raise Exception("DPP network introduction result not seen on STA0")
  2629. if "status=8" not in ev:
  2630. raise Exception("Unexpected network introduction result on STA0: " + ev)
  2631. ev = dev[2].wait_event(["DPP-INTRO"], timeout=5)
  2632. if ev is None:
  2633. raise Exception("DPP network introduction result not seen on STA2")
  2634. if "status=8" not in ev:
  2635. raise Exception("Unexpected network introduction result on STA2: " + ev)
  2636. ev = wpas.wait_event(["DPP-INTRO"], timeout=10)
  2637. if ev is None:
  2638. raise Exception("DPP network introduction result not seen on STA5")
  2639. if "status=7" not in ev:
  2640. raise Exception("Unexpected network introduction result on STA5: " + ev)
  2641. def run_dpp_proto_init(dev, test_dev, test, mutual=False, unicast=True,
  2642. listen=True, chan="81/1", init_enrollee=False):
  2643. check_dpp_capab(dev[0])
  2644. check_dpp_capab(dev[1])
  2645. dev[test_dev].set("dpp_test", str(test))
  2646. cmd = "DPP_CONFIGURATOR_ADD"
  2647. if init_enrollee:
  2648. res = dev[0].request(cmd)
  2649. else:
  2650. res = dev[1].request(cmd)
  2651. if "FAIL" in res:
  2652. raise Exception("Failed to add configurator")
  2653. conf_id = int(res)
  2654. addr = dev[0].own_addr().replace(':', '')
  2655. cmd = "DPP_BOOTSTRAP_GEN type=qrcode"
  2656. if chan:
  2657. cmd += " chan=" + chan
  2658. if unicast:
  2659. cmd += " mac=" + addr
  2660. res = dev[0].request(cmd)
  2661. if "FAIL" in res:
  2662. raise Exception("Failed to generate bootstrapping info")
  2663. id0 = int(res)
  2664. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  2665. res = dev[1].request("DPP_QR_CODE " + uri0)
  2666. if "FAIL" in res:
  2667. raise Exception("Failed to parse QR Code URI")
  2668. id1 = int(res)
  2669. if mutual:
  2670. addr = dev[1].own_addr().replace(':', '')
  2671. res = dev[1].request("DPP_BOOTSTRAP_GEN type=qrcode chan=81/1 mac=" + addr)
  2672. if "FAIL" in res:
  2673. raise Exception("Failed to generate bootstrapping info")
  2674. id1b = int(res)
  2675. uri1b = dev[1].request("DPP_BOOTSTRAP_GET_URI %d" % id1b)
  2676. res = dev[0].request("DPP_QR_CODE " + uri1b)
  2677. if "FAIL" in res:
  2678. raise Exception("Failed to parse QR Code URI")
  2679. id0b = int(res)
  2680. cmd = "DPP_LISTEN 2412 qr=mutual"
  2681. else:
  2682. cmd = "DPP_LISTEN 2412"
  2683. if init_enrollee:
  2684. cmd += " role=configurator"
  2685. dev[0].set("dpp_configurator_params",
  2686. " conf=sta-dpp configurator=%d" % conf_id);
  2687. if listen:
  2688. if "OK" not in dev[0].request(cmd):
  2689. raise Exception("Failed to start listen operation")
  2690. if init_enrollee:
  2691. cmd = "DPP_AUTH_INIT peer=%d role=enrollee" % (id1)
  2692. else:
  2693. cmd = "DPP_AUTH_INIT peer=%d configurator=%d conf=sta-dpp" % (id1, conf_id)
  2694. if mutual:
  2695. cmd += " own=%d" % id1b
  2696. if "OK" not in dev[1].request(cmd):
  2697. raise Exception("Failed to initiate DPP Authentication")
  2698. def test_dpp_proto_after_wrapped_data_auth_req(dev, apdev):
  2699. """DPP protocol testing - attribute after Wrapped Data in Auth Req"""
  2700. run_dpp_proto_init(dev, 1, 1)
  2701. ev = dev[0].wait_event(["DPP-RX"], timeout=5)
  2702. if ev is None:
  2703. raise Exception("DPP Authentication Request not seen")
  2704. if "type=0" not in ev or "ignore=invalid-attributes" not in ev:
  2705. raise Exception("Unexpected RX info: " + ev)
  2706. ev = dev[1].wait_event(["DPP-RX"], timeout=0.1)
  2707. if ev is not None:
  2708. raise Exception("Unexpected DPP message seen")
  2709. def test_dpp_auth_req_stop_after_ack(dev, apdev):
  2710. """DPP initiator stopping after ACK, but no response"""
  2711. run_dpp_proto_init(dev, 1, 1, listen=True)
  2712. ev = dev[1].wait_event(["DPP-AUTH-INIT-FAILED"], timeout=5)
  2713. if ev is None:
  2714. raise Exception("Authentication failure not reported")
  2715. def test_dpp_auth_req_retries(dev, apdev):
  2716. """DPP initiator retries with no ACK"""
  2717. check_dpp_capab(dev[1])
  2718. dev[1].set("dpp_init_max_tries", "3")
  2719. dev[1].set("dpp_init_retry_time", "1000")
  2720. dev[1].set("dpp_resp_wait_time", "100")
  2721. run_dpp_proto_init(dev, 1, 1, unicast=False, listen=False)
  2722. for i in range(3):
  2723. ev = dev[1].wait_event(["DPP-TX "], timeout=5)
  2724. if ev is None:
  2725. raise Exception("Auth Req not sent (%d)" % i)
  2726. ev = dev[1].wait_event(["DPP-AUTH-INIT-FAILED"], timeout=5)
  2727. if ev is None:
  2728. raise Exception("Authentication failure not reported")
  2729. def test_dpp_auth_req_retries_multi_chan(dev, apdev):
  2730. """DPP initiator retries with no ACK and multiple channels"""
  2731. check_dpp_capab(dev[1])
  2732. dev[1].set("dpp_init_max_tries", "3")
  2733. dev[1].set("dpp_init_retry_time", "1000")
  2734. dev[1].set("dpp_resp_wait_time", "100")
  2735. run_dpp_proto_init(dev, 1, 1, unicast=False, listen=False,
  2736. chan="81/1,81/6,81/11")
  2737. for i in range(3 * 3):
  2738. ev = dev[1].wait_event(["DPP-TX "], timeout=5)
  2739. if ev is None:
  2740. raise Exception("Auth Req not sent (%d)" % i)
  2741. ev = dev[1].wait_event(["DPP-AUTH-INIT-FAILED"], timeout=5)
  2742. if ev is None:
  2743. raise Exception("Authentication failure not reported")
  2744. def test_dpp_proto_after_wrapped_data_auth_resp(dev, apdev):
  2745. """DPP protocol testing - attribute after Wrapped Data in Auth Resp"""
  2746. run_dpp_proto_init(dev, 0, 2)
  2747. ev = dev[1].wait_event(["DPP-RX"], timeout=5)
  2748. if ev is None:
  2749. raise Exception("DPP Authentication Response not seen")
  2750. if "type=1" not in ev or "ignore=invalid-attributes" not in ev:
  2751. raise Exception("Unexpected RX info: " + ev)
  2752. ev = dev[0].wait_event(["DPP-RX"], timeout=1)
  2753. if ev is None or "type=0" not in ev:
  2754. raise Exception("DPP Authentication Request not seen")
  2755. ev = dev[0].wait_event(["DPP-RX"], timeout=0.1)
  2756. if ev is not None:
  2757. raise Exception("Unexpected DPP message seen")
  2758. def test_dpp_proto_after_wrapped_data_auth_conf(dev, apdev):
  2759. """DPP protocol testing - attribute after Wrapped Data in Auth Conf"""
  2760. run_dpp_proto_init(dev, 1, 3)
  2761. ev = dev[0].wait_event(["DPP-RX"], timeout=5)
  2762. if ev is None or "type=0" not in ev:
  2763. raise Exception("DPP Authentication Request not seen")
  2764. ev = dev[0].wait_event(["DPP-RX"], timeout=5)
  2765. if ev is None:
  2766. raise Exception("DPP Authentication Confirm not seen")
  2767. if "type=2" not in ev or "ignore=invalid-attributes" not in ev:
  2768. raise Exception("Unexpected RX info: " + ev)
  2769. def test_dpp_proto_after_wrapped_data_conf_req(dev, apdev):
  2770. """DPP protocol testing - attribute after Wrapped Data in Conf Req"""
  2771. run_dpp_proto_init(dev, 0, 6)
  2772. ev = dev[1].wait_event(["DPP-CONF-FAILED"], timeout=10)
  2773. if ev is None:
  2774. raise Exception("DPP Configuration failure not seen")
  2775. def test_dpp_proto_after_wrapped_data_conf_resp(dev, apdev):
  2776. """DPP protocol testing - attribute after Wrapped Data in Conf Resp"""
  2777. run_dpp_proto_init(dev, 1, 7)
  2778. ev = dev[0].wait_event(["DPP-CONF-FAILED"], timeout=10)
  2779. if ev is None:
  2780. raise Exception("DPP Configuration failure not seen")
  2781. def test_dpp_proto_zero_i_capab(dev, apdev):
  2782. """DPP protocol testing - zero I-capability in Auth Req"""
  2783. run_dpp_proto_init(dev, 1, 8)
  2784. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2785. if ev is None:
  2786. raise Exception("DPP failure not seen")
  2787. if "Invalid role in I-capabilities 0x00" not in ev:
  2788. raise Exception("Unexpected failure: " + ev)
  2789. ev = dev[1].wait_event(["DPP-RX"], timeout=0.1)
  2790. if ev is not None:
  2791. raise Exception("Unexpected DPP message seen")
  2792. def test_dpp_proto_zero_r_capab(dev, apdev):
  2793. """DPP protocol testing - zero R-capability in Auth Resp"""
  2794. run_dpp_proto_init(dev, 0, 9)
  2795. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  2796. if ev is None:
  2797. raise Exception("DPP failure not seen")
  2798. if "Unexpected role in R-capabilities 0x00" not in ev:
  2799. raise Exception("Unexpected failure: " + ev)
  2800. ev = dev[0].wait_event(["DPP-RX"], timeout=1)
  2801. if ev is None or "type=0" not in ev:
  2802. raise Exception("DPP Authentication Request not seen")
  2803. ev = dev[0].wait_event(["DPP-RX"], timeout=0.1)
  2804. if ev is not None:
  2805. raise Exception("Unexpected DPP message seen")
  2806. def run_dpp_proto_auth_req_missing(dev, test, reason, mutual=False):
  2807. run_dpp_proto_init(dev, 1, test, mutual=mutual)
  2808. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2809. if ev is None:
  2810. raise Exception("DPP failure not seen")
  2811. if reason not in ev:
  2812. raise Exception("Unexpected failure: " + ev)
  2813. ev = dev[1].wait_event(["DPP-RX"], timeout=0.1)
  2814. if ev is not None:
  2815. raise Exception("Unexpected DPP message seen")
  2816. def test_dpp_proto_auth_req_no_r_bootstrap_key(dev, apdev):
  2817. """DPP protocol testing - no R-bootstrap key in Auth Req"""
  2818. run_dpp_proto_auth_req_missing(dev, 10, "Missing or invalid required Responder Bootstrapping Key Hash attribute")
  2819. def test_dpp_proto_auth_req_invalid_r_bootstrap_key(dev, apdev):
  2820. """DPP protocol testing - invalid R-bootstrap key in Auth Req"""
  2821. run_dpp_proto_auth_req_missing(dev, 68, "No matching own bootstrapping key found - ignore message")
  2822. def test_dpp_proto_auth_req_no_i_bootstrap_key(dev, apdev):
  2823. """DPP protocol testing - no I-bootstrap key in Auth Req"""
  2824. run_dpp_proto_auth_req_missing(dev, 11, "Missing or invalid required Initiator Bootstrapping Key Hash attribute")
  2825. def test_dpp_proto_auth_req_invalid_i_bootstrap_key(dev, apdev):
  2826. """DPP protocol testing - invalid I-bootstrap key in Auth Req"""
  2827. run_dpp_proto_init(dev, 1, 69, mutual=True)
  2828. ev = dev[0].wait_event(["DPP-SCAN-PEER-QR-CODE"], timeout=5)
  2829. if ev is None:
  2830. raise Exception("DPP scan request not seen")
  2831. ev = dev[1].wait_event(["DPP-RESPONSE-PENDING"], timeout=5)
  2832. if ev is None:
  2833. raise Exception("DPP response pending indivation not seen")
  2834. def test_dpp_proto_auth_req_no_i_proto_key(dev, apdev):
  2835. """DPP protocol testing - no I-proto key in Auth Req"""
  2836. run_dpp_proto_auth_req_missing(dev, 12, "Missing required Initiator Protocol Key attribute")
  2837. def test_dpp_proto_auth_req_invalid_i_proto_key(dev, apdev):
  2838. """DPP protocol testing - invalid I-proto key in Auth Req"""
  2839. run_dpp_proto_auth_req_missing(dev, 66, "Invalid Initiator Protocol Key")
  2840. def test_dpp_proto_auth_req_no_i_nonce(dev, apdev):
  2841. """DPP protocol testing - no I-nonce in Auth Req"""
  2842. run_dpp_proto_auth_req_missing(dev, 13, "Missing or invalid I-nonce")
  2843. def test_dpp_proto_auth_req_invalid_i_nonce(dev, apdev):
  2844. """DPP protocol testing - invalid I-nonce in Auth Req"""
  2845. run_dpp_proto_auth_req_missing(dev, 81, "Missing or invalid I-nonce")
  2846. def test_dpp_proto_auth_req_no_i_capab(dev, apdev):
  2847. """DPP protocol testing - no I-capab in Auth Req"""
  2848. run_dpp_proto_auth_req_missing(dev, 14, "Missing or invalid I-capab")
  2849. def test_dpp_proto_auth_req_no_wrapped_data(dev, apdev):
  2850. """DPP protocol testing - no Wrapped Data in Auth Req"""
  2851. run_dpp_proto_auth_req_missing(dev, 15, "Missing or invalid required Wrapped Data attribute")
  2852. def run_dpp_proto_auth_resp_missing(dev, test, reason):
  2853. run_dpp_proto_init(dev, 0, test, mutual=True)
  2854. if reason is None:
  2855. time.sleep(0.1)
  2856. return
  2857. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  2858. if ev is None:
  2859. raise Exception("DPP failure not seen")
  2860. if reason not in ev:
  2861. raise Exception("Unexpected failure: " + ev)
  2862. ev = dev[0].wait_event(["DPP-RX"], timeout=1)
  2863. if ev is None or "type=0" not in ev:
  2864. raise Exception("DPP Authentication Request not seen")
  2865. ev = dev[0].wait_event(["DPP-RX"], timeout=0.1)
  2866. if ev is not None:
  2867. raise Exception("Unexpected DPP message seen")
  2868. def test_dpp_proto_auth_resp_no_status(dev, apdev):
  2869. """DPP protocol testing - no Status in Auth Resp"""
  2870. run_dpp_proto_auth_resp_missing(dev, 16, "Missing or invalid required DPP Status attribute")
  2871. def test_dpp_proto_auth_resp_invalid_status(dev, apdev):
  2872. """DPP protocol testing - invalid Status in Auth Resp"""
  2873. run_dpp_proto_auth_resp_missing(dev, 74, "Responder reported failure")
  2874. def test_dpp_proto_auth_resp_no_r_bootstrap_key(dev, apdev):
  2875. """DPP protocol testing - no R-bootstrap key in Auth Resp"""
  2876. run_dpp_proto_auth_resp_missing(dev, 17, "Missing or invalid required Responder Bootstrapping Key Hash attribute")
  2877. def test_dpp_proto_auth_resp_invalid_r_bootstrap_key(dev, apdev):
  2878. """DPP protocol testing - invalid R-bootstrap key in Auth Resp"""
  2879. run_dpp_proto_auth_resp_missing(dev, 70, "Unexpected Responder Bootstrapping Key Hash value")
  2880. def test_dpp_proto_auth_resp_no_i_bootstrap_key(dev, apdev):
  2881. """DPP protocol testing - no I-bootstrap key in Auth Resp"""
  2882. run_dpp_proto_auth_resp_missing(dev, 18, None)
  2883. def test_dpp_proto_auth_resp_invalid_i_bootstrap_key(dev, apdev):
  2884. """DPP protocol testing - invalid I-bootstrap key in Auth Resp"""
  2885. run_dpp_proto_auth_resp_missing(dev, 71, "Initiator Bootstrapping Key Hash attribute did not match")
  2886. def test_dpp_proto_auth_resp_no_r_proto_key(dev, apdev):
  2887. """DPP protocol testing - no R-Proto Key in Auth Resp"""
  2888. run_dpp_proto_auth_resp_missing(dev, 19, "Missing required Responder Protocol Key attribute")
  2889. def test_dpp_proto_auth_resp_invalid_r_proto_key(dev, apdev):
  2890. """DPP protocol testing - invalid R-Proto Key in Auth Resp"""
  2891. run_dpp_proto_auth_resp_missing(dev, 67, "Invalid Responder Protocol Key")
  2892. def test_dpp_proto_auth_resp_no_r_nonce(dev, apdev):
  2893. """DPP protocol testing - no R-nonce in Auth Resp"""
  2894. run_dpp_proto_auth_resp_missing(dev, 20, "Missing or invalid R-nonce")
  2895. def test_dpp_proto_auth_resp_no_i_nonce(dev, apdev):
  2896. """DPP protocol testing - no I-nonce in Auth Resp"""
  2897. run_dpp_proto_auth_resp_missing(dev, 21, "Missing or invalid I-nonce")
  2898. def test_dpp_proto_auth_resp_no_r_capab(dev, apdev):
  2899. """DPP protocol testing - no R-capab in Auth Resp"""
  2900. run_dpp_proto_auth_resp_missing(dev, 22, "Missing or invalid R-capabilities")
  2901. def test_dpp_proto_auth_resp_no_r_auth(dev, apdev):
  2902. """DPP protocol testing - no R-auth in Auth Resp"""
  2903. run_dpp_proto_auth_resp_missing(dev, 23, "Missing or invalid Secondary Wrapped Data")
  2904. def test_dpp_proto_auth_resp_no_wrapped_data(dev, apdev):
  2905. """DPP protocol testing - no Wrapped Data in Auth Resp"""
  2906. run_dpp_proto_auth_resp_missing(dev, 24, "Missing or invalid required Wrapped Data attribute")
  2907. def test_dpp_proto_auth_resp_i_nonce_mismatch(dev, apdev):
  2908. """DPP protocol testing - I-nonce mismatch in Auth Resp"""
  2909. run_dpp_proto_init(dev, 0, 30, mutual=True)
  2910. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  2911. if ev is None:
  2912. raise Exception("DPP failure not seen")
  2913. if "I-nonce mismatch" not in ev:
  2914. raise Exception("Unexpected failure: " + ev)
  2915. ev = dev[0].wait_event(["DPP-RX"], timeout=1)
  2916. if ev is None or "type=0" not in ev:
  2917. raise Exception("DPP Authentication Request not seen")
  2918. ev = dev[0].wait_event(["DPP-RX"], timeout=0.1)
  2919. if ev is not None:
  2920. raise Exception("Unexpected DPP message seen")
  2921. def test_dpp_proto_auth_resp_incompatible_r_capab(dev, apdev):
  2922. """DPP protocol testing - Incompatible R-capab in Auth Resp"""
  2923. run_dpp_proto_init(dev, 0, 31, mutual=True)
  2924. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  2925. if ev is None:
  2926. raise Exception("DPP failure not seen")
  2927. if "Unexpected role in R-capabilities 0x02" not in ev:
  2928. raise Exception("Unexpected failure: " + ev)
  2929. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2930. if ev is None:
  2931. raise Exception("DPP failure not seen")
  2932. if "Peer reported incompatible R-capab role" not in ev:
  2933. raise Exception("Unexpected failure: " + ev)
  2934. def test_dpp_proto_auth_resp_r_auth_mismatch(dev, apdev):
  2935. """DPP protocol testing - R-auth mismatch in Auth Resp"""
  2936. run_dpp_proto_init(dev, 0, 32, mutual=True)
  2937. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  2938. if ev is None:
  2939. raise Exception("DPP failure not seen")
  2940. if "Mismatching Responder Authenticating Tag" not in ev:
  2941. raise Exception("Unexpected failure: " + ev)
  2942. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2943. if ev is None:
  2944. raise Exception("DPP failure not seen")
  2945. if "Peer reported authentication failure" not in ev:
  2946. raise Exception("Unexpected failure: " + ev)
  2947. def run_dpp_proto_auth_conf_missing(dev, test, reason):
  2948. run_dpp_proto_init(dev, 1, test, mutual=True)
  2949. if reason is None:
  2950. time.sleep(0.1)
  2951. return
  2952. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2953. if ev is None:
  2954. raise Exception("DPP failure not seen")
  2955. if reason not in ev:
  2956. raise Exception("Unexpected failure: " + ev)
  2957. def test_dpp_proto_auth_conf_no_status(dev, apdev):
  2958. """DPP protocol testing - no Status in Auth Conf"""
  2959. run_dpp_proto_auth_conf_missing(dev, 25, "Missing or invalid required DPP Status attribute")
  2960. def test_dpp_proto_auth_conf_invalid_status(dev, apdev):
  2961. """DPP protocol testing - invalid Status in Auth Conf"""
  2962. run_dpp_proto_auth_conf_missing(dev, 75, "Authentication failed")
  2963. def test_dpp_proto_auth_conf_no_r_bootstrap_key(dev, apdev):
  2964. """DPP protocol testing - no R-bootstrap key in Auth Conf"""
  2965. run_dpp_proto_auth_conf_missing(dev, 26, "Missing or invalid required Responder Bootstrapping Key Hash attribute")
  2966. def test_dpp_proto_auth_conf_invalid_r_bootstrap_key(dev, apdev):
  2967. """DPP protocol testing - invalid R-bootstrap key in Auth Conf"""
  2968. run_dpp_proto_auth_conf_missing(dev, 72, "Responder Bootstrapping Key Hash mismatch")
  2969. def test_dpp_proto_auth_conf_no_i_bootstrap_key(dev, apdev):
  2970. """DPP protocol testing - no I-bootstrap key in Auth Conf"""
  2971. run_dpp_proto_auth_conf_missing(dev, 27, "Missing Initiator Bootstrapping Key Hash attribute")
  2972. def test_dpp_proto_auth_conf_invalid_i_bootstrap_key(dev, apdev):
  2973. """DPP protocol testing - invalid I-bootstrap key in Auth Conf"""
  2974. run_dpp_proto_auth_conf_missing(dev, 73, "Initiator Bootstrapping Key Hash mismatch")
  2975. def test_dpp_proto_auth_conf_no_i_auth(dev, apdev):
  2976. """DPP protocol testing - no I-Auth in Auth Conf"""
  2977. run_dpp_proto_auth_conf_missing(dev, 28, "Missing or invalid Initiator Authenticating Tag")
  2978. def test_dpp_proto_auth_conf_no_wrapped_data(dev, apdev):
  2979. """DPP protocol testing - no Wrapped Data in Auth Conf"""
  2980. run_dpp_proto_auth_conf_missing(dev, 29, "Missing or invalid required Wrapped Data attribute")
  2981. def test_dpp_proto_auth_conf_i_auth_mismatch(dev, apdev):
  2982. """DPP protocol testing - I-auth mismatch in Auth Conf"""
  2983. run_dpp_proto_init(dev, 1, 33, mutual=True)
  2984. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2985. if ev is None:
  2986. raise Exception("DPP failure not seen")
  2987. if "Mismatching Initiator Authenticating Tag" not in ev:
  2988. raise Excception("Unexpected failure: " + ev)
  2989. def test_dpp_proto_auth_conf_replaced_by_resp(dev, apdev):
  2990. """DPP protocol testing - Auth Conf replaced by Resp"""
  2991. run_dpp_proto_init(dev, 1, 65, mutual=True)
  2992. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  2993. if ev is None:
  2994. raise Exception("DPP failure not seen")
  2995. if "Unexpected Authentication Response" not in ev:
  2996. raise Excception("Unexpected failure: " + ev)
  2997. def run_dpp_proto_conf_req_missing(dev, test, reason):
  2998. run_dpp_proto_init(dev, 0, test)
  2999. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  3000. if ev is None:
  3001. raise Exception("DPP failure not seen")
  3002. if reason not in ev:
  3003. raise Exception("Unexpected failure: " + ev)
  3004. def test_dpp_proto_conf_req_no_e_nonce(dev, apdev):
  3005. """DPP protocol testing - no E-nonce in Conf Req"""
  3006. run_dpp_proto_conf_req_missing(dev, 51,
  3007. "Missing or invalid Enrollee Nonce attribute")
  3008. def test_dpp_proto_conf_req_invalid_e_nonce(dev, apdev):
  3009. """DPP protocol testing - invalid E-nonce in Conf Req"""
  3010. run_dpp_proto_conf_req_missing(dev, 83,
  3011. "Missing or invalid Enrollee Nonce attribute")
  3012. def test_dpp_proto_conf_req_no_config_attr_obj(dev, apdev):
  3013. """DPP protocol testing - no Config Attr Obj in Conf Req"""
  3014. run_dpp_proto_conf_req_missing(dev, 52,
  3015. "Missing or invalid Config Attributes attribute")
  3016. def test_dpp_proto_conf_req_invalid_config_attr_obj(dev, apdev):
  3017. """DPP protocol testing - invalid Config Attr Obj in Conf Req"""
  3018. run_dpp_proto_conf_req_missing(dev, 76,
  3019. "Unsupported wi-fi_tech")
  3020. def test_dpp_proto_conf_req_no_wrapped_data(dev, apdev):
  3021. """DPP protocol testing - no Wrapped Data in Conf Req"""
  3022. run_dpp_proto_conf_req_missing(dev, 53,
  3023. "Missing or invalid required Wrapped Data attribute")
  3024. def run_dpp_proto_conf_resp_missing(dev, test, reason):
  3025. run_dpp_proto_init(dev, 1, test)
  3026. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  3027. if ev is None:
  3028. raise Exception("DPP failure not seen")
  3029. if reason not in ev:
  3030. raise Exception("Unexpected failure: " + ev)
  3031. def test_dpp_proto_conf_resp_no_e_nonce(dev, apdev):
  3032. """DPP protocol testing - no E-nonce in Conf Resp"""
  3033. run_dpp_proto_conf_resp_missing(dev, 54,
  3034. "Missing or invalid Enrollee Nonce attribute")
  3035. def test_dpp_proto_conf_resp_no_config_obj(dev, apdev):
  3036. """DPP protocol testing - no Config Object in Conf Resp"""
  3037. run_dpp_proto_conf_resp_missing(dev, 55,
  3038. "Missing required Configuration Object attribute")
  3039. def test_dpp_proto_conf_resp_no_status(dev, apdev):
  3040. """DPP protocol testing - no Status in Conf Resp"""
  3041. run_dpp_proto_conf_resp_missing(dev, 56,
  3042. "Missing or invalid required DPP Status attribute")
  3043. def test_dpp_proto_conf_resp_no_wrapped_data(dev, apdev):
  3044. """DPP protocol testing - no Wrapped Data in Conf Resp"""
  3045. run_dpp_proto_conf_resp_missing(dev, 57,
  3046. "Missing or invalid required Wrapped Data attribute")
  3047. def test_dpp_proto_conf_resp_invalid_status(dev, apdev):
  3048. """DPP protocol testing - invalid Status in Conf Resp"""
  3049. run_dpp_proto_conf_resp_missing(dev, 58,
  3050. "Configurator rejected configuration")
  3051. def test_dpp_proto_conf_resp_e_nonce_mismatch(dev, apdev):
  3052. """DPP protocol testing - E-nonce mismatch in Conf Resp"""
  3053. run_dpp_proto_conf_resp_missing(dev, 59,
  3054. "Enrollee Nonce mismatch")
  3055. def test_dpp_proto_stop_at_auth_req(dev, apdev):
  3056. """DPP protocol testing - stop when receiving Auth Req"""
  3057. run_dpp_proto_init(dev, 0, 87)
  3058. ev = dev[1].wait_event(["DPP-AUTH-INIT-FAILED"], timeout=5)
  3059. if ev is None:
  3060. raise Exception("Authentication init failure not reported")
  3061. def test_dpp_proto_stop_at_auth_resp(dev, apdev):
  3062. """DPP protocol testing - stop when receiving Auth Resp"""
  3063. run_dpp_proto_init(dev, 1, 88)
  3064. ev = dev[1].wait_event(["DPP-TX "], timeout=5)
  3065. if ev is None:
  3066. raise Exception("Auth Req TX not seen")
  3067. ev = dev[0].wait_event(["DPP-TX "], timeout=5)
  3068. if ev is None:
  3069. raise Exception("Auth Resp TX not seen")
  3070. ev = dev[1].wait_event(["DPP-TX "], timeout=0.1)
  3071. if ev is not None:
  3072. raise Exception("Unexpected Auth Conf TX")
  3073. def test_dpp_proto_stop_at_auth_conf(dev, apdev):
  3074. """DPP protocol testing - stop when receiving Auth Conf"""
  3075. run_dpp_proto_init(dev, 0, 89, init_enrollee=True)
  3076. ev = dev[1].wait_event(["GAS-QUERY-START"], timeout=10)
  3077. if ev is None:
  3078. raise Exception("Enrollee did not start GAS")
  3079. ev = dev[1].wait_event(["GAS-QUERY-DONE"], timeout=10)
  3080. if ev is None:
  3081. raise Exception("Enrollee did not time out GAS")
  3082. if "result=TIMEOUT" not in ev:
  3083. raise Exception("Unexpected GAS result: " + ev)
  3084. def test_dpp_proto_stop_at_auth_conf_tx(dev, apdev):
  3085. """DPP protocol testing - stop when transmitting Auth Conf (Registrar)"""
  3086. run_dpp_proto_init(dev, 1, 89, init_enrollee=True)
  3087. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=10)
  3088. if ev is None:
  3089. raise Exception("Authentication did not succeed (Initiator)")
  3090. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  3091. if ev is None:
  3092. raise Exception("Authentication did not succeed (Responder)")
  3093. ev = dev[1].wait_event(["GAS-QUERY-START"], timeout=0.1)
  3094. if ev is not None:
  3095. raise Exception("Unexpected GAS query")
  3096. # There is currently no timeout on GAS server side, so no event to wait for
  3097. # in this case.
  3098. def test_dpp_proto_stop_at_auth_conf_tx2(dev, apdev):
  3099. """DPP protocol testing - stop when transmitting Auth Conf (Enrollee)"""
  3100. run_dpp_proto_init(dev, 1, 89)
  3101. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=10)
  3102. if ev is None:
  3103. raise Exception("Authentication did not succeed (Initiator)")
  3104. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  3105. if ev is None:
  3106. raise Exception("Authentication did not succeed (Responder)")
  3107. ev = dev[0].wait_event(["GAS-QUERY-DONE"], timeout=5)
  3108. if ev is None or "result=TIMEOUT" not in ev:
  3109. raise Exception("GAS query did not time out")
  3110. def test_dpp_proto_stop_at_conf_req(dev, apdev):
  3111. """DPP protocol testing - stop when receiving Auth Req"""
  3112. run_dpp_proto_init(dev, 1, 90)
  3113. ev = dev[0].wait_event(["GAS-QUERY-START"], timeout=10)
  3114. if ev is None:
  3115. raise Exception("Enrollee did not start GAS")
  3116. ev = dev[0].wait_event(["GAS-QUERY-DONE"], timeout=10)
  3117. if ev is None:
  3118. raise Exception("Enrollee did not time out GAS")
  3119. if "result=TIMEOUT" not in ev:
  3120. raise Exception("Unexpected GAS result: " + ev)
  3121. def run_dpp_proto_init_pkex(dev, test_dev, test):
  3122. check_dpp_capab(dev[0])
  3123. check_dpp_capab(dev[1])
  3124. dev[test_dev].set("dpp_test", str(test))
  3125. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  3126. res = dev[0].request(cmd)
  3127. if "FAIL" in res:
  3128. raise Exception("Failed to generate bootstrapping info")
  3129. id0 = int(res)
  3130. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  3131. res = dev[1].request(cmd)
  3132. if "FAIL" in res:
  3133. raise Exception("Failed to generate bootstrapping info")
  3134. id1 = int(res)
  3135. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  3136. res = dev[0].request(cmd)
  3137. if "FAIL" in res:
  3138. raise Exception("Failed to set PKEX data (responder)")
  3139. cmd = "DPP_LISTEN 2437"
  3140. if "OK" not in dev[0].request(cmd):
  3141. raise Exception("Failed to start listen operation")
  3142. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 code=secret" % id1
  3143. res = dev[1].request(cmd)
  3144. if "FAIL" in res:
  3145. raise Exception("Failed to set PKEX data (initiator)")
  3146. def test_dpp_proto_after_wrapped_data_pkex_cr_req(dev, apdev):
  3147. """DPP protocol testing - attribute after Wrapped Data in PKEX CR Req"""
  3148. run_dpp_proto_init_pkex(dev, 1, 4)
  3149. ev = dev[0].wait_event(["DPP-RX"], timeout=5)
  3150. if ev is None or "type=7" not in ev:
  3151. raise Exception("PKEX Exchange Request not seen")
  3152. ev = dev[0].wait_event(["DPP-RX"], timeout=5)
  3153. if ev is None or "type=9" not in ev:
  3154. raise Exception("PKEX Commit-Reveal Request not seen")
  3155. if "ignore=invalid-attributes" not in ev:
  3156. raise Exception("Unexpected RX info: " + ev)
  3157. def test_dpp_proto_after_wrapped_data_pkex_cr_resp(dev, apdev):
  3158. """DPP protocol testing - attribute after Wrapped Data in PKEX CR Resp"""
  3159. run_dpp_proto_init_pkex(dev, 0, 5)
  3160. ev = dev[1].wait_event(["DPP-RX"], timeout=5)
  3161. if ev is None or "type=8" not in ev:
  3162. raise Exception("PKEX Exchange Response not seen")
  3163. ev = dev[1].wait_event(["DPP-RX"], timeout=5)
  3164. if ev is None or "type=10" not in ev:
  3165. raise Exception("PKEX Commit-Reveal Response not seen")
  3166. if "ignore=invalid-attributes" not in ev:
  3167. raise Exception("Unexpected RX info: " + ev)
  3168. def run_dpp_proto_pkex_req_missing(dev, test, reason):
  3169. run_dpp_proto_init_pkex(dev, 1, test)
  3170. ev = dev[0].wait_event(["DPP-FAIL"], timeout=5)
  3171. if ev is None:
  3172. raise Exception("DPP failure not seen")
  3173. if reason not in ev:
  3174. raise Exception("Unexpected failure: " + ev)
  3175. def run_dpp_proto_pkex_resp_missing(dev, test, reason):
  3176. run_dpp_proto_init_pkex(dev, 0, test)
  3177. ev = dev[1].wait_event(["DPP-FAIL"], timeout=5)
  3178. if ev is None:
  3179. raise Exception("DPP failure not seen")
  3180. if reason not in ev:
  3181. raise Exception("Unexpected failure: " + ev)
  3182. def test_dpp_proto_pkex_exchange_req_no_finite_cyclic_group(dev, apdev):
  3183. """DPP protocol testing - no Finite Cyclic Group in PKEX Exchange Request"""
  3184. run_dpp_proto_pkex_req_missing(dev, 34,
  3185. "Missing or invalid Finite Cyclic Group attribute")
  3186. def test_dpp_proto_pkex_exchange_req_no_encrypted_key(dev, apdev):
  3187. """DPP protocol testing - no Encrypted Key in PKEX Exchange Request"""
  3188. run_dpp_proto_pkex_req_missing(dev, 35,
  3189. "Missing Encrypted Key attribute")
  3190. def test_dpp_proto_pkex_exchange_resp_no_status(dev, apdev):
  3191. """DPP protocol testing - no Status in PKEX Exchange Response"""
  3192. run_dpp_proto_pkex_resp_missing(dev, 36, "No DPP Status attribute")
  3193. def test_dpp_proto_pkex_exchange_resp_no_encrypted_key(dev, apdev):
  3194. """DPP protocol testing - no Encrypted Key in PKEX Exchange Response"""
  3195. run_dpp_proto_pkex_resp_missing(dev, 37, "Missing Encrypted Key attribute")
  3196. def test_dpp_proto_pkex_cr_req_no_bootstrap_key(dev, apdev):
  3197. """DPP protocol testing - no Bootstrap Key in PKEX Commit-Reveal Request"""
  3198. run_dpp_proto_pkex_req_missing(dev, 38,
  3199. "No valid peer bootstrapping key found")
  3200. def test_dpp_proto_pkex_cr_req_no_i_auth_tag(dev, apdev):
  3201. """DPP protocol testing - no I-Auth Tag in PKEX Commit-Reveal Request"""
  3202. run_dpp_proto_pkex_req_missing(dev, 39, "No valid u (I-Auth tag) found")
  3203. def test_dpp_proto_pkex_cr_req_no_wrapped_data(dev, apdev):
  3204. """DPP protocol testing - no Wrapped Data in PKEX Commit-Reveal Request"""
  3205. run_dpp_proto_pkex_req_missing(dev, 40, "Missing or invalid required Wrapped Data attribute")
  3206. def test_dpp_proto_pkex_cr_resp_no_bootstrap_key(dev, apdev):
  3207. """DPP protocol testing - no Bootstrap Key in PKEX Commit-Reveal Response"""
  3208. run_dpp_proto_pkex_resp_missing(dev, 41,
  3209. "No valid peer bootstrapping key found")
  3210. def test_dpp_proto_pkex_cr_resp_no_r_auth_tag(dev, apdev):
  3211. """DPP protocol testing - no R-Auth Tag in PKEX Commit-Reveal Response"""
  3212. run_dpp_proto_pkex_resp_missing(dev, 42, "No valid v (R-Auth tag) found")
  3213. def test_dpp_proto_pkex_cr_resp_no_wrapped_data(dev, apdev):
  3214. """DPP protocol testing - no Wrapped Data in PKEX Commit-Reveal Response"""
  3215. run_dpp_proto_pkex_resp_missing(dev, 43, "Missing or invalid required Wrapped Data attribute")
  3216. def test_dpp_proto_pkex_exchange_req_invalid_encrypted_key(dev, apdev):
  3217. """DPP protocol testing - invalid Encrypted Key in PKEX Exchange Request"""
  3218. run_dpp_proto_pkex_req_missing(dev, 44,
  3219. "Invalid Encrypted Key value")
  3220. def test_dpp_proto_pkex_exchange_resp_invalid_encrypted_key(dev, apdev):
  3221. """DPP protocol testing - invalid Encrypted Key in PKEX Exchange Response"""
  3222. run_dpp_proto_pkex_resp_missing(dev, 45,
  3223. "Invalid Encrypted Key value")
  3224. def test_dpp_proto_pkex_exchange_resp_invalid_status(dev, apdev):
  3225. """DPP protocol testing - invalid Status in PKEX Exchange Response"""
  3226. run_dpp_proto_pkex_resp_missing(dev, 46,
  3227. "PKEX failed (peer indicated failure)")
  3228. def test_dpp_proto_pkex_cr_req_invalid_bootstrap_key(dev, apdev):
  3229. """DPP protocol testing - invalid Bootstrap Key in PKEX Commit-Reveal Request"""
  3230. run_dpp_proto_pkex_req_missing(dev, 47,
  3231. "Peer bootstrapping key is invalid")
  3232. def test_dpp_proto_pkex_cr_resp_invalid_bootstrap_key(dev, apdev):
  3233. """DPP protocol testing - invalid Bootstrap Key in PKEX Commit-Reveal Response"""
  3234. run_dpp_proto_pkex_resp_missing(dev, 48,
  3235. "Peer bootstrapping key is invalid")
  3236. def test_dpp_proto_pkex_cr_req_i_auth_tag_mismatch(dev, apdev):
  3237. """DPP protocol testing - I-auth tag mismatch in PKEX Commit-Reveal Request"""
  3238. run_dpp_proto_pkex_req_missing(dev, 49, "No valid u (I-Auth tag) found")
  3239. def test_dpp_proto_pkex_cr_resp_r_auth_tag_mismatch(dev, apdev):
  3240. """DPP protocol testing - R-auth tag mismatch in PKEX Commit-Reveal Response"""
  3241. run_dpp_proto_pkex_resp_missing(dev, 50, "No valid v (R-Auth tag) found")
  3242. def test_dpp_proto_stop_at_pkex_exchange_resp(dev, apdev):
  3243. """DPP protocol testing - stop when receiving PKEX Exchange Response"""
  3244. run_dpp_proto_init_pkex(dev, 1, 84)
  3245. ev = dev[1].wait_event(["DPP-TX "], timeout=5)
  3246. if ev is None:
  3247. raise Exception("PKEX Exchange Req TX not seen")
  3248. ev = dev[0].wait_event(["DPP-TX "], timeout=5)
  3249. if ev is None:
  3250. raise Exception("PKEX Exchange Resp not seen")
  3251. ev = dev[1].wait_event(["DPP-TX "], timeout=0.1)
  3252. if ev is not None:
  3253. raise Exception("Unexpected PKEX CR Req TX")
  3254. def test_dpp_proto_stop_at_pkex_cr_req(dev, apdev):
  3255. """DPP protocol testing - stop when receiving PKEX CR Request"""
  3256. run_dpp_proto_init_pkex(dev, 0, 85)
  3257. ev = dev[1].wait_event(["DPP-TX "], timeout=5)
  3258. if ev is None:
  3259. raise Exception("PKEX Exchange Req TX not seen")
  3260. ev = dev[0].wait_event(["DPP-TX "], timeout=5)
  3261. if ev is None:
  3262. raise Exception("PKEX Exchange Resp not seen")
  3263. ev = dev[1].wait_event(["DPP-TX "], timeout=5)
  3264. if ev is None:
  3265. raise Exception("PKEX CR Req TX not seen")
  3266. ev = dev[0].wait_event(["DPP-TX "], timeout=0.1)
  3267. if ev is not None:
  3268. raise Exception("Unexpected PKEX CR Resp TX")
  3269. def test_dpp_proto_stop_at_pkex_cr_resp(dev, apdev):
  3270. """DPP protocol testing - stop when receiving PKEX CR Response"""
  3271. run_dpp_proto_init_pkex(dev, 1, 86)
  3272. ev = dev[1].wait_event(["DPP-TX "], timeout=5)
  3273. if ev is None:
  3274. raise Exception("PKEX Exchange Req TX not seen")
  3275. ev = dev[0].wait_event(["DPP-TX "], timeout=5)
  3276. if ev is None:
  3277. raise Exception("PKEX Exchange Resp not seen")
  3278. ev = dev[1].wait_event(["DPP-TX "], timeout=5)
  3279. if ev is None:
  3280. raise Exception("PKEX CR Req TX not seen")
  3281. ev = dev[0].wait_event(["DPP-TX "], timeout=5)
  3282. if ev is None:
  3283. raise Exception("PKEX CR Resp TX not seen")
  3284. ev = dev[1].wait_event(["DPP-TX "], timeout=0.1)
  3285. if ev is not None:
  3286. raise Exception("Unexpected Auth Req TX")
  3287. def test_dpp_proto_network_introduction(dev, apdev):
  3288. """DPP protocol testing - network introduction"""
  3289. check_dpp_capab(dev[0])
  3290. check_dpp_capab(dev[1])
  3291. csign = "3059301306072a8648ce3d020106082a8648ce3d03010703420004d02e5bd81a120762b5f0f2994777f5d40297238a6c294fd575cdf35fabec44c050a6421c401d98d659fd2ed13c961cc8287944dd3202f516977800d3ab2f39ee"
  3292. ap_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJzOEFrYjg5bTV4UGhoYk5UbTVmVVo0eVBzNU5VMkdxYXNRY3hXUWhtQVFRIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6ImFwIn1dLCJuZXRBY2Nlc3NLZXkiOnsia3R5IjoiRUMiLCJjcnYiOiJQLTI1NiIsIngiOiIwOHF4TlNYRzRWemdCV3BjVUdNSmc1czNvbElOVFJsRVQ1aERpNkRKY3ZjIiwieSI6IlVhaGFYQXpKRVpRQk1YaHRUQnlZZVlrOWtJYjk5UDA3UV9NcW9TVVZTVEkifX0.a5_nfMVr7Qe1SW0ZL3u6oQRm5NUCYUSfixDAJOUFN3XUfECBZ6E8fm8xjeSfdOytgRidTz0CTlIRjzPQo82dmQ"
  3293. ap_netaccesskey = "30770201010420f6531d17f29dfab655b7c9e923478d5a345164c489aadd44a3519c3e9dcc792da00a06082a8648ce3d030107a14403420004d3cab13525c6e15ce0056a5c506309839b37a2520d4d19444f98438ba0c972f751a85a5c0cc911940131786d4c1c9879893d9086fdf4fd3b43f32aa125154932"
  3294. sta_connector = "eyJ0eXAiOiJkcHBDb24iLCJraWQiOiJzOEFrYjg5bTV4UGhoYk5UbTVmVVo0eVBzNU5VMkdxYXNRY3hXUWhtQVFRIiwiYWxnIjoiRVMyNTYifQ.eyJncm91cHMiOlt7Imdyb3VwSWQiOiIqIiwibmV0Um9sZSI6InN0YSJ9XSwibmV0QWNjZXNzS2V5Ijp7Imt0eSI6IkVDIiwiY3J2IjoiUC0yNTYiLCJ4IjoiZWMzR3NqQ3lQMzVBUUZOQUJJdEltQnN4WXVyMGJZX1dES1lfSE9zUGdjNCIsInkiOiJTRS1HVllkdWVnTFhLMU1TQXZNMEx2QWdLREpTNWoyQVhCbE9PMTdUSTRBIn19.PDK9zsGlK-e1pEOmNxVeJfCS8pNeay6ckIS1TXCQsR64AR-9wFPCNVjqOxWvVKltehyMFqVAtOcv0IrjtMJFqQ"
  3295. sta_netaccesskey = "30770201010420bc33380c26fd2168b69cd8242ed1df07ba89aa4813f8d4e8523de6ca3f8dd28ba00a06082a8648ce3d030107a1440342000479cdc6b230b23f7e40405340048b48981b3162eaf46d8fd60ca63f1ceb0f81ce484f8655876e7a02d72b531202f3342ef020283252e63d805c194e3b5ed32380"
  3296. params = { "ssid": "dpp",
  3297. "wpa": "2",
  3298. "wpa_key_mgmt": "DPP",
  3299. "ieee80211w": "2",
  3300. "rsn_pairwise": "CCMP",
  3301. "dpp_connector": ap_connector,
  3302. "dpp_csign": csign,
  3303. "dpp_netaccesskey": ap_netaccesskey }
  3304. try:
  3305. hapd = hostapd.add_ap(apdev[0], params)
  3306. except:
  3307. raise HwsimSkip("DPP not supported")
  3308. for test in [ 60, 61, 80, 82 ]:
  3309. dev[0].set("dpp_test", str(test))
  3310. dev[0].connect("dpp", key_mgmt="DPP", scan_freq="2412", ieee80211w="2",
  3311. dpp_csign=csign, dpp_connector=sta_connector,
  3312. dpp_netaccesskey=sta_netaccesskey, wait_connect=False)
  3313. ev = dev[0].wait_event(["DPP-TX"], timeout=10)
  3314. if ev is None or "type=5" not in ev:
  3315. raise Exception("Peer Discovery Request TX not reported")
  3316. ev = dev[0].wait_event(["DPP-TX-STATUS"], timeout=2)
  3317. if ev is None or "result=SUCCESS" not in ev:
  3318. raise Exception("Peer Discovery Request TX status not reported")
  3319. ev = hapd.wait_event(["DPP-RX"], timeout=10)
  3320. if ev is None or "type=5" not in ev:
  3321. raise Exception("Peer Discovery Request RX not reported")
  3322. if test == 80:
  3323. ev = dev[0].wait_event(["DPP-INTRO"], timeout=10)
  3324. if ev is None:
  3325. raise Exception("DPP-INTRO not reported for test 80")
  3326. if "status=7" not in ev:
  3327. raise Exception("Unexpected result in test 80: " + ev)
  3328. dev[0].request("REMOVE_NETWORK all")
  3329. dev[0].dump_monitor()
  3330. hapd.dump_monitor()
  3331. dev[0].set("dpp_test", "0")
  3332. for test in [ 62, 63, 64, 77, 78, 79 ]:
  3333. hapd.set("dpp_test", str(test))
  3334. dev[0].connect("dpp", key_mgmt="DPP", scan_freq="2412", ieee80211w="2",
  3335. dpp_csign=csign, dpp_connector=sta_connector,
  3336. dpp_netaccesskey=sta_netaccesskey, wait_connect=False)
  3337. ev = dev[0].wait_event(["DPP-INTRO"], timeout=10)
  3338. if ev is None:
  3339. raise Exception("Peer introduction result not reported (test %d)" % test)
  3340. if test == 77:
  3341. if "fail=transaction_id_mismatch" not in ev:
  3342. raise Exception("Connector validation failure not reported")
  3343. elif test == 78:
  3344. if "status=254" not in ev:
  3345. raise Exception("Invalid status value not reported")
  3346. elif test == 79:
  3347. if "fail=peer_connector_validation_failed" not in ev:
  3348. raise Exception("Connector validation failure not reported")
  3349. elif "status=" in ev:
  3350. raise Exception("Unexpected peer introduction result (test %d): " % test + ev)
  3351. dev[0].request("REMOVE_NETWORK all")
  3352. dev[0].dump_monitor()
  3353. hapd.dump_monitor()
  3354. hapd.set("dpp_test", "0")
  3355. dev[0].connect("dpp", key_mgmt="DPP", scan_freq="2412", ieee80211w="2",
  3356. dpp_csign=csign, dpp_connector=sta_connector,
  3357. dpp_netaccesskey=sta_netaccesskey)
  3358. def test_dpp_qr_code_no_chan_list_unicast(dev, apdev):
  3359. """DPP QR Code and no channel list (unicast)"""
  3360. run_dpp_qr_code_chan_list(dev, apdev, True, 2417, None)
  3361. def test_dpp_qr_code_chan_list_unicast(dev, apdev):
  3362. """DPP QR Code and 2.4 GHz channels (unicast)"""
  3363. run_dpp_qr_code_chan_list(dev, apdev, True, 2417,
  3364. "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")
  3365. def test_dpp_qr_code_chan_list_no_peer_unicast(dev, apdev):
  3366. """DPP QR Code and channel list and no peer (unicast)"""
  3367. run_dpp_qr_code_chan_list(dev, apdev, True, 2417, "81/1,81/6,81/11",
  3368. no_wait=True)
  3369. ev = dev[1].wait_event(["DPP-AUTH-INIT-FAILED"], timeout=5)
  3370. if ev is None:
  3371. raise Exception("Initiation failure not reported")
  3372. def test_dpp_qr_code_no_chan_list_broadcast(dev, apdev):
  3373. """DPP QR Code and no channel list (broadcast)"""
  3374. run_dpp_qr_code_chan_list(dev, apdev, False, 2412, None)
  3375. def test_dpp_qr_code_chan_list_broadcast(dev, apdev):
  3376. """DPP QR Code and some 2.4 GHz channels (broadcast)"""
  3377. run_dpp_qr_code_chan_list(dev, apdev, False, 2412, "81/1,81/6,81/11",
  3378. timeout=10)
  3379. def run_dpp_qr_code_chan_list(dev, apdev, unicast, listen_freq, chanlist,
  3380. no_wait=False, timeout=5):
  3381. check_dpp_capab(dev[0])
  3382. check_dpp_capab(dev[1])
  3383. dev[1].set("dpp_init_max_tries", "3")
  3384. dev[1].set("dpp_init_retry_time", "100")
  3385. dev[1].set("dpp_resp_wait_time", "1000")
  3386. logger.info("dev0 displays QR Code")
  3387. cmd = "DPP_BOOTSTRAP_GEN type=qrcode"
  3388. if chanlist:
  3389. cmd += " chan=" + chanlist
  3390. if unicast:
  3391. addr = dev[0].own_addr().replace(':', '')
  3392. cmd += " mac=" + addr
  3393. res = dev[0].request(cmd)
  3394. if "FAIL" in res:
  3395. raise Exception("Failed to generate bootstrapping info")
  3396. id0 = int(res)
  3397. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  3398. logger.info("dev1 scans QR Code")
  3399. res = dev[1].request("DPP_QR_CODE " + uri0)
  3400. if "FAIL" in res:
  3401. raise Exception("Failed to parse QR Code URI")
  3402. id1 = int(res)
  3403. logger.info("dev1 initiates DPP Authentication")
  3404. cmd = "DPP_LISTEN %d" % listen_freq
  3405. if "OK" not in dev[0].request(cmd):
  3406. raise Exception("Failed to start listen operation")
  3407. cmd = "DPP_AUTH_INIT peer=%d" % id1
  3408. if "OK" not in dev[1].request(cmd):
  3409. raise Exception("Failed to initiate DPP Authentication")
  3410. if no_wait:
  3411. return
  3412. ev = dev[0].wait_event(["DPP-AUTH-SUCCESS"], timeout=timeout)
  3413. if ev is None:
  3414. raise Exception("DPP authentication did not succeed (Responder)")
  3415. ev = dev[1].wait_event(["DPP-AUTH-SUCCESS"], timeout=5)
  3416. if ev is None:
  3417. raise Exception("DPP authentication did not succeed (Initiator)")
  3418. ev = dev[0].wait_event(["DPP-CONF-RECEIVED", "DPP-CONF-FAILED"], timeout=5)
  3419. if ev is None:
  3420. raise Exception("DPP configuration not completed (Enrollee)")
  3421. dev[0].request("DPP_STOP_LISTEN")
  3422. dev[0].dump_monitor()
  3423. dev[1].dump_monitor()
  3424. def test_dpp_qr_code_chan_list_no_match(dev, apdev):
  3425. """DPP QR Code and no matching supported channel"""
  3426. check_dpp_capab(dev[0])
  3427. check_dpp_capab(dev[1])
  3428. cmd = "DPP_BOOTSTRAP_GEN type=qrcode chan=123/123"
  3429. res = dev[0].request(cmd)
  3430. if "FAIL" in res:
  3431. raise Exception("Failed to generate bootstrapping info")
  3432. id0 = int(res)
  3433. uri0 = dev[0].request("DPP_BOOTSTRAP_GET_URI %d" % id0)
  3434. res = dev[1].request("DPP_QR_CODE " + uri0)
  3435. if "FAIL" in res:
  3436. raise Exception("Failed to parse QR Code URI")
  3437. id1 = int(res)
  3438. cmd = "DPP_AUTH_INIT peer=%d" % id1
  3439. if "FAIL" not in dev[1].request(cmd):
  3440. raise Exception("DPP Authentication started unexpectedly")
  3441. def test_dpp_pkex_alloc_fail(dev, apdev):
  3442. """DPP/PKEX and memory allocation failures"""
  3443. check_dpp_capab(dev[0])
  3444. check_dpp_capab(dev[1])
  3445. tests = [ (1, "=dpp_keygen_configurator"),
  3446. (1, "base64_gen_encode;dpp_keygen_configurator") ]
  3447. for count, func in tests:
  3448. with alloc_fail(dev[1], count, func):
  3449. cmd = "DPP_CONFIGURATOR_ADD"
  3450. res = dev[1].request(cmd);
  3451. if "FAIL" not in res:
  3452. raise Exception("Unexpected DPP_CONFIGURATOR_ADD success")
  3453. cmd = "DPP_CONFIGURATOR_ADD"
  3454. res = dev[1].request(cmd);
  3455. if "FAIL" in res:
  3456. raise Exception("Failed to add configurator")
  3457. conf_id = int(res)
  3458. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  3459. res = dev[0].request(cmd)
  3460. if "FAIL" in res:
  3461. raise Exception("Failed to generate bootstrapping info")
  3462. id0 = int(res)
  3463. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  3464. res = dev[1].request(cmd)
  3465. if "FAIL" in res:
  3466. raise Exception("Failed to generate bootstrapping info")
  3467. id1 = int(res)
  3468. # Local error cases on the Initiator
  3469. tests = [ (1, "dpp_get_pubkey_point"),
  3470. (1, "dpp_alloc_msg;dpp_pkex_build_exchange_req"),
  3471. (1, "dpp_alloc_msg;dpp_pkex_build_commit_reveal_req"),
  3472. (1, "dpp_alloc_msg;dpp_auth_build_req"),
  3473. (1, "dpp_alloc_msg;dpp_auth_build_conf"),
  3474. (1, "dpp_bootstrap_key_hash"),
  3475. (1, "dpp_auth_init"),
  3476. (1, "=dpp_auth_resp_rx"),
  3477. (2, "=dpp_auth_resp_rx"),
  3478. (1, "dpp_build_conf_start"),
  3479. (1, "dpp_build_conf_obj_dpp"),
  3480. (2, "dpp_build_conf_obj_dpp"),
  3481. (3, "dpp_build_conf_obj_dpp"),
  3482. (4, "dpp_build_conf_obj_dpp"),
  3483. (5, "dpp_build_conf_obj_dpp"),
  3484. (6, "dpp_build_conf_obj_dpp"),
  3485. (7, "dpp_build_conf_obj_dpp"),
  3486. (8, "dpp_build_conf_obj_dpp"),
  3487. (1, "dpp_conf_req_rx"),
  3488. (2, "dpp_conf_req_rx"),
  3489. (3, "dpp_conf_req_rx"),
  3490. (4, "dpp_conf_req_rx"),
  3491. (5, "dpp_conf_req_rx"),
  3492. (6, "dpp_conf_req_rx"),
  3493. (7, "dpp_conf_req_rx"),
  3494. (1, "dpp_pkex_init"),
  3495. (2, "dpp_pkex_init"),
  3496. (3, "dpp_pkex_init"),
  3497. (1, "dpp_pkex_derive_z"),
  3498. (1, "=dpp_pkex_rx_commit_reveal_resp"),
  3499. (1, "dpp_get_pubkey_point;dpp_build_jwk"),
  3500. (2, "dpp_get_pubkey_point;dpp_build_jwk"),
  3501. (1, "dpp_get_pubkey_point;dpp_auth_init") ]
  3502. for count, func in tests:
  3503. dev[0].request("DPP_STOP_LISTEN")
  3504. dev[1].request("DPP_STOP_LISTEN")
  3505. dev[0].dump_monitor()
  3506. dev[1].dump_monitor()
  3507. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  3508. res = dev[0].request(cmd)
  3509. if "FAIL" in res:
  3510. raise Exception("Failed to set PKEX data (responder)")
  3511. cmd = "DPP_LISTEN 2437"
  3512. if "OK" not in dev[0].request(cmd):
  3513. raise Exception("Failed to start listen operation")
  3514. with alloc_fail(dev[1], count, func):
  3515. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 conf=sta-dpp configurator=%d code=secret" % (id1, conf_id)
  3516. dev[1].request(cmd)
  3517. wait_fail_trigger(dev[1], "GET_ALLOC_FAIL", max_iter=100)
  3518. ev = dev[0].wait_event(["GAS-QUERY-START"], timeout=0.01)
  3519. if ev:
  3520. dev[0].request("DPP_STOP_LISTEN")
  3521. dev[0].wait_event(["GAS-QUERY-DONE"], timeout=3)
  3522. # Local error cases on the Responder
  3523. tests = [ (1, "dpp_get_pubkey_point"),
  3524. (1, "dpp_alloc_msg;dpp_pkex_build_exchange_resp"),
  3525. (1, "dpp_alloc_msg;dpp_pkex_build_commit_reveal_resp"),
  3526. (1, "dpp_alloc_msg;dpp_auth_build_resp"),
  3527. (1, "dpp_get_pubkey_point;dpp_auth_build_resp_ok"),
  3528. (1, "=dpp_auth_req_rx"),
  3529. (2, "=dpp_auth_req_rx"),
  3530. (1, "=dpp_auth_conf_rx"),
  3531. (1, "json_parse;dpp_parse_jws_prot_hdr"),
  3532. (1, "json_get_member_base64url;dpp_parse_jws_prot_hdr"),
  3533. (1, "json_get_member_base64url;dpp_parse_jwk"),
  3534. (2, "json_get_member_base64url;dpp_parse_jwk"),
  3535. (1, "json_parse;dpp_parse_connector"),
  3536. (1, "dpp_parse_jwk;dpp_parse_connector"),
  3537. (1, "dpp_parse_jwk;dpp_parse_cred_dpp"),
  3538. (1, "dpp_get_pubkey_point;dpp_check_pubkey_match"),
  3539. (1, "base64_gen_decode;dpp_process_signed_connector"),
  3540. (1, "dpp_parse_jws_prot_hdr;dpp_process_signed_connector"),
  3541. (2, "base64_gen_decode;dpp_process_signed_connector"),
  3542. (3, "base64_gen_decode;dpp_process_signed_connector"),
  3543. (4, "base64_gen_decode;dpp_process_signed_connector"),
  3544. (1, "json_parse;dpp_parse_conf_obj"),
  3545. (1, "dpp_conf_resp_rx"),
  3546. (1, "=dpp_pkex_derive_z"),
  3547. (1, "=dpp_pkex_rx_exchange_req"),
  3548. (2, "=dpp_pkex_rx_exchange_req"),
  3549. (3, "=dpp_pkex_rx_exchange_req"),
  3550. (1, "=dpp_pkex_rx_commit_reveal_req"),
  3551. (1, "dpp_get_pubkey_point;dpp_pkex_rx_commit_reveal_req"),
  3552. (1, "dpp_bootstrap_key_hash") ]
  3553. for count, func in tests:
  3554. dev[0].request("DPP_STOP_LISTEN")
  3555. dev[1].request("DPP_STOP_LISTEN")
  3556. dev[0].dump_monitor()
  3557. dev[1].dump_monitor()
  3558. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  3559. res = dev[0].request(cmd)
  3560. if "FAIL" in res:
  3561. raise Exception("Failed to set PKEX data (responder)")
  3562. cmd = "DPP_LISTEN 2437"
  3563. if "OK" not in dev[0].request(cmd):
  3564. raise Exception("Failed to start listen operation")
  3565. with alloc_fail(dev[0], count, func):
  3566. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 conf=sta-dpp configurator=%d code=secret" % (id1, conf_id)
  3567. dev[1].request(cmd)
  3568. wait_fail_trigger(dev[0], "GET_ALLOC_FAIL", max_iter=100)
  3569. ev = dev[0].wait_event(["GAS-QUERY-START"], timeout=0.01)
  3570. if ev:
  3571. dev[0].request("DPP_STOP_LISTEN")
  3572. dev[0].wait_event(["GAS-QUERY-DONE"], timeout=3)
  3573. def test_dpp_pkex_test_fail(dev, apdev):
  3574. """DPP/PKEX and local failures"""
  3575. check_dpp_capab(dev[0])
  3576. check_dpp_capab(dev[1])
  3577. tests = [ (1, "dpp_keygen_configurator") ]
  3578. for count, func in tests:
  3579. with fail_test(dev[1], count, func):
  3580. cmd = "DPP_CONFIGURATOR_ADD"
  3581. res = dev[1].request(cmd);
  3582. if "FAIL" not in res:
  3583. raise Exception("Unexpected DPP_CONFIGURATOR_ADD success")
  3584. tests = [ (1, "dpp_keygen") ]
  3585. for count, func in tests:
  3586. with fail_test(dev[1], count, func):
  3587. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  3588. res = dev[1].request(cmd);
  3589. if "FAIL" not in res:
  3590. raise Exception("Unexpected DPP_BOOTSTRAP_GEN success")
  3591. cmd = "DPP_CONFIGURATOR_ADD"
  3592. res = dev[1].request(cmd);
  3593. if "FAIL" in res:
  3594. raise Exception("Failed to add configurator")
  3595. conf_id = int(res)
  3596. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  3597. res = dev[0].request(cmd)
  3598. if "FAIL" in res:
  3599. raise Exception("Failed to generate bootstrapping info")
  3600. id0 = int(res)
  3601. cmd = "DPP_BOOTSTRAP_GEN type=pkex"
  3602. res = dev[1].request(cmd)
  3603. if "FAIL" in res:
  3604. raise Exception("Failed to generate bootstrapping info")
  3605. id1 = int(res)
  3606. # Local error cases on the Initiator
  3607. tests = [ (1, "aes_siv_encrypt;dpp_auth_build_req"),
  3608. (1, "os_get_random;dpp_auth_init"),
  3609. (1, "dpp_derive_k1;dpp_auth_init"),
  3610. (1, "dpp_hkdf_expand;dpp_derive_k1;dpp_auth_init"),
  3611. (1, "dpp_gen_i_auth;dpp_auth_build_conf"),
  3612. (1, "aes_siv_encrypt;dpp_auth_build_conf"),
  3613. (1, "dpp_derive_k2;dpp_auth_resp_rx"),
  3614. (1, "dpp_hkdf_expand;dpp_derive_k2;dpp_auth_resp_rx"),
  3615. (1, "dpp_derive_ke;dpp_auth_resp_rx"),
  3616. (1, "dpp_hkdf_expand;dpp_derive_ke;dpp_auth_resp_rx"),
  3617. (1, "dpp_gen_r_auth;dpp_auth_resp_rx"),
  3618. (1, "aes_siv_encrypt;dpp_build_conf_resp"),
  3619. (1, "dpp_pkex_derive_Qi;dpp_pkex_build_exchange_req"),
  3620. (1, "aes_siv_encrypt;dpp_pkex_build_commit_reveal_req"),
  3621. (1, "hmac_sha256_vector;dpp_pkex_rx_exchange_resp"),
  3622. (1, "aes_siv_decrypt;dpp_pkex_rx_commit_reveal_resp"),
  3623. (1, "hmac_sha256_vector;dpp_pkex_rx_commit_reveal_resp") ]
  3624. for count, func in tests:
  3625. dev[0].request("DPP_STOP_LISTEN")
  3626. dev[1].request("DPP_STOP_LISTEN")
  3627. dev[0].dump_monitor()
  3628. dev[1].dump_monitor()
  3629. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  3630. res = dev[0].request(cmd)
  3631. if "FAIL" in res:
  3632. raise Exception("Failed to set PKEX data (responder)")
  3633. cmd = "DPP_LISTEN 2437"
  3634. if "OK" not in dev[0].request(cmd):
  3635. raise Exception("Failed to start listen operation")
  3636. with fail_test(dev[1], count, func):
  3637. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 conf=sta-dpp configurator=%d code=secret" % (id1, conf_id)
  3638. dev[1].request(cmd)
  3639. wait_fail_trigger(dev[1], "GET_FAIL", max_iter=100)
  3640. ev = dev[0].wait_event(["GAS-QUERY-START"], timeout=0.01)
  3641. if ev:
  3642. dev[0].request("DPP_STOP_LISTEN")
  3643. dev[0].wait_event(["GAS-QUERY-DONE"], timeout=3)
  3644. # Local error cases on the Responder
  3645. tests = [ (1, "aes_siv_encrypt;dpp_auth_build_resp"),
  3646. (1, "os_get_random;dpp_build_conf_req"),
  3647. (1, "aes_siv_encrypt;dpp_build_conf_req"),
  3648. (1, "os_get_random;dpp_auth_build_resp_ok"),
  3649. (1, "dpp_derive_k2;dpp_auth_build_resp_ok"),
  3650. (1, "dpp_derive_ke;dpp_auth_build_resp_ok"),
  3651. (1, "dpp_gen_r_auth;dpp_auth_build_resp_ok"),
  3652. (1, "aes_siv_encrypt;dpp_auth_build_resp_ok"),
  3653. (1, "dpp_derive_k1;dpp_auth_req_rx"),
  3654. (1, "aes_siv_decrypt;dpp_auth_req_rx"),
  3655. (1, "aes_siv_decrypt;dpp_auth_conf_rx"),
  3656. (1, "dpp_gen_i_auth;dpp_auth_conf_rx"),
  3657. (1, "dpp_check_pubkey_match"),
  3658. (1, "aes_siv_decrypt;dpp_conf_resp_rx"),
  3659. (1, "hmac_sha256_kdf;dpp_pkex_derive_z"),
  3660. (1, "dpp_pkex_derive_Qi;dpp_pkex_rx_exchange_req"),
  3661. (1, "dpp_pkex_derive_Qr;dpp_pkex_rx_exchange_req"),
  3662. (1, "aes_siv_encrypt;dpp_pkex_build_commit_reveal_resp"),
  3663. (1, "aes_siv_decrypt;dpp_pkex_rx_commit_reveal_req"),
  3664. (1, "hmac_sha256_vector;dpp_pkex_rx_commit_reveal_req"),
  3665. (2, "hmac_sha256_vector;dpp_pkex_rx_commit_reveal_req") ]
  3666. for count, func in tests:
  3667. dev[0].request("DPP_STOP_LISTEN")
  3668. dev[1].request("DPP_STOP_LISTEN")
  3669. dev[0].dump_monitor()
  3670. dev[1].dump_monitor()
  3671. cmd = "DPP_PKEX_ADD own=%d identifier=test code=secret" % (id0)
  3672. res = dev[0].request(cmd)
  3673. if "FAIL" in res:
  3674. raise Exception("Failed to set PKEX data (responder)")
  3675. cmd = "DPP_LISTEN 2437"
  3676. if "OK" not in dev[0].request(cmd):
  3677. raise Exception("Failed to start listen operation")
  3678. with fail_test(dev[0], count, func):
  3679. cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 conf=sta-dpp configurator=%d code=secret" % (id1, conf_id)
  3680. dev[1].request(cmd)
  3681. wait_fail_trigger(dev[0], "GET_FAIL", max_iter=100)
  3682. ev = dev[0].wait_event(["GAS-QUERY-START"], timeout=0.01)
  3683. if ev:
  3684. dev[0].request("DPP_STOP_LISTEN")
  3685. dev[0].wait_event(["GAS-QUERY-DONE"], timeout=3)