blob: 8e23c188ace70c3088f51f1f4e187a50e82423c6 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * wpa_supplicant - P2P
3 * Copyright (c) 2009-2010, Atheros Communications
4 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#ifndef P2P_SUPPLICANT_H
10#define P2P_SUPPLICANT_H
11
12enum p2p_wps_method;
13struct p2p_go_neg_results;
14enum p2p_send_action_result;
15struct p2p_peer_info;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -080016struct p2p_channels;
Dmitry Shmidt34af3062013-07-11 10:46:32 -070017struct wps_event_fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070018
Dmitry Shmidt9ead16e2014-10-07 13:15:23 -070019int wpas_p2p_add_p2pdev_interface(struct wpa_supplicant *wpa_s,
20 const char *conf_p2p_dev);
Dmitry Shmidtd30ac602014-06-30 09:54:22 -070021struct wpa_supplicant * wpas_get_p2p_go_iface(struct wpa_supplicant *wpa_s,
22 const u8 *ssid, size_t ssid_len);
23struct wpa_supplicant * wpas_get_p2p_client_iface(struct wpa_supplicant *wpa_s,
24 const u8 *peer_dev_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070025int wpas_p2p_connect(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
26 const char *pin, enum p2p_wps_method wps_method,
Dmitry Shmidt04949592012-07-19 12:16:46 -070027 int persistent_group, int auto_join, int join,
28 int auth, int go_intent, int freq, int persistent_id,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -070029 int pd, int ht40, int vht);
Dmitry Shmidt04f534e2013-12-09 15:50:16 -080030int wpas_p2p_handle_frequency_conflicts(struct wpa_supplicant *wpa_s,
31 int freq, struct wpa_ssid *ssid);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070032int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s, const char *ifname);
33int wpas_p2p_group_add(struct wpa_supplicant *wpa_s, int persistent_group,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -070034 int freq, int ht40, int vht);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070035int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
36 struct wpa_ssid *ssid, int addr_allocated,
Dmitry Shmidt96be6222014-02-13 10:16:51 -080037 int force_freq, int neg_freq, int ht40,
38 int vht, const struct p2p_channels *channels,
Dmitry Shmidt56052862013-10-04 10:23:25 -070039 int connection_timeout);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070040struct p2p_group * wpas_p2p_group_init(struct wpa_supplicant *wpa_s,
Dmitry Shmidt04949592012-07-19 12:16:46 -070041 struct wpa_ssid *ssid);
Dmitry Shmidt04949592012-07-19 12:16:46 -070042enum wpas_p2p_prov_disc_use {
43 WPAS_P2P_PD_FOR_GO_NEG,
44 WPAS_P2P_PD_FOR_JOIN,
45 WPAS_P2P_PD_AUTO
46};
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070047int wpas_p2p_prov_disc(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
Dmitry Shmidt04949592012-07-19 12:16:46 -070048 const char *config_method,
49 enum wpas_p2p_prov_disc_use use);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070050void wpas_send_action_tx_status(struct wpa_supplicant *wpa_s, const u8 *dst,
51 const u8 *data, size_t data_len,
52 enum p2p_send_action_result result);
53int wpas_p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
54 char *end);
55enum p2p_discovery_type;
56int wpas_p2p_find(struct wpa_supplicant *wpa_s, unsigned int timeout,
57 enum p2p_discovery_type type,
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -080058 unsigned int num_req_dev_types, const u8 *req_dev_types,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070059 const u8 *dev_id, unsigned int search_delay);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070060void wpas_p2p_stop_find(struct wpa_supplicant *wpa_s);
61int wpas_p2p_listen(struct wpa_supplicant *wpa_s, unsigned int timeout);
Jithu Jance57cea1a2014-08-20 10:22:04 -070062int wpas_p2p_listen_start(struct wpa_supplicant *wpa_s, unsigned int timeout);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070063int wpas_p2p_assoc_req_ie(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
64 u8 *buf, size_t len, int p2p_group);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070065void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies);
Dmitry Shmidt34af3062013-07-11 10:46:32 -070066void wpas_p2p_group_formation_failed(struct wpa_supplicant *wpa_s);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080067u64 wpas_p2p_sd_request(struct wpa_supplicant *wpa_s, const u8 *dst,
68 const struct wpabuf *tlvs);
69u64 wpas_p2p_sd_request_upnp(struct wpa_supplicant *wpa_s, const u8 *dst,
70 u8 version, const char *query);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070071u64 wpas_p2p_sd_request_wifi_display(struct wpa_supplicant *wpa_s,
72 const u8 *dst, const char *role);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080073int wpas_p2p_sd_cancel_request(struct wpa_supplicant *wpa_s, u64 req);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070074void wpas_p2p_sd_response(struct wpa_supplicant *wpa_s, int freq,
75 const u8 *dst, u8 dialog_token,
76 const struct wpabuf *resp_tlvs);
77void wpas_p2p_sd_service_update(struct wpa_supplicant *wpa_s);
78void wpas_p2p_service_flush(struct wpa_supplicant *wpa_s);
79int wpas_p2p_service_add_bonjour(struct wpa_supplicant *wpa_s,
80 struct wpabuf *query, struct wpabuf *resp);
81int wpas_p2p_service_del_bonjour(struct wpa_supplicant *wpa_s,
82 const struct wpabuf *query);
83int wpas_p2p_service_add_upnp(struct wpa_supplicant *wpa_s, u8 version,
84 const char *service);
85int wpas_p2p_service_del_upnp(struct wpa_supplicant *wpa_s, u8 version,
86 const char *service);
87int wpas_p2p_reject(struct wpa_supplicant *wpa_s, const u8 *addr);
88int wpas_p2p_invite(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
Jouni Malinen31be0a42012-08-31 21:20:51 +030089 struct wpa_ssid *ssid, const u8 *go_dev_addr, int freq,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -070090 int ht40, int vht, int pref_freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070091int wpas_p2p_invite_group(struct wpa_supplicant *wpa_s, const char *ifname,
92 const u8 *peer_addr, const u8 *go_dev_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070093int wpas_p2p_presence_req(struct wpa_supplicant *wpa_s, u32 duration1,
94 u32 interval1, u32 duration2, u32 interval2);
95int wpas_p2p_ext_listen(struct wpa_supplicant *wpa_s, unsigned int period,
96 unsigned int interval);
Jouni Malinen2b89da82012-08-31 22:04:41 +030097int wpas_p2p_deauth_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
98 u16 reason_code, const u8 *ie, size_t ie_len,
99 int locally_generated);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700100void wpas_p2p_disassoc_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
Dmitry Shmidt04949592012-07-19 12:16:46 -0700101 u16 reason_code, const u8 *ie, size_t ie_len,
102 int locally_generated);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700103int wpas_p2p_set_noa(struct wpa_supplicant *wpa_s, u8 count, int start,
104 int duration);
105int wpas_p2p_set_cross_connect(struct wpa_supplicant *wpa_s, int enabled);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700106int wpas_p2p_cancel(struct wpa_supplicant *wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700107int wpas_p2p_unauthorize(struct wpa_supplicant *wpa_s, const char *addr);
108int wpas_p2p_disconnect(struct wpa_supplicant *wpa_s);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800109struct wpa_ssid * wpas_p2p_get_persistent(struct wpa_supplicant *wpa_s,
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800110 const u8 *addr, const u8 *ssid,
111 size_t ssid_len);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800112void wpas_p2p_notify_ap_sta_authorized(struct wpa_supplicant *wpa_s,
113 const u8 *addr);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700114int wpas_p2p_scan_no_go_seen(struct wpa_supplicant *wpa_s);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700115int wpas_p2p_get_ht40_mode(struct wpa_supplicant *wpa_s,
116 struct hostapd_hw_modes *mode, u8 channel);
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -0700117int wpas_p2p_get_vht80_center(struct wpa_supplicant *wpa_s,
118 struct hostapd_hw_modes *mode, u8 channel);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700119unsigned int wpas_p2p_search_delay(struct wpa_supplicant *wpa_s);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700120void wpas_p2p_new_psk_cb(struct wpa_supplicant *wpa_s, const u8 *mac_addr,
121 const u8 *p2p_dev_addr,
122 const u8 *psk, size_t psk_len);
123void wpas_p2p_remove_client(struct wpa_supplicant *wpa_s, const u8 *peer,
124 int iface_addr);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -0800125struct wpabuf * wpas_p2p_nfc_handover_req(struct wpa_supplicant *wpa_s,
126 int ndef);
127struct wpabuf * wpas_p2p_nfc_handover_sel(struct wpa_supplicant *wpa_s,
128 int ndef, int tag);
129int wpas_p2p_nfc_tag_process(struct wpa_supplicant *wpa_s,
130 const struct wpabuf *data, int forced_freq);
131int wpas_p2p_nfc_report_handover(struct wpa_supplicant *wpa_s, int init,
132 const struct wpabuf *req,
133 const struct wpabuf *sel, int forced_freq);
134int wpas_p2p_nfc_tag_enabled(struct wpa_supplicant *wpa_s, int enabled);
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700135void wpas_p2p_pbc_overlap_cb(void *eloop_ctx, void *timeout_ctx);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700136
Dmitry Shmidt37d4d6a2013-03-18 13:09:42 -0700137#ifdef CONFIG_P2P
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700138
139int wpas_p2p_init(struct wpa_global *global, struct wpa_supplicant *wpa_s);
140void wpas_p2p_deinit(struct wpa_supplicant *wpa_s);
141void wpas_p2p_completed(struct wpa_supplicant *wpa_s);
142void wpas_p2p_update_config(struct wpa_supplicant *wpa_s);
143int wpas_p2p_probe_req_rx(struct wpa_supplicant *wpa_s, const u8 *addr,
144 const u8 *dst, const u8 *bssid,
145 const u8 *ie, size_t ie_len,
146 int ssi_signal);
147void wpas_p2p_wps_success(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
148 int registrar);
149void wpas_p2p_update_channel_list(struct wpa_supplicant *wpa_s);
150void wpas_p2p_update_best_channels(struct wpa_supplicant *wpa_s,
151 int freq_24, int freq_5, int freq_overall);
152void wpas_p2p_rx_action(struct wpa_supplicant *wpa_s, const u8 *da,
153 const u8 *sa, const u8 *bssid,
154 u8 category, const u8 *data, size_t len, int freq);
155void wpas_p2p_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
156 unsigned int freq, unsigned int duration);
157void wpas_p2p_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
158 unsigned int freq);
159void wpas_p2p_interface_unavailable(struct wpa_supplicant *wpa_s);
160void wpas_p2p_notif_connected(struct wpa_supplicant *wpa_s);
161void wpas_p2p_notif_disconnected(struct wpa_supplicant *wpa_s);
162int wpas_p2p_notif_pbc_overlap(struct wpa_supplicant *wpa_s);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700163int wpas_p2p_4way_hs_failed(struct wpa_supplicant *wpa_s);
164void wpas_p2p_ap_setup_failed(struct wpa_supplicant *wpa_s);
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700165void wpas_p2p_indicate_state_change(struct wpa_supplicant *wpa_s);
166void wpas_p2p_deinit_iface(struct wpa_supplicant *wpa_s);
167void wpas_p2p_ap_deinit(struct wpa_supplicant *wpa_s);
168void wpas_p2p_network_removed(struct wpa_supplicant *wpa_s,
169 struct wpa_ssid *ssid);
170int wpas_p2p_in_progress(struct wpa_supplicant *wpa_s);
171int wpas_p2p_wps_eapol_cb(struct wpa_supplicant *wpa_s);
172void wpas_p2p_wps_failed(struct wpa_supplicant *wpa_s,
173 struct wps_event_fail *fail);
174
Dmitry Shmidt37d4d6a2013-03-18 13:09:42 -0700175#else /* CONFIG_P2P */
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700176
177static inline int
178wpas_p2p_init(struct wpa_global *global, struct wpa_supplicant *wpa_s)
179{
180 return 0;
181}
182
183static inline void wpas_p2p_deinit(struct wpa_supplicant *wpa_s)
184{
185}
186
187static inline void wpas_p2p_completed(struct wpa_supplicant *wpa_s)
188{
189}
190
191static inline void wpas_p2p_update_config(struct wpa_supplicant *wpa_s)
192{
193}
194
195static inline int wpas_p2p_probe_req_rx(struct wpa_supplicant *wpa_s,
196 const u8 *addr,
197 const u8 *dst, const u8 *bssid,
198 const u8 *ie, size_t ie_len,
199 int ssi_signal)
200{
201 return 0;
202}
203
204static inline void wpas_p2p_wps_success(struct wpa_supplicant *wpa_s,
205 const u8 *peer_addr, int registrar)
206{
207}
208
209static inline void wpas_p2p_update_channel_list(struct wpa_supplicant *wpa_s)
210{
211}
212
213static inline void wpas_p2p_update_best_channels(struct wpa_supplicant *wpa_s,
214 int freq_24, int freq_5,
215 int freq_overall)
216{
217}
218
219static inline void wpas_p2p_rx_action(struct wpa_supplicant *wpa_s,
220 const u8 *da,
221 const u8 *sa, const u8 *bssid,
222 u8 category, const u8 *data, size_t len,
223 int freq)
224{
225}
226
227static inline void wpas_p2p_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
228 unsigned int freq,
229 unsigned int duration)
230{
231}
232
233static inline void
234wpas_p2p_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
235 unsigned int freq)
236{
237}
238
239static inline void wpas_p2p_interface_unavailable(struct wpa_supplicant *wpa_s)
240{
241}
242
243static inline void wpas_p2p_notif_connected(struct wpa_supplicant *wpa_s)
244{
245}
246
247static inline void wpas_p2p_notif_disconnected(struct wpa_supplicant *wpa_s)
248{
249}
250
251static inline int wpas_p2p_notif_pbc_overlap(struct wpa_supplicant *wpa_s)
252{
253 return 0;
254}
255
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700256static inline int wpas_p2p_4way_hs_failed(struct wpa_supplicant *wpa_s)
257{
258 return 0;
259}
260
261static inline void wpas_p2p_ap_setup_failed(struct wpa_supplicant *wpa_s)
262{
263}
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700264
265static inline void wpas_p2p_indicate_state_change(struct wpa_supplicant *wpa_s)
266{
267}
268
269static inline void wpas_p2p_deinit_iface(struct wpa_supplicant *wpa_s)
270{
271}
272
273static inline void wpas_p2p_ap_deinit(struct wpa_supplicant *wpa_s)
274{
275}
276
277static inline void wpas_p2p_network_removed(struct wpa_supplicant *wpa_s,
278 struct wpa_ssid *ssid)
279{
280}
281
282static inline int wpas_p2p_in_progress(struct wpa_supplicant *wpa_s)
283{
284 return 0;
285}
286
287static inline int wpas_p2p_wps_eapol_cb(struct wpa_supplicant *wpa_s)
288{
289 return 0;
290}
291
292static inline void wpas_p2p_wps_failed(struct wpa_supplicant *wpa_s,
293 struct wps_event_fail *fail)
294{
295}
296
Dmitry Shmidt37d4d6a2013-03-18 13:09:42 -0700297#endif /* CONFIG_P2P */
298
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700299#endif /* P2P_SUPPLICANT_H */