dbus_new.c 102 KB

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