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
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of BSD
|
|
|
|
* license.
|
|
|
|
*
|
|
|
|
* See README and COPYING for more details.
|
|
|
|
*/
|
|
|
|
|
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"
|
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"
|
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
|
|
|
|
|
|
|
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 */
|
2009-10-15 20:15:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wpas_notify_iface_added(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
/* 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
|
|
|
{
|
|
|
|
/* 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
|
|
|
|
|
|
|
#ifdef CONFIG_P2P
|
|
|
|
if (new_state == WPA_COMPLETED)
|
|
|
|
wpas_p2p_notif_connected(wpa_s);
|
|
|
|
else if (new_state < WPA_ASSOCIATED)
|
|
|
|
wpas_p2p_notif_disconnected(wpa_s);
|
|
|
|
#endif /* CONFIG_P2P */
|
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
|
|
|
|
"id=%d state=%d BSSID=" MACSTR,
|
|
|
|
wpa_s->current_ssid ? wpa_s->current_ssid->id : -1,
|
|
|
|
new_state, MAC2STR(wpa_s->pending_bssid));
|
|
|
|
#endif /* ANDROID */
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_network_changed(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
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)
|
|
|
|
{
|
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)
|
|
|
|
{
|
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)
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
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)
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_scanning(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
/* 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)
|
|
|
|
{
|
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)
|
|
|
|
{
|
|
|
|
/* 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)
|
|
|
|
{
|
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)
|
|
|
|
{
|
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)
|
|
|
|
{
|
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)
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_network_added(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid)
|
|
|
|
{
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_register_network(wpa_s, ssid);
|
2009-09-13 19:53:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_network_removed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid)
|
|
|
|
{
|
2010-01-01 17:45:29 +01:00
|
|
|
wpas_dbus_unregister_network(wpa_s, ssid->id);
|
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
|
|
|
{
|
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
|
|
|
{
|
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)
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
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)
|
|
|
|
{
|
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)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_bss_ies_changed(struct wpa_supplicant *wpa_s,
|
2010-01-06 19:03:01 +01:00
|
|
|
unsigned int id)
|
|
|
|
{
|
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)
|
|
|
|
{
|
|
|
|
wpas_dbus_bss_signal_prop_changed(wpa_s, WPAS_DBUS_BSS_PROP_RATES, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-13 19:53:32 +02:00
|
|
|
void wpas_notify_blob_added(struct wpa_supplicant *wpa_s, const char *name)
|
|
|
|
{
|
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)
|
|
|
|
{
|
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
|
|
|
|
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-02-24 21:22:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_p2p_device_lost(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *dev_addr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
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-02-24 21:30:19 +01:00
|
|
|
|
|
|
|
void wpas_notify_p2p_go_neg_req(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *src, u16 dev_passwd_id)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-02-24 21:34:52 +01:00
|
|
|
|
|
|
|
void wpas_notify_p2p_go_neg_completed(struct wpa_supplicant *wpa_s, int status)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
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-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-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-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-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,
|
|
|
|
const u8 *sta)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void wpas_notify_ap_sta_deauthorized(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *sta)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpas_notify_sta_authorized(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *mac_addr, int authorized)
|
|
|
|
{
|
|
|
|
if (authorized)
|
|
|
|
wpas_notify_ap_sta_authorized(wpa_s, mac_addr);
|
|
|
|
else
|
|
|
|
wpas_notify_ap_sta_deauthorized(wpa_s, mac_addr);
|
|
|
|
}
|