dbus_old.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714
  1. /*
  2. * WPA Supplicant / dbus-based control interface
  3. * Copyright (c) 2006, Dan Williams <dcbw@redhat.com> and Red Hat, Inc.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #include <dbus/dbus.h>
  16. #include "common.h"
  17. #include "eloop.h"
  18. #include "drivers/driver.h"
  19. #include "wps/wps.h"
  20. #include "../config.h"
  21. #include "../wpa_supplicant_i.h"
  22. #include "dbus_old.h"
  23. #include "dbus_old_handlers.h"
  24. #include "dbus_common.h"
  25. #include "dbus_common_i.h"
  26. /**
  27. * wpas_dbus_decompose_object_path - Decompose an interface object path into parts
  28. * @path: The dbus object path
  29. * @network: (out) the configured network this object path refers to, if any
  30. * @bssid: (out) the scanned bssid this object path refers to, if any
  31. * Returns: The object path of the network interface this path refers to
  32. *
  33. * For a given object path, decomposes the object path into object id, network,
  34. * and BSSID parts, if those parts exist.
  35. */
  36. char * wpas_dbus_decompose_object_path(const char *path, char **network,
  37. char **bssid)
  38. {
  39. const unsigned int dev_path_prefix_len =
  40. strlen(WPAS_DBUS_PATH_INTERFACES "/");
  41. char *obj_path_only;
  42. char *next_sep;
  43. /* Be a bit paranoid about path */
  44. if (!path || strncmp(path, WPAS_DBUS_PATH_INTERFACES "/",
  45. dev_path_prefix_len))
  46. return NULL;
  47. /* Ensure there's something at the end of the path */
  48. if ((path + dev_path_prefix_len)[0] == '\0')
  49. return NULL;
  50. obj_path_only = os_strdup(path);
  51. if (obj_path_only == NULL)
  52. return NULL;
  53. next_sep = strchr(obj_path_only + dev_path_prefix_len, '/');
  54. if (next_sep != NULL) {
  55. const char *net_part = strstr(next_sep,
  56. WPAS_DBUS_NETWORKS_PART "/");
  57. const char *bssid_part = strstr(next_sep,
  58. WPAS_DBUS_BSSIDS_PART "/");
  59. if (network && net_part) {
  60. /* Deal with a request for a configured network */
  61. const char *net_name = net_part +
  62. strlen(WPAS_DBUS_NETWORKS_PART "/");
  63. *network = NULL;
  64. if (strlen(net_name))
  65. *network = os_strdup(net_name);
  66. } else if (bssid && bssid_part) {
  67. /* Deal with a request for a scanned BSSID */
  68. const char *bssid_name = bssid_part +
  69. strlen(WPAS_DBUS_BSSIDS_PART "/");
  70. if (strlen(bssid_name))
  71. *bssid = os_strdup(bssid_name);
  72. else
  73. *bssid = NULL;
  74. }
  75. /* Cut off interface object path before "/" */
  76. *next_sep = '\0';
  77. }
  78. return obj_path_only;
  79. }
  80. /**
  81. * wpas_dbus_new_invalid_iface_error - Return a new invalid interface error message
  82. * @message: Pointer to incoming dbus message this error refers to
  83. * Returns: A dbus error message
  84. *
  85. * Convenience function to create and return an invalid interface error
  86. */
  87. DBusMessage * wpas_dbus_new_invalid_iface_error(DBusMessage *message)
  88. {
  89. return dbus_message_new_error(message, WPAS_ERROR_INVALID_IFACE,
  90. "wpa_supplicant knows nothing about "
  91. "this interface.");
  92. }
  93. /**
  94. * wpas_dbus_new_invalid_network_error - Return a new invalid network error message
  95. * @message: Pointer to incoming dbus message this error refers to
  96. * Returns: a dbus error message
  97. *
  98. * Convenience function to create and return an invalid network error
  99. */
  100. DBusMessage * wpas_dbus_new_invalid_network_error(DBusMessage *message)
  101. {
  102. return dbus_message_new_error(message, WPAS_ERROR_INVALID_NETWORK,
  103. "The requested network does not exist.");
  104. }
  105. /**
  106. * wpas_dbus_new_invalid_bssid_error - Return a new invalid bssid error message
  107. * @message: Pointer to incoming dbus message this error refers to
  108. * Returns: a dbus error message
  109. *
  110. * Convenience function to create and return an invalid bssid error
  111. */
  112. static DBusMessage * wpas_dbus_new_invalid_bssid_error(DBusMessage *message)
  113. {
  114. return dbus_message_new_error(message, WPAS_ERROR_INVALID_BSSID,
  115. "The BSSID requested was invalid.");
  116. }
  117. /**
  118. * wpas_dispatch_network_method - dispatch messages for configured networks
  119. * @message: the incoming dbus message
  120. * @wpa_s: a network interface's data
  121. * @network_id: id of the configured network we're interested in
  122. * Returns: a reply dbus message, or a dbus error message
  123. *
  124. * This function dispatches all incoming dbus messages for configured networks.
  125. */
  126. static DBusMessage * wpas_dispatch_network_method(DBusMessage *message,
  127. struct wpa_supplicant *wpa_s,
  128. int network_id)
  129. {
  130. DBusMessage *reply = NULL;
  131. const char *method = dbus_message_get_member(message);
  132. struct wpa_ssid *ssid;
  133. ssid = wpa_config_get_network(wpa_s->conf, network_id);
  134. if (ssid == NULL)
  135. return wpas_dbus_new_invalid_network_error(message);
  136. if (!strcmp(method, "set"))
  137. reply = wpas_dbus_iface_set_network(message, wpa_s, ssid);
  138. else if (!strcmp(method, "enable"))
  139. reply = wpas_dbus_iface_enable_network(message, wpa_s, ssid);
  140. else if (!strcmp(method, "disable"))
  141. reply = wpas_dbus_iface_disable_network(message, wpa_s, ssid);
  142. return reply;
  143. }
  144. /**
  145. * wpas_dispatch_bssid_method - dispatch messages for scanned networks
  146. * @message: the incoming dbus message
  147. * @wpa_s: a network interface's data
  148. * @bssid: bssid of the scanned network we're interested in
  149. * Returns: a reply dbus message, or a dbus error message
  150. *
  151. * This function dispatches all incoming dbus messages for scanned networks.
  152. */
  153. static DBusMessage * wpas_dispatch_bssid_method(DBusMessage *message,
  154. struct wpa_supplicant *wpa_s,
  155. const char *bssid)
  156. {
  157. DBusMessage *reply = NULL;
  158. const char *method = dbus_message_get_member(message);
  159. struct wpa_scan_res *res = NULL;
  160. size_t i;
  161. /* Ensure we actually have scan data */
  162. if (wpa_s->scan_res == NULL &&
  163. wpa_supplicant_get_scan_results(wpa_s, NULL, 0) < 0) {
  164. reply = wpas_dbus_new_invalid_bssid_error(message);
  165. goto out;
  166. }
  167. /* Find the bssid's scan data */
  168. for (i = 0; i < wpa_s->scan_res->num; i++) {
  169. struct wpa_scan_res *search_res = wpa_s->scan_res->res[i];
  170. char mac_str[18];
  171. memset(mac_str, 0, sizeof(mac_str));
  172. snprintf(mac_str, sizeof(mac_str) - 1, WPAS_DBUS_BSSID_FORMAT,
  173. MAC2STR(search_res->bssid));
  174. if (!strcmp(bssid, mac_str)) {
  175. res = search_res;
  176. break;
  177. }
  178. }
  179. if (!res) {
  180. reply = wpas_dbus_new_invalid_bssid_error(message);
  181. goto out;
  182. }
  183. /* Dispatch the method call against the scanned bssid */
  184. if (!strcmp(method, "properties"))
  185. reply = wpas_dbus_bssid_properties(message, wpa_s, res);
  186. out:
  187. return reply;
  188. }
  189. /**
  190. * wpas_iface_message_handler - Dispatch messages for interfaces or networks
  191. * @connection: Connection to the system message bus
  192. * @message: An incoming dbus message
  193. * @user_data: A pointer to a dbus control interface data structure
  194. * Returns: Whether or not the message was handled
  195. *
  196. * This function dispatches all incoming dbus messages for network interfaces,
  197. * or objects owned by them, such as scanned BSSIDs and configured networks.
  198. */
  199. static DBusHandlerResult wpas_iface_message_handler(DBusConnection *connection,
  200. DBusMessage *message,
  201. void *user_data)
  202. {
  203. struct wpa_supplicant *wpa_s = user_data;
  204. const char *method = dbus_message_get_member(message);
  205. const char *path = dbus_message_get_path(message);
  206. const char *msg_interface = dbus_message_get_interface(message);
  207. char *iface_obj_path = NULL;
  208. char *network = NULL;
  209. char *bssid = NULL;
  210. DBusMessage *reply = NULL;
  211. /* Caller must specify a message interface */
  212. if (!msg_interface)
  213. goto out;
  214. iface_obj_path = wpas_dbus_decompose_object_path(path, &network,
  215. &bssid);
  216. if (iface_obj_path == NULL) {
  217. reply = wpas_dbus_new_invalid_iface_error(message);
  218. goto out;
  219. }
  220. /* Make sure the message's object path actually refers to the
  221. * wpa_supplicant structure it's supposed to (which is wpa_s)
  222. */
  223. if (wpa_supplicant_get_iface_by_dbus_path(wpa_s->global,
  224. iface_obj_path) != wpa_s) {
  225. reply = wpas_dbus_new_invalid_iface_error(message);
  226. goto out;
  227. }
  228. if (network && !strcmp(msg_interface, WPAS_DBUS_IFACE_NETWORK)) {
  229. /* A method for one of this interface's configured networks */
  230. int nid = strtoul(network, NULL, 10);
  231. if (errno != EINVAL)
  232. reply = wpas_dispatch_network_method(message, wpa_s,
  233. nid);
  234. else
  235. reply = wpas_dbus_new_invalid_network_error(message);
  236. } else if (bssid && !strcmp(msg_interface, WPAS_DBUS_IFACE_BSSID)) {
  237. /* A method for one of this interface's scanned BSSIDs */
  238. reply = wpas_dispatch_bssid_method(message, wpa_s, bssid);
  239. } else if (!strcmp(msg_interface, WPAS_DBUS_IFACE_INTERFACE)) {
  240. /* A method for an interface only. */
  241. if (!strcmp(method, "scan"))
  242. reply = wpas_dbus_iface_scan(message, wpa_s);
  243. else if (!strcmp(method, "scanResults"))
  244. reply = wpas_dbus_iface_scan_results(message, wpa_s);
  245. else if (!strcmp(method, "addNetwork"))
  246. reply = wpas_dbus_iface_add_network(message, wpa_s);
  247. else if (!strcmp(method, "removeNetwork"))
  248. reply = wpas_dbus_iface_remove_network(message, wpa_s);
  249. else if (!strcmp(method, "selectNetwork"))
  250. reply = wpas_dbus_iface_select_network(message, wpa_s);
  251. else if (!strcmp(method, "capabilities"))
  252. reply = wpas_dbus_iface_capabilities(message, wpa_s);
  253. else if (!strcmp(method, "disconnect"))
  254. reply = wpas_dbus_iface_disconnect(message, wpa_s);
  255. else if (!strcmp(method, "setAPScan"))
  256. reply = wpas_dbus_iface_set_ap_scan(message, wpa_s);
  257. else if (!strcmp(method, "setSmartcardModules"))
  258. reply = wpas_dbus_iface_set_smartcard_modules(message,
  259. wpa_s);
  260. else if (!strcmp(method, "state"))
  261. reply = wpas_dbus_iface_get_state(message, wpa_s);
  262. else if (!strcmp(method, "scanning"))
  263. reply = wpas_dbus_iface_get_scanning(message, wpa_s);
  264. else if (!strcmp(method, "setBlobs"))
  265. reply = wpas_dbus_iface_set_blobs(message, wpa_s);
  266. else if (!strcmp(method, "removeBlobs"))
  267. reply = wpas_dbus_iface_remove_blobs(message, wpa_s);
  268. #ifdef CONFIG_WPS
  269. else if (!os_strcmp(method, "wpsPbc"))
  270. reply = wpas_dbus_iface_wps_pbc(message, wpa_s);
  271. else if (!os_strcmp(method, "wpsPin"))
  272. reply = wpas_dbus_iface_wps_pin(message, wpa_s);
  273. else if (!os_strcmp(method, "wpsReg"))
  274. reply = wpas_dbus_iface_wps_reg(message, wpa_s);
  275. #endif /* CONFIG_WPS */
  276. }
  277. /* If the message was handled, send back the reply */
  278. if (reply) {
  279. if (!dbus_message_get_no_reply(message))
  280. dbus_connection_send(connection, reply, NULL);
  281. dbus_message_unref(reply);
  282. }
  283. out:
  284. os_free(iface_obj_path);
  285. os_free(network);
  286. os_free(bssid);
  287. return reply ? DBUS_HANDLER_RESULT_HANDLED :
  288. DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
  289. }
  290. /**
  291. * wpas_message_handler - dispatch incoming dbus messages
  292. * @connection: connection to the system message bus
  293. * @message: an incoming dbus message
  294. * @user_data: a pointer to a dbus control interface data structure
  295. * Returns: whether or not the message was handled
  296. *
  297. * This function dispatches all incoming dbus messages to the correct
  298. * handlers, depending on what the message's target object path is,
  299. * and what the method call is.
  300. */
  301. static DBusHandlerResult wpas_message_handler(DBusConnection *connection,
  302. DBusMessage *message, void *user_data)
  303. {
  304. struct wpas_dbus_priv *ctrl_iface = user_data;
  305. const char *method;
  306. const char *path;
  307. const char *msg_interface;
  308. DBusMessage *reply = NULL;
  309. method = dbus_message_get_member(message);
  310. path = dbus_message_get_path(message);
  311. msg_interface = dbus_message_get_interface(message);
  312. if (!method || !path || !ctrl_iface || !msg_interface)
  313. return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
  314. /* Validate the method interface */
  315. if (strcmp(msg_interface, WPAS_DBUS_INTERFACE) != 0)
  316. return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
  317. if (!strcmp(path, WPAS_DBUS_PATH)) {
  318. /* dispatch methods against our global dbus interface here */
  319. if (!strcmp(method, "addInterface")) {
  320. reply = wpas_dbus_global_add_interface(
  321. message, ctrl_iface->global);
  322. } else if (!strcmp(method, "removeInterface")) {
  323. reply = wpas_dbus_global_remove_interface(
  324. message, ctrl_iface->global);
  325. } else if (!strcmp(method, "getInterface")) {
  326. reply = wpas_dbus_global_get_interface(
  327. message, ctrl_iface->global);
  328. } else if (!strcmp(method, "setDebugParams")) {
  329. reply = wpas_dbus_global_set_debugparams(
  330. message, ctrl_iface->global);
  331. }
  332. }
  333. /* If the message was handled, send back the reply */
  334. if (reply) {
  335. if (!dbus_message_get_no_reply(message))
  336. dbus_connection_send(connection, reply, NULL);
  337. dbus_message_unref(reply);
  338. }
  339. return reply ? DBUS_HANDLER_RESULT_HANDLED :
  340. DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
  341. }
  342. /**
  343. * wpa_supplicant_dbus_notify_scan_results - Send a scan results signal
  344. * @wpa_s: %wpa_supplicant network interface data
  345. * Returns: 0 on success, -1 on failure
  346. *
  347. * Notify listeners that this interface has updated scan results.
  348. */
  349. void wpa_supplicant_dbus_notify_scan_results(struct wpa_supplicant *wpa_s)
  350. {
  351. struct wpas_dbus_priv *iface = wpa_s->global->dbus;
  352. DBusMessage *_signal;
  353. /* Do nothing if the control interface is not turned on */
  354. if (iface == NULL)
  355. return;
  356. _signal = dbus_message_new_signal(wpa_s->dbus_path,
  357. WPAS_DBUS_IFACE_INTERFACE,
  358. "ScanResultsAvailable");
  359. if (_signal == NULL) {
  360. wpa_printf(MSG_ERROR, "dbus: Not enough memory to send scan "
  361. "results signal");
  362. return;
  363. }
  364. dbus_connection_send(iface->con, _signal, NULL);
  365. dbus_message_unref(_signal);
  366. }
  367. /**
  368. * wpa_supplicant_dbus_notify_state_change - Send a state change signal
  369. * @wpa_s: %wpa_supplicant network interface data
  370. * @new_state: new state wpa_supplicant is entering
  371. * @old_state: old state wpa_supplicant is leaving
  372. * Returns: 0 on success, -1 on failure
  373. *
  374. * Notify listeners that wpa_supplicant has changed state
  375. */
  376. void wpa_supplicant_dbus_notify_state_change(struct wpa_supplicant *wpa_s,
  377. enum wpa_states new_state,
  378. enum wpa_states old_state)
  379. {
  380. struct wpas_dbus_priv *iface;
  381. DBusMessage *_signal = NULL;
  382. const char *new_state_str, *old_state_str;
  383. /* Do nothing if the control interface is not turned on */
  384. if (wpa_s->global == NULL)
  385. return;
  386. iface = wpa_s->global->dbus;
  387. if (iface == NULL)
  388. return;
  389. /* Only send signal if state really changed */
  390. if (new_state == old_state)
  391. return;
  392. _signal = dbus_message_new_signal(wpa_s->dbus_path,
  393. WPAS_DBUS_IFACE_INTERFACE,
  394. "StateChange");
  395. if (_signal == NULL) {
  396. wpa_printf(MSG_ERROR,
  397. "dbus: wpa_supplicant_dbus_notify_state_change: "
  398. "could not create dbus signal; likely out of "
  399. "memory");
  400. return;
  401. }
  402. new_state_str = wpa_supplicant_state_txt(new_state);
  403. old_state_str = wpa_supplicant_state_txt(old_state);
  404. if (new_state_str == NULL || old_state_str == NULL) {
  405. wpa_printf(MSG_ERROR,
  406. "dbus: wpa_supplicant_dbus_notify_state_change: "
  407. "Could not convert state strings");
  408. goto out;
  409. }
  410. if (!dbus_message_append_args(_signal,
  411. DBUS_TYPE_STRING, &new_state_str,
  412. DBUS_TYPE_STRING, &old_state_str,
  413. DBUS_TYPE_INVALID)) {
  414. wpa_printf(MSG_ERROR,
  415. "dbus: wpa_supplicant_dbus_notify_state_change: "
  416. "Not enough memory to construct state change "
  417. "signal");
  418. goto out;
  419. }
  420. dbus_connection_send(iface->con, _signal, NULL);
  421. out:
  422. dbus_message_unref(_signal);
  423. }
  424. /**
  425. * wpa_supplicant_dbus_notify_scanning - send scanning status
  426. * @wpa_s: %wpa_supplicant network interface data
  427. * Returns: 0 on success, -1 on failure
  428. *
  429. * Notify listeners of interface scanning state changes
  430. */
  431. void wpa_supplicant_dbus_notify_scanning(struct wpa_supplicant *wpa_s)
  432. {
  433. struct wpas_dbus_priv *iface = wpa_s->global->dbus;
  434. DBusMessage *_signal;
  435. dbus_bool_t scanning = wpa_s->scanning ? TRUE : FALSE;
  436. /* Do nothing if the control interface is not turned on */
  437. if (iface == NULL)
  438. return;
  439. _signal = dbus_message_new_signal(wpa_s->dbus_path,
  440. WPAS_DBUS_IFACE_INTERFACE,
  441. "Scanning");
  442. if (_signal == NULL) {
  443. wpa_printf(MSG_ERROR, "dbus: Not enough memory to send scan "
  444. "results signal");
  445. return;
  446. }
  447. if (dbus_message_append_args(_signal,
  448. DBUS_TYPE_BOOLEAN, &scanning,
  449. DBUS_TYPE_INVALID)) {
  450. dbus_connection_send(iface->con, _signal, NULL);
  451. } else {
  452. wpa_printf(MSG_ERROR, "dbus: Not enough memory to construct "
  453. "signal");
  454. }
  455. dbus_message_unref(_signal);
  456. }
  457. #ifdef CONFIG_WPS
  458. void wpa_supplicant_dbus_notify_wps_cred(struct wpa_supplicant *wpa_s,
  459. const struct wps_credential *cred)
  460. {
  461. struct wpas_dbus_priv *iface;
  462. DBusMessage *_signal = NULL;
  463. /* Do nothing if the control interface is not turned on */
  464. if (wpa_s->global == NULL)
  465. return;
  466. iface = wpa_s->global->dbus;
  467. if (iface == NULL)
  468. return;
  469. _signal = dbus_message_new_signal(wpa_s->dbus_path,
  470. WPAS_DBUS_IFACE_INTERFACE,
  471. "WpsCred");
  472. if (_signal == NULL) {
  473. wpa_printf(MSG_ERROR,
  474. "dbus: wpa_supplicant_dbus_notify_wps_cred: "
  475. "Could not create dbus signal; likely out of "
  476. "memory");
  477. return;
  478. }
  479. if (!dbus_message_append_args(_signal,
  480. DBUS_TYPE_ARRAY, DBUS_TYPE_BYTE,
  481. &cred->cred_attr, cred->cred_attr_len,
  482. DBUS_TYPE_INVALID)) {
  483. wpa_printf(MSG_ERROR,
  484. "dbus: wpa_supplicant_dbus_notify_wps_cred: "
  485. "Not enough memory to construct signal");
  486. goto out;
  487. }
  488. dbus_connection_send(iface->con, _signal, NULL);
  489. out:
  490. dbus_message_unref(_signal);
  491. }
  492. #else /* CONFIG_WPS */
  493. void wpa_supplicant_dbus_notify_wps_cred(struct wpa_supplicant *wpa_s,
  494. const struct wps_credential *cred)
  495. {
  496. }
  497. #endif /* CONFIG_WPS */
  498. /**
  499. * wpa_supplicant_dbus_ctrl_iface_init - Initialize dbus control interface
  500. * @global: Pointer to global data from wpa_supplicant_init()
  501. * Returns: 0 on success, -1 on failure
  502. *
  503. * Initialize the dbus control interface and start receiving commands from
  504. * external programs over the bus.
  505. */
  506. int wpa_supplicant_dbus_ctrl_iface_init(struct wpas_dbus_priv *iface)
  507. {
  508. DBusError error;
  509. int ret = -1;
  510. DBusObjectPathVTable wpas_vtable = {
  511. NULL, &wpas_message_handler, NULL, NULL, NULL, NULL
  512. };
  513. /* Register the message handler for the global dbus interface */
  514. if (!dbus_connection_register_object_path(iface->con,
  515. WPAS_DBUS_PATH, &wpas_vtable,
  516. iface)) {
  517. wpa_printf(MSG_ERROR, "dbus: Could not set up message "
  518. "handler");
  519. return -1;
  520. }
  521. /* Register our service with the message bus */
  522. dbus_error_init(&error);
  523. switch (dbus_bus_request_name(iface->con, WPAS_DBUS_SERVICE,
  524. 0, &error)) {
  525. case DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER:
  526. ret = 0;
  527. break;
  528. case DBUS_REQUEST_NAME_REPLY_EXISTS:
  529. case DBUS_REQUEST_NAME_REPLY_IN_QUEUE:
  530. case DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER:
  531. wpa_printf(MSG_ERROR, "dbus: Could not request service name: "
  532. "already registered");
  533. break;
  534. default:
  535. wpa_printf(MSG_ERROR, "dbus: Could not request service name: "
  536. "%s %s", error.name, error.message);
  537. break;
  538. }
  539. dbus_error_free(&error);
  540. if (ret != 0)
  541. return -1;
  542. wpa_printf(MSG_DEBUG, "Providing DBus service '" WPAS_DBUS_SERVICE
  543. "'.");
  544. return 0;
  545. }
  546. /**
  547. * wpas_dbus_register_new_iface - Register a new interface with dbus
  548. * @wpa_s: %wpa_supplicant interface description structure to register
  549. * Returns: 0 on success, -1 on error
  550. *
  551. * Registers a new interface with dbus and assigns it a dbus object path.
  552. */
  553. int wpas_dbus_register_iface(struct wpa_supplicant *wpa_s)
  554. {
  555. struct wpas_dbus_priv *ctrl_iface = wpa_s->global->dbus;
  556. DBusConnection * con;
  557. u32 next;
  558. DBusObjectPathVTable vtable = {
  559. NULL, &wpas_iface_message_handler, NULL, NULL, NULL, NULL
  560. };
  561. /* Do nothing if the control interface is not turned on */
  562. if (ctrl_iface == NULL)
  563. return 0;
  564. con = ctrl_iface->con;
  565. next = ctrl_iface->next_objid++;
  566. /* Create and set the interface's object path */
  567. wpa_s->dbus_path = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
  568. if (wpa_s->dbus_path == NULL)
  569. return -1;
  570. os_snprintf(wpa_s->dbus_path, WPAS_DBUS_OBJECT_PATH_MAX,
  571. WPAS_DBUS_PATH_INTERFACES "/%u",
  572. next);
  573. /* Register the message handler for the interface functions */
  574. if (!dbus_connection_register_fallback(con, wpa_s->dbus_path, &vtable,
  575. wpa_s)) {
  576. wpa_printf(MSG_ERROR, "dbus: Could not set up message "
  577. "handler for interface %s", wpa_s->ifname);
  578. return -1;
  579. }
  580. return 0;
  581. }
  582. /**
  583. * wpas_dbus_unregister_iface - Unregister an interface from dbus
  584. * @wpa_s: wpa_supplicant interface structure
  585. * Returns: 0 on success, -1 on failure
  586. *
  587. * Unregisters the interface with dbus
  588. */
  589. int wpas_dbus_unregister_iface(struct wpa_supplicant *wpa_s)
  590. {
  591. struct wpas_dbus_priv *ctrl_iface;
  592. DBusConnection *con;
  593. /* Do nothing if the control interface is not turned on */
  594. if (wpa_s == NULL || wpa_s->global == NULL)
  595. return 0;
  596. ctrl_iface = wpa_s->global->dbus;
  597. if (ctrl_iface == NULL)
  598. return 0;
  599. con = ctrl_iface->con;
  600. if (!dbus_connection_unregister_object_path(con, wpa_s->dbus_path))
  601. return -1;
  602. os_free(wpa_s->dbus_path);
  603. wpa_s->dbus_path = NULL;
  604. return 0;
  605. }
  606. /**
  607. * wpa_supplicant_get_iface_by_dbus_path - Get a new network interface
  608. * @global: Pointer to global data from wpa_supplicant_init()
  609. * @path: Pointer to a dbus object path representing an interface
  610. * Returns: Pointer to the interface or %NULL if not found
  611. */
  612. struct wpa_supplicant * wpa_supplicant_get_iface_by_dbus_path(
  613. struct wpa_global *global, const char *path)
  614. {
  615. struct wpa_supplicant *wpa_s;
  616. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  617. if (strcmp(wpa_s->dbus_path, path) == 0)
  618. return wpa_s;
  619. }
  620. return NULL;
  621. }