2009-09-13 19:53:32 +02:00
|
|
|
/*
|
|
|
|
* wpa_supplicant - Event notifications
|
2010-02-27 17:46:02 +01:00
|
|
|
* Copyright (c) 2009-2010, Jouni Malinen <j@w1.fi>
|
2009-09-13 19:53:32 +02:00
|
|
|
*
|
2012-02-11 15:46:35 +01:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2009-09-13 19:53:32 +02:00
|
|
|
*/
|
|
|
|
|
2009-12-27 23:42:51 +01:00
|
|
|
#include "utils/includes.h"
|
2009-09-13 19:53:32 +02:00
|
|
|
|
2009-12-27 23:42:51 +01:00
|
|
|
#include "utils/common.h"
|
|
|
|
#include "common/wpa_ctrl.h"
|
2009-09-13 19:53:32 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "wpa_supplicant_i.h"
|
|
|
|
#include "wps_supplicant.h"
|
2016-02-17 01:39:28 +01:00
|
|
|
#include "binder/binder.h"
|
2009-12-30 23:15:56 +01:00
|
|
|
#include "dbus/dbus_common.h"
|
2009-12-31 20:55:32 +01:00
|
|
|
#include "dbus/dbus_old.h"
|
2009-12-20 20:34:56 +01:00
|
|
|
#include "dbus/dbus_new.h"
|
2011-09-07 16:46:00 +02:00
|
|
|
#include "rsn_supp/wpa.h"
|
2014-11-16 16:28:53 +01:00
|
|
|
#include "fst/fst.h"
|
2010-02-27 17:46:02 +01:00
|
|
|
#include "driver_i.h"
|
|
|
|
#include "scan.h"
|
2010-07-10 19:19:34 +02:00
|
|
|
#include "p2p_supplicant.h"
|
2011-02-24 15:59:46 +01:00
|
|
|
#include "sme.h"
|
2009-09-13 19:53:32 +02:00
|
|
|
#include "notify.h"
|
|
|
|
|
2009-10-15 20:15:10 +02:00
|
|
|
int wpas_notify_supplicant_initialized(struct wpa_global *global)
|
|
|
|
{
|
2009-12-30 23:15:56 +01:00
|
|
|
#ifdef CONFIG_DBUS
|
2009-10-15 20:15:10 +02:00
|
|
|
if (global->params.dbus_ctrl_interface) {
|
2009-12-30 23:15:56 +01:00
|
|
|
global->dbus = wpas_dbus_init(global);
|
|
|
|
if (global->dbus == NULL)
|
2009-12-03 20:17:49 +01:00
|
|
|
return -1;
|
2009-10-15 20:15:10 +02:00
|
|
|
}
|
2009-12-30 23:15:56 +01:00
|
|
|
#endif /* CONFIG_DBUS */
|
2009-10-15 20:15:10 +02:00
|
|
|
|
2016-02-17 01:39:28 +01:00
|
|
|
#ifdef CONFIG_BINDER
|
|
|
|
global->binder = wpas_binder_init(global);
|
|
|
|
if (!global->binder)
|
|
|
|
return -1;
|
|
|
|
#endif /* CONFIG_BINDER */
|
|
|
|
|
2009-10-15 20:15:10 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_supplicant_deinitialized(struct wpa_global *global)
|
|
|
|
{
|
2009-12-30 23:15:56 +01:00
|
|
|
#ifdef CONFIG_DBUS
|
|
|
|
if (global->dbus)
|
|
|
|
wpas_dbus_deinit(global->dbus);
|
|
|
|
#endif /* CONFIG_DBUS */
|
2016-02-17 01:39:28 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_BINDER
|
|
|
|
if (global->binder)
|
|
|
|
wpas_binder_deinit(global->binder);
|
|
|
|
#endif /* CONFIG_BINDER */
|
2009-10-15 20:15:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wpas_notify_iface_added(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return 0;
|
|
|
|
|
2009-10-15 20:15:10 +02:00
|
|
|
if (wpas_dbus_register_iface(wpa_s))
|
|
|
|
return -1;
|
|
|
|
|
2010-01-01 17:45:29 +01:00
|
|
|
if (wpas_dbus_register_interface(wpa_s))
|
2009-11-09 22:51:59 +01:00
|
|
|
return -1;
|
|
|
|
|
2009-10-15 20:15:10 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_iface_removed(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2009-10-15 20:15:10 +02:00
|
|
|
/* unregister interface in old DBus ctrl iface */
|
|
|
|
wpas_dbus_unregister_iface(wpa_s);
|
2009-11-09 22:51:59 +01:00
|
|
|
|
|
|
|
/* unregister interface in new DBus ctrl iface */
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_unregister_interface(wpa_s);
|
2009-10-15 20:15:10 +02:00
|
|
|
}
|
|
|
|
|
2009-09-13 19:53:32 +02:00
|
|
|
|
|
|
|
void wpas_notify_state_changed(struct wpa_supplicant *wpa_s,
|
2009-12-26 09:35:08 +01:00
|
|
|
enum wpa_states new_state,
|
|
|
|
enum wpa_states old_state)
|
2009-09-13 19:53:32 +02:00
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2009-09-13 19:53:32 +02:00
|
|
|
/* notify the old DBus API */
|
|
|
|
wpa_supplicant_dbus_notify_state_change(wpa_s, new_state,
|
|
|
|
old_state);
|
2009-11-09 22:51:59 +01:00
|
|
|
|
|
|
|
/* notify the new DBus API */
|
2010-01-04 15:33:44 +01:00
|
|
|
wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_STATE);
|
2010-07-10 19:19:34 +02:00
|
|
|
|
2014-11-16 16:28:53 +01:00
|
|
|
#ifdef CONFIG_FST
|
|
|
|
if (wpa_s->fst && !is_zero_ether_addr(wpa_s->bssid)) {
|
|
|
|
if (new_state == WPA_COMPLETED)
|
|
|
|
fst_notify_peer_connected(wpa_s->fst, wpa_s->bssid);
|
|
|
|
else if (old_state >= WPA_ASSOCIATED &&
|
|
|
|
new_state < WPA_ASSOCIATED)
|
|
|
|
fst_notify_peer_disconnected(wpa_s->fst, wpa_s->bssid);
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_FST */
|
|
|
|
|
2010-07-10 19:19:34 +02:00
|
|
|
if (new_state == WPA_COMPLETED)
|
|
|
|
wpas_p2p_notif_connected(wpa_s);
|
2012-04-01 20:49:03 +02:00
|
|
|
else if (old_state >= WPA_ASSOCIATED && new_state < WPA_ASSOCIATED)
|
2010-07-10 19:19:34 +02:00
|
|
|
wpas_p2p_notif_disconnected(wpa_s);
|
2011-02-24 15:59:46 +01:00
|
|
|
|
|
|
|
sme_state_changed(wpa_s);
|
2011-02-26 12:20:16 +01:00
|
|
|
|
|
|
|
#ifdef ANDROID
|
|
|
|
wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_STATE_CHANGE
|
2013-11-11 21:25:17 +01:00
|
|
|
"id=%d state=%d BSSID=" MACSTR " SSID=%s",
|
2011-02-26 12:20:16 +01:00
|
|
|
wpa_s->current_ssid ? wpa_s->current_ssid->id : -1,
|
2013-11-11 21:25:17 +01:00
|
|
|
new_state,
|
|
|
|
MAC2STR(wpa_s->bssid),
|
|
|
|
wpa_s->current_ssid && wpa_s->current_ssid->ssid ?
|
|
|
|
wpa_ssid_txt(wpa_s->current_ssid->ssid,
|
|
|
|
wpa_s->current_ssid->ssid_len) : "");
|
2011-02-26 12:20:16 +01:00
|
|
|
#endif /* ANDROID */
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-30 15:43:50 +02:00
|
|
|
void wpas_notify_disconnect_reason(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2012-06-30 15:43:50 +02:00
|
|
|
wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_DISCONNECT_REASON);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-03 19:48:09 +01:00
|
|
|
void wpas_notify_assoc_status_code(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_ASSOC_STATUS_CODE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-21 01:42:45 +02:00
|
|
|
void wpas_notify_roam_time(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_ROAM_TIME);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_roam_complete(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_ROAM_COMPLETE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_session_length(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_SESSION_LENGTH);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-13 19:53:32 +02:00
|
|
|
void wpas_notify_network_changed(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_CURRENT_NETWORK);
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_ap_scan_changed(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_AP_SCAN);
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_bssid_changed(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_CURRENT_BSS);
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-15 12:54:59 +01:00
|
|
|
void wpas_notify_auth_changed(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2011-03-15 12:54:59 +01:00
|
|
|
wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_CURRENT_AUTH_MODE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-13 19:53:32 +02:00
|
|
|
void wpas_notify_network_enabled_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_signal_network_enabled_changed(wpa_s, ssid);
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_network_selected(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_signal_network_selected(wpa_s, ssid->id);
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-24 18:03:04 +02:00
|
|
|
void wpas_notify_network_request(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid,
|
|
|
|
enum wpa_ctrl_req_type rtype,
|
|
|
|
const char *default_txt)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2011-10-24 18:03:04 +02:00
|
|
|
wpas_dbus_signal_network_request(wpa_s, ssid, rtype, default_txt);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-13 19:53:32 +02:00
|
|
|
void wpas_notify_scanning(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2009-09-13 19:53:32 +02:00
|
|
|
/* notify the old DBus API */
|
|
|
|
wpa_supplicant_dbus_notify_scanning(wpa_s);
|
2010-01-04 15:33:44 +01:00
|
|
|
|
2009-11-09 22:51:59 +01:00
|
|
|
/* notify the new DBus API */
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_SCANNING);
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_scan_done(struct wpa_supplicant *wpa_s, int success)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_signal_scan_done(wpa_s, success);
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_scan_results(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2009-09-13 19:53:32 +02:00
|
|
|
/* notify the old DBus API */
|
|
|
|
wpa_supplicant_dbus_notify_scan_results(wpa_s);
|
|
|
|
|
|
|
|
wpas_wps_notify_scan_results(wpa_s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_wps_credential(struct wpa_supplicant *wpa_s,
|
|
|
|
const struct wps_credential *cred)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2009-11-10 10:35:25 +01:00
|
|
|
#ifdef CONFIG_WPS
|
2009-09-13 19:53:32 +02:00
|
|
|
/* notify the old DBus API */
|
|
|
|
wpa_supplicant_dbus_notify_wps_cred(wpa_s, cred);
|
2009-11-09 22:51:59 +01:00
|
|
|
/* notify the new DBus API */
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_signal_wps_cred(wpa_s, cred);
|
2009-11-10 10:35:25 +01:00
|
|
|
#endif /* CONFIG_WPS */
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_wps_event_m2d(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wps_event_m2d *m2d)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2009-11-10 10:35:25 +01:00
|
|
|
#ifdef CONFIG_WPS
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_signal_wps_event_m2d(wpa_s, m2d);
|
2009-11-10 10:35:25 +01:00
|
|
|
#endif /* CONFIG_WPS */
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_wps_event_fail(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wps_event_fail *fail)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2009-11-10 10:35:25 +01:00
|
|
|
#ifdef CONFIG_WPS
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_signal_wps_event_fail(wpa_s, fail);
|
2009-11-10 10:35:25 +01:00
|
|
|
#endif /* CONFIG_WPS */
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_wps_event_success(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2009-11-10 10:35:25 +01:00
|
|
|
#ifdef CONFIG_WPS
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_signal_wps_event_success(wpa_s);
|
2009-11-10 10:35:25 +01:00
|
|
|
#endif /* CONFIG_WPS */
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
2015-06-05 14:46:51 +02:00
|
|
|
void wpas_notify_wps_event_pbc_overlap(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
|
|
|
#ifdef CONFIG_WPS
|
|
|
|
wpas_dbus_signal_wps_event_pbc_overlap(wpa_s);
|
|
|
|
#endif /* CONFIG_WPS */
|
|
|
|
}
|
|
|
|
|
2009-09-13 19:53:32 +02:00
|
|
|
|
|
|
|
void wpas_notify_network_added(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2011-06-23 20:25:13 +02:00
|
|
|
/*
|
|
|
|
* Networks objects created during any P2P activities should not be
|
|
|
|
* exposed out. They might/will confuse certain non-P2P aware
|
|
|
|
* applications since these network objects won't behave like
|
|
|
|
* regular ones.
|
|
|
|
*/
|
2013-08-31 15:44:42 +02:00
|
|
|
if (!ssid->p2p_group && wpa_s->global->p2p_group_formation != wpa_s)
|
2011-06-23 20:25:13 +02:00
|
|
|
wpas_dbus_register_network(wpa_s, ssid);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_persistent_group_added(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid)
|
|
|
|
{
|
2011-06-27 20:23:22 +02:00
|
|
|
#ifdef CONFIG_P2P
|
2011-06-23 20:25:13 +02:00
|
|
|
wpas_dbus_register_persistent_group(wpa_s, ssid);
|
2011-06-27 20:23:22 +02:00
|
|
|
#endif /* CONFIG_P2P */
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-24 10:20:19 +02:00
|
|
|
void wpas_notify_persistent_group_removed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid)
|
|
|
|
{
|
2011-06-27 20:23:22 +02:00
|
|
|
#ifdef CONFIG_P2P
|
2011-06-24 10:20:19 +02:00
|
|
|
wpas_dbus_unregister_persistent_group(wpa_s, ssid->id);
|
2011-06-27 20:23:22 +02:00
|
|
|
#endif /* CONFIG_P2P */
|
2011-06-24 10:20:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-13 19:53:32 +02:00
|
|
|
void wpas_notify_network_removed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid)
|
|
|
|
{
|
2014-02-25 21:37:57 +01:00
|
|
|
if (wpa_s->next_ssid == ssid)
|
|
|
|
wpa_s->next_ssid = NULL;
|
2011-10-20 20:10:22 +02:00
|
|
|
if (wpa_s->wpa)
|
|
|
|
wpa_sm_pmksa_cache_flush(wpa_s->wpa, ssid);
|
2015-04-29 19:47:14 +02:00
|
|
|
if (!ssid->p2p_group && wpa_s->global->p2p_group_formation != wpa_s &&
|
|
|
|
!wpa_s->p2p_mgmt)
|
2011-06-23 20:25:13 +02:00
|
|
|
wpas_dbus_unregister_network(wpa_s, ssid->id);
|
2014-12-27 20:00:11 +01:00
|
|
|
if (network_is_persistent_group(ssid))
|
|
|
|
wpas_notify_persistent_group_removed(wpa_s, ssid);
|
|
|
|
|
2011-12-10 11:56:42 +01:00
|
|
|
wpas_p2p_network_removed(wpa_s, ssid);
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-11 16:07:53 +01:00
|
|
|
void wpas_notify_bss_added(struct wpa_supplicant *wpa_s,
|
2009-12-27 23:42:51 +01:00
|
|
|
u8 bssid[], unsigned int id)
|
2009-11-11 16:07:53 +01:00
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_register_bss(wpa_s, bssid, id);
|
2009-12-27 23:42:51 +01:00
|
|
|
wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_BSS_ADDED "%u " MACSTR,
|
|
|
|
id, MAC2STR(bssid));
|
2009-11-11 16:07:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_bss_removed(struct wpa_supplicant *wpa_s,
|
2009-12-27 23:42:51 +01:00
|
|
|
u8 bssid[], unsigned int id)
|
2009-11-11 16:07:53 +01:00
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_unregister_bss(wpa_s, bssid, id);
|
2009-12-27 23:42:51 +01:00
|
|
|
wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_BSS_REMOVED "%u " MACSTR,
|
|
|
|
id, MAC2STR(bssid));
|
2009-11-11 16:07:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-06 19:03:01 +01:00
|
|
|
void wpas_notify_bss_freq_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-06 19:03:01 +01:00
|
|
|
wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_FREQ, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_bss_signal_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-06 19:03:01 +01:00
|
|
|
wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_SIGNAL,
|
|
|
|
id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_bss_privacy_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-06 19:03:01 +01:00
|
|
|
wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_PRIVACY,
|
|
|
|
id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_bss_mode_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-06 19:03:01 +01:00
|
|
|
wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_MODE, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_bss_wpaie_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-16 15:37:37 +01:00
|
|
|
wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_WPA, id);
|
2010-01-06 19:03:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_bss_rsnie_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-16 15:37:37 +01:00
|
|
|
wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_RSN, id);
|
2010-01-06 19:03:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_bss_wps_changed(struct wpa_supplicant *wpa_s,
|
2010-01-16 15:37:37 +01:00
|
|
|
unsigned int id)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2012-11-03 17:37:20 +01:00
|
|
|
#ifdef CONFIG_WPS
|
|
|
|
wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_WPS, id);
|
|
|
|
#endif /* CONFIG_WPS */
|
2010-01-16 15:37:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_bss_ies_changed(struct wpa_supplicant *wpa_s,
|
2010-01-06 19:03:01 +01:00
|
|
|
unsigned int id)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-16 15:37:37 +01:00
|
|
|
wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_IES, id);
|
2010-01-06 19:03:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_bss_rates_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-06 19:03:01 +01:00
|
|
|
wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_RATES, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-04 20:10:54 +02:00
|
|
|
void wpas_notify_bss_seen(struct wpa_supplicant *wpa_s, unsigned int id)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2014-09-04 20:10:54 +02:00
|
|
|
wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_AGE, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-13 19:53:32 +02:00
|
|
|
void wpas_notify_blob_added(struct wpa_supplicant *wpa_s, const char *name)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_signal_blob_added(wpa_s, name);
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_blob_removed(struct wpa_supplicant *wpa_s, const char *name)
|
|
|
|
{
|
2014-10-23 10:31:20 +02:00
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_signal_blob_removed(wpa_s, name);
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-01 12:00:22 +01:00
|
|
|
void wpas_notify_debug_level_changed(struct wpa_global *global)
|
2009-09-13 19:53:32 +02:00
|
|
|
{
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_signal_debug_level_changed(global);
|
2010-01-01 12:00:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_debug_timestamp_changed(struct wpa_global *global)
|
|
|
|
{
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_signal_debug_timestamp_changed(global);
|
2010-01-01 12:00:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_debug_show_keys_changed(struct wpa_global *global)
|
|
|
|
{
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_signal_debug_show_keys_changed(global);
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
2010-02-27 17:46:02 +01:00
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_suspend(struct wpa_global *global)
|
|
|
|
{
|
|
|
|
struct wpa_supplicant *wpa_s;
|
|
|
|
|
|
|
|
os_get_time(&global->suspend_time);
|
|
|
|
wpa_printf(MSG_DEBUG, "System suspend notification");
|
|
|
|
for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next)
|
|
|
|
wpa_drv_suspend(wpa_s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_resume(struct wpa_global *global)
|
|
|
|
{
|
|
|
|
struct os_time now;
|
|
|
|
int slept;
|
|
|
|
struct wpa_supplicant *wpa_s;
|
|
|
|
|
|
|
|
if (global->suspend_time.sec == 0)
|
|
|
|
slept = -1;
|
|
|
|
else {
|
|
|
|
os_get_time(&now);
|
|
|
|
slept = now.sec - global->suspend_time.sec;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "System resume notification (slept %d seconds)",
|
|
|
|
slept);
|
|
|
|
|
|
|
|
for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
|
|
|
|
wpa_drv_resume(wpa_s);
|
|
|
|
if (wpa_s->wpa_state == WPA_DISCONNECTED)
|
|
|
|
wpa_supplicant_req_scan(wpa_s, 0, 100000);
|
|
|
|
}
|
|
|
|
}
|
2011-02-24 21:08:18 +01:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_P2P
|
2011-02-24 21:22:16 +01:00
|
|
|
|
2015-05-13 14:03:48 +02:00
|
|
|
void wpas_notify_p2p_find_stopped(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
/* Notify P2P find has stopped */
|
|
|
|
wpas_dbus_signal_p2p_find_stopped(wpa_s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-24 21:08:18 +01:00
|
|
|
void wpas_notify_p2p_device_found(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *dev_addr, int new_device)
|
|
|
|
{
|
2011-06-13 00:08:19 +02:00
|
|
|
if (new_device) {
|
|
|
|
/* Create the new peer object */
|
|
|
|
wpas_dbus_register_peer(wpa_s, dev_addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Notify a new peer has been detected*/
|
|
|
|
wpas_dbus_signal_peer_device_found(wpa_s, dev_addr);
|
2011-02-24 21:08:18 +01:00
|
|
|
}
|
2011-02-24 21:22:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_p2p_device_lost(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *dev_addr)
|
|
|
|
{
|
2011-06-13 00:08:19 +02:00
|
|
|
wpas_dbus_unregister_peer(wpa_s, dev_addr);
|
|
|
|
|
|
|
|
/* Create signal on interface object*/
|
|
|
|
wpas_dbus_signal_peer_device_lost(wpa_s, dev_addr);
|
2011-02-24 21:22:16 +01:00
|
|
|
}
|
|
|
|
|
2011-02-24 21:27:23 +01:00
|
|
|
|
|
|
|
void wpas_notify_p2p_group_removed(struct wpa_supplicant *wpa_s,
|
|
|
|
const struct wpa_ssid *ssid,
|
|
|
|
const char *role)
|
|
|
|
{
|
2011-06-13 00:08:19 +02:00
|
|
|
wpas_dbus_signal_p2p_group_removed(wpa_s, role);
|
2014-07-08 14:56:11 +02:00
|
|
|
|
|
|
|
wpas_dbus_unregister_p2p_group(wpa_s, ssid);
|
2011-02-24 21:27:23 +01:00
|
|
|
}
|
|
|
|
|
2011-02-24 21:30:19 +01:00
|
|
|
|
|
|
|
void wpas_notify_p2p_go_neg_req(struct wpa_supplicant *wpa_s,
|
2015-06-02 07:47:33 +02:00
|
|
|
const u8 *src, u16 dev_passwd_id, u8 go_intent)
|
2011-02-24 21:30:19 +01:00
|
|
|
{
|
2015-06-02 07:47:33 +02:00
|
|
|
wpas_dbus_signal_p2p_go_neg_req(wpa_s, src, dev_passwd_id, go_intent);
|
2011-02-24 21:30:19 +01:00
|
|
|
}
|
|
|
|
|
2011-02-24 21:34:52 +01:00
|
|
|
|
2011-12-18 15:52:33 +01:00
|
|
|
void wpas_notify_p2p_go_neg_completed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct p2p_go_neg_results *res)
|
2011-02-24 21:34:52 +01:00
|
|
|
{
|
2011-12-18 15:52:33 +01:00
|
|
|
wpas_dbus_signal_p2p_go_neg_resp(wpa_s, res);
|
2011-02-24 21:34:52 +01:00
|
|
|
}
|
|
|
|
|
2011-02-24 21:40:21 +01:00
|
|
|
|
|
|
|
void wpas_notify_p2p_invitation_result(struct wpa_supplicant *wpa_s,
|
|
|
|
int status, const u8 *bssid)
|
|
|
|
{
|
2011-06-13 00:08:19 +02:00
|
|
|
wpas_dbus_signal_p2p_invitation_result(wpa_s, status, bssid);
|
2011-02-24 21:40:21 +01:00
|
|
|
}
|
|
|
|
|
2011-02-24 21:45:39 +01:00
|
|
|
|
|
|
|
void wpas_notify_p2p_sd_request(struct wpa_supplicant *wpa_s,
|
|
|
|
int freq, const u8 *sa, u8 dialog_token,
|
|
|
|
u16 update_indic, const u8 *tlvs,
|
|
|
|
size_t tlvs_len)
|
|
|
|
{
|
2011-06-13 00:08:19 +02:00
|
|
|
wpas_dbus_signal_p2p_sd_request(wpa_s, freq, sa, dialog_token,
|
|
|
|
update_indic, tlvs, tlvs_len);
|
2011-02-24 21:45:39 +01:00
|
|
|
}
|
|
|
|
|
2011-02-24 21:47:34 +01:00
|
|
|
|
|
|
|
void wpas_notify_p2p_sd_response(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *sa, u16 update_indic,
|
|
|
|
const u8 *tlvs, size_t tlvs_len)
|
|
|
|
{
|
2011-06-13 00:08:19 +02:00
|
|
|
wpas_dbus_signal_p2p_sd_response(wpa_s, sa, update_indic,
|
|
|
|
tlvs, tlvs_len);
|
2011-02-24 21:47:34 +01:00
|
|
|
}
|
|
|
|
|
2011-06-12 23:31:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* wpas_notify_p2p_provision_discovery - Notification of provision discovery
|
|
|
|
* @dev_addr: Who sent the request or responded to our request.
|
|
|
|
* @request: Will be 1 if request, 0 for response.
|
|
|
|
* @status: Valid only in case of response (0 in case of success)
|
|
|
|
* @config_methods: WPS config methods
|
|
|
|
* @generated_pin: PIN to be displayed in case of WPS_CONFIG_DISPLAY method
|
|
|
|
*
|
|
|
|
* This can be used to notify:
|
|
|
|
* - Requests or responses
|
|
|
|
* - Various config methods
|
|
|
|
* - Failure condition in case of response
|
|
|
|
*/
|
|
|
|
void wpas_notify_p2p_provision_discovery(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *dev_addr, int request,
|
|
|
|
enum p2p_prov_disc_status status,
|
|
|
|
u16 config_methods,
|
|
|
|
unsigned int generated_pin)
|
|
|
|
{
|
2011-06-13 00:08:19 +02:00
|
|
|
wpas_dbus_signal_p2p_provision_discovery(wpa_s, dev_addr, request,
|
|
|
|
status, config_methods,
|
|
|
|
generated_pin);
|
2011-06-12 23:31:56 +02:00
|
|
|
}
|
2011-06-12 23:35:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_p2p_group_started(struct wpa_supplicant *wpa_s,
|
2016-05-30 09:38:31 +02:00
|
|
|
struct wpa_ssid *ssid, int persistent,
|
2016-11-02 11:20:28 +01:00
|
|
|
int client, const u8 *ip)
|
2011-06-12 23:35:37 +02:00
|
|
|
{
|
2011-06-13 00:08:19 +02:00
|
|
|
/* Notify a group has been started */
|
|
|
|
wpas_dbus_register_p2p_group(wpa_s, ssid);
|
|
|
|
|
2016-11-02 11:20:28 +01:00
|
|
|
wpas_dbus_signal_p2p_group_started(wpa_s, client, persistent, ip);
|
2011-06-12 23:35:37 +02:00
|
|
|
}
|
2011-06-25 10:47:04 +02:00
|
|
|
|
|
|
|
|
2015-08-20 12:58:33 +02:00
|
|
|
void wpas_notify_p2p_group_formation_failure(struct wpa_supplicant *wpa_s,
|
|
|
|
const char *reason)
|
|
|
|
{
|
|
|
|
/* Notify a group formation failed */
|
|
|
|
wpas_dbus_signal_p2p_group_formation_failure(wpa_s, reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-25 10:47:04 +02:00
|
|
|
void wpas_notify_p2p_wps_failed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wps_event_fail *fail)
|
|
|
|
{
|
|
|
|
wpas_dbus_signal_p2p_wps_failed(wpa_s, fail);
|
|
|
|
}
|
|
|
|
|
2015-06-18 06:16:34 +02:00
|
|
|
|
|
|
|
void wpas_notify_p2p_invitation_received(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *sa, const u8 *go_dev_addr,
|
|
|
|
const u8 *bssid, int id, int op_freq)
|
|
|
|
{
|
|
|
|
/* Notify a P2P Invitation Request */
|
|
|
|
wpas_dbus_signal_p2p_invitation_received(wpa_s, sa, go_dev_addr, bssid,
|
|
|
|
id, op_freq);
|
|
|
|
}
|
|
|
|
|
2011-02-24 21:08:18 +01:00
|
|
|
#endif /* CONFIG_P2P */
|
2011-03-16 14:58:41 +01:00
|
|
|
|
|
|
|
|
|
|
|
static void wpas_notify_ap_sta_authorized(struct wpa_supplicant *wpa_s,
|
2011-12-22 21:47:41 +01:00
|
|
|
const u8 *sta,
|
|
|
|
const u8 *p2p_dev_addr)
|
2011-03-16 14:58:41 +01:00
|
|
|
{
|
2011-06-20 08:02:41 +02:00
|
|
|
#ifdef CONFIG_P2P
|
2011-12-22 21:47:41 +01:00
|
|
|
wpas_p2p_notify_ap_sta_authorized(wpa_s, p2p_dev_addr);
|
|
|
|
|
2011-06-13 00:08:19 +02:00
|
|
|
/*
|
|
|
|
* Create 'peer-joined' signal on group object -- will also
|
|
|
|
* check P2P itself.
|
|
|
|
*/
|
2014-12-26 17:19:36 +01:00
|
|
|
if (p2p_dev_addr)
|
|
|
|
wpas_dbus_signal_p2p_peer_joined(wpa_s, p2p_dev_addr);
|
2011-06-20 08:02:41 +02:00
|
|
|
#endif /* CONFIG_P2P */
|
2013-06-22 11:09:09 +02:00
|
|
|
|
2018-10-07 14:31:51 +02:00
|
|
|
/* Register the station */
|
|
|
|
wpas_dbus_register_sta(wpa_s, sta);
|
|
|
|
|
2013-06-22 11:09:09 +02:00
|
|
|
/* Notify listeners a new station has been authorized */
|
|
|
|
wpas_dbus_signal_sta_authorized(wpa_s, sta);
|
2011-03-16 14:58:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void wpas_notify_ap_sta_deauthorized(struct wpa_supplicant *wpa_s,
|
2014-06-02 16:42:06 +02:00
|
|
|
const u8 *sta,
|
|
|
|
const u8 *p2p_dev_addr)
|
2011-03-16 14:58:41 +01:00
|
|
|
{
|
2011-06-20 08:02:41 +02:00
|
|
|
#ifdef CONFIG_P2P
|
2011-06-13 00:08:19 +02:00
|
|
|
/*
|
|
|
|
* Create 'peer-disconnected' signal on group object if this
|
|
|
|
* is a P2P group.
|
|
|
|
*/
|
2014-12-26 17:19:36 +01:00
|
|
|
if (p2p_dev_addr)
|
|
|
|
wpas_dbus_signal_p2p_peer_disconnected(wpa_s, p2p_dev_addr);
|
2011-06-20 08:02:41 +02:00
|
|
|
#endif /* CONFIG_P2P */
|
2013-06-22 11:09:09 +02:00
|
|
|
|
|
|
|
/* Notify listeners a station has been deauthorized */
|
|
|
|
wpas_dbus_signal_sta_deauthorized(wpa_s, sta);
|
2018-10-07 14:31:51 +02:00
|
|
|
|
|
|
|
/* Unregister the station */
|
|
|
|
wpas_dbus_unregister_sta(wpa_s, sta);
|
2011-03-16 14:58:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_sta_authorized(struct wpa_supplicant *wpa_s,
|
2011-12-22 21:47:41 +01:00
|
|
|
const u8 *mac_addr, int authorized,
|
|
|
|
const u8 *p2p_dev_addr)
|
2011-03-16 14:58:41 +01:00
|
|
|
{
|
|
|
|
if (authorized)
|
2011-12-22 21:47:41 +01:00
|
|
|
wpas_notify_ap_sta_authorized(wpa_s, mac_addr, p2p_dev_addr);
|
2011-03-16 14:58:41 +01:00
|
|
|
else
|
2014-06-02 16:42:06 +02:00
|
|
|
wpas_notify_ap_sta_deauthorized(wpa_s, mac_addr, p2p_dev_addr);
|
2011-03-16 14:58:41 +01:00
|
|
|
}
|
2011-07-05 11:22:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_certification(struct wpa_supplicant *wpa_s, int depth,
|
2015-01-14 12:29:40 +01:00
|
|
|
const char *subject, const char *altsubject[],
|
|
|
|
int num_altsubject, const char *cert_hash,
|
2011-07-05 11:22:32 +02:00
|
|
|
const struct wpabuf *cert)
|
|
|
|
{
|
2011-07-05 11:40:37 +02:00
|
|
|
wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_EAP_PEER_CERT
|
|
|
|
"depth=%d subject='%s'%s%s",
|
2015-01-14 12:29:40 +01:00
|
|
|
depth, subject, cert_hash ? " hash=" : "",
|
2011-07-05 11:40:37 +02:00
|
|
|
cert_hash ? cert_hash : "");
|
|
|
|
|
|
|
|
if (cert) {
|
|
|
|
char *cert_hex;
|
|
|
|
size_t len = wpabuf_len(cert) * 2 + 1;
|
|
|
|
cert_hex = os_malloc(len);
|
|
|
|
if (cert_hex) {
|
|
|
|
wpa_snprintf_hex(cert_hex, len, wpabuf_head(cert),
|
|
|
|
wpabuf_len(cert));
|
|
|
|
wpa_msg_ctrl(wpa_s, MSG_INFO,
|
|
|
|
WPA_EVENT_EAP_PEER_CERT
|
|
|
|
"depth=%d subject='%s' cert=%s",
|
|
|
|
depth, subject, cert_hex);
|
|
|
|
os_free(cert_hex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-14 12:29:40 +01:00
|
|
|
if (altsubject) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < num_altsubject; i++)
|
|
|
|
wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_EAP_PEER_ALT
|
|
|
|
"depth=%d %s", depth, altsubject[i]);
|
|
|
|
}
|
|
|
|
|
2011-07-05 11:22:32 +02:00
|
|
|
/* notify the old DBus API */
|
|
|
|
wpa_supplicant_dbus_notify_certification(wpa_s, depth, subject,
|
|
|
|
cert_hash, cert);
|
|
|
|
/* notify the new DBus API */
|
2015-01-14 12:29:40 +01:00
|
|
|
wpas_dbus_signal_certification(wpa_s, depth, subject, altsubject,
|
|
|
|
num_altsubject, cert_hash, cert);
|
2011-07-05 11:22:32 +02:00
|
|
|
}
|
2012-04-01 20:13:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_preq(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *addr, const u8 *dst, const u8 *bssid,
|
|
|
|
const u8 *ie, size_t ie_len, u32 ssi_signal)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_AP
|
|
|
|
wpas_dbus_signal_preq(wpa_s, addr, dst, bssid, ie, ie_len, ssi_signal);
|
|
|
|
#endif /* CONFIG_AP */
|
|
|
|
}
|
2012-06-04 20:10:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_eap_status(struct wpa_supplicant *wpa_s, const char *status,
|
|
|
|
const char *parameter)
|
|
|
|
{
|
|
|
|
wpas_dbus_signal_eap_status(wpa_s, status, parameter);
|
2013-04-23 15:46:02 +02:00
|
|
|
wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_EAP_STATUS
|
|
|
|
"status='%s' parameter='%s'",
|
|
|
|
status, parameter);
|
2012-06-04 20:10:01 +02:00
|
|
|
}
|
2014-09-11 14:52:37 +02:00
|
|
|
|
|
|
|
|
2018-03-15 17:00:10 +01:00
|
|
|
void wpas_notify_eap_error(struct wpa_supplicant *wpa_s, int error_code)
|
|
|
|
{
|
|
|
|
wpa_msg(wpa_s, MSG_ERROR, WPA_EVENT_EAP_ERROR_CODE "%d", error_code);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-11 14:52:37 +02:00
|
|
|
void wpas_notify_network_bssid_set_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid)
|
|
|
|
{
|
|
|
|
if (wpa_s->current_ssid != ssid)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG,
|
|
|
|
"Network bssid config changed for the current network - within-ESS roaming %s",
|
|
|
|
ssid->bssid_set ? "disabled" : "enabled");
|
|
|
|
|
|
|
|
wpa_drv_roaming(wpa_s, !ssid->bssid_set,
|
|
|
|
ssid->bssid_set ? ssid->bssid : NULL);
|
|
|
|
}
|
2015-02-07 15:17:11 +01:00
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_network_type_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_P2P
|
|
|
|
if (ssid->disabled == 2) {
|
|
|
|
/* Changed from normal network profile to persistent group */
|
|
|
|
ssid->disabled = 0;
|
|
|
|
wpas_dbus_unregister_network(wpa_s, ssid->id);
|
|
|
|
ssid->disabled = 2;
|
2015-06-10 22:58:21 +02:00
|
|
|
ssid->p2p_persistent_group = 1;
|
2015-02-07 15:17:11 +01:00
|
|
|
wpas_dbus_register_persistent_group(wpa_s, ssid);
|
|
|
|
} else {
|
|
|
|
/* Changed from persistent group to normal network profile */
|
|
|
|
wpas_dbus_unregister_persistent_group(wpa_s, ssid->id);
|
2015-06-10 22:58:21 +02:00
|
|
|
ssid->p2p_persistent_group = 0;
|
2015-02-07 15:17:11 +01:00
|
|
|
wpas_dbus_register_network(wpa_s, ssid);
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_P2P */
|
|
|
|
}
|
2017-07-18 09:07:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_MESH
|
2017-07-18 09:07:53 +02:00
|
|
|
|
2017-07-18 09:07:51 +02:00
|
|
|
void wpas_notify_mesh_group_started(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid)
|
|
|
|
{
|
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpas_dbus_signal_mesh_group_started(wpa_s, ssid);
|
|
|
|
}
|
2017-07-18 09:07:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_mesh_group_removed(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *meshid, u8 meshid_len,
|
|
|
|
int reason_code)
|
|
|
|
{
|
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpas_dbus_signal_mesh_group_removed(wpa_s, meshid, meshid_len,
|
|
|
|
reason_code);
|
|
|
|
}
|
|
|
|
|
2017-07-18 09:07:54 +02:00
|
|
|
|
|
|
|
void wpas_notify_mesh_peer_connected(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *peer_addr)
|
|
|
|
{
|
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpas_dbus_signal_mesh_peer_connected(wpa_s, peer_addr);
|
|
|
|
}
|
|
|
|
|
2017-07-18 09:07:55 +02:00
|
|
|
|
|
|
|
void wpas_notify_mesh_peer_disconnected(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *peer_addr, int reason_code)
|
|
|
|
{
|
|
|
|
if (wpa_s->p2p_mgmt)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpas_dbus_signal_mesh_peer_disconnected(wpa_s, peer_addr, reason_code);
|
|
|
|
}
|
|
|
|
|
2017-07-18 09:07:51 +02:00
|
|
|
#endif /* CONFIG_MESH */
|