dbus_new.c 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999
  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_close_write(&iter, &dict_iter))
  527. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  528. else
  529. dbus_connection_send(iface->con, msg, NULL);
  530. dbus_message_unref(msg);
  531. }
  532. /**
  533. * wpas_dbus_signal_wps_event_m2d - Signals M2D WPS event
  534. * @wpa_s: %wpa_supplicant network interface data
  535. * @m2d: M2D event data information
  536. *
  537. * Sends Event dbus signal with name "m2d" and dictionary containing
  538. * fields of wps_event_m2d structure.
  539. */
  540. void wpas_dbus_signal_wps_event_m2d(struct wpa_supplicant *wpa_s,
  541. struct wps_event_m2d *m2d)
  542. {
  543. DBusMessage *msg;
  544. DBusMessageIter iter, dict_iter;
  545. struct wpas_dbus_priv *iface;
  546. char *key = "m2d";
  547. iface = wpa_s->global->dbus;
  548. /* Do nothing if the control interface is not turned on */
  549. if (iface == NULL || !wpa_s->dbus_new_path)
  550. return;
  551. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  552. WPAS_DBUS_NEW_IFACE_WPS, "Event");
  553. if (msg == NULL)
  554. return;
  555. dbus_message_iter_init_append(msg, &iter);
  556. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &key) ||
  557. !wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  558. !wpa_dbus_dict_append_uint16(&dict_iter, "config_methods",
  559. m2d->config_methods) ||
  560. !wpa_dbus_dict_append_byte_array(&dict_iter, "manufacturer",
  561. (const char *) m2d->manufacturer,
  562. m2d->manufacturer_len) ||
  563. !wpa_dbus_dict_append_byte_array(&dict_iter, "model_name",
  564. (const char *) m2d->model_name,
  565. m2d->model_name_len) ||
  566. !wpa_dbus_dict_append_byte_array(&dict_iter, "model_number",
  567. (const char *) m2d->model_number,
  568. m2d->model_number_len) ||
  569. !wpa_dbus_dict_append_byte_array(&dict_iter, "serial_number",
  570. (const char *)
  571. m2d->serial_number,
  572. m2d->serial_number_len) ||
  573. !wpa_dbus_dict_append_byte_array(&dict_iter, "dev_name",
  574. (const char *) m2d->dev_name,
  575. m2d->dev_name_len) ||
  576. !wpa_dbus_dict_append_byte_array(&dict_iter, "primary_dev_type",
  577. (const char *)
  578. m2d->primary_dev_type, 8) ||
  579. !wpa_dbus_dict_append_uint16(&dict_iter, "config_error",
  580. m2d->config_error) ||
  581. !wpa_dbus_dict_append_uint16(&dict_iter, "dev_password_id",
  582. m2d->dev_password_id) ||
  583. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  584. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  585. else
  586. dbus_connection_send(iface->con, msg, NULL);
  587. dbus_message_unref(msg);
  588. }
  589. /**
  590. * wpas_dbus_signal_wps_cred - Signals new credentials
  591. * @wpa_s: %wpa_supplicant network interface data
  592. * @cred: WPS Credential information
  593. *
  594. * Sends signal with credentials in directory argument
  595. */
  596. void wpas_dbus_signal_wps_cred(struct wpa_supplicant *wpa_s,
  597. const struct wps_credential *cred)
  598. {
  599. DBusMessage *msg;
  600. DBusMessageIter iter, dict_iter;
  601. struct wpas_dbus_priv *iface;
  602. char *auth_type[5]; /* we have five possible authentication types */
  603. int at_num = 0;
  604. char *encr_type[3]; /* we have three possible encryption types */
  605. int et_num = 0;
  606. iface = wpa_s->global->dbus;
  607. /* Do nothing if the control interface is not turned on */
  608. if (iface == NULL || !wpa_s->dbus_new_path)
  609. return;
  610. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  611. WPAS_DBUS_NEW_IFACE_WPS,
  612. "Credentials");
  613. if (msg == NULL)
  614. return;
  615. dbus_message_iter_init_append(msg, &iter);
  616. if (!wpa_dbus_dict_open_write(&iter, &dict_iter))
  617. goto nomem;
  618. if (cred->auth_type & WPS_AUTH_OPEN)
  619. auth_type[at_num++] = "open";
  620. if (cred->auth_type & WPS_AUTH_WPAPSK)
  621. auth_type[at_num++] = "wpa-psk";
  622. if (cred->auth_type & WPS_AUTH_WPA)
  623. auth_type[at_num++] = "wpa-eap";
  624. if (cred->auth_type & WPS_AUTH_WPA2)
  625. auth_type[at_num++] = "wpa2-eap";
  626. if (cred->auth_type & WPS_AUTH_WPA2PSK)
  627. auth_type[at_num++] = "wpa2-psk";
  628. if (cred->encr_type & WPS_ENCR_NONE)
  629. encr_type[et_num++] = "none";
  630. if (cred->encr_type & WPS_ENCR_TKIP)
  631. encr_type[et_num++] = "tkip";
  632. if (cred->encr_type & WPS_ENCR_AES)
  633. encr_type[et_num++] = "aes";
  634. if ((wpa_s->current_ssid &&
  635. !wpa_dbus_dict_append_byte_array(
  636. &dict_iter, "BSSID",
  637. (const char *) wpa_s->current_ssid->bssid, ETH_ALEN)) ||
  638. !wpa_dbus_dict_append_byte_array(&dict_iter, "SSID",
  639. (const char *) cred->ssid,
  640. cred->ssid_len) ||
  641. !wpa_dbus_dict_append_string_array(&dict_iter, "AuthType",
  642. (const char **) auth_type,
  643. at_num) ||
  644. !wpa_dbus_dict_append_string_array(&dict_iter, "EncrType",
  645. (const char **) encr_type,
  646. et_num) ||
  647. !wpa_dbus_dict_append_byte_array(&dict_iter, "Key",
  648. (const char *) cred->key,
  649. cred->key_len) ||
  650. !wpa_dbus_dict_append_uint32(&dict_iter, "KeyIndex",
  651. cred->key_idx) ||
  652. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  653. goto nomem;
  654. dbus_connection_send(iface->con, msg, NULL);
  655. nomem:
  656. dbus_message_unref(msg);
  657. }
  658. #endif /* CONFIG_WPS */
  659. void wpas_dbus_signal_certification(struct wpa_supplicant *wpa_s,
  660. int depth, const char *subject,
  661. const char *altsubject[],
  662. int num_altsubject,
  663. const char *cert_hash,
  664. const struct wpabuf *cert)
  665. {
  666. struct wpas_dbus_priv *iface;
  667. DBusMessage *msg;
  668. DBusMessageIter iter, dict_iter;
  669. iface = wpa_s->global->dbus;
  670. /* Do nothing if the control interface is not turned on */
  671. if (iface == NULL || !wpa_s->dbus_new_path)
  672. return;
  673. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  674. WPAS_DBUS_NEW_IFACE_INTERFACE,
  675. "Certification");
  676. if (msg == NULL)
  677. return;
  678. dbus_message_iter_init_append(msg, &iter);
  679. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  680. !wpa_dbus_dict_append_uint32(&dict_iter, "depth", depth) ||
  681. !wpa_dbus_dict_append_string(&dict_iter, "subject", subject) ||
  682. (altsubject && num_altsubject &&
  683. !wpa_dbus_dict_append_string_array(&dict_iter, "altsubject",
  684. altsubject, num_altsubject)) ||
  685. (cert_hash &&
  686. !wpa_dbus_dict_append_string(&dict_iter, "cert_hash",
  687. cert_hash)) ||
  688. (cert &&
  689. !wpa_dbus_dict_append_byte_array(&dict_iter, "cert",
  690. wpabuf_head(cert),
  691. wpabuf_len(cert))) ||
  692. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  693. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  694. else
  695. dbus_connection_send(iface->con, msg, NULL);
  696. dbus_message_unref(msg);
  697. }
  698. void wpas_dbus_signal_eap_status(struct wpa_supplicant *wpa_s,
  699. const char *status, const char *parameter)
  700. {
  701. struct wpas_dbus_priv *iface;
  702. DBusMessage *msg;
  703. DBusMessageIter iter;
  704. iface = wpa_s->global->dbus;
  705. /* Do nothing if the control interface is not turned on */
  706. if (iface == NULL || !wpa_s->dbus_new_path)
  707. return;
  708. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  709. WPAS_DBUS_NEW_IFACE_INTERFACE,
  710. "EAP");
  711. if (msg == NULL)
  712. return;
  713. dbus_message_iter_init_append(msg, &iter);
  714. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &status) ||
  715. !dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING,
  716. &parameter))
  717. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  718. else
  719. dbus_connection_send(iface->con, msg, NULL);
  720. dbus_message_unref(msg);
  721. }
  722. /**
  723. * wpas_dbus_signal_sta - Send a station related event signal
  724. * @wpa_s: %wpa_supplicant network interface data
  725. * @sta: station mac address
  726. * @sig_name: signal name - StaAuthorized or StaDeauthorized
  727. *
  728. * Notify listeners about event related with station
  729. */
  730. static void wpas_dbus_signal_sta(struct wpa_supplicant *wpa_s,
  731. const u8 *sta, const char *sig_name)
  732. {
  733. struct wpas_dbus_priv *iface;
  734. DBusMessage *msg;
  735. char sta_mac[WPAS_DBUS_OBJECT_PATH_MAX];
  736. char *dev_mac;
  737. os_snprintf(sta_mac, WPAS_DBUS_OBJECT_PATH_MAX, MACSTR, MAC2STR(sta));
  738. dev_mac = sta_mac;
  739. iface = wpa_s->global->dbus;
  740. /* Do nothing if the control interface is not turned on */
  741. if (iface == NULL || !wpa_s->dbus_new_path)
  742. return;
  743. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  744. WPAS_DBUS_NEW_IFACE_INTERFACE, sig_name);
  745. if (msg == NULL)
  746. return;
  747. if (dbus_message_append_args(msg, DBUS_TYPE_STRING, &dev_mac,
  748. DBUS_TYPE_INVALID))
  749. dbus_connection_send(iface->con, msg, NULL);
  750. else
  751. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  752. dbus_message_unref(msg);
  753. wpa_printf(MSG_DEBUG, "dbus: Station MAC address '%s' '%s'",
  754. sta_mac, sig_name);
  755. }
  756. /**
  757. * wpas_dbus_signal_sta_authorized - Send a STA authorized signal
  758. * @wpa_s: %wpa_supplicant network interface data
  759. * @sta: station mac address
  760. *
  761. * Notify listeners a new station has been authorized
  762. */
  763. void wpas_dbus_signal_sta_authorized(struct wpa_supplicant *wpa_s,
  764. const u8 *sta)
  765. {
  766. wpas_dbus_signal_sta(wpa_s, sta, "StaAuthorized");
  767. }
  768. /**
  769. * wpas_dbus_signal_sta_deauthorized - Send a STA deauthorized signal
  770. * @wpa_s: %wpa_supplicant network interface data
  771. * @sta: station mac address
  772. *
  773. * Notify listeners a station has been deauthorized
  774. */
  775. void wpas_dbus_signal_sta_deauthorized(struct wpa_supplicant *wpa_s,
  776. const u8 *sta)
  777. {
  778. wpas_dbus_signal_sta(wpa_s, sta, "StaDeauthorized");
  779. }
  780. #ifdef CONFIG_P2P
  781. /**
  782. * wpas_dbus_signal_p2p_group_removed - Signals P2P group was removed
  783. * @wpa_s: %wpa_supplicant network interface data
  784. * @role: role of this device (client or GO)
  785. * Sends signal with i/f name and role as string arguments
  786. */
  787. void wpas_dbus_signal_p2p_group_removed(struct wpa_supplicant *wpa_s,
  788. const char *role)
  789. {
  790. DBusMessage *msg;
  791. DBusMessageIter iter, dict_iter;
  792. struct wpas_dbus_priv *iface = wpa_s->global->dbus;
  793. struct wpa_supplicant *parent;
  794. /* Do nothing if the control interface is not turned on */
  795. if (iface == NULL)
  796. return;
  797. parent = wpa_s->parent;
  798. if (parent->p2p_mgmt)
  799. parent = parent->parent;
  800. if (!wpa_s->dbus_groupobj_path || !wpa_s->dbus_new_path ||
  801. !parent->dbus_new_path)
  802. return;
  803. msg = dbus_message_new_signal(parent->dbus_new_path,
  804. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  805. "GroupFinished");
  806. if (msg == NULL)
  807. return;
  808. dbus_message_iter_init_append(msg, &iter);
  809. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  810. !wpa_dbus_dict_append_object_path(&dict_iter,
  811. "interface_object",
  812. wpa_s->dbus_new_path) ||
  813. !wpa_dbus_dict_append_string(&dict_iter, "role", role) ||
  814. !wpa_dbus_dict_append_object_path(&dict_iter, "group_object",
  815. wpa_s->dbus_groupobj_path) ||
  816. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  817. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  818. else
  819. dbus_connection_send(iface->con, msg, NULL);
  820. dbus_message_unref(msg);
  821. }
  822. /**
  823. * wpas_dbus_signal_p2p_provision_discovery - Signals various PD events
  824. *
  825. * @dev_addr - who sent the request or responded to our request.
  826. * @request - Will be 1 if request, 0 for response.
  827. * @status - valid only in case of response
  828. * @config_methods - wps config methods
  829. * @generated_pin - pin to be displayed in case of WPS_CONFIG_DISPLAY method
  830. *
  831. * Sends following provision discovery related events:
  832. * ProvisionDiscoveryRequestDisplayPin
  833. * ProvisionDiscoveryResponseDisplayPin
  834. * ProvisionDiscoveryRequestEnterPin
  835. * ProvisionDiscoveryResponseEnterPin
  836. * ProvisionDiscoveryPBCRequest
  837. * ProvisionDiscoveryPBCResponse
  838. *
  839. * TODO::
  840. * ProvisionDiscoveryFailure (timeout case)
  841. */
  842. void wpas_dbus_signal_p2p_provision_discovery(struct wpa_supplicant *wpa_s,
  843. const u8 *dev_addr, int request,
  844. enum p2p_prov_disc_status status,
  845. u16 config_methods,
  846. unsigned int generated_pin)
  847. {
  848. DBusMessage *msg;
  849. DBusMessageIter iter;
  850. struct wpas_dbus_priv *iface;
  851. char *_signal;
  852. int add_pin = 0;
  853. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  854. int error_ret = 1;
  855. char pin[9], *p_pin = NULL;
  856. iface = wpa_s->global->dbus;
  857. /* Do nothing if the control interface is not turned on */
  858. if (iface == NULL)
  859. return;
  860. if (wpa_s->p2p_mgmt)
  861. wpa_s = wpa_s->parent;
  862. if (!wpa_s->dbus_new_path)
  863. return;
  864. if (request || !status) {
  865. if (config_methods & WPS_CONFIG_DISPLAY)
  866. _signal = request ?
  867. "ProvisionDiscoveryRequestDisplayPin" :
  868. "ProvisionDiscoveryResponseEnterPin";
  869. else if (config_methods & WPS_CONFIG_KEYPAD)
  870. _signal = request ?
  871. "ProvisionDiscoveryRequestEnterPin" :
  872. "ProvisionDiscoveryResponseDisplayPin";
  873. else if (config_methods & WPS_CONFIG_PUSHBUTTON)
  874. _signal = request ? "ProvisionDiscoveryPBCRequest" :
  875. "ProvisionDiscoveryPBCResponse";
  876. else
  877. return; /* Unknown or un-supported method */
  878. } else {
  879. /* Explicit check for failure response */
  880. _signal = "ProvisionDiscoveryFailure";
  881. }
  882. add_pin = ((request && (config_methods & WPS_CONFIG_DISPLAY)) ||
  883. (!request && !status &&
  884. (config_methods & WPS_CONFIG_KEYPAD)));
  885. if (add_pin) {
  886. os_snprintf(pin, sizeof(pin), "%08d", generated_pin);
  887. p_pin = pin;
  888. }
  889. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  890. WPAS_DBUS_NEW_IFACE_P2PDEVICE, _signal);
  891. if (msg == NULL)
  892. return;
  893. /* Check if this is a known peer */
  894. if (!p2p_peer_known(wpa_s->global->p2p, dev_addr))
  895. goto error;
  896. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  897. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
  898. COMPACT_MACSTR,
  899. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  900. path = peer_obj_path;
  901. dbus_message_iter_init_append(msg, &iter);
  902. if (!dbus_message_iter_append_basic(&iter,
  903. DBUS_TYPE_OBJECT_PATH,
  904. &path))
  905. goto error;
  906. if (!request && status)
  907. /* Attach status to ProvisionDiscoveryFailure */
  908. error_ret = !dbus_message_iter_append_basic(&iter,
  909. DBUS_TYPE_INT32,
  910. &status);
  911. else
  912. error_ret = (add_pin &&
  913. !dbus_message_iter_append_basic(&iter,
  914. DBUS_TYPE_STRING,
  915. &p_pin));
  916. error:
  917. if (!error_ret)
  918. dbus_connection_send(iface->con, msg, NULL);
  919. else
  920. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  921. dbus_message_unref(msg);
  922. }
  923. /**
  924. * wpas_dbus_signal_p2p_go_neg_req - Signal P2P GO Negotiation Request RX
  925. * @wpa_s: %wpa_supplicant network interface data
  926. * @src: Source address of the message triggering this notification
  927. * @dev_passwd_id: WPS Device Password Id
  928. * @go_intent: Peer's GO Intent value
  929. *
  930. * Sends signal to notify that a peer P2P Device is requesting group owner
  931. * negotiation with us.
  932. */
  933. void wpas_dbus_signal_p2p_go_neg_req(struct wpa_supplicant *wpa_s,
  934. const u8 *src, u16 dev_passwd_id,
  935. u8 go_intent)
  936. {
  937. DBusMessage *msg;
  938. DBusMessageIter iter;
  939. struct wpas_dbus_priv *iface;
  940. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  941. iface = wpa_s->global->dbus;
  942. /* Do nothing if the control interface is not turned on */
  943. if (iface == NULL)
  944. return;
  945. if (wpa_s->p2p_mgmt)
  946. wpa_s = wpa_s->parent;
  947. if (!wpa_s->dbus_new_path)
  948. return;
  949. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  950. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  951. wpa_s->dbus_new_path, MAC2STR(src));
  952. path = peer_obj_path;
  953. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  954. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  955. "GONegotiationRequest");
  956. if (msg == NULL)
  957. return;
  958. dbus_message_iter_init_append(msg, &iter);
  959. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  960. &path) ||
  961. !dbus_message_iter_append_basic(&iter, DBUS_TYPE_UINT16,
  962. &dev_passwd_id) ||
  963. !dbus_message_iter_append_basic(&iter, DBUS_TYPE_BYTE,
  964. &go_intent))
  965. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  966. else
  967. dbus_connection_send(iface->con, msg, NULL);
  968. dbus_message_unref(msg);
  969. }
  970. static int wpas_dbus_get_group_obj_path(struct wpa_supplicant *wpa_s,
  971. const struct wpa_ssid *ssid,
  972. char *group_obj_path)
  973. {
  974. char group_name[3];
  975. if (!wpa_s->dbus_new_path ||
  976. os_memcmp(ssid->ssid, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN))
  977. return -1;
  978. os_memcpy(group_name, ssid->ssid + P2P_WILDCARD_SSID_LEN, 2);
  979. group_name[2] = '\0';
  980. os_snprintf(group_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  981. "%s/" WPAS_DBUS_NEW_P2P_GROUPS_PART "/%s",
  982. wpa_s->dbus_new_path, group_name);
  983. return 0;
  984. }
  985. struct group_changed_data {
  986. struct wpa_supplicant *wpa_s;
  987. struct p2p_peer_info *info;
  988. };
  989. static int match_group_where_peer_is_client(struct p2p_group *group,
  990. void *user_data)
  991. {
  992. struct group_changed_data *data = user_data;
  993. const struct p2p_group_config *cfg;
  994. struct wpa_supplicant *wpa_s_go;
  995. if (!p2p_group_is_client_connected(group, data->info->p2p_device_addr))
  996. return 1;
  997. cfg = p2p_group_get_config(group);
  998. wpa_s_go = wpas_get_p2p_go_iface(data->wpa_s, cfg->ssid,
  999. cfg->ssid_len);
  1000. if (wpa_s_go != NULL && wpa_s_go == data->wpa_s) {
  1001. wpas_dbus_signal_peer_groups_changed(
  1002. data->wpa_s->parent, data->info->p2p_device_addr);
  1003. return 0;
  1004. }
  1005. return 1;
  1006. }
  1007. static void signal_peer_groups_changed(struct p2p_peer_info *info,
  1008. void *user_data)
  1009. {
  1010. struct group_changed_data *data = user_data;
  1011. struct wpa_supplicant *wpa_s_go;
  1012. wpa_s_go = wpas_get_p2p_client_iface(data->wpa_s,
  1013. info->p2p_device_addr);
  1014. if (wpa_s_go != NULL && wpa_s_go == data->wpa_s) {
  1015. wpas_dbus_signal_peer_groups_changed(data->wpa_s->parent,
  1016. info->p2p_device_addr);
  1017. return;
  1018. }
  1019. data->info = info;
  1020. p2p_loop_on_all_groups(data->wpa_s->global->p2p,
  1021. match_group_where_peer_is_client, data);
  1022. data->info = NULL;
  1023. }
  1024. static void peer_groups_changed(struct wpa_supplicant *wpa_s)
  1025. {
  1026. struct group_changed_data data;
  1027. os_memset(&data, 0, sizeof(data));
  1028. data.wpa_s = wpa_s;
  1029. p2p_loop_on_known_peers(wpa_s->global->p2p,
  1030. signal_peer_groups_changed, &data);
  1031. }
  1032. /**
  1033. * wpas_dbus_signal_p2p_group_started - Signals P2P group has
  1034. * started. Emitted when a group is successfully started
  1035. * irrespective of the role (client/GO) of the current device
  1036. *
  1037. * @wpa_s: %wpa_supplicant network interface data
  1038. * @ssid: SSID object
  1039. * @client: this device is P2P client
  1040. * @network_id: network id of the group started, use instead of ssid->id
  1041. * to account for persistent groups
  1042. */
  1043. void wpas_dbus_signal_p2p_group_started(struct wpa_supplicant *wpa_s,
  1044. const struct wpa_ssid *ssid,
  1045. int client, int network_id)
  1046. {
  1047. DBusMessage *msg;
  1048. DBusMessageIter iter, dict_iter;
  1049. struct wpas_dbus_priv *iface;
  1050. struct wpa_supplicant *parent;
  1051. parent = wpa_s->parent;
  1052. if (parent->p2p_mgmt)
  1053. parent = parent->parent;
  1054. iface = parent->global->dbus;
  1055. /* Do nothing if the control interface is not turned on */
  1056. if (iface == NULL || !parent->dbus_new_path || !wpa_s->dbus_new_path)
  1057. return;
  1058. if (wpa_s->dbus_groupobj_path == NULL)
  1059. return;
  1060. /* New interface has been created for this group */
  1061. msg = dbus_message_new_signal(parent->dbus_new_path,
  1062. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1063. "GroupStarted");
  1064. if (msg == NULL)
  1065. return;
  1066. dbus_message_iter_init_append(msg, &iter);
  1067. /*
  1068. * In case the device supports creating a separate interface the
  1069. * DBus client will need to know the object path for the interface
  1070. * object this group was created on, so include it here.
  1071. */
  1072. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  1073. !wpa_dbus_dict_append_object_path(&dict_iter,
  1074. "interface_object",
  1075. wpa_s->dbus_new_path) ||
  1076. !wpa_dbus_dict_append_string(&dict_iter, "role",
  1077. client ? "client" : "GO") ||
  1078. !wpa_dbus_dict_append_object_path(&dict_iter, "group_object",
  1079. wpa_s->dbus_groupobj_path) ||
  1080. !wpa_dbus_dict_close_write(&iter, &dict_iter)) {
  1081. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1082. } else {
  1083. dbus_connection_send(iface->con, msg, NULL);
  1084. if (client)
  1085. peer_groups_changed(wpa_s);
  1086. }
  1087. dbus_message_unref(msg);
  1088. }
  1089. /**
  1090. * wpas_dbus_signal_p2p_go_neg_resp - Emit GONegotiation Success/Failure signal
  1091. * @wpa_s: %wpa_supplicant network interface data
  1092. * @res: Result of the GO Neg Request
  1093. */
  1094. void wpas_dbus_signal_p2p_go_neg_resp(struct wpa_supplicant *wpa_s,
  1095. struct p2p_go_neg_results *res)
  1096. {
  1097. DBusMessage *msg;
  1098. DBusMessageIter iter, dict_iter;
  1099. DBusMessageIter iter_dict_entry, iter_dict_val, iter_dict_array;
  1100. struct wpas_dbus_priv *iface;
  1101. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1102. dbus_int32_t freqs[P2P_MAX_CHANNELS];
  1103. dbus_int32_t *f_array = freqs;
  1104. iface = wpa_s->global->dbus;
  1105. if (wpa_s->p2p_mgmt)
  1106. wpa_s = wpa_s->parent;
  1107. os_memset(freqs, 0, sizeof(freqs));
  1108. /* Do nothing if the control interface is not turned on */
  1109. if (iface == NULL || !wpa_s->dbus_new_path)
  1110. return;
  1111. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1112. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  1113. wpa_s->dbus_new_path, MAC2STR(res->peer_device_addr));
  1114. path = peer_obj_path;
  1115. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1116. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1117. res->status ? "GONegotiationFailure" :
  1118. "GONegotiationSuccess");
  1119. if (msg == NULL)
  1120. return;
  1121. dbus_message_iter_init_append(msg, &iter);
  1122. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  1123. !wpa_dbus_dict_append_object_path(&dict_iter, "peer_object",
  1124. path) ||
  1125. !wpa_dbus_dict_append_int32(&dict_iter, "status", res->status))
  1126. goto err;
  1127. if (!res->status) {
  1128. int i = 0;
  1129. int freq_list_num = 0;
  1130. if ((res->role_go &&
  1131. !wpa_dbus_dict_append_string(&dict_iter, "passphrase",
  1132. res->passphrase)) ||
  1133. !wpa_dbus_dict_append_string(&dict_iter, "role_go",
  1134. res->role_go ? "GO" :
  1135. "client") ||
  1136. !wpa_dbus_dict_append_int32(&dict_iter, "frequency",
  1137. res->freq) ||
  1138. !wpa_dbus_dict_append_byte_array(&dict_iter, "ssid",
  1139. (const char *) res->ssid,
  1140. res->ssid_len) ||
  1141. !wpa_dbus_dict_append_byte_array(&dict_iter,
  1142. "peer_device_addr",
  1143. (const char *)
  1144. res->peer_device_addr,
  1145. ETH_ALEN) ||
  1146. !wpa_dbus_dict_append_byte_array(&dict_iter,
  1147. "peer_interface_addr",
  1148. (const char *)
  1149. res->peer_interface_addr,
  1150. ETH_ALEN) ||
  1151. !wpa_dbus_dict_append_string(&dict_iter, "wps_method",
  1152. p2p_wps_method_text(
  1153. res->wps_method)))
  1154. goto err;
  1155. for (i = 0; i < P2P_MAX_CHANNELS; i++) {
  1156. if (res->freq_list[i]) {
  1157. freqs[i] = res->freq_list[i];
  1158. freq_list_num++;
  1159. }
  1160. }
  1161. if (!wpa_dbus_dict_begin_array(&dict_iter,
  1162. "frequency_list",
  1163. DBUS_TYPE_INT32_AS_STRING,
  1164. &iter_dict_entry,
  1165. &iter_dict_val,
  1166. &iter_dict_array) ||
  1167. !dbus_message_iter_append_fixed_array(&iter_dict_array,
  1168. DBUS_TYPE_INT32,
  1169. &f_array,
  1170. freq_list_num) ||
  1171. !wpa_dbus_dict_end_array(&dict_iter,
  1172. &iter_dict_entry,
  1173. &iter_dict_val,
  1174. &iter_dict_array) ||
  1175. !wpa_dbus_dict_append_int32(&dict_iter, "persistent_group",
  1176. res->persistent_group) ||
  1177. !wpa_dbus_dict_append_uint32(&dict_iter,
  1178. "peer_config_timeout",
  1179. res->peer_config_timeout))
  1180. goto err;
  1181. }
  1182. if (!wpa_dbus_dict_close_write(&iter, &dict_iter))
  1183. goto err;
  1184. dbus_connection_send(iface->con, msg, NULL);
  1185. err:
  1186. dbus_message_unref(msg);
  1187. }
  1188. /**
  1189. * wpas_dbus_signal_p2p_invitation_result - Emit InvitationResult signal
  1190. * @wpa_s: %wpa_supplicant network interface data
  1191. * @status: Status of invitation process
  1192. * @bssid: Basic Service Set Identifier
  1193. */
  1194. void wpas_dbus_signal_p2p_invitation_result(struct wpa_supplicant *wpa_s,
  1195. int status, const u8 *bssid)
  1196. {
  1197. DBusMessage *msg;
  1198. DBusMessageIter iter, dict_iter;
  1199. struct wpas_dbus_priv *iface;
  1200. wpa_printf(MSG_DEBUG, "%s", __func__);
  1201. iface = wpa_s->global->dbus;
  1202. /* Do nothing if the control interface is not turned on */
  1203. if (iface == NULL)
  1204. return;
  1205. if (wpa_s->p2p_mgmt)
  1206. wpa_s = wpa_s->parent;
  1207. if (!wpa_s->dbus_new_path)
  1208. return;
  1209. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1210. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1211. "InvitationResult");
  1212. if (msg == NULL)
  1213. return;
  1214. dbus_message_iter_init_append(msg, &iter);
  1215. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  1216. !wpa_dbus_dict_append_int32(&dict_iter, "status", status) ||
  1217. (bssid &&
  1218. !wpa_dbus_dict_append_byte_array(&dict_iter, "BSSID",
  1219. (const char *) bssid,
  1220. ETH_ALEN)) ||
  1221. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  1222. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1223. else
  1224. dbus_connection_send(iface->con, msg, NULL);
  1225. dbus_message_unref(msg);
  1226. }
  1227. /**
  1228. *
  1229. * Method to emit a signal for a peer joining the group.
  1230. * The signal will carry path to the group member object
  1231. * constructed using p2p i/f addr used for connecting.
  1232. *
  1233. * @wpa_s: %wpa_supplicant network interface data
  1234. * @peer_addr: P2P Device Address of the peer joining the group
  1235. */
  1236. void wpas_dbus_signal_p2p_peer_joined(struct wpa_supplicant *wpa_s,
  1237. const u8 *peer_addr)
  1238. {
  1239. struct wpas_dbus_priv *iface;
  1240. DBusMessage *msg;
  1241. DBusMessageIter iter;
  1242. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1243. struct wpa_supplicant *parent;
  1244. iface = wpa_s->global->dbus;
  1245. /* Do nothing if the control interface is not turned on */
  1246. if (iface == NULL)
  1247. return;
  1248. if (!wpa_s->dbus_groupobj_path)
  1249. return;
  1250. parent = wpa_s->parent;
  1251. if (parent->p2p_mgmt)
  1252. parent = parent->parent;
  1253. if (!parent->dbus_new_path)
  1254. return;
  1255. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1256. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
  1257. COMPACT_MACSTR,
  1258. parent->dbus_new_path, MAC2STR(peer_addr));
  1259. msg = dbus_message_new_signal(wpa_s->dbus_groupobj_path,
  1260. WPAS_DBUS_NEW_IFACE_P2P_GROUP,
  1261. "PeerJoined");
  1262. if (msg == NULL)
  1263. return;
  1264. dbus_message_iter_init_append(msg, &iter);
  1265. path = peer_obj_path;
  1266. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  1267. &path)) {
  1268. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1269. } else {
  1270. dbus_connection_send(iface->con, msg, NULL);
  1271. wpas_dbus_signal_peer_groups_changed(parent, peer_addr);
  1272. }
  1273. dbus_message_unref(msg);
  1274. }
  1275. /**
  1276. *
  1277. * Method to emit a signal for a peer disconnecting the group.
  1278. * The signal will carry path to the group member object
  1279. * constructed using the P2P Device Address of the peer.
  1280. *
  1281. * @wpa_s: %wpa_supplicant network interface data
  1282. * @peer_addr: P2P Device Address of the peer joining the group
  1283. */
  1284. void wpas_dbus_signal_p2p_peer_disconnected(struct wpa_supplicant *wpa_s,
  1285. const u8 *peer_addr)
  1286. {
  1287. struct wpas_dbus_priv *iface;
  1288. DBusMessage *msg;
  1289. DBusMessageIter iter;
  1290. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1291. struct wpa_supplicant *parent;
  1292. iface = wpa_s->global->dbus;
  1293. /* Do nothing if the control interface is not turned on */
  1294. if (iface == NULL)
  1295. return;
  1296. if (!wpa_s->dbus_groupobj_path)
  1297. return;
  1298. parent = wpa_s->parent;
  1299. if (parent->p2p_mgmt)
  1300. parent = parent->parent;
  1301. if (!parent->dbus_new_path)
  1302. return;
  1303. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1304. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
  1305. COMPACT_MACSTR,
  1306. parent->dbus_new_path, MAC2STR(peer_addr));
  1307. msg = dbus_message_new_signal(wpa_s->dbus_groupobj_path,
  1308. WPAS_DBUS_NEW_IFACE_P2P_GROUP,
  1309. "PeerDisconnected");
  1310. if (msg == NULL)
  1311. return;
  1312. dbus_message_iter_init_append(msg, &iter);
  1313. path = peer_obj_path;
  1314. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  1315. &path)) {
  1316. wpa_printf(MSG_ERROR,
  1317. "dbus: Failed to construct PeerDisconnected signal");
  1318. } else {
  1319. dbus_connection_send(iface->con, msg, NULL);
  1320. wpas_dbus_signal_peer_groups_changed(parent, peer_addr);
  1321. }
  1322. dbus_message_unref(msg);
  1323. }
  1324. /**
  1325. *
  1326. * Method to emit a signal for a service discovery request.
  1327. * The signal will carry station address, frequency, dialog token,
  1328. * update indicator and it tlvs
  1329. *
  1330. * @wpa_s: %wpa_supplicant network interface data
  1331. * @sa: station addr (p2p i/f) of the peer
  1332. * @dialog_token: service discovery request dialog token
  1333. * @update_indic: service discovery request update indicator
  1334. * @tlvs: service discovery request genrated byte array of tlvs
  1335. * @tlvs_len: service discovery request tlvs length
  1336. */
  1337. void wpas_dbus_signal_p2p_sd_request(struct wpa_supplicant *wpa_s,
  1338. int freq, const u8 *sa, u8 dialog_token,
  1339. u16 update_indic, const u8 *tlvs,
  1340. size_t tlvs_len)
  1341. {
  1342. DBusMessage *msg;
  1343. DBusMessageIter iter, dict_iter;
  1344. struct wpas_dbus_priv *iface;
  1345. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1346. iface = wpa_s->global->dbus;
  1347. /* Do nothing if the control interface is not turned on */
  1348. if (iface == NULL)
  1349. return;
  1350. if (wpa_s->p2p_mgmt)
  1351. wpa_s = wpa_s->parent;
  1352. if (!wpa_s->dbus_new_path)
  1353. return;
  1354. /* Check if this is a known peer */
  1355. if (!p2p_peer_known(wpa_s->global->p2p, sa))
  1356. return;
  1357. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1358. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1359. "ServiceDiscoveryRequest");
  1360. if (msg == NULL)
  1361. return;
  1362. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1363. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
  1364. COMPACT_MACSTR, wpa_s->dbus_new_path, MAC2STR(sa));
  1365. path = peer_obj_path;
  1366. dbus_message_iter_init_append(msg, &iter);
  1367. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  1368. !wpa_dbus_dict_append_object_path(&dict_iter, "peer_object",
  1369. path) ||
  1370. !wpa_dbus_dict_append_int32(&dict_iter, "frequency", freq) ||
  1371. !wpa_dbus_dict_append_int32(&dict_iter, "dialog_token",
  1372. dialog_token) ||
  1373. !wpa_dbus_dict_append_uint16(&dict_iter, "update_indicator",
  1374. update_indic) ||
  1375. !wpa_dbus_dict_append_byte_array(&dict_iter, "tlvs",
  1376. (const char *) tlvs,
  1377. tlvs_len) ||
  1378. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  1379. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1380. else
  1381. dbus_connection_send(iface->con, msg, NULL);
  1382. dbus_message_unref(msg);
  1383. }
  1384. /**
  1385. *
  1386. * Method to emit a signal for a service discovery response.
  1387. * The signal will carry station address, update indicator and it
  1388. * tlvs
  1389. *
  1390. * @wpa_s: %wpa_supplicant network interface data
  1391. * @sa: station addr (p2p i/f) of the peer
  1392. * @update_indic: service discovery request update indicator
  1393. * @tlvs: service discovery request genrated byte array of tlvs
  1394. * @tlvs_len: service discovery request tlvs length
  1395. */
  1396. void wpas_dbus_signal_p2p_sd_response(struct wpa_supplicant *wpa_s,
  1397. const u8 *sa, u16 update_indic,
  1398. const u8 *tlvs, size_t tlvs_len)
  1399. {
  1400. DBusMessage *msg;
  1401. DBusMessageIter iter, dict_iter;
  1402. struct wpas_dbus_priv *iface;
  1403. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1404. iface = wpa_s->global->dbus;
  1405. /* Do nothing if the control interface is not turned on */
  1406. if (iface == NULL)
  1407. return;
  1408. if (wpa_s->p2p_mgmt)
  1409. wpa_s = wpa_s->parent;
  1410. if (!wpa_s->dbus_new_path)
  1411. return;
  1412. /* Check if this is a known peer */
  1413. if (!p2p_peer_known(wpa_s->global->p2p, sa))
  1414. return;
  1415. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1416. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1417. "ServiceDiscoveryResponse");
  1418. if (msg == NULL)
  1419. return;
  1420. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1421. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
  1422. COMPACT_MACSTR, wpa_s->dbus_new_path, MAC2STR(sa));
  1423. path = peer_obj_path;
  1424. dbus_message_iter_init_append(msg, &iter);
  1425. if (!wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  1426. !wpa_dbus_dict_append_object_path(&dict_iter, "peer_object",
  1427. path) ||
  1428. !wpa_dbus_dict_append_uint16(&dict_iter, "update_indicator",
  1429. update_indic) ||
  1430. !wpa_dbus_dict_append_byte_array(&dict_iter, "tlvs",
  1431. (const char *) tlvs,
  1432. tlvs_len) ||
  1433. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  1434. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1435. else
  1436. dbus_connection_send(iface->con, msg, NULL);
  1437. dbus_message_unref(msg);
  1438. }
  1439. /**
  1440. * wpas_dbus_signal_persistent_group - Send a persistent group related
  1441. * event signal
  1442. * @wpa_s: %wpa_supplicant network interface data
  1443. * @id: new persistent group id
  1444. * @sig_name: signal name - PersistentGroupAdded, PersistentGroupRemoved
  1445. * @properties: determines if add second argument with object properties
  1446. *
  1447. * Notify listeners about an event related to persistent groups.
  1448. */
  1449. static void wpas_dbus_signal_persistent_group(struct wpa_supplicant *wpa_s,
  1450. int id, const char *sig_name,
  1451. int properties)
  1452. {
  1453. struct wpas_dbus_priv *iface;
  1454. DBusMessage *msg;
  1455. DBusMessageIter iter;
  1456. char pgrp_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1457. iface = wpa_s->global->dbus;
  1458. /* Do nothing if the control interface is not turned on */
  1459. if (iface == NULL)
  1460. return;
  1461. if (wpa_s->p2p_mgmt)
  1462. wpa_s = wpa_s->parent;
  1463. if (!wpa_s->dbus_new_path)
  1464. return;
  1465. os_snprintf(pgrp_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1466. "%s/" WPAS_DBUS_NEW_PERSISTENT_GROUPS_PART "/%u",
  1467. wpa_s->dbus_new_path, id);
  1468. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1469. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1470. sig_name);
  1471. if (msg == NULL)
  1472. return;
  1473. dbus_message_iter_init_append(msg, &iter);
  1474. path = pgrp_obj_path;
  1475. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  1476. &path) ||
  1477. (properties &&
  1478. !wpa_dbus_get_object_properties(
  1479. iface, pgrp_obj_path,
  1480. WPAS_DBUS_NEW_IFACE_PERSISTENT_GROUP, &iter)))
  1481. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1482. else
  1483. dbus_connection_send(iface->con, msg, NULL);
  1484. dbus_message_unref(msg);
  1485. }
  1486. /**
  1487. * wpas_dbus_signal_persistent_group_added - Send a persistent_group
  1488. * added signal
  1489. * @wpa_s: %wpa_supplicant network interface data
  1490. * @id: new persistent group id
  1491. *
  1492. * Notify listeners about addition of a new persistent group.
  1493. */
  1494. static void wpas_dbus_signal_persistent_group_added(
  1495. struct wpa_supplicant *wpa_s, int id)
  1496. {
  1497. wpas_dbus_signal_persistent_group(wpa_s, id, "PersistentGroupAdded",
  1498. TRUE);
  1499. }
  1500. /**
  1501. * wpas_dbus_signal_persistent_group_removed - Send a persistent_group
  1502. * removed signal
  1503. * @wpa_s: %wpa_supplicant network interface data
  1504. * @id: persistent group id
  1505. *
  1506. * Notify listeners about removal of a persistent group.
  1507. */
  1508. static void wpas_dbus_signal_persistent_group_removed(
  1509. struct wpa_supplicant *wpa_s, int id)
  1510. {
  1511. wpas_dbus_signal_persistent_group(wpa_s, id, "PersistentGroupRemoved",
  1512. FALSE);
  1513. }
  1514. /**
  1515. * wpas_dbus_signal_p2p_wps_failed - Signals WpsFailed event
  1516. * @wpa_s: %wpa_supplicant network interface data
  1517. * @fail: WPS failure information
  1518. *
  1519. * Sends Event dbus signal with name "fail" and dictionary containing
  1520. * "msg" field with fail message number (int32) as arguments
  1521. */
  1522. void wpas_dbus_signal_p2p_wps_failed(struct wpa_supplicant *wpa_s,
  1523. struct wps_event_fail *fail)
  1524. {
  1525. DBusMessage *msg;
  1526. DBusMessageIter iter, dict_iter;
  1527. struct wpas_dbus_priv *iface;
  1528. char *key = "fail";
  1529. iface = wpa_s->global->dbus;
  1530. /* Do nothing if the control interface is not turned on */
  1531. if (iface == NULL)
  1532. return;
  1533. if (wpa_s->p2p_mgmt)
  1534. wpa_s = wpa_s->parent;
  1535. if (!wpa_s->dbus_new_path)
  1536. return;
  1537. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1538. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1539. "WpsFailed");
  1540. if (msg == NULL)
  1541. return;
  1542. dbus_message_iter_init_append(msg, &iter);
  1543. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &key) ||
  1544. !wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  1545. !wpa_dbus_dict_append_int32(&dict_iter, "msg", fail->msg) ||
  1546. !wpa_dbus_dict_append_int16(&dict_iter, "config_error",
  1547. fail->config_error) ||
  1548. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  1549. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1550. else
  1551. dbus_connection_send(iface->con, msg, NULL);
  1552. dbus_message_unref(msg);
  1553. }
  1554. #endif /* CONFIG_P2P */
  1555. /**
  1556. * wpas_dbus_signal_prop_changed - Signals change of property
  1557. * @wpa_s: %wpa_supplicant network interface data
  1558. * @property: indicates which property has changed
  1559. *
  1560. * Sends PropertyChanged signals with path, interface and arguments
  1561. * depending on which property has changed.
  1562. */
  1563. void wpas_dbus_signal_prop_changed(struct wpa_supplicant *wpa_s,
  1564. enum wpas_dbus_prop property)
  1565. {
  1566. char *prop;
  1567. dbus_bool_t flush;
  1568. if (wpa_s->dbus_new_path == NULL)
  1569. return; /* Skip signal since D-Bus setup is not yet ready */
  1570. flush = FALSE;
  1571. switch (property) {
  1572. case WPAS_DBUS_PROP_AP_SCAN:
  1573. prop = "ApScan";
  1574. break;
  1575. case WPAS_DBUS_PROP_SCANNING:
  1576. prop = "Scanning";
  1577. break;
  1578. case WPAS_DBUS_PROP_STATE:
  1579. prop = "State";
  1580. break;
  1581. case WPAS_DBUS_PROP_CURRENT_BSS:
  1582. prop = "CurrentBSS";
  1583. break;
  1584. case WPAS_DBUS_PROP_CURRENT_NETWORK:
  1585. prop = "CurrentNetwork";
  1586. break;
  1587. case WPAS_DBUS_PROP_BSSS:
  1588. prop = "BSSs";
  1589. break;
  1590. case WPAS_DBUS_PROP_CURRENT_AUTH_MODE:
  1591. prop = "CurrentAuthMode";
  1592. break;
  1593. case WPAS_DBUS_PROP_DISCONNECT_REASON:
  1594. prop = "DisconnectReason";
  1595. flush = TRUE;
  1596. break;
  1597. default:
  1598. wpa_printf(MSG_ERROR, "dbus: %s: Unknown Property value %d",
  1599. __func__, property);
  1600. return;
  1601. }
  1602. wpa_dbus_mark_property_changed(wpa_s->global->dbus,
  1603. wpa_s->dbus_new_path,
  1604. WPAS_DBUS_NEW_IFACE_INTERFACE, prop);
  1605. if (flush) {
  1606. wpa_dbus_flush_object_changed_properties(
  1607. wpa_s->global->dbus->con, wpa_s->dbus_new_path);
  1608. }
  1609. }
  1610. /**
  1611. * wpas_dbus_bss_signal_prop_changed - Signals change of BSS property
  1612. * @wpa_s: %wpa_supplicant network interface data
  1613. * @property: indicates which property has changed
  1614. * @id: unique BSS identifier
  1615. *
  1616. * Sends PropertyChanged signals with path, interface, and arguments depending
  1617. * on which property has changed.
  1618. */
  1619. void wpas_dbus_bss_signal_prop_changed(struct wpa_supplicant *wpa_s,
  1620. enum wpas_dbus_bss_prop property,
  1621. unsigned int id)
  1622. {
  1623. char path[WPAS_DBUS_OBJECT_PATH_MAX];
  1624. char *prop;
  1625. if (!wpa_s->dbus_new_path)
  1626. return;
  1627. switch (property) {
  1628. case WPAS_DBUS_BSS_PROP_SIGNAL:
  1629. prop = "Signal";
  1630. break;
  1631. case WPAS_DBUS_BSS_PROP_FREQ:
  1632. prop = "Frequency";
  1633. break;
  1634. case WPAS_DBUS_BSS_PROP_MODE:
  1635. prop = "Mode";
  1636. break;
  1637. case WPAS_DBUS_BSS_PROP_PRIVACY:
  1638. prop = "Privacy";
  1639. break;
  1640. case WPAS_DBUS_BSS_PROP_RATES:
  1641. prop = "Rates";
  1642. break;
  1643. case WPAS_DBUS_BSS_PROP_WPA:
  1644. prop = "WPA";
  1645. break;
  1646. case WPAS_DBUS_BSS_PROP_RSN:
  1647. prop = "RSN";
  1648. break;
  1649. case WPAS_DBUS_BSS_PROP_WPS:
  1650. prop = "WPS";
  1651. break;
  1652. case WPAS_DBUS_BSS_PROP_IES:
  1653. prop = "IEs";
  1654. break;
  1655. case WPAS_DBUS_BSS_PROP_AGE:
  1656. prop = "Age";
  1657. break;
  1658. default:
  1659. wpa_printf(MSG_ERROR, "dbus: %s: Unknown Property value %d",
  1660. __func__, property);
  1661. return;
  1662. }
  1663. os_snprintf(path, WPAS_DBUS_OBJECT_PATH_MAX,
  1664. "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
  1665. wpa_s->dbus_new_path, id);
  1666. wpa_dbus_mark_property_changed(wpa_s->global->dbus, path,
  1667. WPAS_DBUS_NEW_IFACE_BSS, prop);
  1668. }
  1669. /**
  1670. * wpas_dbus_signal_debug_level_changed - Signals change of debug param
  1671. * @global: wpa_global structure
  1672. *
  1673. * Sends PropertyChanged signals informing that debug level has changed.
  1674. */
  1675. void wpas_dbus_signal_debug_level_changed(struct wpa_global *global)
  1676. {
  1677. wpa_dbus_mark_property_changed(global->dbus, WPAS_DBUS_NEW_PATH,
  1678. WPAS_DBUS_NEW_INTERFACE,
  1679. "DebugLevel");
  1680. }
  1681. /**
  1682. * wpas_dbus_signal_debug_timestamp_changed - Signals change of debug param
  1683. * @global: wpa_global structure
  1684. *
  1685. * Sends PropertyChanged signals informing that debug timestamp has changed.
  1686. */
  1687. void wpas_dbus_signal_debug_timestamp_changed(struct wpa_global *global)
  1688. {
  1689. wpa_dbus_mark_property_changed(global->dbus, WPAS_DBUS_NEW_PATH,
  1690. WPAS_DBUS_NEW_INTERFACE,
  1691. "DebugTimestamp");
  1692. }
  1693. /**
  1694. * wpas_dbus_signal_debug_show_keys_changed - Signals change of debug param
  1695. * @global: wpa_global structure
  1696. *
  1697. * Sends PropertyChanged signals informing that debug show_keys has changed.
  1698. */
  1699. void wpas_dbus_signal_debug_show_keys_changed(struct wpa_global *global)
  1700. {
  1701. wpa_dbus_mark_property_changed(global->dbus, WPAS_DBUS_NEW_PATH,
  1702. WPAS_DBUS_NEW_INTERFACE,
  1703. "DebugShowKeys");
  1704. }
  1705. static void wpas_dbus_register(struct wpa_dbus_object_desc *obj_desc,
  1706. void *priv,
  1707. WPADBusArgumentFreeFunction priv_free,
  1708. const struct wpa_dbus_method_desc *methods,
  1709. const struct wpa_dbus_property_desc *properties,
  1710. const struct wpa_dbus_signal_desc *signals)
  1711. {
  1712. int n;
  1713. obj_desc->user_data = priv;
  1714. obj_desc->user_data_free_func = priv_free;
  1715. obj_desc->methods = methods;
  1716. obj_desc->properties = properties;
  1717. obj_desc->signals = signals;
  1718. for (n = 0; properties && properties->dbus_property; properties++)
  1719. n++;
  1720. obj_desc->prop_changed_flags = os_zalloc(n);
  1721. if (!obj_desc->prop_changed_flags)
  1722. wpa_printf(MSG_DEBUG, "dbus: %s: can't register handlers",
  1723. __func__);
  1724. }
  1725. static const struct wpa_dbus_method_desc wpas_dbus_global_methods[] = {
  1726. { "CreateInterface", WPAS_DBUS_NEW_INTERFACE,
  1727. (WPADBusMethodHandler) wpas_dbus_handler_create_interface,
  1728. {
  1729. { "args", "a{sv}", ARG_IN },
  1730. { "path", "o", ARG_OUT },
  1731. END_ARGS
  1732. }
  1733. },
  1734. { "RemoveInterface", WPAS_DBUS_NEW_INTERFACE,
  1735. (WPADBusMethodHandler) wpas_dbus_handler_remove_interface,
  1736. {
  1737. { "path", "o", ARG_IN },
  1738. END_ARGS
  1739. }
  1740. },
  1741. { "GetInterface", WPAS_DBUS_NEW_INTERFACE,
  1742. (WPADBusMethodHandler) wpas_dbus_handler_get_interface,
  1743. {
  1744. { "ifname", "s", ARG_IN },
  1745. { "path", "o", ARG_OUT },
  1746. END_ARGS
  1747. }
  1748. },
  1749. { NULL, NULL, NULL, { END_ARGS } }
  1750. };
  1751. static const struct wpa_dbus_property_desc wpas_dbus_global_properties[] = {
  1752. { "DebugLevel", WPAS_DBUS_NEW_INTERFACE, "s",
  1753. wpas_dbus_getter_debug_level,
  1754. wpas_dbus_setter_debug_level
  1755. },
  1756. { "DebugTimestamp", WPAS_DBUS_NEW_INTERFACE, "b",
  1757. wpas_dbus_getter_debug_timestamp,
  1758. wpas_dbus_setter_debug_timestamp
  1759. },
  1760. { "DebugShowKeys", WPAS_DBUS_NEW_INTERFACE, "b",
  1761. wpas_dbus_getter_debug_show_keys,
  1762. wpas_dbus_setter_debug_show_keys
  1763. },
  1764. { "Interfaces", WPAS_DBUS_NEW_INTERFACE, "ao",
  1765. wpas_dbus_getter_interfaces,
  1766. NULL
  1767. },
  1768. { "EapMethods", WPAS_DBUS_NEW_INTERFACE, "as",
  1769. wpas_dbus_getter_eap_methods,
  1770. NULL
  1771. },
  1772. { "Capabilities", WPAS_DBUS_NEW_INTERFACE, "as",
  1773. wpas_dbus_getter_global_capabilities,
  1774. NULL
  1775. },
  1776. #ifdef CONFIG_WIFI_DISPLAY
  1777. { "WFDIEs", WPAS_DBUS_NEW_INTERFACE, "ay",
  1778. wpas_dbus_getter_global_wfd_ies,
  1779. wpas_dbus_setter_global_wfd_ies
  1780. },
  1781. #endif /* CONFIG_WIFI_DISPLAY */
  1782. { NULL, NULL, NULL, NULL, NULL }
  1783. };
  1784. static const struct wpa_dbus_signal_desc wpas_dbus_global_signals[] = {
  1785. { "InterfaceAdded", WPAS_DBUS_NEW_INTERFACE,
  1786. {
  1787. { "path", "o", ARG_OUT },
  1788. { "properties", "a{sv}", ARG_OUT },
  1789. END_ARGS
  1790. }
  1791. },
  1792. { "InterfaceRemoved", WPAS_DBUS_NEW_INTERFACE,
  1793. {
  1794. { "path", "o", ARG_OUT },
  1795. END_ARGS
  1796. }
  1797. },
  1798. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  1799. { "PropertiesChanged", WPAS_DBUS_NEW_INTERFACE,
  1800. {
  1801. { "properties", "a{sv}", ARG_OUT },
  1802. END_ARGS
  1803. }
  1804. },
  1805. { NULL, NULL, { END_ARGS } }
  1806. };
  1807. /**
  1808. * wpas_dbus_ctrl_iface_init - Initialize dbus control interface
  1809. * @global: Pointer to global data from wpa_supplicant_init()
  1810. * Returns: 0 on success or -1 on failure
  1811. *
  1812. * Initialize the dbus control interface for wpa_supplicantand and start
  1813. * receiving commands from external programs over the bus.
  1814. */
  1815. int wpas_dbus_ctrl_iface_init(struct wpas_dbus_priv *priv)
  1816. {
  1817. struct wpa_dbus_object_desc *obj_desc;
  1818. int ret;
  1819. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  1820. if (!obj_desc) {
  1821. wpa_printf(MSG_ERROR,
  1822. "Not enough memory to create object description");
  1823. return -1;
  1824. }
  1825. wpas_dbus_register(obj_desc, priv->global, NULL,
  1826. wpas_dbus_global_methods,
  1827. wpas_dbus_global_properties,
  1828. wpas_dbus_global_signals);
  1829. wpa_printf(MSG_DEBUG, "dbus: Register D-Bus object '%s'",
  1830. WPAS_DBUS_NEW_PATH);
  1831. ret = wpa_dbus_ctrl_iface_init(priv, WPAS_DBUS_NEW_PATH,
  1832. WPAS_DBUS_NEW_SERVICE,
  1833. obj_desc);
  1834. if (ret < 0)
  1835. free_dbus_object_desc(obj_desc);
  1836. else
  1837. priv->dbus_new_initialized = 1;
  1838. return ret;
  1839. }
  1840. /**
  1841. * wpas_dbus_ctrl_iface_deinit - Deinitialize dbus ctrl interface for
  1842. * wpa_supplicant
  1843. * @iface: Pointer to dbus private data from wpas_dbus_init()
  1844. *
  1845. * Deinitialize the dbus control interface that was initialized with
  1846. * wpas_dbus_ctrl_iface_init().
  1847. */
  1848. void wpas_dbus_ctrl_iface_deinit(struct wpas_dbus_priv *iface)
  1849. {
  1850. if (!iface->dbus_new_initialized)
  1851. return;
  1852. wpa_printf(MSG_DEBUG, "dbus: Unregister D-Bus object '%s'",
  1853. WPAS_DBUS_NEW_PATH);
  1854. dbus_connection_unregister_object_path(iface->con,
  1855. WPAS_DBUS_NEW_PATH);
  1856. }
  1857. static void wpa_dbus_free(void *ptr)
  1858. {
  1859. os_free(ptr);
  1860. }
  1861. static const struct wpa_dbus_property_desc wpas_dbus_network_properties[] = {
  1862. { "Properties", WPAS_DBUS_NEW_IFACE_NETWORK, "a{sv}",
  1863. wpas_dbus_getter_network_properties,
  1864. wpas_dbus_setter_network_properties
  1865. },
  1866. { "Enabled", WPAS_DBUS_NEW_IFACE_NETWORK, "b",
  1867. wpas_dbus_getter_enabled,
  1868. wpas_dbus_setter_enabled
  1869. },
  1870. { NULL, NULL, NULL, NULL, NULL }
  1871. };
  1872. static const struct wpa_dbus_signal_desc wpas_dbus_network_signals[] = {
  1873. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  1874. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_NETWORK,
  1875. {
  1876. { "properties", "a{sv}", ARG_OUT },
  1877. END_ARGS
  1878. }
  1879. },
  1880. { NULL, NULL, { END_ARGS } }
  1881. };
  1882. /**
  1883. * wpas_dbus_register_network - Register a configured network with dbus
  1884. * @wpa_s: wpa_supplicant interface structure
  1885. * @ssid: network configuration data
  1886. * Returns: 0 on success, -1 on failure
  1887. *
  1888. * Registers network representing object with dbus
  1889. */
  1890. int wpas_dbus_register_network(struct wpa_supplicant *wpa_s,
  1891. struct wpa_ssid *ssid)
  1892. {
  1893. struct wpas_dbus_priv *ctrl_iface;
  1894. struct wpa_dbus_object_desc *obj_desc;
  1895. struct network_handler_args *arg;
  1896. char net_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  1897. #ifdef CONFIG_P2P
  1898. /*
  1899. * If it is a persistent group register it as such.
  1900. * This is to handle cases where an interface is being initialized
  1901. * with a list of networks read from config.
  1902. */
  1903. if (network_is_persistent_group(ssid))
  1904. return wpas_dbus_register_persistent_group(wpa_s, ssid);
  1905. #endif /* CONFIG_P2P */
  1906. /* Do nothing if the control interface is not turned on */
  1907. if (wpa_s == NULL || wpa_s->global == NULL || !wpa_s->dbus_new_path)
  1908. return 0;
  1909. ctrl_iface = wpa_s->global->dbus;
  1910. if (ctrl_iface == NULL)
  1911. return 0;
  1912. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1913. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u",
  1914. wpa_s->dbus_new_path, ssid->id);
  1915. wpa_printf(MSG_DEBUG, "dbus: Register network object '%s'",
  1916. net_obj_path);
  1917. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  1918. if (!obj_desc) {
  1919. wpa_printf(MSG_ERROR,
  1920. "Not enough memory to create object description");
  1921. goto err;
  1922. }
  1923. /* allocate memory for handlers arguments */
  1924. arg = os_zalloc(sizeof(struct network_handler_args));
  1925. if (!arg) {
  1926. wpa_printf(MSG_ERROR,
  1927. "Not enough memory to create arguments for method");
  1928. goto err;
  1929. }
  1930. arg->wpa_s = wpa_s;
  1931. arg->ssid = ssid;
  1932. wpas_dbus_register(obj_desc, arg, wpa_dbus_free, NULL,
  1933. wpas_dbus_network_properties,
  1934. wpas_dbus_network_signals);
  1935. if (wpa_dbus_register_object_per_iface(ctrl_iface, net_obj_path,
  1936. wpa_s->ifname, obj_desc))
  1937. goto err;
  1938. wpas_dbus_signal_network_added(wpa_s, ssid->id);
  1939. return 0;
  1940. err:
  1941. free_dbus_object_desc(obj_desc);
  1942. return -1;
  1943. }
  1944. /**
  1945. * wpas_dbus_unregister_network - Unregister a configured network from dbus
  1946. * @wpa_s: wpa_supplicant interface structure
  1947. * @nid: network id
  1948. * Returns: 0 on success, -1 on failure
  1949. *
  1950. * Unregisters network representing object from dbus
  1951. */
  1952. int wpas_dbus_unregister_network(struct wpa_supplicant *wpa_s, int nid)
  1953. {
  1954. struct wpas_dbus_priv *ctrl_iface;
  1955. char net_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  1956. int ret;
  1957. #ifdef CONFIG_P2P
  1958. struct wpa_ssid *ssid;
  1959. ssid = wpa_config_get_network(wpa_s->conf, nid);
  1960. /* If it is a persistent group unregister it as such */
  1961. if (ssid && network_is_persistent_group(ssid))
  1962. return wpas_dbus_unregister_persistent_group(wpa_s, nid);
  1963. #endif /* CONFIG_P2P */
  1964. /* Do nothing if the control interface is not turned on */
  1965. if (wpa_s->global == NULL || wpa_s->dbus_new_path == NULL)
  1966. return 0;
  1967. ctrl_iface = wpa_s->global->dbus;
  1968. if (ctrl_iface == NULL)
  1969. return 0;
  1970. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1971. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u",
  1972. wpa_s->dbus_new_path, nid);
  1973. wpa_printf(MSG_DEBUG, "dbus: Unregister network object '%s'",
  1974. net_obj_path);
  1975. ret = wpa_dbus_unregister_object_per_iface(ctrl_iface, net_obj_path);
  1976. if (!ret)
  1977. wpas_dbus_signal_network_removed(wpa_s, nid);
  1978. return ret;
  1979. }
  1980. static const struct wpa_dbus_property_desc wpas_dbus_bss_properties[] = {
  1981. { "SSID", WPAS_DBUS_NEW_IFACE_BSS, "ay",
  1982. wpas_dbus_getter_bss_ssid,
  1983. NULL
  1984. },
  1985. { "BSSID", WPAS_DBUS_NEW_IFACE_BSS, "ay",
  1986. wpas_dbus_getter_bss_bssid,
  1987. NULL
  1988. },
  1989. { "Privacy", WPAS_DBUS_NEW_IFACE_BSS, "b",
  1990. wpas_dbus_getter_bss_privacy,
  1991. NULL
  1992. },
  1993. { "Mode", WPAS_DBUS_NEW_IFACE_BSS, "s",
  1994. wpas_dbus_getter_bss_mode,
  1995. NULL
  1996. },
  1997. { "Signal", WPAS_DBUS_NEW_IFACE_BSS, "n",
  1998. wpas_dbus_getter_bss_signal,
  1999. NULL
  2000. },
  2001. { "Frequency", WPAS_DBUS_NEW_IFACE_BSS, "q",
  2002. wpas_dbus_getter_bss_frequency,
  2003. NULL
  2004. },
  2005. { "Rates", WPAS_DBUS_NEW_IFACE_BSS, "au",
  2006. wpas_dbus_getter_bss_rates,
  2007. NULL
  2008. },
  2009. { "WPA", WPAS_DBUS_NEW_IFACE_BSS, "a{sv}",
  2010. wpas_dbus_getter_bss_wpa,
  2011. NULL
  2012. },
  2013. { "RSN", WPAS_DBUS_NEW_IFACE_BSS, "a{sv}",
  2014. wpas_dbus_getter_bss_rsn,
  2015. NULL
  2016. },
  2017. { "WPS", WPAS_DBUS_NEW_IFACE_BSS, "a{sv}",
  2018. wpas_dbus_getter_bss_wps,
  2019. NULL
  2020. },
  2021. { "IEs", WPAS_DBUS_NEW_IFACE_BSS, "ay",
  2022. wpas_dbus_getter_bss_ies,
  2023. NULL
  2024. },
  2025. { "Age", WPAS_DBUS_NEW_IFACE_BSS, "u",
  2026. wpas_dbus_getter_bss_age,
  2027. NULL
  2028. },
  2029. { NULL, NULL, NULL, NULL, NULL }
  2030. };
  2031. static const struct wpa_dbus_signal_desc wpas_dbus_bss_signals[] = {
  2032. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  2033. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_BSS,
  2034. {
  2035. { "properties", "a{sv}", ARG_OUT },
  2036. END_ARGS
  2037. }
  2038. },
  2039. { NULL, NULL, { END_ARGS } }
  2040. };
  2041. /**
  2042. * wpas_dbus_unregister_bss - Unregister a scanned BSS from dbus
  2043. * @wpa_s: wpa_supplicant interface structure
  2044. * @bssid: scanned network bssid
  2045. * @id: unique BSS identifier
  2046. * Returns: 0 on success, -1 on failure
  2047. *
  2048. * Unregisters BSS representing object from dbus
  2049. */
  2050. int wpas_dbus_unregister_bss(struct wpa_supplicant *wpa_s,
  2051. u8 bssid[ETH_ALEN], unsigned int id)
  2052. {
  2053. struct wpas_dbus_priv *ctrl_iface;
  2054. char bss_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  2055. /* Do nothing if the control interface is not turned on */
  2056. if (wpa_s == NULL || wpa_s->global == NULL || !wpa_s->dbus_new_path)
  2057. return 0;
  2058. ctrl_iface = wpa_s->global->dbus;
  2059. if (ctrl_iface == NULL)
  2060. return 0;
  2061. os_snprintf(bss_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2062. "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
  2063. wpa_s->dbus_new_path, id);
  2064. wpa_printf(MSG_DEBUG, "dbus: Unregister BSS object '%s'",
  2065. bss_obj_path);
  2066. if (wpa_dbus_unregister_object_per_iface(ctrl_iface, bss_obj_path)) {
  2067. wpa_printf(MSG_ERROR, "dbus: Cannot unregister BSS object %s",
  2068. bss_obj_path);
  2069. return -1;
  2070. }
  2071. wpas_dbus_signal_bss_removed(wpa_s, bss_obj_path);
  2072. wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_BSSS);
  2073. return 0;
  2074. }
  2075. /**
  2076. * wpas_dbus_register_bss - Register a scanned BSS with dbus
  2077. * @wpa_s: wpa_supplicant interface structure
  2078. * @bssid: scanned network bssid
  2079. * @id: unique BSS identifier
  2080. * Returns: 0 on success, -1 on failure
  2081. *
  2082. * Registers BSS representing object with dbus
  2083. */
  2084. int wpas_dbus_register_bss(struct wpa_supplicant *wpa_s,
  2085. u8 bssid[ETH_ALEN], unsigned int id)
  2086. {
  2087. struct wpas_dbus_priv *ctrl_iface;
  2088. struct wpa_dbus_object_desc *obj_desc;
  2089. char bss_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  2090. struct bss_handler_args *arg;
  2091. /* Do nothing if the control interface is not turned on */
  2092. if (wpa_s == NULL || wpa_s->global == NULL || !wpa_s->dbus_new_path)
  2093. return 0;
  2094. ctrl_iface = wpa_s->global->dbus;
  2095. if (ctrl_iface == NULL)
  2096. return 0;
  2097. os_snprintf(bss_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2098. "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
  2099. wpa_s->dbus_new_path, id);
  2100. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  2101. if (!obj_desc) {
  2102. wpa_printf(MSG_ERROR,
  2103. "Not enough memory to create object description");
  2104. goto err;
  2105. }
  2106. arg = os_zalloc(sizeof(struct bss_handler_args));
  2107. if (!arg) {
  2108. wpa_printf(MSG_ERROR,
  2109. "Not enough memory to create arguments for handler");
  2110. goto err;
  2111. }
  2112. arg->wpa_s = wpa_s;
  2113. arg->id = id;
  2114. wpas_dbus_register(obj_desc, arg, wpa_dbus_free, NULL,
  2115. wpas_dbus_bss_properties,
  2116. wpas_dbus_bss_signals);
  2117. wpa_printf(MSG_DEBUG, "dbus: Register BSS object '%s'",
  2118. bss_obj_path);
  2119. if (wpa_dbus_register_object_per_iface(ctrl_iface, bss_obj_path,
  2120. wpa_s->ifname, obj_desc)) {
  2121. wpa_printf(MSG_ERROR,
  2122. "Cannot register BSSID dbus object %s.",
  2123. bss_obj_path);
  2124. goto err;
  2125. }
  2126. wpas_dbus_signal_bss_added(wpa_s, bss_obj_path);
  2127. wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_BSSS);
  2128. return 0;
  2129. err:
  2130. free_dbus_object_desc(obj_desc);
  2131. return -1;
  2132. }
  2133. static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
  2134. { "Scan", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2135. (WPADBusMethodHandler) wpas_dbus_handler_scan,
  2136. {
  2137. { "args", "a{sv}", ARG_IN },
  2138. END_ARGS
  2139. }
  2140. },
  2141. { "SignalPoll", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2142. (WPADBusMethodHandler) wpas_dbus_handler_signal_poll,
  2143. {
  2144. { "args", "a{sv}", ARG_OUT },
  2145. END_ARGS
  2146. }
  2147. },
  2148. { "Disconnect", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2149. (WPADBusMethodHandler) wpas_dbus_handler_disconnect,
  2150. {
  2151. END_ARGS
  2152. }
  2153. },
  2154. { "AddNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2155. (WPADBusMethodHandler) wpas_dbus_handler_add_network,
  2156. {
  2157. { "args", "a{sv}", ARG_IN },
  2158. { "path", "o", ARG_OUT },
  2159. END_ARGS
  2160. }
  2161. },
  2162. { "Reassociate", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2163. (WPADBusMethodHandler) wpas_dbus_handler_reassociate,
  2164. {
  2165. END_ARGS
  2166. }
  2167. },
  2168. { "Reattach", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2169. (WPADBusMethodHandler) wpas_dbus_handler_reattach,
  2170. {
  2171. END_ARGS
  2172. }
  2173. },
  2174. { "Reconnect", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2175. (WPADBusMethodHandler) wpas_dbus_handler_reconnect,
  2176. {
  2177. END_ARGS
  2178. }
  2179. },
  2180. { "RemoveNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2181. (WPADBusMethodHandler) wpas_dbus_handler_remove_network,
  2182. {
  2183. { "path", "o", ARG_IN },
  2184. END_ARGS
  2185. }
  2186. },
  2187. { "RemoveAllNetworks", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2188. (WPADBusMethodHandler) wpas_dbus_handler_remove_all_networks,
  2189. {
  2190. END_ARGS
  2191. }
  2192. },
  2193. { "SelectNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2194. (WPADBusMethodHandler) wpas_dbus_handler_select_network,
  2195. {
  2196. { "path", "o", ARG_IN },
  2197. END_ARGS
  2198. }
  2199. },
  2200. { "NetworkReply", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2201. (WPADBusMethodHandler) wpas_dbus_handler_network_reply,
  2202. {
  2203. { "path", "o", ARG_IN },
  2204. { "field", "s", ARG_IN },
  2205. { "value", "s", ARG_IN },
  2206. END_ARGS
  2207. }
  2208. },
  2209. #ifndef CONFIG_NO_CONFIG_BLOBS
  2210. { "AddBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2211. (WPADBusMethodHandler) wpas_dbus_handler_add_blob,
  2212. {
  2213. { "name", "s", ARG_IN },
  2214. { "data", "ay", ARG_IN },
  2215. END_ARGS
  2216. }
  2217. },
  2218. { "GetBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2219. (WPADBusMethodHandler) wpas_dbus_handler_get_blob,
  2220. {
  2221. { "name", "s", ARG_IN },
  2222. { "data", "ay", ARG_OUT },
  2223. END_ARGS
  2224. }
  2225. },
  2226. { "RemoveBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2227. (WPADBusMethodHandler) wpas_dbus_handler_remove_blob,
  2228. {
  2229. { "name", "s", ARG_IN },
  2230. END_ARGS
  2231. }
  2232. },
  2233. #endif /* CONFIG_NO_CONFIG_BLOBS */
  2234. { "SetPKCS11EngineAndModulePath", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2235. (WPADBusMethodHandler)
  2236. wpas_dbus_handler_set_pkcs11_engine_and_module_path,
  2237. {
  2238. { "pkcs11_engine_path", "s", ARG_IN },
  2239. { "pkcs11_module_path", "s", ARG_IN },
  2240. END_ARGS
  2241. }
  2242. },
  2243. #ifdef CONFIG_WPS
  2244. { "Start", WPAS_DBUS_NEW_IFACE_WPS,
  2245. (WPADBusMethodHandler) wpas_dbus_handler_wps_start,
  2246. {
  2247. { "args", "a{sv}", ARG_IN },
  2248. { "output", "a{sv}", ARG_OUT },
  2249. END_ARGS
  2250. }
  2251. },
  2252. { "Cancel", WPAS_DBUS_NEW_IFACE_WPS,
  2253. (WPADBusMethodHandler) wpas_dbus_handler_wps_cancel,
  2254. {
  2255. END_ARGS
  2256. }
  2257. },
  2258. #endif /* CONFIG_WPS */
  2259. #ifdef CONFIG_P2P
  2260. { "Find", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2261. (WPADBusMethodHandler) wpas_dbus_handler_p2p_find,
  2262. {
  2263. { "args", "a{sv}", ARG_IN },
  2264. END_ARGS
  2265. }
  2266. },
  2267. { "StopFind", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2268. (WPADBusMethodHandler) wpas_dbus_handler_p2p_stop_find,
  2269. {
  2270. END_ARGS
  2271. }
  2272. },
  2273. { "Listen", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2274. (WPADBusMethodHandler) wpas_dbus_handler_p2p_listen,
  2275. {
  2276. { "timeout", "i", ARG_IN },
  2277. END_ARGS
  2278. }
  2279. },
  2280. { "ExtendedListen", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2281. (WPADBusMethodHandler) wpas_dbus_handler_p2p_extendedlisten,
  2282. {
  2283. { "args", "a{sv}", ARG_IN },
  2284. END_ARGS
  2285. }
  2286. },
  2287. { "PresenceRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2288. (WPADBusMethodHandler) wpas_dbus_handler_p2p_presence_request,
  2289. {
  2290. { "args", "a{sv}", ARG_IN },
  2291. END_ARGS
  2292. }
  2293. },
  2294. { "ProvisionDiscoveryRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2295. (WPADBusMethodHandler) wpas_dbus_handler_p2p_prov_disc_req,
  2296. {
  2297. { "peer", "o", ARG_IN },
  2298. { "config_method", "s", ARG_IN },
  2299. END_ARGS
  2300. }
  2301. },
  2302. { "Connect", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2303. (WPADBusMethodHandler) wpas_dbus_handler_p2p_connect,
  2304. {
  2305. { "args", "a{sv}", ARG_IN },
  2306. { "generated_pin", "s", ARG_OUT },
  2307. END_ARGS
  2308. }
  2309. },
  2310. { "GroupAdd", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2311. (WPADBusMethodHandler) wpas_dbus_handler_p2p_group_add,
  2312. {
  2313. { "args", "a{sv}", ARG_IN },
  2314. END_ARGS
  2315. }
  2316. },
  2317. { "Cancel", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2318. (WPADBusMethodHandler) wpas_dbus_handler_p2p_cancel,
  2319. {
  2320. END_ARGS
  2321. }
  2322. },
  2323. { "Invite", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2324. (WPADBusMethodHandler) wpas_dbus_handler_p2p_invite,
  2325. {
  2326. { "args", "a{sv}", ARG_IN },
  2327. END_ARGS
  2328. }
  2329. },
  2330. { "Disconnect", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2331. (WPADBusMethodHandler) wpas_dbus_handler_p2p_disconnect,
  2332. {
  2333. END_ARGS
  2334. }
  2335. },
  2336. { "RejectPeer", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2337. (WPADBusMethodHandler) wpas_dbus_handler_p2p_rejectpeer,
  2338. {
  2339. { "peer", "o", ARG_IN },
  2340. END_ARGS
  2341. }
  2342. },
  2343. { "RemoveClient", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2344. (WPADBusMethodHandler) wpas_dbus_handler_p2p_remove_client,
  2345. {
  2346. { "args", "a{sv}", ARG_IN },
  2347. END_ARGS
  2348. }
  2349. },
  2350. { "Flush", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2351. (WPADBusMethodHandler) wpas_dbus_handler_p2p_flush,
  2352. {
  2353. END_ARGS
  2354. }
  2355. },
  2356. { "AddService", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2357. (WPADBusMethodHandler) wpas_dbus_handler_p2p_add_service,
  2358. {
  2359. { "args", "a{sv}", ARG_IN },
  2360. END_ARGS
  2361. }
  2362. },
  2363. { "DeleteService", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2364. (WPADBusMethodHandler) wpas_dbus_handler_p2p_delete_service,
  2365. {
  2366. { "args", "a{sv}", ARG_IN },
  2367. END_ARGS
  2368. }
  2369. },
  2370. { "FlushService", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2371. (WPADBusMethodHandler) wpas_dbus_handler_p2p_flush_service,
  2372. {
  2373. END_ARGS
  2374. }
  2375. },
  2376. { "ServiceDiscoveryRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2377. (WPADBusMethodHandler) wpas_dbus_handler_p2p_service_sd_req,
  2378. {
  2379. { "args", "a{sv}", ARG_IN },
  2380. { "ref", "t", ARG_OUT },
  2381. END_ARGS
  2382. }
  2383. },
  2384. { "ServiceDiscoveryResponse", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2385. (WPADBusMethodHandler) wpas_dbus_handler_p2p_service_sd_res,
  2386. {
  2387. { "args", "a{sv}", ARG_IN },
  2388. END_ARGS
  2389. }
  2390. },
  2391. { "ServiceDiscoveryCancelRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2392. (WPADBusMethodHandler) wpas_dbus_handler_p2p_service_sd_cancel_req,
  2393. {
  2394. { "args", "t", ARG_IN },
  2395. END_ARGS
  2396. }
  2397. },
  2398. { "ServiceUpdate", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2399. (WPADBusMethodHandler) wpas_dbus_handler_p2p_service_update,
  2400. {
  2401. END_ARGS
  2402. }
  2403. },
  2404. { "ServiceDiscoveryExternal", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2405. (WPADBusMethodHandler) wpas_dbus_handler_p2p_serv_disc_external,
  2406. {
  2407. { "arg", "i", ARG_IN },
  2408. END_ARGS
  2409. }
  2410. },
  2411. { "AddPersistentGroup", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2412. (WPADBusMethodHandler) wpas_dbus_handler_add_persistent_group,
  2413. {
  2414. { "args", "a{sv}", ARG_IN },
  2415. { "path", "o", ARG_OUT },
  2416. END_ARGS
  2417. }
  2418. },
  2419. { "RemovePersistentGroup", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2420. (WPADBusMethodHandler) wpas_dbus_handler_remove_persistent_group,
  2421. {
  2422. { "path", "o", ARG_IN },
  2423. END_ARGS
  2424. }
  2425. },
  2426. { "RemoveAllPersistentGroups", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2427. (WPADBusMethodHandler)
  2428. wpas_dbus_handler_remove_all_persistent_groups,
  2429. {
  2430. END_ARGS
  2431. }
  2432. },
  2433. #endif /* CONFIG_P2P */
  2434. { "FlushBSS", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2435. (WPADBusMethodHandler) wpas_dbus_handler_flush_bss,
  2436. {
  2437. { "age", "u", ARG_IN },
  2438. END_ARGS
  2439. }
  2440. },
  2441. #ifdef CONFIG_AP
  2442. { "SubscribeProbeReq", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2443. (WPADBusMethodHandler) wpas_dbus_handler_subscribe_preq,
  2444. {
  2445. END_ARGS
  2446. }
  2447. },
  2448. { "UnsubscribeProbeReq", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2449. (WPADBusMethodHandler) wpas_dbus_handler_unsubscribe_preq,
  2450. {
  2451. END_ARGS
  2452. }
  2453. },
  2454. #endif /* CONFIG_AP */
  2455. { "EAPLogoff", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2456. (WPADBusMethodHandler) wpas_dbus_handler_eap_logoff,
  2457. {
  2458. END_ARGS
  2459. }
  2460. },
  2461. { "EAPLogon", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2462. (WPADBusMethodHandler) wpas_dbus_handler_eap_logon,
  2463. {
  2464. END_ARGS
  2465. }
  2466. },
  2467. #ifdef CONFIG_AUTOSCAN
  2468. { "AutoScan", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2469. (WPADBusMethodHandler) wpas_dbus_handler_autoscan,
  2470. {
  2471. { "arg", "s", ARG_IN },
  2472. END_ARGS
  2473. }
  2474. },
  2475. #endif /* CONFIG_AUTOSCAN */
  2476. #ifdef CONFIG_TDLS
  2477. { "TDLSDiscover", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2478. (WPADBusMethodHandler) wpas_dbus_handler_tdls_discover,
  2479. {
  2480. { "peer_address", "s", ARG_IN },
  2481. END_ARGS
  2482. }
  2483. },
  2484. { "TDLSSetup", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2485. (WPADBusMethodHandler) wpas_dbus_handler_tdls_setup,
  2486. {
  2487. { "peer_address", "s", ARG_IN },
  2488. END_ARGS
  2489. }
  2490. },
  2491. { "TDLSStatus", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2492. (WPADBusMethodHandler) wpas_dbus_handler_tdls_status,
  2493. {
  2494. { "peer_address", "s", ARG_IN },
  2495. { "status", "s", ARG_OUT },
  2496. END_ARGS
  2497. }
  2498. },
  2499. { "TDLSTeardown", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2500. (WPADBusMethodHandler) wpas_dbus_handler_tdls_teardown,
  2501. {
  2502. { "peer_address", "s", ARG_IN },
  2503. END_ARGS
  2504. }
  2505. },
  2506. #endif /* CONFIG_TDLS */
  2507. { NULL, NULL, NULL, { END_ARGS } }
  2508. };
  2509. static const struct wpa_dbus_property_desc wpas_dbus_interface_properties[] = {
  2510. { "Capabilities", WPAS_DBUS_NEW_IFACE_INTERFACE, "a{sv}",
  2511. wpas_dbus_getter_capabilities,
  2512. NULL
  2513. },
  2514. { "State", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2515. wpas_dbus_getter_state,
  2516. NULL
  2517. },
  2518. { "Scanning", WPAS_DBUS_NEW_IFACE_INTERFACE, "b",
  2519. wpas_dbus_getter_scanning,
  2520. NULL
  2521. },
  2522. { "ApScan", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
  2523. wpas_dbus_getter_ap_scan,
  2524. wpas_dbus_setter_ap_scan
  2525. },
  2526. { "BSSExpireAge", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
  2527. wpas_dbus_getter_bss_expire_age,
  2528. wpas_dbus_setter_bss_expire_age
  2529. },
  2530. { "BSSExpireCount", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
  2531. wpas_dbus_getter_bss_expire_count,
  2532. wpas_dbus_setter_bss_expire_count
  2533. },
  2534. { "Country", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2535. wpas_dbus_getter_country,
  2536. wpas_dbus_setter_country
  2537. },
  2538. { "Ifname", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2539. wpas_dbus_getter_ifname,
  2540. NULL
  2541. },
  2542. { "Driver", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2543. wpas_dbus_getter_driver,
  2544. NULL
  2545. },
  2546. { "BridgeIfname", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2547. wpas_dbus_getter_bridge_ifname,
  2548. NULL
  2549. },
  2550. { "CurrentBSS", WPAS_DBUS_NEW_IFACE_INTERFACE, "o",
  2551. wpas_dbus_getter_current_bss,
  2552. NULL
  2553. },
  2554. { "CurrentNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE, "o",
  2555. wpas_dbus_getter_current_network,
  2556. NULL
  2557. },
  2558. { "CurrentAuthMode", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2559. wpas_dbus_getter_current_auth_mode,
  2560. NULL
  2561. },
  2562. { "Blobs", WPAS_DBUS_NEW_IFACE_INTERFACE, "a{say}",
  2563. wpas_dbus_getter_blobs,
  2564. NULL
  2565. },
  2566. { "BSSs", WPAS_DBUS_NEW_IFACE_INTERFACE, "ao",
  2567. wpas_dbus_getter_bsss,
  2568. NULL
  2569. },
  2570. { "Networks", WPAS_DBUS_NEW_IFACE_INTERFACE, "ao",
  2571. wpas_dbus_getter_networks,
  2572. NULL
  2573. },
  2574. { "FastReauth", WPAS_DBUS_NEW_IFACE_INTERFACE, "b",
  2575. wpas_dbus_getter_fast_reauth,
  2576. wpas_dbus_setter_fast_reauth
  2577. },
  2578. { "ScanInterval", WPAS_DBUS_NEW_IFACE_INTERFACE, "i",
  2579. wpas_dbus_getter_scan_interval,
  2580. wpas_dbus_setter_scan_interval
  2581. },
  2582. { "PKCS11EnginePath", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2583. wpas_dbus_getter_pkcs11_engine_path,
  2584. NULL
  2585. },
  2586. { "PKCS11ModulePath", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2587. wpas_dbus_getter_pkcs11_module_path,
  2588. NULL
  2589. },
  2590. #ifdef CONFIG_WPS
  2591. { "ProcessCredentials", WPAS_DBUS_NEW_IFACE_WPS, "b",
  2592. wpas_dbus_getter_process_credentials,
  2593. wpas_dbus_setter_process_credentials
  2594. },
  2595. { "ConfigMethods", WPAS_DBUS_NEW_IFACE_WPS, "s",
  2596. wpas_dbus_getter_config_methods,
  2597. wpas_dbus_setter_config_methods
  2598. },
  2599. #endif /* CONFIG_WPS */
  2600. #ifdef CONFIG_P2P
  2601. { "P2PDeviceConfig", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "a{sv}",
  2602. wpas_dbus_getter_p2p_device_config,
  2603. wpas_dbus_setter_p2p_device_config
  2604. },
  2605. { "Peers", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "ao",
  2606. wpas_dbus_getter_p2p_peers,
  2607. NULL
  2608. },
  2609. { "Role", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "s",
  2610. wpas_dbus_getter_p2p_role,
  2611. NULL
  2612. },
  2613. { "Group", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "o",
  2614. wpas_dbus_getter_p2p_group,
  2615. NULL
  2616. },
  2617. { "PeerGO", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "o",
  2618. wpas_dbus_getter_p2p_peergo,
  2619. NULL
  2620. },
  2621. { "PersistentGroups", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "ao",
  2622. wpas_dbus_getter_persistent_groups,
  2623. NULL
  2624. },
  2625. #endif /* CONFIG_P2P */
  2626. { "DisconnectReason", WPAS_DBUS_NEW_IFACE_INTERFACE, "i",
  2627. wpas_dbus_getter_disconnect_reason,
  2628. NULL
  2629. },
  2630. { NULL, NULL, NULL, NULL, NULL }
  2631. };
  2632. static const struct wpa_dbus_signal_desc wpas_dbus_interface_signals[] = {
  2633. { "ScanDone", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2634. {
  2635. { "success", "b", ARG_OUT },
  2636. END_ARGS
  2637. }
  2638. },
  2639. { "BSSAdded", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2640. {
  2641. { "path", "o", ARG_OUT },
  2642. { "properties", "a{sv}", ARG_OUT },
  2643. END_ARGS
  2644. }
  2645. },
  2646. { "BSSRemoved", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2647. {
  2648. { "path", "o", ARG_OUT },
  2649. END_ARGS
  2650. }
  2651. },
  2652. { "BlobAdded", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2653. {
  2654. { "name", "s", ARG_OUT },
  2655. END_ARGS
  2656. }
  2657. },
  2658. { "BlobRemoved", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2659. {
  2660. { "name", "s", ARG_OUT },
  2661. END_ARGS
  2662. }
  2663. },
  2664. { "NetworkAdded", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2665. {
  2666. { "path", "o", ARG_OUT },
  2667. { "properties", "a{sv}", ARG_OUT },
  2668. END_ARGS
  2669. }
  2670. },
  2671. { "NetworkRemoved", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2672. {
  2673. { "path", "o", ARG_OUT },
  2674. END_ARGS
  2675. }
  2676. },
  2677. { "NetworkSelected", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2678. {
  2679. { "path", "o", ARG_OUT },
  2680. END_ARGS
  2681. }
  2682. },
  2683. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  2684. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2685. {
  2686. { "properties", "a{sv}", ARG_OUT },
  2687. END_ARGS
  2688. }
  2689. },
  2690. #ifdef CONFIG_WPS
  2691. { "Event", WPAS_DBUS_NEW_IFACE_WPS,
  2692. {
  2693. { "name", "s", ARG_OUT },
  2694. { "args", "a{sv}", ARG_OUT },
  2695. END_ARGS
  2696. }
  2697. },
  2698. { "Credentials", WPAS_DBUS_NEW_IFACE_WPS,
  2699. {
  2700. { "credentials", "a{sv}", ARG_OUT },
  2701. END_ARGS
  2702. }
  2703. },
  2704. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  2705. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_WPS,
  2706. {
  2707. { "properties", "a{sv}", ARG_OUT },
  2708. END_ARGS
  2709. }
  2710. },
  2711. #endif /* CONFIG_WPS */
  2712. #ifdef CONFIG_P2P
  2713. { "DeviceFound", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2714. {
  2715. { "path", "o", ARG_OUT },
  2716. END_ARGS
  2717. }
  2718. },
  2719. { "DeviceLost", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2720. {
  2721. { "path", "o", ARG_OUT },
  2722. END_ARGS
  2723. }
  2724. },
  2725. { "FindStopped", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2726. {
  2727. END_ARGS
  2728. }
  2729. },
  2730. { "ProvisionDiscoveryRequestDisplayPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2731. {
  2732. { "peer_object", "o", ARG_OUT },
  2733. { "pin", "s", ARG_OUT },
  2734. END_ARGS
  2735. }
  2736. },
  2737. { "ProvisionDiscoveryResponseDisplayPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2738. {
  2739. { "peer_object", "o", ARG_OUT },
  2740. { "pin", "s", ARG_OUT },
  2741. END_ARGS
  2742. }
  2743. },
  2744. { "ProvisionDiscoveryRequestEnterPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2745. {
  2746. { "peer_object", "o", ARG_OUT },
  2747. END_ARGS
  2748. }
  2749. },
  2750. { "ProvisionDiscoveryResponseEnterPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2751. {
  2752. { "peer_object", "o", ARG_OUT },
  2753. END_ARGS
  2754. }
  2755. },
  2756. { "ProvisionDiscoveryPBCRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2757. {
  2758. { "peer_object", "o", ARG_OUT },
  2759. END_ARGS
  2760. }
  2761. },
  2762. { "ProvisionDiscoveryPBCResponse", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2763. {
  2764. { "peer_object", "o", ARG_OUT },
  2765. END_ARGS
  2766. }
  2767. },
  2768. { "ProvisionDiscoveryFailure", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2769. {
  2770. { "peer_object", "o", ARG_OUT },
  2771. { "status", "i", ARG_OUT },
  2772. END_ARGS
  2773. }
  2774. },
  2775. { "GroupStarted", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2776. {
  2777. { "properties", "a{sv}", ARG_OUT },
  2778. END_ARGS
  2779. }
  2780. },
  2781. { "GONegotiationSuccess", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2782. {
  2783. { "properties", "a{sv}", ARG_OUT },
  2784. END_ARGS
  2785. }
  2786. },
  2787. { "GONegotiationFailure", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2788. {
  2789. { "properties", "a{sv}", ARG_OUT },
  2790. END_ARGS
  2791. }
  2792. },
  2793. { "GONegotiationRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2794. {
  2795. { "path", "o", ARG_OUT },
  2796. { "dev_passwd_id", "i", ARG_OUT },
  2797. { "device_go_intent", "y", ARG_OUT },
  2798. END_ARGS
  2799. }
  2800. },
  2801. { "InvitationResult", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2802. {
  2803. { "invite_result", "a{sv}", ARG_OUT },
  2804. END_ARGS
  2805. }
  2806. },
  2807. { "GroupFinished", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2808. {
  2809. { "properties", "a{sv}", ARG_OUT },
  2810. END_ARGS
  2811. }
  2812. },
  2813. { "ServiceDiscoveryRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2814. {
  2815. { "sd_request", "a{sv}", ARG_OUT },
  2816. END_ARGS
  2817. }
  2818. },
  2819. { "ServiceDiscoveryResponse", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2820. {
  2821. { "sd_response", "a{sv}", ARG_OUT },
  2822. END_ARGS
  2823. }
  2824. },
  2825. { "PersistentGroupAdded", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2826. {
  2827. { "path", "o", ARG_OUT },
  2828. { "properties", "a{sv}", ARG_OUT },
  2829. END_ARGS
  2830. }
  2831. },
  2832. { "PersistentGroupRemoved", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2833. {
  2834. { "path", "o", ARG_OUT },
  2835. END_ARGS
  2836. }
  2837. },
  2838. { "WpsFailed", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2839. {
  2840. { "name", "s", ARG_OUT },
  2841. { "args", "a{sv}", ARG_OUT },
  2842. END_ARGS
  2843. }
  2844. },
  2845. #endif /* CONFIG_P2P */
  2846. #ifdef CONFIG_AP
  2847. { "ProbeRequest", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2848. {
  2849. { "args", "a{sv}", ARG_OUT },
  2850. END_ARGS
  2851. }
  2852. },
  2853. #endif /* CONFIG_AP */
  2854. { "Certification", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2855. {
  2856. { "certification", "a{sv}", ARG_OUT },
  2857. END_ARGS
  2858. }
  2859. },
  2860. { "EAP", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2861. {
  2862. { "status", "s", ARG_OUT },
  2863. { "parameter", "s", ARG_OUT },
  2864. END_ARGS
  2865. }
  2866. },
  2867. { "StaAuthorized", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2868. {
  2869. { "name", "s", ARG_OUT },
  2870. END_ARGS
  2871. }
  2872. },
  2873. { "StaDeauthorized", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2874. {
  2875. { "name", "s", ARG_OUT },
  2876. END_ARGS
  2877. }
  2878. },
  2879. { "NetworkRequest", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2880. {
  2881. { "path", "o", ARG_OUT },
  2882. { "field", "s", ARG_OUT },
  2883. { "text", "s", ARG_OUT },
  2884. END_ARGS
  2885. }
  2886. },
  2887. { NULL, NULL, { END_ARGS } }
  2888. };
  2889. /**
  2890. * wpas_dbus_register_interface - Register an interface with D-Bus
  2891. * @wpa_s: wpa_supplicant interface structure
  2892. * Returns: 0 on success, -1 on failure
  2893. */
  2894. int wpas_dbus_register_interface(struct wpa_supplicant *wpa_s)
  2895. {
  2896. struct wpa_dbus_object_desc *obj_desc = NULL;
  2897. struct wpas_dbus_priv *ctrl_iface = wpa_s->global->dbus;
  2898. int next;
  2899. /* Do nothing if the control interface is not turned on */
  2900. if (ctrl_iface == NULL)
  2901. return 0;
  2902. /* Create and set the interface's object path */
  2903. wpa_s->dbus_new_path = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
  2904. if (wpa_s->dbus_new_path == NULL)
  2905. return -1;
  2906. next = ctrl_iface->next_objid++;
  2907. os_snprintf(wpa_s->dbus_new_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2908. WPAS_DBUS_NEW_PATH_INTERFACES "/%u",
  2909. next);
  2910. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  2911. if (!obj_desc) {
  2912. wpa_printf(MSG_ERROR,
  2913. "Not enough memory to create object description");
  2914. goto err;
  2915. }
  2916. wpas_dbus_register(obj_desc, wpa_s, NULL, wpas_dbus_interface_methods,
  2917. wpas_dbus_interface_properties,
  2918. wpas_dbus_interface_signals);
  2919. wpa_printf(MSG_DEBUG, "dbus: Register interface object '%s'",
  2920. wpa_s->dbus_new_path);
  2921. if (wpa_dbus_register_object_per_iface(ctrl_iface,
  2922. wpa_s->dbus_new_path,
  2923. wpa_s->ifname, obj_desc))
  2924. goto err;
  2925. wpas_dbus_signal_interface_added(wpa_s);
  2926. return 0;
  2927. err:
  2928. os_free(wpa_s->dbus_new_path);
  2929. wpa_s->dbus_new_path = NULL;
  2930. free_dbus_object_desc(obj_desc);
  2931. return -1;
  2932. }
  2933. /**
  2934. * wpas_dbus_unregister_interface - Unregister the interface from D-Bus
  2935. * @wpa_s: wpa_supplicant interface structure
  2936. * Returns: 0 on success, -1 on failure
  2937. */
  2938. int wpas_dbus_unregister_interface(struct wpa_supplicant *wpa_s)
  2939. {
  2940. struct wpas_dbus_priv *ctrl_iface;
  2941. /* Do nothing if the control interface is not turned on */
  2942. if (wpa_s == NULL || wpa_s->global == NULL)
  2943. return 0;
  2944. ctrl_iface = wpa_s->global->dbus;
  2945. if (ctrl_iface == NULL || wpa_s->dbus_new_path == NULL)
  2946. return 0;
  2947. wpa_printf(MSG_DEBUG, "dbus: Unregister interface object '%s'",
  2948. wpa_s->dbus_new_path);
  2949. #ifdef CONFIG_AP
  2950. if (wpa_s->preq_notify_peer) {
  2951. wpas_dbus_unsubscribe_noc(ctrl_iface);
  2952. os_free(wpa_s->preq_notify_peer);
  2953. wpa_s->preq_notify_peer = NULL;
  2954. }
  2955. #endif /* CONFIG_AP */
  2956. if (wpa_dbus_unregister_object_per_iface(ctrl_iface,
  2957. wpa_s->dbus_new_path))
  2958. return -1;
  2959. wpas_dbus_signal_interface_removed(wpa_s);
  2960. os_free(wpa_s->dbus_new_path);
  2961. wpa_s->dbus_new_path = NULL;
  2962. return 0;
  2963. }
  2964. #ifdef CONFIG_P2P
  2965. static const struct wpa_dbus_property_desc wpas_dbus_p2p_peer_properties[] = {
  2966. { "DeviceName", WPAS_DBUS_NEW_IFACE_P2P_PEER, "s",
  2967. wpas_dbus_getter_p2p_peer_device_name,
  2968. NULL
  2969. },
  2970. { "Manufacturer", WPAS_DBUS_NEW_IFACE_P2P_PEER, "s",
  2971. wpas_dbus_getter_p2p_peer_manufacturer,
  2972. NULL
  2973. },
  2974. { "ModelName", WPAS_DBUS_NEW_IFACE_P2P_PEER, "s",
  2975. wpas_dbus_getter_p2p_peer_modelname,
  2976. NULL
  2977. },
  2978. { "ModelNumber", WPAS_DBUS_NEW_IFACE_P2P_PEER, "s",
  2979. wpas_dbus_getter_p2p_peer_modelnumber,
  2980. NULL
  2981. },
  2982. { "SerialNumber", WPAS_DBUS_NEW_IFACE_P2P_PEER, "s",
  2983. wpas_dbus_getter_p2p_peer_serialnumber,
  2984. NULL
  2985. },
  2986. { "PrimaryDeviceType", WPAS_DBUS_NEW_IFACE_P2P_PEER, "ay",
  2987. wpas_dbus_getter_p2p_peer_primary_device_type,
  2988. NULL
  2989. },
  2990. { "config_method", WPAS_DBUS_NEW_IFACE_P2P_PEER, "q",
  2991. wpas_dbus_getter_p2p_peer_config_method,
  2992. NULL
  2993. },
  2994. { "level", WPAS_DBUS_NEW_IFACE_P2P_PEER, "i",
  2995. wpas_dbus_getter_p2p_peer_level,
  2996. NULL
  2997. },
  2998. { "devicecapability", WPAS_DBUS_NEW_IFACE_P2P_PEER, "y",
  2999. wpas_dbus_getter_p2p_peer_device_capability,
  3000. NULL
  3001. },
  3002. { "groupcapability", WPAS_DBUS_NEW_IFACE_P2P_PEER, "y",
  3003. wpas_dbus_getter_p2p_peer_group_capability,
  3004. NULL
  3005. },
  3006. { "SecondaryDeviceTypes", WPAS_DBUS_NEW_IFACE_P2P_PEER, "aay",
  3007. wpas_dbus_getter_p2p_peer_secondary_device_types,
  3008. NULL
  3009. },
  3010. { "VendorExtension", WPAS_DBUS_NEW_IFACE_P2P_PEER, "aay",
  3011. wpas_dbus_getter_p2p_peer_vendor_extension,
  3012. NULL
  3013. },
  3014. { "IEs", WPAS_DBUS_NEW_IFACE_P2P_PEER, "ay",
  3015. wpas_dbus_getter_p2p_peer_ies,
  3016. NULL
  3017. },
  3018. { "DeviceAddress", WPAS_DBUS_NEW_IFACE_P2P_PEER, "ay",
  3019. wpas_dbus_getter_p2p_peer_device_address,
  3020. NULL
  3021. },
  3022. { "Groups", WPAS_DBUS_NEW_IFACE_P2P_PEER, "ao",
  3023. wpas_dbus_getter_p2p_peer_groups,
  3024. NULL
  3025. },
  3026. { NULL, NULL, NULL, NULL, NULL }
  3027. };
  3028. static const struct wpa_dbus_signal_desc wpas_dbus_p2p_peer_signals[] = {
  3029. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  3030. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_P2P_PEER,
  3031. {
  3032. { "properties", "a{sv}", ARG_OUT },
  3033. END_ARGS
  3034. }
  3035. },
  3036. { NULL, NULL, { END_ARGS } }
  3037. };
  3038. /**
  3039. * wpas_dbus_signal_peer - Send a peer related event signal
  3040. * @wpa_s: %wpa_supplicant network interface data
  3041. * @dev: peer device object
  3042. * @interface: name of the interface emitting this signal.
  3043. * In case of peer objects, it would be emitted by either
  3044. * the "interface object" or by "peer objects"
  3045. * @sig_name: signal name - DeviceFound
  3046. *
  3047. * Notify listeners about event related with newly found p2p peer device
  3048. */
  3049. static void wpas_dbus_signal_peer(struct wpa_supplicant *wpa_s,
  3050. const u8 *dev_addr, const char *interface,
  3051. const char *sig_name)
  3052. {
  3053. struct wpas_dbus_priv *iface;
  3054. DBusMessage *msg;
  3055. DBusMessageIter iter;
  3056. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  3057. if (wpa_s->p2p_mgmt)
  3058. wpa_s = wpa_s->parent;
  3059. iface = wpa_s->global->dbus;
  3060. /* Do nothing if the control interface is not turned on */
  3061. if (iface == NULL || !wpa_s->dbus_new_path)
  3062. return;
  3063. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  3064. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  3065. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  3066. msg = dbus_message_new_signal(wpa_s->dbus_new_path, interface,
  3067. sig_name);
  3068. if (msg == NULL)
  3069. return;
  3070. dbus_message_iter_init_append(msg, &iter);
  3071. path = peer_obj_path;
  3072. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  3073. &path))
  3074. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  3075. else
  3076. dbus_connection_send(iface->con, msg, NULL);
  3077. dbus_message_unref(msg);
  3078. }
  3079. /**
  3080. * wpas_dbus_signal_peer_found - Send a peer found signal
  3081. * @wpa_s: %wpa_supplicant network interface data
  3082. * @dev_addr: Peer P2P Device Address
  3083. *
  3084. * Notify listeners about find a p2p peer device found
  3085. */
  3086. void wpas_dbus_signal_peer_device_found(struct wpa_supplicant *wpa_s,
  3087. const u8 *dev_addr)
  3088. {
  3089. wpas_dbus_signal_peer(wpa_s, dev_addr,
  3090. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3091. "DeviceFound");
  3092. }
  3093. /**
  3094. * wpas_dbus_signal_peer_lost - Send a peer lost signal
  3095. * @wpa_s: %wpa_supplicant network interface data
  3096. * @dev_addr: Peer P2P Device Address
  3097. *
  3098. * Notify listeners about lost a p2p peer device
  3099. */
  3100. void wpas_dbus_signal_peer_device_lost(struct wpa_supplicant *wpa_s,
  3101. const u8 *dev_addr)
  3102. {
  3103. wpas_dbus_signal_peer(wpa_s, dev_addr,
  3104. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3105. "DeviceLost");
  3106. }
  3107. /**
  3108. * wpas_dbus_register_peer - Register a discovered peer object with dbus
  3109. * @wpa_s: wpa_supplicant interface structure
  3110. * @dev_addr: P2P Device Address of the peer
  3111. * Returns: 0 on success, -1 on failure
  3112. *
  3113. * Registers network representing object with dbus
  3114. */
  3115. int wpas_dbus_register_peer(struct wpa_supplicant *wpa_s, const u8 *dev_addr)
  3116. {
  3117. struct wpas_dbus_priv *ctrl_iface;
  3118. struct wpa_dbus_object_desc *obj_desc;
  3119. struct peer_handler_args *arg;
  3120. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  3121. /* Do nothing if the control interface is not turned on */
  3122. if (wpa_s == NULL || wpa_s->global == NULL)
  3123. return 0;
  3124. ctrl_iface = wpa_s->global->dbus;
  3125. if (ctrl_iface == NULL)
  3126. return 0;
  3127. wpa_s = wpa_s->parent->parent;
  3128. if (!wpa_s->dbus_new_path)
  3129. return 0;
  3130. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  3131. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  3132. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  3133. wpa_printf(MSG_INFO, "dbus: Register peer object '%s'",
  3134. peer_obj_path);
  3135. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  3136. if (!obj_desc) {
  3137. wpa_printf(MSG_ERROR,
  3138. "Not enough memory to create object description");
  3139. goto err;
  3140. }
  3141. /* allocate memory for handlers arguments */
  3142. arg = os_zalloc(sizeof(struct peer_handler_args));
  3143. if (!arg) {
  3144. wpa_printf(MSG_ERROR,
  3145. "Not enough memory to create arguments for method");
  3146. goto err;
  3147. }
  3148. arg->wpa_s = wpa_s;
  3149. os_memcpy(arg->p2p_device_addr, dev_addr, ETH_ALEN);
  3150. wpas_dbus_register(obj_desc, arg, wpa_dbus_free,
  3151. NULL,
  3152. wpas_dbus_p2p_peer_properties,
  3153. wpas_dbus_p2p_peer_signals);
  3154. if (wpa_dbus_register_object_per_iface(ctrl_iface, peer_obj_path,
  3155. wpa_s->ifname, obj_desc))
  3156. goto err;
  3157. return 0;
  3158. err:
  3159. free_dbus_object_desc(obj_desc);
  3160. return -1;
  3161. }
  3162. /**
  3163. * wpas_dbus_unregister_peer - Unregister a peer object with dbus
  3164. * @wpa_s: wpa_supplicant interface structure
  3165. * @dev_addr: p2p device addr
  3166. * Returns: 0 on success, -1 on failure
  3167. *
  3168. * Registers network representing object with dbus
  3169. */
  3170. int wpas_dbus_unregister_peer(struct wpa_supplicant *wpa_s,
  3171. const u8 *dev_addr)
  3172. {
  3173. struct wpas_dbus_priv *ctrl_iface;
  3174. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  3175. int ret;
  3176. /* Do nothing if the control interface is not turned on */
  3177. if (wpa_s == NULL || wpa_s->global == NULL)
  3178. return 0;
  3179. wpa_s = wpa_s->parent->parent;
  3180. if (!wpa_s->dbus_new_path)
  3181. return 0;
  3182. ctrl_iface = wpa_s->global->dbus;
  3183. if (ctrl_iface == NULL)
  3184. return 0;
  3185. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  3186. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  3187. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  3188. wpa_printf(MSG_INFO, "dbus: Unregister peer object '%s'",
  3189. peer_obj_path);
  3190. ret = wpa_dbus_unregister_object_per_iface(ctrl_iface, peer_obj_path);
  3191. return ret;
  3192. }
  3193. /**
  3194. * wpas_dbus_signal_p2p_find_stopped - Send P2P Find stopped signal
  3195. * @wpa_s: %wpa_supplicant network interface data
  3196. *
  3197. * Notify listeners about P2P Find stopped
  3198. */
  3199. void wpas_dbus_signal_p2p_find_stopped(struct wpa_supplicant *wpa_s)
  3200. {
  3201. struct wpas_dbus_priv *iface;
  3202. DBusMessage *msg;
  3203. iface = wpa_s->global->dbus;
  3204. /* Do nothing if the control interface is not turned on */
  3205. if (iface == NULL || !wpa_s->dbus_new_path)
  3206. return;
  3207. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  3208. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  3209. "FindStopped");
  3210. if (msg == NULL)
  3211. return;
  3212. dbus_connection_send(iface->con, msg, NULL);
  3213. dbus_message_unref(msg);
  3214. }
  3215. /**
  3216. * wpas_dbus_signal_peer_groups_changed - Send peer group change property signal
  3217. * @wpa_s: %wpa_supplicant network interface data
  3218. * @dev_addr: P2P Device Address
  3219. *
  3220. * Notify listeners about peer Groups property changes.
  3221. */
  3222. void wpas_dbus_signal_peer_groups_changed(struct wpa_supplicant *wpa_s,
  3223. const u8 *dev_addr)
  3224. {
  3225. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  3226. if (wpa_s->p2p_mgmt)
  3227. wpa_s = wpa_s->parent;
  3228. if (!wpa_s->dbus_new_path)
  3229. return;
  3230. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  3231. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  3232. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  3233. wpa_dbus_mark_property_changed(wpa_s->global->dbus, peer_obj_path,
  3234. WPAS_DBUS_NEW_IFACE_P2P_PEER, "Groups");
  3235. }
  3236. static const struct wpa_dbus_property_desc wpas_dbus_p2p_group_properties[] = {
  3237. { "Members", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ao",
  3238. wpas_dbus_getter_p2p_group_members,
  3239. NULL
  3240. },
  3241. { "Group", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "o",
  3242. wpas_dbus_getter_p2p_group,
  3243. NULL
  3244. },
  3245. { "Role", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "s",
  3246. wpas_dbus_getter_p2p_role,
  3247. NULL
  3248. },
  3249. { "SSID", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ay",
  3250. wpas_dbus_getter_p2p_group_ssid,
  3251. NULL
  3252. },
  3253. { "BSSID", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ay",
  3254. wpas_dbus_getter_p2p_group_bssid,
  3255. NULL
  3256. },
  3257. { "Frequency", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "q",
  3258. wpas_dbus_getter_p2p_group_frequency,
  3259. NULL
  3260. },
  3261. { "Passphrase", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "s",
  3262. wpas_dbus_getter_p2p_group_passphrase,
  3263. NULL
  3264. },
  3265. { "PSK", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ay",
  3266. wpas_dbus_getter_p2p_group_psk,
  3267. NULL
  3268. },
  3269. { "WPSVendorExtensions", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "aay",
  3270. wpas_dbus_getter_p2p_group_vendor_ext,
  3271. wpas_dbus_setter_p2p_group_vendor_ext
  3272. },
  3273. { NULL, NULL, NULL, NULL, NULL }
  3274. };
  3275. static const struct wpa_dbus_signal_desc wpas_dbus_p2p_group_signals[] = {
  3276. { "PeerJoined", WPAS_DBUS_NEW_IFACE_P2P_GROUP,
  3277. {
  3278. { "peer", "o", ARG_OUT },
  3279. END_ARGS
  3280. }
  3281. },
  3282. { "PeerDisconnected", WPAS_DBUS_NEW_IFACE_P2P_GROUP,
  3283. {
  3284. { "peer", "o", ARG_OUT },
  3285. END_ARGS
  3286. }
  3287. },
  3288. { NULL, NULL, { END_ARGS } }
  3289. };
  3290. /**
  3291. * wpas_dbus_register_p2p_group - Register a p2p group object with dbus
  3292. * @wpa_s: wpa_supplicant interface structure
  3293. * @ssid: SSID struct
  3294. * Returns: 0 on success, -1 on failure
  3295. *
  3296. * Registers p2p group representing object with dbus
  3297. */
  3298. void wpas_dbus_register_p2p_group(struct wpa_supplicant *wpa_s,
  3299. struct wpa_ssid *ssid)
  3300. {
  3301. struct wpas_dbus_priv *ctrl_iface;
  3302. struct wpa_dbus_object_desc *obj_desc;
  3303. char group_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  3304. /* Do nothing if the control interface is not turned on */
  3305. if (wpa_s == NULL || wpa_s->global == NULL)
  3306. return;
  3307. ctrl_iface = wpa_s->global->dbus;
  3308. if (ctrl_iface == NULL)
  3309. return;
  3310. if (wpa_s->dbus_groupobj_path) {
  3311. wpa_printf(MSG_INFO, "%s: Group object '%s' already exists",
  3312. __func__, wpa_s->dbus_groupobj_path);
  3313. return;
  3314. }
  3315. if (wpas_dbus_get_group_obj_path(wpa_s, ssid, group_obj_path) < 0)
  3316. return;
  3317. wpa_s->dbus_groupobj_path = os_strdup(group_obj_path);
  3318. if (wpa_s->dbus_groupobj_path == NULL)
  3319. return;
  3320. wpa_printf(MSG_INFO, "dbus: Register group object '%s'",
  3321. group_obj_path);
  3322. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  3323. if (!obj_desc) {
  3324. wpa_printf(MSG_ERROR,
  3325. "Not enough memory to create object description");
  3326. goto err;
  3327. }
  3328. wpas_dbus_register(obj_desc, wpa_s, NULL, NULL,
  3329. wpas_dbus_p2p_group_properties,
  3330. wpas_dbus_p2p_group_signals);
  3331. if (wpa_dbus_register_object_per_iface(ctrl_iface, group_obj_path,
  3332. wpa_s->ifname, obj_desc))
  3333. goto err;
  3334. return;
  3335. err:
  3336. if (wpa_s->dbus_groupobj_path) {
  3337. os_free(wpa_s->dbus_groupobj_path);
  3338. wpa_s->dbus_groupobj_path = NULL;
  3339. }
  3340. free_dbus_object_desc(obj_desc);
  3341. }
  3342. /**
  3343. * wpas_dbus_unregister_p2p_group - Unregister a p2p group object from dbus
  3344. * @wpa_s: wpa_supplicant interface structure
  3345. * @ssid: network name of the p2p group started
  3346. */
  3347. void wpas_dbus_unregister_p2p_group(struct wpa_supplicant *wpa_s,
  3348. const struct wpa_ssid *ssid)
  3349. {
  3350. struct wpas_dbus_priv *ctrl_iface;
  3351. /* Do nothing if the control interface is not turned on */
  3352. if (wpa_s == NULL || wpa_s->global == NULL)
  3353. return;
  3354. if (wpa_s->p2p_mgmt)
  3355. wpa_s = wpa_s->parent;
  3356. ctrl_iface = wpa_s->global->dbus;
  3357. if (ctrl_iface == NULL)
  3358. return;
  3359. if (!wpa_s->dbus_groupobj_path) {
  3360. wpa_printf(MSG_DEBUG,
  3361. "%s: Group object '%s' already unregistered",
  3362. __func__, wpa_s->dbus_groupobj_path);
  3363. return;
  3364. }
  3365. peer_groups_changed(wpa_s);
  3366. wpa_printf(MSG_DEBUG, "dbus: Unregister group object '%s'",
  3367. wpa_s->dbus_groupobj_path);
  3368. wpa_dbus_unregister_object_per_iface(ctrl_iface,
  3369. wpa_s->dbus_groupobj_path);
  3370. os_free(wpa_s->dbus_groupobj_path);
  3371. wpa_s->dbus_groupobj_path = NULL;
  3372. }
  3373. static const struct wpa_dbus_property_desc
  3374. wpas_dbus_persistent_group_properties[] = {
  3375. { "Properties", WPAS_DBUS_NEW_IFACE_PERSISTENT_GROUP, "a{sv}",
  3376. wpas_dbus_getter_persistent_group_properties,
  3377. wpas_dbus_setter_persistent_group_properties
  3378. },
  3379. { NULL, NULL, NULL, NULL, NULL }
  3380. };
  3381. /* No signals intended for persistent group objects */
  3382. /**
  3383. * wpas_dbus_register_persistent_group - Register a configured(saved)
  3384. * persistent group with dbus
  3385. * @wpa_s: wpa_supplicant interface structure
  3386. * @ssid: persistent group (still represented as a network within wpa)
  3387. * configuration data
  3388. * Returns: 0 on success, -1 on failure
  3389. *
  3390. * Registers a persistent group representing object with dbus.
  3391. */
  3392. int wpas_dbus_register_persistent_group(struct wpa_supplicant *wpa_s,
  3393. struct wpa_ssid *ssid)
  3394. {
  3395. struct wpas_dbus_priv *ctrl_iface;
  3396. struct wpa_dbus_object_desc *obj_desc;
  3397. struct network_handler_args *arg;
  3398. char pgrp_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  3399. /* Do nothing if the control interface is not turned on */
  3400. if (wpa_s == NULL || wpa_s->global == NULL)
  3401. return 0;
  3402. wpa_s = wpa_s->parent->parent;
  3403. if (!wpa_s->dbus_new_path)
  3404. return 0;
  3405. /* Make sure ssid is a persistent group */
  3406. if (ssid->disabled != 2 && !ssid->p2p_persistent_group)
  3407. return -1; /* should we return w/o complaining? */
  3408. if (wpa_s->p2p_mgmt)
  3409. wpa_s = wpa_s->parent;
  3410. ctrl_iface = wpa_s->global->dbus;
  3411. if (ctrl_iface == NULL)
  3412. return 0;
  3413. /*
  3414. * Intentionally not coming up with different numbering scheme
  3415. * for persistent groups.
  3416. */
  3417. os_snprintf(pgrp_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  3418. "%s/" WPAS_DBUS_NEW_PERSISTENT_GROUPS_PART "/%u",
  3419. wpa_s->dbus_new_path, ssid->id);
  3420. wpa_printf(MSG_DEBUG, "dbus: Register persistent group object '%s'",
  3421. pgrp_obj_path);
  3422. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  3423. if (!obj_desc) {
  3424. wpa_printf(MSG_ERROR,
  3425. "dbus: Not enough memory to create object description");
  3426. goto err;
  3427. }
  3428. /*
  3429. * Reusing the same context structure as that for networks
  3430. * since these are represented using same data structure.
  3431. */
  3432. /* allocate memory for handlers arguments */
  3433. arg = os_zalloc(sizeof(struct network_handler_args));
  3434. if (!arg) {
  3435. wpa_printf(MSG_ERROR,
  3436. "dbus: Not enough memory to create arguments for method");
  3437. goto err;
  3438. }
  3439. arg->wpa_s = wpa_s;
  3440. arg->ssid = ssid;
  3441. wpas_dbus_register(obj_desc, arg, wpa_dbus_free, NULL,
  3442. wpas_dbus_persistent_group_properties,
  3443. NULL);
  3444. if (wpa_dbus_register_object_per_iface(ctrl_iface, pgrp_obj_path,
  3445. wpa_s->ifname, obj_desc))
  3446. goto err;
  3447. wpas_dbus_signal_persistent_group_added(wpa_s, ssid->id);
  3448. return 0;
  3449. err:
  3450. free_dbus_object_desc(obj_desc);
  3451. return -1;
  3452. }
  3453. /**
  3454. * wpas_dbus_unregister_persistent_group - Unregister a persistent_group
  3455. * from dbus
  3456. * @wpa_s: wpa_supplicant interface structure
  3457. * @nid: network id
  3458. * Returns: 0 on success, -1 on failure
  3459. *
  3460. * Unregisters persistent group representing object from dbus
  3461. *
  3462. * NOTE: There is a slight issue with the semantics here. While the
  3463. * implementation simply means the persistent group is unloaded from memory,
  3464. * it should not get interpreted as the group is actually being erased/removed
  3465. * from persistent storage as well.
  3466. */
  3467. int wpas_dbus_unregister_persistent_group(struct wpa_supplicant *wpa_s,
  3468. int nid)
  3469. {
  3470. struct wpas_dbus_priv *ctrl_iface;
  3471. char pgrp_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  3472. int ret;
  3473. /* Do nothing if the control interface is not turned on */
  3474. if (wpa_s == NULL || wpa_s->global == NULL)
  3475. return 0;
  3476. wpa_s = wpa_s->parent->parent;
  3477. ctrl_iface = wpa_s->global->dbus;
  3478. if (ctrl_iface == NULL || !wpa_s->dbus_new_path)
  3479. return 0;
  3480. os_snprintf(pgrp_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  3481. "%s/" WPAS_DBUS_NEW_PERSISTENT_GROUPS_PART "/%u",
  3482. wpa_s->dbus_new_path, nid);
  3483. wpa_printf(MSG_DEBUG, "dbus: Unregister persistent group object '%s'",
  3484. pgrp_obj_path);
  3485. ret = wpa_dbus_unregister_object_per_iface(ctrl_iface, pgrp_obj_path);
  3486. if (!ret)
  3487. wpas_dbus_signal_persistent_group_removed(wpa_s, nid);
  3488. return ret;
  3489. }
  3490. #endif /* CONFIG_P2P */