1 /*
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 
14 struct wps_credential;
15 struct wps_event_m2d;
16 struct wps_event_fail;
17 struct tls_cert_data;
18 struct wpa_cred;
19 struct rsn_pmksa_cache_entry;
20 enum nan_de_reason;
21 enum nan_service_protocol_type;
22 
23 int wpas_notify_supplicant_initialized(struct wpa_global *global);
24 void wpas_notify_supplicant_deinitialized(struct wpa_global *global);
25 int wpas_notify_iface_added(struct wpa_supplicant *wpa_s);
26 void wpas_notify_iface_removed(struct wpa_supplicant *wpa_s);
27 void wpas_notify_state_changed(struct wpa_supplicant *wpa_s,
28 			       enum wpa_states new_state,
29 			       enum wpa_states old_state);
30 void wpas_notify_disconnect_reason(struct wpa_supplicant *wpa_s);
31 void wpas_notify_auth_status_code(struct wpa_supplicant *wpa_s);
32 void wpas_notify_assoc_status_code(struct wpa_supplicant *wpa_s);
33 void wpas_notify_roam_time(struct wpa_supplicant *wpa_s);
34 void wpas_notify_roam_complete(struct wpa_supplicant *wpa_s);
35 void wpas_notify_scan_in_progress_6ghz(struct wpa_supplicant *wpa_s);
36 void wpas_notify_session_length(struct wpa_supplicant *wpa_s);
37 void wpas_notify_bss_tm_status(struct wpa_supplicant *wpa_s);
38 void wpas_notify_network_changed(struct wpa_supplicant *wpa_s);
39 void wpas_notify_ap_scan_changed(struct wpa_supplicant *wpa_s);
40 void wpas_notify_bssid_changed(struct wpa_supplicant *wpa_s);
41 void wpas_notify_mac_address_changed(struct wpa_supplicant *wpa_s);
42 void wpas_notify_auth_changed(struct wpa_supplicant *wpa_s);
43 void wpas_notify_network_enabled_changed(struct wpa_supplicant *wpa_s,
44 					 struct wpa_ssid *ssid);
45 void wpas_notify_network_selected(struct wpa_supplicant *wpa_s,
46 				  struct wpa_ssid *ssid);
47 void wpas_notify_network_request(struct wpa_supplicant *wpa_s,
48 				 struct wpa_ssid *ssid,
49 				 enum wpa_ctrl_req_type rtype,
50 				 const char *default_txt);
51 void wpas_notify_scanning(struct wpa_supplicant *wpa_s);
52 void wpas_notify_scan_done(struct wpa_supplicant *wpa_s, int success);
53 void wpas_notify_scan_results(struct wpa_supplicant *wpa_s);
54 void wpas_notify_wps_credential(struct wpa_supplicant *wpa_s,
55 				const struct wps_credential *cred);
56 void wpas_notify_wps_event_m2d(struct wpa_supplicant *wpa_s,
57 			       struct wps_event_m2d *m2d);
58 void wpas_notify_wps_event_fail(struct wpa_supplicant *wpa_s,
59 				struct wps_event_fail *fail);
60 void wpas_notify_wps_event_success(struct wpa_supplicant *wpa_s);
61 void wpas_notify_wps_event_pbc_overlap(struct wpa_supplicant *wpa_s);
62 void wpas_notify_network_added(struct wpa_supplicant *wpa_s,
63 			       struct wpa_ssid *ssid);
64 void wpas_notify_network_removed(struct wpa_supplicant *wpa_s,
65 				 struct wpa_ssid *ssid);
66 void wpas_notify_bss_added(struct wpa_supplicant *wpa_s, u8 bssid[],
67 			   unsigned int id);
68 void wpas_notify_bss_removed(struct wpa_supplicant *wpa_s, u8 bssid[],
69 			     unsigned int id);
70 void wpas_notify_bss_freq_changed(struct wpa_supplicant *wpa_s,
71 				  unsigned int id);
72 void wpas_notify_bss_signal_changed(struct wpa_supplicant *wpa_s,
73 				    unsigned int id);
74 void wpas_notify_bss_privacy_changed(struct wpa_supplicant *wpa_s,
75 				     unsigned int id);
76 void wpas_notify_bss_mode_changed(struct wpa_supplicant *wpa_s,
77 				  unsigned int id);
78 void wpas_notify_bss_wpaie_changed(struct wpa_supplicant *wpa_s,
79 				   unsigned int id);
80 void wpas_notify_bss_rsnie_changed(struct wpa_supplicant *wpa_s,
81 				   unsigned int id);
82 void wpas_notify_bss_wps_changed(struct wpa_supplicant *wpa_s,
83 				 unsigned int id);
84 void wpas_notify_bss_ies_changed(struct wpa_supplicant *wpa_s,
85 				 unsigned int id);
86 void wpas_notify_bss_rates_changed(struct wpa_supplicant *wpa_s,
87 				   unsigned int id);
88 void wpas_notify_bss_seen(struct wpa_supplicant *wpa_s, unsigned int id);
89 void wpas_notify_bss_anqp_changed(struct wpa_supplicant *wpa_s,
90 				  unsigned int id);
91 void wpas_notify_blob_added(struct wpa_supplicant *wpa_s, const char *name);
92 void wpas_notify_blob_removed(struct wpa_supplicant *wpa_s, const char *name);
93 
94 void wpas_notify_debug_level_changed(struct wpa_global *global);
95 void wpas_notify_debug_timestamp_changed(struct wpa_global *global);
96 void wpas_notify_debug_show_keys_changed(struct wpa_global *global);
97 void wpas_notify_suspend(struct wpa_global *global);
98 void wpas_notify_resume(struct wpa_global *global);
99 
100 void wpas_notify_sta_authorized(struct wpa_supplicant *wpa_s,
101 				const u8 *mac_addr, int authorized,
102 				const u8 *p2p_dev_addr, const u8 *ip);
103 void wpas_notify_p2p_find_stopped(struct wpa_supplicant *wpa_s);
104 void wpas_notify_p2p_device_found(struct wpa_supplicant *wpa_s,
105 				  const u8 *dev_addr, int new_device);
106 void wpas_notify_p2p_device_lost(struct wpa_supplicant *wpa_s,
107 				 const u8 *dev_addr);
108 void wpas_notify_p2p_group_removed(struct wpa_supplicant *wpa_s,
109 				   const struct wpa_ssid *ssid,
110 				   const char *role);
111 void wpas_notify_p2p_go_neg_req(struct wpa_supplicant *wpa_s,
112 				const u8 *src, u16 dev_passwd_id, u8 go_intent);
113 void wpas_notify_p2p_go_neg_completed(struct wpa_supplicant *wpa_s,
114 				      struct p2p_go_neg_results *res);
115 void wpas_notify_p2p_invitation_result(struct wpa_supplicant *wpa_s,
116 				       int status, const u8 *bssid);
117 void wpas_notify_p2p_sd_request(struct wpa_supplicant *wpa_s,
118 				int freq, const u8 *sa, u8 dialog_token,
119 				u16 update_indic, const u8 *tlvs,
120 				size_t tlvs_len);
121 void wpas_notify_p2p_sd_response(struct wpa_supplicant *wpa_s,
122 				 const u8 *sa, u16 update_indic,
123 				 const u8 *tlvs, size_t tlvs_len);
124 void wpas_notify_p2p_provision_discovery(struct wpa_supplicant *wpa_s,
125 					 const u8 *dev_addr, int request,
126 					 enum p2p_prov_disc_status status,
127 					 u16 config_methods,
128 					 unsigned int generated_pin);
129 void wpas_notify_p2p_group_started(struct wpa_supplicant *wpa_s,
130 				   struct wpa_ssid *ssid, int persistent,
131 				   int client, const u8 *ip);
132 void wpas_notify_p2p_group_formation_failure(struct wpa_supplicant *wpa_s,
133 					     const char *reason);
134 void wpas_notify_persistent_group_added(struct wpa_supplicant *wpa_s,
135 					struct wpa_ssid *ssid);
136 void wpas_notify_persistent_group_removed(struct wpa_supplicant *wpa_s,
137 					  struct wpa_ssid *ssid);
138 
139 void wpas_notify_p2p_wps_failed(struct wpa_supplicant *wpa_s,
140 				struct wps_event_fail *fail);
141 
142 void wpas_notify_certification(struct wpa_supplicant *wpa_s,
143 			       struct tls_cert_data *cert,
144 			       const char *cert_hash);
145 void wpas_notify_preq(struct wpa_supplicant *wpa_s,
146 		      const u8 *addr, const u8 *dst, const u8 *bssid,
147 		      const u8 *ie, size_t ie_len, u32 ssi_signal);
148 void wpas_notify_eap_status(struct wpa_supplicant *wpa_s, const char *status,
149 			    const char *parameter);
150 void wpas_notify_eap_error(struct wpa_supplicant *wpa_s, int error_code);
151 void wpas_notify_psk_mismatch(struct wpa_supplicant *wpa_s);
152 void wpas_notify_network_bssid_set_changed(struct wpa_supplicant *wpa_s,
153 					   struct wpa_ssid *ssid);
154 void wpas_notify_network_type_changed(struct wpa_supplicant *wpa_s,
155 				      struct wpa_ssid *ssid);
156 void wpas_notify_p2p_invitation_received(struct wpa_supplicant *wpa_s,
157 					 const u8 *sa, const u8 *go_dev_addr,
158 					 const u8 *bssid, int id, int op_freq);
159 void wpas_notify_p2p_bootstrap_req(struct wpa_supplicant *wpa_s,
160 				   const u8 *src, u16 bootstrap_method);
161 void wpas_notify_p2p_bootstrap_rsp(struct wpa_supplicant *wpa_s,
162 				   const u8 *src, int status,
163 				   u16 bootstrap_method);
164 void wpas_notify_mesh_group_started(struct wpa_supplicant *wpa_s,
165 				    struct wpa_ssid *ssid);
166 void wpas_notify_mesh_group_removed(struct wpa_supplicant *wpa_s,
167 				    const u8 *meshid, u8 meshid_len,
168 				    u16 reason_code);
169 void wpas_notify_mesh_peer_connected(struct wpa_supplicant *wpa_s,
170 				     const u8 *peer_addr);
171 void wpas_notify_mesh_peer_disconnected(struct wpa_supplicant *wpa_s,
172 					const u8 *peer_addr, u16 reason_code);
173 void wpas_notify_interworking_ap_added(struct wpa_supplicant *wpa_s,
174 				       struct wpa_bss *bss,
175 				       struct wpa_cred *cred, int excluded,
176 				       const char *type, int bh, int bss_load,
177 				       int conn_capab);
178 void wpas_notify_interworking_select_done(struct wpa_supplicant *wpa_s);
179 void wpas_notify_anqp_query_done(struct wpa_supplicant *wpa_s,
180 				 const u8 *dst, const char *result);
181 void wpas_notify_pmk_cache_added(struct wpa_supplicant *wpa_s,
182 				 struct rsn_pmksa_cache_entry *entry);
183 void wpas_notify_signal_change(struct wpa_supplicant *wpa_s);
184 void wpas_notify_hs20_t_c_acceptance(struct wpa_supplicant *wpa_s,
185 				     const char *url);
186 void wpas_notify_nan_discovery_result(struct wpa_supplicant *wpa_s,
187 				      enum nan_service_protocol_type
188 				      srv_proto_type,
189 				      int subscribe_id, int peer_publish_id,
190 				      const u8 *peer_addr,
191 				      bool fsd, bool fsd_gas,
192 				      const u8 *ssi, size_t ssi_len);
193 void wpas_notify_nan_replied(struct wpa_supplicant *wpa_s,
194 			     enum nan_service_protocol_type srv_proto_type,
195 			     int publish_id, int peer_subscribe_id,
196 			     const u8 *peer_addr,
197 			     const u8 *ssi, size_t ssi_len);
198 void wpas_notify_nan_receive(struct wpa_supplicant *wpa_s, int id,
199 			     int peer_instance_id, const u8 *peer_addr,
200 			     const u8 *ssi, size_t ssi_len);
201 void wpas_notify_nan_publish_terminated(struct wpa_supplicant *wpa_s,
202 					int publish_id,
203 					enum nan_de_reason reason);
204 void wpas_notify_nan_subscribe_terminated(struct wpa_supplicant *wpa_s,
205 					  int subscribe_id,
206 					  enum nan_de_reason reason);
207 
208 #endif /* NOTIFY_H */
209