dbus_old.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. #ifndef CTRL_IFACE_DBUS_H
  15. #define CTRL_IFACE_DBUS_H
  16. struct wps_credential;
  17. #ifdef CONFIG_CTRL_IFACE_DBUS
  18. #ifndef SIGPOLL
  19. #ifdef SIGIO
  20. /*
  21. * If we do not have SIGPOLL, try to use SIGIO instead. This is needed for
  22. * FreeBSD.
  23. */
  24. #define SIGPOLL SIGIO
  25. #endif
  26. #endif
  27. #include <dbus/dbus.h>
  28. #define WPAS_DBUS_OBJECT_PATH_MAX 150
  29. #define WPAS_DBUS_SERVICE "fi.epitest.hostap.WPASupplicant"
  30. #define WPAS_DBUS_PATH "/fi/epitest/hostap/WPASupplicant"
  31. #define WPAS_DBUS_INTERFACE "fi.epitest.hostap.WPASupplicant"
  32. #define WPAS_DBUS_PATH_INTERFACES WPAS_DBUS_PATH "/Interfaces"
  33. #define WPAS_DBUS_IFACE_INTERFACE WPAS_DBUS_INTERFACE ".Interface"
  34. #define WPAS_DBUS_NETWORKS_PART "Networks"
  35. #define WPAS_DBUS_IFACE_NETWORK WPAS_DBUS_INTERFACE ".Network"
  36. #define WPAS_DBUS_BSSIDS_PART "BSSIDs"
  37. #define WPAS_DBUS_IFACE_BSSID WPAS_DBUS_INTERFACE ".BSSID"
  38. /* Errors */
  39. #define WPAS_ERROR_INVALID_NETWORK \
  40. WPAS_DBUS_IFACE_INTERFACE ".InvalidNetwork"
  41. #define WPAS_ERROR_INVALID_BSSID \
  42. WPAS_DBUS_IFACE_INTERFACE ".InvalidBSSID"
  43. #define WPAS_ERROR_INVALID_OPTS \
  44. WPAS_DBUS_INTERFACE ".InvalidOptions"
  45. #define WPAS_ERROR_INVALID_IFACE \
  46. WPAS_DBUS_INTERFACE ".InvalidInterface"
  47. #define WPAS_ERROR_ADD_ERROR \
  48. WPAS_DBUS_INTERFACE ".AddError"
  49. #define WPAS_ERROR_EXISTS_ERROR \
  50. WPAS_DBUS_INTERFACE ".ExistsError"
  51. #define WPAS_ERROR_REMOVE_ERROR \
  52. WPAS_DBUS_INTERFACE ".RemoveError"
  53. #define WPAS_ERROR_SCAN_ERROR \
  54. WPAS_DBUS_IFACE_INTERFACE ".ScanError"
  55. #define WPAS_ERROR_ADD_NETWORK_ERROR \
  56. WPAS_DBUS_IFACE_INTERFACE ".AddNetworkError"
  57. #define WPAS_ERROR_INTERNAL_ERROR \
  58. WPAS_DBUS_IFACE_INTERFACE ".InternalError"
  59. #define WPAS_ERROR_REMOVE_NETWORK_ERROR \
  60. WPAS_DBUS_IFACE_INTERFACE ".RemoveNetworkError"
  61. #define WPAS_ERROR_WPS_PBC_ERROR \
  62. WPAS_DBUS_IFACE_INTERFACE ".WpsPbcError"
  63. #define WPAS_ERROR_WPS_PIN_ERROR \
  64. WPAS_DBUS_IFACE_INTERFACE ".WpsPinError"
  65. #define WPAS_ERROR_WPS_REG_ERROR \
  66. WPAS_DBUS_IFACE_INTERFACE ".WpsRegError"
  67. #define WPAS_DBUS_BSSID_FORMAT "%02x%02x%02x%02x%02x%02x"
  68. struct wpa_global;
  69. struct wpa_supplicant;
  70. int wpa_supplicant_dbus_ctrl_iface_init(struct wpas_dbus_priv *iface);
  71. void wpa_supplicant_dbus_notify_scan_results(struct wpa_supplicant *wpa_s);
  72. void wpa_supplicant_dbus_notify_scanning(struct wpa_supplicant *wpa_s);
  73. void wpa_supplicant_dbus_notify_state_change(struct wpa_supplicant *wpa_s,
  74. enum wpa_states new_state,
  75. enum wpa_states old_state);
  76. void wpa_supplicant_dbus_notify_wps_cred(struct wpa_supplicant *wpa_s,
  77. const struct wps_credential *cred);
  78. char * wpas_dbus_decompose_object_path(const char *path, char **network,
  79. char **bssid);
  80. int wpas_dbus_register_iface(struct wpa_supplicant *wpa_s);
  81. int wpas_dbus_unregister_iface(struct wpa_supplicant *wpa_s);
  82. /* Methods internal to the dbus control interface */
  83. int wpa_supplicant_set_dbus_path(struct wpa_supplicant *wpa_s,
  84. const char *path);
  85. const char *wpa_supplicant_get_dbus_path(struct wpa_supplicant *wpa_s);
  86. struct wpa_supplicant * wpa_supplicant_get_iface_by_dbus_path(
  87. struct wpa_global *global, const char *path);
  88. DBusMessage * wpas_dbus_new_invalid_iface_error(DBusMessage *message);
  89. DBusMessage * wpas_dbus_new_invalid_network_error(DBusMessage *message);
  90. #else /* CONFIG_CTRL_IFACE_DBUS */
  91. static inline void
  92. wpa_supplicant_dbus_notify_scan_results(struct wpa_supplicant *wpa_s)
  93. {
  94. }
  95. static inline void
  96. wpa_supplicant_dbus_notify_scanning(struct wpa_supplicant *wpa_s)
  97. {
  98. }
  99. #define wpa_supplicant_dbus_notify_state_change(w,n,o) do { } while (0)
  100. static inline void
  101. wpa_supplicant_dbus_notify_wps_cred(struct wpa_supplicant *wpa_s,
  102. const struct wps_credential *cred)
  103. {
  104. }
  105. static inline int
  106. wpas_dbus_register_iface(struct wpa_supplicant *wpa_s)
  107. {
  108. return 0;
  109. }
  110. static inline int
  111. wpas_dbus_unregister_iface(struct wpa_supplicant *wpa_s)
  112. {
  113. return 0;
  114. }
  115. #endif /* CONFIG_CTRL_IFACE_DBUS */
  116. #endif /* CTRL_IFACE_DBUS_H */