dbus_new.c 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702
  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. #ifdef CONFIG_AP /* until needed by something else */
  26. /*
  27. * NameOwnerChanged handling
  28. *
  29. * Some services we provide allow an application to register for
  30. * a signal that it needs. While it can also unregister, we must
  31. * be prepared for the case where the application simply crashes
  32. * and thus doesn't clean up properly. The way to handle this in
  33. * DBus is to register for the NameOwnerChanged signal which will
  34. * signal an owner change to NULL if the peer closes the socket
  35. * for whatever reason.
  36. *
  37. * Handle this signal via a filter function whenever necessary.
  38. * The code below also handles refcounting in case in the future
  39. * there will be multiple instances of this subscription scheme.
  40. */
  41. static const char wpas_dbus_noc_filter_str[] =
  42. "interface=org.freedesktop.DBus,member=NameOwnerChanged";
  43. static DBusHandlerResult noc_filter(DBusConnection *conn,
  44. DBusMessage *message, void *data)
  45. {
  46. struct wpas_dbus_priv *priv = data;
  47. if (dbus_message_get_type(message) != DBUS_MESSAGE_TYPE_SIGNAL)
  48. return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
  49. if (dbus_message_is_signal(message, DBUS_INTERFACE_DBUS,
  50. "NameOwnerChanged")) {
  51. const char *name;
  52. const char *prev_owner;
  53. const char *new_owner;
  54. DBusError derr;
  55. struct wpa_supplicant *wpa_s;
  56. dbus_error_init(&derr);
  57. if (!dbus_message_get_args(message, &derr,
  58. DBUS_TYPE_STRING, &name,
  59. DBUS_TYPE_STRING, &prev_owner,
  60. DBUS_TYPE_STRING, &new_owner,
  61. DBUS_TYPE_INVALID)) {
  62. /* Ignore this error */
  63. dbus_error_free(&derr);
  64. return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
  65. }
  66. for (wpa_s = priv->global->ifaces; wpa_s; wpa_s = wpa_s->next)
  67. {
  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)
  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. goto err;
  126. if (properties) {
  127. if (!wpa_dbus_get_object_properties(
  128. iface, wpa_s->dbus_new_path,
  129. WPAS_DBUS_NEW_IFACE_INTERFACE, &iter))
  130. goto err;
  131. }
  132. dbus_connection_send(iface->con, msg, NULL);
  133. dbus_message_unref(msg);
  134. return;
  135. err:
  136. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  137. dbus_message_unref(msg);
  138. }
  139. /**
  140. * wpas_dbus_signal_interface_added - Send a interface created signal
  141. * @wpa_s: %wpa_supplicant network interface data
  142. *
  143. * Notify listeners about creating new interface
  144. */
  145. static void wpas_dbus_signal_interface_added(struct wpa_supplicant *wpa_s)
  146. {
  147. wpas_dbus_signal_interface(wpa_s, "InterfaceAdded", TRUE);
  148. }
  149. /**
  150. * wpas_dbus_signal_interface_removed - Send a interface removed signal
  151. * @wpa_s: %wpa_supplicant network interface data
  152. *
  153. * Notify listeners about removing interface
  154. */
  155. static void wpas_dbus_signal_interface_removed(struct wpa_supplicant *wpa_s)
  156. {
  157. wpas_dbus_signal_interface(wpa_s, "InterfaceRemoved", FALSE);
  158. }
  159. /**
  160. * wpas_dbus_signal_scan_done - send scan done signal
  161. * @wpa_s: %wpa_supplicant network interface data
  162. * @success: indicates if scanning succeed or failed
  163. *
  164. * Notify listeners about finishing a scan
  165. */
  166. void wpas_dbus_signal_scan_done(struct wpa_supplicant *wpa_s, int success)
  167. {
  168. struct wpas_dbus_priv *iface;
  169. DBusMessage *msg;
  170. dbus_bool_t succ;
  171. iface = wpa_s->global->dbus;
  172. /* Do nothing if the control interface is not turned on */
  173. if (iface == NULL)
  174. return;
  175. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  176. WPAS_DBUS_NEW_IFACE_INTERFACE,
  177. "ScanDone");
  178. if (msg == NULL)
  179. return;
  180. succ = success ? TRUE : FALSE;
  181. if (dbus_message_append_args(msg, DBUS_TYPE_BOOLEAN, &succ,
  182. DBUS_TYPE_INVALID))
  183. dbus_connection_send(iface->con, msg, NULL);
  184. else
  185. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  186. dbus_message_unref(msg);
  187. }
  188. /**
  189. * wpas_dbus_signal_blob - Send a BSS related event signal
  190. * @wpa_s: %wpa_supplicant network interface data
  191. * @bss_obj_path: BSS object path
  192. * @sig_name: signal name - BSSAdded or BSSRemoved
  193. * @properties: Whether to add second argument with object properties
  194. *
  195. * Notify listeners about event related with BSS
  196. */
  197. static void wpas_dbus_signal_bss(struct wpa_supplicant *wpa_s,
  198. const char *bss_obj_path,
  199. const char *sig_name, int properties)
  200. {
  201. struct wpas_dbus_priv *iface;
  202. DBusMessage *msg;
  203. DBusMessageIter iter;
  204. iface = wpa_s->global->dbus;
  205. /* Do nothing if the control interface is not turned on */
  206. if (iface == NULL)
  207. return;
  208. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  209. WPAS_DBUS_NEW_IFACE_INTERFACE,
  210. sig_name);
  211. if (msg == NULL)
  212. return;
  213. dbus_message_iter_init_append(msg, &iter);
  214. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  215. &bss_obj_path))
  216. goto err;
  217. if (properties) {
  218. if (!wpa_dbus_get_object_properties(iface, bss_obj_path,
  219. WPAS_DBUS_NEW_IFACE_BSS,
  220. &iter))
  221. goto err;
  222. }
  223. dbus_connection_send(iface->con, msg, NULL);
  224. dbus_message_unref(msg);
  225. return;
  226. err:
  227. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  228. dbus_message_unref(msg);
  229. }
  230. /**
  231. * wpas_dbus_signal_bss_added - Send a BSS added signal
  232. * @wpa_s: %wpa_supplicant network interface data
  233. * @bss_obj_path: new BSS object path
  234. *
  235. * Notify listeners about adding new BSS
  236. */
  237. static void wpas_dbus_signal_bss_added(struct wpa_supplicant *wpa_s,
  238. const char *bss_obj_path)
  239. {
  240. wpas_dbus_signal_bss(wpa_s, bss_obj_path, "BSSAdded", TRUE);
  241. }
  242. /**
  243. * wpas_dbus_signal_bss_removed - Send a BSS removed signal
  244. * @wpa_s: %wpa_supplicant network interface data
  245. * @bss_obj_path: BSS object path
  246. *
  247. * Notify listeners about removing BSS
  248. */
  249. static void wpas_dbus_signal_bss_removed(struct wpa_supplicant *wpa_s,
  250. const char *bss_obj_path)
  251. {
  252. wpas_dbus_signal_bss(wpa_s, bss_obj_path, "BSSRemoved", FALSE);
  253. }
  254. /**
  255. * wpas_dbus_signal_blob - Send a blob related event signal
  256. * @wpa_s: %wpa_supplicant network interface data
  257. * @name: blob name
  258. * @sig_name: signal name - BlobAdded or BlobRemoved
  259. *
  260. * Notify listeners about event related with blob
  261. */
  262. static void wpas_dbus_signal_blob(struct wpa_supplicant *wpa_s,
  263. const char *name, const char *sig_name)
  264. {
  265. struct wpas_dbus_priv *iface;
  266. DBusMessage *msg;
  267. iface = wpa_s->global->dbus;
  268. /* Do nothing if the control interface is not turned on */
  269. if (iface == NULL)
  270. return;
  271. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  272. WPAS_DBUS_NEW_IFACE_INTERFACE,
  273. sig_name);
  274. if (msg == NULL)
  275. return;
  276. if (dbus_message_append_args(msg, DBUS_TYPE_STRING, &name,
  277. DBUS_TYPE_INVALID))
  278. dbus_connection_send(iface->con, msg, NULL);
  279. else
  280. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  281. dbus_message_unref(msg);
  282. }
  283. /**
  284. * wpas_dbus_signal_blob_added - Send a blob added signal
  285. * @wpa_s: %wpa_supplicant network interface data
  286. * @name: blob name
  287. *
  288. * Notify listeners about adding a new blob
  289. */
  290. void wpas_dbus_signal_blob_added(struct wpa_supplicant *wpa_s,
  291. const char *name)
  292. {
  293. wpas_dbus_signal_blob(wpa_s, name, "BlobAdded");
  294. }
  295. /**
  296. * wpas_dbus_signal_blob_removed - Send a blob removed signal
  297. * @wpa_s: %wpa_supplicant network interface data
  298. * @name: blob name
  299. *
  300. * Notify listeners about removing blob
  301. */
  302. void wpas_dbus_signal_blob_removed(struct wpa_supplicant *wpa_s,
  303. const char *name)
  304. {
  305. wpas_dbus_signal_blob(wpa_s, name, "BlobRemoved");
  306. }
  307. /**
  308. * wpas_dbus_signal_network - Send a network related event signal
  309. * @wpa_s: %wpa_supplicant network interface data
  310. * @id: new network id
  311. * @sig_name: signal name - NetworkAdded, NetworkRemoved or NetworkSelected
  312. * @properties: determines if add second argument with object properties
  313. *
  314. * Notify listeners about event related with configured network
  315. */
  316. static void wpas_dbus_signal_network(struct wpa_supplicant *wpa_s,
  317. int id, const char *sig_name,
  318. int properties)
  319. {
  320. struct wpas_dbus_priv *iface;
  321. DBusMessage *msg;
  322. DBusMessageIter iter;
  323. char net_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  324. iface = wpa_s->global->dbus;
  325. /* Do nothing if the control interface is not turned on */
  326. if (iface == NULL)
  327. return;
  328. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  329. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u",
  330. wpa_s->dbus_new_path, id);
  331. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  332. WPAS_DBUS_NEW_IFACE_INTERFACE,
  333. sig_name);
  334. if (msg == NULL)
  335. return;
  336. dbus_message_iter_init_append(msg, &iter);
  337. path = net_obj_path;
  338. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  339. &path))
  340. goto err;
  341. if (properties) {
  342. if (!wpa_dbus_get_object_properties(
  343. iface, net_obj_path, WPAS_DBUS_NEW_IFACE_NETWORK,
  344. &iter))
  345. goto err;
  346. }
  347. dbus_connection_send(iface->con, msg, NULL);
  348. dbus_message_unref(msg);
  349. return;
  350. err:
  351. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  352. dbus_message_unref(msg);
  353. }
  354. /**
  355. * wpas_dbus_signal_network_added - Send a network added signal
  356. * @wpa_s: %wpa_supplicant network interface data
  357. * @id: new network id
  358. *
  359. * Notify listeners about adding new network
  360. */
  361. static void wpas_dbus_signal_network_added(struct wpa_supplicant *wpa_s,
  362. int id)
  363. {
  364. wpas_dbus_signal_network(wpa_s, id, "NetworkAdded", TRUE);
  365. }
  366. /**
  367. * wpas_dbus_signal_network_removed - Send a network removed signal
  368. * @wpa_s: %wpa_supplicant network interface data
  369. * @id: network id
  370. *
  371. * Notify listeners about removing a network
  372. */
  373. static void wpas_dbus_signal_network_removed(struct wpa_supplicant *wpa_s,
  374. int id)
  375. {
  376. wpas_dbus_signal_network(wpa_s, id, "NetworkRemoved", FALSE);
  377. }
  378. /**
  379. * wpas_dbus_signal_network_selected - Send a network selected signal
  380. * @wpa_s: %wpa_supplicant network interface data
  381. * @id: network id
  382. *
  383. * Notify listeners about selecting a network
  384. */
  385. void wpas_dbus_signal_network_selected(struct wpa_supplicant *wpa_s, int id)
  386. {
  387. wpas_dbus_signal_network(wpa_s, id, "NetworkSelected", FALSE);
  388. }
  389. /**
  390. * wpas_dbus_signal_network_request - Indicate that additional information
  391. * (EAP password, etc.) is required to complete the association to this SSID
  392. * @wpa_s: %wpa_supplicant network interface data
  393. * @rtype: The specific additional information required
  394. * @default_text: Optional description of required information
  395. *
  396. * Request additional information or passwords to complete an association
  397. * request.
  398. */
  399. void wpas_dbus_signal_network_request(struct wpa_supplicant *wpa_s,
  400. struct wpa_ssid *ssid,
  401. enum wpa_ctrl_req_type rtype,
  402. const char *default_txt)
  403. {
  404. struct wpas_dbus_priv *iface;
  405. DBusMessage *msg;
  406. DBusMessageIter iter;
  407. char net_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  408. const char *field, *txt = NULL, *net_ptr;
  409. iface = wpa_s->global->dbus;
  410. /* Do nothing if the control interface is not turned on */
  411. if (iface == NULL)
  412. return;
  413. field = wpa_supplicant_ctrl_req_to_string(rtype, default_txt, &txt);
  414. if (field == NULL)
  415. return;
  416. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  417. WPAS_DBUS_NEW_IFACE_INTERFACE,
  418. "NetworkRequest");
  419. if (msg == NULL)
  420. return;
  421. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  422. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u",
  423. wpa_s->dbus_new_path, ssid->id);
  424. net_ptr = &net_obj_path[0];
  425. dbus_message_iter_init_append(msg, &iter);
  426. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  427. &net_ptr))
  428. goto err;
  429. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &field))
  430. goto err;
  431. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &txt))
  432. goto err;
  433. dbus_connection_send(iface->con, msg, NULL);
  434. dbus_message_unref(msg);
  435. return;
  436. err:
  437. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  438. dbus_message_unref(msg);
  439. }
  440. /**
  441. * wpas_dbus_signal_network_enabled_changed - Signals Enabled property changes
  442. * @wpa_s: %wpa_supplicant network interface data
  443. * @ssid: configured network which Enabled property has changed
  444. *
  445. * Sends PropertyChanged signals containing new value of Enabled property
  446. * for specified network
  447. */
  448. void wpas_dbus_signal_network_enabled_changed(struct wpa_supplicant *wpa_s,
  449. struct wpa_ssid *ssid)
  450. {
  451. char path[WPAS_DBUS_OBJECT_PATH_MAX];
  452. os_snprintf(path, WPAS_DBUS_OBJECT_PATH_MAX,
  453. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%d",
  454. wpa_s->dbus_new_path, ssid->id);
  455. wpa_dbus_mark_property_changed(wpa_s->global->dbus, path,
  456. WPAS_DBUS_NEW_IFACE_NETWORK, "Enabled");
  457. }
  458. #ifdef CONFIG_WPS
  459. /**
  460. * wpas_dbus_signal_wps_event_success - Signals Success WPS event
  461. * @wpa_s: %wpa_supplicant network interface data
  462. *
  463. * Sends Event dbus signal with name "success" and empty dict as arguments
  464. */
  465. void wpas_dbus_signal_wps_event_success(struct wpa_supplicant *wpa_s)
  466. {
  467. DBusMessage *msg;
  468. DBusMessageIter iter, dict_iter;
  469. struct wpas_dbus_priv *iface;
  470. char *key = "success";
  471. iface = wpa_s->global->dbus;
  472. /* Do nothing if the control interface is not turned on */
  473. if (iface == NULL)
  474. return;
  475. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  476. WPAS_DBUS_NEW_IFACE_WPS, "Event");
  477. if (msg == NULL)
  478. return;
  479. dbus_message_iter_init_append(msg, &iter);
  480. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &key) ||
  481. !wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  482. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  483. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  484. else
  485. dbus_connection_send(iface->con, msg, NULL);
  486. dbus_message_unref(msg);
  487. }
  488. /**
  489. * wpas_dbus_signal_wps_event_fail - Signals Fail WPS event
  490. * @wpa_s: %wpa_supplicant network interface data
  491. *
  492. * Sends Event dbus signal with name "fail" and dictionary containing
  493. * "msg field with fail message number (int32) as arguments
  494. */
  495. void wpas_dbus_signal_wps_event_fail(struct wpa_supplicant *wpa_s,
  496. struct wps_event_fail *fail)
  497. {
  498. DBusMessage *msg;
  499. DBusMessageIter iter, dict_iter;
  500. struct wpas_dbus_priv *iface;
  501. char *key = "fail";
  502. iface = wpa_s->global->dbus;
  503. /* Do nothing if the control interface is not turned on */
  504. if (iface == NULL)
  505. return;
  506. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  507. WPAS_DBUS_NEW_IFACE_WPS, "Event");
  508. if (msg == NULL)
  509. return;
  510. dbus_message_iter_init_append(msg, &iter);
  511. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &key) ||
  512. !wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  513. !wpa_dbus_dict_append_int32(&dict_iter, "msg", fail->msg) ||
  514. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  515. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  516. else
  517. dbus_connection_send(iface->con, msg, NULL);
  518. dbus_message_unref(msg);
  519. }
  520. /**
  521. * wpas_dbus_signal_wps_event_m2d - Signals M2D WPS event
  522. * @wpa_s: %wpa_supplicant network interface data
  523. *
  524. * Sends Event dbus signal with name "m2d" and dictionary containing
  525. * fields of wps_event_m2d structure.
  526. */
  527. void wpas_dbus_signal_wps_event_m2d(struct wpa_supplicant *wpa_s,
  528. struct wps_event_m2d *m2d)
  529. {
  530. DBusMessage *msg;
  531. DBusMessageIter iter, dict_iter;
  532. struct wpas_dbus_priv *iface;
  533. char *key = "m2d";
  534. iface = wpa_s->global->dbus;
  535. /* Do nothing if the control interface is not turned on */
  536. if (iface == NULL)
  537. return;
  538. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  539. WPAS_DBUS_NEW_IFACE_WPS, "Event");
  540. if (msg == NULL)
  541. return;
  542. dbus_message_iter_init_append(msg, &iter);
  543. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &key) ||
  544. !wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  545. !wpa_dbus_dict_append_uint16(&dict_iter, "config_methods",
  546. m2d->config_methods) ||
  547. !wpa_dbus_dict_append_byte_array(&dict_iter, "manufacturer",
  548. (const char *) m2d->manufacturer,
  549. m2d->manufacturer_len) ||
  550. !wpa_dbus_dict_append_byte_array(&dict_iter, "model_name",
  551. (const char *) m2d->model_name,
  552. m2d->model_name_len) ||
  553. !wpa_dbus_dict_append_byte_array(&dict_iter, "model_number",
  554. (const char *) m2d->model_number,
  555. m2d->model_number_len) ||
  556. !wpa_dbus_dict_append_byte_array(&dict_iter, "serial_number",
  557. (const char *)
  558. m2d->serial_number,
  559. m2d->serial_number_len) ||
  560. !wpa_dbus_dict_append_byte_array(&dict_iter, "dev_name",
  561. (const char *) m2d->dev_name,
  562. m2d->dev_name_len) ||
  563. !wpa_dbus_dict_append_byte_array(&dict_iter, "primary_dev_type",
  564. (const char *)
  565. m2d->primary_dev_type, 8) ||
  566. !wpa_dbus_dict_append_uint16(&dict_iter, "config_error",
  567. m2d->config_error) ||
  568. !wpa_dbus_dict_append_uint16(&dict_iter, "dev_password_id",
  569. m2d->dev_password_id) ||
  570. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  571. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  572. else
  573. dbus_connection_send(iface->con, msg, NULL);
  574. dbus_message_unref(msg);
  575. }
  576. /**
  577. * wpas_dbus_signal_wps_cred - Signals new credentials
  578. * @wpa_s: %wpa_supplicant network interface data
  579. *
  580. * Sends signal with credentials in directory argument
  581. */
  582. void wpas_dbus_signal_wps_cred(struct wpa_supplicant *wpa_s,
  583. const struct wps_credential *cred)
  584. {
  585. DBusMessage *msg;
  586. DBusMessageIter iter, dict_iter;
  587. struct wpas_dbus_priv *iface;
  588. char *auth_type[6]; /* we have six possible authorization types */
  589. int at_num = 0;
  590. char *encr_type[4]; /* we have four possible encryption types */
  591. int et_num = 0;
  592. iface = wpa_s->global->dbus;
  593. /* Do nothing if the control interface is not turned on */
  594. if (iface == NULL)
  595. return;
  596. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  597. WPAS_DBUS_NEW_IFACE_WPS,
  598. "Credentials");
  599. if (msg == NULL)
  600. return;
  601. dbus_message_iter_init_append(msg, &iter);
  602. if (!wpa_dbus_dict_open_write(&iter, &dict_iter))
  603. goto nomem;
  604. if (cred->auth_type & WPS_AUTH_OPEN)
  605. auth_type[at_num++] = "open";
  606. if (cred->auth_type & WPS_AUTH_WPAPSK)
  607. auth_type[at_num++] = "wpa-psk";
  608. if (cred->auth_type & WPS_AUTH_SHARED)
  609. auth_type[at_num++] = "shared";
  610. if (cred->auth_type & WPS_AUTH_WPA)
  611. auth_type[at_num++] = "wpa-eap";
  612. if (cred->auth_type & WPS_AUTH_WPA2)
  613. auth_type[at_num++] = "wpa2-eap";
  614. if (cred->auth_type & WPS_AUTH_WPA2PSK)
  615. auth_type[at_num++] =
  616. "wpa2-psk";
  617. if (cred->encr_type & WPS_ENCR_NONE)
  618. encr_type[et_num++] = "none";
  619. if (cred->encr_type & WPS_ENCR_WEP)
  620. encr_type[et_num++] = "wep";
  621. if (cred->encr_type & WPS_ENCR_TKIP)
  622. encr_type[et_num++] = "tkip";
  623. if (cred->encr_type & WPS_ENCR_AES)
  624. encr_type[et_num++] = "aes";
  625. if (wpa_s->current_ssid) {
  626. if (!wpa_dbus_dict_append_byte_array(
  627. &dict_iter, "BSSID",
  628. (const char *) wpa_s->current_ssid->bssid,
  629. ETH_ALEN))
  630. goto nomem;
  631. }
  632. if (!wpa_dbus_dict_append_byte_array(&dict_iter, "SSID",
  633. (const char *) cred->ssid,
  634. cred->ssid_len) ||
  635. !wpa_dbus_dict_append_string_array(&dict_iter, "AuthType",
  636. (const char **) auth_type,
  637. at_num) ||
  638. !wpa_dbus_dict_append_string_array(&dict_iter, "EncrType",
  639. (const char **) encr_type,
  640. et_num) ||
  641. !wpa_dbus_dict_append_byte_array(&dict_iter, "Key",
  642. (const char *) cred->key,
  643. cred->key_len) ||
  644. !wpa_dbus_dict_append_uint32(&dict_iter, "KeyIndex",
  645. cred->key_idx) ||
  646. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  647. goto nomem;
  648. dbus_connection_send(iface->con, msg, NULL);
  649. nomem:
  650. dbus_message_unref(msg);
  651. }
  652. #endif /* CONFIG_WPS */
  653. void wpas_dbus_signal_certification(struct wpa_supplicant *wpa_s,
  654. int depth, const char *subject,
  655. const char *cert_hash,
  656. const struct wpabuf *cert)
  657. {
  658. struct wpas_dbus_priv *iface;
  659. DBusMessage *msg;
  660. DBusMessageIter iter, dict_iter;
  661. iface = wpa_s->global->dbus;
  662. /* Do nothing if the control interface is not turned on */
  663. if (iface == NULL)
  664. return;
  665. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  666. WPAS_DBUS_NEW_IFACE_INTERFACE,
  667. "Certification");
  668. if (msg == NULL)
  669. return;
  670. dbus_message_iter_init_append(msg, &iter);
  671. if (!wpa_dbus_dict_open_write(&iter, &dict_iter))
  672. goto nomem;
  673. if (!wpa_dbus_dict_append_uint32(&dict_iter, "depth", depth) ||
  674. !wpa_dbus_dict_append_string(&dict_iter, "subject", subject))
  675. goto nomem;
  676. if (cert_hash &&
  677. !wpa_dbus_dict_append_string(&dict_iter, "cert_hash", cert_hash))
  678. goto nomem;
  679. if (cert &&
  680. !wpa_dbus_dict_append_byte_array(&dict_iter, "cert",
  681. wpabuf_head(cert),
  682. wpabuf_len(cert)))
  683. goto nomem;
  684. if (!wpa_dbus_dict_close_write(&iter, &dict_iter))
  685. goto nomem;
  686. dbus_connection_send(iface->con, msg, NULL);
  687. nomem:
  688. dbus_message_unref(msg);
  689. }
  690. void wpas_dbus_signal_eap_status(struct wpa_supplicant *wpa_s,
  691. const char *status, const char *parameter)
  692. {
  693. struct wpas_dbus_priv *iface;
  694. DBusMessage *msg;
  695. DBusMessageIter iter;
  696. iface = wpa_s->global->dbus;
  697. /* Do nothing if the control interface is not turned on */
  698. if (iface == NULL)
  699. return;
  700. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  701. WPAS_DBUS_NEW_IFACE_INTERFACE,
  702. "EAP");
  703. if (msg == NULL)
  704. return;
  705. dbus_message_iter_init_append(msg, &iter);
  706. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &status)
  707. ||
  708. !dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING,
  709. &parameter))
  710. goto nomem;
  711. dbus_connection_send(iface->con, msg, NULL);
  712. nomem:
  713. dbus_message_unref(msg);
  714. }
  715. #ifdef CONFIG_P2P
  716. /**
  717. * wpas_dbus_signal_p2p_group_removed - Signals P2P group was removed
  718. * @wpa_s: %wpa_supplicant network interface data
  719. * @role: role of this device (client or GO)
  720. * Sends signal with i/f name and role as string arguments
  721. */
  722. void wpas_dbus_signal_p2p_group_removed(struct wpa_supplicant *wpa_s,
  723. const char *role)
  724. {
  725. DBusMessage *msg;
  726. DBusMessageIter iter;
  727. struct wpas_dbus_priv *iface = wpa_s->global->dbus;
  728. char *ifname = wpa_s->ifname;
  729. /* Do nothing if the control interface is not turned on */
  730. if (iface == NULL)
  731. return;
  732. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  733. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  734. "GroupFinished");
  735. if (msg == NULL)
  736. return;
  737. dbus_message_iter_init_append(msg, &iter);
  738. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &ifname)) {
  739. wpa_printf(MSG_ERROR, "dbus: Failed to construct GroupFinished"
  740. "signal -not enough memory for ifname ");
  741. goto err;
  742. }
  743. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &role))
  744. wpa_printf(MSG_ERROR, "dbus: Failed to construct GroupFinished"
  745. "signal -not enough memory for role ");
  746. else
  747. dbus_connection_send(iface->con, msg, NULL);
  748. err:
  749. dbus_message_unref(msg);
  750. }
  751. /**
  752. * wpas_dbus_signal_p2p_provision_discovery - Signals various PD events
  753. *
  754. * @dev_addr - who sent the request or responded to our request.
  755. * @request - Will be 1 if request, 0 for response.
  756. * @status - valid only in case of response
  757. * @config_methods - wps config methods
  758. * @generated_pin - pin to be displayed in case of WPS_CONFIG_DISPLAY method
  759. *
  760. * Sends following provision discovery related events:
  761. * ProvisionDiscoveryRequestDisplayPin
  762. * ProvisionDiscoveryResponseDisplayPin
  763. * ProvisionDiscoveryRequestEnterPin
  764. * ProvisionDiscoveryResponseEnterPin
  765. * ProvisionDiscoveryPBCRequest
  766. * ProvisionDiscoveryPBCResponse
  767. *
  768. * TODO::
  769. * ProvisionDiscoveryFailure (timeout case)
  770. */
  771. void wpas_dbus_signal_p2p_provision_discovery(struct wpa_supplicant *wpa_s,
  772. const u8 *dev_addr, int request,
  773. enum p2p_prov_disc_status status,
  774. u16 config_methods,
  775. unsigned int generated_pin)
  776. {
  777. DBusMessage *msg;
  778. DBusMessageIter iter;
  779. struct wpas_dbus_priv *iface;
  780. char *_signal;
  781. int add_pin = 0;
  782. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  783. int error_ret = 1;
  784. char pin[9], *p_pin = NULL;
  785. iface = wpa_s->global->dbus;
  786. /* Do nothing if the control interface is not turned on */
  787. if (iface == NULL)
  788. return;
  789. if (request || !status) {
  790. if (config_methods & WPS_CONFIG_DISPLAY)
  791. _signal = request ?
  792. "ProvisionDiscoveryRequestDisplayPin" :
  793. "ProvisionDiscoveryResponseEnterPin";
  794. else if (config_methods & WPS_CONFIG_KEYPAD)
  795. _signal = request ?
  796. "ProvisionDiscoveryRequestEnterPin" :
  797. "ProvisionDiscoveryResponseDisplayPin";
  798. else if (config_methods & WPS_CONFIG_PUSHBUTTON)
  799. _signal = request ? "ProvisionDiscoveryPBCRequest" :
  800. "ProvisionDiscoveryPBCResponse";
  801. else
  802. return; /* Unknown or un-supported method */
  803. } else if (!request && status)
  804. /* Explicit check for failure response */
  805. _signal = "ProvisionDiscoveryFailure";
  806. add_pin = ((request && (config_methods & WPS_CONFIG_DISPLAY)) ||
  807. (!request && !status &&
  808. (config_methods & WPS_CONFIG_KEYPAD)));
  809. if (add_pin) {
  810. os_snprintf(pin, sizeof(pin), "%08d", generated_pin);
  811. p_pin = pin;
  812. }
  813. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  814. WPAS_DBUS_NEW_IFACE_P2PDEVICE, _signal);
  815. if (msg == NULL)
  816. return;
  817. /* Check if this is a known peer */
  818. if (!p2p_peer_known(wpa_s->global->p2p, dev_addr))
  819. goto error;
  820. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  821. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
  822. COMPACT_MACSTR,
  823. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  824. path = peer_obj_path;
  825. dbus_message_iter_init_append(msg, &iter);
  826. if (!dbus_message_iter_append_basic(&iter,
  827. DBUS_TYPE_OBJECT_PATH,
  828. &path))
  829. goto error;
  830. if (!request && status)
  831. /* Attach status to ProvisionDiscoveryFailure */
  832. error_ret = !dbus_message_iter_append_basic(&iter,
  833. DBUS_TYPE_INT32,
  834. &status);
  835. else
  836. error_ret = (add_pin &&
  837. !dbus_message_iter_append_basic(&iter,
  838. DBUS_TYPE_STRING,
  839. &p_pin));
  840. error:
  841. if (!error_ret)
  842. dbus_connection_send(iface->con, msg, NULL);
  843. else
  844. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  845. dbus_message_unref(msg);
  846. }
  847. void wpas_dbus_signal_p2p_go_neg_req(struct wpa_supplicant *wpa_s,
  848. const u8 *src, u16 dev_passwd_id)
  849. {
  850. DBusMessage *msg;
  851. DBusMessageIter iter;
  852. struct wpas_dbus_priv *iface;
  853. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  854. iface = wpa_s->global->dbus;
  855. /* Do nothing if the control interface is not turned on */
  856. if (iface == NULL)
  857. return;
  858. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  859. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  860. wpa_s->dbus_new_path, MAC2STR(src));
  861. path = peer_obj_path;
  862. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  863. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  864. "GONegotiationRequest");
  865. if (msg == NULL)
  866. return;
  867. dbus_message_iter_init_append(msg, &iter);
  868. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  869. &path) ||
  870. !dbus_message_iter_append_basic(&iter, DBUS_TYPE_UINT16,
  871. &dev_passwd_id))
  872. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  873. else
  874. dbus_connection_send(iface->con, msg, NULL);
  875. dbus_message_unref(msg);
  876. }
  877. static int wpas_dbus_get_group_obj_path(struct wpa_supplicant *wpa_s,
  878. const struct wpa_ssid *ssid,
  879. char *group_obj_path)
  880. {
  881. char group_name[3];
  882. if (os_memcmp(ssid->ssid, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN))
  883. return -1;
  884. os_memcpy(group_name, ssid->ssid + P2P_WILDCARD_SSID_LEN, 2);
  885. group_name[2] = '\0';
  886. os_snprintf(group_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  887. "%s/" WPAS_DBUS_NEW_P2P_GROUPS_PART "/%s",
  888. wpa_s->dbus_new_path, group_name);
  889. return 0;
  890. }
  891. /**
  892. * wpas_dbus_signal_p2p_group_started - Signals P2P group has
  893. * started. Emitted when a group is successfully started
  894. * irrespective of the role (client/GO) of the current device
  895. *
  896. * @wpa_s: %wpa_supplicant network interface data
  897. * @ssid: SSID object
  898. * @client: this device is P2P client
  899. * @network_id: network id of the group started, use instead of ssid->id
  900. * to account for persistent groups
  901. */
  902. void wpas_dbus_signal_p2p_group_started(struct wpa_supplicant *wpa_s,
  903. const struct wpa_ssid *ssid,
  904. int client, int network_id)
  905. {
  906. DBusMessage *msg;
  907. DBusMessageIter iter, dict_iter;
  908. struct wpas_dbus_priv *iface;
  909. char group_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  910. iface = wpa_s->parent->global->dbus;
  911. /* Do nothing if the control interface is not turned on */
  912. if (iface == NULL)
  913. return;
  914. if (wpas_dbus_get_group_obj_path(wpa_s, ssid, group_obj_path) < 0)
  915. return;
  916. /* New interface has been created for this group */
  917. msg = dbus_message_new_signal(wpa_s->parent->dbus_new_path,
  918. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  919. "GroupStarted");
  920. if (msg == NULL)
  921. return;
  922. dbus_message_iter_init_append(msg, &iter);
  923. if (!wpa_dbus_dict_open_write(&iter, &dict_iter))
  924. goto nomem;
  925. /*
  926. * In case the device supports creating a separate interface the
  927. * DBus client will need to know the object path for the interface
  928. * object this group was created on, so include it here.
  929. */
  930. if (!wpa_dbus_dict_append_object_path(&dict_iter,
  931. "interface_object",
  932. wpa_s->dbus_new_path))
  933. goto nomem;
  934. if (!wpa_dbus_dict_append_string(&dict_iter, "role",
  935. client ? "client" : "GO"))
  936. goto nomem;
  937. if (!wpa_dbus_dict_append_object_path(&dict_iter, "group_object",
  938. group_obj_path) ||
  939. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  940. goto nomem;
  941. dbus_connection_send(iface->con, msg, NULL);
  942. nomem:
  943. dbus_message_unref(msg);
  944. }
  945. /**
  946. *
  947. * Method to emit GONeogtiation Success or Failure signals based
  948. * on status.
  949. * @status: Status of the GO neg request. 0 for success, other for errors.
  950. */
  951. void wpas_dbus_signal_p2p_go_neg_resp(struct wpa_supplicant *wpa_s,
  952. struct p2p_go_neg_results *res)
  953. {
  954. DBusMessage *msg;
  955. DBusMessageIter iter, dict_iter;
  956. DBusMessageIter iter_dict_entry, iter_dict_val, iter_dict_array;
  957. struct wpas_dbus_priv *iface;
  958. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  959. dbus_int32_t freqs[P2P_MAX_CHANNELS];
  960. dbus_int32_t *f_array = freqs;
  961. iface = wpa_s->global->dbus;
  962. os_memset(freqs, 0, sizeof(freqs));
  963. /* Do nothing if the control interface is not turned on */
  964. if (iface == NULL)
  965. return;
  966. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  967. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  968. wpa_s->dbus_new_path, MAC2STR(res->peer_device_addr));
  969. path = peer_obj_path;
  970. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  971. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  972. res->status ? "GONegotiationFailure" :
  973. "GONegotiationSuccess");
  974. if (msg == NULL)
  975. return;
  976. dbus_message_iter_init_append(msg, &iter);
  977. if (!wpa_dbus_dict_open_write(&iter, &dict_iter))
  978. goto err;
  979. if (!wpa_dbus_dict_append_object_path(&dict_iter, "peer_object",
  980. path) ||
  981. !wpa_dbus_dict_append_int32(&dict_iter, "status", res->status))
  982. goto err;
  983. if (!res->status) {
  984. int i = 0;
  985. int freq_list_num = 0;
  986. if (res->role_go) {
  987. if (!wpa_dbus_dict_append_byte_array(
  988. &dict_iter, "passphrase",
  989. (const char *) res->passphrase,
  990. sizeof(res->passphrase)))
  991. goto err;
  992. }
  993. if (!wpa_dbus_dict_append_string(&dict_iter, "role_go",
  994. res->role_go ? "GO" :
  995. "client") ||
  996. !wpa_dbus_dict_append_int32(&dict_iter, "frequency",
  997. res->freq) ||
  998. !wpa_dbus_dict_append_byte_array(&dict_iter, "ssid",
  999. (const char *) res->ssid,
  1000. res->ssid_len) ||
  1001. !wpa_dbus_dict_append_byte_array(&dict_iter,
  1002. "peer_device_addr",
  1003. (const char *)
  1004. res->peer_device_addr,
  1005. ETH_ALEN) ||
  1006. !wpa_dbus_dict_append_byte_array(&dict_iter,
  1007. "peer_interface_addr",
  1008. (const char *)
  1009. res->peer_interface_addr,
  1010. ETH_ALEN) ||
  1011. !wpa_dbus_dict_append_string(&dict_iter, "wps_method",
  1012. p2p_wps_method_text(
  1013. res->wps_method)))
  1014. goto err;
  1015. for (i = 0; i < P2P_MAX_CHANNELS; i++) {
  1016. if (res->freq_list[i]) {
  1017. freqs[i] = res->freq_list[i];
  1018. freq_list_num++;
  1019. }
  1020. }
  1021. if (!wpa_dbus_dict_begin_array(&dict_iter,
  1022. "frequency_list",
  1023. DBUS_TYPE_INT32_AS_STRING,
  1024. &iter_dict_entry,
  1025. &iter_dict_val,
  1026. &iter_dict_array))
  1027. goto err;
  1028. if (!dbus_message_iter_append_fixed_array(&iter_dict_array,
  1029. DBUS_TYPE_INT32,
  1030. &f_array,
  1031. freq_list_num))
  1032. goto err;
  1033. if (!wpa_dbus_dict_end_array(&dict_iter,
  1034. &iter_dict_entry,
  1035. &iter_dict_val,
  1036. &iter_dict_array))
  1037. goto err;
  1038. if (!wpa_dbus_dict_append_int32(&dict_iter, "persistent_group",
  1039. res->persistent_group) ||
  1040. !wpa_dbus_dict_append_uint32(&dict_iter,
  1041. "peer_config_timeout",
  1042. res->peer_config_timeout))
  1043. goto err;
  1044. }
  1045. if (!wpa_dbus_dict_close_write(&iter, &dict_iter))
  1046. goto err;
  1047. dbus_connection_send(iface->con, msg, NULL);
  1048. err:
  1049. dbus_message_unref(msg);
  1050. }
  1051. /**
  1052. *
  1053. * Method to emit Invitation Result signal based on status and
  1054. * bssid
  1055. * @status: Status of the Invite request. 0 for success, other
  1056. * for errors
  1057. * @bssid : Basic Service Set Identifier
  1058. */
  1059. void wpas_dbus_signal_p2p_invitation_result(struct wpa_supplicant *wpa_s,
  1060. int status, const u8 *bssid)
  1061. {
  1062. DBusMessage *msg;
  1063. DBusMessageIter iter, dict_iter;
  1064. struct wpas_dbus_priv *iface;
  1065. wpa_printf(MSG_INFO, "%s\n", __func__);
  1066. iface = wpa_s->global->dbus;
  1067. /* Do nothing if the control interface is not turned on */
  1068. if (iface == NULL)
  1069. return;
  1070. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1071. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1072. "InvitationResult");
  1073. if (msg == NULL)
  1074. return;
  1075. dbus_message_iter_init_append(msg, &iter);
  1076. if (!wpa_dbus_dict_open_write(&iter, &dict_iter))
  1077. goto nomem;
  1078. if (!wpa_dbus_dict_append_int32(&dict_iter, "status", status))
  1079. goto nomem;
  1080. if (bssid) {
  1081. if (!wpa_dbus_dict_append_byte_array(&dict_iter, "BSSID",
  1082. (const char *) bssid,
  1083. ETH_ALEN))
  1084. goto nomem;
  1085. }
  1086. if (!wpa_dbus_dict_close_write(&iter, &dict_iter))
  1087. goto nomem;
  1088. dbus_connection_send(iface->con, msg, NULL);
  1089. nomem:
  1090. dbus_message_unref(msg);
  1091. }
  1092. /**
  1093. *
  1094. * Method to emit a signal for a peer joining the group.
  1095. * The signal will carry path to the group member object
  1096. * constructed using p2p i/f addr used for connecting.
  1097. *
  1098. * @wpa_s: %wpa_supplicant network interface data
  1099. * @member_addr: addr (p2p i/f) of the peer joining the group
  1100. */
  1101. void wpas_dbus_signal_p2p_peer_joined(struct wpa_supplicant *wpa_s,
  1102. const u8 *member)
  1103. {
  1104. struct wpas_dbus_priv *iface;
  1105. DBusMessage *msg;
  1106. DBusMessageIter iter;
  1107. char groupmember_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1108. iface = wpa_s->global->dbus;
  1109. /* Do nothing if the control interface is not turned on */
  1110. if (iface == NULL)
  1111. return;
  1112. if (!wpa_s->dbus_groupobj_path)
  1113. return;
  1114. os_snprintf(groupmember_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1115. "%s/" WPAS_DBUS_NEW_P2P_GROUPMEMBERS_PART "/"
  1116. COMPACT_MACSTR,
  1117. wpa_s->dbus_groupobj_path, MAC2STR(member));
  1118. msg = dbus_message_new_signal(wpa_s->dbus_groupobj_path,
  1119. WPAS_DBUS_NEW_IFACE_P2P_GROUP,
  1120. "PeerJoined");
  1121. if (msg == NULL)
  1122. return;
  1123. dbus_message_iter_init_append(msg, &iter);
  1124. path = groupmember_obj_path;
  1125. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  1126. &path))
  1127. goto err;
  1128. dbus_connection_send(iface->con, msg, NULL);
  1129. dbus_message_unref(msg);
  1130. return;
  1131. err:
  1132. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1133. dbus_message_unref(msg);
  1134. }
  1135. /**
  1136. *
  1137. * Method to emit a signal for a peer disconnecting the group.
  1138. * The signal will carry path to the group member object
  1139. * constructed using p2p i/f addr used for connecting.
  1140. *
  1141. * @wpa_s: %wpa_supplicant network interface data
  1142. * @member_addr: addr (p2p i/f) of the peer joining the group
  1143. */
  1144. void wpas_dbus_signal_p2p_peer_disconnected(struct wpa_supplicant *wpa_s,
  1145. const u8 *member)
  1146. {
  1147. struct wpas_dbus_priv *iface;
  1148. DBusMessage *msg;
  1149. DBusMessageIter iter;
  1150. char groupmember_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1151. iface = wpa_s->global->dbus;
  1152. /* Do nothing if the control interface is not turned on */
  1153. if (iface == NULL)
  1154. return;
  1155. if (!wpa_s->dbus_groupobj_path)
  1156. return;
  1157. os_snprintf(groupmember_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1158. "%s/" WPAS_DBUS_NEW_P2P_GROUPMEMBERS_PART "/"
  1159. COMPACT_MACSTR,
  1160. wpa_s->dbus_groupobj_path, MAC2STR(member));
  1161. msg = dbus_message_new_signal(wpa_s->dbus_groupobj_path,
  1162. WPAS_DBUS_NEW_IFACE_P2P_GROUP,
  1163. "PeerDisconnected");
  1164. if (msg == NULL)
  1165. return;
  1166. dbus_message_iter_init_append(msg, &iter);
  1167. path = groupmember_obj_path;
  1168. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  1169. &path))
  1170. goto err;
  1171. dbus_connection_send(iface->con, msg, NULL);
  1172. dbus_message_unref(msg);
  1173. return;
  1174. err:
  1175. wpa_printf(MSG_ERROR, "dbus: Failed to construct PeerDisconnected "
  1176. "signal");
  1177. dbus_message_unref(msg);
  1178. }
  1179. /**
  1180. *
  1181. * Method to emit a signal for a service discovery request.
  1182. * The signal will carry station address, frequency, dialog token,
  1183. * update indicator and it tlvs
  1184. *
  1185. * @wpa_s: %wpa_supplicant network interface data
  1186. * @sa: station addr (p2p i/f) of the peer
  1187. * @dialog_token: service discovery request dialog token
  1188. * @update_indic: service discovery request update indicator
  1189. * @tlvs: service discovery request genrated byte array of tlvs
  1190. * @tlvs_len: service discovery request tlvs length
  1191. */
  1192. void wpas_dbus_signal_p2p_sd_request(struct wpa_supplicant *wpa_s,
  1193. int freq, const u8 *sa, u8 dialog_token,
  1194. u16 update_indic, const u8 *tlvs,
  1195. size_t tlvs_len)
  1196. {
  1197. DBusMessage *msg;
  1198. DBusMessageIter iter, dict_iter;
  1199. struct wpas_dbus_priv *iface;
  1200. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1201. iface = wpa_s->global->dbus;
  1202. /* Do nothing if the control interface is not turned on */
  1203. if (iface == NULL)
  1204. return;
  1205. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1206. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1207. "ServiceDiscoveryRequest");
  1208. if (msg == NULL)
  1209. return;
  1210. /* Check if this is a known peer */
  1211. if (!p2p_peer_known(wpa_s->global->p2p, sa))
  1212. goto error;
  1213. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1214. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
  1215. COMPACT_MACSTR, wpa_s->dbus_new_path, MAC2STR(sa));
  1216. path = peer_obj_path;
  1217. dbus_message_iter_init_append(msg, &iter);
  1218. if (!wpa_dbus_dict_open_write(&iter, &dict_iter))
  1219. goto error;
  1220. if (!wpa_dbus_dict_append_object_path(&dict_iter, "peer_object",
  1221. path) ||
  1222. !wpa_dbus_dict_append_int32(&dict_iter, "frequency", freq) ||
  1223. !wpa_dbus_dict_append_int32(&dict_iter, "dialog_token",
  1224. dialog_token) ||
  1225. !wpa_dbus_dict_append_uint16(&dict_iter, "update_indicator",
  1226. update_indic) ||
  1227. !wpa_dbus_dict_append_byte_array(&dict_iter, "tlvs",
  1228. (const char *) tlvs,
  1229. tlvs_len) ||
  1230. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  1231. goto error;
  1232. dbus_connection_send(iface->con, msg, NULL);
  1233. dbus_message_unref(msg);
  1234. return;
  1235. error:
  1236. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1237. dbus_message_unref(msg);
  1238. }
  1239. /**
  1240. *
  1241. * Method to emit a signal for a service discovery response.
  1242. * The signal will carry station address, update indicator and it
  1243. * tlvs
  1244. *
  1245. * @wpa_s: %wpa_supplicant network interface data
  1246. * @sa: station addr (p2p i/f) of the peer
  1247. * @update_indic: service discovery request update indicator
  1248. * @tlvs: service discovery request genrated byte array of tlvs
  1249. * @tlvs_len: service discovery request tlvs length
  1250. */
  1251. void wpas_dbus_signal_p2p_sd_response(struct wpa_supplicant *wpa_s,
  1252. const u8 *sa, u16 update_indic,
  1253. const u8 *tlvs, size_t tlvs_len)
  1254. {
  1255. DBusMessage *msg;
  1256. DBusMessageIter iter, dict_iter;
  1257. struct wpas_dbus_priv *iface;
  1258. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1259. iface = wpa_s->global->dbus;
  1260. /* Do nothing if the control interface is not turned on */
  1261. if (iface == NULL)
  1262. return;
  1263. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1264. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1265. "ServiceDiscoveryResponse");
  1266. if (msg == NULL)
  1267. return;
  1268. /* Check if this is a known peer */
  1269. if (!p2p_peer_known(wpa_s->global->p2p, sa))
  1270. goto error;
  1271. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1272. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/"
  1273. COMPACT_MACSTR, wpa_s->dbus_new_path, MAC2STR(sa));
  1274. path = peer_obj_path;
  1275. dbus_message_iter_init_append(msg, &iter);
  1276. if (!wpa_dbus_dict_open_write(&iter, &dict_iter))
  1277. goto error;
  1278. if (!wpa_dbus_dict_append_object_path(&dict_iter, "peer_object",
  1279. path) ||
  1280. !wpa_dbus_dict_append_uint16(&dict_iter, "update_indicator",
  1281. update_indic) ||
  1282. !wpa_dbus_dict_append_byte_array(&dict_iter, "tlvs",
  1283. (const char *) tlvs,
  1284. tlvs_len) ||
  1285. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  1286. goto error;
  1287. dbus_connection_send(iface->con, msg, NULL);
  1288. dbus_message_unref(msg);
  1289. return;
  1290. error:
  1291. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1292. dbus_message_unref(msg);
  1293. }
  1294. /**
  1295. * wpas_dbus_signal_persistent_group - Send a persistent group related
  1296. * event signal
  1297. * @wpa_s: %wpa_supplicant network interface data
  1298. * @id: new persistent group id
  1299. * @sig_name: signal name - PersistentGroupAdded, PersistentGroupRemoved
  1300. * @properties: determines if add second argument with object properties
  1301. *
  1302. * Notify listeners about an event related to persistent groups.
  1303. */
  1304. static void wpas_dbus_signal_persistent_group(struct wpa_supplicant *wpa_s,
  1305. int id, const char *sig_name,
  1306. int properties)
  1307. {
  1308. struct wpas_dbus_priv *iface;
  1309. DBusMessage *msg;
  1310. DBusMessageIter iter;
  1311. char pgrp_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  1312. iface = wpa_s->global->dbus;
  1313. /* Do nothing if the control interface is not turned on */
  1314. if (iface == NULL)
  1315. return;
  1316. os_snprintf(pgrp_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1317. "%s/" WPAS_DBUS_NEW_PERSISTENT_GROUPS_PART "/%u",
  1318. wpa_s->dbus_new_path, id);
  1319. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1320. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1321. sig_name);
  1322. if (msg == NULL)
  1323. return;
  1324. dbus_message_iter_init_append(msg, &iter);
  1325. path = pgrp_obj_path;
  1326. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  1327. &path))
  1328. goto err;
  1329. if (properties) {
  1330. if (!wpa_dbus_get_object_properties(
  1331. iface, pgrp_obj_path,
  1332. WPAS_DBUS_NEW_IFACE_PERSISTENT_GROUP, &iter))
  1333. goto err;
  1334. }
  1335. dbus_connection_send(iface->con, msg, NULL);
  1336. dbus_message_unref(msg);
  1337. return;
  1338. err:
  1339. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1340. dbus_message_unref(msg);
  1341. }
  1342. /**
  1343. * wpas_dbus_signal_persistent_group_added - Send a persistent_group
  1344. * added signal
  1345. * @wpa_s: %wpa_supplicant network interface data
  1346. * @id: new persistent group id
  1347. *
  1348. * Notify listeners about addition of a new persistent group.
  1349. */
  1350. static void wpas_dbus_signal_persistent_group_added(
  1351. struct wpa_supplicant *wpa_s, int id)
  1352. {
  1353. wpas_dbus_signal_persistent_group(wpa_s, id, "PersistentGroupAdded",
  1354. TRUE);
  1355. }
  1356. /**
  1357. * wpas_dbus_signal_persistent_group_removed - Send a persistent_group
  1358. * removed signal
  1359. * @wpa_s: %wpa_supplicant network interface data
  1360. * @id: persistent group id
  1361. *
  1362. * Notify listeners about removal of a persistent group.
  1363. */
  1364. static void wpas_dbus_signal_persistent_group_removed(
  1365. struct wpa_supplicant *wpa_s, int id)
  1366. {
  1367. wpas_dbus_signal_persistent_group(wpa_s, id, "PersistentGroupRemoved",
  1368. FALSE);
  1369. }
  1370. /**
  1371. * wpas_dbus_signal_p2p_wps_failed - Signals WpsFailed event
  1372. * @wpa_s: %wpa_supplicant network interface data
  1373. *
  1374. * Sends Event dbus signal with name "fail" and dictionary containing
  1375. * "msg" field with fail message number (int32) as arguments
  1376. */
  1377. void wpas_dbus_signal_p2p_wps_failed(struct wpa_supplicant *wpa_s,
  1378. struct wps_event_fail *fail)
  1379. {
  1380. DBusMessage *msg;
  1381. DBusMessageIter iter, dict_iter;
  1382. struct wpas_dbus_priv *iface;
  1383. char *key = "fail";
  1384. iface = wpa_s->global->dbus;
  1385. /* Do nothing if the control interface is not turned on */
  1386. if (iface == NULL)
  1387. return;
  1388. msg = dbus_message_new_signal(wpa_s->dbus_new_path,
  1389. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1390. "WpsFailed");
  1391. if (msg == NULL)
  1392. return;
  1393. dbus_message_iter_init_append(msg, &iter);
  1394. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &key) ||
  1395. !wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  1396. !wpa_dbus_dict_append_int32(&dict_iter, "msg", fail->msg) ||
  1397. !wpa_dbus_dict_append_int16(&dict_iter, "config_error",
  1398. fail->config_error) ||
  1399. !wpa_dbus_dict_close_write(&iter, &dict_iter))
  1400. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  1401. else
  1402. dbus_connection_send(iface->con, msg, NULL);
  1403. dbus_message_unref(msg);
  1404. }
  1405. #endif /*CONFIG_P2P*/
  1406. /**
  1407. * wpas_dbus_signal_prop_changed - Signals change of property
  1408. * @wpa_s: %wpa_supplicant network interface data
  1409. * @property: indicates which property has changed
  1410. *
  1411. * Sends PropertyChanged signals with path, interface and arguments
  1412. * depending on which property has changed.
  1413. */
  1414. void wpas_dbus_signal_prop_changed(struct wpa_supplicant *wpa_s,
  1415. enum wpas_dbus_prop property)
  1416. {
  1417. char *prop;
  1418. dbus_bool_t flush;
  1419. if (wpa_s->dbus_new_path == NULL)
  1420. return; /* Skip signal since D-Bus setup is not yet ready */
  1421. flush = FALSE;
  1422. switch (property) {
  1423. case WPAS_DBUS_PROP_AP_SCAN:
  1424. prop = "ApScan";
  1425. break;
  1426. case WPAS_DBUS_PROP_SCANNING:
  1427. prop = "Scanning";
  1428. break;
  1429. case WPAS_DBUS_PROP_STATE:
  1430. prop = "State";
  1431. break;
  1432. case WPAS_DBUS_PROP_CURRENT_BSS:
  1433. prop = "CurrentBSS";
  1434. break;
  1435. case WPAS_DBUS_PROP_CURRENT_NETWORK:
  1436. prop = "CurrentNetwork";
  1437. break;
  1438. case WPAS_DBUS_PROP_BSSS:
  1439. prop = "BSSs";
  1440. break;
  1441. case WPAS_DBUS_PROP_CURRENT_AUTH_MODE:
  1442. prop = "CurrentAuthMode";
  1443. break;
  1444. case WPAS_DBUS_PROP_DISCONNECT_REASON:
  1445. prop = "DisconnectReason";
  1446. flush = TRUE;
  1447. break;
  1448. default:
  1449. wpa_printf(MSG_ERROR, "dbus: %s: Unknown Property value %d",
  1450. __func__, property);
  1451. return;
  1452. }
  1453. wpa_dbus_mark_property_changed(wpa_s->global->dbus,
  1454. wpa_s->dbus_new_path,
  1455. WPAS_DBUS_NEW_IFACE_INTERFACE, prop);
  1456. if (flush) {
  1457. wpa_dbus_flush_object_changed_properties(
  1458. wpa_s->global->dbus->con, wpa_s->dbus_new_path);
  1459. }
  1460. }
  1461. /**
  1462. * wpas_dbus_bss_signal_prop_changed - Signals change of BSS property
  1463. * @wpa_s: %wpa_supplicant network interface data
  1464. * @property: indicates which property has changed
  1465. * @id: unique BSS identifier
  1466. *
  1467. * Sends PropertyChanged signals with path, interface, and arguments depending
  1468. * on which property has changed.
  1469. */
  1470. void wpas_dbus_bss_signal_prop_changed(struct wpa_supplicant *wpa_s,
  1471. enum wpas_dbus_bss_prop property,
  1472. unsigned int id)
  1473. {
  1474. char path[WPAS_DBUS_OBJECT_PATH_MAX];
  1475. char *prop;
  1476. switch (property) {
  1477. case WPAS_DBUS_BSS_PROP_SIGNAL:
  1478. prop = "Signal";
  1479. break;
  1480. case WPAS_DBUS_BSS_PROP_FREQ:
  1481. prop = "Frequency";
  1482. break;
  1483. case WPAS_DBUS_BSS_PROP_MODE:
  1484. prop = "Mode";
  1485. break;
  1486. case WPAS_DBUS_BSS_PROP_PRIVACY:
  1487. prop = "Privacy";
  1488. break;
  1489. case WPAS_DBUS_BSS_PROP_RATES:
  1490. prop = "Rates";
  1491. break;
  1492. case WPAS_DBUS_BSS_PROP_WPA:
  1493. prop = "WPA";
  1494. break;
  1495. case WPAS_DBUS_BSS_PROP_RSN:
  1496. prop = "RSN";
  1497. break;
  1498. case WPAS_DBUS_BSS_PROP_IES:
  1499. prop = "IEs";
  1500. break;
  1501. default:
  1502. wpa_printf(MSG_ERROR, "dbus: %s: Unknown Property value %d",
  1503. __func__, property);
  1504. return;
  1505. }
  1506. os_snprintf(path, WPAS_DBUS_OBJECT_PATH_MAX,
  1507. "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
  1508. wpa_s->dbus_new_path, id);
  1509. wpa_dbus_mark_property_changed(wpa_s->global->dbus, path,
  1510. WPAS_DBUS_NEW_IFACE_BSS, prop);
  1511. }
  1512. /**
  1513. * wpas_dbus_signal_debug_level_changed - Signals change of debug param
  1514. * @global: wpa_global structure
  1515. *
  1516. * Sends PropertyChanged signals informing that debug level has changed.
  1517. */
  1518. void wpas_dbus_signal_debug_level_changed(struct wpa_global *global)
  1519. {
  1520. wpa_dbus_mark_property_changed(global->dbus, WPAS_DBUS_NEW_PATH,
  1521. WPAS_DBUS_NEW_INTERFACE,
  1522. "DebugLevel");
  1523. }
  1524. /**
  1525. * wpas_dbus_signal_debug_timestamp_changed - Signals change of debug param
  1526. * @global: wpa_global structure
  1527. *
  1528. * Sends PropertyChanged signals informing that debug timestamp has changed.
  1529. */
  1530. void wpas_dbus_signal_debug_timestamp_changed(struct wpa_global *global)
  1531. {
  1532. wpa_dbus_mark_property_changed(global->dbus, WPAS_DBUS_NEW_PATH,
  1533. WPAS_DBUS_NEW_INTERFACE,
  1534. "DebugTimestamp");
  1535. }
  1536. /**
  1537. * wpas_dbus_signal_debug_show_keys_changed - Signals change of debug param
  1538. * @global: wpa_global structure
  1539. *
  1540. * Sends PropertyChanged signals informing that debug show_keys has changed.
  1541. */
  1542. void wpas_dbus_signal_debug_show_keys_changed(struct wpa_global *global)
  1543. {
  1544. wpa_dbus_mark_property_changed(global->dbus, WPAS_DBUS_NEW_PATH,
  1545. WPAS_DBUS_NEW_INTERFACE,
  1546. "DebugShowKeys");
  1547. }
  1548. static void wpas_dbus_register(struct wpa_dbus_object_desc *obj_desc,
  1549. void *priv,
  1550. WPADBusArgumentFreeFunction priv_free,
  1551. const struct wpa_dbus_method_desc *methods,
  1552. const struct wpa_dbus_property_desc *properties,
  1553. const struct wpa_dbus_signal_desc *signals)
  1554. {
  1555. int n;
  1556. obj_desc->user_data = priv;
  1557. obj_desc->user_data_free_func = priv_free;
  1558. obj_desc->methods = methods;
  1559. obj_desc->properties = properties;
  1560. obj_desc->signals = signals;
  1561. for (n = 0; properties && properties->dbus_property; properties++)
  1562. n++;
  1563. obj_desc->prop_changed_flags = os_zalloc(n);
  1564. if (!obj_desc->prop_changed_flags)
  1565. wpa_printf(MSG_DEBUG, "dbus: %s: can't register handlers",
  1566. __func__);
  1567. }
  1568. static const struct wpa_dbus_method_desc wpas_dbus_global_methods[] = {
  1569. { "CreateInterface", WPAS_DBUS_NEW_INTERFACE,
  1570. (WPADBusMethodHandler) &wpas_dbus_handler_create_interface,
  1571. {
  1572. { "args", "a{sv}", ARG_IN },
  1573. { "path", "o", ARG_OUT },
  1574. END_ARGS
  1575. }
  1576. },
  1577. { "RemoveInterface", WPAS_DBUS_NEW_INTERFACE,
  1578. (WPADBusMethodHandler) &wpas_dbus_handler_remove_interface,
  1579. {
  1580. { "path", "o", ARG_IN },
  1581. END_ARGS
  1582. }
  1583. },
  1584. { "GetInterface", WPAS_DBUS_NEW_INTERFACE,
  1585. (WPADBusMethodHandler) &wpas_dbus_handler_get_interface,
  1586. {
  1587. { "ifname", "s", ARG_IN },
  1588. { "path", "o", ARG_OUT },
  1589. END_ARGS
  1590. }
  1591. },
  1592. #ifdef CONFIG_AUTOSCAN
  1593. { "AutoScan", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1594. (WPADBusMethodHandler) &wpas_dbus_handler_autoscan,
  1595. {
  1596. { "arg", "s", ARG_IN },
  1597. END_ARGS
  1598. }
  1599. },
  1600. #endif /* CONFIG_AUTOSCAN */
  1601. { NULL, NULL, NULL, { END_ARGS } }
  1602. };
  1603. static const struct wpa_dbus_property_desc wpas_dbus_global_properties[] = {
  1604. { "DebugLevel", WPAS_DBUS_NEW_INTERFACE, "s",
  1605. wpas_dbus_getter_debug_level,
  1606. wpas_dbus_setter_debug_level
  1607. },
  1608. { "DebugTimestamp", WPAS_DBUS_NEW_INTERFACE, "b",
  1609. wpas_dbus_getter_debug_timestamp,
  1610. wpas_dbus_setter_debug_timestamp
  1611. },
  1612. { "DebugShowKeys", WPAS_DBUS_NEW_INTERFACE, "b",
  1613. wpas_dbus_getter_debug_show_keys,
  1614. wpas_dbus_setter_debug_show_keys
  1615. },
  1616. { "Interfaces", WPAS_DBUS_NEW_INTERFACE, "ao",
  1617. wpas_dbus_getter_interfaces,
  1618. NULL
  1619. },
  1620. { "EapMethods", WPAS_DBUS_NEW_INTERFACE, "as",
  1621. wpas_dbus_getter_eap_methods,
  1622. NULL
  1623. },
  1624. { NULL, NULL, NULL, NULL, NULL }
  1625. };
  1626. static const struct wpa_dbus_signal_desc wpas_dbus_global_signals[] = {
  1627. { "InterfaceAdded", WPAS_DBUS_NEW_INTERFACE,
  1628. {
  1629. { "path", "o", ARG_OUT },
  1630. { "properties", "a{sv}", ARG_OUT },
  1631. END_ARGS
  1632. }
  1633. },
  1634. { "InterfaceRemoved", WPAS_DBUS_NEW_INTERFACE,
  1635. {
  1636. { "path", "o", ARG_OUT },
  1637. END_ARGS
  1638. }
  1639. },
  1640. { "NetworkRequest", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1641. {
  1642. { "path", "o", ARG_OUT },
  1643. { "field", "s", ARG_OUT },
  1644. { "text", "s", ARG_OUT },
  1645. END_ARGS
  1646. }
  1647. },
  1648. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  1649. { "PropertiesChanged", WPAS_DBUS_NEW_INTERFACE,
  1650. {
  1651. { "properties", "a{sv}", ARG_OUT },
  1652. END_ARGS
  1653. }
  1654. },
  1655. { NULL, NULL, { END_ARGS } }
  1656. };
  1657. /**
  1658. * wpas_dbus_ctrl_iface_init - Initialize dbus control interface
  1659. * @global: Pointer to global data from wpa_supplicant_init()
  1660. * Returns: 0 on success or -1 on failure
  1661. *
  1662. * Initialize the dbus control interface for wpa_supplicantand and start
  1663. * receiving commands from external programs over the bus.
  1664. */
  1665. int wpas_dbus_ctrl_iface_init(struct wpas_dbus_priv *priv)
  1666. {
  1667. struct wpa_dbus_object_desc *obj_desc;
  1668. int ret;
  1669. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  1670. if (!obj_desc) {
  1671. wpa_printf(MSG_ERROR, "Not enough memory "
  1672. "to create object description");
  1673. return -1;
  1674. }
  1675. wpas_dbus_register(obj_desc, priv->global, NULL,
  1676. wpas_dbus_global_methods,
  1677. wpas_dbus_global_properties,
  1678. wpas_dbus_global_signals);
  1679. wpa_printf(MSG_DEBUG, "dbus: Register D-Bus object '%s'",
  1680. WPAS_DBUS_NEW_PATH);
  1681. ret = wpa_dbus_ctrl_iface_init(priv, WPAS_DBUS_NEW_PATH,
  1682. WPAS_DBUS_NEW_SERVICE,
  1683. obj_desc);
  1684. if (ret < 0)
  1685. free_dbus_object_desc(obj_desc);
  1686. else
  1687. priv->dbus_new_initialized = 1;
  1688. return ret;
  1689. }
  1690. /**
  1691. * wpas_dbus_ctrl_iface_deinit - Deinitialize dbus ctrl interface for
  1692. * wpa_supplicant
  1693. * @iface: Pointer to dbus private data from wpas_dbus_init()
  1694. *
  1695. * Deinitialize the dbus control interface that was initialized with
  1696. * wpas_dbus_ctrl_iface_init().
  1697. */
  1698. void wpas_dbus_ctrl_iface_deinit(struct wpas_dbus_priv *iface)
  1699. {
  1700. if (!iface->dbus_new_initialized)
  1701. return;
  1702. wpa_printf(MSG_DEBUG, "dbus: Unregister D-Bus object '%s'",
  1703. WPAS_DBUS_NEW_PATH);
  1704. dbus_connection_unregister_object_path(iface->con,
  1705. WPAS_DBUS_NEW_PATH);
  1706. }
  1707. static void wpa_dbus_free(void *ptr)
  1708. {
  1709. os_free(ptr);
  1710. }
  1711. static const struct wpa_dbus_property_desc wpas_dbus_network_properties[] = {
  1712. { "Properties", WPAS_DBUS_NEW_IFACE_NETWORK, "a{sv}",
  1713. wpas_dbus_getter_network_properties,
  1714. wpas_dbus_setter_network_properties
  1715. },
  1716. { "Enabled", WPAS_DBUS_NEW_IFACE_NETWORK, "b",
  1717. wpas_dbus_getter_enabled,
  1718. wpas_dbus_setter_enabled
  1719. },
  1720. { NULL, NULL, NULL, NULL, NULL }
  1721. };
  1722. static const struct wpa_dbus_signal_desc wpas_dbus_network_signals[] = {
  1723. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  1724. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_NETWORK,
  1725. {
  1726. { "properties", "a{sv}", ARG_OUT },
  1727. END_ARGS
  1728. }
  1729. },
  1730. { NULL, NULL, { END_ARGS } }
  1731. };
  1732. /**
  1733. * wpas_dbus_register_network - Register a configured network with dbus
  1734. * @wpa_s: wpa_supplicant interface structure
  1735. * @ssid: network configuration data
  1736. * Returns: 0 on success, -1 on failure
  1737. *
  1738. * Registers network representing object with dbus
  1739. */
  1740. int wpas_dbus_register_network(struct wpa_supplicant *wpa_s,
  1741. struct wpa_ssid *ssid)
  1742. {
  1743. struct wpas_dbus_priv *ctrl_iface;
  1744. struct wpa_dbus_object_desc *obj_desc;
  1745. struct network_handler_args *arg;
  1746. char net_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  1747. #ifdef CONFIG_P2P
  1748. /*
  1749. * If it is a persistent group register it as such.
  1750. * This is to handle cases where an interface is being initialized
  1751. * with a list of networks read from config.
  1752. */
  1753. if (network_is_persistent_group(ssid))
  1754. return wpas_dbus_register_persistent_group(wpa_s, ssid);
  1755. #endif /* CONFIG_P2P */
  1756. /* Do nothing if the control interface is not turned on */
  1757. if (wpa_s == NULL || wpa_s->global == NULL)
  1758. return 0;
  1759. ctrl_iface = wpa_s->global->dbus;
  1760. if (ctrl_iface == NULL)
  1761. return 0;
  1762. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1763. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u",
  1764. wpa_s->dbus_new_path, ssid->id);
  1765. wpa_printf(MSG_DEBUG, "dbus: Register network object '%s'",
  1766. net_obj_path);
  1767. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  1768. if (!obj_desc) {
  1769. wpa_printf(MSG_ERROR, "Not enough memory "
  1770. "to create object description");
  1771. goto err;
  1772. }
  1773. /* allocate memory for handlers arguments */
  1774. arg = os_zalloc(sizeof(struct network_handler_args));
  1775. if (!arg) {
  1776. wpa_printf(MSG_ERROR, "Not enough memory "
  1777. "to create arguments for method");
  1778. goto err;
  1779. }
  1780. arg->wpa_s = wpa_s;
  1781. arg->ssid = ssid;
  1782. wpas_dbus_register(obj_desc, arg, wpa_dbus_free, NULL,
  1783. wpas_dbus_network_properties,
  1784. wpas_dbus_network_signals);
  1785. if (wpa_dbus_register_object_per_iface(ctrl_iface, net_obj_path,
  1786. wpa_s->ifname, obj_desc))
  1787. goto err;
  1788. wpas_dbus_signal_network_added(wpa_s, ssid->id);
  1789. return 0;
  1790. err:
  1791. free_dbus_object_desc(obj_desc);
  1792. return -1;
  1793. }
  1794. /**
  1795. * wpas_dbus_unregister_network - Unregister a configured network from dbus
  1796. * @wpa_s: wpa_supplicant interface structure
  1797. * @nid: network id
  1798. * Returns: 0 on success, -1 on failure
  1799. *
  1800. * Unregisters network representing object from dbus
  1801. */
  1802. int wpas_dbus_unregister_network(struct wpa_supplicant *wpa_s, int nid)
  1803. {
  1804. struct wpas_dbus_priv *ctrl_iface;
  1805. char net_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  1806. int ret;
  1807. #ifdef CONFIG_P2P
  1808. struct wpa_ssid *ssid;
  1809. ssid = wpa_config_get_network(wpa_s->conf, nid);
  1810. /* If it is a persistent group unregister it as such */
  1811. if (ssid && network_is_persistent_group(ssid))
  1812. return wpas_dbus_unregister_persistent_group(wpa_s, nid);
  1813. #endif /* CONFIG_P2P */
  1814. /* Do nothing if the control interface is not turned on */
  1815. if (wpa_s->global == NULL || wpa_s->dbus_new_path == NULL)
  1816. return 0;
  1817. ctrl_iface = wpa_s->global->dbus;
  1818. if (ctrl_iface == NULL)
  1819. return 0;
  1820. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1821. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u",
  1822. wpa_s->dbus_new_path, nid);
  1823. wpa_printf(MSG_DEBUG, "dbus: Unregister network object '%s'",
  1824. net_obj_path);
  1825. ret = wpa_dbus_unregister_object_per_iface(ctrl_iface, net_obj_path);
  1826. if (!ret)
  1827. wpas_dbus_signal_network_removed(wpa_s, nid);
  1828. return ret;
  1829. }
  1830. static const struct wpa_dbus_property_desc wpas_dbus_bss_properties[] = {
  1831. { "SSID", WPAS_DBUS_NEW_IFACE_BSS, "ay",
  1832. wpas_dbus_getter_bss_ssid,
  1833. NULL
  1834. },
  1835. { "BSSID", WPAS_DBUS_NEW_IFACE_BSS, "ay",
  1836. wpas_dbus_getter_bss_bssid,
  1837. NULL
  1838. },
  1839. { "Privacy", WPAS_DBUS_NEW_IFACE_BSS, "b",
  1840. wpas_dbus_getter_bss_privacy,
  1841. NULL
  1842. },
  1843. { "Mode", WPAS_DBUS_NEW_IFACE_BSS, "s",
  1844. wpas_dbus_getter_bss_mode,
  1845. NULL
  1846. },
  1847. { "Signal", WPAS_DBUS_NEW_IFACE_BSS, "n",
  1848. wpas_dbus_getter_bss_signal,
  1849. NULL
  1850. },
  1851. { "Frequency", WPAS_DBUS_NEW_IFACE_BSS, "q",
  1852. wpas_dbus_getter_bss_frequency,
  1853. NULL
  1854. },
  1855. { "Rates", WPAS_DBUS_NEW_IFACE_BSS, "au",
  1856. wpas_dbus_getter_bss_rates,
  1857. NULL
  1858. },
  1859. { "WPA", WPAS_DBUS_NEW_IFACE_BSS, "a{sv}",
  1860. wpas_dbus_getter_bss_wpa,
  1861. NULL
  1862. },
  1863. { "RSN", WPAS_DBUS_NEW_IFACE_BSS, "a{sv}",
  1864. wpas_dbus_getter_bss_rsn,
  1865. NULL
  1866. },
  1867. { "IEs", WPAS_DBUS_NEW_IFACE_BSS, "ay",
  1868. wpas_dbus_getter_bss_ies,
  1869. NULL
  1870. },
  1871. { NULL, NULL, NULL, NULL, NULL }
  1872. };
  1873. static const struct wpa_dbus_signal_desc wpas_dbus_bss_signals[] = {
  1874. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  1875. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_BSS,
  1876. {
  1877. { "properties", "a{sv}", ARG_OUT },
  1878. END_ARGS
  1879. }
  1880. },
  1881. { NULL, NULL, { END_ARGS } }
  1882. };
  1883. /**
  1884. * wpas_dbus_unregister_bss - Unregister a scanned BSS from dbus
  1885. * @wpa_s: wpa_supplicant interface structure
  1886. * @bssid: scanned network bssid
  1887. * @id: unique BSS identifier
  1888. * Returns: 0 on success, -1 on failure
  1889. *
  1890. * Unregisters BSS representing object from dbus
  1891. */
  1892. int wpas_dbus_unregister_bss(struct wpa_supplicant *wpa_s,
  1893. u8 bssid[ETH_ALEN], unsigned int id)
  1894. {
  1895. struct wpas_dbus_priv *ctrl_iface;
  1896. char bss_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  1897. /* Do nothing if the control interface is not turned on */
  1898. if (wpa_s == NULL || wpa_s->global == NULL)
  1899. return 0;
  1900. ctrl_iface = wpa_s->global->dbus;
  1901. if (ctrl_iface == NULL)
  1902. return 0;
  1903. os_snprintf(bss_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1904. "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
  1905. wpa_s->dbus_new_path, id);
  1906. wpa_printf(MSG_DEBUG, "dbus: Unregister BSS object '%s'",
  1907. bss_obj_path);
  1908. if (wpa_dbus_unregister_object_per_iface(ctrl_iface, bss_obj_path)) {
  1909. wpa_printf(MSG_ERROR, "dbus: Cannot unregister BSS object %s",
  1910. bss_obj_path);
  1911. return -1;
  1912. }
  1913. wpas_dbus_signal_bss_removed(wpa_s, bss_obj_path);
  1914. wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_BSSS);
  1915. return 0;
  1916. }
  1917. /**
  1918. * wpas_dbus_register_bss - Register a scanned BSS with dbus
  1919. * @wpa_s: wpa_supplicant interface structure
  1920. * @bssid: scanned network bssid
  1921. * @id: unique BSS identifier
  1922. * Returns: 0 on success, -1 on failure
  1923. *
  1924. * Registers BSS representing object with dbus
  1925. */
  1926. int wpas_dbus_register_bss(struct wpa_supplicant *wpa_s,
  1927. u8 bssid[ETH_ALEN], unsigned int id)
  1928. {
  1929. struct wpas_dbus_priv *ctrl_iface;
  1930. struct wpa_dbus_object_desc *obj_desc;
  1931. char bss_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  1932. struct bss_handler_args *arg;
  1933. /* Do nothing if the control interface is not turned on */
  1934. if (wpa_s == NULL || wpa_s->global == NULL)
  1935. return 0;
  1936. ctrl_iface = wpa_s->global->dbus;
  1937. if (ctrl_iface == NULL)
  1938. return 0;
  1939. os_snprintf(bss_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1940. "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
  1941. wpa_s->dbus_new_path, id);
  1942. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  1943. if (!obj_desc) {
  1944. wpa_printf(MSG_ERROR, "Not enough memory "
  1945. "to create object description");
  1946. goto err;
  1947. }
  1948. arg = os_zalloc(sizeof(struct bss_handler_args));
  1949. if (!arg) {
  1950. wpa_printf(MSG_ERROR, "Not enough memory "
  1951. "to create arguments for handler");
  1952. goto err;
  1953. }
  1954. arg->wpa_s = wpa_s;
  1955. arg->id = id;
  1956. wpas_dbus_register(obj_desc, arg, wpa_dbus_free, NULL,
  1957. wpas_dbus_bss_properties,
  1958. wpas_dbus_bss_signals);
  1959. wpa_printf(MSG_DEBUG, "dbus: Register BSS object '%s'",
  1960. bss_obj_path);
  1961. if (wpa_dbus_register_object_per_iface(ctrl_iface, bss_obj_path,
  1962. wpa_s->ifname, obj_desc)) {
  1963. wpa_printf(MSG_ERROR,
  1964. "Cannot register BSSID dbus object %s.",
  1965. bss_obj_path);
  1966. goto err;
  1967. }
  1968. wpas_dbus_signal_bss_added(wpa_s, bss_obj_path);
  1969. wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_BSSS);
  1970. return 0;
  1971. err:
  1972. free_dbus_object_desc(obj_desc);
  1973. return -1;
  1974. }
  1975. static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
  1976. { "Scan", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1977. (WPADBusMethodHandler) &wpas_dbus_handler_scan,
  1978. {
  1979. { "args", "a{sv}", ARG_IN },
  1980. END_ARGS
  1981. }
  1982. },
  1983. { "Disconnect", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1984. (WPADBusMethodHandler) &wpas_dbus_handler_disconnect,
  1985. {
  1986. END_ARGS
  1987. }
  1988. },
  1989. { "AddNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1990. (WPADBusMethodHandler) &wpas_dbus_handler_add_network,
  1991. {
  1992. { "args", "a{sv}", ARG_IN },
  1993. { "path", "o", ARG_OUT },
  1994. END_ARGS
  1995. }
  1996. },
  1997. { "Reassociate", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1998. (WPADBusMethodHandler) &wpas_dbus_handler_reassociate,
  1999. {
  2000. END_ARGS
  2001. }
  2002. },
  2003. { "RemoveNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2004. (WPADBusMethodHandler) &wpas_dbus_handler_remove_network,
  2005. {
  2006. { "path", "o", ARG_IN },
  2007. END_ARGS
  2008. }
  2009. },
  2010. { "RemoveAllNetworks", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2011. (WPADBusMethodHandler) &wpas_dbus_handler_remove_all_networks,
  2012. {
  2013. END_ARGS
  2014. }
  2015. },
  2016. { "SelectNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2017. (WPADBusMethodHandler) &wpas_dbus_handler_select_network,
  2018. {
  2019. { "path", "o", ARG_IN },
  2020. END_ARGS
  2021. }
  2022. },
  2023. { "NetworkReply", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2024. (WPADBusMethodHandler) &wpas_dbus_handler_network_reply,
  2025. {
  2026. { "path", "o", ARG_IN },
  2027. { "field", "s", ARG_IN },
  2028. { "value", "s", ARG_IN },
  2029. END_ARGS
  2030. }
  2031. },
  2032. { "AddBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2033. (WPADBusMethodHandler) &wpas_dbus_handler_add_blob,
  2034. {
  2035. { "name", "s", ARG_IN },
  2036. { "data", "ay", ARG_IN },
  2037. END_ARGS
  2038. }
  2039. },
  2040. { "GetBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2041. (WPADBusMethodHandler) &wpas_dbus_handler_get_blob,
  2042. {
  2043. { "name", "s", ARG_IN },
  2044. { "data", "ay", ARG_OUT },
  2045. END_ARGS
  2046. }
  2047. },
  2048. { "RemoveBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2049. (WPADBusMethodHandler) &wpas_dbus_handler_remove_blob,
  2050. {
  2051. { "name", "s", ARG_IN },
  2052. END_ARGS
  2053. }
  2054. },
  2055. #ifdef CONFIG_WPS
  2056. { "Start", WPAS_DBUS_NEW_IFACE_WPS,
  2057. (WPADBusMethodHandler) &wpas_dbus_handler_wps_start,
  2058. {
  2059. { "args", "a{sv}", ARG_IN },
  2060. { "output", "a{sv}", ARG_OUT },
  2061. END_ARGS
  2062. }
  2063. },
  2064. #endif /* CONFIG_WPS */
  2065. #ifdef CONFIG_P2P
  2066. { "Find", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2067. (WPADBusMethodHandler)wpas_dbus_handler_p2p_find,
  2068. {
  2069. { "args", "a{sv}", ARG_IN },
  2070. END_ARGS
  2071. }
  2072. },
  2073. { "StopFind", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2074. (WPADBusMethodHandler)wpas_dbus_handler_p2p_stop_find,
  2075. {
  2076. END_ARGS
  2077. }
  2078. },
  2079. { "Listen", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2080. (WPADBusMethodHandler)wpas_dbus_handler_p2p_listen,
  2081. {
  2082. { "timeout", "i", ARG_IN },
  2083. END_ARGS
  2084. }
  2085. },
  2086. { "ExtendedListen", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2087. (WPADBusMethodHandler)wpas_dbus_handler_p2p_extendedlisten,
  2088. {
  2089. { "args", "a{sv}", ARG_IN },
  2090. END_ARGS
  2091. }
  2092. },
  2093. { "PresenceRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2094. (WPADBusMethodHandler)wpas_dbus_handler_p2p_presence_request,
  2095. {
  2096. { "args", "a{sv}", ARG_IN },
  2097. END_ARGS
  2098. }
  2099. },
  2100. { "ProvisionDiscoveryRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2101. (WPADBusMethodHandler)wpas_dbus_handler_p2p_prov_disc_req,
  2102. {
  2103. { "peer", "o", ARG_IN },
  2104. { "config_method", "s", ARG_IN },
  2105. END_ARGS
  2106. }
  2107. },
  2108. { "Connect", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2109. (WPADBusMethodHandler)wpas_dbus_handler_p2p_connect,
  2110. {
  2111. { "args", "a{sv}", ARG_IN },
  2112. { "generated_pin", "s", ARG_OUT },
  2113. END_ARGS
  2114. }
  2115. },
  2116. { "GroupAdd", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2117. (WPADBusMethodHandler)wpas_dbus_handler_p2p_group_add,
  2118. {
  2119. { "args", "a{sv}", ARG_IN },
  2120. END_ARGS
  2121. }
  2122. },
  2123. { "Invite", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2124. (WPADBusMethodHandler)wpas_dbus_handler_p2p_invite,
  2125. {
  2126. { "args", "a{sv}", ARG_IN },
  2127. END_ARGS
  2128. }
  2129. },
  2130. { "Disconnect", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2131. (WPADBusMethodHandler)wpas_dbus_handler_p2p_disconnect,
  2132. {
  2133. END_ARGS
  2134. }
  2135. },
  2136. { "RejectPeer", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2137. (WPADBusMethodHandler)wpas_dbus_handler_p2p_rejectpeer,
  2138. {
  2139. { "peer", "o", ARG_IN },
  2140. END_ARGS
  2141. }
  2142. },
  2143. { "Flush", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2144. (WPADBusMethodHandler)wpas_dbus_handler_p2p_flush,
  2145. {
  2146. END_ARGS
  2147. }
  2148. },
  2149. { "AddService", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2150. (WPADBusMethodHandler)wpas_dbus_handler_p2p_add_service,
  2151. {
  2152. { "args", "a{sv}", ARG_IN },
  2153. END_ARGS
  2154. }
  2155. },
  2156. { "DeleteService", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2157. (WPADBusMethodHandler)wpas_dbus_handler_p2p_delete_service,
  2158. {
  2159. { "args", "a{sv}", ARG_IN },
  2160. END_ARGS
  2161. }
  2162. },
  2163. { "FlushService", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2164. (WPADBusMethodHandler)wpas_dbus_handler_p2p_flush_service,
  2165. {
  2166. END_ARGS
  2167. }
  2168. },
  2169. { "ServiceDiscoveryRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2170. (WPADBusMethodHandler)wpas_dbus_handler_p2p_service_sd_req,
  2171. {
  2172. { "args", "a{sv}", ARG_IN },
  2173. END_ARGS
  2174. }
  2175. },
  2176. { "ServiceDiscoveryResponse", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2177. (WPADBusMethodHandler)wpas_dbus_handler_p2p_service_sd_res,
  2178. {
  2179. { "args", "a{sv}", ARG_IN },
  2180. END_ARGS
  2181. }
  2182. },
  2183. { "ServiceDiscoveryCancelRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2184. (WPADBusMethodHandler)wpas_dbus_handler_p2p_service_sd_cancel_req,
  2185. {
  2186. { "args", "t", ARG_IN },
  2187. END_ARGS
  2188. }
  2189. },
  2190. { "ServiceUpdate", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2191. (WPADBusMethodHandler)wpas_dbus_handler_p2p_service_update,
  2192. {
  2193. END_ARGS
  2194. }
  2195. },
  2196. { "ServiceDiscoveryExternal", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2197. (WPADBusMethodHandler)wpas_dbus_handler_p2p_serv_disc_external,
  2198. {
  2199. { "arg", "i", ARG_IN },
  2200. END_ARGS
  2201. }
  2202. },
  2203. { "ServiceDiscoveryExternal", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2204. (WPADBusMethodHandler)wpas_dbus_handler_p2p_serv_disc_external,
  2205. {
  2206. { "arg", "i", ARG_IN },
  2207. END_ARGS
  2208. }
  2209. },
  2210. { "AddPersistentGroup", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2211. (WPADBusMethodHandler) wpas_dbus_handler_add_persistent_group,
  2212. {
  2213. { "args", "a{sv}", ARG_IN },
  2214. { "path", "o", ARG_OUT },
  2215. END_ARGS
  2216. }
  2217. },
  2218. { "RemovePersistentGroup", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2219. (WPADBusMethodHandler) wpas_dbus_handler_remove_persistent_group,
  2220. {
  2221. { "path", "o", ARG_IN },
  2222. END_ARGS
  2223. }
  2224. },
  2225. { "RemoveAllPersistentGroups", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2226. (WPADBusMethodHandler)
  2227. wpas_dbus_handler_remove_all_persistent_groups,
  2228. {
  2229. END_ARGS
  2230. }
  2231. },
  2232. #endif /* CONFIG_P2P */
  2233. { "FlushBSS", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2234. (WPADBusMethodHandler) &wpas_dbus_handler_flush_bss,
  2235. {
  2236. { "age", "u", ARG_IN },
  2237. END_ARGS
  2238. }
  2239. },
  2240. #ifdef CONFIG_AP
  2241. { "SubscribeProbeReq", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2242. (WPADBusMethodHandler) wpas_dbus_handler_subscribe_preq,
  2243. {
  2244. END_ARGS
  2245. }
  2246. },
  2247. { "UnsubscribeProbeReq", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2248. (WPADBusMethodHandler) wpas_dbus_handler_unsubscribe_preq,
  2249. {
  2250. END_ARGS
  2251. }
  2252. },
  2253. #endif /* CONFIG_AP */
  2254. { NULL, NULL, NULL, { END_ARGS } }
  2255. };
  2256. static const struct wpa_dbus_property_desc wpas_dbus_interface_properties[] = {
  2257. { "Capabilities", WPAS_DBUS_NEW_IFACE_INTERFACE, "a{sv}",
  2258. wpas_dbus_getter_capabilities,
  2259. NULL
  2260. },
  2261. { "State", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2262. wpas_dbus_getter_state,
  2263. NULL
  2264. },
  2265. { "Scanning", WPAS_DBUS_NEW_IFACE_INTERFACE, "b",
  2266. wpas_dbus_getter_scanning,
  2267. NULL
  2268. },
  2269. { "ApScan", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
  2270. wpas_dbus_getter_ap_scan,
  2271. wpas_dbus_setter_ap_scan
  2272. },
  2273. { "BSSExpireAge", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
  2274. wpas_dbus_getter_bss_expire_age,
  2275. wpas_dbus_setter_bss_expire_age
  2276. },
  2277. { "BSSExpireCount", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
  2278. wpas_dbus_getter_bss_expire_count,
  2279. wpas_dbus_setter_bss_expire_count
  2280. },
  2281. { "Country", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2282. wpas_dbus_getter_country,
  2283. wpas_dbus_setter_country
  2284. },
  2285. { "Ifname", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2286. wpas_dbus_getter_ifname,
  2287. NULL
  2288. },
  2289. { "Driver", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2290. wpas_dbus_getter_driver,
  2291. NULL
  2292. },
  2293. { "BridgeIfname", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2294. wpas_dbus_getter_bridge_ifname,
  2295. NULL
  2296. },
  2297. { "CurrentBSS", WPAS_DBUS_NEW_IFACE_INTERFACE, "o",
  2298. wpas_dbus_getter_current_bss,
  2299. NULL
  2300. },
  2301. { "CurrentNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE, "o",
  2302. wpas_dbus_getter_current_network,
  2303. NULL
  2304. },
  2305. { "CurrentAuthMode", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2306. wpas_dbus_getter_current_auth_mode,
  2307. NULL
  2308. },
  2309. { "Blobs", WPAS_DBUS_NEW_IFACE_INTERFACE, "a{say}",
  2310. wpas_dbus_getter_blobs,
  2311. NULL
  2312. },
  2313. { "BSSs", WPAS_DBUS_NEW_IFACE_INTERFACE, "ao",
  2314. wpas_dbus_getter_bsss,
  2315. NULL
  2316. },
  2317. { "Networks", WPAS_DBUS_NEW_IFACE_INTERFACE, "ao",
  2318. wpas_dbus_getter_networks,
  2319. NULL
  2320. },
  2321. { "FastReauth", WPAS_DBUS_NEW_IFACE_INTERFACE, "b",
  2322. wpas_dbus_getter_fast_reauth,
  2323. wpas_dbus_setter_fast_reauth
  2324. },
  2325. { "ScanInterval", WPAS_DBUS_NEW_IFACE_INTERFACE, "i",
  2326. wpas_dbus_getter_scan_interval,
  2327. wpas_dbus_setter_scan_interval
  2328. },
  2329. #ifdef CONFIG_WPS
  2330. { "ProcessCredentials", WPAS_DBUS_NEW_IFACE_WPS, "b",
  2331. wpas_dbus_getter_process_credentials,
  2332. wpas_dbus_setter_process_credentials
  2333. },
  2334. #endif /* CONFIG_WPS */
  2335. #ifdef CONFIG_P2P
  2336. { "P2PDeviceConfig", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "a{sv}",
  2337. wpas_dbus_getter_p2p_device_config,
  2338. wpas_dbus_setter_p2p_device_config
  2339. },
  2340. { "Peers", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "ao",
  2341. wpas_dbus_getter_p2p_peers,
  2342. NULL
  2343. },
  2344. { "Role", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "s",
  2345. wpas_dbus_getter_p2p_role,
  2346. NULL
  2347. },
  2348. { "Group", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "o",
  2349. wpas_dbus_getter_p2p_group,
  2350. NULL
  2351. },
  2352. { "PeerGO", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "o",
  2353. wpas_dbus_getter_p2p_peergo,
  2354. NULL
  2355. },
  2356. { "PersistentGroups", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "ao",
  2357. wpas_dbus_getter_persistent_groups,
  2358. NULL
  2359. },
  2360. #endif /* CONFIG_P2P */
  2361. { "DisconnectReason", WPAS_DBUS_NEW_IFACE_INTERFACE, "i",
  2362. wpas_dbus_getter_disconnect_reason,
  2363. NULL
  2364. },
  2365. { NULL, NULL, NULL, NULL, NULL }
  2366. };
  2367. static const struct wpa_dbus_signal_desc wpas_dbus_interface_signals[] = {
  2368. { "ScanDone", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2369. {
  2370. { "success", "b", ARG_OUT },
  2371. END_ARGS
  2372. }
  2373. },
  2374. { "BSSAdded", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2375. {
  2376. { "path", "o", ARG_OUT },
  2377. { "properties", "a{sv}", ARG_OUT },
  2378. END_ARGS
  2379. }
  2380. },
  2381. { "BSSRemoved", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2382. {
  2383. { "path", "o", ARG_OUT },
  2384. END_ARGS
  2385. }
  2386. },
  2387. { "BlobAdded", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2388. {
  2389. { "name", "s", ARG_OUT },
  2390. END_ARGS
  2391. }
  2392. },
  2393. { "BlobRemoved", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2394. {
  2395. { "name", "s", ARG_OUT },
  2396. END_ARGS
  2397. }
  2398. },
  2399. { "NetworkAdded", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2400. {
  2401. { "path", "o", ARG_OUT },
  2402. { "properties", "a{sv}", ARG_OUT },
  2403. END_ARGS
  2404. }
  2405. },
  2406. { "NetworkRemoved", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2407. {
  2408. { "path", "o", ARG_OUT },
  2409. END_ARGS
  2410. }
  2411. },
  2412. { "NetworkSelected", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2413. {
  2414. { "path", "o", ARG_OUT },
  2415. END_ARGS
  2416. }
  2417. },
  2418. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  2419. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2420. {
  2421. { "properties", "a{sv}", ARG_OUT },
  2422. END_ARGS
  2423. }
  2424. },
  2425. #ifdef CONFIG_WPS
  2426. { "Event", WPAS_DBUS_NEW_IFACE_WPS,
  2427. {
  2428. { "name", "s", ARG_OUT },
  2429. { "args", "a{sv}", ARG_OUT },
  2430. END_ARGS
  2431. }
  2432. },
  2433. { "Credentials", WPAS_DBUS_NEW_IFACE_WPS,
  2434. {
  2435. { "credentials", "a{sv}", ARG_OUT },
  2436. END_ARGS
  2437. }
  2438. },
  2439. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  2440. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_WPS,
  2441. {
  2442. { "properties", "a{sv}", ARG_OUT },
  2443. END_ARGS
  2444. }
  2445. },
  2446. #endif /* CONFIG_WPS */
  2447. #ifdef CONFIG_P2P
  2448. { "P2PStateChanged", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2449. {
  2450. { "states", "a{ss}", ARG_OUT },
  2451. END_ARGS
  2452. }
  2453. },
  2454. { "DeviceFound", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2455. {
  2456. { "path", "o", ARG_OUT },
  2457. { "properties", "a{sv}", ARG_OUT },
  2458. END_ARGS
  2459. }
  2460. },
  2461. { "DeviceLost", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2462. {
  2463. { "path", "o", ARG_OUT },
  2464. END_ARGS
  2465. }
  2466. },
  2467. { "ProvisionDiscoveryRequestDisplayPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2468. {
  2469. { "peer_object", "o", ARG_OUT },
  2470. { "pin", "s", ARG_OUT },
  2471. END_ARGS
  2472. }
  2473. },
  2474. { "ProvisionDiscoveryResponseDisplayPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2475. {
  2476. { "peer_object", "o", ARG_OUT },
  2477. { "pin", "s", ARG_OUT },
  2478. END_ARGS
  2479. }
  2480. },
  2481. { "ProvisionDiscoveryRequestEnterPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2482. {
  2483. { "peer_object", "o", ARG_OUT },
  2484. END_ARGS
  2485. }
  2486. },
  2487. { "ProvisionDiscoveryResponseEnterPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2488. {
  2489. { "peer_object", "o", ARG_OUT },
  2490. END_ARGS
  2491. }
  2492. },
  2493. { "ProvisionDiscoveryPBCRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2494. {
  2495. { "peer_object", "o", ARG_OUT },
  2496. END_ARGS
  2497. }
  2498. },
  2499. { "ProvisionDiscoveryPBCResponse", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2500. {
  2501. { "peer_object", "o", ARG_OUT },
  2502. END_ARGS
  2503. }
  2504. },
  2505. { "ProvisionDiscoveryFailure", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2506. {
  2507. { "peer_object", "o", ARG_OUT },
  2508. { "status", "i", ARG_OUT },
  2509. END_ARGS
  2510. }
  2511. },
  2512. { "GroupStarted", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2513. {
  2514. { "properties", "a{sv}", ARG_OUT },
  2515. END_ARGS
  2516. }
  2517. },
  2518. { "GONegotiationSuccess", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2519. {
  2520. END_ARGS
  2521. }
  2522. },
  2523. { "GONegotiationFailure", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2524. {
  2525. { "status", "i", ARG_OUT },
  2526. END_ARGS
  2527. }
  2528. },
  2529. { "GONegotiationRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2530. {
  2531. { "path", "o", ARG_OUT },
  2532. { "dev_passwd_id", "i", ARG_OUT },
  2533. END_ARGS
  2534. }
  2535. },
  2536. { "InvitationResult", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2537. {
  2538. { "invite_result", "a{sv}", ARG_OUT },
  2539. END_ARGS
  2540. }
  2541. },
  2542. { "GroupFinished", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2543. {
  2544. { "ifname", "s", ARG_OUT },
  2545. { "role", "s", ARG_OUT },
  2546. END_ARGS
  2547. }
  2548. },
  2549. { "ServiceDiscoveryRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2550. {
  2551. { "sd_request", "a{sv}", ARG_OUT },
  2552. END_ARGS
  2553. }
  2554. },
  2555. { "ServiceDiscoveryResponse", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2556. {
  2557. { "sd_response", "a{sv}", ARG_OUT },
  2558. END_ARGS
  2559. }
  2560. },
  2561. { "PersistentGroupAdded", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2562. {
  2563. { "path", "o", ARG_OUT },
  2564. { "properties", "a{sv}", ARG_OUT },
  2565. END_ARGS
  2566. }
  2567. },
  2568. { "PersistentGroupRemoved", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2569. {
  2570. { "path", "o", ARG_OUT },
  2571. END_ARGS
  2572. }
  2573. },
  2574. { "WpsFailed", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2575. {
  2576. { "name", "s", ARG_OUT },
  2577. { "args", "a{sv}", ARG_OUT },
  2578. END_ARGS
  2579. }
  2580. },
  2581. #endif /* CONFIG_P2P */
  2582. #ifdef CONFIG_AP
  2583. { "ProbeRequest", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2584. {
  2585. { "args", "a{sv}", ARG_OUT },
  2586. END_ARGS
  2587. }
  2588. },
  2589. #endif /* CONFIG_AP */
  2590. { "Certification", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2591. {
  2592. { "certification", "a{sv}", ARG_OUT },
  2593. END_ARGS
  2594. }
  2595. },
  2596. { "EAP", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2597. {
  2598. { "status", "s", ARG_OUT },
  2599. { "parameter", "s", ARG_OUT },
  2600. END_ARGS
  2601. }
  2602. },
  2603. { NULL, NULL, { END_ARGS } }
  2604. };
  2605. int wpas_dbus_register_interface(struct wpa_supplicant *wpa_s)
  2606. {
  2607. struct wpa_dbus_object_desc *obj_desc = NULL;
  2608. struct wpas_dbus_priv *ctrl_iface = wpa_s->global->dbus;
  2609. int next;
  2610. /* Do nothing if the control interface is not turned on */
  2611. if (ctrl_iface == NULL)
  2612. return 0;
  2613. /* Create and set the interface's object path */
  2614. wpa_s->dbus_new_path = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
  2615. if (wpa_s->dbus_new_path == NULL)
  2616. return -1;
  2617. next = ctrl_iface->next_objid++;
  2618. os_snprintf(wpa_s->dbus_new_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2619. WPAS_DBUS_NEW_PATH_INTERFACES "/%u",
  2620. next);
  2621. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  2622. if (!obj_desc) {
  2623. wpa_printf(MSG_ERROR, "Not enough memory "
  2624. "to create object description");
  2625. goto err;
  2626. }
  2627. wpas_dbus_register(obj_desc, wpa_s, NULL, wpas_dbus_interface_methods,
  2628. wpas_dbus_interface_properties,
  2629. wpas_dbus_interface_signals);
  2630. wpa_printf(MSG_DEBUG, "dbus: Register interface object '%s'",
  2631. wpa_s->dbus_new_path);
  2632. if (wpa_dbus_register_object_per_iface(ctrl_iface,
  2633. wpa_s->dbus_new_path,
  2634. wpa_s->ifname, obj_desc))
  2635. goto err;
  2636. wpas_dbus_signal_interface_added(wpa_s);
  2637. return 0;
  2638. err:
  2639. os_free(wpa_s->dbus_new_path);
  2640. wpa_s->dbus_new_path = NULL;
  2641. free_dbus_object_desc(obj_desc);
  2642. return -1;
  2643. }
  2644. int wpas_dbus_unregister_interface(struct wpa_supplicant *wpa_s)
  2645. {
  2646. struct wpas_dbus_priv *ctrl_iface;
  2647. /* Do nothing if the control interface is not turned on */
  2648. if (wpa_s == NULL || wpa_s->global == NULL)
  2649. return 0;
  2650. ctrl_iface = wpa_s->global->dbus;
  2651. if (ctrl_iface == NULL)
  2652. return 0;
  2653. wpa_printf(MSG_DEBUG, "dbus: Unregister interface object '%s'",
  2654. wpa_s->dbus_new_path);
  2655. #ifdef CONFIG_AP
  2656. if (wpa_s->preq_notify_peer) {
  2657. wpas_dbus_unsubscribe_noc(ctrl_iface);
  2658. os_free(wpa_s->preq_notify_peer);
  2659. wpa_s->preq_notify_peer = NULL;
  2660. }
  2661. #endif /* CONFIG_AP */
  2662. if (wpa_dbus_unregister_object_per_iface(ctrl_iface,
  2663. wpa_s->dbus_new_path))
  2664. return -1;
  2665. wpas_dbus_signal_interface_removed(wpa_s);
  2666. os_free(wpa_s->dbus_new_path);
  2667. wpa_s->dbus_new_path = NULL;
  2668. return 0;
  2669. }
  2670. #ifdef CONFIG_P2P
  2671. static const struct wpa_dbus_property_desc wpas_dbus_p2p_peer_properties[] = {
  2672. { "DeviceName", WPAS_DBUS_NEW_IFACE_P2P_PEER, "s",
  2673. wpas_dbus_getter_p2p_peer_device_name,
  2674. NULL
  2675. },
  2676. { "PrimaryDeviceType", WPAS_DBUS_NEW_IFACE_P2P_PEER, "ay",
  2677. wpas_dbus_getter_p2p_peer_primary_device_type,
  2678. NULL
  2679. },
  2680. { "config_method", WPAS_DBUS_NEW_IFACE_P2P_PEER, "q",
  2681. wpas_dbus_getter_p2p_peer_config_method,
  2682. NULL
  2683. },
  2684. { "level", WPAS_DBUS_NEW_IFACE_P2P_PEER, "i",
  2685. wpas_dbus_getter_p2p_peer_level,
  2686. NULL
  2687. },
  2688. { "devicecapability", WPAS_DBUS_NEW_IFACE_P2P_PEER, "y",
  2689. wpas_dbus_getter_p2p_peer_device_capability,
  2690. NULL
  2691. },
  2692. { "groupcapability", WPAS_DBUS_NEW_IFACE_P2P_PEER, "y",
  2693. wpas_dbus_getter_p2p_peer_group_capability,
  2694. NULL
  2695. },
  2696. { "SecondaryDeviceTypes", WPAS_DBUS_NEW_IFACE_P2P_PEER, "aay",
  2697. wpas_dbus_getter_p2p_peer_secondary_device_types,
  2698. NULL
  2699. },
  2700. { "VendorExtension", WPAS_DBUS_NEW_IFACE_P2P_PEER, "aay",
  2701. wpas_dbus_getter_p2p_peer_vendor_extension,
  2702. NULL
  2703. },
  2704. { "IEs", WPAS_DBUS_NEW_IFACE_P2P_PEER, "ay",
  2705. wpas_dbus_getter_p2p_peer_ies,
  2706. NULL
  2707. },
  2708. { NULL, NULL, NULL, NULL, NULL }
  2709. };
  2710. static const struct wpa_dbus_signal_desc wpas_dbus_p2p_peer_signals[] = {
  2711. { NULL, NULL, { END_ARGS } }
  2712. };
  2713. /**
  2714. * wpas_dbus_signal_peer - Send a peer related event signal
  2715. * @wpa_s: %wpa_supplicant network interface data
  2716. * @dev: peer device object
  2717. * @interface: name of the interface emitting this signal.
  2718. * In case of peer objects, it would be emitted by either
  2719. * the "interface object" or by "peer objects"
  2720. * @sig_name: signal name - DeviceFound
  2721. *
  2722. * Notify listeners about event related with newly found p2p peer device
  2723. */
  2724. static void wpas_dbus_signal_peer(struct wpa_supplicant *wpa_s,
  2725. const u8 *dev_addr, const char *interface,
  2726. const char *sig_name)
  2727. {
  2728. struct wpas_dbus_priv *iface;
  2729. DBusMessage *msg;
  2730. DBusMessageIter iter;
  2731. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  2732. iface = wpa_s->global->dbus;
  2733. /* Do nothing if the control interface is not turned on */
  2734. if (iface == NULL)
  2735. return;
  2736. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2737. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  2738. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  2739. msg = dbus_message_new_signal(wpa_s->dbus_new_path, interface,
  2740. sig_name);
  2741. if (msg == NULL)
  2742. return;
  2743. dbus_message_iter_init_append(msg, &iter);
  2744. path = peer_obj_path;
  2745. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  2746. &path))
  2747. goto err;
  2748. dbus_connection_send(iface->con, msg, NULL);
  2749. dbus_message_unref(msg);
  2750. return;
  2751. err:
  2752. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  2753. dbus_message_unref(msg);
  2754. }
  2755. /**
  2756. * wpas_dbus_signal_peer_found - Send a peer found signal
  2757. * @wpa_s: %wpa_supplicant network interface data
  2758. * @dev: peer device object
  2759. *
  2760. * Notify listeners about find a p2p peer device found
  2761. */
  2762. void wpas_dbus_signal_peer_device_found(struct wpa_supplicant *wpa_s,
  2763. const u8 *dev_addr)
  2764. {
  2765. wpas_dbus_signal_peer(wpa_s, dev_addr,
  2766. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2767. "DeviceFound");
  2768. }
  2769. /**
  2770. * wpas_dbus_signal_peer_lost - Send a peer lost signal
  2771. * @wpa_s: %wpa_supplicant network interface data
  2772. * @dev: peer device object
  2773. *
  2774. * Notify listeners about lost a p2p peer device
  2775. */
  2776. void wpas_dbus_signal_peer_device_lost(struct wpa_supplicant *wpa_s,
  2777. const u8 *dev_addr)
  2778. {
  2779. wpas_dbus_signal_peer(wpa_s, dev_addr,
  2780. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2781. "DeviceLost");
  2782. }
  2783. /**
  2784. * wpas_dbus_register_peer - Register a discovered peer object with dbus
  2785. * @wpa_s: wpa_supplicant interface structure
  2786. * @ssid: network configuration data
  2787. * Returns: 0 on success, -1 on failure
  2788. *
  2789. * Registers network representing object with dbus
  2790. */
  2791. int wpas_dbus_register_peer(struct wpa_supplicant *wpa_s, const u8 *dev_addr)
  2792. {
  2793. struct wpas_dbus_priv *ctrl_iface;
  2794. struct wpa_dbus_object_desc *obj_desc;
  2795. struct peer_handler_args *arg;
  2796. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  2797. /* Do nothing if the control interface is not turned on */
  2798. if (wpa_s == NULL || wpa_s->global == NULL)
  2799. return 0;
  2800. ctrl_iface = wpa_s->global->dbus;
  2801. if (ctrl_iface == NULL)
  2802. return 0;
  2803. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2804. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  2805. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  2806. wpa_printf(MSG_INFO, "dbus: Register peer object '%s'",
  2807. peer_obj_path);
  2808. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  2809. if (!obj_desc) {
  2810. wpa_printf(MSG_ERROR, "Not enough memory "
  2811. "to create object description");
  2812. goto err;
  2813. }
  2814. /* allocate memory for handlers arguments */
  2815. arg = os_zalloc(sizeof(struct peer_handler_args));
  2816. if (!arg) {
  2817. wpa_printf(MSG_ERROR, "Not enough memory "
  2818. "to create arguments for method");
  2819. goto err;
  2820. }
  2821. arg->wpa_s = wpa_s;
  2822. os_memcpy(arg->p2p_device_addr, dev_addr, ETH_ALEN);
  2823. wpas_dbus_register(obj_desc, arg, wpa_dbus_free,
  2824. NULL,
  2825. wpas_dbus_p2p_peer_properties,
  2826. wpas_dbus_p2p_peer_signals);
  2827. if (wpa_dbus_register_object_per_iface(ctrl_iface, peer_obj_path,
  2828. wpa_s->ifname, obj_desc))
  2829. goto err;
  2830. return 0;
  2831. err:
  2832. free_dbus_object_desc(obj_desc);
  2833. return -1;
  2834. }
  2835. /**
  2836. * wpas_dbus_unregister_peer - Unregister a peer object with dbus
  2837. * @wpa_s: wpa_supplicant interface structure
  2838. * @dev_addr: p2p device addr
  2839. * Returns: 0 on success, -1 on failure
  2840. *
  2841. * Registers network representing object with dbus
  2842. */
  2843. int wpas_dbus_unregister_peer(struct wpa_supplicant *wpa_s,
  2844. const u8 *dev_addr)
  2845. {
  2846. struct wpas_dbus_priv *ctrl_iface;
  2847. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  2848. int ret;
  2849. /* Do nothing if the control interface is not turned on */
  2850. if (wpa_s == NULL || wpa_s->global == NULL ||
  2851. wpa_s->dbus_new_path == NULL)
  2852. return 0;
  2853. ctrl_iface = wpa_s->global->dbus;
  2854. if (ctrl_iface == NULL)
  2855. return 0;
  2856. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2857. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  2858. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  2859. wpa_printf(MSG_INFO, "dbus: Unregister peer object '%s'",
  2860. peer_obj_path);
  2861. ret = wpa_dbus_unregister_object_per_iface(ctrl_iface, peer_obj_path);
  2862. return ret;
  2863. }
  2864. static const struct wpa_dbus_property_desc wpas_dbus_p2p_group_properties[] = {
  2865. { "Members", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ao",
  2866. wpas_dbus_getter_p2p_group_members,
  2867. NULL
  2868. },
  2869. { "Group", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "o",
  2870. wpas_dbus_getter_p2p_group,
  2871. NULL
  2872. },
  2873. { "Role", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "s",
  2874. wpas_dbus_getter_p2p_role,
  2875. NULL
  2876. },
  2877. { "SSID", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ay",
  2878. wpas_dbus_getter_p2p_group_ssid,
  2879. NULL
  2880. },
  2881. { "BSSID", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ay",
  2882. wpas_dbus_getter_p2p_group_bssid,
  2883. NULL
  2884. },
  2885. { "Frequency", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "q",
  2886. wpas_dbus_getter_p2p_group_frequency,
  2887. NULL
  2888. },
  2889. { "Passphrase", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "s",
  2890. wpas_dbus_getter_p2p_group_passphrase,
  2891. NULL
  2892. },
  2893. { "PSK", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ay",
  2894. wpas_dbus_getter_p2p_group_psk,
  2895. NULL
  2896. },
  2897. { "WPSVendorExtensions", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "aay",
  2898. wpas_dbus_getter_p2p_group_vendor_ext,
  2899. wpas_dbus_setter_p2p_group_vendor_ext
  2900. },
  2901. { NULL, NULL, NULL, NULL, NULL }
  2902. };
  2903. static const struct wpa_dbus_signal_desc wpas_dbus_p2p_group_signals[] = {
  2904. { "PeerJoined", WPAS_DBUS_NEW_IFACE_P2P_GROUP,
  2905. {
  2906. { "peer", "o", ARG_OUT },
  2907. END_ARGS
  2908. }
  2909. },
  2910. { "PeerDisconnected", WPAS_DBUS_NEW_IFACE_P2P_GROUP,
  2911. {
  2912. { "peer", "o", ARG_OUT },
  2913. END_ARGS
  2914. }
  2915. },
  2916. { NULL, NULL, { END_ARGS } }
  2917. };
  2918. /**
  2919. * wpas_dbus_register_p2p_group - Register a p2p group object with dbus
  2920. * @wpa_s: wpa_supplicant interface structure
  2921. * @ssid: SSID struct
  2922. * Returns: 0 on success, -1 on failure
  2923. *
  2924. * Registers p2p group representing object with dbus
  2925. */
  2926. void wpas_dbus_register_p2p_group(struct wpa_supplicant *wpa_s,
  2927. struct wpa_ssid *ssid)
  2928. {
  2929. struct wpas_dbus_priv *ctrl_iface;
  2930. struct wpa_dbus_object_desc *obj_desc;
  2931. char group_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  2932. /* Do nothing if the control interface is not turned on */
  2933. if (wpa_s == NULL || wpa_s->global == NULL)
  2934. return;
  2935. ctrl_iface = wpa_s->global->dbus;
  2936. if (ctrl_iface == NULL)
  2937. return;
  2938. if (wpa_s->dbus_groupobj_path) {
  2939. wpa_printf(MSG_INFO, "%s: Group object '%s' already exists",
  2940. __func__, wpa_s->dbus_groupobj_path);
  2941. return;
  2942. }
  2943. if (wpas_dbus_get_group_obj_path(wpa_s, ssid, group_obj_path) < 0)
  2944. return;
  2945. wpa_s->dbus_groupobj_path = os_strdup(group_obj_path);
  2946. if (wpa_s->dbus_groupobj_path == NULL)
  2947. return;
  2948. wpa_printf(MSG_INFO, "dbus: Register group object '%s'",
  2949. group_obj_path);
  2950. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  2951. if (!obj_desc) {
  2952. wpa_printf(MSG_ERROR, "Not enough memory "
  2953. "to create object description");
  2954. goto err;
  2955. }
  2956. wpas_dbus_register(obj_desc, wpa_s, NULL, NULL,
  2957. wpas_dbus_p2p_group_properties,
  2958. wpas_dbus_p2p_group_signals);
  2959. if (wpa_dbus_register_object_per_iface(ctrl_iface, group_obj_path,
  2960. wpa_s->ifname, obj_desc))
  2961. goto err;
  2962. return;
  2963. err:
  2964. if (wpa_s->dbus_groupobj_path) {
  2965. os_free(wpa_s->dbus_groupobj_path);
  2966. wpa_s->dbus_groupobj_path = NULL;
  2967. }
  2968. free_dbus_object_desc(obj_desc);
  2969. }
  2970. /**
  2971. * wpas_dbus_unregister_p2p_group - Unregister a p2p group object from dbus
  2972. * @wpa_s: wpa_supplicant interface structure
  2973. * @ssid: network name of the p2p group started
  2974. */
  2975. void wpas_dbus_unregister_p2p_group(struct wpa_supplicant *wpa_s,
  2976. const struct wpa_ssid *ssid)
  2977. {
  2978. struct wpas_dbus_priv *ctrl_iface;
  2979. /* Do nothing if the control interface is not turned on */
  2980. if (wpa_s == NULL || wpa_s->global == NULL)
  2981. return;
  2982. ctrl_iface = wpa_s->global->dbus;
  2983. if (ctrl_iface == NULL)
  2984. return;
  2985. if (!wpa_s->dbus_groupobj_path) {
  2986. wpa_printf(MSG_DEBUG,
  2987. "%s: Group object '%s' already unregistered",
  2988. __func__, wpa_s->dbus_groupobj_path);
  2989. return;
  2990. }
  2991. wpa_printf(MSG_DEBUG, "dbus: Unregister group object '%s'",
  2992. wpa_s->dbus_groupobj_path);
  2993. wpa_dbus_unregister_object_per_iface(ctrl_iface,
  2994. wpa_s->dbus_groupobj_path);
  2995. os_free(wpa_s->dbus_groupobj_path);
  2996. wpa_s->dbus_groupobj_path = NULL;
  2997. }
  2998. static const struct wpa_dbus_property_desc
  2999. wpas_dbus_p2p_groupmember_properties[] = {
  3000. { NULL, NULL, NULL, NULL, NULL }
  3001. };
  3002. /**
  3003. * wpas_dbus_register_p2p_groupmember - Register a p2p groupmember
  3004. * object with dbus
  3005. * @wpa_s: wpa_supplicant interface structure
  3006. * @p2p_if_addr: i/f addr of the device joining this group
  3007. *
  3008. * Registers p2p groupmember representing object with dbus
  3009. */
  3010. void wpas_dbus_register_p2p_groupmember(struct wpa_supplicant *wpa_s,
  3011. const u8 *p2p_if_addr)
  3012. {
  3013. struct wpas_dbus_priv *ctrl_iface;
  3014. struct wpa_dbus_object_desc *obj_desc = NULL;
  3015. struct groupmember_handler_args *arg;
  3016. char groupmember_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  3017. /* Do nothing if the control interface is not turned on */
  3018. if (wpa_s == NULL || wpa_s->global == NULL)
  3019. return;
  3020. ctrl_iface = wpa_s->global->dbus;
  3021. if (ctrl_iface == NULL)
  3022. return;
  3023. if (!wpa_s->dbus_groupobj_path)
  3024. return;
  3025. os_snprintf(groupmember_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  3026. "%s/" WPAS_DBUS_NEW_P2P_GROUPMEMBERS_PART "/" COMPACT_MACSTR,
  3027. wpa_s->dbus_groupobj_path, MAC2STR(p2p_if_addr));
  3028. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  3029. if (!obj_desc) {
  3030. wpa_printf(MSG_ERROR, "Not enough memory "
  3031. "to create object description");
  3032. goto err;
  3033. }
  3034. /* allocate memory for handlers arguments */
  3035. arg = os_zalloc(sizeof(struct groupmember_handler_args));
  3036. if (!arg) {
  3037. wpa_printf(MSG_ERROR, "Not enough memory "
  3038. "to create arguments for method");
  3039. goto err;
  3040. }
  3041. arg->wpa_s = wpa_s;
  3042. os_memcpy(arg->member_addr, p2p_if_addr, ETH_ALEN);
  3043. wpas_dbus_register(obj_desc, arg, wpa_dbus_free, NULL,
  3044. wpas_dbus_p2p_groupmember_properties, NULL);
  3045. if (wpa_dbus_register_object_per_iface(ctrl_iface, groupmember_obj_path,
  3046. wpa_s->ifname, obj_desc))
  3047. goto err;
  3048. wpa_printf(MSG_INFO,
  3049. "dbus: Registered group member object '%s' successfully",
  3050. groupmember_obj_path);
  3051. return;
  3052. err:
  3053. free_dbus_object_desc(obj_desc);
  3054. }
  3055. /**
  3056. * wpas_dbus_unregister_p2p_groupmember - Unregister a p2p groupmember
  3057. * object with dbus
  3058. * @wpa_s: wpa_supplicant interface structure
  3059. * @p2p_if_addr: i/f addr of the device joining this group
  3060. *
  3061. * Unregisters p2p groupmember representing object with dbus
  3062. */
  3063. void wpas_dbus_unregister_p2p_groupmember(struct wpa_supplicant *wpa_s,
  3064. const u8 *p2p_if_addr)
  3065. {
  3066. struct wpas_dbus_priv *ctrl_iface;
  3067. char groupmember_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  3068. /* Do nothing if the control interface is not turned on */
  3069. if (wpa_s == NULL || wpa_s->global == NULL)
  3070. return;
  3071. ctrl_iface = wpa_s->global->dbus;
  3072. if (ctrl_iface == NULL)
  3073. return;
  3074. if (!wpa_s->dbus_groupobj_path)
  3075. return;
  3076. os_snprintf(groupmember_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  3077. "%s/" WPAS_DBUS_NEW_P2P_GROUPMEMBERS_PART "/" COMPACT_MACSTR,
  3078. wpa_s->dbus_groupobj_path, MAC2STR(p2p_if_addr));
  3079. wpa_dbus_unregister_object_per_iface(ctrl_iface, groupmember_obj_path);
  3080. }
  3081. static const struct wpa_dbus_property_desc
  3082. wpas_dbus_persistent_group_properties[] = {
  3083. { "Properties", WPAS_DBUS_NEW_IFACE_PERSISTENT_GROUP, "a{sv}",
  3084. wpas_dbus_getter_persistent_group_properties,
  3085. wpas_dbus_setter_persistent_group_properties
  3086. },
  3087. { NULL, NULL, NULL, NULL, NULL }
  3088. };
  3089. /* No signals intended for persistent group objects */
  3090. /**
  3091. * wpas_dbus_register_persistent_group - Register a configured(saved)
  3092. * persistent group with dbus
  3093. * @wpa_s: wpa_supplicant interface structure
  3094. * @ssid: persistent group (still represented as a network within wpa)
  3095. * configuration data
  3096. * Returns: 0 on success, -1 on failure
  3097. *
  3098. * Registers a persistent group representing object with dbus.
  3099. */
  3100. int wpas_dbus_register_persistent_group(struct wpa_supplicant *wpa_s,
  3101. struct wpa_ssid *ssid)
  3102. {
  3103. struct wpas_dbus_priv *ctrl_iface;
  3104. struct wpa_dbus_object_desc *obj_desc;
  3105. struct network_handler_args *arg;
  3106. char pgrp_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  3107. /* Do nothing if the control interface is not turned on */
  3108. if (wpa_s == NULL || wpa_s->global == NULL)
  3109. return 0;
  3110. /* Make sure ssid is a persistent group */
  3111. if (ssid->disabled != 2 && !ssid->p2p_persistent_group)
  3112. return -1; /* should we return w/o complaining? */
  3113. ctrl_iface = wpa_s->global->dbus;
  3114. if (ctrl_iface == NULL)
  3115. return 0;
  3116. /*
  3117. * Intentionally not coming up with different numbering scheme
  3118. * for persistent groups.
  3119. */
  3120. os_snprintf(pgrp_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  3121. "%s/" WPAS_DBUS_NEW_PERSISTENT_GROUPS_PART "/%u",
  3122. wpa_s->dbus_new_path, ssid->id);
  3123. wpa_printf(MSG_DEBUG, "dbus: Register persistent group object '%s'",
  3124. pgrp_obj_path);
  3125. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  3126. if (!obj_desc) {
  3127. wpa_printf(MSG_ERROR, "dbus: Not enough memory to create "
  3128. "object description");
  3129. goto err;
  3130. }
  3131. /*
  3132. * Reusing the same context structure as that for networks
  3133. * since these are represented using same data structure.
  3134. */
  3135. /* allocate memory for handlers arguments */
  3136. arg = os_zalloc(sizeof(struct network_handler_args));
  3137. if (!arg) {
  3138. wpa_printf(MSG_ERROR, "dbus: Not enough memory to create "
  3139. "arguments for method");
  3140. goto err;
  3141. }
  3142. arg->wpa_s = wpa_s;
  3143. arg->ssid = ssid;
  3144. wpas_dbus_register(obj_desc, arg, wpa_dbus_free, NULL,
  3145. wpas_dbus_persistent_group_properties,
  3146. NULL);
  3147. if (wpa_dbus_register_object_per_iface(ctrl_iface, pgrp_obj_path,
  3148. wpa_s->ifname, obj_desc))
  3149. goto err;
  3150. wpas_dbus_signal_persistent_group_added(wpa_s, ssid->id);
  3151. return 0;
  3152. err:
  3153. free_dbus_object_desc(obj_desc);
  3154. return -1;
  3155. }
  3156. /**
  3157. * wpas_dbus_unregister_persistent_group - Unregister a persistent_group
  3158. * from dbus
  3159. * @wpa_s: wpa_supplicant interface structure
  3160. * @nid: network id
  3161. * Returns: 0 on success, -1 on failure
  3162. *
  3163. * Unregisters persistent group representing object from dbus
  3164. *
  3165. * NOTE: There is a slight issue with the semantics here. While the
  3166. * implementation simply means the persistent group is unloaded from memory,
  3167. * it should not get interpreted as the group is actually being erased/removed
  3168. * from persistent storage as well.
  3169. */
  3170. int wpas_dbus_unregister_persistent_group(struct wpa_supplicant *wpa_s,
  3171. int nid)
  3172. {
  3173. struct wpas_dbus_priv *ctrl_iface;
  3174. char pgrp_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. wpa_s->dbus_new_path == NULL)
  3179. return 0;
  3180. ctrl_iface = wpa_s->global->dbus;
  3181. if (ctrl_iface == NULL)
  3182. return 0;
  3183. os_snprintf(pgrp_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  3184. "%s/" WPAS_DBUS_NEW_PERSISTENT_GROUPS_PART "/%u",
  3185. wpa_s->dbus_new_path, nid);
  3186. wpa_printf(MSG_DEBUG, "dbus: Unregister persistent group object '%s'",
  3187. pgrp_obj_path);
  3188. ret = wpa_dbus_unregister_object_per_iface(ctrl_iface, pgrp_obj_path);
  3189. if (!ret)
  3190. wpas_dbus_signal_persistent_group_removed(wpa_s, nid);
  3191. return ret;
  3192. }
  3193. #endif /* CONFIG_P2P */