dbus_new_helpers.c 31 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064
  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. *
  6. * This software may be distributed under the terms of the BSD license.
  7. * See README for more details.
  8. */
  9. #include "utils/includes.h"
  10. #include "utils/common.h"
  11. #include "utils/eloop.h"
  12. #include "dbus_common.h"
  13. #include "dbus_common_i.h"
  14. #include "dbus_new.h"
  15. #include "dbus_new_helpers.h"
  16. #include "dbus_dict_helpers.h"
  17. static dbus_bool_t fill_dict_with_properties(
  18. DBusMessageIter *dict_iter,
  19. const struct wpa_dbus_property_desc *props,
  20. const char *interface, void *user_data, DBusError *error)
  21. {
  22. DBusMessageIter entry_iter;
  23. const struct wpa_dbus_property_desc *dsc;
  24. for (dsc = props; dsc && dsc->dbus_property; dsc++) {
  25. /* Only return properties for the requested D-Bus interface */
  26. if (os_strncmp(dsc->dbus_interface, interface,
  27. WPAS_DBUS_INTERFACE_MAX) != 0)
  28. continue;
  29. /* Skip write-only properties */
  30. if (dsc->getter == NULL)
  31. continue;
  32. if (!dbus_message_iter_open_container(dict_iter,
  33. DBUS_TYPE_DICT_ENTRY,
  34. NULL, &entry_iter) ||
  35. !dbus_message_iter_append_basic(&entry_iter,
  36. DBUS_TYPE_STRING,
  37. &dsc->dbus_property))
  38. goto error;
  39. /* An error getting a property fails the request entirely */
  40. if (!dsc->getter(&entry_iter, error, user_data))
  41. return FALSE;
  42. if (!dbus_message_iter_close_container(dict_iter, &entry_iter))
  43. goto error;
  44. }
  45. return TRUE;
  46. error:
  47. dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, "no memory");
  48. return FALSE;
  49. }
  50. /**
  51. * get_all_properties - Responds for GetAll properties calls on object
  52. * @message: Message with GetAll call
  53. * @interface: interface name which properties will be returned
  54. * @property_dsc: list of object's properties
  55. * Returns: Message with dict of variants as argument with properties values
  56. *
  57. * Iterates over all properties registered with object and execute getters
  58. * of those, which are readable and which interface matches interface
  59. * specified as argument. Returned message contains one dict argument
  60. * with properties names as keys and theirs values as values.
  61. */
  62. static DBusMessage * get_all_properties(DBusMessage *message, char *interface,
  63. struct wpa_dbus_object_desc *obj_dsc)
  64. {
  65. DBusMessage *reply;
  66. DBusMessageIter iter, dict_iter;
  67. DBusError error;
  68. reply = dbus_message_new_method_return(message);
  69. if (reply == NULL) {
  70. wpa_printf(MSG_ERROR, "%s: out of memory creating dbus reply",
  71. __func__);
  72. return NULL;
  73. }
  74. dbus_message_iter_init_append(reply, &iter);
  75. if (!wpa_dbus_dict_open_write(&iter, &dict_iter)) {
  76. wpa_printf(MSG_ERROR, "%s: out of memory creating reply",
  77. __func__);
  78. dbus_message_unref(reply);
  79. reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  80. "out of memory");
  81. return reply;
  82. }
  83. dbus_error_init(&error);
  84. if (!fill_dict_with_properties(&dict_iter, obj_dsc->properties,
  85. interface, obj_dsc->user_data, &error))
  86. {
  87. dbus_message_unref(reply);
  88. reply = wpas_dbus_reply_new_from_error(message, &error,
  89. DBUS_ERROR_INVALID_ARGS,
  90. "No readable properties"
  91. " in this interface");
  92. dbus_error_free(&error);
  93. return reply;
  94. }
  95. if (!wpa_dbus_dict_close_write(&iter, &dict_iter)) {
  96. dbus_message_unref(reply);
  97. return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
  98. "out of memory");
  99. }
  100. return reply;
  101. }
  102. static int is_signature_correct(DBusMessage *message,
  103. const struct wpa_dbus_method_desc *method_dsc)
  104. {
  105. /* According to DBus documentation max length of signature is 255 */
  106. #define MAX_SIG_LEN 256
  107. char registered_sig[MAX_SIG_LEN], *pos;
  108. const char *sig = dbus_message_get_signature(message);
  109. int ret;
  110. const struct wpa_dbus_argument *arg;
  111. pos = registered_sig;
  112. *pos = '\0';
  113. for (arg = method_dsc->args; arg && arg->name; arg++) {
  114. if (arg->dir == ARG_IN) {
  115. size_t blen = registered_sig + MAX_SIG_LEN - pos;
  116. ret = os_snprintf(pos, blen, "%s", arg->type);
  117. if (os_snprintf_error(blen, ret))
  118. return 0;
  119. pos += ret;
  120. }
  121. }
  122. return !os_strncmp(registered_sig, sig, MAX_SIG_LEN);
  123. }
  124. static DBusMessage * properties_get_all(DBusMessage *message, char *interface,
  125. struct wpa_dbus_object_desc *obj_dsc)
  126. {
  127. if (os_strcmp(dbus_message_get_signature(message), "s") != 0)
  128. return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS,
  129. NULL);
  130. return get_all_properties(message, interface, obj_dsc);
  131. }
  132. static DBusMessage * properties_get(DBusMessage *message,
  133. const struct wpa_dbus_property_desc *dsc,
  134. void *user_data)
  135. {
  136. DBusMessage *reply;
  137. DBusMessageIter iter;
  138. DBusError error;
  139. if (os_strcmp(dbus_message_get_signature(message), "ss")) {
  140. return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS,
  141. NULL);
  142. }
  143. if (dsc->getter == NULL) {
  144. return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS,
  145. "Property is write-only");
  146. }
  147. reply = dbus_message_new_method_return(message);
  148. dbus_message_iter_init_append(reply, &iter);
  149. dbus_error_init(&error);
  150. if (dsc->getter(&iter, &error, user_data) == FALSE) {
  151. dbus_message_unref(reply);
  152. reply = wpas_dbus_reply_new_from_error(
  153. message, &error, DBUS_ERROR_FAILED,
  154. "Failed to read property");
  155. dbus_error_free(&error);
  156. }
  157. return reply;
  158. }
  159. static DBusMessage * properties_set(DBusMessage *message,
  160. const struct wpa_dbus_property_desc *dsc,
  161. void *user_data)
  162. {
  163. DBusMessage *reply;
  164. DBusMessageIter iter;
  165. DBusError error;
  166. if (os_strcmp(dbus_message_get_signature(message), "ssv")) {
  167. return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS,
  168. NULL);
  169. }
  170. if (dsc->setter == NULL) {
  171. return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS,
  172. "Property is read-only");
  173. }
  174. dbus_message_iter_init(message, &iter);
  175. /* Skip the interface name and the property name */
  176. dbus_message_iter_next(&iter);
  177. dbus_message_iter_next(&iter);
  178. /* Iter will now point to the property's new value */
  179. dbus_error_init(&error);
  180. if (dsc->setter(&iter, &error, user_data) == TRUE) {
  181. /* Success */
  182. reply = dbus_message_new_method_return(message);
  183. } else {
  184. reply = wpas_dbus_reply_new_from_error(
  185. message, &error, DBUS_ERROR_FAILED,
  186. "Failed to set property");
  187. dbus_error_free(&error);
  188. }
  189. return reply;
  190. }
  191. static DBusMessage *
  192. properties_get_or_set(DBusMessage *message, DBusMessageIter *iter,
  193. char *interface,
  194. struct wpa_dbus_object_desc *obj_dsc)
  195. {
  196. const struct wpa_dbus_property_desc *property_dsc;
  197. char *property;
  198. const char *method;
  199. method = dbus_message_get_member(message);
  200. property_dsc = obj_dsc->properties;
  201. /* Second argument: property name (DBUS_TYPE_STRING) */
  202. if (!dbus_message_iter_next(iter) ||
  203. dbus_message_iter_get_arg_type(iter) != DBUS_TYPE_STRING) {
  204. return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS,
  205. NULL);
  206. }
  207. dbus_message_iter_get_basic(iter, &property);
  208. while (property_dsc && property_dsc->dbus_property) {
  209. /* compare property names and
  210. * interfaces */
  211. if (!os_strncmp(property_dsc->dbus_property, property,
  212. WPAS_DBUS_METHOD_SIGNAL_PROP_MAX) &&
  213. !os_strncmp(property_dsc->dbus_interface, interface,
  214. WPAS_DBUS_INTERFACE_MAX))
  215. break;
  216. property_dsc++;
  217. }
  218. if (property_dsc == NULL || property_dsc->dbus_property == NULL) {
  219. wpa_printf(MSG_DEBUG, "no property handler for %s.%s on %s",
  220. interface, property,
  221. dbus_message_get_path(message));
  222. return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS,
  223. "No such property");
  224. }
  225. if (os_strncmp(WPA_DBUS_PROPERTIES_GET, method,
  226. WPAS_DBUS_METHOD_SIGNAL_PROP_MAX) == 0)
  227. return properties_get(message, property_dsc,
  228. obj_dsc->user_data);
  229. return properties_set(message, property_dsc, obj_dsc->user_data);
  230. }
  231. static DBusMessage * properties_handler(DBusMessage *message,
  232. struct wpa_dbus_object_desc *obj_dsc)
  233. {
  234. DBusMessageIter iter;
  235. char *interface;
  236. const char *method;
  237. method = dbus_message_get_member(message);
  238. dbus_message_iter_init(message, &iter);
  239. if (!os_strncmp(WPA_DBUS_PROPERTIES_GET, method,
  240. WPAS_DBUS_METHOD_SIGNAL_PROP_MAX) ||
  241. !os_strncmp(WPA_DBUS_PROPERTIES_SET, method,
  242. WPAS_DBUS_METHOD_SIGNAL_PROP_MAX) ||
  243. !os_strncmp(WPA_DBUS_PROPERTIES_GETALL, method,
  244. WPAS_DBUS_METHOD_SIGNAL_PROP_MAX)) {
  245. /* First argument: interface name (DBUS_TYPE_STRING) */
  246. if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING)
  247. {
  248. return dbus_message_new_error(message,
  249. DBUS_ERROR_INVALID_ARGS,
  250. NULL);
  251. }
  252. dbus_message_iter_get_basic(&iter, &interface);
  253. if (!os_strncmp(WPA_DBUS_PROPERTIES_GETALL, method,
  254. WPAS_DBUS_METHOD_SIGNAL_PROP_MAX)) {
  255. /* GetAll */
  256. return properties_get_all(message, interface, obj_dsc);
  257. }
  258. /* Get or Set */
  259. return properties_get_or_set(message, &iter, interface,
  260. obj_dsc);
  261. }
  262. return dbus_message_new_error(message, DBUS_ERROR_UNKNOWN_METHOD,
  263. NULL);
  264. }
  265. static DBusMessage * msg_method_handler(DBusMessage *message,
  266. struct wpa_dbus_object_desc *obj_dsc)
  267. {
  268. const struct wpa_dbus_method_desc *method_dsc = obj_dsc->methods;
  269. const char *method;
  270. const char *msg_interface;
  271. method = dbus_message_get_member(message);
  272. msg_interface = dbus_message_get_interface(message);
  273. /* try match call to any registered method */
  274. while (method_dsc && method_dsc->dbus_method) {
  275. /* compare method names and interfaces */
  276. if (!os_strncmp(method_dsc->dbus_method, method,
  277. WPAS_DBUS_METHOD_SIGNAL_PROP_MAX) &&
  278. !os_strncmp(method_dsc->dbus_interface, msg_interface,
  279. WPAS_DBUS_INTERFACE_MAX))
  280. break;
  281. method_dsc++;
  282. }
  283. if (method_dsc == NULL || method_dsc->dbus_method == NULL) {
  284. wpa_printf(MSG_DEBUG, "no method handler for %s.%s on %s",
  285. msg_interface, method,
  286. dbus_message_get_path(message));
  287. return dbus_message_new_error(message,
  288. DBUS_ERROR_UNKNOWN_METHOD, NULL);
  289. }
  290. if (!is_signature_correct(message, method_dsc)) {
  291. return dbus_message_new_error(message, DBUS_ERROR_INVALID_ARGS,
  292. NULL);
  293. }
  294. return method_dsc->method_handler(message,
  295. obj_dsc->user_data);
  296. }
  297. /**
  298. * message_handler - Handles incoming DBus messages
  299. * @connection: DBus connection on which message was received
  300. * @message: Received message
  301. * @user_data: pointer to description of object to which message was sent
  302. * Returns: Returns information whether message was handled or not
  303. *
  304. * Reads message interface and method name, then checks if they matches one
  305. * of the special cases i.e. introspection call or properties get/getall/set
  306. * methods and handles it. Else it iterates over registered methods list
  307. * and tries to match method's name and interface to those read from message
  308. * If appropriate method was found its handler function is called and
  309. * response is sent. Otherwise, the DBUS_ERROR_UNKNOWN_METHOD error message
  310. * will be sent.
  311. */
  312. static DBusHandlerResult message_handler(DBusConnection *connection,
  313. DBusMessage *message, void *user_data)
  314. {
  315. struct wpa_dbus_object_desc *obj_dsc = user_data;
  316. const char *method;
  317. const char *path;
  318. const char *msg_interface;
  319. DBusMessage *reply;
  320. /* get method, interface and path the message is addressed to */
  321. method = dbus_message_get_member(message);
  322. path = dbus_message_get_path(message);
  323. msg_interface = dbus_message_get_interface(message);
  324. if (!method || !path || !msg_interface)
  325. return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
  326. wpa_printf(MSG_MSGDUMP, "dbus: %s.%s (%s) [%s]",
  327. msg_interface, method, path,
  328. dbus_message_get_signature(message));
  329. /* if message is introspection method call */
  330. if (!os_strncmp(WPA_DBUS_INTROSPECTION_METHOD, method,
  331. WPAS_DBUS_METHOD_SIGNAL_PROP_MAX) &&
  332. !os_strncmp(WPA_DBUS_INTROSPECTION_INTERFACE, msg_interface,
  333. WPAS_DBUS_INTERFACE_MAX)) {
  334. #ifdef CONFIG_CTRL_IFACE_DBUS_INTRO
  335. reply = wpa_dbus_introspect(message, obj_dsc);
  336. #else /* CONFIG_CTRL_IFACE_DBUS_INTRO */
  337. reply = dbus_message_new_error(
  338. message, DBUS_ERROR_UNKNOWN_METHOD,
  339. "wpa_supplicant was compiled without "
  340. "introspection support.");
  341. #endif /* CONFIG_CTRL_IFACE_DBUS_INTRO */
  342. } else if (!os_strncmp(WPA_DBUS_PROPERTIES_INTERFACE, msg_interface,
  343. WPAS_DBUS_INTERFACE_MAX)) {
  344. /* if message is properties method call */
  345. reply = properties_handler(message, obj_dsc);
  346. } else {
  347. reply = msg_method_handler(message, obj_dsc);
  348. }
  349. /* If handler succeed returning NULL, reply empty message */
  350. if (!reply)
  351. reply = dbus_message_new_method_return(message);
  352. if (reply) {
  353. if (!dbus_message_get_no_reply(message))
  354. dbus_connection_send(connection, reply, NULL);
  355. dbus_message_unref(reply);
  356. }
  357. wpa_dbus_flush_all_changed_properties(connection);
  358. return DBUS_HANDLER_RESULT_HANDLED;
  359. }
  360. /**
  361. * free_dbus_object_desc - Frees object description data structure
  362. * @connection: DBus connection
  363. * @obj_dsc: Object description to free
  364. *
  365. * Frees each of properties, methods and signals description lists and
  366. * the object description structure itself.
  367. */
  368. void free_dbus_object_desc(struct wpa_dbus_object_desc *obj_dsc)
  369. {
  370. if (!obj_dsc)
  371. return;
  372. /* free handler's argument */
  373. if (obj_dsc->user_data_free_func)
  374. obj_dsc->user_data_free_func(obj_dsc->user_data);
  375. os_free(obj_dsc->path);
  376. os_free(obj_dsc->prop_changed_flags);
  377. os_free(obj_dsc);
  378. }
  379. static void free_dbus_object_desc_cb(DBusConnection *connection, void *obj_dsc)
  380. {
  381. free_dbus_object_desc(obj_dsc);
  382. }
  383. /**
  384. * wpa_dbus_ctrl_iface_init - Initialize dbus control interface
  385. * @application_data: Pointer to application specific data structure
  386. * @dbus_path: DBus path to interface object
  387. * @dbus_service: DBus service name to register with
  388. * @messageHandler: a pointer to function which will handle dbus messages
  389. * coming on interface
  390. * Returns: 0 on success, -1 on failure
  391. *
  392. * Initialize the dbus control interface and start receiving commands from
  393. * external programs over the bus.
  394. */
  395. int wpa_dbus_ctrl_iface_init(struct wpas_dbus_priv *iface,
  396. char *dbus_path, char *dbus_service,
  397. struct wpa_dbus_object_desc *obj_desc)
  398. {
  399. DBusError error;
  400. int ret = -1;
  401. DBusObjectPathVTable wpa_vtable = {
  402. &free_dbus_object_desc_cb, &message_handler,
  403. NULL, NULL, NULL, NULL
  404. };
  405. obj_desc->connection = iface->con;
  406. obj_desc->path = os_strdup(dbus_path);
  407. /* Register the message handler for the global dbus interface */
  408. if (!dbus_connection_register_object_path(iface->con,
  409. dbus_path, &wpa_vtable,
  410. obj_desc)) {
  411. wpa_printf(MSG_ERROR, "dbus: Could not set up message "
  412. "handler");
  413. return -1;
  414. }
  415. /* Register our service with the message bus */
  416. dbus_error_init(&error);
  417. switch (dbus_bus_request_name(iface->con, dbus_service,
  418. 0, &error)) {
  419. case DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER:
  420. ret = 0;
  421. break;
  422. case DBUS_REQUEST_NAME_REPLY_EXISTS:
  423. case DBUS_REQUEST_NAME_REPLY_IN_QUEUE:
  424. case DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER:
  425. wpa_printf(MSG_ERROR, "dbus: Could not request service name: "
  426. "already registered");
  427. break;
  428. default:
  429. wpa_printf(MSG_ERROR, "dbus: Could not request service name: "
  430. "%s %s", error.name, error.message);
  431. break;
  432. }
  433. dbus_error_free(&error);
  434. if (ret != 0)
  435. return -1;
  436. wpa_printf(MSG_DEBUG, "Providing DBus service '%s'.", dbus_service);
  437. return 0;
  438. }
  439. /**
  440. * wpa_dbus_register_object_per_iface - Register a new object with dbus
  441. * @ctrl_iface: pointer to dbus private data
  442. * @path: DBus path to object
  443. * @ifname: interface name
  444. * @obj_desc: description of object's methods, signals and properties
  445. * Returns: 0 on success, -1 on error
  446. *
  447. * Registers a new interface with dbus and assigns it a dbus object path.
  448. */
  449. int wpa_dbus_register_object_per_iface(
  450. struct wpas_dbus_priv *ctrl_iface,
  451. const char *path, const char *ifname,
  452. struct wpa_dbus_object_desc *obj_desc)
  453. {
  454. DBusConnection *con;
  455. DBusError error;
  456. DBusObjectPathVTable vtable = {
  457. &free_dbus_object_desc_cb, &message_handler,
  458. NULL, NULL, NULL, NULL
  459. };
  460. /* Do nothing if the control interface is not turned on */
  461. if (ctrl_iface == NULL)
  462. return 0;
  463. con = ctrl_iface->con;
  464. obj_desc->connection = con;
  465. obj_desc->path = os_strdup(path);
  466. dbus_error_init(&error);
  467. /* Register the message handler for the interface functions */
  468. if (!dbus_connection_try_register_object_path(con, path, &vtable,
  469. obj_desc, &error)) {
  470. if (!os_strcmp(error.name, DBUS_ERROR_OBJECT_PATH_IN_USE)) {
  471. wpa_printf(MSG_DEBUG, "dbus: %s", error.message);
  472. } else {
  473. wpa_printf(MSG_ERROR, "dbus: Could not set up message "
  474. "handler for interface %s object %s",
  475. ifname, path);
  476. wpa_printf(MSG_ERROR, "dbus error: %s", error.name);
  477. wpa_printf(MSG_ERROR, "dbus: %s", error.message);
  478. }
  479. dbus_error_free(&error);
  480. return -1;
  481. }
  482. dbus_error_free(&error);
  483. return 0;
  484. }
  485. static void flush_object_timeout_handler(void *eloop_ctx, void *timeout_ctx);
  486. /**
  487. * wpa_dbus_unregister_object_per_iface - Unregisters DBus object
  488. * @ctrl_iface: Pointer to dbus private data
  489. * @path: DBus path to object which will be unregistered
  490. * Returns: Zero on success and -1 on failure
  491. *
  492. * Unregisters DBus object given by its path
  493. */
  494. int wpa_dbus_unregister_object_per_iface(
  495. struct wpas_dbus_priv *ctrl_iface, const char *path)
  496. {
  497. DBusConnection *con = ctrl_iface->con;
  498. struct wpa_dbus_object_desc *obj_desc = NULL;
  499. dbus_connection_get_object_path_data(con, path, (void **) &obj_desc);
  500. if (!obj_desc) {
  501. wpa_printf(MSG_ERROR, "dbus: %s: Could not obtain object's "
  502. "private data: %s", __func__, path);
  503. return 0;
  504. }
  505. eloop_cancel_timeout(flush_object_timeout_handler, con, obj_desc);
  506. if (!dbus_connection_unregister_object_path(con, path))
  507. return -1;
  508. return 0;
  509. }
  510. static dbus_bool_t put_changed_properties(
  511. const struct wpa_dbus_object_desc *obj_dsc, const char *interface,
  512. DBusMessageIter *dict_iter, int clear_changed)
  513. {
  514. DBusMessageIter entry_iter;
  515. const struct wpa_dbus_property_desc *dsc;
  516. int i;
  517. DBusError error;
  518. for (dsc = obj_dsc->properties, i = 0; dsc && dsc->dbus_property;
  519. dsc++, i++) {
  520. if (obj_dsc->prop_changed_flags == NULL ||
  521. !obj_dsc->prop_changed_flags[i])
  522. continue;
  523. if (os_strcmp(dsc->dbus_interface, interface) != 0)
  524. continue;
  525. if (clear_changed)
  526. obj_dsc->prop_changed_flags[i] = 0;
  527. if (!dbus_message_iter_open_container(dict_iter,
  528. DBUS_TYPE_DICT_ENTRY,
  529. NULL, &entry_iter))
  530. return FALSE;
  531. if (!dbus_message_iter_append_basic(&entry_iter,
  532. DBUS_TYPE_STRING,
  533. &dsc->dbus_property))
  534. return FALSE;
  535. dbus_error_init(&error);
  536. if (!dsc->getter(&entry_iter, &error, obj_dsc->user_data)) {
  537. if (dbus_error_is_set (&error)) {
  538. wpa_printf(MSG_ERROR, "dbus: %s: Cannot get "
  539. "new value of property %s: (%s) %s",
  540. __func__, dsc->dbus_property,
  541. error.name, error.message);
  542. } else {
  543. wpa_printf(MSG_ERROR, "dbus: %s: Cannot get "
  544. "new value of property %s",
  545. __func__, dsc->dbus_property);
  546. }
  547. dbus_error_free(&error);
  548. return FALSE;
  549. }
  550. if (!dbus_message_iter_close_container(dict_iter, &entry_iter))
  551. return FALSE;
  552. }
  553. return TRUE;
  554. }
  555. static void do_send_prop_changed_signal(
  556. DBusConnection *con, const char *path, const char *interface,
  557. const struct wpa_dbus_object_desc *obj_dsc)
  558. {
  559. DBusMessage *msg;
  560. DBusMessageIter signal_iter, dict_iter;
  561. msg = dbus_message_new_signal(path, DBUS_INTERFACE_PROPERTIES,
  562. "PropertiesChanged");
  563. if (msg == NULL)
  564. return;
  565. dbus_message_iter_init_append(msg, &signal_iter);
  566. if (!dbus_message_iter_append_basic(&signal_iter, DBUS_TYPE_STRING,
  567. &interface))
  568. goto err;
  569. /* Changed properties dict */
  570. if (!dbus_message_iter_open_container(&signal_iter, DBUS_TYPE_ARRAY,
  571. "{sv}", &dict_iter))
  572. goto err;
  573. if (!put_changed_properties(obj_dsc, interface, &dict_iter, 0))
  574. goto err;
  575. if (!dbus_message_iter_close_container(&signal_iter, &dict_iter))
  576. goto err;
  577. /* Invalidated properties array (empty) */
  578. if (!dbus_message_iter_open_container(&signal_iter, DBUS_TYPE_ARRAY,
  579. "s", &dict_iter))
  580. goto err;
  581. if (!dbus_message_iter_close_container(&signal_iter, &dict_iter))
  582. goto err;
  583. dbus_connection_send(con, msg, NULL);
  584. out:
  585. dbus_message_unref(msg);
  586. return;
  587. err:
  588. wpa_printf(MSG_DEBUG, "dbus: %s: Failed to construct signal",
  589. __func__);
  590. goto out;
  591. }
  592. static void do_send_deprecated_prop_changed_signal(
  593. DBusConnection *con, const char *path, const char *interface,
  594. const struct wpa_dbus_object_desc *obj_dsc)
  595. {
  596. DBusMessage *msg;
  597. DBusMessageIter signal_iter, dict_iter;
  598. msg = dbus_message_new_signal(path, interface, "PropertiesChanged");
  599. if (msg == NULL)
  600. return;
  601. dbus_message_iter_init_append(msg, &signal_iter);
  602. if (!dbus_message_iter_open_container(&signal_iter, DBUS_TYPE_ARRAY,
  603. "{sv}", &dict_iter))
  604. goto err;
  605. if (!put_changed_properties(obj_dsc, interface, &dict_iter, 1))
  606. goto err;
  607. if (!dbus_message_iter_close_container(&signal_iter, &dict_iter))
  608. goto err;
  609. dbus_connection_send(con, msg, NULL);
  610. out:
  611. dbus_message_unref(msg);
  612. return;
  613. err:
  614. wpa_printf(MSG_DEBUG, "dbus: %s: Failed to construct signal",
  615. __func__);
  616. goto out;
  617. }
  618. static void send_prop_changed_signal(
  619. DBusConnection *con, const char *path, const char *interface,
  620. const struct wpa_dbus_object_desc *obj_dsc)
  621. {
  622. /*
  623. * First, send property change notification on the standardized
  624. * org.freedesktop.DBus.Properties interface. This call will not
  625. * clear the property change bits, so that they are preserved for
  626. * the call that follows.
  627. */
  628. do_send_prop_changed_signal(con, path, interface, obj_dsc);
  629. /*
  630. * Now send PropertiesChanged on our own interface for backwards
  631. * compatibility. This is deprecated and will be removed in a future
  632. * release.
  633. */
  634. do_send_deprecated_prop_changed_signal(con, path, interface, obj_dsc);
  635. /* Property change bits have now been cleared. */
  636. }
  637. static void flush_object_timeout_handler(void *eloop_ctx, void *timeout_ctx)
  638. {
  639. DBusConnection *con = eloop_ctx;
  640. struct wpa_dbus_object_desc *obj_desc = timeout_ctx;
  641. wpa_printf(MSG_DEBUG, "dbus: %s: Timeout - sending changed properties "
  642. "of object %s", __func__, obj_desc->path);
  643. wpa_dbus_flush_object_changed_properties(con, obj_desc->path);
  644. }
  645. static void recursive_flush_changed_properties(DBusConnection *con,
  646. const char *path)
  647. {
  648. char **objects = NULL;
  649. char subobj_path[WPAS_DBUS_OBJECT_PATH_MAX];
  650. int i;
  651. wpa_dbus_flush_object_changed_properties(con, path);
  652. if (!dbus_connection_list_registered(con, path, &objects))
  653. goto out;
  654. for (i = 0; objects[i]; i++) {
  655. os_snprintf(subobj_path, WPAS_DBUS_OBJECT_PATH_MAX,
  656. "%s/%s", path, objects[i]);
  657. recursive_flush_changed_properties(con, subobj_path);
  658. }
  659. out:
  660. dbus_free_string_array(objects);
  661. }
  662. /**
  663. * wpa_dbus_flush_all_changed_properties - Send all PropertiesChanged signals
  664. * @con: DBus connection
  665. *
  666. * Traverses through all registered objects and sends PropertiesChanged for
  667. * each properties.
  668. */
  669. void wpa_dbus_flush_all_changed_properties(DBusConnection *con)
  670. {
  671. recursive_flush_changed_properties(con, WPAS_DBUS_NEW_PATH);
  672. }
  673. /**
  674. * wpa_dbus_flush_object_changed_properties - Send PropertiesChanged for object
  675. * @con: DBus connection
  676. * @path: path to a DBus object for which PropertiesChanged will be sent.
  677. *
  678. * Iterates over all properties registered with object and for each interface
  679. * containing properties marked as changed, sends a PropertiesChanged signal
  680. * containing names and new values of properties that have changed.
  681. *
  682. * You need to call this function after wpa_dbus_mark_property_changed()
  683. * if you want to send PropertiesChanged signal immediately (i.e., without
  684. * waiting timeout to expire). PropertiesChanged signal for an object is sent
  685. * automatically short time after first marking property as changed. All
  686. * PropertiesChanged signals are sent automatically after responding on DBus
  687. * message, so if you marked a property changed as a result of DBus call
  688. * (e.g., param setter), you usually do not need to call this function.
  689. */
  690. void wpa_dbus_flush_object_changed_properties(DBusConnection *con,
  691. const char *path)
  692. {
  693. struct wpa_dbus_object_desc *obj_desc = NULL;
  694. const struct wpa_dbus_property_desc *dsc;
  695. int i;
  696. dbus_connection_get_object_path_data(con, path, (void **) &obj_desc);
  697. if (!obj_desc)
  698. return;
  699. eloop_cancel_timeout(flush_object_timeout_handler, con, obj_desc);
  700. for (dsc = obj_desc->properties, i = 0; dsc && dsc->dbus_property;
  701. dsc++, i++) {
  702. if (obj_desc->prop_changed_flags == NULL ||
  703. !obj_desc->prop_changed_flags[i])
  704. continue;
  705. send_prop_changed_signal(con, path, dsc->dbus_interface,
  706. obj_desc);
  707. }
  708. }
  709. #define WPA_DBUS_SEND_PROP_CHANGED_TIMEOUT 5000
  710. /**
  711. * wpa_dbus_mark_property_changed - Mark a property as changed and
  712. * @iface: dbus priv struct
  713. * @path: path to DBus object which property has changed
  714. * @interface: interface containing changed property
  715. * @property: property name which has changed
  716. *
  717. * Iterates over all properties registered with an object and marks the one
  718. * given in parameters as changed. All parameters registered for an object
  719. * within a single interface will be aggregated together and sent in one
  720. * PropertiesChanged signal when function
  721. * wpa_dbus_flush_object_changed_properties() is called.
  722. */
  723. void wpa_dbus_mark_property_changed(struct wpas_dbus_priv *iface,
  724. const char *path, const char *interface,
  725. const char *property)
  726. {
  727. struct wpa_dbus_object_desc *obj_desc = NULL;
  728. const struct wpa_dbus_property_desc *dsc;
  729. int i = 0;
  730. if (iface == NULL)
  731. return;
  732. dbus_connection_get_object_path_data(iface->con, path,
  733. (void **) &obj_desc);
  734. if (!obj_desc) {
  735. wpa_printf(MSG_ERROR, "dbus: wpa_dbus_property_changed: "
  736. "could not obtain object's private data: %s", path);
  737. return;
  738. }
  739. for (dsc = obj_desc->properties; dsc && dsc->dbus_property; dsc++, i++)
  740. if (os_strcmp(property, dsc->dbus_property) == 0 &&
  741. os_strcmp(interface, dsc->dbus_interface) == 0) {
  742. if (obj_desc->prop_changed_flags)
  743. obj_desc->prop_changed_flags[i] = 1;
  744. break;
  745. }
  746. if (!dsc || !dsc->dbus_property) {
  747. wpa_printf(MSG_ERROR, "dbus: wpa_dbus_property_changed: "
  748. "no property %s in object %s", property, path);
  749. return;
  750. }
  751. if (!eloop_is_timeout_registered(flush_object_timeout_handler,
  752. iface->con, obj_desc)) {
  753. eloop_register_timeout(0, WPA_DBUS_SEND_PROP_CHANGED_TIMEOUT,
  754. flush_object_timeout_handler,
  755. iface->con, obj_desc);
  756. }
  757. }
  758. /**
  759. * wpa_dbus_get_object_properties - Put object's properties into dictionary
  760. * @iface: dbus priv struct
  761. * @path: path to DBus object which properties will be obtained
  762. * @interface: interface name which properties will be obtained
  763. * @iter: DBus message iter at which to append property dictionary.
  764. *
  765. * Iterates over all properties registered with object and execute getters
  766. * of those, which are readable and which interface matches interface
  767. * specified as argument. Obtained properties values are stored in
  768. * dict_iter dictionary.
  769. */
  770. dbus_bool_t wpa_dbus_get_object_properties(struct wpas_dbus_priv *iface,
  771. const char *path,
  772. const char *interface,
  773. DBusMessageIter *iter)
  774. {
  775. struct wpa_dbus_object_desc *obj_desc = NULL;
  776. DBusMessageIter dict_iter;
  777. DBusError error;
  778. dbus_connection_get_object_path_data(iface->con, path,
  779. (void **) &obj_desc);
  780. if (!obj_desc) {
  781. wpa_printf(MSG_ERROR, "dbus: %s: could not obtain object's "
  782. "private data: %s", __func__, path);
  783. return FALSE;
  784. }
  785. if (!wpa_dbus_dict_open_write(iter, &dict_iter)) {
  786. wpa_printf(MSG_ERROR, "dbus: %s: failed to open message dict",
  787. __func__);
  788. return FALSE;
  789. }
  790. dbus_error_init(&error);
  791. if (!fill_dict_with_properties(&dict_iter, obj_desc->properties,
  792. interface, obj_desc->user_data,
  793. &error)) {
  794. wpa_printf(MSG_ERROR, "dbus: %s: failed to get object"
  795. " properties: (%s) %s", __func__,
  796. dbus_error_is_set(&error) ? error.name : "none",
  797. dbus_error_is_set(&error) ? error.message : "none");
  798. dbus_error_free(&error);
  799. return FALSE;
  800. }
  801. return wpa_dbus_dict_close_write(iter, &dict_iter);
  802. }
  803. /**
  804. * wpas_dbus_new_decompose_object_path - Decompose an interface object path into parts
  805. * @path: The dbus object path
  806. * @p2p_persistent_group: indicates whether to parse the path as a P2P
  807. * persistent group object
  808. * @network: (out) the configured network this object path refers to, if any
  809. * @bssid: (out) the scanned bssid this object path refers to, if any
  810. * Returns: The object path of the network interface this path refers to
  811. *
  812. * For a given object path, decomposes the object path into object id, network,
  813. * and BSSID parts, if those parts exist.
  814. */
  815. char *wpas_dbus_new_decompose_object_path(const char *path,
  816. int p2p_persistent_group,
  817. char **network,
  818. char **bssid)
  819. {
  820. const unsigned int dev_path_prefix_len =
  821. os_strlen(WPAS_DBUS_NEW_PATH_INTERFACES "/");
  822. char *obj_path_only;
  823. char *next_sep;
  824. /* Be a bit paranoid about path */
  825. if (!path || os_strncmp(path, WPAS_DBUS_NEW_PATH_INTERFACES "/",
  826. dev_path_prefix_len))
  827. return NULL;
  828. /* Ensure there's something at the end of the path */
  829. if ((path + dev_path_prefix_len)[0] == '\0')
  830. return NULL;
  831. obj_path_only = os_strdup(path);
  832. if (obj_path_only == NULL)
  833. return NULL;
  834. next_sep = os_strchr(obj_path_only + dev_path_prefix_len, '/');
  835. if (next_sep != NULL) {
  836. const char *net_part = os_strstr(
  837. next_sep, p2p_persistent_group ?
  838. WPAS_DBUS_NEW_PERSISTENT_GROUPS_PART "/" :
  839. WPAS_DBUS_NEW_NETWORKS_PART "/");
  840. const char *bssid_part = os_strstr(
  841. next_sep, WPAS_DBUS_NEW_BSSIDS_PART "/");
  842. if (network && net_part) {
  843. /* Deal with a request for a configured network */
  844. const char *net_name = net_part +
  845. os_strlen(p2p_persistent_group ?
  846. WPAS_DBUS_NEW_PERSISTENT_GROUPS_PART
  847. "/" :
  848. WPAS_DBUS_NEW_NETWORKS_PART "/");
  849. *network = NULL;
  850. if (os_strlen(net_name))
  851. *network = os_strdup(net_name);
  852. } else if (bssid && bssid_part) {
  853. /* Deal with a request for a scanned BSSID */
  854. const char *bssid_name = bssid_part +
  855. os_strlen(WPAS_DBUS_NEW_BSSIDS_PART "/");
  856. if (os_strlen(bssid_name))
  857. *bssid = os_strdup(bssid_name);
  858. else
  859. *bssid = NULL;
  860. }
  861. /* Cut off interface object path before "/" */
  862. *next_sep = '\0';
  863. }
  864. return obj_path_only;
  865. }
  866. /**
  867. * wpas_dbus_reply_new_from_error - Create a new D-Bus error message from a
  868. * dbus error structure
  869. * @message: The original request message for which the error is a reply
  870. * @error: The error containing a name and a descriptive error cause
  871. * @fallback_name: A generic error name if @error was not set
  872. * @fallback_string: A generic error string if @error was not set
  873. * Returns: A new D-Bus error message
  874. *
  875. * Given a DBusMessage structure, creates a new D-Bus error message using
  876. * the error name and string contained in that structure.
  877. */
  878. DBusMessage * wpas_dbus_reply_new_from_error(DBusMessage *message,
  879. DBusError *error,
  880. const char *fallback_name,
  881. const char *fallback_string)
  882. {
  883. if (error && error->name && error->message) {
  884. return dbus_message_new_error(message, error->name,
  885. error->message);
  886. }
  887. if (fallback_name && fallback_string) {
  888. return dbus_message_new_error(message, fallback_name,
  889. fallback_string);
  890. }
  891. return NULL;
  892. }