dbus_new.c 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728
  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, 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 "wps/wps.h"
  19. #include "../config.h"
  20. #include "../wpa_supplicant_i.h"
  21. #include "../bss.h"
  22. #include "dbus_new_helpers.h"
  23. #include "dbus_dict_helpers.h"
  24. #include "dbus_new.h"
  25. #include "dbus_new_handlers.h"
  26. #include "dbus_common.h"
  27. #include "dbus_common_i.h"
  28. /**
  29. * wpas_dbus_set_path - Assign a dbus path to an interface
  30. * @wpa_s: wpa_supplicant interface structure
  31. * @path: dbus path to set on the interface
  32. * Returns: 0 on success, -1 on error
  33. */
  34. static int wpas_dbus_set_path(struct wpa_supplicant *wpa_s,
  35. const char *path)
  36. {
  37. u32 len = os_strlen(path);
  38. if (len >= WPAS_DBUS_OBJECT_PATH_MAX)
  39. return -1;
  40. if (wpa_s->dbus_new_path)
  41. return -1;
  42. wpa_s->dbus_new_path = os_strdup(path);
  43. return 0;
  44. }
  45. /**
  46. * wpas_dbus_signal_interface - Send a interface related event signal
  47. * @wpa_s: %wpa_supplicant network interface data
  48. * @sig_name: signal name - InterfaceAdded or InterfaceRemoved
  49. *
  50. * Notify listeners about event related with interface
  51. */
  52. static void wpas_dbus_signal_interface(struct wpa_supplicant *wpa_s,
  53. const char *sig_name)
  54. {
  55. struct wpas_dbus_priv *iface;
  56. DBusMessage *_signal;
  57. const char *path;
  58. iface = wpa_s->global->dbus;
  59. /* Do nothing if the control interface is not turned on */
  60. if (iface == NULL)
  61. return;
  62. path = wpas_dbus_get_path(wpa_s);
  63. if (path == NULL) {
  64. wpa_printf(MSG_ERROR, "wpas_dbus_signal_interface[dbus]: "
  65. "Interface doesn't have a dbus path. "
  66. "Can't send signal.");
  67. return;
  68. }
  69. _signal = dbus_message_new_signal(WPAS_DBUS_NEW_PATH,
  70. WPAS_DBUS_NEW_INTERFACE, sig_name);
  71. if (_signal == NULL) {
  72. wpa_printf(MSG_ERROR, "wpas_dbus_signal_interface[dbus]: "
  73. "enough memory to send scan results signal.");
  74. return;
  75. }
  76. if (dbus_message_append_args(_signal, DBUS_TYPE_OBJECT_PATH, &path,
  77. DBUS_TYPE_INVALID)) {
  78. dbus_connection_send(iface->con, _signal, NULL);
  79. } else {
  80. wpa_printf(MSG_ERROR, "wpas_dbus_signal_interface[dbus]: "
  81. "not enough memory to construct signal.");
  82. }
  83. dbus_message_unref(_signal);
  84. }
  85. /**
  86. * wpas_dbus_signal_interface_created - Send a interface created signal
  87. * @wpa_s: %wpa_supplicant network interface data
  88. *
  89. * Notify listeners about creating new interface
  90. */
  91. static void wpas_dbus_signal_interface_created(struct wpa_supplicant *wpa_s)
  92. {
  93. wpas_dbus_signal_interface(wpa_s, "InterfaceCreated");
  94. }
  95. /**
  96. * wpas_dbus_signal_interface_removed - Send a interface removed signal
  97. * @wpa_s: %wpa_supplicant network interface data
  98. *
  99. * Notify listeners about removing interface
  100. */
  101. static void wpas_dbus_signal_interface_removed(struct wpa_supplicant *wpa_s)
  102. {
  103. wpas_dbus_signal_interface(wpa_s, "InterfaceRemoved");
  104. }
  105. /**
  106. * wpas_dbus_signal_scan_done - send scan done signal
  107. * @wpa_s: %wpa_supplicant network interface data
  108. * @success: indicates if scanning succeed or failed
  109. *
  110. * Notify listeners about finishing a scan
  111. */
  112. static void wpas_dbus_signal_scan_done(struct wpa_supplicant *wpa_s,
  113. int success)
  114. {
  115. struct wpas_dbus_priv *iface;
  116. DBusMessage *_signal;
  117. const char *path;
  118. dbus_bool_t succ;
  119. iface = wpa_s->global->dbus;
  120. /* Do nothing if the control interface is not turned on */
  121. if (iface == NULL)
  122. return;
  123. path = wpas_dbus_get_path(wpa_s);
  124. if (path == NULL) {
  125. wpa_printf(MSG_ERROR, "wpas_dbus_signal_scan_done[dbus]: "
  126. "Interface doesn't have a dbus path. "
  127. "Can't send signal.");
  128. return;
  129. }
  130. _signal = dbus_message_new_signal(path, WPAS_DBUS_NEW_IFACE_INTERFACE,
  131. "ScanDone");
  132. if (_signal == NULL) {
  133. wpa_printf(MSG_ERROR, "wpas_dbus_signal_scan_done[dbus]: "
  134. "enough memory to send signal.");
  135. return;
  136. }
  137. succ = success ? TRUE : FALSE;
  138. if (dbus_message_append_args(_signal, DBUS_TYPE_BOOLEAN, &succ,
  139. DBUS_TYPE_INVALID)) {
  140. dbus_connection_send(iface->con, _signal, NULL);
  141. } else {
  142. wpa_printf(MSG_ERROR, "wpas_dbus_signal_scan_done[dbus]: "
  143. "not enough memory to construct signal.");
  144. }
  145. dbus_message_unref(_signal);
  146. }
  147. /**
  148. * wpas_dbus_signal_blob - Send a BSS related event signal
  149. * @wpa_s: %wpa_supplicant network interface data
  150. * @bss_obj_path: BSS object path
  151. * @sig_name: signal name - BSSAdded or BSSRemoved
  152. *
  153. * Notify listeners about event related with BSS
  154. */
  155. static void wpas_dbus_signal_bss(struct wpa_supplicant *wpa_s,
  156. const char *bss_obj_path,
  157. const char *sig_name)
  158. {
  159. struct wpas_dbus_priv *iface;
  160. DBusMessage *_signal;
  161. const char *path;
  162. iface = wpa_s->global->dbus;
  163. /* Do nothing if the control interface is not turned on */
  164. if (iface == NULL)
  165. return;
  166. path = wpas_dbus_get_path(wpa_s);
  167. if (path == NULL) {
  168. wpa_printf(MSG_ERROR, "wpas_dbus_signal_bss[dbus]: "
  169. "Interface doesn't have a dbus path. "
  170. "Can't send signal.");
  171. return;
  172. }
  173. _signal = dbus_message_new_signal(path, WPAS_DBUS_NEW_IFACE_INTERFACE,
  174. sig_name);
  175. if (_signal == NULL) {
  176. wpa_printf(MSG_ERROR, "wpas_dbus_signal_bss[dbus]: "
  177. "enough memory to send signal.");
  178. return;
  179. }
  180. if (dbus_message_append_args(_signal, DBUS_TYPE_OBJECT_PATH,
  181. &bss_obj_path, DBUS_TYPE_INVALID)) {
  182. dbus_connection_send(iface->con, _signal, NULL);
  183. } else {
  184. wpa_printf(MSG_ERROR, "wpas_dbus_signal_bss[dbus]: "
  185. "not enough memory to construct signal.");
  186. }
  187. dbus_message_unref(_signal);
  188. }
  189. /**
  190. * wpas_dbus_signal_bss_added - Send a BSS added signal
  191. * @wpa_s: %wpa_supplicant network interface data
  192. * @bss_obj_path: new BSS object path
  193. *
  194. * Notify listeners about adding new BSS
  195. */
  196. static void wpas_dbus_signal_bss_added(struct wpa_supplicant *wpa_s,
  197. const char *bss_obj_path)
  198. {
  199. wpas_dbus_signal_bss(wpa_s, bss_obj_path, "BSSAdded");
  200. }
  201. /**
  202. * wpas_dbus_signal_bss_removed - Send a BSS removed signal
  203. * @wpa_s: %wpa_supplicant network interface data
  204. * @bss_obj_path: BSS object path
  205. *
  206. * Notify listeners about removing BSS
  207. */
  208. static void wpas_dbus_signal_bss_removed(struct wpa_supplicant *wpa_s,
  209. const char *bss_obj_path)
  210. {
  211. wpas_dbus_signal_bss(wpa_s, bss_obj_path, "BSSRemoved");
  212. }
  213. /**
  214. * wpas_dbus_signal_blob - Send a blob related event signal
  215. * @wpa_s: %wpa_supplicant network interface data
  216. * @name: blob name
  217. * @sig_name: signal name - BlobAdded or BlobRemoved
  218. *
  219. * Notify listeners about event related with blob
  220. */
  221. static void wpas_dbus_signal_blob(struct wpa_supplicant *wpa_s,
  222. const char *name, const char *sig_name)
  223. {
  224. struct wpas_dbus_priv *iface;
  225. DBusMessage *_signal;
  226. const char *path;
  227. iface = wpa_s->global->dbus;
  228. /* Do nothing if the control interface is not turned on */
  229. if (iface == NULL)
  230. return;
  231. path = wpas_dbus_get_path(wpa_s);
  232. if (path == NULL) {
  233. wpa_printf(MSG_ERROR, "wpas_dbus_signal_blob[dbus]: "
  234. "Interface doesn't have a dbus path. "
  235. "Can't send signal.");
  236. return;
  237. }
  238. _signal = dbus_message_new_signal(path, WPAS_DBUS_NEW_IFACE_INTERFACE,
  239. sig_name);
  240. if (_signal == NULL) {
  241. wpa_printf(MSG_ERROR, "wpas_dbus_signal_blob[dbus]: "
  242. "enough memory to send signal.");
  243. return;
  244. }
  245. if (dbus_message_append_args(_signal, DBUS_TYPE_STRING, &name,
  246. DBUS_TYPE_INVALID)) {
  247. dbus_connection_send(iface->con, _signal, NULL);
  248. } else {
  249. wpa_printf(MSG_ERROR, "wpas_dbus_signal_blob[dbus]: "
  250. "not enough memory to construct signal.");
  251. }
  252. dbus_message_unref(_signal);
  253. }
  254. /**
  255. * wpas_dbus_signal_blob_added - Send a blob added signal
  256. * @wpa_s: %wpa_supplicant network interface data
  257. * @name: blob name
  258. *
  259. * Notify listeners about adding a new blob
  260. */
  261. static void wpas_dbus_signal_blob_added(struct wpa_supplicant *wpa_s,
  262. const char *name)
  263. {
  264. wpas_dbus_signal_blob(wpa_s, name, "BlobAdded");
  265. }
  266. /**
  267. * wpas_dbus_signal_blob_removed - Send a blob removed signal
  268. * @wpa_s: %wpa_supplicant network interface data
  269. * @name: blob name
  270. *
  271. * Notify listeners about removing blob
  272. */
  273. static void wpas_dbus_signal_blob_removed(struct wpa_supplicant *wpa_s,
  274. const char *name)
  275. {
  276. wpas_dbus_signal_blob(wpa_s, name, "BlobRemoved");
  277. }
  278. /**
  279. * wpas_dbus_signal_network - Send a network related event signal
  280. * @wpa_s: %wpa_supplicant network interface data
  281. * @id: new network id
  282. * @sig_name: signal name - NetworkAdded, NetworkRemoved or NetworkSelected
  283. *
  284. * Notify listeners about event related with configured network
  285. */
  286. static void wpas_dbus_signal_network(struct wpa_supplicant *wpa_s,
  287. int id, const char *sig_name)
  288. {
  289. struct wpas_dbus_priv *iface;
  290. DBusMessage *_signal;
  291. const char *path;
  292. char *net_obj_path;
  293. iface = wpa_s->global->dbus;
  294. /* Do nothing if the control interface is not turned on */
  295. if (iface == NULL)
  296. return;
  297. path = wpas_dbus_get_path(wpa_s);
  298. if (path == NULL) {
  299. wpa_printf(MSG_ERROR, "wpas_dbus_signal_network[dbus]: "
  300. "Interface doesn't have a dbus path. "
  301. "Can't send signal.");
  302. return;
  303. }
  304. net_obj_path = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
  305. if (net_obj_path == NULL)
  306. return;
  307. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  308. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u", path, id);
  309. _signal = dbus_message_new_signal(path, WPAS_DBUS_NEW_IFACE_INTERFACE,
  310. sig_name);
  311. if (_signal == NULL) {
  312. wpa_printf(MSG_ERROR, "wpas_dbus_signal_network[dbus]: "
  313. "enough memory to send signal.");
  314. os_free(net_obj_path);
  315. return;
  316. }
  317. if (dbus_message_append_args(_signal, DBUS_TYPE_OBJECT_PATH,
  318. &net_obj_path, DBUS_TYPE_INVALID)) {
  319. dbus_connection_send(iface->con, _signal, NULL);
  320. } else {
  321. wpa_printf(MSG_ERROR, "wpas_dbus_signal_network[dbus]: "
  322. "not enough memory to construct signal.");
  323. }
  324. os_free(net_obj_path);
  325. dbus_message_unref(_signal);
  326. }
  327. /**
  328. * wpas_dbus_signal_network_added - Send a network added signal
  329. * @wpa_s: %wpa_supplicant network interface data
  330. * @id: new network id
  331. *
  332. * Notify listeners about adding new network
  333. */
  334. static void wpas_dbus_signal_network_added(struct wpa_supplicant *wpa_s,
  335. int id)
  336. {
  337. wpas_dbus_signal_network(wpa_s, id, "NetworkAdded");
  338. }
  339. /**
  340. * wpas_dbus_signal_network_removed - Send a network removed signal
  341. * @wpa_s: %wpa_supplicant network interface data
  342. * @id: network id
  343. *
  344. * Notify listeners about removing a network
  345. */
  346. static void wpas_dbus_signal_network_removed(struct wpa_supplicant *wpa_s,
  347. int id)
  348. {
  349. wpas_dbus_signal_network(wpa_s, id, "NetworkRemoved");
  350. }
  351. /**
  352. * wpas_dbus_signal_network_selected - Send a network selected signal
  353. * @wpa_s: %wpa_supplicant network interface data
  354. * @id: network id
  355. *
  356. * Notify listeners about selecting a network
  357. */
  358. static void wpas_dbus_signal_network_selected(struct wpa_supplicant *wpa_s,
  359. int id)
  360. {
  361. wpas_dbus_signal_network(wpa_s, id, "NetworkSelected");
  362. }
  363. /**
  364. * wpas_dbus_signal_state_changed - Send a state changed signal
  365. * @wpa_s: %wpa_supplicant network interface data
  366. * @new_state: new state wpa_supplicant is entering
  367. * @old_state: old state wpa_supplicant is leaving
  368. *
  369. * Notify listeners that wpa_supplicant has changed state
  370. */
  371. static void wpas_dbus_signal_state_changed(struct wpa_supplicant *wpa_s,
  372. enum wpa_states new_state,
  373. enum wpa_states old_state)
  374. {
  375. struct wpas_dbus_priv *iface;
  376. DBusMessage *_signal = NULL;
  377. const char *path;
  378. char *new_state_str, *old_state_str;
  379. char *tmp;
  380. /* Do nothing if the control interface is not turned on */
  381. if (wpa_s->global == NULL)
  382. return;
  383. iface = wpa_s->global->dbus;
  384. if (iface == NULL)
  385. return;
  386. /* Only send signal if state really changed */
  387. if (new_state == old_state)
  388. return;
  389. path = wpas_dbus_get_path(wpa_s);
  390. if (path == NULL) {
  391. perror("wpas_dbus_signal_state_changed[dbus]: "
  392. "interface didn't have a dbus path");
  393. wpa_printf(MSG_ERROR,
  394. "wpas_dbus_signal_state_changed[dbus]: "
  395. "interface didn't have a dbus path; can't send "
  396. "signal.");
  397. return;
  398. }
  399. _signal = dbus_message_new_signal(path, WPAS_DBUS_NEW_IFACE_INTERFACE,
  400. "StateChanged");
  401. if (_signal == NULL) {
  402. perror("wpas_dbus_signal_state_changed[dbus]: "
  403. "couldn't create dbus signal; likely out of memory");
  404. wpa_printf(MSG_ERROR,
  405. "wpas_dbus_signal_state_changed[dbus]: "
  406. "couldn't create dbus signal; likely out of "
  407. "memory.");
  408. return;
  409. }
  410. new_state_str = os_strdup(wpa_supplicant_state_txt(new_state));
  411. old_state_str = os_strdup(wpa_supplicant_state_txt(old_state));
  412. if (new_state_str == NULL || old_state_str == NULL) {
  413. perror("wpas_dbus_signal_state_changed[dbus]: "
  414. "couldn't convert state strings");
  415. wpa_printf(MSG_ERROR,
  416. "wpas_dbus_signal_state_changed[dbus]: "
  417. "couldn't convert state strings.");
  418. goto out;
  419. }
  420. /* make state string lowercase to fit new DBus API convention */
  421. tmp = new_state_str;
  422. while (*tmp) {
  423. *tmp = tolower(*tmp);
  424. tmp++;
  425. }
  426. tmp = old_state_str;
  427. while (*tmp) {
  428. *tmp = tolower(*tmp);
  429. tmp++;
  430. }
  431. if (!dbus_message_append_args(_signal,
  432. DBUS_TYPE_STRING, &new_state_str,
  433. DBUS_TYPE_STRING, &old_state_str,
  434. DBUS_TYPE_INVALID)) {
  435. perror("wpas_dbus_signal_state_changed[dbus]: "
  436. "not enough memory to construct state change signal.");
  437. wpa_printf(MSG_ERROR,
  438. "wpas_dbus_signal_state_changed[dbus]: "
  439. "not enough memory to construct state change "
  440. "signal.");
  441. goto out;
  442. }
  443. dbus_connection_send(iface->con, _signal, NULL);
  444. out:
  445. dbus_message_unref(_signal);
  446. os_free(new_state_str);
  447. os_free(old_state_str);
  448. }
  449. /**
  450. * wpas_dbus_signal_network_enabled_changed - Signals Enabled property changes
  451. * @wpa_s: %wpa_supplicant network interface data
  452. * @ssid: configured network which Enabled property has changed
  453. *
  454. * Sends PropertyChanged signals containing new value of Enabled property
  455. * for specified network
  456. */
  457. static void wpas_dbus_signal_network_enabled_changed(
  458. struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid)
  459. {
  460. struct network_handler_args args = {wpa_s, ssid};
  461. char path[WPAS_DBUS_OBJECT_PATH_MAX];
  462. os_snprintf(path, WPAS_DBUS_OBJECT_PATH_MAX,
  463. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%d",
  464. wpas_dbus_get_path(wpa_s), ssid->id);
  465. wpa_dbus_signal_property_changed(wpa_s->global->dbus,
  466. (WPADBusPropertyAccessor)
  467. wpas_dbus_getter_enabled, &args,
  468. path, WPAS_DBUS_NEW_IFACE_NETWORK,
  469. "Enabled");
  470. }
  471. #ifdef CONFIG_WPS
  472. /**
  473. * wpas_dbus_signal_wps_event_success - Signals Success WPS event
  474. * @wpa_s: %wpa_supplicant network interface data
  475. *
  476. * Sends Event dbus signal with name "success" and empty dict as arguments
  477. */
  478. static void wpas_dbus_signal_wps_event_success(struct wpa_supplicant *wpa_s)
  479. {
  480. DBusMessage *_signal = NULL;
  481. DBusMessageIter iter, dict_iter;
  482. struct wpas_dbus_priv *iface;
  483. char *key = "success";
  484. const char *path;
  485. iface = wpa_s->global->dbus;
  486. /* Do nothing if the control interface is not turned on */
  487. if (iface == NULL)
  488. return;
  489. path = wpas_dbus_get_path(wpa_s);
  490. if (!path) {
  491. wpa_printf(MSG_ERROR, "wpas_dbus_signal_wps_event_success"
  492. "[dbus]: interface has no dbus path set");
  493. return;
  494. }
  495. _signal = dbus_message_new_signal(path, WPAS_DBUS_NEW_IFACE_WPS,
  496. "Event");
  497. if (!_signal) {
  498. wpa_printf(MSG_ERROR, "wpas_dbus_signal_wps_event_success"
  499. "[dbus]: out of memory when creating a signal");
  500. return;
  501. }
  502. dbus_message_iter_init_append(_signal, &iter);
  503. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &key) ||
  504. !wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  505. !wpa_dbus_dict_close_write(&iter, &dict_iter)) {
  506. wpa_printf(MSG_ERROR, "wpas_dbus_signal_wps_event_success"
  507. "[dbus]: out of memory");
  508. goto out;
  509. }
  510. dbus_connection_send(iface->con, _signal, NULL);
  511. out:
  512. dbus_message_unref(_signal);
  513. }
  514. /**
  515. * wpas_dbus_signal_wps_event_fail - Signals Fail WPS event
  516. * @wpa_s: %wpa_supplicant network interface data
  517. *
  518. * Sends Event dbus signal with name "fail" and dictionary containing
  519. * "msg field with fail message number (int32) as arguments
  520. */
  521. static void wpas_dbus_signal_wps_event_fail(struct wpa_supplicant *wpa_s,
  522. struct wps_event_fail *fail)
  523. {
  524. DBusMessage *_signal = NULL;
  525. DBusMessageIter iter, dict_iter;
  526. struct wpas_dbus_priv *iface;
  527. char *key = "fail";
  528. const char *path;
  529. iface = wpa_s->global->dbus;
  530. /* Do nothing if the control interface is not turned on */
  531. if (iface == NULL)
  532. return;
  533. path = wpas_dbus_get_path(wpa_s);
  534. if (!path) {
  535. wpa_printf(MSG_ERROR, "wpas_dbus_signal_wps_event_fail[dbus]: "
  536. "interface has no dbus path set");
  537. return;
  538. }
  539. _signal = dbus_message_new_signal(path, WPAS_DBUS_NEW_IFACE_WPS,
  540. "Event");
  541. if (!_signal) {
  542. wpa_printf(MSG_ERROR, "wpas_dbus_signal_wps_event_fail[dbus]: "
  543. "out of memory when creating a signal");
  544. return;
  545. }
  546. dbus_message_iter_init_append(_signal, &iter);
  547. if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &key) ||
  548. !wpa_dbus_dict_open_write(&iter, &dict_iter) ||
  549. !wpa_dbus_dict_append_int32(&dict_iter, "msg", fail->msg) ||
  550. !wpa_dbus_dict_close_write(&iter, &dict_iter)) {
  551. wpa_printf(MSG_ERROR, "wpas_dbus_signal_wps_event_fail[dbus]: "
  552. "out of memory");
  553. goto out;
  554. }
  555. dbus_connection_send(iface->con, _signal, NULL);
  556. out:
  557. dbus_message_unref(_signal);
  558. }
  559. /**
  560. * wpas_dbus_signal_wps_event_m2d - Signals M2D WPS event
  561. * @wpa_s: %wpa_supplicant network interface data
  562. *
  563. * Sends Event dbus signal with name "m2d" and dictionary containing
  564. * fields of wps_event_m2d structure.
  565. */
  566. static void wpas_dbus_signal_wps_event_m2d(struct wpa_supplicant *wpa_s,
  567. struct wps_event_m2d *m2d)
  568. {
  569. DBusMessage *_signal = NULL;
  570. DBusMessageIter iter, dict_iter;
  571. struct wpas_dbus_priv *iface;
  572. char *key = "m2d";
  573. const char *path;
  574. iface = wpa_s->global->dbus;
  575. /* Do nothing if the control interface is not turned on */
  576. if (iface == NULL)
  577. return;
  578. path = wpas_dbus_get_path(wpa_s);
  579. if (!path) {
  580. wpa_printf(MSG_ERROR, "wpas_dbus_signal_wps_event_m2d[dbus]: "
  581. "interface has no dbus path set");
  582. return;
  583. }
  584. _signal = dbus_message_new_signal(path, WPAS_DBUS_NEW_IFACE_WPS,
  585. "Event");
  586. if (!_signal) {
  587. wpa_printf(MSG_ERROR, "wpas_dbus_signal_wps_event_m2d[dbus]: "
  588. "out of memory when creating a signal");
  589. return;
  590. }
  591. dbus_message_iter_init_append(_signal, &iter);
  592. if (!(dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &key) &&
  593. wpa_dbus_dict_open_write(&iter, &dict_iter) &&
  594. wpa_dbus_dict_append_uint16(&dict_iter, "config_methods",
  595. m2d->config_methods) &&
  596. wpa_dbus_dict_append_byte_array(&dict_iter, "manufacturer",
  597. (const char *) m2d->manufacturer,
  598. m2d->manufacturer_len) &&
  599. wpa_dbus_dict_append_byte_array(&dict_iter, "model_name",
  600. (const char *) m2d->model_name,
  601. m2d->model_name_len) &&
  602. wpa_dbus_dict_append_byte_array(&dict_iter, "model_number",
  603. (const char *) m2d->model_number,
  604. m2d->model_number_len) &&
  605. wpa_dbus_dict_append_byte_array(&dict_iter, "serial_number",
  606. (const char *)
  607. m2d->serial_number,
  608. m2d->serial_number_len) &&
  609. wpa_dbus_dict_append_byte_array(&dict_iter, "dev_name",
  610. (const char *) m2d->dev_name,
  611. m2d->dev_name_len) &&
  612. wpa_dbus_dict_append_byte_array(&dict_iter, "primary_dev_type",
  613. (const char *)
  614. m2d->primary_dev_type, 8) &&
  615. wpa_dbus_dict_append_uint16(&dict_iter, "config_error",
  616. m2d->config_error) &&
  617. wpa_dbus_dict_append_uint16(&dict_iter, "dev_password_id",
  618. m2d->dev_password_id) &&
  619. wpa_dbus_dict_close_write(&iter, &dict_iter))) {
  620. wpa_printf(MSG_ERROR, "wpas_dbus_signal_wps_event_m2d[dbus]: "
  621. "out of memory");
  622. goto out;
  623. }
  624. dbus_connection_send(iface->con, _signal, NULL);
  625. out:
  626. dbus_message_unref(_signal);
  627. }
  628. /**
  629. * wpas_dbus_signal_wps_cred - Signals new credentials
  630. * @wpa_s: %wpa_supplicant network interface data
  631. *
  632. * Sends signal with credentials in directory argument
  633. */
  634. static void wpas_dbus_signal_wps_cred(struct wpa_supplicant *wpa_s,
  635. const struct wps_credential *cred)
  636. {
  637. DBusMessage *_signal = NULL;
  638. DBusMessageIter iter, dict_iter;
  639. struct wpas_dbus_priv *iface;
  640. const char *path;
  641. char *auth_type[6]; /* we have six possible authorization types */
  642. int at_num = 0;
  643. char *encr_type[4]; /* we have four possible encryption types */
  644. int et_num = 0;
  645. iface = wpa_s->global->dbus;
  646. /* Do nothing if the control interface is not turned on */
  647. if (iface == NULL)
  648. return;
  649. path = wpas_dbus_get_path(wpa_s);
  650. if (!path) {
  651. wpa_printf(MSG_ERROR, "wpas_dbus_signal_wps_cred[dbus]: "
  652. "interface has no dbus path set");
  653. return;
  654. }
  655. _signal = dbus_message_new_signal(path, WPAS_DBUS_NEW_IFACE_WPS,
  656. "Credentials");
  657. if (!_signal) {
  658. wpa_printf(MSG_ERROR, "wpas_dbus_signal_wps_cred[dbus]: "
  659. "out of memory when creating a signal");
  660. return;
  661. }
  662. dbus_message_iter_init_append(_signal, &iter);
  663. if (!wpa_dbus_dict_open_write(&iter, &dict_iter)) {
  664. perror("wpas_dbus_signal_wps_cred[dbus]: out of memory "
  665. "when opening a dictionary");
  666. goto nomem;
  667. }
  668. if (cred->auth_type & WPS_AUTH_OPEN)
  669. auth_type[at_num++] = "open";
  670. if (cred->auth_type & WPS_AUTH_WPAPSK)
  671. auth_type[at_num++] = "wpa-psk";
  672. if (cred->auth_type & WPS_AUTH_SHARED)
  673. auth_type[at_num++] = "shared";
  674. if (cred->auth_type & WPS_AUTH_WPA)
  675. auth_type[at_num++] = "wpa-eap";
  676. if (cred->auth_type & WPS_AUTH_WPA2)
  677. auth_type[at_num++] = "wpa2-eap";
  678. if (cred->auth_type & WPS_AUTH_WPA2PSK)
  679. auth_type[at_num++] =
  680. "wpa2-psk";
  681. if (cred->encr_type & WPS_ENCR_NONE)
  682. encr_type[et_num++] = "none";
  683. if (cred->encr_type & WPS_ENCR_WEP)
  684. encr_type[et_num++] = "wep";
  685. if (cred->encr_type & WPS_ENCR_TKIP)
  686. encr_type[et_num++] = "tkip";
  687. if (cred->encr_type & WPS_ENCR_AES)
  688. encr_type[et_num++] = "aes";
  689. if (wpa_s->current_ssid) {
  690. if (!wpa_dbus_dict_append_byte_array(
  691. &dict_iter, "BSSID",
  692. (const char *) wpa_s->current_ssid->bssid,
  693. ETH_ALEN)) {
  694. perror("wpas_dbus_signal_wps_cred[dbus]: out of "
  695. "memory when appending bssid to dictionary");
  696. goto nomem;
  697. }
  698. }
  699. if (!(wpa_dbus_dict_append_byte_array(&dict_iter, "SSID",
  700. (const char *) cred->ssid,
  701. cred->ssid_len) &&
  702. wpa_dbus_dict_append_string_array(&dict_iter, "AuthType",
  703. (const char **) auth_type,
  704. at_num) &&
  705. wpa_dbus_dict_append_string_array(&dict_iter, "EncrType",
  706. (const char **) encr_type,
  707. et_num) &&
  708. wpa_dbus_dict_append_byte_array(&dict_iter, "Key",
  709. (const char *) cred->key,
  710. cred->key_len) &&
  711. wpa_dbus_dict_append_uint32(&dict_iter, "KeyIndex",
  712. cred->key_idx))) {
  713. perror("wpas_dbus_signal_wps_cred[dbus]: out of memory "
  714. "when appending to dictionary");
  715. goto nomem;
  716. }
  717. if (!wpa_dbus_dict_close_write(&iter, &dict_iter)) {
  718. perror("wpas_dbus_signal_wps_cred[dbus]: out of memory "
  719. "when closing a dictionary");
  720. goto nomem;
  721. }
  722. dbus_connection_send(iface->con, _signal, NULL);
  723. nomem:
  724. dbus_message_unref(_signal);
  725. }
  726. #endif /* CONFIG_WPS */
  727. /**
  728. * wpas_dbus_signal_prop_changed - Signals change of property
  729. * @wpa_s: %wpa_supplicant network interface data
  730. * @property: indicates which property has changed
  731. *
  732. * Sends ProertyChanged signals with path, interface and arguments
  733. * depending on which property has changed.
  734. */
  735. static void wpas_dbus_signal_prop_changed(struct wpa_supplicant *wpa_s,
  736. enum wpas_dbus_prop property)
  737. {
  738. WPADBusPropertyAccessor getter;
  739. char *iface;
  740. char *prop;
  741. void *arg;
  742. switch (property) {
  743. case WPAS_DBUS_PROP_AP_SCAN:
  744. getter = (WPADBusPropertyAccessor) wpas_dbus_getter_ap_scan;
  745. arg = wpa_s;
  746. iface = WPAS_DBUS_NEW_IFACE_INTERFACE;
  747. prop = "ApScan";
  748. break;
  749. case WPAS_DBUS_PROP_SCANNING:
  750. getter = (WPADBusPropertyAccessor) wpas_dbus_getter_scanning;
  751. arg = wpa_s;
  752. iface = WPAS_DBUS_NEW_IFACE_INTERFACE;
  753. prop = "Scanning";
  754. break;
  755. case WPAS_DBUS_PROP_CURRENT_BSS:
  756. getter = (WPADBusPropertyAccessor)
  757. wpas_dbus_getter_current_bss;
  758. arg = wpa_s;
  759. iface = WPAS_DBUS_NEW_IFACE_INTERFACE;
  760. prop = "CurrentBSS";
  761. break;
  762. case WPAS_DBUS_PROP_CURRENT_NETWORK:
  763. getter = (WPADBusPropertyAccessor)
  764. wpas_dbus_getter_current_network;
  765. arg = wpa_s;
  766. iface = WPAS_DBUS_NEW_IFACE_INTERFACE;
  767. prop = "CurrentNetwork";
  768. break;
  769. default:
  770. wpa_printf(MSG_ERROR, "wpas_dbus_signal_prop_changed[dbus]: "
  771. "Unknown Property enum value %d", property);
  772. return;
  773. }
  774. wpa_dbus_signal_property_changed(wpa_s->global->dbus,
  775. getter, arg,
  776. wpas_dbus_get_path(wpa_s), iface,
  777. prop);
  778. }
  779. /**
  780. * wpas_dbus_signal_debug_params_changed - Signals change of debug params
  781. * @global: wpa_global structure
  782. *
  783. * Sends ProertyChanged signals informing that debug params has changed.
  784. */
  785. static void wpas_dbus_signal_debug_params_changed(struct wpa_global *global)
  786. {
  787. wpa_dbus_signal_property_changed(global->dbus,
  788. (WPADBusPropertyAccessor)
  789. wpas_dbus_getter_debug_params,
  790. global, WPAS_DBUS_NEW_PATH,
  791. WPAS_DBUS_NEW_INTERFACE,
  792. "DebugParams");
  793. }
  794. struct wpas_dbus_method {
  795. const char *name;
  796. const char *iface;
  797. WPADBusMethodHandler handler;
  798. struct wpa_dbus_argument args[3];
  799. };
  800. struct wpas_dbus_property {
  801. const char *name;
  802. const char *iface;
  803. const char *type;
  804. WPADBusPropertyAccessor getter;
  805. WPADBusPropertyAccessor setter;
  806. enum dbus_prop_access _access;
  807. };
  808. struct wpas_dbus_signal {
  809. const char *name;
  810. const char *iface;
  811. struct wpa_dbus_argument args[3];
  812. };
  813. static void wpas_dbus_register(struct wpa_dbus_object_desc *obj_desc,
  814. void *priv,
  815. const struct wpas_dbus_method *methods,
  816. const struct wpas_dbus_property *properties,
  817. const struct wpas_dbus_signal *signals)
  818. {
  819. int i;
  820. for (i = 0; methods && methods[i].name; i++) {
  821. wpa_dbus_method_register(obj_desc, methods[i].iface,
  822. methods[i].name, methods[i].handler,
  823. priv, NULL, methods[i].args);
  824. }
  825. for (i = 0; properties && properties[i].name; i++) {
  826. wpa_dbus_property_register(obj_desc, properties[i].iface,
  827. properties[i].name,
  828. properties[i].type,
  829. properties[i].getter,
  830. properties[i].setter,
  831. priv, NULL, properties[i]._access);
  832. }
  833. for (i = 0; signals && signals[i].name; i++) {
  834. wpa_dbus_signal_register(obj_desc, signals[i].iface,
  835. signals[i].name, signals[i].args);
  836. }
  837. }
  838. static const struct wpas_dbus_method wpas_dbus_global_methods[] = {
  839. { "CreateInterface", WPAS_DBUS_NEW_INTERFACE,
  840. (WPADBusMethodHandler) &wpas_dbus_handler_create_interface,
  841. {
  842. { "args", "a{sv}", ARG_IN },
  843. { "path", "o", ARG_OUT },
  844. END_ARGS
  845. }
  846. },
  847. { "RemoveInterface", WPAS_DBUS_NEW_INTERFACE,
  848. (WPADBusMethodHandler) &wpas_dbus_handler_remove_interface,
  849. {
  850. { "path", "o", ARG_IN },
  851. END_ARGS
  852. }
  853. },
  854. { "GetInterface", WPAS_DBUS_NEW_INTERFACE,
  855. (WPADBusMethodHandler) &wpas_dbus_handler_get_interface,
  856. {
  857. { "ifname", "s", ARG_IN },
  858. { "path", "o", ARG_OUT },
  859. END_ARGS
  860. }
  861. },
  862. { NULL, NULL, NULL, { END_ARGS } }
  863. };
  864. static const struct wpas_dbus_property wpas_dbus_global_properties[] = {
  865. { "DebugParams", WPAS_DBUS_NEW_INTERFACE, "(ibb)",
  866. (WPADBusPropertyAccessor) &wpas_dbus_getter_debug_params,
  867. (WPADBusPropertyAccessor) &wpas_dbus_setter_debug_params,
  868. RW
  869. },
  870. { "Interfaces", WPAS_DBUS_NEW_INTERFACE, "ao",
  871. (WPADBusPropertyAccessor) &wpas_dbus_getter_interfaces,
  872. NULL,
  873. R
  874. },
  875. { "EapMethods", WPAS_DBUS_NEW_INTERFACE, "as",
  876. wpas_dbus_getter_eap_methods,
  877. NULL,
  878. R
  879. },
  880. { NULL, NULL, NULL, NULL, NULL, 0 }
  881. };
  882. static const struct wpas_dbus_signal wpas_dbus_global_signals[] = {
  883. { "InterfaceAdded", WPAS_DBUS_NEW_INTERFACE,
  884. {
  885. { "path", "o", ARG_OUT },
  886. END_ARGS
  887. }
  888. },
  889. { "InterfaceRemoved", WPAS_DBUS_NEW_INTERFACE,
  890. {
  891. { "path", "o", ARG_OUT },
  892. END_ARGS
  893. }
  894. },
  895. { "PropertiesChanged", WPAS_DBUS_NEW_INTERFACE,
  896. {
  897. { "properties", "a{sv}", ARG_OUT },
  898. END_ARGS
  899. }
  900. },
  901. { NULL, NULL, { END_ARGS } }
  902. };
  903. /**
  904. * wpas_dbus_ctrl_iface_init - Initialize dbus control interface
  905. * @global: Pointer to global data from wpa_supplicant_init()
  906. * Returns: 0 on success or -1 on failure
  907. *
  908. * Initialize the dbus control interface for wpa_supplicantand and start
  909. * receiving commands from external programs over the bus.
  910. */
  911. int wpas_dbus_ctrl_iface_init(struct wpas_dbus_priv *priv)
  912. {
  913. struct wpa_dbus_object_desc *obj_desc;
  914. int ret;
  915. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  916. if (!obj_desc) {
  917. wpa_printf(MSG_ERROR, "Not enough memory "
  918. "to create object description");
  919. return -1;
  920. }
  921. wpas_dbus_register(obj_desc, priv->global, wpas_dbus_global_methods,
  922. wpas_dbus_global_properties,
  923. wpas_dbus_global_signals);
  924. wpa_printf(MSG_DEBUG, "dbus: Register D-Bus object '%s'",
  925. WPAS_DBUS_NEW_PATH);
  926. ret = wpa_dbus_ctrl_iface_init(priv, WPAS_DBUS_NEW_PATH,
  927. WPAS_DBUS_NEW_SERVICE,
  928. obj_desc);
  929. if (ret < 0)
  930. free_dbus_object_desc(obj_desc);
  931. else
  932. priv->dbus_new_initialized = 1;
  933. return ret;
  934. }
  935. /**
  936. * wpas_dbus_ctrl_iface_deinit - Deinitialize dbus ctrl interface for
  937. * wpa_supplicant
  938. * @iface: Pointer to dbus private data from wpas_dbus_init()
  939. *
  940. * Deinitialize the dbus control interface that was initialized with
  941. * wpas_dbus_ctrl_iface_init().
  942. */
  943. void wpas_dbus_ctrl_iface_deinit(struct wpas_dbus_priv *iface)
  944. {
  945. if (!iface->dbus_new_initialized)
  946. return;
  947. wpa_printf(MSG_DEBUG, "dbus: Unregister D-Bus object '%s'",
  948. WPAS_DBUS_NEW_PATH);
  949. dbus_connection_unregister_object_path(iface->con,
  950. WPAS_DBUS_NEW_PATH);
  951. }
  952. static void wpa_dbus_free(void *ptr)
  953. {
  954. os_free(ptr);
  955. }
  956. /**
  957. * wpas_dbus_register_network - Register a configured network with dbus
  958. * @wpa_s: wpa_supplicant interface structure
  959. * @ssid: network configuration data
  960. * Returns: 0 on success, -1 on failure
  961. *
  962. * Registers network representing object with dbus
  963. */
  964. static int wpas_dbus_register_network(struct wpa_supplicant *wpa_s,
  965. struct wpa_ssid *ssid)
  966. {
  967. struct wpas_dbus_priv *ctrl_iface;
  968. struct wpa_dbus_object_desc *obj_desc;
  969. struct network_handler_args *arg1 = NULL;
  970. struct network_handler_args *arg2 = NULL;
  971. char *net_obj_path;
  972. struct wpa_dbus_argument sargs[] = {
  973. { "properties", "a{sv}", ARG_OUT },
  974. END_ARGS
  975. };
  976. /* Do nothing if the control interface is not turned on */
  977. if (wpa_s == NULL || wpa_s->global == NULL)
  978. return 0;
  979. ctrl_iface = wpa_s->global->dbus;
  980. if (ctrl_iface == NULL)
  981. return 0;
  982. net_obj_path = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
  983. if (net_obj_path == NULL)
  984. return -1;
  985. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  986. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u",
  987. wpas_dbus_get_path(wpa_s), ssid->id);
  988. wpa_printf(MSG_DEBUG, "dbus: Register network object '%s'",
  989. net_obj_path);
  990. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  991. if (!obj_desc) {
  992. wpa_printf(MSG_ERROR, "Not enough memory "
  993. "to create object description");
  994. goto err;
  995. }
  996. /* allocate memory for handlers arguments */
  997. arg1 = os_zalloc(sizeof(struct network_handler_args));
  998. if (!arg1) {
  999. wpa_printf(MSG_ERROR, "Not enough memory "
  1000. "to create arguments for method");
  1001. goto err;
  1002. }
  1003. arg2 = os_zalloc(sizeof(struct network_handler_args));
  1004. if (!arg2) {
  1005. wpa_printf(MSG_ERROR, "Not enough memory "
  1006. "to create arguments for method");
  1007. goto err;
  1008. }
  1009. arg1->wpa_s = wpa_s;
  1010. arg1->ssid = ssid;
  1011. arg2->wpa_s = wpa_s;
  1012. arg2->ssid = ssid;
  1013. /* Enabled property */
  1014. wpa_dbus_property_register(obj_desc, WPAS_DBUS_NEW_IFACE_NETWORK,
  1015. "Enabled", "b",
  1016. (WPADBusPropertyAccessor)
  1017. wpas_dbus_getter_enabled,
  1018. (WPADBusPropertyAccessor)
  1019. wpas_dbus_setter_enabled,
  1020. arg1, wpa_dbus_free, RW);
  1021. /* Properties property */
  1022. wpa_dbus_property_register(obj_desc, WPAS_DBUS_NEW_IFACE_NETWORK,
  1023. "Properties", "a{sv}",
  1024. (WPADBusPropertyAccessor)
  1025. wpas_dbus_getter_network_properties,
  1026. (WPADBusPropertyAccessor)
  1027. wpas_dbus_setter_network_properties,
  1028. arg2, wpa_dbus_free, RW);
  1029. /* PropertiesChanged signal */
  1030. wpa_dbus_signal_register(obj_desc, WPAS_DBUS_NEW_IFACE_NETWORK,
  1031. "PropertiesChanged", sargs);
  1032. if (wpa_dbus_register_object_per_iface(ctrl_iface, net_obj_path,
  1033. wpa_s->ifname, obj_desc))
  1034. goto err;
  1035. wpas_dbus_signal_network_added(wpa_s, ssid->id);
  1036. os_free(net_obj_path);
  1037. return 0;
  1038. err:
  1039. os_free(net_obj_path);
  1040. os_free(obj_desc);
  1041. os_free(arg1);
  1042. os_free(arg2);
  1043. return -1;
  1044. }
  1045. /**
  1046. * wpas_dbus_unregister_network - Unregister a configured network from dbus
  1047. * @wpa_s: wpa_supplicant interface structure
  1048. * @nid: network id
  1049. * Returns: 0 on success, -1 on failure
  1050. *
  1051. * Unregisters network representing object from dbus
  1052. */
  1053. static int wpas_dbus_unregister_network(struct wpa_supplicant *wpa_s, int nid)
  1054. {
  1055. struct wpas_dbus_priv *ctrl_iface;
  1056. char *net_obj_path;
  1057. int ret;
  1058. /* Do nothing if the control interface is not turned on */
  1059. if (wpa_s == NULL || wpa_s->global == NULL)
  1060. return 0;
  1061. ctrl_iface = wpa_s->global->dbus;
  1062. if (ctrl_iface == NULL)
  1063. return 0;
  1064. net_obj_path = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
  1065. if (net_obj_path == NULL)
  1066. return -1;
  1067. os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1068. "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u",
  1069. wpas_dbus_get_path(wpa_s), nid);
  1070. wpa_printf(MSG_DEBUG, "dbus: Unregister network object '%s'",
  1071. net_obj_path);
  1072. ret = wpa_dbus_unregister_object_per_iface(ctrl_iface, net_obj_path);
  1073. if (!ret)
  1074. wpas_dbus_signal_network_removed(wpa_s, nid);
  1075. os_free(net_obj_path);
  1076. return ret;
  1077. }
  1078. /**
  1079. * wpas_dbus_unregister_bss - Unregister a scanned BSS from dbus
  1080. * @wpa_s: wpa_supplicant interface structure
  1081. * @bssid: scanned network bssid
  1082. * @id: unique BSS identifier
  1083. * Returns: 0 on success, -1 on failure
  1084. *
  1085. * Unregisters BSS representing object from dbus
  1086. */
  1087. static int wpas_dbus_unregister_bss(struct wpa_supplicant *wpa_s,
  1088. u8 bssid[ETH_ALEN], unsigned int id)
  1089. {
  1090. struct wpas_dbus_priv *ctrl_iface;
  1091. char *bss_obj_path;
  1092. /* Do nothing if the control interface is not turned on */
  1093. if (wpa_s == NULL || wpa_s->global == NULL)
  1094. return 0;
  1095. ctrl_iface = wpa_s->global->dbus;
  1096. if (ctrl_iface == NULL)
  1097. return 0;
  1098. bss_obj_path = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
  1099. if (bss_obj_path == NULL)
  1100. return -1;
  1101. os_snprintf(bss_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1102. "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
  1103. wpas_dbus_get_path(wpa_s), id);
  1104. wpa_printf(MSG_DEBUG, "dbus: Unregister BSS object '%s'",
  1105. bss_obj_path);
  1106. if (wpa_dbus_unregister_object_per_iface(ctrl_iface, bss_obj_path)) {
  1107. wpa_printf(MSG_ERROR,
  1108. "Cannot unregister BSSID dbus object %s.",
  1109. bss_obj_path);
  1110. os_free(bss_obj_path);
  1111. return -1;
  1112. }
  1113. wpas_dbus_signal_bss_removed(wpa_s, bss_obj_path);
  1114. os_free(bss_obj_path);
  1115. return 0;
  1116. }
  1117. /**
  1118. * wpas_dbus_register_bss - Register a scanned BSS with dbus
  1119. * @wpa_s: wpa_supplicant interface structure
  1120. * @bssid: scanned network bssid
  1121. * @id: unique BSS identifier
  1122. * Returns: 0 on success, -1 on failure
  1123. *
  1124. * Registers BSS representing object with dbus
  1125. */
  1126. static int wpas_dbus_register_bss(struct wpa_supplicant *wpa_s,
  1127. u8 bssid[ETH_ALEN], unsigned int id)
  1128. {
  1129. struct wpas_dbus_priv *ctrl_iface;
  1130. struct wpa_dbus_object_desc *obj_desc;
  1131. char *bss_obj_path;
  1132. struct bss_handler_args *arg = NULL;
  1133. /* Do nothing if the control interface is not turned on */
  1134. if (wpa_s == NULL || wpa_s->global == NULL)
  1135. return 0;
  1136. ctrl_iface = wpa_s->global->dbus;
  1137. if (ctrl_iface == NULL)
  1138. return 0;
  1139. bss_obj_path = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
  1140. if (bss_obj_path == NULL)
  1141. return -1;
  1142. os_snprintf(bss_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  1143. "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
  1144. wpas_dbus_get_path(wpa_s), id);
  1145. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  1146. if (!obj_desc) {
  1147. wpa_printf(MSG_ERROR, "Not enough memory "
  1148. "to create object description");
  1149. goto err;
  1150. }
  1151. arg = os_zalloc(sizeof(struct bss_handler_args));
  1152. if (!arg) {
  1153. wpa_printf(MSG_ERROR, "Not enough memory "
  1154. "to create arguments for handler");
  1155. goto err;
  1156. }
  1157. arg->wpa_s = wpa_s;
  1158. arg->id = id;
  1159. /* Properties property */
  1160. wpa_dbus_property_register(obj_desc, WPAS_DBUS_NEW_IFACE_BSSID,
  1161. "Properties", "a{sv}",
  1162. (WPADBusPropertyAccessor)
  1163. wpas_dbus_getter_bss_properties, NULL,
  1164. arg, wpa_dbus_free, R);
  1165. wpa_printf(MSG_DEBUG, "dbus: Register BSS object '%s'",
  1166. bss_obj_path);
  1167. if (wpa_dbus_register_object_per_iface(ctrl_iface, bss_obj_path,
  1168. wpa_s->ifname, obj_desc)) {
  1169. wpa_printf(MSG_ERROR,
  1170. "Cannot register BSSID dbus object %s.",
  1171. bss_obj_path);
  1172. goto err;
  1173. }
  1174. wpas_dbus_signal_bss_added(wpa_s, bss_obj_path);
  1175. os_free(bss_obj_path);
  1176. return 0;
  1177. err:
  1178. os_free(bss_obj_path);
  1179. os_free(obj_desc);
  1180. os_free(arg);
  1181. return -1;
  1182. }
  1183. static const struct wpas_dbus_method wpas_dbus_interface_methods[] = {
  1184. { "Scan", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1185. (WPADBusMethodHandler) &wpas_dbus_handler_scan,
  1186. {
  1187. { "args", "a{sv}", ARG_IN },
  1188. END_ARGS
  1189. }
  1190. },
  1191. { "Disconnect", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1192. (WPADBusMethodHandler) &wpas_dbus_handler_disconnect,
  1193. {
  1194. END_ARGS
  1195. }
  1196. },
  1197. { "AddNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1198. (WPADBusMethodHandler) &wpas_dbus_handler_add_network,
  1199. {
  1200. { "args", "a{sv}", ARG_IN },
  1201. { "path", "o", ARG_OUT },
  1202. END_ARGS
  1203. }
  1204. },
  1205. { "RemoveNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1206. (WPADBusMethodHandler) &wpas_dbus_handler_remove_network,
  1207. {
  1208. { "path", "o", ARG_IN },
  1209. END_ARGS
  1210. }
  1211. },
  1212. { "SelectNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1213. (WPADBusMethodHandler) &wpas_dbus_handler_select_network,
  1214. {
  1215. { "path", "o", ARG_IN },
  1216. END_ARGS
  1217. }
  1218. },
  1219. { "AddBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1220. (WPADBusMethodHandler) &wpas_dbus_handler_add_blob,
  1221. {
  1222. { "name", "s", ARG_IN },
  1223. { "data", "ay", ARG_IN },
  1224. END_ARGS
  1225. }
  1226. },
  1227. { "GetBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1228. (WPADBusMethodHandler) &wpas_dbus_handler_get_blob,
  1229. {
  1230. { "name", "s", ARG_IN },
  1231. { "data", "ay", ARG_OUT },
  1232. END_ARGS
  1233. }
  1234. },
  1235. { "RemoveBlob", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1236. (WPADBusMethodHandler) &wpas_dbus_handler_remove_blob,
  1237. {
  1238. { "name", "s", ARG_IN },
  1239. END_ARGS
  1240. }
  1241. },
  1242. #ifdef CONFIG_WPS
  1243. { "Start", WPAS_DBUS_NEW_IFACE_WPS,
  1244. (WPADBusMethodHandler) &wpas_dbus_handler_wps_start,
  1245. {
  1246. { "args", "a{sv}", ARG_IN },
  1247. { "output", "a{sv}", ARG_OUT },
  1248. END_ARGS
  1249. }
  1250. },
  1251. #endif /* CONFIG_WPS */
  1252. { NULL, NULL, NULL, { END_ARGS } }
  1253. };
  1254. static const struct wpas_dbus_property wpas_dbus_interface_properties[] = {
  1255. { "Capabilities", WPAS_DBUS_NEW_IFACE_INTERFACE, "a{sv}",
  1256. (WPADBusPropertyAccessor) wpas_dbus_getter_capabilities,
  1257. NULL, R
  1258. },
  1259. { "State", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  1260. (WPADBusPropertyAccessor) wpas_dbus_getter_state,
  1261. NULL, R
  1262. },
  1263. { "Scanning", WPAS_DBUS_NEW_IFACE_INTERFACE, "b",
  1264. (WPADBusPropertyAccessor) wpas_dbus_getter_scanning,
  1265. NULL, R
  1266. },
  1267. { "ApScan", WPAS_DBUS_NEW_IFACE_INTERFACE, "u",
  1268. (WPADBusPropertyAccessor) wpas_dbus_getter_ap_scan,
  1269. (WPADBusPropertyAccessor) wpas_dbus_setter_ap_scan,
  1270. RW
  1271. },
  1272. { "Ifname", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  1273. (WPADBusPropertyAccessor) wpas_dbus_getter_ifname,
  1274. NULL, R
  1275. },
  1276. { "Driver", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  1277. (WPADBusPropertyAccessor) wpas_dbus_getter_driver,
  1278. NULL, R
  1279. },
  1280. { "BridgeIfname", WPAS_DBUS_NEW_IFACE_INTERFACE, "s",
  1281. (WPADBusPropertyAccessor) wpas_dbus_getter_bridge_ifname,
  1282. NULL, R
  1283. },
  1284. { "CurrentBSS", WPAS_DBUS_NEW_IFACE_INTERFACE, "o",
  1285. (WPADBusPropertyAccessor) wpas_dbus_getter_current_bss,
  1286. NULL, R
  1287. },
  1288. { "CurrentNetwork", WPAS_DBUS_NEW_IFACE_INTERFACE, "o",
  1289. (WPADBusPropertyAccessor) wpas_dbus_getter_current_network,
  1290. NULL, R
  1291. },
  1292. { "Blobs", WPAS_DBUS_NEW_IFACE_INTERFACE, "a{say}",
  1293. (WPADBusPropertyAccessor) wpas_dbus_getter_blobs,
  1294. NULL, R
  1295. },
  1296. { "BSSs", WPAS_DBUS_NEW_IFACE_INTERFACE, "ao",
  1297. (WPADBusPropertyAccessor) wpas_dbus_getter_bsss,
  1298. NULL, R
  1299. },
  1300. { "Networks", WPAS_DBUS_NEW_IFACE_INTERFACE, "ao",
  1301. (WPADBusPropertyAccessor) wpas_dbus_getter_networks,
  1302. NULL, R
  1303. },
  1304. #ifdef CONFIG_WPS
  1305. { "ProcessCredentials", WPAS_DBUS_NEW_IFACE_WPS, "b",
  1306. (WPADBusPropertyAccessor) wpas_dbus_getter_process_credentials,
  1307. (WPADBusPropertyAccessor) wpas_dbus_setter_process_credentials,
  1308. RW
  1309. },
  1310. #endif /* CONFIG_WPS */
  1311. { NULL, NULL, NULL, NULL, NULL, 0 }
  1312. };
  1313. static const struct wpas_dbus_signal wpas_dbus_interface_signals[] = {
  1314. { "ScanDone", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1315. {
  1316. { "success", "b", ARG_OUT },
  1317. END_ARGS
  1318. }
  1319. },
  1320. { "StateChanged", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1321. {
  1322. { "newState", "s", ARG_OUT },
  1323. { "oldState", "s", ARG_OUT },
  1324. END_ARGS
  1325. }
  1326. },
  1327. { "BSSAdded", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1328. {
  1329. { "path", "o", ARG_OUT },
  1330. END_ARGS
  1331. }
  1332. },
  1333. { "BSSRemoved", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1334. {
  1335. { "path", "o", ARG_OUT },
  1336. END_ARGS
  1337. }
  1338. },
  1339. { "BlobAdded", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1340. {
  1341. { "name", "s", ARG_OUT },
  1342. END_ARGS
  1343. }
  1344. },
  1345. { "BlobRemoved", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1346. {
  1347. { "name", "s", ARG_OUT },
  1348. END_ARGS
  1349. }
  1350. },
  1351. { "NetworkAdded", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1352. {
  1353. { "path", "o", ARG_OUT },
  1354. END_ARGS
  1355. }
  1356. },
  1357. { "NetworkRemoved", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1358. {
  1359. { "path", "o", ARG_OUT },
  1360. END_ARGS
  1361. }
  1362. },
  1363. { "NetworkSelected", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1364. {
  1365. { "path", "o", ARG_OUT },
  1366. END_ARGS
  1367. }
  1368. },
  1369. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_INTERFACE,
  1370. {
  1371. { "properties", "a{sv}", ARG_OUT },
  1372. END_ARGS
  1373. }
  1374. },
  1375. #ifdef CONFIG_WPS
  1376. { "Event", WPAS_DBUS_NEW_IFACE_WPS,
  1377. {
  1378. { "name", "s", ARG_OUT },
  1379. { "args", "a{sv}", ARG_OUT },
  1380. END_ARGS
  1381. }
  1382. },
  1383. { "Credentials", WPAS_DBUS_NEW_IFACE_WPS,
  1384. {
  1385. { "credentials", "a{sv}", ARG_OUT },
  1386. END_ARGS
  1387. }
  1388. },
  1389. { "PropertiesChanged", WPAS_DBUS_NEW_IFACE_WPS,
  1390. {
  1391. { "properties", "a{sv}", ARG_OUT },
  1392. END_ARGS
  1393. }
  1394. },
  1395. #endif /* CONFIG_WPS */
  1396. { NULL, NULL, { END_ARGS } }
  1397. };
  1398. static int wpas_dbus_register_interface(struct wpa_supplicant *wpa_s)
  1399. {
  1400. struct wpa_dbus_object_desc *obj_desc = NULL;
  1401. char *path;
  1402. struct wpas_dbus_priv *ctrl_iface = wpa_s->global->dbus;
  1403. int next;
  1404. /* Do nothing if the control interface is not turned on */
  1405. if (ctrl_iface == NULL)
  1406. return 0;
  1407. /* Create and set the interface's object path */
  1408. path = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
  1409. if (path == NULL)
  1410. return -1;
  1411. next = ctrl_iface->next_objid++;
  1412. os_snprintf(path, WPAS_DBUS_OBJECT_PATH_MAX,
  1413. WPAS_DBUS_NEW_PATH_INTERFACES "/%u",
  1414. next);
  1415. if (wpas_dbus_set_path(wpa_s, path)) {
  1416. wpa_printf(MSG_DEBUG,
  1417. "Failed to set dbus path for interface %s",
  1418. wpa_s->ifname);
  1419. goto err;
  1420. }
  1421. obj_desc = os_zalloc(sizeof(struct wpa_dbus_object_desc));
  1422. if (!obj_desc) {
  1423. wpa_printf(MSG_ERROR, "Not enough memory "
  1424. "to create object description");
  1425. goto err;
  1426. }
  1427. wpas_dbus_register(obj_desc, wpa_s, wpas_dbus_interface_methods,
  1428. wpas_dbus_interface_properties,
  1429. wpas_dbus_interface_signals);
  1430. wpa_printf(MSG_DEBUG, "dbus: Register interface object '%s'", path);
  1431. if (wpa_dbus_register_object_per_iface(ctrl_iface, path, wpa_s->ifname,
  1432. obj_desc))
  1433. goto err;
  1434. wpas_dbus_signal_interface_created(wpa_s);
  1435. os_free(path);
  1436. return 0;
  1437. err:
  1438. os_free(obj_desc);
  1439. os_free(path);
  1440. return -1;
  1441. }
  1442. static int wpas_dbus_unregister_interface(struct wpa_supplicant *wpa_s)
  1443. {
  1444. struct wpas_dbus_priv *ctrl_iface;
  1445. /* Do nothing if the control interface is not turned on */
  1446. if (wpa_s == NULL || wpa_s->global == NULL)
  1447. return 0;
  1448. ctrl_iface = wpa_s->global->dbus;
  1449. if (ctrl_iface == NULL)
  1450. return 0;
  1451. wpa_printf(MSG_DEBUG, "dbus: Unregister interface object '%s'",
  1452. wpas_dbus_get_path(wpa_s));
  1453. if (wpa_dbus_unregister_object_per_iface(ctrl_iface,
  1454. wpas_dbus_get_path(wpa_s)))
  1455. return -1;
  1456. wpas_dbus_signal_interface_removed(wpa_s);
  1457. os_free(wpa_s->dbus_new_path);
  1458. wpa_s->dbus_new_path = NULL;
  1459. return 0;
  1460. }
  1461. static struct wpas_dbus_callbacks callbacks =
  1462. {
  1463. .signal_interface_created = wpas_dbus_signal_interface_created,
  1464. .signal_interface_removed = wpas_dbus_signal_interface_removed,
  1465. .register_interface = wpas_dbus_register_interface,
  1466. .unregister_interface = wpas_dbus_unregister_interface,
  1467. .signal_scan_done = wpas_dbus_signal_scan_done,
  1468. .signal_blob_added = wpas_dbus_signal_blob_added,
  1469. .signal_blob_removed = wpas_dbus_signal_blob_removed,
  1470. .signal_network_selected = wpas_dbus_signal_network_selected,
  1471. .signal_state_changed = wpas_dbus_signal_state_changed,
  1472. .register_network = wpas_dbus_register_network,
  1473. .unregister_network = wpas_dbus_unregister_network,
  1474. .signal_network_enabled_changed =
  1475. wpas_dbus_signal_network_enabled_changed,
  1476. .register_bss = wpas_dbus_register_bss,
  1477. .unregister_bss = wpas_dbus_unregister_bss,
  1478. .signal_prop_changed = wpas_dbus_signal_prop_changed,
  1479. .signal_debug_params_changed = wpas_dbus_signal_debug_params_changed,
  1480. #ifdef CONFIG_WPS
  1481. .signal_wps_event_success = wpas_dbus_signal_wps_event_success,
  1482. .signal_wps_event_fail = wpas_dbus_signal_wps_event_fail,
  1483. .signal_wps_event_m2d = wpas_dbus_signal_wps_event_m2d,
  1484. .signal_wps_credentials = wpas_dbus_signal_wps_cred,
  1485. #endif /* CONFIG_WPS */
  1486. };
  1487. struct wpas_dbus_callbacks * wpas_dbus_get_callbacks(void)
  1488. {
  1489. return &callbacks;
  1490. }
  1491. /**
  1492. * wpas_dbus_get_path - Get an interface's dbus path
  1493. * @wpa_s: %wpa_supplicant interface structure
  1494. * Returns: Interface's dbus object path, or %NULL on error
  1495. */
  1496. const char * wpas_dbus_get_path(struct wpa_supplicant *wpa_s)
  1497. {
  1498. return wpa_s->dbus_new_path;
  1499. }