blob: ca45b5bbce246c6df0ea72700c6411147987173a [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * wpa_supplicant - P2P
3 * Copyright (c) 2009-2010, Atheros Communications
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08004 * Copyright (c) 2010-2014, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08006 * This software may be distributed under the terms of the BSD license.
7 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008 */
9
10#include "includes.h"
11
12#include "common.h"
13#include "eloop.h"
14#include "common/ieee802_11_common.h"
15#include "common/ieee802_11_defs.h"
16#include "common/wpa_ctrl.h"
17#include "wps/wps_i.h"
18#include "p2p/p2p.h"
19#include "ap/hostapd.h"
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080020#include "ap/ap_config.h"
Dmitry Shmidt391c59f2013-09-03 12:16:28 -070021#include "ap/sta_info.h"
22#include "ap/ap_drv_ops.h"
Dmitry Shmidtcf32e602014-01-28 10:57:39 -080023#include "ap/wps_hostapd.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070024#include "ap/p2p_hostapd.h"
Jouni Malinen75ecf522011-06-27 15:19:46 -070025#include "eapol_supp/eapol_supp_sm.h"
26#include "rsn_supp/wpa.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070027#include "wpa_supplicant_i.h"
28#include "driver_i.h"
29#include "ap.h"
30#include "config_ssid.h"
31#include "config.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070032#include "notify.h"
33#include "scan.h"
34#include "bss.h"
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080035#include "offchannel.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070036#include "wps_supplicant.h"
37#include "p2p_supplicant.h"
Dmitry Shmidt04f534e2013-12-09 15:50:16 -080038#include "wifi_display.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070039
40
41/*
42 * How many times to try to scan to find the GO before giving up on join
43 * request.
44 */
45#define P2P_MAX_JOIN_SCAN_ATTEMPTS 10
46
Dmitry Shmidt04949592012-07-19 12:16:46 -070047#define P2P_AUTO_PD_SCAN_ATTEMPTS 5
48
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080049#ifndef P2P_MAX_CLIENT_IDLE
50/*
51 * How many seconds to try to reconnect to the GO when connection in P2P client
52 * role has been lost.
53 */
54#define P2P_MAX_CLIENT_IDLE 10
55#endif /* P2P_MAX_CLIENT_IDLE */
56
Dmitry Shmidt04949592012-07-19 12:16:46 -070057#ifndef P2P_MAX_INITIAL_CONN_WAIT
58/*
59 * How many seconds to wait for initial 4-way handshake to get completed after
Dmitry Shmidt15907092014-03-25 10:42:57 -070060 * WPS provisioning step or after the re-invocation of a persistent group on a
61 * P2P Client.
Dmitry Shmidt04949592012-07-19 12:16:46 -070062 */
63#define P2P_MAX_INITIAL_CONN_WAIT 10
64#endif /* P2P_MAX_INITIAL_CONN_WAIT */
65
Dmitry Shmidt92c368d2013-08-29 12:37:21 -070066#ifndef P2P_MAX_INITIAL_CONN_WAIT_GO
67/*
68 * How many seconds to wait for initial 4-way handshake to get completed after
69 * WPS provisioning step on the GO. This controls the extra time the P2P
70 * operation is considered to be in progress (e.g., to delay other scans) after
71 * WPS provisioning has been completed on the GO during group formation.
72 */
73#define P2P_MAX_INITIAL_CONN_WAIT_GO 10
74#endif /* P2P_MAX_INITIAL_CONN_WAIT_GO */
75
Dmitry Shmidt56052862013-10-04 10:23:25 -070076#ifndef P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE
77/*
78 * How many seconds to wait for initial 4-way handshake to get completed after
79 * re-invocation of a persistent group on the GO when the client is expected
80 * to connect automatically (no user interaction).
81 */
82#define P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE 15
83#endif /* P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE */
84
Dmitry Shmidt34af3062013-07-11 10:46:32 -070085#define P2P_MGMT_DEVICE_PREFIX "p2p-dev-"
86
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070087enum p2p_group_removal_reason {
88 P2P_GROUP_REMOVAL_UNKNOWN,
89 P2P_GROUP_REMOVAL_SILENT,
90 P2P_GROUP_REMOVAL_FORMATION_FAILED,
91 P2P_GROUP_REMOVAL_REQUESTED,
92 P2P_GROUP_REMOVAL_IDLE_TIMEOUT,
93 P2P_GROUP_REMOVAL_UNAVAILABLE,
94 P2P_GROUP_REMOVAL_GO_ENDING_SESSION,
Dmitry Shmidt04f534e2013-12-09 15:50:16 -080095 P2P_GROUP_REMOVAL_PSK_FAILURE,
96 P2P_GROUP_REMOVAL_FREQ_CONFLICT
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070097};
98
Jouni Malinendc7b7132012-09-14 12:53:47 -070099
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700100static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx);
101static struct wpa_supplicant *
102wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
103 int go);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -0800104static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s, int freq,
105 const u8 *ssid, size_t ssid_len);
Dmitry Shmidt344abd32014-01-14 13:17:00 -0800106static void wpas_p2p_join_scan_req(struct wpa_supplicant *wpa_s, int freq,
107 const u8 *ssid, size_t ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700108static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx);
109static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
Dmitry Shmidt04949592012-07-19 12:16:46 -0700110 const u8 *dev_addr, enum p2p_wps_method wps_method,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -0800111 int auto_join, int freq,
112 const u8 *ssid, size_t ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700113static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s);
114static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s);
115static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx);
116static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s);
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800117static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
118 void *timeout_ctx);
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800119static void wpas_p2p_group_freq_conflict(void *eloop_ctx, void *timeout_ctx);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700120static void wpas_p2p_fallback_to_go_neg(struct wpa_supplicant *wpa_s,
121 int group_added);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800122static int wpas_p2p_stop_find_oper(struct wpa_supplicant *wpa_s);
Dmitry Shmidtbd14a572014-02-18 10:33:49 -0800123static void wpas_stop_listen(void *ctx);
Dmitry Shmidt684785c2014-05-12 13:34:29 -0700124static void wpas_p2p_psk_failure_removal(void *eloop_ctx, void *timeout_ctx);
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700125static void wpas_p2p_group_deinit(struct wpa_supplicant *wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700126
127
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700128/*
129 * Get the number of concurrent channels that the HW can operate, but that are
130 * currently not in use by any of the wpa_supplicant interfaces.
131 */
132static int wpas_p2p_num_unused_channels(struct wpa_supplicant *wpa_s)
133{
134 int *freqs;
Dmitry Shmidtb96dad42013-11-05 10:07:29 -0800135 int num, unused;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700136
137 freqs = os_calloc(wpa_s->num_multichan_concurrent, sizeof(int));
138 if (!freqs)
139 return -1;
140
141 num = get_shared_radio_freqs(wpa_s, freqs,
142 wpa_s->num_multichan_concurrent);
143 os_free(freqs);
144
Dmitry Shmidtb96dad42013-11-05 10:07:29 -0800145 unused = wpa_s->num_multichan_concurrent - num;
146 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: num_unused_channels: %d", unused);
147 return unused;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700148}
149
150
151/*
152 * Get the frequencies that are currently in use by one or more of the virtual
153 * interfaces, and that are also valid for P2P operation.
154 */
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700155static unsigned int
156wpas_p2p_valid_oper_freqs(struct wpa_supplicant *wpa_s,
157 struct wpa_used_freq_data *p2p_freqs,
158 unsigned int len)
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700159{
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700160 struct wpa_used_freq_data *freqs;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700161 unsigned int num, i, j;
162
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700163 freqs = os_calloc(wpa_s->num_multichan_concurrent,
164 sizeof(struct wpa_used_freq_data));
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700165 if (!freqs)
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700166 return 0;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700167
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700168 num = get_shared_radio_freqs_data(wpa_s, freqs,
169 wpa_s->num_multichan_concurrent);
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700170
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700171 os_memset(p2p_freqs, 0, sizeof(struct wpa_used_freq_data) * len);
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700172
173 for (i = 0, j = 0; i < num && j < len; i++) {
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700174 if (p2p_supported_freq(wpa_s->global->p2p, freqs[i].freq))
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700175 p2p_freqs[j++] = freqs[i];
176 }
177
178 os_free(freqs);
179
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700180 dump_freq_data(wpa_s, "valid for P2P", p2p_freqs, j);
Dmitry Shmidtb96dad42013-11-05 10:07:29 -0800181
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700182 return j;
183}
184
185
Dmitry Shmidt700a1372013-03-15 14:14:44 -0700186static void wpas_p2p_set_own_freq_preference(struct wpa_supplicant *wpa_s,
187 int freq)
188{
189 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
190 return;
Dmitry Shmidta0d265f2013-11-19 13:13:41 -0800191 if (wpa_s->parent->conf->p2p_ignore_shared_freq &&
192 freq > 0 && wpa_s->num_multichan_concurrent > 1 &&
193 wpas_p2p_num_unused_channels(wpa_s) > 0) {
194 wpa_printf(MSG_DEBUG, "P2P: Ignore own channel preference %d MHz due to p2p_ignore_shared_freq=1 configuration",
195 freq);
Dmitry Shmidt700a1372013-03-15 14:14:44 -0700196 freq = 0;
Dmitry Shmidta0d265f2013-11-19 13:13:41 -0800197 }
Dmitry Shmidt700a1372013-03-15 14:14:44 -0700198 p2p_set_own_freq_preference(wpa_s->global->p2p, freq);
199}
200
201
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700202static void wpas_p2p_scan_res_handler(struct wpa_supplicant *wpa_s,
203 struct wpa_scan_results *scan_res)
204{
205 size_t i;
206
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800207 if (wpa_s->p2p_scan_work) {
208 struct wpa_radio_work *work = wpa_s->p2p_scan_work;
209 wpa_s->p2p_scan_work = NULL;
210 radio_work_done(work);
211 }
212
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700213 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
214 return;
215
216 wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS)",
217 (int) scan_res->num);
218
219 for (i = 0; i < scan_res->num; i++) {
220 struct wpa_scan_res *bss = scan_res->res[i];
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800221 struct os_reltime time_tmp_age, entry_ts;
Dmitry Shmidt96571392013-10-14 12:54:46 -0700222 const u8 *ies;
223 size_t ies_len;
224
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800225 time_tmp_age.sec = bss->age / 1000;
226 time_tmp_age.usec = (bss->age % 1000) * 1000;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800227 os_reltime_sub(&scan_res->fetch_time, &time_tmp_age, &entry_ts);
Dmitry Shmidt96571392013-10-14 12:54:46 -0700228
229 ies = (const u8 *) (bss + 1);
230 ies_len = bss->ie_len;
231 if (bss->beacon_ie_len > 0 &&
232 !wpa_scan_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE) &&
233 wpa_scan_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE)) {
234 wpa_printf(MSG_DEBUG, "P2P: Use P2P IE(s) from Beacon frame since no P2P IE(s) in Probe Response frames received for "
235 MACSTR, MAC2STR(bss->bssid));
236 ies = ies + ies_len;
237 ies_len = bss->beacon_ie_len;
238 }
239
240
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700241 if (p2p_scan_res_handler(wpa_s->global->p2p, bss->bssid,
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800242 bss->freq, &entry_ts, bss->level,
Dmitry Shmidt96571392013-10-14 12:54:46 -0700243 ies, ies_len) > 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700244 break;
245 }
246
247 p2p_scan_res_handled(wpa_s->global->p2p);
248}
249
250
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800251static void wpas_p2p_trigger_scan_cb(struct wpa_radio_work *work, int deinit)
252{
253 struct wpa_supplicant *wpa_s = work->wpa_s;
254 struct wpa_driver_scan_params *params = work->ctx;
255 int ret;
256
257 if (deinit) {
Dmitry Shmidtbd14a572014-02-18 10:33:49 -0800258 if (!work->started) {
259 wpa_scan_free_params(params);
260 return;
261 }
262
263 wpa_s->p2p_scan_work = NULL;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800264 return;
265 }
266
267 ret = wpa_drv_scan(wpa_s, params);
268 wpa_scan_free_params(params);
269 work->ctx = NULL;
270 if (ret) {
271 radio_work_done(work);
272 return;
273 }
274
275 os_get_reltime(&wpa_s->scan_trigger_time);
276 wpa_s->scan_res_handler = wpas_p2p_scan_res_handler;
277 wpa_s->own_scan_requested = 1;
278 wpa_s->p2p_scan_work = work;
279}
280
281
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700282static int wpas_p2p_scan(void *ctx, enum p2p_scan_type type, int freq,
283 unsigned int num_req_dev_types,
Dmitry Shmidt04949592012-07-19 12:16:46 -0700284 const u8 *req_dev_types, const u8 *dev_id, u16 pw_id)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700285{
286 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800287 struct wpa_driver_scan_params *params = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700288 struct wpabuf *wps_ie, *ies;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700289 unsigned int num_channels = 0;
290 int social_channels_freq[] = { 2412, 2437, 2462, 60480 };
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800291 size_t ielen;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700292 u8 *n, i;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700293
294 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
295 return -1;
296
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800297 if (wpa_s->p2p_scan_work) {
298 wpa_dbg(wpa_s, MSG_INFO, "P2P: Reject scan trigger since one is already pending");
299 return -1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700300 }
301
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800302 params = os_zalloc(sizeof(*params));
303 if (params == NULL)
304 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700305
306 /* P2P Wildcard SSID */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800307 params->num_ssids = 1;
308 n = os_malloc(P2P_WILDCARD_SSID_LEN);
309 if (n == NULL)
310 goto fail;
311 os_memcpy(n, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN);
312 params->ssids[0].ssid = n;
313 params->ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700314
315 wpa_s->wps->dev.p2p = 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700316 wps_ie = wps_build_probe_req_ie(pw_id, &wpa_s->wps->dev,
317 wpa_s->wps->uuid, WPS_REQ_ENROLLEE,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700318 num_req_dev_types, req_dev_types);
319 if (wps_ie == NULL)
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800320 goto fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700321
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800322 ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
323 ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700324 if (ies == NULL) {
325 wpabuf_free(wps_ie);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800326 goto fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700327 }
328 wpabuf_put_buf(ies, wps_ie);
329 wpabuf_free(wps_ie);
330
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800331 p2p_scan_ie(wpa_s->global->p2p, ies, dev_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700332
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800333 params->p2p_probe = 1;
334 n = os_malloc(wpabuf_len(ies));
335 if (n == NULL) {
336 wpabuf_free(ies);
337 goto fail;
338 }
339 os_memcpy(n, wpabuf_head(ies), wpabuf_len(ies));
340 params->extra_ies = n;
341 params->extra_ies_len = wpabuf_len(ies);
342 wpabuf_free(ies);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700343
344 switch (type) {
345 case P2P_SCAN_SOCIAL:
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700346 params->freqs = os_calloc(ARRAY_SIZE(social_channels_freq) + 1,
347 sizeof(int));
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800348 if (params->freqs == NULL)
349 goto fail;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700350 for (i = 0; i < ARRAY_SIZE(social_channels_freq); i++) {
351 if (p2p_supported_freq(wpa_s->global->p2p,
352 social_channels_freq[i]))
353 params->freqs[num_channels++] =
354 social_channels_freq[i];
355 }
356 params->freqs[num_channels++] = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700357 break;
358 case P2P_SCAN_FULL:
359 break;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700360 case P2P_SCAN_SOCIAL_PLUS_ONE:
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700361 params->freqs = os_calloc(ARRAY_SIZE(social_channels_freq) + 2,
362 sizeof(int));
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800363 if (params->freqs == NULL)
364 goto fail;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700365 for (i = 0; i < ARRAY_SIZE(social_channels_freq); i++) {
366 if (p2p_supported_freq(wpa_s->global->p2p,
367 social_channels_freq[i]))
368 params->freqs[num_channels++] =
369 social_channels_freq[i];
370 }
371 if (p2p_supported_freq(wpa_s->global->p2p, freq))
372 params->freqs[num_channels++] = freq;
373 params->freqs[num_channels++] = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700374 break;
375 }
376
Dmitry Shmidtbd14a572014-02-18 10:33:49 -0800377 radio_remove_works(wpa_s, "p2p-scan", 0);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800378 if (radio_add_work(wpa_s, 0, "p2p-scan", 0, wpas_p2p_trigger_scan_cb,
379 params) < 0)
380 goto fail;
381 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700382
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800383fail:
384 wpa_scan_free_params(params);
385 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700386}
387
388
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700389static enum wpa_driver_if_type wpas_p2p_if_type(int p2p_group_interface)
390{
391 switch (p2p_group_interface) {
392 case P2P_GROUP_INTERFACE_PENDING:
393 return WPA_IF_P2P_GROUP;
394 case P2P_GROUP_INTERFACE_GO:
395 return WPA_IF_P2P_GO;
396 case P2P_GROUP_INTERFACE_CLIENT:
397 return WPA_IF_P2P_CLIENT;
398 }
399
400 return WPA_IF_P2P_GROUP;
401}
402
403
404static struct wpa_supplicant * wpas_get_p2p_group(struct wpa_supplicant *wpa_s,
405 const u8 *ssid,
406 size_t ssid_len, int *go)
407{
408 struct wpa_ssid *s;
409
410 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
411 for (s = wpa_s->conf->ssid; s; s = s->next) {
412 if (s->disabled != 0 || !s->p2p_group ||
413 s->ssid_len != ssid_len ||
414 os_memcmp(ssid, s->ssid, ssid_len) != 0)
415 continue;
416 if (s->mode == WPAS_MODE_P2P_GO &&
417 s != wpa_s->current_ssid)
418 continue;
419 if (go)
420 *go = s->mode == WPAS_MODE_P2P_GO;
421 return wpa_s;
422 }
423 }
424
425 return NULL;
426}
427
428
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700429static int wpas_p2p_group_delete(struct wpa_supplicant *wpa_s,
430 enum p2p_group_removal_reason removal_reason)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700431{
432 struct wpa_ssid *ssid;
433 char *gtype;
434 const char *reason;
435
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700436 ssid = wpa_s->current_ssid;
437 if (ssid == NULL) {
438 /*
439 * The current SSID was not known, but there may still be a
Dmitry Shmidtaa532512012-09-24 10:35:31 -0700440 * pending P2P group interface waiting for provisioning or a
441 * P2P group that is trying to reconnect.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700442 */
443 ssid = wpa_s->conf->ssid;
444 while (ssid) {
Jouni Malinen9d712832012-10-05 11:01:57 -0700445 if (ssid->p2p_group && ssid->disabled != 2)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700446 break;
447 ssid = ssid->next;
448 }
Jouni Malinen5c44edb2012-08-31 21:35:32 +0300449 if (ssid == NULL &&
450 wpa_s->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)
451 {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700452 wpa_printf(MSG_ERROR, "P2P: P2P group interface "
453 "not found");
454 return -1;
455 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700456 }
457 if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO)
458 gtype = "GO";
459 else if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT ||
460 (ssid && ssid->mode == WPAS_MODE_INFRA)) {
461 wpa_s->reassociate = 0;
462 wpa_s->disconnected = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700463 gtype = "client";
464 } else
465 gtype = "GO";
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700466
467 if (removal_reason != P2P_GROUP_REMOVAL_SILENT && ssid)
468 wpas_notify_p2p_group_removed(wpa_s, ssid, gtype);
469
470 if (os_strcmp(gtype, "client") == 0)
471 wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
472
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700473 if (wpa_s->cross_connect_in_use) {
474 wpa_s->cross_connect_in_use = 0;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700475 wpa_msg_global(wpa_s->parent, MSG_INFO,
476 P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
477 wpa_s->ifname, wpa_s->cross_connect_uplink);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700478 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700479 switch (removal_reason) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700480 case P2P_GROUP_REMOVAL_REQUESTED:
481 reason = " reason=REQUESTED";
482 break;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700483 case P2P_GROUP_REMOVAL_FORMATION_FAILED:
484 reason = " reason=FORMATION_FAILED";
485 break;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700486 case P2P_GROUP_REMOVAL_IDLE_TIMEOUT:
487 reason = " reason=IDLE";
488 break;
489 case P2P_GROUP_REMOVAL_UNAVAILABLE:
490 reason = " reason=UNAVAILABLE";
491 break;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700492 case P2P_GROUP_REMOVAL_GO_ENDING_SESSION:
493 reason = " reason=GO_ENDING_SESSION";
494 break;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700495 case P2P_GROUP_REMOVAL_PSK_FAILURE:
496 reason = " reason=PSK_FAILURE";
497 break;
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800498 case P2P_GROUP_REMOVAL_FREQ_CONFLICT:
499 reason = " reason=FREQ_CONFLICT";
500 break;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700501 default:
502 reason = "";
503 break;
504 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700505 if (removal_reason != P2P_GROUP_REMOVAL_SILENT) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700506 wpa_msg_global(wpa_s->parent, MSG_INFO,
507 P2P_EVENT_GROUP_REMOVED "%s %s%s",
508 wpa_s->ifname, gtype, reason);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700509 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700510
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800511 if (eloop_cancel_timeout(wpas_p2p_group_freq_conflict, wpa_s, NULL) > 0)
512 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group freq_conflict timeout");
Dmitry Shmidt04949592012-07-19 12:16:46 -0700513 if (eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
514 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800515 if (eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
Dmitry Shmidt2f023192013-03-12 12:44:17 -0700516 wpa_s->parent, NULL) > 0) {
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800517 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group formation "
518 "timeout");
Dmitry Shmidt2f023192013-03-12 12:44:17 -0700519 wpa_s->p2p_in_provisioning = 0;
520 }
Dmitry Shmidt04949592012-07-19 12:16:46 -0700521
Dmitry Shmidt15907092014-03-25 10:42:57 -0700522 wpa_s->p2p_in_invitation = 0;
523
Dmitry Shmidt96571392013-10-14 12:54:46 -0700524 /*
525 * Make sure wait for the first client does not remain active after the
526 * group has been removed.
527 */
528 wpa_s->global->p2p_go_wait_client.sec = 0;
529
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700530 if (wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE) {
531 struct wpa_global *global;
532 char *ifname;
533 enum wpa_driver_if_type type;
534 wpa_printf(MSG_DEBUG, "P2P: Remove group interface %s",
535 wpa_s->ifname);
536 global = wpa_s->global;
537 ifname = os_strdup(wpa_s->ifname);
538 type = wpas_p2p_if_type(wpa_s->p2p_group_interface);
Dmitry Shmidte15c7b52011-08-03 15:04:35 -0700539 wpa_supplicant_remove_iface(wpa_s->global, wpa_s, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700540 wpa_s = global->ifaces;
541 if (wpa_s && ifname)
542 wpa_drv_if_remove(wpa_s, type, ifname);
543 os_free(ifname);
Jouni Malinen2b89da82012-08-31 22:04:41 +0300544 return 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700545 }
546
Dmitry Shmidt96571392013-10-14 12:54:46 -0700547 if (!wpa_s->p2p_go_group_formation_completed) {
548 wpa_s->global->p2p_group_formation = NULL;
549 wpa_s->p2p_in_provisioning = 0;
550 }
551
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800552 wpa_s->show_group_started = 0;
553 os_free(wpa_s->go_params);
554 wpa_s->go_params = NULL;
555
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800556 wpa_s->waiting_presence_resp = 0;
557
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700558 wpa_printf(MSG_DEBUG, "P2P: Remove temporary group network");
559 if (ssid && (ssid->p2p_group ||
560 ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION ||
561 (ssid->key_mgmt & WPA_KEY_MGMT_WPS))) {
562 int id = ssid->id;
Jouni Malinen75ecf522011-06-27 15:19:46 -0700563 if (ssid == wpa_s->current_ssid) {
564 wpa_sm_set_config(wpa_s->wpa, NULL);
565 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700566 wpa_s->current_ssid = NULL;
Jouni Malinen75ecf522011-06-27 15:19:46 -0700567 }
568 /*
569 * Networks objects created during any P2P activities are not
570 * exposed out as they might/will confuse certain non-P2P aware
571 * applications since these network objects won't behave like
572 * regular ones.
573 *
574 * Likewise, we don't send out network removed signals for such
575 * network objects.
576 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700577 wpa_config_remove_network(wpa_s->conf, id);
578 wpa_supplicant_clear_status(wpa_s);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800579 wpa_supplicant_cancel_sched_scan(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700580 } else {
581 wpa_printf(MSG_DEBUG, "P2P: Temporary group network not "
582 "found");
583 }
Dmitry Shmidt04949592012-07-19 12:16:46 -0700584 if (wpa_s->ap_iface)
585 wpa_supplicant_ap_deinit(wpa_s);
586 else
587 wpa_drv_deinit_p2p_cli(wpa_s);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700588
589 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700590}
591
592
593static int wpas_p2p_persistent_group(struct wpa_supplicant *wpa_s,
594 u8 *go_dev_addr,
595 const u8 *ssid, size_t ssid_len)
596{
597 struct wpa_bss *bss;
598 const u8 *bssid;
599 struct wpabuf *p2p;
600 u8 group_capab;
601 const u8 *addr;
602
603 if (wpa_s->go_params)
604 bssid = wpa_s->go_params->peer_interface_addr;
605 else
606 bssid = wpa_s->bssid;
607
608 bss = wpa_bss_get(wpa_s, bssid, ssid, ssid_len);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -0800609 if (bss == NULL && wpa_s->go_params &&
610 !is_zero_ether_addr(wpa_s->go_params->peer_device_addr))
611 bss = wpa_bss_get_p2p_dev_addr(
612 wpa_s, wpa_s->go_params->peer_device_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700613 if (bss == NULL) {
614 u8 iface_addr[ETH_ALEN];
615 if (p2p_get_interface_addr(wpa_s->global->p2p, bssid,
616 iface_addr) == 0)
617 bss = wpa_bss_get(wpa_s, iface_addr, ssid, ssid_len);
618 }
619 if (bss == NULL) {
620 wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
621 "group is persistent - BSS " MACSTR " not found",
622 MAC2STR(bssid));
623 return 0;
624 }
625
626 p2p = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
Dmitry Shmidt96571392013-10-14 12:54:46 -0700627 if (p2p == NULL)
628 p2p = wpa_bss_get_vendor_ie_multi_beacon(bss,
629 P2P_IE_VENDOR_TYPE);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700630 if (p2p == NULL) {
631 wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
632 "group is persistent - BSS " MACSTR
633 " did not include P2P IE", MAC2STR(bssid));
634 wpa_hexdump(MSG_DEBUG, "P2P: Probe Response IEs",
635 (u8 *) (bss + 1), bss->ie_len);
636 wpa_hexdump(MSG_DEBUG, "P2P: Beacon IEs",
637 ((u8 *) bss + 1) + bss->ie_len,
638 bss->beacon_ie_len);
639 return 0;
640 }
641
642 group_capab = p2p_get_group_capab(p2p);
643 addr = p2p_get_go_dev_addr(p2p);
644 wpa_printf(MSG_DEBUG, "P2P: Checking whether group is persistent: "
645 "group_capab=0x%x", group_capab);
646 if (addr) {
647 os_memcpy(go_dev_addr, addr, ETH_ALEN);
648 wpa_printf(MSG_DEBUG, "P2P: GO Device Address " MACSTR,
649 MAC2STR(addr));
650 } else
651 os_memset(go_dev_addr, 0, ETH_ALEN);
652 wpabuf_free(p2p);
653
654 wpa_printf(MSG_DEBUG, "P2P: BSS " MACSTR " group_capab=0x%x "
655 "go_dev_addr=" MACSTR,
656 MAC2STR(bssid), group_capab, MAC2STR(go_dev_addr));
657
658 return group_capab & P2P_GROUP_CAPAB_PERSISTENT_GROUP;
659}
660
661
Jouni Malinen75ecf522011-06-27 15:19:46 -0700662static int wpas_p2p_store_persistent_group(struct wpa_supplicant *wpa_s,
663 struct wpa_ssid *ssid,
664 const u8 *go_dev_addr)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700665{
666 struct wpa_ssid *s;
667 int changed = 0;
668
669 wpa_printf(MSG_DEBUG, "P2P: Storing credentials for a persistent "
670 "group (GO Dev Addr " MACSTR ")", MAC2STR(go_dev_addr));
671 for (s = wpa_s->conf->ssid; s; s = s->next) {
672 if (s->disabled == 2 &&
673 os_memcmp(go_dev_addr, s->bssid, ETH_ALEN) == 0 &&
674 s->ssid_len == ssid->ssid_len &&
675 os_memcmp(ssid->ssid, s->ssid, ssid->ssid_len) == 0)
676 break;
677 }
678
679 if (s) {
680 wpa_printf(MSG_DEBUG, "P2P: Update existing persistent group "
681 "entry");
682 if (ssid->passphrase && !s->passphrase)
683 changed = 1;
684 else if (ssid->passphrase && s->passphrase &&
685 os_strcmp(ssid->passphrase, s->passphrase) != 0)
686 changed = 1;
687 } else {
688 wpa_printf(MSG_DEBUG, "P2P: Create a new persistent group "
689 "entry");
690 changed = 1;
691 s = wpa_config_add_network(wpa_s->conf);
692 if (s == NULL)
Jouni Malinen75ecf522011-06-27 15:19:46 -0700693 return -1;
694
695 /*
696 * Instead of network_added we emit persistent_group_added
697 * notification. Also to keep the defense checks in
698 * persistent_group obj registration method, we set the
699 * relevant flags in s to designate it as a persistent group.
700 */
701 s->p2p_group = 1;
702 s->p2p_persistent_group = 1;
703 wpas_notify_persistent_group_added(wpa_s, s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700704 wpa_config_set_network_defaults(s);
705 }
706
707 s->p2p_group = 1;
708 s->p2p_persistent_group = 1;
709 s->disabled = 2;
710 s->bssid_set = 1;
711 os_memcpy(s->bssid, go_dev_addr, ETH_ALEN);
712 s->mode = ssid->mode;
713 s->auth_alg = WPA_AUTH_ALG_OPEN;
714 s->key_mgmt = WPA_KEY_MGMT_PSK;
715 s->proto = WPA_PROTO_RSN;
716 s->pairwise_cipher = WPA_CIPHER_CCMP;
717 s->export_keys = 1;
718 if (ssid->passphrase) {
719 os_free(s->passphrase);
720 s->passphrase = os_strdup(ssid->passphrase);
721 }
722 if (ssid->psk_set) {
723 s->psk_set = 1;
724 os_memcpy(s->psk, ssid->psk, 32);
725 }
726 if (s->passphrase && !s->psk_set)
727 wpa_config_update_psk(s);
728 if (s->ssid == NULL || s->ssid_len < ssid->ssid_len) {
729 os_free(s->ssid);
730 s->ssid = os_malloc(ssid->ssid_len);
731 }
732 if (s->ssid) {
733 s->ssid_len = ssid->ssid_len;
734 os_memcpy(s->ssid, ssid->ssid, s->ssid_len);
735 }
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700736 if (ssid->mode == WPAS_MODE_P2P_GO && wpa_s->global->add_psk) {
737 dl_list_add(&s->psk_list, &wpa_s->global->add_psk->list);
738 wpa_s->global->add_psk = NULL;
739 changed = 1;
740 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700741
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700742 if (changed && wpa_s->conf->update_config &&
743 wpa_config_write(wpa_s->confname, wpa_s->conf)) {
744 wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
745 }
Jouni Malinen75ecf522011-06-27 15:19:46 -0700746
747 return s->id;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700748}
749
750
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800751static void wpas_p2p_add_persistent_group_client(struct wpa_supplicant *wpa_s,
752 const u8 *addr)
753{
754 struct wpa_ssid *ssid, *s;
755 u8 *n;
756 size_t i;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700757 int found = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800758
759 ssid = wpa_s->current_ssid;
760 if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
761 !ssid->p2p_persistent_group)
762 return;
763
764 for (s = wpa_s->parent->conf->ssid; s; s = s->next) {
765 if (s->disabled != 2 || s->mode != WPAS_MODE_P2P_GO)
766 continue;
767
768 if (s->ssid_len == ssid->ssid_len &&
769 os_memcmp(s->ssid, ssid->ssid, s->ssid_len) == 0)
770 break;
771 }
772
773 if (s == NULL)
774 return;
775
776 for (i = 0; s->p2p_client_list && i < s->num_p2p_clients; i++) {
777 if (os_memcmp(s->p2p_client_list + i * ETH_ALEN, addr,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700778 ETH_ALEN) != 0)
779 continue;
780
781 if (i == s->num_p2p_clients - 1)
782 return; /* already the most recent entry */
783
784 /* move the entry to mark it most recent */
785 os_memmove(s->p2p_client_list + i * ETH_ALEN,
786 s->p2p_client_list + (i + 1) * ETH_ALEN,
787 (s->num_p2p_clients - i - 1) * ETH_ALEN);
788 os_memcpy(s->p2p_client_list +
789 (s->num_p2p_clients - 1) * ETH_ALEN, addr, ETH_ALEN);
790 found = 1;
791 break;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800792 }
793
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700794 if (!found && s->num_p2p_clients < P2P_MAX_STORED_CLIENTS) {
795 n = os_realloc_array(s->p2p_client_list,
796 s->num_p2p_clients + 1, ETH_ALEN);
797 if (n == NULL)
798 return;
799 os_memcpy(n + s->num_p2p_clients * ETH_ALEN, addr, ETH_ALEN);
800 s->p2p_client_list = n;
801 s->num_p2p_clients++;
Dmitry Shmidt6aa8ae42014-07-07 09:31:33 -0700802 } else if (!found && s->p2p_client_list) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700803 /* Not enough room for an additional entry - drop the oldest
804 * entry */
805 os_memmove(s->p2p_client_list,
806 s->p2p_client_list + ETH_ALEN,
807 (s->num_p2p_clients - 1) * ETH_ALEN);
808 os_memcpy(s->p2p_client_list +
809 (s->num_p2p_clients - 1) * ETH_ALEN,
810 addr, ETH_ALEN);
811 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800812
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800813 if (wpa_s->parent->conf->update_config &&
814 wpa_config_write(wpa_s->parent->confname, wpa_s->parent->conf))
815 wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800816}
817
818
Dmitry Shmidt7f0b69e2014-07-28 10:35:20 -0700819static void wpas_p2p_group_started(struct wpa_supplicant *wpa_s,
820 int go, struct wpa_ssid *ssid, int freq,
821 const u8 *psk, const char *passphrase,
822 const u8 *go_dev_addr, int persistent,
823 const char *extra)
824{
825 const char *ssid_txt;
826 char psk_txt[65];
827
828 if (psk)
829 wpa_snprintf_hex(psk_txt, sizeof(psk_txt), psk, 32);
830 else
831 psk_txt[0] = '\0';
832
833 if (ssid)
834 ssid_txt = wpa_ssid_txt(ssid->ssid, ssid->ssid_len);
835 else
836 ssid_txt = "";
837
838 if (passphrase && passphrase[0] == '\0')
839 passphrase = NULL;
840
841 /*
842 * Include PSK/passphrase only in the control interface message and
843 * leave it out from the debug log entry.
844 */
845 wpa_msg_global_ctrl(wpa_s->parent, MSG_INFO,
846 P2P_EVENT_GROUP_STARTED
847 "%s %s ssid=\"%s\" freq=%d%s%s%s%s%s go_dev_addr="
848 MACSTR "%s%s",
849 wpa_s->ifname, go ? "GO" : "client", ssid_txt, freq,
850 psk ? " psk=" : "", psk_txt,
851 passphrase ? " passphrase=\"" : "",
852 passphrase ? passphrase : "",
853 passphrase ? "\"" : "",
854 MAC2STR(go_dev_addr),
855 persistent ? " [PERSISTENT]" : "", extra);
856 wpa_printf(MSG_INFO, P2P_EVENT_GROUP_STARTED
857 "%s %s ssid=\"%s\" freq=%d go_dev_addr=" MACSTR "%s%s",
858 wpa_s->ifname, go ? "GO" : "client", ssid_txt, freq,
859 MAC2STR(go_dev_addr), persistent ? " [PERSISTENT]" : "",
860 extra);
861}
862
863
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700864static void wpas_group_formation_completed(struct wpa_supplicant *wpa_s,
865 int success)
866{
867 struct wpa_ssid *ssid;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700868 int client;
869 int persistent;
870 u8 go_dev_addr[ETH_ALEN];
Jouni Malinen75ecf522011-06-27 15:19:46 -0700871 int network_id = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700872
873 /*
874 * This callback is likely called for the main interface. Update wpa_s
875 * to use the group interface if a new interface was created for the
876 * group.
877 */
878 if (wpa_s->global->p2p_group_formation)
879 wpa_s = wpa_s->global->p2p_group_formation;
Dmitry Shmidt56052862013-10-04 10:23:25 -0700880 if (wpa_s->p2p_go_group_formation_completed) {
881 wpa_s->global->p2p_group_formation = NULL;
882 wpa_s->p2p_in_provisioning = 0;
883 }
Dmitry Shmidt21de2142014-04-08 10:50:52 -0700884 wpa_s->p2p_in_invitation = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700885
886 if (!success) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700887 wpa_msg_global(wpa_s->parent, MSG_INFO,
888 P2P_EVENT_GROUP_FORMATION_FAILURE);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700889 wpas_p2p_group_delete(wpa_s,
890 P2P_GROUP_REMOVAL_FORMATION_FAILED);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700891 return;
892 }
893
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700894 wpa_msg_global(wpa_s->parent, MSG_INFO,
895 P2P_EVENT_GROUP_FORMATION_SUCCESS);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700896
897 ssid = wpa_s->current_ssid;
898 if (ssid && ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
899 ssid->mode = WPAS_MODE_P2P_GO;
900 p2p_group_notif_formation_done(wpa_s->p2p_group);
901 wpa_supplicant_ap_mac_addr_filter(wpa_s, NULL);
902 }
903
904 persistent = 0;
905 if (ssid) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700906 client = ssid->mode == WPAS_MODE_INFRA;
907 if (ssid->mode == WPAS_MODE_P2P_GO) {
908 persistent = ssid->p2p_persistent_group;
Dmitry Shmidt497c1d52011-07-21 15:19:46 -0700909 os_memcpy(go_dev_addr, wpa_s->global->p2p_dev_addr,
910 ETH_ALEN);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700911 } else
912 persistent = wpas_p2p_persistent_group(wpa_s,
913 go_dev_addr,
914 ssid->ssid,
915 ssid->ssid_len);
916 } else {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700917 client = wpa_s->p2p_group_interface ==
918 P2P_GROUP_INTERFACE_CLIENT;
919 os_memset(go_dev_addr, 0, ETH_ALEN);
920 }
921
922 wpa_s->show_group_started = 0;
923 if (client) {
924 /*
925 * Indicate event only after successfully completed 4-way
926 * handshake, i.e., when the interface is ready for data
927 * packets.
928 */
929 wpa_s->show_group_started = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700930 } else {
Dmitry Shmidt7f0b69e2014-07-28 10:35:20 -0700931 wpas_p2p_group_started(wpa_s, 1, ssid,
932 ssid ? ssid->frequency : 0,
933 ssid && ssid->passphrase == NULL &&
934 ssid->psk_set ? ssid->psk : NULL,
935 ssid ? ssid->passphrase : NULL,
936 go_dev_addr, persistent, "");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700937 wpas_p2p_cross_connect_setup(wpa_s);
938 wpas_p2p_set_group_idle_timeout(wpa_s);
939 }
940
941 if (persistent)
Jouni Malinen75ecf522011-06-27 15:19:46 -0700942 network_id = wpas_p2p_store_persistent_group(wpa_s->parent,
943 ssid, go_dev_addr);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700944 else {
945 os_free(wpa_s->global->add_psk);
946 wpa_s->global->add_psk = NULL;
947 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800948 if (network_id < 0 && ssid)
Jouni Malinen75ecf522011-06-27 15:19:46 -0700949 network_id = ssid->id;
Dmitry Shmidt92c368d2013-08-29 12:37:21 -0700950 if (!client) {
Jouni Malinen75ecf522011-06-27 15:19:46 -0700951 wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 0);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800952 os_get_reltime(&wpa_s->global->p2p_go_wait_client);
Dmitry Shmidt92c368d2013-08-29 12:37:21 -0700953 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700954}
955
956
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800957struct send_action_work {
958 unsigned int freq;
959 u8 dst[ETH_ALEN];
960 u8 src[ETH_ALEN];
961 u8 bssid[ETH_ALEN];
962 size_t len;
963 unsigned int wait_time;
964 u8 buf[0];
965};
966
967
968static void wpas_p2p_send_action_work_timeout(void *eloop_ctx,
969 void *timeout_ctx)
970{
971 struct wpa_supplicant *wpa_s = eloop_ctx;
972
973 if (!wpa_s->p2p_send_action_work)
974 return;
975
976 wpa_printf(MSG_DEBUG, "P2P: Send Action frame radio work timed out");
977 os_free(wpa_s->p2p_send_action_work->ctx);
978 radio_work_done(wpa_s->p2p_send_action_work);
979 wpa_s->p2p_send_action_work = NULL;
980}
981
982
Dmitry Shmidt03658832014-08-13 11:03:49 -0700983static void wpas_p2p_action_tx_clear(struct wpa_supplicant *wpa_s)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700984{
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800985 if (wpa_s->p2p_send_action_work) {
986 struct send_action_work *awork;
987 awork = wpa_s->p2p_send_action_work->ctx;
988 if (awork->wait_time == 0) {
989 os_free(awork);
990 radio_work_done(wpa_s->p2p_send_action_work);
991 wpa_s->p2p_send_action_work = NULL;
992 } else {
993 /*
994 * In theory, this should not be needed, but number of
995 * places in the P2P code is still using non-zero wait
996 * time for the last Action frame in the sequence and
997 * some of these do not call send_action_done().
998 */
999 eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
1000 wpa_s, NULL);
1001 eloop_register_timeout(
1002 0, awork->wait_time * 1000,
1003 wpas_p2p_send_action_work_timeout,
1004 wpa_s, NULL);
1005 }
1006 }
Dmitry Shmidt03658832014-08-13 11:03:49 -07001007}
1008
1009
1010static void wpas_p2p_send_action_tx_status(struct wpa_supplicant *wpa_s,
1011 unsigned int freq,
1012 const u8 *dst, const u8 *src,
1013 const u8 *bssid,
1014 const u8 *data, size_t data_len,
1015 enum offchannel_send_action_result
1016 result)
1017{
1018 enum p2p_send_action_result res = P2P_SEND_ACTION_SUCCESS;
1019
1020 wpas_p2p_action_tx_clear(wpa_s);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001021
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001022 if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled)
1023 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001024
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001025 switch (result) {
1026 case OFFCHANNEL_SEND_ACTION_SUCCESS:
1027 res = P2P_SEND_ACTION_SUCCESS;
1028 break;
1029 case OFFCHANNEL_SEND_ACTION_NO_ACK:
1030 res = P2P_SEND_ACTION_NO_ACK;
1031 break;
1032 case OFFCHANNEL_SEND_ACTION_FAILED:
1033 res = P2P_SEND_ACTION_FAILED;
1034 break;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001035 }
1036
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001037 p2p_send_action_cb(wpa_s->global->p2p, freq, dst, src, bssid, res);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001038
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08001039 if (result != OFFCHANNEL_SEND_ACTION_SUCCESS &&
1040 wpa_s->pending_pd_before_join &&
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001041 (os_memcmp(dst, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001042 os_memcmp(dst, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0) &&
1043 wpa_s->p2p_fallback_to_go_neg) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001044 wpa_s->pending_pd_before_join = 0;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001045 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No ACK for PD Req "
1046 "during p2p_connect-auto");
1047 wpas_p2p_fallback_to_go_neg(wpa_s, 0);
1048 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001049 }
1050}
1051
1052
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001053static void wpas_send_action_cb(struct wpa_radio_work *work, int deinit)
1054{
1055 struct wpa_supplicant *wpa_s = work->wpa_s;
1056 struct send_action_work *awork = work->ctx;
1057
1058 if (deinit) {
Dmitry Shmidtbd14a572014-02-18 10:33:49 -08001059 if (work->started) {
1060 eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
1061 wpa_s, NULL);
1062 wpa_s->p2p_send_action_work = NULL;
1063 offchannel_send_action_done(wpa_s);
1064 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001065 os_free(awork);
1066 return;
1067 }
1068
1069 if (offchannel_send_action(wpa_s, awork->freq, awork->dst, awork->src,
1070 awork->bssid, awork->buf, awork->len,
1071 awork->wait_time,
1072 wpas_p2p_send_action_tx_status, 1) < 0) {
1073 os_free(awork);
1074 radio_work_done(work);
1075 return;
1076 }
1077 wpa_s->p2p_send_action_work = work;
1078}
1079
1080
1081static int wpas_send_action_work(struct wpa_supplicant *wpa_s,
1082 unsigned int freq, const u8 *dst,
1083 const u8 *src, const u8 *bssid, const u8 *buf,
1084 size_t len, unsigned int wait_time)
1085{
1086 struct send_action_work *awork;
1087
1088 if (wpa_s->p2p_send_action_work) {
1089 wpa_printf(MSG_DEBUG, "P2P: Cannot schedule new p2p-send-action work since one is already pending");
1090 return -1;
1091 }
1092
1093 awork = os_zalloc(sizeof(*awork) + len);
1094 if (awork == NULL)
1095 return -1;
1096
1097 awork->freq = freq;
1098 os_memcpy(awork->dst, dst, ETH_ALEN);
1099 os_memcpy(awork->src, src, ETH_ALEN);
1100 os_memcpy(awork->bssid, bssid, ETH_ALEN);
1101 awork->len = len;
1102 awork->wait_time = wait_time;
1103 os_memcpy(awork->buf, buf, len);
1104
1105 if (radio_add_work(wpa_s, freq, "p2p-send-action", 0,
1106 wpas_send_action_cb, awork) < 0) {
1107 os_free(awork);
1108 return -1;
1109 }
1110
1111 return 0;
1112}
1113
1114
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001115static int wpas_send_action(void *ctx, unsigned int freq, const u8 *dst,
1116 const u8 *src, const u8 *bssid, const u8 *buf,
1117 size_t len, unsigned int wait_time)
1118{
1119 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001120 int listen_freq = -1, send_freq = -1;
1121
1122 if (wpa_s->p2p_listen_work)
1123 listen_freq = wpa_s->p2p_listen_work->freq;
1124 if (wpa_s->p2p_send_action_work)
1125 send_freq = wpa_s->p2p_send_action_work->freq;
1126 if (listen_freq != (int) freq && send_freq != (int) freq) {
1127 wpa_printf(MSG_DEBUG, "P2P: Schedule new radio work for Action frame TX (listen_freq=%d send_freq=%d)",
1128 listen_freq, send_freq);
1129 return wpas_send_action_work(wpa_s, freq, dst, src, bssid, buf,
1130 len, wait_time);
1131 }
1132
1133 wpa_printf(MSG_DEBUG, "P2P: Use ongoing radio work for Action frame TX");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001134 return offchannel_send_action(wpa_s, freq, dst, src, bssid, buf, len,
1135 wait_time,
1136 wpas_p2p_send_action_tx_status, 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001137}
1138
1139
1140static void wpas_send_action_done(void *ctx)
1141{
1142 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001143
1144 if (wpa_s->p2p_send_action_work) {
1145 eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
1146 wpa_s, NULL);
1147 os_free(wpa_s->p2p_send_action_work->ctx);
1148 radio_work_done(wpa_s->p2p_send_action_work);
1149 wpa_s->p2p_send_action_work = NULL;
1150 }
1151
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001152 offchannel_send_action_done(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001153}
1154
1155
1156static int wpas_copy_go_neg_results(struct wpa_supplicant *wpa_s,
1157 struct p2p_go_neg_results *params)
1158{
1159 if (wpa_s->go_params == NULL) {
1160 wpa_s->go_params = os_malloc(sizeof(*params));
1161 if (wpa_s->go_params == NULL)
1162 return -1;
1163 }
1164 os_memcpy(wpa_s->go_params, params, sizeof(*params));
1165 return 0;
1166}
1167
1168
1169static void wpas_start_wps_enrollee(struct wpa_supplicant *wpa_s,
1170 struct p2p_go_neg_results *res)
1171{
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001172 wpa_printf(MSG_DEBUG, "P2P: Start WPS Enrollee for peer " MACSTR
1173 " dev_addr " MACSTR " wps_method %d",
1174 MAC2STR(res->peer_interface_addr),
1175 MAC2STR(res->peer_device_addr), res->wps_method);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001176 wpa_hexdump_ascii(MSG_DEBUG, "P2P: Start WPS Enrollee for SSID",
1177 res->ssid, res->ssid_len);
1178 wpa_supplicant_ap_deinit(wpa_s);
1179 wpas_copy_go_neg_results(wpa_s, res);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001180 if (res->wps_method == WPS_PBC) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001181 wpas_wps_start_pbc(wpa_s, res->peer_interface_addr, 1);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001182#ifdef CONFIG_WPS_NFC
1183 } else if (res->wps_method == WPS_NFC) {
1184 wpas_wps_start_nfc(wpa_s, res->peer_device_addr,
1185 res->peer_interface_addr,
1186 wpa_s->parent->p2p_oob_dev_pw,
1187 wpa_s->parent->p2p_oob_dev_pw_id, 1,
1188 wpa_s->parent->p2p_oob_dev_pw_id ==
1189 DEV_PW_NFC_CONNECTION_HANDOVER ?
1190 wpa_s->parent->p2p_peer_oob_pubkey_hash :
1191 NULL,
1192 NULL, 0, 0);
1193#endif /* CONFIG_WPS_NFC */
1194 } else {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001195 u16 dev_pw_id = DEV_PW_DEFAULT;
1196 if (wpa_s->p2p_wps_method == WPS_PIN_KEYPAD)
1197 dev_pw_id = DEV_PW_REGISTRAR_SPECIFIED;
1198 wpas_wps_start_pin(wpa_s, res->peer_interface_addr,
1199 wpa_s->p2p_pin, 1, dev_pw_id);
1200 }
1201}
1202
1203
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001204static void wpas_p2p_add_psk_list(struct wpa_supplicant *wpa_s,
1205 struct wpa_ssid *ssid)
1206{
1207 struct wpa_ssid *persistent;
1208 struct psk_list_entry *psk;
1209 struct hostapd_data *hapd;
1210
1211 if (!wpa_s->ap_iface)
1212 return;
1213
1214 persistent = wpas_p2p_get_persistent(wpa_s->parent, NULL, ssid->ssid,
1215 ssid->ssid_len);
1216 if (persistent == NULL)
1217 return;
1218
1219 hapd = wpa_s->ap_iface->bss[0];
1220
1221 dl_list_for_each(psk, &persistent->psk_list, struct psk_list_entry,
1222 list) {
1223 struct hostapd_wpa_psk *hpsk;
1224
1225 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add persistent group PSK entry for "
1226 MACSTR " psk=%d",
1227 MAC2STR(psk->addr), psk->p2p);
1228 hpsk = os_zalloc(sizeof(*hpsk));
1229 if (hpsk == NULL)
1230 break;
1231 os_memcpy(hpsk->psk, psk->psk, PMK_LEN);
1232 if (psk->p2p)
1233 os_memcpy(hpsk->p2p_dev_addr, psk->addr, ETH_ALEN);
1234 else
1235 os_memcpy(hpsk->addr, psk->addr, ETH_ALEN);
1236 hpsk->next = hapd->conf->ssid.wpa_psk;
1237 hapd->conf->ssid.wpa_psk = hpsk;
1238 }
1239}
1240
1241
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001242static void p2p_go_configured(void *ctx, void *data)
1243{
1244 struct wpa_supplicant *wpa_s = ctx;
1245 struct p2p_go_neg_results *params = data;
1246 struct wpa_ssid *ssid;
Jouni Malinen75ecf522011-06-27 15:19:46 -07001247 int network_id = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001248
1249 ssid = wpa_s->current_ssid;
1250 if (ssid && ssid->mode == WPAS_MODE_P2P_GO) {
1251 wpa_printf(MSG_DEBUG, "P2P: Group setup without provisioning");
1252 if (wpa_s->global->p2p_group_formation == wpa_s)
1253 wpa_s->global->p2p_group_formation = NULL;
Dmitry Shmidt7f0b69e2014-07-28 10:35:20 -07001254 wpas_p2p_group_started(wpa_s, 1, ssid, ssid->frequency,
1255 params->passphrase[0] == '\0' ?
1256 params->psk : NULL,
1257 params->passphrase,
1258 wpa_s->global->p2p_dev_addr,
1259 params->persistent_group, "");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001260
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001261 os_get_reltime(&wpa_s->global->p2p_go_wait_client);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001262 if (params->persistent_group) {
Jouni Malinen75ecf522011-06-27 15:19:46 -07001263 network_id = wpas_p2p_store_persistent_group(
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001264 wpa_s->parent, ssid,
Dmitry Shmidt497c1d52011-07-21 15:19:46 -07001265 wpa_s->global->p2p_dev_addr);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001266 wpas_p2p_add_psk_list(wpa_s, ssid);
1267 }
Jouni Malinen75ecf522011-06-27 15:19:46 -07001268 if (network_id < 0)
1269 network_id = ssid->id;
1270 wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001271 wpas_p2p_cross_connect_setup(wpa_s);
1272 wpas_p2p_set_group_idle_timeout(wpa_s);
Dmitry Shmidt56052862013-10-04 10:23:25 -07001273
1274 if (wpa_s->p2p_first_connection_timeout) {
1275 wpa_dbg(wpa_s, MSG_DEBUG,
1276 "P2P: Start group formation timeout of %d seconds until first data connection on GO",
1277 wpa_s->p2p_first_connection_timeout);
1278 wpa_s->p2p_go_group_formation_completed = 0;
1279 wpa_s->global->p2p_group_formation = wpa_s;
1280 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
1281 wpa_s->parent, NULL);
1282 eloop_register_timeout(
1283 wpa_s->p2p_first_connection_timeout, 0,
1284 wpas_p2p_group_formation_timeout,
1285 wpa_s->parent, NULL);
1286 }
1287
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001288 return;
1289 }
1290
1291 wpa_printf(MSG_DEBUG, "P2P: Setting up WPS for GO provisioning");
1292 if (wpa_supplicant_ap_mac_addr_filter(wpa_s,
1293 params->peer_interface_addr)) {
1294 wpa_printf(MSG_DEBUG, "P2P: Failed to setup MAC address "
1295 "filtering");
1296 return;
1297 }
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001298 if (params->wps_method == WPS_PBC) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001299 wpa_supplicant_ap_wps_pbc(wpa_s, params->peer_interface_addr,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001300 params->peer_device_addr);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001301#ifdef CONFIG_WPS_NFC
1302 } else if (params->wps_method == WPS_NFC) {
1303 if (wpa_s->parent->p2p_oob_dev_pw_id !=
1304 DEV_PW_NFC_CONNECTION_HANDOVER &&
1305 !wpa_s->parent->p2p_oob_dev_pw) {
1306 wpa_printf(MSG_DEBUG, "P2P: No NFC Dev Pw known");
1307 return;
1308 }
1309 wpas_ap_wps_add_nfc_pw(
1310 wpa_s, wpa_s->parent->p2p_oob_dev_pw_id,
1311 wpa_s->parent->p2p_oob_dev_pw,
1312 wpa_s->parent->p2p_peer_oob_pk_hash_known ?
1313 wpa_s->parent->p2p_peer_oob_pubkey_hash : NULL);
1314#endif /* CONFIG_WPS_NFC */
1315 } else if (wpa_s->p2p_pin[0])
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001316 wpa_supplicant_ap_wps_pin(wpa_s, params->peer_interface_addr,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001317 wpa_s->p2p_pin, NULL, 0, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001318 os_free(wpa_s->go_params);
1319 wpa_s->go_params = NULL;
1320}
1321
1322
1323static void wpas_start_wps_go(struct wpa_supplicant *wpa_s,
1324 struct p2p_go_neg_results *params,
1325 int group_formation)
1326{
1327 struct wpa_ssid *ssid;
1328
Dmitry Shmidtaa532512012-09-24 10:35:31 -07001329 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Starting GO");
1330 if (wpas_copy_go_neg_results(wpa_s, params) < 0) {
1331 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not copy GO Negotiation "
1332 "results");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001333 return;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07001334 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001335
1336 ssid = wpa_config_add_network(wpa_s->conf);
Dmitry Shmidtaa532512012-09-24 10:35:31 -07001337 if (ssid == NULL) {
1338 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not add network for GO");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001339 return;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07001340 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001341
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001342 wpa_s->show_group_started = 0;
1343
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001344 wpa_config_set_network_defaults(ssid);
1345 ssid->temporary = 1;
1346 ssid->p2p_group = 1;
1347 ssid->p2p_persistent_group = params->persistent_group;
1348 ssid->mode = group_formation ? WPAS_MODE_P2P_GROUP_FORMATION :
1349 WPAS_MODE_P2P_GO;
1350 ssid->frequency = params->freq;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001351 ssid->ht40 = params->ht40;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07001352 ssid->vht = params->vht;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001353 ssid->ssid = os_zalloc(params->ssid_len + 1);
1354 if (ssid->ssid) {
1355 os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
1356 ssid->ssid_len = params->ssid_len;
1357 }
1358 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
1359 ssid->key_mgmt = WPA_KEY_MGMT_PSK;
1360 ssid->proto = WPA_PROTO_RSN;
1361 ssid->pairwise_cipher = WPA_CIPHER_CCMP;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001362 if (os_strlen(params->passphrase) > 0) {
1363 ssid->passphrase = os_strdup(params->passphrase);
1364 if (ssid->passphrase == NULL) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001365 wpa_msg_global(wpa_s, MSG_ERROR,
1366 "P2P: Failed to copy passphrase for GO");
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001367 wpa_config_remove_network(wpa_s->conf, ssid->id);
1368 return;
1369 }
1370 } else
1371 ssid->passphrase = NULL;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001372 ssid->psk_set = params->psk_set;
1373 if (ssid->psk_set)
1374 os_memcpy(ssid->psk, params->psk, sizeof(ssid->psk));
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001375 else if (ssid->passphrase)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001376 wpa_config_update_psk(ssid);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001377 ssid->ap_max_inactivity = wpa_s->parent->conf->p2p_go_max_inactivity;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001378
1379 wpa_s->ap_configured_cb = p2p_go_configured;
1380 wpa_s->ap_configured_cb_ctx = wpa_s;
1381 wpa_s->ap_configured_cb_data = wpa_s->go_params;
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07001382 wpa_s->scan_req = NORMAL_SCAN_REQ;
Jouni Malinen75ecf522011-06-27 15:19:46 -07001383 wpa_s->connect_without_scan = ssid;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001384 wpa_s->reassociate = 1;
1385 wpa_s->disconnected = 0;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07001386 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Request scan (that will be skipped) to "
1387 "start GO)");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001388 wpa_supplicant_req_scan(wpa_s, 0, 0);
1389}
1390
1391
1392static void wpas_p2p_clone_config(struct wpa_supplicant *dst,
1393 const struct wpa_supplicant *src)
1394{
1395 struct wpa_config *d;
1396 const struct wpa_config *s;
1397
1398 d = dst->conf;
1399 s = src->conf;
1400
1401#define C(n) if (s->n) d->n = os_strdup(s->n)
1402 C(device_name);
1403 C(manufacturer);
1404 C(model_name);
1405 C(model_number);
1406 C(serial_number);
1407 C(config_methods);
1408#undef C
1409
1410 os_memcpy(d->device_type, s->device_type, WPS_DEV_TYPE_LEN);
1411 os_memcpy(d->sec_device_type, s->sec_device_type,
1412 sizeof(d->sec_device_type));
1413 d->num_sec_device_types = s->num_sec_device_types;
1414
1415 d->p2p_group_idle = s->p2p_group_idle;
1416 d->p2p_intra_bss = s->p2p_intra_bss;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001417 d->persistent_reconnect = s->persistent_reconnect;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001418 d->max_num_sta = s->max_num_sta;
1419 d->pbc_in_m1 = s->pbc_in_m1;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07001420 d->ignore_old_scan_res = s->ignore_old_scan_res;
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07001421 d->beacon_int = s->beacon_int;
Dmitry Shmidt18463232014-01-24 12:29:41 -08001422 d->dtim_period = s->dtim_period;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07001423 d->disassoc_low_ack = s->disassoc_low_ack;
Dmitry Shmidt96571392013-10-14 12:54:46 -07001424 d->disable_scan_offload = s->disable_scan_offload;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001425
1426 if (s->wps_nfc_dh_privkey && s->wps_nfc_dh_pubkey) {
1427 d->wps_nfc_dh_privkey = wpabuf_dup(s->wps_nfc_dh_privkey);
1428 d->wps_nfc_dh_pubkey = wpabuf_dup(s->wps_nfc_dh_pubkey);
1429 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001430}
1431
1432
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001433static void wpas_p2p_get_group_ifname(struct wpa_supplicant *wpa_s,
1434 char *ifname, size_t len)
1435{
1436 char *ifname_ptr = wpa_s->ifname;
1437
1438 if (os_strncmp(wpa_s->ifname, P2P_MGMT_DEVICE_PREFIX,
1439 os_strlen(P2P_MGMT_DEVICE_PREFIX)) == 0) {
1440 ifname_ptr = os_strrchr(wpa_s->ifname, '-') + 1;
1441 }
1442
1443 os_snprintf(ifname, len, "p2p-%s-%d", ifname_ptr, wpa_s->p2p_group_idx);
1444 if (os_strlen(ifname) >= IFNAMSIZ &&
1445 os_strlen(wpa_s->ifname) < IFNAMSIZ) {
1446 /* Try to avoid going over the IFNAMSIZ length limit */
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07001447 os_snprintf(ifname, len, "p2p-%d", wpa_s->p2p_group_idx);
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001448 }
1449}
1450
1451
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001452static int wpas_p2p_add_group_interface(struct wpa_supplicant *wpa_s,
1453 enum wpa_driver_if_type type)
1454{
1455 char ifname[120], force_ifname[120];
1456
1457 if (wpa_s->pending_interface_name[0]) {
1458 wpa_printf(MSG_DEBUG, "P2P: Pending virtual interface exists "
1459 "- skip creation of a new one");
1460 if (is_zero_ether_addr(wpa_s->pending_interface_addr)) {
1461 wpa_printf(MSG_DEBUG, "P2P: Pending virtual address "
1462 "unknown?! ifname='%s'",
1463 wpa_s->pending_interface_name);
1464 return -1;
1465 }
1466 return 0;
1467 }
1468
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001469 wpas_p2p_get_group_ifname(wpa_s, ifname, sizeof(ifname));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001470 force_ifname[0] = '\0';
1471
1472 wpa_printf(MSG_DEBUG, "P2P: Create a new interface %s for the group",
1473 ifname);
1474 wpa_s->p2p_group_idx++;
1475
1476 wpa_s->pending_interface_type = type;
1477 if (wpa_drv_if_add(wpa_s, type, ifname, NULL, NULL, force_ifname,
1478 wpa_s->pending_interface_addr, NULL) < 0) {
1479 wpa_printf(MSG_ERROR, "P2P: Failed to create new group "
1480 "interface");
1481 return -1;
1482 }
1483
1484 if (force_ifname[0]) {
1485 wpa_printf(MSG_DEBUG, "P2P: Driver forced interface name %s",
1486 force_ifname);
1487 os_strlcpy(wpa_s->pending_interface_name, force_ifname,
1488 sizeof(wpa_s->pending_interface_name));
1489 } else
1490 os_strlcpy(wpa_s->pending_interface_name, ifname,
1491 sizeof(wpa_s->pending_interface_name));
1492 wpa_printf(MSG_DEBUG, "P2P: Created pending virtual interface %s addr "
1493 MACSTR, wpa_s->pending_interface_name,
1494 MAC2STR(wpa_s->pending_interface_addr));
1495
1496 return 0;
1497}
1498
1499
1500static void wpas_p2p_remove_pending_group_interface(
1501 struct wpa_supplicant *wpa_s)
1502{
1503 if (!wpa_s->pending_interface_name[0] ||
1504 is_zero_ether_addr(wpa_s->pending_interface_addr))
1505 return; /* No pending virtual interface */
1506
1507 wpa_printf(MSG_DEBUG, "P2P: Removing pending group interface %s",
1508 wpa_s->pending_interface_name);
1509 wpa_drv_if_remove(wpa_s, wpa_s->pending_interface_type,
1510 wpa_s->pending_interface_name);
1511 os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
1512 wpa_s->pending_interface_name[0] = '\0';
1513}
1514
1515
1516static struct wpa_supplicant *
1517wpas_p2p_init_group_interface(struct wpa_supplicant *wpa_s, int go)
1518{
1519 struct wpa_interface iface;
1520 struct wpa_supplicant *group_wpa_s;
1521
1522 if (!wpa_s->pending_interface_name[0]) {
1523 wpa_printf(MSG_ERROR, "P2P: No pending group interface");
1524 if (!wpas_p2p_create_iface(wpa_s))
1525 return NULL;
1526 /*
1527 * Something has forced us to remove the pending interface; try
1528 * to create a new one and hope for the best that we will get
1529 * the same local address.
1530 */
1531 if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
1532 WPA_IF_P2P_CLIENT) < 0)
1533 return NULL;
1534 }
1535
1536 os_memset(&iface, 0, sizeof(iface));
1537 iface.ifname = wpa_s->pending_interface_name;
1538 iface.driver = wpa_s->driver->name;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001539 if (wpa_s->conf->ctrl_interface == NULL &&
1540 wpa_s->parent != wpa_s &&
1541 wpa_s->p2p_mgmt &&
1542 (wpa_s->drv_flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE))
1543 iface.ctrl_interface = wpa_s->parent->conf->ctrl_interface;
1544 else
1545 iface.ctrl_interface = wpa_s->conf->ctrl_interface;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001546 iface.driver_param = wpa_s->conf->driver_param;
1547 group_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface);
1548 if (group_wpa_s == NULL) {
1549 wpa_printf(MSG_ERROR, "P2P: Failed to create new "
1550 "wpa_supplicant interface");
1551 return NULL;
1552 }
1553 wpa_s->pending_interface_name[0] = '\0';
1554 group_wpa_s->parent = wpa_s;
1555 group_wpa_s->p2p_group_interface = go ? P2P_GROUP_INTERFACE_GO :
1556 P2P_GROUP_INTERFACE_CLIENT;
1557 wpa_s->global->p2p_group_formation = group_wpa_s;
1558
1559 wpas_p2p_clone_config(group_wpa_s, wpa_s);
1560
1561 return group_wpa_s;
1562}
1563
1564
1565static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
1566 void *timeout_ctx)
1567{
1568 struct wpa_supplicant *wpa_s = eloop_ctx;
1569 wpa_printf(MSG_DEBUG, "P2P: Group Formation timed out");
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001570 wpas_p2p_group_formation_failed(wpa_s);
1571}
1572
1573
1574void wpas_p2p_group_formation_failed(struct wpa_supplicant *wpa_s)
1575{
1576 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
1577 wpa_s->parent, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001578 if (wpa_s->global->p2p)
1579 p2p_group_formation_failed(wpa_s->global->p2p);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001580 wpas_group_formation_completed(wpa_s, 0);
1581}
1582
1583
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001584static void wpas_p2p_grpform_fail_after_wps(struct wpa_supplicant *wpa_s)
1585{
1586 wpa_printf(MSG_DEBUG, "P2P: Reject group formation due to WPS provisioning failure");
1587 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
1588 wpa_s->parent, NULL);
1589 eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
1590 wpa_s->parent, NULL);
1591 wpa_s->global->p2p_fail_on_wps_complete = 0;
1592}
1593
1594
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001595void wpas_p2p_ap_setup_failed(struct wpa_supplicant *wpa_s)
1596{
1597 if (wpa_s->global->p2p_group_formation != wpa_s)
1598 return;
1599 /* Speed up group formation timeout since this cannot succeed */
1600 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
1601 wpa_s->parent, NULL);
1602 eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
1603 wpa_s->parent, NULL);
1604}
1605
1606
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001607static void wpas_go_neg_completed(void *ctx, struct p2p_go_neg_results *res)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001608{
1609 struct wpa_supplicant *wpa_s = ctx;
1610
1611 if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
1612 wpa_drv_cancel_remain_on_channel(wpa_s);
1613 wpa_s->off_channel_freq = 0;
1614 wpa_s->roc_waiting_drv_freq = 0;
1615 }
1616
1617 if (res->status) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001618 wpa_msg_global(wpa_s, MSG_INFO,
1619 P2P_EVENT_GO_NEG_FAILURE "status=%d",
1620 res->status);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001621 wpas_notify_p2p_go_neg_completed(wpa_s, res);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001622 wpas_p2p_remove_pending_group_interface(wpa_s);
1623 return;
1624 }
1625
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001626 if (wpa_s->p2p_go_ht40)
1627 res->ht40 = 1;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07001628 if (wpa_s->p2p_go_vht)
1629 res->vht = 1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001630
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07001631 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_SUCCESS "role=%s "
1632 "freq=%d ht40=%d peer_dev=" MACSTR " peer_iface=" MACSTR
1633 " wps_method=%s",
1634 res->role_go ? "GO" : "client", res->freq, res->ht40,
1635 MAC2STR(res->peer_device_addr),
1636 MAC2STR(res->peer_interface_addr),
1637 p2p_wps_method_text(res->wps_method));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001638 wpas_notify_p2p_go_neg_completed(wpa_s, res);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001639
Dmitry Shmidt04949592012-07-19 12:16:46 -07001640 if (res->role_go && wpa_s->p2p_persistent_id >= 0) {
1641 struct wpa_ssid *ssid;
1642 ssid = wpa_config_get_network(wpa_s->conf,
1643 wpa_s->p2p_persistent_id);
1644 if (ssid && ssid->disabled == 2 &&
1645 ssid->mode == WPAS_MODE_P2P_GO && ssid->passphrase) {
1646 size_t len = os_strlen(ssid->passphrase);
1647 wpa_printf(MSG_DEBUG, "P2P: Override passphrase based "
1648 "on requested persistent group");
1649 os_memcpy(res->passphrase, ssid->passphrase, len);
1650 res->passphrase[len] = '\0';
1651 }
1652 }
1653
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001654 if (wpa_s->create_p2p_iface) {
1655 struct wpa_supplicant *group_wpa_s =
1656 wpas_p2p_init_group_interface(wpa_s, res->role_go);
1657 if (group_wpa_s == NULL) {
1658 wpas_p2p_remove_pending_group_interface(wpa_s);
Dmitry Shmidtd11f0192014-03-24 12:09:47 -07001659 eloop_cancel_timeout(wpas_p2p_long_listen_timeout,
1660 wpa_s, NULL);
1661 wpas_p2p_group_formation_failed(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001662 return;
1663 }
1664 if (group_wpa_s != wpa_s) {
1665 os_memcpy(group_wpa_s->p2p_pin, wpa_s->p2p_pin,
1666 sizeof(group_wpa_s->p2p_pin));
1667 group_wpa_s->p2p_wps_method = wpa_s->p2p_wps_method;
1668 }
1669 os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
1670 wpa_s->pending_interface_name[0] = '\0';
1671 group_wpa_s->p2p_in_provisioning = 1;
1672
1673 if (res->role_go)
1674 wpas_start_wps_go(group_wpa_s, res, 1);
1675 else
1676 wpas_start_wps_enrollee(group_wpa_s, res);
1677 } else {
1678 wpa_s->p2p_in_provisioning = 1;
1679 wpa_s->global->p2p_group_formation = wpa_s;
1680
1681 if (res->role_go)
1682 wpas_start_wps_go(wpa_s, res, 1);
1683 else
1684 wpas_start_wps_enrollee(ctx, res);
1685 }
1686
1687 wpa_s->p2p_long_listen = 0;
1688 eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
1689
1690 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
1691 eloop_register_timeout(15 + res->peer_config_timeout / 100,
1692 (res->peer_config_timeout % 100) * 10000,
1693 wpas_p2p_group_formation_timeout, wpa_s, NULL);
1694}
1695
1696
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001697static void wpas_go_neg_req_rx(void *ctx, const u8 *src, u16 dev_passwd_id)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001698{
1699 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001700 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_REQUEST MACSTR
1701 " dev_passwd_id=%u", MAC2STR(src), dev_passwd_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001702
1703 wpas_notify_p2p_go_neg_req(wpa_s, src, dev_passwd_id);
1704}
1705
1706
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001707static void wpas_dev_found(void *ctx, const u8 *addr,
1708 const struct p2p_peer_info *info,
1709 int new_device)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001710{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001711#ifndef CONFIG_NO_STDOUT_DEBUG
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001712 struct wpa_supplicant *wpa_s = ctx;
1713 char devtype[WPS_DEV_TYPE_BUFSIZE];
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08001714 char *wfd_dev_info_hex = NULL;
1715
Irfan Sheriff8367dc92012-09-09 17:08:19 -07001716#ifdef CONFIG_WIFI_DISPLAY
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08001717 wfd_dev_info_hex = wifi_display_subelem_hex(info->wfd_subelems,
1718 WFD_SUBELEM_DEVICE_INFO);
Irfan Sheriff8367dc92012-09-09 17:08:19 -07001719#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08001720
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001721 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_FOUND MACSTR
1722 " p2p_dev_addr=" MACSTR
1723 " pri_dev_type=%s name='%s' config_methods=0x%x "
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07001724 "dev_capab=0x%x group_capab=0x%x%s%s%s",
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001725 MAC2STR(addr), MAC2STR(info->p2p_device_addr),
1726 wps_dev_type_bin2str(info->pri_dev_type, devtype,
1727 sizeof(devtype)),
1728 info->device_name, info->config_methods,
1729 info->dev_capab, info->group_capab,
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08001730 wfd_dev_info_hex ? " wfd_dev_info=0x" : "",
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07001731 wfd_dev_info_hex ? wfd_dev_info_hex : "",
1732 info->vendor_elems ? " vendor_elems=1" : "");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001733
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08001734 os_free(wfd_dev_info_hex);
Dmitry Shmidt97672262014-02-03 13:02:54 -08001735#endif /* CONFIG_NO_STDOUT_DEBUG */
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08001736
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001737 wpas_notify_p2p_device_found(ctx, info->p2p_device_addr, new_device);
1738}
1739
1740
1741static void wpas_dev_lost(void *ctx, const u8 *dev_addr)
1742{
1743 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001744
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001745 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_LOST
1746 "p2p_dev_addr=" MACSTR, MAC2STR(dev_addr));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001747
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001748 wpas_notify_p2p_device_lost(wpa_s, dev_addr);
1749}
1750
1751
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001752static void wpas_find_stopped(void *ctx)
1753{
1754 struct wpa_supplicant *wpa_s = ctx;
1755 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_FIND_STOPPED);
1756}
1757
1758
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001759struct wpas_p2p_listen_work {
1760 unsigned int freq;
1761 unsigned int duration;
1762 struct wpabuf *probe_resp_ie;
1763};
1764
1765
1766static void wpas_p2p_listen_work_free(struct wpas_p2p_listen_work *lwork)
1767{
1768 if (lwork == NULL)
1769 return;
1770 wpabuf_free(lwork->probe_resp_ie);
1771 os_free(lwork);
1772}
1773
1774
1775static void wpas_p2p_listen_work_done(struct wpa_supplicant *wpa_s)
1776{
1777 struct wpas_p2p_listen_work *lwork;
1778
1779 if (!wpa_s->p2p_listen_work)
1780 return;
1781
1782 lwork = wpa_s->p2p_listen_work->ctx;
1783 wpas_p2p_listen_work_free(lwork);
1784 radio_work_done(wpa_s->p2p_listen_work);
1785 wpa_s->p2p_listen_work = NULL;
1786}
1787
1788
1789static void wpas_start_listen_cb(struct wpa_radio_work *work, int deinit)
1790{
1791 struct wpa_supplicant *wpa_s = work->wpa_s;
1792 struct wpas_p2p_listen_work *lwork = work->ctx;
1793
1794 if (deinit) {
Dmitry Shmidtbd14a572014-02-18 10:33:49 -08001795 if (work->started) {
1796 wpa_s->p2p_listen_work = NULL;
1797 wpas_stop_listen(wpa_s);
1798 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001799 wpas_p2p_listen_work_free(lwork);
1800 return;
1801 }
1802
1803 wpa_s->p2p_listen_work = work;
1804
1805 wpa_drv_set_ap_wps_ie(wpa_s, NULL, lwork->probe_resp_ie, NULL);
1806
1807 if (wpa_drv_probe_req_report(wpa_s, 1) < 0) {
1808 wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver to "
1809 "report received Probe Request frames");
1810 wpas_p2p_listen_work_done(wpa_s);
1811 return;
1812 }
1813
1814 wpa_s->pending_listen_freq = lwork->freq;
1815 wpa_s->pending_listen_duration = lwork->duration;
1816
1817 if (wpa_drv_remain_on_channel(wpa_s, lwork->freq, lwork->duration) < 0)
1818 {
1819 wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver "
1820 "to remain on channel (%u MHz) for Listen "
1821 "state", lwork->freq);
1822 wpas_p2p_listen_work_done(wpa_s);
1823 wpa_s->pending_listen_freq = 0;
1824 return;
1825 }
1826 wpa_s->off_channel_freq = 0;
1827 wpa_s->roc_waiting_drv_freq = lwork->freq;
1828}
1829
1830
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001831static int wpas_start_listen(void *ctx, unsigned int freq,
1832 unsigned int duration,
1833 const struct wpabuf *probe_resp_ie)
1834{
1835 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001836 struct wpas_p2p_listen_work *lwork;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001837
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001838 if (wpa_s->p2p_listen_work) {
1839 wpa_printf(MSG_DEBUG, "P2P: Reject start_listen since p2p_listen_work already exists");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001840 return -1;
1841 }
1842
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001843 lwork = os_zalloc(sizeof(*lwork));
1844 if (lwork == NULL)
1845 return -1;
1846 lwork->freq = freq;
1847 lwork->duration = duration;
1848 if (probe_resp_ie) {
1849 lwork->probe_resp_ie = wpabuf_dup(probe_resp_ie);
1850 if (lwork->probe_resp_ie == NULL) {
1851 wpas_p2p_listen_work_free(lwork);
1852 return -1;
1853 }
1854 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001855
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001856 if (radio_add_work(wpa_s, freq, "p2p-listen", 0, wpas_start_listen_cb,
1857 lwork) < 0) {
1858 wpas_p2p_listen_work_free(lwork);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001859 return -1;
1860 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001861
1862 return 0;
1863}
1864
1865
1866static void wpas_stop_listen(void *ctx)
1867{
1868 struct wpa_supplicant *wpa_s = ctx;
1869 if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
1870 wpa_drv_cancel_remain_on_channel(wpa_s);
1871 wpa_s->off_channel_freq = 0;
1872 wpa_s->roc_waiting_drv_freq = 0;
1873 }
1874 wpa_drv_set_ap_wps_ie(wpa_s, NULL, NULL, NULL);
1875 wpa_drv_probe_req_report(wpa_s, 0);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001876 wpas_p2p_listen_work_done(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001877}
1878
1879
1880static int wpas_send_probe_resp(void *ctx, const struct wpabuf *buf)
1881{
1882 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001883 return wpa_drv_send_mlme(wpa_s, wpabuf_head(buf), wpabuf_len(buf), 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001884}
1885
1886
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001887/*
1888 * DNS Header section is used only to calculate compression pointers, so the
1889 * contents of this data does not matter, but the length needs to be reserved
1890 * in the virtual packet.
1891 */
1892#define DNS_HEADER_LEN 12
1893
1894/*
1895 * 27-octet in-memory packet from P2P specification containing two implied
1896 * queries for _tcp.lcoal. PTR IN and _udp.local. PTR IN
1897 */
1898#define P2P_SD_IN_MEMORY_LEN 27
1899
1900static int p2p_sd_dns_uncompress_label(char **upos, char *uend, u8 *start,
1901 u8 **spos, const u8 *end)
1902{
1903 while (*spos < end) {
1904 u8 val = ((*spos)[0] & 0xc0) >> 6;
1905 int len;
1906
1907 if (val == 1 || val == 2) {
1908 /* These are reserved values in RFC 1035 */
1909 wpa_printf(MSG_DEBUG, "P2P: Invalid domain name "
1910 "sequence starting with 0x%x", val);
1911 return -1;
1912 }
1913
1914 if (val == 3) {
1915 u16 offset;
1916 u8 *spos_tmp;
1917
1918 /* Offset */
1919 if (*spos + 2 > end) {
1920 wpa_printf(MSG_DEBUG, "P2P: No room for full "
1921 "DNS offset field");
1922 return -1;
1923 }
1924
1925 offset = (((*spos)[0] & 0x3f) << 8) | (*spos)[1];
1926 if (offset >= *spos - start) {
1927 wpa_printf(MSG_DEBUG, "P2P: Invalid DNS "
1928 "pointer offset %u", offset);
1929 return -1;
1930 }
1931
1932 (*spos) += 2;
1933 spos_tmp = start + offset;
1934 return p2p_sd_dns_uncompress_label(upos, uend, start,
1935 &spos_tmp,
1936 *spos - 2);
1937 }
1938
1939 /* Label */
1940 len = (*spos)[0] & 0x3f;
1941 if (len == 0)
1942 return 0;
1943
1944 (*spos)++;
1945 if (*spos + len > end) {
1946 wpa_printf(MSG_DEBUG, "P2P: Invalid domain name "
1947 "sequence - no room for label with length "
1948 "%u", len);
1949 return -1;
1950 }
1951
1952 if (*upos + len + 2 > uend)
1953 return -2;
1954
1955 os_memcpy(*upos, *spos, len);
1956 *spos += len;
1957 *upos += len;
1958 (*upos)[0] = '.';
1959 (*upos)++;
1960 (*upos)[0] = '\0';
1961 }
1962
1963 return 0;
1964}
1965
1966
1967/* Uncompress domain names per RFC 1035 using the P2P SD in-memory packet.
1968 * Returns -1 on parsing error (invalid input sequence), -2 if output buffer is
1969 * not large enough */
1970static int p2p_sd_dns_uncompress(char *buf, size_t buf_len, const u8 *msg,
1971 size_t msg_len, size_t offset)
1972{
1973 /* 27-octet in-memory packet from P2P specification */
1974 const char *prefix = "\x04_tcp\x05local\x00\x00\x0C\x00\x01"
1975 "\x04_udp\xC0\x11\x00\x0C\x00\x01";
1976 u8 *tmp, *end, *spos;
1977 char *upos, *uend;
1978 int ret = 0;
1979
1980 if (buf_len < 2)
1981 return -1;
1982 if (offset > msg_len)
1983 return -1;
1984
1985 tmp = os_malloc(DNS_HEADER_LEN + P2P_SD_IN_MEMORY_LEN + msg_len);
1986 if (tmp == NULL)
1987 return -1;
1988 spos = tmp + DNS_HEADER_LEN + P2P_SD_IN_MEMORY_LEN;
1989 end = spos + msg_len;
1990 spos += offset;
1991
1992 os_memset(tmp, 0, DNS_HEADER_LEN);
1993 os_memcpy(tmp + DNS_HEADER_LEN, prefix, P2P_SD_IN_MEMORY_LEN);
1994 os_memcpy(tmp + DNS_HEADER_LEN + P2P_SD_IN_MEMORY_LEN, msg, msg_len);
1995
1996 upos = buf;
1997 uend = buf + buf_len;
1998
1999 ret = p2p_sd_dns_uncompress_label(&upos, uend, tmp, &spos, end);
2000 if (ret) {
2001 os_free(tmp);
2002 return ret;
2003 }
2004
2005 if (upos == buf) {
2006 upos[0] = '.';
2007 upos[1] = '\0';
2008 } else if (upos[-1] == '.')
2009 upos[-1] = '\0';
2010
2011 os_free(tmp);
2012 return 0;
2013}
2014
2015
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002016static struct p2p_srv_bonjour *
2017wpas_p2p_service_get_bonjour(struct wpa_supplicant *wpa_s,
2018 const struct wpabuf *query)
2019{
2020 struct p2p_srv_bonjour *bsrv;
2021 size_t len;
2022
2023 len = wpabuf_len(query);
2024 dl_list_for_each(bsrv, &wpa_s->global->p2p_srv_bonjour,
2025 struct p2p_srv_bonjour, list) {
2026 if (len == wpabuf_len(bsrv->query) &&
2027 os_memcmp(wpabuf_head(query), wpabuf_head(bsrv->query),
2028 len) == 0)
2029 return bsrv;
2030 }
2031 return NULL;
2032}
2033
2034
2035static struct p2p_srv_upnp *
2036wpas_p2p_service_get_upnp(struct wpa_supplicant *wpa_s, u8 version,
2037 const char *service)
2038{
2039 struct p2p_srv_upnp *usrv;
2040
2041 dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
2042 struct p2p_srv_upnp, list) {
2043 if (version == usrv->version &&
2044 os_strcmp(service, usrv->service) == 0)
2045 return usrv;
2046 }
2047 return NULL;
2048}
2049
2050
2051static void wpas_sd_add_proto_not_avail(struct wpabuf *resp, u8 srv_proto,
2052 u8 srv_trans_id)
2053{
2054 u8 *len_pos;
2055
2056 if (wpabuf_tailroom(resp) < 5)
2057 return;
2058
2059 /* Length (to be filled) */
2060 len_pos = wpabuf_put(resp, 2);
2061 wpabuf_put_u8(resp, srv_proto);
2062 wpabuf_put_u8(resp, srv_trans_id);
2063 /* Status Code */
2064 wpabuf_put_u8(resp, P2P_SD_PROTO_NOT_AVAILABLE);
2065 /* Response Data: empty */
2066 WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
2067}
2068
2069
2070static void wpas_sd_all_bonjour(struct wpa_supplicant *wpa_s,
2071 struct wpabuf *resp, u8 srv_trans_id)
2072{
2073 struct p2p_srv_bonjour *bsrv;
2074 u8 *len_pos;
2075
2076 wpa_printf(MSG_DEBUG, "P2P: SD Request for all Bonjour services");
2077
2078 if (dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
2079 wpa_printf(MSG_DEBUG, "P2P: Bonjour protocol not available");
2080 return;
2081 }
2082
2083 dl_list_for_each(bsrv, &wpa_s->global->p2p_srv_bonjour,
2084 struct p2p_srv_bonjour, list) {
2085 if (wpabuf_tailroom(resp) <
2086 5 + wpabuf_len(bsrv->query) + wpabuf_len(bsrv->resp))
2087 return;
2088 /* Length (to be filled) */
2089 len_pos = wpabuf_put(resp, 2);
2090 wpabuf_put_u8(resp, P2P_SERV_BONJOUR);
2091 wpabuf_put_u8(resp, srv_trans_id);
2092 /* Status Code */
2093 wpabuf_put_u8(resp, P2P_SD_SUCCESS);
2094 wpa_hexdump_ascii(MSG_DEBUG, "P2P: Matching Bonjour service",
2095 wpabuf_head(bsrv->resp),
2096 wpabuf_len(bsrv->resp));
2097 /* Response Data */
2098 wpabuf_put_buf(resp, bsrv->query); /* Key */
2099 wpabuf_put_buf(resp, bsrv->resp); /* Value */
2100 WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
2101 2);
2102 }
2103}
2104
2105
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002106static int match_bonjour_query(struct p2p_srv_bonjour *bsrv, const u8 *query,
2107 size_t query_len)
2108{
2109 char str_rx[256], str_srv[256];
2110
2111 if (query_len < 3 || wpabuf_len(bsrv->query) < 3)
2112 return 0; /* Too short to include DNS Type and Version */
2113 if (os_memcmp(query + query_len - 3,
2114 wpabuf_head_u8(bsrv->query) + wpabuf_len(bsrv->query) - 3,
2115 3) != 0)
2116 return 0; /* Mismatch in DNS Type or Version */
2117 if (query_len == wpabuf_len(bsrv->query) &&
2118 os_memcmp(query, wpabuf_head(bsrv->query), query_len - 3) == 0)
2119 return 1; /* Binary match */
2120
2121 if (p2p_sd_dns_uncompress(str_rx, sizeof(str_rx), query, query_len - 3,
2122 0))
2123 return 0; /* Failed to uncompress query */
2124 if (p2p_sd_dns_uncompress(str_srv, sizeof(str_srv),
2125 wpabuf_head(bsrv->query),
2126 wpabuf_len(bsrv->query) - 3, 0))
2127 return 0; /* Failed to uncompress service */
2128
2129 return os_strcmp(str_rx, str_srv) == 0;
2130}
2131
2132
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002133static void wpas_sd_req_bonjour(struct wpa_supplicant *wpa_s,
2134 struct wpabuf *resp, u8 srv_trans_id,
2135 const u8 *query, size_t query_len)
2136{
2137 struct p2p_srv_bonjour *bsrv;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002138 u8 *len_pos;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002139 int matches = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002140
2141 wpa_hexdump_ascii(MSG_DEBUG, "P2P: SD Request for Bonjour",
2142 query, query_len);
2143 if (dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
2144 wpa_printf(MSG_DEBUG, "P2P: Bonjour protocol not available");
2145 wpas_sd_add_proto_not_avail(resp, P2P_SERV_BONJOUR,
2146 srv_trans_id);
2147 return;
2148 }
2149
2150 if (query_len == 0) {
2151 wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
2152 return;
2153 }
2154
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002155 dl_list_for_each(bsrv, &wpa_s->global->p2p_srv_bonjour,
2156 struct p2p_srv_bonjour, list) {
2157 if (!match_bonjour_query(bsrv, query, query_len))
2158 continue;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002159
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002160 if (wpabuf_tailroom(resp) <
2161 5 + query_len + wpabuf_len(bsrv->resp))
2162 return;
2163
2164 matches++;
2165
2166 /* Length (to be filled) */
2167 len_pos = wpabuf_put(resp, 2);
2168 wpabuf_put_u8(resp, P2P_SERV_BONJOUR);
2169 wpabuf_put_u8(resp, srv_trans_id);
2170
2171 /* Status Code */
2172 wpabuf_put_u8(resp, P2P_SD_SUCCESS);
2173 wpa_hexdump_ascii(MSG_DEBUG, "P2P: Matching Bonjour service",
2174 wpabuf_head(bsrv->resp),
2175 wpabuf_len(bsrv->resp));
2176
2177 /* Response Data */
2178 wpabuf_put_data(resp, query, query_len); /* Key */
2179 wpabuf_put_buf(resp, bsrv->resp); /* Value */
2180
2181 WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
2182 }
2183
2184 if (matches == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002185 wpa_printf(MSG_DEBUG, "P2P: Requested Bonjour service not "
2186 "available");
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002187 if (wpabuf_tailroom(resp) < 5)
2188 return;
2189
2190 /* Length (to be filled) */
2191 len_pos = wpabuf_put(resp, 2);
2192 wpabuf_put_u8(resp, P2P_SERV_BONJOUR);
2193 wpabuf_put_u8(resp, srv_trans_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002194
2195 /* Status Code */
2196 wpabuf_put_u8(resp, P2P_SD_REQUESTED_INFO_NOT_AVAILABLE);
2197 /* Response Data: empty */
2198 WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
2199 2);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002200 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002201}
2202
2203
2204static void wpas_sd_all_upnp(struct wpa_supplicant *wpa_s,
2205 struct wpabuf *resp, u8 srv_trans_id)
2206{
2207 struct p2p_srv_upnp *usrv;
2208 u8 *len_pos;
2209
2210 wpa_printf(MSG_DEBUG, "P2P: SD Request for all UPnP services");
2211
2212 if (dl_list_empty(&wpa_s->global->p2p_srv_upnp)) {
2213 wpa_printf(MSG_DEBUG, "P2P: UPnP protocol not available");
2214 return;
2215 }
2216
2217 dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
2218 struct p2p_srv_upnp, list) {
2219 if (wpabuf_tailroom(resp) < 5 + 1 + os_strlen(usrv->service))
2220 return;
2221
2222 /* Length (to be filled) */
2223 len_pos = wpabuf_put(resp, 2);
2224 wpabuf_put_u8(resp, P2P_SERV_UPNP);
2225 wpabuf_put_u8(resp, srv_trans_id);
2226
2227 /* Status Code */
2228 wpabuf_put_u8(resp, P2P_SD_SUCCESS);
2229 /* Response Data */
2230 wpabuf_put_u8(resp, usrv->version);
2231 wpa_printf(MSG_DEBUG, "P2P: Matching UPnP Service: %s",
2232 usrv->service);
2233 wpabuf_put_str(resp, usrv->service);
2234 WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
2235 2);
2236 }
2237}
2238
2239
2240static void wpas_sd_req_upnp(struct wpa_supplicant *wpa_s,
2241 struct wpabuf *resp, u8 srv_trans_id,
2242 const u8 *query, size_t query_len)
2243{
2244 struct p2p_srv_upnp *usrv;
2245 u8 *len_pos;
2246 u8 version;
2247 char *str;
2248 int count = 0;
2249
2250 wpa_hexdump_ascii(MSG_DEBUG, "P2P: SD Request for UPnP",
2251 query, query_len);
2252
2253 if (dl_list_empty(&wpa_s->global->p2p_srv_upnp)) {
2254 wpa_printf(MSG_DEBUG, "P2P: UPnP protocol not available");
2255 wpas_sd_add_proto_not_avail(resp, P2P_SERV_UPNP,
2256 srv_trans_id);
2257 return;
2258 }
2259
2260 if (query_len == 0) {
2261 wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
2262 return;
2263 }
2264
2265 if (wpabuf_tailroom(resp) < 5)
2266 return;
2267
2268 /* Length (to be filled) */
2269 len_pos = wpabuf_put(resp, 2);
2270 wpabuf_put_u8(resp, P2P_SERV_UPNP);
2271 wpabuf_put_u8(resp, srv_trans_id);
2272
2273 version = query[0];
2274 str = os_malloc(query_len);
2275 if (str == NULL)
2276 return;
2277 os_memcpy(str, query + 1, query_len - 1);
2278 str[query_len - 1] = '\0';
2279
2280 dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
2281 struct p2p_srv_upnp, list) {
2282 if (version != usrv->version)
2283 continue;
2284
2285 if (os_strcmp(str, "ssdp:all") != 0 &&
2286 os_strstr(usrv->service, str) == NULL)
2287 continue;
2288
2289 if (wpabuf_tailroom(resp) < 2)
2290 break;
2291 if (count == 0) {
2292 /* Status Code */
2293 wpabuf_put_u8(resp, P2P_SD_SUCCESS);
2294 /* Response Data */
2295 wpabuf_put_u8(resp, version);
2296 } else
2297 wpabuf_put_u8(resp, ',');
2298
2299 count++;
2300
2301 wpa_printf(MSG_DEBUG, "P2P: Matching UPnP Service: %s",
2302 usrv->service);
2303 if (wpabuf_tailroom(resp) < os_strlen(usrv->service))
2304 break;
2305 wpabuf_put_str(resp, usrv->service);
2306 }
2307 os_free(str);
2308
2309 if (count == 0) {
2310 wpa_printf(MSG_DEBUG, "P2P: Requested UPnP service not "
2311 "available");
2312 /* Status Code */
2313 wpabuf_put_u8(resp, P2P_SD_REQUESTED_INFO_NOT_AVAILABLE);
2314 /* Response Data: empty */
2315 }
2316
2317 WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
2318}
2319
2320
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002321#ifdef CONFIG_WIFI_DISPLAY
2322static void wpas_sd_req_wfd(struct wpa_supplicant *wpa_s,
2323 struct wpabuf *resp, u8 srv_trans_id,
2324 const u8 *query, size_t query_len)
2325{
2326 const u8 *pos;
2327 u8 role;
2328 u8 *len_pos;
2329
2330 wpa_hexdump(MSG_DEBUG, "P2P: SD Request for WFD", query, query_len);
2331
2332 if (!wpa_s->global->wifi_display) {
2333 wpa_printf(MSG_DEBUG, "P2P: WFD protocol not available");
2334 wpas_sd_add_proto_not_avail(resp, P2P_SERV_WIFI_DISPLAY,
2335 srv_trans_id);
2336 return;
2337 }
2338
2339 if (query_len < 1) {
2340 wpa_printf(MSG_DEBUG, "P2P: Missing WFD Requested Device "
2341 "Role");
2342 return;
2343 }
2344
2345 if (wpabuf_tailroom(resp) < 5)
2346 return;
2347
2348 pos = query;
2349 role = *pos++;
2350 wpa_printf(MSG_DEBUG, "P2P: WSD for device role 0x%x", role);
2351
2352 /* TODO: role specific handling */
2353
2354 /* Length (to be filled) */
2355 len_pos = wpabuf_put(resp, 2);
2356 wpabuf_put_u8(resp, P2P_SERV_WIFI_DISPLAY);
2357 wpabuf_put_u8(resp, srv_trans_id);
2358 wpabuf_put_u8(resp, P2P_SD_SUCCESS); /* Status Code */
2359
2360 while (pos < query + query_len) {
2361 if (*pos < MAX_WFD_SUBELEMS &&
2362 wpa_s->global->wfd_subelem[*pos] &&
2363 wpabuf_tailroom(resp) >=
2364 wpabuf_len(wpa_s->global->wfd_subelem[*pos])) {
2365 wpa_printf(MSG_DEBUG, "P2P: Add WSD response "
2366 "subelement %u", *pos);
2367 wpabuf_put_buf(resp, wpa_s->global->wfd_subelem[*pos]);
2368 }
2369 pos++;
2370 }
2371
2372 WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
2373}
2374#endif /* CONFIG_WIFI_DISPLAY */
2375
2376
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002377static void wpas_sd_request(void *ctx, int freq, const u8 *sa, u8 dialog_token,
2378 u16 update_indic, const u8 *tlvs, size_t tlvs_len)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002379{
2380 struct wpa_supplicant *wpa_s = ctx;
2381 const u8 *pos = tlvs;
2382 const u8 *end = tlvs + tlvs_len;
2383 const u8 *tlv_end;
2384 u16 slen;
2385 struct wpabuf *resp;
2386 u8 srv_proto, srv_trans_id;
2387 size_t buf_len;
2388 char *buf;
2389
2390 wpa_hexdump(MSG_MSGDUMP, "P2P: Service Discovery Request TLVs",
2391 tlvs, tlvs_len);
2392 buf_len = 2 * tlvs_len + 1;
2393 buf = os_malloc(buf_len);
2394 if (buf) {
2395 wpa_snprintf_hex(buf, buf_len, tlvs, tlvs_len);
2396 wpa_msg_ctrl(wpa_s, MSG_INFO, P2P_EVENT_SERV_DISC_REQ "%d "
2397 MACSTR " %u %u %s",
2398 freq, MAC2STR(sa), dialog_token, update_indic,
2399 buf);
2400 os_free(buf);
2401 }
2402
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002403 if (wpa_s->p2p_sd_over_ctrl_iface) {
2404 wpas_notify_p2p_sd_request(wpa_s, freq, sa, dialog_token,
2405 update_indic, tlvs, tlvs_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002406 return; /* to be processed by an external program */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002407 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002408
2409 resp = wpabuf_alloc(10000);
2410 if (resp == NULL)
2411 return;
2412
2413 while (pos + 1 < end) {
2414 wpa_printf(MSG_DEBUG, "P2P: Service Request TLV");
2415 slen = WPA_GET_LE16(pos);
2416 pos += 2;
2417 if (pos + slen > end || slen < 2) {
2418 wpa_printf(MSG_DEBUG, "P2P: Unexpected Query Data "
2419 "length");
2420 wpabuf_free(resp);
2421 return;
2422 }
2423 tlv_end = pos + slen;
2424
2425 srv_proto = *pos++;
2426 wpa_printf(MSG_DEBUG, "P2P: Service Protocol Type %u",
2427 srv_proto);
2428 srv_trans_id = *pos++;
2429 wpa_printf(MSG_DEBUG, "P2P: Service Transaction ID %u",
2430 srv_trans_id);
2431
2432 wpa_hexdump(MSG_MSGDUMP, "P2P: Query Data",
2433 pos, tlv_end - pos);
2434
2435
2436 if (wpa_s->force_long_sd) {
2437 wpa_printf(MSG_DEBUG, "P2P: SD test - force long "
2438 "response");
2439 wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
2440 wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
2441 goto done;
2442 }
2443
2444 switch (srv_proto) {
2445 case P2P_SERV_ALL_SERVICES:
2446 wpa_printf(MSG_DEBUG, "P2P: Service Discovery Request "
2447 "for all services");
2448 if (dl_list_empty(&wpa_s->global->p2p_srv_upnp) &&
2449 dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
2450 wpa_printf(MSG_DEBUG, "P2P: No service "
2451 "discovery protocols available");
2452 wpas_sd_add_proto_not_avail(
2453 resp, P2P_SERV_ALL_SERVICES,
2454 srv_trans_id);
2455 break;
2456 }
2457 wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
2458 wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
2459 break;
2460 case P2P_SERV_BONJOUR:
2461 wpas_sd_req_bonjour(wpa_s, resp, srv_trans_id,
2462 pos, tlv_end - pos);
2463 break;
2464 case P2P_SERV_UPNP:
2465 wpas_sd_req_upnp(wpa_s, resp, srv_trans_id,
2466 pos, tlv_end - pos);
2467 break;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002468#ifdef CONFIG_WIFI_DISPLAY
2469 case P2P_SERV_WIFI_DISPLAY:
2470 wpas_sd_req_wfd(wpa_s, resp, srv_trans_id,
2471 pos, tlv_end - pos);
2472 break;
2473#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002474 default:
2475 wpa_printf(MSG_DEBUG, "P2P: Unavailable service "
2476 "protocol %u", srv_proto);
2477 wpas_sd_add_proto_not_avail(resp, srv_proto,
2478 srv_trans_id);
2479 break;
2480 }
2481
2482 pos = tlv_end;
2483 }
2484
2485done:
2486 wpas_notify_p2p_sd_request(wpa_s, freq, sa, dialog_token,
2487 update_indic, tlvs, tlvs_len);
2488
2489 wpas_p2p_sd_response(wpa_s, freq, sa, dialog_token, resp);
2490
2491 wpabuf_free(resp);
2492}
2493
2494
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002495static void wpas_sd_response(void *ctx, const u8 *sa, u16 update_indic,
2496 const u8 *tlvs, size_t tlvs_len)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002497{
2498 struct wpa_supplicant *wpa_s = ctx;
2499 const u8 *pos = tlvs;
2500 const u8 *end = tlvs + tlvs_len;
2501 const u8 *tlv_end;
2502 u16 slen;
2503 size_t buf_len;
2504 char *buf;
2505
2506 wpa_hexdump(MSG_MSGDUMP, "P2P: Service Discovery Response TLVs",
2507 tlvs, tlvs_len);
2508 if (tlvs_len > 1500) {
2509 /* TODO: better way for handling this */
2510 wpa_msg_ctrl(wpa_s, MSG_INFO,
2511 P2P_EVENT_SERV_DISC_RESP MACSTR
2512 " %u <long response: %u bytes>",
2513 MAC2STR(sa), update_indic,
2514 (unsigned int) tlvs_len);
2515 } else {
2516 buf_len = 2 * tlvs_len + 1;
2517 buf = os_malloc(buf_len);
2518 if (buf) {
2519 wpa_snprintf_hex(buf, buf_len, tlvs, tlvs_len);
2520 wpa_msg_ctrl(wpa_s, MSG_INFO,
2521 P2P_EVENT_SERV_DISC_RESP MACSTR " %u %s",
2522 MAC2STR(sa), update_indic, buf);
2523 os_free(buf);
2524 }
2525 }
2526
2527 while (pos < end) {
2528 u8 srv_proto, srv_trans_id, status;
2529
2530 wpa_printf(MSG_DEBUG, "P2P: Service Response TLV");
2531 slen = WPA_GET_LE16(pos);
2532 pos += 2;
2533 if (pos + slen > end || slen < 3) {
2534 wpa_printf(MSG_DEBUG, "P2P: Unexpected Response Data "
2535 "length");
2536 return;
2537 }
2538 tlv_end = pos + slen;
2539
2540 srv_proto = *pos++;
2541 wpa_printf(MSG_DEBUG, "P2P: Service Protocol Type %u",
2542 srv_proto);
2543 srv_trans_id = *pos++;
2544 wpa_printf(MSG_DEBUG, "P2P: Service Transaction ID %u",
2545 srv_trans_id);
2546 status = *pos++;
2547 wpa_printf(MSG_DEBUG, "P2P: Status Code ID %u",
2548 status);
2549
2550 wpa_hexdump(MSG_MSGDUMP, "P2P: Response Data",
2551 pos, tlv_end - pos);
2552
2553 pos = tlv_end;
2554 }
2555
2556 wpas_notify_p2p_sd_response(wpa_s, sa, update_indic, tlvs, tlvs_len);
2557}
2558
2559
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002560u64 wpas_p2p_sd_request(struct wpa_supplicant *wpa_s, const u8 *dst,
2561 const struct wpabuf *tlvs)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002562{
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002563 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002564 return 0;
2565 return (uintptr_t) p2p_sd_request(wpa_s->global->p2p, dst, tlvs);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002566}
2567
2568
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002569u64 wpas_p2p_sd_request_upnp(struct wpa_supplicant *wpa_s, const u8 *dst,
2570 u8 version, const char *query)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002571{
2572 struct wpabuf *tlvs;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002573 u64 ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002574
2575 tlvs = wpabuf_alloc(2 + 1 + 1 + 1 + os_strlen(query));
2576 if (tlvs == NULL)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002577 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002578 wpabuf_put_le16(tlvs, 1 + 1 + 1 + os_strlen(query));
2579 wpabuf_put_u8(tlvs, P2P_SERV_UPNP); /* Service Protocol Type */
2580 wpabuf_put_u8(tlvs, 1); /* Service Transaction ID */
2581 wpabuf_put_u8(tlvs, version);
2582 wpabuf_put_str(tlvs, query);
2583 ret = wpas_p2p_sd_request(wpa_s, dst, tlvs);
2584 wpabuf_free(tlvs);
2585 return ret;
2586}
2587
2588
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002589#ifdef CONFIG_WIFI_DISPLAY
2590
2591static u64 wpas_p2p_sd_request_wfd(struct wpa_supplicant *wpa_s, const u8 *dst,
2592 const struct wpabuf *tlvs)
2593{
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002594 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
2595 return 0;
2596 return (uintptr_t) p2p_sd_request_wfd(wpa_s->global->p2p, dst, tlvs);
2597}
2598
2599
2600#define MAX_WFD_SD_SUBELEMS 20
2601
2602static void wfd_add_sd_req_role(struct wpabuf *tlvs, u8 id, u8 role,
2603 const char *subelems)
2604{
2605 u8 *len;
2606 const char *pos;
2607 int val;
2608 int count = 0;
2609
2610 len = wpabuf_put(tlvs, 2);
2611 wpabuf_put_u8(tlvs, P2P_SERV_WIFI_DISPLAY); /* Service Protocol Type */
2612 wpabuf_put_u8(tlvs, id); /* Service Transaction ID */
2613
2614 wpabuf_put_u8(tlvs, role);
2615
2616 pos = subelems;
2617 while (*pos) {
2618 val = atoi(pos);
2619 if (val >= 0 && val < 256) {
2620 wpabuf_put_u8(tlvs, val);
2621 count++;
2622 if (count == MAX_WFD_SD_SUBELEMS)
2623 break;
2624 }
2625 pos = os_strchr(pos + 1, ',');
2626 if (pos == NULL)
2627 break;
2628 pos++;
2629 }
2630
2631 WPA_PUT_LE16(len, (u8 *) wpabuf_put(tlvs, 0) - len - 2);
2632}
2633
2634
2635u64 wpas_p2p_sd_request_wifi_display(struct wpa_supplicant *wpa_s,
2636 const u8 *dst, const char *role)
2637{
2638 struct wpabuf *tlvs;
2639 u64 ret;
2640 const char *subelems;
2641 u8 id = 1;
2642
2643 subelems = os_strchr(role, ' ');
2644 if (subelems == NULL)
2645 return 0;
2646 subelems++;
2647
2648 tlvs = wpabuf_alloc(4 * (2 + 1 + 1 + 1 + MAX_WFD_SD_SUBELEMS));
2649 if (tlvs == NULL)
2650 return 0;
2651
2652 if (os_strstr(role, "[source]"))
2653 wfd_add_sd_req_role(tlvs, id++, 0x00, subelems);
2654 if (os_strstr(role, "[pri-sink]"))
2655 wfd_add_sd_req_role(tlvs, id++, 0x01, subelems);
2656 if (os_strstr(role, "[sec-sink]"))
2657 wfd_add_sd_req_role(tlvs, id++, 0x02, subelems);
2658 if (os_strstr(role, "[source+sink]"))
2659 wfd_add_sd_req_role(tlvs, id++, 0x03, subelems);
2660
2661 ret = wpas_p2p_sd_request_wfd(wpa_s, dst, tlvs);
2662 wpabuf_free(tlvs);
2663 return ret;
2664}
2665
2666#endif /* CONFIG_WIFI_DISPLAY */
2667
2668
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002669int wpas_p2p_sd_cancel_request(struct wpa_supplicant *wpa_s, u64 req)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002670{
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002671 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
2672 return -1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002673 return p2p_sd_cancel_request(wpa_s->global->p2p,
2674 (void *) (uintptr_t) req);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002675}
2676
2677
2678void wpas_p2p_sd_response(struct wpa_supplicant *wpa_s, int freq,
2679 const u8 *dst, u8 dialog_token,
2680 const struct wpabuf *resp_tlvs)
2681{
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002682 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
2683 return;
2684 p2p_sd_response(wpa_s->global->p2p, freq, dst, dialog_token,
2685 resp_tlvs);
2686}
2687
Dmitry Shmidteaf261d2013-08-14 15:30:08 -07002688
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002689void wpas_p2p_sd_service_update(struct wpa_supplicant *wpa_s)
2690{
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002691 if (wpa_s->global->p2p)
2692 p2p_sd_service_update(wpa_s->global->p2p);
2693}
2694
2695
2696static void wpas_p2p_srv_bonjour_free(struct p2p_srv_bonjour *bsrv)
2697{
2698 dl_list_del(&bsrv->list);
2699 wpabuf_free(bsrv->query);
2700 wpabuf_free(bsrv->resp);
2701 os_free(bsrv);
2702}
2703
2704
2705static void wpas_p2p_srv_upnp_free(struct p2p_srv_upnp *usrv)
2706{
2707 dl_list_del(&usrv->list);
2708 os_free(usrv->service);
2709 os_free(usrv);
2710}
2711
2712
2713void wpas_p2p_service_flush(struct wpa_supplicant *wpa_s)
2714{
2715 struct p2p_srv_bonjour *bsrv, *bn;
2716 struct p2p_srv_upnp *usrv, *un;
2717
2718 dl_list_for_each_safe(bsrv, bn, &wpa_s->global->p2p_srv_bonjour,
2719 struct p2p_srv_bonjour, list)
2720 wpas_p2p_srv_bonjour_free(bsrv);
2721
2722 dl_list_for_each_safe(usrv, un, &wpa_s->global->p2p_srv_upnp,
2723 struct p2p_srv_upnp, list)
2724 wpas_p2p_srv_upnp_free(usrv);
2725
2726 wpas_p2p_sd_service_update(wpa_s);
2727}
2728
2729
2730int wpas_p2p_service_add_bonjour(struct wpa_supplicant *wpa_s,
2731 struct wpabuf *query, struct wpabuf *resp)
2732{
2733 struct p2p_srv_bonjour *bsrv;
2734
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002735 bsrv = os_zalloc(sizeof(*bsrv));
2736 if (bsrv == NULL)
2737 return -1;
2738 bsrv->query = query;
2739 bsrv->resp = resp;
2740 dl_list_add(&wpa_s->global->p2p_srv_bonjour, &bsrv->list);
2741
2742 wpas_p2p_sd_service_update(wpa_s);
2743 return 0;
2744}
2745
2746
2747int wpas_p2p_service_del_bonjour(struct wpa_supplicant *wpa_s,
2748 const struct wpabuf *query)
2749{
2750 struct p2p_srv_bonjour *bsrv;
2751
2752 bsrv = wpas_p2p_service_get_bonjour(wpa_s, query);
2753 if (bsrv == NULL)
2754 return -1;
2755 wpas_p2p_srv_bonjour_free(bsrv);
2756 wpas_p2p_sd_service_update(wpa_s);
2757 return 0;
2758}
2759
2760
2761int wpas_p2p_service_add_upnp(struct wpa_supplicant *wpa_s, u8 version,
2762 const char *service)
2763{
2764 struct p2p_srv_upnp *usrv;
2765
2766 if (wpas_p2p_service_get_upnp(wpa_s, version, service))
2767 return 0; /* Already listed */
2768 usrv = os_zalloc(sizeof(*usrv));
2769 if (usrv == NULL)
2770 return -1;
2771 usrv->version = version;
2772 usrv->service = os_strdup(service);
2773 if (usrv->service == NULL) {
2774 os_free(usrv);
2775 return -1;
2776 }
2777 dl_list_add(&wpa_s->global->p2p_srv_upnp, &usrv->list);
2778
2779 wpas_p2p_sd_service_update(wpa_s);
2780 return 0;
2781}
2782
2783
2784int wpas_p2p_service_del_upnp(struct wpa_supplicant *wpa_s, u8 version,
2785 const char *service)
2786{
2787 struct p2p_srv_upnp *usrv;
2788
2789 usrv = wpas_p2p_service_get_upnp(wpa_s, version, service);
2790 if (usrv == NULL)
2791 return -1;
2792 wpas_p2p_srv_upnp_free(usrv);
2793 wpas_p2p_sd_service_update(wpa_s);
2794 return 0;
2795}
2796
2797
2798static void wpas_prov_disc_local_display(struct wpa_supplicant *wpa_s,
2799 const u8 *peer, const char *params,
2800 unsigned int generated_pin)
2801{
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002802 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_SHOW_PIN MACSTR
2803 " %08d%s", MAC2STR(peer), generated_pin, params);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002804}
2805
2806
2807static void wpas_prov_disc_local_keypad(struct wpa_supplicant *wpa_s,
2808 const u8 *peer, const char *params)
2809{
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002810 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_ENTER_PIN MACSTR
2811 "%s", MAC2STR(peer), params);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002812}
2813
2814
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002815static void wpas_prov_disc_req(void *ctx, const u8 *peer, u16 config_methods,
2816 const u8 *dev_addr, const u8 *pri_dev_type,
2817 const char *dev_name, u16 supp_config_methods,
2818 u8 dev_capab, u8 group_capab, const u8 *group_id,
2819 size_t group_id_len)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002820{
2821 struct wpa_supplicant *wpa_s = ctx;
2822 char devtype[WPS_DEV_TYPE_BUFSIZE];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002823 char params[300];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002824 u8 empty_dev_type[8];
2825 unsigned int generated_pin = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002826 struct wpa_supplicant *group = NULL;
2827
2828 if (group_id) {
2829 for (group = wpa_s->global->ifaces; group; group = group->next)
2830 {
2831 struct wpa_ssid *s = group->current_ssid;
2832 if (s != NULL &&
2833 s->mode == WPAS_MODE_P2P_GO &&
2834 group_id_len - ETH_ALEN == s->ssid_len &&
2835 os_memcmp(group_id + ETH_ALEN, s->ssid,
2836 s->ssid_len) == 0)
2837 break;
2838 }
2839 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002840
2841 if (pri_dev_type == NULL) {
2842 os_memset(empty_dev_type, 0, sizeof(empty_dev_type));
2843 pri_dev_type = empty_dev_type;
2844 }
2845 os_snprintf(params, sizeof(params), " p2p_dev_addr=" MACSTR
2846 " pri_dev_type=%s name='%s' config_methods=0x%x "
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002847 "dev_capab=0x%x group_capab=0x%x%s%s",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002848 MAC2STR(dev_addr),
2849 wps_dev_type_bin2str(pri_dev_type, devtype,
2850 sizeof(devtype)),
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002851 dev_name, supp_config_methods, dev_capab, group_capab,
2852 group ? " group=" : "",
2853 group ? group->ifname : "");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002854 params[sizeof(params) - 1] = '\0';
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08002855
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002856 if (config_methods & WPS_CONFIG_DISPLAY) {
2857 generated_pin = wps_generate_pin();
2858 wpas_prov_disc_local_display(wpa_s, peer, params,
2859 generated_pin);
2860 } else if (config_methods & WPS_CONFIG_KEYPAD)
2861 wpas_prov_disc_local_keypad(wpa_s, peer, params);
2862 else if (config_methods & WPS_CONFIG_PUSHBUTTON)
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002863 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_REQ
2864 MACSTR "%s", MAC2STR(peer), params);
Jouni Malinen75ecf522011-06-27 15:19:46 -07002865
2866 wpas_notify_p2p_provision_discovery(wpa_s, peer, 1 /* request */,
2867 P2P_PROV_DISC_SUCCESS,
2868 config_methods, generated_pin);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002869}
2870
2871
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002872static void wpas_prov_disc_resp(void *ctx, const u8 *peer, u16 config_methods)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002873{
2874 struct wpa_supplicant *wpa_s = ctx;
2875 unsigned int generated_pin = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002876 char params[20];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002877
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08002878 if (wpa_s->pending_pd_before_join &&
2879 (os_memcmp(peer, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
2880 os_memcmp(peer, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0)) {
2881 wpa_s->pending_pd_before_join = 0;
2882 wpa_printf(MSG_DEBUG, "P2P: Starting pending "
2883 "join-existing-group operation");
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08002884 wpas_p2p_join_start(wpa_s, 0, NULL, 0);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08002885 return;
2886 }
2887
Dmitry Shmidt04949592012-07-19 12:16:46 -07002888 if (wpa_s->pending_pd_use == AUTO_PD_JOIN ||
2889 wpa_s->pending_pd_use == AUTO_PD_GO_NEG)
2890 os_snprintf(params, sizeof(params), " peer_go=%d",
2891 wpa_s->pending_pd_use == AUTO_PD_JOIN);
2892 else
2893 params[0] = '\0';
2894
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002895 if (config_methods & WPS_CONFIG_DISPLAY)
Dmitry Shmidt04949592012-07-19 12:16:46 -07002896 wpas_prov_disc_local_keypad(wpa_s, peer, params);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002897 else if (config_methods & WPS_CONFIG_KEYPAD) {
2898 generated_pin = wps_generate_pin();
Dmitry Shmidt04949592012-07-19 12:16:46 -07002899 wpas_prov_disc_local_display(wpa_s, peer, params,
2900 generated_pin);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002901 } else if (config_methods & WPS_CONFIG_PUSHBUTTON)
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002902 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_RESP
2903 MACSTR "%s", MAC2STR(peer), params);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002904
Jouni Malinen75ecf522011-06-27 15:19:46 -07002905 wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
2906 P2P_PROV_DISC_SUCCESS,
2907 config_methods, generated_pin);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002908}
2909
2910
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002911static void wpas_prov_disc_fail(void *ctx, const u8 *peer,
2912 enum p2p_prov_disc_status status)
Jouni Malinen75ecf522011-06-27 15:19:46 -07002913{
2914 struct wpa_supplicant *wpa_s = ctx;
2915
Dmitry Shmidt04949592012-07-19 12:16:46 -07002916 if (wpa_s->p2p_fallback_to_go_neg) {
2917 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: PD for p2p_connect-auto "
2918 "failed - fall back to GO Negotiation");
2919 wpas_p2p_fallback_to_go_neg(wpa_s, 0);
2920 return;
2921 }
2922
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002923 if (status == P2P_PROV_DISC_TIMEOUT_JOIN) {
Dmitry Shmidt2b380482012-09-13 10:52:13 -07002924 wpa_s->pending_pd_before_join = 0;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002925 wpa_printf(MSG_DEBUG, "P2P: Starting pending "
2926 "join-existing-group operation (no ACK for PD "
2927 "Req attempts)");
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08002928 wpas_p2p_join_start(wpa_s, 0, NULL, 0);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002929 return;
Dmitry Shmidt2b380482012-09-13 10:52:13 -07002930 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002931
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002932 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
2933 " p2p_dev_addr=" MACSTR " status=%d",
2934 MAC2STR(peer), status);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002935
Jouni Malinen75ecf522011-06-27 15:19:46 -07002936 wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
2937 status, 0, 0);
2938}
2939
2940
Dmitry Shmidtf7e0a992013-05-23 11:03:10 -07002941static int freq_included(const struct p2p_channels *channels, unsigned int freq)
2942{
2943 if (channels == NULL)
2944 return 1; /* Assume no restrictions */
2945 return p2p_channels_includes_freq(channels, freq);
2946
2947}
2948
2949
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07002950/**
2951 * Pick the best frequency to use from all the currently used frequencies.
2952 */
2953static int wpas_p2p_pick_best_used_freq(struct wpa_supplicant *wpa_s,
2954 struct wpa_used_freq_data *freqs,
2955 unsigned int num)
2956{
2957 unsigned int i, c;
2958
2959 /* find a candidate freq that is supported by P2P */
2960 for (c = 0; c < num; c++)
2961 if (p2p_supported_freq(wpa_s->global->p2p, freqs[c].freq))
2962 break;
2963
2964 if (c == num)
2965 return 0;
2966
2967 /* once we have a candidate, try to find a 'better' one */
2968 for (i = c + 1; i < num; i++) {
2969 if (!p2p_supported_freq(wpa_s->global->p2p, freqs[i].freq))
2970 continue;
2971
2972 /*
2973 * 1. Infrastructure station interfaces have higher preference.
2974 * 2. P2P Clients have higher preference.
2975 * 3. All others.
2976 */
2977 if (freqs[i].flags & WPA_FREQ_USED_BY_INFRA_STATION) {
2978 c = i;
2979 break;
2980 }
2981
2982 if ((freqs[i].flags & WPA_FREQ_USED_BY_P2P_CLIENT))
2983 c = i;
2984 }
2985 return freqs[c].freq;
2986}
2987
2988
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002989static u8 wpas_invitation_process(void *ctx, const u8 *sa, const u8 *bssid,
2990 const u8 *go_dev_addr, const u8 *ssid,
2991 size_t ssid_len, int *go, u8 *group_bssid,
Dmitry Shmidtf7e0a992013-05-23 11:03:10 -07002992 int *force_freq, int persistent_group,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08002993 const struct p2p_channels *channels,
2994 int dev_pw_id)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002995{
2996 struct wpa_supplicant *wpa_s = ctx;
2997 struct wpa_ssid *s;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07002998 struct wpa_used_freq_data *freqs;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002999 struct wpa_supplicant *grp;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07003000 int best_freq;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003001
3002 if (!persistent_group) {
3003 wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
Dmitry Shmidt344abd32014-01-14 13:17:00 -08003004 " to join an active group (SSID: %s)",
3005 MAC2STR(sa), wpa_ssid_txt(ssid, ssid_len));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003006 if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
3007 (os_memcmp(go_dev_addr, wpa_s->p2p_auth_invite, ETH_ALEN)
3008 == 0 ||
3009 os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0)) {
3010 wpa_printf(MSG_DEBUG, "P2P: Accept previously "
3011 "authorized invitation");
3012 goto accept_inv;
3013 }
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08003014
3015#ifdef CONFIG_WPS_NFC
3016 if (dev_pw_id >= 0 && wpa_s->parent->p2p_nfc_tag_enabled &&
3017 dev_pw_id == wpa_s->parent->p2p_oob_dev_pw_id) {
3018 wpa_printf(MSG_DEBUG, "P2P: Accept invitation based on local enabled NFC Tag");
3019 wpa_s->parent->p2p_wps_method = WPS_NFC;
3020 wpa_s->parent->pending_join_wps_method = WPS_NFC;
3021 os_memcpy(wpa_s->parent->pending_join_dev_addr,
3022 go_dev_addr, ETH_ALEN);
3023 os_memcpy(wpa_s->parent->pending_join_iface_addr,
3024 bssid, ETH_ALEN);
3025 goto accept_inv;
3026 }
3027#endif /* CONFIG_WPS_NFC */
3028
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003029 /*
3030 * Do not accept the invitation automatically; notify user and
3031 * request approval.
3032 */
3033 return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
3034 }
3035
3036 grp = wpas_get_p2p_group(wpa_s, ssid, ssid_len, go);
3037 if (grp) {
3038 wpa_printf(MSG_DEBUG, "P2P: Accept invitation to already "
3039 "running persistent group");
3040 if (*go)
3041 os_memcpy(group_bssid, grp->own_addr, ETH_ALEN);
3042 goto accept_inv;
3043 }
3044
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08003045 if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
3046 os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0) {
3047 wpa_printf(MSG_DEBUG, "P2P: Accept previously initiated "
3048 "invitation to re-invoke a persistent group");
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07003049 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08003050 } else if (!wpa_s->conf->persistent_reconnect)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003051 return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
3052
3053 for (s = wpa_s->conf->ssid; s; s = s->next) {
3054 if (s->disabled == 2 &&
3055 os_memcmp(s->bssid, go_dev_addr, ETH_ALEN) == 0 &&
3056 s->ssid_len == ssid_len &&
3057 os_memcmp(ssid, s->ssid, ssid_len) == 0)
3058 break;
3059 }
3060
3061 if (!s) {
3062 wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
3063 " requested reinvocation of an unknown group",
3064 MAC2STR(sa));
3065 return P2P_SC_FAIL_UNKNOWN_GROUP;
3066 }
3067
3068 if (s->mode == WPAS_MODE_P2P_GO && !wpas_p2p_create_iface(wpa_s)) {
3069 *go = 1;
3070 if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
3071 wpa_printf(MSG_DEBUG, "P2P: The only available "
3072 "interface is already in use - reject "
3073 "invitation");
3074 return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
3075 }
3076 os_memcpy(group_bssid, wpa_s->own_addr, ETH_ALEN);
3077 } else if (s->mode == WPAS_MODE_P2P_GO) {
3078 *go = 1;
3079 if (wpas_p2p_add_group_interface(wpa_s, WPA_IF_P2P_GO) < 0)
3080 {
3081 wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
3082 "interface address for the group");
3083 return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
3084 }
3085 os_memcpy(group_bssid, wpa_s->pending_interface_addr,
3086 ETH_ALEN);
3087 }
3088
3089accept_inv:
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003090 wpas_p2p_set_own_freq_preference(wpa_s, 0);
3091
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07003092 best_freq = 0;
3093 freqs = os_calloc(wpa_s->num_multichan_concurrent,
3094 sizeof(struct wpa_used_freq_data));
3095 if (freqs) {
3096 int num_channels = wpa_s->num_multichan_concurrent;
3097 int num = wpas_p2p_valid_oper_freqs(wpa_s, freqs, num_channels);
3098 best_freq = wpas_p2p_pick_best_used_freq(wpa_s, freqs, num);
3099 os_free(freqs);
3100 }
3101
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07003102 /* Get one of the frequencies currently in use */
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07003103 if (best_freq > 0) {
Dmitry Shmidta0d265f2013-11-19 13:13:41 -08003104 wpa_printf(MSG_DEBUG, "P2P: Trying to prefer a channel already used by one of the interfaces");
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07003105 wpas_p2p_set_own_freq_preference(wpa_s, best_freq);
Dmitry Shmidta0d265f2013-11-19 13:13:41 -08003106
3107 if (wpa_s->num_multichan_concurrent < 2 ||
3108 wpas_p2p_num_unused_channels(wpa_s) < 1) {
3109 wpa_printf(MSG_DEBUG, "P2P: No extra channels available - trying to force channel to match a channel already used by one of the interfaces");
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07003110 *force_freq = best_freq;
Dmitry Shmidta0d265f2013-11-19 13:13:41 -08003111 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003112 }
3113
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07003114 if (*force_freq > 0 && wpa_s->num_multichan_concurrent > 1 &&
3115 wpas_p2p_num_unused_channels(wpa_s) > 0) {
Dmitry Shmidtf7e0a992013-05-23 11:03:10 -07003116 if (*go == 0) {
3117 /* We are the client */
3118 wpa_printf(MSG_DEBUG, "P2P: Peer was found to be "
3119 "running a GO but we are capable of MCC, "
3120 "figure out the best channel to use");
3121 *force_freq = 0;
3122 } else if (!freq_included(channels, *force_freq)) {
3123 /* We are the GO, and *force_freq is not in the
3124 * intersection */
3125 wpa_printf(MSG_DEBUG, "P2P: Forced GO freq %d MHz not "
3126 "in intersection but we are capable of MCC, "
3127 "figure out the best channel to use",
3128 *force_freq);
3129 *force_freq = 0;
3130 }
3131 }
3132
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003133 return P2P_SC_SUCCESS;
3134}
3135
3136
3137static void wpas_invitation_received(void *ctx, const u8 *sa, const u8 *bssid,
3138 const u8 *ssid, size_t ssid_len,
3139 const u8 *go_dev_addr, u8 status,
3140 int op_freq)
3141{
3142 struct wpa_supplicant *wpa_s = ctx;
3143 struct wpa_ssid *s;
3144
3145 for (s = wpa_s->conf->ssid; s; s = s->next) {
3146 if (s->disabled == 2 &&
3147 s->ssid_len == ssid_len &&
3148 os_memcmp(ssid, s->ssid, ssid_len) == 0)
3149 break;
3150 }
3151
3152 if (status == P2P_SC_SUCCESS) {
3153 wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
Dmitry Shmidt344abd32014-01-14 13:17:00 -08003154 " was accepted; op_freq=%d MHz, SSID=%s",
3155 MAC2STR(sa), op_freq, wpa_ssid_txt(ssid, ssid_len));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003156 if (s) {
Dmitry Shmidt91c40cd2012-09-25 14:23:53 -07003157 int go = s->mode == WPAS_MODE_P2P_GO;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003158 wpas_p2p_group_add_persistent(
Dmitry Shmidt15907092014-03-25 10:42:57 -07003159 wpa_s, s, go, 0, op_freq, 0, 0, NULL,
Dmitry Shmidt56052862013-10-04 10:23:25 -07003160 go ? P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE : 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003161 } else if (bssid) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003162 wpa_s->user_initiated_pd = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003163 wpas_p2p_join(wpa_s, bssid, go_dev_addr,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08003164 wpa_s->p2p_wps_method, 0, op_freq,
Dmitry Shmidt344abd32014-01-14 13:17:00 -08003165 ssid, ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003166 }
3167 return;
3168 }
3169
3170 if (status != P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
3171 wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
3172 " was rejected (status %u)", MAC2STR(sa), status);
3173 return;
3174 }
3175
3176 if (!s) {
3177 if (bssid) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07003178 wpa_msg_global(wpa_s, MSG_INFO,
3179 P2P_EVENT_INVITATION_RECEIVED
3180 "sa=" MACSTR " go_dev_addr=" MACSTR
3181 " bssid=" MACSTR " unknown-network",
3182 MAC2STR(sa), MAC2STR(go_dev_addr),
3183 MAC2STR(bssid));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003184 } else {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07003185 wpa_msg_global(wpa_s, MSG_INFO,
3186 P2P_EVENT_INVITATION_RECEIVED
3187 "sa=" MACSTR " go_dev_addr=" MACSTR
3188 " unknown-network",
3189 MAC2STR(sa), MAC2STR(go_dev_addr));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003190 }
3191 return;
3192 }
3193
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08003194 if (s->mode == WPAS_MODE_P2P_GO && op_freq) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07003195 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
3196 "sa=" MACSTR " persistent=%d freq=%d",
3197 MAC2STR(sa), s->id, op_freq);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08003198 } else {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07003199 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
3200 "sa=" MACSTR " persistent=%d",
3201 MAC2STR(sa), s->id);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08003202 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003203}
3204
3205
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003206static void wpas_remove_persistent_peer(struct wpa_supplicant *wpa_s,
3207 struct wpa_ssid *ssid,
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07003208 const u8 *peer, int inv)
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003209{
3210 size_t i;
3211
3212 if (ssid == NULL)
3213 return;
3214
3215 for (i = 0; ssid->p2p_client_list && i < ssid->num_p2p_clients; i++) {
3216 if (os_memcmp(ssid->p2p_client_list + i * ETH_ALEN, peer,
3217 ETH_ALEN) == 0)
3218 break;
3219 }
Dmitry Shmidt6aa8ae42014-07-07 09:31:33 -07003220 if (i >= ssid->num_p2p_clients || !ssid->p2p_client_list) {
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003221 if (ssid->mode != WPAS_MODE_P2P_GO &&
3222 os_memcmp(ssid->bssid, peer, ETH_ALEN) == 0) {
3223 wpa_printf(MSG_DEBUG, "P2P: Remove persistent group %d "
3224 "due to invitation result", ssid->id);
3225 wpas_notify_network_removed(wpa_s, ssid);
3226 wpa_config_remove_network(wpa_s->conf, ssid->id);
3227 return;
3228 }
3229 return; /* Peer not found in client list */
3230 }
3231
3232 wpa_printf(MSG_DEBUG, "P2P: Remove peer " MACSTR " from persistent "
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07003233 "group %d client list%s",
3234 MAC2STR(peer), ssid->id,
3235 inv ? " due to invitation result" : "");
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003236 os_memmove(ssid->p2p_client_list + i * ETH_ALEN,
3237 ssid->p2p_client_list + (i + 1) * ETH_ALEN,
3238 (ssid->num_p2p_clients - i - 1) * ETH_ALEN);
3239 ssid->num_p2p_clients--;
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003240 if (wpa_s->parent->conf->update_config &&
3241 wpa_config_write(wpa_s->parent->confname, wpa_s->parent->conf))
3242 wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003243}
3244
3245
3246static void wpas_remove_persistent_client(struct wpa_supplicant *wpa_s,
3247 const u8 *peer)
3248{
3249 struct wpa_ssid *ssid;
3250
3251 wpa_s = wpa_s->global->p2p_invite_group;
3252 if (wpa_s == NULL)
3253 return; /* No known invitation group */
3254 ssid = wpa_s->current_ssid;
3255 if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
3256 !ssid->p2p_persistent_group)
3257 return; /* Not operating as a GO in persistent group */
3258 ssid = wpas_p2p_get_persistent(wpa_s->parent, peer,
3259 ssid->ssid, ssid->ssid_len);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07003260 wpas_remove_persistent_peer(wpa_s, ssid, peer, 1);
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003261}
3262
3263
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08003264static void wpas_invitation_result(void *ctx, int status, const u8 *bssid,
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003265 const struct p2p_channels *channels,
Dmitry Shmidt15907092014-03-25 10:42:57 -07003266 const u8 *peer, int neg_freq,
3267 int peer_oper_freq)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003268{
3269 struct wpa_supplicant *wpa_s = ctx;
3270 struct wpa_ssid *ssid;
Dmitry Shmidt15907092014-03-25 10:42:57 -07003271 int freq;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003272
3273 if (bssid) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07003274 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
3275 "status=%d " MACSTR,
3276 status, MAC2STR(bssid));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003277 } else {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07003278 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
3279 "status=%d ", status);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003280 }
3281 wpas_notify_p2p_invitation_result(wpa_s, status, bssid);
3282
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003283 wpa_printf(MSG_DEBUG, "P2P: Invitation result - status=%d peer=" MACSTR,
3284 status, MAC2STR(peer));
3285 if (wpa_s->pending_invite_ssid_id == -1) {
3286 if (status == P2P_SC_FAIL_UNKNOWN_GROUP)
3287 wpas_remove_persistent_client(wpa_s, peer);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003288 return; /* Invitation to active group */
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003289 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003290
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08003291 if (status == P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
3292 wpa_printf(MSG_DEBUG, "P2P: Waiting for peer to start another "
3293 "invitation exchange to indicate readiness for "
3294 "re-invocation");
3295 }
3296
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003297 if (status != P2P_SC_SUCCESS) {
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003298 if (status == P2P_SC_FAIL_UNKNOWN_GROUP) {
3299 ssid = wpa_config_get_network(
3300 wpa_s->conf, wpa_s->pending_invite_ssid_id);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07003301 wpas_remove_persistent_peer(wpa_s, ssid, peer, 1);
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003302 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003303 wpas_p2p_remove_pending_group_interface(wpa_s);
3304 return;
3305 }
3306
3307 ssid = wpa_config_get_network(wpa_s->conf,
3308 wpa_s->pending_invite_ssid_id);
3309 if (ssid == NULL) {
3310 wpa_printf(MSG_ERROR, "P2P: Could not find persistent group "
3311 "data matching with invitation");
3312 return;
3313 }
3314
Jouni Malinen2c5b17d2012-10-13 21:52:46 -07003315 /*
3316 * The peer could have missed our ctrl::ack frame for Invitation
3317 * Response and continue retransmitting the frame. To reduce the
3318 * likelihood of the peer not getting successful TX status for the
3319 * Invitation Response frame, wait a short time here before starting
3320 * the persistent group so that we will remain on the current channel to
3321 * acknowledge any possible retransmission from the peer.
3322 */
3323 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: 50 ms wait on current channel before "
3324 "starting persistent group");
3325 os_sleep(0, 50000);
3326
Dmitry Shmidt15907092014-03-25 10:42:57 -07003327 if (neg_freq > 0 && ssid->mode == WPAS_MODE_P2P_GO &&
3328 freq_included(channels, neg_freq))
3329 freq = neg_freq;
3330 else if (peer_oper_freq > 0 && ssid->mode != WPAS_MODE_P2P_GO &&
3331 freq_included(channels, peer_oper_freq))
3332 freq = peer_oper_freq;
3333 else
3334 freq = 0;
3335
3336 wpa_printf(MSG_DEBUG, "P2P: Persistent group invitation success - op_freq=%d MHz SSID=%s",
3337 freq, wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003338 wpas_p2p_group_add_persistent(wpa_s, ssid,
Jouni Malinen31be0a42012-08-31 21:20:51 +03003339 ssid->mode == WPAS_MODE_P2P_GO,
Dmitry Shmidt96be6222014-02-13 10:16:51 -08003340 wpa_s->p2p_persistent_go_freq,
Dmitry Shmidt15907092014-03-25 10:42:57 -07003341 freq,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003342 wpa_s->p2p_go_ht40, wpa_s->p2p_go_vht,
3343 channels,
Dmitry Shmidt56052862013-10-04 10:23:25 -07003344 ssid->mode == WPAS_MODE_P2P_GO ?
3345 P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE :
3346 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003347}
3348
3349
Dmitry Shmidt04949592012-07-19 12:16:46 -07003350static int wpas_p2p_disallowed_freq(struct wpa_global *global,
3351 unsigned int freq)
3352{
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08003353 if (freq_range_list_includes(&global->p2p_go_avoid_freq, freq))
3354 return 1;
Dmitry Shmidt4ce9c872013-10-24 11:08:13 -07003355 return freq_range_list_includes(&global->p2p_disallow_freq, freq);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003356}
3357
3358
3359static void wpas_p2p_add_chan(struct p2p_reg_class *reg, u8 chan)
3360{
3361 reg->channel[reg->channels] = chan;
3362 reg->channels++;
3363}
3364
3365
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003366static int wpas_p2p_default_channels(struct wpa_supplicant *wpa_s,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003367 struct p2p_channels *chan,
3368 struct p2p_channels *cli_chan)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003369{
3370 int i, cla = 0;
3371
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003372 os_memset(cli_chan, 0, sizeof(*cli_chan));
3373
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003374 wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for 2.4 GHz "
3375 "band");
3376
3377 /* Operating class 81 - 2.4 GHz band channels 1..13 */
3378 chan->reg_class[cla].reg_class = 81;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003379 chan->reg_class[cla].channels = 0;
3380 for (i = 0; i < 11; i++) {
3381 if (!wpas_p2p_disallowed_freq(wpa_s->global, 2412 + i * 5))
3382 wpas_p2p_add_chan(&chan->reg_class[cla], i + 1);
3383 }
3384 if (chan->reg_class[cla].channels)
3385 cla++;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003386
3387 wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for lower 5 GHz "
3388 "band");
3389
3390 /* Operating class 115 - 5 GHz, channels 36-48 */
3391 chan->reg_class[cla].reg_class = 115;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003392 chan->reg_class[cla].channels = 0;
3393 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 36 * 5))
3394 wpas_p2p_add_chan(&chan->reg_class[cla], 36);
3395 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 40 * 5))
3396 wpas_p2p_add_chan(&chan->reg_class[cla], 40);
3397 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 44 * 5))
3398 wpas_p2p_add_chan(&chan->reg_class[cla], 44);
3399 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 48 * 5))
3400 wpas_p2p_add_chan(&chan->reg_class[cla], 48);
3401 if (chan->reg_class[cla].channels)
3402 cla++;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003403
3404 wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for higher 5 GHz "
3405 "band");
3406
3407 /* Operating class 124 - 5 GHz, channels 149,153,157,161 */
3408 chan->reg_class[cla].reg_class = 124;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003409 chan->reg_class[cla].channels = 0;
3410 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 149 * 5))
3411 wpas_p2p_add_chan(&chan->reg_class[cla], 149);
3412 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 153 * 5))
3413 wpas_p2p_add_chan(&chan->reg_class[cla], 153);
3414 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 156 * 5))
3415 wpas_p2p_add_chan(&chan->reg_class[cla], 157);
3416 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 161 * 5))
3417 wpas_p2p_add_chan(&chan->reg_class[cla], 161);
3418 if (chan->reg_class[cla].channels)
3419 cla++;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003420
3421 chan->reg_classes = cla;
3422 return 0;
3423}
3424
3425
3426static struct hostapd_hw_modes * get_mode(struct hostapd_hw_modes *modes,
3427 u16 num_modes,
3428 enum hostapd_hw_mode mode)
3429{
3430 u16 i;
3431
3432 for (i = 0; i < num_modes; i++) {
3433 if (modes[i].mode == mode)
3434 return &modes[i];
3435 }
3436
3437 return NULL;
3438}
3439
3440
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003441enum chan_allowed {
3442 NOT_ALLOWED, PASSIVE_ONLY, ALLOWED
3443};
3444
Dmitry Shmidt04949592012-07-19 12:16:46 -07003445static int has_channel(struct wpa_global *global,
3446 struct hostapd_hw_modes *mode, u8 chan, int *flags)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003447{
3448 int i;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003449 unsigned int freq;
3450
3451 freq = (mode->mode == HOSTAPD_MODE_IEEE80211A ? 5000 : 2407) +
3452 chan * 5;
3453 if (wpas_p2p_disallowed_freq(global, freq))
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003454 return NOT_ALLOWED;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003455
3456 for (i = 0; i < mode->num_channels; i++) {
3457 if (mode->channels[i].chan == chan) {
3458 if (flags)
3459 *flags = mode->channels[i].flag;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003460 if (mode->channels[i].flag &
3461 (HOSTAPD_CHAN_DISABLED |
3462 HOSTAPD_CHAN_RADAR))
3463 return NOT_ALLOWED;
3464 if (mode->channels[i].flag &
3465 (HOSTAPD_CHAN_PASSIVE_SCAN |
3466 HOSTAPD_CHAN_NO_IBSS))
3467 return PASSIVE_ONLY;
3468 return ALLOWED;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003469 }
3470 }
3471
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003472 return NOT_ALLOWED;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003473}
3474
3475
3476struct p2p_oper_class_map {
3477 enum hostapd_hw_mode mode;
3478 u8 op_class;
3479 u8 min_chan;
3480 u8 max_chan;
3481 u8 inc;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003482 enum { BW20, BW40PLUS, BW40MINUS, BW80, BW2160 } bw;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003483};
3484
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003485static struct p2p_oper_class_map op_class[] = {
3486 { HOSTAPD_MODE_IEEE80211G, 81, 1, 13, 1, BW20 },
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003487#if 0 /* Do not enable HT40 on 2 GHz for now */
3488 { HOSTAPD_MODE_IEEE80211G, 83, 1, 9, 1, BW40PLUS },
3489 { HOSTAPD_MODE_IEEE80211G, 84, 5, 13, 1, BW40MINUS },
3490#endif
3491 { HOSTAPD_MODE_IEEE80211A, 115, 36, 48, 4, BW20 },
3492 { HOSTAPD_MODE_IEEE80211A, 124, 149, 161, 4, BW20 },
3493 { HOSTAPD_MODE_IEEE80211A, 116, 36, 44, 8, BW40PLUS },
3494 { HOSTAPD_MODE_IEEE80211A, 117, 40, 48, 8, BW40MINUS },
3495 { HOSTAPD_MODE_IEEE80211A, 126, 149, 157, 8, BW40PLUS },
3496 { HOSTAPD_MODE_IEEE80211A, 127, 153, 161, 8, BW40MINUS },
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003497
3498 /*
3499 * IEEE P802.11ac/D7.0 Table E-4 actually talks about channel center
3500 * frequency index 42, 58, 106, 122, 138, 155 with channel spacing of
3501 * 80 MHz, but currently use the following definition for simplicity
3502 * (these center frequencies are not actual channels, which makes
3503 * has_channel() fail). wpas_p2p_verify_80mhz() should take care of
3504 * removing invalid channels.
3505 */
3506 { HOSTAPD_MODE_IEEE80211A, 128, 36, 161, 4, BW80 },
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003507 { HOSTAPD_MODE_IEEE80211AD, 180, 1, 4, 1, BW2160 },
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003508 { -1, 0, 0, 0, 0, BW20 }
3509};
3510
3511
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003512static int wpas_p2p_get_center_80mhz(struct wpa_supplicant *wpa_s,
3513 struct hostapd_hw_modes *mode,
3514 u8 channel)
3515{
3516 u8 center_channels[] = { 42, 58, 106, 122, 138, 155 };
3517 unsigned int i;
3518
3519 if (mode->mode != HOSTAPD_MODE_IEEE80211A)
3520 return 0;
3521
3522 for (i = 0; i < ARRAY_SIZE(center_channels); i++)
3523 /*
3524 * In 80 MHz, the bandwidth "spans" 12 channels (e.g., 36-48),
3525 * so the center channel is 6 channels away from the start/end.
3526 */
3527 if (channel >= center_channels[i] - 6 &&
3528 channel <= center_channels[i] + 6)
3529 return center_channels[i];
3530
3531 return 0;
3532}
3533
3534
3535static enum chan_allowed wpas_p2p_verify_80mhz(struct wpa_supplicant *wpa_s,
3536 struct hostapd_hw_modes *mode,
3537 u8 channel, u8 bw)
3538{
3539 u8 center_chan;
3540 int i, flags;
3541 enum chan_allowed res, ret = ALLOWED;
3542
3543 center_chan = wpas_p2p_get_center_80mhz(wpa_s, mode, channel);
3544 if (!center_chan)
3545 return NOT_ALLOWED;
3546 if (center_chan >= 58 && center_chan <= 138)
3547 return NOT_ALLOWED; /* Do not allow DFS channels for P2P */
3548
3549 /* check all the channels are available */
3550 for (i = 0; i < 4; i++) {
3551 int adj_chan = center_chan - 6 + i * 4;
3552
3553 res = has_channel(wpa_s->global, mode, adj_chan, &flags);
3554 if (res == NOT_ALLOWED)
3555 return NOT_ALLOWED;
3556 if (res == PASSIVE_ONLY)
3557 ret = PASSIVE_ONLY;
3558
3559 if (i == 0 && !(flags & HOSTAPD_CHAN_VHT_10_70))
3560 return NOT_ALLOWED;
3561 if (i == 1 && !(flags & HOSTAPD_CHAN_VHT_30_50))
3562 return NOT_ALLOWED;
3563 if (i == 2 && !(flags & HOSTAPD_CHAN_VHT_50_30))
3564 return NOT_ALLOWED;
3565 if (i == 3 && !(flags & HOSTAPD_CHAN_VHT_70_10))
3566 return NOT_ALLOWED;
3567 }
3568
3569 return ret;
3570}
3571
3572
3573static enum chan_allowed wpas_p2p_verify_channel(struct wpa_supplicant *wpa_s,
3574 struct hostapd_hw_modes *mode,
3575 u8 channel, u8 bw)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003576{
Dmitry Shmidt96be6222014-02-13 10:16:51 -08003577 int flag = 0;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003578 enum chan_allowed res, res2;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003579
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003580 res2 = res = has_channel(wpa_s->global, mode, channel, &flag);
3581 if (bw == BW40MINUS) {
3582 if (!(flag & HOSTAPD_CHAN_HT40MINUS))
3583 return NOT_ALLOWED;
3584 res2 = has_channel(wpa_s->global, mode, channel - 4, NULL);
3585 } else if (bw == BW40PLUS) {
3586 if (!(flag & HOSTAPD_CHAN_HT40PLUS))
3587 return NOT_ALLOWED;
3588 res2 = has_channel(wpa_s->global, mode, channel + 4, NULL);
3589 } else if (bw == BW80) {
3590 res2 = wpas_p2p_verify_80mhz(wpa_s, mode, channel, bw);
3591 }
3592
3593 if (res == NOT_ALLOWED || res2 == NOT_ALLOWED)
3594 return NOT_ALLOWED;
3595 if (res == PASSIVE_ONLY || res2 == PASSIVE_ONLY)
3596 return PASSIVE_ONLY;
3597 return res;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003598}
3599
3600
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003601static int wpas_p2p_setup_channels(struct wpa_supplicant *wpa_s,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003602 struct p2p_channels *chan,
3603 struct p2p_channels *cli_chan)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003604{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003605 struct hostapd_hw_modes *mode;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003606 int cla, op, cli_cla;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003607
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003608 if (wpa_s->hw.modes == NULL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003609 wpa_printf(MSG_DEBUG, "P2P: Driver did not support fetching "
3610 "of all supported channels; assume dualband "
3611 "support");
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003612 return wpas_p2p_default_channels(wpa_s, chan, cli_chan);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003613 }
3614
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003615 cla = cli_cla = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003616
3617 for (op = 0; op_class[op].op_class; op++) {
3618 struct p2p_oper_class_map *o = &op_class[op];
3619 u8 ch;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003620 struct p2p_reg_class *reg = NULL, *cli_reg = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003621
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003622 mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, o->mode);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003623 if (mode == NULL)
3624 continue;
3625 for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003626 enum chan_allowed res;
3627 res = wpas_p2p_verify_channel(wpa_s, mode, ch, o->bw);
3628 if (res == ALLOWED) {
3629 if (reg == NULL) {
3630 wpa_printf(MSG_DEBUG, "P2P: Add operating class %u",
3631 o->op_class);
3632 reg = &chan->reg_class[cla];
3633 cla++;
3634 reg->reg_class = o->op_class;
3635 }
3636 reg->channel[reg->channels] = ch;
3637 reg->channels++;
3638 } else if (res == PASSIVE_ONLY &&
3639 wpa_s->conf->p2p_add_cli_chan) {
3640 if (cli_reg == NULL) {
3641 wpa_printf(MSG_DEBUG, "P2P: Add operating class %u (client only)",
3642 o->op_class);
3643 cli_reg = &cli_chan->reg_class[cli_cla];
3644 cli_cla++;
3645 cli_reg->reg_class = o->op_class;
3646 }
3647 cli_reg->channel[cli_reg->channels] = ch;
3648 cli_reg->channels++;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003649 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003650 }
3651 if (reg) {
3652 wpa_hexdump(MSG_DEBUG, "P2P: Channels",
3653 reg->channel, reg->channels);
3654 }
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003655 if (cli_reg) {
3656 wpa_hexdump(MSG_DEBUG, "P2P: Channels (client only)",
3657 cli_reg->channel, cli_reg->channels);
3658 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003659 }
3660
3661 chan->reg_classes = cla;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003662 cli_chan->reg_classes = cli_cla;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003663
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003664 return 0;
3665}
3666
3667
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003668int wpas_p2p_get_ht40_mode(struct wpa_supplicant *wpa_s,
3669 struct hostapd_hw_modes *mode, u8 channel)
3670{
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003671 int op;
3672 enum chan_allowed ret;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003673
3674 for (op = 0; op_class[op].op_class; op++) {
3675 struct p2p_oper_class_map *o = &op_class[op];
3676 u8 ch;
3677
3678 for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
3679 if (o->mode != HOSTAPD_MODE_IEEE80211A ||
3680 o->bw == BW20 || ch != channel)
3681 continue;
3682 ret = wpas_p2p_verify_channel(wpa_s, mode, ch, o->bw);
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003683 if (ret == ALLOWED)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003684 return (o->bw == BW40MINUS) ? -1 : 1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003685 }
3686 }
3687 return 0;
3688}
3689
3690
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003691int wpas_p2p_get_vht80_center(struct wpa_supplicant *wpa_s,
3692 struct hostapd_hw_modes *mode, u8 channel)
3693{
3694 if (!wpas_p2p_verify_channel(wpa_s, mode, channel, BW80))
3695 return 0;
3696
3697 return wpas_p2p_get_center_80mhz(wpa_s, mode, channel);
3698}
3699
3700
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003701static int wpas_get_noa(void *ctx, const u8 *interface_addr, u8 *buf,
3702 size_t buf_len)
3703{
3704 struct wpa_supplicant *wpa_s = ctx;
3705
3706 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
3707 if (os_memcmp(wpa_s->own_addr, interface_addr, ETH_ALEN) == 0)
3708 break;
3709 }
3710 if (wpa_s == NULL)
3711 return -1;
3712
3713 return wpa_drv_get_noa(wpa_s, buf, buf_len);
3714}
3715
3716
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07003717struct wpa_supplicant * wpas_get_p2p_go_iface(struct wpa_supplicant *wpa_s,
3718 const u8 *ssid, size_t ssid_len)
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003719{
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07003720 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
3721 struct wpa_ssid *s = wpa_s->current_ssid;
3722 if (s == NULL)
3723 continue;
3724 if (s->mode != WPAS_MODE_P2P_GO &&
3725 s->mode != WPAS_MODE_AP &&
3726 s->mode != WPAS_MODE_P2P_GROUP_FORMATION)
3727 continue;
3728 if (s->ssid_len != ssid_len ||
Dmitry Shmidt03658832014-08-13 11:03:49 -07003729 os_memcmp(ssid, s->ssid, ssid_len) != 0)
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07003730 continue;
3731 return wpa_s;
3732 }
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003733
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07003734 return NULL;
3735
3736}
3737
3738
3739struct wpa_supplicant * wpas_get_p2p_client_iface(struct wpa_supplicant *wpa_s,
3740 const u8 *peer_dev_addr)
3741{
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003742 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
3743 struct wpa_ssid *ssid = wpa_s->current_ssid;
3744 if (ssid == NULL)
3745 continue;
3746 if (ssid->mode != WPAS_MODE_INFRA)
3747 continue;
3748 if (wpa_s->wpa_state != WPA_COMPLETED &&
3749 wpa_s->wpa_state != WPA_GROUP_HANDSHAKE)
3750 continue;
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07003751 if (os_memcmp(wpa_s->go_dev_addr, peer_dev_addr, ETH_ALEN) == 0)
3752 return wpa_s;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003753 }
3754
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07003755 return NULL;
3756}
3757
3758
3759static int wpas_go_connected(void *ctx, const u8 *dev_addr)
3760{
3761 struct wpa_supplicant *wpa_s = ctx;
3762
3763 return wpas_get_p2p_client_iface(wpa_s, dev_addr) != NULL;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003764}
3765
3766
Dmitry Shmidt18463232014-01-24 12:29:41 -08003767static int wpas_is_concurrent_session_active(void *ctx)
3768{
3769 struct wpa_supplicant *wpa_s = ctx;
3770 struct wpa_supplicant *ifs;
3771
3772 for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
3773 if (ifs == wpa_s)
3774 continue;
3775 if (ifs->wpa_state > WPA_ASSOCIATED)
3776 return 1;
3777 }
3778 return 0;
3779}
3780
3781
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07003782static void wpas_p2p_debug_print(void *ctx, int level, const char *msg)
3783{
3784 struct wpa_supplicant *wpa_s = ctx;
3785 wpa_msg_global(wpa_s, level, "P2P: %s", msg);
3786}
3787
3788
Dmitry Shmidt34af3062013-07-11 10:46:32 -07003789int wpas_p2p_add_p2pdev_interface(struct wpa_supplicant *wpa_s)
3790{
3791 struct wpa_interface iface;
3792 struct wpa_supplicant *p2pdev_wpa_s;
3793 char ifname[100];
3794 char force_name[100];
3795 int ret;
3796
3797 os_snprintf(ifname, sizeof(ifname), P2P_MGMT_DEVICE_PREFIX "%s",
3798 wpa_s->ifname);
3799 force_name[0] = '\0';
3800 wpa_s->pending_interface_type = WPA_IF_P2P_DEVICE;
3801 ret = wpa_drv_if_add(wpa_s, WPA_IF_P2P_DEVICE, ifname, NULL, NULL,
3802 force_name, wpa_s->pending_interface_addr, NULL);
3803 if (ret < 0) {
3804 wpa_printf(MSG_DEBUG, "P2P: Failed to create P2P Device interface");
3805 return ret;
3806 }
3807 os_strlcpy(wpa_s->pending_interface_name, ifname,
3808 sizeof(wpa_s->pending_interface_name));
3809
3810 os_memset(&iface, 0, sizeof(iface));
3811 iface.p2p_mgmt = 1;
3812 iface.ifname = wpa_s->pending_interface_name;
3813 iface.driver = wpa_s->driver->name;
3814 iface.driver_param = wpa_s->conf->driver_param;
Dmitry Shmidt2ac5f602014-03-07 10:08:21 -08003815
3816 /*
3817 * If a P2P Device configuration file was given, use it as the interface
3818 * configuration file (instead of using parent's configuration file.
3819 */
3820 if (wpa_s->conf_p2p_dev) {
3821 iface.confname = wpa_s->conf_p2p_dev;
3822 iface.ctrl_interface = NULL;
3823 } else {
3824 iface.confname = wpa_s->confname;
3825 iface.ctrl_interface = wpa_s->conf->ctrl_interface;
3826 }
3827 iface.conf_p2p_dev = NULL;
3828
Dmitry Shmidt34af3062013-07-11 10:46:32 -07003829 p2pdev_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface);
3830 if (!p2pdev_wpa_s) {
3831 wpa_printf(MSG_DEBUG, "P2P: Failed to add P2P Device interface");
3832 return -1;
3833 }
3834 p2pdev_wpa_s->parent = wpa_s;
3835
3836 wpa_s->pending_interface_name[0] = '\0';
3837 return 0;
3838}
3839
3840
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003841static void wpas_presence_resp(void *ctx, const u8 *src, u8 status,
3842 const u8 *noa, size_t noa_len)
3843{
3844 struct wpa_supplicant *wpa_s, *intf = ctx;
3845 char hex[100];
3846
3847 for (wpa_s = intf->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
3848 if (wpa_s->waiting_presence_resp)
3849 break;
3850 }
3851 if (!wpa_s) {
3852 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No group interface was waiting for presence response");
3853 return;
3854 }
3855 wpa_s->waiting_presence_resp = 0;
3856
3857 wpa_snprintf_hex(hex, sizeof(hex), noa, noa_len);
3858 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PRESENCE_RESPONSE "src=" MACSTR
3859 " status=%u noa=%s", MAC2STR(src), status, hex);
3860}
3861
3862
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -07003863static int _wpas_p2p_in_progress(void *ctx)
3864{
3865 struct wpa_supplicant *wpa_s = ctx;
3866 return wpas_p2p_in_progress(wpa_s);
3867}
3868
3869
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003870/**
3871 * wpas_p2p_init - Initialize P2P module for %wpa_supplicant
3872 * @global: Pointer to global data from wpa_supplicant_init()
3873 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
3874 * Returns: 0 on success, -1 on failure
3875 */
3876int wpas_p2p_init(struct wpa_global *global, struct wpa_supplicant *wpa_s)
3877{
3878 struct p2p_config p2p;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003879 int i;
3880
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07003881 if (wpa_s->conf->p2p_disabled)
3882 return 0;
3883
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003884 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
3885 return 0;
3886
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003887 if (global->p2p)
3888 return 0;
3889
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003890 os_memset(&p2p, 0, sizeof(p2p));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003891 p2p.cb_ctx = wpa_s;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07003892 p2p.debug_print = wpas_p2p_debug_print;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003893 p2p.p2p_scan = wpas_p2p_scan;
3894 p2p.send_action = wpas_send_action;
3895 p2p.send_action_done = wpas_send_action_done;
3896 p2p.go_neg_completed = wpas_go_neg_completed;
3897 p2p.go_neg_req_rx = wpas_go_neg_req_rx;
3898 p2p.dev_found = wpas_dev_found;
3899 p2p.dev_lost = wpas_dev_lost;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07003900 p2p.find_stopped = wpas_find_stopped;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003901 p2p.start_listen = wpas_start_listen;
3902 p2p.stop_listen = wpas_stop_listen;
3903 p2p.send_probe_resp = wpas_send_probe_resp;
3904 p2p.sd_request = wpas_sd_request;
3905 p2p.sd_response = wpas_sd_response;
3906 p2p.prov_disc_req = wpas_prov_disc_req;
3907 p2p.prov_disc_resp = wpas_prov_disc_resp;
Jouni Malinen75ecf522011-06-27 15:19:46 -07003908 p2p.prov_disc_fail = wpas_prov_disc_fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003909 p2p.invitation_process = wpas_invitation_process;
3910 p2p.invitation_received = wpas_invitation_received;
3911 p2p.invitation_result = wpas_invitation_result;
3912 p2p.get_noa = wpas_get_noa;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003913 p2p.go_connected = wpas_go_connected;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003914 p2p.presence_resp = wpas_presence_resp;
Dmitry Shmidt18463232014-01-24 12:29:41 -08003915 p2p.is_concurrent_session_active = wpas_is_concurrent_session_active;
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -07003916 p2p.is_p2p_in_progress = _wpas_p2p_in_progress;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003917
3918 os_memcpy(wpa_s->global->p2p_dev_addr, wpa_s->own_addr, ETH_ALEN);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003919 os_memcpy(p2p.dev_addr, wpa_s->global->p2p_dev_addr, ETH_ALEN);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003920 p2p.dev_name = wpa_s->conf->device_name;
3921 p2p.manufacturer = wpa_s->conf->manufacturer;
3922 p2p.model_name = wpa_s->conf->model_name;
3923 p2p.model_number = wpa_s->conf->model_number;
3924 p2p.serial_number = wpa_s->conf->serial_number;
3925 if (wpa_s->wps) {
3926 os_memcpy(p2p.uuid, wpa_s->wps->uuid, 16);
3927 p2p.config_methods = wpa_s->wps->config_methods;
3928 }
3929
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003930 if (wpas_p2p_setup_channels(wpa_s, &p2p.channels, &p2p.cli_channels)) {
3931 wpa_printf(MSG_ERROR,
3932 "P2P: Failed to configure supported channel list");
3933 return -1;
3934 }
3935
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003936 if (wpa_s->conf->p2p_listen_reg_class &&
3937 wpa_s->conf->p2p_listen_channel) {
3938 p2p.reg_class = wpa_s->conf->p2p_listen_reg_class;
3939 p2p.channel = wpa_s->conf->p2p_listen_channel;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07003940 p2p.channel_forced = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003941 } else {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003942 /*
3943 * Pick one of the social channels randomly as the listen
3944 * channel.
3945 */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003946 if (p2p_config_get_random_social(&p2p, &p2p.reg_class,
3947 &p2p.channel) != 0) {
3948 wpa_printf(MSG_ERROR,
3949 "P2P: Failed to select random social channel as listen channel");
3950 return -1;
3951 }
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07003952 p2p.channel_forced = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003953 }
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003954 wpa_printf(MSG_DEBUG, "P2P: Own listen channel: %d:%d",
3955 p2p.reg_class, p2p.channel);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003956
3957 if (wpa_s->conf->p2p_oper_reg_class &&
3958 wpa_s->conf->p2p_oper_channel) {
3959 p2p.op_reg_class = wpa_s->conf->p2p_oper_reg_class;
3960 p2p.op_channel = wpa_s->conf->p2p_oper_channel;
3961 p2p.cfg_op_channel = 1;
3962 wpa_printf(MSG_DEBUG, "P2P: Configured operating channel: "
3963 "%d:%d", p2p.op_reg_class, p2p.op_channel);
3964
3965 } else {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003966 /*
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003967 * Use random operation channel from 2.4 GHz band social
3968 * channels (1, 6, 11) or band 60 GHz social channel (2) if no
3969 * other preference is indicated.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003970 */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003971 if (p2p_config_get_random_social(&p2p, &p2p.op_reg_class,
3972 &p2p.op_channel) != 0) {
3973 wpa_printf(MSG_ERROR,
3974 "P2P: Failed to select random social channel as operation channel");
3975 return -1;
3976 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003977 p2p.cfg_op_channel = 0;
3978 wpa_printf(MSG_DEBUG, "P2P: Random operating channel: "
3979 "%d:%d", p2p.op_reg_class, p2p.op_channel);
3980 }
Dmitry Shmidt44c95782013-05-17 09:51:35 -07003981
3982 if (wpa_s->conf->p2p_pref_chan && wpa_s->conf->num_p2p_pref_chan) {
3983 p2p.pref_chan = wpa_s->conf->p2p_pref_chan;
3984 p2p.num_pref_chan = wpa_s->conf->num_p2p_pref_chan;
3985 }
3986
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003987 if (wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
3988 os_memcpy(p2p.country, wpa_s->conf->country, 2);
3989 p2p.country[2] = 0x04;
3990 } else
3991 os_memcpy(p2p.country, "XX\x04", 3);
3992
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003993 os_memcpy(p2p.pri_dev_type, wpa_s->conf->device_type,
3994 WPS_DEV_TYPE_LEN);
3995
3996 p2p.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
3997 os_memcpy(p2p.sec_dev_type, wpa_s->conf->sec_device_type,
3998 p2p.num_sec_dev_types * WPS_DEV_TYPE_LEN);
3999
4000 p2p.concurrent_operations = !!(wpa_s->drv_flags &
4001 WPA_DRIVER_FLAGS_P2P_CONCURRENT);
4002
4003 p2p.max_peers = 100;
4004
4005 if (wpa_s->conf->p2p_ssid_postfix) {
4006 p2p.ssid_postfix_len =
4007 os_strlen(wpa_s->conf->p2p_ssid_postfix);
4008 if (p2p.ssid_postfix_len > sizeof(p2p.ssid_postfix))
4009 p2p.ssid_postfix_len = sizeof(p2p.ssid_postfix);
4010 os_memcpy(p2p.ssid_postfix, wpa_s->conf->p2p_ssid_postfix,
4011 p2p.ssid_postfix_len);
4012 }
4013
4014 p2p.p2p_intra_bss = wpa_s->conf->p2p_intra_bss;
4015
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004016 p2p.max_listen = wpa_s->max_remain_on_chan;
4017
Dmitry Shmidt2271d3f2014-06-23 12:16:31 -07004018 if (wpa_s->conf->p2p_passphrase_len >= 8 &&
4019 wpa_s->conf->p2p_passphrase_len <= 63)
4020 p2p.passphrase_len = wpa_s->conf->p2p_passphrase_len;
4021 else
4022 p2p.passphrase_len = 8;
4023
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004024 global->p2p = p2p_init(&p2p);
4025 if (global->p2p == NULL)
4026 return -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004027 global->p2p_init_wpa_s = wpa_s;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004028
4029 for (i = 0; i < MAX_WPS_VENDOR_EXT; i++) {
4030 if (wpa_s->conf->wps_vendor_ext[i] == NULL)
4031 continue;
4032 p2p_add_wps_vendor_extension(
4033 global->p2p, wpa_s->conf->wps_vendor_ext[i]);
4034 }
4035
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004036 p2p_set_no_go_freq(global->p2p, &wpa_s->conf->p2p_no_go_freq);
4037
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004038 return 0;
4039}
4040
4041
4042/**
4043 * wpas_p2p_deinit - Deinitialize per-interface P2P data
4044 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
4045 *
4046 * This function deinitialize per-interface P2P data.
4047 */
4048void wpas_p2p_deinit(struct wpa_supplicant *wpa_s)
4049{
4050 if (wpa_s->driver && wpa_s->drv_priv)
4051 wpa_drv_probe_req_report(wpa_s, 0);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004052
4053 if (wpa_s->go_params) {
4054 /* Clear any stored provisioning info */
4055 p2p_clear_provisioning_info(
4056 wpa_s->global->p2p,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004057 wpa_s->go_params->peer_device_addr);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004058 }
4059
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004060 os_free(wpa_s->go_params);
4061 wpa_s->go_params = NULL;
Dmitry Shmidt684785c2014-05-12 13:34:29 -07004062 eloop_cancel_timeout(wpas_p2p_psk_failure_removal, wpa_s, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004063 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
4064 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
4065 wpa_s->p2p_long_listen = 0;
4066 eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
4067 eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
4068 wpas_p2p_remove_pending_group_interface(wpa_s);
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08004069 eloop_cancel_timeout(wpas_p2p_group_freq_conflict, wpa_s, NULL);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08004070 wpas_p2p_listen_work_done(wpa_s);
4071 if (wpa_s->p2p_send_action_work) {
4072 os_free(wpa_s->p2p_send_action_work->ctx);
4073 radio_work_done(wpa_s->p2p_send_action_work);
4074 wpa_s->p2p_send_action_work = NULL;
4075 }
4076 eloop_cancel_timeout(wpas_p2p_send_action_work_timeout, wpa_s, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004077
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004078 wpabuf_free(wpa_s->p2p_oob_dev_pw);
4079 wpa_s->p2p_oob_dev_pw = NULL;
4080
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004081 /* TODO: remove group interface from the driver if this wpa_s instance
4082 * is on top of a P2P group interface */
4083}
4084
4085
4086/**
4087 * wpas_p2p_deinit_global - Deinitialize global P2P module
4088 * @global: Pointer to global data from wpa_supplicant_init()
4089 *
4090 * This function deinitializes the global (per device) P2P module.
4091 */
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004092static void wpas_p2p_deinit_global(struct wpa_global *global)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004093{
4094 struct wpa_supplicant *wpa_s, *tmp;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004095
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004096 wpa_s = global->ifaces;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004097
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07004098 wpas_p2p_service_flush(global->p2p_init_wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004099
4100 /* Remove remaining P2P group interfaces */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004101 while (wpa_s && wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE)
4102 wpa_s = wpa_s->next;
4103 while (wpa_s) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004104 tmp = global->ifaces;
4105 while (tmp &&
4106 (tmp == wpa_s ||
4107 tmp->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)) {
4108 tmp = tmp->next;
4109 }
4110 if (tmp == NULL)
4111 break;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004112 /* Disconnect from the P2P group and deinit the interface */
4113 wpas_p2p_disconnect(tmp);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004114 }
4115
4116 /*
4117 * Deinit GO data on any possibly remaining interface (if main
4118 * interface is used as GO).
4119 */
4120 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
4121 if (wpa_s->ap_iface)
4122 wpas_p2p_group_deinit(wpa_s);
4123 }
4124
4125 p2p_deinit(global->p2p);
4126 global->p2p = NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004127 global->p2p_init_wpa_s = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004128}
4129
4130
4131static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s)
4132{
Dmitry Shmidt34af3062013-07-11 10:46:32 -07004133 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE) &&
4134 wpa_s->conf->p2p_no_group_iface)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004135 return 0; /* separate interface disabled per configuration */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004136 if (wpa_s->drv_flags &
4137 (WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE |
4138 WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P))
4139 return 1; /* P2P group requires a new interface in every case
4140 */
4141 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CONCURRENT))
4142 return 0; /* driver does not support concurrent operations */
4143 if (wpa_s->global->ifaces->next)
4144 return 1; /* more that one interface already in use */
4145 if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
4146 return 1; /* this interface is already in use */
4147 return 0;
4148}
4149
4150
4151static int wpas_p2p_start_go_neg(struct wpa_supplicant *wpa_s,
4152 const u8 *peer_addr,
4153 enum p2p_wps_method wps_method,
4154 int go_intent, const u8 *own_interface_addr,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004155 unsigned int force_freq, int persistent_group,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004156 struct wpa_ssid *ssid, unsigned int pref_freq)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004157{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004158 if (persistent_group && wpa_s->conf->persistent_reconnect)
4159 persistent_group = 2;
4160
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004161 /*
4162 * Increase GO config timeout if HT40 is used since it takes some time
4163 * to scan channels for coex purposes before the BSS can be started.
4164 */
4165 p2p_set_config_timeout(wpa_s->global->p2p,
4166 wpa_s->p2p_go_ht40 ? 255 : 100, 20);
4167
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004168 return p2p_connect(wpa_s->global->p2p, peer_addr, wps_method,
4169 go_intent, own_interface_addr, force_freq,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004170 persistent_group, ssid ? ssid->ssid : NULL,
4171 ssid ? ssid->ssid_len : 0,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004172 wpa_s->p2p_pd_before_go_neg, pref_freq,
4173 wps_method == WPS_NFC ? wpa_s->p2p_oob_dev_pw_id :
4174 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004175}
4176
4177
4178static int wpas_p2p_auth_go_neg(struct wpa_supplicant *wpa_s,
4179 const u8 *peer_addr,
4180 enum p2p_wps_method wps_method,
4181 int go_intent, const u8 *own_interface_addr,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004182 unsigned int force_freq, int persistent_group,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004183 struct wpa_ssid *ssid, unsigned int pref_freq)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004184{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004185 if (persistent_group && wpa_s->conf->persistent_reconnect)
4186 persistent_group = 2;
4187
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004188 return p2p_authorize(wpa_s->global->p2p, peer_addr, wps_method,
4189 go_intent, own_interface_addr, force_freq,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004190 persistent_group, ssid ? ssid->ssid : NULL,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004191 ssid ? ssid->ssid_len : 0, pref_freq,
4192 wps_method == WPS_NFC ? wpa_s->p2p_oob_dev_pw_id :
4193 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004194}
4195
4196
4197static void wpas_p2p_check_join_scan_limit(struct wpa_supplicant *wpa_s)
4198{
4199 wpa_s->p2p_join_scan_count++;
4200 wpa_printf(MSG_DEBUG, "P2P: Join scan attempt %d",
4201 wpa_s->p2p_join_scan_count);
4202 if (wpa_s->p2p_join_scan_count > P2P_MAX_JOIN_SCAN_ATTEMPTS) {
4203 wpa_printf(MSG_DEBUG, "P2P: Failed to find GO " MACSTR
4204 " for join operationg - stop join attempt",
4205 MAC2STR(wpa_s->pending_join_iface_addr));
4206 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004207 if (wpa_s->p2p_auto_pd) {
4208 wpa_s->p2p_auto_pd = 0;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07004209 wpa_msg_global(wpa_s, MSG_INFO,
4210 P2P_EVENT_PROV_DISC_FAILURE
4211 " p2p_dev_addr=" MACSTR " status=N/A",
4212 MAC2STR(wpa_s->pending_join_dev_addr));
Dmitry Shmidt04949592012-07-19 12:16:46 -07004213 return;
4214 }
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07004215 wpa_msg_global(wpa_s->parent, MSG_INFO,
4216 P2P_EVENT_GROUP_FORMATION_FAILURE);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004217 }
4218}
4219
4220
Dmitry Shmidt04949592012-07-19 12:16:46 -07004221static int wpas_check_freq_conflict(struct wpa_supplicant *wpa_s, int freq)
4222{
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004223 int res;
4224 unsigned int num, i;
4225 struct wpa_used_freq_data *freqs;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004226
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004227 if (wpas_p2p_num_unused_channels(wpa_s) > 0) {
4228 /* Multiple channels are supported and not all are in use */
Dmitry Shmidt04949592012-07-19 12:16:46 -07004229 return 0;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004230 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004231
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004232 freqs = os_calloc(wpa_s->num_multichan_concurrent,
4233 sizeof(struct wpa_used_freq_data));
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004234 if (!freqs)
4235 return 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004236
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004237 num = wpas_p2p_valid_oper_freqs(wpa_s, freqs,
4238 wpa_s->num_multichan_concurrent);
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004239
4240 for (i = 0; i < num; i++) {
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004241 if (freqs[i].freq == freq) {
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004242 wpa_printf(MSG_DEBUG, "P2P: Frequency %d MHz in use by another virtual interface and can be used",
4243 freq);
4244 res = 0;
4245 goto exit_free;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004246 }
4247 }
4248
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004249 wpa_printf(MSG_DEBUG, "P2P: No valid operating frequencies");
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004250 res = 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004251
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004252exit_free:
4253 os_free(freqs);
4254 return res;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004255}
4256
4257
4258static int wpas_p2p_peer_go(struct wpa_supplicant *wpa_s,
4259 const u8 *peer_dev_addr)
4260{
4261 struct wpa_bss *bss;
4262 int updated;
4263
4264 bss = wpa_bss_get_p2p_dev_addr(wpa_s, peer_dev_addr);
4265 if (bss == NULL)
4266 return -1;
4267 if (bss->last_update_idx < wpa_s->bss_update_idx) {
4268 wpa_printf(MSG_DEBUG, "P2P: Peer BSS entry not updated in the "
4269 "last scan");
4270 return 0;
4271 }
4272
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08004273 updated = os_reltime_before(&wpa_s->p2p_auto_started,
4274 &bss->last_update);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004275 wpa_printf(MSG_DEBUG, "P2P: Current BSS entry for peer updated at "
4276 "%ld.%06ld (%supdated in last scan)",
4277 bss->last_update.sec, bss->last_update.usec,
4278 updated ? "": "not ");
4279
4280 return updated;
4281}
4282
4283
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004284static void wpas_p2p_scan_res_join(struct wpa_supplicant *wpa_s,
4285 struct wpa_scan_results *scan_res)
4286{
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004287 struct wpa_bss *bss = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004288 int freq;
4289 u8 iface_addr[ETH_ALEN];
Dmitry Shmidt04949592012-07-19 12:16:46 -07004290
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004291 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
4292
4293 if (wpa_s->global->p2p_disabled)
4294 return;
4295
Dmitry Shmidt04949592012-07-19 12:16:46 -07004296 wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS) for %sjoin",
4297 scan_res ? (int) scan_res->num : -1,
4298 wpa_s->p2p_auto_join ? "auto_" : "");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004299
4300 if (scan_res)
4301 wpas_p2p_scan_res_handler(wpa_s, scan_res);
4302
Dmitry Shmidt04949592012-07-19 12:16:46 -07004303 if (wpa_s->p2p_auto_pd) {
4304 int join = wpas_p2p_peer_go(wpa_s,
4305 wpa_s->pending_join_dev_addr);
4306 if (join == 0 &&
4307 wpa_s->auto_pd_scan_retry < P2P_AUTO_PD_SCAN_ATTEMPTS) {
4308 wpa_s->auto_pd_scan_retry++;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07004309 bss = wpa_bss_get_bssid_latest(
4310 wpa_s, wpa_s->pending_join_dev_addr);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004311 if (bss) {
4312 freq = bss->freq;
4313 wpa_printf(MSG_DEBUG, "P2P: Scan retry %d for "
4314 "the peer " MACSTR " at %d MHz",
4315 wpa_s->auto_pd_scan_retry,
4316 MAC2STR(wpa_s->
4317 pending_join_dev_addr),
4318 freq);
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004319 wpas_p2p_join_scan_req(wpa_s, freq, NULL, 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004320 return;
4321 }
4322 }
4323
4324 if (join < 0)
4325 join = 0;
4326
4327 wpa_s->p2p_auto_pd = 0;
4328 wpa_s->pending_pd_use = join ? AUTO_PD_JOIN : AUTO_PD_GO_NEG;
4329 wpa_printf(MSG_DEBUG, "P2P: Auto PD with " MACSTR " join=%d",
4330 MAC2STR(wpa_s->pending_join_dev_addr), join);
4331 if (p2p_prov_disc_req(wpa_s->global->p2p,
4332 wpa_s->pending_join_dev_addr,
4333 wpa_s->pending_pd_config_methods, join,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004334 0, wpa_s->user_initiated_pd) < 0) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07004335 wpa_s->p2p_auto_pd = 0;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07004336 wpa_msg_global(wpa_s, MSG_INFO,
4337 P2P_EVENT_PROV_DISC_FAILURE
4338 " p2p_dev_addr=" MACSTR " status=N/A",
4339 MAC2STR(wpa_s->pending_join_dev_addr));
Dmitry Shmidt04949592012-07-19 12:16:46 -07004340 }
4341 return;
4342 }
4343
4344 if (wpa_s->p2p_auto_join) {
4345 int join = wpas_p2p_peer_go(wpa_s,
4346 wpa_s->pending_join_dev_addr);
4347 if (join < 0) {
4348 wpa_printf(MSG_DEBUG, "P2P: Peer was not found to be "
4349 "running a GO -> use GO Negotiation");
4350 wpas_p2p_connect(wpa_s, wpa_s->pending_join_dev_addr,
4351 wpa_s->p2p_pin, wpa_s->p2p_wps_method,
4352 wpa_s->p2p_persistent_group, 0, 0, 0,
4353 wpa_s->p2p_go_intent,
4354 wpa_s->p2p_connect_freq,
4355 wpa_s->p2p_persistent_id,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004356 wpa_s->p2p_pd_before_go_neg,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004357 wpa_s->p2p_go_ht40,
4358 wpa_s->p2p_go_vht);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004359 return;
4360 }
4361
4362 wpa_printf(MSG_DEBUG, "P2P: Peer was found running GO%s -> "
4363 "try to join the group", join ? "" :
4364 " in older scan");
4365 if (!join)
4366 wpa_s->p2p_fallback_to_go_neg = 1;
4367 }
4368
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004369 freq = p2p_get_oper_freq(wpa_s->global->p2p,
4370 wpa_s->pending_join_iface_addr);
4371 if (freq < 0 &&
4372 p2p_get_interface_addr(wpa_s->global->p2p,
4373 wpa_s->pending_join_dev_addr,
4374 iface_addr) == 0 &&
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07004375 os_memcmp(iface_addr, wpa_s->pending_join_dev_addr, ETH_ALEN) != 0
4376 && !wpa_bss_get_bssid(wpa_s, wpa_s->pending_join_iface_addr)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004377 wpa_printf(MSG_DEBUG, "P2P: Overwrite pending interface "
4378 "address for join from " MACSTR " to " MACSTR
4379 " based on newly discovered P2P peer entry",
4380 MAC2STR(wpa_s->pending_join_iface_addr),
4381 MAC2STR(iface_addr));
4382 os_memcpy(wpa_s->pending_join_iface_addr, iface_addr,
4383 ETH_ALEN);
4384
4385 freq = p2p_get_oper_freq(wpa_s->global->p2p,
4386 wpa_s->pending_join_iface_addr);
4387 }
4388 if (freq >= 0) {
4389 wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
4390 "from P2P peer table: %d MHz", freq);
4391 }
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004392 if (wpa_s->p2p_join_ssid_len) {
4393 wpa_printf(MSG_DEBUG, "P2P: Trying to find target GO BSS entry based on BSSID "
4394 MACSTR " and SSID %s",
4395 MAC2STR(wpa_s->pending_join_iface_addr),
4396 wpa_ssid_txt(wpa_s->p2p_join_ssid,
4397 wpa_s->p2p_join_ssid_len));
4398 bss = wpa_bss_get(wpa_s, wpa_s->pending_join_iface_addr,
4399 wpa_s->p2p_join_ssid,
4400 wpa_s->p2p_join_ssid_len);
4401 }
4402 if (!bss) {
4403 wpa_printf(MSG_DEBUG, "P2P: Trying to find target GO BSS entry based on BSSID "
4404 MACSTR, MAC2STR(wpa_s->pending_join_iface_addr));
4405 bss = wpa_bss_get_bssid_latest(wpa_s,
4406 wpa_s->pending_join_iface_addr);
4407 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004408 if (bss) {
4409 freq = bss->freq;
4410 wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
Dmitry Shmidt051af732013-10-22 13:52:46 -07004411 "from BSS table: %d MHz (SSID %s)", freq,
4412 wpa_ssid_txt(bss->ssid, bss->ssid_len));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004413 }
4414 if (freq > 0) {
4415 u16 method;
4416
Dmitry Shmidt04949592012-07-19 12:16:46 -07004417 if (wpas_check_freq_conflict(wpa_s, freq) > 0) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07004418 wpa_msg_global(wpa_s->parent, MSG_INFO,
4419 P2P_EVENT_GROUP_FORMATION_FAILURE
4420 "reason=FREQ_CONFLICT");
Dmitry Shmidt04949592012-07-19 12:16:46 -07004421 return;
4422 }
4423
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004424 wpa_printf(MSG_DEBUG, "P2P: Send Provision Discovery Request "
4425 "prior to joining an existing group (GO " MACSTR
4426 " freq=%u MHz)",
4427 MAC2STR(wpa_s->pending_join_dev_addr), freq);
4428 wpa_s->pending_pd_before_join = 1;
4429
4430 switch (wpa_s->pending_join_wps_method) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004431 case WPS_PIN_DISPLAY:
4432 method = WPS_CONFIG_KEYPAD;
4433 break;
4434 case WPS_PIN_KEYPAD:
4435 method = WPS_CONFIG_DISPLAY;
4436 break;
4437 case WPS_PBC:
4438 method = WPS_CONFIG_PUSHBUTTON;
4439 break;
4440 default:
4441 method = 0;
4442 break;
4443 }
4444
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004445 if ((p2p_get_provisioning_info(wpa_s->global->p2p,
4446 wpa_s->pending_join_dev_addr) ==
4447 method)) {
4448 /*
4449 * We have already performed provision discovery for
4450 * joining the group. Proceed directly to join
4451 * operation without duplicated provision discovery. */
4452 wpa_printf(MSG_DEBUG, "P2P: Provision discovery "
4453 "with " MACSTR " already done - proceed to "
4454 "join",
4455 MAC2STR(wpa_s->pending_join_dev_addr));
4456 wpa_s->pending_pd_before_join = 0;
4457 goto start;
4458 }
4459
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004460 if (p2p_prov_disc_req(wpa_s->global->p2p,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004461 wpa_s->pending_join_dev_addr, method, 1,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004462 freq, wpa_s->user_initiated_pd) < 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004463 wpa_printf(MSG_DEBUG, "P2P: Failed to send Provision "
4464 "Discovery Request before joining an "
4465 "existing group");
4466 wpa_s->pending_pd_before_join = 0;
4467 goto start;
4468 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004469 return;
4470 }
4471
4472 wpa_printf(MSG_DEBUG, "P2P: Failed to find BSS/GO - try again later");
4473 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
4474 eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
4475 wpas_p2p_check_join_scan_limit(wpa_s);
4476 return;
4477
4478start:
4479 /* Start join operation immediately */
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004480 wpas_p2p_join_start(wpa_s, 0, NULL, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004481}
4482
4483
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004484static void wpas_p2p_join_scan_req(struct wpa_supplicant *wpa_s, int freq,
4485 const u8 *ssid, size_t ssid_len)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004486{
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004487 int ret;
4488 struct wpa_driver_scan_params params;
4489 struct wpabuf *wps_ie, *ies;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004490 size_t ielen;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004491 int freqs[2] = { 0, 0 };
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004492
4493 os_memset(&params, 0, sizeof(params));
4494
4495 /* P2P Wildcard SSID */
4496 params.num_ssids = 1;
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004497 if (ssid && ssid_len) {
4498 params.ssids[0].ssid = ssid;
4499 params.ssids[0].ssid_len = ssid_len;
4500 os_memcpy(wpa_s->p2p_join_ssid, ssid, ssid_len);
4501 wpa_s->p2p_join_ssid_len = ssid_len;
4502 } else {
4503 params.ssids[0].ssid = (u8 *) P2P_WILDCARD_SSID;
4504 params.ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
4505 wpa_s->p2p_join_ssid_len = 0;
4506 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004507
4508 wpa_s->wps->dev.p2p = 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004509 wps_ie = wps_build_probe_req_ie(DEV_PW_DEFAULT, &wpa_s->wps->dev,
4510 wpa_s->wps->uuid, WPS_REQ_ENROLLEE, 0,
4511 NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004512 if (wps_ie == NULL) {
4513 wpas_p2p_scan_res_join(wpa_s, NULL);
4514 return;
4515 }
4516
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004517 ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
4518 ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004519 if (ies == NULL) {
4520 wpabuf_free(wps_ie);
4521 wpas_p2p_scan_res_join(wpa_s, NULL);
4522 return;
4523 }
4524 wpabuf_put_buf(ies, wps_ie);
4525 wpabuf_free(wps_ie);
4526
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004527 p2p_scan_ie(wpa_s->global->p2p, ies, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004528
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004529 params.p2p_probe = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004530 params.extra_ies = wpabuf_head(ies);
4531 params.extra_ies_len = wpabuf_len(ies);
Dmitry Shmidt9e3f8ee2014-01-17 10:52:01 -08004532
4533 if (!freq) {
4534 int oper_freq;
4535 /*
4536 * If freq is not provided, check the operating freq of the GO
4537 * and use a single channel scan on if possible.
4538 */
4539 oper_freq = p2p_get_oper_freq(wpa_s->global->p2p,
4540 wpa_s->pending_join_iface_addr);
4541 if (oper_freq > 0)
4542 freq = oper_freq;
4543 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004544 if (freq > 0) {
4545 freqs[0] = freq;
4546 params.freqs = freqs;
4547 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004548
4549 /*
4550 * Run a scan to update BSS table and start Provision Discovery once
4551 * the new scan results become available.
4552 */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004553 ret = wpa_drv_scan(wpa_s, &params);
Dmitry Shmidt444d5672013-04-01 13:08:44 -07004554 if (!ret) {
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08004555 os_get_reltime(&wpa_s->scan_trigger_time);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004556 wpa_s->scan_res_handler = wpas_p2p_scan_res_join;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08004557 wpa_s->own_scan_requested = 1;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07004558 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004559
4560 wpabuf_free(ies);
4561
4562 if (ret) {
4563 wpa_printf(MSG_DEBUG, "P2P: Failed to start scan for join - "
4564 "try again later");
4565 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
4566 eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
4567 wpas_p2p_check_join_scan_limit(wpa_s);
4568 }
4569}
4570
4571
Dmitry Shmidt04949592012-07-19 12:16:46 -07004572static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx)
4573{
4574 struct wpa_supplicant *wpa_s = eloop_ctx;
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004575 wpas_p2p_join_scan_req(wpa_s, 0, NULL, 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004576}
4577
4578
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004579static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004580 const u8 *dev_addr, enum p2p_wps_method wps_method,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004581 int auto_join, int op_freq,
4582 const u8 *ssid, size_t ssid_len)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004583{
4584 wpa_printf(MSG_DEBUG, "P2P: Request to join existing group (iface "
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004585 MACSTR " dev " MACSTR " op_freq=%d)%s",
4586 MAC2STR(iface_addr), MAC2STR(dev_addr), op_freq,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004587 auto_join ? " (auto_join)" : "");
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004588 if (ssid && ssid_len) {
4589 wpa_printf(MSG_DEBUG, "P2P: Group SSID specified: %s",
4590 wpa_ssid_txt(ssid, ssid_len));
4591 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004592
Dmitry Shmidt04949592012-07-19 12:16:46 -07004593 wpa_s->p2p_auto_pd = 0;
4594 wpa_s->p2p_auto_join = !!auto_join;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004595 os_memcpy(wpa_s->pending_join_iface_addr, iface_addr, ETH_ALEN);
4596 os_memcpy(wpa_s->pending_join_dev_addr, dev_addr, ETH_ALEN);
4597 wpa_s->pending_join_wps_method = wps_method;
4598
4599 /* Make sure we are not running find during connection establishment */
4600 wpas_p2p_stop_find(wpa_s);
4601
4602 wpa_s->p2p_join_scan_count = 0;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004603 wpas_p2p_join_scan_req(wpa_s, op_freq, ssid, ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004604 return 0;
4605}
4606
4607
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004608static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s, int freq,
4609 const u8 *ssid, size_t ssid_len)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004610{
4611 struct wpa_supplicant *group;
4612 struct p2p_go_neg_results res;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004613 struct wpa_bss *bss;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004614
4615 group = wpas_p2p_get_group_iface(wpa_s, 0, 0);
4616 if (group == NULL)
4617 return -1;
4618 if (group != wpa_s) {
4619 os_memcpy(group->p2p_pin, wpa_s->p2p_pin,
4620 sizeof(group->p2p_pin));
4621 group->p2p_wps_method = wpa_s->p2p_wps_method;
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08004622 } else {
4623 /*
4624 * Need to mark the current interface for p2p_group_formation
4625 * when a separate group interface is not used. This is needed
4626 * to allow p2p_cancel stop a pending p2p_connect-join.
4627 * wpas_p2p_init_group_interface() addresses this for the case
4628 * where a separate group interface is used.
4629 */
4630 wpa_s->global->p2p_group_formation = wpa_s;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004631 }
4632
4633 group->p2p_in_provisioning = 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004634 group->p2p_fallback_to_go_neg = wpa_s->p2p_fallback_to_go_neg;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004635
4636 os_memset(&res, 0, sizeof(res));
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004637 os_memcpy(res.peer_device_addr, wpa_s->pending_join_dev_addr, ETH_ALEN);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004638 os_memcpy(res.peer_interface_addr, wpa_s->pending_join_iface_addr,
4639 ETH_ALEN);
4640 res.wps_method = wpa_s->pending_join_wps_method;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004641 if (freq && ssid && ssid_len) {
4642 res.freq = freq;
4643 res.ssid_len = ssid_len;
4644 os_memcpy(res.ssid, ssid, ssid_len);
4645 } else {
4646 bss = wpa_bss_get_bssid_latest(wpa_s,
4647 wpa_s->pending_join_iface_addr);
4648 if (bss) {
4649 res.freq = bss->freq;
4650 res.ssid_len = bss->ssid_len;
4651 os_memcpy(res.ssid, bss->ssid, bss->ssid_len);
4652 wpa_printf(MSG_DEBUG, "P2P: Join target GO operating frequency from BSS table: %d MHz (SSID %s)",
4653 bss->freq,
4654 wpa_ssid_txt(bss->ssid, bss->ssid_len));
4655 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004656 }
4657
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004658 if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
4659 wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel prior to "
4660 "starting client");
4661 wpa_drv_cancel_remain_on_channel(wpa_s);
4662 wpa_s->off_channel_freq = 0;
4663 wpa_s->roc_waiting_drv_freq = 0;
4664 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004665 wpas_start_wps_enrollee(group, &res);
4666
4667 /*
4668 * Allow a longer timeout for join-a-running-group than normal 15
4669 * second group formation timeout since the GO may not have authorized
4670 * our connection yet.
4671 */
4672 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
4673 eloop_register_timeout(60, 0, wpas_p2p_group_formation_timeout,
4674 wpa_s, NULL);
4675
4676 return 0;
4677}
4678
4679
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004680static int wpas_p2p_setup_freqs(struct wpa_supplicant *wpa_s, int freq,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004681 int *force_freq, int *pref_freq, int go)
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004682{
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004683 struct wpa_used_freq_data *freqs;
4684 int res, best_freq, num_unused;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004685 unsigned int freq_in_use = 0, num, i;
4686
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004687 freqs = os_calloc(wpa_s->num_multichan_concurrent,
4688 sizeof(struct wpa_used_freq_data));
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004689 if (!freqs)
4690 return -1;
4691
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004692 num = wpas_p2p_valid_oper_freqs(wpa_s, freqs,
4693 wpa_s->num_multichan_concurrent);
4694
4695 /*
4696 * It is possible that the total number of used frequencies is bigger
4697 * than the number of frequencies used for P2P, so get the system wide
4698 * number of unused frequencies.
4699 */
4700 num_unused = wpas_p2p_num_unused_channels(wpa_s);
4701
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07004702 wpa_printf(MSG_DEBUG,
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004703 "P2P: Setup freqs: freq=%d num_MCC=%d shared_freqs=%u num_unused=%d",
4704 freq, wpa_s->num_multichan_concurrent, num, num_unused);
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004705
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004706 if (freq > 0) {
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004707 int ret;
4708 if (go)
4709 ret = p2p_supported_freq(wpa_s->global->p2p, freq);
4710 else
4711 ret = p2p_supported_freq_cli(wpa_s->global->p2p, freq);
4712 if (!ret) {
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004713 wpa_printf(MSG_DEBUG, "P2P: The forced channel "
4714 "(%u MHz) is not supported for P2P uses",
4715 freq);
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004716 res = -3;
4717 goto exit_free;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004718 }
4719
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004720 for (i = 0; i < num; i++) {
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004721 if (freqs[i].freq == freq)
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004722 freq_in_use = 1;
4723 }
4724
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004725 if (num_unused <= 0 && !freq_in_use) {
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004726 wpa_printf(MSG_DEBUG, "P2P: Cannot start P2P group on %u MHz as there are no available channels",
4727 freq);
4728 res = -2;
4729 goto exit_free;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004730 }
4731 wpa_printf(MSG_DEBUG, "P2P: Trying to force us to use the "
4732 "requested channel (%u MHz)", freq);
4733 *force_freq = freq;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004734 goto exit_ok;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004735 }
4736
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004737 best_freq = wpas_p2p_pick_best_used_freq(wpa_s, freqs, num);
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004738
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004739 /* We have a candidate frequency to use */
4740 if (best_freq > 0) {
4741 if (*pref_freq == 0 && num_unused > 0) {
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08004742 wpa_printf(MSG_DEBUG, "P2P: Try to prefer a frequency (%u MHz) we are already using",
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004743 best_freq);
4744 *pref_freq = best_freq;
Dmitry Shmidt51a47d52013-09-10 10:52:57 -07004745 } else {
4746 wpa_printf(MSG_DEBUG, "P2P: Try to force us to use frequency (%u MHz) which is already in use",
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004747 best_freq);
4748 *force_freq = best_freq;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004749 }
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004750 } else if (num_unused > 0) {
4751 wpa_printf(MSG_DEBUG,
4752 "P2P: Current operating channels are not available for P2P. Try to use another channel");
4753 *force_freq = 0;
4754 } else {
4755 wpa_printf(MSG_DEBUG,
4756 "P2P: All channels are in use and none of them are P2P enabled. Cannot start P2P group");
4757 res = -2;
4758 goto exit_free;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004759 }
4760
4761exit_ok:
4762 res = 0;
4763exit_free:
4764 os_free(freqs);
4765 return res;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004766}
4767
4768
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004769/**
4770 * wpas_p2p_connect - Request P2P Group Formation to be started
4771 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
4772 * @peer_addr: Address of the peer P2P Device
4773 * @pin: PIN to use during provisioning or %NULL to indicate PBC mode
4774 * @persistent_group: Whether to create a persistent group
Dmitry Shmidt04949592012-07-19 12:16:46 -07004775 * @auto_join: Whether to select join vs. GO Negotiation automatically
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004776 * @join: Whether to join an existing group (as a client) instead of starting
4777 * Group Owner negotiation; @peer_addr is BSSID in that case
4778 * @auth: Whether to only authorize the connection instead of doing that and
4779 * initiating Group Owner negotiation
4780 * @go_intent: GO Intent or -1 to use default
4781 * @freq: Frequency for the group or 0 for auto-selection
Dmitry Shmidt04949592012-07-19 12:16:46 -07004782 * @persistent_id: Persistent group credentials to use for forcing GO
4783 * parameters or -1 to generate new values (SSID/passphrase)
4784 * @pd: Whether to send Provision Discovery prior to GO Negotiation as an
4785 * interoperability workaround when initiating group formation
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004786 * @ht40: Start GO with 40 MHz channel width
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004787 * @vht: Start GO with VHT support
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004788 * Returns: 0 or new PIN (if pin was %NULL) on success, -1 on unspecified
4789 * failure, -2 on failure due to channel not currently available,
4790 * -3 if forced channel is not supported
4791 */
4792int wpas_p2p_connect(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
4793 const char *pin, enum p2p_wps_method wps_method,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004794 int persistent_group, int auto_join, int join, int auth,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004795 int go_intent, int freq, int persistent_id, int pd,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004796 int ht40, int vht)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004797{
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004798 int force_freq = 0, pref_freq = 0;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004799 int ret = 0, res;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004800 enum wpa_driver_if_type iftype;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004801 const u8 *if_addr;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004802 struct wpa_ssid *ssid = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004803
4804 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
4805 return -1;
4806
Dmitry Shmidt04949592012-07-19 12:16:46 -07004807 if (persistent_id >= 0) {
4808 ssid = wpa_config_get_network(wpa_s->conf, persistent_id);
4809 if (ssid == NULL || ssid->disabled != 2 ||
4810 ssid->mode != WPAS_MODE_P2P_GO)
4811 return -1;
4812 }
4813
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07004814 os_free(wpa_s->global->add_psk);
4815 wpa_s->global->add_psk = NULL;
4816
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08004817 wpa_s->global->p2p_fail_on_wps_complete = 0;
4818
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004819 if (go_intent < 0)
4820 go_intent = wpa_s->conf->p2p_go_intent;
4821
4822 if (!auth)
4823 wpa_s->p2p_long_listen = 0;
4824
4825 wpa_s->p2p_wps_method = wps_method;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004826 wpa_s->p2p_persistent_group = !!persistent_group;
4827 wpa_s->p2p_persistent_id = persistent_id;
4828 wpa_s->p2p_go_intent = go_intent;
4829 wpa_s->p2p_connect_freq = freq;
4830 wpa_s->p2p_fallback_to_go_neg = 0;
4831 wpa_s->p2p_pd_before_go_neg = !!pd;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004832 wpa_s->p2p_go_ht40 = !!ht40;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004833 wpa_s->p2p_go_vht = !!vht;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004834
4835 if (pin)
4836 os_strlcpy(wpa_s->p2p_pin, pin, sizeof(wpa_s->p2p_pin));
4837 else if (wps_method == WPS_PIN_DISPLAY) {
4838 ret = wps_generate_pin();
4839 os_snprintf(wpa_s->p2p_pin, sizeof(wpa_s->p2p_pin), "%08d",
4840 ret);
4841 wpa_printf(MSG_DEBUG, "P2P: Randomly generated PIN: %s",
4842 wpa_s->p2p_pin);
4843 } else
4844 wpa_s->p2p_pin[0] = '\0';
4845
Dmitry Shmidt04949592012-07-19 12:16:46 -07004846 if (join || auto_join) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004847 u8 iface_addr[ETH_ALEN], dev_addr[ETH_ALEN];
4848 if (auth) {
4849 wpa_printf(MSG_DEBUG, "P2P: Authorize invitation to "
4850 "connect a running group from " MACSTR,
4851 MAC2STR(peer_addr));
4852 os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
4853 return ret;
4854 }
4855 os_memcpy(dev_addr, peer_addr, ETH_ALEN);
4856 if (p2p_get_interface_addr(wpa_s->global->p2p, peer_addr,
4857 iface_addr) < 0) {
4858 os_memcpy(iface_addr, peer_addr, ETH_ALEN);
4859 p2p_get_dev_addr(wpa_s->global->p2p, peer_addr,
4860 dev_addr);
4861 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004862 if (auto_join) {
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08004863 os_get_reltime(&wpa_s->p2p_auto_started);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004864 wpa_printf(MSG_DEBUG, "P2P: Auto join started at "
4865 "%ld.%06ld",
4866 wpa_s->p2p_auto_started.sec,
4867 wpa_s->p2p_auto_started.usec);
4868 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004869 wpa_s->user_initiated_pd = 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004870 if (wpas_p2p_join(wpa_s, iface_addr, dev_addr, wps_method,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004871 auto_join, freq, NULL, 0) < 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004872 return -1;
4873 return ret;
4874 }
4875
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004876 res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
4877 go_intent == 15);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004878 if (res)
4879 return res;
Dmitry Shmidta0d265f2013-11-19 13:13:41 -08004880 wpas_p2p_set_own_freq_preference(wpa_s,
4881 force_freq ? force_freq : pref_freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004882
4883 wpa_s->create_p2p_iface = wpas_p2p_create_iface(wpa_s);
4884
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004885 if (wpa_s->create_p2p_iface) {
4886 /* Prepare to add a new interface for the group */
4887 iftype = WPA_IF_P2P_GROUP;
4888 if (go_intent == 15)
4889 iftype = WPA_IF_P2P_GO;
4890 if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
4891 wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
4892 "interface for the group");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004893 return -1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004894 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004895
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004896 if_addr = wpa_s->pending_interface_addr;
4897 } else
4898 if_addr = wpa_s->own_addr;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004899
4900 if (auth) {
4901 if (wpas_p2p_auth_go_neg(wpa_s, peer_addr, wps_method,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004902 go_intent, if_addr,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004903 force_freq, persistent_group, ssid,
4904 pref_freq) < 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004905 return -1;
4906 return ret;
4907 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004908
4909 if (wpas_p2p_start_go_neg(wpa_s, peer_addr, wps_method,
4910 go_intent, if_addr, force_freq,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004911 persistent_group, ssid, pref_freq) < 0) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004912 if (wpa_s->create_p2p_iface)
4913 wpas_p2p_remove_pending_group_interface(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004914 return -1;
4915 }
4916 return ret;
4917}
4918
4919
4920/**
4921 * wpas_p2p_remain_on_channel_cb - Indication of remain-on-channel start
4922 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
4923 * @freq: Frequency of the channel in MHz
4924 * @duration: Duration of the stay on the channel in milliseconds
4925 *
4926 * This callback is called when the driver indicates that it has started the
4927 * requested remain-on-channel duration.
4928 */
4929void wpas_p2p_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
4930 unsigned int freq, unsigned int duration)
4931{
4932 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
4933 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004934 if (wpa_s->off_channel_freq == wpa_s->pending_listen_freq) {
4935 p2p_listen_cb(wpa_s->global->p2p, wpa_s->pending_listen_freq,
4936 wpa_s->pending_listen_duration);
4937 wpa_s->pending_listen_freq = 0;
Dmitry Shmidt7f93d6f2014-02-21 11:22:49 -08004938 } else {
4939 wpa_printf(MSG_DEBUG, "P2P: Ignore remain-on-channel callback (off_channel_freq=%u pending_listen_freq=%d freq=%u duration=%u)",
4940 wpa_s->off_channel_freq, wpa_s->pending_listen_freq,
4941 freq, duration);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004942 }
4943}
4944
4945
Jithu Jance57cea1a2014-08-20 10:22:04 -07004946int wpas_p2p_listen_start(struct wpa_supplicant *wpa_s, unsigned int timeout)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004947{
4948 /* Limit maximum Listen state time based on driver limitation. */
4949 if (timeout > wpa_s->max_remain_on_chan)
4950 timeout = wpa_s->max_remain_on_chan;
4951
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004952 return p2p_listen(wpa_s->global->p2p, timeout);
4953}
4954
4955
4956/**
4957 * wpas_p2p_cancel_remain_on_channel_cb - Remain-on-channel timeout
4958 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
4959 * @freq: Frequency of the channel in MHz
4960 *
4961 * This callback is called when the driver indicates that a remain-on-channel
4962 * operation has been completed, i.e., the duration on the requested channel
4963 * has timed out.
4964 */
4965void wpas_p2p_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
4966 unsigned int freq)
4967{
4968 wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel callback "
4969 "(p2p_long_listen=%d ms pending_action_tx=%p)",
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08004970 wpa_s->p2p_long_listen, offchannel_pending_action_tx(wpa_s));
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08004971 wpas_p2p_listen_work_done(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004972 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
4973 return;
Jithu Jance57cea1a2014-08-20 10:22:04 -07004974 if (wpa_s->p2p_long_listen > 0)
4975 wpa_s->p2p_long_listen -= wpa_s->max_remain_on_chan;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004976 if (p2p_listen_end(wpa_s->global->p2p, freq) > 0)
4977 return; /* P2P module started a new operation */
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08004978 if (offchannel_pending_action_tx(wpa_s))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004979 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004980 if (wpa_s->p2p_long_listen > 0) {
4981 wpa_printf(MSG_DEBUG, "P2P: Continuing long Listen state");
4982 wpas_p2p_listen_start(wpa_s, wpa_s->p2p_long_listen);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07004983 } else {
4984 /*
4985 * When listen duration is over, stop listen & update p2p_state
4986 * to IDLE.
4987 */
4988 p2p_stop_listen(wpa_s->global->p2p);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004989 }
4990}
4991
4992
4993/**
4994 * wpas_p2p_group_remove - Remove a P2P group
4995 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
4996 * @ifname: Network interface name of the group interface or "*" to remove all
4997 * groups
4998 * Returns: 0 on success, -1 on failure
4999 *
5000 * This function is used to remove a P2P group. This can be used to disconnect
5001 * from a group in which the local end is a P2P Client or to end a P2P Group in
5002 * case the local end is the Group Owner. If a virtual network interface was
5003 * created for this group, that interface will be removed. Otherwise, only the
5004 * configured P2P group network will be removed from the interface.
5005 */
5006int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s, const char *ifname)
5007{
5008 struct wpa_global *global = wpa_s->global;
5009
5010 if (os_strcmp(ifname, "*") == 0) {
5011 struct wpa_supplicant *prev;
5012 wpa_s = global->ifaces;
5013 while (wpa_s) {
5014 prev = wpa_s;
5015 wpa_s = wpa_s->next;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07005016 if (prev->p2p_group_interface !=
5017 NOT_P2P_GROUP_INTERFACE ||
5018 (prev->current_ssid &&
5019 prev->current_ssid->p2p_group))
5020 wpas_p2p_disconnect(prev);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005021 }
5022 return 0;
5023 }
5024
5025 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
5026 if (os_strcmp(wpa_s->ifname, ifname) == 0)
5027 break;
5028 }
5029
5030 return wpas_p2p_disconnect(wpa_s);
5031}
5032
5033
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005034static int wpas_p2p_select_go_freq(struct wpa_supplicant *wpa_s, int freq)
5035{
5036 unsigned int r;
5037
5038 if (freq == 2) {
5039 wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 2.4 GHz "
5040 "band");
5041 if (wpa_s->best_24_freq > 0 &&
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005042 p2p_supported_freq_go(wpa_s->global->p2p,
5043 wpa_s->best_24_freq)) {
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005044 freq = wpa_s->best_24_freq;
5045 wpa_printf(MSG_DEBUG, "P2P: Use best 2.4 GHz band "
5046 "channel: %d MHz", freq);
5047 } else {
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07005048 if (os_get_random((u8 *) &r, sizeof(r)) < 0)
5049 return -1;
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005050 freq = 2412 + (r % 3) * 25;
5051 wpa_printf(MSG_DEBUG, "P2P: Use random 2.4 GHz band "
5052 "channel: %d MHz", freq);
5053 }
5054 }
5055
5056 if (freq == 5) {
5057 wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 5 GHz "
5058 "band");
5059 if (wpa_s->best_5_freq > 0 &&
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005060 p2p_supported_freq_go(wpa_s->global->p2p,
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005061 wpa_s->best_5_freq)) {
5062 freq = wpa_s->best_5_freq;
5063 wpa_printf(MSG_DEBUG, "P2P: Use best 5 GHz band "
5064 "channel: %d MHz", freq);
5065 } else {
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07005066 if (os_get_random((u8 *) &r, sizeof(r)) < 0)
5067 return -1;
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005068 freq = 5180 + (r % 4) * 20;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005069 if (!p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005070 wpa_printf(MSG_DEBUG, "P2P: Could not select "
5071 "5 GHz channel for P2P group");
5072 return -1;
5073 }
5074 wpa_printf(MSG_DEBUG, "P2P: Use random 5 GHz band "
5075 "channel: %d MHz", freq);
5076 }
5077 }
5078
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005079 if (freq > 0 && !p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005080 wpa_printf(MSG_DEBUG, "P2P: The forced channel for GO "
5081 "(%u MHz) is not supported for P2P uses",
5082 freq);
5083 return -1;
5084 }
5085
5086 return freq;
5087}
5088
5089
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005090static int wpas_p2p_select_freq_no_pref(struct wpa_supplicant *wpa_s,
5091 struct p2p_go_neg_results *params,
5092 const struct p2p_channels *channels)
5093{
5094 unsigned int i, r;
5095
5096 /* first try some random selection of the social channels */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07005097 if (os_get_random((u8 *) &r, sizeof(r)) < 0)
5098 return -1;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005099
5100 for (i = 0; i < 3; i++) {
5101 params->freq = 2412 + ((r + i) % 3) * 25;
5102 if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07005103 freq_included(channels, params->freq) &&
5104 p2p_supported_freq(wpa_s->global->p2p, params->freq))
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005105 goto out;
5106 }
5107
5108 /* try all channels in reg. class 81 */
5109 for (i = 0; i < 11; i++) {
5110 params->freq = 2412 + i * 5;
5111 if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07005112 freq_included(channels, params->freq) &&
5113 p2p_supported_freq(wpa_s->global->p2p, params->freq))
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005114 goto out;
5115 }
5116
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07005117 /* try social channel class 180 channel 2 */
5118 params->freq = 58320 + 1 * 2160;
5119 if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
5120 freq_included(channels, params->freq) &&
5121 p2p_supported_freq(wpa_s->global->p2p, params->freq))
5122 goto out;
5123
5124 /* try all channels in reg. class 180 */
5125 for (i = 0; i < 4; i++) {
5126 params->freq = 58320 + i * 2160;
5127 if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
5128 freq_included(channels, params->freq) &&
5129 p2p_supported_freq(wpa_s->global->p2p, params->freq))
5130 goto out;
5131 }
5132
5133 wpa_printf(MSG_DEBUG, "P2P: No 2.4 and 60 GHz channel allowed");
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005134 return -1;
5135out:
5136 wpa_printf(MSG_DEBUG, "P2P: Set GO freq %d MHz (no preference known)",
5137 params->freq);
5138 return 0;
5139}
5140
5141
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005142static int wpas_p2p_init_go_params(struct wpa_supplicant *wpa_s,
5143 struct p2p_go_neg_results *params,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005144 int freq, int ht40, int vht,
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005145 const struct p2p_channels *channels)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005146{
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005147 struct wpa_used_freq_data *freqs;
5148 unsigned int pref_freq, cand_freq;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005149 unsigned int num, i;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005150
5151 os_memset(params, 0, sizeof(*params));
5152 params->role_go = 1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005153 params->ht40 = ht40;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005154 params->vht = vht;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005155 if (freq) {
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005156 if (!freq_included(channels, freq)) {
5157 wpa_printf(MSG_DEBUG, "P2P: Forced GO freq %d MHz not "
5158 "accepted", freq);
5159 return -1;
5160 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005161 wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on forced "
5162 "frequency %d MHz", freq);
5163 params->freq = freq;
5164 } else if (wpa_s->conf->p2p_oper_reg_class == 81 &&
5165 wpa_s->conf->p2p_oper_channel >= 1 &&
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005166 wpa_s->conf->p2p_oper_channel <= 11 &&
5167 freq_included(channels,
5168 2407 + 5 * wpa_s->conf->p2p_oper_channel)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005169 params->freq = 2407 + 5 * wpa_s->conf->p2p_oper_channel;
5170 wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on configured "
5171 "frequency %d MHz", params->freq);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005172 } else if ((wpa_s->conf->p2p_oper_reg_class == 115 ||
5173 wpa_s->conf->p2p_oper_reg_class == 116 ||
5174 wpa_s->conf->p2p_oper_reg_class == 117 ||
5175 wpa_s->conf->p2p_oper_reg_class == 124 ||
5176 wpa_s->conf->p2p_oper_reg_class == 126 ||
5177 wpa_s->conf->p2p_oper_reg_class == 127) &&
5178 freq_included(channels,
5179 5000 + 5 * wpa_s->conf->p2p_oper_channel)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005180 params->freq = 5000 + 5 * wpa_s->conf->p2p_oper_channel;
5181 wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on configured "
5182 "frequency %d MHz", params->freq);
5183 } else if (wpa_s->conf->p2p_oper_channel == 0 &&
5184 wpa_s->best_overall_freq > 0 &&
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005185 p2p_supported_freq_go(wpa_s->global->p2p,
5186 wpa_s->best_overall_freq) &&
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005187 freq_included(channels, wpa_s->best_overall_freq)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005188 params->freq = wpa_s->best_overall_freq;
5189 wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best overall "
5190 "channel %d MHz", params->freq);
5191 } else if (wpa_s->conf->p2p_oper_channel == 0 &&
5192 wpa_s->best_24_freq > 0 &&
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005193 p2p_supported_freq_go(wpa_s->global->p2p,
5194 wpa_s->best_24_freq) &&
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005195 freq_included(channels, wpa_s->best_24_freq)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005196 params->freq = wpa_s->best_24_freq;
5197 wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best 2.4 GHz "
5198 "channel %d MHz", params->freq);
5199 } else if (wpa_s->conf->p2p_oper_channel == 0 &&
5200 wpa_s->best_5_freq > 0 &&
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005201 p2p_supported_freq_go(wpa_s->global->p2p,
5202 wpa_s->best_5_freq) &&
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005203 freq_included(channels, wpa_s->best_5_freq)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005204 params->freq = wpa_s->best_5_freq;
5205 wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best 5 GHz "
5206 "channel %d MHz", params->freq);
Dmitry Shmidt44c95782013-05-17 09:51:35 -07005207 } else if ((pref_freq = p2p_get_pref_freq(wpa_s->global->p2p,
5208 channels))) {
5209 params->freq = pref_freq;
5210 wpa_printf(MSG_DEBUG, "P2P: Set GO freq %d MHz from preferred "
5211 "channels", params->freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005212 } else {
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005213 /* no preference, select some channel */
5214 if (wpas_p2p_select_freq_no_pref(wpa_s, params, channels) < 0)
Dmitry Shmidt04949592012-07-19 12:16:46 -07005215 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005216 }
5217
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005218 freqs = os_calloc(wpa_s->num_multichan_concurrent,
5219 sizeof(struct wpa_used_freq_data));
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005220 if (!freqs)
5221 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005222
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005223 num = wpas_p2p_valid_oper_freqs(wpa_s, freqs,
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005224 wpa_s->num_multichan_concurrent);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005225
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005226 cand_freq = wpas_p2p_pick_best_used_freq(wpa_s, freqs, num);
5227
5228 /* First try the best used frequency if possible */
5229 if (!freq && cand_freq > 0 && freq_included(channels, cand_freq)) {
5230 params->freq = cand_freq;
5231 } else if (!freq) {
5232 /* Try any of the used frequencies */
5233 for (i = 0; i < num; i++) {
5234 if (freq_included(channels, freqs[i].freq)) {
5235 wpa_printf(MSG_DEBUG, "P2P: Force GO on a channel we are already using (%u MHz)",
5236 freqs[i].freq);
5237 params->freq = freqs[i].freq;
5238 break;
5239 }
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005240 }
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08005241
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005242 if (i == num) {
5243 if (wpas_p2p_num_unused_channels(wpa_s) <= 0) {
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08005244 wpa_printf(MSG_DEBUG, "P2P: Cannot force GO on any of the channels we are already using");
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005245 os_free(freqs);
5246 return -1;
5247 } else {
5248 wpa_printf(MSG_DEBUG, "P2P: Cannot force GO on any of the channels we are already using. Use one of the free channels");
5249 }
5250 }
5251 } else {
5252 for (i = 0; i < num; i++) {
5253 if (freqs[i].freq == freq)
5254 break;
5255 }
5256
5257 if (i == num) {
5258 if (wpas_p2p_num_unused_channels(wpa_s) <= 0) {
5259 if (freq)
5260 wpa_printf(MSG_DEBUG, "P2P: Cannot force GO on freq (%u MHz) as all the channels are in use", freq);
5261 os_free(freqs);
5262 return -1;
5263 } else {
5264 wpa_printf(MSG_DEBUG, "P2P: Use one of the free channels");
5265 }
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08005266 }
5267 }
5268
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005269 os_free(freqs);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005270 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005271}
5272
5273
5274static struct wpa_supplicant *
5275wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
5276 int go)
5277{
5278 struct wpa_supplicant *group_wpa_s;
5279
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005280 if (!wpas_p2p_create_iface(wpa_s)) {
5281 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use same interface for group "
5282 "operations");
Dmitry Shmidt56052862013-10-04 10:23:25 -07005283 wpa_s->p2p_first_connection_timeout = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005284 return wpa_s;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005285 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005286
5287 if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005288 WPA_IF_P2P_CLIENT) < 0) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07005289 wpa_msg_global(wpa_s, MSG_ERROR,
5290 "P2P: Failed to add group interface");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005291 return NULL;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005292 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005293 group_wpa_s = wpas_p2p_init_group_interface(wpa_s, go);
5294 if (group_wpa_s == NULL) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07005295 wpa_msg_global(wpa_s, MSG_ERROR,
5296 "P2P: Failed to initialize group interface");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005297 wpas_p2p_remove_pending_group_interface(wpa_s);
5298 return NULL;
5299 }
5300
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005301 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use separate group interface %s",
5302 group_wpa_s->ifname);
Dmitry Shmidt56052862013-10-04 10:23:25 -07005303 group_wpa_s->p2p_first_connection_timeout = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005304 return group_wpa_s;
5305}
5306
5307
5308/**
5309 * wpas_p2p_group_add - Add a new P2P group with local end as Group Owner
5310 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
5311 * @persistent_group: Whether to create a persistent group
5312 * @freq: Frequency for the group or 0 to indicate no hardcoding
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005313 * @ht40: Start GO with 40 MHz channel width
5314 * @vht: Start GO with VHT support
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005315 * Returns: 0 on success, -1 on failure
5316 *
5317 * This function creates a new P2P group with the local end as the Group Owner,
5318 * i.e., without using Group Owner Negotiation.
5319 */
5320int wpas_p2p_group_add(struct wpa_supplicant *wpa_s, int persistent_group,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005321 int freq, int ht40, int vht)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005322{
5323 struct p2p_go_neg_results params;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005324
5325 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
5326 return -1;
5327
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07005328 os_free(wpa_s->global->add_psk);
5329 wpa_s->global->add_psk = NULL;
5330
Dmitry Shmidtdca39792011-09-06 11:17:33 -07005331 /* Make sure we are not running find during connection establishment */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005332 wpa_printf(MSG_DEBUG, "P2P: Stop any on-going P2P FIND");
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005333 wpas_p2p_stop_find_oper(wpa_s);
Dmitry Shmidtdca39792011-09-06 11:17:33 -07005334
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005335 freq = wpas_p2p_select_go_freq(wpa_s, freq);
5336 if (freq < 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005337 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005338
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005339 if (wpas_p2p_init_go_params(wpa_s, &params, freq, ht40, vht, NULL))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005340 return -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005341 if (params.freq &&
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005342 !p2p_supported_freq_go(wpa_s->global->p2p, params.freq)) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07005343 wpa_printf(MSG_DEBUG, "P2P: The selected channel for GO "
5344 "(%u MHz) is not supported for P2P uses",
5345 params.freq);
5346 return -1;
5347 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005348 p2p_go_params(wpa_s->global->p2p, &params);
5349 params.persistent_group = persistent_group;
5350
5351 wpa_s = wpas_p2p_get_group_iface(wpa_s, 0, 1);
5352 if (wpa_s == NULL)
5353 return -1;
5354 wpas_start_wps_go(wpa_s, &params, 0);
5355
5356 return 0;
5357}
5358
5359
5360static int wpas_start_p2p_client(struct wpa_supplicant *wpa_s,
Dmitry Shmidt15907092014-03-25 10:42:57 -07005361 struct wpa_ssid *params, int addr_allocated,
5362 int freq)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005363{
5364 struct wpa_ssid *ssid;
5365
5366 wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 0);
5367 if (wpa_s == NULL)
5368 return -1;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07005369 wpa_s->p2p_last_4way_hs_fail = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005370
5371 wpa_supplicant_ap_deinit(wpa_s);
5372
5373 ssid = wpa_config_add_network(wpa_s->conf);
5374 if (ssid == NULL)
5375 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005376 wpa_config_set_network_defaults(ssid);
5377 ssid->temporary = 1;
5378 ssid->proto = WPA_PROTO_RSN;
5379 ssid->pairwise_cipher = WPA_CIPHER_CCMP;
5380 ssid->group_cipher = WPA_CIPHER_CCMP;
5381 ssid->key_mgmt = WPA_KEY_MGMT_PSK;
5382 ssid->ssid = os_malloc(params->ssid_len);
5383 if (ssid->ssid == NULL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005384 wpa_config_remove_network(wpa_s->conf, ssid->id);
5385 return -1;
5386 }
5387 os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
5388 ssid->ssid_len = params->ssid_len;
5389 ssid->p2p_group = 1;
5390 ssid->export_keys = 1;
5391 if (params->psk_set) {
5392 os_memcpy(ssid->psk, params->psk, 32);
5393 ssid->psk_set = 1;
5394 }
5395 if (params->passphrase)
5396 ssid->passphrase = os_strdup(params->passphrase);
5397
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005398 wpa_s->show_group_started = 1;
Dmitry Shmidt15907092014-03-25 10:42:57 -07005399 wpa_s->p2p_in_invitation = 1;
5400 wpa_s->p2p_invite_go_freq = freq;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005401
Dmitry Shmidt15907092014-03-25 10:42:57 -07005402 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s->parent,
5403 NULL);
5404 eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
5405 wpas_p2p_group_formation_timeout,
5406 wpa_s->parent, NULL);
Dmitry Shmidtfa3fc4a2013-11-21 13:34:38 -08005407 wpa_supplicant_select_network(wpa_s, ssid);
5408
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005409 return 0;
5410}
5411
5412
5413int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
5414 struct wpa_ssid *ssid, int addr_allocated,
Dmitry Shmidt96be6222014-02-13 10:16:51 -08005415 int force_freq, int neg_freq, int ht40,
5416 int vht, const struct p2p_channels *channels,
Dmitry Shmidt56052862013-10-04 10:23:25 -07005417 int connection_timeout)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005418{
5419 struct p2p_go_neg_results params;
Dmitry Shmidt96be6222014-02-13 10:16:51 -08005420 int go = 0, freq;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005421
5422 if (ssid->disabled != 2 || ssid->ssid == NULL)
5423 return -1;
5424
5425 if (wpas_get_p2p_group(wpa_s, ssid->ssid, ssid->ssid_len, &go) &&
5426 go == (ssid->mode == WPAS_MODE_P2P_GO)) {
5427 wpa_printf(MSG_DEBUG, "P2P: Requested persistent group is "
5428 "already running");
5429 return 0;
5430 }
5431
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07005432 os_free(wpa_s->global->add_psk);
5433 wpa_s->global->add_psk = NULL;
5434
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005435 /* Make sure we are not running find during connection establishment */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005436 wpas_p2p_stop_find_oper(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005437
Dmitry Shmidt04949592012-07-19 12:16:46 -07005438 wpa_s->p2p_fallback_to_go_neg = 0;
5439
Dmitry Shmidt96be6222014-02-13 10:16:51 -08005440 if (force_freq > 0) {
5441 freq = wpas_p2p_select_go_freq(wpa_s, force_freq);
5442 if (freq < 0)
5443 return -1;
5444 } else {
5445 freq = wpas_p2p_select_go_freq(wpa_s, neg_freq);
5446 if (freq < 0 || (freq > 0 && !freq_included(channels, freq)))
5447 freq = 0;
5448 }
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005449
Dmitry Shmidt15907092014-03-25 10:42:57 -07005450 if (ssid->mode == WPAS_MODE_INFRA)
5451 return wpas_start_p2p_client(wpa_s, ssid, addr_allocated, freq);
5452
5453 if (ssid->mode != WPAS_MODE_P2P_GO)
5454 return -1;
5455
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005456 if (wpas_p2p_init_go_params(wpa_s, &params, freq, ht40, vht, channels))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005457 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005458
5459 params.role_go = 1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005460 params.psk_set = ssid->psk_set;
5461 if (params.psk_set)
5462 os_memcpy(params.psk, ssid->psk, sizeof(params.psk));
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005463 if (ssid->passphrase) {
5464 if (os_strlen(ssid->passphrase) >= sizeof(params.passphrase)) {
5465 wpa_printf(MSG_ERROR, "P2P: Invalid passphrase in "
5466 "persistent group");
5467 return -1;
5468 }
5469 os_strlcpy(params.passphrase, ssid->passphrase,
5470 sizeof(params.passphrase));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005471 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005472 os_memcpy(params.ssid, ssid->ssid, ssid->ssid_len);
5473 params.ssid_len = ssid->ssid_len;
5474 params.persistent_group = 1;
5475
5476 wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 1);
5477 if (wpa_s == NULL)
5478 return -1;
5479
Dmitry Shmidt56052862013-10-04 10:23:25 -07005480 wpa_s->p2p_first_connection_timeout = connection_timeout;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005481 wpas_start_wps_go(wpa_s, &params, 0);
5482
5483 return 0;
5484}
5485
5486
5487static void wpas_p2p_ie_update(void *ctx, struct wpabuf *beacon_ies,
5488 struct wpabuf *proberesp_ies)
5489{
5490 struct wpa_supplicant *wpa_s = ctx;
5491 if (wpa_s->ap_iface) {
5492 struct hostapd_data *hapd = wpa_s->ap_iface->bss[0];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005493 if (!(hapd->conf->p2p & P2P_GROUP_OWNER)) {
5494 wpabuf_free(beacon_ies);
5495 wpabuf_free(proberesp_ies);
5496 return;
5497 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005498 if (beacon_ies) {
5499 wpabuf_free(hapd->p2p_beacon_ie);
5500 hapd->p2p_beacon_ie = beacon_ies;
5501 }
5502 wpabuf_free(hapd->p2p_probe_resp_ie);
5503 hapd->p2p_probe_resp_ie = proberesp_ies;
5504 } else {
5505 wpabuf_free(beacon_ies);
5506 wpabuf_free(proberesp_ies);
5507 }
5508 wpa_supplicant_ap_update_beacon(wpa_s);
5509}
5510
5511
5512static void wpas_p2p_idle_update(void *ctx, int idle)
5513{
5514 struct wpa_supplicant *wpa_s = ctx;
5515 if (!wpa_s->ap_iface)
5516 return;
5517 wpa_printf(MSG_DEBUG, "P2P: GO - group %sidle", idle ? "" : "not ");
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08005518 if (idle) {
5519 if (wpa_s->global->p2p_fail_on_wps_complete &&
5520 wpa_s->p2p_in_provisioning) {
5521 wpas_p2p_grpform_fail_after_wps(wpa_s);
5522 return;
5523 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005524 wpas_p2p_set_group_idle_timeout(wpa_s);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08005525 } else
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005526 eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
5527}
5528
5529
5530struct p2p_group * wpas_p2p_group_init(struct wpa_supplicant *wpa_s,
Dmitry Shmidt04949592012-07-19 12:16:46 -07005531 struct wpa_ssid *ssid)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005532{
5533 struct p2p_group *group;
5534 struct p2p_group_config *cfg;
5535
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005536 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
5537 return NULL;
5538
5539 cfg = os_zalloc(sizeof(*cfg));
5540 if (cfg == NULL)
5541 return NULL;
5542
Dmitry Shmidt04949592012-07-19 12:16:46 -07005543 if (ssid->p2p_persistent_group && wpa_s->conf->persistent_reconnect)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005544 cfg->persistent_group = 2;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005545 else if (ssid->p2p_persistent_group)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005546 cfg->persistent_group = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005547 os_memcpy(cfg->interface_addr, wpa_s->own_addr, ETH_ALEN);
5548 if (wpa_s->max_stations &&
5549 wpa_s->max_stations < wpa_s->conf->max_num_sta)
5550 cfg->max_clients = wpa_s->max_stations;
5551 else
5552 cfg->max_clients = wpa_s->conf->max_num_sta;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005553 os_memcpy(cfg->ssid, ssid->ssid, ssid->ssid_len);
5554 cfg->ssid_len = ssid->ssid_len;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08005555 cfg->freq = ssid->frequency;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005556 cfg->cb_ctx = wpa_s;
5557 cfg->ie_update = wpas_p2p_ie_update;
5558 cfg->idle_update = wpas_p2p_idle_update;
5559
5560 group = p2p_group_init(wpa_s->global->p2p, cfg);
5561 if (group == NULL)
5562 os_free(cfg);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005563 if (ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005564 p2p_group_notif_formation_done(group);
5565 wpa_s->p2p_group = group;
5566 return group;
5567}
5568
5569
5570void wpas_p2p_wps_success(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
5571 int registrar)
5572{
Dmitry Shmidt04949592012-07-19 12:16:46 -07005573 struct wpa_ssid *ssid = wpa_s->current_ssid;
5574
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005575 if (!wpa_s->p2p_in_provisioning) {
5576 wpa_printf(MSG_DEBUG, "P2P: Ignore WPS success event - P2P "
5577 "provisioning not in progress");
5578 return;
5579 }
5580
Dmitry Shmidt04949592012-07-19 12:16:46 -07005581 if (ssid && ssid->mode == WPAS_MODE_INFRA) {
5582 u8 go_dev_addr[ETH_ALEN];
5583 os_memcpy(go_dev_addr, wpa_s->bssid, ETH_ALEN);
5584 wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
5585 ssid->ssid_len);
5586 /* Clear any stored provisioning info */
5587 p2p_clear_provisioning_info(wpa_s->global->p2p, go_dev_addr);
5588 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005589
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005590 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s->parent,
5591 NULL);
Dmitry Shmidt56052862013-10-04 10:23:25 -07005592 wpa_s->p2p_go_group_formation_completed = 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005593 if (ssid && ssid->mode == WPAS_MODE_INFRA) {
5594 /*
5595 * Use a separate timeout for initial data connection to
5596 * complete to allow the group to be removed automatically if
5597 * something goes wrong in this step before the P2P group idle
5598 * timeout mechanism is taken into use.
5599 */
Dmitry Shmidt56052862013-10-04 10:23:25 -07005600 wpa_dbg(wpa_s, MSG_DEBUG,
5601 "P2P: Re-start group formation timeout (%d seconds) as client for initial connection",
5602 P2P_MAX_INITIAL_CONN_WAIT);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005603 eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
5604 wpas_p2p_group_formation_timeout,
5605 wpa_s->parent, NULL);
Dmitry Shmidt56052862013-10-04 10:23:25 -07005606 } else if (ssid) {
5607 /*
5608 * Use a separate timeout for initial data connection to
5609 * complete to allow the group to be removed automatically if
5610 * the client does not complete data connection successfully.
5611 */
5612 wpa_dbg(wpa_s, MSG_DEBUG,
5613 "P2P: Re-start group formation timeout (%d seconds) as GO for initial connection",
5614 P2P_MAX_INITIAL_CONN_WAIT_GO);
5615 eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT_GO, 0,
5616 wpas_p2p_group_formation_timeout,
5617 wpa_s->parent, NULL);
5618 /*
5619 * Complete group formation on first successful data connection
5620 */
5621 wpa_s->p2p_go_group_formation_completed = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005622 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005623 if (wpa_s->global->p2p)
5624 p2p_wps_success_cb(wpa_s->global->p2p, peer_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005625 wpas_group_formation_completed(wpa_s, 1);
5626}
5627
5628
Jouni Malinen75ecf522011-06-27 15:19:46 -07005629void wpas_p2p_wps_failed(struct wpa_supplicant *wpa_s,
5630 struct wps_event_fail *fail)
5631{
5632 if (!wpa_s->p2p_in_provisioning) {
5633 wpa_printf(MSG_DEBUG, "P2P: Ignore WPS fail event - P2P "
5634 "provisioning not in progress");
5635 return;
5636 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005637
5638 if (wpa_s->go_params) {
5639 p2p_clear_provisioning_info(
5640 wpa_s->global->p2p,
Dmitry Shmidt04949592012-07-19 12:16:46 -07005641 wpa_s->go_params->peer_device_addr);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005642 }
5643
Jouni Malinen75ecf522011-06-27 15:19:46 -07005644 wpas_notify_p2p_wps_failed(wpa_s, fail);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08005645
5646 if (wpa_s == wpa_s->global->p2p_group_formation) {
5647 /*
5648 * Allow some time for the failed WPS negotiation exchange to
5649 * complete, but remove the group since group formation cannot
5650 * succeed after provisioning failure.
5651 */
5652 wpa_printf(MSG_DEBUG, "P2P: WPS step failed during group formation - reject connection from timeout");
5653 wpa_s->global->p2p_fail_on_wps_complete = 1;
5654 eloop_deplete_timeout(0, 50000,
5655 wpas_p2p_group_formation_timeout,
5656 wpa_s->parent, NULL);
5657 }
5658}
5659
5660
5661int wpas_p2p_wps_eapol_cb(struct wpa_supplicant *wpa_s)
5662{
5663 if (!wpa_s->global->p2p_fail_on_wps_complete ||
5664 !wpa_s->p2p_in_provisioning)
5665 return 0;
5666
5667 wpas_p2p_grpform_fail_after_wps(wpa_s);
5668
5669 return 1;
Jouni Malinen75ecf522011-06-27 15:19:46 -07005670}
5671
5672
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005673int wpas_p2p_prov_disc(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
Dmitry Shmidt04949592012-07-19 12:16:46 -07005674 const char *config_method,
5675 enum wpas_p2p_prov_disc_use use)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005676{
5677 u16 config_methods;
5678
Dmitry Shmidt04949592012-07-19 12:16:46 -07005679 wpa_s->p2p_fallback_to_go_neg = 0;
5680 wpa_s->pending_pd_use = NORMAL_PD;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005681 if (os_strncmp(config_method, "display", 7) == 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005682 config_methods = WPS_CONFIG_DISPLAY;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005683 else if (os_strncmp(config_method, "keypad", 6) == 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005684 config_methods = WPS_CONFIG_KEYPAD;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005685 else if (os_strncmp(config_method, "pbc", 3) == 0 ||
5686 os_strncmp(config_method, "pushbutton", 10) == 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005687 config_methods = WPS_CONFIG_PUSHBUTTON;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005688 else {
5689 wpa_printf(MSG_DEBUG, "P2P: Unknown config method");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005690 return -1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005691 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005692
Dmitry Shmidt04949592012-07-19 12:16:46 -07005693 if (use == WPAS_P2P_PD_AUTO) {
5694 os_memcpy(wpa_s->pending_join_dev_addr, peer_addr, ETH_ALEN);
5695 wpa_s->pending_pd_config_methods = config_methods;
5696 wpa_s->p2p_auto_pd = 1;
5697 wpa_s->p2p_auto_join = 0;
5698 wpa_s->pending_pd_before_join = 0;
5699 wpa_s->auto_pd_scan_retry = 0;
5700 wpas_p2p_stop_find(wpa_s);
5701 wpa_s->p2p_join_scan_count = 0;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08005702 os_get_reltime(&wpa_s->p2p_auto_started);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005703 wpa_printf(MSG_DEBUG, "P2P: Auto PD started at %ld.%06ld",
5704 wpa_s->p2p_auto_started.sec,
5705 wpa_s->p2p_auto_started.usec);
5706 wpas_p2p_join_scan(wpa_s, NULL);
5707 return 0;
5708 }
5709
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005710 if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled)
5711 return -1;
5712
5713 return p2p_prov_disc_req(wpa_s->global->p2p, peer_addr,
Dmitry Shmidt04949592012-07-19 12:16:46 -07005714 config_methods, use == WPAS_P2P_PD_FOR_JOIN,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005715 0, 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005716}
5717
5718
5719int wpas_p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
5720 char *end)
5721{
5722 return p2p_scan_result_text(ies, ies_len, buf, end);
5723}
5724
5725
5726static void wpas_p2p_clear_pending_action_tx(struct wpa_supplicant *wpa_s)
5727{
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005728 if (!offchannel_pending_action_tx(wpa_s))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005729 return;
5730
Dmitry Shmidt03658832014-08-13 11:03:49 -07005731 wpas_p2p_action_tx_clear(wpa_s);
5732
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005733 wpa_printf(MSG_DEBUG, "P2P: Drop pending Action TX due to new "
5734 "operation request");
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005735 offchannel_clear_pending_action_tx(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005736}
5737
5738
5739int wpas_p2p_find(struct wpa_supplicant *wpa_s, unsigned int timeout,
5740 enum p2p_discovery_type type,
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005741 unsigned int num_req_dev_types, const u8 *req_dev_types,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005742 const u8 *dev_id, unsigned int search_delay)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005743{
5744 wpas_p2p_clear_pending_action_tx(wpa_s);
5745 wpa_s->p2p_long_listen = 0;
5746
Dmitry Shmidt04949592012-07-19 12:16:46 -07005747 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL ||
5748 wpa_s->p2p_in_provisioning)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005749 return -1;
5750
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005751 wpa_supplicant_cancel_sched_scan(wpa_s);
5752
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005753 return p2p_find(wpa_s->global->p2p, timeout, type,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005754 num_req_dev_types, req_dev_types, dev_id,
5755 search_delay);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005756}
5757
5758
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005759static int wpas_p2p_stop_find_oper(struct wpa_supplicant *wpa_s)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005760{
5761 wpas_p2p_clear_pending_action_tx(wpa_s);
5762 wpa_s->p2p_long_listen = 0;
5763 eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
5764 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005765
5766 if (wpa_s->global->p2p)
5767 p2p_stop_find(wpa_s->global->p2p);
5768
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005769 return 0;
5770}
5771
5772
5773void wpas_p2p_stop_find(struct wpa_supplicant *wpa_s)
5774{
5775 if (wpas_p2p_stop_find_oper(wpa_s) > 0)
5776 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005777 wpas_p2p_remove_pending_group_interface(wpa_s);
5778}
5779
5780
5781static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx)
5782{
5783 struct wpa_supplicant *wpa_s = eloop_ctx;
5784 wpa_s->p2p_long_listen = 0;
5785}
5786
5787
5788int wpas_p2p_listen(struct wpa_supplicant *wpa_s, unsigned int timeout)
5789{
5790 int res;
5791
5792 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
5793 return -1;
5794
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005795 wpa_supplicant_cancel_sched_scan(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005796 wpas_p2p_clear_pending_action_tx(wpa_s);
5797
5798 if (timeout == 0) {
5799 /*
5800 * This is a request for unlimited Listen state. However, at
5801 * least for now, this is mapped to a Listen state for one
5802 * hour.
5803 */
5804 timeout = 3600;
5805 }
5806 eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
5807 wpa_s->p2p_long_listen = 0;
5808
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005809 /*
5810 * Stop previous find/listen operation to avoid trying to request a new
5811 * remain-on-channel operation while the driver is still running the
5812 * previous one.
5813 */
5814 if (wpa_s->global->p2p)
5815 p2p_stop_find(wpa_s->global->p2p);
5816
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005817 res = wpas_p2p_listen_start(wpa_s, timeout * 1000);
5818 if (res == 0 && timeout * 1000 > wpa_s->max_remain_on_chan) {
5819 wpa_s->p2p_long_listen = timeout * 1000;
5820 eloop_register_timeout(timeout, 0,
5821 wpas_p2p_long_listen_timeout,
5822 wpa_s, NULL);
5823 }
5824
5825 return res;
5826}
5827
5828
5829int wpas_p2p_assoc_req_ie(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
5830 u8 *buf, size_t len, int p2p_group)
5831{
5832 struct wpabuf *p2p_ie;
5833 int ret;
5834
5835 if (wpa_s->global->p2p_disabled)
5836 return -1;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07005837 if (wpa_s->conf->p2p_disabled)
5838 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005839 if (wpa_s->global->p2p == NULL)
5840 return -1;
5841 if (bss == NULL)
5842 return -1;
5843
5844 p2p_ie = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
5845 ret = p2p_assoc_req_ie(wpa_s->global->p2p, bss->bssid, buf, len,
5846 p2p_group, p2p_ie);
5847 wpabuf_free(p2p_ie);
5848
5849 return ret;
5850}
5851
5852
5853int wpas_p2p_probe_req_rx(struct wpa_supplicant *wpa_s, const u8 *addr,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005854 const u8 *dst, const u8 *bssid,
Dmitry Shmidt04949592012-07-19 12:16:46 -07005855 const u8 *ie, size_t ie_len, int ssi_signal)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005856{
5857 if (wpa_s->global->p2p_disabled)
5858 return 0;
5859 if (wpa_s->global->p2p == NULL)
5860 return 0;
5861
Dmitry Shmidt04949592012-07-19 12:16:46 -07005862 switch (p2p_probe_req_rx(wpa_s->global->p2p, addr, dst, bssid,
5863 ie, ie_len)) {
5864 case P2P_PREQ_NOT_P2P:
5865 wpas_notify_preq(wpa_s, addr, dst, bssid, ie, ie_len,
5866 ssi_signal);
5867 /* fall through */
5868 case P2P_PREQ_MALFORMED:
5869 case P2P_PREQ_NOT_LISTEN:
5870 case P2P_PREQ_NOT_PROCESSED:
5871 default: /* make gcc happy */
5872 return 0;
5873 case P2P_PREQ_PROCESSED:
5874 return 1;
5875 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005876}
5877
5878
5879void wpas_p2p_rx_action(struct wpa_supplicant *wpa_s, const u8 *da,
5880 const u8 *sa, const u8 *bssid,
5881 u8 category, const u8 *data, size_t len, int freq)
5882{
5883 if (wpa_s->global->p2p_disabled)
5884 return;
5885 if (wpa_s->global->p2p == NULL)
5886 return;
5887
5888 p2p_rx_action(wpa_s->global->p2p, da, sa, bssid, category, data, len,
5889 freq);
5890}
5891
5892
5893void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies)
5894{
5895 if (wpa_s->global->p2p_disabled)
5896 return;
5897 if (wpa_s->global->p2p == NULL)
5898 return;
5899
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005900 p2p_scan_ie(wpa_s->global->p2p, ies, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005901}
5902
5903
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005904static void wpas_p2p_group_deinit(struct wpa_supplicant *wpa_s)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005905{
5906 p2p_group_deinit(wpa_s->p2p_group);
5907 wpa_s->p2p_group = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005908
5909 wpa_s->ap_configured_cb = NULL;
5910 wpa_s->ap_configured_cb_ctx = NULL;
5911 wpa_s->ap_configured_cb_data = NULL;
5912 wpa_s->connect_without_scan = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005913}
5914
5915
5916int wpas_p2p_reject(struct wpa_supplicant *wpa_s, const u8 *addr)
5917{
5918 wpa_s->p2p_long_listen = 0;
5919
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005920 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
5921 return -1;
5922
5923 return p2p_reject(wpa_s->global->p2p, addr);
5924}
5925
5926
5927/* Invite to reinvoke a persistent group */
5928int wpas_p2p_invite(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
Jouni Malinen31be0a42012-08-31 21:20:51 +03005929 struct wpa_ssid *ssid, const u8 *go_dev_addr, int freq,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005930 int ht40, int vht, int pref_freq)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005931{
5932 enum p2p_invite_role role;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005933 u8 *bssid = NULL;
5934 int force_freq = 0;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005935 int res;
Dmitry Shmidta0d265f2013-11-19 13:13:41 -08005936 int no_pref_freq_given = pref_freq == 0;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005937
Dmitry Shmidt700a1372013-03-15 14:14:44 -07005938 wpa_s->global->p2p_invite_group = NULL;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005939 if (peer_addr)
5940 os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
5941 else
5942 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005943
Jouni Malinen31be0a42012-08-31 21:20:51 +03005944 wpa_s->p2p_persistent_go_freq = freq;
5945 wpa_s->p2p_go_ht40 = !!ht40;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005946 if (ssid->mode == WPAS_MODE_P2P_GO) {
5947 role = P2P_INVITE_ROLE_GO;
5948 if (peer_addr == NULL) {
5949 wpa_printf(MSG_DEBUG, "P2P: Missing peer "
5950 "address in invitation command");
5951 return -1;
5952 }
5953 if (wpas_p2p_create_iface(wpa_s)) {
5954 if (wpas_p2p_add_group_interface(wpa_s,
5955 WPA_IF_P2P_GO) < 0) {
5956 wpa_printf(MSG_ERROR, "P2P: Failed to "
5957 "allocate a new interface for the "
5958 "group");
5959 return -1;
5960 }
5961 bssid = wpa_s->pending_interface_addr;
5962 } else
5963 bssid = wpa_s->own_addr;
5964 } else {
5965 role = P2P_INVITE_ROLE_CLIENT;
5966 peer_addr = ssid->bssid;
5967 }
5968 wpa_s->pending_invite_ssid_id = ssid->id;
5969
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005970 res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
5971 role == P2P_INVITE_ROLE_GO);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005972 if (res)
5973 return res;
Irfan Sheriffaf84a572012-09-22 16:59:30 -07005974
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005975 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
5976 return -1;
5977
Dmitry Shmidta0d265f2013-11-19 13:13:41 -08005978 if (wpa_s->parent->conf->p2p_ignore_shared_freq &&
5979 no_pref_freq_given && pref_freq > 0 &&
5980 wpa_s->num_multichan_concurrent > 1 &&
5981 wpas_p2p_num_unused_channels(wpa_s) > 0) {
5982 wpa_printf(MSG_DEBUG, "P2P: Ignore own channel preference %d MHz for invitation due to p2p_ignore_shared_freq=1 configuration",
5983 pref_freq);
5984 pref_freq = 0;
5985 }
5986
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005987 return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005988 ssid->ssid, ssid->ssid_len, force_freq, go_dev_addr,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08005989 1, pref_freq, -1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005990}
5991
5992
5993/* Invite to join an active group */
5994int wpas_p2p_invite_group(struct wpa_supplicant *wpa_s, const char *ifname,
5995 const u8 *peer_addr, const u8 *go_dev_addr)
5996{
5997 struct wpa_global *global = wpa_s->global;
5998 enum p2p_invite_role role;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005999 u8 *bssid = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006000 struct wpa_ssid *ssid;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08006001 int persistent;
Dmitry Shmidt051af732013-10-22 13:52:46 -07006002 int freq = 0, force_freq = 0, pref_freq = 0;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08006003 int res;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006004
Jouni Malinen31be0a42012-08-31 21:20:51 +03006005 wpa_s->p2p_persistent_go_freq = 0;
6006 wpa_s->p2p_go_ht40 = 0;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07006007 wpa_s->p2p_go_vht = 0;
Jouni Malinen31be0a42012-08-31 21:20:51 +03006008
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006009 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
6010 if (os_strcmp(wpa_s->ifname, ifname) == 0)
6011 break;
6012 }
6013 if (wpa_s == NULL) {
6014 wpa_printf(MSG_DEBUG, "P2P: Interface '%s' not found", ifname);
6015 return -1;
6016 }
6017
6018 ssid = wpa_s->current_ssid;
6019 if (ssid == NULL) {
6020 wpa_printf(MSG_DEBUG, "P2P: No current SSID to use for "
6021 "invitation");
6022 return -1;
6023 }
6024
Dmitry Shmidt700a1372013-03-15 14:14:44 -07006025 wpa_s->global->p2p_invite_group = wpa_s;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08006026 persistent = ssid->p2p_persistent_group &&
6027 wpas_p2p_get_persistent(wpa_s->parent, peer_addr,
6028 ssid->ssid, ssid->ssid_len);
6029
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006030 if (ssid->mode == WPAS_MODE_P2P_GO) {
6031 role = P2P_INVITE_ROLE_ACTIVE_GO;
6032 bssid = wpa_s->own_addr;
6033 if (go_dev_addr == NULL)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006034 go_dev_addr = wpa_s->global->p2p_dev_addr;
Dmitry Shmidt051af732013-10-22 13:52:46 -07006035 freq = ssid->frequency;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006036 } else {
6037 role = P2P_INVITE_ROLE_CLIENT;
6038 if (wpa_s->wpa_state < WPA_ASSOCIATED) {
6039 wpa_printf(MSG_DEBUG, "P2P: Not associated - cannot "
6040 "invite to current group");
6041 return -1;
6042 }
6043 bssid = wpa_s->bssid;
6044 if (go_dev_addr == NULL &&
6045 !is_zero_ether_addr(wpa_s->go_dev_addr))
6046 go_dev_addr = wpa_s->go_dev_addr;
Dmitry Shmidt051af732013-10-22 13:52:46 -07006047 freq = wpa_s->current_bss ? wpa_s->current_bss->freq :
6048 (int) wpa_s->assoc_freq;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006049 }
6050 wpa_s->parent->pending_invite_ssid_id = -1;
6051
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006052 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
6053 return -1;
6054
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07006055 res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
6056 role == P2P_INVITE_ROLE_ACTIVE_GO);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08006057 if (res)
6058 return res;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07006059 wpas_p2p_set_own_freq_preference(wpa_s, force_freq);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08006060
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006061 return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08006062 ssid->ssid, ssid->ssid_len, force_freq,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08006063 go_dev_addr, persistent, pref_freq, -1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006064}
6065
6066
6067void wpas_p2p_completed(struct wpa_supplicant *wpa_s)
6068{
6069 struct wpa_ssid *ssid = wpa_s->current_ssid;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006070 u8 go_dev_addr[ETH_ALEN];
Jouni Malinen75ecf522011-06-27 15:19:46 -07006071 int network_id = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006072 int persistent;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006073 int freq;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08006074 u8 ip[3 * 4];
6075 char ip_addr[100];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006076
Dmitry Shmidt04949592012-07-19 12:16:46 -07006077 if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION) {
6078 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
6079 wpa_s->parent, NULL);
6080 }
6081
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006082 if (!wpa_s->show_group_started || !ssid)
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006083 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006084
6085 wpa_s->show_group_started = 0;
6086
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006087 os_memset(go_dev_addr, 0, ETH_ALEN);
6088 if (ssid->bssid_set)
6089 os_memcpy(go_dev_addr, ssid->bssid, ETH_ALEN);
6090 persistent = wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
6091 ssid->ssid_len);
6092 os_memcpy(wpa_s->go_dev_addr, go_dev_addr, ETH_ALEN);
6093
6094 if (wpa_s->global->p2p_group_formation == wpa_s)
6095 wpa_s->global->p2p_group_formation = NULL;
6096
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006097 freq = wpa_s->current_bss ? wpa_s->current_bss->freq :
6098 (int) wpa_s->assoc_freq;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08006099
6100 ip_addr[0] = '\0';
6101 if (wpa_sm_get_p2p_ip_addr(wpa_s->wpa, ip) == 0) {
6102 os_snprintf(ip_addr, sizeof(ip_addr), " ip_addr=%u.%u.%u.%u "
6103 "ip_mask=%u.%u.%u.%u go_ip_addr=%u.%u.%u.%u",
6104 ip[0], ip[1], ip[2], ip[3],
6105 ip[4], ip[5], ip[6], ip[7],
6106 ip[8], ip[9], ip[10], ip[11]);
6107 }
6108
Dmitry Shmidt7f0b69e2014-07-28 10:35:20 -07006109 wpas_p2p_group_started(wpa_s, 0, ssid, freq,
6110 ssid->passphrase == NULL && ssid->psk_set ?
6111 ssid->psk : NULL,
6112 ssid->passphrase, go_dev_addr, persistent,
6113 ip_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006114
6115 if (persistent)
Jouni Malinen75ecf522011-06-27 15:19:46 -07006116 network_id = wpas_p2p_store_persistent_group(wpa_s->parent,
6117 ssid, go_dev_addr);
6118 if (network_id < 0)
6119 network_id = ssid->id;
6120 wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006121}
6122
6123
6124int wpas_p2p_presence_req(struct wpa_supplicant *wpa_s, u32 duration1,
6125 u32 interval1, u32 duration2, u32 interval2)
6126{
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006127 int ret;
6128
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006129 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
6130 return -1;
6131
6132 if (wpa_s->wpa_state < WPA_ASSOCIATED ||
6133 wpa_s->current_ssid == NULL ||
6134 wpa_s->current_ssid->mode != WPAS_MODE_INFRA)
6135 return -1;
6136
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006137 ret = p2p_presence_req(wpa_s->global->p2p, wpa_s->bssid,
6138 wpa_s->own_addr, wpa_s->assoc_freq,
6139 duration1, interval1, duration2, interval2);
6140 if (ret == 0)
6141 wpa_s->waiting_presence_resp = 1;
6142
6143 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006144}
6145
6146
6147int wpas_p2p_ext_listen(struct wpa_supplicant *wpa_s, unsigned int period,
6148 unsigned int interval)
6149{
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006150 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
6151 return -1;
6152
6153 return p2p_ext_listen(wpa_s->global->p2p, period, interval);
6154}
6155
6156
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006157static int wpas_p2p_is_client(struct wpa_supplicant *wpa_s)
6158{
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08006159 if (wpa_s->current_ssid == NULL) {
6160 /*
6161 * current_ssid can be cleared when P2P client interface gets
6162 * disconnected, so assume this interface was used as P2P
6163 * client.
6164 */
6165 return 1;
6166 }
6167 return wpa_s->current_ssid->p2p_group &&
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006168 wpa_s->current_ssid->mode == WPAS_MODE_INFRA;
6169}
6170
6171
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006172static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx)
6173{
6174 struct wpa_supplicant *wpa_s = eloop_ctx;
6175
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006176 if (wpa_s->conf->p2p_group_idle == 0 && !wpas_p2p_is_client(wpa_s)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006177 wpa_printf(MSG_DEBUG, "P2P: Ignore group idle timeout - "
6178 "disabled");
6179 return;
6180 }
6181
Dmitry Shmidt04949592012-07-19 12:16:46 -07006182 wpa_printf(MSG_DEBUG, "P2P: Group idle timeout reached - terminate "
6183 "group");
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006184 wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_IDLE_TIMEOUT);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006185}
6186
6187
6188static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s)
6189{
Dmitry Shmidt04949592012-07-19 12:16:46 -07006190 int timeout;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006191
Dmitry Shmidt04949592012-07-19 12:16:46 -07006192 if (eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
6193 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
6194
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006195 if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
6196 return;
6197
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006198 timeout = wpa_s->conf->p2p_group_idle;
6199 if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA &&
6200 (timeout == 0 || timeout > P2P_MAX_CLIENT_IDLE))
6201 timeout = P2P_MAX_CLIENT_IDLE;
6202
6203 if (timeout == 0)
6204 return;
6205
Dmitry Shmidt04949592012-07-19 12:16:46 -07006206 if (timeout < 0) {
6207 if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA)
6208 timeout = 0; /* special client mode no-timeout */
6209 else
6210 return;
6211 }
6212
6213 if (wpa_s->p2p_in_provisioning) {
6214 /*
6215 * Use the normal group formation timeout during the
6216 * provisioning phase to avoid terminating this process too
6217 * early due to group idle timeout.
6218 */
6219 wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
6220 "during provisioning");
6221 return;
6222 }
Deepthi Gowri9e4e8ac2013-04-16 11:57:05 +05306223
Dmitry Shmidt04949592012-07-19 12:16:46 -07006224 if (wpa_s->show_group_started) {
6225 /*
6226 * Use the normal group formation timeout between the end of
6227 * the provisioning phase and completion of 4-way handshake to
6228 * avoid terminating this process too early due to group idle
6229 * timeout.
6230 */
6231 wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
6232 "while waiting for initial 4-way handshake to "
6233 "complete");
6234 return;
6235 }
6236
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006237 wpa_printf(MSG_DEBUG, "P2P: Set P2P group idle timeout to %u seconds",
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006238 timeout);
6239 eloop_register_timeout(timeout, 0, wpas_p2p_group_idle_timeout,
6240 wpa_s, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006241}
6242
6243
Jouni Malinen2b89da82012-08-31 22:04:41 +03006244/* Returns 1 if the interface was removed */
6245int wpas_p2p_deauth_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
6246 u16 reason_code, const u8 *ie, size_t ie_len,
6247 int locally_generated)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006248{
6249 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
Jouni Malinen2b89da82012-08-31 22:04:41 +03006250 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006251
Dmitry Shmidt04949592012-07-19 12:16:46 -07006252 if (!locally_generated)
6253 p2p_deauth_notif(wpa_s->global->p2p, bssid, reason_code, ie,
6254 ie_len);
6255
6256 if (reason_code == WLAN_REASON_DEAUTH_LEAVING && !locally_generated &&
6257 wpa_s->current_ssid &&
6258 wpa_s->current_ssid->p2p_group &&
6259 wpa_s->current_ssid->mode == WPAS_MODE_INFRA) {
6260 wpa_printf(MSG_DEBUG, "P2P: GO indicated that the P2P Group "
6261 "session is ending");
Jouni Malinen2b89da82012-08-31 22:04:41 +03006262 if (wpas_p2p_group_delete(wpa_s,
6263 P2P_GROUP_REMOVAL_GO_ENDING_SESSION)
6264 > 0)
6265 return 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07006266 }
Jouni Malinen2b89da82012-08-31 22:04:41 +03006267
6268 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006269}
6270
6271
6272void wpas_p2p_disassoc_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
Dmitry Shmidt04949592012-07-19 12:16:46 -07006273 u16 reason_code, const u8 *ie, size_t ie_len,
6274 int locally_generated)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006275{
6276 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
6277 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006278
Dmitry Shmidt04949592012-07-19 12:16:46 -07006279 if (!locally_generated)
6280 p2p_disassoc_notif(wpa_s->global->p2p, bssid, reason_code, ie,
6281 ie_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006282}
6283
6284
6285void wpas_p2p_update_config(struct wpa_supplicant *wpa_s)
6286{
6287 struct p2p_data *p2p = wpa_s->global->p2p;
6288
6289 if (p2p == NULL)
6290 return;
6291
6292 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
6293 return;
6294
6295 if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_NAME)
6296 p2p_set_dev_name(p2p, wpa_s->conf->device_name);
6297
6298 if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_TYPE)
6299 p2p_set_pri_dev_type(p2p, wpa_s->conf->device_type);
6300
6301 if (wpa_s->wps &&
6302 (wpa_s->conf->changed_parameters & CFG_CHANGED_CONFIG_METHODS))
6303 p2p_set_config_methods(p2p, wpa_s->wps->config_methods);
6304
6305 if (wpa_s->wps && (wpa_s->conf->changed_parameters & CFG_CHANGED_UUID))
6306 p2p_set_uuid(p2p, wpa_s->wps->uuid);
6307
6308 if (wpa_s->conf->changed_parameters & CFG_CHANGED_WPS_STRING) {
6309 p2p_set_manufacturer(p2p, wpa_s->conf->manufacturer);
6310 p2p_set_model_name(p2p, wpa_s->conf->model_name);
6311 p2p_set_model_number(p2p, wpa_s->conf->model_number);
6312 p2p_set_serial_number(p2p, wpa_s->conf->serial_number);
6313 }
6314
6315 if (wpa_s->conf->changed_parameters & CFG_CHANGED_SEC_DEVICE_TYPE)
6316 p2p_set_sec_dev_types(p2p,
6317 (void *) wpa_s->conf->sec_device_type,
6318 wpa_s->conf->num_sec_device_types);
6319
6320 if (wpa_s->conf->changed_parameters & CFG_CHANGED_VENDOR_EXTENSION) {
6321 int i;
6322 p2p_remove_wps_vendor_extensions(p2p);
6323 for (i = 0; i < MAX_WPS_VENDOR_EXT; i++) {
6324 if (wpa_s->conf->wps_vendor_ext[i] == NULL)
6325 continue;
6326 p2p_add_wps_vendor_extension(
6327 p2p, wpa_s->conf->wps_vendor_ext[i]);
6328 }
6329 }
6330
6331 if ((wpa_s->conf->changed_parameters & CFG_CHANGED_COUNTRY) &&
6332 wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
6333 char country[3];
6334 country[0] = wpa_s->conf->country[0];
6335 country[1] = wpa_s->conf->country[1];
6336 country[2] = 0x04;
6337 p2p_set_country(p2p, country);
6338 }
6339
6340 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_SSID_POSTFIX) {
6341 p2p_set_ssid_postfix(p2p, (u8 *) wpa_s->conf->p2p_ssid_postfix,
6342 wpa_s->conf->p2p_ssid_postfix ?
6343 os_strlen(wpa_s->conf->p2p_ssid_postfix) :
6344 0);
6345 }
6346
6347 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_INTRA_BSS)
6348 p2p_set_intra_bss_dist(p2p, wpa_s->conf->p2p_intra_bss);
Jouni Malinen75ecf522011-06-27 15:19:46 -07006349
6350 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_LISTEN_CHANNEL) {
6351 u8 reg_class, channel;
6352 int ret;
6353 unsigned int r;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07006354 u8 channel_forced;
6355
Jouni Malinen75ecf522011-06-27 15:19:46 -07006356 if (wpa_s->conf->p2p_listen_reg_class &&
6357 wpa_s->conf->p2p_listen_channel) {
6358 reg_class = wpa_s->conf->p2p_listen_reg_class;
6359 channel = wpa_s->conf->p2p_listen_channel;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07006360 channel_forced = 1;
Jouni Malinen75ecf522011-06-27 15:19:46 -07006361 } else {
6362 reg_class = 81;
6363 /*
6364 * Pick one of the social channels randomly as the
6365 * listen channel.
6366 */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07006367 if (os_get_random((u8 *) &r, sizeof(r)) < 0)
6368 channel = 1;
6369 else
6370 channel = 1 + (r % 3) * 5;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07006371 channel_forced = 0;
Jouni Malinen75ecf522011-06-27 15:19:46 -07006372 }
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07006373 ret = p2p_set_listen_channel(p2p, reg_class, channel,
6374 channel_forced);
Jouni Malinen75ecf522011-06-27 15:19:46 -07006375 if (ret)
6376 wpa_printf(MSG_ERROR, "P2P: Own listen channel update "
6377 "failed: %d", ret);
6378 }
6379 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_OPER_CHANNEL) {
6380 u8 op_reg_class, op_channel, cfg_op_channel;
6381 int ret = 0;
6382 unsigned int r;
6383 if (wpa_s->conf->p2p_oper_reg_class &&
6384 wpa_s->conf->p2p_oper_channel) {
6385 op_reg_class = wpa_s->conf->p2p_oper_reg_class;
6386 op_channel = wpa_s->conf->p2p_oper_channel;
6387 cfg_op_channel = 1;
6388 } else {
6389 op_reg_class = 81;
6390 /*
6391 * Use random operation channel from (1, 6, 11)
6392 *if no other preference is indicated.
6393 */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07006394 if (os_get_random((u8 *) &r, sizeof(r)) < 0)
6395 op_channel = 1;
6396 else
6397 op_channel = 1 + (r % 3) * 5;
Jouni Malinen75ecf522011-06-27 15:19:46 -07006398 cfg_op_channel = 0;
6399 }
6400 ret = p2p_set_oper_channel(p2p, op_reg_class, op_channel,
6401 cfg_op_channel);
6402 if (ret)
6403 wpa_printf(MSG_ERROR, "P2P: Own oper channel update "
6404 "failed: %d", ret);
6405 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07006406
6407 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_PREF_CHAN) {
6408 if (p2p_set_pref_chan(p2p, wpa_s->conf->num_p2p_pref_chan,
6409 wpa_s->conf->p2p_pref_chan) < 0) {
6410 wpa_printf(MSG_ERROR, "P2P: Preferred channel list "
6411 "update failed");
6412 }
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07006413
6414 if (p2p_set_no_go_freq(p2p, &wpa_s->conf->p2p_no_go_freq) < 0) {
6415 wpa_printf(MSG_ERROR, "P2P: No GO channel list "
6416 "update failed");
6417 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07006418 }
Dmitry Shmidt2271d3f2014-06-23 12:16:31 -07006419
6420 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_PASSPHRASE_LEN)
6421 p2p_set_passphrase_len(p2p, wpa_s->conf->p2p_passphrase_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006422}
6423
6424
6425int wpas_p2p_set_noa(struct wpa_supplicant *wpa_s, u8 count, int start,
6426 int duration)
6427{
6428 if (!wpa_s->ap_iface)
6429 return -1;
6430 return hostapd_p2p_set_noa(wpa_s->ap_iface->bss[0], count, start,
6431 duration);
6432}
6433
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006434
6435int wpas_p2p_set_cross_connect(struct wpa_supplicant *wpa_s, int enabled)
6436{
6437 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
6438 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006439
6440 wpa_s->global->cross_connection = enabled;
6441 p2p_set_cross_connect(wpa_s->global->p2p, enabled);
6442
6443 if (!enabled) {
6444 struct wpa_supplicant *iface;
6445
6446 for (iface = wpa_s->global->ifaces; iface; iface = iface->next)
6447 {
6448 if (iface->cross_connect_enabled == 0)
6449 continue;
6450
6451 iface->cross_connect_enabled = 0;
6452 iface->cross_connect_in_use = 0;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07006453 wpa_msg_global(iface->parent, MSG_INFO,
6454 P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
6455 iface->ifname,
6456 iface->cross_connect_uplink);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006457 }
6458 }
6459
6460 return 0;
6461}
6462
6463
6464static void wpas_p2p_enable_cross_connect(struct wpa_supplicant *uplink)
6465{
6466 struct wpa_supplicant *iface;
6467
6468 if (!uplink->global->cross_connection)
6469 return;
6470
6471 for (iface = uplink->global->ifaces; iface; iface = iface->next) {
6472 if (!iface->cross_connect_enabled)
6473 continue;
6474 if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
6475 0)
6476 continue;
6477 if (iface->ap_iface == NULL)
6478 continue;
6479 if (iface->cross_connect_in_use)
6480 continue;
6481
6482 iface->cross_connect_in_use = 1;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07006483 wpa_msg_global(iface->parent, MSG_INFO,
6484 P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
6485 iface->ifname, iface->cross_connect_uplink);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006486 }
6487}
6488
6489
6490static void wpas_p2p_disable_cross_connect(struct wpa_supplicant *uplink)
6491{
6492 struct wpa_supplicant *iface;
6493
6494 for (iface = uplink->global->ifaces; iface; iface = iface->next) {
6495 if (!iface->cross_connect_enabled)
6496 continue;
6497 if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
6498 0)
6499 continue;
6500 if (!iface->cross_connect_in_use)
6501 continue;
6502
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07006503 wpa_msg_global(iface->parent, MSG_INFO,
6504 P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
6505 iface->ifname, iface->cross_connect_uplink);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006506 iface->cross_connect_in_use = 0;
6507 }
6508}
6509
6510
6511void wpas_p2p_notif_connected(struct wpa_supplicant *wpa_s)
6512{
6513 if (wpa_s->ap_iface || wpa_s->current_ssid == NULL ||
6514 wpa_s->current_ssid->mode != WPAS_MODE_INFRA ||
6515 wpa_s->cross_connect_disallowed)
6516 wpas_p2p_disable_cross_connect(wpa_s);
6517 else
6518 wpas_p2p_enable_cross_connect(wpa_s);
Dmitry Shmidt04949592012-07-19 12:16:46 -07006519 if (!wpa_s->ap_iface &&
6520 eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
6521 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006522}
6523
6524
6525void wpas_p2p_notif_disconnected(struct wpa_supplicant *wpa_s)
6526{
6527 wpas_p2p_disable_cross_connect(wpa_s);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006528 if (!wpa_s->ap_iface &&
6529 !eloop_is_timeout_registered(wpas_p2p_group_idle_timeout,
6530 wpa_s, NULL))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006531 wpas_p2p_set_group_idle_timeout(wpa_s);
6532}
6533
6534
6535static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s)
6536{
6537 struct wpa_supplicant *iface;
6538
6539 if (!wpa_s->global->cross_connection)
6540 return;
6541
6542 for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
6543 if (iface == wpa_s)
6544 continue;
6545 if (iface->drv_flags &
6546 WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE)
6547 continue;
6548 if (iface->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE)
6549 continue;
6550
6551 wpa_s->cross_connect_enabled = 1;
6552 os_strlcpy(wpa_s->cross_connect_uplink, iface->ifname,
6553 sizeof(wpa_s->cross_connect_uplink));
6554 wpa_printf(MSG_DEBUG, "P2P: Enable cross connection from "
6555 "%s to %s whenever uplink is available",
6556 wpa_s->ifname, wpa_s->cross_connect_uplink);
6557
6558 if (iface->ap_iface || iface->current_ssid == NULL ||
6559 iface->current_ssid->mode != WPAS_MODE_INFRA ||
6560 iface->cross_connect_disallowed ||
6561 iface->wpa_state != WPA_COMPLETED)
6562 break;
6563
6564 wpa_s->cross_connect_in_use = 1;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07006565 wpa_msg_global(wpa_s->parent, MSG_INFO,
6566 P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
6567 wpa_s->ifname, wpa_s->cross_connect_uplink);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006568 break;
6569 }
6570}
6571
6572
6573int wpas_p2p_notif_pbc_overlap(struct wpa_supplicant *wpa_s)
6574{
6575 if (wpa_s->p2p_group_interface != P2P_GROUP_INTERFACE_CLIENT &&
6576 !wpa_s->p2p_in_provisioning)
6577 return 0; /* not P2P client operation */
6578
6579 wpa_printf(MSG_DEBUG, "P2P: Terminate connection due to WPS PBC "
6580 "session overlap");
6581 if (wpa_s != wpa_s->parent)
6582 wpa_msg_ctrl(wpa_s->parent, MSG_INFO, WPS_EVENT_OVERLAP);
Dmitry Shmidt34af3062013-07-11 10:46:32 -07006583 wpas_p2p_group_formation_failed(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006584 return 1;
6585}
6586
6587
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07006588void wpas_p2p_pbc_overlap_cb(void *eloop_ctx, void *timeout_ctx)
6589{
6590 struct wpa_supplicant *wpa_s = eloop_ctx;
6591 wpas_p2p_notif_pbc_overlap(wpa_s);
6592}
6593
6594
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006595void wpas_p2p_update_channel_list(struct wpa_supplicant *wpa_s)
6596{
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07006597 struct p2p_channels chan, cli_chan;
Dmitry Shmidt684785c2014-05-12 13:34:29 -07006598 struct wpa_supplicant *ifs;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006599
6600 if (wpa_s->global == NULL || wpa_s->global->p2p == NULL)
6601 return;
6602
6603 os_memset(&chan, 0, sizeof(chan));
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07006604 os_memset(&cli_chan, 0, sizeof(cli_chan));
6605 if (wpas_p2p_setup_channels(wpa_s, &chan, &cli_chan)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006606 wpa_printf(MSG_ERROR, "P2P: Failed to update supported "
6607 "channel list");
6608 return;
6609 }
6610
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07006611 p2p_update_channel_list(wpa_s->global->p2p, &chan, &cli_chan);
Dmitry Shmidt684785c2014-05-12 13:34:29 -07006612
6613 for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
6614 int freq;
6615 if (!ifs->current_ssid ||
6616 !ifs->current_ssid->p2p_group ||
6617 (ifs->current_ssid->mode != WPAS_MODE_P2P_GO &&
6618 ifs->current_ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION))
6619 continue;
6620 freq = ifs->current_ssid->frequency;
6621 if (freq_included(&chan, freq)) {
6622 wpa_dbg(ifs, MSG_DEBUG,
6623 "P2P GO operating frequency %d MHz in valid range",
6624 freq);
6625 continue;
6626 }
6627
6628 wpa_dbg(ifs, MSG_DEBUG,
6629 "P2P GO operating in invalid frequency %d MHz", freq);
6630 /* TODO: Consider using CSA or removing the group within
6631 * wpa_supplicant */
6632 wpa_msg(ifs, MSG_INFO, P2P_EVENT_REMOVE_AND_REFORM_GROUP);
6633 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006634}
6635
6636
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08006637static void wpas_p2p_scan_res_ignore(struct wpa_supplicant *wpa_s,
6638 struct wpa_scan_results *scan_res)
6639{
6640 wpa_printf(MSG_DEBUG, "P2P: Ignore scan results");
6641}
6642
6643
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006644int wpas_p2p_cancel(struct wpa_supplicant *wpa_s)
6645{
6646 struct wpa_global *global = wpa_s->global;
6647 int found = 0;
6648 const u8 *peer;
6649
6650 if (global->p2p == NULL)
6651 return -1;
6652
6653 wpa_printf(MSG_DEBUG, "P2P: Request to cancel group formation");
6654
6655 if (wpa_s->pending_interface_name[0] &&
6656 !is_zero_ether_addr(wpa_s->pending_interface_addr))
6657 found = 1;
6658
6659 peer = p2p_get_go_neg_peer(global->p2p);
6660 if (peer) {
6661 wpa_printf(MSG_DEBUG, "P2P: Unauthorize pending GO Neg peer "
6662 MACSTR, MAC2STR(peer));
6663 p2p_unauthorize(global->p2p, peer);
Dmitry Shmidt04949592012-07-19 12:16:46 -07006664 found = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006665 }
6666
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08006667 if (wpa_s->scan_res_handler == wpas_p2p_scan_res_join) {
6668 wpa_printf(MSG_DEBUG, "P2P: Stop pending scan for join");
6669 wpa_s->scan_res_handler = wpas_p2p_scan_res_ignore;
6670 found = 1;
6671 }
6672
6673 if (wpa_s->pending_pd_before_join) {
6674 wpa_printf(MSG_DEBUG, "P2P: Stop pending PD before join");
6675 wpa_s->pending_pd_before_join = 0;
6676 found = 1;
6677 }
6678
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006679 wpas_p2p_stop_find(wpa_s);
6680
6681 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
6682 if (wpa_s == global->p2p_group_formation &&
6683 (wpa_s->p2p_in_provisioning ||
6684 wpa_s->parent->pending_interface_type ==
6685 WPA_IF_P2P_CLIENT)) {
6686 wpa_printf(MSG_DEBUG, "P2P: Interface %s in group "
6687 "formation found - cancelling",
6688 wpa_s->ifname);
6689 found = 1;
6690 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
6691 wpa_s->parent, NULL);
Jouni Malinenadddfc42012-10-03 14:31:41 -07006692 if (wpa_s->p2p_in_provisioning) {
6693 wpas_group_formation_completed(wpa_s, 0);
6694 break;
6695 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006696 wpas_p2p_group_delete(wpa_s,
6697 P2P_GROUP_REMOVAL_REQUESTED);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006698 break;
Dmitry Shmidt21de2142014-04-08 10:50:52 -07006699 } else if (wpa_s->p2p_in_invitation) {
6700 wpa_printf(MSG_DEBUG, "P2P: Interface %s in invitation found - cancelling",
6701 wpa_s->ifname);
6702 found = 1;
6703 wpas_p2p_group_formation_failed(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006704 }
6705 }
6706
6707 if (!found) {
6708 wpa_printf(MSG_DEBUG, "P2P: No ongoing group formation found");
6709 return -1;
6710 }
6711
6712 return 0;
6713}
6714
6715
6716void wpas_p2p_interface_unavailable(struct wpa_supplicant *wpa_s)
6717{
6718 if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
6719 return;
6720
6721 wpa_printf(MSG_DEBUG, "P2P: Remove group due to driver resource not "
6722 "being available anymore");
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006723 wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_UNAVAILABLE);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006724}
6725
6726
6727void wpas_p2p_update_best_channels(struct wpa_supplicant *wpa_s,
6728 int freq_24, int freq_5, int freq_overall)
6729{
6730 struct p2p_data *p2p = wpa_s->global->p2p;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006731 if (p2p == NULL)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006732 return;
6733 p2p_set_best_channels(p2p, freq_24, freq_5, freq_overall);
6734}
6735
6736
6737int wpas_p2p_unauthorize(struct wpa_supplicant *wpa_s, const char *addr)
6738{
6739 u8 peer[ETH_ALEN];
6740 struct p2p_data *p2p = wpa_s->global->p2p;
6741
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006742 if (p2p == NULL)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006743 return -1;
6744
6745 if (hwaddr_aton(addr, peer))
6746 return -1;
6747
6748 return p2p_unauthorize(p2p, peer);
6749}
6750
6751
6752/**
6753 * wpas_p2p_disconnect - Disconnect from a P2P Group
6754 * @wpa_s: Pointer to wpa_supplicant data
6755 * Returns: 0 on success, -1 on failure
6756 *
6757 * This can be used to disconnect from a group in which the local end is a P2P
6758 * Client or to end a P2P Group in case the local end is the Group Owner. If a
6759 * virtual network interface was created for this group, that interface will be
6760 * removed. Otherwise, only the configured P2P group network will be removed
6761 * from the interface.
6762 */
6763int wpas_p2p_disconnect(struct wpa_supplicant *wpa_s)
6764{
6765
6766 if (wpa_s == NULL)
6767 return -1;
6768
Jouni Malinen2b89da82012-08-31 22:04:41 +03006769 return wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_REQUESTED) < 0 ?
6770 -1 : 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006771}
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006772
6773
6774int wpas_p2p_in_progress(struct wpa_supplicant *wpa_s)
6775{
Dmitry Shmidtf8623282013-02-20 14:34:59 -08006776 int ret;
6777
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006778 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
6779 return 0;
6780
Dmitry Shmidtf8623282013-02-20 14:34:59 -08006781 ret = p2p_in_progress(wpa_s->global->p2p);
6782 if (ret == 0) {
6783 /*
6784 * Check whether there is an ongoing WPS provisioning step (or
6785 * other parts of group formation) on another interface since
6786 * p2p_in_progress() does not report this to avoid issues for
6787 * scans during such provisioning step.
6788 */
6789 if (wpa_s->global->p2p_group_formation &&
6790 wpa_s->global->p2p_group_formation != wpa_s) {
6791 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Another interface (%s) "
6792 "in group formation",
6793 wpa_s->global->p2p_group_formation->ifname);
6794 ret = 1;
6795 }
6796 }
6797
Dmitry Shmidt92c368d2013-08-29 12:37:21 -07006798 if (!ret && wpa_s->global->p2p_go_wait_client.sec) {
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006799 struct os_reltime now;
6800 os_get_reltime(&now);
6801 if (os_reltime_expired(&now, &wpa_s->global->p2p_go_wait_client,
6802 P2P_MAX_INITIAL_CONN_WAIT_GO)) {
Dmitry Shmidt92c368d2013-08-29 12:37:21 -07006803 /* Wait for the first client has expired */
6804 wpa_s->global->p2p_go_wait_client.sec = 0;
6805 } else {
6806 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Waiting for initial client connection during group formation");
6807 ret = 1;
6808 }
6809 }
6810
Dmitry Shmidtf8623282013-02-20 14:34:59 -08006811 return ret;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006812}
6813
6814
6815void wpas_p2p_network_removed(struct wpa_supplicant *wpa_s,
6816 struct wpa_ssid *ssid)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006817{
6818 if (wpa_s->p2p_in_provisioning && ssid->p2p_group &&
6819 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
6820 wpa_s->parent, NULL) > 0) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07006821 /**
6822 * Remove the network by scheduling the group formation
6823 * timeout to happen immediately. The teardown code
6824 * needs to be scheduled to run asynch later so that we
6825 * don't delete data from under ourselves unexpectedly.
6826 * Calling wpas_p2p_group_formation_timeout directly
6827 * causes a series of crashes in WPS failure scenarios.
6828 */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006829 wpa_printf(MSG_DEBUG, "P2P: Canceled group formation due to "
6830 "P2P group network getting removed");
Dmitry Shmidt04949592012-07-19 12:16:46 -07006831 eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
6832 wpa_s->parent, NULL);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006833 }
6834}
6835
6836
6837struct wpa_ssid * wpas_p2p_get_persistent(struct wpa_supplicant *wpa_s,
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08006838 const u8 *addr, const u8 *ssid,
6839 size_t ssid_len)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006840{
6841 struct wpa_ssid *s;
6842 size_t i;
6843
6844 for (s = wpa_s->conf->ssid; s; s = s->next) {
6845 if (s->disabled != 2)
6846 continue;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08006847 if (ssid &&
6848 (ssid_len != s->ssid_len ||
6849 os_memcmp(ssid, s->ssid, ssid_len) != 0))
6850 continue;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07006851 if (addr == NULL) {
6852 if (s->mode == WPAS_MODE_P2P_GO)
6853 return s;
6854 continue;
6855 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006856 if (os_memcmp(s->bssid, addr, ETH_ALEN) == 0)
6857 return s; /* peer is GO in the persistent group */
6858 if (s->mode != WPAS_MODE_P2P_GO || s->p2p_client_list == NULL)
6859 continue;
6860 for (i = 0; i < s->num_p2p_clients; i++) {
6861 if (os_memcmp(s->p2p_client_list + i * ETH_ALEN,
6862 addr, ETH_ALEN) == 0)
6863 return s; /* peer is P2P client in persistent
6864 * group */
6865 }
6866 }
6867
6868 return NULL;
6869}
6870
6871
6872void wpas_p2p_notify_ap_sta_authorized(struct wpa_supplicant *wpa_s,
6873 const u8 *addr)
6874{
Dmitry Shmidt56052862013-10-04 10:23:25 -07006875 if (eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
6876 wpa_s->parent, NULL) > 0) {
6877 /*
6878 * This can happen if WPS provisioning step is not terminated
6879 * cleanly (e.g., P2P Client does not send WSC_Done). Since the
6880 * peer was able to connect, there is no need to time out group
6881 * formation after this, though. In addition, this is used with
6882 * the initial connection wait on the GO as a separate formation
6883 * timeout and as such, expected to be hit after the initial WPS
6884 * provisioning step.
6885 */
6886 wpa_printf(MSG_DEBUG, "P2P: Canceled P2P group formation timeout on data connection");
6887 }
6888 if (!wpa_s->p2p_go_group_formation_completed) {
6889 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Marking group formation completed on GO on first data connection");
6890 wpa_s->p2p_go_group_formation_completed = 1;
6891 wpa_s->global->p2p_group_formation = NULL;
6892 wpa_s->p2p_in_provisioning = 0;
Dmitry Shmidt21de2142014-04-08 10:50:52 -07006893 wpa_s->p2p_in_invitation = 0;
Dmitry Shmidt56052862013-10-04 10:23:25 -07006894 }
Dmitry Shmidt92c368d2013-08-29 12:37:21 -07006895 wpa_s->global->p2p_go_wait_client.sec = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006896 if (addr == NULL)
6897 return;
6898 wpas_p2p_add_persistent_group_client(wpa_s, addr);
6899}
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08006900
Dmitry Shmidt04949592012-07-19 12:16:46 -07006901
6902static void wpas_p2p_fallback_to_go_neg(struct wpa_supplicant *wpa_s,
6903 int group_added)
6904{
6905 struct wpa_supplicant *group = wpa_s;
Dmitry Shmidt04949592012-07-19 12:16:46 -07006906 if (wpa_s->global->p2p_group_formation)
6907 group = wpa_s->global->p2p_group_formation;
6908 wpa_s = wpa_s->parent;
6909 offchannel_send_action_done(wpa_s);
6910 if (group_added)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006911 wpas_p2p_group_delete(group, P2P_GROUP_REMOVAL_SILENT);
Dmitry Shmidt04949592012-07-19 12:16:46 -07006912 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Fall back to GO Negotiation");
6913 wpas_p2p_connect(wpa_s, wpa_s->pending_join_dev_addr, wpa_s->p2p_pin,
6914 wpa_s->p2p_wps_method, wpa_s->p2p_persistent_group, 0,
6915 0, 0, wpa_s->p2p_go_intent, wpa_s->p2p_connect_freq,
6916 wpa_s->p2p_persistent_id,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006917 wpa_s->p2p_pd_before_go_neg,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07006918 wpa_s->p2p_go_ht40,
6919 wpa_s->p2p_go_vht);
Dmitry Shmidt04949592012-07-19 12:16:46 -07006920}
6921
6922
6923int wpas_p2p_scan_no_go_seen(struct wpa_supplicant *wpa_s)
6924{
6925 if (!wpa_s->p2p_fallback_to_go_neg ||
6926 wpa_s->p2p_in_provisioning <= 5)
6927 return 0;
6928
6929 if (wpas_p2p_peer_go(wpa_s, wpa_s->pending_join_dev_addr) > 0)
6930 return 0; /* peer operating as a GO */
6931
6932 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: GO not found for p2p_connect-auto - "
6933 "fallback to GO Negotiation");
6934 wpas_p2p_fallback_to_go_neg(wpa_s, 1);
6935
6936 return 1;
6937}
6938
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006939
6940unsigned int wpas_p2p_search_delay(struct wpa_supplicant *wpa_s)
6941{
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006942 struct wpa_supplicant *ifs;
6943
6944 if (wpa_s->wpa_state > WPA_SCANNING) {
6945 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use %u ms search delay due to "
6946 "concurrent operation",
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -07006947 wpa_s->conf->p2p_search_delay);
6948 return wpa_s->conf->p2p_search_delay;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006949 }
6950
Dmitry Shmidt01904cf2013-12-05 11:08:35 -08006951 dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
6952 radio_list) {
6953 if (ifs != wpa_s && ifs->wpa_state > WPA_SCANNING) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006954 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use %u ms search "
6955 "delay due to concurrent operation on "
6956 "interface %s",
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -07006957 wpa_s->conf->p2p_search_delay,
6958 ifs->ifname);
6959 return wpa_s->conf->p2p_search_delay;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006960 }
6961 }
6962
6963 return 0;
6964}
6965
Dmitry Shmidt37d4d6a2013-03-18 13:09:42 -07006966
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07006967static int wpas_p2p_remove_psk_entry(struct wpa_supplicant *wpa_s,
6968 struct wpa_ssid *s, const u8 *addr,
6969 int iface_addr)
6970{
6971 struct psk_list_entry *psk, *tmp;
6972 int changed = 0;
6973
6974 dl_list_for_each_safe(psk, tmp, &s->psk_list, struct psk_list_entry,
6975 list) {
6976 if ((iface_addr && !psk->p2p &&
6977 os_memcmp(addr, psk->addr, ETH_ALEN) == 0) ||
6978 (!iface_addr && psk->p2p &&
6979 os_memcmp(addr, psk->addr, ETH_ALEN) == 0)) {
6980 wpa_dbg(wpa_s, MSG_DEBUG,
6981 "P2P: Remove persistent group PSK list entry for "
6982 MACSTR " p2p=%u",
6983 MAC2STR(psk->addr), psk->p2p);
6984 dl_list_del(&psk->list);
6985 os_free(psk);
6986 changed++;
6987 }
6988 }
6989
6990 return changed;
6991}
6992
6993
6994void wpas_p2p_new_psk_cb(struct wpa_supplicant *wpa_s, const u8 *mac_addr,
6995 const u8 *p2p_dev_addr,
6996 const u8 *psk, size_t psk_len)
6997{
6998 struct wpa_ssid *ssid = wpa_s->current_ssid;
6999 struct wpa_ssid *persistent;
Dmitry Shmidt7832adb2014-04-29 10:53:02 -07007000 struct psk_list_entry *p, *last;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07007001
7002 if (psk_len != sizeof(p->psk))
7003 return;
7004
7005 if (p2p_dev_addr) {
7006 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New PSK for addr=" MACSTR
7007 " p2p_dev_addr=" MACSTR,
7008 MAC2STR(mac_addr), MAC2STR(p2p_dev_addr));
7009 if (is_zero_ether_addr(p2p_dev_addr))
7010 p2p_dev_addr = NULL;
7011 } else {
7012 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New PSK for addr=" MACSTR,
7013 MAC2STR(mac_addr));
7014 }
7015
7016 if (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
7017 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: new_psk_cb during group formation");
7018 /* To be added to persistent group once created */
7019 if (wpa_s->global->add_psk == NULL) {
7020 wpa_s->global->add_psk = os_zalloc(sizeof(*p));
7021 if (wpa_s->global->add_psk == NULL)
7022 return;
7023 }
7024 p = wpa_s->global->add_psk;
7025 if (p2p_dev_addr) {
7026 p->p2p = 1;
7027 os_memcpy(p->addr, p2p_dev_addr, ETH_ALEN);
7028 } else {
7029 p->p2p = 0;
7030 os_memcpy(p->addr, mac_addr, ETH_ALEN);
7031 }
7032 os_memcpy(p->psk, psk, psk_len);
7033 return;
7034 }
7035
7036 if (ssid->mode != WPAS_MODE_P2P_GO || !ssid->p2p_persistent_group) {
7037 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Ignore new_psk_cb on not-persistent GO");
7038 return;
7039 }
7040
7041 persistent = wpas_p2p_get_persistent(wpa_s->parent, NULL, ssid->ssid,
7042 ssid->ssid_len);
7043 if (!persistent) {
7044 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not find persistent group information to store the new PSK");
7045 return;
7046 }
7047
7048 p = os_zalloc(sizeof(*p));
7049 if (p == NULL)
7050 return;
7051 if (p2p_dev_addr) {
7052 p->p2p = 1;
7053 os_memcpy(p->addr, p2p_dev_addr, ETH_ALEN);
7054 } else {
7055 p->p2p = 0;
7056 os_memcpy(p->addr, mac_addr, ETH_ALEN);
7057 }
7058 os_memcpy(p->psk, psk, psk_len);
7059
Dmitry Shmidt7832adb2014-04-29 10:53:02 -07007060 if (dl_list_len(&persistent->psk_list) > P2P_MAX_STORED_CLIENTS &&
7061 (last = dl_list_last(&persistent->psk_list,
7062 struct psk_list_entry, list))) {
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07007063 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove oldest PSK entry for "
7064 MACSTR " (p2p=%u) to make room for a new one",
7065 MAC2STR(last->addr), last->p2p);
7066 dl_list_del(&last->list);
7067 os_free(last);
7068 }
7069
7070 wpas_p2p_remove_psk_entry(wpa_s->parent, persistent,
7071 p2p_dev_addr ? p2p_dev_addr : mac_addr,
7072 p2p_dev_addr == NULL);
7073 if (p2p_dev_addr) {
7074 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add new PSK for p2p_dev_addr="
7075 MACSTR, MAC2STR(p2p_dev_addr));
7076 } else {
7077 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add new PSK for addr=" MACSTR,
7078 MAC2STR(mac_addr));
7079 }
7080 dl_list_add(&persistent->psk_list, &p->list);
7081
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07007082 if (wpa_s->parent->conf->update_config &&
7083 wpa_config_write(wpa_s->parent->confname, wpa_s->parent->conf))
7084 wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07007085}
7086
7087
7088static void wpas_p2p_remove_psk(struct wpa_supplicant *wpa_s,
7089 struct wpa_ssid *s, const u8 *addr,
7090 int iface_addr)
7091{
7092 int res;
7093
7094 res = wpas_p2p_remove_psk_entry(wpa_s, s, addr, iface_addr);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08007095 if (res > 0 && wpa_s->conf->update_config &&
7096 wpa_config_write(wpa_s->confname, wpa_s->conf))
7097 wpa_dbg(wpa_s, MSG_DEBUG,
7098 "P2P: Failed to update configuration");
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07007099}
7100
7101
7102static void wpas_p2p_remove_client_go(struct wpa_supplicant *wpa_s,
7103 const u8 *peer, int iface_addr)
7104{
7105 struct hostapd_data *hapd;
7106 struct hostapd_wpa_psk *psk, *prev, *rem;
7107 struct sta_info *sta;
7108
7109 if (wpa_s->ap_iface == NULL || wpa_s->current_ssid == NULL ||
7110 wpa_s->current_ssid->mode != WPAS_MODE_P2P_GO)
7111 return;
7112
7113 /* Remove per-station PSK entry */
7114 hapd = wpa_s->ap_iface->bss[0];
7115 prev = NULL;
7116 psk = hapd->conf->ssid.wpa_psk;
7117 while (psk) {
7118 if ((iface_addr && os_memcmp(peer, psk->addr, ETH_ALEN) == 0) ||
7119 (!iface_addr &&
7120 os_memcmp(peer, psk->p2p_dev_addr, ETH_ALEN) == 0)) {
7121 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove operating group PSK entry for "
7122 MACSTR " iface_addr=%d",
7123 MAC2STR(peer), iface_addr);
7124 if (prev)
7125 prev->next = psk->next;
7126 else
7127 hapd->conf->ssid.wpa_psk = psk->next;
7128 rem = psk;
7129 psk = psk->next;
7130 os_free(rem);
7131 } else {
7132 prev = psk;
7133 psk = psk->next;
7134 }
7135 }
7136
7137 /* Disconnect from group */
7138 if (iface_addr)
7139 sta = ap_get_sta(hapd, peer);
7140 else
7141 sta = ap_get_sta_p2p(hapd, peer);
7142 if (sta) {
7143 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Disconnect peer " MACSTR
7144 " (iface_addr=%d) from group",
7145 MAC2STR(peer), iface_addr);
7146 hostapd_drv_sta_deauth(hapd, sta->addr,
7147 WLAN_REASON_DEAUTH_LEAVING);
7148 ap_sta_deauthenticate(hapd, sta, WLAN_REASON_DEAUTH_LEAVING);
7149 }
7150}
7151
7152
7153void wpas_p2p_remove_client(struct wpa_supplicant *wpa_s, const u8 *peer,
7154 int iface_addr)
7155{
7156 struct wpa_ssid *s;
7157 struct wpa_supplicant *w;
7158
7159 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove client " MACSTR, MAC2STR(peer));
7160
7161 /* Remove from any persistent group */
7162 for (s = wpa_s->parent->conf->ssid; s; s = s->next) {
7163 if (s->disabled != 2 || s->mode != WPAS_MODE_P2P_GO)
7164 continue;
7165 if (!iface_addr)
7166 wpas_remove_persistent_peer(wpa_s, s, peer, 0);
7167 wpas_p2p_remove_psk(wpa_s->parent, s, peer, iface_addr);
7168 }
7169
7170 /* Remove from any operating group */
7171 for (w = wpa_s->global->ifaces; w; w = w->next)
7172 wpas_p2p_remove_client_go(w, peer, iface_addr);
7173}
7174
7175
7176static void wpas_p2p_psk_failure_removal(void *eloop_ctx, void *timeout_ctx)
7177{
7178 struct wpa_supplicant *wpa_s = eloop_ctx;
7179 wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_PSK_FAILURE);
7180}
7181
7182
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08007183static void wpas_p2p_group_freq_conflict(void *eloop_ctx, void *timeout_ctx)
7184{
7185 struct wpa_supplicant *wpa_s = eloop_ctx;
7186
7187 wpa_printf(MSG_DEBUG, "P2P: Frequency conflict - terminate group");
7188 wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_FREQ_CONFLICT);
7189}
7190
7191
7192int wpas_p2p_handle_frequency_conflicts(struct wpa_supplicant *wpa_s, int freq,
7193 struct wpa_ssid *ssid)
7194{
7195 struct wpa_supplicant *iface;
7196
7197 for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
7198 if (!iface->current_ssid ||
7199 iface->current_ssid->frequency == freq ||
7200 (iface->p2p_group_interface == NOT_P2P_GROUP_INTERFACE &&
7201 !iface->current_ssid->p2p_group))
7202 continue;
7203
7204 /* Remove the connection with least priority */
7205 if (!wpas_is_p2p_prioritized(iface)) {
7206 /* STA connection has priority over existing
7207 * P2P connection, so remove the interface. */
7208 wpa_printf(MSG_DEBUG, "P2P: Removing P2P connection due to single channel concurrent mode frequency conflict");
7209 eloop_register_timeout(0, 0,
7210 wpas_p2p_group_freq_conflict,
7211 iface, NULL);
7212 /* If connection in progress is P2P connection, do not
7213 * proceed for the connection. */
7214 if (wpa_s == iface)
7215 return -1;
7216 else
7217 return 0;
7218 } else {
7219 /* P2P connection has priority, disable the STA network
7220 */
7221 wpa_supplicant_disable_network(wpa_s->global->ifaces,
7222 ssid);
7223 wpa_msg(wpa_s->global->ifaces, MSG_INFO,
7224 WPA_EVENT_FREQ_CONFLICT " id=%d", ssid->id);
7225 os_memset(wpa_s->global->ifaces->pending_bssid, 0,
7226 ETH_ALEN);
7227 /* If P2P connection is in progress, continue
7228 * connecting...*/
7229 if (wpa_s == iface)
7230 return 0;
7231 else
7232 return -1;
7233 }
7234 }
7235
7236 return 0;
7237}
7238
7239
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07007240int wpas_p2p_4way_hs_failed(struct wpa_supplicant *wpa_s)
7241{
7242 struct wpa_ssid *ssid = wpa_s->current_ssid;
7243
7244 if (ssid == NULL || !ssid->p2p_group)
7245 return 0;
7246
7247 if (wpa_s->p2p_last_4way_hs_fail &&
7248 wpa_s->p2p_last_4way_hs_fail == ssid) {
7249 u8 go_dev_addr[ETH_ALEN];
7250 struct wpa_ssid *persistent;
7251
7252 if (wpas_p2p_persistent_group(wpa_s, go_dev_addr,
7253 ssid->ssid,
7254 ssid->ssid_len) <= 0) {
7255 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not determine whether 4-way handshake failures were for a persistent group");
7256 goto disconnect;
7257 }
7258
7259 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Two 4-way handshake failures for a P2P group - go_dev_addr="
7260 MACSTR, MAC2STR(go_dev_addr));
7261 persistent = wpas_p2p_get_persistent(wpa_s->parent, go_dev_addr,
7262 ssid->ssid,
7263 ssid->ssid_len);
7264 if (persistent == NULL || persistent->mode != WPAS_MODE_INFRA) {
7265 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No matching persistent group stored");
7266 goto disconnect;
7267 }
7268 wpa_msg_global(wpa_s->parent, MSG_INFO,
7269 P2P_EVENT_PERSISTENT_PSK_FAIL "%d",
7270 persistent->id);
7271 disconnect:
7272 wpa_s->p2p_last_4way_hs_fail = NULL;
7273 /*
7274 * Remove the group from a timeout to avoid issues with caller
7275 * continuing to use the interface if this is on a P2P group
7276 * interface.
7277 */
7278 eloop_register_timeout(0, 0, wpas_p2p_psk_failure_removal,
7279 wpa_s, NULL);
7280 return 1;
7281 }
7282
7283 wpa_s->p2p_last_4way_hs_fail = ssid;
7284 return 0;
7285}
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08007286
7287
7288#ifdef CONFIG_WPS_NFC
7289
7290static struct wpabuf * wpas_p2p_nfc_handover(int ndef, struct wpabuf *wsc,
7291 struct wpabuf *p2p)
7292{
7293 struct wpabuf *ret;
7294 size_t wsc_len;
7295
7296 if (p2p == NULL) {
7297 wpabuf_free(wsc);
7298 wpa_printf(MSG_DEBUG, "P2P: No p2p buffer for handover");
7299 return NULL;
7300 }
7301
7302 wsc_len = wsc ? wpabuf_len(wsc) : 0;
7303 ret = wpabuf_alloc(2 + wsc_len + 2 + wpabuf_len(p2p));
7304 if (ret == NULL) {
7305 wpabuf_free(wsc);
7306 wpabuf_free(p2p);
7307 return NULL;
7308 }
7309
7310 wpabuf_put_be16(ret, wsc_len);
7311 if (wsc)
7312 wpabuf_put_buf(ret, wsc);
7313 wpabuf_put_be16(ret, wpabuf_len(p2p));
7314 wpabuf_put_buf(ret, p2p);
7315
7316 wpabuf_free(wsc);
7317 wpabuf_free(p2p);
7318 wpa_hexdump_buf(MSG_DEBUG,
7319 "P2P: Generated NFC connection handover message", ret);
7320
7321 if (ndef && ret) {
7322 struct wpabuf *tmp;
7323 tmp = ndef_build_p2p(ret);
7324 wpabuf_free(ret);
7325 if (tmp == NULL) {
7326 wpa_printf(MSG_DEBUG, "P2P: Failed to NDEF encapsulate handover request");
7327 return NULL;
7328 }
7329 ret = tmp;
7330 }
7331
7332 return ret;
7333}
7334
7335
7336static int wpas_p2p_cli_freq(struct wpa_supplicant *wpa_s,
7337 struct wpa_ssid **ssid, u8 *go_dev_addr)
7338{
7339 struct wpa_supplicant *iface;
7340
7341 if (go_dev_addr)
7342 os_memset(go_dev_addr, 0, ETH_ALEN);
7343 if (ssid)
7344 *ssid = NULL;
7345 for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
7346 if (iface->wpa_state < WPA_ASSOCIATING ||
7347 iface->current_ssid == NULL || iface->assoc_freq == 0 ||
7348 !iface->current_ssid->p2p_group ||
7349 iface->current_ssid->mode != WPAS_MODE_INFRA)
7350 continue;
7351 if (ssid)
7352 *ssid = iface->current_ssid;
7353 if (go_dev_addr)
7354 os_memcpy(go_dev_addr, iface->go_dev_addr, ETH_ALEN);
7355 return iface->assoc_freq;
7356 }
7357 return 0;
7358}
7359
7360
7361struct wpabuf * wpas_p2p_nfc_handover_req(struct wpa_supplicant *wpa_s,
7362 int ndef)
7363{
7364 struct wpabuf *wsc, *p2p;
7365 struct wpa_ssid *ssid;
7366 u8 go_dev_addr[ETH_ALEN];
7367 int cli_freq = wpas_p2p_cli_freq(wpa_s, &ssid, go_dev_addr);
7368
7369 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL) {
7370 wpa_printf(MSG_DEBUG, "P2P: P2P disabled - cannot build handover request");
7371 return NULL;
7372 }
7373
7374 if (wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
7375 wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
7376 &wpa_s->conf->wps_nfc_dh_privkey) < 0) {
7377 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No DH key available for handover request");
7378 return NULL;
7379 }
7380
7381 if (cli_freq == 0) {
7382 wsc = wps_build_nfc_handover_req_p2p(
7383 wpa_s->parent->wps, wpa_s->conf->wps_nfc_dh_pubkey);
7384 } else
7385 wsc = NULL;
7386 p2p = p2p_build_nfc_handover_req(wpa_s->global->p2p, cli_freq,
7387 go_dev_addr, ssid ? ssid->ssid : NULL,
7388 ssid ? ssid->ssid_len : 0);
7389
7390 return wpas_p2p_nfc_handover(ndef, wsc, p2p);
7391}
7392
7393
7394struct wpabuf * wpas_p2p_nfc_handover_sel(struct wpa_supplicant *wpa_s,
7395 int ndef, int tag)
7396{
7397 struct wpabuf *wsc, *p2p;
7398 struct wpa_ssid *ssid;
7399 u8 go_dev_addr[ETH_ALEN];
7400 int cli_freq = wpas_p2p_cli_freq(wpa_s, &ssid, go_dev_addr);
7401
7402 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7403 return NULL;
7404
7405 if (!tag && wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
7406 wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
7407 &wpa_s->conf->wps_nfc_dh_privkey) < 0)
7408 return NULL;
7409
7410 if (cli_freq == 0) {
7411 wsc = wps_build_nfc_handover_sel_p2p(
7412 wpa_s->parent->wps,
7413 tag ? wpa_s->conf->wps_nfc_dev_pw_id :
7414 DEV_PW_NFC_CONNECTION_HANDOVER,
7415 wpa_s->conf->wps_nfc_dh_pubkey,
7416 tag ? wpa_s->conf->wps_nfc_dev_pw : NULL);
7417 } else
7418 wsc = NULL;
7419 p2p = p2p_build_nfc_handover_sel(wpa_s->global->p2p, cli_freq,
7420 go_dev_addr, ssid ? ssid->ssid : NULL,
7421 ssid ? ssid->ssid_len : 0);
7422
7423 return wpas_p2p_nfc_handover(ndef, wsc, p2p);
7424}
7425
7426
7427static int wpas_p2p_nfc_join_group(struct wpa_supplicant *wpa_s,
7428 struct p2p_nfc_params *params)
7429{
7430 wpa_printf(MSG_DEBUG, "P2P: Initiate join-group based on NFC "
7431 "connection handover (freq=%d)",
7432 params->go_freq);
7433
7434 if (params->go_freq && params->go_ssid_len) {
7435 wpa_s->p2p_wps_method = WPS_NFC;
7436 wpa_s->pending_join_wps_method = WPS_NFC;
7437 os_memset(wpa_s->pending_join_iface_addr, 0, ETH_ALEN);
7438 os_memcpy(wpa_s->pending_join_dev_addr, params->go_dev_addr,
7439 ETH_ALEN);
7440 return wpas_p2p_join_start(wpa_s, params->go_freq,
7441 params->go_ssid,
7442 params->go_ssid_len);
7443 }
7444
7445 return wpas_p2p_connect(wpa_s, params->peer->p2p_device_addr, NULL,
7446 WPS_NFC, 0, 0, 1, 0, wpa_s->conf->p2p_go_intent,
7447 params->go_freq, -1, 0, 1, 1);
7448}
7449
7450
7451static int wpas_p2p_nfc_auth_join(struct wpa_supplicant *wpa_s,
7452 struct p2p_nfc_params *params, int tag)
7453{
7454 int res, persistent;
7455 struct wpa_ssid *ssid;
7456
7457 wpa_printf(MSG_DEBUG, "P2P: Authorize join-group based on NFC "
7458 "connection handover");
7459 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
7460 ssid = wpa_s->current_ssid;
7461 if (ssid == NULL)
7462 continue;
7463 if (ssid->mode != WPAS_MODE_P2P_GO)
7464 continue;
7465 if (wpa_s->ap_iface == NULL)
7466 continue;
7467 break;
7468 }
7469 if (wpa_s == NULL) {
7470 wpa_printf(MSG_DEBUG, "P2P: Could not find GO interface");
7471 return -1;
7472 }
7473
7474 if (wpa_s->parent->p2p_oob_dev_pw_id !=
7475 DEV_PW_NFC_CONNECTION_HANDOVER &&
7476 !wpa_s->parent->p2p_oob_dev_pw) {
7477 wpa_printf(MSG_DEBUG, "P2P: No NFC Dev Pw known");
7478 return -1;
7479 }
7480 res = wpas_ap_wps_add_nfc_pw(
7481 wpa_s, wpa_s->parent->p2p_oob_dev_pw_id,
7482 wpa_s->parent->p2p_oob_dev_pw,
7483 wpa_s->parent->p2p_peer_oob_pk_hash_known ?
7484 wpa_s->parent->p2p_peer_oob_pubkey_hash : NULL);
7485 if (res)
7486 return res;
7487
7488 if (!tag) {
7489 wpa_printf(MSG_DEBUG, "P2P: Negotiated handover - wait for peer to join without invitation");
7490 return 0;
7491 }
7492
7493 if (!params->peer ||
7494 !(params->peer->dev_capab & P2P_DEV_CAPAB_INVITATION_PROCEDURE))
7495 return 0;
7496
7497 wpa_printf(MSG_DEBUG, "P2P: Static handover - invite peer " MACSTR
7498 " to join", MAC2STR(params->peer->p2p_device_addr));
7499
7500 wpa_s->global->p2p_invite_group = wpa_s;
7501 persistent = ssid->p2p_persistent_group &&
7502 wpas_p2p_get_persistent(wpa_s->parent,
7503 params->peer->p2p_device_addr,
7504 ssid->ssid, ssid->ssid_len);
7505 wpa_s->parent->pending_invite_ssid_id = -1;
7506
7507 return p2p_invite(wpa_s->global->p2p, params->peer->p2p_device_addr,
7508 P2P_INVITE_ROLE_ACTIVE_GO, wpa_s->own_addr,
7509 ssid->ssid, ssid->ssid_len, ssid->frequency,
7510 wpa_s->global->p2p_dev_addr, persistent, 0,
7511 wpa_s->parent->p2p_oob_dev_pw_id);
7512}
7513
7514
7515static int wpas_p2p_nfc_init_go_neg(struct wpa_supplicant *wpa_s,
7516 struct p2p_nfc_params *params,
7517 int forced_freq)
7518{
7519 wpa_printf(MSG_DEBUG, "P2P: Initiate GO Negotiation based on NFC "
7520 "connection handover");
7521 return wpas_p2p_connect(wpa_s, params->peer->p2p_device_addr, NULL,
7522 WPS_NFC, 0, 0, 0, 0, wpa_s->conf->p2p_go_intent,
7523 forced_freq, -1, 0, 1, 1);
7524}
7525
7526
7527static int wpas_p2p_nfc_resp_go_neg(struct wpa_supplicant *wpa_s,
7528 struct p2p_nfc_params *params,
7529 int forced_freq)
7530{
7531 int res;
7532
7533 wpa_printf(MSG_DEBUG, "P2P: Authorize GO Negotiation based on NFC "
7534 "connection handover");
7535 res = wpas_p2p_connect(wpa_s, params->peer->p2p_device_addr, NULL,
7536 WPS_NFC, 0, 0, 0, 1, wpa_s->conf->p2p_go_intent,
7537 forced_freq, -1, 0, 1, 1);
7538 if (res)
7539 return res;
7540
7541 res = wpas_p2p_listen(wpa_s, 60);
7542 if (res) {
7543 p2p_unauthorize(wpa_s->global->p2p,
7544 params->peer->p2p_device_addr);
7545 }
7546
7547 return res;
7548}
7549
7550
7551static int wpas_p2p_nfc_connection_handover(struct wpa_supplicant *wpa_s,
7552 const struct wpabuf *data,
7553 int sel, int tag, int forced_freq)
7554{
7555 const u8 *pos, *end;
7556 u16 len, id;
7557 struct p2p_nfc_params params;
7558 int res;
7559
7560 os_memset(&params, 0, sizeof(params));
7561 params.sel = sel;
7562
7563 wpa_hexdump_buf(MSG_DEBUG, "P2P: Received NFC tag payload", data);
7564
7565 pos = wpabuf_head(data);
7566 end = pos + wpabuf_len(data);
7567
7568 if (end - pos < 2) {
7569 wpa_printf(MSG_DEBUG, "P2P: Not enough data for Length of WSC "
7570 "attributes");
7571 return -1;
7572 }
7573 len = WPA_GET_BE16(pos);
7574 pos += 2;
7575 if (pos + len > end) {
7576 wpa_printf(MSG_DEBUG, "P2P: Not enough data for WSC "
7577 "attributes");
7578 return -1;
7579 }
7580 params.wsc_attr = pos;
7581 params.wsc_len = len;
7582 pos += len;
7583
7584 if (end - pos < 2) {
7585 wpa_printf(MSG_DEBUG, "P2P: Not enough data for Length of P2P "
7586 "attributes");
7587 return -1;
7588 }
7589 len = WPA_GET_BE16(pos);
7590 pos += 2;
7591 if (pos + len > end) {
7592 wpa_printf(MSG_DEBUG, "P2P: Not enough data for P2P "
7593 "attributes");
7594 return -1;
7595 }
7596 params.p2p_attr = pos;
7597 params.p2p_len = len;
7598 pos += len;
7599
7600 wpa_hexdump(MSG_DEBUG, "P2P: WSC attributes",
7601 params.wsc_attr, params.wsc_len);
7602 wpa_hexdump(MSG_DEBUG, "P2P: P2P attributes",
7603 params.p2p_attr, params.p2p_len);
7604 if (pos < end) {
7605 wpa_hexdump(MSG_DEBUG,
7606 "P2P: Ignored extra data after P2P attributes",
7607 pos, end - pos);
7608 }
7609
7610 res = p2p_process_nfc_connection_handover(wpa_s->global->p2p, &params);
7611 if (res)
7612 return res;
7613
7614 if (params.next_step == NO_ACTION)
7615 return 0;
7616
7617 if (params.next_step == BOTH_GO) {
7618 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_BOTH_GO "peer=" MACSTR,
7619 MAC2STR(params.peer->p2p_device_addr));
7620 return 0;
7621 }
7622
7623 if (params.next_step == PEER_CLIENT) {
7624 if (!is_zero_ether_addr(params.go_dev_addr)) {
7625 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_PEER_CLIENT
7626 "peer=" MACSTR " freq=%d go_dev_addr=" MACSTR
7627 " ssid=\"%s\"",
7628 MAC2STR(params.peer->p2p_device_addr),
7629 params.go_freq,
7630 MAC2STR(params.go_dev_addr),
7631 wpa_ssid_txt(params.go_ssid,
7632 params.go_ssid_len));
7633 } else {
7634 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_PEER_CLIENT
7635 "peer=" MACSTR " freq=%d",
7636 MAC2STR(params.peer->p2p_device_addr),
7637 params.go_freq);
7638 }
7639 return 0;
7640 }
7641
7642 if (wpas_p2p_cli_freq(wpa_s, NULL, NULL)) {
7643 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_WHILE_CLIENT "peer="
7644 MACSTR, MAC2STR(params.peer->p2p_device_addr));
7645 return 0;
7646 }
7647
7648 wpabuf_free(wpa_s->p2p_oob_dev_pw);
7649 wpa_s->p2p_oob_dev_pw = NULL;
7650
7651 if (params.oob_dev_pw_len < WPS_OOB_PUBKEY_HASH_LEN + 2) {
7652 wpa_printf(MSG_DEBUG, "P2P: No peer OOB Dev Pw "
7653 "received");
7654 return -1;
7655 }
7656
7657 id = WPA_GET_BE16(params.oob_dev_pw + WPS_OOB_PUBKEY_HASH_LEN);
7658 wpa_printf(MSG_DEBUG, "P2P: Peer OOB Dev Pw %u", id);
7659 wpa_hexdump(MSG_DEBUG, "P2P: Peer OOB Public Key hash",
7660 params.oob_dev_pw, WPS_OOB_PUBKEY_HASH_LEN);
7661 os_memcpy(wpa_s->p2p_peer_oob_pubkey_hash,
7662 params.oob_dev_pw, WPS_OOB_PUBKEY_HASH_LEN);
7663 wpa_s->p2p_peer_oob_pk_hash_known = 1;
7664
7665 if (tag) {
7666 if (id < 0x10) {
7667 wpa_printf(MSG_DEBUG, "P2P: Static handover - invalid "
7668 "peer OOB Device Password Id %u", id);
7669 return -1;
7670 }
7671 wpa_printf(MSG_DEBUG, "P2P: Static handover - use peer OOB "
7672 "Device Password Id %u", id);
7673 wpa_hexdump_key(MSG_DEBUG, "P2P: Peer OOB Device Password",
7674 params.oob_dev_pw + WPS_OOB_PUBKEY_HASH_LEN + 2,
7675 params.oob_dev_pw_len -
7676 WPS_OOB_PUBKEY_HASH_LEN - 2);
7677 wpa_s->p2p_oob_dev_pw_id = id;
7678 wpa_s->p2p_oob_dev_pw = wpabuf_alloc_copy(
7679 params.oob_dev_pw + WPS_OOB_PUBKEY_HASH_LEN + 2,
7680 params.oob_dev_pw_len -
7681 WPS_OOB_PUBKEY_HASH_LEN - 2);
7682 if (wpa_s->p2p_oob_dev_pw == NULL)
7683 return -1;
7684
7685 if (wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
7686 wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
7687 &wpa_s->conf->wps_nfc_dh_privkey) < 0)
7688 return -1;
7689 } else {
7690 wpa_printf(MSG_DEBUG, "P2P: Using abbreviated WPS handshake "
7691 "without Device Password");
7692 wpa_s->p2p_oob_dev_pw_id = DEV_PW_NFC_CONNECTION_HANDOVER;
7693 }
7694
7695 switch (params.next_step) {
7696 case NO_ACTION:
7697 case BOTH_GO:
7698 case PEER_CLIENT:
7699 /* already covered above */
7700 return 0;
7701 case JOIN_GROUP:
7702 return wpas_p2p_nfc_join_group(wpa_s, &params);
7703 case AUTH_JOIN:
7704 return wpas_p2p_nfc_auth_join(wpa_s, &params, tag);
7705 case INIT_GO_NEG:
7706 return wpas_p2p_nfc_init_go_neg(wpa_s, &params, forced_freq);
7707 case RESP_GO_NEG:
7708 /* TODO: use own OOB Dev Pw */
7709 return wpas_p2p_nfc_resp_go_neg(wpa_s, &params, forced_freq);
7710 }
7711
7712 return -1;
7713}
7714
7715
7716int wpas_p2p_nfc_tag_process(struct wpa_supplicant *wpa_s,
7717 const struct wpabuf *data, int forced_freq)
7718{
7719 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7720 return -1;
7721
7722 return wpas_p2p_nfc_connection_handover(wpa_s, data, 1, 1, forced_freq);
7723}
7724
7725
7726int wpas_p2p_nfc_report_handover(struct wpa_supplicant *wpa_s, int init,
7727 const struct wpabuf *req,
7728 const struct wpabuf *sel, int forced_freq)
7729{
7730 struct wpabuf *tmp;
7731 int ret;
7732
7733 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7734 return -1;
7735
7736 wpa_printf(MSG_DEBUG, "NFC: P2P connection handover reported");
7737
7738 wpa_hexdump_ascii(MSG_DEBUG, "NFC: Req",
7739 wpabuf_head(req), wpabuf_len(req));
7740 wpa_hexdump_ascii(MSG_DEBUG, "NFC: Sel",
7741 wpabuf_head(sel), wpabuf_len(sel));
7742 if (forced_freq)
7743 wpa_printf(MSG_DEBUG, "NFC: Forced freq %d", forced_freq);
7744 tmp = ndef_parse_p2p(init ? sel : req);
7745 if (tmp == NULL) {
7746 wpa_printf(MSG_DEBUG, "P2P: Could not parse NDEF");
7747 return -1;
7748 }
7749
7750 ret = wpas_p2p_nfc_connection_handover(wpa_s, tmp, init, 0,
7751 forced_freq);
7752 wpabuf_free(tmp);
7753
7754 return ret;
7755}
7756
7757
7758int wpas_p2p_nfc_tag_enabled(struct wpa_supplicant *wpa_s, int enabled)
7759{
7760 const u8 *if_addr;
7761 int go_intent = wpa_s->conf->p2p_go_intent;
7762 struct wpa_supplicant *iface;
7763
7764 if (wpa_s->global->p2p == NULL)
7765 return -1;
7766
7767 if (!enabled) {
7768 wpa_printf(MSG_DEBUG, "P2P: Disable use of own NFC Tag");
7769 for (iface = wpa_s->global->ifaces; iface; iface = iface->next)
7770 {
7771 if (!iface->ap_iface)
7772 continue;
7773 hostapd_wps_nfc_token_disable(iface->ap_iface->bss[0]);
7774 }
7775 p2p_set_authorized_oob_dev_pw_id(wpa_s->global->p2p, 0,
7776 0, NULL);
7777 if (wpa_s->p2p_nfc_tag_enabled)
7778 wpas_p2p_remove_pending_group_interface(wpa_s);
7779 wpa_s->p2p_nfc_tag_enabled = 0;
7780 return 0;
7781 }
7782
7783 if (wpa_s->global->p2p_disabled)
7784 return -1;
7785
7786 if (wpa_s->conf->wps_nfc_dh_pubkey == NULL ||
7787 wpa_s->conf->wps_nfc_dh_privkey == NULL ||
7788 wpa_s->conf->wps_nfc_dev_pw == NULL ||
7789 wpa_s->conf->wps_nfc_dev_pw_id < 0x10) {
7790 wpa_printf(MSG_DEBUG, "P2P: NFC password token not configured "
7791 "to allow static handover cases");
7792 return -1;
7793 }
7794
7795 wpa_printf(MSG_DEBUG, "P2P: Enable use of own NFC Tag");
7796
7797 wpa_s->p2p_oob_dev_pw_id = wpa_s->conf->wps_nfc_dev_pw_id;
7798 wpabuf_free(wpa_s->p2p_oob_dev_pw);
7799 wpa_s->p2p_oob_dev_pw = wpabuf_dup(wpa_s->conf->wps_nfc_dev_pw);
7800 if (wpa_s->p2p_oob_dev_pw == NULL)
7801 return -1;
7802 wpa_s->p2p_peer_oob_pk_hash_known = 0;
7803
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07007804 if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO ||
7805 wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT) {
7806 /*
7807 * P2P Group Interface present and the command came on group
7808 * interface, so enable the token for the current interface.
7809 */
7810 wpa_s->create_p2p_iface = 0;
7811 } else {
7812 wpa_s->create_p2p_iface = wpas_p2p_create_iface(wpa_s);
7813 }
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08007814
7815 if (wpa_s->create_p2p_iface) {
7816 enum wpa_driver_if_type iftype;
7817 /* Prepare to add a new interface for the group */
7818 iftype = WPA_IF_P2P_GROUP;
7819 if (go_intent == 15)
7820 iftype = WPA_IF_P2P_GO;
7821 if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
7822 wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
7823 "interface for the group");
7824 return -1;
7825 }
7826
7827 if_addr = wpa_s->pending_interface_addr;
7828 } else
7829 if_addr = wpa_s->own_addr;
7830
7831 wpa_s->p2p_nfc_tag_enabled = enabled;
7832
7833 for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
7834 struct hostapd_data *hapd;
7835 if (iface->ap_iface == NULL)
7836 continue;
7837 hapd = iface->ap_iface->bss[0];
7838 wpabuf_free(hapd->conf->wps_nfc_dh_pubkey);
7839 hapd->conf->wps_nfc_dh_pubkey =
7840 wpabuf_dup(wpa_s->conf->wps_nfc_dh_pubkey);
7841 wpabuf_free(hapd->conf->wps_nfc_dh_privkey);
7842 hapd->conf->wps_nfc_dh_privkey =
7843 wpabuf_dup(wpa_s->conf->wps_nfc_dh_privkey);
7844 wpabuf_free(hapd->conf->wps_nfc_dev_pw);
7845 hapd->conf->wps_nfc_dev_pw =
7846 wpabuf_dup(wpa_s->conf->wps_nfc_dev_pw);
7847 hapd->conf->wps_nfc_dev_pw_id = wpa_s->conf->wps_nfc_dev_pw_id;
7848
7849 if (hostapd_wps_nfc_token_enable(iface->ap_iface->bss[0]) < 0) {
7850 wpa_dbg(iface, MSG_DEBUG,
7851 "P2P: Failed to enable NFC Tag for GO");
7852 }
7853 }
7854 p2p_set_authorized_oob_dev_pw_id(
7855 wpa_s->global->p2p, wpa_s->conf->wps_nfc_dev_pw_id, go_intent,
7856 if_addr);
7857
7858 return 0;
7859}
7860
7861#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07007862
7863
7864static void wpas_p2p_optimize_listen_channel(struct wpa_supplicant *wpa_s,
7865 struct wpa_used_freq_data *freqs,
7866 unsigned int num)
7867{
7868 u8 curr_chan, cand, chan;
7869 unsigned int i;
7870
7871 curr_chan = p2p_get_listen_channel(wpa_s->global->p2p);
7872 for (i = 0, cand = 0; i < num; i++) {
7873 ieee80211_freq_to_chan(freqs[i].freq, &chan);
7874 if (curr_chan == chan) {
7875 cand = 0;
7876 break;
7877 }
7878
7879 if (chan == 1 || chan == 6 || chan == 11)
7880 cand = chan;
7881 }
7882
7883 if (cand) {
7884 wpa_dbg(wpa_s, MSG_DEBUG,
7885 "P2P: Update Listen channel to %u baased on operating channel",
7886 cand);
7887 p2p_set_listen_channel(wpa_s->global->p2p, 81, cand, 0);
7888 }
7889}
7890
7891
7892void wpas_p2p_indicate_state_change(struct wpa_supplicant *wpa_s)
7893{
7894 struct wpa_used_freq_data *freqs;
7895 unsigned int num = wpa_s->num_multichan_concurrent;
7896
7897 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7898 return;
7899
7900 /*
7901 * If possible, optimize the Listen channel to be a channel that is
7902 * already used by one of the other interfaces.
7903 */
7904 if (!wpa_s->conf->p2p_optimize_listen_chan)
7905 return;
7906
7907 if (!wpa_s->current_ssid || wpa_s->wpa_state != WPA_COMPLETED)
7908 return;
7909
7910 freqs = os_calloc(num, sizeof(struct wpa_used_freq_data));
7911 if (!freqs)
7912 return;
7913
7914 num = get_shared_radio_freqs_data(wpa_s, freqs, num);
7915
7916 wpas_p2p_optimize_listen_channel(wpa_s, freqs, num);
7917 os_free(freqs);
7918}
7919
7920
7921void wpas_p2p_deinit_iface(struct wpa_supplicant *wpa_s)
7922{
7923 if (wpa_s == wpa_s->parent)
7924 wpas_p2p_group_remove(wpa_s, "*");
7925 if (wpa_s == wpa_s->global->p2p_init_wpa_s && wpa_s->global->p2p) {
7926 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Disable P2P since removing "
7927 "the management interface is being removed");
7928 wpas_p2p_deinit_global(wpa_s->global);
7929 }
7930}
7931
7932
7933void wpas_p2p_ap_deinit(struct wpa_supplicant *wpa_s)
7934{
7935 if (wpa_s->ap_iface->bss)
7936 wpa_s->ap_iface->bss[0]->p2p_group = NULL;
7937 wpas_p2p_group_deinit(wpa_s);
7938}