dbus_new.c 85 KB

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