dbus_new_helpers.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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 program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * Alternatively, this software may be distributed under the terms of BSD
  11. * license.
  12. *
  13. * See README and COPYING for more details.
  14. */
  15. #ifndef WPA_DBUS_CTRL_H
  16. #define WPA_DBUS_CTRL_H
  17. #include <dbus/dbus.h>
  18. typedef DBusMessage * (* WPADBusMethodHandler)(DBusMessage *message,
  19. void *user_data);
  20. typedef void (* WPADBusArgumentFreeFunction)(void *handler_arg);
  21. typedef DBusMessage * (* WPADBusPropertyAccessor)(DBusMessage *message,
  22. void *user_data);
  23. struct wpa_dbus_object_desc {
  24. DBusConnection *connection;
  25. struct wpa_dbus_method_desc *methods;
  26. struct wpa_dbus_signal_desc *signals;
  27. struct wpa_dbus_property_desc *properties;
  28. };
  29. enum dbus_prop_access { R, W, RW };
  30. enum dbus_arg_direction { ARG_IN, ARG_OUT };
  31. struct wpa_dbus_argument {
  32. char *name;
  33. char *type;
  34. enum dbus_arg_direction dir;
  35. };
  36. #define END_ARGS { NULL, NULL, ARG_IN }
  37. #ifdef CONFIG_CTRL_IFACE_DBUS_NEW
  38. #ifndef SIGPOLL
  39. #ifdef SIGIO
  40. /*
  41. * If we do not have SIGPOLL, try to use SIGIO instead. This is needed for
  42. * FreeBSD.
  43. */
  44. #define SIGPOLL SIGIO
  45. #endif
  46. #endif
  47. #define WPAS_DBUS_OBJECT_PATH_MAX 150
  48. #define WPAS_DBUS_INTERFACE_MAX 150
  49. #define WPAS_DBUS_METHOD_SIGNAL_PROP_MAX 50
  50. #define WPA_DBUS_INTROSPECTION_INTERFACE "org.freedesktop.DBus.Introspectable"
  51. #define WPA_DBUS_INTROSPECTION_METHOD "Introspect"
  52. #define WPA_DBUS_PROPERTIES_INTERFACE "org.freedesktop.DBus.Properties"
  53. #define WPA_DBUS_PROPERTIES_GET "Get"
  54. #define WPA_DBUS_PROPERTIES_SET "Set"
  55. #define WPA_DBUS_PROPERTIES_GETALL "GetAll"
  56. void free_dbus_object_desc(struct wpa_dbus_object_desc *obj_dsc);
  57. int wpa_dbus_ctrl_iface_init(struct wpas_dbus_priv *iface, char *dbus_path,
  58. char *dbus_service,
  59. struct wpa_dbus_object_desc *obj_desc);
  60. int wpa_dbus_register_object_per_iface(
  61. struct wpas_dbus_priv *ctrl_iface,
  62. const char *path, const char *ifname,
  63. struct wpa_dbus_object_desc *obj_desc);
  64. int wpa_dbus_unregister_object_per_iface(
  65. struct wpas_dbus_priv *ctrl_iface,
  66. const char *path);
  67. int wpa_dbus_method_register(struct wpa_dbus_object_desc *obj_dsc,
  68. const char *dbus_interface,
  69. const char *dbus_method,
  70. WPADBusMethodHandler method_handler,
  71. void *handler_argument,
  72. WPADBusArgumentFreeFunction argument_free_func,
  73. const struct wpa_dbus_argument args[]);
  74. int wpa_dbus_signal_register(struct wpa_dbus_object_desc *obj_dsc,
  75. const char *dbus_interface,
  76. const char *dbus_signal,
  77. const struct wpa_dbus_argument args[]);
  78. int wpa_dbus_property_register(
  79. struct wpa_dbus_object_desc *obj_dsc,
  80. const char *dbus_interface, const char *dbus_property,
  81. const char *type,
  82. WPADBusPropertyAccessor getter,
  83. WPADBusPropertyAccessor setter,
  84. void *user_data,
  85. WPADBusArgumentFreeFunction user_data_free_func,
  86. enum dbus_prop_access _access);
  87. void wpa_dbus_signal_property_changed(struct wpas_dbus_priv *iface,
  88. WPADBusPropertyAccessor property_getter,
  89. void *getter_arg,
  90. const char *path,
  91. const char *interface_name,
  92. const char *property_name);
  93. #else /* CONFIG_CTRL_IFACE_DBUS_NEW */
  94. static inline void wpa_dbus_signal_property_changed(
  95. struct wpas_dbus_priv *iface,
  96. WPADBusPropertyAccessor property_getter, void *getter_arg,
  97. const char *path, const char *interface_name,
  98. const char *property_name)
  99. {
  100. }
  101. #endif /* CONFIG_CTRL_IFACE_DBUS_NEW */
  102. #endif /* WPA_DBUS_CTRL_H */