blob: efb9efa078f5883b609bfd508e0bf5571c09803d [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/*
2 * wpa_supplicant - Event notifications
3 * Copyright (c) 2009-2010, Jouni Malinen <j@w1.fi>
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 */
8
9#ifndef NOTIFY_H
10#define NOTIFY_H
11
12#include "p2p/p2p.h"
13
14struct wps_credential;
15struct wps_event_m2d;
16struct wps_event_fail;
17struct tls_cert_data;
18struct wpa_cred;
19struct rsn_pmksa_cache_entry;
20
21int wpas_notify_supplicant_initialized(struct wpa_global *global);
22void wpas_notify_supplicant_deinitialized(struct wpa_global *global);
23int wpas_notify_iface_added(struct wpa_supplicant *wpa_s);
24void wpas_notify_iface_removed(struct wpa_supplicant *wpa_s);
25void wpas_notify_state_changed(struct wpa_supplicant *wpa_s,
26 enum wpa_states new_state,
27 enum wpa_states old_state);
28void wpas_notify_disconnect_reason(struct wpa_supplicant *wpa_s);
29void wpas_notify_auth_status_code(struct wpa_supplicant *wpa_s);
30void wpas_notify_assoc_status_code(struct wpa_supplicant *wpa_s);
31void wpas_notify_roam_time(struct wpa_supplicant *wpa_s);
32void wpas_notify_roam_complete(struct wpa_supplicant *wpa_s);
33void wpas_notify_session_length(struct wpa_supplicant *wpa_s);
34void wpas_notify_bss_tm_status(struct wpa_supplicant *wpa_s);
35void wpas_notify_network_changed(struct wpa_supplicant *wpa_s);
36void wpas_notify_ap_scan_changed(struct wpa_supplicant *wpa_s);
37void wpas_notify_bssid_changed(struct wpa_supplicant *wpa_s);
38void wpas_notify_mac_address_changed(struct wpa_supplicant *wpa_s);
39void wpas_notify_auth_changed(struct wpa_supplicant *wpa_s);
40void wpas_notify_network_enabled_changed(struct wpa_supplicant *wpa_s,
41 struct wpa_ssid *ssid);
42void wpas_notify_network_selected(struct wpa_supplicant *wpa_s,
43 struct wpa_ssid *ssid);
44void wpas_notify_network_request(struct wpa_supplicant *wpa_s,
45 struct wpa_ssid *ssid,
46 enum wpa_ctrl_req_type rtype,
47 const char *default_txt);
48void wpas_notify_scanning(struct wpa_supplicant *wpa_s);
49void wpas_notify_scan_done(struct wpa_supplicant *wpa_s, int success);
50void wpas_notify_scan_results(struct wpa_supplicant *wpa_s);
51void wpas_notify_wps_credential(struct wpa_supplicant *wpa_s,
52 const struct wps_credential *cred);
53void wpas_notify_wps_event_m2d(struct wpa_supplicant *wpa_s,
54 struct wps_event_m2d *m2d);
55void wpas_notify_wps_event_fail(struct wpa_supplicant *wpa_s,
56 struct wps_event_fail *fail);
57void wpas_notify_wps_event_success(struct wpa_supplicant *wpa_s);
58void wpas_notify_wps_event_pbc_overlap(struct wpa_supplicant *wpa_s);
59void wpas_notify_network_added(struct wpa_supplicant *wpa_s,
60 struct wpa_ssid *ssid);
61void wpas_notify_network_removed(struct wpa_supplicant *wpa_s,
62 struct wpa_ssid *ssid);
63void wpas_notify_bss_added(struct wpa_supplicant *wpa_s, u8 bssid[],
64 unsigned int id);
65void wpas_notify_bss_removed(struct wpa_supplicant *wpa_s, u8 bssid[],
66 unsigned int id);
67void wpas_notify_bss_freq_changed(struct wpa_supplicant *wpa_s,
68 unsigned int id);
69void wpas_notify_bss_signal_changed(struct wpa_supplicant *wpa_s,
70 unsigned int id);
71void wpas_notify_bss_privacy_changed(struct wpa_supplicant *wpa_s,
72 unsigned int id);
73void wpas_notify_bss_mode_changed(struct wpa_supplicant *wpa_s,
74 unsigned int id);
75void wpas_notify_bss_wpaie_changed(struct wpa_supplicant *wpa_s,
76 unsigned int id);
77void wpas_notify_bss_rsnie_changed(struct wpa_supplicant *wpa_s,
78 unsigned int id);
79void wpas_notify_bss_wps_changed(struct wpa_supplicant *wpa_s,
80 unsigned int id);
81void wpas_notify_bss_ies_changed(struct wpa_supplicant *wpa_s,
82 unsigned int id);
83void wpas_notify_bss_rates_changed(struct wpa_supplicant *wpa_s,
84 unsigned int id);
85void wpas_notify_bss_seen(struct wpa_supplicant *wpa_s, unsigned int id);
86void wpas_notify_blob_added(struct wpa_supplicant *wpa_s, const char *name);
87void wpas_notify_blob_removed(struct wpa_supplicant *wpa_s, const char *name);
88
89void wpas_notify_debug_level_changed(struct wpa_global *global);
90void wpas_notify_debug_timestamp_changed(struct wpa_global *global);
91void wpas_notify_debug_show_keys_changed(struct wpa_global *global);
92void wpas_notify_suspend(struct wpa_global *global);
93void wpas_notify_resume(struct wpa_global *global);
94
95void wpas_notify_sta_authorized(struct wpa_supplicant *wpa_s,
96 const u8 *mac_addr, int authorized,
97 const u8 *p2p_dev_addr);
98void wpas_notify_p2p_find_stopped(struct wpa_supplicant *wpa_s);
99void wpas_notify_p2p_device_found(struct wpa_supplicant *wpa_s,
100 const u8 *dev_addr, int new_device);
101void wpas_notify_p2p_device_lost(struct wpa_supplicant *wpa_s,
102 const u8 *dev_addr);
103void wpas_notify_p2p_group_removed(struct wpa_supplicant *wpa_s,
104 const struct wpa_ssid *ssid,
105 const char *role);
106void wpas_notify_p2p_go_neg_req(struct wpa_supplicant *wpa_s,
107 const u8 *src, u16 dev_passwd_id, u8 go_intent);
108void wpas_notify_p2p_go_neg_completed(struct wpa_supplicant *wpa_s,
109 struct p2p_go_neg_results *res);
110void wpas_notify_p2p_invitation_result(struct wpa_supplicant *wpa_s,
111 int status, const u8 *bssid);
112void wpas_notify_p2p_sd_request(struct wpa_supplicant *wpa_s,
113 int freq, const u8 *sa, u8 dialog_token,
114 u16 update_indic, const u8 *tlvs,
115 size_t tlvs_len);
116void wpas_notify_p2p_sd_response(struct wpa_supplicant *wpa_s,
117 const u8 *sa, u16 update_indic,
118 const u8 *tlvs, size_t tlvs_len);
119void wpas_notify_p2p_provision_discovery(struct wpa_supplicant *wpa_s,
120 const u8 *dev_addr, int request,
121 enum p2p_prov_disc_status status,
122 u16 config_methods,
123 unsigned int generated_pin);
124void wpas_notify_p2p_group_started(struct wpa_supplicant *wpa_s,
125 struct wpa_ssid *ssid, int persistent,
126 int client, const u8 *ip);
127void wpas_notify_p2p_group_formation_failure(struct wpa_supplicant *wpa_s,
128 const char *reason);
129void wpas_notify_persistent_group_added(struct wpa_supplicant *wpa_s,
130 struct wpa_ssid *ssid);
131void wpas_notify_persistent_group_removed(struct wpa_supplicant *wpa_s,
132 struct wpa_ssid *ssid);
133
134void wpas_notify_p2p_wps_failed(struct wpa_supplicant *wpa_s,
135 struct wps_event_fail *fail);
136
137void wpas_notify_certification(struct wpa_supplicant *wpa_s,
138 struct tls_cert_data *cert,
139 const char *cert_hash);
140void wpas_notify_preq(struct wpa_supplicant *wpa_s,
141 const u8 *addr, const u8 *dst, const u8 *bssid,
142 const u8 *ie, size_t ie_len, u32 ssi_signal);
143void wpas_notify_eap_status(struct wpa_supplicant *wpa_s, const char *status,
144 const char *parameter);
145void wpas_notify_eap_error(struct wpa_supplicant *wpa_s, int error_code);
146void wpas_notify_psk_mismatch(struct wpa_supplicant *wpa_s);
147void wpas_notify_network_bssid_set_changed(struct wpa_supplicant *wpa_s,
148 struct wpa_ssid *ssid);
149void wpas_notify_network_type_changed(struct wpa_supplicant *wpa_s,
150 struct wpa_ssid *ssid);
151void wpas_notify_p2p_invitation_received(struct wpa_supplicant *wpa_s,
152 const u8 *sa, const u8 *go_dev_addr,
153 const u8 *bssid, int id, int op_freq);
154void wpas_notify_mesh_group_started(struct wpa_supplicant *wpa_s,
155 struct wpa_ssid *ssid);
156void wpas_notify_mesh_group_removed(struct wpa_supplicant *wpa_s,
157 const u8 *meshid, u8 meshid_len,
158 u16 reason_code);
159void wpas_notify_mesh_peer_connected(struct wpa_supplicant *wpa_s,
160 const u8 *peer_addr);
161void wpas_notify_mesh_peer_disconnected(struct wpa_supplicant *wpa_s,
162 const u8 *peer_addr, u16 reason_code);
163void wpas_notify_interworking_ap_added(struct wpa_supplicant *wpa_s,
164 struct wpa_bss *bss,
165 struct wpa_cred *cred, int excluded,
166 const char *type, int bh, int bss_load,
167 int conn_capab);
168void wpas_notify_interworking_select_done(struct wpa_supplicant *wpa_s);
169void wpas_notify_pmk_cache_added(struct wpa_supplicant *wpa_s,
170 struct rsn_pmksa_cache_entry *entry);
171void wpas_notify_signal_change(struct wpa_supplicant *wpa_s);
172
173#endif /* NOTIFY_H */