dbus_new.c 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300
  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. char *prop;
  1207. if (wpa_s->dbus_new_path == NULL)
  1208. return; /* Skip signal since D-Bus setup is not yet ready */
  1209. switch (property) {
  1210. case WPAS_DBUS_PROP_AP_SCAN:
  1211. prop = "ApScan";
  1212. break;
  1213. case WPAS_DBUS_PROP_SCANNING:
  1214. prop = "Scanning";
  1215. break;
  1216. case WPAS_DBUS_PROP_STATE:
  1217. prop = "State";
  1218. break;
  1219. case WPAS_DBUS_PROP_CURRENT_BSS:
  1220. prop = "CurrentBSS";
  1221. break;
  1222. case WPAS_DBUS_PROP_CURRENT_NETWORK:
  1223. prop = "CurrentNetwork";
  1224. break;
  1225. case WPAS_DBUS_PROP_BSSS:
  1226. prop = "BSSs";
  1227. break;
  1228. case WPAS_DBUS_PROP_CURRENT_AUTH_MODE:
  1229. prop = "CurrentAuthMode";
  1230. break;
  1231. default:
  1232. wpa_printf(MSG_ERROR, "dbus: %s: Unknown Property value %d",
  1233. __func__, property);
  1234. return;
  1235. }
  1236. wpa_dbus_mark_property_changed(wpa_s->global->dbus,
  1237. wpa_s->dbus_new_path,
  1238. WPAS_DBUS_NEW_IFACE_INTERFACE, prop);
  1239. }
  1240. /**
  1241. * wpas_dbus_bss_signal_prop_changed - Signals change of BSS property
  1242. * @wpa_s: %wpa_supplicant network interface data
  1243. * @property: indicates which property has changed
  1244. * @id: unique BSS identifier
  1245. *
  1246. * Sends PropertyChanged signals with path, interface, and arguments depending
  1247. * on which property has changed.
  1248. */
  1249. void wpas_dbus_bss_signal_prop_changed(struct wpa_supplicant *wpa_s,
  1250. enum wpas_dbus_bss_prop property,
  1251. unsigned int id)
  1252. {
  1253. char path[WPAS_DBUS_OBJECT_PATH_MAX];
  1254. char *prop;
  1255. switch (property) {
  1256. case WPAS_DBUS_BSS_PROP_SIGNAL:
  1257. prop = "Signal";
  1258. break;
  1259. case WPAS_DBUS_BSS_PROP_FREQ:
  1260. prop = "Frequency";
  1261. break;
  1262. case WPAS_DBUS_BSS_PROP_MODE:
  1263. prop = "Mode";
  1264. break;
  1265. case WPAS_DBUS_BSS_PROP_PRIVACY:
  1266. prop = "Privacy";
  1267. break;
  1268. case WPAS_DBUS_BSS_PROP_RATES:
  1269. prop = "Rates";
  1270. break;
  1271. case WPAS_DBUS_BSS_PROP_WPA:
  1272. prop = "WPA";
  1273. break;
  1274. case WPAS_DBUS_BSS_PROP_RSN:
  1275. prop = "RSN";
  1276. break;
  1277. case WPAS_DBUS_BSS_PROP_IES:
  1278. prop = "IEs";
  1279. break;
  1280. default:
  1281. wpa_printf(MSG_ERROR, "dbus: %s: Unknown Property value %d",
  1282. __func__, property);
  1283. return;
  1284. }
  1285. os_snprintf(path, WPAS_DBUS_OBJECT_PATH_MAX,
  1286. "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
  1287. wpa_s->dbus_new_path, id);
  1288. wpa_dbus_mark_property_changed(wpa_s->global->dbus, path,
  1289. WPAS_DBUS_NEW_IFACE_BSS, prop);
  1290. }
  1291. /**
  1292. * wpas_dbus_signal_debug_level_changed - Signals change of debug param
  1293. * @global: wpa_global structure
  1294. *
  1295. * Sends PropertyChanged signals informing that debug level has changed.
  1296. */
  1297. void wpas_dbus_signal_debug_level_changed(struct wpa_global *global)
  1298. {
  1299. wpa_dbus_mark_property_changed(global->dbus, WPAS_DBUS_NEW_PATH,
  1300. WPAS_DBUS_NEW_INTERFACE,
  1301. "DebugLevel");
  1302. }
  1303. /**
  1304. * wpas_dbus_signal_debug_timestamp_changed - Signals change of debug param
  1305. * @global: wpa_global structure
  1306. *
  1307. * Sends PropertyChanged signals informing that debug timestamp has changed.
  1308. */
  1309. void wpas_dbus_signal_debug_timestamp_changed(struct wpa_global *global)
  1310. {
  1311. wpa_dbus_mark_property_changed(global->dbus, WPAS_DBUS_NEW_PATH,
  1312. WPAS_DBUS_NEW_INTERFACE,
  1313. "DebugTimestamp");
  1314. }
  1315. /**
  1316. * wpas_dbus_signal_debug_show_keys_changed - Signals change of debug param
  1317. * @global: wpa_global structure
  1318. *
  1319. * Sends PropertyChanged signals informing that debug show_keys has changed.
  1320. */
  1321. void wpas_dbus_signal_debug_show_keys_changed(struct wpa_global *global)
  1322. {
  1323. wpa_dbus_mark_property_changed(global->dbus, WPAS_DBUS_NEW_PATH,
  1324. WPAS_DBUS_NEW_INTERFACE,
  1325. "DebugShowKeys");
  1326. }
  1327. static void wpas_dbus_register(struct wpa_dbus_object_desc *obj_desc,
  1328. void *priv,
  1329. WPADBusArgumentFreeFunction priv_free,
  1330. const struct wpa_dbus_method_desc *methods,
  1331. const struct wpa_dbus_property_desc *properties,
  1332. const struct wpa_dbus_signal_desc *signals)
  1333. {
  1334. int n;
  1335. obj_desc->user_data = priv;
  1336. obj_desc->user_data_free_func = priv_free;
  1337. obj_desc->methods = methods;
  1338. obj_desc->properties = properties;
  1339. obj_desc->signals = signals;
  1340. for (n = 0; properties && properties->dbus_property; properties++)
  1341. n++;
  1342. obj_desc->prop_changed_flags = os_zalloc(n);
  1343. if (!obj_desc->prop_changed_flags)
  1344. wpa_printf(MSG_DEBUG, "dbus: %s: can't register handlers",
  1345. __func__);
  1346. }
  1347. static const struct wpa_dbus_method_desc wpas_dbus_global_methods[] = {
  1348. { "CreateInterface", WPAS_DBUS_NEW_INTERFACE,
  1349. (WPADBusMethodHandler) &wpas_dbus_handler_create_interface,
  1350. {
  1351. { "args", "a{sv}", ARG_IN },
  1352. { "path", "o", ARG_OUT },
  1353. END_ARGS
  1354. }
  1355. },
  1356. { "RemoveInterface", WPAS_DBUS_NEW_INTERFACE,
  1357. (WPADBusMethodHandler) &wpas_dbus_handler_remove_interface,
  1358. {
  1359. { "path", "o", ARG_IN },
  1360. END_ARGS
  1361. }
  1362. },
  1363. { "GetInterface", WPAS_DBUS_NEW_INTERFACE,
  1364. (WPADBusMethodHandler) &wpas_dbus_handler_get_interface,
  1365. {
  1366. { "ifname", "s", ARG_IN },
  1367. { "path", "o", ARG_OUT },
  1368. END_ARGS
  1369. }
  1370. },
  1371. { NULL, NULL, NULL, { END_ARGS } }
  1372. };
  1373. static const struct wpa_dbus_property_desc wpas_dbus_global_properties[] = {
  1374. { "DebugLevel", WPAS_DBUS_NEW_INTERFACE, "s",
  1375. wpas_dbus_getter_debug_level,
  1376. wpas_dbus_setter_debug_level
  1377. },
  1378. { "DebugTimestamp", WPAS_DBUS_NEW_INTERFACE, "b",
  1379. wpas_dbus_getter_debug_timestamp,
  1380. wpas_dbus_setter_debug_timestamp
  1381. },
  1382. { "DebugShowKeys", WPAS_DBUS_NEW_INTERFACE, "b",
  1383. wpas_dbus_getter_debug_show_keys,
  1384. wpas_dbus_setter_debug_show_keys
  1385. },
  1386. { "Interfaces", WPAS_DBUS_NEW_INTERFACE, "ao",
  1387. wpas_dbus_getter_interfaces,
  1388. NULL
  1389. },
  1390. { "EapMethods", WPAS_DBUS_NEW_INTERFACE, "as",
  1391. wpas_dbus_getter_eap_methods,
  1392. NULL
  1393. },
  1394. { NULL, NULL, NULL, NULL, NULL }
  1395. };
  1396. static const struct wpa_dbus_signal_desc wpas_dbus_global_signals[] = {
  1397. { "InterfaceAdded", WPAS_DBUS_NEW_INTERFACE,
  1398. {
  1399. { "path", "o", ARG_OUT },
  1400. { "properties", "a{sv}", ARG_OUT },
  1401. END_ARGS
  1402. }
  1403. },
  1404. { "InterfaceRemoved", WPAS_DBUS_NEW_INTERFACE,
  1405. {
  1406. { "path", "o", ARG_OUT },
  1407. END_ARGS
  1408. }
  1409. },
  1410. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  1411. { "PropertiesChanged", WPAS_DBUS_NEW_INTERFACE,
  1412. {
  1413. { "properties", "a{sv}", ARG_OUT },
  1414. END_ARGS
  1415. }
  1416. },
  1417. { NULL, NULL, { END_ARGS } }
  1418. };
  1419. /**
  1420. * wpas_dbus_ctrl_iface_init - Initialize dbus control interface
  1421. * @global: Pointer to global data from wpa_supplicant_init()
  1422. * Returns: 0 on success or -1 on failure
  1423. *
  1424. * Initialize the dbus control interface for wpa_supplicantand and start
  1425. * receiving commands from external programs over the bus.
  1426. */
  1427. int wpas_dbus_ctrl_iface_init(struct wpas_dbus_priv *priv)
  1428. {
  1429. struct wpa_dbus_object_desc *obj_desc;
  1430. int ret;
  1431. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  1432. if (!obj_desc) {
  1433. wpa_printf(MSG_ERROR, "Not enough memory "
  1434. "to create object description");
  1435. return -1;
  1436. }
  1437. wpas_dbus_register(obj_desc, priv->global, NULL,
  1438. wpas_dbus_global_methods,
  1439. wpas_dbus_global_properties,
  1440. wpas_dbus_global_signals);
  1441. wpa_printf(MSG_DEBUG, "dbus: Register D-Bus object '%s'",
  1442. WPAS_DBUS_NEW_PATH);
  1443. ret = wpa_dbus_ctrl_iface_init(priv, WPAS_DBUS_NEW_PATH,
  1444. WPAS_DBUS_NEW_SERVICE,
  1445. obj_desc);
  1446. if (ret < 0)
  1447. free_dbus_object_desc(obj_desc);
  1448. else
  1449. priv->dbus_new_initialized = 1;
  1450. return ret;
  1451. }
  1452. /**
  1453. * wpas_dbus_ctrl_iface_deinit - Deinitialize dbus ctrl interface for
  1454. * wpa_supplicant
  1455. * @iface: Pointer to dbus private data from wpas_dbus_init()
  1456. *
  1457. * Deinitialize the dbus control interface that was initialized with
  1458. * wpas_dbus_ctrl_iface_init().
  1459. */
  1460. void wpas_dbus_ctrl_iface_deinit(struct wpas_dbus_priv *iface)
  1461. {
  1462. if (!iface->dbus_new_initialized)
  1463. return;
  1464. wpa_printf(MSG_DEBUG, "dbus: Unregister D-Bus object '%s'",
  1465. WPAS_DBUS_NEW_PATH);
  1466. dbus_connection_unregister_object_path(iface->con,
  1467. WPAS_DBUS_NEW_PATH);
  1468. }
  1469. static void wpa_dbus_free(void *ptr)
  1470. {
  1471. os_free(ptr);
  1472. }
  1473. static const struct wpa_dbus_property_desc wpas_dbus_network_properties[] = {
  1474. { "Properties", WPAS_DBUS_NEW_IFACE_NETWORK, "a{sv}",
  1475. wpas_dbus_getter_network_properties,
  1476. wpas_dbus_setter_network_properties
  1477. },
  1478. { "Enabled", WPAS_DBUS_NEW_IFACE_NETWORK, "b",
  1479. wpas_dbus_getter_enabled,
  1480. wpas_dbus_setter_enabled
  1481. },
  1482. { NULL, NULL, NULL, NULL, NULL }
  1483. };
  1484. static const struct wpa_dbus_signal_desc wpas_dbus_network_signals[] = {
  1485. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  1486. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_NETWORK,
  1487. {
  1488. { "properties", "a{sv}", ARG_OUT },
  1489. END_ARGS
  1490. }
  1491. },
  1492. { NULL, NULL, { END_ARGS } }
  1493. };
  1494. /**
  1495. * wpas_dbus_register_network - Register a configured network with dbus
  1496. * @wpa_s: wpa_supplicant interface structure
  1497. * @ssid: network configuration data
  1498. * Returns: 0 on success, -1 on failure
  1499. *
  1500. * Registers network representing object with dbus
  1501. */
  1502. int wpas_dbus_register_network(struct wpa_supplicant *wpa_s,
  1503. struct wpa_ssid *ssid)
  1504. {
  1505. struct wpas_dbus_priv *ctrl_iface;
  1506. struct wpa_dbus_object_desc *obj_desc;
  1507. struct network_handler_args *arg;
  1508. char net_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  1509. #ifdef CONFIG_P2P
  1510. /*
  1511. * If it is a persistent group register it as such.
  1512. * This is to handle cases where an interface is being initialized
  1513. * with a list of networks read from config.
  1514. */
  1515. if (network_is_persistent_group(ssid))
  1516. return wpas_dbus_register_persistent_group(wpa_s, ssid);
  1517. #endif /* CONFIG_P2P */
  1518. /* Do nothing if the control interface is not turned on */
  1519. if (wpa_s == NULL || wpa_s->global == NULL)
  1520. return 0;
  1521. ctrl_iface = wpa_s->global->dbus;
  1522. if (ctrl_iface == NULL)
  1523. return 0;
  1524. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1525. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u",
  1526. wpa_s->dbus_new_path, ssid->id);
  1527. wpa_printf(MSG_DEBUG, "dbus: Register network object '%s'",
  1528. net_obj_path);
  1529. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  1530. if (!obj_desc) {
  1531. wpa_printf(MSG_ERROR, "Not enough memory "
  1532. "to create object description");
  1533. goto err;
  1534. }
  1535. /* allocate memory for handlers arguments */
  1536. arg = os_zalloc(sizeof(struct network_handler_args));
  1537. if (!arg) {
  1538. wpa_printf(MSG_ERROR, "Not enough memory "
  1539. "to create arguments for method");
  1540. goto err;
  1541. }
  1542. arg->wpa_s = wpa_s;
  1543. arg->ssid = ssid;
  1544. wpas_dbus_register(obj_desc, arg, wpa_dbus_free, NULL,
  1545. wpas_dbus_network_properties,
  1546. wpas_dbus_network_signals);
  1547. if (wpa_dbus_register_object_per_iface(ctrl_iface, net_obj_path,
  1548. wpa_s->ifname, obj_desc))
  1549. goto err;
  1550. wpas_dbus_signal_network_added(wpa_s, ssid->id);
  1551. return 0;
  1552. err:
  1553. free_dbus_object_desc(obj_desc);
  1554. return -1;
  1555. }
  1556. /**
  1557. * wpas_dbus_unregister_network - Unregister a configured network from dbus
  1558. * @wpa_s: wpa_supplicant interface structure
  1559. * @nid: network id
  1560. * Returns: 0 on success, -1 on failure
  1561. *
  1562. * Unregisters network representing object from dbus
  1563. */
  1564. int wpas_dbus_unregister_network(struct wpa_supplicant *wpa_s, int nid)
  1565. {
  1566. struct wpas_dbus_priv *ctrl_iface;
  1567. char net_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  1568. int ret;
  1569. struct wpa_ssid *ssid;
  1570. ssid = wpa_config_get_network(wpa_s->conf, nid);
  1571. #ifdef CONFIG_P2P
  1572. /* If it is a persistent group unregister it as such */
  1573. if (ssid && network_is_persistent_group(ssid))
  1574. return wpas_dbus_unregister_persistent_group(wpa_s, nid);
  1575. #endif /* CONFIG_P2P */
  1576. /* Do nothing if the control interface is not turned on */
  1577. if (wpa_s->global == NULL || wpa_s->dbus_new_path == NULL)
  1578. return 0;
  1579. ctrl_iface = wpa_s->global->dbus;
  1580. if (ctrl_iface == NULL)
  1581. return 0;
  1582. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1583. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u",
  1584. wpa_s->dbus_new_path, nid);
  1585. wpa_printf(MSG_DEBUG, "dbus: Unregister network object '%s'",
  1586. net_obj_path);
  1587. ret = wpa_dbus_unregister_object_per_iface(ctrl_iface, net_obj_path);
  1588. if (!ret)
  1589. wpas_dbus_signal_network_removed(wpa_s, nid);
  1590. return ret;
  1591. }
  1592. static const struct wpa_dbus_property_desc wpas_dbus_bss_properties[] = {
  1593. { "SSID", WPAS_DBUS_NEW_IFACE_BSS, "ay",
  1594. wpas_dbus_getter_bss_ssid,
  1595. NULL
  1596. },
  1597. { "BSSID", WPAS_DBUS_NEW_IFACE_BSS, "ay",
  1598. wpas_dbus_getter_bss_bssid,
  1599. NULL
  1600. },
  1601. { "Privacy", WPAS_DBUS_NEW_IFACE_BSS, "b",
  1602. wpas_dbus_getter_bss_privacy,
  1603. NULL
  1604. },
  1605. { "Mode", WPAS_DBUS_NEW_IFACE_BSS, "s",
  1606. wpas_dbus_getter_bss_mode,
  1607. NULL
  1608. },
  1609. { "Signal", WPAS_DBUS_NEW_IFACE_BSS, "n",
  1610. wpas_dbus_getter_bss_signal,
  1611. NULL
  1612. },
  1613. { "Frequency", WPAS_DBUS_NEW_IFACE_BSS, "q",
  1614. wpas_dbus_getter_bss_frequency,
  1615. NULL
  1616. },
  1617. { "Rates", WPAS_DBUS_NEW_IFACE_BSS, "au",
  1618. wpas_dbus_getter_bss_rates,
  1619. NULL
  1620. },
  1621. { "WPA", WPAS_DBUS_NEW_IFACE_BSS, "a{sv}",
  1622. wpas_dbus_getter_bss_wpa,
  1623. NULL
  1624. },
  1625. { "RSN", WPAS_DBUS_NEW_IFACE_BSS, "a{sv}",
  1626. wpas_dbus_getter_bss_rsn,
  1627. NULL
  1628. },
  1629. { "IEs", WPAS_DBUS_NEW_IFACE_BSS, "ay",
  1630. wpas_dbus_getter_bss_ies,
  1631. NULL
  1632. },
  1633. { NULL, NULL, NULL, NULL, NULL }
  1634. };
  1635. static const struct wpa_dbus_signal_desc wpas_dbus_bss_signals[] = {
  1636. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  1637. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_BSS,
  1638. {
  1639. { "properties", "a{sv}", ARG_OUT },
  1640. END_ARGS
  1641. }
  1642. },
  1643. { NULL, NULL, { END_ARGS } }
  1644. };
  1645. /**
  1646. * wpas_dbus_unregister_bss - Unregister a scanned BSS from dbus
  1647. * @wpa_s: wpa_supplicant interface structure
  1648. * @bssid: scanned network bssid
  1649. * @id: unique BSS identifier
  1650. * Returns: 0 on success, -1 on failure
  1651. *
  1652. * Unregisters BSS representing object from dbus
  1653. */
  1654. int wpas_dbus_unregister_bss(struct wpa_supplicant *wpa_s,
  1655. u8 bssid[ETH_ALEN], unsigned int id)
  1656. {
  1657. struct wpas_dbus_priv *ctrl_iface;
  1658. char bss_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  1659. /* Do nothing if the control interface is not turned on */
  1660. if (wpa_s == NULL || wpa_s->global == NULL)
  1661. return 0;
  1662. ctrl_iface = wpa_s->global->dbus;
  1663. if (ctrl_iface == NULL)
  1664. return 0;
  1665. os_snprintf(bss_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1666. "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
  1667. wpa_s->dbus_new_path, id);
  1668. wpa_printf(MSG_DEBUG, "dbus: Unregister BSS object '%s'",
  1669. bss_obj_path);
  1670. if (wpa_dbus_unregister_object_per_iface(ctrl_iface, bss_obj_path)) {
  1671. wpa_printf(MSG_ERROR, "dbus: Cannot unregister BSS object %s",
  1672. bss_obj_path);
  1673. return -1;
  1674. }
  1675. wpas_dbus_signal_bss_removed(wpa_s, bss_obj_path);
  1676. wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_BSSS);
  1677. return 0;
  1678. }
  1679. /**
  1680. * wpas_dbus_register_bss - Register a scanned BSS with dbus
  1681. * @wpa_s: wpa_supplicant interface structure
  1682. * @bssid: scanned network bssid
  1683. * @id: unique BSS identifier
  1684. * Returns: 0 on success, -1 on failure
  1685. *
  1686. * Registers BSS representing object with dbus
  1687. */
  1688. int wpas_dbus_register_bss(struct wpa_supplicant *wpa_s,
  1689. u8 bssid[ETH_ALEN], unsigned int id)
  1690. {
  1691. struct wpas_dbus_priv *ctrl_iface;
  1692. struct wpa_dbus_object_desc *obj_desc;
  1693. char bss_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  1694. struct bss_handler_args *arg;
  1695. /* Do nothing if the control interface is not turned on */
  1696. if (wpa_s == NULL || wpa_s->global == NULL)
  1697. return 0;
  1698. ctrl_iface = wpa_s->global->dbus;
  1699. if (ctrl_iface == NULL)
  1700. return 0;
  1701. os_snprintf(bss_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1702. "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
  1703. wpa_s->dbus_new_path, id);
  1704. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  1705. if (!obj_desc) {
  1706. wpa_printf(MSG_ERROR, "Not enough memory "
  1707. "to create object description");
  1708. goto err;
  1709. }
  1710. arg = os_zalloc(sizeof(struct bss_handler_args));
  1711. if (!arg) {
  1712. wpa_printf(MSG_ERROR, "Not enough memory "
  1713. "to create arguments for handler");
  1714. goto err;
  1715. }
  1716. arg->wpa_s = wpa_s;
  1717. arg->id = id;
  1718. wpas_dbus_register(obj_desc, arg, wpa_dbus_free, NULL,
  1719. wpas_dbus_bss_properties,
  1720. wpas_dbus_bss_signals);
  1721. wpa_printf(MSG_DEBUG, "dbus: Register BSS object '%s'",
  1722. bss_obj_path);
  1723. if (wpa_dbus_register_object_per_iface(ctrl_iface, bss_obj_path,
  1724. wpa_s->ifname, obj_desc)) {
  1725. wpa_printf(MSG_ERROR,
  1726. "Cannot register BSSID dbus object %s.",
  1727. bss_obj_path);
  1728. goto err;
  1729. }
  1730. wpas_dbus_signal_bss_added(wpa_s, bss_obj_path);
  1731. wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_BSSS);
  1732. return 0;
  1733. err:
  1734. free_dbus_object_desc(obj_desc);
  1735. return -1;
  1736. }
  1737. static const struct wpa_dbus_method_desc wpas_dbus_interface_methods[] = {
  1738. { "Scan", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1739. (WPADBusMethodHandler) &wpas_dbus_handler_scan,
  1740. {
  1741. { "args", "a{sv}", ARG_IN },
  1742. END_ARGS
  1743. }
  1744. },
  1745. { "Disconnect", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1746. (WPADBusMethodHandler) &wpas_dbus_handler_disconnect,
  1747. {
  1748. END_ARGS
  1749. }
  1750. },
  1751. { "AddNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1752. (WPADBusMethodHandler) &wpas_dbus_handler_add_network,
  1753. {
  1754. { "args", "a{sv}", ARG_IN },
  1755. { "path", "o", ARG_OUT },
  1756. END_ARGS
  1757. }
  1758. },
  1759. { "RemoveNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1760. (WPADBusMethodHandler) &wpas_dbus_handler_remove_network,
  1761. {
  1762. { "path", "o", ARG_IN },
  1763. END_ARGS
  1764. }
  1765. },
  1766. { "RemoveAllNetworks", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1767. (WPADBusMethodHandler) &wpas_dbus_handler_remove_all_networks,
  1768. {
  1769. END_ARGS
  1770. }
  1771. },
  1772. { "SelectNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1773. (WPADBusMethodHandler) &wpas_dbus_handler_select_network,
  1774. {
  1775. { "path", "o", ARG_IN },
  1776. END_ARGS
  1777. }
  1778. },
  1779. { "AddBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1780. (WPADBusMethodHandler) &wpas_dbus_handler_add_blob,
  1781. {
  1782. { "name", "s", ARG_IN },
  1783. { "data", "ay", ARG_IN },
  1784. END_ARGS
  1785. }
  1786. },
  1787. { "GetBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1788. (WPADBusMethodHandler) &wpas_dbus_handler_get_blob,
  1789. {
  1790. { "name", "s", ARG_IN },
  1791. { "data", "ay", ARG_OUT },
  1792. END_ARGS
  1793. }
  1794. },
  1795. { "RemoveBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1796. (WPADBusMethodHandler) &wpas_dbus_handler_remove_blob,
  1797. {
  1798. { "name", "s", ARG_IN },
  1799. END_ARGS
  1800. }
  1801. },
  1802. #ifdef CONFIG_WPS
  1803. { "Start", WPAS_DBUS_NEW_IFACE_WPS,
  1804. (WPADBusMethodHandler) &wpas_dbus_handler_wps_start,
  1805. {
  1806. { "args", "a{sv}", ARG_IN },
  1807. { "output", "a{sv}", ARG_OUT },
  1808. END_ARGS
  1809. }
  1810. },
  1811. #endif /* CONFIG_WPS */
  1812. #ifdef CONFIG_P2P
  1813. { "Find", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1814. (WPADBusMethodHandler)wpas_dbus_handler_p2p_find,
  1815. {
  1816. { "args", "a{sv}", ARG_IN },
  1817. END_ARGS
  1818. }
  1819. },
  1820. { "StopFind", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1821. (WPADBusMethodHandler)wpas_dbus_handler_p2p_stop_find,
  1822. {
  1823. END_ARGS
  1824. }
  1825. },
  1826. { "Listen", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1827. (WPADBusMethodHandler)wpas_dbus_handler_p2p_listen,
  1828. {
  1829. { "timeout", "i", ARG_IN },
  1830. END_ARGS
  1831. }
  1832. },
  1833. { "ExtendedListen", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1834. (WPADBusMethodHandler)wpas_dbus_handler_p2p_extendedlisten,
  1835. {
  1836. { "args", "a{sv}", ARG_IN },
  1837. END_ARGS
  1838. }
  1839. },
  1840. { "PresenceRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1841. (WPADBusMethodHandler)wpas_dbus_handler_p2p_presence_request,
  1842. {
  1843. { "args", "a{sv}", ARG_IN },
  1844. END_ARGS
  1845. }
  1846. },
  1847. { "ProvisionDiscoveryRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1848. (WPADBusMethodHandler)wpas_dbus_handler_p2p_prov_disc_req,
  1849. {
  1850. { "peer", "o", ARG_IN },
  1851. { "config_method", "s", ARG_IN },
  1852. END_ARGS
  1853. }
  1854. },
  1855. { "Connect", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1856. (WPADBusMethodHandler)wpas_dbus_handler_p2p_connect,
  1857. {
  1858. { "args", "a{sv}", ARG_IN },
  1859. { "generated_pin", "s", ARG_OUT },
  1860. END_ARGS
  1861. }
  1862. },
  1863. { "GroupAdd", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1864. (WPADBusMethodHandler)wpas_dbus_handler_p2p_group_add,
  1865. {
  1866. { "args", "a{sv}", ARG_IN },
  1867. END_ARGS
  1868. }
  1869. },
  1870. { "Invite", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1871. (WPADBusMethodHandler)wpas_dbus_handler_p2p_invite,
  1872. {
  1873. { "args", "a{sv}", ARG_IN },
  1874. END_ARGS
  1875. }
  1876. },
  1877. { "Disconnect", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1878. (WPADBusMethodHandler)wpas_dbus_handler_p2p_disconnect,
  1879. {
  1880. END_ARGS
  1881. }
  1882. },
  1883. { "RejectPeer", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1884. (WPADBusMethodHandler)wpas_dbus_handler_p2p_rejectpeer,
  1885. {
  1886. { "peer", "o", ARG_IN },
  1887. END_ARGS
  1888. }
  1889. },
  1890. { "Flush", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1891. (WPADBusMethodHandler)wpas_dbus_handler_p2p_flush,
  1892. {
  1893. END_ARGS
  1894. }
  1895. },
  1896. { "AddService", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1897. (WPADBusMethodHandler)wpas_dbus_handler_p2p_add_service,
  1898. {
  1899. { "args", "a{sv}", ARG_IN },
  1900. END_ARGS
  1901. }
  1902. },
  1903. { "DeleteService", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1904. (WPADBusMethodHandler)wpas_dbus_handler_p2p_delete_service,
  1905. {
  1906. { "args", "a{sv}", ARG_IN },
  1907. END_ARGS
  1908. }
  1909. },
  1910. { "FlushService", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1911. (WPADBusMethodHandler)wpas_dbus_handler_p2p_flush_service,
  1912. {
  1913. END_ARGS
  1914. }
  1915. },
  1916. { "ServiceDiscoveryRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1917. (WPADBusMethodHandler)wpas_dbus_handler_p2p_service_sd_req,
  1918. {
  1919. { "args", "a{sv}", ARG_IN },
  1920. END_ARGS
  1921. }
  1922. },
  1923. { "ServiceDiscoveryResponse", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1924. (WPADBusMethodHandler)wpas_dbus_handler_p2p_service_sd_res,
  1925. {
  1926. { "args", "a{sv}", ARG_IN },
  1927. END_ARGS
  1928. }
  1929. },
  1930. { "ServiceDiscoveryCancelRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1931. (WPADBusMethodHandler)wpas_dbus_handler_p2p_service_sd_cancel_req,
  1932. {
  1933. { "args", "t", ARG_IN },
  1934. END_ARGS
  1935. }
  1936. },
  1937. { "ServiceUpdate", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1938. (WPADBusMethodHandler)wpas_dbus_handler_p2p_service_update,
  1939. {
  1940. END_ARGS
  1941. }
  1942. },
  1943. { "ServiceDiscoveryExternal", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1944. (WPADBusMethodHandler)wpas_dbus_handler_p2p_serv_disc_external,
  1945. {
  1946. { "arg", "i", ARG_IN },
  1947. END_ARGS
  1948. }
  1949. },
  1950. { "ServiceDiscoveryExternal", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1951. (WPADBusMethodHandler)wpas_dbus_handler_p2p_serv_disc_external,
  1952. {
  1953. { "arg", "i", ARG_IN },
  1954. END_ARGS
  1955. }
  1956. },
  1957. { "AddPersistentGroup", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1958. (WPADBusMethodHandler) wpas_dbus_handler_add_persistent_group,
  1959. {
  1960. { "args", "a{sv}", ARG_IN },
  1961. { "path", "o", ARG_OUT },
  1962. END_ARGS
  1963. }
  1964. },
  1965. { "RemovePersistentGroup", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1966. (WPADBusMethodHandler) wpas_dbus_handler_remove_persistent_group,
  1967. {
  1968. { "path", "o", ARG_IN },
  1969. END_ARGS
  1970. }
  1971. },
  1972. { "RemoveAllPersistentGroups", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  1973. (WPADBusMethodHandler)
  1974. wpas_dbus_handler_remove_all_persistent_groups,
  1975. {
  1976. END_ARGS
  1977. }
  1978. },
  1979. #endif /* CONFIG_P2P */
  1980. { "FlushBSS", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1981. (WPADBusMethodHandler) &wpas_dbus_handler_flush_bss,
  1982. {
  1983. { "age", "u", ARG_IN },
  1984. END_ARGS
  1985. }
  1986. },
  1987. { NULL, NULL, NULL, { END_ARGS } }
  1988. };
  1989. static const struct wpa_dbus_property_desc wpas_dbus_interface_properties[] = {
  1990. { "Capabilities", WPAS_DBUS_NEW_IFACE_INTERFACE, "a{sv}",
  1991. wpas_dbus_getter_capabilities,
  1992. NULL
  1993. },
  1994. { "State", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  1995. wpas_dbus_getter_state,
  1996. NULL
  1997. },
  1998. { "Scanning", WPAS_DBUS_NEW_IFACE_INTERFACE, "b",
  1999. wpas_dbus_getter_scanning,
  2000. NULL
  2001. },
  2002. { "ApScan", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
  2003. wpas_dbus_getter_ap_scan,
  2004. wpas_dbus_setter_ap_scan
  2005. },
  2006. { "BSSExpireAge", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
  2007. wpas_dbus_getter_bss_expire_age,
  2008. wpas_dbus_setter_bss_expire_age
  2009. },
  2010. { "BSSExpireCount", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
  2011. wpas_dbus_getter_bss_expire_count,
  2012. wpas_dbus_setter_bss_expire_count
  2013. },
  2014. { "Country", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2015. wpas_dbus_getter_country,
  2016. wpas_dbus_setter_country
  2017. },
  2018. { "Ifname", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2019. wpas_dbus_getter_ifname,
  2020. NULL
  2021. },
  2022. { "Driver", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2023. wpas_dbus_getter_driver,
  2024. NULL
  2025. },
  2026. { "BridgeIfname", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2027. wpas_dbus_getter_bridge_ifname,
  2028. NULL
  2029. },
  2030. { "CurrentBSS", WPAS_DBUS_NEW_IFACE_INTERFACE, "o",
  2031. wpas_dbus_getter_current_bss,
  2032. NULL
  2033. },
  2034. { "CurrentNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE, "o",
  2035. wpas_dbus_getter_current_network,
  2036. NULL
  2037. },
  2038. { "CurrentAuthMode", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  2039. wpas_dbus_getter_current_auth_mode,
  2040. NULL
  2041. },
  2042. { "Blobs", WPAS_DBUS_NEW_IFACE_INTERFACE, "a{say}",
  2043. wpas_dbus_getter_blobs,
  2044. NULL
  2045. },
  2046. { "BSSs", WPAS_DBUS_NEW_IFACE_INTERFACE, "ao",
  2047. wpas_dbus_getter_bsss,
  2048. NULL
  2049. },
  2050. { "Networks", WPAS_DBUS_NEW_IFACE_INTERFACE, "ao",
  2051. wpas_dbus_getter_networks,
  2052. NULL
  2053. },
  2054. #ifdef CONFIG_WPS
  2055. { "ProcessCredentials", WPAS_DBUS_NEW_IFACE_WPS, "b",
  2056. wpas_dbus_getter_process_credentials,
  2057. wpas_dbus_setter_process_credentials
  2058. },
  2059. #endif /* CONFIG_WPS */
  2060. #ifdef CONFIG_P2P
  2061. { "P2PDeviceProperties", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "a{sv}",
  2062. wpas_dbus_getter_p2p_device_properties,
  2063. wpas_dbus_setter_p2p_device_properties
  2064. },
  2065. { "Peers", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "ao",
  2066. wpas_dbus_getter_p2p_peers,
  2067. NULL
  2068. },
  2069. { "Role", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "s",
  2070. wpas_dbus_getter_p2p_role,
  2071. NULL
  2072. },
  2073. { "Group", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "o",
  2074. wpas_dbus_getter_p2p_group,
  2075. NULL
  2076. },
  2077. { "PeerGO", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "o",
  2078. wpas_dbus_getter_p2p_peergo,
  2079. NULL
  2080. },
  2081. { "PersistentGroups", WPAS_DBUS_NEW_IFACE_P2PDEVICE, "ao",
  2082. wpas_dbus_getter_persistent_groups,
  2083. NULL
  2084. },
  2085. #endif /* CONFIG_P2P */
  2086. { NULL, NULL, NULL, NULL, NULL }
  2087. };
  2088. static const struct wpa_dbus_signal_desc wpas_dbus_interface_signals[] = {
  2089. { "ScanDone", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2090. {
  2091. { "success", "b", ARG_OUT },
  2092. END_ARGS
  2093. }
  2094. },
  2095. { "BSSAdded", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2096. {
  2097. { "path", "o", ARG_OUT },
  2098. { "properties", "a{sv}", ARG_OUT },
  2099. END_ARGS
  2100. }
  2101. },
  2102. { "BSSRemoved", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2103. {
  2104. { "path", "o", ARG_OUT },
  2105. END_ARGS
  2106. }
  2107. },
  2108. { "BlobAdded", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2109. {
  2110. { "name", "s", ARG_OUT },
  2111. END_ARGS
  2112. }
  2113. },
  2114. { "BlobRemoved", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2115. {
  2116. { "name", "s", ARG_OUT },
  2117. END_ARGS
  2118. }
  2119. },
  2120. { "NetworkAdded", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2121. {
  2122. { "path", "o", ARG_OUT },
  2123. { "properties", "a{sv}", ARG_OUT },
  2124. END_ARGS
  2125. }
  2126. },
  2127. { "NetworkRemoved", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2128. {
  2129. { "path", "o", ARG_OUT },
  2130. END_ARGS
  2131. }
  2132. },
  2133. { "NetworkSelected", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2134. {
  2135. { "path", "o", ARG_OUT },
  2136. END_ARGS
  2137. }
  2138. },
  2139. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  2140. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2141. {
  2142. { "properties", "a{sv}", ARG_OUT },
  2143. END_ARGS
  2144. }
  2145. },
  2146. #ifdef CONFIG_WPS
  2147. { "Event", WPAS_DBUS_NEW_IFACE_WPS,
  2148. {
  2149. { "name", "s", ARG_OUT },
  2150. { "args", "a{sv}", ARG_OUT },
  2151. END_ARGS
  2152. }
  2153. },
  2154. { "Credentials", WPAS_DBUS_NEW_IFACE_WPS,
  2155. {
  2156. { "credentials", "a{sv}", ARG_OUT },
  2157. END_ARGS
  2158. }
  2159. },
  2160. /* Deprecated: use org.freedesktop.DBus.Properties.PropertiesChanged */
  2161. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_WPS,
  2162. {
  2163. { "properties", "a{sv}", ARG_OUT },
  2164. END_ARGS
  2165. }
  2166. },
  2167. #endif /* CONFIG_WPS */
  2168. #ifdef CONFIG_P2P
  2169. { "P2PStateChanged", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2170. {
  2171. { "states", "a{ss}", ARG_OUT },
  2172. END_ARGS
  2173. }
  2174. },
  2175. { "DeviceFound", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2176. {
  2177. { "path", "o", ARG_OUT },
  2178. { "properties", "a{sv}", ARG_OUT },
  2179. END_ARGS
  2180. }
  2181. },
  2182. { "DeviceLost", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2183. {
  2184. { "path", "o", ARG_OUT },
  2185. END_ARGS
  2186. }
  2187. },
  2188. { "ProvisionDiscoveryRequestDisplayPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2189. {
  2190. { "peer_object", "o", ARG_OUT },
  2191. { "pin", "s", ARG_OUT },
  2192. END_ARGS
  2193. }
  2194. },
  2195. { "ProvisionDiscoveryResponseDisplayPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2196. {
  2197. { "peer_object", "o", ARG_OUT },
  2198. { "pin", "s", ARG_OUT },
  2199. END_ARGS
  2200. }
  2201. },
  2202. { "ProvisionDiscoveryRequestEnterPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2203. {
  2204. { "peer_object", "o", ARG_OUT },
  2205. END_ARGS
  2206. }
  2207. },
  2208. { "ProvisionDiscoveryResponseEnterPin", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2209. {
  2210. { "peer_object", "o", ARG_OUT },
  2211. END_ARGS
  2212. }
  2213. },
  2214. { "ProvisionDiscoveryPBCRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2215. {
  2216. { "peer_object", "o", ARG_OUT },
  2217. END_ARGS
  2218. }
  2219. },
  2220. { "ProvisionDiscoveryPBCResponse", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2221. {
  2222. { "peer_object", "o", ARG_OUT },
  2223. END_ARGS
  2224. }
  2225. },
  2226. { "ProvisionDiscoveryFailure", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2227. {
  2228. { "peer_object", "o", ARG_OUT },
  2229. { "status", "i", ARG_OUT },
  2230. END_ARGS
  2231. }
  2232. },
  2233. { "GroupStarted", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2234. {
  2235. { "properties", "a{sv}", ARG_OUT },
  2236. END_ARGS
  2237. }
  2238. },
  2239. { "GONegotiationSuccess", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2240. {
  2241. END_ARGS
  2242. }
  2243. },
  2244. { "GONegotiationFailure", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2245. {
  2246. { "status", "i", ARG_OUT },
  2247. END_ARGS
  2248. }
  2249. },
  2250. { "GONegotiationRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2251. {
  2252. { "path", "o", ARG_OUT },
  2253. { "dev_passwd_id", "i", ARG_OUT },
  2254. END_ARGS
  2255. }
  2256. },
  2257. { "InvitationResult", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2258. {
  2259. { "invite_result", "a{sv}", ARG_OUT },
  2260. END_ARGS
  2261. }
  2262. },
  2263. { "GroupFinished", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2264. {
  2265. { "ifname", "s", ARG_OUT },
  2266. { "role", "s", ARG_OUT },
  2267. END_ARGS
  2268. }
  2269. },
  2270. { "ServiceDiscoveryRequest", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2271. {
  2272. { "sd_request", "a{sv}", ARG_OUT },
  2273. END_ARGS
  2274. }
  2275. },
  2276. { "ServiceDiscoveryResponse", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2277. {
  2278. { "sd_response", "a{sv}", ARG_OUT },
  2279. END_ARGS
  2280. }
  2281. },
  2282. { "PersistentGroupAdded", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2283. {
  2284. { "path", "o", ARG_OUT },
  2285. { "properties", "a{sv}", ARG_OUT },
  2286. END_ARGS
  2287. }
  2288. },
  2289. { "PersistentGroupRemoved", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2290. {
  2291. { "path", "o", ARG_OUT },
  2292. END_ARGS
  2293. }
  2294. },
  2295. { "WpsFailed", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2296. {
  2297. { "name", "s", ARG_OUT },
  2298. { "args", "a{sv}", ARG_OUT },
  2299. END_ARGS
  2300. }
  2301. },
  2302. #endif /* CONFIG_P2P */
  2303. { "Certification", WPAS_DBUS_NEW_IFACE_INTERFACE,
  2304. {
  2305. { "certification", "a{sv}", ARG_OUT },
  2306. END_ARGS
  2307. }
  2308. },
  2309. { NULL, NULL, { END_ARGS } }
  2310. };
  2311. int wpas_dbus_register_interface(struct wpa_supplicant *wpa_s)
  2312. {
  2313. struct wpa_dbus_object_desc *obj_desc = NULL;
  2314. struct wpas_dbus_priv *ctrl_iface = wpa_s->global->dbus;
  2315. int next;
  2316. /* Do nothing if the control interface is not turned on */
  2317. if (ctrl_iface == NULL)
  2318. return 0;
  2319. /* Create and set the interface's object path */
  2320. wpa_s->dbus_new_path = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
  2321. if (wpa_s->dbus_new_path == NULL)
  2322. return -1;
  2323. next = ctrl_iface->next_objid++;
  2324. os_snprintf(wpa_s->dbus_new_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2325. WPAS_DBUS_NEW_PATH_INTERFACES "/%u",
  2326. next);
  2327. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  2328. if (!obj_desc) {
  2329. wpa_printf(MSG_ERROR, "Not enough memory "
  2330. "to create object description");
  2331. goto err;
  2332. }
  2333. wpas_dbus_register(obj_desc, wpa_s, NULL, wpas_dbus_interface_methods,
  2334. wpas_dbus_interface_properties,
  2335. wpas_dbus_interface_signals);
  2336. wpa_printf(MSG_DEBUG, "dbus: Register interface object '%s'",
  2337. wpa_s->dbus_new_path);
  2338. if (wpa_dbus_register_object_per_iface(ctrl_iface,
  2339. wpa_s->dbus_new_path,
  2340. wpa_s->ifname, obj_desc))
  2341. goto err;
  2342. wpas_dbus_signal_interface_added(wpa_s);
  2343. return 0;
  2344. err:
  2345. os_free(wpa_s->dbus_new_path);
  2346. wpa_s->dbus_new_path = NULL;
  2347. free_dbus_object_desc(obj_desc);
  2348. return -1;
  2349. }
  2350. int wpas_dbus_unregister_interface(struct wpa_supplicant *wpa_s)
  2351. {
  2352. struct wpas_dbus_priv *ctrl_iface;
  2353. /* Do nothing if the control interface is not turned on */
  2354. if (wpa_s == NULL || wpa_s->global == NULL)
  2355. return 0;
  2356. ctrl_iface = wpa_s->global->dbus;
  2357. if (ctrl_iface == NULL)
  2358. return 0;
  2359. wpa_printf(MSG_DEBUG, "dbus: Unregister interface object '%s'",
  2360. wpa_s->dbus_new_path);
  2361. if (wpa_dbus_unregister_object_per_iface(ctrl_iface,
  2362. wpa_s->dbus_new_path))
  2363. return -1;
  2364. wpas_dbus_signal_interface_removed(wpa_s);
  2365. os_free(wpa_s->dbus_new_path);
  2366. wpa_s->dbus_new_path = NULL;
  2367. return 0;
  2368. }
  2369. #ifdef CONFIG_P2P
  2370. static const struct wpa_dbus_property_desc wpas_dbus_p2p_peer_properties[] = {
  2371. { "Properties", WPAS_DBUS_NEW_IFACE_P2P_PEER, "a{sv}",
  2372. wpas_dbus_getter_p2p_peer_properties,
  2373. NULL
  2374. },
  2375. { "IEs", WPAS_DBUS_NEW_IFACE_P2P_PEER, "ay",
  2376. wpas_dbus_getter_p2p_peer_ies,
  2377. NULL
  2378. },
  2379. { NULL, NULL, NULL, NULL, NULL }
  2380. };
  2381. static const struct wpa_dbus_signal_desc wpas_dbus_p2p_peer_signals[] = {
  2382. { NULL, NULL, { END_ARGS } }
  2383. };
  2384. /**
  2385. * wpas_dbus_signal_peer - Send a peer related event signal
  2386. * @wpa_s: %wpa_supplicant network interface data
  2387. * @dev: peer device object
  2388. * @interface: name of the interface emitting this signal.
  2389. * In case of peer objects, it would be emitted by either
  2390. * the "interface object" or by "peer objects"
  2391. * @sig_name: signal name - DeviceFound
  2392. *
  2393. * Notify listeners about event related with newly found p2p peer device
  2394. */
  2395. static void wpas_dbus_signal_peer(struct wpa_supplicant *wpa_s,
  2396. const u8 *dev_addr, const char *interface,
  2397. const char *sig_name)
  2398. {
  2399. struct wpas_dbus_priv *iface;
  2400. DBusMessage *msg;
  2401. DBusMessageIter iter;
  2402. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX], *path;
  2403. iface = wpa_s->global->dbus;
  2404. /* Do nothing if the control interface is not turned on */
  2405. if (iface == NULL)
  2406. return;
  2407. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2408. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  2409. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  2410. msg = dbus_message_new_signal(wpa_s->dbus_new_path, interface,
  2411. sig_name);
  2412. if (msg == NULL)
  2413. return;
  2414. dbus_message_iter_init_append(msg, &iter);
  2415. path = peer_obj_path;
  2416. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH,
  2417. &path))
  2418. goto err;
  2419. dbus_connection_send(iface->con, msg, NULL);
  2420. dbus_message_unref(msg);
  2421. return;
  2422. err:
  2423. wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
  2424. dbus_message_unref(msg);
  2425. }
  2426. /**
  2427. * wpas_dbus_signal_peer_found - Send a peer found signal
  2428. * @wpa_s: %wpa_supplicant network interface data
  2429. * @dev: peer device object
  2430. *
  2431. * Notify listeners about find a p2p peer device found
  2432. */
  2433. void wpas_dbus_signal_peer_device_found(struct wpa_supplicant *wpa_s,
  2434. const u8 *dev_addr)
  2435. {
  2436. wpas_dbus_signal_peer(wpa_s, dev_addr,
  2437. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2438. "DeviceFound");
  2439. }
  2440. /**
  2441. * wpas_dbus_signal_peer_lost - Send a peer lost signal
  2442. * @wpa_s: %wpa_supplicant network interface data
  2443. * @dev: peer device object
  2444. *
  2445. * Notify listeners about lost a p2p peer device
  2446. */
  2447. void wpas_dbus_signal_peer_device_lost(struct wpa_supplicant *wpa_s,
  2448. const u8 *dev_addr)
  2449. {
  2450. wpas_dbus_signal_peer(wpa_s, dev_addr,
  2451. WPAS_DBUS_NEW_IFACE_P2PDEVICE,
  2452. "DeviceLost");
  2453. }
  2454. /**
  2455. * wpas_dbus_register_peer - Register a discovered peer object with dbus
  2456. * @wpa_s: wpa_supplicant interface structure
  2457. * @ssid: network configuration data
  2458. * Returns: 0 on success, -1 on failure
  2459. *
  2460. * Registers network representing object with dbus
  2461. */
  2462. int wpas_dbus_register_peer(struct wpa_supplicant *wpa_s, const u8 *dev_addr)
  2463. {
  2464. struct wpas_dbus_priv *ctrl_iface;
  2465. struct wpa_dbus_object_desc *obj_desc;
  2466. struct peer_handler_args *arg;
  2467. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  2468. /* Do nothing if the control interface is not turned on */
  2469. if (wpa_s == NULL || wpa_s->global == NULL)
  2470. return 0;
  2471. ctrl_iface = wpa_s->global->dbus;
  2472. if (ctrl_iface == NULL)
  2473. return 0;
  2474. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2475. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  2476. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  2477. wpa_printf(MSG_INFO, "dbus: Register peer object '%s'",
  2478. peer_obj_path);
  2479. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  2480. if (!obj_desc) {
  2481. wpa_printf(MSG_ERROR, "Not enough memory "
  2482. "to create object description");
  2483. goto err;
  2484. }
  2485. /* allocate memory for handlers arguments */
  2486. arg = os_zalloc(sizeof(struct peer_handler_args));
  2487. if (!arg) {
  2488. wpa_printf(MSG_ERROR, "Not enough memory "
  2489. "to create arguments for method");
  2490. goto err;
  2491. }
  2492. arg->wpa_s = wpa_s;
  2493. os_memcpy(arg->p2p_device_addr, dev_addr, ETH_ALEN);
  2494. wpas_dbus_register(obj_desc, arg, wpa_dbus_free,
  2495. NULL,
  2496. wpas_dbus_p2p_peer_properties,
  2497. wpas_dbus_p2p_peer_signals);
  2498. if (wpa_dbus_register_object_per_iface(ctrl_iface, peer_obj_path,
  2499. wpa_s->ifname, obj_desc))
  2500. goto err;
  2501. return 0;
  2502. err:
  2503. free_dbus_object_desc(obj_desc);
  2504. return -1;
  2505. }
  2506. /**
  2507. * wpas_dbus_unregister_peer - Unregister a peer object with dbus
  2508. * @wpa_s: wpa_supplicant interface structure
  2509. * @dev_addr: p2p device addr
  2510. * Returns: 0 on success, -1 on failure
  2511. *
  2512. * Registers network representing object with dbus
  2513. */
  2514. int wpas_dbus_unregister_peer(struct wpa_supplicant *wpa_s,
  2515. const u8 *dev_addr)
  2516. {
  2517. struct wpas_dbus_priv *ctrl_iface;
  2518. char peer_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  2519. int ret;
  2520. /* Do nothing if the control interface is not turned on */
  2521. if (wpa_s == NULL || wpa_s->global == NULL ||
  2522. wpa_s->dbus_new_path == NULL)
  2523. return 0;
  2524. ctrl_iface = wpa_s->global->dbus;
  2525. if (ctrl_iface == NULL)
  2526. return 0;
  2527. os_snprintf(peer_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2528. "%s/" WPAS_DBUS_NEW_P2P_PEERS_PART "/" COMPACT_MACSTR,
  2529. wpa_s->dbus_new_path, MAC2STR(dev_addr));
  2530. wpa_printf(MSG_INFO, "dbus: Unregister peer object '%s'",
  2531. peer_obj_path);
  2532. ret = wpa_dbus_unregister_object_per_iface(ctrl_iface, peer_obj_path);
  2533. return ret;
  2534. }
  2535. static const struct wpa_dbus_property_desc wpas_dbus_p2p_group_properties[] = {
  2536. { "Members", WPAS_DBUS_NEW_IFACE_P2P_GROUP, "ao",
  2537. wpas_dbus_getter_p2p_group_members,
  2538. NULL
  2539. },
  2540. { "Properties",
  2541. WPAS_DBUS_NEW_IFACE_P2P_GROUP, "a{sv}",
  2542. wpas_dbus_getter_p2p_group_properties,
  2543. wpas_dbus_setter_p2p_group_properties
  2544. },
  2545. { NULL, NULL, NULL, NULL, NULL }
  2546. };
  2547. static const struct wpa_dbus_signal_desc wpas_dbus_p2p_group_signals[] = {
  2548. { "PeerJoined", WPAS_DBUS_NEW_IFACE_P2P_GROUP,
  2549. {
  2550. { "peer", "o", ARG_OUT },
  2551. END_ARGS
  2552. }
  2553. },
  2554. { "PeerDisconnected", WPAS_DBUS_NEW_IFACE_P2P_GROUP,
  2555. {
  2556. { "peer", "o", ARG_OUT },
  2557. END_ARGS
  2558. }
  2559. },
  2560. { NULL, NULL, { END_ARGS } }
  2561. };
  2562. /**
  2563. * wpas_dbus_register_p2p_group - Register a p2p group object with dbus
  2564. * @wpa_s: wpa_supplicant interface structure
  2565. * @ssid: SSID struct
  2566. * Returns: 0 on success, -1 on failure
  2567. *
  2568. * Registers p2p group representing object with dbus
  2569. */
  2570. void wpas_dbus_register_p2p_group(struct wpa_supplicant *wpa_s,
  2571. struct wpa_ssid *ssid)
  2572. {
  2573. struct wpas_dbus_priv *ctrl_iface;
  2574. struct wpa_dbus_object_desc *obj_desc;
  2575. char group_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  2576. /* Do nothing if the control interface is not turned on */
  2577. if (wpa_s == NULL || wpa_s->global == NULL)
  2578. return;
  2579. ctrl_iface = wpa_s->global->dbus;
  2580. if (ctrl_iface == NULL)
  2581. return;
  2582. if (wpa_s->dbus_groupobj_path) {
  2583. wpa_printf(MSG_INFO, "%s: Group object '%s' already exists",
  2584. __func__, wpa_s->dbus_groupobj_path);
  2585. return;
  2586. }
  2587. if (wpas_dbus_get_group_obj_path(wpa_s, ssid, group_obj_path) < 0)
  2588. return;
  2589. wpa_s->dbus_groupobj_path = os_strdup(group_obj_path);
  2590. if (wpa_s->dbus_groupobj_path == NULL)
  2591. return;
  2592. wpa_printf(MSG_INFO, "dbus: Register group object '%s'",
  2593. group_obj_path);
  2594. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  2595. if (!obj_desc) {
  2596. wpa_printf(MSG_ERROR, "Not enough memory "
  2597. "to create object description");
  2598. goto err;
  2599. }
  2600. wpas_dbus_register(obj_desc, wpa_s, NULL, NULL,
  2601. wpas_dbus_p2p_group_properties,
  2602. wpas_dbus_p2p_group_signals);
  2603. if (wpa_dbus_register_object_per_iface(ctrl_iface, group_obj_path,
  2604. wpa_s->ifname, obj_desc))
  2605. goto err;
  2606. return;
  2607. err:
  2608. if (wpa_s->dbus_groupobj_path) {
  2609. os_free(wpa_s->dbus_groupobj_path);
  2610. wpa_s->dbus_groupobj_path = NULL;
  2611. }
  2612. free_dbus_object_desc(obj_desc);
  2613. }
  2614. /**
  2615. * wpas_dbus_unregister_p2p_group - Unregister a p2p group object from dbus
  2616. * @wpa_s: wpa_supplicant interface structure
  2617. * @ssid: network name of the p2p group started
  2618. */
  2619. void wpas_dbus_unregister_p2p_group(struct wpa_supplicant *wpa_s,
  2620. const struct wpa_ssid *ssid)
  2621. {
  2622. struct wpas_dbus_priv *ctrl_iface;
  2623. /* Do nothing if the control interface is not turned on */
  2624. if (wpa_s == NULL || wpa_s->global == NULL)
  2625. return;
  2626. ctrl_iface = wpa_s->global->dbus;
  2627. if (ctrl_iface == NULL)
  2628. return;
  2629. if (!wpa_s->dbus_groupobj_path) {
  2630. wpa_printf(MSG_DEBUG,
  2631. "%s: Group object '%s' already unregistered",
  2632. __func__, wpa_s->dbus_groupobj_path);
  2633. return;
  2634. }
  2635. wpa_printf(MSG_DEBUG, "dbus: Unregister group object '%s'",
  2636. wpa_s->dbus_groupobj_path);
  2637. wpa_dbus_unregister_object_per_iface(ctrl_iface,
  2638. wpa_s->dbus_groupobj_path);
  2639. os_free(wpa_s->dbus_groupobj_path);
  2640. wpa_s->dbus_groupobj_path = NULL;
  2641. }
  2642. static const struct wpa_dbus_property_desc
  2643. wpas_dbus_p2p_groupmember_properties[] = {
  2644. { "Properties", WPAS_DBUS_NEW_IFACE_P2P_GROUPMEMBER, "a{sv}",
  2645. wpas_dbus_getter_p2p_group_properties,
  2646. NULL
  2647. },
  2648. { NULL, NULL, NULL, NULL, NULL }
  2649. };
  2650. /**
  2651. * wpas_dbus_register_p2p_groupmember - Register a p2p groupmember
  2652. * object with dbus
  2653. * @wpa_s: wpa_supplicant interface structure
  2654. * @p2p_if_addr: i/f addr of the device joining this group
  2655. *
  2656. * Registers p2p groupmember representing object with dbus
  2657. */
  2658. void wpas_dbus_register_p2p_groupmember(struct wpa_supplicant *wpa_s,
  2659. const u8 *p2p_if_addr)
  2660. {
  2661. struct wpas_dbus_priv *ctrl_iface;
  2662. struct wpa_dbus_object_desc *obj_desc = NULL;
  2663. struct groupmember_handler_args *arg;
  2664. char groupmember_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  2665. /* Do nothing if the control interface is not turned on */
  2666. if (wpa_s == NULL || wpa_s->global == NULL)
  2667. return;
  2668. ctrl_iface = wpa_s->global->dbus;
  2669. if (ctrl_iface == NULL)
  2670. return;
  2671. if (!wpa_s->dbus_groupobj_path)
  2672. return;
  2673. os_snprintf(groupmember_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2674. "%s/" WPAS_DBUS_NEW_P2P_GROUPMEMBERS_PART "/" COMPACT_MACSTR,
  2675. wpa_s->dbus_groupobj_path, MAC2STR(p2p_if_addr));
  2676. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  2677. if (!obj_desc) {
  2678. wpa_printf(MSG_ERROR, "Not enough memory "
  2679. "to create object description");
  2680. goto err;
  2681. }
  2682. /* allocate memory for handlers arguments */
  2683. arg = os_zalloc(sizeof(struct groupmember_handler_args));
  2684. if (!arg) {
  2685. wpa_printf(MSG_ERROR, "Not enough memory "
  2686. "to create arguments for method");
  2687. goto err;
  2688. }
  2689. arg->wpa_s = wpa_s;
  2690. os_memcpy(arg->member_addr, p2p_if_addr, ETH_ALEN);
  2691. wpas_dbus_register(obj_desc, arg, wpa_dbus_free, NULL,
  2692. wpas_dbus_p2p_groupmember_properties, NULL);
  2693. if (wpa_dbus_register_object_per_iface(ctrl_iface, groupmember_obj_path,
  2694. wpa_s->ifname, obj_desc))
  2695. goto err;
  2696. wpa_printf(MSG_INFO,
  2697. "dbus: Registered group member object '%s' successfully",
  2698. groupmember_obj_path);
  2699. return;
  2700. err:
  2701. free_dbus_object_desc(obj_desc);
  2702. }
  2703. /**
  2704. * wpas_dbus_unregister_p2p_groupmember - Unregister a p2p groupmember
  2705. * object with dbus
  2706. * @wpa_s: wpa_supplicant interface structure
  2707. * @p2p_if_addr: i/f addr of the device joining this group
  2708. *
  2709. * Unregisters p2p groupmember representing object with dbus
  2710. */
  2711. void wpas_dbus_unregister_p2p_groupmember(struct wpa_supplicant *wpa_s,
  2712. const u8 *p2p_if_addr)
  2713. {
  2714. struct wpas_dbus_priv *ctrl_iface;
  2715. char groupmember_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  2716. /* Do nothing if the control interface is not turned on */
  2717. if (wpa_s == NULL || wpa_s->global == NULL)
  2718. return;
  2719. ctrl_iface = wpa_s->global->dbus;
  2720. if (ctrl_iface == NULL)
  2721. return;
  2722. if (!wpa_s->dbus_groupobj_path)
  2723. return;
  2724. os_snprintf(groupmember_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2725. "%s/" WPAS_DBUS_NEW_P2P_GROUPMEMBERS_PART "/" COMPACT_MACSTR,
  2726. wpa_s->dbus_groupobj_path, MAC2STR(p2p_if_addr));
  2727. wpa_dbus_unregister_object_per_iface(ctrl_iface, groupmember_obj_path);
  2728. }
  2729. static const struct wpa_dbus_property_desc
  2730. wpas_dbus_persistent_group_properties[] = {
  2731. { "Properties", WPAS_DBUS_NEW_IFACE_PERSISTENT_GROUP, "a{sv}",
  2732. wpas_dbus_getter_persistent_group_properties,
  2733. wpas_dbus_setter_persistent_group_properties
  2734. },
  2735. { NULL, NULL, NULL, NULL, NULL }
  2736. };
  2737. /* No signals intended for persistent group objects */
  2738. /**
  2739. * wpas_dbus_register_persistent_group - Register a configured(saved)
  2740. * persistent group with dbus
  2741. * @wpa_s: wpa_supplicant interface structure
  2742. * @ssid: persistent group (still represented as a network within wpa)
  2743. * configuration data
  2744. * Returns: 0 on success, -1 on failure
  2745. *
  2746. * Registers a persistent group representing object with dbus.
  2747. */
  2748. int wpas_dbus_register_persistent_group(struct wpa_supplicant *wpa_s,
  2749. struct wpa_ssid *ssid)
  2750. {
  2751. struct wpas_dbus_priv *ctrl_iface;
  2752. struct wpa_dbus_object_desc *obj_desc;
  2753. struct network_handler_args *arg;
  2754. char pgrp_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  2755. /* Do nothing if the control interface is not turned on */
  2756. if (wpa_s == NULL || wpa_s->global == NULL)
  2757. return 0;
  2758. /* Make sure ssid is a persistent group */
  2759. if (ssid->disabled != 2 && !ssid->p2p_persistent_group)
  2760. return -1; /* should we return w/o complaining? */
  2761. ctrl_iface = wpa_s->global->dbus;
  2762. if (ctrl_iface == NULL)
  2763. return 0;
  2764. /*
  2765. * Intentionally not coming up with different numbering scheme
  2766. * for persistent groups.
  2767. */
  2768. os_snprintf(pgrp_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2769. "%s/" WPAS_DBUS_NEW_PERSISTENT_GROUPS_PART "/%u",
  2770. wpa_s->dbus_new_path, ssid->id);
  2771. wpa_printf(MSG_DEBUG, "dbus: Register persistent group object '%s'",
  2772. pgrp_obj_path);
  2773. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  2774. if (!obj_desc) {
  2775. wpa_printf(MSG_ERROR, "dbus: Not enough memory to create "
  2776. "object description");
  2777. goto err;
  2778. }
  2779. /*
  2780. * Reusing the same context structure as that for networks
  2781. * since these are represented using same data structure.
  2782. */
  2783. /* allocate memory for handlers arguments */
  2784. arg = os_zalloc(sizeof(struct network_handler_args));
  2785. if (!arg) {
  2786. wpa_printf(MSG_ERROR, "dbus: Not enough memory to create "
  2787. "arguments for method");
  2788. goto err;
  2789. }
  2790. arg->wpa_s = wpa_s;
  2791. arg->ssid = ssid;
  2792. wpas_dbus_register(obj_desc, arg, wpa_dbus_free, NULL,
  2793. wpas_dbus_persistent_group_properties,
  2794. NULL);
  2795. if (wpa_dbus_register_object_per_iface(ctrl_iface, pgrp_obj_path,
  2796. wpa_s->ifname, obj_desc))
  2797. goto err;
  2798. wpas_dbus_signal_persistent_group_added(wpa_s, ssid->id);
  2799. return 0;
  2800. err:
  2801. free_dbus_object_desc(obj_desc);
  2802. return -1;
  2803. }
  2804. /**
  2805. * wpas_dbus_unregister_persistent_group - Unregister a persistent_group
  2806. * from dbus
  2807. * @wpa_s: wpa_supplicant interface structure
  2808. * @nid: network id
  2809. * Returns: 0 on success, -1 on failure
  2810. *
  2811. * Unregisters persistent group representing object from dbus
  2812. *
  2813. * NOTE: There is a slight issue with the semantics here. While the
  2814. * implementation simply means the persistent group is unloaded from memory,
  2815. * it should not get interpreted as the group is actually being erased/removed
  2816. * from persistent storage as well.
  2817. */
  2818. int wpas_dbus_unregister_persistent_group(struct wpa_supplicant *wpa_s,
  2819. int nid)
  2820. {
  2821. struct wpas_dbus_priv *ctrl_iface;
  2822. char pgrp_obj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  2823. int ret;
  2824. /* Do nothing if the control interface is not turned on */
  2825. if (wpa_s == NULL || wpa_s->global == NULL ||
  2826. wpa_s->dbus_new_path == NULL)
  2827. return 0;
  2828. ctrl_iface = wpa_s->global->dbus;
  2829. if (ctrl_iface == NULL)
  2830. return 0;
  2831. os_snprintf(pgrp_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  2832. "%s/" WPAS_DBUS_NEW_PERSISTENT_GROUPS_PART "/%u",
  2833. wpa_s->dbus_new_path, nid);
  2834. wpa_printf(MSG_DEBUG, "dbus: Unregister persistent group object '%s'",
  2835. pgrp_obj_path);
  2836. ret = wpa_dbus_unregister_object_per_iface(ctrl_iface, pgrp_obj_path);
  2837. if (!ret)
  2838. wpas_dbus_signal_persistent_group_removed(wpa_s, nid);
  2839. return ret;
  2840. }
  2841. #endif /* CONFIG_P2P */