dbus_new.c 120 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617
  1. /*
  2. * WPA Supplicant / dbus-based control interface
  3. * Copyright (c) 2006, Dan Williams <dcbw@redhat.com> and Red Hat, Inc.
  4. * Copyright (c) 2009-2010, Witold Sowa <witold.sowa@gmail.com>
  5. * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
  6. *
  7. * This software may be distributed under the terms of the BSD license.
  8. * See README for more details.
  9. */
  10. #include "includes.h"
  11. #include "common.h"
  12. #include "common/ieee802_11_defs.h"
  13. #include "wps/wps.h"
  14. #include "../config.h"
  15. #include "../wpa_supplicant_i.h"
  16. #include "../bss.h"
  17. #include "../wpas_glue.h"
  18. #include "dbus_new_helpers.h"
  19. #include "dbus_dict_helpers.h"
  20. #include "dbus_new.h"
  21. #include "dbus_new_handlers.h"
  22. #include "dbus_common_i.h"
  23. #include "dbus_new_handlers_p2p.h"
  24. #include "p2p/p2p.h"
  25. #include "../p2p_supplicant.h"
  26. #ifdef CONFIG_AP /* until needed by something else */
  27. /*
  28. * NameOwnerChanged handling
  29. *
  30. * Some services we provide allow an application to register for
  31. * a signal that it needs. While it can also unregister, we must
  32. * be prepared for the case where the application simply crashes
  33. * and thus doesn't clean up properly. The way to handle this in
  34. * DBus is to register for the NameOwnerChanged signal which will
  35. * signal an owner change to NULL if the peer closes the socket
  36. * for whatever reason.
  37. *
  38. * Handle this signal via a filter function whenever necessary.
  39. * The code below also handles refcounting in case in the future
  40. * there will be multiple instances of this subscription scheme.
  41. */
  42. static const char wpas_dbus_noc_filter_str[] =
  43. "interface=org.freedesktop.DBus,member=NameOwnerChanged";
  44. static DBusHandlerResult noc_filter(DBusConnection *conn,
  45. DBusMessage *message, void *data)
  46. {
  47. struct wpas_dbus_priv *priv = data;
  48. if (dbus_message_get_type(message) != DBUS_MESSAGE_TYPE_SIGNAL)
  49. return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
  50. if (dbus_message_is_signal(message, DBUS_INTERFACE_DBUS,
  51. "NameOwnerChanged")) {
  52. const char *name;
  53. const char *prev_owner;
  54. const char *new_owner;
  55. DBusError derr;
  56. struct wpa_supplicant *wpa_s;
  57. dbus_error_init(&derr);
  58. if (!dbus_message_get_args(message, &derr,
  59. DBUS_TYPE_STRING, &name,
  60. DBUS_TYPE_STRING, &prev_owner,
  61. DBUS_TYPE_STRING, &new_owner,
  62. DBUS_TYPE_INVALID)) {
  63. /* Ignore this error */
  64. dbus_error_free(&derr);
  65. return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
  66. }
  67. for (wpa_s = priv->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  68. if (wpa_s->preq_notify_peer != NULL &&
  69. os_strcmp(name, wpa_s->preq_notify_peer) == 0 &&
  70. (new_owner == NULL || os_strlen(new_owner) == 0)) {
  71. /* probe request owner disconnected */
  72. os_free(wpa_s->preq_notify_peer);
  73. wpa_s->preq_notify_peer = NULL;
  74. wpas_dbus_unsubscribe_noc(priv);
  75. }
  76. }
  77. }
  78. return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
  79. }
  80. void wpas_dbus_subscribe_noc(struct wpas_dbus_priv *priv)
  81. {
  82. priv->dbus_noc_refcnt++;
  83. if (priv->dbus_noc_refcnt > 1)
  84. return;
  85. if (!dbus_connection_add_filter(priv->con, noc_filter, priv, NULL)) {
  86. wpa_printf(MSG_ERROR, "dbus: failed to add filter");
  87. return;
  88. }
  89. dbus_bus_add_match(priv->con, wpas_dbus_noc_filter_str, NULL);
  90. }
  91. void wpas_dbus_unsubscribe_noc(struct wpas_dbus_priv *priv)
  92. {
  93. priv->dbus_noc_refcnt--;
  94. if (priv->dbus_noc_refcnt > 0)
  95. return;
  96. dbus_bus_remove_match(priv->con, wpas_dbus_noc_filter_str, NULL);
  97. dbus_connection_remove_filter(priv->con, noc_filter, priv);
  98. }
  99. #endif /* CONFIG_AP */
  100. /**
  101. * wpas_dbus_signal_interface - Send a interface related event signal
  102. * @wpa_s: %wpa_supplicant network interface data
  103. * @sig_name: signal name - InterfaceAdded or InterfaceRemoved
  104. * @properties: Whether to add second argument with object properties
  105. *
  106. * Notify listeners about event related with interface
  107. */
  108. static void wpas_dbus_signal_interface(struct wpa_supplicant *wpa_s,
  109. const char *sig_name, int properties)
  110. {
  111. struct wpas_dbus_priv *iface;
  112. DBusMessage *msg;
  113. DBusMessageIter iter;
  114. iface = wpa_s->global->dbus;
  115. /* Do nothing if the control interface is not turned on */
  116. if (iface == NULL || !wpa_s->dbus_new_path)
  117. return;
  118. msg = dbus_message_new_signal(WPAS_DBUS_NEW_PATH,
  119. WPAS_DBUS_NEW_INTERFACE, sig_name);
  120. if (msg == NULL)
  121. return;
  122. dbus_message_iter_init_append(msg, &iter);
  123. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  124. &wpa_s->dbus_new_path) ||
  125. (properties &&
  126. !wpa_dbus_get_object_properties(
  127. iface, wpa_s->dbus_new_path,
  128. WPAS_DBUS_NEW_IFACE_INTERFACE, &iter)))
  129. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  130. else
  131. dbus_connection_send(iface->con, msg, NULL);
  132. dbus_message_unref(msg);
  133. }
  134. /**
  135. * wpas_dbus_signal_interface_added - Send a interface created signal
  136. * @wpa_s: %wpa_supplicant network interface data
  137. *
  138. * Notify listeners about creating new interface
  139. */
  140. static void wpas_dbus_signal_interface_added(struct wpa_supplicant *wpa_s)
  141. {
  142. wpas_dbus_signal_interface(wpa_s, "InterfaceAdded", TRUE);
  143. }
  144. /**
  145. * wpas_dbus_signal_interface_removed - Send a interface removed signal
  146. * @wpa_s: %wpa_supplicant network interface data
  147. *
  148. * Notify listeners about removing interface
  149. */
  150. static void wpas_dbus_signal_interface_removed(struct wpa_supplicant *wpa_s)
  151. {
  152. wpas_dbus_signal_interface(wpa_s, "InterfaceRemoved", FALSE);
  153. }
  154. /**
  155. * wpas_dbus_signal_scan_done - send scan done signal
  156. * @wpa_s: %wpa_supplicant network interface data
  157. * @success: indicates if scanning succeed or failed
  158. *
  159. * Notify listeners about finishing a scan
  160. */
  161. void wpas_dbus_signal_scan_done(struct wpa_supplicant *wpa_s, int success)
  162. {
  163. struct wpas_dbus_priv *iface;
  164. DBusMessage *msg;
  165. dbus_bool_t succ;
  166. iface = wpa_s->global->dbus;
  167. /* Do nothing if the control interface is not turned on */
  168. if (iface == NULL || !wpa_s->dbus_new_path)
  169. return;
  170. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  171. WPAS_DBUS_NEW_IFACE_INTERFACE,
  172. "ScanDone");
  173. if (msg == NULL)
  174. return;
  175. succ = success ? TRUE : FALSE;
  176. if (dbus_message_append_args(msg, DBUS_TYPE_BOOLEAN, &succ,
  177. DBUS_TYPE_INVALID))
  178. dbus_connection_send(iface->con, msg, NULL);
  179. else
  180. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  181. dbus_message_unref(msg);
  182. }
  183. /**
  184. * wpas_dbus_signal_bss - Send a BSS related event signal
  185. * @wpa_s: %wpa_supplicant network interface data
  186. * @bss_obj_path: BSS object path
  187. * @sig_name: signal name - BSSAdded or BSSRemoved
  188. * @properties: Whether to add second argument with object properties
  189. *
  190. * Notify listeners about event related with BSS
  191. */
  192. static void wpas_dbus_signal_bss(struct wpa_supplicant *wpa_s,
  193. const char *bss_obj_path,
  194. const char *sig_name, int properties)
  195. {
  196. struct wpas_dbus_priv *iface;
  197. DBusMessage *msg;
  198. DBusMessageIter iter;
  199. iface = wpa_s->global->dbus;
  200. /* Do nothing if the control interface is not turned on */
  201. if (iface == NULL || !wpa_s->dbus_new_path)
  202. return;
  203. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  204. WPAS_DBUS_NEW_IFACE_INTERFACE,
  205. sig_name);
  206. if (msg == NULL)
  207. return;
  208. dbus_message_iter_init_append(msg, &iter);
  209. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  210. &bss_obj_path) ||
  211. (properties &&
  212. !wpa_dbus_get_object_properties(iface, bss_obj_path,
  213. WPAS_DBUS_NEW_IFACE_BSS,
  214. &iter)))
  215. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  216. else
  217. dbus_connection_send(iface->con, msg, NULL);
  218. dbus_message_unref(msg);
  219. }
  220. /**
  221. * wpas_dbus_signal_bss_added - Send a BSS added signal
  222. * @wpa_s: %wpa_supplicant network interface data
  223. * @bss_obj_path: new BSS object path
  224. *
  225. * Notify listeners about adding new BSS
  226. */
  227. static void wpas_dbus_signal_bss_added(struct wpa_supplicant *wpa_s,
  228. const char *bss_obj_path)
  229. {
  230. wpas_dbus_signal_bss(wpa_s, bss_obj_path, "BSSAdded", TRUE);
  231. }
  232. /**
  233. * wpas_dbus_signal_bss_removed - Send a BSS removed signal
  234. * @wpa_s: %wpa_supplicant network interface data
  235. * @bss_obj_path: BSS object path
  236. *
  237. * Notify listeners about removing BSS
  238. */
  239. static void wpas_dbus_signal_bss_removed(struct wpa_supplicant *wpa_s,
  240. const char *bss_obj_path)
  241. {
  242. wpas_dbus_signal_bss(wpa_s, bss_obj_path, "BSSRemoved", FALSE);
  243. }
  244. /**
  245. * wpas_dbus_signal_blob - Send a blob related event signal
  246. * @wpa_s: %wpa_supplicant network interface data
  247. * @name: blob name
  248. * @sig_name: signal name - BlobAdded or BlobRemoved
  249. *
  250. * Notify listeners about event related with blob
  251. */
  252. static void wpas_dbus_signal_blob(struct wpa_supplicant *wpa_s,
  253. const char *name, const char *sig_name)
  254. {
  255. struct wpas_dbus_priv *iface;
  256. DBusMessage *msg;
  257. iface = wpa_s->global->dbus;
  258. /* Do nothing if the control interface is not turned on */
  259. if (iface == NULL || !wpa_s->dbus_new_path)
  260. return;
  261. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  262. WPAS_DBUS_NEW_IFACE_INTERFACE,
  263. sig_name);
  264. if (msg == NULL)
  265. return;
  266. if (dbus_message_append_args(msg, DBUS_TYPE_STRING, &name,
  267. DBUS_TYPE_INVALID))
  268. dbus_connection_send(iface->con, msg, NULL);
  269. else
  270. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  271. dbus_message_unref(msg);
  272. }
  273. /**
  274. * wpas_dbus_signal_blob_added - Send a blob added signal
  275. * @wpa_s: %wpa_supplicant network interface data
  276. * @name: blob name
  277. *
  278. * Notify listeners about adding a new blob
  279. */
  280. void wpas_dbus_signal_blob_added(struct wpa_supplicant *wpa_s,
  281. const char *name)
  282. {
  283. wpas_dbus_signal_blob(wpa_s, name, "BlobAdded");
  284. }
  285. /**
  286. * wpas_dbus_signal_blob_removed - Send a blob removed signal
  287. * @wpa_s: %wpa_supplicant network interface data
  288. * @name: blob name
  289. *
  290. * Notify listeners about removing blob
  291. */
  292. void wpas_dbus_signal_blob_removed(struct wpa_supplicant *wpa_s,
  293. const char *name)
  294. {
  295. wpas_dbus_signal_blob(wpa_s, name, "BlobRemoved");
  296. }
  297. /**
  298. * wpas_dbus_signal_network - Send a network related event signal
  299. * @wpa_s: %wpa_supplicant network interface data
  300. * @id: new network id
  301. * @sig_name: signal name - NetworkAdded, NetworkRemoved or NetworkSelected
  302. * @properties: determines if add second argument with object properties
  303. *
  304. * Notify listeners about event related with configured network
  305. */
  306. static void wpas_dbus_signal_network(struct wpa_supplicant *wpa_s,
  307. int id, const char *sig_name,
  308. int properties)
  309. {
  310. struct wpas_dbus_priv *iface;
  311. DBusMessage *msg;
  312. DBusMessageIter iter;
  313. char net_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  314. iface = wpa_s->global->dbus;
  315. /* Do nothing if the control interface is not turned on */
  316. if (iface == NULL || !wpa_s->dbus_new_path)
  317. return;
  318. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  319. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u",
  320. wpa_s->dbus_new_path, id);
  321. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  322. WPAS_DBUS_NEW_IFACE_INTERFACE,
  323. sig_name);
  324. if (msg == NULL)
  325. return;
  326. dbus_message_iter_init_append(msg, &iter);
  327. path = net_obj_path;
  328. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  329. &path) ||
  330. (properties &&
  331. !wpa_dbus_get_object_properties(
  332. iface, net_obj_path, WPAS_DBUS_NEW_IFACE_NETWORK,
  333. &iter)))
  334. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  335. else
  336. dbus_connection_send(iface->con, msg, NULL);
  337. dbus_message_unref(msg);
  338. }
  339. /**
  340. * wpas_dbus_signal_network_added - Send a network added signal
  341. * @wpa_s: %wpa_supplicant network interface data
  342. * @id: new network id
  343. *
  344. * Notify listeners about adding new network
  345. */
  346. static void wpas_dbus_signal_network_added(struct wpa_supplicant *wpa_s,
  347. int id)
  348. {
  349. wpas_dbus_signal_network(wpa_s, id, "NetworkAdded", TRUE);
  350. }
  351. /**
  352. * wpas_dbus_signal_network_removed - Send a network removed signal
  353. * @wpa_s: %wpa_supplicant network interface data
  354. * @id: network id
  355. *
  356. * Notify listeners about removing a network
  357. */
  358. static void wpas_dbus_signal_network_removed(struct wpa_supplicant *wpa_s,
  359. int id)
  360. {
  361. wpas_dbus_signal_network(wpa_s, id, "NetworkRemoved", FALSE);
  362. }
  363. /**
  364. * wpas_dbus_signal_network_selected - Send a network selected signal
  365. * @wpa_s: %wpa_supplicant network interface data
  366. * @id: network id
  367. *
  368. * Notify listeners about selecting a network
  369. */
  370. void wpas_dbus_signal_network_selected(struct wpa_supplicant *wpa_s, int id)
  371. {
  372. wpas_dbus_signal_network(wpa_s, id, "NetworkSelected", FALSE);
  373. }
  374. /**
  375. * wpas_dbus_signal_network_request - Indicate that additional information
  376. * (EAP password, etc.) is required to complete the association to this SSID
  377. * @wpa_s: %wpa_supplicant network interface data
  378. * @rtype: The specific additional information required
  379. * @default_text: Optional description of required information
  380. *
  381. * Request additional information or passwords to complete an association
  382. * request.
  383. */
  384. void wpas_dbus_signal_network_request(struct wpa_supplicant *wpa_s,
  385. struct wpa_ssid *ssid,
  386. enum wpa_ctrl_req_type rtype,
  387. const char *default_txt)
  388. {
  389. struct wpas_dbus_priv *iface;
  390. DBusMessage *msg;
  391. DBusMessageIter iter;
  392. char net_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  393. const char *field, *txt = NULL, *net_ptr;
  394. iface = wpa_s->global->dbus;
  395. /* Do nothing if the control interface is not turned on */
  396. if (iface == NULL || !wpa_s->dbus_new_path)
  397. return;
  398. field = wpa_supplicant_ctrl_req_to_string(rtype, default_txt, &txt);
  399. if (field == NULL)
  400. return;
  401. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  402. WPAS_DBUS_NEW_IFACE_INTERFACE,
  403. "NetworkRequest");
  404. if (msg == NULL)
  405. return;
  406. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  407. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u",
  408. wpa_s->dbus_new_path, ssid->id);
  409. net_ptr = &net_obj_path[0];
  410. dbus_message_iter_init_append(msg, &iter);
  411. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  412. &net_ptr) ||
  413. !dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &field) ||
  414. !dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &txt))
  415. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  416. else
  417. dbus_connection_send(iface->con, msg, NULL);
  418. dbus_message_unref(msg);
  419. }
  420. /**
  421. * wpas_dbus_signal_network_enabled_changed - Signals Enabled property changes
  422. * @wpa_s: %wpa_supplicant network interface data
  423. * @ssid: configured network which Enabled property has changed
  424. *
  425. * Sends PropertyChanged signals containing new value of Enabled property
  426. * for specified network
  427. */
  428. void wpas_dbus_signal_network_enabled_changed(struct wpa_supplicant *wpa_s,
  429. struct wpa_ssid *ssid)
  430. {
  431. char path[WPAS_DBUS_OBJECT_PATH_MAX];
  432. if (!wpa_s->dbus_new_path)
  433. return;
  434. os_snprintf(path, WPAS_DBUS_OBJECT_PATH_MAX,
  435. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%d",
  436. wpa_s->dbus_new_path, ssid->id);
  437. wpa_dbus_mark_property_changed(wpa_s->global->dbus, path,
  438. WPAS_DBUS_NEW_IFACE_NETWORK, "Enabled");
  439. }
  440. #ifdef CONFIG_WPS
  441. /**
  442. * wpas_dbus_signal_wps_event_pbc_overlap - Signals PBC overlap WPS event
  443. * @wpa_s: %wpa_supplicant network interface data
  444. *
  445. * Sends Event dbus signal with name "pbc-overlap" and empty dict as arguments
  446. */
  447. void wpas_dbus_signal_wps_event_pbc_overlap(struct wpa_supplicant *wpa_s)
  448. {
  449. DBusMessage *msg;
  450. DBusMessageIter iter, dict_iter;
  451. struct wpas_dbus_priv *iface;
  452. char *key = "pbc-overlap";
  453. iface = wpa_s->global->dbus;
  454. /* Do nothing if the control interface is not turned on */
  455. if (iface == NULL || !wpa_s->dbus_new_path)
  456. return;
  457. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  458. WPAS_DBUS_NEW_IFACE_WPS, "Event");
  459. if (msg == NULL)
  460. return;
  461. dbus_message_iter_init_append(msg, &iter);
  462. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &key) ||
  463. !wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  464. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  465. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  466. else
  467. dbus_connection_send(iface->con, msg, NULL);
  468. dbus_message_unref(msg);
  469. }
  470. /**
  471. * wpas_dbus_signal_wps_event_success - Signals Success WPS event
  472. * @wpa_s: %wpa_supplicant network interface data
  473. *
  474. * Sends Event dbus signal with name "success" and empty dict as arguments
  475. */
  476. void wpas_dbus_signal_wps_event_success(struct wpa_supplicant *wpa_s)
  477. {
  478. DBusMessage *msg;
  479. DBusMessageIter iter, dict_iter;
  480. struct wpas_dbus_priv *iface;
  481. char *key = "success";
  482. iface = wpa_s->global->dbus;
  483. /* Do nothing if the control interface is not turned on */
  484. if (iface == NULL || !wpa_s->dbus_new_path)
  485. return;
  486. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  487. WPAS_DBUS_NEW_IFACE_WPS, "Event");
  488. if (msg == NULL)
  489. return;
  490. dbus_message_iter_init_append(msg, &iter);
  491. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &key) ||
  492. !wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  493. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  494. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  495. else
  496. dbus_connection_send(iface->con, msg, NULL);
  497. dbus_message_unref(msg);
  498. }
  499. /**
  500. * wpas_dbus_signal_wps_event_fail - Signals Fail WPS event
  501. * @wpa_s: %wpa_supplicant network interface data
  502. * @fail: WPS failure information
  503. *
  504. * Sends Event dbus signal with name "fail" and dictionary containing
  505. * "msg field with fail message number (int32) as arguments
  506. */
  507. void wpas_dbus_signal_wps_event_fail(struct wpa_supplicant *wpa_s,
  508. struct wps_event_fail *fail)
  509. {
  510. DBusMessage *msg;
  511. DBusMessageIter iter, dict_iter;
  512. struct wpas_dbus_priv *iface;
  513. char *key = "fail";
  514. iface = wpa_s->global->dbus;
  515. /* Do nothing if the control interface is not turned on */
  516. if (iface == NULL || !wpa_s->dbus_new_path)
  517. return;
  518. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  519. WPAS_DBUS_NEW_IFACE_WPS, "Event");
  520. if (msg == NULL)
  521. return;
  522. dbus_message_iter_init_append(msg, &iter);
  523. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &key) ||
  524. !wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  525. !wpa_dbus_dict_append_int32(&dict_iter, "msg", fail->msg) ||
  526. !wpa_dbus_dict_append_int32(&dict_iter, "config_error",
  527. fail->config_error) ||
  528. !wpa_dbus_dict_append_int32(&dict_iter, "error_indication",
  529. fail->error_indication) ||
  530. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  531. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  532. else
  533. dbus_connection_send(iface->con, msg, NULL);
  534. dbus_message_unref(msg);
  535. }
  536. /**
  537. * wpas_dbus_signal_wps_event_m2d - Signals M2D WPS event
  538. * @wpa_s: %wpa_supplicant network interface data
  539. * @m2d: M2D event data information
  540. *
  541. * Sends Event dbus signal with name "m2d" and dictionary containing
  542. * fields of wps_event_m2d structure.
  543. */
  544. void wpas_dbus_signal_wps_event_m2d(struct wpa_supplicant *wpa_s,
  545. struct wps_event_m2d *m2d)
  546. {
  547. DBusMessage *msg;
  548. DBusMessageIter iter, dict_iter;
  549. struct wpas_dbus_priv *iface;
  550. char *key = "m2d";
  551. iface = wpa_s->global->dbus;
  552. /* Do nothing if the control interface is not turned on */
  553. if (iface == NULL || !wpa_s->dbus_new_path)
  554. return;
  555. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  556. WPAS_DBUS_NEW_IFACE_WPS, "Event");
  557. if (msg == NULL)
  558. return;
  559. dbus_message_iter_init_append(msg, &iter);
  560. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &key) ||
  561. !wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  562. !wpa_dbus_dict_append_uint16(&dict_iter, "config_methods",
  563. m2d->config_methods) ||
  564. !wpa_dbus_dict_append_byte_array(&dict_iter, "manufacturer",
  565. (const char *) m2d->manufacturer,
  566. m2d->manufacturer_len) ||
  567. !wpa_dbus_dict_append_byte_array(&dict_iter, "model_name",
  568. (const char *) m2d->model_name,
  569. m2d->model_name_len) ||
  570. !wpa_dbus_dict_append_byte_array(&dict_iter, "model_number",
  571. (const char *) m2d->model_number,
  572. m2d->model_number_len) ||
  573. !wpa_dbus_dict_append_byte_array(&dict_iter, "serial_number",
  574. (const char *)
  575. m2d->serial_number,
  576. m2d->serial_number_len) ||
  577. !wpa_dbus_dict_append_byte_array(&dict_iter, "dev_name",
  578. (const char *) m2d->dev_name,
  579. m2d->dev_name_len) ||
  580. !wpa_dbus_dict_append_byte_array(&dict_iter, "primary_dev_type",
  581. (const char *)
  582. m2d->primary_dev_type, 8) ||
  583. !wpa_dbus_dict_append_uint16(&dict_iter, "config_error",
  584. m2d->config_error) ||
  585. !wpa_dbus_dict_append_uint16(&dict_iter, "dev_password_id",
  586. m2d->dev_password_id) ||
  587. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  588. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  589. else
  590. dbus_connection_send(iface->con, msg, NULL);
  591. dbus_message_unref(msg);
  592. }
  593. /**
  594. * wpas_dbus_signal_wps_cred - Signals new credentials
  595. * @wpa_s: %wpa_supplicant network interface data
  596. * @cred: WPS Credential information
  597. *
  598. * Sends signal with credentials in directory argument
  599. */
  600. void wpas_dbus_signal_wps_cred(struct wpa_supplicant *wpa_s,
  601. const struct wps_credential *cred)
  602. {
  603. DBusMessage *msg;
  604. DBusMessageIter iter, dict_iter;
  605. struct wpas_dbus_priv *iface;
  606. char *auth_type[5]; /* we have five possible authentication types */
  607. int at_num = 0;
  608. char *encr_type[3]; /* we have three possible encryption types */
  609. int et_num = 0;
  610. iface = wpa_s->global->dbus;
  611. /* Do nothing if the control interface is not turned on */
  612. if (iface == NULL || !wpa_s->dbus_new_path)
  613. return;
  614. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  615. WPAS_DBUS_NEW_IFACE_WPS,
  616. "Credentials");
  617. if (msg == NULL)
  618. return;
  619. dbus_message_iter_init_append(msg, &iter);
  620. if (!wpa_dbus_dict_open_write(&iter, &dict_iter))
  621. goto nomem;
  622. if (cred->auth_type & WPS_AUTH_OPEN)
  623. auth_type[at_num++] = "open";
  624. if (cred->auth_type & WPS_AUTH_WPAPSK)
  625. auth_type[at_num++] = "wpa-psk";
  626. if (cred->auth_type & WPS_AUTH_WPA)
  627. auth_type[at_num++] = "wpa-eap";
  628. if (cred->auth_type & WPS_AUTH_WPA2)
  629. auth_type[at_num++] = "wpa2-eap";
  630. if (cred->auth_type & WPS_AUTH_WPA2PSK)
  631. auth_type[at_num++] = "wpa2-psk";
  632. if (cred->encr_type & WPS_ENCR_NONE)
  633. encr_type[et_num++] = "none";
  634. if (cred->encr_type & WPS_ENCR_TKIP)
  635. encr_type[et_num++] = "tkip";
  636. if (cred->encr_type & WPS_ENCR_AES)
  637. encr_type[et_num++] = "aes";
  638. if ((wpa_s->current_ssid &&
  639. !wpa_dbus_dict_append_byte_array(
  640. &dict_iter, "BSSID",
  641. (const char *) wpa_s->current_ssid->bssid, ETH_ALEN)) ||
  642. !wpa_dbus_dict_append_byte_array(&dict_iter, "SSID",
  643. (const char *) cred->ssid,
  644. cred->ssid_len) ||
  645. !wpa_dbus_dict_append_string_array(&dict_iter, "AuthType",
  646. (const char **) auth_type,
  647. at_num) ||
  648. !wpa_dbus_dict_append_string_array(&dict_iter, "EncrType",
  649. (const char **) encr_type,
  650. et_num) ||
  651. !wpa_dbus_dict_append_byte_array(&dict_iter, "Key",
  652. (const char *) cred->key,
  653. cred->key_len) ||
  654. !wpa_dbus_dict_append_uint32(&dict_iter, "KeyIndex",
  655. cred->key_idx) ||
  656. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  657. goto nomem;
  658. dbus_connection_send(iface->con, msg, NULL);
  659. nomem:
  660. dbus_message_unref(msg);
  661. }
  662. #endif /* CONFIG_WPS */
  663. #ifdef CONFIG_MESH
  664. void wpas_dbus_signal_mesh_group_started(struct wpa_supplicant *wpa_s,
  665. struct wpa_ssid *ssid)
  666. {
  667. struct wpas_dbus_priv *iface;
  668. DBusMessage *msg;
  669. DBusMessageIter iter, dict_iter;
  670. iface = wpa_s->global->dbus;
  671. /* Do nothing if the control interface is not turned on */
  672. if (!iface || !wpa_s->dbus_new_path)
  673. return;
  674. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  675. WPAS_DBUS_NEW_IFACE_MESH,
  676. "MeshGroupStarted");
  677. if (!msg)
  678. return;
  679. dbus_message_iter_init_append(msg, &iter);
  680. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  681. !wpa_dbus_dict_append_byte_array(&dict_iter, "SSID",
  682. (const char *) ssid->ssid,
  683. ssid->ssid_len) ||
  684. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  685. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  686. else
  687. dbus_connection_send(iface->con, msg, NULL);
  688. dbus_message_unref(msg);
  689. }
  690. void wpas_dbus_signal_mesh_group_removed(struct wpa_supplicant *wpa_s,
  691. const u8 *meshid, u8 meshid_len,
  692. int reason)
  693. {
  694. struct wpas_dbus_priv *iface;
  695. DBusMessage *msg;
  696. DBusMessageIter iter, dict_iter;
  697. iface = wpa_s->global->dbus;
  698. /* Do nothing if the control interface is not turned on */
  699. if (!iface || !wpa_s->dbus_new_path)
  700. return;
  701. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  702. WPAS_DBUS_NEW_IFACE_MESH,
  703. "MeshGroupRemoved");
  704. if (!msg)
  705. return;
  706. dbus_message_iter_init_append(msg, &iter);
  707. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  708. !wpa_dbus_dict_append_byte_array(&dict_iter, "SSID",
  709. (const char *) meshid,
  710. meshid_len) ||
  711. !wpa_dbus_dict_append_int32(&dict_iter, "DisconnectReason",
  712. reason) ||
  713. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  714. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  715. else
  716. dbus_connection_send(iface->con, msg, NULL);
  717. dbus_message_unref(msg);
  718. }
  719. void wpas_dbus_signal_mesh_peer_connected(struct wpa_supplicant *wpa_s,
  720. const u8 *peer_addr)
  721. {
  722. struct wpas_dbus_priv *iface;
  723. DBusMessage *msg;
  724. DBusMessageIter iter, dict_iter;
  725. iface = wpa_s->global->dbus;
  726. /* Do nothing if the control interface is not turned on */
  727. if (!iface || !wpa_s->dbus_new_path)
  728. return;
  729. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  730. WPAS_DBUS_NEW_IFACE_MESH,
  731. "MeshPeerConnected");
  732. if (!msg)
  733. return;
  734. dbus_message_iter_init_append(msg, &iter);
  735. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  736. !wpa_dbus_dict_append_byte_array(&dict_iter, "PeerAddress",
  737. (const char *) peer_addr,
  738. ETH_ALEN) ||
  739. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  740. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  741. else
  742. dbus_connection_send(iface->con, msg, NULL);
  743. dbus_message_unref(msg);
  744. }
  745. void wpas_dbus_signal_mesh_peer_disconnected(struct wpa_supplicant *wpa_s,
  746. const u8 *peer_addr, int reason)
  747. {
  748. struct wpas_dbus_priv *iface;
  749. DBusMessage *msg;
  750. DBusMessageIter iter, dict_iter;
  751. iface = wpa_s->global->dbus;
  752. /* Do nothing if the control interface is not turned on */
  753. if (!iface || !wpa_s->dbus_new_path)
  754. return;
  755. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  756. WPAS_DBUS_NEW_IFACE_MESH,
  757. "MeshPeerDisconnected");
  758. if (!msg)
  759. return;
  760. dbus_message_iter_init_append(msg, &iter);
  761. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  762. !wpa_dbus_dict_append_byte_array(&dict_iter, "PeerAddress",
  763. (const char *) peer_addr,
  764. ETH_ALEN) ||
  765. !wpa_dbus_dict_append_int32(&dict_iter, "DisconnectReason",
  766. reason) ||
  767. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  768. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  769. else
  770. dbus_connection_send(iface->con, msg, NULL);
  771. dbus_message_unref(msg);
  772. }
  773. #endif /* CONFIG_MESH */
  774. void wpas_dbus_signal_certification(struct wpa_supplicant *wpa_s,
  775. int depth, const char *subject,
  776. const char *altsubject[],
  777. int num_altsubject,
  778. const char *cert_hash,
  779. const struct wpabuf *cert)
  780. {
  781. struct wpas_dbus_priv *iface;
  782. DBusMessage *msg;
  783. DBusMessageIter iter, dict_iter;
  784. iface = wpa_s->global->dbus;
  785. /* Do nothing if the control interface is not turned on */
  786. if (iface == NULL || !wpa_s->dbus_new_path)
  787. return;
  788. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  789. WPAS_DBUS_NEW_IFACE_INTERFACE,
  790. "Certification");
  791. if (msg == NULL)
  792. return;
  793. dbus_message_iter_init_append(msg, &iter);
  794. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  795. !wpa_dbus_dict_append_uint32(&dict_iter, "depth", depth) ||
  796. !wpa_dbus_dict_append_string(&dict_iter, "subject", subject) ||
  797. (altsubject && num_altsubject &&
  798. !wpa_dbus_dict_append_string_array(&dict_iter, "altsubject",
  799. altsubject, num_altsubject)) ||
  800. (cert_hash &&
  801. !wpa_dbus_dict_append_string(&dict_iter, "cert_hash",
  802. cert_hash)) ||
  803. (cert &&
  804. !wpa_dbus_dict_append_byte_array(&dict_iter, "cert",
  805. wpabuf_head(cert),
  806. wpabuf_len(cert))) ||
  807. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  808. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  809. else
  810. dbus_connection_send(iface->con, msg, NULL);
  811. dbus_message_unref(msg);
  812. }
  813. void wpas_dbus_signal_eap_status(struct wpa_supplicant *wpa_s,
  814. const char *status, const char *parameter)
  815. {
  816. struct wpas_dbus_priv *iface;
  817. DBusMessage *msg;
  818. DBusMessageIter iter;
  819. iface = wpa_s->global->dbus;
  820. /* Do nothing if the control interface is not turned on */
  821. if (iface == NULL || !wpa_s->dbus_new_path)
  822. return;
  823. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  824. WPAS_DBUS_NEW_IFACE_INTERFACE,
  825. "EAP");
  826. if (msg == NULL)
  827. return;
  828. dbus_message_iter_init_append(msg, &iter);
  829. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &status) ||
  830. !dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING,
  831. &parameter))
  832. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  833. else
  834. dbus_connection_send(iface->con, msg, NULL);
  835. dbus_message_unref(msg);
  836. }
  837. /**
  838. * wpas_dbus_signal_sta - Send a station related event signal
  839. * @wpa_s: %wpa_supplicant network interface data
  840. * @sta: station mac address
  841. * @sig_name: signal name - StaAuthorized or StaDeauthorized
  842. *
  843. * Notify listeners about event related with station
  844. */
  845. static void wpas_dbus_signal_sta(struct wpa_supplicant *wpa_s,
  846. const u8 *sta, const char *sig_name)
  847. {
  848. struct wpas_dbus_priv *iface;
  849. DBusMessage *msg;
  850. char sta_mac[WPAS_DBUS_OBJECT_PATH_MAX];
  851. char *dev_mac;
  852. os_snprintf(sta_mac, WPAS_DBUS_OBJECT_PATH_MAX, MACSTR, MAC2STR(sta));
  853. dev_mac = sta_mac;
  854. iface = wpa_s->global->dbus;
  855. /* Do nothing if the control interface is not turned on */
  856. if (iface == NULL || !wpa_s->dbus_new_path)
  857. return;
  858. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  859. WPAS_DBUS_NEW_IFACE_INTERFACE, sig_name);
  860. if (msg == NULL)
  861. return;
  862. if (dbus_message_append_args(msg, DBUS_TYPE_STRING, &dev_mac,
  863. DBUS_TYPE_INVALID))
  864. dbus_connection_send(iface->con, msg, NULL);
  865. else
  866. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  867. dbus_message_unref(msg);
  868. wpa_printf(MSG_DEBUG, "dbus: Station MAC address '%s' '%s'",
  869. sta_mac, sig_name);
  870. }
  871. /**
  872. * wpas_dbus_signal_sta_authorized - Send a STA authorized signal
  873. * @wpa_s: %wpa_supplicant network interface data
  874. * @sta: station mac address
  875. *
  876. * Notify listeners a new station has been authorized
  877. */
  878. void wpas_dbus_signal_sta_authorized(struct wpa_supplicant *wpa_s,
  879. const u8 *sta)
  880. {
  881. wpas_dbus_signal_sta(wpa_s, sta, "StaAuthorized");
  882. }
  883. /**
  884. * wpas_dbus_signal_sta_deauthorized - Send a STA deauthorized signal
  885. * @wpa_s: %wpa_supplicant network interface data
  886. * @sta: station mac address
  887. *
  888. * Notify listeners a station has been deauthorized
  889. */
  890. void wpas_dbus_signal_sta_deauthorized(struct wpa_supplicant *wpa_s,
  891. const u8 *sta)
  892. {
  893. wpas_dbus_signal_sta(wpa_s, sta, "StaDeauthorized");
  894. }
  895. #ifdef CONFIG_P2P
  896. /**
  897. * wpas_dbus_signal_p2p_group_removed - Signals P2P group was removed
  898. * @wpa_s: %wpa_supplicant network interface data
  899. * @role: role of this device (client or GO)
  900. * Sends signal with i/f name and role as string arguments
  901. */
  902. void wpas_dbus_signal_p2p_group_removed(struct wpa_supplicant *wpa_s,
  903. const char *role)
  904. {
  905. DBusMessage *msg;
  906. DBusMessageIter iter, dict_iter;
  907. struct wpas_dbus_priv *iface = wpa_s->global->dbus;
  908. struct wpa_supplicant *parent;
  909. /* Do nothing if the control interface is not turned on */
  910. if (iface == NULL)
  911. return;
  912. parent = wpa_s->parent;
  913. if (parent->p2p_mgmt)
  914. parent = parent->parent;
  915. if (!wpa_s->dbus_groupobj_path || !wpa_s->dbus_new_path ||
  916. !parent->dbus_new_path)
  917. return;
  918. msg = dbus_message_new_signal(parent->dbus_new_path,
  919. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  920. "GroupFinished");
  921. if (msg == NULL)
  922. return;
  923. dbus_message_iter_init_append(msg, &iter);
  924. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  925. !wpa_dbus_dict_append_object_path(&dict_iter,
  926. "interface_object",
  927. wpa_s->dbus_new_path) ||
  928. !wpa_dbus_dict_append_string(&dict_iter, "role", role) ||
  929. !wpa_dbus_dict_append_object_path(&dict_iter, "group_object",
  930. wpa_s->dbus_groupobj_path) ||
  931. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  932. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  933. else
  934. dbus_connection_send(iface->con, msg, NULL);
  935. dbus_message_unref(msg);
  936. }
  937. /**
  938. * wpas_dbus_signal_p2p_provision_discovery - Signals various PD events
  939. *
  940. * @dev_addr - who sent the request or responded to our request.
  941. * @request - Will be 1 if request, 0 for response.
  942. * @status - valid only in case of response
  943. * @config_methods - wps config methods
  944. * @generated_pin - pin to be displayed in case of WPS_CONFIG_DISPLAY method
  945. *
  946. * Sends following provision discovery related events:
  947. * ProvisionDiscoveryRequestDisplayPin
  948. * ProvisionDiscoveryResponseDisplayPin
  949. * ProvisionDiscoveryRequestEnterPin
  950. * ProvisionDiscoveryResponseEnterPin
  951. * ProvisionDiscoveryPBCRequest
  952. * ProvisionDiscoveryPBCResponse
  953. *
  954. * TODO::
  955. * ProvisionDiscoveryFailure (timeout case)
  956. */
  957. void wpas_dbus_signal_p2p_provision_discovery(struct wpa_supplicant *wpa_s,
  958. const u8 *dev_addr, int request,
  959. enum p2p_prov_disc_status status,
  960. u16 config_methods,
  961. unsigned int generated_pin)
  962. {
  963. DBusMessage *msg;
  964. DBusMessageIter iter;
  965. struct wpas_dbus_priv *iface;
  966. char *_signal;
  967. int add_pin = 0;
  968. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  969. int error_ret = 1;
  970. char pin[9], *p_pin = NULL;
  971. iface = wpa_s->global->dbus;
  972. /* Do nothing if the control interface is not turned on */
  973. if (iface == NULL)
  974. return;
  975. if (wpa_s->p2p_mgmt)
  976. wpa_s = wpa_s->parent;
  977. if (!wpa_s->dbus_new_path)
  978. return;
  979. if (request || !status) {
  980. if (config_methods & WPS_CONFIG_DISPLAY)
  981. _signal = request ?
  982. "ProvisionDiscoveryRequestDisplayPin" :
  983. "ProvisionDiscoveryResponseEnterPin";
  984. else if (config_methods & WPS_CONFIG_KEYPAD)
  985. _signal = request ?
  986. "ProvisionDiscoveryRequestEnterPin" :
  987. "ProvisionDiscoveryResponseDisplayPin";
  988. else if (config_methods & WPS_CONFIG_PUSHBUTTON)
  989. _signal = request ? "ProvisionDiscoveryPBCRequest" :
  990. "ProvisionDiscoveryPBCResponse";
  991. else
  992. return; /* Unknown or un-supported method */
  993. } else {
  994. /* Explicit check for failure response */
  995. _signal = "ProvisionDiscoveryFailure";
  996. }
  997. add_pin = ((request && (config_methods & WPS_CONFIG_DISPLAY)) ||
  998. (!request && !status &&
  999. (config_methods & WPS_CONFIG_KEYPAD)));
  1000. if (add_pin) {
  1001. os_snprintf(pin, sizeof(pin), "%08d", generated_pin);
  1002. p_pin = pin;
  1003. }
  1004. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1005. WPAS_DBUS_NEW_IFACE_P2PDEVICE, _signal);
  1006. if (msg == NULL)
  1007. return;
  1008. /* Check if this is a known peer */
  1009. if (!p2p_peer_known(wpa_s->global->p2p, dev_addr))
  1010. goto error;
  1011. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1012. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
  1013. COMPACT_MACSTR,
  1014. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  1015. path = peer_obj_path;
  1016. dbus_message_iter_init_append(msg, &iter);
  1017. if (!dbus_message_iter_append_basic(&iter,
  1018. DBUS_TYPE_OBJECT_PATH,
  1019. &path))
  1020. goto error;
  1021. if (!request && status)
  1022. /* Attach status to ProvisionDiscoveryFailure */
  1023. error_ret = !dbus_message_iter_append_basic(&iter,
  1024. DBUS_TYPE_INT32,
  1025. &status);
  1026. else
  1027. error_ret = (add_pin &&
  1028. !dbus_message_iter_append_basic(&iter,
  1029. DBUS_TYPE_STRING,
  1030. &p_pin));
  1031. error:
  1032. if (!error_ret)
  1033. dbus_connection_send(iface->con, msg, NULL);
  1034. else
  1035. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1036. dbus_message_unref(msg);
  1037. }
  1038. /**
  1039. * wpas_dbus_signal_p2p_go_neg_req - Signal P2P GO Negotiation Request RX
  1040. * @wpa_s: %wpa_supplicant network interface data
  1041. * @src: Source address of the message triggering this notification
  1042. * @dev_passwd_id: WPS Device Password Id
  1043. * @go_intent: Peer's GO Intent value
  1044. *
  1045. * Sends signal to notify that a peer P2P Device is requesting group owner
  1046. * negotiation with us.
  1047. */
  1048. void wpas_dbus_signal_p2p_go_neg_req(struct wpa_supplicant *wpa_s,
  1049. const u8 *src, u16 dev_passwd_id,
  1050. u8 go_intent)
  1051. {
  1052. DBusMessage *msg;
  1053. DBusMessageIter iter;
  1054. struct wpas_dbus_priv *iface;
  1055. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1056. iface = wpa_s->global->dbus;
  1057. /* Do nothing if the control interface is not turned on */
  1058. if (iface == NULL)
  1059. return;
  1060. if (wpa_s->p2p_mgmt)
  1061. wpa_s = wpa_s->parent;
  1062. if (!wpa_s->dbus_new_path)
  1063. return;
  1064. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1065. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  1066. wpa_s->dbus_new_path, MAC2STR(src));
  1067. path = peer_obj_path;
  1068. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1069. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1070. "GONegotiationRequest");
  1071. if (msg == NULL)
  1072. return;
  1073. dbus_message_iter_init_append(msg, &iter);
  1074. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  1075. &path) ||
  1076. !dbus_message_iter_append_basic(&iter, DBUS_TYPE_UINT16,
  1077. &dev_passwd_id) ||
  1078. !dbus_message_iter_append_basic(&iter, DBUS_TYPE_BYTE,
  1079. &go_intent))
  1080. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1081. else
  1082. dbus_connection_send(iface->con, msg, NULL);
  1083. dbus_message_unref(msg);
  1084. }
  1085. static int wpas_dbus_get_group_obj_path(struct wpa_supplicant *wpa_s,
  1086. const struct wpa_ssid *ssid,
  1087. char *group_obj_path)
  1088. {
  1089. char group_name[3];
  1090. if (!wpa_s->dbus_new_path ||
  1091. os_memcmp(ssid->ssid, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN))
  1092. return -1;
  1093. os_memcpy(group_name, ssid->ssid + P2P_WILDCARD_SSID_LEN, 2);
  1094. group_name[2] = '\0';
  1095. os_snprintf(group_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1096. "%s/" WPAS_DBUS_NEW_P2P_GROUPS_PART "/%s",
  1097. wpa_s->dbus_new_path, group_name);
  1098. return 0;
  1099. }
  1100. struct group_changed_data {
  1101. struct wpa_supplicant *wpa_s;
  1102. struct p2p_peer_info *info;
  1103. };
  1104. static int match_group_where_peer_is_client(struct p2p_group *group,
  1105. void *user_data)
  1106. {
  1107. struct group_changed_data *data = user_data;
  1108. const struct p2p_group_config *cfg;
  1109. struct wpa_supplicant *wpa_s_go;
  1110. if (!p2p_group_is_client_connected(group, data->info->p2p_device_addr))
  1111. return 1;
  1112. cfg = p2p_group_get_config(group);
  1113. wpa_s_go = wpas_get_p2p_go_iface(data->wpa_s, cfg->ssid,
  1114. cfg->ssid_len);
  1115. if (wpa_s_go != NULL && wpa_s_go == data->wpa_s) {
  1116. wpas_dbus_signal_peer_groups_changed(
  1117. data->wpa_s->p2pdev, data->info->p2p_device_addr);
  1118. return 0;
  1119. }
  1120. return 1;
  1121. }
  1122. static void signal_peer_groups_changed(struct p2p_peer_info *info,
  1123. void *user_data)
  1124. {
  1125. struct group_changed_data *data = user_data;
  1126. struct wpa_supplicant *wpa_s_go;
  1127. wpa_s_go = wpas_get_p2p_client_iface(data->wpa_s,
  1128. info->p2p_device_addr);
  1129. if (wpa_s_go != NULL && wpa_s_go == data->wpa_s) {
  1130. wpas_dbus_signal_peer_groups_changed(data->wpa_s->p2pdev,
  1131. info->p2p_device_addr);
  1132. return;
  1133. }
  1134. data->info = info;
  1135. p2p_loop_on_all_groups(data->wpa_s->global->p2p,
  1136. match_group_where_peer_is_client, data);
  1137. data->info = NULL;
  1138. }
  1139. static void peer_groups_changed(struct wpa_supplicant *wpa_s)
  1140. {
  1141. struct group_changed_data data;
  1142. os_memset(&data, 0, sizeof(data));
  1143. data.wpa_s = wpa_s;
  1144. p2p_loop_on_known_peers(wpa_s->global->p2p,
  1145. signal_peer_groups_changed, &data);
  1146. }
  1147. /**
  1148. * wpas_dbus_signal_p2p_group_started - Signals P2P group has
  1149. * started. Emitted when a group is successfully started
  1150. * irrespective of the role (client/GO) of the current device
  1151. *
  1152. * @wpa_s: %wpa_supplicant network interface data
  1153. * @client: this device is P2P client
  1154. * @persistent: 0 - non persistent group, 1 - persistent group
  1155. * @ip: When group role is client, it contains local IP address, netmask, and
  1156. * GO's IP address, if assigned; otherwise, NULL
  1157. */
  1158. void wpas_dbus_signal_p2p_group_started(struct wpa_supplicant *wpa_s,
  1159. int client, int persistent,
  1160. const u8 *ip)
  1161. {
  1162. DBusMessage *msg;
  1163. DBusMessageIter iter, dict_iter;
  1164. struct wpas_dbus_priv *iface;
  1165. struct wpa_supplicant *parent;
  1166. parent = wpa_s->parent;
  1167. if (parent->p2p_mgmt)
  1168. parent = parent->parent;
  1169. iface = parent->global->dbus;
  1170. /* Do nothing if the control interface is not turned on */
  1171. if (iface == NULL || !parent->dbus_new_path || !wpa_s->dbus_new_path)
  1172. return;
  1173. if (wpa_s->dbus_groupobj_path == NULL)
  1174. return;
  1175. /* New interface has been created for this group */
  1176. msg = dbus_message_new_signal(parent->dbus_new_path,
  1177. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1178. "GroupStarted");
  1179. if (msg == NULL)
  1180. return;
  1181. dbus_message_iter_init_append(msg, &iter);
  1182. /*
  1183. * In case the device supports creating a separate interface the
  1184. * DBus client will need to know the object path for the interface
  1185. * object this group was created on, so include it here.
  1186. */
  1187. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  1188. !wpa_dbus_dict_append_object_path(&dict_iter,
  1189. "interface_object",
  1190. wpa_s->dbus_new_path) ||
  1191. !wpa_dbus_dict_append_string(&dict_iter, "role",
  1192. client ? "client" : "GO") ||
  1193. !wpa_dbus_dict_append_bool(&dict_iter, "persistent", persistent) ||
  1194. !wpa_dbus_dict_append_object_path(&dict_iter, "group_object",
  1195. wpa_s->dbus_groupobj_path) ||
  1196. (ip &&
  1197. (!wpa_dbus_dict_append_byte_array(&dict_iter, "IpAddr",
  1198. (char *) ip, 4) ||
  1199. !wpa_dbus_dict_append_byte_array(&dict_iter, "IpAddrMask",
  1200. (char *) ip + 4, 4) ||
  1201. !wpa_dbus_dict_append_byte_array(&dict_iter, "IpAddrGo",
  1202. (char *) ip + 8, 4))) ||
  1203. !wpa_dbus_dict_close_write(&iter, &dict_iter)) {
  1204. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1205. } else {
  1206. dbus_connection_send(iface->con, msg, NULL);
  1207. if (client)
  1208. peer_groups_changed(wpa_s);
  1209. }
  1210. dbus_message_unref(msg);
  1211. }
  1212. /**
  1213. * wpas_dbus_signal_p2p_go_neg_resp - Emit GONegotiation Success/Failure signal
  1214. * @wpa_s: %wpa_supplicant network interface data
  1215. * @res: Result of the GO Neg Request
  1216. */
  1217. void wpas_dbus_signal_p2p_go_neg_resp(struct wpa_supplicant *wpa_s,
  1218. struct p2p_go_neg_results *res)
  1219. {
  1220. DBusMessage *msg;
  1221. DBusMessageIter iter, dict_iter;
  1222. DBusMessageIter iter_dict_entry, iter_dict_val, iter_dict_array;
  1223. struct wpas_dbus_priv *iface;
  1224. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1225. dbus_int32_t freqs[P2P_MAX_CHANNELS];
  1226. dbus_int32_t *f_array = freqs;
  1227. iface = wpa_s->global->dbus;
  1228. if (wpa_s->p2p_mgmt)
  1229. wpa_s = wpa_s->parent;
  1230. os_memset(freqs, 0, sizeof(freqs));
  1231. /* Do nothing if the control interface is not turned on */
  1232. if (iface == NULL || !wpa_s->dbus_new_path)
  1233. return;
  1234. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1235. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  1236. wpa_s->dbus_new_path, MAC2STR(res->peer_device_addr));
  1237. path = peer_obj_path;
  1238. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1239. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1240. res->status ? "GONegotiationFailure" :
  1241. "GONegotiationSuccess");
  1242. if (msg == NULL)
  1243. return;
  1244. dbus_message_iter_init_append(msg, &iter);
  1245. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  1246. !wpa_dbus_dict_append_object_path(&dict_iter, "peer_object",
  1247. path) ||
  1248. !wpa_dbus_dict_append_int32(&dict_iter, "status", res->status))
  1249. goto err;
  1250. if (!res->status) {
  1251. int i = 0;
  1252. int freq_list_num = 0;
  1253. if ((res->role_go &&
  1254. !wpa_dbus_dict_append_string(&dict_iter, "passphrase",
  1255. res->passphrase)) ||
  1256. !wpa_dbus_dict_append_string(&dict_iter, "role_go",
  1257. res->role_go ? "GO" :
  1258. "client") ||
  1259. !wpa_dbus_dict_append_int32(&dict_iter, "frequency",
  1260. res->freq) ||
  1261. !wpa_dbus_dict_append_byte_array(&dict_iter, "ssid",
  1262. (const char *) res->ssid,
  1263. res->ssid_len) ||
  1264. !wpa_dbus_dict_append_byte_array(&dict_iter,
  1265. "peer_device_addr",
  1266. (const char *)
  1267. res->peer_device_addr,
  1268. ETH_ALEN) ||
  1269. !wpa_dbus_dict_append_byte_array(&dict_iter,
  1270. "peer_interface_addr",
  1271. (const char *)
  1272. res->peer_interface_addr,
  1273. ETH_ALEN) ||
  1274. !wpa_dbus_dict_append_string(&dict_iter, "wps_method",
  1275. p2p_wps_method_text(
  1276. res->wps_method)))
  1277. goto err;
  1278. for (i = 0; i < P2P_MAX_CHANNELS; i++) {
  1279. if (res->freq_list[i]) {
  1280. freqs[i] = res->freq_list[i];
  1281. freq_list_num++;
  1282. }
  1283. }
  1284. if (!wpa_dbus_dict_begin_array(&dict_iter,
  1285. "frequency_list",
  1286. DBUS_TYPE_INT32_AS_STRING,
  1287. &iter_dict_entry,
  1288. &iter_dict_val,
  1289. &iter_dict_array) ||
  1290. !dbus_message_iter_append_fixed_array(&iter_dict_array,
  1291. DBUS_TYPE_INT32,
  1292. &f_array,
  1293. freq_list_num) ||
  1294. !wpa_dbus_dict_end_array(&dict_iter,
  1295. &iter_dict_entry,
  1296. &iter_dict_val,
  1297. &iter_dict_array) ||
  1298. !wpa_dbus_dict_append_int32(&dict_iter, "persistent_group",
  1299. res->persistent_group) ||
  1300. !wpa_dbus_dict_append_uint32(&dict_iter,
  1301. "peer_config_timeout",
  1302. res->peer_config_timeout))
  1303. goto err;
  1304. }
  1305. if (!wpa_dbus_dict_close_write(&iter, &dict_iter))
  1306. goto err;
  1307. dbus_connection_send(iface->con, msg, NULL);
  1308. err:
  1309. dbus_message_unref(msg);
  1310. }
  1311. /**
  1312. * wpas_dbus_signal_p2p_invitation_result - Emit InvitationResult signal
  1313. * @wpa_s: %wpa_supplicant network interface data
  1314. * @status: Status of invitation process
  1315. * @bssid: Basic Service Set Identifier
  1316. */
  1317. void wpas_dbus_signal_p2p_invitation_result(struct wpa_supplicant *wpa_s,
  1318. int status, const u8 *bssid)
  1319. {
  1320. DBusMessage *msg;
  1321. DBusMessageIter iter, dict_iter;
  1322. struct wpas_dbus_priv *iface;
  1323. wpa_printf(MSG_DEBUG, "%s", __func__);
  1324. iface = wpa_s->global->dbus;
  1325. /* Do nothing if the control interface is not turned on */
  1326. if (iface == NULL)
  1327. return;
  1328. if (wpa_s->p2p_mgmt)
  1329. wpa_s = wpa_s->parent;
  1330. if (!wpa_s->dbus_new_path)
  1331. return;
  1332. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1333. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1334. "InvitationResult");
  1335. if (msg == NULL)
  1336. return;
  1337. dbus_message_iter_init_append(msg, &iter);
  1338. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  1339. !wpa_dbus_dict_append_int32(&dict_iter, "status", status) ||
  1340. (bssid &&
  1341. !wpa_dbus_dict_append_byte_array(&dict_iter, "BSSID",
  1342. (const char *) bssid,
  1343. ETH_ALEN)) ||
  1344. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  1345. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1346. else
  1347. dbus_connection_send(iface->con, msg, NULL);
  1348. dbus_message_unref(msg);
  1349. }
  1350. /**
  1351. *
  1352. * Method to emit a signal for a peer joining the group.
  1353. * The signal will carry path to the group member object
  1354. * constructed using p2p i/f addr used for connecting.
  1355. *
  1356. * @wpa_s: %wpa_supplicant network interface data
  1357. * @peer_addr: P2P Device Address of the peer joining the group
  1358. */
  1359. void wpas_dbus_signal_p2p_peer_joined(struct wpa_supplicant *wpa_s,
  1360. const u8 *peer_addr)
  1361. {
  1362. struct wpas_dbus_priv *iface;
  1363. DBusMessage *msg;
  1364. DBusMessageIter iter;
  1365. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1366. struct wpa_supplicant *parent;
  1367. iface = wpa_s->global->dbus;
  1368. /* Do nothing if the control interface is not turned on */
  1369. if (iface == NULL)
  1370. return;
  1371. if (!wpa_s->dbus_groupobj_path)
  1372. return;
  1373. parent = wpa_s->parent;
  1374. if (parent->p2p_mgmt)
  1375. parent = parent->parent;
  1376. if (!parent->dbus_new_path)
  1377. return;
  1378. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1379. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
  1380. COMPACT_MACSTR,
  1381. parent->dbus_new_path, MAC2STR(peer_addr));
  1382. msg = dbus_message_new_signal(wpa_s->dbus_groupobj_path,
  1383. WPAS_DBUS_NEW_IFACE_P2P_GROUP,
  1384. "PeerJoined");
  1385. if (msg == NULL)
  1386. return;
  1387. dbus_message_iter_init_append(msg, &iter);
  1388. path = peer_obj_path;
  1389. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  1390. &path)) {
  1391. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1392. } else {
  1393. dbus_connection_send(iface->con, msg, NULL);
  1394. wpas_dbus_signal_peer_groups_changed(parent, peer_addr);
  1395. }
  1396. dbus_message_unref(msg);
  1397. }
  1398. /**
  1399. *
  1400. * Method to emit a signal for a peer disconnecting the group.
  1401. * The signal will carry path to the group member object
  1402. * constructed using the P2P Device Address of the peer.
  1403. *
  1404. * @wpa_s: %wpa_supplicant network interface data
  1405. * @peer_addr: P2P Device Address of the peer joining the group
  1406. */
  1407. void wpas_dbus_signal_p2p_peer_disconnected(struct wpa_supplicant *wpa_s,
  1408. const u8 *peer_addr)
  1409. {
  1410. struct wpas_dbus_priv *iface;
  1411. DBusMessage *msg;
  1412. DBusMessageIter iter;
  1413. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1414. struct wpa_supplicant *parent;
  1415. iface = wpa_s->global->dbus;
  1416. /* Do nothing if the control interface is not turned on */
  1417. if (iface == NULL)
  1418. return;
  1419. if (!wpa_s->dbus_groupobj_path)
  1420. return;
  1421. parent = wpa_s->parent;
  1422. if (parent->p2p_mgmt)
  1423. parent = parent->parent;
  1424. if (!parent->dbus_new_path)
  1425. return;
  1426. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1427. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
  1428. COMPACT_MACSTR,
  1429. parent->dbus_new_path, MAC2STR(peer_addr));
  1430. msg = dbus_message_new_signal(wpa_s->dbus_groupobj_path,
  1431. WPAS_DBUS_NEW_IFACE_P2P_GROUP,
  1432. "PeerDisconnected");
  1433. if (msg == NULL)
  1434. return;
  1435. dbus_message_iter_init_append(msg, &iter);
  1436. path = peer_obj_path;
  1437. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  1438. &path)) {
  1439. wpa_printf(MSG_ERROR,
  1440. "dbus: Failed to construct PeerDisconnected signal");
  1441. } else {
  1442. dbus_connection_send(iface->con, msg, NULL);
  1443. wpas_dbus_signal_peer_groups_changed(parent, peer_addr);
  1444. }
  1445. dbus_message_unref(msg);
  1446. }
  1447. /**
  1448. *
  1449. * Method to emit a signal for a service discovery request.
  1450. * The signal will carry station address, frequency, dialog token,
  1451. * update indicator and it tlvs
  1452. *
  1453. * @wpa_s: %wpa_supplicant network interface data
  1454. * @sa: station addr (p2p i/f) of the peer
  1455. * @dialog_token: service discovery request dialog token
  1456. * @update_indic: service discovery request update indicator
  1457. * @tlvs: service discovery request genrated byte array of tlvs
  1458. * @tlvs_len: service discovery request tlvs length
  1459. */
  1460. void wpas_dbus_signal_p2p_sd_request(struct wpa_supplicant *wpa_s,
  1461. int freq, const u8 *sa, u8 dialog_token,
  1462. u16 update_indic, const u8 *tlvs,
  1463. size_t tlvs_len)
  1464. {
  1465. DBusMessage *msg;
  1466. DBusMessageIter iter, dict_iter;
  1467. struct wpas_dbus_priv *iface;
  1468. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1469. iface = wpa_s->global->dbus;
  1470. /* Do nothing if the control interface is not turned on */
  1471. if (iface == NULL)
  1472. return;
  1473. if (wpa_s->p2p_mgmt)
  1474. wpa_s = wpa_s->parent;
  1475. if (!wpa_s->dbus_new_path)
  1476. return;
  1477. /* Check if this is a known peer */
  1478. if (!p2p_peer_known(wpa_s->global->p2p, sa))
  1479. return;
  1480. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1481. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1482. "ServiceDiscoveryRequest");
  1483. if (msg == NULL)
  1484. return;
  1485. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1486. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
  1487. COMPACT_MACSTR, wpa_s->dbus_new_path, MAC2STR(sa));
  1488. path = peer_obj_path;
  1489. dbus_message_iter_init_append(msg, &iter);
  1490. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  1491. !wpa_dbus_dict_append_object_path(&dict_iter, "peer_object",
  1492. path) ||
  1493. !wpa_dbus_dict_append_int32(&dict_iter, "frequency", freq) ||
  1494. !wpa_dbus_dict_append_int32(&dict_iter, "dialog_token",
  1495. dialog_token) ||
  1496. !wpa_dbus_dict_append_uint16(&dict_iter, "update_indicator",
  1497. update_indic) ||
  1498. !wpa_dbus_dict_append_byte_array(&dict_iter, "tlvs",
  1499. (const char *) tlvs,
  1500. tlvs_len) ||
  1501. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  1502. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1503. else
  1504. dbus_connection_send(iface->con, msg, NULL);
  1505. dbus_message_unref(msg);
  1506. }
  1507. /**
  1508. *
  1509. * Method to emit a signal for a service discovery response.
  1510. * The signal will carry station address, update indicator and it
  1511. * tlvs
  1512. *
  1513. * @wpa_s: %wpa_supplicant network interface data
  1514. * @sa: station addr (p2p i/f) of the peer
  1515. * @update_indic: service discovery request update indicator
  1516. * @tlvs: service discovery request genrated byte array of tlvs
  1517. * @tlvs_len: service discovery request tlvs length
  1518. */
  1519. void wpas_dbus_signal_p2p_sd_response(struct wpa_supplicant *wpa_s,
  1520. const u8 *sa, u16 update_indic,
  1521. const u8 *tlvs, size_t tlvs_len)
  1522. {
  1523. DBusMessage *msg;
  1524. DBusMessageIter iter, dict_iter;
  1525. struct wpas_dbus_priv *iface;
  1526. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1527. iface = wpa_s->global->dbus;
  1528. /* Do nothing if the control interface is not turned on */
  1529. if (iface == NULL)
  1530. return;
  1531. if (wpa_s->p2p_mgmt)
  1532. wpa_s = wpa_s->parent;
  1533. if (!wpa_s->dbus_new_path)
  1534. return;
  1535. /* Check if this is a known peer */
  1536. if (!p2p_peer_known(wpa_s->global->p2p, sa))
  1537. return;
  1538. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1539. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1540. "ServiceDiscoveryResponse");
  1541. if (msg == NULL)
  1542. return;
  1543. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1544. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
  1545. COMPACT_MACSTR, wpa_s->dbus_new_path, MAC2STR(sa));
  1546. path = peer_obj_path;
  1547. dbus_message_iter_init_append(msg, &iter);
  1548. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  1549. !wpa_dbus_dict_append_object_path(&dict_iter, "peer_object",
  1550. path) ||
  1551. !wpa_dbus_dict_append_uint16(&dict_iter, "update_indicator",
  1552. update_indic) ||
  1553. !wpa_dbus_dict_append_byte_array(&dict_iter, "tlvs",
  1554. (const char *) tlvs,
  1555. tlvs_len) ||
  1556. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  1557. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1558. else
  1559. dbus_connection_send(iface->con, msg, NULL);
  1560. dbus_message_unref(msg);
  1561. }
  1562. /**
  1563. * wpas_dbus_signal_persistent_group - Send a persistent group related
  1564. * event signal
  1565. * @wpa_s: %wpa_supplicant network interface data
  1566. * @id: new persistent group id
  1567. * @sig_name: signal name - PersistentGroupAdded, PersistentGroupRemoved
  1568. * @properties: determines if add second argument with object properties
  1569. *
  1570. * Notify listeners about an event related to persistent groups.
  1571. */
  1572. static void wpas_dbus_signal_persistent_group(struct wpa_supplicant *wpa_s,
  1573. int id, const char *sig_name,
  1574. int properties)
  1575. {
  1576. struct wpas_dbus_priv *iface;
  1577. DBusMessage *msg;
  1578. DBusMessageIter iter;
  1579. char pgrp_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1580. iface = wpa_s->global->dbus;
  1581. /* Do nothing if the control interface is not turned on */
  1582. if (iface == NULL)
  1583. return;
  1584. if (wpa_s->p2p_mgmt)
  1585. wpa_s = wpa_s->parent;
  1586. if (!wpa_s->dbus_new_path)
  1587. return;
  1588. os_snprintf(pgrp_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1589. "%s/" WPAS_DBUS_NEW_PERSISTENT_GROUPS_PART "/%u",
  1590. wpa_s->dbus_new_path, id);
  1591. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1592. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1593. sig_name);
  1594. if (msg == NULL)
  1595. return;
  1596. dbus_message_iter_init_append(msg, &iter);
  1597. path = pgrp_obj_path;
  1598. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  1599. &path) ||
  1600. (properties &&
  1601. !wpa_dbus_get_object_properties(
  1602. iface, pgrp_obj_path,
  1603. WPAS_DBUS_NEW_IFACE_PERSISTENT_GROUP, &iter)))
  1604. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1605. else
  1606. dbus_connection_send(iface->con, msg, NULL);
  1607. dbus_message_unref(msg);
  1608. }
  1609. /**
  1610. * wpas_dbus_signal_persistent_group_added - Send a persistent_group
  1611. * added signal
  1612. * @wpa_s: %wpa_supplicant network interface data
  1613. * @id: new persistent group id
  1614. *
  1615. * Notify listeners about addition of a new persistent group.
  1616. */
  1617. static void wpas_dbus_signal_persistent_group_added(
  1618. struct wpa_supplicant *wpa_s, int id)
  1619. {
  1620. wpas_dbus_signal_persistent_group(wpa_s, id, "PersistentGroupAdded",
  1621. TRUE);
  1622. }
  1623. /**
  1624. * wpas_dbus_signal_persistent_group_removed - Send a persistent_group
  1625. * removed signal
  1626. * @wpa_s: %wpa_supplicant network interface data
  1627. * @id: persistent group id
  1628. *
  1629. * Notify listeners about removal of a persistent group.
  1630. */
  1631. static void wpas_dbus_signal_persistent_group_removed(
  1632. struct wpa_supplicant *wpa_s, int id)
  1633. {
  1634. wpas_dbus_signal_persistent_group(wpa_s, id, "PersistentGroupRemoved",
  1635. FALSE);
  1636. }
  1637. /**
  1638. * wpas_dbus_signal_p2p_wps_failed - Signals WpsFailed event
  1639. * @wpa_s: %wpa_supplicant network interface data
  1640. * @fail: WPS failure information
  1641. *
  1642. * Sends Event dbus signal with name "fail" and dictionary containing
  1643. * "msg" field with fail message number (int32) as arguments
  1644. */
  1645. void wpas_dbus_signal_p2p_wps_failed(struct wpa_supplicant *wpa_s,
  1646. struct wps_event_fail *fail)
  1647. {
  1648. DBusMessage *msg;
  1649. DBusMessageIter iter, dict_iter;
  1650. struct wpas_dbus_priv *iface;
  1651. char *key = "fail";
  1652. iface = wpa_s->global->dbus;
  1653. /* Do nothing if the control interface is not turned on */
  1654. if (iface == NULL)
  1655. return;
  1656. if (wpa_s->p2p_mgmt)
  1657. wpa_s = wpa_s->parent;
  1658. if (!wpa_s->dbus_new_path)
  1659. return;
  1660. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1661. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1662. "WpsFailed");
  1663. if (msg == NULL)
  1664. return;
  1665. dbus_message_iter_init_append(msg, &iter);
  1666. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &key) ||
  1667. !wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  1668. !wpa_dbus_dict_append_int32(&dict_iter, "msg", fail->msg) ||
  1669. !wpa_dbus_dict_append_int16(&dict_iter, "config_error",
  1670. fail->config_error) ||
  1671. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  1672. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1673. else
  1674. dbus_connection_send(iface->con, msg, NULL);
  1675. dbus_message_unref(msg);
  1676. }
  1677. /**
  1678. * wpas_dbus_signal_p2p_group_formation_failure - Signals GroupFormationFailure event
  1679. * @wpa_s: %wpa_supplicant network interface data
  1680. * @reason: indicates the reason code for group formation failure
  1681. *
  1682. * Sends Event dbus signal and string reason code when available.
  1683. */
  1684. void wpas_dbus_signal_p2p_group_formation_failure(struct wpa_supplicant *wpa_s,
  1685. const char *reason)
  1686. {
  1687. DBusMessage *msg;
  1688. struct wpas_dbus_priv *iface;
  1689. iface = wpa_s->global->dbus;
  1690. /* Do nothing if the control interface is not turned on */
  1691. if (iface == NULL)
  1692. return;
  1693. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1694. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1695. "GroupFormationFailure");
  1696. if (msg == NULL)
  1697. return;
  1698. if (dbus_message_append_args(msg, DBUS_TYPE_STRING, &reason,
  1699. DBUS_TYPE_INVALID))
  1700. dbus_connection_send(iface->con, msg, NULL);
  1701. else
  1702. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1703. dbus_message_unref(msg);
  1704. }
  1705. /**
  1706. * wpas_dbus_signal_p2p_invitation_received - Emit InvitationReceived signal
  1707. * @wpa_s: %wpa_supplicant network interface data
  1708. * @sa: Source address of the Invitation Request
  1709. * @dev_add: GO Device Address
  1710. * @bssid: P2P Group BSSID or %NULL if not received
  1711. * @id: Persistent group id or %0 if not persistent group
  1712. * @op_freq: Operating frequency for the group
  1713. */
  1714. void wpas_dbus_signal_p2p_invitation_received(struct wpa_supplicant *wpa_s,
  1715. const u8 *sa, const u8 *dev_addr,
  1716. const u8 *bssid, int id,
  1717. int op_freq)
  1718. {
  1719. DBusMessage *msg;
  1720. DBusMessageIter iter, dict_iter;
  1721. struct wpas_dbus_priv *iface;
  1722. iface = wpa_s->global->dbus;
  1723. /* Do nothing if the control interface is not turned on */
  1724. if (iface == NULL)
  1725. return;
  1726. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1727. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1728. "InvitationReceived");
  1729. if (msg == NULL)
  1730. return;
  1731. dbus_message_iter_init_append(msg, &iter);
  1732. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  1733. (sa &&
  1734. !wpa_dbus_dict_append_byte_array(&dict_iter, "sa",
  1735. (const char *) sa, ETH_ALEN)) ||
  1736. (dev_addr &&
  1737. !wpa_dbus_dict_append_byte_array(&dict_iter, "go_dev_addr",
  1738. (const char *) dev_addr,
  1739. ETH_ALEN)) ||
  1740. (bssid &&
  1741. !wpa_dbus_dict_append_byte_array(&dict_iter, "bssid",
  1742. (const char *) bssid,
  1743. ETH_ALEN)) ||
  1744. (id &&
  1745. !wpa_dbus_dict_append_int32(&dict_iter, "persistent_id", id)) ||
  1746. !wpa_dbus_dict_append_int32(&dict_iter, "op_freq", op_freq) ||
  1747. !wpa_dbus_dict_close_write(&iter, &dict_iter)) {
  1748. dbus_message_unref(msg);
  1749. return;
  1750. }
  1751. dbus_connection_send(iface->con, msg, NULL);
  1752. dbus_message_unref(msg);
  1753. }
  1754. #endif /* CONFIG_P2P */
  1755. /**
  1756. * wpas_dbus_signal_prop_changed - Signals change of property
  1757. * @wpa_s: %wpa_supplicant network interface data
  1758. * @property: indicates which property has changed
  1759. *
  1760. * Sends PropertyChanged signals with path, interface and arguments
  1761. * depending on which property has changed.
  1762. */
  1763. void wpas_dbus_signal_prop_changed(struct wpa_supplicant *wpa_s,
  1764. enum wpas_dbus_prop property)
  1765. {
  1766. char *prop;
  1767. dbus_bool_t flush;
  1768. if (wpa_s->dbus_new_path == NULL)
  1769. return; /* Skip signal since D-Bus setup is not yet ready */
  1770. flush = FALSE;
  1771. switch (property) {
  1772. case WPAS_DBUS_PROP_AP_SCAN:
  1773. prop = "ApScan";
  1774. break;
  1775. #ifdef CONFIG_IEEE80211W
  1776. case WPAS_DBUS_PROP_PMF:
  1777. prop = "Pmf";
  1778. break;
  1779. #endif /* CONFIG_IEEE80211W */
  1780. case WPAS_DBUS_PROP_SCANNING:
  1781. prop = "Scanning";
  1782. break;
  1783. case WPAS_DBUS_PROP_STATE:
  1784. prop = "State";
  1785. break;
  1786. case WPAS_DBUS_PROP_CURRENT_BSS:
  1787. prop = "CurrentBSS";
  1788. break;
  1789. case WPAS_DBUS_PROP_CURRENT_NETWORK:
  1790. prop = "CurrentNetwork";
  1791. break;
  1792. case WPAS_DBUS_PROP_BSSS:
  1793. prop = "BSSs";
  1794. break;
  1795. case WPAS_DBUS_PROP_CURRENT_AUTH_MODE:
  1796. prop = "CurrentAuthMode";
  1797. break;
  1798. case WPAS_DBUS_PROP_DISCONNECT_REASON:
  1799. prop = "DisconnectReason";
  1800. flush = TRUE;
  1801. break;
  1802. case WPAS_DBUS_PROP_ASSOC_STATUS_CODE:
  1803. prop = "AssocStatusCode";
  1804. flush = TRUE;
  1805. break;
  1806. default:
  1807. wpa_printf(MSG_ERROR, "dbus: %s: Unknown Property value %d",
  1808. __func__, property);
  1809. return;
  1810. }
  1811. wpa_dbus_mark_property_changed(wpa_s->global->dbus,
  1812. wpa_s->dbus_new_path,
  1813. WPAS_DBUS_NEW_IFACE_INTERFACE, prop);
  1814. if (flush) {
  1815. wpa_dbus_flush_object_changed_properties(
  1816. wpa_s->global->dbus->con, wpa_s->dbus_new_path);
  1817. }
  1818. }
  1819. /**
  1820. * wpas_dbus_bss_signal_prop_changed - Signals change of BSS property
  1821. * @wpa_s: %wpa_supplicant network interface data
  1822. * @property: indicates which property has changed
  1823. * @id: unique BSS identifier
  1824. *
  1825. * Sends PropertyChanged signals with path, interface, and arguments depending
  1826. * on which property has changed.
  1827. */
  1828. void wpas_dbus_bss_signal_prop_changed(struct wpa_supplicant *wpa_s,
  1829. enum wpas_dbus_bss_prop property,
  1830. unsigned int id)
  1831. {
  1832. char path[WPAS_DBUS_OBJECT_PATH_MAX];
  1833. char *prop;
  1834. if (!wpa_s->dbus_new_path)
  1835. return;
  1836. switch (property) {
  1837. case WPAS_DBUS_BSS_PROP_SIGNAL:
  1838. prop = "Signal";
  1839. break;
  1840. case WPAS_DBUS_BSS_PROP_FREQ:
  1841. prop = "Frequency";
  1842. break;
  1843. case WPAS_DBUS_BSS_PROP_MODE:
  1844. prop = "Mode";
  1845. break;
  1846. case WPAS_DBUS_BSS_PROP_PRIVACY:
  1847. prop = "Privacy";
  1848. break;
  1849. case WPAS_DBUS_BSS_PROP_RATES:
  1850. prop = "Rates";
  1851. break;
  1852. case WPAS_DBUS_BSS_PROP_WPA:
  1853. prop = "WPA";
  1854. break;
  1855. case WPAS_DBUS_BSS_PROP_RSN:
  1856. prop = "RSN";
  1857. break;
  1858. case WPAS_DBUS_BSS_PROP_WPS:
  1859. prop = "WPS";
  1860. break;
  1861. case WPAS_DBUS_BSS_PROP_IES:
  1862. prop = "IEs";
  1863. break;
  1864. case WPAS_DBUS_BSS_PROP_AGE:
  1865. prop = "Age";
  1866. break;
  1867. default:
  1868. wpa_printf(MSG_ERROR, "dbus: %s: Unknown Property value %d",
  1869. __func__, property);
  1870. return;
  1871. }
  1872. os_snprintf(path, WPAS_DBUS_OBJECT_PATH_MAX,
  1873. "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
  1874. wpa_s->dbus_new_path, id);
  1875. wpa_dbus_mark_property_changed(wpa_s->global->dbus, path,
  1876. WPAS_DBUS_NEW_IFACE_BSS, prop);
  1877. }
  1878. /**
  1879. * wpas_dbus_signal_debug_level_changed - Signals change of debug param
  1880. * @global: wpa_global structure
  1881. *
  1882. * Sends PropertyChanged signals informing that debug level has changed.
  1883. */
  1884. void wpas_dbus_signal_debug_level_changed(struct wpa_global *global)
  1885. {
  1886. wpa_dbus_mark_property_changed(global->dbus, WPAS_DBUS_NEW_PATH,
  1887. WPAS_DBUS_NEW_INTERFACE,
  1888. "DebugLevel");
  1889. }
  1890. /**
  1891. * wpas_dbus_signal_debug_timestamp_changed - Signals change of debug param
  1892. * @global: wpa_global structure
  1893. *
  1894. * Sends PropertyChanged signals informing that debug timestamp has changed.
  1895. */
  1896. void wpas_dbus_signal_debug_timestamp_changed(struct wpa_global *global)
  1897. {
  1898. wpa_dbus_mark_property_changed(global->dbus, WPAS_DBUS_NEW_PATH,
  1899. WPAS_DBUS_NEW_INTERFACE,
  1900. "DebugTimestamp");
  1901. }
  1902. /**
  1903. * wpas_dbus_signal_debug_show_keys_changed - Signals change of debug param
  1904. * @global: wpa_global structure
  1905. *
  1906. * Sends PropertyChanged signals informing that debug show_keys has changed.
  1907. */
  1908. void wpas_dbus_signal_debug_show_keys_changed(struct wpa_global *global)
  1909. {
  1910. wpa_dbus_mark_property_changed(global->dbus, WPAS_DBUS_NEW_PATH,
  1911. WPAS_DBUS_NEW_INTERFACE,
  1912. "DebugShowKeys");
  1913. }
  1914. static void wpas_dbus_register(struct wpa_dbus_object_desc *obj_desc,
  1915. void *priv,
  1916. WPADBusArgumentFreeFunction priv_free,
  1917. const struct wpa_dbus_method_desc *methods,
  1918. const struct wpa_dbus_property_desc *properties,
  1919. const struct wpa_dbus_signal_desc *signals)
  1920. {
  1921. int n;
  1922. obj_desc->user_data = priv;
  1923. obj_desc->user_data_free_func = priv_free;
  1924. obj_desc->methods = methods;
  1925. obj_desc->properties = properties;
  1926. obj_desc->signals = signals;
  1927. for (n = 0; properties && properties->dbus_property; properties++)
  1928. n++;
  1929. obj_desc->prop_changed_flags = os_zalloc(n);
  1930. if (!obj_desc->prop_changed_flags)
  1931. wpa_printf(MSG_DEBUG, "dbus: %s: can't register handlers",
  1932. __func__);
  1933. }
  1934. static const struct wpa_dbus_method_desc wpas_dbus_global_methods[] = {
  1935. { "CreateInterface", WPAS_DBUS_NEW_INTERFACE,
  1936. (WPADBusMethodHandler) wpas_dbus_handler_create_interface,
  1937. {
  1938. { "args", "a{sv}", ARG_IN },
  1939. { "path", "o", ARG_OUT },
  1940. END_ARGS
  1941. }
  1942. },
  1943. { "RemoveInterface", WPAS_DBUS_NEW_INTERFACE,
  1944. (WPADBusMethodHandler) wpas_dbus_handler_remove_interface,
  1945. {
  1946. { "path", "o", ARG_IN },
  1947. END_ARGS
  1948. }
  1949. },
  1950. { "GetInterface", WPAS_DBUS_NEW_INTERFACE,
  1951. (WPADBusMethodHandler) wpas_dbus_handler_get_interface,
  1952. {
  1953. { "ifname", "s", ARG_IN },
  1954. { "path", "o", ARG_OUT },
  1955. END_ARGS
  1956. }
  1957. },
  1958. { "ExpectDisconnect", WPAS_DBUS_NEW_INTERFACE,
  1959. (WPADBusMethodHandler) wpas_dbus_handler_expect_disconnect,
  1960. {
  1961. END_ARGS
  1962. }
  1963. },
  1964. { NULL, NULL, NULL, { END_ARGS } }
  1965. };
  1966. static const struct wpa_dbus_property_desc wpas_dbus_global_properties[] = {
  1967. { "DebugLevel", WPAS_DBUS_NEW_INTERFACE, "s",
  1968. wpas_dbus_getter_debug_level,
  1969. wpas_dbus_setter_debug_level,
  1970. NULL
  1971. },
  1972. { "DebugTimestamp", WPAS_DBUS_NEW_INTERFACE, "b",
  1973. wpas_dbus_getter_debug_timestamp,
  1974. wpas_dbus_setter_debug_timestamp,
  1975. NULL
  1976. },
  1977. { "DebugShowKeys", WPAS_DBUS_NEW_INTERFACE, "b",
  1978. wpas_dbus_getter_debug_show_keys,
  1979. wpas_dbus_setter_debug_show_keys,
  1980. NULL
  1981. },
  1982. { "Interfaces", WPAS_DBUS_NEW_INTERFACE, "ao",
  1983. wpas_dbus_getter_interfaces,
  1984. NULL,
  1985. NULL
  1986. },
  1987. { "EapMethods", WPAS_DBUS_NEW_INTERFACE, "as",
  1988. wpas_dbus_getter_eap_methods,
  1989. NULL,
  1990. NULL
  1991. },
  1992. { "Capabilities", WPAS_DBUS_NEW_INTERFACE, "as",
  1993. wpas_dbus_getter_global_capabilities,
  1994. NULL,
  1995. NULL
  1996. },
  1997. #ifdef CONFIG_WIFI_DISPLAY
  1998. { "WFDIEs", WPAS_DBUS_NEW_INTERFACE, "ay",
  1999. wpas_dbus_getter_global_wfd_ies,
  2000. wpas_dbus_setter_global_wfd_ies,
  2001. NULL
  2002. },
  2003. #endif /* CONFIG_WIFI_DISPLAY */
  2004. { NULL, NULL, NULL, NULL, NULL, NULL }
  2005. };
  2006. static const struct wpa_dbus_signal_desc wpas_dbus_global_signals[] = {
  2007. { "InterfaceAdded", WPAS_DBUS_NEW_INTERFACE,
  2008. {
  2009. { "path", "o", ARG_OUT },
  2010. { "properties", "a{sv}", ARG_OUT },
  2011. END_ARGS
  2012. }
  2013. },
  2014. { "InterfaceRemoved", WPAS_DBUS_NEW_INTERFACE,
  2015. {
  2016. { "path", "o", ARG_OUT },
  2017. END_ARGS
  2018. }
  2019. },
  2020. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  2021. { "PropertiesChanged", WPAS_DBUS_NEW_INTERFACE,
  2022. {
  2023. { "properties", "a{sv}", ARG_OUT },
  2024. END_ARGS
  2025. }
  2026. },
  2027. { NULL, NULL, { END_ARGS } }
  2028. };
  2029. static char * uscore_to_dbus(const char *uscore)
  2030. {
  2031. const char *p = uscore;
  2032. char *str, *s;
  2033. dbus_bool_t last_was_uscore = TRUE;
  2034. s = str = os_zalloc(os_strlen(uscore) + 1);
  2035. if (!str)
  2036. return NULL;
  2037. while (p && *p) {
  2038. if (*p == '_') {
  2039. last_was_uscore = TRUE;
  2040. } else {
  2041. *s++ = last_was_uscore ? toupper(*p) : *p;
  2042. last_was_uscore = FALSE;
  2043. }
  2044. p++;
  2045. }
  2046. return str;
  2047. }
  2048. static int wpa_dbus_ctrl_iface_props_init(struct wpas_dbus_priv *priv);
  2049. static void wpa_dbus_ctrl_iface_props_deinit(struct wpas_dbus_priv *priv)
  2050. {
  2051. int idx = priv->globals_start;
  2052. /* Free all allocated property values */
  2053. while (priv->all_interface_properties[idx].dbus_property)
  2054. os_free((char *)
  2055. priv->all_interface_properties[idx++].dbus_property);
  2056. os_free((char *) priv->all_interface_properties);
  2057. }
  2058. /**
  2059. * wpas_dbus_ctrl_iface_init - Initialize dbus control interface
  2060. * @global: Pointer to global data from wpa_supplicant_init()
  2061. * Returns: 0 on success or -1 on failure
  2062. *
  2063. * Initialize the dbus control interface for wpa_supplicant and start
  2064. * receiving commands from external programs over the bus.
  2065. */
  2066. int wpas_dbus_ctrl_iface_init(struct wpas_dbus_priv *priv)
  2067. {
  2068. struct wpa_dbus_object_desc *obj_desc;
  2069. int ret;
  2070. ret = wpa_dbus_ctrl_iface_props_init(priv);
  2071. if (ret < 0) {
  2072. wpa_printf(MSG_ERROR,
  2073. "dbus: Not enough memory to init interface properties");
  2074. return -1;
  2075. }
  2076. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  2077. if (!obj_desc) {
  2078. wpa_printf(MSG_ERROR,
  2079. "Not enough memory to create object description");
  2080. goto error;
  2081. }
  2082. wpas_dbus_register(obj_desc, priv->global, NULL,
  2083. wpas_dbus_global_methods,
  2084. wpas_dbus_global_properties,
  2085. wpas_dbus_global_signals);
  2086. wpa_printf(MSG_DEBUG, "dbus: Register D-Bus object '%s'",
  2087. WPAS_DBUS_NEW_PATH);
  2088. ret = wpa_dbus_ctrl_iface_init(priv, WPAS_DBUS_NEW_PATH,
  2089. WPAS_DBUS_NEW_SERVICE,
  2090. obj_desc);
  2091. if (ret < 0) {
  2092. free_dbus_object_desc(obj_desc);
  2093. goto error;
  2094. }
  2095. priv->dbus_new_initialized = 1;
  2096. return 0;
  2097. error:
  2098. wpa_dbus_ctrl_iface_props_deinit(priv);
  2099. return -1;
  2100. }
  2101. /**
  2102. * wpas_dbus_ctrl_iface_deinit - Deinitialize dbus ctrl interface for
  2103. * wpa_supplicant
  2104. * @priv: Pointer to dbus private data from wpas_dbus_init()
  2105. *
  2106. * Deinitialize the dbus control interface that was initialized with
  2107. * wpas_dbus_ctrl_iface_init().
  2108. */
  2109. void wpas_dbus_ctrl_iface_deinit(struct wpas_dbus_priv *priv)
  2110. {
  2111. if (!priv->dbus_new_initialized)
  2112. return;
  2113. wpa_printf(MSG_DEBUG, "dbus: Unregister D-Bus object '%s'",
  2114. WPAS_DBUS_NEW_PATH);
  2115. dbus_connection_unregister_object_path(priv->con, WPAS_DBUS_NEW_PATH);
  2116. wpa_dbus_ctrl_iface_props_deinit(priv);
  2117. }
  2118. static void wpa_dbus_free(void *ptr)
  2119. {
  2120. os_free(ptr);
  2121. }
  2122. static const struct wpa_dbus_property_desc wpas_dbus_network_properties[] = {
  2123. { "Properties", WPAS_DBUS_NEW_IFACE_NETWORK, "a{sv}",
  2124. wpas_dbus_getter_network_properties,
  2125. wpas_dbus_setter_network_properties,
  2126. NULL
  2127. },
  2128. { "Enabled", WPAS_DBUS_NEW_IFACE_NETWORK, "b",
  2129. wpas_dbus_getter_enabled,
  2130. wpas_dbus_setter_enabled,
  2131. NULL
  2132. },
  2133. { NULL, NULL, NULL, NULL, NULL, NULL }
  2134. };
  2135. static const struct wpa_dbus_signal_desc wpas_dbus_network_signals[] = {
  2136. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  2137. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_NETWORK,
  2138. {
  2139. { "properties", "a{sv}", ARG_OUT },
  2140. END_ARGS
  2141. }
  2142. },
  2143. { NULL, NULL, { END_ARGS } }
  2144. };
  2145. /**
  2146. * wpas_dbus_register_network - Register a configured network with dbus
  2147. * @wpa_s: wpa_supplicant interface structure
  2148. * @ssid: network configuration data
  2149. * Returns: 0 on success, -1 on failure
  2150. *
  2151. * Registers network representing object with dbus
  2152. */
  2153. int wpas_dbus_register_network(struct wpa_supplicant *wpa_s,
  2154. struct wpa_ssid *ssid)
  2155. {
  2156. struct wpas_dbus_priv *ctrl_iface;
  2157. struct wpa_dbus_object_desc *obj_desc;
  2158. struct network_handler_args *arg;
  2159. char net_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  2160. #ifdef CONFIG_P2P
  2161. /*
  2162. * If it is a persistent group register it as such.
  2163. * This is to handle cases where an interface is being initialized
  2164. * with a list of networks read from config.
  2165. */
  2166. if (network_is_persistent_group(ssid))
  2167. return wpas_dbus_register_persistent_group(wpa_s, ssid);
  2168. #endif /* CONFIG_P2P */
  2169. /* Do nothing if the control interface is not turned on */
  2170. if (wpa_s == NULL || wpa_s->global == NULL || !wpa_s->dbus_new_path)
  2171. return 0;
  2172. ctrl_iface = wpa_s->global->dbus;
  2173. if (ctrl_iface == NULL)
  2174. return 0;
  2175. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2176. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u",
  2177. wpa_s->dbus_new_path, ssid->id);
  2178. wpa_printf(MSG_DEBUG, "dbus: Register network object '%s'",
  2179. net_obj_path);
  2180. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  2181. if (!obj_desc) {
  2182. wpa_printf(MSG_ERROR,
  2183. "Not enough memory to create object description");
  2184. goto err;
  2185. }
  2186. /* allocate memory for handlers arguments */
  2187. arg = os_zalloc(sizeof(struct network_handler_args));
  2188. if (!arg) {
  2189. wpa_printf(MSG_ERROR,
  2190. "Not enough memory to create arguments for method");
  2191. goto err;
  2192. }
  2193. arg->wpa_s = wpa_s;
  2194. arg->ssid = ssid;
  2195. wpas_dbus_register(obj_desc, arg, wpa_dbus_free, NULL,
  2196. wpas_dbus_network_properties,
  2197. wpas_dbus_network_signals);
  2198. if (wpa_dbus_register_object_per_iface(ctrl_iface, net_obj_path,
  2199. wpa_s->ifname, obj_desc))
  2200. goto err;
  2201. wpas_dbus_signal_network_added(wpa_s, ssid->id);
  2202. return 0;
  2203. err:
  2204. free_dbus_object_desc(obj_desc);
  2205. return -1;
  2206. }
  2207. /**
  2208. * wpas_dbus_unregister_network - Unregister a configured network from dbus
  2209. * @wpa_s: wpa_supplicant interface structure
  2210. * @nid: network id
  2211. * Returns: 0 on success, -1 on failure
  2212. *
  2213. * Unregisters network representing object from dbus
  2214. */
  2215. int wpas_dbus_unregister_network(struct wpa_supplicant *wpa_s, int nid)
  2216. {
  2217. struct wpas_dbus_priv *ctrl_iface;
  2218. char net_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  2219. int ret;
  2220. #ifdef CONFIG_P2P
  2221. struct wpa_ssid *ssid;
  2222. ssid = wpa_config_get_network(wpa_s->conf, nid);
  2223. /* If it is a persistent group unregister it as such */
  2224. if (ssid && network_is_persistent_group(ssid))
  2225. return wpas_dbus_unregister_persistent_group(wpa_s, nid);
  2226. #endif /* CONFIG_P2P */
  2227. /* Do nothing if the control interface is not turned on */
  2228. if (wpa_s->global == NULL || wpa_s->dbus_new_path == NULL)
  2229. return 0;
  2230. ctrl_iface = wpa_s->global->dbus;
  2231. if (ctrl_iface == NULL)
  2232. return 0;
  2233. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2234. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u",
  2235. wpa_s->dbus_new_path, nid);
  2236. wpa_printf(MSG_DEBUG, "dbus: Unregister network object '%s'",
  2237. net_obj_path);
  2238. ret = wpa_dbus_unregister_object_per_iface(ctrl_iface, net_obj_path);
  2239. if (!ret)
  2240. wpas_dbus_signal_network_removed(wpa_s, nid);
  2241. return ret;
  2242. }
  2243. static const struct wpa_dbus_property_desc wpas_dbus_bss_properties[] = {
  2244. { "SSID", WPAS_DBUS_NEW_IFACE_BSS, "ay",
  2245. wpas_dbus_getter_bss_ssid,
  2246. NULL,
  2247. NULL
  2248. },
  2249. { "BSSID", WPAS_DBUS_NEW_IFACE_BSS, "ay",
  2250. wpas_dbus_getter_bss_bssid,
  2251. NULL,
  2252. NULL
  2253. },
  2254. { "Privacy", WPAS_DBUS_NEW_IFACE_BSS, "b",
  2255. wpas_dbus_getter_bss_privacy,
  2256. NULL,
  2257. NULL
  2258. },
  2259. { "Mode", WPAS_DBUS_NEW_IFACE_BSS, "s",
  2260. wpas_dbus_getter_bss_mode,
  2261. NULL,
  2262. NULL
  2263. },
  2264. { "Signal", WPAS_DBUS_NEW_IFACE_BSS, "n",
  2265. wpas_dbus_getter_bss_signal,
  2266. NULL,
  2267. NULL
  2268. },
  2269. { "Frequency", WPAS_DBUS_NEW_IFACE_BSS, "q",
  2270. wpas_dbus_getter_bss_frequency,
  2271. NULL,
  2272. NULL
  2273. },
  2274. { "Rates", WPAS_DBUS_NEW_IFACE_BSS, "au",
  2275. wpas_dbus_getter_bss_rates,
  2276. NULL,
  2277. NULL
  2278. },
  2279. { "WPA", WPAS_DBUS_NEW_IFACE_BSS, "a{sv}",
  2280. wpas_dbus_getter_bss_wpa,
  2281. NULL,
  2282. NULL
  2283. },
  2284. { "RSN", WPAS_DBUS_NEW_IFACE_BSS, "a{sv}",
  2285. wpas_dbus_getter_bss_rsn,
  2286. NULL,
  2287. NULL
  2288. },
  2289. { "WPS", WPAS_DBUS_NEW_IFACE_BSS, "a{sv}",
  2290. wpas_dbus_getter_bss_wps,
  2291. NULL,
  2292. NULL
  2293. },
  2294. { "IEs", WPAS_DBUS_NEW_IFACE_BSS, "ay",
  2295. wpas_dbus_getter_bss_ies,
  2296. NULL,
  2297. NULL
  2298. },
  2299. { "Age", WPAS_DBUS_NEW_IFACE_BSS, "u",
  2300. wpas_dbus_getter_bss_age,
  2301. NULL,
  2302. NULL
  2303. },
  2304. { NULL, NULL, NULL, NULL, NULL, NULL }
  2305. };
  2306. static const struct wpa_dbus_signal_desc wpas_dbus_bss_signals[] = {
  2307. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  2308. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_BSS,
  2309. {
  2310. { "properties", "a{sv}", ARG_OUT },
  2311. END_ARGS
  2312. }
  2313. },
  2314. { NULL, NULL, { END_ARGS } }
  2315. };
  2316. /**
  2317. * wpas_dbus_unregister_bss - Unregister a scanned BSS from dbus
  2318. * @wpa_s: wpa_supplicant interface structure
  2319. * @bssid: scanned network bssid
  2320. * @id: unique BSS identifier
  2321. * Returns: 0 on success, -1 on failure
  2322. *
  2323. * Unregisters BSS representing object from dbus
  2324. */
  2325. int wpas_dbus_unregister_bss(struct wpa_supplicant *wpa_s,
  2326. u8 bssid[ETH_ALEN], unsigned int id)
  2327. {
  2328. struct wpas_dbus_priv *ctrl_iface;
  2329. char bss_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  2330. /* Do nothing if the control interface is not turned on */
  2331. if (wpa_s == NULL || wpa_s->global == NULL || !wpa_s->dbus_new_path)
  2332. return 0;
  2333. ctrl_iface = wpa_s->global->dbus;
  2334. if (ctrl_iface == NULL)
  2335. return 0;
  2336. os_snprintf(bss_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2337. "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
  2338. wpa_s->dbus_new_path, id);
  2339. wpa_printf(MSG_DEBUG, "dbus: Unregister BSS object '%s'",
  2340. bss_obj_path);
  2341. if (wpa_dbus_unregister_object_per_iface(ctrl_iface, bss_obj_path)) {
  2342. wpa_printf(MSG_ERROR, "dbus: Cannot unregister BSS object %s",
  2343. bss_obj_path);
  2344. return -1;
  2345. }
  2346. wpas_dbus_signal_bss_removed(wpa_s, bss_obj_path);
  2347. wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_BSSS);
  2348. return 0;
  2349. }
  2350. /**
  2351. * wpas_dbus_register_bss - Register a scanned BSS with dbus
  2352. * @wpa_s: wpa_supplicant interface structure
  2353. * @bssid: scanned network bssid
  2354. * @id: unique BSS identifier
  2355. * Returns: 0 on success, -1 on failure
  2356. *
  2357. * Registers BSS representing object with dbus
  2358. */
  2359. int wpas_dbus_register_bss(struct wpa_supplicant *wpa_s,
  2360. u8 bssid[ETH_ALEN], unsigned int id)
  2361. {
  2362. struct wpas_dbus_priv *ctrl_iface;
  2363. struct wpa_dbus_object_desc *obj_desc;
  2364. char bss_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  2365. struct bss_handler_args *arg;
  2366. /* Do nothing if the control interface is not turned on */
  2367. if (wpa_s == NULL || wpa_s->global == NULL || !wpa_s->dbus_new_path)
  2368. return 0;
  2369. ctrl_iface = wpa_s->global->dbus;
  2370. if (ctrl_iface == NULL)
  2371. return 0;
  2372. os_snprintf(bss_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2373. "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
  2374. wpa_s->dbus_new_path, id);
  2375. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  2376. if (!obj_desc) {
  2377. wpa_printf(MSG_ERROR,
  2378. "Not enough memory to create object description");
  2379. goto err;
  2380. }
  2381. arg = os_zalloc(sizeof(struct bss_handler_args));
  2382. if (!arg) {
  2383. wpa_printf(MSG_ERROR,
  2384. "Not enough memory to create arguments for handler");
  2385. goto err;
  2386. }
  2387. arg->wpa_s = wpa_s;
  2388. arg->id = id;
  2389. wpas_dbus_register(obj_desc, arg, wpa_dbus_free, NULL,
  2390. wpas_dbus_bss_properties,
  2391. wpas_dbus_bss_signals);
  2392. wpa_printf(MSG_DEBUG, "dbus: Register BSS object '%s'",
  2393. bss_obj_path);
  2394. if (wpa_dbus_register_object_per_iface(ctrl_iface, bss_obj_path,
  2395. wpa_s->ifname, obj_desc)) {
  2396. wpa_printf(MSG_ERROR,
  2397. "Cannot register BSSID dbus object %s.",
  2398. bss_obj_path);
  2399. goto err;
  2400. }
  2401. wpas_dbus_signal_bss_added(wpa_s, bss_obj_path);
  2402. wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_BSSS);
  2403. return 0;
  2404. err:
  2405. free_dbus_object_desc(obj_desc);
  2406. return -1;
  2407. }
  2408. static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
  2409. { "Scan", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2410. (WPADBusMethodHandler) wpas_dbus_handler_scan,
  2411. {
  2412. { "args", "a{sv}", ARG_IN },
  2413. END_ARGS
  2414. }
  2415. },
  2416. { "SignalPoll", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2417. (WPADBusMethodHandler) wpas_dbus_handler_signal_poll,
  2418. {
  2419. { "args", "a{sv}", ARG_OUT },
  2420. END_ARGS
  2421. }
  2422. },
  2423. { "Disconnect", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2424. (WPADBusMethodHandler) wpas_dbus_handler_disconnect,
  2425. {
  2426. END_ARGS
  2427. }
  2428. },
  2429. { "AddNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2430. (WPADBusMethodHandler) wpas_dbus_handler_add_network,
  2431. {
  2432. { "args", "a{sv}", ARG_IN },
  2433. { "path", "o", ARG_OUT },
  2434. END_ARGS
  2435. }
  2436. },
  2437. { "Reassociate", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2438. (WPADBusMethodHandler) wpas_dbus_handler_reassociate,
  2439. {
  2440. END_ARGS
  2441. }
  2442. },
  2443. { "Reattach", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2444. (WPADBusMethodHandler) wpas_dbus_handler_reattach,
  2445. {
  2446. END_ARGS
  2447. }
  2448. },
  2449. { "Reconnect", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2450. (WPADBusMethodHandler) wpas_dbus_handler_reconnect,
  2451. {
  2452. END_ARGS
  2453. }
  2454. },
  2455. { "RemoveNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2456. (WPADBusMethodHandler) wpas_dbus_handler_remove_network,
  2457. {
  2458. { "path", "o", ARG_IN },
  2459. END_ARGS
  2460. }
  2461. },
  2462. { "RemoveAllNetworks", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2463. (WPADBusMethodHandler) wpas_dbus_handler_remove_all_networks,
  2464. {
  2465. END_ARGS
  2466. }
  2467. },
  2468. { "SelectNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2469. (WPADBusMethodHandler) wpas_dbus_handler_select_network,
  2470. {
  2471. { "path", "o", ARG_IN },
  2472. END_ARGS
  2473. }
  2474. },
  2475. { "NetworkReply", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2476. (WPADBusMethodHandler) wpas_dbus_handler_network_reply,
  2477. {
  2478. { "path", "o", ARG_IN },
  2479. { "field", "s", ARG_IN },
  2480. { "value", "s", ARG_IN },
  2481. END_ARGS
  2482. }
  2483. },
  2484. #ifndef CONFIG_NO_CONFIG_BLOBS
  2485. { "AddBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2486. (WPADBusMethodHandler) wpas_dbus_handler_add_blob,
  2487. {
  2488. { "name", "s", ARG_IN },
  2489. { "data", "ay", ARG_IN },
  2490. END_ARGS
  2491. }
  2492. },
  2493. { "GetBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2494. (WPADBusMethodHandler) wpas_dbus_handler_get_blob,
  2495. {
  2496. { "name", "s", ARG_IN },
  2497. { "data", "ay", ARG_OUT },
  2498. END_ARGS
  2499. }
  2500. },
  2501. { "RemoveBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2502. (WPADBusMethodHandler) wpas_dbus_handler_remove_blob,
  2503. {
  2504. { "name", "s", ARG_IN },
  2505. END_ARGS
  2506. }
  2507. },
  2508. #endif /* CONFIG_NO_CONFIG_BLOBS */
  2509. { "SetPKCS11EngineAndModulePath", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2510. (WPADBusMethodHandler)
  2511. wpas_dbus_handler_set_pkcs11_engine_and_module_path,
  2512. {
  2513. { "pkcs11_engine_path", "s", ARG_IN },
  2514. { "pkcs11_module_path", "s", ARG_IN },
  2515. END_ARGS
  2516. }
  2517. },
  2518. #ifdef CONFIG_WPS
  2519. { "Start", WPAS_DBUS_NEW_IFACE_WPS,
  2520. (WPADBusMethodHandler) wpas_dbus_handler_wps_start,
  2521. {
  2522. { "args", "a{sv}", ARG_IN },
  2523. { "output", "a{sv}", ARG_OUT },
  2524. END_ARGS
  2525. }
  2526. },
  2527. { "Cancel", WPAS_DBUS_NEW_IFACE_WPS,
  2528. (WPADBusMethodHandler) wpas_dbus_handler_wps_cancel,
  2529. {
  2530. END_ARGS
  2531. }
  2532. },
  2533. #endif /* CONFIG_WPS */
  2534. #ifdef CONFIG_P2P
  2535. { "Find", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2536. (WPADBusMethodHandler) wpas_dbus_handler_p2p_find,
  2537. {
  2538. { "args", "a{sv}", ARG_IN },
  2539. END_ARGS
  2540. }
  2541. },
  2542. { "StopFind", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2543. (WPADBusMethodHandler) wpas_dbus_handler_p2p_stop_find,
  2544. {
  2545. END_ARGS
  2546. }
  2547. },
  2548. { "Listen", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2549. (WPADBusMethodHandler) wpas_dbus_handler_p2p_listen,
  2550. {
  2551. { "timeout", "i", ARG_IN },
  2552. END_ARGS
  2553. }
  2554. },
  2555. { "ExtendedListen", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2556. (WPADBusMethodHandler) wpas_dbus_handler_p2p_extendedlisten,
  2557. {
  2558. { "args", "a{sv}", ARG_IN },
  2559. END_ARGS
  2560. }
  2561. },
  2562. { "PresenceRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2563. (WPADBusMethodHandler) wpas_dbus_handler_p2p_presence_request,
  2564. {
  2565. { "args", "a{sv}", ARG_IN },
  2566. END_ARGS
  2567. }
  2568. },
  2569. { "ProvisionDiscoveryRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2570. (WPADBusMethodHandler) wpas_dbus_handler_p2p_prov_disc_req,
  2571. {
  2572. { "peer", "o", ARG_IN },
  2573. { "config_method", "s", ARG_IN },
  2574. END_ARGS
  2575. }
  2576. },
  2577. { "Connect", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2578. (WPADBusMethodHandler) wpas_dbus_handler_p2p_connect,
  2579. {
  2580. { "args", "a{sv}", ARG_IN },
  2581. { "generated_pin", "s", ARG_OUT },
  2582. END_ARGS
  2583. }
  2584. },
  2585. { "GroupAdd", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2586. (WPADBusMethodHandler) wpas_dbus_handler_p2p_group_add,
  2587. {
  2588. { "args", "a{sv}", ARG_IN },
  2589. END_ARGS
  2590. }
  2591. },
  2592. { "Cancel", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2593. (WPADBusMethodHandler) wpas_dbus_handler_p2p_cancel,
  2594. {
  2595. END_ARGS
  2596. }
  2597. },
  2598. { "Invite", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2599. (WPADBusMethodHandler) wpas_dbus_handler_p2p_invite,
  2600. {
  2601. { "args", "a{sv}", ARG_IN },
  2602. END_ARGS
  2603. }
  2604. },
  2605. { "Disconnect", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2606. (WPADBusMethodHandler) wpas_dbus_handler_p2p_disconnect,
  2607. {
  2608. END_ARGS
  2609. }
  2610. },
  2611. { "RejectPeer", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2612. (WPADBusMethodHandler) wpas_dbus_handler_p2p_rejectpeer,
  2613. {
  2614. { "peer", "o", ARG_IN },
  2615. END_ARGS
  2616. }
  2617. },
  2618. { "RemoveClient", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2619. (WPADBusMethodHandler) wpas_dbus_handler_p2p_remove_client,
  2620. {
  2621. { "args", "a{sv}", ARG_IN },
  2622. END_ARGS
  2623. }
  2624. },
  2625. { "Flush", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2626. (WPADBusMethodHandler) wpas_dbus_handler_p2p_flush,
  2627. {
  2628. END_ARGS
  2629. }
  2630. },
  2631. { "AddService", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2632. (WPADBusMethodHandler) wpas_dbus_handler_p2p_add_service,
  2633. {
  2634. { "args", "a{sv}", ARG_IN },
  2635. END_ARGS
  2636. }
  2637. },
  2638. { "DeleteService", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2639. (WPADBusMethodHandler) wpas_dbus_handler_p2p_delete_service,
  2640. {
  2641. { "args", "a{sv}", ARG_IN },
  2642. END_ARGS
  2643. }
  2644. },
  2645. { "FlushService", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2646. (WPADBusMethodHandler) wpas_dbus_handler_p2p_flush_service,
  2647. {
  2648. END_ARGS
  2649. }
  2650. },
  2651. { "ServiceDiscoveryRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2652. (WPADBusMethodHandler) wpas_dbus_handler_p2p_service_sd_req,
  2653. {
  2654. { "args", "a{sv}", ARG_IN },
  2655. { "ref", "t", ARG_OUT },
  2656. END_ARGS
  2657. }
  2658. },
  2659. { "ServiceDiscoveryResponse", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2660. (WPADBusMethodHandler) wpas_dbus_handler_p2p_service_sd_res,
  2661. {
  2662. { "args", "a{sv}", ARG_IN },
  2663. END_ARGS
  2664. }
  2665. },
  2666. { "ServiceDiscoveryCancelRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2667. (WPADBusMethodHandler) wpas_dbus_handler_p2p_service_sd_cancel_req,
  2668. {
  2669. { "args", "t", ARG_IN },
  2670. END_ARGS
  2671. }
  2672. },
  2673. { "ServiceUpdate", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2674. (WPADBusMethodHandler) wpas_dbus_handler_p2p_service_update,
  2675. {
  2676. END_ARGS
  2677. }
  2678. },
  2679. { "ServiceDiscoveryExternal", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2680. (WPADBusMethodHandler) wpas_dbus_handler_p2p_serv_disc_external,
  2681. {
  2682. { "arg", "i", ARG_IN },
  2683. END_ARGS
  2684. }
  2685. },
  2686. { "AddPersistentGroup", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2687. (WPADBusMethodHandler) wpas_dbus_handler_add_persistent_group,
  2688. {
  2689. { "args", "a{sv}", ARG_IN },
  2690. { "path", "o", ARG_OUT },
  2691. END_ARGS
  2692. }
  2693. },
  2694. { "RemovePersistentGroup", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2695. (WPADBusMethodHandler) wpas_dbus_handler_remove_persistent_group,
  2696. {
  2697. { "path", "o", ARG_IN },
  2698. END_ARGS
  2699. }
  2700. },
  2701. { "RemoveAllPersistentGroups", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2702. (WPADBusMethodHandler)
  2703. wpas_dbus_handler_remove_all_persistent_groups,
  2704. {
  2705. END_ARGS
  2706. }
  2707. },
  2708. #endif /* CONFIG_P2P */
  2709. { "FlushBSS", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2710. (WPADBusMethodHandler) wpas_dbus_handler_flush_bss,
  2711. {
  2712. { "age", "u", ARG_IN },
  2713. END_ARGS
  2714. }
  2715. },
  2716. #ifdef CONFIG_AP
  2717. { "SubscribeProbeReq", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2718. (WPADBusMethodHandler) wpas_dbus_handler_subscribe_preq,
  2719. {
  2720. END_ARGS
  2721. }
  2722. },
  2723. { "UnsubscribeProbeReq", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2724. (WPADBusMethodHandler) wpas_dbus_handler_unsubscribe_preq,
  2725. {
  2726. END_ARGS
  2727. }
  2728. },
  2729. #endif /* CONFIG_AP */
  2730. { "EAPLogoff", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2731. (WPADBusMethodHandler) wpas_dbus_handler_eap_logoff,
  2732. {
  2733. END_ARGS
  2734. }
  2735. },
  2736. { "EAPLogon", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2737. (WPADBusMethodHandler) wpas_dbus_handler_eap_logon,
  2738. {
  2739. END_ARGS
  2740. }
  2741. },
  2742. #ifdef CONFIG_AUTOSCAN
  2743. { "AutoScan", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2744. (WPADBusMethodHandler) wpas_dbus_handler_autoscan,
  2745. {
  2746. { "arg", "s", ARG_IN },
  2747. END_ARGS
  2748. }
  2749. },
  2750. #endif /* CONFIG_AUTOSCAN */
  2751. #ifdef CONFIG_TDLS
  2752. { "TDLSDiscover", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2753. (WPADBusMethodHandler) wpas_dbus_handler_tdls_discover,
  2754. {
  2755. { "peer_address", "s", ARG_IN },
  2756. END_ARGS
  2757. }
  2758. },
  2759. { "TDLSSetup", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2760. (WPADBusMethodHandler) wpas_dbus_handler_tdls_setup,
  2761. {
  2762. { "peer_address", "s", ARG_IN },
  2763. END_ARGS
  2764. }
  2765. },
  2766. { "TDLSStatus", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2767. (WPADBusMethodHandler) wpas_dbus_handler_tdls_status,
  2768. {
  2769. { "peer_address", "s", ARG_IN },
  2770. { "status", "s", ARG_OUT },
  2771. END_ARGS
  2772. }
  2773. },
  2774. { "TDLSTeardown", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2775. (WPADBusMethodHandler) wpas_dbus_handler_tdls_teardown,
  2776. {
  2777. { "peer_address", "s", ARG_IN },
  2778. END_ARGS
  2779. }
  2780. },
  2781. { "TDLSChannelSwitch", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2782. (WPADBusMethodHandler) wpas_dbus_handler_tdls_channel_switch,
  2783. {
  2784. { "args", "a{sv}", ARG_IN },
  2785. END_ARGS
  2786. }
  2787. },
  2788. { "TDLSCancelChannelSwitch", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2789. (WPADBusMethodHandler) wpas_dbus_handler_tdls_cancel_channel_switch,
  2790. {
  2791. { "peer_address", "s", ARG_IN },
  2792. END_ARGS
  2793. }
  2794. },
  2795. #endif /* CONFIG_TDLS */
  2796. { "VendorElemAdd", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2797. (WPADBusMethodHandler) wpas_dbus_handler_vendor_elem_add,
  2798. {
  2799. { "frame_id", "i", ARG_IN },
  2800. { "ielems", "ay", ARG_IN },
  2801. END_ARGS
  2802. }
  2803. },
  2804. { "VendorElemGet", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2805. (WPADBusMethodHandler) wpas_dbus_handler_vendor_elem_get,
  2806. {
  2807. { "frame_id", "i", ARG_IN },
  2808. { "ielems", "ay", ARG_OUT },
  2809. END_ARGS
  2810. }
  2811. },
  2812. { "VendorElemRem", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2813. (WPADBusMethodHandler) wpas_dbus_handler_vendor_elem_remove,
  2814. {
  2815. { "frame_id", "i", ARG_IN },
  2816. { "ielems", "ay", ARG_IN },
  2817. END_ARGS
  2818. }
  2819. },
  2820. #ifndef CONFIG_NO_CONFIG_WRITE
  2821. { "SaveConfig", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2822. (WPADBusMethodHandler) wpas_dbus_handler_save_config,
  2823. {
  2824. END_ARGS
  2825. }
  2826. },
  2827. #endif /* CONFIG_NO_CONFIG_WRITE */
  2828. { "AbortScan", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2829. (WPADBusMethodHandler) wpas_dbus_handler_abort_scan,
  2830. {
  2831. END_ARGS
  2832. }
  2833. },
  2834. { NULL, NULL, NULL, { END_ARGS } }
  2835. };
  2836. static const struct wpa_dbus_property_desc wpas_dbus_interface_properties[] = {
  2837. { "Capabilities", WPAS_DBUS_NEW_IFACE_INTERFACE, "a{sv}",
  2838. wpas_dbus_getter_capabilities,
  2839. NULL,
  2840. NULL
  2841. },
  2842. { "State", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2843. wpas_dbus_getter_state,
  2844. NULL,
  2845. NULL
  2846. },
  2847. { "Scanning", WPAS_DBUS_NEW_IFACE_INTERFACE, "b",
  2848. wpas_dbus_getter_scanning,
  2849. NULL,
  2850. NULL
  2851. },
  2852. { "ApScan", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
  2853. wpas_dbus_getter_ap_scan,
  2854. wpas_dbus_setter_ap_scan,
  2855. NULL
  2856. },
  2857. #ifdef CONFIG_IEEE80211W
  2858. { "Pmf", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
  2859. wpas_dbus_getter_pmf,
  2860. wpas_dbus_setter_pmf,
  2861. NULL
  2862. },
  2863. #endif /* CONFIG_IEEE80211W */
  2864. { "BSSExpireAge", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
  2865. wpas_dbus_getter_bss_expire_age,
  2866. wpas_dbus_setter_bss_expire_age,
  2867. NULL
  2868. },
  2869. { "BSSExpireCount", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
  2870. wpas_dbus_getter_bss_expire_count,
  2871. wpas_dbus_setter_bss_expire_count,
  2872. NULL
  2873. },
  2874. { "Country", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2875. wpas_dbus_getter_country,
  2876. wpas_dbus_setter_country,
  2877. NULL
  2878. },
  2879. { "Ifname", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2880. wpas_dbus_getter_ifname,
  2881. NULL,
  2882. NULL
  2883. },
  2884. { "Driver", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2885. wpas_dbus_getter_driver,
  2886. NULL,
  2887. NULL
  2888. },
  2889. { "BridgeIfname", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2890. wpas_dbus_getter_bridge_ifname,
  2891. NULL,
  2892. NULL
  2893. },
  2894. { "ConfigFile", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2895. wpas_dbus_getter_config_file,
  2896. NULL,
  2897. NULL
  2898. },
  2899. { "CurrentBSS", WPAS_DBUS_NEW_IFACE_INTERFACE, "o",
  2900. wpas_dbus_getter_current_bss,
  2901. NULL,
  2902. NULL
  2903. },
  2904. { "CurrentNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE, "o",
  2905. wpas_dbus_getter_current_network,
  2906. NULL,
  2907. NULL
  2908. },
  2909. { "CurrentAuthMode", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2910. wpas_dbus_getter_current_auth_mode,
  2911. NULL,
  2912. NULL
  2913. },
  2914. { "Blobs", WPAS_DBUS_NEW_IFACE_INTERFACE, "a{say}",
  2915. wpas_dbus_getter_blobs,
  2916. NULL,
  2917. NULL
  2918. },
  2919. { "BSSs", WPAS_DBUS_NEW_IFACE_INTERFACE, "ao",
  2920. wpas_dbus_getter_bsss,
  2921. NULL,
  2922. NULL
  2923. },
  2924. { "Networks", WPAS_DBUS_NEW_IFACE_INTERFACE, "ao",
  2925. wpas_dbus_getter_networks,
  2926. NULL,
  2927. NULL
  2928. },
  2929. { "FastReauth", WPAS_DBUS_NEW_IFACE_INTERFACE, "b",
  2930. wpas_dbus_getter_fast_reauth,
  2931. wpas_dbus_setter_fast_reauth,
  2932. NULL
  2933. },
  2934. { "ScanInterval", WPAS_DBUS_NEW_IFACE_INTERFACE, "i",
  2935. wpas_dbus_getter_scan_interval,
  2936. wpas_dbus_setter_scan_interval,
  2937. NULL
  2938. },
  2939. { "PKCS11EnginePath", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2940. wpas_dbus_getter_pkcs11_engine_path,
  2941. NULL,
  2942. NULL
  2943. },
  2944. { "PKCS11ModulePath", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2945. wpas_dbus_getter_pkcs11_module_path,
  2946. NULL,
  2947. NULL
  2948. },
  2949. #ifdef CONFIG_WPS
  2950. { "ProcessCredentials", WPAS_DBUS_NEW_IFACE_WPS, "b",
  2951. wpas_dbus_getter_process_credentials,
  2952. wpas_dbus_setter_process_credentials,
  2953. NULL
  2954. },
  2955. { "ConfigMethods", WPAS_DBUS_NEW_IFACE_WPS, "s",
  2956. wpas_dbus_getter_config_methods,
  2957. wpas_dbus_setter_config_methods,
  2958. NULL
  2959. },
  2960. {
  2961. "DeviceName", WPAS_DBUS_NEW_IFACE_WPS, "s",
  2962. wpas_dbus_getter_wps_device_name,
  2963. wpas_dbus_setter_wps_device_name,
  2964. NULL
  2965. },
  2966. {
  2967. "Manufacturer", WPAS_DBUS_NEW_IFACE_WPS, "s",
  2968. wpas_dbus_getter_wps_manufacturer,
  2969. wpas_dbus_setter_wps_manufacturer,
  2970. NULL
  2971. },
  2972. {
  2973. "ModelName", WPAS_DBUS_NEW_IFACE_WPS, "s",
  2974. wpas_dbus_getter_wps_device_model_name,
  2975. wpas_dbus_setter_wps_device_model_name,
  2976. NULL
  2977. },
  2978. {
  2979. "ModelNumber", WPAS_DBUS_NEW_IFACE_WPS, "s",
  2980. wpas_dbus_getter_wps_device_model_number,
  2981. wpas_dbus_setter_wps_device_model_number,
  2982. NULL
  2983. },
  2984. {
  2985. "SerialNumber", WPAS_DBUS_NEW_IFACE_WPS, "s",
  2986. wpas_dbus_getter_wps_device_serial_number,
  2987. wpas_dbus_setter_wps_device_serial_number,
  2988. NULL
  2989. },
  2990. {
  2991. "DeviceType", WPAS_DBUS_NEW_IFACE_WPS, "ay",
  2992. wpas_dbus_getter_wps_device_device_type,
  2993. wpas_dbus_setter_wps_device_device_type,
  2994. NULL
  2995. },
  2996. #endif /* CONFIG_WPS */
  2997. #ifdef CONFIG_P2P
  2998. { "P2PDeviceConfig", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "a{sv}",
  2999. wpas_dbus_getter_p2p_device_config,
  3000. wpas_dbus_setter_p2p_device_config,
  3001. NULL
  3002. },
  3003. { "Peers", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "ao",
  3004. wpas_dbus_getter_p2p_peers,
  3005. NULL,
  3006. NULL
  3007. },
  3008. { "Role", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "s",
  3009. wpas_dbus_getter_p2p_role,
  3010. NULL,
  3011. NULL
  3012. },
  3013. { "Group", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "o",
  3014. wpas_dbus_getter_p2p_group,
  3015. NULL,
  3016. NULL
  3017. },
  3018. { "PeerGO", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "o",
  3019. wpas_dbus_getter_p2p_peergo,
  3020. NULL,
  3021. NULL
  3022. },
  3023. { "PersistentGroups", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "ao",
  3024. wpas_dbus_getter_persistent_groups,
  3025. NULL,
  3026. NULL
  3027. },
  3028. #endif /* CONFIG_P2P */
  3029. { "DisconnectReason", WPAS_DBUS_NEW_IFACE_INTERFACE, "i",
  3030. wpas_dbus_getter_disconnect_reason,
  3031. NULL,
  3032. NULL
  3033. },
  3034. { "AssocStatusCode", WPAS_DBUS_NEW_IFACE_INTERFACE, "i",
  3035. wpas_dbus_getter_assoc_status_code,
  3036. NULL,
  3037. NULL
  3038. },
  3039. #ifdef CONFIG_MESH
  3040. { "MeshPeers", WPAS_DBUS_NEW_IFACE_MESH, "aay",
  3041. wpas_dbus_getter_mesh_peers,
  3042. NULL,
  3043. NULL
  3044. },
  3045. #endif /* CONFIG_MESH */
  3046. { NULL, NULL, NULL, NULL, NULL, NULL }
  3047. };
  3048. static const struct wpa_dbus_signal_desc wpas_dbus_interface_signals[] = {
  3049. { "ScanDone", WPAS_DBUS_NEW_IFACE_INTERFACE,
  3050. {
  3051. { "success", "b", ARG_OUT },
  3052. END_ARGS
  3053. }
  3054. },
  3055. { "BSSAdded", WPAS_DBUS_NEW_IFACE_INTERFACE,
  3056. {
  3057. { "path", "o", ARG_OUT },
  3058. { "properties", "a{sv}", ARG_OUT },
  3059. END_ARGS
  3060. }
  3061. },
  3062. { "BSSRemoved", WPAS_DBUS_NEW_IFACE_INTERFACE,
  3063. {
  3064. { "path", "o", ARG_OUT },
  3065. END_ARGS
  3066. }
  3067. },
  3068. { "BlobAdded", WPAS_DBUS_NEW_IFACE_INTERFACE,
  3069. {
  3070. { "name", "s", ARG_OUT },
  3071. END_ARGS
  3072. }
  3073. },
  3074. { "BlobRemoved", WPAS_DBUS_NEW_IFACE_INTERFACE,
  3075. {
  3076. { "name", "s", ARG_OUT },
  3077. END_ARGS
  3078. }
  3079. },
  3080. { "NetworkAdded", WPAS_DBUS_NEW_IFACE_INTERFACE,
  3081. {
  3082. { "path", "o", ARG_OUT },
  3083. { "properties", "a{sv}", ARG_OUT },
  3084. END_ARGS
  3085. }
  3086. },
  3087. { "NetworkRemoved", WPAS_DBUS_NEW_IFACE_INTERFACE,
  3088. {
  3089. { "path", "o", ARG_OUT },
  3090. END_ARGS
  3091. }
  3092. },
  3093. { "NetworkSelected", WPAS_DBUS_NEW_IFACE_INTERFACE,
  3094. {
  3095. { "path", "o", ARG_OUT },
  3096. END_ARGS
  3097. }
  3098. },
  3099. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  3100. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_INTERFACE,
  3101. {
  3102. { "properties", "a{sv}", ARG_OUT },
  3103. END_ARGS
  3104. }
  3105. },
  3106. #ifdef CONFIG_WPS
  3107. { "Event", WPAS_DBUS_NEW_IFACE_WPS,
  3108. {
  3109. { "name", "s", ARG_OUT },
  3110. { "args", "a{sv}", ARG_OUT },
  3111. END_ARGS
  3112. }
  3113. },
  3114. { "Credentials", WPAS_DBUS_NEW_IFACE_WPS,
  3115. {
  3116. { "credentials", "a{sv}", ARG_OUT },
  3117. END_ARGS
  3118. }
  3119. },
  3120. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  3121. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_WPS,
  3122. {
  3123. { "properties", "a{sv}", ARG_OUT },
  3124. END_ARGS
  3125. }
  3126. },
  3127. #endif /* CONFIG_WPS */
  3128. #ifdef CONFIG_P2P
  3129. { "DeviceFound", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3130. {
  3131. { "path", "o", ARG_OUT },
  3132. END_ARGS
  3133. }
  3134. },
  3135. { "DeviceFoundProperties", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3136. {
  3137. { "path", "o", ARG_OUT },
  3138. { "properties", "a{sv}", ARG_OUT },
  3139. END_ARGS
  3140. }
  3141. },
  3142. { "DeviceLost", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3143. {
  3144. { "path", "o", ARG_OUT },
  3145. END_ARGS
  3146. }
  3147. },
  3148. { "FindStopped", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3149. {
  3150. END_ARGS
  3151. }
  3152. },
  3153. { "ProvisionDiscoveryRequestDisplayPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3154. {
  3155. { "peer_object", "o", ARG_OUT },
  3156. { "pin", "s", ARG_OUT },
  3157. END_ARGS
  3158. }
  3159. },
  3160. { "ProvisionDiscoveryResponseDisplayPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3161. {
  3162. { "peer_object", "o", ARG_OUT },
  3163. { "pin", "s", ARG_OUT },
  3164. END_ARGS
  3165. }
  3166. },
  3167. { "ProvisionDiscoveryRequestEnterPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3168. {
  3169. { "peer_object", "o", ARG_OUT },
  3170. END_ARGS
  3171. }
  3172. },
  3173. { "ProvisionDiscoveryResponseEnterPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3174. {
  3175. { "peer_object", "o", ARG_OUT },
  3176. END_ARGS
  3177. }
  3178. },
  3179. { "ProvisionDiscoveryPBCRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3180. {
  3181. { "peer_object", "o", ARG_OUT },
  3182. END_ARGS
  3183. }
  3184. },
  3185. { "ProvisionDiscoveryPBCResponse", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3186. {
  3187. { "peer_object", "o", ARG_OUT },
  3188. END_ARGS
  3189. }
  3190. },
  3191. { "ProvisionDiscoveryFailure", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3192. {
  3193. { "peer_object", "o", ARG_OUT },
  3194. { "status", "i", ARG_OUT },
  3195. END_ARGS
  3196. }
  3197. },
  3198. { "GroupStarted", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3199. {
  3200. { "properties", "a{sv}", ARG_OUT },
  3201. END_ARGS
  3202. }
  3203. },
  3204. { "GroupFormationFailure", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3205. {
  3206. { "reason", "s", ARG_OUT },
  3207. END_ARGS
  3208. }
  3209. },
  3210. { "GONegotiationSuccess", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3211. {
  3212. { "properties", "a{sv}", ARG_OUT },
  3213. END_ARGS
  3214. }
  3215. },
  3216. { "GONegotiationFailure", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3217. {
  3218. { "properties", "a{sv}", ARG_OUT },
  3219. END_ARGS
  3220. }
  3221. },
  3222. { "GONegotiationRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3223. {
  3224. { "path", "o", ARG_OUT },
  3225. { "dev_passwd_id", "q", ARG_OUT },
  3226. { "device_go_intent", "y", ARG_OUT },
  3227. END_ARGS
  3228. }
  3229. },
  3230. { "InvitationResult", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3231. {
  3232. { "invite_result", "a{sv}", ARG_OUT },
  3233. END_ARGS
  3234. }
  3235. },
  3236. { "GroupFinished", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3237. {
  3238. { "properties", "a{sv}", ARG_OUT },
  3239. END_ARGS
  3240. }
  3241. },
  3242. { "ServiceDiscoveryRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3243. {
  3244. { "sd_request", "a{sv}", ARG_OUT },
  3245. END_ARGS
  3246. }
  3247. },
  3248. { "ServiceDiscoveryResponse", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3249. {
  3250. { "sd_response", "a{sv}", ARG_OUT },
  3251. END_ARGS
  3252. }
  3253. },
  3254. { "PersistentGroupAdded", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3255. {
  3256. { "path", "o", ARG_OUT },
  3257. { "properties", "a{sv}", ARG_OUT },
  3258. END_ARGS
  3259. }
  3260. },
  3261. { "PersistentGroupRemoved", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3262. {
  3263. { "path", "o", ARG_OUT },
  3264. END_ARGS
  3265. }
  3266. },
  3267. { "WpsFailed", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3268. {
  3269. { "name", "s", ARG_OUT },
  3270. { "args", "a{sv}", ARG_OUT },
  3271. END_ARGS
  3272. }
  3273. },
  3274. { "InvitationReceived", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3275. {
  3276. { "properties", "a{sv}", ARG_OUT },
  3277. END_ARGS
  3278. }
  3279. },
  3280. #endif /* CONFIG_P2P */
  3281. #ifdef CONFIG_AP
  3282. { "ProbeRequest", WPAS_DBUS_NEW_IFACE_INTERFACE,
  3283. {
  3284. { "args", "a{sv}", ARG_OUT },
  3285. END_ARGS
  3286. }
  3287. },
  3288. #endif /* CONFIG_AP */
  3289. { "Certification", WPAS_DBUS_NEW_IFACE_INTERFACE,
  3290. {
  3291. { "certification", "a{sv}", ARG_OUT },
  3292. END_ARGS
  3293. }
  3294. },
  3295. { "EAP", WPAS_DBUS_NEW_IFACE_INTERFACE,
  3296. {
  3297. { "status", "s", ARG_OUT },
  3298. { "parameter", "s", ARG_OUT },
  3299. END_ARGS
  3300. }
  3301. },
  3302. { "StaAuthorized", WPAS_DBUS_NEW_IFACE_INTERFACE,
  3303. {
  3304. { "name", "s", ARG_OUT },
  3305. END_ARGS
  3306. }
  3307. },
  3308. { "StaDeauthorized", WPAS_DBUS_NEW_IFACE_INTERFACE,
  3309. {
  3310. { "name", "s", ARG_OUT },
  3311. END_ARGS
  3312. }
  3313. },
  3314. { "NetworkRequest", WPAS_DBUS_NEW_IFACE_INTERFACE,
  3315. {
  3316. { "path", "o", ARG_OUT },
  3317. { "field", "s", ARG_OUT },
  3318. { "text", "s", ARG_OUT },
  3319. END_ARGS
  3320. }
  3321. },
  3322. #ifdef CONFIG_MESH
  3323. { "MeshGroupStarted", WPAS_DBUS_NEW_IFACE_MESH,
  3324. {
  3325. { "args", "a{sv}", ARG_OUT },
  3326. END_ARGS
  3327. }
  3328. },
  3329. { "MeshGroupRemoved", WPAS_DBUS_NEW_IFACE_MESH,
  3330. {
  3331. { "args", "a{sv}", ARG_OUT },
  3332. END_ARGS
  3333. }
  3334. },
  3335. { "MeshPeerConnected", WPAS_DBUS_NEW_IFACE_MESH,
  3336. {
  3337. { "args", "a{sv}", ARG_OUT },
  3338. END_ARGS
  3339. }
  3340. },
  3341. { "MeshPeerDisconnected", WPAS_DBUS_NEW_IFACE_MESH,
  3342. {
  3343. { "args", "a{sv}", ARG_OUT },
  3344. END_ARGS
  3345. }
  3346. },
  3347. #endif /* CONFIG_MESH */
  3348. { NULL, NULL, { END_ARGS } }
  3349. };
  3350. static int wpa_dbus_ctrl_iface_props_init(struct wpas_dbus_priv *priv)
  3351. {
  3352. size_t all_size;
  3353. unsigned int i, j, count, num_const, num_globals;
  3354. const char *global_name;
  3355. static const char * const ignored_globals[] = {
  3356. "bss_expiration_age", "bss_expiration_scan_count",
  3357. "ap_scan", "country", "fast_reauth",
  3358. "pkcs11_engine_path", "pkcs11_module_path"
  3359. };
  3360. /* wpas_dbus_interface_properties terminates with a NULL element */
  3361. num_const = ARRAY_SIZE(wpas_dbus_interface_properties) - 1;
  3362. num_globals = wpa_config_get_num_global_field_names();
  3363. priv->globals_start = num_const;
  3364. /* allocate enough for all properties + terminating NULL element */
  3365. all_size = (num_globals + num_const + 1) *
  3366. sizeof(wpas_dbus_interface_properties[0]);
  3367. priv->all_interface_properties = os_zalloc(all_size);
  3368. if (!priv->all_interface_properties) {
  3369. wpa_printf(MSG_ERROR,
  3370. "dbus: Not enough memory for interface properties");
  3371. return -1;
  3372. }
  3373. /* Copy constant interface properties to the start of the array */
  3374. os_memcpy(priv->all_interface_properties,
  3375. wpas_dbus_interface_properties,
  3376. sizeof(wpas_dbus_interface_properties));
  3377. /* Dynamically construct interface global properties */
  3378. for (i = 0, count = num_const; i < num_globals; i++) {
  3379. struct wpa_dbus_property_desc *desc;
  3380. int no_var = 0;
  3381. /* ignore globals that are actually just methods */
  3382. global_name = wpa_config_get_global_field_name(i, &no_var);
  3383. if (no_var)
  3384. continue;
  3385. /* Ignore fields already explicitly exposed */
  3386. for (j = 0; j < ARRAY_SIZE(ignored_globals); j++) {
  3387. if (os_strcmp(global_name, ignored_globals[j]) == 0)
  3388. break;
  3389. }
  3390. if (j < ARRAY_SIZE(ignored_globals))
  3391. continue;
  3392. desc = &priv->all_interface_properties[count++];
  3393. desc->dbus_property = uscore_to_dbus(global_name);
  3394. if (!desc->dbus_property) {
  3395. wpa_printf(MSG_ERROR,
  3396. "dbus: Not enough memory for D-Bus property name");
  3397. goto error;
  3398. }
  3399. desc->dbus_interface = WPAS_DBUS_NEW_IFACE_INTERFACE;
  3400. desc->type = "s";
  3401. desc->getter = wpas_dbus_getter_iface_global;
  3402. desc->setter = wpas_dbus_setter_iface_global;
  3403. desc->data = global_name;
  3404. }
  3405. return 0;
  3406. error:
  3407. wpa_dbus_ctrl_iface_props_deinit(priv);
  3408. return -1;
  3409. }
  3410. /**
  3411. * wpas_dbus_register_interface - Register an interface with D-Bus
  3412. * @wpa_s: wpa_supplicant interface structure
  3413. * Returns: 0 on success, -1 on failure
  3414. */
  3415. int wpas_dbus_register_interface(struct wpa_supplicant *wpa_s)
  3416. {
  3417. struct wpa_dbus_object_desc *obj_desc = NULL;
  3418. struct wpas_dbus_priv *ctrl_iface = wpa_s->global->dbus;
  3419. int next;
  3420. /* Do nothing if the control interface is not turned on */
  3421. if (ctrl_iface == NULL)
  3422. return 0;
  3423. /* Create and set the interface's object path */
  3424. wpa_s->dbus_new_path = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
  3425. if (wpa_s->dbus_new_path == NULL)
  3426. return -1;
  3427. next = ctrl_iface->next_objid++;
  3428. os_snprintf(wpa_s->dbus_new_path, WPAS_DBUS_OBJECT_PATH_MAX,
  3429. WPAS_DBUS_NEW_PATH_INTERFACES "/%u",
  3430. next);
  3431. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  3432. if (!obj_desc) {
  3433. wpa_printf(MSG_ERROR,
  3434. "Not enough memory to create object description");
  3435. goto err;
  3436. }
  3437. wpas_dbus_register(obj_desc, wpa_s, NULL, wpas_dbus_interface_methods,
  3438. ctrl_iface->all_interface_properties,
  3439. wpas_dbus_interface_signals);
  3440. wpa_printf(MSG_DEBUG, "dbus: Register interface object '%s'",
  3441. wpa_s->dbus_new_path);
  3442. if (wpa_dbus_register_object_per_iface(ctrl_iface,
  3443. wpa_s->dbus_new_path,
  3444. wpa_s->ifname, obj_desc))
  3445. goto err;
  3446. wpas_dbus_signal_interface_added(wpa_s);
  3447. return 0;
  3448. err:
  3449. os_free(wpa_s->dbus_new_path);
  3450. wpa_s->dbus_new_path = NULL;
  3451. free_dbus_object_desc(obj_desc);
  3452. return -1;
  3453. }
  3454. /**
  3455. * wpas_dbus_unregister_interface - Unregister the interface from D-Bus
  3456. * @wpa_s: wpa_supplicant interface structure
  3457. * Returns: 0 on success, -1 on failure
  3458. */
  3459. int wpas_dbus_unregister_interface(struct wpa_supplicant *wpa_s)
  3460. {
  3461. struct wpas_dbus_priv *ctrl_iface;
  3462. /* Do nothing if the control interface is not turned on */
  3463. if (wpa_s == NULL || wpa_s->global == NULL)
  3464. return 0;
  3465. ctrl_iface = wpa_s->global->dbus;
  3466. if (ctrl_iface == NULL || wpa_s->dbus_new_path == NULL)
  3467. return 0;
  3468. wpa_printf(MSG_DEBUG, "dbus: Unregister interface object '%s'",
  3469. wpa_s->dbus_new_path);
  3470. #ifdef CONFIG_AP
  3471. if (wpa_s->preq_notify_peer) {
  3472. wpas_dbus_unsubscribe_noc(ctrl_iface);
  3473. os_free(wpa_s->preq_notify_peer);
  3474. wpa_s->preq_notify_peer = NULL;
  3475. }
  3476. #endif /* CONFIG_AP */
  3477. if (wpa_dbus_unregister_object_per_iface(ctrl_iface,
  3478. wpa_s->dbus_new_path))
  3479. return -1;
  3480. wpas_dbus_signal_interface_removed(wpa_s);
  3481. os_free(wpa_s->dbus_new_path);
  3482. wpa_s->dbus_new_path = NULL;
  3483. return 0;
  3484. }
  3485. #ifdef CONFIG_P2P
  3486. static const struct wpa_dbus_property_desc wpas_dbus_p2p_peer_properties[] = {
  3487. { "DeviceName", WPAS_DBUS_NEW_IFACE_P2P_PEER, "s",
  3488. wpas_dbus_getter_p2p_peer_device_name,
  3489. NULL,
  3490. NULL
  3491. },
  3492. { "Manufacturer", WPAS_DBUS_NEW_IFACE_P2P_PEER, "s",
  3493. wpas_dbus_getter_p2p_peer_manufacturer,
  3494. NULL,
  3495. NULL
  3496. },
  3497. { "ModelName", WPAS_DBUS_NEW_IFACE_P2P_PEER, "s",
  3498. wpas_dbus_getter_p2p_peer_modelname,
  3499. NULL,
  3500. NULL
  3501. },
  3502. { "ModelNumber", WPAS_DBUS_NEW_IFACE_P2P_PEER, "s",
  3503. wpas_dbus_getter_p2p_peer_modelnumber,
  3504. NULL,
  3505. NULL
  3506. },
  3507. { "SerialNumber", WPAS_DBUS_NEW_IFACE_P2P_PEER, "s",
  3508. wpas_dbus_getter_p2p_peer_serialnumber,
  3509. NULL,
  3510. NULL
  3511. },
  3512. { "PrimaryDeviceType", WPAS_DBUS_NEW_IFACE_P2P_PEER, "ay",
  3513. wpas_dbus_getter_p2p_peer_primary_device_type,
  3514. NULL,
  3515. NULL
  3516. },
  3517. { "config_method", WPAS_DBUS_NEW_IFACE_P2P_PEER, "q",
  3518. wpas_dbus_getter_p2p_peer_config_method,
  3519. NULL,
  3520. NULL
  3521. },
  3522. { "level", WPAS_DBUS_NEW_IFACE_P2P_PEER, "i",
  3523. wpas_dbus_getter_p2p_peer_level,
  3524. NULL,
  3525. NULL
  3526. },
  3527. { "devicecapability", WPAS_DBUS_NEW_IFACE_P2P_PEER, "y",
  3528. wpas_dbus_getter_p2p_peer_device_capability,
  3529. NULL,
  3530. NULL
  3531. },
  3532. { "groupcapability", WPAS_DBUS_NEW_IFACE_P2P_PEER, "y",
  3533. wpas_dbus_getter_p2p_peer_group_capability,
  3534. NULL,
  3535. NULL
  3536. },
  3537. { "SecondaryDeviceTypes", WPAS_DBUS_NEW_IFACE_P2P_PEER, "aay",
  3538. wpas_dbus_getter_p2p_peer_secondary_device_types,
  3539. NULL,
  3540. NULL
  3541. },
  3542. { "VendorExtension", WPAS_DBUS_NEW_IFACE_P2P_PEER, "aay",
  3543. wpas_dbus_getter_p2p_peer_vendor_extension,
  3544. NULL,
  3545. NULL
  3546. },
  3547. { "IEs", WPAS_DBUS_NEW_IFACE_P2P_PEER, "ay",
  3548. wpas_dbus_getter_p2p_peer_ies,
  3549. NULL,
  3550. NULL
  3551. },
  3552. { "DeviceAddress", WPAS_DBUS_NEW_IFACE_P2P_PEER, "ay",
  3553. wpas_dbus_getter_p2p_peer_device_address,
  3554. NULL,
  3555. NULL
  3556. },
  3557. { "Groups", WPAS_DBUS_NEW_IFACE_P2P_PEER, "ao",
  3558. wpas_dbus_getter_p2p_peer_groups,
  3559. NULL,
  3560. NULL
  3561. },
  3562. { NULL, NULL, NULL, NULL, NULL, NULL }
  3563. };
  3564. static const struct wpa_dbus_signal_desc wpas_dbus_p2p_peer_signals[] = {
  3565. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  3566. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_P2P_PEER,
  3567. {
  3568. { "properties", "a{sv}", ARG_OUT },
  3569. END_ARGS
  3570. }
  3571. },
  3572. { NULL, NULL, { END_ARGS } }
  3573. };
  3574. /**
  3575. * wpas_dbus_signal_peer - Send a peer related event signal
  3576. * @wpa_s: %wpa_supplicant network interface data
  3577. * @dev: peer device object
  3578. * @interface: name of the interface emitting this signal.
  3579. * In case of peer objects, it would be emitted by either
  3580. * the "interface object" or by "peer objects"
  3581. * @sig_name: signal name - DeviceFound
  3582. * @properties: Whether to add a second argument with object properties
  3583. *
  3584. * Notify listeners about event related with p2p peer device
  3585. */
  3586. static void wpas_dbus_signal_peer(struct wpa_supplicant *wpa_s,
  3587. const u8 *dev_addr, const char *interface,
  3588. const char *sig_name, int properties)
  3589. {
  3590. struct wpas_dbus_priv *iface;
  3591. DBusMessage *msg;
  3592. DBusMessageIter iter;
  3593. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  3594. if (wpa_s->p2p_mgmt)
  3595. wpa_s = wpa_s->parent;
  3596. iface = wpa_s->global->dbus;
  3597. /* Do nothing if the control interface is not turned on */
  3598. if (iface == NULL || !wpa_s->dbus_new_path)
  3599. return;
  3600. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  3601. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  3602. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  3603. msg = dbus_message_new_signal(wpa_s->dbus_new_path, interface,
  3604. sig_name);
  3605. if (msg == NULL)
  3606. return;
  3607. dbus_message_iter_init_append(msg, &iter);
  3608. path = peer_obj_path;
  3609. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  3610. &path) ||
  3611. (properties && !wpa_dbus_get_object_properties(
  3612. iface, peer_obj_path, WPAS_DBUS_NEW_IFACE_P2P_PEER,
  3613. &iter)))
  3614. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  3615. else
  3616. dbus_connection_send(iface->con, msg, NULL);
  3617. dbus_message_unref(msg);
  3618. }
  3619. /**
  3620. * wpas_dbus_signal_peer_found - Send a peer found signal
  3621. * @wpa_s: %wpa_supplicant network interface data
  3622. * @dev_addr: Peer P2P Device Address
  3623. *
  3624. * Notify listeners about find a p2p peer device found
  3625. */
  3626. void wpas_dbus_signal_peer_device_found(struct wpa_supplicant *wpa_s,
  3627. const u8 *dev_addr)
  3628. {
  3629. wpas_dbus_signal_peer(wpa_s, dev_addr,
  3630. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3631. "DeviceFound", FALSE);
  3632. wpas_dbus_signal_peer(wpa_s, dev_addr,
  3633. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3634. "DeviceFoundProperties", TRUE);
  3635. }
  3636. /**
  3637. * wpas_dbus_signal_peer_lost - Send a peer lost signal
  3638. * @wpa_s: %wpa_supplicant network interface data
  3639. * @dev_addr: Peer P2P Device Address
  3640. *
  3641. * Notify listeners about lost a p2p peer device
  3642. */
  3643. void wpas_dbus_signal_peer_device_lost(struct wpa_supplicant *wpa_s,
  3644. const u8 *dev_addr)
  3645. {
  3646. wpas_dbus_signal_peer(wpa_s, dev_addr,
  3647. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3648. "DeviceLost", FALSE);
  3649. }
  3650. /**
  3651. * wpas_dbus_register_peer - Register a discovered peer object with dbus
  3652. * @wpa_s: wpa_supplicant interface structure
  3653. * @dev_addr: P2P Device Address of the peer
  3654. * Returns: 0 on success, -1 on failure
  3655. *
  3656. * Registers network representing object with dbus
  3657. */
  3658. int wpas_dbus_register_peer(struct wpa_supplicant *wpa_s, const u8 *dev_addr)
  3659. {
  3660. struct wpas_dbus_priv *ctrl_iface;
  3661. struct wpa_dbus_object_desc *obj_desc;
  3662. struct peer_handler_args *arg;
  3663. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  3664. /* Do nothing if the control interface is not turned on */
  3665. if (wpa_s == NULL || wpa_s->global == NULL)
  3666. return 0;
  3667. ctrl_iface = wpa_s->global->dbus;
  3668. if (ctrl_iface == NULL)
  3669. return 0;
  3670. wpa_s = wpa_s->parent->parent;
  3671. if (!wpa_s->dbus_new_path)
  3672. return 0;
  3673. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  3674. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  3675. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  3676. wpa_printf(MSG_INFO, "dbus: Register peer object '%s'",
  3677. peer_obj_path);
  3678. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  3679. if (!obj_desc) {
  3680. wpa_printf(MSG_ERROR,
  3681. "Not enough memory to create object description");
  3682. goto err;
  3683. }
  3684. /* allocate memory for handlers arguments */
  3685. arg = os_zalloc(sizeof(struct peer_handler_args));
  3686. if (!arg) {
  3687. wpa_printf(MSG_ERROR,
  3688. "Not enough memory to create arguments for method");
  3689. goto err;
  3690. }
  3691. arg->wpa_s = wpa_s;
  3692. os_memcpy(arg->p2p_device_addr, dev_addr, ETH_ALEN);
  3693. wpas_dbus_register(obj_desc, arg, wpa_dbus_free,
  3694. NULL,
  3695. wpas_dbus_p2p_peer_properties,
  3696. wpas_dbus_p2p_peer_signals);
  3697. if (wpa_dbus_register_object_per_iface(ctrl_iface, peer_obj_path,
  3698. wpa_s->ifname, obj_desc))
  3699. goto err;
  3700. return 0;
  3701. err:
  3702. free_dbus_object_desc(obj_desc);
  3703. return -1;
  3704. }
  3705. /**
  3706. * wpas_dbus_unregister_peer - Unregister a peer object with dbus
  3707. * @wpa_s: wpa_supplicant interface structure
  3708. * @dev_addr: p2p device addr
  3709. * Returns: 0 on success, -1 on failure
  3710. *
  3711. * Registers network representing object with dbus
  3712. */
  3713. int wpas_dbus_unregister_peer(struct wpa_supplicant *wpa_s,
  3714. const u8 *dev_addr)
  3715. {
  3716. struct wpas_dbus_priv *ctrl_iface;
  3717. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  3718. int ret;
  3719. /* Do nothing if the control interface is not turned on */
  3720. if (wpa_s == NULL || wpa_s->global == NULL)
  3721. return 0;
  3722. wpa_s = wpa_s->parent->parent;
  3723. if (!wpa_s->dbus_new_path)
  3724. return 0;
  3725. ctrl_iface = wpa_s->global->dbus;
  3726. if (ctrl_iface == NULL)
  3727. return 0;
  3728. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  3729. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  3730. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  3731. wpa_printf(MSG_INFO, "dbus: Unregister peer object '%s'",
  3732. peer_obj_path);
  3733. ret = wpa_dbus_unregister_object_per_iface(ctrl_iface, peer_obj_path);
  3734. return ret;
  3735. }
  3736. /**
  3737. * wpas_dbus_signal_p2p_find_stopped - Send P2P Find stopped signal
  3738. * @wpa_s: %wpa_supplicant network interface data
  3739. *
  3740. * Notify listeners about P2P Find stopped
  3741. */
  3742. void wpas_dbus_signal_p2p_find_stopped(struct wpa_supplicant *wpa_s)
  3743. {
  3744. struct wpas_dbus_priv *iface;
  3745. DBusMessage *msg;
  3746. iface = wpa_s->global->dbus;
  3747. /* Do nothing if the control interface is not turned on */
  3748. if (iface == NULL || !wpa_s->dbus_new_path)
  3749. return;
  3750. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  3751. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3752. "FindStopped");
  3753. if (msg == NULL)
  3754. return;
  3755. dbus_connection_send(iface->con, msg, NULL);
  3756. dbus_message_unref(msg);
  3757. }
  3758. /**
  3759. * wpas_dbus_signal_peer_groups_changed - Send peer group change property signal
  3760. * @wpa_s: %wpa_supplicant network interface data
  3761. * @dev_addr: P2P Device Address
  3762. *
  3763. * Notify listeners about peer Groups property changes.
  3764. */
  3765. void wpas_dbus_signal_peer_groups_changed(struct wpa_supplicant *wpa_s,
  3766. const u8 *dev_addr)
  3767. {
  3768. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  3769. if (wpa_s->p2p_mgmt)
  3770. wpa_s = wpa_s->parent;
  3771. if (!wpa_s->dbus_new_path)
  3772. return;
  3773. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  3774. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  3775. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  3776. wpa_dbus_mark_property_changed(wpa_s->global->dbus, peer_obj_path,
  3777. WPAS_DBUS_NEW_IFACE_P2P_PEER, "Groups");
  3778. }
  3779. static const struct wpa_dbus_property_desc wpas_dbus_p2p_group_properties[] = {
  3780. { "Members", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ao",
  3781. wpas_dbus_getter_p2p_group_members,
  3782. NULL,
  3783. NULL
  3784. },
  3785. { "Group", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "o",
  3786. wpas_dbus_getter_p2p_group,
  3787. NULL,
  3788. NULL
  3789. },
  3790. { "Role", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "s",
  3791. wpas_dbus_getter_p2p_role,
  3792. NULL,
  3793. NULL
  3794. },
  3795. { "SSID", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ay",
  3796. wpas_dbus_getter_p2p_group_ssid,
  3797. NULL,
  3798. NULL
  3799. },
  3800. { "BSSID", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ay",
  3801. wpas_dbus_getter_p2p_group_bssid,
  3802. NULL,
  3803. NULL
  3804. },
  3805. { "Frequency", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "q",
  3806. wpas_dbus_getter_p2p_group_frequency,
  3807. NULL,
  3808. NULL
  3809. },
  3810. { "Passphrase", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "s",
  3811. wpas_dbus_getter_p2p_group_passphrase,
  3812. NULL,
  3813. NULL
  3814. },
  3815. { "PSK", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ay",
  3816. wpas_dbus_getter_p2p_group_psk,
  3817. NULL,
  3818. NULL
  3819. },
  3820. { "WPSVendorExtensions", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "aay",
  3821. wpas_dbus_getter_p2p_group_vendor_ext,
  3822. wpas_dbus_setter_p2p_group_vendor_ext,
  3823. NULL
  3824. },
  3825. { NULL, NULL, NULL, NULL, NULL, NULL }
  3826. };
  3827. static const struct wpa_dbus_signal_desc wpas_dbus_p2p_group_signals[] = {
  3828. { "PeerJoined", WPAS_DBUS_NEW_IFACE_P2P_GROUP,
  3829. {
  3830. { "peer", "o", ARG_OUT },
  3831. END_ARGS
  3832. }
  3833. },
  3834. { "PeerDisconnected", WPAS_DBUS_NEW_IFACE_P2P_GROUP,
  3835. {
  3836. { "peer", "o", ARG_OUT },
  3837. END_ARGS
  3838. }
  3839. },
  3840. { NULL, NULL, { END_ARGS } }
  3841. };
  3842. /**
  3843. * wpas_dbus_register_p2p_group - Register a p2p group object with dbus
  3844. * @wpa_s: wpa_supplicant interface structure
  3845. * @ssid: SSID struct
  3846. * Returns: 0 on success, -1 on failure
  3847. *
  3848. * Registers p2p group representing object with dbus
  3849. */
  3850. void wpas_dbus_register_p2p_group(struct wpa_supplicant *wpa_s,
  3851. struct wpa_ssid *ssid)
  3852. {
  3853. struct wpas_dbus_priv *ctrl_iface;
  3854. struct wpa_dbus_object_desc *obj_desc;
  3855. char group_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  3856. /* Do nothing if the control interface is not turned on */
  3857. if (wpa_s == NULL || wpa_s->global == NULL)
  3858. return;
  3859. ctrl_iface = wpa_s->global->dbus;
  3860. if (ctrl_iface == NULL)
  3861. return;
  3862. if (wpa_s->dbus_groupobj_path) {
  3863. wpa_printf(MSG_INFO, "%s: Group object '%s' already exists",
  3864. __func__, wpa_s->dbus_groupobj_path);
  3865. return;
  3866. }
  3867. if (wpas_dbus_get_group_obj_path(wpa_s, ssid, group_obj_path) < 0)
  3868. return;
  3869. wpa_s->dbus_groupobj_path = os_strdup(group_obj_path);
  3870. if (wpa_s->dbus_groupobj_path == NULL)
  3871. return;
  3872. wpa_printf(MSG_INFO, "dbus: Register group object '%s'",
  3873. group_obj_path);
  3874. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  3875. if (!obj_desc) {
  3876. wpa_printf(MSG_ERROR,
  3877. "Not enough memory to create object description");
  3878. goto err;
  3879. }
  3880. wpas_dbus_register(obj_desc, wpa_s, NULL, NULL,
  3881. wpas_dbus_p2p_group_properties,
  3882. wpas_dbus_p2p_group_signals);
  3883. if (wpa_dbus_register_object_per_iface(ctrl_iface, group_obj_path,
  3884. wpa_s->ifname, obj_desc))
  3885. goto err;
  3886. return;
  3887. err:
  3888. if (wpa_s->dbus_groupobj_path) {
  3889. os_free(wpa_s->dbus_groupobj_path);
  3890. wpa_s->dbus_groupobj_path = NULL;
  3891. }
  3892. free_dbus_object_desc(obj_desc);
  3893. }
  3894. /**
  3895. * wpas_dbus_unregister_p2p_group - Unregister a p2p group object from dbus
  3896. * @wpa_s: wpa_supplicant interface structure
  3897. * @ssid: network name of the p2p group started
  3898. */
  3899. void wpas_dbus_unregister_p2p_group(struct wpa_supplicant *wpa_s,
  3900. const struct wpa_ssid *ssid)
  3901. {
  3902. struct wpas_dbus_priv *ctrl_iface;
  3903. /* Do nothing if the control interface is not turned on */
  3904. if (wpa_s == NULL || wpa_s->global == NULL)
  3905. return;
  3906. if (wpa_s->p2p_mgmt)
  3907. wpa_s = wpa_s->parent;
  3908. ctrl_iface = wpa_s->global->dbus;
  3909. if (ctrl_iface == NULL)
  3910. return;
  3911. if (!wpa_s->dbus_groupobj_path) {
  3912. wpa_printf(MSG_DEBUG,
  3913. "%s: Group object '%s' already unregistered",
  3914. __func__, wpa_s->dbus_groupobj_path);
  3915. return;
  3916. }
  3917. peer_groups_changed(wpa_s);
  3918. wpa_printf(MSG_DEBUG, "dbus: Unregister group object '%s'",
  3919. wpa_s->dbus_groupobj_path);
  3920. wpa_dbus_unregister_object_per_iface(ctrl_iface,
  3921. wpa_s->dbus_groupobj_path);
  3922. os_free(wpa_s->dbus_groupobj_path);
  3923. wpa_s->dbus_groupobj_path = NULL;
  3924. }
  3925. static const struct wpa_dbus_property_desc
  3926. wpas_dbus_persistent_group_properties[] = {
  3927. { "Properties", WPAS_DBUS_NEW_IFACE_PERSISTENT_GROUP, "a{sv}",
  3928. wpas_dbus_getter_persistent_group_properties,
  3929. wpas_dbus_setter_persistent_group_properties,
  3930. NULL
  3931. },
  3932. { NULL, NULL, NULL, NULL, NULL, NULL }
  3933. };
  3934. /* No signals intended for persistent group objects */
  3935. /**
  3936. * wpas_dbus_register_persistent_group - Register a configured(saved)
  3937. * persistent group with dbus
  3938. * @wpa_s: wpa_supplicant interface structure
  3939. * @ssid: persistent group (still represented as a network within wpa)
  3940. * configuration data
  3941. * Returns: 0 on success, -1 on failure
  3942. *
  3943. * Registers a persistent group representing object with dbus.
  3944. */
  3945. int wpas_dbus_register_persistent_group(struct wpa_supplicant *wpa_s,
  3946. struct wpa_ssid *ssid)
  3947. {
  3948. struct wpas_dbus_priv *ctrl_iface;
  3949. struct wpa_dbus_object_desc *obj_desc;
  3950. struct network_handler_args *arg;
  3951. char pgrp_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  3952. /* Do nothing if the control interface is not turned on */
  3953. if (wpa_s == NULL || wpa_s->global == NULL)
  3954. return 0;
  3955. wpa_s = wpa_s->parent->parent;
  3956. if (!wpa_s->dbus_new_path)
  3957. return 0;
  3958. /* Make sure ssid is a persistent group */
  3959. if (ssid->disabled != 2 && !ssid->p2p_persistent_group)
  3960. return -1; /* should we return w/o complaining? */
  3961. if (wpa_s->p2p_mgmt)
  3962. wpa_s = wpa_s->parent;
  3963. ctrl_iface = wpa_s->global->dbus;
  3964. if (ctrl_iface == NULL)
  3965. return 0;
  3966. /*
  3967. * Intentionally not coming up with different numbering scheme
  3968. * for persistent groups.
  3969. */
  3970. os_snprintf(pgrp_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  3971. "%s/" WPAS_DBUS_NEW_PERSISTENT_GROUPS_PART "/%u",
  3972. wpa_s->dbus_new_path, ssid->id);
  3973. wpa_printf(MSG_DEBUG, "dbus: Register persistent group object '%s'",
  3974. pgrp_obj_path);
  3975. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  3976. if (!obj_desc) {
  3977. wpa_printf(MSG_ERROR,
  3978. "dbus: Not enough memory to create object description");
  3979. goto err;
  3980. }
  3981. /*
  3982. * Reusing the same context structure as that for networks
  3983. * since these are represented using same data structure.
  3984. */
  3985. /* allocate memory for handlers arguments */
  3986. arg = os_zalloc(sizeof(struct network_handler_args));
  3987. if (!arg) {
  3988. wpa_printf(MSG_ERROR,
  3989. "dbus: Not enough memory to create arguments for method");
  3990. goto err;
  3991. }
  3992. arg->wpa_s = wpa_s;
  3993. arg->ssid = ssid;
  3994. wpas_dbus_register(obj_desc, arg, wpa_dbus_free, NULL,
  3995. wpas_dbus_persistent_group_properties,
  3996. NULL);
  3997. if (wpa_dbus_register_object_per_iface(ctrl_iface, pgrp_obj_path,
  3998. wpa_s->ifname, obj_desc))
  3999. goto err;
  4000. wpas_dbus_signal_persistent_group_added(wpa_s, ssid->id);
  4001. return 0;
  4002. err:
  4003. free_dbus_object_desc(obj_desc);
  4004. return -1;
  4005. }
  4006. /**
  4007. * wpas_dbus_unregister_persistent_group - Unregister a persistent_group
  4008. * from dbus
  4009. * @wpa_s: wpa_supplicant interface structure
  4010. * @nid: network id
  4011. * Returns: 0 on success, -1 on failure
  4012. *
  4013. * Unregisters persistent group representing object from dbus
  4014. *
  4015. * NOTE: There is a slight issue with the semantics here. While the
  4016. * implementation simply means the persistent group is unloaded from memory,
  4017. * it should not get interpreted as the group is actually being erased/removed
  4018. * from persistent storage as well.
  4019. */
  4020. int wpas_dbus_unregister_persistent_group(struct wpa_supplicant *wpa_s,
  4021. int nid)
  4022. {
  4023. struct wpas_dbus_priv *ctrl_iface;
  4024. char pgrp_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  4025. int ret;
  4026. /* Do nothing if the control interface is not turned on */
  4027. if (wpa_s == NULL || wpa_s->global == NULL)
  4028. return 0;
  4029. wpa_s = wpa_s->parent->parent;
  4030. ctrl_iface = wpa_s->global->dbus;
  4031. if (ctrl_iface == NULL || !wpa_s->dbus_new_path)
  4032. return 0;
  4033. os_snprintf(pgrp_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  4034. "%s/" WPAS_DBUS_NEW_PERSISTENT_GROUPS_PART "/%u",
  4035. wpa_s->dbus_new_path, nid);
  4036. wpa_printf(MSG_DEBUG, "dbus: Unregister persistent group object '%s'",
  4037. pgrp_obj_path);
  4038. ret = wpa_dbus_unregister_object_per_iface(ctrl_iface, pgrp_obj_path);
  4039. if (!ret)
  4040. wpas_dbus_signal_persistent_group_removed(wpa_s, nid);
  4041. return ret;
  4042. }
  4043. #endif /* CONFIG_P2P */