notify.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. /*
  2. * wpa_supplicant - Event notifications
  3. * Copyright (c) 2009-2010, Jouni Malinen <j@w1.fi>
  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 "utils/includes.h"
  15. #include "utils/common.h"
  16. #include "common/wpa_ctrl.h"
  17. #include "config.h"
  18. #include "wpa_supplicant_i.h"
  19. #include "wps_supplicant.h"
  20. #include "dbus/dbus_common.h"
  21. #include "dbus/dbus_old.h"
  22. #include "dbus/dbus_new.h"
  23. #include "driver_i.h"
  24. #include "scan.h"
  25. #include "p2p_supplicant.h"
  26. #include "sme.h"
  27. #include "notify.h"
  28. int wpas_notify_supplicant_initialized(struct wpa_global *global)
  29. {
  30. #ifdef CONFIG_DBUS
  31. if (global->params.dbus_ctrl_interface) {
  32. global->dbus = wpas_dbus_init(global);
  33. if (global->dbus == NULL)
  34. return -1;
  35. }
  36. #endif /* CONFIG_DBUS */
  37. return 0;
  38. }
  39. void wpas_notify_supplicant_deinitialized(struct wpa_global *global)
  40. {
  41. #ifdef CONFIG_DBUS
  42. if (global->dbus)
  43. wpas_dbus_deinit(global->dbus);
  44. #endif /* CONFIG_DBUS */
  45. }
  46. int wpas_notify_iface_added(struct wpa_supplicant *wpa_s)
  47. {
  48. if (wpas_dbus_register_iface(wpa_s))
  49. return -1;
  50. if (wpas_dbus_register_interface(wpa_s))
  51. return -1;
  52. return 0;
  53. }
  54. void wpas_notify_iface_removed(struct wpa_supplicant *wpa_s)
  55. {
  56. /* unregister interface in old DBus ctrl iface */
  57. wpas_dbus_unregister_iface(wpa_s);
  58. /* unregister interface in new DBus ctrl iface */
  59. wpas_dbus_unregister_interface(wpa_s);
  60. }
  61. void wpas_notify_state_changed(struct wpa_supplicant *wpa_s,
  62. enum wpa_states new_state,
  63. enum wpa_states old_state)
  64. {
  65. /* notify the old DBus API */
  66. wpa_supplicant_dbus_notify_state_change(wpa_s, new_state,
  67. old_state);
  68. /* notify the new DBus API */
  69. wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_STATE);
  70. #ifdef CONFIG_P2P
  71. if (new_state == WPA_COMPLETED)
  72. wpas_p2p_notif_connected(wpa_s);
  73. else if (new_state < WPA_ASSOCIATED)
  74. wpas_p2p_notif_disconnected(wpa_s);
  75. #endif /* CONFIG_P2P */
  76. sme_state_changed(wpa_s);
  77. }
  78. void wpas_notify_network_changed(struct wpa_supplicant *wpa_s)
  79. {
  80. wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_CURRENT_NETWORK);
  81. }
  82. void wpas_notify_ap_scan_changed(struct wpa_supplicant *wpa_s)
  83. {
  84. wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_AP_SCAN);
  85. }
  86. void wpas_notify_bssid_changed(struct wpa_supplicant *wpa_s)
  87. {
  88. wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_CURRENT_BSS);
  89. }
  90. void wpas_notify_network_enabled_changed(struct wpa_supplicant *wpa_s,
  91. struct wpa_ssid *ssid)
  92. {
  93. wpas_dbus_signal_network_enabled_changed(wpa_s, ssid);
  94. }
  95. void wpas_notify_network_selected(struct wpa_supplicant *wpa_s,
  96. struct wpa_ssid *ssid)
  97. {
  98. wpas_dbus_signal_network_selected(wpa_s, ssid->id);
  99. }
  100. void wpas_notify_scanning(struct wpa_supplicant *wpa_s)
  101. {
  102. /* notify the old DBus API */
  103. wpa_supplicant_dbus_notify_scanning(wpa_s);
  104. /* notify the new DBus API */
  105. wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_SCANNING);
  106. }
  107. void wpas_notify_scan_done(struct wpa_supplicant *wpa_s, int success)
  108. {
  109. wpas_dbus_signal_scan_done(wpa_s, success);
  110. }
  111. void wpas_notify_scan_results(struct wpa_supplicant *wpa_s)
  112. {
  113. /* notify the old DBus API */
  114. wpa_supplicant_dbus_notify_scan_results(wpa_s);
  115. wpas_wps_notify_scan_results(wpa_s);
  116. }
  117. void wpas_notify_wps_credential(struct wpa_supplicant *wpa_s,
  118. const struct wps_credential *cred)
  119. {
  120. #ifdef CONFIG_WPS
  121. /* notify the old DBus API */
  122. wpa_supplicant_dbus_notify_wps_cred(wpa_s, cred);
  123. /* notify the new DBus API */
  124. wpas_dbus_signal_wps_cred(wpa_s, cred);
  125. #endif /* CONFIG_WPS */
  126. }
  127. void wpas_notify_wps_event_m2d(struct wpa_supplicant *wpa_s,
  128. struct wps_event_m2d *m2d)
  129. {
  130. #ifdef CONFIG_WPS
  131. wpas_dbus_signal_wps_event_m2d(wpa_s, m2d);
  132. #endif /* CONFIG_WPS */
  133. }
  134. void wpas_notify_wps_event_fail(struct wpa_supplicant *wpa_s,
  135. struct wps_event_fail *fail)
  136. {
  137. #ifdef CONFIG_WPS
  138. wpas_dbus_signal_wps_event_fail(wpa_s, fail);
  139. #endif /* CONFIG_WPS */
  140. }
  141. void wpas_notify_wps_event_success(struct wpa_supplicant *wpa_s)
  142. {
  143. #ifdef CONFIG_WPS
  144. wpas_dbus_signal_wps_event_success(wpa_s);
  145. #endif /* CONFIG_WPS */
  146. }
  147. void wpas_notify_network_added(struct wpa_supplicant *wpa_s,
  148. struct wpa_ssid *ssid)
  149. {
  150. wpas_dbus_register_network(wpa_s, ssid);
  151. }
  152. void wpas_notify_network_removed(struct wpa_supplicant *wpa_s,
  153. struct wpa_ssid *ssid)
  154. {
  155. wpas_dbus_unregister_network(wpa_s, ssid->id);
  156. }
  157. void wpas_notify_bss_added(struct wpa_supplicant *wpa_s,
  158. u8 bssid[], unsigned int id)
  159. {
  160. wpas_dbus_register_bss(wpa_s, bssid, id);
  161. wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_BSS_ADDED "%u " MACSTR,
  162. id, MAC2STR(bssid));
  163. }
  164. void wpas_notify_bss_removed(struct wpa_supplicant *wpa_s,
  165. u8 bssid[], unsigned int id)
  166. {
  167. wpas_dbus_unregister_bss(wpa_s, bssid, id);
  168. wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_BSS_REMOVED "%u " MACSTR,
  169. id, MAC2STR(bssid));
  170. }
  171. void wpas_notify_bss_freq_changed(struct wpa_supplicant *wpa_s,
  172. unsigned int id)
  173. {
  174. wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_FREQ, id);
  175. }
  176. void wpas_notify_bss_signal_changed(struct wpa_supplicant *wpa_s,
  177. unsigned int id)
  178. {
  179. wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_SIGNAL,
  180. id);
  181. }
  182. void wpas_notify_bss_privacy_changed(struct wpa_supplicant *wpa_s,
  183. unsigned int id)
  184. {
  185. wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_PRIVACY,
  186. id);
  187. }
  188. void wpas_notify_bss_mode_changed(struct wpa_supplicant *wpa_s,
  189. unsigned int id)
  190. {
  191. wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_MODE, id);
  192. }
  193. void wpas_notify_bss_wpaie_changed(struct wpa_supplicant *wpa_s,
  194. unsigned int id)
  195. {
  196. wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_WPA, id);
  197. }
  198. void wpas_notify_bss_rsnie_changed(struct wpa_supplicant *wpa_s,
  199. unsigned int id)
  200. {
  201. wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_RSN, id);
  202. }
  203. void wpas_notify_bss_wps_changed(struct wpa_supplicant *wpa_s,
  204. unsigned int id)
  205. {
  206. }
  207. void wpas_notify_bss_ies_changed(struct wpa_supplicant *wpa_s,
  208. unsigned int id)
  209. {
  210. wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_IES, id);
  211. }
  212. void wpas_notify_bss_rates_changed(struct wpa_supplicant *wpa_s,
  213. unsigned int id)
  214. {
  215. wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_RATES, id);
  216. }
  217. void wpas_notify_blob_added(struct wpa_supplicant *wpa_s, const char *name)
  218. {
  219. wpas_dbus_signal_blob_added(wpa_s, name);
  220. }
  221. void wpas_notify_blob_removed(struct wpa_supplicant *wpa_s, const char *name)
  222. {
  223. wpas_dbus_signal_blob_removed(wpa_s, name);
  224. }
  225. void wpas_notify_debug_level_changed(struct wpa_global *global)
  226. {
  227. wpas_dbus_signal_debug_level_changed(global);
  228. }
  229. void wpas_notify_debug_timestamp_changed(struct wpa_global *global)
  230. {
  231. wpas_dbus_signal_debug_timestamp_changed(global);
  232. }
  233. void wpas_notify_debug_show_keys_changed(struct wpa_global *global)
  234. {
  235. wpas_dbus_signal_debug_show_keys_changed(global);
  236. }
  237. void wpas_notify_suspend(struct wpa_global *global)
  238. {
  239. struct wpa_supplicant *wpa_s;
  240. os_get_time(&global->suspend_time);
  241. wpa_printf(MSG_DEBUG, "System suspend notification");
  242. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next)
  243. wpa_drv_suspend(wpa_s);
  244. }
  245. void wpas_notify_resume(struct wpa_global *global)
  246. {
  247. struct os_time now;
  248. int slept;
  249. struct wpa_supplicant *wpa_s;
  250. if (global->suspend_time.sec == 0)
  251. slept = -1;
  252. else {
  253. os_get_time(&now);
  254. slept = now.sec - global->suspend_time.sec;
  255. }
  256. wpa_printf(MSG_DEBUG, "System resume notification (slept %d seconds)",
  257. slept);
  258. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  259. wpa_drv_resume(wpa_s);
  260. if (wpa_s->wpa_state == WPA_DISCONNECTED)
  261. wpa_supplicant_req_scan(wpa_s, 0, 100000);
  262. }
  263. }