test_dbus.py 214 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223
  1. # wpa_supplicant D-Bus interface tests
  2. # Copyright (c) 2014-2015, Jouni Malinen <j@w1.fi>
  3. #
  4. # This software may be distributed under the terms of the BSD license.
  5. # See README for more details.
  6. import binascii
  7. import logging
  8. logger = logging.getLogger()
  9. import subprocess
  10. import time
  11. try:
  12. import gobject
  13. import dbus
  14. dbus_imported = True
  15. except ImportError:
  16. dbus_imported = False
  17. import hostapd
  18. from wpasupplicant import WpaSupplicant
  19. from utils import HwsimSkip, alloc_fail, fail_test
  20. from p2p_utils import *
  21. from test_ap_tdls import connect_2sta_open
  22. from test_ap_eap import check_altsubject_match_support
  23. WPAS_DBUS_SERVICE = "fi.w1.wpa_supplicant1"
  24. WPAS_DBUS_PATH = "/fi/w1/wpa_supplicant1"
  25. WPAS_DBUS_IFACE = "fi.w1.wpa_supplicant1.Interface"
  26. WPAS_DBUS_IFACE_WPS = WPAS_DBUS_IFACE + ".WPS"
  27. WPAS_DBUS_NETWORK = "fi.w1.wpa_supplicant1.Network"
  28. WPAS_DBUS_BSS = "fi.w1.wpa_supplicant1.BSS"
  29. WPAS_DBUS_IFACE_P2PDEVICE = WPAS_DBUS_IFACE + ".P2PDevice"
  30. WPAS_DBUS_P2P_PEER = "fi.w1.wpa_supplicant1.Peer"
  31. WPAS_DBUS_GROUP = "fi.w1.wpa_supplicant1.Group"
  32. WPAS_DBUS_PERSISTENT_GROUP = "fi.w1.wpa_supplicant1.PersistentGroup"
  33. def prepare_dbus(dev):
  34. if not dbus_imported:
  35. logger.info("No dbus module available")
  36. raise HwsimSkip("No dbus module available")
  37. try:
  38. from dbus.mainloop.glib import DBusGMainLoop
  39. dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
  40. bus = dbus.SystemBus()
  41. wpas_obj = bus.get_object(WPAS_DBUS_SERVICE, WPAS_DBUS_PATH)
  42. wpas = dbus.Interface(wpas_obj, WPAS_DBUS_SERVICE)
  43. path = wpas.GetInterface(dev.ifname)
  44. if_obj = bus.get_object(WPAS_DBUS_SERVICE, path)
  45. return (bus,wpas_obj,path,if_obj)
  46. except Exception, e:
  47. raise HwsimSkip("Could not connect to D-Bus: %s" % e)
  48. class TestDbus(object):
  49. def __init__(self, bus):
  50. self.loop = gobject.MainLoop()
  51. self.signals = []
  52. self.bus = bus
  53. def __exit__(self, type, value, traceback):
  54. for s in self.signals:
  55. s.remove()
  56. def add_signal(self, handler, interface, name, byte_arrays=False):
  57. s = self.bus.add_signal_receiver(handler, dbus_interface=interface,
  58. signal_name=name,
  59. byte_arrays=byte_arrays)
  60. self.signals.append(s)
  61. def timeout(self, *args):
  62. logger.debug("timeout")
  63. self.loop.quit()
  64. return False
  65. class alloc_fail_dbus(object):
  66. def __init__(self, dev, count, funcs, operation="Operation",
  67. expected="NoMemory"):
  68. self._dev = dev
  69. self._count = count
  70. self._funcs = funcs
  71. self._operation = operation
  72. self._expected = expected
  73. def __enter__(self):
  74. cmd = "TEST_ALLOC_FAIL %d:%s" % (self._count, self._funcs)
  75. if "OK" not in self._dev.request(cmd):
  76. raise HwsimSkip("TEST_ALLOC_FAIL not supported")
  77. def __exit__(self, type, value, traceback):
  78. if type is None:
  79. raise Exception("%s succeeded during out-of-memory" % self._operation)
  80. if type == dbus.exceptions.DBusException and self._expected in str(value):
  81. return True
  82. if self._dev.request("GET_ALLOC_FAIL") != "0:%s" % self._funcs:
  83. raise Exception("%s did not trigger allocation failure" % self._operation)
  84. return False
  85. def start_ap(ap, ssid="test-wps",
  86. ap_uuid="27ea801a-9e5c-4e73-bd82-f89cbcd10d7e"):
  87. params = { "ssid": ssid, "eap_server": "1", "wps_state": "2",
  88. "wpa_passphrase": "12345678", "wpa": "2",
  89. "wpa_key_mgmt": "WPA-PSK", "rsn_pairwise": "CCMP",
  90. "ap_pin": "12345670", "uuid": ap_uuid}
  91. return hostapd.add_ap(ap, params)
  92. def test_dbus_getall(dev, apdev):
  93. """D-Bus GetAll"""
  94. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  95. props = wpas_obj.GetAll(WPAS_DBUS_SERVICE,
  96. dbus_interface=dbus.PROPERTIES_IFACE)
  97. logger.debug("GetAll(fi.w1.wpa.supplicant1, /fi/w1/wpa_supplicant1) ==> " + str(props))
  98. props = if_obj.GetAll(WPAS_DBUS_IFACE,
  99. dbus_interface=dbus.PROPERTIES_IFACE)
  100. logger.debug("GetAll(%s, %s): %s" % (WPAS_DBUS_IFACE, path, str(props)))
  101. props = if_obj.GetAll(WPAS_DBUS_IFACE_WPS,
  102. dbus_interface=dbus.PROPERTIES_IFACE)
  103. logger.debug("GetAll(%s, %s): %s" % (WPAS_DBUS_IFACE_WPS, path, str(props)))
  104. res = if_obj.Get(WPAS_DBUS_IFACE, 'BSSs',
  105. dbus_interface=dbus.PROPERTIES_IFACE)
  106. if len(res) != 0:
  107. raise Exception("Unexpected BSSs entry: " + str(res))
  108. res = if_obj.Get(WPAS_DBUS_IFACE, 'Networks',
  109. dbus_interface=dbus.PROPERTIES_IFACE)
  110. if len(res) != 0:
  111. raise Exception("Unexpected Networks entry: " + str(res))
  112. hapd = hostapd.add_ap(apdev[0], { "ssid": "open" })
  113. bssid = apdev[0]['bssid']
  114. dev[0].scan_for_bss(bssid, freq=2412)
  115. id = dev[0].add_network()
  116. dev[0].set_network(id, "disabled", "0")
  117. dev[0].set_network_quoted(id, "ssid", "test")
  118. res = if_obj.Get(WPAS_DBUS_IFACE, 'BSSs',
  119. dbus_interface=dbus.PROPERTIES_IFACE)
  120. if len(res) != 1:
  121. raise Exception("Missing BSSs entry: " + str(res))
  122. bss_obj = bus.get_object(WPAS_DBUS_SERVICE, res[0])
  123. props = bss_obj.GetAll(WPAS_DBUS_BSS, dbus_interface=dbus.PROPERTIES_IFACE)
  124. logger.debug("GetAll(%s, %s): %s" % (WPAS_DBUS_BSS, res[0], str(props)))
  125. bssid_str = ''
  126. for item in props['BSSID']:
  127. if len(bssid_str) > 0:
  128. bssid_str += ':'
  129. bssid_str += '%02x' % item
  130. if bssid_str != bssid:
  131. raise Exception("Unexpected BSSID in BSSs entry")
  132. res = if_obj.Get(WPAS_DBUS_IFACE, 'Networks',
  133. dbus_interface=dbus.PROPERTIES_IFACE)
  134. if len(res) != 1:
  135. raise Exception("Missing Networks entry: " + str(res))
  136. net_obj = bus.get_object(WPAS_DBUS_SERVICE, res[0])
  137. props = net_obj.GetAll(WPAS_DBUS_NETWORK,
  138. dbus_interface=dbus.PROPERTIES_IFACE)
  139. logger.debug("GetAll(%s, %s): %s" % (WPAS_DBUS_NETWORK, res[0], str(props)))
  140. ssid = props['Properties']['ssid']
  141. if ssid != '"test"':
  142. raise Exception("Unexpected SSID in network entry")
  143. def dbus_get(dbus, wpas_obj, prop, expect=None, byte_arrays=False):
  144. val = wpas_obj.Get(WPAS_DBUS_SERVICE, prop,
  145. dbus_interface=dbus.PROPERTIES_IFACE,
  146. byte_arrays=byte_arrays)
  147. if expect is not None and val != expect:
  148. raise Exception("Unexpected %s: %s (expected: %s)" %
  149. (prop, str(val), str(expect)))
  150. return val
  151. def dbus_set(dbus, wpas_obj, prop, val):
  152. wpas_obj.Set(WPAS_DBUS_SERVICE, prop, val,
  153. dbus_interface=dbus.PROPERTIES_IFACE)
  154. def test_dbus_properties(dev, apdev):
  155. """D-Bus Get/Set fi.w1.wpa_supplicant1 properties"""
  156. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  157. dbus_get(dbus, wpas_obj, "DebugLevel", expect="msgdump")
  158. dbus_set(dbus, wpas_obj, "DebugLevel", "debug")
  159. dbus_get(dbus, wpas_obj, "DebugLevel", expect="debug")
  160. for (val,err) in [ (3, "Error.Failed: wrong property type"),
  161. ("foo", "Error.Failed: wrong debug level value") ]:
  162. try:
  163. dbus_set(dbus, wpas_obj, "DebugLevel", val)
  164. raise Exception("Invalid DebugLevel value accepted: " + str(val))
  165. except dbus.exceptions.DBusException, e:
  166. if err not in str(e):
  167. raise Exception("Unexpected error message: " + str(e))
  168. dbus_set(dbus, wpas_obj, "DebugLevel", "msgdump")
  169. dbus_get(dbus, wpas_obj, "DebugLevel", expect="msgdump")
  170. dbus_get(dbus, wpas_obj, "DebugTimestamp", expect=True)
  171. dbus_set(dbus, wpas_obj, "DebugTimestamp", False)
  172. dbus_get(dbus, wpas_obj, "DebugTimestamp", expect=False)
  173. try:
  174. dbus_set(dbus, wpas_obj, "DebugTimestamp", "foo")
  175. raise Exception("Invalid DebugTimestamp value accepted")
  176. except dbus.exceptions.DBusException, e:
  177. if "Error.Failed: wrong property type" not in str(e):
  178. raise Exception("Unexpected error message: " + str(e))
  179. dbus_set(dbus, wpas_obj, "DebugTimestamp", True)
  180. dbus_get(dbus, wpas_obj, "DebugTimestamp", expect=True)
  181. dbus_get(dbus, wpas_obj, "DebugShowKeys", expect=True)
  182. dbus_set(dbus, wpas_obj, "DebugShowKeys", False)
  183. dbus_get(dbus, wpas_obj, "DebugShowKeys", expect=False)
  184. try:
  185. dbus_set(dbus, wpas_obj, "DebugShowKeys", "foo")
  186. raise Exception("Invalid DebugShowKeys value accepted")
  187. except dbus.exceptions.DBusException, e:
  188. if "Error.Failed: wrong property type" not in str(e):
  189. raise Exception("Unexpected error message: " + str(e))
  190. dbus_set(dbus, wpas_obj, "DebugShowKeys", True)
  191. dbus_get(dbus, wpas_obj, "DebugShowKeys", expect=True)
  192. res = dbus_get(dbus, wpas_obj, "Interfaces")
  193. if len(res) != 1:
  194. raise Exception("Unexpected Interfaces value: " + str(res))
  195. res = dbus_get(dbus, wpas_obj, "EapMethods")
  196. if len(res) < 5 or "TTLS" not in res:
  197. raise Exception("Unexpected EapMethods value: " + str(res))
  198. res = dbus_get(dbus, wpas_obj, "Capabilities")
  199. if len(res) < 2 or "p2p" not in res:
  200. raise Exception("Unexpected Capabilities value: " + str(res))
  201. dbus_get(dbus, wpas_obj, "WFDIEs", byte_arrays=True)
  202. val = binascii.unhexlify("010006020304050608")
  203. dbus_set(dbus, wpas_obj, "WFDIEs", dbus.ByteArray(val))
  204. res = dbus_get(dbus, wpas_obj, "WFDIEs", byte_arrays=True)
  205. if val != res:
  206. raise Exception("WFDIEs value changed")
  207. try:
  208. dbus_set(dbus, wpas_obj, "WFDIEs", dbus.ByteArray('\x00'))
  209. raise Exception("Invalid WFDIEs value accepted")
  210. except dbus.exceptions.DBusException, e:
  211. if "InvalidArgs" not in str(e):
  212. raise Exception("Unexpected error message: " + str(e))
  213. dbus_set(dbus, wpas_obj, "WFDIEs", dbus.ByteArray(''))
  214. dbus_set(dbus, wpas_obj, "WFDIEs", dbus.ByteArray(val))
  215. dbus_set(dbus, wpas_obj, "WFDIEs", dbus.ByteArray(''))
  216. res = dbus_get(dbus, wpas_obj, "WFDIEs", byte_arrays=True)
  217. if len(res) != 0:
  218. raise Exception("WFDIEs not cleared properly")
  219. res = dbus_get(dbus, wpas_obj, "EapMethods")
  220. try:
  221. dbus_set(dbus, wpas_obj, "EapMethods", res)
  222. raise Exception("Invalid Set accepted")
  223. except dbus.exceptions.DBusException, e:
  224. if "InvalidArgs: Property is read-only" not in str(e):
  225. raise Exception("Unexpected error message: " + str(e))
  226. try:
  227. wpas_obj.SetFoo(WPAS_DBUS_SERVICE, "DebugShowKeys", True,
  228. dbus_interface=dbus.PROPERTIES_IFACE)
  229. raise Exception("Unknown method accepted")
  230. except dbus.exceptions.DBusException, e:
  231. if "UnknownMethod" not in str(e):
  232. raise Exception("Unexpected error message: " + str(e))
  233. try:
  234. wpas_obj.Get("foo", "DebugShowKeys",
  235. dbus_interface=dbus.PROPERTIES_IFACE)
  236. raise Exception("Invalid Get accepted")
  237. except dbus.exceptions.DBusException, e:
  238. if "InvalidArgs: No such property" not in str(e):
  239. raise Exception("Unexpected error message: " + str(e))
  240. test_obj = bus.get_object(WPAS_DBUS_SERVICE, WPAS_DBUS_PATH,
  241. introspect=False)
  242. try:
  243. test_obj.Get(123, "DebugShowKeys",
  244. dbus_interface=dbus.PROPERTIES_IFACE)
  245. raise Exception("Invalid Get accepted")
  246. except dbus.exceptions.DBusException, e:
  247. if "InvalidArgs: Invalid arguments" not in str(e):
  248. raise Exception("Unexpected error message: " + str(e))
  249. try:
  250. test_obj.Get(WPAS_DBUS_SERVICE, 123,
  251. dbus_interface=dbus.PROPERTIES_IFACE)
  252. raise Exception("Invalid Get accepted")
  253. except dbus.exceptions.DBusException, e:
  254. if "InvalidArgs: Invalid arguments" not in str(e):
  255. raise Exception("Unexpected error message: " + str(e))
  256. try:
  257. wpas_obj.Set(WPAS_DBUS_SERVICE, "WFDIEs",
  258. dbus.ByteArray('', variant_level=2),
  259. dbus_interface=dbus.PROPERTIES_IFACE)
  260. raise Exception("Invalid Set accepted")
  261. except dbus.exceptions.DBusException, e:
  262. if "InvalidArgs: invalid message format" not in str(e):
  263. raise Exception("Unexpected error message: " + str(e))
  264. def test_dbus_set_global_properties(dev, apdev):
  265. """D-Bus Get/Set fi.w1.wpa_supplicant1 interface global properties"""
  266. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  267. props = [ ('Okc', '0', '1'), ('ModelName', '', 'blahblahblah') ]
  268. for p in props:
  269. res = if_obj.Get(WPAS_DBUS_IFACE, p[0],
  270. dbus_interface=dbus.PROPERTIES_IFACE)
  271. if res != p[1]:
  272. raise Exception("Unexpected " + p[0] + " value: " + str(res))
  273. if_obj.Set(WPAS_DBUS_IFACE, p[0], p[2],
  274. dbus_interface=dbus.PROPERTIES_IFACE)
  275. res = if_obj.Get(WPAS_DBUS_IFACE, p[0],
  276. dbus_interface=dbus.PROPERTIES_IFACE)
  277. if res != p[2]:
  278. raise Exception("Unexpected " + p[0] + " value after set: " + str(res))
  279. def test_dbus_invalid_method(dev, apdev):
  280. """D-Bus invalid method"""
  281. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  282. wps = dbus.Interface(if_obj, WPAS_DBUS_IFACE_WPS)
  283. try:
  284. wps.Foo()
  285. raise Exception("Unknown method accepted")
  286. except dbus.exceptions.DBusException, e:
  287. if "UnknownMethod" not in str(e):
  288. raise Exception("Unexpected error message: " + str(e))
  289. test_obj = bus.get_object(WPAS_DBUS_SERVICE, path, introspect=False)
  290. test_wps = dbus.Interface(test_obj, WPAS_DBUS_IFACE_WPS)
  291. try:
  292. test_wps.Start(123)
  293. raise Exception("WPS.Start with incorrect signature accepted")
  294. except dbus.exceptions.DBusException, e:
  295. if "InvalidArgs: Invalid arg" not in str(e):
  296. raise Exception("Unexpected error message: " + str(e))
  297. def test_dbus_get_set_wps(dev, apdev):
  298. """D-Bus Get/Set for WPS properties"""
  299. try:
  300. _test_dbus_get_set_wps(dev, apdev)
  301. finally:
  302. dev[0].request("SET wps_cred_processing 0")
  303. dev[0].request("SET config_methods display keypad virtual_display nfc_interface p2ps")
  304. def _test_dbus_get_set_wps(dev, apdev):
  305. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  306. if_obj.Get(WPAS_DBUS_IFACE_WPS, "ConfigMethods",
  307. dbus_interface=dbus.PROPERTIES_IFACE)
  308. val = "display keypad virtual_display nfc_interface"
  309. dev[0].request("SET config_methods " + val)
  310. config = if_obj.Get(WPAS_DBUS_IFACE_WPS, "ConfigMethods",
  311. dbus_interface=dbus.PROPERTIES_IFACE)
  312. if config != val:
  313. raise Exception("Unexpected Get(ConfigMethods) result: " + config)
  314. val2 = "push_button display"
  315. if_obj.Set(WPAS_DBUS_IFACE_WPS, "ConfigMethods", val2,
  316. dbus_interface=dbus.PROPERTIES_IFACE)
  317. config = if_obj.Get(WPAS_DBUS_IFACE_WPS, "ConfigMethods",
  318. dbus_interface=dbus.PROPERTIES_IFACE)
  319. if config != val2:
  320. raise Exception("Unexpected Get(ConfigMethods) result after Set: " + config)
  321. dev[0].request("SET config_methods " + val)
  322. for i in range(3):
  323. dev[0].request("SET wps_cred_processing " + str(i))
  324. val = if_obj.Get(WPAS_DBUS_IFACE_WPS, "ProcessCredentials",
  325. dbus_interface=dbus.PROPERTIES_IFACE)
  326. expected_val = False if i == 1 else True
  327. if val != expected_val:
  328. raise Exception("Unexpected Get(ProcessCredentials) result({}): {}".format(i, val))
  329. class TestDbusGetSet(TestDbus):
  330. def __init__(self, bus):
  331. TestDbus.__init__(self, bus)
  332. self.signal_received = False
  333. self.signal_received_deprecated = False
  334. self.sets_done = False
  335. def __enter__(self):
  336. gobject.timeout_add(1, self.run_sets)
  337. gobject.timeout_add(1000, self.timeout)
  338. self.add_signal(self.propertiesChanged, WPAS_DBUS_IFACE_WPS,
  339. "PropertiesChanged")
  340. self.add_signal(self.propertiesChanged2, dbus.PROPERTIES_IFACE,
  341. "PropertiesChanged")
  342. self.loop.run()
  343. return self
  344. def propertiesChanged(self, properties):
  345. logger.debug("PropertiesChanged: " + str(properties))
  346. if properties.has_key("ProcessCredentials"):
  347. self.signal_received_deprecated = True
  348. if self.sets_done and self.signal_received:
  349. self.loop.quit()
  350. def propertiesChanged2(self, interface_name, changed_properties,
  351. invalidated_properties):
  352. logger.debug("propertiesChanged2: interface_name=%s changed_properties=%s invalidated_properties=%s" % (interface_name, str(changed_properties), str(invalidated_properties)))
  353. if interface_name != WPAS_DBUS_IFACE_WPS:
  354. return
  355. if changed_properties.has_key("ProcessCredentials"):
  356. self.signal_received = True
  357. if self.sets_done and self.signal_received_deprecated:
  358. self.loop.quit()
  359. def run_sets(self, *args):
  360. logger.debug("run_sets")
  361. if_obj.Set(WPAS_DBUS_IFACE_WPS, "ProcessCredentials",
  362. dbus.Boolean(1),
  363. dbus_interface=dbus.PROPERTIES_IFACE)
  364. if if_obj.Get(WPAS_DBUS_IFACE_WPS, "ProcessCredentials",
  365. dbus_interface=dbus.PROPERTIES_IFACE) != True:
  366. raise Exception("Unexpected Get(ProcessCredentials) result after Set");
  367. if_obj.Set(WPAS_DBUS_IFACE_WPS, "ProcessCredentials",
  368. dbus.Boolean(0),
  369. dbus_interface=dbus.PROPERTIES_IFACE)
  370. if if_obj.Get(WPAS_DBUS_IFACE_WPS, "ProcessCredentials",
  371. dbus_interface=dbus.PROPERTIES_IFACE) != False:
  372. raise Exception("Unexpected Get(ProcessCredentials) result after Set");
  373. self.dbus_sets_done = True
  374. return False
  375. def success(self):
  376. return self.signal_received and self.signal_received_deprecated
  377. with TestDbusGetSet(bus) as t:
  378. if not t.success():
  379. raise Exception("No signal received for ProcessCredentials change")
  380. def test_dbus_wps_invalid(dev, apdev):
  381. """D-Bus invaldi WPS operation"""
  382. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  383. wps = dbus.Interface(if_obj, WPAS_DBUS_IFACE_WPS)
  384. failures = [ {'Role': 'foo', 'Type': 'pbc'},
  385. {'Role': 123, 'Type': 'pbc'},
  386. {'Type': 'pbc'},
  387. {'Role': 'enrollee'},
  388. {'Role': 'registrar'},
  389. {'Role': 'enrollee', 'Type': 123},
  390. {'Role': 'enrollee', 'Type': 'foo'},
  391. {'Role': 'enrollee', 'Type': 'pbc',
  392. 'Bssid': '02:33:44:55:66:77'},
  393. {'Role': 'enrollee', 'Type': 'pin', 'Pin': 123},
  394. {'Role': 'enrollee', 'Type': 'pbc',
  395. 'Bssid': dbus.ByteArray('12345')},
  396. {'Role': 'enrollee', 'Type': 'pbc',
  397. 'P2PDeviceAddress': 12345},
  398. {'Role': 'enrollee', 'Type': 'pbc',
  399. 'P2PDeviceAddress': dbus.ByteArray('12345')},
  400. {'Role': 'enrollee', 'Type': 'pbc', 'Foo': 'bar'} ]
  401. for args in failures:
  402. try:
  403. wps.Start(args)
  404. raise Exception("Invalid WPS.Start() arguments accepted: " + str(args))
  405. except dbus.exceptions.DBusException, e:
  406. if not str(e).startswith("fi.w1.wpa_supplicant1.InvalidArgs"):
  407. raise Exception("Unexpected error message: " + str(e))
  408. def test_dbus_wps_oom(dev, apdev):
  409. """D-Bus WPS operation (OOM)"""
  410. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  411. wps = dbus.Interface(if_obj, WPAS_DBUS_IFACE_WPS)
  412. with alloc_fail_dbus(dev[0], 1, "=wpas_dbus_getter_state", "Get"):
  413. if_obj.Get(WPAS_DBUS_IFACE, "State",
  414. dbus_interface=dbus.PROPERTIES_IFACE)
  415. hapd = hostapd.add_ap(apdev[0], { "ssid": "open" })
  416. bssid = apdev[0]['bssid']
  417. dev[0].scan_for_bss(bssid, freq=2412)
  418. time.sleep(0.05)
  419. for i in range(1, 3):
  420. with alloc_fail_dbus(dev[0], i, "=wpas_dbus_getter_bsss", "Get"):
  421. if_obj.Get(WPAS_DBUS_IFACE, "BSSs",
  422. dbus_interface=dbus.PROPERTIES_IFACE)
  423. res = if_obj.Get(WPAS_DBUS_IFACE, 'BSSs',
  424. dbus_interface=dbus.PROPERTIES_IFACE)
  425. bss_obj = bus.get_object(WPAS_DBUS_SERVICE, res[0])
  426. with alloc_fail_dbus(dev[0], 1, "=wpas_dbus_getter_bss_rates", "Get"):
  427. bss_obj.Get(WPAS_DBUS_BSS, "Rates",
  428. dbus_interface=dbus.PROPERTIES_IFACE)
  429. with alloc_fail(dev[0], 1,
  430. "wpa_bss_get_bit_rates;wpas_dbus_getter_bss_rates"):
  431. try:
  432. bss_obj.Get(WPAS_DBUS_BSS, "Rates",
  433. dbus_interface=dbus.PROPERTIES_IFACE)
  434. except dbus.exceptions.DBusException, e:
  435. pass
  436. id = dev[0].add_network()
  437. dev[0].set_network(id, "disabled", "0")
  438. dev[0].set_network_quoted(id, "ssid", "test")
  439. for i in range(1, 3):
  440. with alloc_fail_dbus(dev[0], i, "=wpas_dbus_getter_networks", "Get"):
  441. if_obj.Get(WPAS_DBUS_IFACE, "Networks",
  442. dbus_interface=dbus.PROPERTIES_IFACE)
  443. with alloc_fail_dbus(dev[0], 1, "wpas_dbus_getter_interfaces", "Get"):
  444. dbus_get(dbus, wpas_obj, "Interfaces")
  445. for i in range(1, 6):
  446. with alloc_fail_dbus(dev[0], i, "=eap_get_names_as_string_array;wpas_dbus_getter_eap_methods", "Get"):
  447. dbus_get(dbus, wpas_obj, "EapMethods")
  448. with alloc_fail_dbus(dev[0], 1, "wpas_dbus_setter_config_methods", "Set",
  449. expected="Error.Failed: Failed to set property"):
  450. val2 = "push_button display"
  451. if_obj.Set(WPAS_DBUS_IFACE_WPS, "ConfigMethods", val2,
  452. dbus_interface=dbus.PROPERTIES_IFACE)
  453. with alloc_fail_dbus(dev[0], 1, "=wpa_config_add_network;wpas_dbus_handler_wps_start",
  454. "WPS.Start",
  455. expected="UnknownError: WPS start failed"):
  456. wps.Start({'Role': 'enrollee', 'Type': 'pin', 'Pin': '12345670'})
  457. def test_dbus_wps_pbc(dev, apdev):
  458. """D-Bus WPS/PBC operation and signals"""
  459. try:
  460. _test_dbus_wps_pbc(dev, apdev)
  461. finally:
  462. dev[0].request("SET wps_cred_processing 0")
  463. def _test_dbus_wps_pbc(dev, apdev):
  464. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  465. wps = dbus.Interface(if_obj, WPAS_DBUS_IFACE_WPS)
  466. hapd = start_ap(apdev[0])
  467. hapd.request("WPS_PBC")
  468. bssid = apdev[0]['bssid']
  469. dev[0].scan_for_bss(bssid, freq="2412")
  470. dev[0].request("SET wps_cred_processing 2")
  471. res = if_obj.Get(WPAS_DBUS_IFACE, 'BSSs',
  472. dbus_interface=dbus.PROPERTIES_IFACE)
  473. if len(res) != 1:
  474. raise Exception("Missing BSSs entry: " + str(res))
  475. bss_obj = bus.get_object(WPAS_DBUS_SERVICE, res[0])
  476. props = bss_obj.GetAll(WPAS_DBUS_BSS, dbus_interface=dbus.PROPERTIES_IFACE)
  477. logger.debug("GetAll(%s, %s): %s" % (WPAS_DBUS_BSS, res[0], str(props)))
  478. if 'WPS' not in props:
  479. raise Exception("No WPS information in the BSS entry")
  480. if 'Type' not in props['WPS']:
  481. raise Exception("No Type field in the WPS dictionary")
  482. if props['WPS']['Type'] != 'pbc':
  483. raise Exception("Unexpected WPS Type: " + props['WPS']['Type'])
  484. class TestDbusWps(TestDbus):
  485. def __init__(self, bus, wps):
  486. TestDbus.__init__(self, bus)
  487. self.success_seen = False
  488. self.credentials_received = False
  489. self.wps = wps
  490. def __enter__(self):
  491. gobject.timeout_add(1, self.start_pbc)
  492. gobject.timeout_add(15000, self.timeout)
  493. self.add_signal(self.wpsEvent, WPAS_DBUS_IFACE_WPS, "Event")
  494. self.add_signal(self.credentials, WPAS_DBUS_IFACE_WPS,
  495. "Credentials")
  496. self.loop.run()
  497. return self
  498. def wpsEvent(self, name, args):
  499. logger.debug("wpsEvent: %s args='%s'" % (name, str(args)))
  500. if name == "success":
  501. self.success_seen = True
  502. if self.credentials_received:
  503. self.loop.quit()
  504. def credentials(self, args):
  505. logger.debug("credentials: " + str(args))
  506. self.credentials_received = True
  507. if self.success_seen:
  508. self.loop.quit()
  509. def start_pbc(self, *args):
  510. logger.debug("start_pbc")
  511. self.wps.Start({'Role': 'enrollee', 'Type': 'pbc'})
  512. return False
  513. def success(self):
  514. return self.success_seen and self.credentials_received
  515. with TestDbusWps(bus, wps) as t:
  516. if not t.success():
  517. raise Exception("Failure in D-Bus operations")
  518. dev[0].wait_connected(timeout=10)
  519. dev[0].request("DISCONNECT")
  520. hapd.disable()
  521. dev[0].flush_scan_cache()
  522. def test_dbus_wps_pbc_overlap(dev, apdev):
  523. """D-Bus WPS/PBC operation and signal for PBC overlap"""
  524. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  525. wps = dbus.Interface(if_obj, WPAS_DBUS_IFACE_WPS)
  526. hapd = start_ap(apdev[0])
  527. hapd2 = start_ap(apdev[1], ssid="test-wps2",
  528. ap_uuid="27ea801a-9e5c-4e73-bd82-f89cbcd10d7f")
  529. hapd.request("WPS_PBC")
  530. hapd2.request("WPS_PBC")
  531. bssid = apdev[0]['bssid']
  532. dev[0].scan_for_bss(bssid, freq="2412")
  533. bssid2 = apdev[1]['bssid']
  534. dev[0].scan_for_bss(bssid2, freq="2412")
  535. class TestDbusWps(TestDbus):
  536. def __init__(self, bus, wps):
  537. TestDbus.__init__(self, bus)
  538. self.overlap_seen = False
  539. self.wps = wps
  540. def __enter__(self):
  541. gobject.timeout_add(1, self.start_pbc)
  542. gobject.timeout_add(15000, self.timeout)
  543. self.add_signal(self.wpsEvent, WPAS_DBUS_IFACE_WPS, "Event")
  544. self.loop.run()
  545. return self
  546. def wpsEvent(self, name, args):
  547. logger.debug("wpsEvent: %s args='%s'" % (name, str(args)))
  548. if name == "pbc-overlap":
  549. self.overlap_seen = True
  550. self.loop.quit()
  551. def start_pbc(self, *args):
  552. logger.debug("start_pbc")
  553. self.wps.Start({'Role': 'enrollee', 'Type': 'pbc'})
  554. return False
  555. def success(self):
  556. return self.overlap_seen
  557. with TestDbusWps(bus, wps) as t:
  558. if not t.success():
  559. raise Exception("Failure in D-Bus operations")
  560. dev[0].request("WPS_CANCEL")
  561. dev[0].request("DISCONNECT")
  562. hapd.disable()
  563. dev[0].flush_scan_cache()
  564. def test_dbus_wps_pin(dev, apdev):
  565. """D-Bus WPS/PIN operation and signals"""
  566. try:
  567. _test_dbus_wps_pin(dev, apdev)
  568. finally:
  569. dev[0].request("SET wps_cred_processing 0")
  570. def _test_dbus_wps_pin(dev, apdev):
  571. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  572. wps = dbus.Interface(if_obj, WPAS_DBUS_IFACE_WPS)
  573. hapd = start_ap(apdev[0])
  574. hapd.request("WPS_PIN any 12345670")
  575. bssid = apdev[0]['bssid']
  576. dev[0].scan_for_bss(bssid, freq="2412")
  577. dev[0].request("SET wps_cred_processing 2")
  578. class TestDbusWps(TestDbus):
  579. def __init__(self, bus):
  580. TestDbus.__init__(self, bus)
  581. self.success_seen = False
  582. self.credentials_received = False
  583. def __enter__(self):
  584. gobject.timeout_add(1, self.start_pin)
  585. gobject.timeout_add(15000, self.timeout)
  586. self.add_signal(self.wpsEvent, WPAS_DBUS_IFACE_WPS, "Event")
  587. self.add_signal(self.credentials, WPAS_DBUS_IFACE_WPS,
  588. "Credentials")
  589. self.loop.run()
  590. return self
  591. def wpsEvent(self, name, args):
  592. logger.debug("wpsEvent: %s args='%s'" % (name, str(args)))
  593. if name == "success":
  594. self.success_seen = True
  595. if self.credentials_received:
  596. self.loop.quit()
  597. def credentials(self, args):
  598. logger.debug("credentials: " + str(args))
  599. self.credentials_received = True
  600. if self.success_seen:
  601. self.loop.quit()
  602. def start_pin(self, *args):
  603. logger.debug("start_pin")
  604. bssid_ay = dbus.ByteArray(bssid.replace(':','').decode('hex'))
  605. wps.Start({'Role': 'enrollee', 'Type': 'pin', 'Pin': '12345670',
  606. 'Bssid': bssid_ay})
  607. return False
  608. def success(self):
  609. return self.success_seen and self.credentials_received
  610. with TestDbusWps(bus) as t:
  611. if not t.success():
  612. raise Exception("Failure in D-Bus operations")
  613. dev[0].wait_connected(timeout=10)
  614. def test_dbus_wps_pin2(dev, apdev):
  615. """D-Bus WPS/PIN operation and signals (PIN from wpa_supplicant)"""
  616. try:
  617. _test_dbus_wps_pin2(dev, apdev)
  618. finally:
  619. dev[0].request("SET wps_cred_processing 0")
  620. def _test_dbus_wps_pin2(dev, apdev):
  621. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  622. wps = dbus.Interface(if_obj, WPAS_DBUS_IFACE_WPS)
  623. hapd = start_ap(apdev[0])
  624. bssid = apdev[0]['bssid']
  625. dev[0].scan_for_bss(bssid, freq="2412")
  626. dev[0].request("SET wps_cred_processing 2")
  627. class TestDbusWps(TestDbus):
  628. def __init__(self, bus):
  629. TestDbus.__init__(self, bus)
  630. self.success_seen = False
  631. self.failed = False
  632. def __enter__(self):
  633. gobject.timeout_add(1, self.start_pin)
  634. gobject.timeout_add(15000, self.timeout)
  635. self.add_signal(self.wpsEvent, WPAS_DBUS_IFACE_WPS, "Event")
  636. self.add_signal(self.credentials, WPAS_DBUS_IFACE_WPS,
  637. "Credentials")
  638. self.loop.run()
  639. return self
  640. def wpsEvent(self, name, args):
  641. logger.debug("wpsEvent: %s args='%s'" % (name, str(args)))
  642. if name == "success":
  643. self.success_seen = True
  644. if self.credentials_received:
  645. self.loop.quit()
  646. def credentials(self, args):
  647. logger.debug("credentials: " + str(args))
  648. self.credentials_received = True
  649. if self.success_seen:
  650. self.loop.quit()
  651. def start_pin(self, *args):
  652. logger.debug("start_pin")
  653. bssid_ay = dbus.ByteArray(bssid.replace(':','').decode('hex'))
  654. res = wps.Start({'Role': 'enrollee', 'Type': 'pin',
  655. 'Bssid': bssid_ay})
  656. pin = res['Pin']
  657. h = hostapd.Hostapd(apdev[0]['ifname'])
  658. h.request("WPS_PIN any " + pin)
  659. return False
  660. def success(self):
  661. return self.success_seen and self.credentials_received
  662. with TestDbusWps(bus) as t:
  663. if not t.success():
  664. raise Exception("Failure in D-Bus operations")
  665. dev[0].wait_connected(timeout=10)
  666. def test_dbus_wps_pin_m2d(dev, apdev):
  667. """D-Bus WPS/PIN operation and signals with M2D"""
  668. try:
  669. _test_dbus_wps_pin_m2d(dev, apdev)
  670. finally:
  671. dev[0].request("SET wps_cred_processing 0")
  672. def _test_dbus_wps_pin_m2d(dev, apdev):
  673. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  674. wps = dbus.Interface(if_obj, WPAS_DBUS_IFACE_WPS)
  675. hapd = start_ap(apdev[0])
  676. bssid = apdev[0]['bssid']
  677. dev[0].scan_for_bss(bssid, freq="2412")
  678. dev[0].request("SET wps_cred_processing 2")
  679. class TestDbusWps(TestDbus):
  680. def __init__(self, bus):
  681. TestDbus.__init__(self, bus)
  682. self.success_seen = False
  683. self.credentials_received = False
  684. def __enter__(self):
  685. gobject.timeout_add(1, self.start_pin)
  686. gobject.timeout_add(15000, self.timeout)
  687. self.add_signal(self.wpsEvent, WPAS_DBUS_IFACE_WPS, "Event")
  688. self.add_signal(self.credentials, WPAS_DBUS_IFACE_WPS,
  689. "Credentials")
  690. self.loop.run()
  691. return self
  692. def wpsEvent(self, name, args):
  693. logger.debug("wpsEvent: %s args='%s'" % (name, str(args)))
  694. if name == "success":
  695. self.success_seen = True
  696. if self.credentials_received:
  697. self.loop.quit()
  698. elif name == "m2d":
  699. h = hostapd.Hostapd(apdev[0]['ifname'])
  700. h.request("WPS_PIN any 12345670")
  701. def credentials(self, args):
  702. logger.debug("credentials: " + str(args))
  703. self.credentials_received = True
  704. if self.success_seen:
  705. self.loop.quit()
  706. def start_pin(self, *args):
  707. logger.debug("start_pin")
  708. bssid_ay = dbus.ByteArray(bssid.replace(':','').decode('hex'))
  709. wps.Start({'Role': 'enrollee', 'Type': 'pin', 'Pin': '12345670',
  710. 'Bssid': bssid_ay})
  711. return False
  712. def success(self):
  713. return self.success_seen and self.credentials_received
  714. with TestDbusWps(bus) as t:
  715. if not t.success():
  716. raise Exception("Failure in D-Bus operations")
  717. dev[0].wait_connected(timeout=10)
  718. def test_dbus_wps_reg(dev, apdev):
  719. """D-Bus WPS/Registrar operation and signals"""
  720. try:
  721. _test_dbus_wps_reg(dev, apdev)
  722. finally:
  723. dev[0].request("SET wps_cred_processing 0")
  724. def _test_dbus_wps_reg(dev, apdev):
  725. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  726. wps = dbus.Interface(if_obj, WPAS_DBUS_IFACE_WPS)
  727. hapd = start_ap(apdev[0])
  728. hapd.request("WPS_PIN any 12345670")
  729. bssid = apdev[0]['bssid']
  730. dev[0].scan_for_bss(bssid, freq="2412")
  731. dev[0].request("SET wps_cred_processing 2")
  732. class TestDbusWps(TestDbus):
  733. def __init__(self, bus):
  734. TestDbus.__init__(self, bus)
  735. self.credentials_received = False
  736. def __enter__(self):
  737. gobject.timeout_add(100, self.start_reg)
  738. gobject.timeout_add(15000, self.timeout)
  739. self.add_signal(self.wpsEvent, WPAS_DBUS_IFACE_WPS, "Event")
  740. self.add_signal(self.credentials, WPAS_DBUS_IFACE_WPS,
  741. "Credentials")
  742. self.loop.run()
  743. return self
  744. def wpsEvent(self, name, args):
  745. logger.debug("wpsEvent: %s args='%s'" % (name, str(args)))
  746. def credentials(self, args):
  747. logger.debug("credentials: " + str(args))
  748. self.credentials_received = True
  749. self.loop.quit()
  750. def start_reg(self, *args):
  751. logger.debug("start_reg")
  752. bssid_ay = dbus.ByteArray(bssid.replace(':','').decode('hex'))
  753. wps.Start({'Role': 'registrar', 'Type': 'pin',
  754. 'Pin': '12345670', 'Bssid': bssid_ay})
  755. return False
  756. def success(self):
  757. return self.credentials_received
  758. with TestDbusWps(bus) as t:
  759. if not t.success():
  760. raise Exception("Failure in D-Bus operations")
  761. dev[0].wait_connected(timeout=10)
  762. def test_dbus_wps_cancel(dev, apdev):
  763. """D-Bus WPS Cancel operation"""
  764. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  765. wps = dbus.Interface(if_obj, WPAS_DBUS_IFACE_WPS)
  766. hapd = start_ap(apdev[0])
  767. bssid = apdev[0]['bssid']
  768. wps.Cancel()
  769. dev[0].scan_for_bss(bssid, freq="2412")
  770. bssid_ay = dbus.ByteArray(bssid.replace(':','').decode('hex'))
  771. wps.Start({'Role': 'enrollee', 'Type': 'pin', 'Pin': '12345670',
  772. 'Bssid': bssid_ay})
  773. wps.Cancel()
  774. dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], 1)
  775. def test_dbus_scan_invalid(dev, apdev):
  776. """D-Bus invalid scan method"""
  777. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  778. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  779. tests = [ ({}, "InvalidArgs"),
  780. ({'Type': 123}, "InvalidArgs"),
  781. ({'Type': 'foo'}, "InvalidArgs"),
  782. ({'Type': 'active', 'Foo': 'bar'}, "InvalidArgs"),
  783. ({'Type': 'active', 'SSIDs': 'foo'}, "InvalidArgs"),
  784. ({'Type': 'active', 'SSIDs': ['foo']}, "InvalidArgs"),
  785. ({'Type': 'active',
  786. 'SSIDs': [ dbus.ByteArray("1"), dbus.ByteArray("2"),
  787. dbus.ByteArray("3"), dbus.ByteArray("4"),
  788. dbus.ByteArray("5"), dbus.ByteArray("6"),
  789. dbus.ByteArray("7"), dbus.ByteArray("8"),
  790. dbus.ByteArray("9"), dbus.ByteArray("10"),
  791. dbus.ByteArray("11"), dbus.ByteArray("12"),
  792. dbus.ByteArray("13"), dbus.ByteArray("14"),
  793. dbus.ByteArray("15"), dbus.ByteArray("16"),
  794. dbus.ByteArray("17") ]},
  795. "InvalidArgs"),
  796. ({'Type': 'active',
  797. 'SSIDs': [ dbus.ByteArray("1234567890abcdef1234567890abcdef1") ]},
  798. "InvalidArgs"),
  799. ({'Type': 'active', 'IEs': 'foo'}, "InvalidArgs"),
  800. ({'Type': 'active', 'IEs': ['foo']}, "InvalidArgs"),
  801. ({'Type': 'active', 'Channels': 2412 }, "InvalidArgs"),
  802. ({'Type': 'active', 'Channels': [ 2412 ] }, "InvalidArgs"),
  803. ({'Type': 'active',
  804. 'Channels': [ (dbus.Int32(2412), dbus.UInt32(20)) ] },
  805. "InvalidArgs"),
  806. ({'Type': 'active',
  807. 'Channels': [ (dbus.UInt32(2412), dbus.Int32(20)) ] },
  808. "InvalidArgs"),
  809. ({'Type': 'active', 'AllowRoam': "yes" }, "InvalidArgs"),
  810. ({'Type': 'passive', 'IEs': [ dbus.ByteArray("\xdd\x00") ]},
  811. "InvalidArgs"),
  812. ({'Type': 'passive', 'SSIDs': [ dbus.ByteArray("foo") ]},
  813. "InvalidArgs")]
  814. for (t,err) in tests:
  815. try:
  816. iface.Scan(t)
  817. raise Exception("Invalid Scan() arguments accepted: " + str(t))
  818. except dbus.exceptions.DBusException, e:
  819. if err not in str(e):
  820. raise Exception("Unexpected error message for invalid Scan(%s): %s" % (str(t), str(e)))
  821. def test_dbus_scan_oom(dev, apdev):
  822. """D-Bus scan method and OOM"""
  823. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  824. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  825. with alloc_fail_dbus(dev[0], 1,
  826. "wpa_scan_clone_params;wpas_dbus_handler_scan",
  827. "Scan", expected="ScanError: Scan request rejected"):
  828. iface.Scan({ 'Type': 'passive',
  829. 'Channels': [ (dbus.UInt32(2412), dbus.UInt32(20)) ] })
  830. with alloc_fail_dbus(dev[0], 1,
  831. "=wpas_dbus_get_scan_channels;wpas_dbus_handler_scan",
  832. "Scan"):
  833. iface.Scan({ 'Type': 'passive',
  834. 'Channels': [ (dbus.UInt32(2412), dbus.UInt32(20)) ] })
  835. with alloc_fail_dbus(dev[0], 1,
  836. "=wpas_dbus_get_scan_ies;wpas_dbus_handler_scan",
  837. "Scan"):
  838. iface.Scan({ 'Type': 'active',
  839. 'IEs': [ dbus.ByteArray("\xdd\x00") ],
  840. 'Channels': [ (dbus.UInt32(2412), dbus.UInt32(20)) ] })
  841. with alloc_fail_dbus(dev[0], 1,
  842. "=wpas_dbus_get_scan_ssids;wpas_dbus_handler_scan",
  843. "Scan"):
  844. iface.Scan({ 'Type': 'active',
  845. 'SSIDs': [ dbus.ByteArray("open"),
  846. dbus.ByteArray() ],
  847. 'Channels': [ (dbus.UInt32(2412), dbus.UInt32(20)) ] })
  848. def test_dbus_scan(dev, apdev):
  849. """D-Bus scan and related signals"""
  850. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  851. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  852. hapd = hostapd.add_ap(apdev[0], { "ssid": "open" })
  853. class TestDbusScan(TestDbus):
  854. def __init__(self, bus):
  855. TestDbus.__init__(self, bus)
  856. self.scan_completed = 0
  857. self.bss_added = False
  858. self.fail_reason = None
  859. def __enter__(self):
  860. gobject.timeout_add(1, self.run_scan)
  861. gobject.timeout_add(15000, self.timeout)
  862. self.add_signal(self.scanDone, WPAS_DBUS_IFACE, "ScanDone")
  863. self.add_signal(self.bssAdded, WPAS_DBUS_IFACE, "BSSAdded")
  864. self.add_signal(self.bssRemoved, WPAS_DBUS_IFACE, "BSSRemoved")
  865. self.loop.run()
  866. return self
  867. def scanDone(self, success):
  868. logger.debug("scanDone: success=%s" % success)
  869. self.scan_completed += 1
  870. if self.scan_completed == 1:
  871. iface.Scan({'Type': 'passive',
  872. 'AllowRoam': True,
  873. 'Channels': [(dbus.UInt32(2412), dbus.UInt32(20))]})
  874. elif self.scan_completed == 2:
  875. iface.Scan({'Type': 'passive',
  876. 'AllowRoam': False})
  877. elif self.bss_added and self.scan_completed == 3:
  878. self.loop.quit()
  879. def bssAdded(self, bss, properties):
  880. logger.debug("bssAdded: %s" % bss)
  881. logger.debug(str(properties))
  882. if 'WPS' in properties:
  883. if 'Type' in properties['WPS']:
  884. self.fail_reason = "Unexpected WPS dictionary entry in non-WPS BSS"
  885. self.loop.quit()
  886. self.bss_added = True
  887. if self.scan_completed == 3:
  888. self.loop.quit()
  889. def bssRemoved(self, bss):
  890. logger.debug("bssRemoved: %s" % bss)
  891. def run_scan(self, *args):
  892. logger.debug("run_scan")
  893. iface.Scan({'Type': 'active',
  894. 'SSIDs': [ dbus.ByteArray("open"),
  895. dbus.ByteArray() ],
  896. 'IEs': [ dbus.ByteArray("\xdd\x00"),
  897. dbus.ByteArray() ],
  898. 'AllowRoam': False,
  899. 'Channels': [(dbus.UInt32(2412), dbus.UInt32(20))]})
  900. return False
  901. def success(self):
  902. return self.scan_completed == 3 and self.bss_added
  903. with TestDbusScan(bus) as t:
  904. if t.fail_reason:
  905. raise Exception(t.fail_reason)
  906. if not t.success():
  907. raise Exception("Expected signals not seen")
  908. res = if_obj.Get(WPAS_DBUS_IFACE, "BSSs",
  909. dbus_interface=dbus.PROPERTIES_IFACE)
  910. if len(res) < 1:
  911. raise Exception("Scan result not in BSSs property")
  912. iface.FlushBSS(0)
  913. res = if_obj.Get(WPAS_DBUS_IFACE, "BSSs",
  914. dbus_interface=dbus.PROPERTIES_IFACE)
  915. if len(res) != 0:
  916. raise Exception("FlushBSS() did not remove scan results from BSSs property")
  917. iface.FlushBSS(1)
  918. def test_dbus_scan_busy(dev, apdev):
  919. """D-Bus scan trigger rejection when busy with previous scan"""
  920. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  921. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  922. if "OK" not in dev[0].request("SCAN freq=2412-2462"):
  923. raise Exception("Failed to start scan")
  924. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-STARTED"], 15)
  925. if ev is None:
  926. raise Exception("Scan start timed out")
  927. try:
  928. iface.Scan({'Type': 'active', 'AllowRoam': False})
  929. raise Exception("Scan() accepted when busy")
  930. except dbus.exceptions.DBusException, e:
  931. if "ScanError: Scan request reject" not in str(e):
  932. raise Exception("Unexpected error message: " + str(e))
  933. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], 15)
  934. if ev is None:
  935. raise Exception("Scan timed out")
  936. def test_dbus_connect(dev, apdev):
  937. """D-Bus AddNetwork and connect"""
  938. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  939. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  940. ssid = "test-wpa2-psk"
  941. passphrase = 'qwertyuiop'
  942. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  943. hapd = hostapd.add_ap(apdev[0], params)
  944. class TestDbusConnect(TestDbus):
  945. def __init__(self, bus):
  946. TestDbus.__init__(self, bus)
  947. self.network_added = False
  948. self.network_selected = False
  949. self.network_removed = False
  950. self.state = 0
  951. def __enter__(self):
  952. gobject.timeout_add(1, self.run_connect)
  953. gobject.timeout_add(15000, self.timeout)
  954. self.add_signal(self.networkAdded, WPAS_DBUS_IFACE, "NetworkAdded")
  955. self.add_signal(self.networkRemoved, WPAS_DBUS_IFACE,
  956. "NetworkRemoved")
  957. self.add_signal(self.networkSelected, WPAS_DBUS_IFACE,
  958. "NetworkSelected")
  959. self.add_signal(self.propertiesChanged, WPAS_DBUS_IFACE,
  960. "PropertiesChanged")
  961. self.loop.run()
  962. return self
  963. def networkAdded(self, network, properties):
  964. logger.debug("networkAdded: %s" % str(network))
  965. logger.debug(str(properties))
  966. self.network_added = True
  967. def networkRemoved(self, network):
  968. logger.debug("networkRemoved: %s" % str(network))
  969. self.network_removed = True
  970. def networkSelected(self, network):
  971. logger.debug("networkSelected: %s" % str(network))
  972. self.network_selected = True
  973. def propertiesChanged(self, properties):
  974. logger.debug("propertiesChanged: %s" % str(properties))
  975. if 'State' in properties and properties['State'] == "completed":
  976. if self.state == 0:
  977. self.state = 1
  978. iface.Disconnect()
  979. elif self.state == 2:
  980. self.state = 3
  981. iface.Disconnect()
  982. elif self.state == 4:
  983. self.state = 5
  984. iface.Reattach()
  985. elif self.state == 5:
  986. self.state = 6
  987. iface.Disconnect()
  988. elif self.state == 7:
  989. self.state = 8
  990. res = iface.SignalPoll()
  991. logger.debug("SignalPoll: " + str(res))
  992. if 'frequency' not in res or res['frequency'] != 2412:
  993. self.state = -1
  994. logger.info("Unexpected SignalPoll result")
  995. iface.RemoveNetwork(self.netw)
  996. if 'State' in properties and properties['State'] == "disconnected":
  997. if self.state == 1:
  998. self.state = 2
  999. iface.SelectNetwork(self.netw)
  1000. elif self.state == 3:
  1001. self.state = 4
  1002. iface.Reassociate()
  1003. elif self.state == 6:
  1004. self.state = 7
  1005. iface.Reconnect()
  1006. elif self.state == 8:
  1007. self.state = 9
  1008. self.loop.quit()
  1009. def run_connect(self, *args):
  1010. logger.debug("run_connect")
  1011. args = dbus.Dictionary({ 'ssid': ssid,
  1012. 'key_mgmt': 'WPA-PSK',
  1013. 'psk': passphrase,
  1014. 'scan_freq': 2412 },
  1015. signature='sv')
  1016. self.netw = iface.AddNetwork(args)
  1017. iface.SelectNetwork(self.netw)
  1018. return False
  1019. def success(self):
  1020. if not self.network_added or \
  1021. not self.network_removed or \
  1022. not self.network_selected:
  1023. return False
  1024. return self.state == 9
  1025. with TestDbusConnect(bus) as t:
  1026. if not t.success():
  1027. raise Exception("Expected signals not seen")
  1028. def test_dbus_connect_psk_mem(dev, apdev):
  1029. """D-Bus AddNetwork and connect with memory-only PSK"""
  1030. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1031. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  1032. ssid = "test-wpa2-psk"
  1033. passphrase = 'qwertyuiop'
  1034. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  1035. hapd = hostapd.add_ap(apdev[0], params)
  1036. class TestDbusConnect(TestDbus):
  1037. def __init__(self, bus):
  1038. TestDbus.__init__(self, bus)
  1039. self.connected = False
  1040. def __enter__(self):
  1041. gobject.timeout_add(1, self.run_connect)
  1042. gobject.timeout_add(15000, self.timeout)
  1043. self.add_signal(self.propertiesChanged, WPAS_DBUS_IFACE,
  1044. "PropertiesChanged")
  1045. self.add_signal(self.networkRequest, WPAS_DBUS_IFACE,
  1046. "NetworkRequest")
  1047. self.loop.run()
  1048. return self
  1049. def propertiesChanged(self, properties):
  1050. logger.debug("propertiesChanged: %s" % str(properties))
  1051. if 'State' in properties and properties['State'] == "completed":
  1052. self.connected = True
  1053. self.loop.quit()
  1054. def networkRequest(self, path, field, txt):
  1055. logger.debug("networkRequest: %s %s %s" % (path, field, txt))
  1056. if field == "PSK_PASSPHRASE":
  1057. iface.NetworkReply(path, field, '"' + passphrase + '"')
  1058. def run_connect(self, *args):
  1059. logger.debug("run_connect")
  1060. args = dbus.Dictionary({ 'ssid': ssid,
  1061. 'key_mgmt': 'WPA-PSK',
  1062. 'mem_only_psk': 1,
  1063. 'scan_freq': 2412 },
  1064. signature='sv')
  1065. self.netw = iface.AddNetwork(args)
  1066. iface.SelectNetwork(self.netw)
  1067. return False
  1068. def success(self):
  1069. return self.connected
  1070. with TestDbusConnect(bus) as t:
  1071. if not t.success():
  1072. raise Exception("Expected signals not seen")
  1073. def test_dbus_connect_oom(dev, apdev):
  1074. """D-Bus AddNetwork and connect when out-of-memory"""
  1075. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1076. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  1077. if "OK" not in dev[0].request("TEST_ALLOC_FAIL 0:"):
  1078. raise HwsimSkip("TEST_ALLOC_FAIL not supported in the build")
  1079. ssid = "test-wpa2-psk"
  1080. passphrase = 'qwertyuiop'
  1081. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  1082. hapd = hostapd.add_ap(apdev[0], params)
  1083. class TestDbusConnect(TestDbus):
  1084. def __init__(self, bus):
  1085. TestDbus.__init__(self, bus)
  1086. self.network_added = False
  1087. self.network_selected = False
  1088. self.network_removed = False
  1089. self.state = 0
  1090. def __enter__(self):
  1091. gobject.timeout_add(1, self.run_connect)
  1092. gobject.timeout_add(1500, self.timeout)
  1093. self.add_signal(self.networkAdded, WPAS_DBUS_IFACE, "NetworkAdded")
  1094. self.add_signal(self.networkRemoved, WPAS_DBUS_IFACE,
  1095. "NetworkRemoved")
  1096. self.add_signal(self.networkSelected, WPAS_DBUS_IFACE,
  1097. "NetworkSelected")
  1098. self.add_signal(self.propertiesChanged, WPAS_DBUS_IFACE,
  1099. "PropertiesChanged")
  1100. self.loop.run()
  1101. return self
  1102. def networkAdded(self, network, properties):
  1103. logger.debug("networkAdded: %s" % str(network))
  1104. logger.debug(str(properties))
  1105. self.network_added = True
  1106. def networkRemoved(self, network):
  1107. logger.debug("networkRemoved: %s" % str(network))
  1108. self.network_removed = True
  1109. def networkSelected(self, network):
  1110. logger.debug("networkSelected: %s" % str(network))
  1111. self.network_selected = True
  1112. def propertiesChanged(self, properties):
  1113. logger.debug("propertiesChanged: %s" % str(properties))
  1114. if 'State' in properties and properties['State'] == "completed":
  1115. if self.state == 0:
  1116. self.state = 1
  1117. iface.Disconnect()
  1118. elif self.state == 2:
  1119. self.state = 3
  1120. iface.Disconnect()
  1121. elif self.state == 4:
  1122. self.state = 5
  1123. iface.Reattach()
  1124. elif self.state == 5:
  1125. self.state = 6
  1126. res = iface.SignalPoll()
  1127. logger.debug("SignalPoll: " + str(res))
  1128. if 'frequency' not in res or res['frequency'] != 2412:
  1129. self.state = -1
  1130. logger.info("Unexpected SignalPoll result")
  1131. iface.RemoveNetwork(self.netw)
  1132. if 'State' in properties and properties['State'] == "disconnected":
  1133. if self.state == 1:
  1134. self.state = 2
  1135. iface.SelectNetwork(self.netw)
  1136. elif self.state == 3:
  1137. self.state = 4
  1138. iface.Reassociate()
  1139. elif self.state == 6:
  1140. self.state = 7
  1141. self.loop.quit()
  1142. def run_connect(self, *args):
  1143. logger.debug("run_connect")
  1144. args = dbus.Dictionary({ 'ssid': ssid,
  1145. 'key_mgmt': 'WPA-PSK',
  1146. 'psk': passphrase,
  1147. 'scan_freq': 2412 },
  1148. signature='sv')
  1149. try:
  1150. self.netw = iface.AddNetwork(args)
  1151. except Exception, e:
  1152. logger.info("Exception on AddNetwork: " + str(e))
  1153. self.loop.quit()
  1154. return False
  1155. try:
  1156. iface.SelectNetwork(self.netw)
  1157. except Exception, e:
  1158. logger.info("Exception on SelectNetwork: " + str(e))
  1159. self.loop.quit()
  1160. return False
  1161. def success(self):
  1162. if not self.network_added or \
  1163. not self.network_removed or \
  1164. not self.network_selected:
  1165. return False
  1166. return self.state == 7
  1167. count = 0
  1168. for i in range(1, 1000):
  1169. for j in range(3):
  1170. dev[j].dump_monitor()
  1171. dev[0].request("TEST_ALLOC_FAIL %d:main" % i)
  1172. try:
  1173. with TestDbusConnect(bus) as t:
  1174. if not t.success():
  1175. logger.info("Iteration %d - Expected signals not seen" % i)
  1176. else:
  1177. logger.info("Iteration %d - success" % i)
  1178. state = dev[0].request('GET_ALLOC_FAIL')
  1179. logger.info("GET_ALLOC_FAIL: " + state)
  1180. dev[0].dump_monitor()
  1181. dev[0].request("TEST_ALLOC_FAIL 0:")
  1182. if i < 3:
  1183. raise Exception("Connection succeeded during out-of-memory")
  1184. if not state.startswith('0:'):
  1185. count += 1
  1186. if count == 5:
  1187. break
  1188. except:
  1189. pass
  1190. # Force regulatory update to re-fetch hw capabilities for the following
  1191. # test cases.
  1192. try:
  1193. dev[0].dump_monitor()
  1194. subprocess.call(['iw', 'reg', 'set', 'US'])
  1195. ev = dev[0].wait_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=1)
  1196. finally:
  1197. dev[0].dump_monitor()
  1198. subprocess.call(['iw', 'reg', 'set', '00'])
  1199. ev = dev[0].wait_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=1)
  1200. def test_dbus_while_not_connected(dev, apdev):
  1201. """D-Bus invalid operations while not connected"""
  1202. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1203. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  1204. try:
  1205. iface.Disconnect()
  1206. raise Exception("Disconnect() accepted when not connected")
  1207. except dbus.exceptions.DBusException, e:
  1208. if "NotConnected" not in str(e):
  1209. raise Exception("Unexpected error message for invalid Disconnect: " + str(e))
  1210. try:
  1211. iface.Reattach()
  1212. raise Exception("Reattach() accepted when not connected")
  1213. except dbus.exceptions.DBusException, e:
  1214. if "NotConnected" not in str(e):
  1215. raise Exception("Unexpected error message for invalid Reattach: " + str(e))
  1216. def test_dbus_connect_eap(dev, apdev):
  1217. """D-Bus AddNetwork and connect to EAP network"""
  1218. check_altsubject_match_support(dev[0])
  1219. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1220. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  1221. ssid = "ieee8021x-open"
  1222. params = hostapd.radius_params()
  1223. params["ssid"] = ssid
  1224. params["ieee8021x"] = "1"
  1225. hapd = hostapd.add_ap(apdev[0], params)
  1226. class TestDbusConnect(TestDbus):
  1227. def __init__(self, bus):
  1228. TestDbus.__init__(self, bus)
  1229. self.certification_received = False
  1230. self.eap_status = False
  1231. self.state = 0
  1232. def __enter__(self):
  1233. gobject.timeout_add(1, self.run_connect)
  1234. gobject.timeout_add(15000, self.timeout)
  1235. self.add_signal(self.propertiesChanged, WPAS_DBUS_IFACE,
  1236. "PropertiesChanged")
  1237. self.add_signal(self.certification, WPAS_DBUS_IFACE,
  1238. "Certification", byte_arrays=True)
  1239. self.add_signal(self.networkRequest, WPAS_DBUS_IFACE,
  1240. "NetworkRequest")
  1241. self.add_signal(self.eap, WPAS_DBUS_IFACE, "EAP")
  1242. self.loop.run()
  1243. return self
  1244. def propertiesChanged(self, properties):
  1245. logger.debug("propertiesChanged: %s" % str(properties))
  1246. if 'State' in properties and properties['State'] == "completed":
  1247. if self.state == 0:
  1248. self.state = 1
  1249. iface.EAPLogoff()
  1250. logger.info("Set dNSName constraint")
  1251. net_obj = bus.get_object(WPAS_DBUS_SERVICE, self.netw)
  1252. args = dbus.Dictionary({ 'altsubject_match':
  1253. self.server_dnsname },
  1254. signature='sv')
  1255. net_obj.Set(WPAS_DBUS_NETWORK, "Properties", args,
  1256. dbus_interface=dbus.PROPERTIES_IFACE)
  1257. elif self.state == 2:
  1258. self.state = 3
  1259. iface.Disconnect()
  1260. logger.info("Set non-matching dNSName constraint")
  1261. net_obj = bus.get_object(WPAS_DBUS_SERVICE, self.netw)
  1262. args = dbus.Dictionary({ 'altsubject_match':
  1263. self.server_dnsname + "FOO" },
  1264. signature='sv')
  1265. net_obj.Set(WPAS_DBUS_NETWORK, "Properties", args,
  1266. dbus_interface=dbus.PROPERTIES_IFACE)
  1267. if 'State' in properties and properties['State'] == "disconnected":
  1268. if self.state == 1:
  1269. self.state = 2
  1270. iface.EAPLogon()
  1271. iface.SelectNetwork(self.netw)
  1272. if self.state == 3:
  1273. self.state = 4
  1274. iface.SelectNetwork(self.netw)
  1275. def certification(self, args):
  1276. logger.debug("certification: %s" % str(args))
  1277. self.certification_received = True
  1278. if args['depth'] == 0:
  1279. # The test server certificate is supposed to have dNSName
  1280. if len(args['altsubject']) < 1:
  1281. raise Exception("Missing dNSName")
  1282. dnsname = args['altsubject'][0]
  1283. if not dnsname.startswith("DNS:"):
  1284. raise Exception("Expected dNSName not found: " + dnsname)
  1285. logger.info("altsubject: " + dnsname)
  1286. self.server_dnsname = dnsname
  1287. def eap(self, status, parameter):
  1288. logger.debug("EAP: status=%s parameter=%s" % (status, parameter))
  1289. if status == 'completion' and parameter == 'success':
  1290. self.eap_status = True
  1291. if self.state == 4 and status == 'remote certificate verification' and parameter == 'AltSubject mismatch':
  1292. self.state = 5
  1293. self.loop.quit()
  1294. def networkRequest(self, path, field, txt):
  1295. logger.debug("networkRequest: %s %s %s" % (path, field, txt))
  1296. if field == "PASSWORD":
  1297. iface.NetworkReply(path, field, "password")
  1298. def run_connect(self, *args):
  1299. logger.debug("run_connect")
  1300. args = dbus.Dictionary({ 'ssid': ssid,
  1301. 'key_mgmt': 'IEEE8021X',
  1302. 'eapol_flags': 0,
  1303. 'eap': 'TTLS',
  1304. 'anonymous_identity': 'ttls',
  1305. 'identity': 'pap user',
  1306. 'ca_cert': 'auth_serv/ca.pem',
  1307. 'phase2': 'auth=PAP',
  1308. 'scan_freq': 2412 },
  1309. signature='sv')
  1310. self.netw = iface.AddNetwork(args)
  1311. iface.SelectNetwork(self.netw)
  1312. return False
  1313. def success(self):
  1314. if not self.eap_status or not self.certification_received:
  1315. return False
  1316. return self.state == 5
  1317. with TestDbusConnect(bus) as t:
  1318. if not t.success():
  1319. raise Exception("Expected signals not seen")
  1320. def test_dbus_network(dev, apdev):
  1321. """D-Bus AddNetwork/RemoveNetwork parameters and error cases"""
  1322. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1323. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  1324. args = dbus.Dictionary({ 'ssid': "foo",
  1325. 'key_mgmt': 'WPA-PSK',
  1326. 'psk': "12345678",
  1327. 'identity': dbus.ByteArray([ 1, 2 ]),
  1328. 'priority': dbus.Int32(0),
  1329. 'scan_freq': dbus.UInt32(2412) },
  1330. signature='sv')
  1331. netw = iface.AddNetwork(args)
  1332. id = int(dev[0].list_networks()[0]['id'])
  1333. val = dev[0].get_network(id, "scan_freq")
  1334. if val != "2412":
  1335. raise Exception("Invalid scan_freq value: " + str(val))
  1336. iface.RemoveNetwork(netw)
  1337. args = dbus.Dictionary({ 'ssid': "foo",
  1338. 'key_mgmt': 'NONE',
  1339. 'scan_freq': "2412 2432",
  1340. 'freq_list': "2412 2417 2432" },
  1341. signature='sv')
  1342. netw = iface.AddNetwork(args)
  1343. id = int(dev[0].list_networks()[0]['id'])
  1344. val = dev[0].get_network(id, "scan_freq")
  1345. if val != "2412 2432":
  1346. raise Exception("Invalid scan_freq value (2): " + str(val))
  1347. val = dev[0].get_network(id, "freq_list")
  1348. if val != "2412 2417 2432":
  1349. raise Exception("Invalid freq_list value: " + str(val))
  1350. iface.RemoveNetwork(netw)
  1351. try:
  1352. iface.RemoveNetwork(netw)
  1353. raise Exception("Invalid RemoveNetwork() accepted")
  1354. except dbus.exceptions.DBusException, e:
  1355. if "NetworkUnknown" not in str(e):
  1356. raise Exception("Unexpected error message for invalid RemoveNetwork: " + str(e))
  1357. try:
  1358. iface.SelectNetwork(netw)
  1359. raise Exception("Invalid SelectNetwork() accepted")
  1360. except dbus.exceptions.DBusException, e:
  1361. if "NetworkUnknown" not in str(e):
  1362. raise Exception("Unexpected error message for invalid RemoveNetwork: " + str(e))
  1363. args = dbus.Dictionary({ 'ssid': "foo1", 'key_mgmt': 'NONE',
  1364. 'identity': "testuser", 'scan_freq': '2412' },
  1365. signature='sv')
  1366. netw1 = iface.AddNetwork(args)
  1367. args = dbus.Dictionary({ 'ssid': "foo2", 'key_mgmt': 'NONE' },
  1368. signature='sv')
  1369. netw2 = iface.AddNetwork(args)
  1370. res = if_obj.Get(WPAS_DBUS_IFACE, "Networks",
  1371. dbus_interface=dbus.PROPERTIES_IFACE)
  1372. if len(res) != 2:
  1373. raise Exception("Unexpected number of networks")
  1374. net_obj = bus.get_object(WPAS_DBUS_SERVICE, netw1)
  1375. res = net_obj.Get(WPAS_DBUS_NETWORK, "Enabled",
  1376. dbus_interface=dbus.PROPERTIES_IFACE)
  1377. if res != False:
  1378. raise Exception("Added network was unexpectedly enabled by default")
  1379. net_obj.Set(WPAS_DBUS_NETWORK, "Enabled", dbus.Boolean(True),
  1380. dbus_interface=dbus.PROPERTIES_IFACE)
  1381. res = net_obj.Get(WPAS_DBUS_NETWORK, "Enabled",
  1382. dbus_interface=dbus.PROPERTIES_IFACE)
  1383. if res != True:
  1384. raise Exception("Set(Enabled,True) did not seem to change property value")
  1385. net_obj.Set(WPAS_DBUS_NETWORK, "Enabled", dbus.Boolean(False),
  1386. dbus_interface=dbus.PROPERTIES_IFACE)
  1387. res = net_obj.Get(WPAS_DBUS_NETWORK, "Enabled",
  1388. dbus_interface=dbus.PROPERTIES_IFACE)
  1389. if res != False:
  1390. raise Exception("Set(Enabled,False) did not seem to change property value")
  1391. try:
  1392. net_obj.Set(WPAS_DBUS_NETWORK, "Enabled", dbus.UInt32(1),
  1393. dbus_interface=dbus.PROPERTIES_IFACE)
  1394. raise Exception("Invalid Set(Enabled,1) accepted")
  1395. except dbus.exceptions.DBusException, e:
  1396. if "Error.Failed: wrong property type" not in str(e):
  1397. raise Exception("Unexpected error message for invalid Set(Enabled,1): " + str(e))
  1398. args = dbus.Dictionary({ 'ssid': "foo1new" }, signature='sv')
  1399. net_obj.Set(WPAS_DBUS_NETWORK, "Properties", args,
  1400. dbus_interface=dbus.PROPERTIES_IFACE)
  1401. res = net_obj.Get(WPAS_DBUS_NETWORK, "Properties",
  1402. dbus_interface=dbus.PROPERTIES_IFACE)
  1403. if res['ssid'] != '"foo1new"':
  1404. raise Exception("Set(Properties) failed to update ssid")
  1405. if res['identity'] != '"testuser"':
  1406. raise Exception("Set(Properties) unexpectedly changed unrelated parameter")
  1407. iface.RemoveAllNetworks()
  1408. res = if_obj.Get(WPAS_DBUS_IFACE, "Networks",
  1409. dbus_interface=dbus.PROPERTIES_IFACE)
  1410. if len(res) != 0:
  1411. raise Exception("Unexpected number of networks")
  1412. iface.RemoveAllNetworks()
  1413. tests = [ dbus.Dictionary({ 'psk': "1234567" }, signature='sv'),
  1414. dbus.Dictionary({ 'identity': dbus.ByteArray() },
  1415. signature='sv'),
  1416. dbus.Dictionary({ 'identity': dbus.Byte(1) }, signature='sv'),
  1417. dbus.Dictionary({ 'identity': "" }, signature='sv') ]
  1418. for args in tests:
  1419. try:
  1420. iface.AddNetwork(args)
  1421. raise Exception("Invalid AddNetwork args accepted: " + str(args))
  1422. except dbus.exceptions.DBusException, e:
  1423. if "InvalidArgs" not in str(e):
  1424. raise Exception("Unexpected error message for invalid AddNetwork: " + str(e))
  1425. def test_dbus_network_oom(dev, apdev):
  1426. """D-Bus AddNetwork/RemoveNetwork parameters and OOM error cases"""
  1427. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1428. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  1429. args = dbus.Dictionary({ 'ssid': "foo1", 'key_mgmt': 'NONE',
  1430. 'identity': "testuser", 'scan_freq': '2412' },
  1431. signature='sv')
  1432. netw1 = iface.AddNetwork(args)
  1433. net_obj = bus.get_object(WPAS_DBUS_SERVICE, netw1)
  1434. with alloc_fail_dbus(dev[0], 1,
  1435. "wpa_config_get_all;wpas_dbus_getter_network_properties",
  1436. "Get"):
  1437. net_obj.Get(WPAS_DBUS_NETWORK, "Properties",
  1438. dbus_interface=dbus.PROPERTIES_IFACE)
  1439. iface.RemoveAllNetworks()
  1440. with alloc_fail_dbus(dev[0], 1,
  1441. "wpas_dbus_new_decompose_object_path;wpas_dbus_handler_remove_network",
  1442. "RemoveNetwork", "InvalidArgs"):
  1443. iface.RemoveNetwork(dbus.ObjectPath("/fi/w1/wpa_supplicant1/Interfaces/1234/Networks/1234"))
  1444. with alloc_fail(dev[0], 1, "wpa_dbus_register_object_per_iface;wpas_dbus_register_network"):
  1445. args = dbus.Dictionary({ 'ssid': "foo2", 'key_mgmt': 'NONE' },
  1446. signature='sv')
  1447. try:
  1448. netw = iface.AddNetwork(args)
  1449. # Currently, AddNetwork() succeeds even if os_strdup() for path
  1450. # fails, so remove the network if that occurs.
  1451. iface.RemoveNetwork(netw)
  1452. except dbus.exceptions.DBusException, e:
  1453. pass
  1454. for i in range(1, 3):
  1455. with alloc_fail(dev[0], i, "=wpas_dbus_register_network"):
  1456. try:
  1457. netw = iface.AddNetwork(args)
  1458. # Currently, AddNetwork() succeeds even if network registration
  1459. # fails, so remove the network if that occurs.
  1460. iface.RemoveNetwork(netw)
  1461. except dbus.exceptions.DBusException, e:
  1462. pass
  1463. with alloc_fail_dbus(dev[0], 1,
  1464. "=wpa_config_add_network;wpas_dbus_handler_add_network",
  1465. "AddNetwork",
  1466. "UnknownError: wpa_supplicant could not add a network"):
  1467. args = dbus.Dictionary({ 'ssid': "foo2", 'key_mgmt': 'NONE' },
  1468. signature='sv')
  1469. netw = iface.AddNetwork(args)
  1470. tests = [ (1,
  1471. 'wpa_dbus_dict_get_entry;set_network_properties;wpas_dbus_handler_add_network',
  1472. dbus.Dictionary({ 'ssid': dbus.ByteArray(' ') },
  1473. signature='sv')),
  1474. (1, '=set_network_properties;wpas_dbus_handler_add_network',
  1475. dbus.Dictionary({ 'ssid': 'foo' }, signature='sv')),
  1476. (1, '=set_network_properties;wpas_dbus_handler_add_network',
  1477. dbus.Dictionary({ 'eap': 'foo' }, signature='sv')),
  1478. (1, '=set_network_properties;wpas_dbus_handler_add_network',
  1479. dbus.Dictionary({ 'priority': dbus.UInt32(1) },
  1480. signature='sv')),
  1481. (1, '=set_network_properties;wpas_dbus_handler_add_network',
  1482. dbus.Dictionary({ 'priority': dbus.Int32(1) },
  1483. signature='sv')),
  1484. (1, '=set_network_properties;wpas_dbus_handler_add_network',
  1485. dbus.Dictionary({ 'ssid': dbus.ByteArray(' ') },
  1486. signature='sv')) ]
  1487. for (count,funcs,args) in tests:
  1488. with alloc_fail_dbus(dev[0], count, funcs, "AddNetwork", "InvalidArgs"):
  1489. netw = iface.AddNetwork(args)
  1490. if len(if_obj.Get(WPAS_DBUS_IFACE, 'Networks',
  1491. dbus_interface=dbus.PROPERTIES_IFACE)) > 0:
  1492. raise Exception("Unexpected network block added")
  1493. if len(dev[0].list_networks()) > 0:
  1494. raise Exception("Unexpected network block visible")
  1495. def test_dbus_interface(dev, apdev):
  1496. """D-Bus CreateInterface/GetInterface/RemoveInterface parameters and error cases"""
  1497. try:
  1498. _test_dbus_interface(dev, apdev)
  1499. finally:
  1500. # Need to force P2P channel list update since the 'lo' interface
  1501. # with driver=none ends up configuring default dualband channels.
  1502. dev[0].request("SET country US")
  1503. ev = dev[0].wait_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=1)
  1504. if ev is None:
  1505. ev = dev[0].wait_global_event(["CTRL-EVENT-REGDOM-CHANGE"],
  1506. timeout=1)
  1507. dev[0].request("SET country 00")
  1508. ev = dev[0].wait_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=1)
  1509. if ev is None:
  1510. ev = dev[0].wait_global_event(["CTRL-EVENT-REGDOM-CHANGE"],
  1511. timeout=1)
  1512. subprocess.call(['iw', 'reg', 'set', '00'])
  1513. def _test_dbus_interface(dev, apdev):
  1514. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1515. wpas = dbus.Interface(wpas_obj, WPAS_DBUS_SERVICE)
  1516. params = dbus.Dictionary({ 'Ifname': 'lo', 'Driver': 'none' },
  1517. signature='sv')
  1518. path = wpas.CreateInterface(params)
  1519. logger.debug("New interface path: " + str(path))
  1520. path2 = wpas.GetInterface("lo")
  1521. if path != path2:
  1522. raise Exception("Interface object mismatch")
  1523. params = dbus.Dictionary({ 'Ifname': 'lo',
  1524. 'Driver': 'none',
  1525. 'ConfigFile': 'foo',
  1526. 'BridgeIfname': 'foo', },
  1527. signature='sv')
  1528. try:
  1529. wpas.CreateInterface(params)
  1530. raise Exception("Invalid CreateInterface() accepted")
  1531. except dbus.exceptions.DBusException, e:
  1532. if "InterfaceExists" not in str(e):
  1533. raise Exception("Unexpected error message for invalid CreateInterface: " + str(e))
  1534. wpas.RemoveInterface(path)
  1535. try:
  1536. wpas.RemoveInterface(path)
  1537. raise Exception("Invalid RemoveInterface() accepted")
  1538. except dbus.exceptions.DBusException, e:
  1539. if "InterfaceUnknown" not in str(e):
  1540. raise Exception("Unexpected error message for invalid RemoveInterface: " + str(e))
  1541. params = dbus.Dictionary({ 'Ifname': 'lo', 'Driver': 'none',
  1542. 'Foo': 123 },
  1543. signature='sv')
  1544. try:
  1545. wpas.CreateInterface(params)
  1546. raise Exception("Invalid CreateInterface() accepted")
  1547. except dbus.exceptions.DBusException, e:
  1548. if "InvalidArgs" not in str(e):
  1549. raise Exception("Unexpected error message for invalid CreateInterface: " + str(e))
  1550. params = dbus.Dictionary({ 'Driver': 'none' }, signature='sv')
  1551. try:
  1552. wpas.CreateInterface(params)
  1553. raise Exception("Invalid CreateInterface() accepted")
  1554. except dbus.exceptions.DBusException, e:
  1555. if "InvalidArgs" not in str(e):
  1556. raise Exception("Unexpected error message for invalid CreateInterface: " + str(e))
  1557. try:
  1558. wpas.GetInterface("lo")
  1559. raise Exception("Invalid GetInterface() accepted")
  1560. except dbus.exceptions.DBusException, e:
  1561. if "InterfaceUnknown" not in str(e):
  1562. raise Exception("Unexpected error message for invalid RemoveInterface: " + str(e))
  1563. def test_dbus_interface_oom(dev, apdev):
  1564. """D-Bus CreateInterface/GetInterface/RemoveInterface OOM error cases"""
  1565. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1566. wpas = dbus.Interface(wpas_obj, WPAS_DBUS_SERVICE)
  1567. with alloc_fail_dbus(dev[0], 1, "wpa_dbus_dict_get_entry;wpas_dbus_handler_create_interface", "CreateInterface", "InvalidArgs"):
  1568. params = dbus.Dictionary({ 'Ifname': 'lo', 'Driver': 'none' },
  1569. signature='sv')
  1570. wpas.CreateInterface(params)
  1571. for i in range(1, 1000):
  1572. dev[0].request("TEST_ALLOC_FAIL %d:wpa_supplicant_add_iface;wpas_dbus_handler_create_interface" % i)
  1573. params = dbus.Dictionary({ 'Ifname': 'lo', 'Driver': 'none' },
  1574. signature='sv')
  1575. try:
  1576. npath = wpas.CreateInterface(params)
  1577. wpas.RemoveInterface(npath)
  1578. logger.info("CreateInterface succeeds after %d allocation failures" % i)
  1579. state = dev[0].request('GET_ALLOC_FAIL')
  1580. logger.info("GET_ALLOC_FAIL: " + state)
  1581. dev[0].dump_monitor()
  1582. dev[0].request("TEST_ALLOC_FAIL 0:")
  1583. if i < 5:
  1584. raise Exception("CreateInterface succeeded during out-of-memory")
  1585. if not state.startswith('0:'):
  1586. break
  1587. except dbus.exceptions.DBusException, e:
  1588. pass
  1589. for arg in [ 'Driver', 'Ifname', 'ConfigFile', 'BridgeIfname' ]:
  1590. with alloc_fail_dbus(dev[0], 1, "=wpas_dbus_handler_create_interface",
  1591. "CreateInterface"):
  1592. params = dbus.Dictionary({ arg: 'foo' }, signature='sv')
  1593. wpas.CreateInterface(params)
  1594. def test_dbus_blob(dev, apdev):
  1595. """D-Bus AddNetwork/RemoveNetwork parameters and error cases"""
  1596. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1597. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  1598. blob = dbus.ByteArray("\x01\x02\x03")
  1599. iface.AddBlob('blob1', blob)
  1600. try:
  1601. iface.AddBlob('blob1', dbus.ByteArray("\x01\x02\x04"))
  1602. raise Exception("Invalid AddBlob() accepted")
  1603. except dbus.exceptions.DBusException, e:
  1604. if "BlobExists" not in str(e):
  1605. raise Exception("Unexpected error message for invalid AddBlob: " + str(e))
  1606. res = iface.GetBlob('blob1')
  1607. if len(res) != len(blob):
  1608. raise Exception("Unexpected blob data length")
  1609. for i in range(len(res)):
  1610. if res[i] != dbus.Byte(blob[i]):
  1611. raise Exception("Unexpected blob data")
  1612. res = if_obj.Get(WPAS_DBUS_IFACE, "Blobs",
  1613. dbus_interface=dbus.PROPERTIES_IFACE)
  1614. if 'blob1' not in res:
  1615. raise Exception("Added blob missing from Blobs property")
  1616. iface.RemoveBlob('blob1')
  1617. try:
  1618. iface.RemoveBlob('blob1')
  1619. raise Exception("Invalid RemoveBlob() accepted")
  1620. except dbus.exceptions.DBusException, e:
  1621. if "BlobUnknown" not in str(e):
  1622. raise Exception("Unexpected error message for invalid RemoveBlob: " + str(e))
  1623. try:
  1624. iface.GetBlob('blob1')
  1625. raise Exception("Invalid GetBlob() accepted")
  1626. except dbus.exceptions.DBusException, e:
  1627. if "BlobUnknown" not in str(e):
  1628. raise Exception("Unexpected error message for invalid GetBlob: " + str(e))
  1629. class TestDbusBlob(TestDbus):
  1630. def __init__(self, bus):
  1631. TestDbus.__init__(self, bus)
  1632. self.blob_added = False
  1633. self.blob_removed = False
  1634. def __enter__(self):
  1635. gobject.timeout_add(1, self.run_blob)
  1636. gobject.timeout_add(15000, self.timeout)
  1637. self.add_signal(self.blobAdded, WPAS_DBUS_IFACE, "BlobAdded")
  1638. self.add_signal(self.blobRemoved, WPAS_DBUS_IFACE, "BlobRemoved")
  1639. self.loop.run()
  1640. return self
  1641. def blobAdded(self, blobName):
  1642. logger.debug("blobAdded: %s" % blobName)
  1643. if blobName == 'blob2':
  1644. self.blob_added = True
  1645. def blobRemoved(self, blobName):
  1646. logger.debug("blobRemoved: %s" % blobName)
  1647. if blobName == 'blob2':
  1648. self.blob_removed = True
  1649. self.loop.quit()
  1650. def run_blob(self, *args):
  1651. logger.debug("run_blob")
  1652. iface.AddBlob('blob2', dbus.ByteArray("\x01\x02\x04"))
  1653. iface.RemoveBlob('blob2')
  1654. return False
  1655. def success(self):
  1656. return self.blob_added and self.blob_removed
  1657. with TestDbusBlob(bus) as t:
  1658. if not t.success():
  1659. raise Exception("Expected signals not seen")
  1660. def test_dbus_blob_oom(dev, apdev):
  1661. """D-Bus AddNetwork/RemoveNetwork OOM error cases"""
  1662. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1663. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  1664. for i in range(1, 4):
  1665. with alloc_fail_dbus(dev[0], i, "wpas_dbus_handler_add_blob",
  1666. "AddBlob"):
  1667. iface.AddBlob('blob_no_mem', dbus.ByteArray("\x01\x02\x03\x04"))
  1668. def test_dbus_autoscan(dev, apdev):
  1669. """D-Bus Autoscan()"""
  1670. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1671. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  1672. iface.AutoScan("foo")
  1673. iface.AutoScan("periodic:1")
  1674. iface.AutoScan("")
  1675. dev[0].request("AUTOSCAN ")
  1676. def test_dbus_autoscan_oom(dev, apdev):
  1677. """D-Bus Autoscan() OOM"""
  1678. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1679. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  1680. with alloc_fail_dbus(dev[0], 1, "wpas_dbus_handler_autoscan", "AutoScan"):
  1681. iface.AutoScan("foo")
  1682. dev[0].request("AUTOSCAN ")
  1683. def test_dbus_tdls_invalid(dev, apdev):
  1684. """D-Bus invalid TDLS operations"""
  1685. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1686. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  1687. hapd = hostapd.add_ap(apdev[0], { "ssid": "test-open" })
  1688. connect_2sta_open(dev, hapd)
  1689. addr1 = dev[1].p2p_interface_addr()
  1690. try:
  1691. iface.TDLSDiscover("foo")
  1692. raise Exception("Invalid TDLSDiscover() accepted")
  1693. except dbus.exceptions.DBusException, e:
  1694. if "InvalidArgs" not in str(e):
  1695. raise Exception("Unexpected error message for invalid TDLSDiscover: " + str(e))
  1696. try:
  1697. iface.TDLSStatus("foo")
  1698. raise Exception("Invalid TDLSStatus() accepted")
  1699. except dbus.exceptions.DBusException, e:
  1700. if "InvalidArgs" not in str(e):
  1701. raise Exception("Unexpected error message for invalid TDLSStatus: " + str(e))
  1702. res = iface.TDLSStatus(addr1)
  1703. if res != "peer does not exist":
  1704. raise Exception("Unexpected TDLSStatus response")
  1705. try:
  1706. iface.TDLSSetup("foo")
  1707. raise Exception("Invalid TDLSSetup() accepted")
  1708. except dbus.exceptions.DBusException, e:
  1709. if "InvalidArgs" not in str(e):
  1710. raise Exception("Unexpected error message for invalid TDLSSetup: " + str(e))
  1711. try:
  1712. iface.TDLSTeardown("foo")
  1713. raise Exception("Invalid TDLSTeardown() accepted")
  1714. except dbus.exceptions.DBusException, e:
  1715. if "InvalidArgs" not in str(e):
  1716. raise Exception("Unexpected error message for invalid TDLSTeardown: " + str(e))
  1717. try:
  1718. iface.TDLSTeardown("00:11:22:33:44:55")
  1719. raise Exception("TDLSTeardown accepted for unknown peer")
  1720. except dbus.exceptions.DBusException, e:
  1721. if "UnknownError: error performing TDLS teardown" not in str(e):
  1722. raise Exception("Unexpected error message: " + str(e))
  1723. def test_dbus_tdls_oom(dev, apdev):
  1724. """D-Bus TDLS operations during OOM"""
  1725. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1726. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  1727. with alloc_fail_dbus(dev[0], 1, "wpa_tdls_add_peer", "TDLSSetup",
  1728. "UnknownError: error performing TDLS setup"):
  1729. iface.TDLSSetup("00:11:22:33:44:55")
  1730. def test_dbus_tdls(dev, apdev):
  1731. """D-Bus TDLS"""
  1732. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1733. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  1734. hapd = hostapd.add_ap(apdev[0], { "ssid": "test-open" })
  1735. connect_2sta_open(dev, hapd)
  1736. addr1 = dev[1].p2p_interface_addr()
  1737. class TestDbusTdls(TestDbus):
  1738. def __init__(self, bus):
  1739. TestDbus.__init__(self, bus)
  1740. self.tdls_setup = False
  1741. self.tdls_teardown = False
  1742. def __enter__(self):
  1743. gobject.timeout_add(1, self.run_tdls)
  1744. gobject.timeout_add(15000, self.timeout)
  1745. self.add_signal(self.propertiesChanged, WPAS_DBUS_IFACE,
  1746. "PropertiesChanged")
  1747. self.loop.run()
  1748. return self
  1749. def propertiesChanged(self, properties):
  1750. logger.debug("propertiesChanged: %s" % str(properties))
  1751. def run_tdls(self, *args):
  1752. logger.debug("run_tdls")
  1753. iface.TDLSDiscover(addr1)
  1754. gobject.timeout_add(100, self.run_tdls2)
  1755. return False
  1756. def run_tdls2(self, *args):
  1757. logger.debug("run_tdls2")
  1758. iface.TDLSSetup(addr1)
  1759. gobject.timeout_add(500, self.run_tdls3)
  1760. return False
  1761. def run_tdls3(self, *args):
  1762. logger.debug("run_tdls3")
  1763. res = iface.TDLSStatus(addr1)
  1764. if res == "connected":
  1765. self.tdls_setup = True
  1766. else:
  1767. logger.info("Unexpected TDLSStatus: " + res)
  1768. iface.TDLSTeardown(addr1)
  1769. gobject.timeout_add(200, self.run_tdls4)
  1770. return False
  1771. def run_tdls4(self, *args):
  1772. logger.debug("run_tdls4")
  1773. res = iface.TDLSStatus(addr1)
  1774. if res == "peer does not exist":
  1775. self.tdls_teardown = True
  1776. else:
  1777. logger.info("Unexpected TDLSStatus: " + res)
  1778. self.loop.quit()
  1779. return False
  1780. def success(self):
  1781. return self.tdls_setup and self.tdls_teardown
  1782. with TestDbusTdls(bus) as t:
  1783. if not t.success():
  1784. raise Exception("Expected signals not seen")
  1785. def test_dbus_pkcs11(dev, apdev):
  1786. """D-Bus SetPKCS11EngineAndModulePath()"""
  1787. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1788. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  1789. try:
  1790. iface.SetPKCS11EngineAndModulePath("foo", "bar")
  1791. except dbus.exceptions.DBusException, e:
  1792. if "Error.Failed: Reinit of the EAPOL" not in str(e):
  1793. raise Exception("Unexpected error message for invalid SetPKCS11EngineAndModulePath: " + str(e))
  1794. try:
  1795. iface.SetPKCS11EngineAndModulePath("foo", "")
  1796. except dbus.exceptions.DBusException, e:
  1797. if "Error.Failed: Reinit of the EAPOL" not in str(e):
  1798. raise Exception("Unexpected error message for invalid SetPKCS11EngineAndModulePath: " + str(e))
  1799. iface.SetPKCS11EngineAndModulePath("", "bar")
  1800. res = if_obj.Get(WPAS_DBUS_IFACE, "PKCS11EnginePath",
  1801. dbus_interface=dbus.PROPERTIES_IFACE)
  1802. if res != "":
  1803. raise Exception("Unexpected PKCS11EnginePath value: " + res)
  1804. res = if_obj.Get(WPAS_DBUS_IFACE, "PKCS11ModulePath",
  1805. dbus_interface=dbus.PROPERTIES_IFACE)
  1806. if res != "bar":
  1807. raise Exception("Unexpected PKCS11ModulePath value: " + res)
  1808. iface.SetPKCS11EngineAndModulePath("", "")
  1809. res = if_obj.Get(WPAS_DBUS_IFACE, "PKCS11EnginePath",
  1810. dbus_interface=dbus.PROPERTIES_IFACE)
  1811. if res != "":
  1812. raise Exception("Unexpected PKCS11EnginePath value: " + res)
  1813. res = if_obj.Get(WPAS_DBUS_IFACE, "PKCS11ModulePath",
  1814. dbus_interface=dbus.PROPERTIES_IFACE)
  1815. if res != "":
  1816. raise Exception("Unexpected PKCS11ModulePath value: " + res)
  1817. def test_dbus_apscan(dev, apdev):
  1818. """D-Bus Get/Set ApScan"""
  1819. try:
  1820. _test_dbus_apscan(dev, apdev)
  1821. finally:
  1822. dev[0].request("AP_SCAN 1")
  1823. def _test_dbus_apscan(dev, apdev):
  1824. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1825. res = if_obj.Get(WPAS_DBUS_IFACE, "ApScan",
  1826. dbus_interface=dbus.PROPERTIES_IFACE)
  1827. if res != 1:
  1828. raise Exception("Unexpected initial ApScan value: %d" % res)
  1829. for i in range(3):
  1830. if_obj.Set(WPAS_DBUS_IFACE, "ApScan", dbus.UInt32(i),
  1831. dbus_interface=dbus.PROPERTIES_IFACE)
  1832. res = if_obj.Get(WPAS_DBUS_IFACE, "ApScan",
  1833. dbus_interface=dbus.PROPERTIES_IFACE)
  1834. if res != i:
  1835. raise Exception("Unexpected ApScan value %d (expected %d)" % (res, i))
  1836. try:
  1837. if_obj.Set(WPAS_DBUS_IFACE, "ApScan", dbus.Int16(-1),
  1838. dbus_interface=dbus.PROPERTIES_IFACE)
  1839. raise Exception("Invalid Set(ApScan,-1) accepted")
  1840. except dbus.exceptions.DBusException, e:
  1841. if "Error.Failed: wrong property type" not in str(e):
  1842. raise Exception("Unexpected error message for invalid Set(ApScan,-1): " + str(e))
  1843. try:
  1844. if_obj.Set(WPAS_DBUS_IFACE, "ApScan", dbus.UInt32(123),
  1845. dbus_interface=dbus.PROPERTIES_IFACE)
  1846. raise Exception("Invalid Set(ApScan,123) accepted")
  1847. except dbus.exceptions.DBusException, e:
  1848. if "Error.Failed: ap_scan must be 0, 1, or 2" not in str(e):
  1849. raise Exception("Unexpected error message for invalid Set(ApScan,123): " + str(e))
  1850. if_obj.Set(WPAS_DBUS_IFACE, "ApScan", dbus.UInt32(1),
  1851. dbus_interface=dbus.PROPERTIES_IFACE)
  1852. def test_dbus_fastreauth(dev, apdev):
  1853. """D-Bus Get/Set FastReauth"""
  1854. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1855. res = if_obj.Get(WPAS_DBUS_IFACE, "FastReauth",
  1856. dbus_interface=dbus.PROPERTIES_IFACE)
  1857. if res != True:
  1858. raise Exception("Unexpected initial FastReauth value: " + str(res))
  1859. for i in [ False, True ]:
  1860. if_obj.Set(WPAS_DBUS_IFACE, "FastReauth", dbus.Boolean(i),
  1861. dbus_interface=dbus.PROPERTIES_IFACE)
  1862. res = if_obj.Get(WPAS_DBUS_IFACE, "FastReauth",
  1863. dbus_interface=dbus.PROPERTIES_IFACE)
  1864. if res != i:
  1865. raise Exception("Unexpected FastReauth value %d (expected %d)" % (res, i))
  1866. try:
  1867. if_obj.Set(WPAS_DBUS_IFACE, "FastReauth", dbus.Int16(-1),
  1868. dbus_interface=dbus.PROPERTIES_IFACE)
  1869. raise Exception("Invalid Set(FastReauth,-1) accepted")
  1870. except dbus.exceptions.DBusException, e:
  1871. if "Error.Failed: wrong property type" not in str(e):
  1872. raise Exception("Unexpected error message for invalid Set(ApScan,-1): " + str(e))
  1873. if_obj.Set(WPAS_DBUS_IFACE, "FastReauth", dbus.Boolean(True),
  1874. dbus_interface=dbus.PROPERTIES_IFACE)
  1875. def test_dbus_bss_expire(dev, apdev):
  1876. """D-Bus Get/Set BSSExpireAge and BSSExpireCount"""
  1877. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1878. if_obj.Set(WPAS_DBUS_IFACE, "BSSExpireAge", dbus.UInt32(179),
  1879. dbus_interface=dbus.PROPERTIES_IFACE)
  1880. res = if_obj.Get(WPAS_DBUS_IFACE, "BSSExpireAge",
  1881. dbus_interface=dbus.PROPERTIES_IFACE)
  1882. if res != 179:
  1883. raise Exception("Unexpected BSSExpireAge value %d (expected %d)" % (res, i))
  1884. if_obj.Set(WPAS_DBUS_IFACE, "BSSExpireCount", dbus.UInt32(3),
  1885. dbus_interface=dbus.PROPERTIES_IFACE)
  1886. res = if_obj.Get(WPAS_DBUS_IFACE, "BSSExpireCount",
  1887. dbus_interface=dbus.PROPERTIES_IFACE)
  1888. if res != 3:
  1889. raise Exception("Unexpected BSSExpireCount value %d (expected %d)" % (res, i))
  1890. try:
  1891. if_obj.Set(WPAS_DBUS_IFACE, "BSSExpireAge", dbus.Int16(-1),
  1892. dbus_interface=dbus.PROPERTIES_IFACE)
  1893. raise Exception("Invalid Set(BSSExpireAge,-1) accepted")
  1894. except dbus.exceptions.DBusException, e:
  1895. if "Error.Failed: wrong property type" not in str(e):
  1896. raise Exception("Unexpected error message for invalid Set(BSSExpireAge,-1): " + str(e))
  1897. try:
  1898. if_obj.Set(WPAS_DBUS_IFACE, "BSSExpireAge", dbus.UInt32(9),
  1899. dbus_interface=dbus.PROPERTIES_IFACE)
  1900. raise Exception("Invalid Set(BSSExpireAge,9) accepted")
  1901. except dbus.exceptions.DBusException, e:
  1902. if "Error.Failed: BSSExpireAge must be >= 10" not in str(e):
  1903. raise Exception("Unexpected error message for invalid Set(BSSExpireAge,9): " + str(e))
  1904. try:
  1905. if_obj.Set(WPAS_DBUS_IFACE, "BSSExpireCount", dbus.Int16(-1),
  1906. dbus_interface=dbus.PROPERTIES_IFACE)
  1907. raise Exception("Invalid Set(BSSExpireCount,-1) accepted")
  1908. except dbus.exceptions.DBusException, e:
  1909. if "Error.Failed: wrong property type" not in str(e):
  1910. raise Exception("Unexpected error message for invalid Set(BSSExpireCount,-1): " + str(e))
  1911. try:
  1912. if_obj.Set(WPAS_DBUS_IFACE, "BSSExpireCount", dbus.UInt32(0),
  1913. dbus_interface=dbus.PROPERTIES_IFACE)
  1914. raise Exception("Invalid Set(BSSExpireCount,0) accepted")
  1915. except dbus.exceptions.DBusException, e:
  1916. if "Error.Failed: BSSExpireCount must be > 0" not in str(e):
  1917. raise Exception("Unexpected error message for invalid Set(BSSExpireCount,0): " + str(e))
  1918. if_obj.Set(WPAS_DBUS_IFACE, "BSSExpireAge", dbus.UInt32(180),
  1919. dbus_interface=dbus.PROPERTIES_IFACE)
  1920. if_obj.Set(WPAS_DBUS_IFACE, "BSSExpireCount", dbus.UInt32(2),
  1921. dbus_interface=dbus.PROPERTIES_IFACE)
  1922. def test_dbus_country(dev, apdev):
  1923. """D-Bus Get/Set Country"""
  1924. try:
  1925. _test_dbus_country(dev, apdev)
  1926. finally:
  1927. dev[0].request("SET country 00")
  1928. subprocess.call(['iw', 'reg', 'set', '00'])
  1929. def _test_dbus_country(dev, apdev):
  1930. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1931. # work around issues with possible pending regdom event from the end of
  1932. # the previous test case
  1933. time.sleep(0.2)
  1934. dev[0].dump_monitor()
  1935. if_obj.Set(WPAS_DBUS_IFACE, "Country", "FI",
  1936. dbus_interface=dbus.PROPERTIES_IFACE)
  1937. res = if_obj.Get(WPAS_DBUS_IFACE, "Country",
  1938. dbus_interface=dbus.PROPERTIES_IFACE)
  1939. if res != "FI":
  1940. raise Exception("Unexpected Country value %s (expected FI)" % res)
  1941. ev = dev[0].wait_event(["CTRL-EVENT-REGDOM-CHANGE"])
  1942. if ev is None:
  1943. # For now, work around separate P2P Device interface event delivery
  1944. ev = dev[0].wait_global_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=1)
  1945. if ev is None:
  1946. raise Exception("regdom change event not seen")
  1947. if "init=USER type=COUNTRY alpha2=FI" not in ev:
  1948. raise Exception("Unexpected event contents: " + ev)
  1949. try:
  1950. if_obj.Set(WPAS_DBUS_IFACE, "Country", dbus.Int16(-1),
  1951. dbus_interface=dbus.PROPERTIES_IFACE)
  1952. raise Exception("Invalid Set(Country,-1) accepted")
  1953. except dbus.exceptions.DBusException, e:
  1954. if "Error.Failed: wrong property type" not in str(e):
  1955. raise Exception("Unexpected error message for invalid Set(Country,-1): " + str(e))
  1956. try:
  1957. if_obj.Set(WPAS_DBUS_IFACE, "Country", "F",
  1958. dbus_interface=dbus.PROPERTIES_IFACE)
  1959. raise Exception("Invalid Set(Country,F) accepted")
  1960. except dbus.exceptions.DBusException, e:
  1961. if "Error.Failed: invalid country code" not in str(e):
  1962. raise Exception("Unexpected error message for invalid Set(Country,F): " + str(e))
  1963. if_obj.Set(WPAS_DBUS_IFACE, "Country", "00",
  1964. dbus_interface=dbus.PROPERTIES_IFACE)
  1965. ev = dev[0].wait_event(["CTRL-EVENT-REGDOM-CHANGE"])
  1966. if ev is None:
  1967. # For now, work around separate P2P Device interface event delivery
  1968. ev = dev[0].wait_global_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=1)
  1969. if ev is None:
  1970. raise Exception("regdom change event not seen")
  1971. # init=CORE was previously used due to invalid db.txt data for 00. For
  1972. # now, allow both it and the new init=USER after fixed db.txt.
  1973. if "init=CORE type=WORLD" not in ev and "init=USER type=WORLD" not in ev:
  1974. raise Exception("Unexpected event contents: " + ev)
  1975. def test_dbus_scan_interval(dev, apdev):
  1976. """D-Bus Get/Set ScanInterval"""
  1977. try:
  1978. _test_dbus_scan_interval(dev, apdev)
  1979. finally:
  1980. dev[0].request("SCAN_INTERVAL 5")
  1981. def _test_dbus_scan_interval(dev, apdev):
  1982. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  1983. if_obj.Set(WPAS_DBUS_IFACE, "ScanInterval", dbus.Int32(3),
  1984. dbus_interface=dbus.PROPERTIES_IFACE)
  1985. res = if_obj.Get(WPAS_DBUS_IFACE, "ScanInterval",
  1986. dbus_interface=dbus.PROPERTIES_IFACE)
  1987. if res != 3:
  1988. raise Exception("Unexpected ScanInterval value %d (expected %d)" % (res, i))
  1989. try:
  1990. if_obj.Set(WPAS_DBUS_IFACE, "ScanInterval", dbus.UInt16(100),
  1991. dbus_interface=dbus.PROPERTIES_IFACE)
  1992. raise Exception("Invalid Set(ScanInterval,100) accepted")
  1993. except dbus.exceptions.DBusException, e:
  1994. if "Error.Failed: wrong property type" not in str(e):
  1995. raise Exception("Unexpected error message for invalid Set(ScanInterval,100): " + str(e))
  1996. try:
  1997. if_obj.Set(WPAS_DBUS_IFACE, "ScanInterval", dbus.Int32(-1),
  1998. dbus_interface=dbus.PROPERTIES_IFACE)
  1999. raise Exception("Invalid Set(ScanInterval,-1) accepted")
  2000. except dbus.exceptions.DBusException, e:
  2001. if "Error.Failed: scan_interval must be >= 0" not in str(e):
  2002. raise Exception("Unexpected error message for invalid Set(ScanInterval,-1): " + str(e))
  2003. if_obj.Set(WPAS_DBUS_IFACE, "ScanInterval", dbus.Int32(5),
  2004. dbus_interface=dbus.PROPERTIES_IFACE)
  2005. def test_dbus_probe_req_reporting(dev, apdev):
  2006. """D-Bus Probe Request reporting"""
  2007. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  2008. dev[1].p2p_find(social=True)
  2009. class TestDbusProbe(TestDbus):
  2010. def __init__(self, bus):
  2011. TestDbus.__init__(self, bus)
  2012. self.reported = False
  2013. def __enter__(self):
  2014. gobject.timeout_add(1, self.run_test)
  2015. gobject.timeout_add(15000, self.timeout)
  2016. self.add_signal(self.groupStarted, WPAS_DBUS_IFACE_P2PDEVICE,
  2017. "GroupStarted")
  2018. self.add_signal(self.probeRequest, WPAS_DBUS_IFACE, "ProbeRequest",
  2019. byte_arrays=True)
  2020. self.loop.run()
  2021. return self
  2022. def groupStarted(self, properties):
  2023. logger.debug("groupStarted: " + str(properties))
  2024. g_if_obj = bus.get_object(WPAS_DBUS_SERVICE,
  2025. properties['interface_object'])
  2026. self.iface = dbus.Interface(g_if_obj, WPAS_DBUS_IFACE)
  2027. self.iface.SubscribeProbeReq()
  2028. self.group_p2p = dbus.Interface(g_if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  2029. def probeRequest(self, args):
  2030. logger.debug("probeRequest: args=%s" % str(args))
  2031. self.reported = True
  2032. self.loop.quit()
  2033. def run_test(self, *args):
  2034. logger.debug("run_test")
  2035. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  2036. params = dbus.Dictionary({ 'frequency': 2412 })
  2037. p2p.GroupAdd(params)
  2038. return False
  2039. def success(self):
  2040. return self.reported
  2041. with TestDbusProbe(bus) as t:
  2042. if not t.success():
  2043. raise Exception("Expected signals not seen")
  2044. t.iface.UnsubscribeProbeReq()
  2045. try:
  2046. t.iface.UnsubscribeProbeReq()
  2047. raise Exception("Invalid UnsubscribeProbeReq() accepted")
  2048. except dbus.exceptions.DBusException, e:
  2049. if "NoSubscription" not in str(e):
  2050. raise Exception("Unexpected error message for invalid UnsubscribeProbeReq(): " + str(e))
  2051. t.group_p2p.Disconnect()
  2052. with TestDbusProbe(bus) as t:
  2053. if not t.success():
  2054. raise Exception("Expected signals not seen")
  2055. # On purpose, leave ProbeReq subscription in place to test automatic
  2056. # cleanup.
  2057. dev[1].p2p_stop_find()
  2058. def test_dbus_probe_req_reporting_oom(dev, apdev):
  2059. """D-Bus Probe Request reporting (OOM)"""
  2060. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  2061. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  2062. # Need to make sure this process has not already subscribed to avoid false
  2063. # failures due to the operation succeeding due to os_strdup() not even
  2064. # getting called.
  2065. try:
  2066. iface.UnsubscribeProbeReq()
  2067. was_subscribed = True
  2068. except dbus.exceptions.DBusException, e:
  2069. was_subscribed = False
  2070. pass
  2071. with alloc_fail_dbus(dev[0], 1, "wpas_dbus_handler_subscribe_preq",
  2072. "SubscribeProbeReq"):
  2073. iface.SubscribeProbeReq()
  2074. if was_subscribed:
  2075. # On purpose, leave ProbeReq subscription in place to test automatic
  2076. # cleanup.
  2077. iface.SubscribeProbeReq()
  2078. def test_dbus_p2p_invalid(dev, apdev):
  2079. """D-Bus invalid P2P operations"""
  2080. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  2081. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  2082. try:
  2083. p2p.RejectPeer(path + "/Peers/00112233445566")
  2084. raise Exception("Invalid RejectPeer accepted")
  2085. except dbus.exceptions.DBusException, e:
  2086. if "UnknownError: Failed to call wpas_p2p_reject" not in str(e):
  2087. raise Exception("Unexpected error message for invalid RejectPeer(): " + str(e))
  2088. try:
  2089. p2p.RejectPeer("/foo")
  2090. raise Exception("Invalid RejectPeer accepted")
  2091. except dbus.exceptions.DBusException, e:
  2092. if "InvalidArgs" not in str(e):
  2093. raise Exception("Unexpected error message for invalid RejectPeer(): " + str(e))
  2094. tests = [ { },
  2095. { 'peer': 'foo' },
  2096. { 'foo': "bar" },
  2097. { 'iface': "abc" },
  2098. { 'iface': 123 } ]
  2099. for t in tests:
  2100. try:
  2101. p2p.RemoveClient(t)
  2102. raise Exception("Invalid RemoveClient accepted")
  2103. except dbus.exceptions.DBusException, e:
  2104. if "InvalidArgs" not in str(e):
  2105. raise Exception("Unexpected error message for invalid RemoveClient(): " + str(e))
  2106. tests = [ {'DiscoveryType': 'foo'},
  2107. {'RequestedDeviceTypes': 'foo'},
  2108. {'RequestedDeviceTypes': ['foo']},
  2109. {'RequestedDeviceTypes': ['1','2','3','4','5','6','7','8','9',
  2110. '10','11','12','13','14','15','16',
  2111. '17']},
  2112. {'RequestedDeviceTypes': dbus.Array([], signature="s")},
  2113. {'RequestedDeviceTypes': dbus.Array([['foo']], signature="as")},
  2114. {'RequestedDeviceTypes': dbus.Array([], signature="i")},
  2115. {'RequestedDeviceTypes': [dbus.ByteArray('12345678'),
  2116. dbus.ByteArray('1234567')]},
  2117. {'Foo': dbus.Int16(1)},
  2118. {'Foo': dbus.UInt16(1)},
  2119. {'Foo': dbus.Int64(1)},
  2120. {'Foo': dbus.UInt64(1)},
  2121. {'Foo': dbus.Double(1.23)},
  2122. {'Foo': dbus.Signature('s')},
  2123. {'Foo': 'bar'}]
  2124. for t in tests:
  2125. try:
  2126. p2p.Find(dbus.Dictionary(t))
  2127. raise Exception("Invalid Find accepted")
  2128. except dbus.exceptions.DBusException, e:
  2129. if "InvalidArgs" not in str(e):
  2130. raise Exception("Unexpected error message for invalid Find(): " + str(e))
  2131. for p in [ "/foo",
  2132. "/fi/w1/wpa_supplicant1/Interfaces/1234",
  2133. "/fi/w1/wpa_supplicant1/Interfaces/1234/Networks/1234" ]:
  2134. try:
  2135. p2p.RemovePersistentGroup(dbus.ObjectPath(p))
  2136. raise Exception("Invalid RemovePersistentGroup accepted")
  2137. except dbus.exceptions.DBusException, e:
  2138. if "InvalidArgs" not in str(e):
  2139. raise Exception("Unexpected error message for invalid RemovePersistentGroup: " + str(e))
  2140. try:
  2141. dev[0].request("P2P_SET disabled 1")
  2142. p2p.Listen(5)
  2143. raise Exception("Invalid Listen accepted")
  2144. except dbus.exceptions.DBusException, e:
  2145. if "UnknownError: Could not start P2P listen" not in str(e):
  2146. raise Exception("Unexpected error message for invalid Listen: " + str(e))
  2147. finally:
  2148. dev[0].request("P2P_SET disabled 0")
  2149. test_obj = bus.get_object(WPAS_DBUS_SERVICE, path, introspect=False)
  2150. test_p2p = dbus.Interface(test_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  2151. try:
  2152. test_p2p.Listen("foo")
  2153. raise Exception("Invalid Listen accepted")
  2154. except dbus.exceptions.DBusException, e:
  2155. if "InvalidArgs" not in str(e):
  2156. raise Exception("Unexpected error message for invalid Listen: " + str(e))
  2157. try:
  2158. dev[0].request("P2P_SET disabled 1")
  2159. p2p.ExtendedListen(dbus.Dictionary({}))
  2160. raise Exception("Invalid ExtendedListen accepted")
  2161. except dbus.exceptions.DBusException, e:
  2162. if "UnknownError: failed to initiate a p2p_ext_listen" not in str(e):
  2163. raise Exception("Unexpected error message for invalid ExtendedListen: " + str(e))
  2164. finally:
  2165. dev[0].request("P2P_SET disabled 0")
  2166. try:
  2167. dev[0].request("P2P_SET disabled 1")
  2168. args = { 'duration1': 30000, 'interval1': 102400,
  2169. 'duration2': 20000, 'interval2': 102400 }
  2170. p2p.PresenceRequest(args)
  2171. raise Exception("Invalid PresenceRequest accepted")
  2172. except dbus.exceptions.DBusException, e:
  2173. if "UnknownError: Failed to invoke presence request" not in str(e):
  2174. raise Exception("Unexpected error message for invalid PresenceRequest: " + str(e))
  2175. finally:
  2176. dev[0].request("P2P_SET disabled 0")
  2177. try:
  2178. params = dbus.Dictionary({'frequency': dbus.Int32(-1)})
  2179. p2p.GroupAdd(params)
  2180. raise Exception("Invalid GroupAdd accepted")
  2181. except dbus.exceptions.DBusException, e:
  2182. if "InvalidArgs" not in str(e):
  2183. raise Exception("Unexpected error message for invalid GroupAdd: " + str(e))
  2184. try:
  2185. params = dbus.Dictionary({'persistent_group_object':
  2186. dbus.ObjectPath(path),
  2187. 'frequency': 2412})
  2188. p2p.GroupAdd(params)
  2189. raise Exception("Invalid GroupAdd accepted")
  2190. except dbus.exceptions.DBusException, e:
  2191. if "InvalidArgs" not in str(e):
  2192. raise Exception("Unexpected error message for invalid GroupAdd: " + str(e))
  2193. try:
  2194. p2p.Disconnect()
  2195. raise Exception("Invalid Disconnect accepted")
  2196. except dbus.exceptions.DBusException, e:
  2197. if "UnknownError: failed to disconnect" not in str(e):
  2198. raise Exception("Unexpected error message for invalid Disconnect: " + str(e))
  2199. try:
  2200. dev[0].request("P2P_SET disabled 1")
  2201. p2p.Flush()
  2202. raise Exception("Invalid Flush accepted")
  2203. except dbus.exceptions.DBusException, e:
  2204. if "Error.Failed: P2P is not available for this interface" not in str(e):
  2205. raise Exception("Unexpected error message for invalid Flush: " + str(e))
  2206. finally:
  2207. dev[0].request("P2P_SET disabled 0")
  2208. try:
  2209. dev[0].request("P2P_SET disabled 1")
  2210. args = { 'peer': path,
  2211. 'join': True,
  2212. 'wps_method': 'pbc',
  2213. 'frequency': 2412 }
  2214. pin = p2p.Connect(args)
  2215. raise Exception("Invalid Connect accepted")
  2216. except dbus.exceptions.DBusException, e:
  2217. if "Error.Failed: P2P is not available for this interface" not in str(e):
  2218. raise Exception("Unexpected error message for invalid Connect: " + str(e))
  2219. finally:
  2220. dev[0].request("P2P_SET disabled 0")
  2221. tests = [ { 'frequency': dbus.Int32(-1) },
  2222. { 'wps_method': 'pbc' },
  2223. { 'wps_method': 'foo' } ]
  2224. for args in tests:
  2225. try:
  2226. pin = p2p.Connect(args)
  2227. raise Exception("Invalid Connect accepted")
  2228. except dbus.exceptions.DBusException, e:
  2229. if "InvalidArgs" not in str(e):
  2230. raise Exception("Unexpected error message for invalid Connect: " + str(e))
  2231. try:
  2232. dev[0].request("P2P_SET disabled 1")
  2233. args = { 'peer': path }
  2234. pin = p2p.Invite(args)
  2235. raise Exception("Invalid Invite accepted")
  2236. except dbus.exceptions.DBusException, e:
  2237. if "Error.Failed: P2P is not available for this interface" not in str(e):
  2238. raise Exception("Unexpected error message for invalid Invite: " + str(e))
  2239. finally:
  2240. dev[0].request("P2P_SET disabled 0")
  2241. try:
  2242. args = { 'foo': 'bar' }
  2243. pin = p2p.Invite(args)
  2244. raise Exception("Invalid Invite accepted")
  2245. except dbus.exceptions.DBusException, e:
  2246. if "InvalidArgs" not in str(e):
  2247. raise Exception("Unexpected error message for invalid Connect: " + str(e))
  2248. tests = [ (path, 'display', "InvalidArgs"),
  2249. (dbus.ObjectPath(path + "/Peers/00112233445566"),
  2250. 'display',
  2251. "UnknownError: Failed to send provision discovery request"),
  2252. (dbus.ObjectPath(path + "/Peers/00112233445566"),
  2253. 'keypad',
  2254. "UnknownError: Failed to send provision discovery request"),
  2255. (dbus.ObjectPath(path + "/Peers/00112233445566"),
  2256. 'pbc',
  2257. "UnknownError: Failed to send provision discovery request"),
  2258. (dbus.ObjectPath(path + "/Peers/00112233445566"),
  2259. 'pushbutton',
  2260. "UnknownError: Failed to send provision discovery request"),
  2261. (dbus.ObjectPath(path + "/Peers/00112233445566"),
  2262. 'foo', "InvalidArgs") ]
  2263. for (p,method,err) in tests:
  2264. try:
  2265. p2p.ProvisionDiscoveryRequest(p, method)
  2266. raise Exception("Invalid ProvisionDiscoveryRequest accepted")
  2267. except dbus.exceptions.DBusException, e:
  2268. if err not in str(e):
  2269. raise Exception("Unexpected error message for invalid ProvisionDiscoveryRequest: " + str(e))
  2270. try:
  2271. dev[0].request("P2P_SET disabled 1")
  2272. if_obj.Get(WPAS_DBUS_IFACE_P2PDEVICE, "Peers",
  2273. dbus_interface=dbus.PROPERTIES_IFACE)
  2274. raise Exception("Invalid Get(Peers) accepted")
  2275. except dbus.exceptions.DBusException, e:
  2276. if "Error.Failed: P2P is not available for this interface" not in str(e):
  2277. raise Exception("Unexpected error message for invalid Get(Peers): " + str(e))
  2278. finally:
  2279. dev[0].request("P2P_SET disabled 0")
  2280. def test_dbus_p2p_oom(dev, apdev):
  2281. """D-Bus P2P operations and OOM"""
  2282. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  2283. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  2284. with alloc_fail_dbus(dev[0], 1, "_wpa_dbus_dict_entry_get_string_array",
  2285. "Find", "InvalidArgs"):
  2286. p2p.Find(dbus.Dictionary({ 'Foo': [ 'bar' ] }))
  2287. with alloc_fail_dbus(dev[0], 2, "_wpa_dbus_dict_entry_get_string_array",
  2288. "Find", "InvalidArgs"):
  2289. p2p.Find(dbus.Dictionary({ 'Foo': [ 'bar' ] }))
  2290. with alloc_fail_dbus(dev[0], 10, "_wpa_dbus_dict_entry_get_string_array",
  2291. "Find", "InvalidArgs"):
  2292. p2p.Find(dbus.Dictionary({ 'Foo': [ '1','2','3','4','5','6','7','8','9' ] }))
  2293. with alloc_fail_dbus(dev[0], 1, ":=_wpa_dbus_dict_entry_get_binarray",
  2294. "Find", "InvalidArgs"):
  2295. p2p.Find(dbus.Dictionary({ 'Foo': [ dbus.ByteArray('123') ] }))
  2296. with alloc_fail_dbus(dev[0], 1, "_wpa_dbus_dict_entry_get_byte_array;_wpa_dbus_dict_entry_get_binarray",
  2297. "Find", "InvalidArgs"):
  2298. p2p.Find(dbus.Dictionary({ 'Foo': [ dbus.ByteArray('123') ] }))
  2299. with alloc_fail_dbus(dev[0], 2, "=_wpa_dbus_dict_entry_get_binarray",
  2300. "Find", "InvalidArgs"):
  2301. p2p.Find(dbus.Dictionary({ 'Foo': [ dbus.ByteArray('123'),
  2302. dbus.ByteArray('123'),
  2303. dbus.ByteArray('123'),
  2304. dbus.ByteArray('123'),
  2305. dbus.ByteArray('123'),
  2306. dbus.ByteArray('123'),
  2307. dbus.ByteArray('123'),
  2308. dbus.ByteArray('123'),
  2309. dbus.ByteArray('123'),
  2310. dbus.ByteArray('123'),
  2311. dbus.ByteArray('123') ] }))
  2312. with alloc_fail_dbus(dev[0], 1, "wpabuf_alloc_ext_data;_wpa_dbus_dict_entry_get_binarray",
  2313. "Find", "InvalidArgs"):
  2314. p2p.Find(dbus.Dictionary({ 'Foo': [ dbus.ByteArray('123') ] }))
  2315. with alloc_fail_dbus(dev[0], 1, "_wpa_dbus_dict_fill_value_from_variant;wpas_dbus_handler_p2p_find",
  2316. "Find", "InvalidArgs"):
  2317. p2p.Find(dbus.Dictionary({ 'Foo': path }))
  2318. with alloc_fail_dbus(dev[0], 1, "_wpa_dbus_dict_entry_get_byte_array",
  2319. "AddService", "InvalidArgs"):
  2320. args = { 'service_type': 'bonjour',
  2321. 'response': dbus.ByteArray(500*'b') }
  2322. p2p.AddService(args)
  2323. with alloc_fail_dbus(dev[0], 2, "_wpa_dbus_dict_entry_get_byte_array",
  2324. "AddService", "InvalidArgs"):
  2325. p2p.AddService(args)
  2326. def test_dbus_p2p_discovery(dev, apdev):
  2327. """D-Bus P2P discovery"""
  2328. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  2329. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  2330. addr0 = dev[0].p2p_dev_addr()
  2331. dev[1].request("SET sec_device_type 1-0050F204-2")
  2332. dev[1].request("VENDOR_ELEM_ADD 1 dd0c0050f2041049000411223344")
  2333. dev[1].p2p_listen()
  2334. addr1 = dev[1].p2p_dev_addr()
  2335. a1 = binascii.unhexlify(addr1.replace(':',''))
  2336. wfd_devinfo = "00001c440028"
  2337. dev[2].request("SET wifi_display 1")
  2338. dev[2].request("WFD_SUBELEM_SET 0 0006" + wfd_devinfo)
  2339. wfd = binascii.unhexlify('000006' + wfd_devinfo)
  2340. dev[2].p2p_listen()
  2341. addr2 = dev[2].p2p_dev_addr()
  2342. a2 = binascii.unhexlify(addr2.replace(':',''))
  2343. res = if_obj.GetAll(WPAS_DBUS_IFACE_P2PDEVICE,
  2344. dbus_interface=dbus.PROPERTIES_IFACE)
  2345. if 'Peers' not in res:
  2346. raise Exception("GetAll result missing Peers")
  2347. if len(res['Peers']) != 0:
  2348. raise Exception("Unexpected peer(s) in the list")
  2349. args = {'DiscoveryType': 'social',
  2350. 'RequestedDeviceTypes': [dbus.ByteArray('12345678')],
  2351. 'Timeout': dbus.Int32(1) }
  2352. p2p.Find(dbus.Dictionary(args))
  2353. p2p.StopFind()
  2354. class TestDbusP2p(TestDbus):
  2355. def __init__(self, bus):
  2356. TestDbus.__init__(self, bus)
  2357. self.found = False
  2358. self.found2 = False
  2359. self.lost = False
  2360. self.find_stopped = False
  2361. def __enter__(self):
  2362. gobject.timeout_add(1, self.run_test)
  2363. gobject.timeout_add(15000, self.timeout)
  2364. self.add_signal(self.deviceFound, WPAS_DBUS_IFACE_P2PDEVICE,
  2365. "DeviceFound")
  2366. self.add_signal(self.deviceLost, WPAS_DBUS_IFACE_P2PDEVICE,
  2367. "DeviceLost")
  2368. self.add_signal(self.provisionDiscoveryResponseEnterPin,
  2369. WPAS_DBUS_IFACE_P2PDEVICE,
  2370. "ProvisionDiscoveryResponseEnterPin")
  2371. self.add_signal(self.findStopped, WPAS_DBUS_IFACE_P2PDEVICE,
  2372. "FindStopped")
  2373. self.loop.run()
  2374. return self
  2375. def deviceFound(self, path):
  2376. logger.debug("deviceFound: path=%s" % path)
  2377. res = if_obj.Get(WPAS_DBUS_IFACE_P2PDEVICE, "Peers",
  2378. dbus_interface=dbus.PROPERTIES_IFACE)
  2379. if len(res) < 1:
  2380. raise Exception("Unexpected number of peers")
  2381. if path not in res:
  2382. raise Exception("Mismatch in peer object path")
  2383. peer_obj = bus.get_object(WPAS_DBUS_SERVICE, path)
  2384. res = peer_obj.GetAll(WPAS_DBUS_P2P_PEER,
  2385. dbus_interface=dbus.PROPERTIES_IFACE,
  2386. byte_arrays=True)
  2387. logger.debug("peer properties: " + str(res))
  2388. if res['DeviceAddress'] == a1:
  2389. if 'SecondaryDeviceTypes' not in res:
  2390. raise Exception("Missing SecondaryDeviceTypes")
  2391. sec = res['SecondaryDeviceTypes']
  2392. if len(sec) < 1:
  2393. raise Exception("Secondary device type missing")
  2394. if "\x00\x01\x00\x50\xF2\x04\x00\x02" not in sec:
  2395. raise Exception("Secondary device type mismatch")
  2396. if 'VendorExtension' not in res:
  2397. raise Exception("Missing VendorExtension")
  2398. vendor = res['VendorExtension']
  2399. if len(vendor) < 1:
  2400. raise Exception("Vendor extension missing")
  2401. if "\x11\x22\x33\x44" not in vendor:
  2402. raise Exception("Secondary device type mismatch")
  2403. self.found = True
  2404. elif res['DeviceAddress'] == a2:
  2405. if 'IEs' not in res:
  2406. raise Exception("IEs missing")
  2407. if res['IEs'] != wfd:
  2408. raise Exception("IEs mismatch")
  2409. self.found2 = True
  2410. else:
  2411. raise Exception("Unexpected peer device address")
  2412. if self.found and self.found2:
  2413. p2p.StopFind()
  2414. p2p.RejectPeer(path)
  2415. p2p.ProvisionDiscoveryRequest(path, 'display')
  2416. def deviceLost(self, path):
  2417. logger.debug("deviceLost: path=%s" % path)
  2418. self.lost = True
  2419. try:
  2420. p2p.RejectPeer(path)
  2421. raise Exception("Invalid RejectPeer accepted")
  2422. except dbus.exceptions.DBusException, e:
  2423. if "UnknownError: Failed to call wpas_p2p_reject" not in str(e):
  2424. raise Exception("Unexpected error message for invalid RejectPeer(): " + str(e))
  2425. self.loop.quit()
  2426. def provisionDiscoveryResponseEnterPin(self, peer_object):
  2427. logger.debug("provisionDiscoveryResponseEnterPin - peer=%s" % peer_object)
  2428. p2p.Flush()
  2429. def findStopped(self):
  2430. logger.debug("findStopped")
  2431. self.find_stopped = True
  2432. def run_test(self, *args):
  2433. logger.debug("run_test")
  2434. p2p.Find(dbus.Dictionary({'DiscoveryType': 'social',
  2435. 'Timeout': dbus.Int32(10)}))
  2436. return False
  2437. def success(self):
  2438. return self.found and self.lost and self.found2 and self.find_stopped
  2439. with TestDbusP2p(bus) as t:
  2440. if not t.success():
  2441. raise Exception("Expected signals not seen")
  2442. dev[1].request("VENDOR_ELEM_REMOVE 1 *")
  2443. dev[1].p2p_stop_find()
  2444. p2p.Listen(1)
  2445. dev[2].p2p_stop_find()
  2446. dev[2].request("P2P_FLUSH")
  2447. if not dev[2].discover_peer(addr0):
  2448. raise Exception("Peer not found")
  2449. p2p.StopFind()
  2450. dev[2].p2p_stop_find()
  2451. try:
  2452. p2p.ExtendedListen(dbus.Dictionary({'foo': 100}))
  2453. raise Exception("Invalid ExtendedListen accepted")
  2454. except dbus.exceptions.DBusException, e:
  2455. if "InvalidArgs" not in str(e):
  2456. raise Exception("Unexpected error message for invalid ExtendedListen(): " + str(e))
  2457. p2p.ExtendedListen(dbus.Dictionary({'period': 100, 'interval': 1000}))
  2458. p2p.ExtendedListen(dbus.Dictionary({}))
  2459. dev[0].global_request("P2P_EXT_LISTEN")
  2460. def test_dbus_p2p_service_discovery(dev, apdev):
  2461. """D-Bus P2P service discovery"""
  2462. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  2463. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  2464. addr0 = dev[0].p2p_dev_addr()
  2465. addr1 = dev[1].p2p_dev_addr()
  2466. bonjour_query = dbus.ByteArray(binascii.unhexlify('0b5f6166706f766572746370c00c000c01'))
  2467. bonjour_response = dbus.ByteArray(binascii.unhexlify('074578616d706c65c027'))
  2468. args = { 'service_type': 'bonjour',
  2469. 'query': bonjour_query,
  2470. 'response': bonjour_response }
  2471. p2p.AddService(args)
  2472. p2p.FlushService()
  2473. p2p.AddService(args)
  2474. try:
  2475. p2p.DeleteService(args)
  2476. raise Exception("Invalid DeleteService() accepted")
  2477. except dbus.exceptions.DBusException, e:
  2478. if "InvalidArgs" not in str(e):
  2479. raise Exception("Unexpected error message for invalid DeleteService(): " + str(e))
  2480. args = { 'service_type': 'bonjour',
  2481. 'query': bonjour_query }
  2482. p2p.DeleteService(args)
  2483. try:
  2484. p2p.DeleteService(args)
  2485. raise Exception("Invalid DeleteService() accepted")
  2486. except dbus.exceptions.DBusException, e:
  2487. if "InvalidArgs" not in str(e):
  2488. raise Exception("Unexpected error message for invalid DeleteService(): " + str(e))
  2489. args = { 'service_type': 'upnp',
  2490. 'version': 0x10,
  2491. 'service': 'uuid:6859dede-8574-59ab-9332-123456789012::upnp:rootdevice' }
  2492. p2p.AddService(args)
  2493. p2p.DeleteService(args)
  2494. try:
  2495. p2p.DeleteService(args)
  2496. raise Exception("Invalid DeleteService() accepted")
  2497. except dbus.exceptions.DBusException, e:
  2498. if "InvalidArgs" not in str(e):
  2499. raise Exception("Unexpected error message for invalid DeleteService(): " + str(e))
  2500. tests = [ { 'service_type': 'foo' },
  2501. { 'service_type': 'foo', 'query': bonjour_query },
  2502. { 'service_type': 'upnp' },
  2503. { 'service_type': 'upnp', 'version': 0x10 },
  2504. { 'service_type': 'upnp',
  2505. 'service': 'uuid:6859dede-8574-59ab-9332-123456789012::upnp:rootdevice' },
  2506. { 'version': 0x10,
  2507. 'service': 'uuid:6859dede-8574-59ab-9332-123456789012::upnp:rootdevice' },
  2508. { 'service_type': 'upnp', 'foo': 'bar' },
  2509. { 'service_type': 'bonjour' },
  2510. { 'service_type': 'bonjour', 'query': 'foo' },
  2511. { 'service_type': 'bonjour', 'foo': 'bar' } ]
  2512. for args in tests:
  2513. try:
  2514. p2p.DeleteService(args)
  2515. raise Exception("Invalid DeleteService() accepted")
  2516. except dbus.exceptions.DBusException, e:
  2517. if "InvalidArgs" not in str(e):
  2518. raise Exception("Unexpected error message for invalid DeleteService(): " + str(e))
  2519. tests = [ { 'service_type': 'foo' },
  2520. { 'service_type': 'upnp' },
  2521. { 'service_type': 'upnp', 'version': 0x10 },
  2522. { 'service_type': 'upnp',
  2523. 'service': 'uuid:6859dede-8574-59ab-9332-123456789012::upnp:rootdevice' },
  2524. { 'version': 0x10,
  2525. 'service': 'uuid:6859dede-8574-59ab-9332-123456789012::upnp:rootdevice' },
  2526. { 'service_type': 'upnp', 'foo': 'bar' },
  2527. { 'service_type': 'bonjour' },
  2528. { 'service_type': 'bonjour', 'query': 'foo' },
  2529. { 'service_type': 'bonjour', 'response': 'foo' },
  2530. { 'service_type': 'bonjour', 'query': bonjour_query },
  2531. { 'service_type': 'bonjour', 'response': bonjour_response },
  2532. { 'service_type': 'bonjour', 'query': dbus.ByteArray(500*'a') },
  2533. { 'service_type': 'bonjour', 'foo': 'bar' } ]
  2534. for args in tests:
  2535. try:
  2536. p2p.AddService(args)
  2537. raise Exception("Invalid AddService() accepted")
  2538. except dbus.exceptions.DBusException, e:
  2539. if "InvalidArgs" not in str(e):
  2540. raise Exception("Unexpected error message for invalid AddService(): " + str(e))
  2541. args = { 'tlv': dbus.ByteArray("\x02\x00\x00\x01") }
  2542. ref = p2p.ServiceDiscoveryRequest(args)
  2543. p2p.ServiceDiscoveryCancelRequest(ref)
  2544. try:
  2545. p2p.ServiceDiscoveryCancelRequest(ref)
  2546. raise Exception("Invalid ServiceDiscoveryCancelRequest() accepted")
  2547. except dbus.exceptions.DBusException, e:
  2548. if "InvalidArgs" not in str(e):
  2549. raise Exception("Unexpected error message for invalid AddService(): " + str(e))
  2550. try:
  2551. p2p.ServiceDiscoveryCancelRequest(dbus.UInt64(0))
  2552. raise Exception("Invalid ServiceDiscoveryCancelRequest() accepted")
  2553. except dbus.exceptions.DBusException, e:
  2554. if "InvalidArgs" not in str(e):
  2555. raise Exception("Unexpected error message for invalid AddService(): " + str(e))
  2556. args = { 'service_type': 'upnp',
  2557. 'version': 0x10,
  2558. 'service': 'ssdp:foo' }
  2559. ref = p2p.ServiceDiscoveryRequest(args)
  2560. p2p.ServiceDiscoveryCancelRequest(ref)
  2561. tests = [ { 'service_type': 'foo' },
  2562. { 'foo': 'bar' },
  2563. { 'tlv': 'foo' },
  2564. { },
  2565. { 'version': 0 },
  2566. { 'service_type': 'upnp',
  2567. 'service': 'ssdp:foo' },
  2568. { 'service_type': 'upnp',
  2569. 'version': 0x10 },
  2570. { 'service_type': 'upnp',
  2571. 'version': 0x10,
  2572. 'service': 'ssdp:foo',
  2573. 'peer_object': dbus.ObjectPath(path + "/Peers") },
  2574. { 'service_type': 'upnp',
  2575. 'version': 0x10,
  2576. 'service': 'ssdp:foo',
  2577. 'peer_object': path + "/Peers" },
  2578. { 'service_type': 'upnp',
  2579. 'version': 0x10,
  2580. 'service': 'ssdp:foo',
  2581. 'peer_object': dbus.ObjectPath(path + "/Peers/00112233445566") } ]
  2582. for args in tests:
  2583. try:
  2584. p2p.ServiceDiscoveryRequest(args)
  2585. raise Exception("Invalid ServiceDiscoveryRequest accepted")
  2586. except dbus.exceptions.DBusException, e:
  2587. if "InvalidArgs" not in str(e):
  2588. raise Exception("Unexpected error message for invalid ServiceDiscoveryRequest(): " + str(e))
  2589. args = { 'foo': 'bar' }
  2590. try:
  2591. p2p.ServiceDiscoveryResponse(dbus.Dictionary(args, signature='sv'))
  2592. raise Exception("Invalid ServiceDiscoveryResponse accepted")
  2593. except dbus.exceptions.DBusException, e:
  2594. if "InvalidArgs" not in str(e):
  2595. raise Exception("Unexpected error message for invalid ServiceDiscoveryResponse(): " + str(e))
  2596. def test_dbus_p2p_service_discovery_query(dev, apdev):
  2597. """D-Bus P2P service discovery query"""
  2598. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  2599. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  2600. addr0 = dev[0].p2p_dev_addr()
  2601. dev[1].request("P2P_SERVICE_ADD bonjour 0b5f6166706f766572746370c00c000c01 074578616d706c65c027")
  2602. dev[1].p2p_listen()
  2603. addr1 = dev[1].p2p_dev_addr()
  2604. class TestDbusP2p(TestDbus):
  2605. def __init__(self, bus):
  2606. TestDbus.__init__(self, bus)
  2607. self.done = False
  2608. def __enter__(self):
  2609. gobject.timeout_add(1, self.run_test)
  2610. gobject.timeout_add(15000, self.timeout)
  2611. self.add_signal(self.deviceFound, WPAS_DBUS_IFACE_P2PDEVICE,
  2612. "DeviceFound")
  2613. self.add_signal(self.serviceDiscoveryResponse,
  2614. WPAS_DBUS_IFACE_P2PDEVICE,
  2615. "ServiceDiscoveryResponse", byte_arrays=True)
  2616. self.loop.run()
  2617. return self
  2618. def deviceFound(self, path):
  2619. logger.debug("deviceFound: path=%s" % path)
  2620. args = { 'peer_object': path,
  2621. 'tlv': dbus.ByteArray("\x02\x00\x00\x01") }
  2622. p2p.ServiceDiscoveryRequest(args)
  2623. def serviceDiscoveryResponse(self, sd_request):
  2624. logger.debug("serviceDiscoveryResponse: sd_request=%s" % str(sd_request))
  2625. self.done = True
  2626. self.loop.quit()
  2627. def run_test(self, *args):
  2628. logger.debug("run_test")
  2629. p2p.Find(dbus.Dictionary({'DiscoveryType': 'social',
  2630. 'Timeout': dbus.Int32(10)}))
  2631. return False
  2632. def success(self):
  2633. return self.done
  2634. with TestDbusP2p(bus) as t:
  2635. if not t.success():
  2636. raise Exception("Expected signals not seen")
  2637. dev[1].p2p_stop_find()
  2638. def test_dbus_p2p_service_discovery_external(dev, apdev):
  2639. """D-Bus P2P service discovery with external response"""
  2640. try:
  2641. _test_dbus_p2p_service_discovery_external(dev, apdev)
  2642. finally:
  2643. dev[0].request("P2P_SERV_DISC_EXTERNAL 0")
  2644. def _test_dbus_p2p_service_discovery_external(dev, apdev):
  2645. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  2646. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  2647. addr0 = dev[0].p2p_dev_addr()
  2648. addr1 = dev[1].p2p_dev_addr()
  2649. resp = "0300000101"
  2650. dev[1].request("P2P_FLUSH")
  2651. dev[1].request("P2P_SERV_DISC_REQ " + addr0 + " 02000001")
  2652. dev[1].p2p_find(social=True)
  2653. class TestDbusP2p(TestDbus):
  2654. def __init__(self, bus):
  2655. TestDbus.__init__(self, bus)
  2656. self.sd = False
  2657. def __enter__(self):
  2658. gobject.timeout_add(1, self.run_test)
  2659. gobject.timeout_add(15000, self.timeout)
  2660. self.add_signal(self.deviceFound, WPAS_DBUS_IFACE_P2PDEVICE,
  2661. "DeviceFound")
  2662. self.add_signal(self.serviceDiscoveryRequest,
  2663. WPAS_DBUS_IFACE_P2PDEVICE,
  2664. "ServiceDiscoveryRequest")
  2665. self.loop.run()
  2666. return self
  2667. def deviceFound(self, path):
  2668. logger.debug("deviceFound: path=%s" % path)
  2669. def serviceDiscoveryRequest(self, sd_request):
  2670. logger.debug("serviceDiscoveryRequest: sd_request=%s" % str(sd_request))
  2671. self.sd = True
  2672. args = { 'peer_object': sd_request['peer_object'],
  2673. 'frequency': sd_request['frequency'],
  2674. 'dialog_token': sd_request['dialog_token'],
  2675. 'tlvs': dbus.ByteArray(binascii.unhexlify(resp)) }
  2676. p2p.ServiceDiscoveryResponse(dbus.Dictionary(args, signature='sv'))
  2677. self.loop.quit()
  2678. def run_test(self, *args):
  2679. logger.debug("run_test")
  2680. p2p.ServiceDiscoveryExternal(1)
  2681. p2p.ServiceUpdate()
  2682. p2p.Listen(15)
  2683. return False
  2684. def success(self):
  2685. return self.sd
  2686. with TestDbusP2p(bus) as t:
  2687. if not t.success():
  2688. raise Exception("Expected signals not seen")
  2689. ev = dev[1].wait_global_event(["P2P-SERV-DISC-RESP"], timeout=5)
  2690. if ev is None:
  2691. raise Exception("Service discovery timed out")
  2692. if addr0 not in ev:
  2693. raise Exception("Unexpected address in SD Response: " + ev)
  2694. if ev.split(' ')[4] != resp:
  2695. raise Exception("Unexpected response data SD Response: " + ev)
  2696. dev[1].p2p_stop_find()
  2697. p2p.StopFind()
  2698. p2p.ServiceDiscoveryExternal(0)
  2699. def test_dbus_p2p_autogo(dev, apdev):
  2700. """D-Bus P2P autonomous GO"""
  2701. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  2702. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  2703. addr0 = dev[0].p2p_dev_addr()
  2704. class TestDbusP2p(TestDbus):
  2705. def __init__(self, bus):
  2706. TestDbus.__init__(self, bus)
  2707. self.first = True
  2708. self.waiting_end = False
  2709. self.exceptions = False
  2710. self.deauthorized = False
  2711. self.done = False
  2712. def __enter__(self):
  2713. gobject.timeout_add(1, self.run_test)
  2714. gobject.timeout_add(15000, self.timeout)
  2715. self.add_signal(self.deviceFound, WPAS_DBUS_IFACE_P2PDEVICE,
  2716. "DeviceFound")
  2717. self.add_signal(self.groupStarted, WPAS_DBUS_IFACE_P2PDEVICE,
  2718. "GroupStarted")
  2719. self.add_signal(self.groupFinished, WPAS_DBUS_IFACE_P2PDEVICE,
  2720. "GroupFinished")
  2721. self.add_signal(self.persistentGroupAdded,
  2722. WPAS_DBUS_IFACE_P2PDEVICE,
  2723. "PersistentGroupAdded")
  2724. self.add_signal(self.persistentGroupRemoved,
  2725. WPAS_DBUS_IFACE_P2PDEVICE,
  2726. "PersistentGroupRemoved")
  2727. self.add_signal(self.provisionDiscoveryRequestDisplayPin,
  2728. WPAS_DBUS_IFACE_P2PDEVICE,
  2729. "ProvisionDiscoveryRequestDisplayPin")
  2730. self.add_signal(self.staAuthorized, WPAS_DBUS_IFACE,
  2731. "StaAuthorized")
  2732. self.add_signal(self.staDeauthorized, WPAS_DBUS_IFACE,
  2733. "StaDeauthorized")
  2734. self.loop.run()
  2735. return self
  2736. def groupStarted(self, properties):
  2737. logger.debug("groupStarted: " + str(properties))
  2738. self.group = properties['group_object']
  2739. self.g_if_obj = bus.get_object(WPAS_DBUS_SERVICE,
  2740. properties['interface_object'])
  2741. role = self.g_if_obj.Get(WPAS_DBUS_IFACE_P2PDEVICE, "Role",
  2742. dbus_interface=dbus.PROPERTIES_IFACE)
  2743. if role != "GO":
  2744. self.exceptions = True
  2745. raise Exception("Unexpected role reported: " + role)
  2746. group = self.g_if_obj.Get(WPAS_DBUS_IFACE_P2PDEVICE, "Group",
  2747. dbus_interface=dbus.PROPERTIES_IFACE)
  2748. if group != properties['group_object']:
  2749. self.exceptions = True
  2750. raise Exception("Unexpected Group reported: " + str(group))
  2751. go = self.g_if_obj.Get(WPAS_DBUS_IFACE_P2PDEVICE, "PeerGO",
  2752. dbus_interface=dbus.PROPERTIES_IFACE)
  2753. if go != '/':
  2754. self.exceptions = True
  2755. raise Exception("Unexpected PeerGO value: " + str(go))
  2756. if self.first:
  2757. self.first = False
  2758. logger.info("Remove persistent group instance")
  2759. group_p2p = dbus.Interface(self.g_if_obj,
  2760. WPAS_DBUS_IFACE_P2PDEVICE)
  2761. group_p2p.Disconnect()
  2762. else:
  2763. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  2764. dev1.global_request("P2P_CONNECT " + addr0 + " 12345670 join")
  2765. def groupFinished(self, properties):
  2766. logger.debug("groupFinished: " + str(properties))
  2767. if self.waiting_end:
  2768. logger.info("Remove persistent group")
  2769. p2p.RemovePersistentGroup(self.persistent)
  2770. else:
  2771. logger.info("Re-start persistent group")
  2772. params = dbus.Dictionary({'persistent_group_object':
  2773. self.persistent,
  2774. 'frequency': 2412})
  2775. p2p.GroupAdd(params)
  2776. def persistentGroupAdded(self, path, properties):
  2777. logger.debug("persistentGroupAdded: %s %s" % (path, str(properties)))
  2778. self.persistent = path
  2779. def persistentGroupRemoved(self, path):
  2780. logger.debug("persistentGroupRemoved: %s" % path)
  2781. self.done = True
  2782. self.loop.quit()
  2783. def deviceFound(self, path):
  2784. logger.debug("deviceFound: path=%s" % path)
  2785. peer_obj = bus.get_object(WPAS_DBUS_SERVICE, path)
  2786. self.peer = peer_obj.GetAll(WPAS_DBUS_P2P_PEER,
  2787. dbus_interface=dbus.PROPERTIES_IFACE,
  2788. byte_arrays=True)
  2789. logger.debug('peer properties: ' + str(self.peer))
  2790. def provisionDiscoveryRequestDisplayPin(self, peer_object, pin):
  2791. logger.debug("provisionDiscoveryRequestDisplayPin - peer=%s pin=%s" % (peer_object, pin))
  2792. self.peer_path = peer_object
  2793. peer = binascii.unhexlify(peer_object.split('/')[-1])
  2794. addr = ""
  2795. for p in peer:
  2796. if len(addr) > 0:
  2797. addr += ':'
  2798. addr += '%02x' % ord(p)
  2799. params = { 'Role': 'registrar',
  2800. 'P2PDeviceAddress': self.peer['DeviceAddress'],
  2801. 'Bssid': self.peer['DeviceAddress'],
  2802. 'Type': 'pin' }
  2803. wps = dbus.Interface(self.g_if_obj, WPAS_DBUS_IFACE_WPS)
  2804. try:
  2805. wps.Start(params)
  2806. self.exceptions = True
  2807. raise Exception("Invalid WPS.Start() accepted")
  2808. except dbus.exceptions.DBusException, e:
  2809. if "InvalidArgs" not in str(e):
  2810. self.exceptions = True
  2811. raise Exception("Unexpected error message: " + str(e))
  2812. params = { 'Role': 'registrar',
  2813. 'P2PDeviceAddress': self.peer['DeviceAddress'],
  2814. 'Type': 'pin',
  2815. 'Pin': '12345670' }
  2816. logger.info("Authorize peer to connect to the group")
  2817. wps.Start(params)
  2818. def staAuthorized(self, name):
  2819. logger.debug("staAuthorized: " + name)
  2820. peer_obj = bus.get_object(WPAS_DBUS_SERVICE, self.peer_path)
  2821. res = peer_obj.GetAll(WPAS_DBUS_P2P_PEER,
  2822. dbus_interface=dbus.PROPERTIES_IFACE,
  2823. byte_arrays=True)
  2824. logger.debug("Peer properties: " + str(res))
  2825. if 'Groups' not in res or len(res['Groups']) != 1:
  2826. self.exceptions = True
  2827. raise Exception("Unexpected number of peer Groups entries")
  2828. if res['Groups'][0] != self.group:
  2829. self.exceptions = True
  2830. raise Exception("Unexpected peer Groups[0] value")
  2831. g_obj = bus.get_object(WPAS_DBUS_SERVICE, self.group)
  2832. res = g_obj.GetAll(WPAS_DBUS_GROUP,
  2833. dbus_interface=dbus.PROPERTIES_IFACE,
  2834. byte_arrays=True)
  2835. logger.debug("Group properties: " + str(res))
  2836. if 'Members' not in res or len(res['Members']) != 1:
  2837. self.exceptions = True
  2838. raise Exception("Unexpected number of group members")
  2839. ext = dbus.ByteArray("\x11\x22\x33\x44")
  2840. # Earlier implementation of this interface was a bit strange. The
  2841. # property is defined to have aay signature and that is what the
  2842. # getter returned. However, the setter expected there to be a
  2843. # dictionary with 'WPSVendorExtensions' as the key surrounding these
  2844. # values.. The current implementations maintains support for that
  2845. # for backwards compability reasons. Verify that encoding first.
  2846. vals = dbus.Dictionary({ 'WPSVendorExtensions': [ ext ]},
  2847. signature='sv')
  2848. g_obj.Set(WPAS_DBUS_GROUP, 'WPSVendorExtensions', vals,
  2849. dbus_interface=dbus.PROPERTIES_IFACE)
  2850. res = g_obj.Get(WPAS_DBUS_GROUP, 'WPSVendorExtensions',
  2851. dbus_interface=dbus.PROPERTIES_IFACE,
  2852. byte_arrays=True)
  2853. if len(res) != 1:
  2854. self.exceptions = True
  2855. raise Exception("Unexpected number of vendor extensions")
  2856. if res[0] != ext:
  2857. self.exceptions = True
  2858. raise Exception("Vendor extension value changed")
  2859. # And now verify that the more appropriate encoding is accepted as
  2860. # well.
  2861. res.append(dbus.ByteArray('\xaa\xbb\xcc\xdd\xee\xff'))
  2862. g_obj.Set(WPAS_DBUS_GROUP, 'WPSVendorExtensions', res,
  2863. dbus_interface=dbus.PROPERTIES_IFACE)
  2864. res2 = g_obj.Get(WPAS_DBUS_GROUP, 'WPSVendorExtensions',
  2865. dbus_interface=dbus.PROPERTIES_IFACE,
  2866. byte_arrays=True)
  2867. if len(res) != 2:
  2868. self.exceptions = True
  2869. raise Exception("Unexpected number of vendor extensions")
  2870. if res[0] != res2[0] or res[1] != res2[1]:
  2871. self.exceptions = True
  2872. raise Exception("Vendor extension value changed")
  2873. for i in range(10):
  2874. res.append(dbus.ByteArray('\xaa\xbb'))
  2875. try:
  2876. g_obj.Set(WPAS_DBUS_GROUP, 'WPSVendorExtensions', res,
  2877. dbus_interface=dbus.PROPERTIES_IFACE)
  2878. self.exceptions = True
  2879. raise Exception("Invalid Set(WPSVendorExtensions) accepted")
  2880. except dbus.exceptions.DBusException, e:
  2881. if "Error.Failed" not in str(e):
  2882. self.exceptions = True
  2883. raise Exception("Unexpected error message for invalid Set(WPSVendorExtensions): " + str(e))
  2884. vals = dbus.Dictionary({ 'Foo': [ ext ]}, signature='sv')
  2885. try:
  2886. g_obj.Set(WPAS_DBUS_GROUP, 'WPSVendorExtensions', vals,
  2887. dbus_interface=dbus.PROPERTIES_IFACE)
  2888. self.exceptions = True
  2889. raise Exception("Invalid Set(WPSVendorExtensions) accepted")
  2890. except dbus.exceptions.DBusException, e:
  2891. if "InvalidArgs" not in str(e):
  2892. self.exceptions = True
  2893. raise Exception("Unexpected error message for invalid Set(WPSVendorExtensions): " + str(e))
  2894. vals = [ "foo" ]
  2895. try:
  2896. g_obj.Set(WPAS_DBUS_GROUP, 'WPSVendorExtensions', vals,
  2897. dbus_interface=dbus.PROPERTIES_IFACE)
  2898. self.exceptions = True
  2899. raise Exception("Invalid Set(WPSVendorExtensions) accepted")
  2900. except dbus.exceptions.DBusException, e:
  2901. if "Error.Failed" not in str(e):
  2902. self.exceptions = True
  2903. raise Exception("Unexpected error message for invalid Set(WPSVendorExtensions): " + str(e))
  2904. vals = [ [ "foo" ] ]
  2905. try:
  2906. g_obj.Set(WPAS_DBUS_GROUP, 'WPSVendorExtensions', vals,
  2907. dbus_interface=dbus.PROPERTIES_IFACE)
  2908. self.exceptions = True
  2909. raise Exception("Invalid Set(WPSVendorExtensions) accepted")
  2910. except dbus.exceptions.DBusException, e:
  2911. if "Error.Failed" not in str(e):
  2912. self.exceptions = True
  2913. raise Exception("Unexpected error message for invalid Set(WPSVendorExtensions): " + str(e))
  2914. p2p.RemoveClient({ 'peer': self.peer_path })
  2915. self.waiting_end = True
  2916. group_p2p = dbus.Interface(self.g_if_obj,
  2917. WPAS_DBUS_IFACE_P2PDEVICE)
  2918. group_p2p.Disconnect()
  2919. def staDeauthorized(self, name):
  2920. logger.debug("staDeauthorized: " + name)
  2921. self.deauthorized = True
  2922. def run_test(self, *args):
  2923. logger.debug("run_test")
  2924. params = dbus.Dictionary({'persistent': True,
  2925. 'frequency': 2412})
  2926. logger.info("Add a persistent group")
  2927. p2p.GroupAdd(params)
  2928. return False
  2929. def success(self):
  2930. return self.done and self.deauthorized and not self.exceptions
  2931. with TestDbusP2p(bus) as t:
  2932. if not t.success():
  2933. raise Exception("Expected signals not seen")
  2934. dev[1].wait_go_ending_session()
  2935. def test_dbus_p2p_autogo_pbc(dev, apdev):
  2936. """D-Bus P2P autonomous GO and PBC"""
  2937. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  2938. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  2939. addr0 = dev[0].p2p_dev_addr()
  2940. class TestDbusP2p(TestDbus):
  2941. def __init__(self, bus):
  2942. TestDbus.__init__(self, bus)
  2943. self.first = True
  2944. self.waiting_end = False
  2945. self.done = False
  2946. def __enter__(self):
  2947. gobject.timeout_add(1, self.run_test)
  2948. gobject.timeout_add(15000, self.timeout)
  2949. self.add_signal(self.deviceFound, WPAS_DBUS_IFACE_P2PDEVICE,
  2950. "DeviceFound")
  2951. self.add_signal(self.groupStarted, WPAS_DBUS_IFACE_P2PDEVICE,
  2952. "GroupStarted")
  2953. self.add_signal(self.groupFinished, WPAS_DBUS_IFACE_P2PDEVICE,
  2954. "GroupFinished")
  2955. self.add_signal(self.provisionDiscoveryPBCRequest,
  2956. WPAS_DBUS_IFACE_P2PDEVICE,
  2957. "ProvisionDiscoveryPBCRequest")
  2958. self.add_signal(self.staAuthorized, WPAS_DBUS_IFACE,
  2959. "StaAuthorized")
  2960. self.loop.run()
  2961. return self
  2962. def groupStarted(self, properties):
  2963. logger.debug("groupStarted: " + str(properties))
  2964. self.group = properties['group_object']
  2965. self.g_if_obj = bus.get_object(WPAS_DBUS_SERVICE,
  2966. properties['interface_object'])
  2967. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  2968. dev1.global_request("P2P_CONNECT " + addr0 + " pbc join")
  2969. def groupFinished(self, properties):
  2970. logger.debug("groupFinished: " + str(properties))
  2971. self.done = True
  2972. self.loop.quit()
  2973. def deviceFound(self, path):
  2974. logger.debug("deviceFound: path=%s" % path)
  2975. peer_obj = bus.get_object(WPAS_DBUS_SERVICE, path)
  2976. self.peer = peer_obj.GetAll(WPAS_DBUS_P2P_PEER,
  2977. dbus_interface=dbus.PROPERTIES_IFACE,
  2978. byte_arrays=True)
  2979. logger.debug('peer properties: ' + str(self.peer))
  2980. def provisionDiscoveryPBCRequest(self, peer_object):
  2981. logger.debug("provisionDiscoveryPBCRequest - peer=%s" % peer_object)
  2982. self.peer_path = peer_object
  2983. peer = binascii.unhexlify(peer_object.split('/')[-1])
  2984. addr = ""
  2985. for p in peer:
  2986. if len(addr) > 0:
  2987. addr += ':'
  2988. addr += '%02x' % ord(p)
  2989. params = { 'Role': 'registrar',
  2990. 'P2PDeviceAddress': self.peer['DeviceAddress'],
  2991. 'Type': 'pbc' }
  2992. logger.info("Authorize peer to connect to the group")
  2993. wps = dbus.Interface(self.g_if_obj, WPAS_DBUS_IFACE_WPS)
  2994. wps.Start(params)
  2995. def staAuthorized(self, name):
  2996. logger.debug("staAuthorized: " + name)
  2997. group_p2p = dbus.Interface(self.g_if_obj,
  2998. WPAS_DBUS_IFACE_P2PDEVICE)
  2999. group_p2p.Disconnect()
  3000. def run_test(self, *args):
  3001. logger.debug("run_test")
  3002. params = dbus.Dictionary({'frequency': 2412})
  3003. p2p.GroupAdd(params)
  3004. return False
  3005. def success(self):
  3006. return self.done
  3007. with TestDbusP2p(bus) as t:
  3008. if not t.success():
  3009. raise Exception("Expected signals not seen")
  3010. dev[1].wait_go_ending_session()
  3011. dev[1].flush_scan_cache()
  3012. def test_dbus_p2p_autogo_legacy(dev, apdev):
  3013. """D-Bus P2P autonomous GO and legacy STA"""
  3014. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  3015. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3016. addr0 = dev[0].p2p_dev_addr()
  3017. class TestDbusP2p(TestDbus):
  3018. def __init__(self, bus):
  3019. TestDbus.__init__(self, bus)
  3020. self.done = False
  3021. def __enter__(self):
  3022. gobject.timeout_add(1, self.run_test)
  3023. gobject.timeout_add(15000, self.timeout)
  3024. self.add_signal(self.groupStarted, WPAS_DBUS_IFACE_P2PDEVICE,
  3025. "GroupStarted")
  3026. self.add_signal(self.groupFinished, WPAS_DBUS_IFACE_P2PDEVICE,
  3027. "GroupFinished")
  3028. self.add_signal(self.staAuthorized, WPAS_DBUS_IFACE,
  3029. "StaAuthorized")
  3030. self.loop.run()
  3031. return self
  3032. def groupStarted(self, properties):
  3033. logger.debug("groupStarted: " + str(properties))
  3034. g_obj = bus.get_object(WPAS_DBUS_SERVICE,
  3035. properties['group_object'])
  3036. res = g_obj.GetAll(WPAS_DBUS_GROUP,
  3037. dbus_interface=dbus.PROPERTIES_IFACE,
  3038. byte_arrays=True)
  3039. bssid = ':'.join([binascii.hexlify(l) for l in res['BSSID']])
  3040. pin = '12345670'
  3041. params = { 'Role': 'enrollee',
  3042. 'Type': 'pin',
  3043. 'Pin': pin }
  3044. g_if_obj = bus.get_object(WPAS_DBUS_SERVICE,
  3045. properties['interface_object'])
  3046. wps = dbus.Interface(g_if_obj, WPAS_DBUS_IFACE_WPS)
  3047. wps.Start(params)
  3048. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3049. dev1.scan_for_bss(bssid, freq=2412)
  3050. dev1.request("WPS_PIN " + bssid + " " + pin)
  3051. self.group_p2p = dbus.Interface(g_if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3052. def groupFinished(self, properties):
  3053. logger.debug("groupFinished: " + str(properties))
  3054. self.done = True
  3055. self.loop.quit()
  3056. def staAuthorized(self, name):
  3057. logger.debug("staAuthorized: " + name)
  3058. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3059. dev1.request("DISCONNECT")
  3060. self.group_p2p.Disconnect()
  3061. def run_test(self, *args):
  3062. logger.debug("run_test")
  3063. params = dbus.Dictionary({'frequency': 2412})
  3064. p2p.GroupAdd(params)
  3065. return False
  3066. def success(self):
  3067. return self.done
  3068. with TestDbusP2p(bus) as t:
  3069. if not t.success():
  3070. raise Exception("Expected signals not seen")
  3071. def test_dbus_p2p_join(dev, apdev):
  3072. """D-Bus P2P join an autonomous GO"""
  3073. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  3074. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3075. addr1 = dev[1].p2p_dev_addr()
  3076. addr2 = dev[2].p2p_dev_addr()
  3077. dev[1].p2p_start_go(freq=2412)
  3078. dev1_group_ifname = dev[1].group_ifname
  3079. dev[2].p2p_listen()
  3080. class TestDbusP2p(TestDbus):
  3081. def __init__(self, bus):
  3082. TestDbus.__init__(self, bus)
  3083. self.done = False
  3084. self.peer = None
  3085. self.go = None
  3086. def __enter__(self):
  3087. gobject.timeout_add(1, self.run_test)
  3088. gobject.timeout_add(15000, self.timeout)
  3089. self.add_signal(self.deviceFound, WPAS_DBUS_IFACE_P2PDEVICE,
  3090. "DeviceFound")
  3091. self.add_signal(self.groupStarted, WPAS_DBUS_IFACE_P2PDEVICE,
  3092. "GroupStarted")
  3093. self.add_signal(self.groupFinished, WPAS_DBUS_IFACE_P2PDEVICE,
  3094. "GroupFinished")
  3095. self.add_signal(self.invitationResult, WPAS_DBUS_IFACE_P2PDEVICE,
  3096. "InvitationResult")
  3097. self.loop.run()
  3098. return self
  3099. def deviceFound(self, path):
  3100. logger.debug("deviceFound: path=%s" % path)
  3101. peer_obj = bus.get_object(WPAS_DBUS_SERVICE, path)
  3102. res = peer_obj.GetAll(WPAS_DBUS_P2P_PEER,
  3103. dbus_interface=dbus.PROPERTIES_IFACE,
  3104. byte_arrays=True)
  3105. logger.debug('peer properties: ' + str(res))
  3106. if addr2.replace(':','') in path:
  3107. self.peer = path
  3108. elif addr1.replace(':','') in path:
  3109. self.go = path
  3110. if self.peer and self.go:
  3111. logger.info("Join the group")
  3112. p2p.StopFind()
  3113. args = { 'peer': self.go,
  3114. 'join': True,
  3115. 'wps_method': 'pin',
  3116. 'frequency': 2412 }
  3117. pin = p2p.Connect(args)
  3118. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3119. dev1.group_ifname = dev1_group_ifname
  3120. dev1.group_request("WPS_PIN any " + pin)
  3121. def groupStarted(self, properties):
  3122. logger.debug("groupStarted: " + str(properties))
  3123. g_if_obj = bus.get_object(WPAS_DBUS_SERVICE,
  3124. properties['interface_object'])
  3125. role = g_if_obj.Get(WPAS_DBUS_IFACE_P2PDEVICE, "Role",
  3126. dbus_interface=dbus.PROPERTIES_IFACE)
  3127. if role != "client":
  3128. raise Exception("Unexpected role reported: " + role)
  3129. group = g_if_obj.Get(WPAS_DBUS_IFACE_P2PDEVICE, "Group",
  3130. dbus_interface=dbus.PROPERTIES_IFACE)
  3131. if group != properties['group_object']:
  3132. raise Exception("Unexpected Group reported: " + str(group))
  3133. go = g_if_obj.Get(WPAS_DBUS_IFACE_P2PDEVICE, "PeerGO",
  3134. dbus_interface=dbus.PROPERTIES_IFACE)
  3135. if go != self.go:
  3136. raise Exception("Unexpected PeerGO value: " + str(go))
  3137. g_obj = bus.get_object(WPAS_DBUS_SERVICE,
  3138. properties['group_object'])
  3139. res = g_obj.GetAll(WPAS_DBUS_GROUP,
  3140. dbus_interface=dbus.PROPERTIES_IFACE,
  3141. byte_arrays=True)
  3142. logger.debug("Group properties: " + str(res))
  3143. ext = dbus.ByteArray("\x11\x22\x33\x44")
  3144. try:
  3145. # Set(WPSVendorExtensions) not allowed for P2P Client
  3146. g_obj.Set(WPAS_DBUS_GROUP, 'WPSVendorExtensions', res,
  3147. dbus_interface=dbus.PROPERTIES_IFACE)
  3148. raise Exception("Invalid Set(WPSVendorExtensions) accepted")
  3149. except dbus.exceptions.DBusException, e:
  3150. if "Error.Failed: Failed to set property" not in str(e):
  3151. raise Exception("Unexpected error message for invalid Set(WPSVendorExtensions): " + str(e))
  3152. group_p2p = dbus.Interface(g_if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3153. args = { 'duration1': 30000, 'interval1': 102400,
  3154. 'duration2': 20000, 'interval2': 102400 }
  3155. group_p2p.PresenceRequest(args)
  3156. args = { 'peer': self.peer }
  3157. group_p2p.Invite(args)
  3158. def groupFinished(self, properties):
  3159. logger.debug("groupFinished: " + str(properties))
  3160. self.done = True
  3161. self.loop.quit()
  3162. def invitationResult(self, result):
  3163. logger.debug("invitationResult: " + str(result))
  3164. if result['status'] != 1:
  3165. raise Exception("Unexpected invitation result: " + str(result))
  3166. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3167. dev1.group_ifname = dev1_group_ifname
  3168. dev1.remove_group()
  3169. def run_test(self, *args):
  3170. logger.debug("run_test")
  3171. p2p.Find(dbus.Dictionary({'DiscoveryType': 'social'}))
  3172. return False
  3173. def success(self):
  3174. return self.done
  3175. with TestDbusP2p(bus) as t:
  3176. if not t.success():
  3177. raise Exception("Expected signals not seen")
  3178. dev[2].p2p_stop_find()
  3179. def test_dbus_p2p_invitation_received(dev, apdev):
  3180. """D-Bus P2P and InvitationReceived"""
  3181. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  3182. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3183. form(dev[0], dev[1])
  3184. addr0 = dev[0].p2p_dev_addr()
  3185. dev[0].p2p_listen()
  3186. dev[0].global_request("SET persistent_reconnect 0")
  3187. if not dev[1].discover_peer(addr0, social=True):
  3188. raise Exception("Peer " + addr0 + " not found")
  3189. peer = dev[1].get_peer(addr0)
  3190. class TestDbusP2p(TestDbus):
  3191. def __init__(self, bus):
  3192. TestDbus.__init__(self, bus)
  3193. self.done = False
  3194. def __enter__(self):
  3195. gobject.timeout_add(1, self.run_test)
  3196. gobject.timeout_add(15000, self.timeout)
  3197. self.add_signal(self.invitationReceived, WPAS_DBUS_IFACE_P2PDEVICE,
  3198. "InvitationReceived")
  3199. self.loop.run()
  3200. return self
  3201. def invitationReceived(self, result):
  3202. logger.debug("invitationReceived: " + str(result))
  3203. self.done = True
  3204. self.loop.quit()
  3205. def run_test(self, *args):
  3206. logger.debug("run_test")
  3207. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3208. cmd = "P2P_INVITE persistent=" + peer['persistent'] + " peer=" + addr0
  3209. dev1.global_request(cmd)
  3210. return False
  3211. def success(self):
  3212. return self.done
  3213. with TestDbusP2p(bus) as t:
  3214. if not t.success():
  3215. raise Exception("Expected signals not seen")
  3216. dev[0].p2p_stop_find()
  3217. dev[1].p2p_stop_find()
  3218. def test_dbus_p2p_config(dev, apdev):
  3219. """D-Bus Get/Set P2PDeviceConfig"""
  3220. try:
  3221. _test_dbus_p2p_config(dev, apdev)
  3222. finally:
  3223. dev[0].request("P2P_SET ssid_postfix ")
  3224. def _test_dbus_p2p_config(dev, apdev):
  3225. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  3226. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3227. res = if_obj.Get(WPAS_DBUS_IFACE_P2PDEVICE, "P2PDeviceConfig",
  3228. dbus_interface=dbus.PROPERTIES_IFACE,
  3229. byte_arrays=True)
  3230. if_obj.Set(WPAS_DBUS_IFACE_P2PDEVICE, "P2PDeviceConfig", res,
  3231. dbus_interface=dbus.PROPERTIES_IFACE)
  3232. res2 = if_obj.Get(WPAS_DBUS_IFACE_P2PDEVICE, "P2PDeviceConfig",
  3233. dbus_interface=dbus.PROPERTIES_IFACE,
  3234. byte_arrays=True)
  3235. if len(res) != len(res2):
  3236. raise Exception("Different number of parameters")
  3237. for k in res:
  3238. if res[k] != res2[k]:
  3239. raise Exception("Parameter %s value changes" % k)
  3240. changes = { 'SsidPostfix': 'foo',
  3241. 'VendorExtension': [ dbus.ByteArray('\x11\x22\x33\x44') ],
  3242. 'SecondaryDeviceTypes': [ dbus.ByteArray('\x11\x22\x33\x44\x55\x66\x77\x88') ]}
  3243. if_obj.Set(WPAS_DBUS_IFACE_P2PDEVICE, "P2PDeviceConfig",
  3244. dbus.Dictionary(changes, signature='sv'),
  3245. dbus_interface=dbus.PROPERTIES_IFACE)
  3246. res2 = if_obj.Get(WPAS_DBUS_IFACE_P2PDEVICE, "P2PDeviceConfig",
  3247. dbus_interface=dbus.PROPERTIES_IFACE,
  3248. byte_arrays=True)
  3249. logger.debug("P2PDeviceConfig: " + str(res2))
  3250. if 'VendorExtension' not in res2 or len(res2['VendorExtension']) != 1:
  3251. raise Exception("VendorExtension does not match")
  3252. if 'SecondaryDeviceTypes' not in res2 or len(res2['SecondaryDeviceTypes']) != 1:
  3253. raise Exception("SecondaryDeviceType does not match")
  3254. changes = { 'SsidPostfix': '',
  3255. 'VendorExtension': dbus.Array([], signature="ay"),
  3256. 'SecondaryDeviceTypes': dbus.Array([], signature="ay") }
  3257. if_obj.Set(WPAS_DBUS_IFACE_P2PDEVICE, "P2PDeviceConfig",
  3258. dbus.Dictionary(changes, signature='sv'),
  3259. dbus_interface=dbus.PROPERTIES_IFACE)
  3260. res3 = if_obj.Get(WPAS_DBUS_IFACE_P2PDEVICE, "P2PDeviceConfig",
  3261. dbus_interface=dbus.PROPERTIES_IFACE,
  3262. byte_arrays=True)
  3263. logger.debug("P2PDeviceConfig: " + str(res3))
  3264. if 'VendorExtension' in res3:
  3265. raise Exception("VendorExtension not removed")
  3266. if 'SecondaryDeviceTypes' in res3:
  3267. raise Exception("SecondaryDeviceType not removed")
  3268. try:
  3269. dev[0].request("P2P_SET disabled 1")
  3270. if_obj.Get(WPAS_DBUS_IFACE_P2PDEVICE, "P2PDeviceConfig",
  3271. dbus_interface=dbus.PROPERTIES_IFACE,
  3272. byte_arrays=True)
  3273. raise Exception("Invalid Get(P2PDeviceConfig) accepted")
  3274. except dbus.exceptions.DBusException, e:
  3275. if "Error.Failed: P2P is not available for this interface" not in str(e):
  3276. raise Exception("Unexpected error message for invalid Invite: " + str(e))
  3277. finally:
  3278. dev[0].request("P2P_SET disabled 0")
  3279. try:
  3280. dev[0].request("P2P_SET disabled 1")
  3281. changes = { 'SsidPostfix': 'foo' }
  3282. if_obj.Set(WPAS_DBUS_IFACE_P2PDEVICE, "P2PDeviceConfig",
  3283. dbus.Dictionary(changes, signature='sv'),
  3284. dbus_interface=dbus.PROPERTIES_IFACE)
  3285. raise Exception("Invalid Set(P2PDeviceConfig) accepted")
  3286. except dbus.exceptions.DBusException, e:
  3287. if "Error.Failed: P2P is not available for this interface" not in str(e):
  3288. raise Exception("Unexpected error message for invalid Invite: " + str(e))
  3289. finally:
  3290. dev[0].request("P2P_SET disabled 0")
  3291. tests = [ { 'DeviceName': 123 },
  3292. { 'SsidPostfix': 123 },
  3293. { 'Foo': 'Bar' } ]
  3294. for changes in tests:
  3295. try:
  3296. if_obj.Set(WPAS_DBUS_IFACE_P2PDEVICE, "P2PDeviceConfig",
  3297. dbus.Dictionary(changes, signature='sv'),
  3298. dbus_interface=dbus.PROPERTIES_IFACE)
  3299. raise Exception("Invalid Set(P2PDeviceConfig) accepted")
  3300. except dbus.exceptions.DBusException, e:
  3301. if "InvalidArgs" not in str(e):
  3302. raise Exception("Unexpected error message for invalid Invite: " + str(e))
  3303. def test_dbus_p2p_persistent(dev, apdev):
  3304. """D-Bus P2P persistent group"""
  3305. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  3306. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3307. class TestDbusP2p(TestDbus):
  3308. def __init__(self, bus):
  3309. TestDbus.__init__(self, bus)
  3310. def __enter__(self):
  3311. gobject.timeout_add(1, self.run_test)
  3312. gobject.timeout_add(15000, self.timeout)
  3313. self.add_signal(self.groupStarted, WPAS_DBUS_IFACE_P2PDEVICE,
  3314. "GroupStarted")
  3315. self.add_signal(self.groupFinished, WPAS_DBUS_IFACE_P2PDEVICE,
  3316. "GroupFinished")
  3317. self.add_signal(self.persistentGroupAdded,
  3318. WPAS_DBUS_IFACE_P2PDEVICE,
  3319. "PersistentGroupAdded")
  3320. self.loop.run()
  3321. return self
  3322. def groupStarted(self, properties):
  3323. logger.debug("groupStarted: " + str(properties))
  3324. g_if_obj = bus.get_object(WPAS_DBUS_SERVICE,
  3325. properties['interface_object'])
  3326. group_p2p = dbus.Interface(g_if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3327. group_p2p.Disconnect()
  3328. def groupFinished(self, properties):
  3329. logger.debug("groupFinished: " + str(properties))
  3330. self.loop.quit()
  3331. def persistentGroupAdded(self, path, properties):
  3332. logger.debug("persistentGroupAdded: %s %s" % (path, str(properties)))
  3333. self.persistent = path
  3334. def run_test(self, *args):
  3335. logger.debug("run_test")
  3336. params = dbus.Dictionary({'persistent': True,
  3337. 'frequency': 2412})
  3338. logger.info("Add a persistent group")
  3339. p2p.GroupAdd(params)
  3340. return False
  3341. def success(self):
  3342. return True
  3343. with TestDbusP2p(bus) as t:
  3344. if not t.success():
  3345. raise Exception("Expected signals not seen")
  3346. persistent = t.persistent
  3347. p_obj = bus.get_object(WPAS_DBUS_SERVICE, persistent)
  3348. res = p_obj.Get(WPAS_DBUS_PERSISTENT_GROUP, "Properties",
  3349. dbus_interface=dbus.PROPERTIES_IFACE, byte_arrays=True)
  3350. logger.info("Persistent group Properties: " + str(res))
  3351. vals = dbus.Dictionary({ 'ssid': 'DIRECT-foo' }, signature='sv')
  3352. p_obj.Set(WPAS_DBUS_PERSISTENT_GROUP, "Properties", vals,
  3353. dbus_interface=dbus.PROPERTIES_IFACE)
  3354. res2 = p_obj.Get(WPAS_DBUS_PERSISTENT_GROUP, "Properties",
  3355. dbus_interface=dbus.PROPERTIES_IFACE)
  3356. if len(res) != len(res2):
  3357. raise Exception("Different number of parameters")
  3358. for k in res:
  3359. if k != 'ssid' and res[k] != res2[k]:
  3360. raise Exception("Parameter %s value changes" % k)
  3361. if res2['ssid'] != '"DIRECT-foo"':
  3362. raise Exception("Unexpected ssid")
  3363. args = dbus.Dictionary({ 'ssid': 'DIRECT-testing',
  3364. 'psk': '1234567890' }, signature='sv')
  3365. group = p2p.AddPersistentGroup(args)
  3366. groups = if_obj.Get(WPAS_DBUS_IFACE_P2PDEVICE, "PersistentGroups",
  3367. dbus_interface=dbus.PROPERTIES_IFACE)
  3368. if len(groups) != 2:
  3369. raise Exception("Unexpected number of persistent groups: " + str(groups))
  3370. p2p.RemoveAllPersistentGroups()
  3371. groups = if_obj.Get(WPAS_DBUS_IFACE_P2PDEVICE, "PersistentGroups",
  3372. dbus_interface=dbus.PROPERTIES_IFACE)
  3373. if len(groups) != 0:
  3374. raise Exception("Unexpected number of persistent groups: " + str(groups))
  3375. try:
  3376. p2p.RemovePersistentGroup(persistent)
  3377. raise Exception("Invalid RemovePersistentGroup accepted")
  3378. except dbus.exceptions.DBusException, e:
  3379. if "NetworkUnknown: There is no such persistent group" not in str(e):
  3380. raise Exception("Unexpected error message for invalid RemovePersistentGroup: " + str(e))
  3381. def test_dbus_p2p_reinvoke_persistent(dev, apdev):
  3382. """D-Bus P2P reinvoke persistent group"""
  3383. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  3384. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3385. addr0 = dev[0].p2p_dev_addr()
  3386. class TestDbusP2p(TestDbus):
  3387. def __init__(self, bus):
  3388. TestDbus.__init__(self, bus)
  3389. self.first = True
  3390. self.waiting_end = False
  3391. self.done = False
  3392. self.invited = False
  3393. def __enter__(self):
  3394. gobject.timeout_add(1, self.run_test)
  3395. gobject.timeout_add(15000, self.timeout)
  3396. self.add_signal(self.deviceFound, WPAS_DBUS_IFACE_P2PDEVICE,
  3397. "DeviceFound")
  3398. self.add_signal(self.groupStarted, WPAS_DBUS_IFACE_P2PDEVICE,
  3399. "GroupStarted")
  3400. self.add_signal(self.groupFinished, WPAS_DBUS_IFACE_P2PDEVICE,
  3401. "GroupFinished")
  3402. self.add_signal(self.persistentGroupAdded,
  3403. WPAS_DBUS_IFACE_P2PDEVICE,
  3404. "PersistentGroupAdded")
  3405. self.add_signal(self.provisionDiscoveryRequestDisplayPin,
  3406. WPAS_DBUS_IFACE_P2PDEVICE,
  3407. "ProvisionDiscoveryRequestDisplayPin")
  3408. self.add_signal(self.staAuthorized, WPAS_DBUS_IFACE,
  3409. "StaAuthorized")
  3410. self.loop.run()
  3411. return self
  3412. def groupStarted(self, properties):
  3413. logger.debug("groupStarted: " + str(properties))
  3414. self.g_if_obj = bus.get_object(WPAS_DBUS_SERVICE,
  3415. properties['interface_object'])
  3416. if not self.invited:
  3417. g_obj = bus.get_object(WPAS_DBUS_SERVICE,
  3418. properties['group_object'])
  3419. res = g_obj.GetAll(WPAS_DBUS_GROUP,
  3420. dbus_interface=dbus.PROPERTIES_IFACE,
  3421. byte_arrays=True)
  3422. bssid = ':'.join([binascii.hexlify(l) for l in res['BSSID']])
  3423. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3424. dev1.scan_for_bss(bssid, freq=2412)
  3425. dev1.global_request("P2P_CONNECT " + addr0 + " 12345670 join")
  3426. def groupFinished(self, properties):
  3427. logger.debug("groupFinished: " + str(properties))
  3428. if self.invited:
  3429. self.done = True
  3430. self.loop.quit()
  3431. else:
  3432. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3433. dev1.global_request("SET persistent_reconnect 1")
  3434. dev1.p2p_listen()
  3435. args = { 'persistent_group_object': dbus.ObjectPath(path),
  3436. 'peer': self.peer_path }
  3437. try:
  3438. pin = p2p.Invite(args)
  3439. raise Exception("Invalid Invite accepted")
  3440. except dbus.exceptions.DBusException, e:
  3441. if "InvalidArgs" not in str(e):
  3442. raise Exception("Unexpected error message for invalid Invite: " + str(e))
  3443. args = { 'persistent_group_object': self.persistent,
  3444. 'peer': self.peer_path }
  3445. pin = p2p.Invite(args)
  3446. self.invited = True
  3447. self.sta_group_ev = dev1.wait_global_event(["P2P-GROUP-STARTED"],
  3448. timeout=15)
  3449. if self.sta_group_ev is None:
  3450. raise Exception("P2P-GROUP-STARTED event not seen")
  3451. def persistentGroupAdded(self, path, properties):
  3452. logger.debug("persistentGroupAdded: %s %s" % (path, str(properties)))
  3453. self.persistent = path
  3454. def deviceFound(self, path):
  3455. logger.debug("deviceFound: path=%s" % path)
  3456. peer_obj = bus.get_object(WPAS_DBUS_SERVICE, path)
  3457. self.peer = peer_obj.GetAll(WPAS_DBUS_P2P_PEER,
  3458. dbus_interface=dbus.PROPERTIES_IFACE,
  3459. byte_arrays=True)
  3460. def provisionDiscoveryRequestDisplayPin(self, peer_object, pin):
  3461. logger.debug("provisionDiscoveryRequestDisplayPin - peer=%s pin=%s" % (peer_object, pin))
  3462. self.peer_path = peer_object
  3463. peer = binascii.unhexlify(peer_object.split('/')[-1])
  3464. addr = ""
  3465. for p in peer:
  3466. if len(addr) > 0:
  3467. addr += ':'
  3468. addr += '%02x' % ord(p)
  3469. params = { 'Role': 'registrar',
  3470. 'P2PDeviceAddress': self.peer['DeviceAddress'],
  3471. 'Bssid': self.peer['DeviceAddress'],
  3472. 'Type': 'pin',
  3473. 'Pin': '12345670' }
  3474. logger.info("Authorize peer to connect to the group")
  3475. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3476. wps = dbus.Interface(self.g_if_obj, WPAS_DBUS_IFACE_WPS)
  3477. wps.Start(params)
  3478. self.sta_group_ev = dev1.wait_global_event(["P2P-GROUP-STARTED"],
  3479. timeout=15)
  3480. if self.sta_group_ev is None:
  3481. raise Exception("P2P-GROUP-STARTED event not seen")
  3482. def staAuthorized(self, name):
  3483. logger.debug("staAuthorized: " + name)
  3484. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3485. dev1.group_form_result(self.sta_group_ev)
  3486. dev1.remove_group()
  3487. ev = dev1.wait_global_event(["P2P-GROUP-REMOVED"], timeout=10)
  3488. if ev is None:
  3489. raise Exception("Group removal timed out")
  3490. group_p2p = dbus.Interface(self.g_if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3491. group_p2p.Disconnect()
  3492. def run_test(self, *args):
  3493. logger.debug("run_test")
  3494. params = dbus.Dictionary({'persistent': True,
  3495. 'frequency': 2412})
  3496. logger.info("Add a persistent group")
  3497. p2p.GroupAdd(params)
  3498. return False
  3499. def success(self):
  3500. return self.done
  3501. with TestDbusP2p(bus) as t:
  3502. if not t.success():
  3503. raise Exception("Expected signals not seen")
  3504. def test_dbus_p2p_go_neg_rx(dev, apdev):
  3505. """D-Bus P2P GO Negotiation receive"""
  3506. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  3507. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3508. addr0 = dev[0].p2p_dev_addr()
  3509. class TestDbusP2p(TestDbus):
  3510. def __init__(self, bus):
  3511. TestDbus.__init__(self, bus)
  3512. self.done = False
  3513. def __enter__(self):
  3514. gobject.timeout_add(1, self.run_test)
  3515. gobject.timeout_add(15000, self.timeout)
  3516. self.add_signal(self.deviceFound, WPAS_DBUS_IFACE_P2PDEVICE,
  3517. "DeviceFound")
  3518. self.add_signal(self.goNegotiationRequest,
  3519. WPAS_DBUS_IFACE_P2PDEVICE,
  3520. "GONegotiationRequest",
  3521. byte_arrays=True)
  3522. self.add_signal(self.goNegotiationSuccess,
  3523. WPAS_DBUS_IFACE_P2PDEVICE,
  3524. "GONegotiationSuccess",
  3525. byte_arrays=True)
  3526. self.add_signal(self.groupStarted, WPAS_DBUS_IFACE_P2PDEVICE,
  3527. "GroupStarted")
  3528. self.add_signal(self.groupFinished, WPAS_DBUS_IFACE_P2PDEVICE,
  3529. "GroupFinished")
  3530. self.loop.run()
  3531. return self
  3532. def deviceFound(self, path):
  3533. logger.debug("deviceFound: path=%s" % path)
  3534. def goNegotiationRequest(self, path, dev_passwd_id, go_intent=0):
  3535. logger.debug("goNegotiationRequest: path=%s dev_passwd_id=%d go_intent=%d" % (path, dev_passwd_id, go_intent))
  3536. if dev_passwd_id != 1:
  3537. raise Exception("Unexpected dev_passwd_id=%d" % dev_passwd_id)
  3538. args = { 'peer': path, 'wps_method': 'display', 'pin': '12345670',
  3539. 'go_intent': 15, 'persistent': False, 'frequency': 5175 }
  3540. try:
  3541. p2p.Connect(args)
  3542. raise Exception("Invalid Connect accepted")
  3543. except dbus.exceptions.DBusException, e:
  3544. if "ConnectChannelUnsupported" not in str(e):
  3545. raise Exception("Unexpected error message for invalid Connect: " + str(e))
  3546. args = { 'peer': path, 'wps_method': 'display', 'pin': '12345670',
  3547. 'go_intent': 15, 'persistent': False }
  3548. p2p.Connect(args)
  3549. def goNegotiationSuccess(self, properties):
  3550. logger.debug("goNegotiationSuccess: properties=%s" % str(properties))
  3551. def groupStarted(self, properties):
  3552. logger.debug("groupStarted: " + str(properties))
  3553. g_if_obj = bus.get_object(WPAS_DBUS_SERVICE,
  3554. properties['interface_object'])
  3555. group_p2p = dbus.Interface(g_if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3556. group_p2p.Disconnect()
  3557. def groupFinished(self, properties):
  3558. logger.debug("groupFinished: " + str(properties))
  3559. self.done = True
  3560. self.loop.quit()
  3561. def run_test(self, *args):
  3562. logger.debug("run_test")
  3563. p2p.Listen(10)
  3564. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3565. if not dev1.discover_peer(addr0):
  3566. raise Exception("Peer not found")
  3567. dev1.global_request("P2P_CONNECT " + addr0 + " 12345670 enter")
  3568. return False
  3569. def success(self):
  3570. return self.done
  3571. with TestDbusP2p(bus) as t:
  3572. if not t.success():
  3573. raise Exception("Expected signals not seen")
  3574. def test_dbus_p2p_go_neg_auth(dev, apdev):
  3575. """D-Bus P2P GO Negotiation authorized"""
  3576. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  3577. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3578. addr0 = dev[0].p2p_dev_addr()
  3579. dev[1].p2p_listen()
  3580. class TestDbusP2p(TestDbus):
  3581. def __init__(self, bus):
  3582. TestDbus.__init__(self, bus)
  3583. self.done = False
  3584. self.peer_joined = False
  3585. self.peer_disconnected = False
  3586. def __enter__(self):
  3587. gobject.timeout_add(1, self.run_test)
  3588. gobject.timeout_add(15000, self.timeout)
  3589. self.add_signal(self.deviceFound, WPAS_DBUS_IFACE_P2PDEVICE,
  3590. "DeviceFound")
  3591. self.add_signal(self.goNegotiationSuccess,
  3592. WPAS_DBUS_IFACE_P2PDEVICE,
  3593. "GONegotiationSuccess",
  3594. byte_arrays=True)
  3595. self.add_signal(self.groupStarted, WPAS_DBUS_IFACE_P2PDEVICE,
  3596. "GroupStarted")
  3597. self.add_signal(self.groupFinished, WPAS_DBUS_IFACE_P2PDEVICE,
  3598. "GroupFinished")
  3599. self.add_signal(self.staDeauthorized, WPAS_DBUS_IFACE,
  3600. "StaDeauthorized")
  3601. self.add_signal(self.peerJoined, WPAS_DBUS_GROUP,
  3602. "PeerJoined")
  3603. self.add_signal(self.peerDisconnected, WPAS_DBUS_GROUP,
  3604. "PeerDisconnected")
  3605. self.loop.run()
  3606. return self
  3607. def deviceFound(self, path):
  3608. logger.debug("deviceFound: path=%s" % path)
  3609. args = { 'peer': path, 'wps_method': 'keypad',
  3610. 'go_intent': 15, 'authorize_only': True }
  3611. try:
  3612. p2p.Connect(args)
  3613. raise Exception("Invalid Connect accepted")
  3614. except dbus.exceptions.DBusException, e:
  3615. if "InvalidArgs" not in str(e):
  3616. raise Exception("Unexpected error message for invalid Connect: " + str(e))
  3617. args = { 'peer': path, 'wps_method': 'keypad', 'pin': '12345670',
  3618. 'go_intent': 15, 'authorize_only': True }
  3619. p2p.Connect(args)
  3620. p2p.Listen(10)
  3621. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3622. if not dev1.discover_peer(addr0):
  3623. raise Exception("Peer not found")
  3624. dev1.global_request("P2P_CONNECT " + addr0 + " 12345670 display go_intent=0")
  3625. ev = dev1.wait_global_event(["P2P-GROUP-STARTED"], timeout=15);
  3626. if ev is None:
  3627. raise Exception("Group formation timed out")
  3628. self.sta_group_ev = ev
  3629. def goNegotiationSuccess(self, properties):
  3630. logger.debug("goNegotiationSuccess: properties=%s" % str(properties))
  3631. def groupStarted(self, properties):
  3632. logger.debug("groupStarted: " + str(properties))
  3633. self.g_if_obj = bus.get_object(WPAS_DBUS_SERVICE,
  3634. properties['interface_object'])
  3635. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3636. dev1.group_form_result(self.sta_group_ev)
  3637. dev1.remove_group()
  3638. def staDeauthorized(self, name):
  3639. logger.debug("staDeuthorized: " + name)
  3640. group_p2p = dbus.Interface(self.g_if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3641. group_p2p.Disconnect()
  3642. def peerJoined(self, peer):
  3643. logger.debug("peerJoined: " + peer)
  3644. self.peer_joined = True
  3645. def peerDisconnected(self, peer):
  3646. logger.debug("peerDisconnected: " + peer)
  3647. self.peer_disconnected = True
  3648. def groupFinished(self, properties):
  3649. logger.debug("groupFinished: " + str(properties))
  3650. self.done = True
  3651. self.loop.quit()
  3652. def run_test(self, *args):
  3653. logger.debug("run_test")
  3654. p2p.Find(dbus.Dictionary({'DiscoveryType': 'social'}))
  3655. return False
  3656. def success(self):
  3657. return self.done and self.peer_joined and self.peer_disconnected
  3658. with TestDbusP2p(bus) as t:
  3659. if not t.success():
  3660. raise Exception("Expected signals not seen")
  3661. def test_dbus_p2p_go_neg_init(dev, apdev):
  3662. """D-Bus P2P GO Negotiation initiation"""
  3663. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  3664. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3665. addr0 = dev[0].p2p_dev_addr()
  3666. dev[1].p2p_listen()
  3667. class TestDbusP2p(TestDbus):
  3668. def __init__(self, bus):
  3669. TestDbus.__init__(self, bus)
  3670. self.done = False
  3671. self.peer_group_added = False
  3672. self.peer_group_removed = False
  3673. def __enter__(self):
  3674. gobject.timeout_add(1, self.run_test)
  3675. gobject.timeout_add(15000, self.timeout)
  3676. self.add_signal(self.deviceFound, WPAS_DBUS_IFACE_P2PDEVICE,
  3677. "DeviceFound")
  3678. self.add_signal(self.goNegotiationSuccess,
  3679. WPAS_DBUS_IFACE_P2PDEVICE,
  3680. "GONegotiationSuccess",
  3681. byte_arrays=True)
  3682. self.add_signal(self.groupStarted, WPAS_DBUS_IFACE_P2PDEVICE,
  3683. "GroupStarted")
  3684. self.add_signal(self.groupFinished, WPAS_DBUS_IFACE_P2PDEVICE,
  3685. "GroupFinished")
  3686. self.add_signal(self.propertiesChanged, dbus.PROPERTIES_IFACE,
  3687. "PropertiesChanged")
  3688. self.loop.run()
  3689. return self
  3690. def deviceFound(self, path):
  3691. logger.debug("deviceFound: path=%s" % path)
  3692. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3693. args = { 'peer': path, 'wps_method': 'keypad', 'pin': '12345670',
  3694. 'go_intent': 0 }
  3695. p2p.Connect(args)
  3696. ev = dev1.wait_global_event(["P2P-GO-NEG-REQUEST"], timeout=15)
  3697. if ev is None:
  3698. raise Exception("Timeout while waiting for GO Neg Request")
  3699. dev1.global_request("P2P_CONNECT " + addr0 + " 12345670 display go_intent=15")
  3700. ev = dev1.wait_global_event(["P2P-GROUP-STARTED"], timeout=15);
  3701. if ev is None:
  3702. raise Exception("Group formation timed out")
  3703. self.sta_group_ev = ev
  3704. def goNegotiationSuccess(self, properties):
  3705. logger.debug("goNegotiationSuccess: properties=%s" % str(properties))
  3706. def groupStarted(self, properties):
  3707. logger.debug("groupStarted: " + str(properties))
  3708. g_if_obj = bus.get_object(WPAS_DBUS_SERVICE,
  3709. properties['interface_object'])
  3710. group_p2p = dbus.Interface(g_if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3711. group_p2p.Disconnect()
  3712. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3713. dev1.group_form_result(self.sta_group_ev)
  3714. dev1.remove_group()
  3715. def groupFinished(self, properties):
  3716. logger.debug("groupFinished: " + str(properties))
  3717. self.done = True
  3718. def propertiesChanged(self, interface_name, changed_properties,
  3719. invalidated_properties):
  3720. logger.debug("propertiesChanged: interface_name=%s changed_properties=%s invalidated_properties=%s" % (interface_name, str(changed_properties), str(invalidated_properties)))
  3721. if interface_name != WPAS_DBUS_P2P_PEER:
  3722. return
  3723. if "Groups" not in changed_properties:
  3724. return
  3725. if len(changed_properties["Groups"]) > 0:
  3726. self.peer_group_added = True
  3727. if len(changed_properties["Groups"]) == 0:
  3728. self.peer_group_removed = True
  3729. self.loop.quit()
  3730. def run_test(self, *args):
  3731. logger.debug("run_test")
  3732. p2p.Find(dbus.Dictionary({'DiscoveryType': 'social'}))
  3733. return False
  3734. def success(self):
  3735. return self.done and self.peer_group_added and self.peer_group_removed
  3736. with TestDbusP2p(bus) as t:
  3737. if not t.success():
  3738. raise Exception("Expected signals not seen")
  3739. def test_dbus_p2p_group_termination_by_go(dev, apdev):
  3740. """D-Bus P2P group removal on GO terminating the group"""
  3741. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  3742. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3743. addr0 = dev[0].p2p_dev_addr()
  3744. dev[1].p2p_listen()
  3745. class TestDbusP2p(TestDbus):
  3746. def __init__(self, bus):
  3747. TestDbus.__init__(self, bus)
  3748. self.done = False
  3749. self.peer_group_added = False
  3750. self.peer_group_removed = False
  3751. def __enter__(self):
  3752. gobject.timeout_add(1, self.run_test)
  3753. gobject.timeout_add(15000, self.timeout)
  3754. self.add_signal(self.deviceFound, WPAS_DBUS_IFACE_P2PDEVICE,
  3755. "DeviceFound")
  3756. self.add_signal(self.goNegotiationSuccess,
  3757. WPAS_DBUS_IFACE_P2PDEVICE,
  3758. "GONegotiationSuccess",
  3759. byte_arrays=True)
  3760. self.add_signal(self.groupStarted, WPAS_DBUS_IFACE_P2PDEVICE,
  3761. "GroupStarted")
  3762. self.add_signal(self.groupFinished, WPAS_DBUS_IFACE_P2PDEVICE,
  3763. "GroupFinished")
  3764. self.add_signal(self.propertiesChanged, dbus.PROPERTIES_IFACE,
  3765. "PropertiesChanged")
  3766. self.loop.run()
  3767. return self
  3768. def deviceFound(self, path):
  3769. logger.debug("deviceFound: path=%s" % path)
  3770. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3771. args = { 'peer': path, 'wps_method': 'keypad', 'pin': '12345670',
  3772. 'go_intent': 0 }
  3773. p2p.Connect(args)
  3774. ev = dev1.wait_global_event(["P2P-GO-NEG-REQUEST"], timeout=15)
  3775. if ev is None:
  3776. raise Exception("Timeout while waiting for GO Neg Request")
  3777. dev1.global_request("P2P_CONNECT " + addr0 + " 12345670 display go_intent=15")
  3778. ev = dev1.wait_global_event(["P2P-GROUP-STARTED"], timeout=15);
  3779. if ev is None:
  3780. raise Exception("Group formation timed out")
  3781. self.sta_group_ev = ev
  3782. def goNegotiationSuccess(self, properties):
  3783. logger.debug("goNegotiationSuccess: properties=%s" % str(properties))
  3784. def groupStarted(self, properties):
  3785. logger.debug("groupStarted: " + str(properties))
  3786. g_if_obj = bus.get_object(WPAS_DBUS_SERVICE,
  3787. properties['interface_object'])
  3788. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3789. dev1.group_form_result(self.sta_group_ev)
  3790. dev1.remove_group()
  3791. def groupFinished(self, properties):
  3792. logger.debug("groupFinished: " + str(properties))
  3793. self.done = True
  3794. def propertiesChanged(self, interface_name, changed_properties,
  3795. invalidated_properties):
  3796. logger.debug("propertiesChanged: interface_name=%s changed_properties=%s invalidated_properties=%s" % (interface_name, str(changed_properties), str(invalidated_properties)))
  3797. if interface_name != WPAS_DBUS_P2P_PEER:
  3798. return
  3799. if "Groups" not in changed_properties:
  3800. return
  3801. if len(changed_properties["Groups"]) > 0:
  3802. self.peer_group_added = True
  3803. if len(changed_properties["Groups"]) == 0 and self.peer_group_added:
  3804. self.peer_group_removed = True
  3805. self.loop.quit()
  3806. def run_test(self, *args):
  3807. logger.debug("run_test")
  3808. p2p.Find(dbus.Dictionary({'DiscoveryType': 'social'}))
  3809. return False
  3810. def success(self):
  3811. return self.done and self.peer_group_added and self.peer_group_removed
  3812. with TestDbusP2p(bus) as t:
  3813. if not t.success():
  3814. raise Exception("Expected signals not seen")
  3815. def test_dbus_p2p_group_idle_timeout(dev, apdev):
  3816. """D-Bus P2P group removal on idle timeout"""
  3817. try:
  3818. dev[0].global_request("SET p2p_group_idle 1")
  3819. _test_dbus_p2p_group_idle_timeout(dev, apdev)
  3820. finally:
  3821. dev[0].global_request("SET p2p_group_idle 0")
  3822. def _test_dbus_p2p_group_idle_timeout(dev, apdev):
  3823. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  3824. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3825. addr0 = dev[0].p2p_dev_addr()
  3826. dev[1].p2p_listen()
  3827. class TestDbusP2p(TestDbus):
  3828. def __init__(self, bus):
  3829. TestDbus.__init__(self, bus)
  3830. self.done = False
  3831. self.group_started = False
  3832. self.peer_group_added = False
  3833. self.peer_group_removed = False
  3834. def __enter__(self):
  3835. gobject.timeout_add(1, self.run_test)
  3836. gobject.timeout_add(15000, self.timeout)
  3837. self.add_signal(self.deviceFound, WPAS_DBUS_IFACE_P2PDEVICE,
  3838. "DeviceFound")
  3839. self.add_signal(self.goNegotiationSuccess,
  3840. WPAS_DBUS_IFACE_P2PDEVICE,
  3841. "GONegotiationSuccess",
  3842. byte_arrays=True)
  3843. self.add_signal(self.groupStarted, WPAS_DBUS_IFACE_P2PDEVICE,
  3844. "GroupStarted")
  3845. self.add_signal(self.groupFinished, WPAS_DBUS_IFACE_P2PDEVICE,
  3846. "GroupFinished")
  3847. self.add_signal(self.propertiesChanged, dbus.PROPERTIES_IFACE,
  3848. "PropertiesChanged")
  3849. self.loop.run()
  3850. return self
  3851. def deviceFound(self, path):
  3852. logger.debug("deviceFound: path=%s" % path)
  3853. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3854. args = { 'peer': path, 'wps_method': 'keypad', 'pin': '12345670',
  3855. 'go_intent': 0 }
  3856. p2p.Connect(args)
  3857. ev = dev1.wait_global_event(["P2P-GO-NEG-REQUEST"], timeout=15)
  3858. if ev is None:
  3859. raise Exception("Timeout while waiting for GO Neg Request")
  3860. dev1.global_request("P2P_CONNECT " + addr0 + " 12345670 display go_intent=15")
  3861. ev = dev1.wait_global_event(["P2P-GROUP-STARTED"], timeout=15);
  3862. if ev is None:
  3863. raise Exception("Group formation timed out")
  3864. self.sta_group_ev = ev
  3865. def goNegotiationSuccess(self, properties):
  3866. logger.debug("goNegotiationSuccess: properties=%s" % str(properties))
  3867. def groupStarted(self, properties):
  3868. logger.debug("groupStarted: " + str(properties))
  3869. self.group_started = True
  3870. g_if_obj = bus.get_object(WPAS_DBUS_SERVICE,
  3871. properties['interface_object'])
  3872. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3873. dev1.group_form_result(self.sta_group_ev)
  3874. ifaddr = dev1.group_request("STA-FIRST").splitlines()[0]
  3875. # Force disassociation with different reason code so that the
  3876. # P2P Client using D-Bus does not get normal group termination event
  3877. # from the GO.
  3878. dev1.group_request("DEAUTHENTICATE " + ifaddr + " reason=0 test=0")
  3879. dev1.remove_group()
  3880. def groupFinished(self, properties):
  3881. logger.debug("groupFinished: " + str(properties))
  3882. self.done = True
  3883. def propertiesChanged(self, interface_name, changed_properties,
  3884. invalidated_properties):
  3885. logger.debug("propertiesChanged: interface_name=%s changed_properties=%s invalidated_properties=%s" % (interface_name, str(changed_properties), str(invalidated_properties)))
  3886. if interface_name != WPAS_DBUS_P2P_PEER:
  3887. return
  3888. if not self.group_started:
  3889. return
  3890. if "Groups" not in changed_properties:
  3891. return
  3892. if len(changed_properties["Groups"]) > 0:
  3893. self.peer_group_added = True
  3894. if len(changed_properties["Groups"]) == 0:
  3895. self.peer_group_removed = True
  3896. self.loop.quit()
  3897. def run_test(self, *args):
  3898. logger.debug("run_test")
  3899. p2p.Find(dbus.Dictionary({'DiscoveryType': 'social'}))
  3900. return False
  3901. def success(self):
  3902. return self.done and self.peer_group_added and self.peer_group_removed
  3903. with TestDbusP2p(bus) as t:
  3904. if not t.success():
  3905. raise Exception("Expected signals not seen")
  3906. def test_dbus_p2p_wps_failure(dev, apdev):
  3907. """D-Bus P2P WPS failure"""
  3908. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  3909. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3910. addr0 = dev[0].p2p_dev_addr()
  3911. class TestDbusP2p(TestDbus):
  3912. def __init__(self, bus):
  3913. TestDbus.__init__(self, bus)
  3914. self.wps_failed = False
  3915. self.formation_failure = False
  3916. def __enter__(self):
  3917. gobject.timeout_add(1, self.run_test)
  3918. gobject.timeout_add(15000, self.timeout)
  3919. self.add_signal(self.goNegotiationRequest,
  3920. WPAS_DBUS_IFACE_P2PDEVICE,
  3921. "GONegotiationRequest",
  3922. byte_arrays=True)
  3923. self.add_signal(self.goNegotiationSuccess,
  3924. WPAS_DBUS_IFACE_P2PDEVICE,
  3925. "GONegotiationSuccess",
  3926. byte_arrays=True)
  3927. self.add_signal(self.groupStarted, WPAS_DBUS_IFACE_P2PDEVICE,
  3928. "GroupStarted")
  3929. self.add_signal(self.wpsFailed, WPAS_DBUS_IFACE_P2PDEVICE,
  3930. "WpsFailed")
  3931. self.add_signal(self.groupFormationFailure,
  3932. WPAS_DBUS_IFACE_P2PDEVICE,
  3933. "GroupFormationFailure")
  3934. self.loop.run()
  3935. return self
  3936. def goNegotiationRequest(self, path, dev_passwd_id, go_intent=0):
  3937. logger.debug("goNegotiationRequest: path=%s dev_passwd_id=%d go_intent=%d" % (path, dev_passwd_id, go_intent))
  3938. if dev_passwd_id != 1:
  3939. raise Exception("Unexpected dev_passwd_id=%d" % dev_passwd_id)
  3940. args = { 'peer': path, 'wps_method': 'display', 'pin': '12345670',
  3941. 'go_intent': 15 }
  3942. p2p.Connect(args)
  3943. def goNegotiationSuccess(self, properties):
  3944. logger.debug("goNegotiationSuccess: properties=%s" % str(properties))
  3945. def groupStarted(self, properties):
  3946. logger.debug("groupStarted: " + str(properties))
  3947. raise Exception("Unexpected GroupStarted")
  3948. def wpsFailed(self, name, args):
  3949. logger.debug("wpsFailed - name=%s args=%s" % (name, str(args)))
  3950. self.wps_failed = True
  3951. if self.formation_failure:
  3952. self.loop.quit()
  3953. def groupFormationFailure(self, reason):
  3954. logger.debug("groupFormationFailure - reason=%s" % reason)
  3955. self.formation_failure = True
  3956. if self.wps_failed:
  3957. self.loop.quit()
  3958. def run_test(self, *args):
  3959. logger.debug("run_test")
  3960. p2p.Listen(10)
  3961. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  3962. if not dev1.discover_peer(addr0):
  3963. raise Exception("Peer not found")
  3964. dev1.global_request("P2P_CONNECT " + addr0 + " 87654321 enter")
  3965. return False
  3966. def success(self):
  3967. return self.wps_failed and self.formation_failure
  3968. with TestDbusP2p(bus) as t:
  3969. if not t.success():
  3970. raise Exception("Expected signals not seen")
  3971. def test_dbus_p2p_two_groups(dev, apdev):
  3972. """D-Bus P2P with two concurrent groups"""
  3973. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  3974. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  3975. dev[0].request("SET p2p_no_group_iface 0")
  3976. addr0 = dev[0].p2p_dev_addr()
  3977. addr1 = dev[1].p2p_dev_addr()
  3978. addr2 = dev[2].p2p_dev_addr()
  3979. dev[1].p2p_start_go(freq=2412)
  3980. dev1_group_ifname = dev[1].group_ifname
  3981. class TestDbusP2p(TestDbus):
  3982. def __init__(self, bus):
  3983. TestDbus.__init__(self, bus)
  3984. self.done = False
  3985. self.peer = None
  3986. self.go = None
  3987. self.group1 = None
  3988. self.group2 = None
  3989. self.groups_removed = False
  3990. def __enter__(self):
  3991. gobject.timeout_add(1, self.run_test)
  3992. gobject.timeout_add(15000, self.timeout)
  3993. self.add_signal(self.propertiesChanged, dbus.PROPERTIES_IFACE,
  3994. "PropertiesChanged", byte_arrays=True)
  3995. self.add_signal(self.deviceFound, WPAS_DBUS_IFACE_P2PDEVICE,
  3996. "DeviceFound")
  3997. self.add_signal(self.groupStarted, WPAS_DBUS_IFACE_P2PDEVICE,
  3998. "GroupStarted")
  3999. self.add_signal(self.groupFinished, WPAS_DBUS_IFACE_P2PDEVICE,
  4000. "GroupFinished")
  4001. self.add_signal(self.peerJoined, WPAS_DBUS_GROUP,
  4002. "PeerJoined")
  4003. self.loop.run()
  4004. return self
  4005. def propertiesChanged(self, interface_name, changed_properties,
  4006. invalidated_properties):
  4007. logger.debug("propertiesChanged: interface_name=%s changed_properties=%s invalidated_properties=%s" % (interface_name, str(changed_properties), str(invalidated_properties)))
  4008. def deviceFound(self, path):
  4009. logger.debug("deviceFound: path=%s" % path)
  4010. if addr2.replace(':','') in path:
  4011. self.peer = path
  4012. elif addr1.replace(':','') in path:
  4013. self.go = path
  4014. if self.go and not self.group1:
  4015. logger.info("Join the group")
  4016. p2p.StopFind()
  4017. pin = '12345670'
  4018. dev1 = WpaSupplicant('wlan1', '/tmp/wpas-wlan1')
  4019. dev1.group_ifname = dev1_group_ifname
  4020. dev1.group_request("WPS_PIN any " + pin)
  4021. args = { 'peer': self.go,
  4022. 'join': True,
  4023. 'wps_method': 'pin',
  4024. 'pin': pin,
  4025. 'frequency': 2412 }
  4026. p2p.Connect(args)
  4027. def groupStarted(self, properties):
  4028. logger.debug("groupStarted: " + str(properties))
  4029. prop = if_obj.GetAll(WPAS_DBUS_IFACE_P2PDEVICE,
  4030. dbus_interface=dbus.PROPERTIES_IFACE)
  4031. logger.debug("p2pdevice properties: " + str(prop))
  4032. g_obj = bus.get_object(WPAS_DBUS_SERVICE,
  4033. properties['group_object'])
  4034. res = g_obj.GetAll(WPAS_DBUS_GROUP,
  4035. dbus_interface=dbus.PROPERTIES_IFACE,
  4036. byte_arrays=True)
  4037. logger.debug("Group properties: " + str(res))
  4038. if not self.group1:
  4039. self.group1 = properties['group_object']
  4040. self.group1iface = properties['interface_object']
  4041. self.g1_if_obj = bus.get_object(WPAS_DBUS_SERVICE,
  4042. self.group1iface)
  4043. logger.info("Start autonomous GO")
  4044. params = dbus.Dictionary({ 'frequency': 2412 })
  4045. p2p.GroupAdd(params)
  4046. elif not self.group2:
  4047. self.group2 = properties['group_object']
  4048. self.group2iface = properties['interface_object']
  4049. self.g2_if_obj = bus.get_object(WPAS_DBUS_SERVICE,
  4050. self.group2iface)
  4051. self.g2_bssid = res['BSSID']
  4052. if self.group1 and self.group2:
  4053. logger.info("Authorize peer to join the group")
  4054. a2 = binascii.unhexlify(addr2.replace(':',''))
  4055. params = { 'Role': 'enrollee',
  4056. 'P2PDeviceAddress': dbus.ByteArray(a2),
  4057. 'Bssid': dbus.ByteArray(a2),
  4058. 'Type': 'pin',
  4059. 'Pin': '12345670' }
  4060. g_wps = dbus.Interface(self.g2_if_obj, WPAS_DBUS_IFACE_WPS)
  4061. g_wps.Start(params)
  4062. bssid = ':'.join([binascii.hexlify(l) for l in self.g2_bssid])
  4063. dev2 = WpaSupplicant('wlan2', '/tmp/wpas-wlan2')
  4064. dev2.scan_for_bss(bssid, freq=2412)
  4065. dev2.global_request("P2P_CONNECT " + bssid + " 12345670 join freq=2412")
  4066. ev = dev2.wait_global_event(["P2P-GROUP-STARTED"], timeout=15);
  4067. if ev is None:
  4068. raise Exception("Group join timed out")
  4069. self.dev2_group_ev = ev
  4070. def groupFinished(self, properties):
  4071. logger.debug("groupFinished: " + str(properties))
  4072. if self.group1 == properties['group_object']:
  4073. self.group1 = None
  4074. elif self.group2 == properties['group_object']:
  4075. self.group2 = None
  4076. if not self.group1 and not self.group2:
  4077. self.done = True
  4078. self.loop.quit()
  4079. def peerJoined(self, peer):
  4080. logger.debug("peerJoined: " + peer)
  4081. if self.groups_removed:
  4082. return
  4083. self.check_results()
  4084. dev2 = WpaSupplicant('wlan2', '/tmp/wpas-wlan2')
  4085. dev2.group_form_result(self.dev2_group_ev)
  4086. dev2.remove_group()
  4087. logger.info("Disconnect group2")
  4088. group_p2p = dbus.Interface(self.g2_if_obj,
  4089. WPAS_DBUS_IFACE_P2PDEVICE)
  4090. group_p2p.Disconnect()
  4091. logger.info("Disconnect group1")
  4092. group_p2p = dbus.Interface(self.g1_if_obj,
  4093. WPAS_DBUS_IFACE_P2PDEVICE)
  4094. group_p2p.Disconnect()
  4095. self.groups_removed = True
  4096. def check_results(self):
  4097. logger.info("Check results with two concurrent groups in operation")
  4098. g1_obj = bus.get_object(WPAS_DBUS_SERVICE, self.group1)
  4099. res1 = g1_obj.GetAll(WPAS_DBUS_GROUP,
  4100. dbus_interface=dbus.PROPERTIES_IFACE,
  4101. byte_arrays=True)
  4102. g2_obj = bus.get_object(WPAS_DBUS_SERVICE, self.group2)
  4103. res2 = g2_obj.GetAll(WPAS_DBUS_GROUP,
  4104. dbus_interface=dbus.PROPERTIES_IFACE,
  4105. byte_arrays=True)
  4106. logger.info("group1 = " + self.group1)
  4107. logger.debug("Group properties: " + str(res1))
  4108. logger.info("group2 = " + self.group2)
  4109. logger.debug("Group properties: " + str(res2))
  4110. prop = if_obj.GetAll(WPAS_DBUS_IFACE_P2PDEVICE,
  4111. dbus_interface=dbus.PROPERTIES_IFACE)
  4112. logger.debug("p2pdevice properties: " + str(prop))
  4113. if res1['Role'] != 'client':
  4114. raise Exception("Group1 role reported incorrectly: " + res1['Role'])
  4115. if res2['Role'] != 'GO':
  4116. raise Exception("Group2 role reported incorrectly: " + res2['Role'])
  4117. if prop['Role'] != 'device':
  4118. raise Exception("p2pdevice role reported incorrectly: " + prop['Role'])
  4119. if len(res2['Members']) != 1:
  4120. raise Exception("Unexpected Members value for group 2")
  4121. def run_test(self, *args):
  4122. logger.debug("run_test")
  4123. p2p.Find(dbus.Dictionary({'DiscoveryType': 'social'}))
  4124. return False
  4125. def success(self):
  4126. return self.done
  4127. with TestDbusP2p(bus) as t:
  4128. if not t.success():
  4129. raise Exception("Expected signals not seen")
  4130. dev[1].remove_group()
  4131. def test_dbus_p2p_cancel(dev, apdev):
  4132. """D-Bus P2P Cancel"""
  4133. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  4134. p2p = dbus.Interface(if_obj, WPAS_DBUS_IFACE_P2PDEVICE)
  4135. try:
  4136. p2p.Cancel()
  4137. raise Exception("Unexpected p2p.Cancel() success")
  4138. except dbus.exceptions.DBusException, e:
  4139. pass
  4140. addr0 = dev[0].p2p_dev_addr()
  4141. dev[1].p2p_listen()
  4142. class TestDbusP2p(TestDbus):
  4143. def __init__(self, bus):
  4144. TestDbus.__init__(self, bus)
  4145. self.done = False
  4146. def __enter__(self):
  4147. gobject.timeout_add(1, self.run_test)
  4148. gobject.timeout_add(15000, self.timeout)
  4149. self.add_signal(self.deviceFound, WPAS_DBUS_IFACE_P2PDEVICE,
  4150. "DeviceFound")
  4151. self.loop.run()
  4152. return self
  4153. def deviceFound(self, path):
  4154. logger.debug("deviceFound: path=%s" % path)
  4155. args = { 'peer': path, 'wps_method': 'keypad', 'pin': '12345670',
  4156. 'go_intent': 0 }
  4157. p2p.Connect(args)
  4158. p2p.Cancel()
  4159. self.done = True
  4160. self.loop.quit()
  4161. def run_test(self, *args):
  4162. logger.debug("run_test")
  4163. p2p.Find(dbus.Dictionary({'DiscoveryType': 'social'}))
  4164. return False
  4165. def success(self):
  4166. return self.done
  4167. with TestDbusP2p(bus) as t:
  4168. if not t.success():
  4169. raise Exception("Expected signals not seen")
  4170. def test_dbus_introspect(dev, apdev):
  4171. """D-Bus introspection"""
  4172. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  4173. res = if_obj.Introspect(WPAS_DBUS_IFACE,
  4174. dbus_interface=dbus.INTROSPECTABLE_IFACE)
  4175. logger.info("Initial Introspect: " + str(res))
  4176. if res is None or "Introspectable" not in res or "GroupStarted" not in res:
  4177. raise Exception("Unexpected initial Introspect response: " + str(res))
  4178. if "FastReauth" not in res or "PassiveScan" not in res:
  4179. raise Exception("Unexpected initial Introspect response: " + str(res))
  4180. with alloc_fail(dev[0], 1, "wpa_dbus_introspect"):
  4181. res2 = if_obj.Introspect(WPAS_DBUS_IFACE,
  4182. dbus_interface=dbus.INTROSPECTABLE_IFACE)
  4183. logger.info("Introspect: " + str(res2))
  4184. if res2 is not None:
  4185. raise Exception("Unexpected Introspect response")
  4186. with alloc_fail(dev[0], 1, "=add_interface;wpa_dbus_introspect"):
  4187. res2 = if_obj.Introspect(WPAS_DBUS_IFACE,
  4188. dbus_interface=dbus.INTROSPECTABLE_IFACE)
  4189. logger.info("Introspect: " + str(res2))
  4190. if res2 is None:
  4191. raise Exception("No Introspect response")
  4192. if len(res2) >= len(res):
  4193. raise Exception("Unexpected Introspect response")
  4194. with alloc_fail(dev[0], 1, "wpabuf_alloc;add_interface;wpa_dbus_introspect"):
  4195. res2 = if_obj.Introspect(WPAS_DBUS_IFACE,
  4196. dbus_interface=dbus.INTROSPECTABLE_IFACE)
  4197. logger.info("Introspect: " + str(res2))
  4198. if res2 is None:
  4199. raise Exception("No Introspect response")
  4200. if len(res2) >= len(res):
  4201. raise Exception("Unexpected Introspect response")
  4202. with alloc_fail(dev[0], 2, "=add_interface;wpa_dbus_introspect"):
  4203. res2 = if_obj.Introspect(WPAS_DBUS_IFACE,
  4204. dbus_interface=dbus.INTROSPECTABLE_IFACE)
  4205. logger.info("Introspect: " + str(res2))
  4206. if res2 is None:
  4207. raise Exception("No Introspect response")
  4208. if len(res2) >= len(res):
  4209. raise Exception("Unexpected Introspect response")
  4210. def test_dbus_ap(dev, apdev):
  4211. """D-Bus AddNetwork for AP mode"""
  4212. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  4213. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  4214. ssid = "test-wpa2-psk"
  4215. passphrase = 'qwertyuiop'
  4216. class TestDbusConnect(TestDbus):
  4217. def __init__(self, bus):
  4218. TestDbus.__init__(self, bus)
  4219. self.started = False
  4220. def __enter__(self):
  4221. gobject.timeout_add(1, self.run_connect)
  4222. gobject.timeout_add(15000, self.timeout)
  4223. self.add_signal(self.networkAdded, WPAS_DBUS_IFACE, "NetworkAdded")
  4224. self.add_signal(self.networkSelected, WPAS_DBUS_IFACE,
  4225. "NetworkSelected")
  4226. self.add_signal(self.propertiesChanged, WPAS_DBUS_IFACE,
  4227. "PropertiesChanged")
  4228. self.loop.run()
  4229. return self
  4230. def networkAdded(self, network, properties):
  4231. logger.debug("networkAdded: %s" % str(network))
  4232. logger.debug(str(properties))
  4233. def networkSelected(self, network):
  4234. logger.debug("networkSelected: %s" % str(network))
  4235. self.network_selected = True
  4236. def propertiesChanged(self, properties):
  4237. logger.debug("propertiesChanged: %s" % str(properties))
  4238. if 'State' in properties and properties['State'] == "completed":
  4239. self.started = True
  4240. self.loop.quit()
  4241. def run_connect(self, *args):
  4242. logger.debug("run_connect")
  4243. args = dbus.Dictionary({ 'ssid': ssid,
  4244. 'key_mgmt': 'WPA-PSK',
  4245. 'psk': passphrase,
  4246. 'mode': 2,
  4247. 'frequency': 2412 },
  4248. signature='sv')
  4249. self.netw = iface.AddNetwork(args)
  4250. iface.SelectNetwork(self.netw)
  4251. return False
  4252. def success(self):
  4253. return self.started
  4254. with TestDbusConnect(bus) as t:
  4255. if not t.success():
  4256. raise Exception("Expected signals not seen")
  4257. dev[1].connect(ssid, psk=passphrase, scan_freq="2412")
  4258. def test_dbus_connect_wpa_eap(dev, apdev):
  4259. """D-Bus AddNetwork and connection with WPA+WPA2-Enterprise AP"""
  4260. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  4261. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  4262. ssid = "test-wpa-eap"
  4263. params = hostapd.wpa_eap_params(ssid=ssid)
  4264. params["wpa"] = "3"
  4265. params["rsn_pairwise"] = "CCMP"
  4266. hapd = hostapd.add_ap(apdev[0], params)
  4267. class TestDbusConnect(TestDbus):
  4268. def __init__(self, bus):
  4269. TestDbus.__init__(self, bus)
  4270. self.done = False
  4271. def __enter__(self):
  4272. gobject.timeout_add(1, self.run_connect)
  4273. gobject.timeout_add(15000, self.timeout)
  4274. self.add_signal(self.propertiesChanged, WPAS_DBUS_IFACE,
  4275. "PropertiesChanged")
  4276. self.add_signal(self.eap, WPAS_DBUS_IFACE, "EAP")
  4277. self.loop.run()
  4278. return self
  4279. def propertiesChanged(self, properties):
  4280. logger.debug("propertiesChanged: %s" % str(properties))
  4281. if 'State' in properties and properties['State'] == "completed":
  4282. self.done = True
  4283. self.loop.quit()
  4284. def eap(self, status, parameter):
  4285. logger.debug("EAP: status=%s parameter=%s" % (status, parameter))
  4286. def run_connect(self, *args):
  4287. logger.debug("run_connect")
  4288. args = dbus.Dictionary({ 'ssid': ssid,
  4289. 'key_mgmt': 'WPA-EAP',
  4290. 'eap': 'PEAP',
  4291. 'identity': 'user',
  4292. 'password': 'password',
  4293. 'ca_cert': 'auth_serv/ca.pem',
  4294. 'phase2': 'auth=MSCHAPV2',
  4295. 'scan_freq': 2412 },
  4296. signature='sv')
  4297. self.netw = iface.AddNetwork(args)
  4298. iface.SelectNetwork(self.netw)
  4299. return False
  4300. def success(self):
  4301. return self.done
  4302. with TestDbusConnect(bus) as t:
  4303. if not t.success():
  4304. raise Exception("Expected signals not seen")
  4305. def test_dbus_ap_scan_2_ap_mode_scan(dev, apdev):
  4306. """AP_SCAN 2 AP mode and D-Bus Scan()"""
  4307. try:
  4308. _test_dbus_ap_scan_2_ap_mode_scan(dev, apdev)
  4309. finally:
  4310. dev[0].request("AP_SCAN 1")
  4311. def _test_dbus_ap_scan_2_ap_mode_scan(dev, apdev):
  4312. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  4313. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  4314. if "OK" not in dev[0].request("AP_SCAN 2"):
  4315. raise Exception("Failed to set AP_SCAN 2")
  4316. id = dev[0].add_network()
  4317. dev[0].set_network(id, "mode", "2")
  4318. dev[0].set_network_quoted(id, "ssid", "wpas-ap-open")
  4319. dev[0].set_network(id, "key_mgmt", "NONE")
  4320. dev[0].set_network(id, "frequency", "2412")
  4321. dev[0].set_network(id, "scan_freq", "2412")
  4322. dev[0].set_network(id, "disabled", "0")
  4323. dev[0].select_network(id)
  4324. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=5)
  4325. if ev is None:
  4326. raise Exception("AP failed to start")
  4327. with fail_test(dev[0], 1, "wpa_driver_nl80211_scan"):
  4328. iface.Scan({'Type': 'active',
  4329. 'AllowRoam': True,
  4330. 'Channels': [(dbus.UInt32(2412), dbus.UInt32(20))]})
  4331. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-FAILED",
  4332. "AP-DISABLED"], timeout=5)
  4333. if ev is None:
  4334. raise Exception("CTRL-EVENT-SCAN-FAILED not seen")
  4335. if "AP-DISABLED" in ev:
  4336. raise Exception("Unexpected AP-DISABLED event")
  4337. if "retry=1" in ev:
  4338. # Wait for the retry to scan happen
  4339. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-FAILED",
  4340. "AP-DISABLED"], timeout=5)
  4341. if ev is None:
  4342. raise Exception("CTRL-EVENT-SCAN-FAILED not seen - retry")
  4343. if "AP-DISABLED" in ev:
  4344. raise Exception("Unexpected AP-DISABLED event - retry")
  4345. dev[1].connect("wpas-ap-open", key_mgmt="NONE", scan_freq="2412")
  4346. dev[1].request("DISCONNECT")
  4347. dev[1].wait_disconnected()
  4348. dev[0].request("DISCONNECT")
  4349. dev[0].wait_disconnected()
  4350. def test_dbus_expectdisconnect(dev, apdev):
  4351. """D-Bus ExpectDisconnect"""
  4352. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  4353. wpas = dbus.Interface(wpas_obj, WPAS_DBUS_SERVICE)
  4354. params = { "ssid": "test-open" }
  4355. hapd = hostapd.add_ap(apdev[0], params)
  4356. dev[0].connect("test-open", key_mgmt="NONE", scan_freq="2412")
  4357. # This does not really verify the behavior other than by going through the
  4358. # code path for additional coverage.
  4359. wpas.ExpectDisconnect()
  4360. dev[0].request("DISCONNECT")
  4361. dev[0].wait_disconnected()
  4362. def test_dbus_save_config(dev, apdev):
  4363. """D-Bus SaveConfig"""
  4364. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  4365. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  4366. try:
  4367. iface.SaveConfig()
  4368. raise Exception("SaveConfig() accepted unexpectedly")
  4369. except dbus.exceptions.DBusException, e:
  4370. if not str(e).startswith("fi.w1.wpa_supplicant1.UnknownError: Not allowed to update configuration"):
  4371. raise Exception("Unexpected error message for SaveConfig(): " + str(e))
  4372. def test_dbus_vendor_elem(dev, apdev):
  4373. """D-Bus vendor element operations"""
  4374. try:
  4375. _test_dbus_vendor_elem(dev, apdev)
  4376. finally:
  4377. dev[0].request("VENDOR_ELEM_REMOVE 1 *")
  4378. def _test_dbus_vendor_elem(dev, apdev):
  4379. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  4380. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  4381. dev[0].request("VENDOR_ELEM_REMOVE 1 *")
  4382. try:
  4383. ie = dbus.ByteArray("\x00\x00")
  4384. iface.VendorElemAdd(-1, ie)
  4385. raise Exception("Invalid VendorElemAdd() accepted")
  4386. except dbus.exceptions.DBusException, e:
  4387. if "InvalidArgs" not in str(e) or "Invalid ID" not in str(e):
  4388. raise Exception("Unexpected error message for invalid VendorElemAdd[1]: " + str(e))
  4389. try:
  4390. ie = dbus.ByteArray("")
  4391. iface.VendorElemAdd(1, ie)
  4392. raise Exception("Invalid VendorElemAdd() accepted")
  4393. except dbus.exceptions.DBusException, e:
  4394. if "InvalidArgs" not in str(e) or "Invalid value" not in str(e):
  4395. raise Exception("Unexpected error message for invalid VendorElemAdd[2]: " + str(e))
  4396. try:
  4397. ie = dbus.ByteArray("\x00\x01")
  4398. iface.VendorElemAdd(1, ie)
  4399. raise Exception("Invalid VendorElemAdd() accepted")
  4400. except dbus.exceptions.DBusException, e:
  4401. if "InvalidArgs" not in str(e) or "Parse error" not in str(e):
  4402. raise Exception("Unexpected error message for invalid VendorElemAdd[3]: " + str(e))
  4403. try:
  4404. iface.VendorElemGet(-1)
  4405. raise Exception("Invalid VendorElemGet() accepted")
  4406. except dbus.exceptions.DBusException, e:
  4407. if "InvalidArgs" not in str(e) or "Invalid ID" not in str(e):
  4408. raise Exception("Unexpected error message for invalid VendorElemGet[1]: " + str(e))
  4409. try:
  4410. iface.VendorElemGet(1)
  4411. raise Exception("Invalid VendorElemGet() accepted")
  4412. except dbus.exceptions.DBusException, e:
  4413. if "InvalidArgs" not in str(e) or "ID value does not exist" not in str(e):
  4414. raise Exception("Unexpected error message for invalid VendorElemGet[2]: " + str(e))
  4415. try:
  4416. ie = dbus.ByteArray("\x00\x00")
  4417. iface.VendorElemRem(-1, ie)
  4418. raise Exception("Invalid VendorElemRemove() accepted")
  4419. except dbus.exceptions.DBusException, e:
  4420. if "InvalidArgs" not in str(e) or "Invalid ID" not in str(e):
  4421. raise Exception("Unexpected error message for invalid VendorElemRemove[1]: " + str(e))
  4422. try:
  4423. ie = dbus.ByteArray("")
  4424. iface.VendorElemRem(1, ie)
  4425. raise Exception("Invalid VendorElemRemove() accepted")
  4426. except dbus.exceptions.DBusException, e:
  4427. if "InvalidArgs" not in str(e) or "Invalid value" not in str(e):
  4428. raise Exception("Unexpected error message for invalid VendorElemRemove[1]: " + str(e))
  4429. iface.VendorElemRem(1, "*")
  4430. ie = dbus.ByteArray("\x00\x01\x00")
  4431. iface.VendorElemAdd(1, ie)
  4432. val = iface.VendorElemGet(1)
  4433. if len(val) != len(ie):
  4434. raise Exception("Unexpected VendorElemGet length")
  4435. for i in range(len(val)):
  4436. if val[i] != dbus.Byte(ie[i]):
  4437. raise Exception("Unexpected VendorElemGet data")
  4438. ie2 = dbus.ByteArray("\xe0\x00")
  4439. iface.VendorElemAdd(1, ie2)
  4440. ies = ie + ie2
  4441. val = iface.VendorElemGet(1)
  4442. if len(val) != len(ies):
  4443. raise Exception("Unexpected VendorElemGet length[2]")
  4444. for i in range(len(val)):
  4445. if val[i] != dbus.Byte(ies[i]):
  4446. raise Exception("Unexpected VendorElemGet data[2]")
  4447. try:
  4448. test_ie = dbus.ByteArray("\x01\x01")
  4449. iface.VendorElemRem(1, test_ie)
  4450. raise Exception("Invalid VendorElemRemove() accepted")
  4451. except dbus.exceptions.DBusException, e:
  4452. if "InvalidArgs" not in str(e) or "Parse error" not in str(e):
  4453. raise Exception("Unexpected error message for invalid VendorElemRemove[1]: " + str(e))
  4454. iface.VendorElemRem(1, ie)
  4455. val = iface.VendorElemGet(1)
  4456. if len(val) != len(ie2):
  4457. raise Exception("Unexpected VendorElemGet length[3]")
  4458. iface.VendorElemRem(1, "*")
  4459. try:
  4460. iface.VendorElemGet(1)
  4461. raise Exception("Invalid VendorElemGet() accepted after removal")
  4462. except dbus.exceptions.DBusException, e:
  4463. if "InvalidArgs" not in str(e) or "ID value does not exist" not in str(e):
  4464. raise Exception("Unexpected error message for invalid VendorElemGet after removal: " + str(e))
  4465. def test_dbus_assoc_reject(dev, apdev):
  4466. """D-Bus AssocStatusCode"""
  4467. (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
  4468. iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)
  4469. ssid = "test-open"
  4470. params = { "ssid": ssid,
  4471. "max_listen_interval": "1" }
  4472. hapd = hostapd.add_ap(apdev[0], params)
  4473. class TestDbusConnect(TestDbus):
  4474. def __init__(self, bus):
  4475. TestDbus.__init__(self, bus)
  4476. self.assoc_status_seen = False
  4477. self.state = 0
  4478. def __enter__(self):
  4479. gobject.timeout_add(1, self.run_connect)
  4480. gobject.timeout_add(15000, self.timeout)
  4481. self.add_signal(self.propertiesChanged, WPAS_DBUS_IFACE,
  4482. "PropertiesChanged")
  4483. self.loop.run()
  4484. return self
  4485. def propertiesChanged(self, properties):
  4486. logger.debug("propertiesChanged: %s" % str(properties))
  4487. if 'AssocStatusCode' in properties:
  4488. status = properties['AssocStatusCode']
  4489. if status != 51:
  4490. logger.info("Unexpected status code: " + str(status))
  4491. else:
  4492. self.assoc_status_seen = True
  4493. iface.Disconnect()
  4494. self.loop.quit()
  4495. def run_connect(self, *args):
  4496. args = dbus.Dictionary({ 'ssid': ssid,
  4497. 'key_mgmt': 'NONE',
  4498. 'scan_freq': 2412 },
  4499. signature='sv')
  4500. self.netw = iface.AddNetwork(args)
  4501. iface.SelectNetwork(self.netw)
  4502. return False
  4503. def success(self):
  4504. return self.assoc_status_seen
  4505. with TestDbusConnect(bus) as t:
  4506. if not t.success():
  4507. raise Exception("Expected signals not seen")