blob: 9b36b63829d4f6dfb258f85ad5427b83e4a231dc [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"
Dmitry Shmidt203eadb2015-03-05 14:16:04 -080025#include "ap/dfs.h"
Jouni Malinen75ecf522011-06-27 15:19:46 -070026#include "eapol_supp/eapol_supp_sm.h"
27#include "rsn_supp/wpa.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070028#include "wpa_supplicant_i.h"
29#include "driver_i.h"
30#include "ap.h"
31#include "config_ssid.h"
32#include "config.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070033#include "notify.h"
34#include "scan.h"
35#include "bss.h"
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080036#include "offchannel.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070037#include "wps_supplicant.h"
38#include "p2p_supplicant.h"
Dmitry Shmidt04f534e2013-12-09 15:50:16 -080039#include "wifi_display.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070040
41
42/*
43 * How many times to try to scan to find the GO before giving up on join
44 * request.
45 */
46#define P2P_MAX_JOIN_SCAN_ATTEMPTS 10
47
Dmitry Shmidt04949592012-07-19 12:16:46 -070048#define P2P_AUTO_PD_SCAN_ATTEMPTS 5
49
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080050/**
51 * Defines time interval in seconds when a GO needs to evacuate a frequency that
52 * it is currently using, but is no longer valid for P2P use cases.
53 */
54#define P2P_GO_FREQ_CHANGE_TIME 5
55
56/**
57 * Defines CSA parameters which are used when GO evacuates the no longer valid
58 * channel (and if the driver supports channel switch).
59 */
60#define P2P_GO_CSA_COUNT 7
61#define P2P_GO_CSA_BLOCK_TX 0
62
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080063#ifndef P2P_MAX_CLIENT_IDLE
64/*
65 * How many seconds to try to reconnect to the GO when connection in P2P client
66 * role has been lost.
67 */
68#define P2P_MAX_CLIENT_IDLE 10
69#endif /* P2P_MAX_CLIENT_IDLE */
70
Dmitry Shmidt04949592012-07-19 12:16:46 -070071#ifndef P2P_MAX_INITIAL_CONN_WAIT
72/*
73 * How many seconds to wait for initial 4-way handshake to get completed after
Dmitry Shmidt15907092014-03-25 10:42:57 -070074 * WPS provisioning step or after the re-invocation of a persistent group on a
75 * P2P Client.
Dmitry Shmidt04949592012-07-19 12:16:46 -070076 */
77#define P2P_MAX_INITIAL_CONN_WAIT 10
78#endif /* P2P_MAX_INITIAL_CONN_WAIT */
79
Dmitry Shmidt92c368d2013-08-29 12:37:21 -070080#ifndef P2P_MAX_INITIAL_CONN_WAIT_GO
81/*
82 * How many seconds to wait for initial 4-way handshake to get completed after
83 * WPS provisioning step on the GO. This controls the extra time the P2P
84 * operation is considered to be in progress (e.g., to delay other scans) after
85 * WPS provisioning has been completed on the GO during group formation.
86 */
87#define P2P_MAX_INITIAL_CONN_WAIT_GO 10
88#endif /* P2P_MAX_INITIAL_CONN_WAIT_GO */
89
Dmitry Shmidt56052862013-10-04 10:23:25 -070090#ifndef P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE
91/*
92 * How many seconds to wait for initial 4-way handshake to get completed after
93 * re-invocation of a persistent group on the GO when the client is expected
94 * to connect automatically (no user interaction).
95 */
96#define P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE 15
97#endif /* P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE */
98
Dmitry Shmidt34af3062013-07-11 10:46:32 -070099#define P2P_MGMT_DEVICE_PREFIX "p2p-dev-"
100
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800101/*
102 * How many seconds to wait to re-attempt to move GOs, in case previous attempt
103 * was not possible.
104 */
105#define P2P_RECONSIDER_GO_MOVE_DELAY 30
106
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700107enum p2p_group_removal_reason {
108 P2P_GROUP_REMOVAL_UNKNOWN,
109 P2P_GROUP_REMOVAL_SILENT,
110 P2P_GROUP_REMOVAL_FORMATION_FAILED,
111 P2P_GROUP_REMOVAL_REQUESTED,
112 P2P_GROUP_REMOVAL_IDLE_TIMEOUT,
113 P2P_GROUP_REMOVAL_UNAVAILABLE,
114 P2P_GROUP_REMOVAL_GO_ENDING_SESSION,
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800115 P2P_GROUP_REMOVAL_PSK_FAILURE,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800116 P2P_GROUP_REMOVAL_FREQ_CONFLICT,
117 P2P_GROUP_REMOVAL_GO_LEAVE_CHANNEL
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700118};
119
Jouni Malinendc7b7132012-09-14 12:53:47 -0700120
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700121static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx);
122static struct wpa_supplicant *
123wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
124 int go);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -0800125static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s, int freq,
126 const u8 *ssid, size_t ssid_len);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800127static int wpas_p2p_setup_freqs(struct wpa_supplicant *wpa_s, int freq,
128 int *force_freq, int *pref_freq, int go,
129 unsigned int *pref_freq_list,
130 unsigned int *num_pref_freq);
Dmitry Shmidt344abd32014-01-14 13:17:00 -0800131static void wpas_p2p_join_scan_req(struct wpa_supplicant *wpa_s, int freq,
132 const u8 *ssid, size_t ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700133static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx);
134static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
Dmitry Shmidt04949592012-07-19 12:16:46 -0700135 const u8 *dev_addr, enum p2p_wps_method wps_method,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -0800136 int auto_join, int freq,
137 const u8 *ssid, size_t ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700138static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s);
139static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s);
140static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx);
141static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s);
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800142static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
143 void *timeout_ctx);
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800144static void wpas_p2p_group_freq_conflict(void *eloop_ctx, void *timeout_ctx);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800145static int wpas_p2p_fallback_to_go_neg(struct wpa_supplicant *wpa_s,
146 int group_added);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800147static void wpas_p2p_stop_find_oper(struct wpa_supplicant *wpa_s);
Dmitry Shmidtbd14a572014-02-18 10:33:49 -0800148static void wpas_stop_listen(void *ctx);
Dmitry Shmidt684785c2014-05-12 13:34:29 -0700149static void wpas_p2p_psk_failure_removal(void *eloop_ctx, void *timeout_ctx);
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700150static void wpas_p2p_group_deinit(struct wpa_supplicant *wpa_s);
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800151static int wpas_p2p_add_group_interface(struct wpa_supplicant *wpa_s,
152 enum wpa_driver_if_type type);
Dmitry Shmidta3dc3092015-06-23 11:21:28 -0700153static void wpas_p2p_group_formation_failed(struct wpa_supplicant *wpa_s,
154 int already_deleted);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800155static void wpas_p2p_optimize_listen_channel(struct wpa_supplicant *wpa_s,
156 struct wpa_used_freq_data *freqs,
157 unsigned int num);
158static void wpas_p2p_move_go(void *eloop_ctx, void *timeout_ctx);
159static int wpas_p2p_go_is_peer_freq(struct wpa_supplicant *wpa_s, int freq);
160static void
161wpas_p2p_consider_moving_gos(struct wpa_supplicant *wpa_s,
162 struct wpa_used_freq_data *freqs, unsigned int num,
163 enum wpas_p2p_channel_update_trig trig);
164static void wpas_p2p_reconsider_moving_go(void *eloop_ctx, void *timeout_ctx);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700165
166
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700167/*
168 * Get the number of concurrent channels that the HW can operate, but that are
169 * currently not in use by any of the wpa_supplicant interfaces.
170 */
171static int wpas_p2p_num_unused_channels(struct wpa_supplicant *wpa_s)
172{
173 int *freqs;
Dmitry Shmidtb96dad42013-11-05 10:07:29 -0800174 int num, unused;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700175
176 freqs = os_calloc(wpa_s->num_multichan_concurrent, sizeof(int));
177 if (!freqs)
178 return -1;
179
180 num = get_shared_radio_freqs(wpa_s, freqs,
181 wpa_s->num_multichan_concurrent);
182 os_free(freqs);
183
Dmitry Shmidtb96dad42013-11-05 10:07:29 -0800184 unused = wpa_s->num_multichan_concurrent - num;
185 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: num_unused_channels: %d", unused);
186 return unused;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700187}
188
189
190/*
191 * Get the frequencies that are currently in use by one or more of the virtual
192 * interfaces, and that are also valid for P2P operation.
193 */
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700194static unsigned int
195wpas_p2p_valid_oper_freqs(struct wpa_supplicant *wpa_s,
196 struct wpa_used_freq_data *p2p_freqs,
197 unsigned int len)
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700198{
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700199 struct wpa_used_freq_data *freqs;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700200 unsigned int num, i, j;
201
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700202 freqs = os_calloc(wpa_s->num_multichan_concurrent,
203 sizeof(struct wpa_used_freq_data));
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700204 if (!freqs)
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700205 return 0;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700206
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700207 num = get_shared_radio_freqs_data(wpa_s, freqs,
208 wpa_s->num_multichan_concurrent);
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700209
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700210 os_memset(p2p_freqs, 0, sizeof(struct wpa_used_freq_data) * len);
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700211
212 for (i = 0, j = 0; i < num && j < len; i++) {
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700213 if (p2p_supported_freq(wpa_s->global->p2p, freqs[i].freq))
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700214 p2p_freqs[j++] = freqs[i];
215 }
216
217 os_free(freqs);
218
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700219 dump_freq_data(wpa_s, "valid for P2P", p2p_freqs, j);
Dmitry Shmidtb96dad42013-11-05 10:07:29 -0800220
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700221 return j;
222}
223
224
Dmitry Shmidt700a1372013-03-15 14:14:44 -0700225static void wpas_p2p_set_own_freq_preference(struct wpa_supplicant *wpa_s,
226 int freq)
227{
228 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
229 return;
Dmitry Shmidt8bd70b72015-05-26 16:02:19 -0700230
231 /* Use the wpa_s used to control the P2P Device operation */
232 wpa_s = wpa_s->global->p2p_init_wpa_s;
233
234 if (wpa_s->conf->p2p_ignore_shared_freq &&
Dmitry Shmidta0d265f2013-11-19 13:13:41 -0800235 freq > 0 && wpa_s->num_multichan_concurrent > 1 &&
236 wpas_p2p_num_unused_channels(wpa_s) > 0) {
237 wpa_printf(MSG_DEBUG, "P2P: Ignore own channel preference %d MHz due to p2p_ignore_shared_freq=1 configuration",
238 freq);
Dmitry Shmidt700a1372013-03-15 14:14:44 -0700239 freq = 0;
Dmitry Shmidta0d265f2013-11-19 13:13:41 -0800240 }
Dmitry Shmidt700a1372013-03-15 14:14:44 -0700241 p2p_set_own_freq_preference(wpa_s->global->p2p, freq);
242}
243
244
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700245static void wpas_p2p_scan_res_handler(struct wpa_supplicant *wpa_s,
246 struct wpa_scan_results *scan_res)
247{
248 size_t i;
249
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800250 if (wpa_s->p2p_scan_work) {
251 struct wpa_radio_work *work = wpa_s->p2p_scan_work;
252 wpa_s->p2p_scan_work = NULL;
253 radio_work_done(work);
254 }
255
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700256 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
257 return;
258
259 wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS)",
260 (int) scan_res->num);
261
262 for (i = 0; i < scan_res->num; i++) {
263 struct wpa_scan_res *bss = scan_res->res[i];
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800264 struct os_reltime time_tmp_age, entry_ts;
Dmitry Shmidt96571392013-10-14 12:54:46 -0700265 const u8 *ies;
266 size_t ies_len;
267
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800268 time_tmp_age.sec = bss->age / 1000;
269 time_tmp_age.usec = (bss->age % 1000) * 1000;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800270 os_reltime_sub(&scan_res->fetch_time, &time_tmp_age, &entry_ts);
Dmitry Shmidt96571392013-10-14 12:54:46 -0700271
272 ies = (const u8 *) (bss + 1);
273 ies_len = bss->ie_len;
274 if (bss->beacon_ie_len > 0 &&
275 !wpa_scan_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE) &&
276 wpa_scan_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE)) {
277 wpa_printf(MSG_DEBUG, "P2P: Use P2P IE(s) from Beacon frame since no P2P IE(s) in Probe Response frames received for "
278 MACSTR, MAC2STR(bss->bssid));
279 ies = ies + ies_len;
280 ies_len = bss->beacon_ie_len;
281 }
282
283
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700284 if (p2p_scan_res_handler(wpa_s->global->p2p, bss->bssid,
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800285 bss->freq, &entry_ts, bss->level,
Dmitry Shmidt96571392013-10-14 12:54:46 -0700286 ies, ies_len) > 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700287 break;
288 }
289
290 p2p_scan_res_handled(wpa_s->global->p2p);
291}
292
293
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800294static void wpas_p2p_trigger_scan_cb(struct wpa_radio_work *work, int deinit)
295{
296 struct wpa_supplicant *wpa_s = work->wpa_s;
297 struct wpa_driver_scan_params *params = work->ctx;
298 int ret;
299
300 if (deinit) {
Dmitry Shmidtbd14a572014-02-18 10:33:49 -0800301 if (!work->started) {
302 wpa_scan_free_params(params);
303 return;
304 }
305
306 wpa_s->p2p_scan_work = NULL;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800307 return;
308 }
309
310 ret = wpa_drv_scan(wpa_s, params);
311 wpa_scan_free_params(params);
312 work->ctx = NULL;
313 if (ret) {
314 radio_work_done(work);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800315 p2p_notify_scan_trigger_status(wpa_s->global->p2p, ret);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800316 return;
317 }
318
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800319 p2p_notify_scan_trigger_status(wpa_s->global->p2p, ret);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800320 os_get_reltime(&wpa_s->scan_trigger_time);
321 wpa_s->scan_res_handler = wpas_p2p_scan_res_handler;
322 wpa_s->own_scan_requested = 1;
323 wpa_s->p2p_scan_work = work;
324}
325
326
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800327static int wpas_p2p_search_social_channel(struct wpa_supplicant *wpa_s,
328 int freq)
329{
330 if (wpa_s->global->p2p_24ghz_social_channels &&
331 (freq == 2412 || freq == 2437 || freq == 2462)) {
332 /*
333 * Search all social channels regardless of whether these have
334 * been disabled for P2P operating channel use to avoid missing
335 * peers.
336 */
337 return 1;
338 }
339 return p2p_supported_freq(wpa_s->global->p2p, freq);
340}
341
342
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700343static int wpas_p2p_scan(void *ctx, enum p2p_scan_type type, int freq,
344 unsigned int num_req_dev_types,
Dmitry Shmidt04949592012-07-19 12:16:46 -0700345 const u8 *req_dev_types, const u8 *dev_id, u16 pw_id)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700346{
347 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800348 struct wpa_driver_scan_params *params = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700349 struct wpabuf *wps_ie, *ies;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700350 unsigned int num_channels = 0;
351 int social_channels_freq[] = { 2412, 2437, 2462, 60480 };
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800352 size_t ielen;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700353 u8 *n, i;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700354
355 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
356 return -1;
357
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800358 if (wpa_s->p2p_scan_work) {
359 wpa_dbg(wpa_s, MSG_INFO, "P2P: Reject scan trigger since one is already pending");
360 return -1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700361 }
362
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800363 params = os_zalloc(sizeof(*params));
364 if (params == NULL)
365 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700366
367 /* P2P Wildcard SSID */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800368 params->num_ssids = 1;
369 n = os_malloc(P2P_WILDCARD_SSID_LEN);
370 if (n == NULL)
371 goto fail;
372 os_memcpy(n, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN);
373 params->ssids[0].ssid = n;
374 params->ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700375
376 wpa_s->wps->dev.p2p = 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700377 wps_ie = wps_build_probe_req_ie(pw_id, &wpa_s->wps->dev,
378 wpa_s->wps->uuid, WPS_REQ_ENROLLEE,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700379 num_req_dev_types, req_dev_types);
380 if (wps_ie == NULL)
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800381 goto fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700382
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800383 ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
384 ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700385 if (ies == NULL) {
386 wpabuf_free(wps_ie);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800387 goto fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700388 }
389 wpabuf_put_buf(ies, wps_ie);
390 wpabuf_free(wps_ie);
391
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800392 p2p_scan_ie(wpa_s->global->p2p, ies, dev_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700393
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800394 params->p2p_probe = 1;
395 n = os_malloc(wpabuf_len(ies));
396 if (n == NULL) {
397 wpabuf_free(ies);
398 goto fail;
399 }
400 os_memcpy(n, wpabuf_head(ies), wpabuf_len(ies));
401 params->extra_ies = n;
402 params->extra_ies_len = wpabuf_len(ies);
403 wpabuf_free(ies);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700404
405 switch (type) {
406 case P2P_SCAN_SOCIAL:
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700407 params->freqs = os_calloc(ARRAY_SIZE(social_channels_freq) + 1,
408 sizeof(int));
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800409 if (params->freqs == NULL)
410 goto fail;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700411 for (i = 0; i < ARRAY_SIZE(social_channels_freq); i++) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800412 if (wpas_p2p_search_social_channel(
413 wpa_s, social_channels_freq[i]))
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700414 params->freqs[num_channels++] =
415 social_channels_freq[i];
416 }
417 params->freqs[num_channels++] = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700418 break;
419 case P2P_SCAN_FULL:
420 break;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -0800421 case P2P_SCAN_SPECIFIC:
422 params->freqs = os_calloc(2, sizeof(int));
423 if (params->freqs == NULL)
424 goto fail;
425 params->freqs[0] = freq;
426 params->freqs[1] = 0;
427 break;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700428 case P2P_SCAN_SOCIAL_PLUS_ONE:
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700429 params->freqs = os_calloc(ARRAY_SIZE(social_channels_freq) + 2,
430 sizeof(int));
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800431 if (params->freqs == NULL)
432 goto fail;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700433 for (i = 0; i < ARRAY_SIZE(social_channels_freq); i++) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800434 if (wpas_p2p_search_social_channel(
435 wpa_s, social_channels_freq[i]))
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700436 params->freqs[num_channels++] =
437 social_channels_freq[i];
438 }
439 if (p2p_supported_freq(wpa_s->global->p2p, freq))
440 params->freqs[num_channels++] = freq;
441 params->freqs[num_channels++] = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700442 break;
443 }
444
Dmitry Shmidtbd14a572014-02-18 10:33:49 -0800445 radio_remove_works(wpa_s, "p2p-scan", 0);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800446 if (radio_add_work(wpa_s, 0, "p2p-scan", 0, wpas_p2p_trigger_scan_cb,
447 params) < 0)
448 goto fail;
449 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700450
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800451fail:
452 wpa_scan_free_params(params);
453 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700454}
455
456
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700457static enum wpa_driver_if_type wpas_p2p_if_type(int p2p_group_interface)
458{
459 switch (p2p_group_interface) {
460 case P2P_GROUP_INTERFACE_PENDING:
461 return WPA_IF_P2P_GROUP;
462 case P2P_GROUP_INTERFACE_GO:
463 return WPA_IF_P2P_GO;
464 case P2P_GROUP_INTERFACE_CLIENT:
465 return WPA_IF_P2P_CLIENT;
466 }
467
468 return WPA_IF_P2P_GROUP;
469}
470
471
472static struct wpa_supplicant * wpas_get_p2p_group(struct wpa_supplicant *wpa_s,
473 const u8 *ssid,
474 size_t ssid_len, int *go)
475{
476 struct wpa_ssid *s;
477
478 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
479 for (s = wpa_s->conf->ssid; s; s = s->next) {
480 if (s->disabled != 0 || !s->p2p_group ||
481 s->ssid_len != ssid_len ||
482 os_memcmp(ssid, s->ssid, ssid_len) != 0)
483 continue;
484 if (s->mode == WPAS_MODE_P2P_GO &&
485 s != wpa_s->current_ssid)
486 continue;
487 if (go)
488 *go = s->mode == WPAS_MODE_P2P_GO;
489 return wpa_s;
490 }
491 }
492
493 return NULL;
494}
495
496
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800497static void run_wpas_p2p_disconnect(void *eloop_ctx, void *timeout_ctx)
498{
499 struct wpa_supplicant *wpa_s = eloop_ctx;
500 wpa_printf(MSG_DEBUG,
501 "P2P: Complete previously requested removal of %s",
502 wpa_s->ifname);
503 wpas_p2p_disconnect(wpa_s);
504}
505
506
507static int wpas_p2p_disconnect_safely(struct wpa_supplicant *wpa_s,
508 struct wpa_supplicant *calling_wpa_s)
509{
510 if (calling_wpa_s == wpa_s && wpa_s &&
511 wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE) {
512 /*
513 * The calling wpa_s instance is going to be removed. Do that
514 * from an eloop callback to keep the instance available until
515 * the caller has returned. This my be needed, e.g., to provide
516 * control interface responses on the per-interface socket.
517 */
518 if (eloop_register_timeout(0, 0, run_wpas_p2p_disconnect,
519 wpa_s, NULL) < 0)
520 return -1;
521 return 0;
522 }
523
524 return wpas_p2p_disconnect(wpa_s);
525}
526
527
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800528/* Determine total number of clients in active groups where we are the GO */
529static unsigned int p2p_group_go_member_count(struct wpa_supplicant *wpa_s)
530{
531 unsigned int count = 0;
532 struct wpa_ssid *s;
533
534 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
535 for (s = wpa_s->conf->ssid; s; s = s->next) {
536 wpa_printf(MSG_DEBUG,
537 "P2P: sup:%p ssid:%p disabled:%d p2p:%d mode:%d",
538 wpa_s, s, s->disabled, s->p2p_group,
539 s->mode);
540 if (!s->disabled && s->p2p_group &&
541 s->mode == WPAS_MODE_P2P_GO) {
542 count += p2p_get_group_num_members(
543 wpa_s->p2p_group);
544 }
545 }
546 }
547
548 return count;
549}
550
551
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800552static unsigned int p2p_is_active_persistent_group(struct wpa_supplicant *wpa_s)
553{
554 return !wpa_s->p2p_mgmt && wpa_s->current_ssid &&
555 !wpa_s->current_ssid->disabled &&
556 wpa_s->current_ssid->p2p_group &&
557 wpa_s->current_ssid->p2p_persistent_group;
558}
559
560
561static unsigned int p2p_is_active_persistent_go(struct wpa_supplicant *wpa_s)
562{
563 return p2p_is_active_persistent_group(wpa_s) &&
564 wpa_s->current_ssid->mode == WPAS_MODE_P2P_GO;
565}
566
567
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800568/* Find an interface for a P2P group where we are the GO */
569static struct wpa_supplicant *
570wpas_p2p_get_go_group(struct wpa_supplicant *wpa_s)
571{
572 struct wpa_supplicant *save = NULL;
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800573
574 if (!wpa_s)
575 return NULL;
576
577 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800578 if (!p2p_is_active_persistent_go(wpa_s))
579 continue;
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800580
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800581 /* Prefer a group with connected clients */
582 if (p2p_get_group_num_members(wpa_s->p2p_group))
583 return wpa_s;
584 save = wpa_s;
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800585 }
586
587 /* No group with connected clients, so pick the one without (if any) */
588 return save;
589}
590
591
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800592static unsigned int p2p_is_active_persistent_cli(struct wpa_supplicant *wpa_s)
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800593{
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800594 return p2p_is_active_persistent_group(wpa_s) &&
595 wpa_s->current_ssid->mode == WPAS_MODE_INFRA;
596}
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800597
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800598
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800599/* Find an interface for a P2P group where we are the P2P Client */
600static struct wpa_supplicant *
601wpas_p2p_get_cli_group(struct wpa_supplicant *wpa_s)
602{
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800603 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800604 if (p2p_is_active_persistent_cli(wpa_s))
605 return wpa_s;
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800606 }
607
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800608 return NULL;
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800609}
610
611
612/* Find a persistent group where we are the GO */
613static struct wpa_ssid *
614wpas_p2p_get_persistent_go(struct wpa_supplicant *wpa_s)
615{
616 struct wpa_ssid *s;
617
618 for (s = wpa_s->conf->ssid; s; s = s->next) {
619 if (s->disabled == 2 && s->mode == WPAS_MODE_P2P_GO)
620 return s;
621 }
622
623 return NULL;
624}
625
626
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800627static u8 p2ps_group_capability(void *ctx, u8 incoming, u8 role,
628 unsigned int *force_freq,
629 unsigned int *pref_freq)
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800630{
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800631 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800632 struct wpa_ssid *s;
633 u8 conncap = P2PS_SETUP_NONE;
634 unsigned int owned_members = 0;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800635 struct wpa_supplicant *go_wpa_s, *cli_wpa_s;
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800636 struct wpa_ssid *persistent_go;
637 int p2p_no_group_iface;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800638 unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS], size;
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800639
640 wpa_printf(MSG_DEBUG, "P2P: Conncap - in:%d role:%d", incoming, role);
641
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800642 if (force_freq)
643 *force_freq = 0;
644 if (pref_freq)
645 *pref_freq = 0;
646
647 size = P2P_MAX_PREF_CHANNELS;
648 if (force_freq && pref_freq &&
649 !wpas_p2p_setup_freqs(wpa_s, 0, (int *) force_freq,
650 (int *) pref_freq, 0, pref_freq_list, &size))
651 wpas_p2p_set_own_freq_preference(wpa_s,
652 *force_freq ? *force_freq :
653 *pref_freq);
654
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800655 /*
656 * For non-concurrent capable devices:
657 * If persistent_go, then no new.
658 * If GO, then no client.
659 * If client, then no GO.
660 */
661 go_wpa_s = wpas_p2p_get_go_group(wpa_s);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800662 if (go_wpa_s)
663 owned_members = p2p_get_group_num_members(go_wpa_s->p2p_group);
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800664 persistent_go = wpas_p2p_get_persistent_go(wpa_s);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800665 p2p_no_group_iface = !wpas_p2p_create_iface(wpa_s);
666 cli_wpa_s = wpas_p2p_get_cli_group(wpa_s);
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800667
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800668 wpa_printf(MSG_DEBUG,
669 "P2P: GO(iface)=%p members=%u CLI(iface)=%p persistent(ssid)=%p",
670 go_wpa_s, owned_members, cli_wpa_s, persistent_go);
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800671
672 /* If not concurrent, restrict our choices */
673 if (p2p_no_group_iface) {
674 wpa_printf(MSG_DEBUG, "P2P: p2p_no_group_iface");
675
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800676 if (cli_wpa_s)
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800677 return P2PS_SETUP_NONE;
678
679 if (go_wpa_s) {
680 if (role == P2PS_SETUP_CLIENT ||
681 incoming == P2PS_SETUP_GROUP_OWNER ||
682 p2p_client_limit_reached(go_wpa_s->p2p_group))
683 return P2PS_SETUP_NONE;
684
685 return P2PS_SETUP_GROUP_OWNER;
686 }
687
688 if (persistent_go) {
689 if (role == P2PS_SETUP_NONE || role == P2PS_SETUP_NEW) {
690 if (!incoming)
691 return P2PS_SETUP_GROUP_OWNER |
692 P2PS_SETUP_CLIENT;
693 if (incoming == P2PS_SETUP_NEW) {
694 u8 r;
695
696 if (os_get_random(&r, sizeof(r)) < 0 ||
697 (r & 1))
698 return P2PS_SETUP_CLIENT;
699 return P2PS_SETUP_GROUP_OWNER;
700 }
701 }
702 }
703 }
704
705 /* If a required role has been specified, handle it here */
706 if (role && role != P2PS_SETUP_NEW) {
707 switch (incoming) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800708 case P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_NEW:
709 case P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_CLIENT:
710 /*
711 * Peer has an active GO, so if the role allows it and
712 * we do not have any active roles, become client.
713 */
714 if ((role & P2PS_SETUP_CLIENT) && !go_wpa_s &&
715 !cli_wpa_s)
716 return P2PS_SETUP_CLIENT;
717
718 /* fall through */
719
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800720 case P2PS_SETUP_NONE:
721 case P2PS_SETUP_NEW:
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800722 conncap = role;
723 goto grp_owner;
724
725 case P2PS_SETUP_GROUP_OWNER:
726 /*
727 * Must be a complimentary role - cannot be a client to
728 * more than one peer.
729 */
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800730 if (incoming == role || cli_wpa_s)
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800731 return P2PS_SETUP_NONE;
732
733 return P2PS_SETUP_CLIENT;
734
735 case P2PS_SETUP_CLIENT:
736 /* Must be a complimentary role */
737 if (incoming != role) {
738 conncap = P2PS_SETUP_GROUP_OWNER;
739 goto grp_owner;
740 }
741
742 default:
743 return P2PS_SETUP_NONE;
744 }
745 }
746
747 /*
748 * For now, we only will support ownership of one group, and being a
749 * client of one group. Therefore, if we have either an existing GO
750 * group, or an existing client group, we will not do a new GO
751 * negotiation, but rather try to re-use the existing groups.
752 */
753 switch (incoming) {
754 case P2PS_SETUP_NONE:
755 case P2PS_SETUP_NEW:
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800756 if (cli_wpa_s)
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800757 conncap = P2PS_SETUP_GROUP_OWNER;
758 else if (!owned_members)
759 conncap = P2PS_SETUP_NEW;
760 else if (incoming == P2PS_SETUP_NONE)
761 conncap = P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_CLIENT;
762 else
763 conncap = P2PS_SETUP_CLIENT;
764 break;
765
766 case P2PS_SETUP_CLIENT:
767 conncap = P2PS_SETUP_GROUP_OWNER;
768 break;
769
770 case P2PS_SETUP_GROUP_OWNER:
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800771 if (!cli_wpa_s)
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800772 conncap = P2PS_SETUP_CLIENT;
773 break;
774
775 case P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_NEW:
776 case P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_CLIENT:
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800777 if (cli_wpa_s)
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800778 conncap = P2PS_SETUP_GROUP_OWNER;
779 else {
780 u8 r;
781
782 if (os_get_random(&r, sizeof(r)) < 0 ||
783 (r & 1))
784 conncap = P2PS_SETUP_CLIENT;
785 else
786 conncap = P2PS_SETUP_GROUP_OWNER;
787 }
788 break;
789
790 default:
791 return P2PS_SETUP_NONE;
792 }
793
794grp_owner:
795 if ((conncap & P2PS_SETUP_GROUP_OWNER) ||
796 (!incoming && (conncap & P2PS_SETUP_NEW))) {
797 if (go_wpa_s && p2p_client_limit_reached(go_wpa_s->p2p_group))
798 conncap &= ~P2PS_SETUP_GROUP_OWNER;
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800799
800 s = wpas_p2p_get_persistent_go(wpa_s);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800801 if (!s && !go_wpa_s && p2p_no_group_iface) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800802 p2p_set_intended_addr(wpa_s->global->p2p,
803 wpa_s->own_addr);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800804 } else if (!s && !go_wpa_s) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800805 if (wpas_p2p_add_group_interface(wpa_s,
806 WPA_IF_P2P_GO) < 0) {
807 wpa_printf(MSG_ERROR,
808 "P2P: Failed to allocate a new interface for the group");
809 return P2PS_SETUP_NONE;
810 }
811 wpa_s->global->pending_group_iface_for_p2ps = 1;
812 p2p_set_intended_addr(wpa_s->global->p2p,
813 wpa_s->pending_interface_addr);
814 }
815 }
816
817 return conncap;
818}
819
820
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700821static int wpas_p2p_group_delete(struct wpa_supplicant *wpa_s,
822 enum p2p_group_removal_reason removal_reason)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700823{
824 struct wpa_ssid *ssid;
825 char *gtype;
826 const char *reason;
827
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700828 ssid = wpa_s->current_ssid;
829 if (ssid == NULL) {
830 /*
831 * The current SSID was not known, but there may still be a
Dmitry Shmidtaa532512012-09-24 10:35:31 -0700832 * pending P2P group interface waiting for provisioning or a
833 * P2P group that is trying to reconnect.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700834 */
835 ssid = wpa_s->conf->ssid;
836 while (ssid) {
Jouni Malinen9d712832012-10-05 11:01:57 -0700837 if (ssid->p2p_group && ssid->disabled != 2)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700838 break;
839 ssid = ssid->next;
840 }
Jouni Malinen5c44edb2012-08-31 21:35:32 +0300841 if (ssid == NULL &&
842 wpa_s->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)
843 {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700844 wpa_printf(MSG_ERROR, "P2P: P2P group interface "
845 "not found");
846 return -1;
847 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700848 }
849 if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO)
850 gtype = "GO";
851 else if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT ||
852 (ssid && ssid->mode == WPAS_MODE_INFRA)) {
853 wpa_s->reassociate = 0;
854 wpa_s->disconnected = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700855 gtype = "client";
856 } else
857 gtype = "GO";
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700858
859 if (removal_reason != P2P_GROUP_REMOVAL_SILENT && ssid)
860 wpas_notify_p2p_group_removed(wpa_s, ssid, gtype);
861
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800862 if (os_strcmp(gtype, "client") == 0) {
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700863 wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800864 if (eloop_is_timeout_registered(wpas_p2p_psk_failure_removal,
865 wpa_s, NULL)) {
866 wpa_printf(MSG_DEBUG,
867 "P2P: PSK failure removal was scheduled, so use PSK failure as reason for group removal");
868 removal_reason = P2P_GROUP_REMOVAL_PSK_FAILURE;
869 eloop_cancel_timeout(wpas_p2p_psk_failure_removal,
870 wpa_s, NULL);
871 }
872 }
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700873
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700874 if (wpa_s->cross_connect_in_use) {
875 wpa_s->cross_connect_in_use = 0;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700876 wpa_msg_global(wpa_s->parent, MSG_INFO,
877 P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
878 wpa_s->ifname, wpa_s->cross_connect_uplink);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700879 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700880 switch (removal_reason) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700881 case P2P_GROUP_REMOVAL_REQUESTED:
882 reason = " reason=REQUESTED";
883 break;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700884 case P2P_GROUP_REMOVAL_FORMATION_FAILED:
885 reason = " reason=FORMATION_FAILED";
886 break;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700887 case P2P_GROUP_REMOVAL_IDLE_TIMEOUT:
888 reason = " reason=IDLE";
889 break;
890 case P2P_GROUP_REMOVAL_UNAVAILABLE:
891 reason = " reason=UNAVAILABLE";
892 break;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700893 case P2P_GROUP_REMOVAL_GO_ENDING_SESSION:
894 reason = " reason=GO_ENDING_SESSION";
895 break;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700896 case P2P_GROUP_REMOVAL_PSK_FAILURE:
897 reason = " reason=PSK_FAILURE";
898 break;
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800899 case P2P_GROUP_REMOVAL_FREQ_CONFLICT:
900 reason = " reason=FREQ_CONFLICT";
901 break;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700902 default:
903 reason = "";
904 break;
905 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700906 if (removal_reason != P2P_GROUP_REMOVAL_SILENT) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700907 wpa_msg_global(wpa_s->parent, MSG_INFO,
908 P2P_EVENT_GROUP_REMOVED "%s %s%s",
909 wpa_s->ifname, gtype, reason);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700910 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700911
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800912 if (eloop_cancel_timeout(wpas_p2p_group_freq_conflict, wpa_s, NULL) > 0)
913 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group freq_conflict timeout");
Dmitry Shmidt04949592012-07-19 12:16:46 -0700914 if (eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
915 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800916 if (eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
Dmitry Shmidt2f023192013-03-12 12:44:17 -0700917 wpa_s->parent, NULL) > 0) {
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800918 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group formation "
919 "timeout");
Dmitry Shmidt2f023192013-03-12 12:44:17 -0700920 wpa_s->p2p_in_provisioning = 0;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800921 wpas_p2p_group_formation_failed(wpa_s, 1);
Dmitry Shmidt2f023192013-03-12 12:44:17 -0700922 }
Dmitry Shmidt04949592012-07-19 12:16:46 -0700923
Dmitry Shmidt15907092014-03-25 10:42:57 -0700924 wpa_s->p2p_in_invitation = 0;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800925 eloop_cancel_timeout(wpas_p2p_move_go, wpa_s, NULL);
926 eloop_cancel_timeout(wpas_p2p_reconsider_moving_go, wpa_s, NULL);
Dmitry Shmidt15907092014-03-25 10:42:57 -0700927
Dmitry Shmidt96571392013-10-14 12:54:46 -0700928 /*
929 * Make sure wait for the first client does not remain active after the
930 * group has been removed.
931 */
932 wpa_s->global->p2p_go_wait_client.sec = 0;
933
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700934 if (wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE) {
935 struct wpa_global *global;
936 char *ifname;
937 enum wpa_driver_if_type type;
938 wpa_printf(MSG_DEBUG, "P2P: Remove group interface %s",
939 wpa_s->ifname);
940 global = wpa_s->global;
941 ifname = os_strdup(wpa_s->ifname);
942 type = wpas_p2p_if_type(wpa_s->p2p_group_interface);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800943 eloop_cancel_timeout(run_wpas_p2p_disconnect, wpa_s, NULL);
Dmitry Shmidte15c7b52011-08-03 15:04:35 -0700944 wpa_supplicant_remove_iface(wpa_s->global, wpa_s, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700945 wpa_s = global->ifaces;
946 if (wpa_s && ifname)
947 wpa_drv_if_remove(wpa_s, type, ifname);
948 os_free(ifname);
Jouni Malinen2b89da82012-08-31 22:04:41 +0300949 return 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700950 }
951
Dmitry Shmidt96571392013-10-14 12:54:46 -0700952 if (!wpa_s->p2p_go_group_formation_completed) {
953 wpa_s->global->p2p_group_formation = NULL;
954 wpa_s->p2p_in_provisioning = 0;
955 }
956
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800957 wpa_s->show_group_started = 0;
958 os_free(wpa_s->go_params);
959 wpa_s->go_params = NULL;
960
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800961 os_free(wpa_s->p2p_group_common_freqs);
962 wpa_s->p2p_group_common_freqs = NULL;
963 wpa_s->p2p_group_common_freqs_num = 0;
964
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800965 wpa_s->waiting_presence_resp = 0;
966
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700967 wpa_printf(MSG_DEBUG, "P2P: Remove temporary group network");
968 if (ssid && (ssid->p2p_group ||
969 ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION ||
970 (ssid->key_mgmt & WPA_KEY_MGMT_WPS))) {
971 int id = ssid->id;
Jouni Malinen75ecf522011-06-27 15:19:46 -0700972 if (ssid == wpa_s->current_ssid) {
973 wpa_sm_set_config(wpa_s->wpa, NULL);
974 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700975 wpa_s->current_ssid = NULL;
Jouni Malinen75ecf522011-06-27 15:19:46 -0700976 }
977 /*
978 * Networks objects created during any P2P activities are not
979 * exposed out as they might/will confuse certain non-P2P aware
980 * applications since these network objects won't behave like
981 * regular ones.
982 *
983 * Likewise, we don't send out network removed signals for such
984 * network objects.
985 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700986 wpa_config_remove_network(wpa_s->conf, id);
987 wpa_supplicant_clear_status(wpa_s);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800988 wpa_supplicant_cancel_sched_scan(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700989 } else {
990 wpa_printf(MSG_DEBUG, "P2P: Temporary group network not "
991 "found");
992 }
Dmitry Shmidt04949592012-07-19 12:16:46 -0700993 if (wpa_s->ap_iface)
994 wpa_supplicant_ap_deinit(wpa_s);
995 else
996 wpa_drv_deinit_p2p_cli(wpa_s);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700997
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800998 os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
999
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001000 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001001}
1002
1003
1004static int wpas_p2p_persistent_group(struct wpa_supplicant *wpa_s,
1005 u8 *go_dev_addr,
1006 const u8 *ssid, size_t ssid_len)
1007{
1008 struct wpa_bss *bss;
1009 const u8 *bssid;
1010 struct wpabuf *p2p;
1011 u8 group_capab;
1012 const u8 *addr;
1013
1014 if (wpa_s->go_params)
1015 bssid = wpa_s->go_params->peer_interface_addr;
1016 else
1017 bssid = wpa_s->bssid;
1018
1019 bss = wpa_bss_get(wpa_s, bssid, ssid, ssid_len);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001020 if (bss == NULL && wpa_s->go_params &&
1021 !is_zero_ether_addr(wpa_s->go_params->peer_device_addr))
1022 bss = wpa_bss_get_p2p_dev_addr(
1023 wpa_s, wpa_s->go_params->peer_device_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001024 if (bss == NULL) {
1025 u8 iface_addr[ETH_ALEN];
1026 if (p2p_get_interface_addr(wpa_s->global->p2p, bssid,
1027 iface_addr) == 0)
1028 bss = wpa_bss_get(wpa_s, iface_addr, ssid, ssid_len);
1029 }
1030 if (bss == NULL) {
1031 wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
1032 "group is persistent - BSS " MACSTR " not found",
1033 MAC2STR(bssid));
1034 return 0;
1035 }
1036
1037 p2p = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
Dmitry Shmidt96571392013-10-14 12:54:46 -07001038 if (p2p == NULL)
1039 p2p = wpa_bss_get_vendor_ie_multi_beacon(bss,
1040 P2P_IE_VENDOR_TYPE);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001041 if (p2p == NULL) {
1042 wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
1043 "group is persistent - BSS " MACSTR
1044 " did not include P2P IE", MAC2STR(bssid));
1045 wpa_hexdump(MSG_DEBUG, "P2P: Probe Response IEs",
1046 (u8 *) (bss + 1), bss->ie_len);
1047 wpa_hexdump(MSG_DEBUG, "P2P: Beacon IEs",
1048 ((u8 *) bss + 1) + bss->ie_len,
1049 bss->beacon_ie_len);
1050 return 0;
1051 }
1052
1053 group_capab = p2p_get_group_capab(p2p);
1054 addr = p2p_get_go_dev_addr(p2p);
1055 wpa_printf(MSG_DEBUG, "P2P: Checking whether group is persistent: "
1056 "group_capab=0x%x", group_capab);
1057 if (addr) {
1058 os_memcpy(go_dev_addr, addr, ETH_ALEN);
1059 wpa_printf(MSG_DEBUG, "P2P: GO Device Address " MACSTR,
1060 MAC2STR(addr));
1061 } else
1062 os_memset(go_dev_addr, 0, ETH_ALEN);
1063 wpabuf_free(p2p);
1064
1065 wpa_printf(MSG_DEBUG, "P2P: BSS " MACSTR " group_capab=0x%x "
1066 "go_dev_addr=" MACSTR,
1067 MAC2STR(bssid), group_capab, MAC2STR(go_dev_addr));
1068
1069 return group_capab & P2P_GROUP_CAPAB_PERSISTENT_GROUP;
1070}
1071
1072
Jouni Malinen75ecf522011-06-27 15:19:46 -07001073static int wpas_p2p_store_persistent_group(struct wpa_supplicant *wpa_s,
1074 struct wpa_ssid *ssid,
1075 const u8 *go_dev_addr)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001076{
1077 struct wpa_ssid *s;
1078 int changed = 0;
1079
1080 wpa_printf(MSG_DEBUG, "P2P: Storing credentials for a persistent "
1081 "group (GO Dev Addr " MACSTR ")", MAC2STR(go_dev_addr));
1082 for (s = wpa_s->conf->ssid; s; s = s->next) {
1083 if (s->disabled == 2 &&
1084 os_memcmp(go_dev_addr, s->bssid, ETH_ALEN) == 0 &&
1085 s->ssid_len == ssid->ssid_len &&
1086 os_memcmp(ssid->ssid, s->ssid, ssid->ssid_len) == 0)
1087 break;
1088 }
1089
1090 if (s) {
1091 wpa_printf(MSG_DEBUG, "P2P: Update existing persistent group "
1092 "entry");
1093 if (ssid->passphrase && !s->passphrase)
1094 changed = 1;
1095 else if (ssid->passphrase && s->passphrase &&
1096 os_strcmp(ssid->passphrase, s->passphrase) != 0)
1097 changed = 1;
1098 } else {
1099 wpa_printf(MSG_DEBUG, "P2P: Create a new persistent group "
1100 "entry");
1101 changed = 1;
1102 s = wpa_config_add_network(wpa_s->conf);
1103 if (s == NULL)
Jouni Malinen75ecf522011-06-27 15:19:46 -07001104 return -1;
1105
1106 /*
1107 * Instead of network_added we emit persistent_group_added
1108 * notification. Also to keep the defense checks in
1109 * persistent_group obj registration method, we set the
1110 * relevant flags in s to designate it as a persistent group.
1111 */
1112 s->p2p_group = 1;
1113 s->p2p_persistent_group = 1;
1114 wpas_notify_persistent_group_added(wpa_s, s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001115 wpa_config_set_network_defaults(s);
1116 }
1117
1118 s->p2p_group = 1;
1119 s->p2p_persistent_group = 1;
1120 s->disabled = 2;
1121 s->bssid_set = 1;
1122 os_memcpy(s->bssid, go_dev_addr, ETH_ALEN);
1123 s->mode = ssid->mode;
1124 s->auth_alg = WPA_AUTH_ALG_OPEN;
1125 s->key_mgmt = WPA_KEY_MGMT_PSK;
1126 s->proto = WPA_PROTO_RSN;
1127 s->pairwise_cipher = WPA_CIPHER_CCMP;
1128 s->export_keys = 1;
1129 if (ssid->passphrase) {
1130 os_free(s->passphrase);
1131 s->passphrase = os_strdup(ssid->passphrase);
1132 }
1133 if (ssid->psk_set) {
1134 s->psk_set = 1;
1135 os_memcpy(s->psk, ssid->psk, 32);
1136 }
1137 if (s->passphrase && !s->psk_set)
1138 wpa_config_update_psk(s);
1139 if (s->ssid == NULL || s->ssid_len < ssid->ssid_len) {
1140 os_free(s->ssid);
1141 s->ssid = os_malloc(ssid->ssid_len);
1142 }
1143 if (s->ssid) {
1144 s->ssid_len = ssid->ssid_len;
1145 os_memcpy(s->ssid, ssid->ssid, s->ssid_len);
1146 }
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001147 if (ssid->mode == WPAS_MODE_P2P_GO && wpa_s->global->add_psk) {
1148 dl_list_add(&s->psk_list, &wpa_s->global->add_psk->list);
1149 wpa_s->global->add_psk = NULL;
1150 changed = 1;
1151 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001152
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001153 if (changed && wpa_s->conf->update_config &&
1154 wpa_config_write(wpa_s->confname, wpa_s->conf)) {
1155 wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
1156 }
Jouni Malinen75ecf522011-06-27 15:19:46 -07001157
1158 return s->id;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001159}
1160
1161
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001162static void wpas_p2p_add_persistent_group_client(struct wpa_supplicant *wpa_s,
1163 const u8 *addr)
1164{
1165 struct wpa_ssid *ssid, *s;
1166 u8 *n;
1167 size_t i;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001168 int found = 0;
Dmitry Shmidt8bd70b72015-05-26 16:02:19 -07001169 struct wpa_supplicant *p2p_wpa_s = wpa_s->global->p2p_init_wpa_s;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001170
1171 ssid = wpa_s->current_ssid;
1172 if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
1173 !ssid->p2p_persistent_group)
1174 return;
1175
Dmitry Shmidt8bd70b72015-05-26 16:02:19 -07001176 for (s = p2p_wpa_s->conf->ssid; s; s = s->next) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001177 if (s->disabled != 2 || s->mode != WPAS_MODE_P2P_GO)
1178 continue;
1179
1180 if (s->ssid_len == ssid->ssid_len &&
1181 os_memcmp(s->ssid, ssid->ssid, s->ssid_len) == 0)
1182 break;
1183 }
1184
1185 if (s == NULL)
1186 return;
1187
1188 for (i = 0; s->p2p_client_list && i < s->num_p2p_clients; i++) {
Dmitry Shmidtff787d52015-01-12 13:01:47 -08001189 if (os_memcmp(s->p2p_client_list + i * 2 * ETH_ALEN, addr,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001190 ETH_ALEN) != 0)
1191 continue;
1192
1193 if (i == s->num_p2p_clients - 1)
1194 return; /* already the most recent entry */
1195
1196 /* move the entry to mark it most recent */
Dmitry Shmidtff787d52015-01-12 13:01:47 -08001197 os_memmove(s->p2p_client_list + i * 2 * ETH_ALEN,
1198 s->p2p_client_list + (i + 1) * 2 * ETH_ALEN,
1199 (s->num_p2p_clients - i - 1) * 2 * ETH_ALEN);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001200 os_memcpy(s->p2p_client_list +
Dmitry Shmidtff787d52015-01-12 13:01:47 -08001201 (s->num_p2p_clients - 1) * 2 * ETH_ALEN, addr,
1202 ETH_ALEN);
1203 os_memset(s->p2p_client_list +
1204 (s->num_p2p_clients - 1) * 2 * ETH_ALEN + ETH_ALEN,
1205 0xff, ETH_ALEN);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001206 found = 1;
1207 break;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001208 }
1209
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001210 if (!found && s->num_p2p_clients < P2P_MAX_STORED_CLIENTS) {
1211 n = os_realloc_array(s->p2p_client_list,
Dmitry Shmidtff787d52015-01-12 13:01:47 -08001212 s->num_p2p_clients + 1, 2 * ETH_ALEN);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001213 if (n == NULL)
1214 return;
Dmitry Shmidtff787d52015-01-12 13:01:47 -08001215 os_memcpy(n + s->num_p2p_clients * 2 * ETH_ALEN, addr,
1216 ETH_ALEN);
1217 os_memset(n + s->num_p2p_clients * 2 * ETH_ALEN + ETH_ALEN,
1218 0xff, ETH_ALEN);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001219 s->p2p_client_list = n;
1220 s->num_p2p_clients++;
Dmitry Shmidt6aa8ae42014-07-07 09:31:33 -07001221 } else if (!found && s->p2p_client_list) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001222 /* Not enough room for an additional entry - drop the oldest
1223 * entry */
1224 os_memmove(s->p2p_client_list,
Dmitry Shmidtff787d52015-01-12 13:01:47 -08001225 s->p2p_client_list + 2 * ETH_ALEN,
1226 (s->num_p2p_clients - 1) * 2 * ETH_ALEN);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001227 os_memcpy(s->p2p_client_list +
Dmitry Shmidtff787d52015-01-12 13:01:47 -08001228 (s->num_p2p_clients - 1) * 2 * ETH_ALEN,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001229 addr, ETH_ALEN);
Dmitry Shmidtff787d52015-01-12 13:01:47 -08001230 os_memset(s->p2p_client_list +
1231 (s->num_p2p_clients - 1) * 2 * ETH_ALEN + ETH_ALEN,
1232 0xff, ETH_ALEN);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001233 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001234
Dmitry Shmidt8bd70b72015-05-26 16:02:19 -07001235 if (p2p_wpa_s->conf->update_config &&
1236 wpa_config_write(p2p_wpa_s->confname, p2p_wpa_s->conf))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001237 wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001238}
1239
1240
Dmitry Shmidt7f0b69e2014-07-28 10:35:20 -07001241static void wpas_p2p_group_started(struct wpa_supplicant *wpa_s,
1242 int go, struct wpa_ssid *ssid, int freq,
1243 const u8 *psk, const char *passphrase,
1244 const u8 *go_dev_addr, int persistent,
1245 const char *extra)
1246{
1247 const char *ssid_txt;
1248 char psk_txt[65];
1249
1250 if (psk)
1251 wpa_snprintf_hex(psk_txt, sizeof(psk_txt), psk, 32);
1252 else
1253 psk_txt[0] = '\0';
1254
1255 if (ssid)
1256 ssid_txt = wpa_ssid_txt(ssid->ssid, ssid->ssid_len);
1257 else
1258 ssid_txt = "";
1259
1260 if (passphrase && passphrase[0] == '\0')
1261 passphrase = NULL;
1262
1263 /*
1264 * Include PSK/passphrase only in the control interface message and
1265 * leave it out from the debug log entry.
1266 */
1267 wpa_msg_global_ctrl(wpa_s->parent, MSG_INFO,
1268 P2P_EVENT_GROUP_STARTED
1269 "%s %s ssid=\"%s\" freq=%d%s%s%s%s%s go_dev_addr="
1270 MACSTR "%s%s",
1271 wpa_s->ifname, go ? "GO" : "client", ssid_txt, freq,
1272 psk ? " psk=" : "", psk_txt,
1273 passphrase ? " passphrase=\"" : "",
1274 passphrase ? passphrase : "",
1275 passphrase ? "\"" : "",
1276 MAC2STR(go_dev_addr),
1277 persistent ? " [PERSISTENT]" : "", extra);
1278 wpa_printf(MSG_INFO, P2P_EVENT_GROUP_STARTED
1279 "%s %s ssid=\"%s\" freq=%d go_dev_addr=" MACSTR "%s%s",
1280 wpa_s->ifname, go ? "GO" : "client", ssid_txt, freq,
1281 MAC2STR(go_dev_addr), persistent ? " [PERSISTENT]" : "",
1282 extra);
1283}
1284
1285
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001286static void wpas_group_formation_completed(struct wpa_supplicant *wpa_s,
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07001287 int success, int already_deleted)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001288{
1289 struct wpa_ssid *ssid;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001290 int client;
1291 int persistent;
1292 u8 go_dev_addr[ETH_ALEN];
Jouni Malinen75ecf522011-06-27 15:19:46 -07001293 int network_id = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001294
1295 /*
1296 * This callback is likely called for the main interface. Update wpa_s
1297 * to use the group interface if a new interface was created for the
1298 * group.
1299 */
1300 if (wpa_s->global->p2p_group_formation)
1301 wpa_s = wpa_s->global->p2p_group_formation;
Dmitry Shmidt56052862013-10-04 10:23:25 -07001302 if (wpa_s->p2p_go_group_formation_completed) {
1303 wpa_s->global->p2p_group_formation = NULL;
1304 wpa_s->p2p_in_provisioning = 0;
1305 }
Dmitry Shmidt21de2142014-04-08 10:50:52 -07001306 wpa_s->p2p_in_invitation = 0;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001307 wpa_s->group_formation_reported = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001308
1309 if (!success) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001310 wpa_msg_global(wpa_s->parent, MSG_INFO,
1311 P2P_EVENT_GROUP_FORMATION_FAILURE);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001312 wpas_notify_p2p_group_formation_failure(wpa_s, "");
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07001313 if (already_deleted)
1314 return;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001315 wpas_p2p_group_delete(wpa_s,
1316 P2P_GROUP_REMOVAL_FORMATION_FAILED);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001317 return;
1318 }
1319
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001320 wpa_msg_global(wpa_s->parent, MSG_INFO,
1321 P2P_EVENT_GROUP_FORMATION_SUCCESS);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001322
1323 ssid = wpa_s->current_ssid;
1324 if (ssid && ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
1325 ssid->mode = WPAS_MODE_P2P_GO;
1326 p2p_group_notif_formation_done(wpa_s->p2p_group);
1327 wpa_supplicant_ap_mac_addr_filter(wpa_s, NULL);
1328 }
1329
1330 persistent = 0;
1331 if (ssid) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001332 client = ssid->mode == WPAS_MODE_INFRA;
1333 if (ssid->mode == WPAS_MODE_P2P_GO) {
1334 persistent = ssid->p2p_persistent_group;
Dmitry Shmidt497c1d52011-07-21 15:19:46 -07001335 os_memcpy(go_dev_addr, wpa_s->global->p2p_dev_addr,
1336 ETH_ALEN);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001337 } else
1338 persistent = wpas_p2p_persistent_group(wpa_s,
1339 go_dev_addr,
1340 ssid->ssid,
1341 ssid->ssid_len);
1342 } else {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001343 client = wpa_s->p2p_group_interface ==
1344 P2P_GROUP_INTERFACE_CLIENT;
1345 os_memset(go_dev_addr, 0, ETH_ALEN);
1346 }
1347
1348 wpa_s->show_group_started = 0;
1349 if (client) {
1350 /*
1351 * Indicate event only after successfully completed 4-way
1352 * handshake, i.e., when the interface is ready for data
1353 * packets.
1354 */
1355 wpa_s->show_group_started = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001356 } else {
Dmitry Shmidt7f0b69e2014-07-28 10:35:20 -07001357 wpas_p2p_group_started(wpa_s, 1, ssid,
1358 ssid ? ssid->frequency : 0,
1359 ssid && ssid->passphrase == NULL &&
1360 ssid->psk_set ? ssid->psk : NULL,
1361 ssid ? ssid->passphrase : NULL,
1362 go_dev_addr, persistent, "");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001363 wpas_p2p_cross_connect_setup(wpa_s);
1364 wpas_p2p_set_group_idle_timeout(wpa_s);
1365 }
1366
1367 if (persistent)
Jouni Malinen75ecf522011-06-27 15:19:46 -07001368 network_id = wpas_p2p_store_persistent_group(wpa_s->parent,
1369 ssid, go_dev_addr);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001370 else {
1371 os_free(wpa_s->global->add_psk);
1372 wpa_s->global->add_psk = NULL;
1373 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001374 if (network_id < 0 && ssid)
Jouni Malinen75ecf522011-06-27 15:19:46 -07001375 network_id = ssid->id;
Dmitry Shmidt92c368d2013-08-29 12:37:21 -07001376 if (!client) {
Jouni Malinen75ecf522011-06-27 15:19:46 -07001377 wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 0);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001378 os_get_reltime(&wpa_s->global->p2p_go_wait_client);
Dmitry Shmidt92c368d2013-08-29 12:37:21 -07001379 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001380}
1381
1382
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001383struct send_action_work {
1384 unsigned int freq;
1385 u8 dst[ETH_ALEN];
1386 u8 src[ETH_ALEN];
1387 u8 bssid[ETH_ALEN];
1388 size_t len;
1389 unsigned int wait_time;
1390 u8 buf[0];
1391};
1392
1393
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001394static void wpas_p2p_free_send_action_work(struct wpa_supplicant *wpa_s)
1395{
1396 struct send_action_work *awork = wpa_s->p2p_send_action_work->ctx;
1397
1398 wpa_printf(MSG_DEBUG,
1399 "P2P: Free Action frame radio work @%p (freq=%u dst="
1400 MACSTR " src=" MACSTR " bssid=" MACSTR " wait_time=%u)",
1401 wpa_s->p2p_send_action_work, awork->freq,
1402 MAC2STR(awork->dst), MAC2STR(awork->src),
1403 MAC2STR(awork->bssid), awork->wait_time);
1404 wpa_hexdump(MSG_DEBUG, "P2P: Freeing pending Action frame",
1405 awork->buf, awork->len);
1406 os_free(awork);
1407 wpa_s->p2p_send_action_work->ctx = NULL;
1408 radio_work_done(wpa_s->p2p_send_action_work);
1409 wpa_s->p2p_send_action_work = NULL;
1410}
1411
1412
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001413static void wpas_p2p_send_action_work_timeout(void *eloop_ctx,
1414 void *timeout_ctx)
1415{
1416 struct wpa_supplicant *wpa_s = eloop_ctx;
1417
1418 if (!wpa_s->p2p_send_action_work)
1419 return;
1420
1421 wpa_printf(MSG_DEBUG, "P2P: Send Action frame radio work timed out");
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001422 wpas_p2p_free_send_action_work(wpa_s);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001423}
1424
1425
Dmitry Shmidt03658832014-08-13 11:03:49 -07001426static void wpas_p2p_action_tx_clear(struct wpa_supplicant *wpa_s)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001427{
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001428 if (wpa_s->p2p_send_action_work) {
1429 struct send_action_work *awork;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001430
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001431 awork = wpa_s->p2p_send_action_work->ctx;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001432 wpa_printf(MSG_DEBUG,
1433 "P2P: Clear Action TX work @%p (wait_time=%u)",
1434 wpa_s->p2p_send_action_work, awork->wait_time);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001435 if (awork->wait_time == 0) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001436 wpas_p2p_free_send_action_work(wpa_s);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001437 } else {
1438 /*
1439 * In theory, this should not be needed, but number of
1440 * places in the P2P code is still using non-zero wait
1441 * time for the last Action frame in the sequence and
1442 * some of these do not call send_action_done().
1443 */
1444 eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
1445 wpa_s, NULL);
1446 eloop_register_timeout(
1447 0, awork->wait_time * 1000,
1448 wpas_p2p_send_action_work_timeout,
1449 wpa_s, NULL);
1450 }
1451 }
Dmitry Shmidt03658832014-08-13 11:03:49 -07001452}
1453
1454
1455static void wpas_p2p_send_action_tx_status(struct wpa_supplicant *wpa_s,
1456 unsigned int freq,
1457 const u8 *dst, const u8 *src,
1458 const u8 *bssid,
1459 const u8 *data, size_t data_len,
1460 enum offchannel_send_action_result
1461 result)
1462{
1463 enum p2p_send_action_result res = P2P_SEND_ACTION_SUCCESS;
1464
1465 wpas_p2p_action_tx_clear(wpa_s);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001466
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001467 if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled)
1468 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001469
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001470 switch (result) {
1471 case OFFCHANNEL_SEND_ACTION_SUCCESS:
1472 res = P2P_SEND_ACTION_SUCCESS;
1473 break;
1474 case OFFCHANNEL_SEND_ACTION_NO_ACK:
1475 res = P2P_SEND_ACTION_NO_ACK;
1476 break;
1477 case OFFCHANNEL_SEND_ACTION_FAILED:
1478 res = P2P_SEND_ACTION_FAILED;
1479 break;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001480 }
1481
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001482 p2p_send_action_cb(wpa_s->global->p2p, freq, dst, src, bssid, res);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001483
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08001484 if (result != OFFCHANNEL_SEND_ACTION_SUCCESS &&
1485 wpa_s->pending_pd_before_join &&
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001486 (os_memcmp(dst, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001487 os_memcmp(dst, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0) &&
1488 wpa_s->p2p_fallback_to_go_neg) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001489 wpa_s->pending_pd_before_join = 0;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001490 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No ACK for PD Req "
1491 "during p2p_connect-auto");
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001492 wpa_msg_global(wpa_s->parent, MSG_INFO,
1493 P2P_EVENT_FALLBACK_TO_GO_NEG
1494 "reason=no-ACK-to-PD-Req");
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001495 wpas_p2p_fallback_to_go_neg(wpa_s, 0);
1496 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001497 }
1498}
1499
1500
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001501static void wpas_send_action_cb(struct wpa_radio_work *work, int deinit)
1502{
1503 struct wpa_supplicant *wpa_s = work->wpa_s;
1504 struct send_action_work *awork = work->ctx;
1505
1506 if (deinit) {
Dmitry Shmidtbd14a572014-02-18 10:33:49 -08001507 if (work->started) {
1508 eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
1509 wpa_s, NULL);
1510 wpa_s->p2p_send_action_work = NULL;
1511 offchannel_send_action_done(wpa_s);
1512 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001513 os_free(awork);
1514 return;
1515 }
1516
1517 if (offchannel_send_action(wpa_s, awork->freq, awork->dst, awork->src,
1518 awork->bssid, awork->buf, awork->len,
1519 awork->wait_time,
1520 wpas_p2p_send_action_tx_status, 1) < 0) {
1521 os_free(awork);
1522 radio_work_done(work);
1523 return;
1524 }
1525 wpa_s->p2p_send_action_work = work;
1526}
1527
1528
1529static int wpas_send_action_work(struct wpa_supplicant *wpa_s,
1530 unsigned int freq, const u8 *dst,
1531 const u8 *src, const u8 *bssid, const u8 *buf,
1532 size_t len, unsigned int wait_time)
1533{
1534 struct send_action_work *awork;
1535
1536 if (wpa_s->p2p_send_action_work) {
1537 wpa_printf(MSG_DEBUG, "P2P: Cannot schedule new p2p-send-action work since one is already pending");
1538 return -1;
1539 }
1540
1541 awork = os_zalloc(sizeof(*awork) + len);
1542 if (awork == NULL)
1543 return -1;
1544
1545 awork->freq = freq;
1546 os_memcpy(awork->dst, dst, ETH_ALEN);
1547 os_memcpy(awork->src, src, ETH_ALEN);
1548 os_memcpy(awork->bssid, bssid, ETH_ALEN);
1549 awork->len = len;
1550 awork->wait_time = wait_time;
1551 os_memcpy(awork->buf, buf, len);
1552
1553 if (radio_add_work(wpa_s, freq, "p2p-send-action", 0,
1554 wpas_send_action_cb, awork) < 0) {
1555 os_free(awork);
1556 return -1;
1557 }
1558
1559 return 0;
1560}
1561
1562
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001563static int wpas_send_action(void *ctx, unsigned int freq, const u8 *dst,
1564 const u8 *src, const u8 *bssid, const u8 *buf,
1565 size_t len, unsigned int wait_time)
1566{
1567 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001568 int listen_freq = -1, send_freq = -1;
1569
1570 if (wpa_s->p2p_listen_work)
1571 listen_freq = wpa_s->p2p_listen_work->freq;
1572 if (wpa_s->p2p_send_action_work)
1573 send_freq = wpa_s->p2p_send_action_work->freq;
1574 if (listen_freq != (int) freq && send_freq != (int) freq) {
1575 wpa_printf(MSG_DEBUG, "P2P: Schedule new radio work for Action frame TX (listen_freq=%d send_freq=%d)",
1576 listen_freq, send_freq);
1577 return wpas_send_action_work(wpa_s, freq, dst, src, bssid, buf,
1578 len, wait_time);
1579 }
1580
1581 wpa_printf(MSG_DEBUG, "P2P: Use ongoing radio work for Action frame TX");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001582 return offchannel_send_action(wpa_s, freq, dst, src, bssid, buf, len,
1583 wait_time,
1584 wpas_p2p_send_action_tx_status, 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001585}
1586
1587
1588static void wpas_send_action_done(void *ctx)
1589{
1590 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001591
1592 if (wpa_s->p2p_send_action_work) {
1593 eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
1594 wpa_s, NULL);
1595 os_free(wpa_s->p2p_send_action_work->ctx);
1596 radio_work_done(wpa_s->p2p_send_action_work);
1597 wpa_s->p2p_send_action_work = NULL;
1598 }
1599
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001600 offchannel_send_action_done(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001601}
1602
1603
1604static int wpas_copy_go_neg_results(struct wpa_supplicant *wpa_s,
1605 struct p2p_go_neg_results *params)
1606{
1607 if (wpa_s->go_params == NULL) {
1608 wpa_s->go_params = os_malloc(sizeof(*params));
1609 if (wpa_s->go_params == NULL)
1610 return -1;
1611 }
1612 os_memcpy(wpa_s->go_params, params, sizeof(*params));
1613 return 0;
1614}
1615
1616
1617static void wpas_start_wps_enrollee(struct wpa_supplicant *wpa_s,
1618 struct p2p_go_neg_results *res)
1619{
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001620 wpa_s->group_formation_reported = 0;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001621 wpa_printf(MSG_DEBUG, "P2P: Start WPS Enrollee for peer " MACSTR
1622 " dev_addr " MACSTR " wps_method %d",
1623 MAC2STR(res->peer_interface_addr),
1624 MAC2STR(res->peer_device_addr), res->wps_method);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001625 wpa_hexdump_ascii(MSG_DEBUG, "P2P: Start WPS Enrollee for SSID",
1626 res->ssid, res->ssid_len);
1627 wpa_supplicant_ap_deinit(wpa_s);
1628 wpas_copy_go_neg_results(wpa_s, res);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001629 if (res->wps_method == WPS_PBC) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001630 wpas_wps_start_pbc(wpa_s, res->peer_interface_addr, 1);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001631#ifdef CONFIG_WPS_NFC
1632 } else if (res->wps_method == WPS_NFC) {
1633 wpas_wps_start_nfc(wpa_s, res->peer_device_addr,
1634 res->peer_interface_addr,
1635 wpa_s->parent->p2p_oob_dev_pw,
1636 wpa_s->parent->p2p_oob_dev_pw_id, 1,
1637 wpa_s->parent->p2p_oob_dev_pw_id ==
1638 DEV_PW_NFC_CONNECTION_HANDOVER ?
1639 wpa_s->parent->p2p_peer_oob_pubkey_hash :
1640 NULL,
1641 NULL, 0, 0);
1642#endif /* CONFIG_WPS_NFC */
1643 } else {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001644 u16 dev_pw_id = DEV_PW_DEFAULT;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001645 if (wpa_s->p2p_wps_method == WPS_P2PS)
1646 dev_pw_id = DEV_PW_P2PS_DEFAULT;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001647 if (wpa_s->p2p_wps_method == WPS_PIN_KEYPAD)
1648 dev_pw_id = DEV_PW_REGISTRAR_SPECIFIED;
1649 wpas_wps_start_pin(wpa_s, res->peer_interface_addr,
1650 wpa_s->p2p_pin, 1, dev_pw_id);
1651 }
1652}
1653
1654
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001655static void wpas_p2p_add_psk_list(struct wpa_supplicant *wpa_s,
1656 struct wpa_ssid *ssid)
1657{
1658 struct wpa_ssid *persistent;
1659 struct psk_list_entry *psk;
1660 struct hostapd_data *hapd;
1661
1662 if (!wpa_s->ap_iface)
1663 return;
1664
1665 persistent = wpas_p2p_get_persistent(wpa_s->parent, NULL, ssid->ssid,
1666 ssid->ssid_len);
1667 if (persistent == NULL)
1668 return;
1669
1670 hapd = wpa_s->ap_iface->bss[0];
1671
1672 dl_list_for_each(psk, &persistent->psk_list, struct psk_list_entry,
1673 list) {
1674 struct hostapd_wpa_psk *hpsk;
1675
1676 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add persistent group PSK entry for "
1677 MACSTR " psk=%d",
1678 MAC2STR(psk->addr), psk->p2p);
1679 hpsk = os_zalloc(sizeof(*hpsk));
1680 if (hpsk == NULL)
1681 break;
1682 os_memcpy(hpsk->psk, psk->psk, PMK_LEN);
1683 if (psk->p2p)
1684 os_memcpy(hpsk->p2p_dev_addr, psk->addr, ETH_ALEN);
1685 else
1686 os_memcpy(hpsk->addr, psk->addr, ETH_ALEN);
1687 hpsk->next = hapd->conf->ssid.wpa_psk;
1688 hapd->conf->ssid.wpa_psk = hpsk;
1689 }
1690}
1691
1692
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001693static void p2p_go_dump_common_freqs(struct wpa_supplicant *wpa_s)
1694{
1695 unsigned int i;
1696
1697 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Common group frequencies (len=%u):",
1698 wpa_s->p2p_group_common_freqs_num);
1699
1700 for (i = 0; i < wpa_s->p2p_group_common_freqs_num; i++)
1701 wpa_dbg(wpa_s, MSG_DEBUG, "freq[%u]: %d",
1702 i, wpa_s->p2p_group_common_freqs[i]);
1703}
1704
1705
1706static void p2p_go_save_group_common_freqs(struct wpa_supplicant *wpa_s,
1707 struct p2p_go_neg_results *params)
1708{
1709 unsigned int i, len = int_array_len(wpa_s->go_params->freq_list);
1710
1711 wpa_s->p2p_group_common_freqs_num = 0;
1712 os_free(wpa_s->p2p_group_common_freqs);
1713 wpa_s->p2p_group_common_freqs = os_calloc(len, sizeof(int));
1714 if (!wpa_s->p2p_group_common_freqs)
1715 return;
1716
1717 for (i = 0; i < len; i++) {
1718 if (!wpa_s->go_params->freq_list[i])
1719 break;
1720 wpa_s->p2p_group_common_freqs[i] =
1721 wpa_s->go_params->freq_list[i];
1722 }
1723 wpa_s->p2p_group_common_freqs_num = i;
1724}
1725
1726
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001727static void p2p_config_write(struct wpa_supplicant *wpa_s)
1728{
1729#ifndef CONFIG_NO_CONFIG_WRITE
1730 if (wpa_s->parent->conf->update_config &&
1731 wpa_config_write(wpa_s->parent->confname, wpa_s->parent->conf))
1732 wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
1733#endif /* CONFIG_NO_CONFIG_WRITE */
1734}
1735
1736
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001737static void p2p_go_configured(void *ctx, void *data)
1738{
1739 struct wpa_supplicant *wpa_s = ctx;
1740 struct p2p_go_neg_results *params = data;
1741 struct wpa_ssid *ssid;
Jouni Malinen75ecf522011-06-27 15:19:46 -07001742 int network_id = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001743
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08001744 wpa_s->ap_configured_cb = NULL;
1745 wpa_s->ap_configured_cb_ctx = NULL;
1746 wpa_s->ap_configured_cb_data = NULL;
1747 if (!wpa_s->go_params) {
1748 wpa_printf(MSG_ERROR,
1749 "P2P: p2p_go_configured() called with wpa_s->go_params == NULL");
1750 return;
1751 }
1752
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001753 p2p_go_save_group_common_freqs(wpa_s, params);
1754 p2p_go_dump_common_freqs(wpa_s);
1755
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001756 ssid = wpa_s->current_ssid;
1757 if (ssid && ssid->mode == WPAS_MODE_P2P_GO) {
1758 wpa_printf(MSG_DEBUG, "P2P: Group setup without provisioning");
1759 if (wpa_s->global->p2p_group_formation == wpa_s)
1760 wpa_s->global->p2p_group_formation = NULL;
Dmitry Shmidt7f0b69e2014-07-28 10:35:20 -07001761 wpas_p2p_group_started(wpa_s, 1, ssid, ssid->frequency,
1762 params->passphrase[0] == '\0' ?
1763 params->psk : NULL,
1764 params->passphrase,
1765 wpa_s->global->p2p_dev_addr,
1766 params->persistent_group, "");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001767 wpa_s->group_formation_reported = 1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001768
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001769 if (wpa_s->parent->p2ps_method_config_any) {
1770 if (is_zero_ether_addr(wpa_s->parent->p2ps_join_addr)) {
1771 wpa_dbg(wpa_s, MSG_DEBUG,
1772 "P2PS: Setting default PIN for ANY");
1773 wpa_supplicant_ap_wps_pin(wpa_s, NULL,
1774 "12345670", NULL, 0,
1775 0);
1776 } else {
1777 wpa_dbg(wpa_s, MSG_DEBUG,
1778 "P2PS: Setting default PIN for " MACSTR,
1779 MAC2STR(wpa_s->parent->p2ps_join_addr));
1780 wpa_supplicant_ap_wps_pin(
1781 wpa_s, wpa_s->parent->p2ps_join_addr,
1782 "12345670", NULL, 0, 0);
1783 }
1784 wpa_s->parent->p2ps_method_config_any = 0;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001785 }
1786
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001787 os_get_reltime(&wpa_s->global->p2p_go_wait_client);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001788 if (params->persistent_group) {
Jouni Malinen75ecf522011-06-27 15:19:46 -07001789 network_id = wpas_p2p_store_persistent_group(
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001790 wpa_s->parent, ssid,
Dmitry Shmidt497c1d52011-07-21 15:19:46 -07001791 wpa_s->global->p2p_dev_addr);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001792 wpas_p2p_add_psk_list(wpa_s, ssid);
1793 }
Jouni Malinen75ecf522011-06-27 15:19:46 -07001794 if (network_id < 0)
1795 network_id = ssid->id;
1796 wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001797 wpas_p2p_cross_connect_setup(wpa_s);
1798 wpas_p2p_set_group_idle_timeout(wpa_s);
Dmitry Shmidt56052862013-10-04 10:23:25 -07001799
1800 if (wpa_s->p2p_first_connection_timeout) {
1801 wpa_dbg(wpa_s, MSG_DEBUG,
1802 "P2P: Start group formation timeout of %d seconds until first data connection on GO",
1803 wpa_s->p2p_first_connection_timeout);
1804 wpa_s->p2p_go_group_formation_completed = 0;
1805 wpa_s->global->p2p_group_formation = wpa_s;
1806 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
1807 wpa_s->parent, NULL);
1808 eloop_register_timeout(
1809 wpa_s->p2p_first_connection_timeout, 0,
1810 wpas_p2p_group_formation_timeout,
1811 wpa_s->parent, NULL);
1812 }
1813
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001814 return;
1815 }
1816
1817 wpa_printf(MSG_DEBUG, "P2P: Setting up WPS for GO provisioning");
1818 if (wpa_supplicant_ap_mac_addr_filter(wpa_s,
1819 params->peer_interface_addr)) {
1820 wpa_printf(MSG_DEBUG, "P2P: Failed to setup MAC address "
1821 "filtering");
1822 return;
1823 }
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001824 if (params->wps_method == WPS_PBC) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001825 wpa_supplicant_ap_wps_pbc(wpa_s, params->peer_interface_addr,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001826 params->peer_device_addr);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001827#ifdef CONFIG_WPS_NFC
1828 } else if (params->wps_method == WPS_NFC) {
1829 if (wpa_s->parent->p2p_oob_dev_pw_id !=
1830 DEV_PW_NFC_CONNECTION_HANDOVER &&
1831 !wpa_s->parent->p2p_oob_dev_pw) {
1832 wpa_printf(MSG_DEBUG, "P2P: No NFC Dev Pw known");
1833 return;
1834 }
1835 wpas_ap_wps_add_nfc_pw(
1836 wpa_s, wpa_s->parent->p2p_oob_dev_pw_id,
1837 wpa_s->parent->p2p_oob_dev_pw,
1838 wpa_s->parent->p2p_peer_oob_pk_hash_known ?
1839 wpa_s->parent->p2p_peer_oob_pubkey_hash : NULL);
1840#endif /* CONFIG_WPS_NFC */
1841 } else if (wpa_s->p2p_pin[0])
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001842 wpa_supplicant_ap_wps_pin(wpa_s, params->peer_interface_addr,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001843 wpa_s->p2p_pin, NULL, 0, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001844 os_free(wpa_s->go_params);
1845 wpa_s->go_params = NULL;
1846}
1847
1848
1849static void wpas_start_wps_go(struct wpa_supplicant *wpa_s,
1850 struct p2p_go_neg_results *params,
1851 int group_formation)
1852{
1853 struct wpa_ssid *ssid;
1854
Dmitry Shmidtaa532512012-09-24 10:35:31 -07001855 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Starting GO");
1856 if (wpas_copy_go_neg_results(wpa_s, params) < 0) {
1857 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not copy GO Negotiation "
1858 "results");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001859 return;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07001860 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001861
1862 ssid = wpa_config_add_network(wpa_s->conf);
Dmitry Shmidtaa532512012-09-24 10:35:31 -07001863 if (ssid == NULL) {
1864 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not add network for GO");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001865 return;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07001866 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001867
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001868 wpa_s->show_group_started = 0;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001869 wpa_s->p2p_go_group_formation_completed = 0;
1870 wpa_s->group_formation_reported = 0;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001871 os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001872
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001873 wpa_config_set_network_defaults(ssid);
1874 ssid->temporary = 1;
1875 ssid->p2p_group = 1;
1876 ssid->p2p_persistent_group = params->persistent_group;
1877 ssid->mode = group_formation ? WPAS_MODE_P2P_GROUP_FORMATION :
1878 WPAS_MODE_P2P_GO;
1879 ssid->frequency = params->freq;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001880 ssid->ht40 = params->ht40;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07001881 ssid->vht = params->vht;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08001882 ssid->max_oper_chwidth = params->max_oper_chwidth;
1883 ssid->vht_center_freq2 = params->vht_center_freq2;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001884 ssid->ssid = os_zalloc(params->ssid_len + 1);
1885 if (ssid->ssid) {
1886 os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
1887 ssid->ssid_len = params->ssid_len;
1888 }
1889 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
1890 ssid->key_mgmt = WPA_KEY_MGMT_PSK;
1891 ssid->proto = WPA_PROTO_RSN;
1892 ssid->pairwise_cipher = WPA_CIPHER_CCMP;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001893 ssid->group_cipher = WPA_CIPHER_CCMP;
1894 if (params->freq > 56160) {
1895 /*
1896 * Enable GCMP instead of CCMP as pairwise_cipher and
1897 * group_cipher in 60 GHz.
1898 */
1899 ssid->pairwise_cipher = WPA_CIPHER_GCMP;
1900 ssid->group_cipher = WPA_CIPHER_GCMP;
1901 }
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001902 if (os_strlen(params->passphrase) > 0) {
1903 ssid->passphrase = os_strdup(params->passphrase);
1904 if (ssid->passphrase == NULL) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001905 wpa_msg_global(wpa_s, MSG_ERROR,
1906 "P2P: Failed to copy passphrase for GO");
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001907 wpa_config_remove_network(wpa_s->conf, ssid->id);
1908 return;
1909 }
1910 } else
1911 ssid->passphrase = NULL;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001912 ssid->psk_set = params->psk_set;
1913 if (ssid->psk_set)
1914 os_memcpy(ssid->psk, params->psk, sizeof(ssid->psk));
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001915 else if (ssid->passphrase)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001916 wpa_config_update_psk(ssid);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001917 ssid->ap_max_inactivity = wpa_s->parent->conf->p2p_go_max_inactivity;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001918
1919 wpa_s->ap_configured_cb = p2p_go_configured;
1920 wpa_s->ap_configured_cb_ctx = wpa_s;
1921 wpa_s->ap_configured_cb_data = wpa_s->go_params;
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07001922 wpa_s->scan_req = NORMAL_SCAN_REQ;
Jouni Malinen75ecf522011-06-27 15:19:46 -07001923 wpa_s->connect_without_scan = ssid;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001924 wpa_s->reassociate = 1;
1925 wpa_s->disconnected = 0;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07001926 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Request scan (that will be skipped) to "
1927 "start GO)");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001928 wpa_supplicant_req_scan(wpa_s, 0, 0);
1929}
1930
1931
1932static void wpas_p2p_clone_config(struct wpa_supplicant *dst,
1933 const struct wpa_supplicant *src)
1934{
1935 struct wpa_config *d;
1936 const struct wpa_config *s;
1937
1938 d = dst->conf;
1939 s = src->conf;
1940
1941#define C(n) if (s->n) d->n = os_strdup(s->n)
1942 C(device_name);
1943 C(manufacturer);
1944 C(model_name);
1945 C(model_number);
1946 C(serial_number);
1947 C(config_methods);
1948#undef C
1949
1950 os_memcpy(d->device_type, s->device_type, WPS_DEV_TYPE_LEN);
1951 os_memcpy(d->sec_device_type, s->sec_device_type,
1952 sizeof(d->sec_device_type));
1953 d->num_sec_device_types = s->num_sec_device_types;
1954
1955 d->p2p_group_idle = s->p2p_group_idle;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001956 d->p2p_go_freq_change_policy = s->p2p_go_freq_change_policy;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001957 d->p2p_intra_bss = s->p2p_intra_bss;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001958 d->persistent_reconnect = s->persistent_reconnect;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001959 d->max_num_sta = s->max_num_sta;
1960 d->pbc_in_m1 = s->pbc_in_m1;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07001961 d->ignore_old_scan_res = s->ignore_old_scan_res;
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07001962 d->beacon_int = s->beacon_int;
Dmitry Shmidt18463232014-01-24 12:29:41 -08001963 d->dtim_period = s->dtim_period;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001964 d->p2p_go_ctwindow = s->p2p_go_ctwindow;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07001965 d->disassoc_low_ack = s->disassoc_low_ack;
Dmitry Shmidt96571392013-10-14 12:54:46 -07001966 d->disable_scan_offload = s->disable_scan_offload;
Dmitry Shmidt807291d2015-01-27 13:40:23 -08001967 d->passive_scan = s->passive_scan;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001968
1969 if (s->wps_nfc_dh_privkey && s->wps_nfc_dh_pubkey) {
1970 d->wps_nfc_dh_privkey = wpabuf_dup(s->wps_nfc_dh_privkey);
1971 d->wps_nfc_dh_pubkey = wpabuf_dup(s->wps_nfc_dh_pubkey);
1972 }
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07001973 d->p2p_cli_probe = s->p2p_cli_probe;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001974}
1975
1976
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001977static void wpas_p2p_get_group_ifname(struct wpa_supplicant *wpa_s,
1978 char *ifname, size_t len)
1979{
1980 char *ifname_ptr = wpa_s->ifname;
1981
1982 if (os_strncmp(wpa_s->ifname, P2P_MGMT_DEVICE_PREFIX,
1983 os_strlen(P2P_MGMT_DEVICE_PREFIX)) == 0) {
1984 ifname_ptr = os_strrchr(wpa_s->ifname, '-') + 1;
1985 }
1986
1987 os_snprintf(ifname, len, "p2p-%s-%d", ifname_ptr, wpa_s->p2p_group_idx);
1988 if (os_strlen(ifname) >= IFNAMSIZ &&
1989 os_strlen(wpa_s->ifname) < IFNAMSIZ) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001990 int res;
1991
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001992 /* Try to avoid going over the IFNAMSIZ length limit */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001993 res = os_snprintf(ifname, len, "p2p-%d", wpa_s->p2p_group_idx);
1994 if (os_snprintf_error(len, res) && len)
1995 ifname[len - 1] = '\0';
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001996 }
1997}
1998
1999
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002000static int wpas_p2p_add_group_interface(struct wpa_supplicant *wpa_s,
2001 enum wpa_driver_if_type type)
2002{
2003 char ifname[120], force_ifname[120];
2004
2005 if (wpa_s->pending_interface_name[0]) {
2006 wpa_printf(MSG_DEBUG, "P2P: Pending virtual interface exists "
2007 "- skip creation of a new one");
2008 if (is_zero_ether_addr(wpa_s->pending_interface_addr)) {
2009 wpa_printf(MSG_DEBUG, "P2P: Pending virtual address "
2010 "unknown?! ifname='%s'",
2011 wpa_s->pending_interface_name);
2012 return -1;
2013 }
2014 return 0;
2015 }
2016
Dmitry Shmidt34af3062013-07-11 10:46:32 -07002017 wpas_p2p_get_group_ifname(wpa_s, ifname, sizeof(ifname));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002018 force_ifname[0] = '\0';
2019
2020 wpa_printf(MSG_DEBUG, "P2P: Create a new interface %s for the group",
2021 ifname);
2022 wpa_s->p2p_group_idx++;
2023
2024 wpa_s->pending_interface_type = type;
2025 if (wpa_drv_if_add(wpa_s, type, ifname, NULL, NULL, force_ifname,
2026 wpa_s->pending_interface_addr, NULL) < 0) {
2027 wpa_printf(MSG_ERROR, "P2P: Failed to create new group "
2028 "interface");
2029 return -1;
2030 }
2031
2032 if (force_ifname[0]) {
2033 wpa_printf(MSG_DEBUG, "P2P: Driver forced interface name %s",
2034 force_ifname);
2035 os_strlcpy(wpa_s->pending_interface_name, force_ifname,
2036 sizeof(wpa_s->pending_interface_name));
2037 } else
2038 os_strlcpy(wpa_s->pending_interface_name, ifname,
2039 sizeof(wpa_s->pending_interface_name));
2040 wpa_printf(MSG_DEBUG, "P2P: Created pending virtual interface %s addr "
2041 MACSTR, wpa_s->pending_interface_name,
2042 MAC2STR(wpa_s->pending_interface_addr));
2043
2044 return 0;
2045}
2046
2047
2048static void wpas_p2p_remove_pending_group_interface(
2049 struct wpa_supplicant *wpa_s)
2050{
2051 if (!wpa_s->pending_interface_name[0] ||
2052 is_zero_ether_addr(wpa_s->pending_interface_addr))
2053 return; /* No pending virtual interface */
2054
2055 wpa_printf(MSG_DEBUG, "P2P: Removing pending group interface %s",
2056 wpa_s->pending_interface_name);
2057 wpa_drv_if_remove(wpa_s, wpa_s->pending_interface_type,
2058 wpa_s->pending_interface_name);
2059 os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
2060 wpa_s->pending_interface_name[0] = '\0';
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002061 wpa_s->global->pending_group_iface_for_p2ps = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002062}
2063
2064
2065static struct wpa_supplicant *
2066wpas_p2p_init_group_interface(struct wpa_supplicant *wpa_s, int go)
2067{
2068 struct wpa_interface iface;
2069 struct wpa_supplicant *group_wpa_s;
2070
2071 if (!wpa_s->pending_interface_name[0]) {
2072 wpa_printf(MSG_ERROR, "P2P: No pending group interface");
2073 if (!wpas_p2p_create_iface(wpa_s))
2074 return NULL;
2075 /*
2076 * Something has forced us to remove the pending interface; try
2077 * to create a new one and hope for the best that we will get
2078 * the same local address.
2079 */
2080 if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
2081 WPA_IF_P2P_CLIENT) < 0)
2082 return NULL;
2083 }
2084
2085 os_memset(&iface, 0, sizeof(iface));
2086 iface.ifname = wpa_s->pending_interface_name;
2087 iface.driver = wpa_s->driver->name;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07002088 if (wpa_s->conf->ctrl_interface == NULL &&
2089 wpa_s->parent != wpa_s &&
2090 wpa_s->p2p_mgmt &&
2091 (wpa_s->drv_flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE))
2092 iface.ctrl_interface = wpa_s->parent->conf->ctrl_interface;
2093 else
2094 iface.ctrl_interface = wpa_s->conf->ctrl_interface;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002095 iface.driver_param = wpa_s->conf->driver_param;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08002096 group_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface, wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002097 if (group_wpa_s == NULL) {
2098 wpa_printf(MSG_ERROR, "P2P: Failed to create new "
2099 "wpa_supplicant interface");
2100 return NULL;
2101 }
2102 wpa_s->pending_interface_name[0] = '\0';
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002103 group_wpa_s->p2p_group_interface = go ? P2P_GROUP_INTERFACE_GO :
2104 P2P_GROUP_INTERFACE_CLIENT;
2105 wpa_s->global->p2p_group_formation = group_wpa_s;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002106 wpa_s->global->pending_group_iface_for_p2ps = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002107
2108 wpas_p2p_clone_config(group_wpa_s, wpa_s);
2109
2110 return group_wpa_s;
2111}
2112
2113
2114static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
2115 void *timeout_ctx)
2116{
2117 struct wpa_supplicant *wpa_s = eloop_ctx;
2118 wpa_printf(MSG_DEBUG, "P2P: Group Formation timed out");
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07002119 wpas_p2p_group_formation_failed(wpa_s, 0);
Dmitry Shmidt34af3062013-07-11 10:46:32 -07002120}
2121
2122
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07002123static void wpas_p2p_group_formation_failed(struct wpa_supplicant *wpa_s,
2124 int already_deleted)
Dmitry Shmidt34af3062013-07-11 10:46:32 -07002125{
2126 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
2127 wpa_s->parent, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002128 if (wpa_s->global->p2p)
2129 p2p_group_formation_failed(wpa_s->global->p2p);
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07002130 wpas_group_formation_completed(wpa_s, 0, already_deleted);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002131}
2132
2133
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002134static void wpas_p2p_grpform_fail_after_wps(struct wpa_supplicant *wpa_s)
2135{
2136 wpa_printf(MSG_DEBUG, "P2P: Reject group formation due to WPS provisioning failure");
2137 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
2138 wpa_s->parent, NULL);
2139 eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
2140 wpa_s->parent, NULL);
2141 wpa_s->global->p2p_fail_on_wps_complete = 0;
2142}
2143
2144
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07002145void wpas_p2p_ap_setup_failed(struct wpa_supplicant *wpa_s)
2146{
2147 if (wpa_s->global->p2p_group_formation != wpa_s)
2148 return;
2149 /* Speed up group formation timeout since this cannot succeed */
2150 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
2151 wpa_s->parent, NULL);
2152 eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
2153 wpa_s->parent, NULL);
2154}
2155
2156
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002157static void wpas_go_neg_completed(void *ctx, struct p2p_go_neg_results *res)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002158{
2159 struct wpa_supplicant *wpa_s = ctx;
2160
2161 if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
2162 wpa_drv_cancel_remain_on_channel(wpa_s);
2163 wpa_s->off_channel_freq = 0;
2164 wpa_s->roc_waiting_drv_freq = 0;
2165 }
2166
2167 if (res->status) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002168 wpa_msg_global(wpa_s, MSG_INFO,
2169 P2P_EVENT_GO_NEG_FAILURE "status=%d",
2170 res->status);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002171 wpas_notify_p2p_go_neg_completed(wpa_s, res);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002172 wpas_p2p_remove_pending_group_interface(wpa_s);
2173 return;
2174 }
2175
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002176 if (!res->role_go) {
2177 /* Inform driver of the operating channel of GO. */
2178 wpa_drv_set_prob_oper_freq(wpa_s, res->freq);
2179 }
2180
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002181 if (wpa_s->p2p_go_ht40)
2182 res->ht40 = 1;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07002183 if (wpa_s->p2p_go_vht)
2184 res->vht = 1;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08002185 res->max_oper_chwidth = wpa_s->p2p_go_max_oper_chwidth;
2186 res->vht_center_freq2 = wpa_s->p2p_go_vht_center_freq2;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002187
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07002188 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_SUCCESS "role=%s "
2189 "freq=%d ht40=%d peer_dev=" MACSTR " peer_iface=" MACSTR
2190 " wps_method=%s",
2191 res->role_go ? "GO" : "client", res->freq, res->ht40,
2192 MAC2STR(res->peer_device_addr),
2193 MAC2STR(res->peer_interface_addr),
2194 p2p_wps_method_text(res->wps_method));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002195 wpas_notify_p2p_go_neg_completed(wpa_s, res);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002196
Dmitry Shmidt04949592012-07-19 12:16:46 -07002197 if (res->role_go && wpa_s->p2p_persistent_id >= 0) {
2198 struct wpa_ssid *ssid;
2199 ssid = wpa_config_get_network(wpa_s->conf,
2200 wpa_s->p2p_persistent_id);
2201 if (ssid && ssid->disabled == 2 &&
2202 ssid->mode == WPAS_MODE_P2P_GO && ssid->passphrase) {
2203 size_t len = os_strlen(ssid->passphrase);
2204 wpa_printf(MSG_DEBUG, "P2P: Override passphrase based "
2205 "on requested persistent group");
2206 os_memcpy(res->passphrase, ssid->passphrase, len);
2207 res->passphrase[len] = '\0';
2208 }
2209 }
2210
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002211 if (wpa_s->create_p2p_iface) {
2212 struct wpa_supplicant *group_wpa_s =
2213 wpas_p2p_init_group_interface(wpa_s, res->role_go);
2214 if (group_wpa_s == NULL) {
2215 wpas_p2p_remove_pending_group_interface(wpa_s);
Dmitry Shmidtd11f0192014-03-24 12:09:47 -07002216 eloop_cancel_timeout(wpas_p2p_long_listen_timeout,
2217 wpa_s, NULL);
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07002218 wpas_p2p_group_formation_failed(wpa_s, 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002219 return;
2220 }
2221 if (group_wpa_s != wpa_s) {
2222 os_memcpy(group_wpa_s->p2p_pin, wpa_s->p2p_pin,
2223 sizeof(group_wpa_s->p2p_pin));
2224 group_wpa_s->p2p_wps_method = wpa_s->p2p_wps_method;
2225 }
2226 os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
2227 wpa_s->pending_interface_name[0] = '\0';
2228 group_wpa_s->p2p_in_provisioning = 1;
2229
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002230 if (res->role_go) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002231 wpas_start_wps_go(group_wpa_s, res, 1);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002232 } else {
2233 os_get_reltime(&group_wpa_s->scan_min_time);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002234 wpas_start_wps_enrollee(group_wpa_s, res);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002235 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002236 } else {
2237 wpa_s->p2p_in_provisioning = 1;
2238 wpa_s->global->p2p_group_formation = wpa_s;
2239
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002240 if (res->role_go) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002241 wpas_start_wps_go(wpa_s, res, 1);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002242 } else {
2243 os_get_reltime(&wpa_s->scan_min_time);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002244 wpas_start_wps_enrollee(ctx, res);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002245 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002246 }
2247
2248 wpa_s->p2p_long_listen = 0;
2249 eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
2250
2251 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
2252 eloop_register_timeout(15 + res->peer_config_timeout / 100,
2253 (res->peer_config_timeout % 100) * 10000,
2254 wpas_p2p_group_formation_timeout, wpa_s, NULL);
2255}
2256
2257
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07002258static void wpas_go_neg_req_rx(void *ctx, const u8 *src, u16 dev_passwd_id,
2259 u8 go_intent)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002260{
2261 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002262 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_REQUEST MACSTR
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07002263 " dev_passwd_id=%u go_intent=%u", MAC2STR(src),
2264 dev_passwd_id, go_intent);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002265
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07002266 wpas_notify_p2p_go_neg_req(wpa_s, src, dev_passwd_id, go_intent);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002267}
2268
2269
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002270static void wpas_dev_found(void *ctx, const u8 *addr,
2271 const struct p2p_peer_info *info,
2272 int new_device)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002273{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002274#ifndef CONFIG_NO_STDOUT_DEBUG
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002275 struct wpa_supplicant *wpa_s = ctx;
2276 char devtype[WPS_DEV_TYPE_BUFSIZE];
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08002277 char *wfd_dev_info_hex = NULL;
2278
Irfan Sheriff8367dc92012-09-09 17:08:19 -07002279#ifdef CONFIG_WIFI_DISPLAY
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08002280 wfd_dev_info_hex = wifi_display_subelem_hex(info->wfd_subelems,
2281 WFD_SUBELEM_DEVICE_INFO);
Irfan Sheriff8367dc92012-09-09 17:08:19 -07002282#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08002283
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002284 if (info->p2ps_instance) {
2285 char str[256];
2286 const u8 *buf = wpabuf_head(info->p2ps_instance);
2287 size_t len = wpabuf_len(info->p2ps_instance);
2288
2289 while (len) {
2290 u32 id;
2291 u16 methods;
2292 u8 str_len;
2293
2294 if (len < 4 + 2 + 1)
2295 break;
2296 id = WPA_GET_LE32(buf);
2297 buf += sizeof(u32);
2298 methods = WPA_GET_BE16(buf);
2299 buf += sizeof(u16);
2300 str_len = *buf++;
2301 if (str_len > len - 4 - 2 - 1)
2302 break;
2303 os_memcpy(str, buf, str_len);
2304 str[str_len] = '\0';
2305 buf += str_len;
2306 len -= str_len + sizeof(u32) + sizeof(u16) + sizeof(u8);
2307
2308 wpa_msg_global(wpa_s, MSG_INFO,
2309 P2P_EVENT_DEVICE_FOUND MACSTR
2310 " p2p_dev_addr=" MACSTR
2311 " pri_dev_type=%s name='%s'"
2312 " config_methods=0x%x"
2313 " dev_capab=0x%x"
2314 " group_capab=0x%x"
2315 " adv_id=%x asp_svc=%s%s",
2316 MAC2STR(addr),
2317 MAC2STR(info->p2p_device_addr),
2318 wps_dev_type_bin2str(
2319 info->pri_dev_type,
2320 devtype, sizeof(devtype)),
2321 info->device_name, methods,
2322 info->dev_capab, info->group_capab,
2323 id, str,
2324 info->vendor_elems ?
2325 " vendor_elems=1" : "");
2326 }
2327 goto done;
2328 }
2329
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002330 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_FOUND MACSTR
2331 " p2p_dev_addr=" MACSTR
2332 " pri_dev_type=%s name='%s' config_methods=0x%x "
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002333 "dev_capab=0x%x group_capab=0x%x%s%s%s new=%d",
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002334 MAC2STR(addr), MAC2STR(info->p2p_device_addr),
2335 wps_dev_type_bin2str(info->pri_dev_type, devtype,
2336 sizeof(devtype)),
2337 info->device_name, info->config_methods,
2338 info->dev_capab, info->group_capab,
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08002339 wfd_dev_info_hex ? " wfd_dev_info=0x" : "",
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07002340 wfd_dev_info_hex ? wfd_dev_info_hex : "",
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002341 info->vendor_elems ? " vendor_elems=1" : "",
2342 new_device);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002343
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002344done:
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08002345 os_free(wfd_dev_info_hex);
Dmitry Shmidt97672262014-02-03 13:02:54 -08002346#endif /* CONFIG_NO_STDOUT_DEBUG */
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08002347
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002348 wpas_notify_p2p_device_found(ctx, info->p2p_device_addr, new_device);
2349}
2350
2351
2352static void wpas_dev_lost(void *ctx, const u8 *dev_addr)
2353{
2354 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002355
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002356 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_LOST
2357 "p2p_dev_addr=" MACSTR, MAC2STR(dev_addr));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002358
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002359 wpas_notify_p2p_device_lost(wpa_s, dev_addr);
2360}
2361
2362
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002363static void wpas_find_stopped(void *ctx)
2364{
2365 struct wpa_supplicant *wpa_s = ctx;
2366 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_FIND_STOPPED);
Dmitry Shmidt8bd70b72015-05-26 16:02:19 -07002367 wpas_notify_p2p_find_stopped(wpa_s);
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002368}
2369
2370
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002371struct wpas_p2p_listen_work {
2372 unsigned int freq;
2373 unsigned int duration;
2374 struct wpabuf *probe_resp_ie;
2375};
2376
2377
2378static void wpas_p2p_listen_work_free(struct wpas_p2p_listen_work *lwork)
2379{
2380 if (lwork == NULL)
2381 return;
2382 wpabuf_free(lwork->probe_resp_ie);
2383 os_free(lwork);
2384}
2385
2386
2387static void wpas_p2p_listen_work_done(struct wpa_supplicant *wpa_s)
2388{
2389 struct wpas_p2p_listen_work *lwork;
2390
2391 if (!wpa_s->p2p_listen_work)
2392 return;
2393
2394 lwork = wpa_s->p2p_listen_work->ctx;
2395 wpas_p2p_listen_work_free(lwork);
2396 radio_work_done(wpa_s->p2p_listen_work);
2397 wpa_s->p2p_listen_work = NULL;
2398}
2399
2400
2401static void wpas_start_listen_cb(struct wpa_radio_work *work, int deinit)
2402{
2403 struct wpa_supplicant *wpa_s = work->wpa_s;
2404 struct wpas_p2p_listen_work *lwork = work->ctx;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002405 unsigned int duration;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002406
2407 if (deinit) {
Dmitry Shmidtbd14a572014-02-18 10:33:49 -08002408 if (work->started) {
2409 wpa_s->p2p_listen_work = NULL;
2410 wpas_stop_listen(wpa_s);
2411 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002412 wpas_p2p_listen_work_free(lwork);
2413 return;
2414 }
2415
2416 wpa_s->p2p_listen_work = work;
2417
2418 wpa_drv_set_ap_wps_ie(wpa_s, NULL, lwork->probe_resp_ie, NULL);
2419
2420 if (wpa_drv_probe_req_report(wpa_s, 1) < 0) {
2421 wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver to "
2422 "report received Probe Request frames");
2423 wpas_p2p_listen_work_done(wpa_s);
2424 return;
2425 }
2426
2427 wpa_s->pending_listen_freq = lwork->freq;
2428 wpa_s->pending_listen_duration = lwork->duration;
2429
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002430 duration = lwork->duration;
2431#ifdef CONFIG_TESTING_OPTIONS
2432 if (wpa_s->extra_roc_dur) {
2433 wpa_printf(MSG_DEBUG, "TESTING: Increase ROC duration %u -> %u",
2434 duration, duration + wpa_s->extra_roc_dur);
2435 duration += wpa_s->extra_roc_dur;
2436 }
2437#endif /* CONFIG_TESTING_OPTIONS */
2438
2439 if (wpa_drv_remain_on_channel(wpa_s, lwork->freq, duration) < 0) {
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002440 wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver "
2441 "to remain on channel (%u MHz) for Listen "
2442 "state", lwork->freq);
2443 wpas_p2p_listen_work_done(wpa_s);
2444 wpa_s->pending_listen_freq = 0;
2445 return;
2446 }
2447 wpa_s->off_channel_freq = 0;
2448 wpa_s->roc_waiting_drv_freq = lwork->freq;
2449}
2450
2451
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002452static int wpas_start_listen(void *ctx, unsigned int freq,
2453 unsigned int duration,
2454 const struct wpabuf *probe_resp_ie)
2455{
2456 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002457 struct wpas_p2p_listen_work *lwork;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002458
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002459 if (wpa_s->p2p_listen_work) {
2460 wpa_printf(MSG_DEBUG, "P2P: Reject start_listen since p2p_listen_work already exists");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002461 return -1;
2462 }
2463
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002464 lwork = os_zalloc(sizeof(*lwork));
2465 if (lwork == NULL)
2466 return -1;
2467 lwork->freq = freq;
2468 lwork->duration = duration;
2469 if (probe_resp_ie) {
2470 lwork->probe_resp_ie = wpabuf_dup(probe_resp_ie);
2471 if (lwork->probe_resp_ie == NULL) {
2472 wpas_p2p_listen_work_free(lwork);
2473 return -1;
2474 }
2475 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002476
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002477 if (radio_add_work(wpa_s, freq, "p2p-listen", 0, wpas_start_listen_cb,
2478 lwork) < 0) {
2479 wpas_p2p_listen_work_free(lwork);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002480 return -1;
2481 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002482
2483 return 0;
2484}
2485
2486
2487static void wpas_stop_listen(void *ctx)
2488{
2489 struct wpa_supplicant *wpa_s = ctx;
2490 if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
2491 wpa_drv_cancel_remain_on_channel(wpa_s);
2492 wpa_s->off_channel_freq = 0;
2493 wpa_s->roc_waiting_drv_freq = 0;
2494 }
2495 wpa_drv_set_ap_wps_ie(wpa_s, NULL, NULL, NULL);
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07002496
2497 /*
2498 * Don't cancel Probe Request RX reporting for a connected P2P Client
2499 * handling Probe Request frames.
2500 */
2501 if (!wpa_s->p2p_cli_probe)
2502 wpa_drv_probe_req_report(wpa_s, 0);
2503
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002504 wpas_p2p_listen_work_done(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002505}
2506
2507
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07002508static int wpas_send_probe_resp(void *ctx, const struct wpabuf *buf,
2509 unsigned int freq)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002510{
2511 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07002512 return wpa_drv_send_mlme(wpa_s, wpabuf_head(buf), wpabuf_len(buf), 1,
2513 freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002514}
2515
2516
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002517static void wpas_prov_disc_local_display(struct wpa_supplicant *wpa_s,
2518 const u8 *peer, const char *params,
2519 unsigned int generated_pin)
2520{
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002521 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_SHOW_PIN MACSTR
2522 " %08d%s", MAC2STR(peer), generated_pin, params);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002523}
2524
2525
2526static void wpas_prov_disc_local_keypad(struct wpa_supplicant *wpa_s,
2527 const u8 *peer, const char *params)
2528{
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002529 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_ENTER_PIN MACSTR
2530 "%s", MAC2STR(peer), params);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002531}
2532
2533
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002534static void wpas_prov_disc_req(void *ctx, const u8 *peer, u16 config_methods,
2535 const u8 *dev_addr, const u8 *pri_dev_type,
2536 const char *dev_name, u16 supp_config_methods,
2537 u8 dev_capab, u8 group_capab, const u8 *group_id,
2538 size_t group_id_len)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002539{
2540 struct wpa_supplicant *wpa_s = ctx;
2541 char devtype[WPS_DEV_TYPE_BUFSIZE];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002542 char params[300];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002543 u8 empty_dev_type[8];
2544 unsigned int generated_pin = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002545 struct wpa_supplicant *group = NULL;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002546 int res;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002547
2548 if (group_id) {
2549 for (group = wpa_s->global->ifaces; group; group = group->next)
2550 {
2551 struct wpa_ssid *s = group->current_ssid;
2552 if (s != NULL &&
2553 s->mode == WPAS_MODE_P2P_GO &&
2554 group_id_len - ETH_ALEN == s->ssid_len &&
2555 os_memcmp(group_id + ETH_ALEN, s->ssid,
2556 s->ssid_len) == 0)
2557 break;
2558 }
2559 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002560
2561 if (pri_dev_type == NULL) {
2562 os_memset(empty_dev_type, 0, sizeof(empty_dev_type));
2563 pri_dev_type = empty_dev_type;
2564 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002565 res = os_snprintf(params, sizeof(params), " p2p_dev_addr=" MACSTR
2566 " pri_dev_type=%s name='%s' config_methods=0x%x "
2567 "dev_capab=0x%x group_capab=0x%x%s%s",
2568 MAC2STR(dev_addr),
2569 wps_dev_type_bin2str(pri_dev_type, devtype,
2570 sizeof(devtype)),
2571 dev_name, supp_config_methods, dev_capab, group_capab,
2572 group ? " group=" : "",
2573 group ? group->ifname : "");
2574 if (os_snprintf_error(sizeof(params), res))
2575 wpa_printf(MSG_DEBUG, "P2P: PD Request event truncated");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002576 params[sizeof(params) - 1] = '\0';
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08002577
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002578 if (config_methods & WPS_CONFIG_DISPLAY) {
2579 generated_pin = wps_generate_pin();
2580 wpas_prov_disc_local_display(wpa_s, peer, params,
2581 generated_pin);
2582 } else if (config_methods & WPS_CONFIG_KEYPAD)
2583 wpas_prov_disc_local_keypad(wpa_s, peer, params);
2584 else if (config_methods & WPS_CONFIG_PUSHBUTTON)
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002585 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_REQ
2586 MACSTR "%s", MAC2STR(peer), params);
Jouni Malinen75ecf522011-06-27 15:19:46 -07002587
2588 wpas_notify_p2p_provision_discovery(wpa_s, peer, 1 /* request */,
2589 P2P_PROV_DISC_SUCCESS,
2590 config_methods, generated_pin);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002591}
2592
2593
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002594static void wpas_prov_disc_resp(void *ctx, const u8 *peer, u16 config_methods)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002595{
2596 struct wpa_supplicant *wpa_s = ctx;
2597 unsigned int generated_pin = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002598 char params[20];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002599
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08002600 if (wpa_s->pending_pd_before_join &&
2601 (os_memcmp(peer, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
2602 os_memcmp(peer, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0)) {
2603 wpa_s->pending_pd_before_join = 0;
2604 wpa_printf(MSG_DEBUG, "P2P: Starting pending "
2605 "join-existing-group operation");
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08002606 wpas_p2p_join_start(wpa_s, 0, NULL, 0);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08002607 return;
2608 }
2609
Dmitry Shmidt04949592012-07-19 12:16:46 -07002610 if (wpa_s->pending_pd_use == AUTO_PD_JOIN ||
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002611 wpa_s->pending_pd_use == AUTO_PD_GO_NEG) {
2612 int res;
2613
2614 res = os_snprintf(params, sizeof(params), " peer_go=%d",
2615 wpa_s->pending_pd_use == AUTO_PD_JOIN);
2616 if (os_snprintf_error(sizeof(params), res))
2617 params[sizeof(params) - 1] = '\0';
2618 } else
Dmitry Shmidt04949592012-07-19 12:16:46 -07002619 params[0] = '\0';
2620
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002621 if (config_methods & WPS_CONFIG_DISPLAY)
Dmitry Shmidt04949592012-07-19 12:16:46 -07002622 wpas_prov_disc_local_keypad(wpa_s, peer, params);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002623 else if (config_methods & WPS_CONFIG_KEYPAD) {
2624 generated_pin = wps_generate_pin();
Dmitry Shmidt04949592012-07-19 12:16:46 -07002625 wpas_prov_disc_local_display(wpa_s, peer, params,
2626 generated_pin);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002627 } else if (config_methods & WPS_CONFIG_PUSHBUTTON)
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002628 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_RESP
2629 MACSTR "%s", MAC2STR(peer), params);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002630
Jouni Malinen75ecf522011-06-27 15:19:46 -07002631 wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
2632 P2P_PROV_DISC_SUCCESS,
2633 config_methods, generated_pin);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002634}
2635
2636
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002637static void wpas_prov_disc_fail(void *ctx, const u8 *peer,
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002638 enum p2p_prov_disc_status status,
2639 u32 adv_id, const u8 *adv_mac,
2640 const char *deferred_session_resp)
Jouni Malinen75ecf522011-06-27 15:19:46 -07002641{
2642 struct wpa_supplicant *wpa_s = ctx;
2643
Dmitry Shmidt04949592012-07-19 12:16:46 -07002644 if (wpa_s->p2p_fallback_to_go_neg) {
2645 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: PD for p2p_connect-auto "
2646 "failed - fall back to GO Negotiation");
Dmitry Shmidt7f656022015-02-25 14:36:37 -08002647 wpa_msg_global(wpa_s->parent, MSG_INFO,
2648 P2P_EVENT_FALLBACK_TO_GO_NEG
2649 "reason=PD-failed");
Dmitry Shmidt04949592012-07-19 12:16:46 -07002650 wpas_p2p_fallback_to_go_neg(wpa_s, 0);
2651 return;
2652 }
2653
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002654 if (status == P2P_PROV_DISC_TIMEOUT_JOIN) {
Dmitry Shmidt2b380482012-09-13 10:52:13 -07002655 wpa_s->pending_pd_before_join = 0;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002656 wpa_printf(MSG_DEBUG, "P2P: Starting pending "
2657 "join-existing-group operation (no ACK for PD "
2658 "Req attempts)");
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08002659 wpas_p2p_join_start(wpa_s, 0, NULL, 0);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002660 return;
Dmitry Shmidt2b380482012-09-13 10:52:13 -07002661 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002662
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002663 if (adv_id && adv_mac && deferred_session_resp) {
2664 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
2665 " p2p_dev_addr=" MACSTR " status=%d adv_id=%x"
2666 " deferred_session_resp='%s'",
2667 MAC2STR(peer), status, adv_id,
2668 deferred_session_resp);
2669 } else if (adv_id && adv_mac) {
2670 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
2671 " p2p_dev_addr=" MACSTR " status=%d adv_id=%x",
2672 MAC2STR(peer), status, adv_id);
2673 } else {
2674 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
2675 " p2p_dev_addr=" MACSTR " status=%d",
2676 MAC2STR(peer), status);
2677 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002678
Jouni Malinen75ecf522011-06-27 15:19:46 -07002679 wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
2680 status, 0, 0);
2681}
2682
2683
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002684static int freq_included(struct wpa_supplicant *wpa_s,
2685 const struct p2p_channels *channels,
2686 unsigned int freq)
Dmitry Shmidtf7e0a992013-05-23 11:03:10 -07002687{
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002688 if ((channels == NULL || p2p_channels_includes_freq(channels, freq)) &&
2689 wpas_p2p_go_is_peer_freq(wpa_s, freq))
2690 return 1;
2691 return 0;
2692}
Dmitry Shmidtf7e0a992013-05-23 11:03:10 -07002693
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002694
2695static void wpas_p2p_go_update_common_freqs(struct wpa_supplicant *wpa_s)
2696{
2697 unsigned int num = P2P_MAX_CHANNELS;
2698 int *common_freqs;
2699 int ret;
2700
2701 p2p_go_dump_common_freqs(wpa_s);
2702 common_freqs = os_calloc(num, sizeof(int));
2703 if (!common_freqs)
2704 return;
2705
2706 ret = p2p_group_get_common_freqs(wpa_s->p2p_group, common_freqs, &num);
2707 if (ret < 0) {
2708 wpa_dbg(wpa_s, MSG_DEBUG,
2709 "P2P: Failed to get group common freqs");
2710 os_free(common_freqs);
2711 return;
2712 }
2713
2714 os_free(wpa_s->p2p_group_common_freqs);
2715 wpa_s->p2p_group_common_freqs = common_freqs;
2716 wpa_s->p2p_group_common_freqs_num = num;
2717 p2p_go_dump_common_freqs(wpa_s);
2718}
2719
2720
2721/*
2722 * Check if the given frequency is one of the possible operating frequencies
2723 * set after the completion of the GO Negotiation.
2724 */
2725static int wpas_p2p_go_is_peer_freq(struct wpa_supplicant *wpa_s, int freq)
2726{
2727 unsigned int i;
2728
2729 p2p_go_dump_common_freqs(wpa_s);
2730
2731 /* assume no restrictions */
2732 if (!wpa_s->p2p_group_common_freqs_num)
2733 return 1;
2734
2735 for (i = 0; i < wpa_s->p2p_group_common_freqs_num; i++) {
2736 if (wpa_s->p2p_group_common_freqs[i] == freq)
2737 return 1;
2738 }
2739 return 0;
2740}
2741
2742
2743static int wpas_sta_check_ecsa(struct hostapd_data *hapd,
2744 struct sta_info *sta, void *ctx)
2745{
2746 int *ecsa_support = ctx;
2747
2748 *ecsa_support &= sta->ecsa_supported;
2749
2750 return 0;
2751}
2752
2753
2754/* Check if all the peers support eCSA */
2755static int wpas_p2p_go_clients_support_ecsa(struct wpa_supplicant *wpa_s)
2756{
2757 int ecsa_support = 1;
2758
2759 ap_for_each_sta(wpa_s->ap_iface->bss[0], wpas_sta_check_ecsa,
2760 &ecsa_support);
2761
2762 return ecsa_support;
Dmitry Shmidtf7e0a992013-05-23 11:03:10 -07002763}
2764
2765
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07002766/**
2767 * Pick the best frequency to use from all the currently used frequencies.
2768 */
2769static int wpas_p2p_pick_best_used_freq(struct wpa_supplicant *wpa_s,
2770 struct wpa_used_freq_data *freqs,
2771 unsigned int num)
2772{
2773 unsigned int i, c;
2774
2775 /* find a candidate freq that is supported by P2P */
2776 for (c = 0; c < num; c++)
2777 if (p2p_supported_freq(wpa_s->global->p2p, freqs[c].freq))
2778 break;
2779
2780 if (c == num)
2781 return 0;
2782
2783 /* once we have a candidate, try to find a 'better' one */
2784 for (i = c + 1; i < num; i++) {
2785 if (!p2p_supported_freq(wpa_s->global->p2p, freqs[i].freq))
2786 continue;
2787
2788 /*
2789 * 1. Infrastructure station interfaces have higher preference.
2790 * 2. P2P Clients have higher preference.
2791 * 3. All others.
2792 */
2793 if (freqs[i].flags & WPA_FREQ_USED_BY_INFRA_STATION) {
2794 c = i;
2795 break;
2796 }
2797
2798 if ((freqs[i].flags & WPA_FREQ_USED_BY_P2P_CLIENT))
2799 c = i;
2800 }
2801 return freqs[c].freq;
2802}
2803
2804
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002805static u8 wpas_invitation_process(void *ctx, const u8 *sa, const u8 *bssid,
2806 const u8 *go_dev_addr, const u8 *ssid,
2807 size_t ssid_len, int *go, u8 *group_bssid,
Dmitry Shmidtf7e0a992013-05-23 11:03:10 -07002808 int *force_freq, int persistent_group,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08002809 const struct p2p_channels *channels,
2810 int dev_pw_id)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002811{
2812 struct wpa_supplicant *wpa_s = ctx;
2813 struct wpa_ssid *s;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07002814 struct wpa_used_freq_data *freqs;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002815 struct wpa_supplicant *grp;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07002816 int best_freq;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002817
2818 if (!persistent_group) {
2819 wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
Dmitry Shmidt344abd32014-01-14 13:17:00 -08002820 " to join an active group (SSID: %s)",
2821 MAC2STR(sa), wpa_ssid_txt(ssid, ssid_len));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002822 if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
2823 (os_memcmp(go_dev_addr, wpa_s->p2p_auth_invite, ETH_ALEN)
2824 == 0 ||
2825 os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0)) {
2826 wpa_printf(MSG_DEBUG, "P2P: Accept previously "
2827 "authorized invitation");
2828 goto accept_inv;
2829 }
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08002830
2831#ifdef CONFIG_WPS_NFC
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002832 if (dev_pw_id >= 0 && wpa_s->p2p_nfc_tag_enabled &&
2833 dev_pw_id == wpa_s->p2p_oob_dev_pw_id) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08002834 wpa_printf(MSG_DEBUG, "P2P: Accept invitation based on local enabled NFC Tag");
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002835 wpa_s->p2p_wps_method = WPS_NFC;
2836 wpa_s->pending_join_wps_method = WPS_NFC;
2837 os_memcpy(wpa_s->pending_join_dev_addr,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08002838 go_dev_addr, ETH_ALEN);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002839 os_memcpy(wpa_s->pending_join_iface_addr,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08002840 bssid, ETH_ALEN);
2841 goto accept_inv;
2842 }
2843#endif /* CONFIG_WPS_NFC */
2844
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002845 /*
2846 * Do not accept the invitation automatically; notify user and
2847 * request approval.
2848 */
2849 return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
2850 }
2851
2852 grp = wpas_get_p2p_group(wpa_s, ssid, ssid_len, go);
2853 if (grp) {
2854 wpa_printf(MSG_DEBUG, "P2P: Accept invitation to already "
2855 "running persistent group");
2856 if (*go)
2857 os_memcpy(group_bssid, grp->own_addr, ETH_ALEN);
2858 goto accept_inv;
2859 }
2860
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08002861 if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
2862 os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0) {
2863 wpa_printf(MSG_DEBUG, "P2P: Accept previously initiated "
2864 "invitation to re-invoke a persistent group");
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07002865 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08002866 } else if (!wpa_s->conf->persistent_reconnect)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002867 return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
2868
2869 for (s = wpa_s->conf->ssid; s; s = s->next) {
2870 if (s->disabled == 2 &&
2871 os_memcmp(s->bssid, go_dev_addr, ETH_ALEN) == 0 &&
2872 s->ssid_len == ssid_len &&
2873 os_memcmp(ssid, s->ssid, ssid_len) == 0)
2874 break;
2875 }
2876
2877 if (!s) {
2878 wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
2879 " requested reinvocation of an unknown group",
2880 MAC2STR(sa));
2881 return P2P_SC_FAIL_UNKNOWN_GROUP;
2882 }
2883
2884 if (s->mode == WPAS_MODE_P2P_GO && !wpas_p2p_create_iface(wpa_s)) {
2885 *go = 1;
2886 if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
2887 wpa_printf(MSG_DEBUG, "P2P: The only available "
2888 "interface is already in use - reject "
2889 "invitation");
2890 return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
2891 }
2892 os_memcpy(group_bssid, wpa_s->own_addr, ETH_ALEN);
2893 } else if (s->mode == WPAS_MODE_P2P_GO) {
2894 *go = 1;
2895 if (wpas_p2p_add_group_interface(wpa_s, WPA_IF_P2P_GO) < 0)
2896 {
2897 wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
2898 "interface address for the group");
2899 return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
2900 }
2901 os_memcpy(group_bssid, wpa_s->pending_interface_addr,
2902 ETH_ALEN);
2903 }
2904
2905accept_inv:
Dmitry Shmidt700a1372013-03-15 14:14:44 -07002906 wpas_p2p_set_own_freq_preference(wpa_s, 0);
2907
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07002908 best_freq = 0;
2909 freqs = os_calloc(wpa_s->num_multichan_concurrent,
2910 sizeof(struct wpa_used_freq_data));
2911 if (freqs) {
2912 int num_channels = wpa_s->num_multichan_concurrent;
2913 int num = wpas_p2p_valid_oper_freqs(wpa_s, freqs, num_channels);
2914 best_freq = wpas_p2p_pick_best_used_freq(wpa_s, freqs, num);
2915 os_free(freqs);
2916 }
2917
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07002918 /* Get one of the frequencies currently in use */
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07002919 if (best_freq > 0) {
Dmitry Shmidta0d265f2013-11-19 13:13:41 -08002920 wpa_printf(MSG_DEBUG, "P2P: Trying to prefer a channel already used by one of the interfaces");
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07002921 wpas_p2p_set_own_freq_preference(wpa_s, best_freq);
Dmitry Shmidta0d265f2013-11-19 13:13:41 -08002922
2923 if (wpa_s->num_multichan_concurrent < 2 ||
2924 wpas_p2p_num_unused_channels(wpa_s) < 1) {
2925 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 -07002926 *force_freq = best_freq;
Dmitry Shmidta0d265f2013-11-19 13:13:41 -08002927 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002928 }
2929
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07002930 if (*force_freq > 0 && wpa_s->num_multichan_concurrent > 1 &&
2931 wpas_p2p_num_unused_channels(wpa_s) > 0) {
Dmitry Shmidtf7e0a992013-05-23 11:03:10 -07002932 if (*go == 0) {
2933 /* We are the client */
2934 wpa_printf(MSG_DEBUG, "P2P: Peer was found to be "
2935 "running a GO but we are capable of MCC, "
2936 "figure out the best channel to use");
2937 *force_freq = 0;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002938 } else if (!freq_included(wpa_s, channels, *force_freq)) {
Dmitry Shmidtf7e0a992013-05-23 11:03:10 -07002939 /* We are the GO, and *force_freq is not in the
2940 * intersection */
2941 wpa_printf(MSG_DEBUG, "P2P: Forced GO freq %d MHz not "
2942 "in intersection but we are capable of MCC, "
2943 "figure out the best channel to use",
2944 *force_freq);
2945 *force_freq = 0;
2946 }
2947 }
2948
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002949 return P2P_SC_SUCCESS;
2950}
2951
2952
2953static void wpas_invitation_received(void *ctx, const u8 *sa, const u8 *bssid,
2954 const u8 *ssid, size_t ssid_len,
2955 const u8 *go_dev_addr, u8 status,
2956 int op_freq)
2957{
2958 struct wpa_supplicant *wpa_s = ctx;
2959 struct wpa_ssid *s;
2960
2961 for (s = wpa_s->conf->ssid; s; s = s->next) {
2962 if (s->disabled == 2 &&
2963 s->ssid_len == ssid_len &&
2964 os_memcmp(ssid, s->ssid, ssid_len) == 0)
2965 break;
2966 }
2967
2968 if (status == P2P_SC_SUCCESS) {
2969 wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
Dmitry Shmidt344abd32014-01-14 13:17:00 -08002970 " was accepted; op_freq=%d MHz, SSID=%s",
2971 MAC2STR(sa), op_freq, wpa_ssid_txt(ssid, ssid_len));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002972 if (s) {
Dmitry Shmidt91c40cd2012-09-25 14:23:53 -07002973 int go = s->mode == WPAS_MODE_P2P_GO;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002974 wpas_p2p_group_add_persistent(
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08002975 wpa_s, s, go, 0, op_freq, 0, 0, 0, 0, NULL,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002976 go ? P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE : 0,
2977 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002978 } else if (bssid) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002979 wpa_s->user_initiated_pd = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002980 wpas_p2p_join(wpa_s, bssid, go_dev_addr,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08002981 wpa_s->p2p_wps_method, 0, op_freq,
Dmitry Shmidt344abd32014-01-14 13:17:00 -08002982 ssid, ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002983 }
2984 return;
2985 }
2986
2987 if (status != P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
2988 wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
2989 " was rejected (status %u)", MAC2STR(sa), status);
2990 return;
2991 }
2992
2993 if (!s) {
2994 if (bssid) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07002995 wpa_msg_global(wpa_s, MSG_INFO,
2996 P2P_EVENT_INVITATION_RECEIVED
2997 "sa=" MACSTR " go_dev_addr=" MACSTR
2998 " bssid=" MACSTR " unknown-network",
2999 MAC2STR(sa), MAC2STR(go_dev_addr),
3000 MAC2STR(bssid));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003001 } else {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07003002 wpa_msg_global(wpa_s, MSG_INFO,
3003 P2P_EVENT_INVITATION_RECEIVED
3004 "sa=" MACSTR " go_dev_addr=" MACSTR
3005 " unknown-network",
3006 MAC2STR(sa), MAC2STR(go_dev_addr));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003007 }
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003008 wpas_notify_p2p_invitation_received(wpa_s, sa, go_dev_addr,
3009 bssid, 0, op_freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003010 return;
3011 }
3012
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08003013 if (s->mode == WPAS_MODE_P2P_GO && op_freq) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07003014 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
3015 "sa=" MACSTR " persistent=%d freq=%d",
3016 MAC2STR(sa), s->id, op_freq);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08003017 } else {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07003018 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
3019 "sa=" MACSTR " persistent=%d",
3020 MAC2STR(sa), s->id);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08003021 }
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003022 wpas_notify_p2p_invitation_received(wpa_s, sa, go_dev_addr, bssid,
3023 s->id, op_freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003024}
3025
3026
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003027static void wpas_remove_persistent_peer(struct wpa_supplicant *wpa_s,
3028 struct wpa_ssid *ssid,
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07003029 const u8 *peer, int inv)
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003030{
3031 size_t i;
Dmitry Shmidt8bd70b72015-05-26 16:02:19 -07003032 struct wpa_supplicant *p2p_wpa_s = wpa_s->global->p2p_init_wpa_s;
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003033
3034 if (ssid == NULL)
3035 return;
3036
3037 for (i = 0; ssid->p2p_client_list && i < ssid->num_p2p_clients; i++) {
Dmitry Shmidtff787d52015-01-12 13:01:47 -08003038 if (os_memcmp(ssid->p2p_client_list + i * 2 * ETH_ALEN, peer,
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003039 ETH_ALEN) == 0)
3040 break;
3041 }
Dmitry Shmidt6aa8ae42014-07-07 09:31:33 -07003042 if (i >= ssid->num_p2p_clients || !ssid->p2p_client_list) {
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003043 if (ssid->mode != WPAS_MODE_P2P_GO &&
3044 os_memcmp(ssid->bssid, peer, ETH_ALEN) == 0) {
3045 wpa_printf(MSG_DEBUG, "P2P: Remove persistent group %d "
3046 "due to invitation result", ssid->id);
3047 wpas_notify_network_removed(wpa_s, ssid);
3048 wpa_config_remove_network(wpa_s->conf, ssid->id);
3049 return;
3050 }
3051 return; /* Peer not found in client list */
3052 }
3053
3054 wpa_printf(MSG_DEBUG, "P2P: Remove peer " MACSTR " from persistent "
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07003055 "group %d client list%s",
3056 MAC2STR(peer), ssid->id,
3057 inv ? " due to invitation result" : "");
Dmitry Shmidtff787d52015-01-12 13:01:47 -08003058 os_memmove(ssid->p2p_client_list + i * 2 * ETH_ALEN,
3059 ssid->p2p_client_list + (i + 1) * 2 * ETH_ALEN,
3060 (ssid->num_p2p_clients - i - 1) * 2 * ETH_ALEN);
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003061 ssid->num_p2p_clients--;
Dmitry Shmidt8bd70b72015-05-26 16:02:19 -07003062 if (p2p_wpa_s->conf->update_config &&
3063 wpa_config_write(p2p_wpa_s->confname, p2p_wpa_s->conf))
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003064 wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003065}
3066
3067
3068static void wpas_remove_persistent_client(struct wpa_supplicant *wpa_s,
3069 const u8 *peer)
3070{
3071 struct wpa_ssid *ssid;
3072
3073 wpa_s = wpa_s->global->p2p_invite_group;
3074 if (wpa_s == NULL)
3075 return; /* No known invitation group */
3076 ssid = wpa_s->current_ssid;
3077 if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
3078 !ssid->p2p_persistent_group)
3079 return; /* Not operating as a GO in persistent group */
3080 ssid = wpas_p2p_get_persistent(wpa_s->parent, peer,
3081 ssid->ssid, ssid->ssid_len);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07003082 wpas_remove_persistent_peer(wpa_s, ssid, peer, 1);
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003083}
3084
3085
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08003086static void wpas_invitation_result(void *ctx, int status, const u8 *bssid,
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003087 const struct p2p_channels *channels,
Dmitry Shmidt15907092014-03-25 10:42:57 -07003088 const u8 *peer, int neg_freq,
3089 int peer_oper_freq)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003090{
3091 struct wpa_supplicant *wpa_s = ctx;
3092 struct wpa_ssid *ssid;
Dmitry Shmidt15907092014-03-25 10:42:57 -07003093 int freq;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003094
3095 if (bssid) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07003096 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
3097 "status=%d " MACSTR,
3098 status, MAC2STR(bssid));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003099 } else {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07003100 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
3101 "status=%d ", status);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003102 }
3103 wpas_notify_p2p_invitation_result(wpa_s, status, bssid);
3104
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003105 wpa_printf(MSG_DEBUG, "P2P: Invitation result - status=%d peer=" MACSTR,
3106 status, MAC2STR(peer));
3107 if (wpa_s->pending_invite_ssid_id == -1) {
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08003108 struct wpa_supplicant *group_if =
3109 wpa_s->global->p2p_invite_group;
3110
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003111 if (status == P2P_SC_FAIL_UNKNOWN_GROUP)
3112 wpas_remove_persistent_client(wpa_s, peer);
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08003113
3114 /*
3115 * Invitation to an active group. If this is successful and we
3116 * are the GO, set the client wait to postpone some concurrent
3117 * operations and to allow provisioning and connection to happen
3118 * more quickly.
3119 */
3120 if (status == P2P_SC_SUCCESS &&
3121 group_if && group_if->current_ssid &&
3122 group_if->current_ssid->mode == WPAS_MODE_P2P_GO) {
3123 os_get_reltime(&wpa_s->global->p2p_go_wait_client);
3124#ifdef CONFIG_TESTING_OPTIONS
3125 if (group_if->p2p_go_csa_on_inv) {
3126 wpa_printf(MSG_DEBUG,
3127 "Testing: force P2P GO CSA after invitation");
3128 eloop_cancel_timeout(
3129 wpas_p2p_reconsider_moving_go,
3130 wpa_s, NULL);
3131 eloop_register_timeout(
3132 0, 50000,
3133 wpas_p2p_reconsider_moving_go,
3134 wpa_s, NULL);
3135 }
3136#endif /* CONFIG_TESTING_OPTIONS */
3137 }
3138 return;
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003139 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003140
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08003141 if (status == P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
3142 wpa_printf(MSG_DEBUG, "P2P: Waiting for peer to start another "
3143 "invitation exchange to indicate readiness for "
3144 "re-invocation");
3145 }
3146
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003147 if (status != P2P_SC_SUCCESS) {
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003148 if (status == P2P_SC_FAIL_UNKNOWN_GROUP) {
3149 ssid = wpa_config_get_network(
3150 wpa_s->conf, wpa_s->pending_invite_ssid_id);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07003151 wpas_remove_persistent_peer(wpa_s, ssid, peer, 1);
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003152 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003153 wpas_p2p_remove_pending_group_interface(wpa_s);
3154 return;
3155 }
3156
3157 ssid = wpa_config_get_network(wpa_s->conf,
3158 wpa_s->pending_invite_ssid_id);
3159 if (ssid == NULL) {
3160 wpa_printf(MSG_ERROR, "P2P: Could not find persistent group "
3161 "data matching with invitation");
3162 return;
3163 }
3164
Jouni Malinen2c5b17d2012-10-13 21:52:46 -07003165 /*
3166 * The peer could have missed our ctrl::ack frame for Invitation
3167 * Response and continue retransmitting the frame. To reduce the
3168 * likelihood of the peer not getting successful TX status for the
3169 * Invitation Response frame, wait a short time here before starting
3170 * the persistent group so that we will remain on the current channel to
3171 * acknowledge any possible retransmission from the peer.
3172 */
3173 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: 50 ms wait on current channel before "
3174 "starting persistent group");
3175 os_sleep(0, 50000);
3176
Dmitry Shmidt15907092014-03-25 10:42:57 -07003177 if (neg_freq > 0 && ssid->mode == WPAS_MODE_P2P_GO &&
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003178 freq_included(wpa_s, channels, neg_freq))
Dmitry Shmidt15907092014-03-25 10:42:57 -07003179 freq = neg_freq;
3180 else if (peer_oper_freq > 0 && ssid->mode != WPAS_MODE_P2P_GO &&
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003181 freq_included(wpa_s, channels, peer_oper_freq))
Dmitry Shmidt15907092014-03-25 10:42:57 -07003182 freq = peer_oper_freq;
3183 else
3184 freq = 0;
3185
3186 wpa_printf(MSG_DEBUG, "P2P: Persistent group invitation success - op_freq=%d MHz SSID=%s",
3187 freq, wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003188 wpas_p2p_group_add_persistent(wpa_s, ssid,
Jouni Malinen31be0a42012-08-31 21:20:51 +03003189 ssid->mode == WPAS_MODE_P2P_GO,
Dmitry Shmidt96be6222014-02-13 10:16:51 -08003190 wpa_s->p2p_persistent_go_freq,
Dmitry Shmidt15907092014-03-25 10:42:57 -07003191 freq,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08003192 wpa_s->p2p_go_vht_center_freq2,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003193 wpa_s->p2p_go_ht40, wpa_s->p2p_go_vht,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08003194 wpa_s->p2p_go_max_oper_chwidth,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003195 channels,
Dmitry Shmidt56052862013-10-04 10:23:25 -07003196 ssid->mode == WPAS_MODE_P2P_GO ?
3197 P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE :
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003198 0, 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003199}
3200
3201
Dmitry Shmidt04949592012-07-19 12:16:46 -07003202static int wpas_p2p_disallowed_freq(struct wpa_global *global,
3203 unsigned int freq)
3204{
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08003205 if (freq_range_list_includes(&global->p2p_go_avoid_freq, freq))
3206 return 1;
Dmitry Shmidt4ce9c872013-10-24 11:08:13 -07003207 return freq_range_list_includes(&global->p2p_disallow_freq, freq);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003208}
3209
3210
3211static void wpas_p2p_add_chan(struct p2p_reg_class *reg, u8 chan)
3212{
3213 reg->channel[reg->channels] = chan;
3214 reg->channels++;
3215}
3216
3217
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003218static int wpas_p2p_default_channels(struct wpa_supplicant *wpa_s,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003219 struct p2p_channels *chan,
3220 struct p2p_channels *cli_chan)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003221{
3222 int i, cla = 0;
3223
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003224 wpa_s->global->p2p_24ghz_social_channels = 1;
3225
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003226 os_memset(cli_chan, 0, sizeof(*cli_chan));
3227
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003228 wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for 2.4 GHz "
3229 "band");
3230
3231 /* Operating class 81 - 2.4 GHz band channels 1..13 */
3232 chan->reg_class[cla].reg_class = 81;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003233 chan->reg_class[cla].channels = 0;
3234 for (i = 0; i < 11; i++) {
3235 if (!wpas_p2p_disallowed_freq(wpa_s->global, 2412 + i * 5))
3236 wpas_p2p_add_chan(&chan->reg_class[cla], i + 1);
3237 }
3238 if (chan->reg_class[cla].channels)
3239 cla++;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003240
3241 wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for lower 5 GHz "
3242 "band");
3243
3244 /* Operating class 115 - 5 GHz, channels 36-48 */
3245 chan->reg_class[cla].reg_class = 115;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003246 chan->reg_class[cla].channels = 0;
3247 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 36 * 5))
3248 wpas_p2p_add_chan(&chan->reg_class[cla], 36);
3249 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 40 * 5))
3250 wpas_p2p_add_chan(&chan->reg_class[cla], 40);
3251 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 44 * 5))
3252 wpas_p2p_add_chan(&chan->reg_class[cla], 44);
3253 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 48 * 5))
3254 wpas_p2p_add_chan(&chan->reg_class[cla], 48);
3255 if (chan->reg_class[cla].channels)
3256 cla++;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003257
3258 wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for higher 5 GHz "
3259 "band");
3260
3261 /* Operating class 124 - 5 GHz, channels 149,153,157,161 */
3262 chan->reg_class[cla].reg_class = 124;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003263 chan->reg_class[cla].channels = 0;
3264 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 149 * 5))
3265 wpas_p2p_add_chan(&chan->reg_class[cla], 149);
3266 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 153 * 5))
3267 wpas_p2p_add_chan(&chan->reg_class[cla], 153);
3268 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 156 * 5))
3269 wpas_p2p_add_chan(&chan->reg_class[cla], 157);
3270 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 161 * 5))
3271 wpas_p2p_add_chan(&chan->reg_class[cla], 161);
3272 if (chan->reg_class[cla].channels)
3273 cla++;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003274
3275 chan->reg_classes = cla;
3276 return 0;
3277}
3278
3279
3280static struct hostapd_hw_modes * get_mode(struct hostapd_hw_modes *modes,
3281 u16 num_modes,
3282 enum hostapd_hw_mode mode)
3283{
3284 u16 i;
3285
3286 for (i = 0; i < num_modes; i++) {
3287 if (modes[i].mode == mode)
3288 return &modes[i];
3289 }
3290
3291 return NULL;
3292}
3293
3294
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003295enum chan_allowed {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003296 NOT_ALLOWED, NO_IR, ALLOWED
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003297};
3298
Dmitry Shmidt04949592012-07-19 12:16:46 -07003299static int has_channel(struct wpa_global *global,
3300 struct hostapd_hw_modes *mode, u8 chan, int *flags)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003301{
3302 int i;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003303 unsigned int freq;
3304
3305 freq = (mode->mode == HOSTAPD_MODE_IEEE80211A ? 5000 : 2407) +
3306 chan * 5;
3307 if (wpas_p2p_disallowed_freq(global, freq))
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003308 return NOT_ALLOWED;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003309
3310 for (i = 0; i < mode->num_channels; i++) {
3311 if (mode->channels[i].chan == chan) {
3312 if (flags)
3313 *flags = mode->channels[i].flag;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003314 if (mode->channels[i].flag &
3315 (HOSTAPD_CHAN_DISABLED |
3316 HOSTAPD_CHAN_RADAR))
3317 return NOT_ALLOWED;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003318 if (mode->channels[i].flag & HOSTAPD_CHAN_NO_IR)
3319 return NO_IR;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003320 return ALLOWED;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003321 }
3322 }
3323
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003324 return NOT_ALLOWED;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003325}
3326
3327
3328struct p2p_oper_class_map {
3329 enum hostapd_hw_mode mode;
3330 u8 op_class;
3331 u8 min_chan;
3332 u8 max_chan;
3333 u8 inc;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08003334 enum { BW20, BW40PLUS, BW40MINUS, BW80, BW2160, BW160, BW80P80 } bw;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003335};
3336
Dmitry Shmidt1d755d02015-04-28 10:34:29 -07003337static const struct p2p_oper_class_map op_class[] = {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003338 { HOSTAPD_MODE_IEEE80211G, 81, 1, 13, 1, BW20 },
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003339#if 0 /* Do not enable HT40 on 2 GHz for now */
3340 { HOSTAPD_MODE_IEEE80211G, 83, 1, 9, 1, BW40PLUS },
3341 { HOSTAPD_MODE_IEEE80211G, 84, 5, 13, 1, BW40MINUS },
3342#endif
3343 { HOSTAPD_MODE_IEEE80211A, 115, 36, 48, 4, BW20 },
3344 { HOSTAPD_MODE_IEEE80211A, 124, 149, 161, 4, BW20 },
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07003345 { HOSTAPD_MODE_IEEE80211A, 125, 149, 169, 4, BW20 },
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003346 { HOSTAPD_MODE_IEEE80211A, 116, 36, 44, 8, BW40PLUS },
3347 { HOSTAPD_MODE_IEEE80211A, 117, 40, 48, 8, BW40MINUS },
3348 { HOSTAPD_MODE_IEEE80211A, 126, 149, 157, 8, BW40PLUS },
3349 { HOSTAPD_MODE_IEEE80211A, 127, 153, 161, 8, BW40MINUS },
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003350
3351 /*
3352 * IEEE P802.11ac/D7.0 Table E-4 actually talks about channel center
3353 * frequency index 42, 58, 106, 122, 138, 155 with channel spacing of
3354 * 80 MHz, but currently use the following definition for simplicity
3355 * (these center frequencies are not actual channels, which makes
3356 * has_channel() fail). wpas_p2p_verify_80mhz() should take care of
3357 * removing invalid channels.
3358 */
3359 { HOSTAPD_MODE_IEEE80211A, 128, 36, 161, 4, BW80 },
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08003360 { HOSTAPD_MODE_IEEE80211A, 130, 36, 161, 4, BW80P80 },
3361 { HOSTAPD_MODE_IEEE80211A, 129, 50, 114, 16, BW160 },
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003362 { HOSTAPD_MODE_IEEE80211AD, 180, 1, 4, 1, BW2160 },
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003363 { -1, 0, 0, 0, 0, BW20 }
3364};
3365
3366
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003367static int wpas_p2p_get_center_80mhz(struct wpa_supplicant *wpa_s,
3368 struct hostapd_hw_modes *mode,
3369 u8 channel)
3370{
3371 u8 center_channels[] = { 42, 58, 106, 122, 138, 155 };
3372 unsigned int i;
3373
3374 if (mode->mode != HOSTAPD_MODE_IEEE80211A)
3375 return 0;
3376
3377 for (i = 0; i < ARRAY_SIZE(center_channels); i++)
3378 /*
3379 * In 80 MHz, the bandwidth "spans" 12 channels (e.g., 36-48),
3380 * so the center channel is 6 channels away from the start/end.
3381 */
3382 if (channel >= center_channels[i] - 6 &&
3383 channel <= center_channels[i] + 6)
3384 return center_channels[i];
3385
3386 return 0;
3387}
3388
3389
3390static enum chan_allowed wpas_p2p_verify_80mhz(struct wpa_supplicant *wpa_s,
3391 struct hostapd_hw_modes *mode,
3392 u8 channel, u8 bw)
3393{
3394 u8 center_chan;
3395 int i, flags;
3396 enum chan_allowed res, ret = ALLOWED;
3397
3398 center_chan = wpas_p2p_get_center_80mhz(wpa_s, mode, channel);
3399 if (!center_chan)
3400 return NOT_ALLOWED;
3401 if (center_chan >= 58 && center_chan <= 138)
3402 return NOT_ALLOWED; /* Do not allow DFS channels for P2P */
3403
3404 /* check all the channels are available */
3405 for (i = 0; i < 4; i++) {
3406 int adj_chan = center_chan - 6 + i * 4;
3407
3408 res = has_channel(wpa_s->global, mode, adj_chan, &flags);
3409 if (res == NOT_ALLOWED)
3410 return NOT_ALLOWED;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003411 if (res == NO_IR)
3412 ret = NO_IR;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003413
3414 if (i == 0 && !(flags & HOSTAPD_CHAN_VHT_10_70))
3415 return NOT_ALLOWED;
3416 if (i == 1 && !(flags & HOSTAPD_CHAN_VHT_30_50))
3417 return NOT_ALLOWED;
3418 if (i == 2 && !(flags & HOSTAPD_CHAN_VHT_50_30))
3419 return NOT_ALLOWED;
3420 if (i == 3 && !(flags & HOSTAPD_CHAN_VHT_70_10))
3421 return NOT_ALLOWED;
3422 }
3423
3424 return ret;
3425}
3426
3427
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08003428static int wpas_p2p_get_center_160mhz(struct wpa_supplicant *wpa_s,
3429 struct hostapd_hw_modes *mode,
3430 u8 channel)
3431{
3432 u8 center_channels[] = { 50, 114 };
3433 unsigned int i;
3434
3435 if (mode->mode != HOSTAPD_MODE_IEEE80211A)
3436 return 0;
3437
3438 for (i = 0; i < ARRAY_SIZE(center_channels); i++)
3439 /*
3440 * In 160 MHz, the bandwidth "spans" 28 channels (e.g., 36-64),
3441 * so the center channel is 14 channels away from the start/end.
3442 */
3443 if (channel >= center_channels[i] - 14 &&
3444 channel <= center_channels[i] + 14)
3445 return center_channels[i];
3446
3447 return 0;
3448}
3449
3450
3451static enum chan_allowed wpas_p2p_verify_160mhz(struct wpa_supplicant *wpa_s,
3452 struct hostapd_hw_modes *mode,
3453 u8 channel, u8 bw)
3454{
3455 u8 center_chan;
3456 int i, flags;
3457 enum chan_allowed res, ret = ALLOWED;
3458
3459 center_chan = wpas_p2p_get_center_160mhz(wpa_s, mode, channel);
3460 if (!center_chan)
3461 return NOT_ALLOWED;
3462 /* VHT 160 MHz uses DFS channels in most countries. */
3463
3464 /* Check all the channels are available */
3465 for (i = 0; i < 8; i++) {
3466 int adj_chan = center_chan - 14 + i * 4;
3467
3468 res = has_channel(wpa_s->global, mode, adj_chan, &flags);
3469 if (res == NOT_ALLOWED)
3470 return NOT_ALLOWED;
3471
3472 if (res == NO_IR)
3473 ret = NO_IR;
3474
3475 if (i == 0 && !(flags & HOSTAPD_CHAN_VHT_10_150))
3476 return NOT_ALLOWED;
3477 if (i == 1 && !(flags & HOSTAPD_CHAN_VHT_30_130))
3478 return NOT_ALLOWED;
3479 if (i == 2 && !(flags & HOSTAPD_CHAN_VHT_50_110))
3480 return NOT_ALLOWED;
3481 if (i == 3 && !(flags & HOSTAPD_CHAN_VHT_70_90))
3482 return NOT_ALLOWED;
3483 if (i == 4 && !(flags & HOSTAPD_CHAN_VHT_90_70))
3484 return NOT_ALLOWED;
3485 if (i == 5 && !(flags & HOSTAPD_CHAN_VHT_110_50))
3486 return NOT_ALLOWED;
3487 if (i == 6 && !(flags & HOSTAPD_CHAN_VHT_130_30))
3488 return NOT_ALLOWED;
3489 if (i == 7 && !(flags & HOSTAPD_CHAN_VHT_150_10))
3490 return NOT_ALLOWED;
3491 }
3492
3493 return ret;
3494}
3495
3496
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003497static enum chan_allowed wpas_p2p_verify_channel(struct wpa_supplicant *wpa_s,
3498 struct hostapd_hw_modes *mode,
3499 u8 channel, u8 bw)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003500{
Dmitry Shmidt96be6222014-02-13 10:16:51 -08003501 int flag = 0;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003502 enum chan_allowed res, res2;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003503
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003504 res2 = res = has_channel(wpa_s->global, mode, channel, &flag);
3505 if (bw == BW40MINUS) {
3506 if (!(flag & HOSTAPD_CHAN_HT40MINUS))
3507 return NOT_ALLOWED;
3508 res2 = has_channel(wpa_s->global, mode, channel - 4, NULL);
3509 } else if (bw == BW40PLUS) {
3510 if (!(flag & HOSTAPD_CHAN_HT40PLUS))
3511 return NOT_ALLOWED;
3512 res2 = has_channel(wpa_s->global, mode, channel + 4, NULL);
3513 } else if (bw == BW80) {
3514 res2 = wpas_p2p_verify_80mhz(wpa_s, mode, channel, bw);
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08003515 } else if (bw == BW160) {
3516 res2 = wpas_p2p_verify_160mhz(wpa_s, mode, channel, bw);
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003517 }
3518
3519 if (res == NOT_ALLOWED || res2 == NOT_ALLOWED)
3520 return NOT_ALLOWED;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003521 if (res == NO_IR || res2 == NO_IR)
3522 return NO_IR;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003523 return res;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003524}
3525
3526
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003527static int wpas_p2p_setup_channels(struct wpa_supplicant *wpa_s,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003528 struct p2p_channels *chan,
3529 struct p2p_channels *cli_chan)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003530{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003531 struct hostapd_hw_modes *mode;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003532 int cla, op, cli_cla;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003533
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003534 if (wpa_s->hw.modes == NULL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003535 wpa_printf(MSG_DEBUG, "P2P: Driver did not support fetching "
3536 "of all supported channels; assume dualband "
3537 "support");
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003538 return wpas_p2p_default_channels(wpa_s, chan, cli_chan);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003539 }
3540
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003541 cla = cli_cla = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003542
3543 for (op = 0; op_class[op].op_class; op++) {
Dmitry Shmidt1d755d02015-04-28 10:34:29 -07003544 const struct p2p_oper_class_map *o = &op_class[op];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003545 u8 ch;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003546 struct p2p_reg_class *reg = NULL, *cli_reg = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003547
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003548 mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, o->mode);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003549 if (mode == NULL)
3550 continue;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003551 if (mode->mode == HOSTAPD_MODE_IEEE80211G)
3552 wpa_s->global->p2p_24ghz_social_channels = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003553 for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003554 enum chan_allowed res;
3555 res = wpas_p2p_verify_channel(wpa_s, mode, ch, o->bw);
3556 if (res == ALLOWED) {
3557 if (reg == NULL) {
3558 wpa_printf(MSG_DEBUG, "P2P: Add operating class %u",
3559 o->op_class);
3560 reg = &chan->reg_class[cla];
3561 cla++;
3562 reg->reg_class = o->op_class;
3563 }
3564 reg->channel[reg->channels] = ch;
3565 reg->channels++;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003566 } else if (res == NO_IR &&
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003567 wpa_s->conf->p2p_add_cli_chan) {
3568 if (cli_reg == NULL) {
3569 wpa_printf(MSG_DEBUG, "P2P: Add operating class %u (client only)",
3570 o->op_class);
3571 cli_reg = &cli_chan->reg_class[cli_cla];
3572 cli_cla++;
3573 cli_reg->reg_class = o->op_class;
3574 }
3575 cli_reg->channel[cli_reg->channels] = ch;
3576 cli_reg->channels++;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003577 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003578 }
3579 if (reg) {
3580 wpa_hexdump(MSG_DEBUG, "P2P: Channels",
3581 reg->channel, reg->channels);
3582 }
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003583 if (cli_reg) {
3584 wpa_hexdump(MSG_DEBUG, "P2P: Channels (client only)",
3585 cli_reg->channel, cli_reg->channels);
3586 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003587 }
3588
3589 chan->reg_classes = cla;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003590 cli_chan->reg_classes = cli_cla;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003591
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003592 return 0;
3593}
3594
3595
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003596int wpas_p2p_get_ht40_mode(struct wpa_supplicant *wpa_s,
3597 struct hostapd_hw_modes *mode, u8 channel)
3598{
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003599 int op;
3600 enum chan_allowed ret;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003601
3602 for (op = 0; op_class[op].op_class; op++) {
Dmitry Shmidt1d755d02015-04-28 10:34:29 -07003603 const struct p2p_oper_class_map *o = &op_class[op];
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003604 u8 ch;
3605
3606 for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
3607 if (o->mode != HOSTAPD_MODE_IEEE80211A ||
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07003608 (o->bw != BW40PLUS && o->bw != BW40MINUS) ||
3609 ch != channel)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003610 continue;
3611 ret = wpas_p2p_verify_channel(wpa_s, mode, ch, o->bw);
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003612 if (ret == ALLOWED)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003613 return (o->bw == BW40MINUS) ? -1 : 1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003614 }
3615 }
3616 return 0;
3617}
3618
3619
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07003620int wpas_p2p_get_vht80_center(struct wpa_supplicant *wpa_s,
3621 struct hostapd_hw_modes *mode, u8 channel)
3622{
3623 if (!wpas_p2p_verify_channel(wpa_s, mode, channel, BW80))
3624 return 0;
3625
3626 return wpas_p2p_get_center_80mhz(wpa_s, mode, channel);
3627}
3628
3629
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08003630int wpas_p2p_get_vht160_center(struct wpa_supplicant *wpa_s,
3631 struct hostapd_hw_modes *mode, u8 channel)
3632{
3633 if (!wpas_p2p_verify_channel(wpa_s, mode, channel, BW160))
3634 return 0;
3635 return wpas_p2p_get_center_160mhz(wpa_s, mode, channel);
3636}
3637
3638
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003639static int wpas_get_noa(void *ctx, const u8 *interface_addr, u8 *buf,
3640 size_t buf_len)
3641{
3642 struct wpa_supplicant *wpa_s = ctx;
3643
3644 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
3645 if (os_memcmp(wpa_s->own_addr, interface_addr, ETH_ALEN) == 0)
3646 break;
3647 }
3648 if (wpa_s == NULL)
3649 return -1;
3650
3651 return wpa_drv_get_noa(wpa_s, buf, buf_len);
3652}
3653
3654
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07003655struct wpa_supplicant * wpas_get_p2p_go_iface(struct wpa_supplicant *wpa_s,
3656 const u8 *ssid, size_t ssid_len)
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003657{
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07003658 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
3659 struct wpa_ssid *s = wpa_s->current_ssid;
3660 if (s == NULL)
3661 continue;
3662 if (s->mode != WPAS_MODE_P2P_GO &&
3663 s->mode != WPAS_MODE_AP &&
3664 s->mode != WPAS_MODE_P2P_GROUP_FORMATION)
3665 continue;
3666 if (s->ssid_len != ssid_len ||
Dmitry Shmidt03658832014-08-13 11:03:49 -07003667 os_memcmp(ssid, s->ssid, ssid_len) != 0)
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07003668 continue;
3669 return wpa_s;
3670 }
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003671
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07003672 return NULL;
3673
3674}
3675
3676
3677struct wpa_supplicant * wpas_get_p2p_client_iface(struct wpa_supplicant *wpa_s,
3678 const u8 *peer_dev_addr)
3679{
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003680 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
3681 struct wpa_ssid *ssid = wpa_s->current_ssid;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003682 if (ssid && (ssid->mode != WPAS_MODE_INFRA || !ssid->p2p_group))
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003683 continue;
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07003684 if (os_memcmp(wpa_s->go_dev_addr, peer_dev_addr, ETH_ALEN) == 0)
3685 return wpa_s;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003686 }
3687
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07003688 return NULL;
3689}
3690
3691
3692static int wpas_go_connected(void *ctx, const u8 *dev_addr)
3693{
3694 struct wpa_supplicant *wpa_s = ctx;
3695
3696 return wpas_get_p2p_client_iface(wpa_s, dev_addr) != NULL;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08003697}
3698
3699
Dmitry Shmidt18463232014-01-24 12:29:41 -08003700static int wpas_is_concurrent_session_active(void *ctx)
3701{
3702 struct wpa_supplicant *wpa_s = ctx;
3703 struct wpa_supplicant *ifs;
3704
3705 for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
3706 if (ifs == wpa_s)
3707 continue;
3708 if (ifs->wpa_state > WPA_ASSOCIATED)
3709 return 1;
3710 }
3711 return 0;
3712}
3713
3714
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07003715static void wpas_p2p_debug_print(void *ctx, int level, const char *msg)
3716{
3717 struct wpa_supplicant *wpa_s = ctx;
3718 wpa_msg_global(wpa_s, level, "P2P: %s", msg);
3719}
3720
3721
Dmitry Shmidt9ead16e2014-10-07 13:15:23 -07003722int wpas_p2p_add_p2pdev_interface(struct wpa_supplicant *wpa_s,
3723 const char *conf_p2p_dev)
Dmitry Shmidt34af3062013-07-11 10:46:32 -07003724{
3725 struct wpa_interface iface;
3726 struct wpa_supplicant *p2pdev_wpa_s;
3727 char ifname[100];
3728 char force_name[100];
3729 int ret;
3730
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003731 ret = os_snprintf(ifname, sizeof(ifname), P2P_MGMT_DEVICE_PREFIX "%s",
3732 wpa_s->ifname);
3733 if (os_snprintf_error(sizeof(ifname), ret))
3734 return -1;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07003735 force_name[0] = '\0';
3736 wpa_s->pending_interface_type = WPA_IF_P2P_DEVICE;
3737 ret = wpa_drv_if_add(wpa_s, WPA_IF_P2P_DEVICE, ifname, NULL, NULL,
3738 force_name, wpa_s->pending_interface_addr, NULL);
3739 if (ret < 0) {
3740 wpa_printf(MSG_DEBUG, "P2P: Failed to create P2P Device interface");
3741 return ret;
3742 }
3743 os_strlcpy(wpa_s->pending_interface_name, ifname,
3744 sizeof(wpa_s->pending_interface_name));
3745
3746 os_memset(&iface, 0, sizeof(iface));
3747 iface.p2p_mgmt = 1;
3748 iface.ifname = wpa_s->pending_interface_name;
3749 iface.driver = wpa_s->driver->name;
3750 iface.driver_param = wpa_s->conf->driver_param;
Dmitry Shmidt2ac5f602014-03-07 10:08:21 -08003751
3752 /*
3753 * If a P2P Device configuration file was given, use it as the interface
3754 * configuration file (instead of using parent's configuration file.
3755 */
Dmitry Shmidt9ead16e2014-10-07 13:15:23 -07003756 if (conf_p2p_dev) {
3757 iface.confname = conf_p2p_dev;
Dmitry Shmidt2ac5f602014-03-07 10:08:21 -08003758 iface.ctrl_interface = NULL;
3759 } else {
3760 iface.confname = wpa_s->confname;
3761 iface.ctrl_interface = wpa_s->conf->ctrl_interface;
3762 }
Dmitry Shmidt2ac5f602014-03-07 10:08:21 -08003763
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08003764 p2pdev_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface, wpa_s);
Dmitry Shmidt34af3062013-07-11 10:46:32 -07003765 if (!p2pdev_wpa_s) {
3766 wpa_printf(MSG_DEBUG, "P2P: Failed to add P2P Device interface");
3767 return -1;
3768 }
Dmitry Shmidt34af3062013-07-11 10:46:32 -07003769
3770 wpa_s->pending_interface_name[0] = '\0';
3771 return 0;
3772}
3773
3774
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003775static void wpas_presence_resp(void *ctx, const u8 *src, u8 status,
3776 const u8 *noa, size_t noa_len)
3777{
3778 struct wpa_supplicant *wpa_s, *intf = ctx;
3779 char hex[100];
3780
3781 for (wpa_s = intf->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
3782 if (wpa_s->waiting_presence_resp)
3783 break;
3784 }
3785 if (!wpa_s) {
3786 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No group interface was waiting for presence response");
3787 return;
3788 }
3789 wpa_s->waiting_presence_resp = 0;
3790
3791 wpa_snprintf_hex(hex, sizeof(hex), noa, noa_len);
3792 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PRESENCE_RESPONSE "src=" MACSTR
3793 " status=%u noa=%s", MAC2STR(src), status, hex);
3794}
3795
3796
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003797static int wpas_get_persistent_group(void *ctx, const u8 *addr, const u8 *ssid,
3798 size_t ssid_len, u8 *go_dev_addr,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003799 u8 *ret_ssid, size_t *ret_ssid_len,
3800 u8 *intended_iface_addr)
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003801{
3802 struct wpa_supplicant *wpa_s = ctx;
3803 struct wpa_ssid *s;
3804
3805 s = wpas_p2p_get_persistent(wpa_s, addr, ssid, ssid_len);
3806 if (s) {
3807 os_memcpy(ret_ssid, s->ssid, s->ssid_len);
3808 *ret_ssid_len = s->ssid_len;
3809 os_memcpy(go_dev_addr, s->bssid, ETH_ALEN);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003810
3811 if (s->mode != WPAS_MODE_P2P_GO) {
3812 os_memset(intended_iface_addr, 0, ETH_ALEN);
3813 } else if (wpas_p2p_create_iface(wpa_s)) {
3814 if (wpas_p2p_add_group_interface(wpa_s, WPA_IF_P2P_GO))
3815 return 0;
3816
3817 os_memcpy(intended_iface_addr,
3818 wpa_s->pending_interface_addr, ETH_ALEN);
3819 } else {
3820 os_memcpy(intended_iface_addr, wpa_s->own_addr,
3821 ETH_ALEN);
3822 }
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003823 return 1;
3824 }
3825
3826 return 0;
3827}
3828
3829
3830static int wpas_get_go_info(void *ctx, u8 *intended_addr,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003831 u8 *ssid, size_t *ssid_len, int *group_iface,
3832 unsigned int *freq)
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003833{
3834 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003835 struct wpa_supplicant *go;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003836 struct wpa_ssid *s;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003837
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003838 /*
3839 * group_iface will be set to 1 only if a dedicated interface for P2P
3840 * role is required. First, we try to reuse an active GO. However,
3841 * if it is not present, we will try to reactivate an existing
3842 * persistent group and set group_iface to 1, so the caller will know
3843 * that the pending interface should be used.
3844 */
3845 *group_iface = 0;
3846
3847 if (freq)
3848 *freq = 0;
3849
3850 go = wpas_p2p_get_go_group(wpa_s);
3851 if (!go) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003852 s = wpas_p2p_get_persistent_go(wpa_s);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003853 *group_iface = wpas_p2p_create_iface(wpa_s);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003854 if (s)
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003855 os_memcpy(intended_addr, s->bssid, ETH_ALEN);
3856 else
3857 return 0;
3858 } else {
3859 s = go->current_ssid;
3860 os_memcpy(intended_addr, go->own_addr, ETH_ALEN);
3861 if (freq)
3862 *freq = go->assoc_freq;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003863 }
3864
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003865 os_memcpy(ssid, s->ssid, s->ssid_len);
3866 *ssid_len = s->ssid_len;
3867
3868 return 1;
3869}
3870
3871
3872static int wpas_remove_stale_groups(void *ctx, const u8 *peer, const u8 *go,
3873 const u8 *ssid, size_t ssid_len)
3874{
3875 struct wpa_supplicant *wpa_s = ctx;
3876 struct wpa_ssid *s;
3877 int save_config = 0;
3878 size_t i;
3879
3880 /* Start with our first choice of Persistent Groups */
3881 while ((s = wpas_p2p_get_persistent(wpa_s, peer, NULL, 0))) {
3882 if (go && ssid && ssid_len &&
3883 s->ssid_len == ssid_len &&
3884 os_memcmp(go, s->bssid, ETH_ALEN) == 0 &&
3885 os_memcmp(ssid, s->ssid, ssid_len) == 0)
3886 break;
3887
3888 /* Remove stale persistent group */
3889 if (s->mode != WPAS_MODE_P2P_GO || s->num_p2p_clients <= 1) {
3890 wpa_config_remove_network(wpa_s->conf, s->id);
3891 save_config = 1;
3892 continue;
3893 }
3894
3895 for (i = 0; i < s->num_p2p_clients; i++) {
3896 if (os_memcmp(s->p2p_client_list + i * 2 * ETH_ALEN,
3897 peer, ETH_ALEN) != 0)
3898 continue;
3899
3900 os_memmove(s->p2p_client_list + i * 2 * ETH_ALEN,
3901 s->p2p_client_list + (i + 1) * 2 * ETH_ALEN,
3902 (s->num_p2p_clients - i - 1) * 2 * ETH_ALEN);
3903 break;
3904 }
3905 s->num_p2p_clients--;
3906 save_config = 1;
3907 }
3908
3909 if (save_config)
3910 p2p_config_write(wpa_s);
3911
3912 /* Return TRUE if valid SSID remains */
3913 return s != NULL;
3914}
3915
3916
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003917static void wpas_p2ps_get_feat_cap_str(char *buf, size_t buf_len,
3918 const u8 *feat_cap, size_t feat_cap_len)
3919{
3920 static const char pref[] = " feature_cap=";
3921 int ret;
3922
3923 buf[0] = '\0';
3924
3925 /*
3926 * We expect a feature capability to contain at least one byte to be
3927 * reported. The string buffer provided by the caller function is
3928 * expected to be big enough to contain all bytes of the attribute for
3929 * known specifications. This function truncates the reported bytes if
3930 * the feature capability data exceeds the string buffer size.
3931 */
3932 if (!feat_cap || !feat_cap_len || buf_len < sizeof(pref) + 2)
3933 return;
3934
3935 os_memcpy(buf, pref, sizeof(pref));
3936 ret = wpa_snprintf_hex(&buf[sizeof(pref) - 1],
3937 buf_len - sizeof(pref) + 1,
3938 feat_cap, feat_cap_len);
3939
3940 if (ret != (2 * (int) feat_cap_len))
3941 wpa_printf(MSG_WARNING, "P2PS feature_cap bytes truncated");
3942}
3943
3944
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003945static void wpas_p2ps_prov_complete(void *ctx, u8 status, const u8 *dev,
3946 const u8 *adv_mac, const u8 *ses_mac,
3947 const u8 *grp_mac, u32 adv_id, u32 ses_id,
3948 u8 conncap, int passwd_id,
3949 const u8 *persist_ssid,
3950 size_t persist_ssid_size, int response_done,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003951 int prov_start, const char *session_info,
3952 const u8 *feat_cap, size_t feat_cap_len,
Dmitry Shmidtde47be72016-01-07 12:52:55 -08003953 unsigned int freq,
3954 const u8 *group_ssid, size_t group_ssid_len)
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003955{
3956 struct wpa_supplicant *wpa_s = ctx;
3957 u8 mac[ETH_ALEN];
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003958 struct wpa_ssid *persistent_go, *stale, *s = NULL;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003959 int save_config = 0;
3960 struct wpa_supplicant *go_wpa_s;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003961 char feat_cap_str[256];
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003962
3963 if (!dev)
3964 return;
3965
3966 os_memset(mac, 0, ETH_ALEN);
3967 if (!adv_mac)
3968 adv_mac = mac;
3969 if (!ses_mac)
3970 ses_mac = mac;
3971 if (!grp_mac)
3972 grp_mac = mac;
3973
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003974 wpas_p2ps_get_feat_cap_str(feat_cap_str, sizeof(feat_cap_str),
3975 feat_cap, feat_cap_len);
3976
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003977 if (prov_start) {
3978 if (session_info == NULL) {
3979 wpa_msg_global(wpa_s, MSG_INFO,
3980 P2P_EVENT_P2PS_PROVISION_START MACSTR
3981 " adv_id=%x conncap=%x"
3982 " adv_mac=" MACSTR
3983 " session=%x mac=" MACSTR
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003984 " dev_passwd_id=%d%s",
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003985 MAC2STR(dev), adv_id, conncap,
3986 MAC2STR(adv_mac),
3987 ses_id, MAC2STR(ses_mac),
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003988 passwd_id, feat_cap_str);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003989 } else {
3990 wpa_msg_global(wpa_s, MSG_INFO,
3991 P2P_EVENT_P2PS_PROVISION_START MACSTR
3992 " adv_id=%x conncap=%x"
3993 " adv_mac=" MACSTR
3994 " session=%x mac=" MACSTR
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003995 " dev_passwd_id=%d info='%s'%s",
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003996 MAC2STR(dev), adv_id, conncap,
3997 MAC2STR(adv_mac),
3998 ses_id, MAC2STR(ses_mac),
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003999 passwd_id, session_info, feat_cap_str);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004000 }
4001 return;
4002 }
4003
4004 go_wpa_s = wpas_p2p_get_go_group(wpa_s);
4005 persistent_go = wpas_p2p_get_persistent_go(wpa_s);
4006
4007 if (status && status != P2P_SC_SUCCESS_DEFERRED) {
4008 if (go_wpa_s && !p2p_group_go_member_count(wpa_s))
4009 wpas_p2p_group_remove(wpa_s, go_wpa_s->ifname);
4010
4011 if (persistent_go && !persistent_go->num_p2p_clients) {
4012 /* remove empty persistent GO */
4013 wpa_config_remove_network(wpa_s->conf,
4014 persistent_go->id);
4015 }
4016
4017 wpa_msg_global(wpa_s, MSG_INFO,
4018 P2P_EVENT_P2PS_PROVISION_DONE MACSTR
4019 " status=%d"
4020 " adv_id=%x adv_mac=" MACSTR
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004021 " session=%x mac=" MACSTR "%s",
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004022 MAC2STR(dev), status,
4023 adv_id, MAC2STR(adv_mac),
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004024 ses_id, MAC2STR(ses_mac), feat_cap_str);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004025 return;
4026 }
4027
4028 /* Clean up stale persistent groups with this device */
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004029 if (persist_ssid && persist_ssid_size)
4030 s = wpas_p2p_get_persistent(wpa_s, dev, persist_ssid,
4031 persist_ssid_size);
4032
4033 if (persist_ssid && s && s->mode != WPAS_MODE_P2P_GO &&
4034 is_zero_ether_addr(grp_mac)) {
4035 wpa_dbg(wpa_s, MSG_ERROR,
4036 "P2P: Peer device is a GO in a persistent group, but it did not provide the intended MAC address");
4037 return;
4038 }
4039
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004040 for (;;) {
4041 stale = wpas_p2p_get_persistent(wpa_s, dev, NULL, 0);
4042 if (!stale)
4043 break;
4044
4045 if (s && s->ssid_len == stale->ssid_len &&
4046 os_memcmp(stale->bssid, s->bssid, ETH_ALEN) == 0 &&
4047 os_memcmp(stale->ssid, s->ssid, s->ssid_len) == 0)
4048 break;
4049
4050 /* Remove stale persistent group */
4051 if (stale->mode != WPAS_MODE_P2P_GO ||
4052 stale->num_p2p_clients <= 1) {
4053 wpa_config_remove_network(wpa_s->conf, stale->id);
4054 } else {
4055 size_t i;
4056
4057 for (i = 0; i < stale->num_p2p_clients; i++) {
4058 if (os_memcmp(stale->p2p_client_list +
4059 i * ETH_ALEN,
4060 dev, ETH_ALEN) == 0) {
4061 os_memmove(stale->p2p_client_list +
4062 i * ETH_ALEN,
4063 stale->p2p_client_list +
4064 (i + 1) * ETH_ALEN,
4065 (stale->num_p2p_clients -
4066 i - 1) * ETH_ALEN);
4067 break;
4068 }
4069 }
4070 stale->num_p2p_clients--;
4071 }
4072 save_config = 1;
4073 }
4074
4075 if (save_config)
4076 p2p_config_write(wpa_s);
4077
4078 if (s) {
4079 if (go_wpa_s && !p2p_group_go_member_count(wpa_s))
4080 wpas_p2p_group_remove(wpa_s, go_wpa_s->ifname);
4081
4082 if (persistent_go && s != persistent_go &&
4083 !persistent_go->num_p2p_clients) {
4084 /* remove empty persistent GO */
4085 wpa_config_remove_network(wpa_s->conf,
4086 persistent_go->id);
4087 /* Save config */
4088 }
4089
4090 wpa_msg_global(wpa_s, MSG_INFO,
4091 P2P_EVENT_P2PS_PROVISION_DONE MACSTR
4092 " status=%d"
4093 " adv_id=%x adv_mac=" MACSTR
4094 " session=%x mac=" MACSTR
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004095 " persist=%d%s",
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004096 MAC2STR(dev), status,
4097 adv_id, MAC2STR(adv_mac),
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004098 ses_id, MAC2STR(ses_mac), s->id, feat_cap_str);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004099 return;
4100 }
4101
4102 if (conncap == P2PS_SETUP_GROUP_OWNER) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004103 /*
4104 * We need to copy the interface name. Simply saving a
4105 * pointer isn't enough, since if we use pending_interface_name
4106 * it will be overwritten when the group is added.
4107 */
4108 char go_ifname[100];
4109
4110 go_ifname[0] = '\0';
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004111 if (!go_wpa_s) {
4112 wpa_s->global->pending_p2ps_group = 1;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004113 wpa_s->global->pending_p2ps_group_freq = freq;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004114
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004115 if (!wpas_p2p_create_iface(wpa_s))
4116 os_memcpy(go_ifname, wpa_s->ifname,
4117 sizeof(go_ifname));
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004118 else if (wpa_s->pending_interface_name[0])
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004119 os_memcpy(go_ifname,
4120 wpa_s->pending_interface_name,
4121 sizeof(go_ifname));
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004122
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004123 if (!go_ifname[0]) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004124 wpas_p2ps_prov_complete(
4125 wpa_s, P2P_SC_FAIL_UNKNOWN_GROUP,
4126 dev, adv_mac, ses_mac,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004127 grp_mac, adv_id, ses_id, 0, 0,
Dmitry Shmidtde47be72016-01-07 12:52:55 -08004128 NULL, 0, 0, 0, NULL, NULL, 0, 0,
4129 NULL, 0);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004130 return;
4131 }
4132
4133 /* If PD Resp complete, start up the GO */
4134 if (response_done && persistent_go) {
4135 wpas_p2p_group_add_persistent(
4136 wpa_s, persistent_go,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08004137 0, 0, freq, 0, 0, 0, 0, NULL,
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004138 persistent_go->mode ==
4139 WPAS_MODE_P2P_GO ?
4140 P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE :
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004141 0, 0);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004142 } else if (response_done) {
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08004143 wpas_p2p_group_add(wpa_s, 1, freq, 0, 0, 0, 0);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004144 }
4145
4146 if (passwd_id == DEV_PW_P2PS_DEFAULT) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004147 os_memcpy(wpa_s->p2ps_join_addr, grp_mac,
4148 ETH_ALEN);
4149 wpa_s->p2ps_method_config_any = 1;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004150 }
4151 } else if (passwd_id == DEV_PW_P2PS_DEFAULT) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004152 os_memcpy(go_ifname, go_wpa_s->ifname,
4153 sizeof(go_ifname));
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004154
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004155 if (is_zero_ether_addr(grp_mac)) {
4156 wpa_dbg(go_wpa_s, MSG_DEBUG,
4157 "P2P: Setting PIN-1 for ANY");
4158 wpa_supplicant_ap_wps_pin(go_wpa_s, NULL,
4159 "12345670", NULL, 0,
4160 0);
4161 } else {
4162 wpa_dbg(go_wpa_s, MSG_DEBUG,
4163 "P2P: Setting PIN-1 for " MACSTR,
4164 MAC2STR(grp_mac));
4165 wpa_supplicant_ap_wps_pin(go_wpa_s, grp_mac,
4166 "12345670", NULL, 0,
4167 0);
4168 }
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004169
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004170 os_memcpy(wpa_s->p2ps_join_addr, grp_mac, ETH_ALEN);
4171 wpa_s->p2ps_method_config_any = 1;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004172 }
4173
4174 wpa_msg_global(wpa_s, MSG_INFO,
4175 P2P_EVENT_P2PS_PROVISION_DONE MACSTR
4176 " status=%d conncap=%x"
4177 " adv_id=%x adv_mac=" MACSTR
4178 " session=%x mac=" MACSTR
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004179 " dev_passwd_id=%d go=%s%s",
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004180 MAC2STR(dev), status, conncap,
4181 adv_id, MAC2STR(adv_mac),
4182 ses_id, MAC2STR(ses_mac),
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004183 passwd_id, go_ifname, feat_cap_str);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004184 return;
4185 }
4186
4187 if (go_wpa_s && !p2p_group_go_member_count(wpa_s))
4188 wpas_p2p_group_remove(wpa_s, go_wpa_s->ifname);
4189
4190 if (persistent_go && !persistent_go->num_p2p_clients) {
4191 /* remove empty persistent GO */
4192 wpa_config_remove_network(wpa_s->conf, persistent_go->id);
4193 }
4194
4195 if (conncap == P2PS_SETUP_CLIENT) {
Dmitry Shmidtde47be72016-01-07 12:52:55 -08004196 char ssid_hex[32 * 2 + 1];
4197
4198 if (group_ssid)
4199 wpa_snprintf_hex(ssid_hex, sizeof(ssid_hex),
4200 group_ssid, group_ssid_len);
4201 else
4202 ssid_hex[0] = '\0';
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004203 wpa_msg_global(wpa_s, MSG_INFO,
4204 P2P_EVENT_P2PS_PROVISION_DONE MACSTR
4205 " status=%d conncap=%x"
4206 " adv_id=%x adv_mac=" MACSTR
4207 " session=%x mac=" MACSTR
Dmitry Shmidtde47be72016-01-07 12:52:55 -08004208 " dev_passwd_id=%d join=" MACSTR "%s%s%s",
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004209 MAC2STR(dev), status, conncap,
4210 adv_id, MAC2STR(adv_mac),
4211 ses_id, MAC2STR(ses_mac),
Dmitry Shmidtde47be72016-01-07 12:52:55 -08004212 passwd_id, MAC2STR(grp_mac), feat_cap_str,
4213 group_ssid ? " group_ssid=" : "", ssid_hex);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004214 } else {
4215 wpa_msg_global(wpa_s, MSG_INFO,
4216 P2P_EVENT_P2PS_PROVISION_DONE MACSTR
4217 " status=%d conncap=%x"
4218 " adv_id=%x adv_mac=" MACSTR
4219 " session=%x mac=" MACSTR
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004220 " dev_passwd_id=%d%s",
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004221 MAC2STR(dev), status, conncap,
4222 adv_id, MAC2STR(adv_mac),
4223 ses_id, MAC2STR(ses_mac),
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004224 passwd_id, feat_cap_str);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004225 }
4226}
4227
4228
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -07004229static int _wpas_p2p_in_progress(void *ctx)
4230{
4231 struct wpa_supplicant *wpa_s = ctx;
4232 return wpas_p2p_in_progress(wpa_s);
4233}
4234
4235
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004236static int wpas_prov_disc_resp_cb(void *ctx)
4237{
4238 struct wpa_supplicant *wpa_s = ctx;
4239 struct wpa_ssid *persistent_go;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004240 unsigned int freq;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004241
4242 if (!wpa_s->global->pending_p2ps_group)
4243 return 0;
4244
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004245 freq = wpa_s->global->pending_p2ps_group_freq;
4246 wpa_s->global->pending_p2ps_group_freq = 0;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004247 wpa_s->global->pending_p2ps_group = 0;
4248
4249 if (wpas_p2p_get_go_group(wpa_s))
4250 return 0;
4251 persistent_go = wpas_p2p_get_persistent_go(wpa_s);
4252
4253 if (persistent_go) {
4254 wpas_p2p_group_add_persistent(
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08004255 wpa_s, persistent_go, 0, 0, 0, 0, 0, 0, 0, NULL,
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004256 persistent_go->mode == WPAS_MODE_P2P_GO ?
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004257 P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE : 0, 0);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004258 } else {
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08004259 wpas_p2p_group_add(wpa_s, 1, freq, 0, 0, 0, 0);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004260 }
4261
4262 return 1;
4263}
4264
4265
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004266static int wpas_p2p_get_pref_freq_list(void *ctx, int go,
4267 unsigned int *len,
4268 unsigned int *freq_list)
4269{
4270 struct wpa_supplicant *wpa_s = ctx;
4271
4272 return wpa_drv_get_pref_freq_list(wpa_s, go ? WPA_IF_P2P_GO :
4273 WPA_IF_P2P_CLIENT, len, freq_list);
4274}
4275
4276
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004277/**
4278 * wpas_p2p_init - Initialize P2P module for %wpa_supplicant
4279 * @global: Pointer to global data from wpa_supplicant_init()
4280 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
4281 * Returns: 0 on success, -1 on failure
4282 */
4283int wpas_p2p_init(struct wpa_global *global, struct wpa_supplicant *wpa_s)
4284{
4285 struct p2p_config p2p;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004286 int i;
4287
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07004288 if (wpa_s->conf->p2p_disabled)
4289 return 0;
4290
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004291 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
4292 return 0;
4293
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004294 if (global->p2p)
4295 return 0;
4296
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004297 os_memset(&p2p, 0, sizeof(p2p));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004298 p2p.cb_ctx = wpa_s;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07004299 p2p.debug_print = wpas_p2p_debug_print;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004300 p2p.p2p_scan = wpas_p2p_scan;
4301 p2p.send_action = wpas_send_action;
4302 p2p.send_action_done = wpas_send_action_done;
4303 p2p.go_neg_completed = wpas_go_neg_completed;
4304 p2p.go_neg_req_rx = wpas_go_neg_req_rx;
4305 p2p.dev_found = wpas_dev_found;
4306 p2p.dev_lost = wpas_dev_lost;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07004307 p2p.find_stopped = wpas_find_stopped;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004308 p2p.start_listen = wpas_start_listen;
4309 p2p.stop_listen = wpas_stop_listen;
4310 p2p.send_probe_resp = wpas_send_probe_resp;
4311 p2p.sd_request = wpas_sd_request;
4312 p2p.sd_response = wpas_sd_response;
4313 p2p.prov_disc_req = wpas_prov_disc_req;
4314 p2p.prov_disc_resp = wpas_prov_disc_resp;
Jouni Malinen75ecf522011-06-27 15:19:46 -07004315 p2p.prov_disc_fail = wpas_prov_disc_fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004316 p2p.invitation_process = wpas_invitation_process;
4317 p2p.invitation_received = wpas_invitation_received;
4318 p2p.invitation_result = wpas_invitation_result;
4319 p2p.get_noa = wpas_get_noa;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004320 p2p.go_connected = wpas_go_connected;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08004321 p2p.presence_resp = wpas_presence_resp;
Dmitry Shmidt18463232014-01-24 12:29:41 -08004322 p2p.is_concurrent_session_active = wpas_is_concurrent_session_active;
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -07004323 p2p.is_p2p_in_progress = _wpas_p2p_in_progress;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004324 p2p.get_persistent_group = wpas_get_persistent_group;
4325 p2p.get_go_info = wpas_get_go_info;
4326 p2p.remove_stale_groups = wpas_remove_stale_groups;
4327 p2p.p2ps_prov_complete = wpas_p2ps_prov_complete;
4328 p2p.prov_disc_resp_cb = wpas_prov_disc_resp_cb;
4329 p2p.p2ps_group_capability = p2ps_group_capability;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004330 p2p.get_pref_freq_list = wpas_p2p_get_pref_freq_list;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004331
4332 os_memcpy(wpa_s->global->p2p_dev_addr, wpa_s->own_addr, ETH_ALEN);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004333 os_memcpy(p2p.dev_addr, wpa_s->global->p2p_dev_addr, ETH_ALEN);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004334 p2p.dev_name = wpa_s->conf->device_name;
4335 p2p.manufacturer = wpa_s->conf->manufacturer;
4336 p2p.model_name = wpa_s->conf->model_name;
4337 p2p.model_number = wpa_s->conf->model_number;
4338 p2p.serial_number = wpa_s->conf->serial_number;
4339 if (wpa_s->wps) {
4340 os_memcpy(p2p.uuid, wpa_s->wps->uuid, 16);
4341 p2p.config_methods = wpa_s->wps->config_methods;
4342 }
4343
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07004344 if (wpas_p2p_setup_channels(wpa_s, &p2p.channels, &p2p.cli_channels)) {
4345 wpa_printf(MSG_ERROR,
4346 "P2P: Failed to configure supported channel list");
4347 return -1;
4348 }
4349
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004350 if (wpa_s->conf->p2p_listen_reg_class &&
4351 wpa_s->conf->p2p_listen_channel) {
4352 p2p.reg_class = wpa_s->conf->p2p_listen_reg_class;
4353 p2p.channel = wpa_s->conf->p2p_listen_channel;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004354 p2p.channel_forced = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004355 } else {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004356 /*
4357 * Pick one of the social channels randomly as the listen
4358 * channel.
4359 */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07004360 if (p2p_config_get_random_social(&p2p, &p2p.reg_class,
4361 &p2p.channel) != 0) {
Dmitry Shmidt1d755d02015-04-28 10:34:29 -07004362 wpa_printf(MSG_INFO,
4363 "P2P: No social channels supported by the driver - do not enable P2P");
4364 return 0;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07004365 }
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004366 p2p.channel_forced = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004367 }
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07004368 wpa_printf(MSG_DEBUG, "P2P: Own listen channel: %d:%d",
4369 p2p.reg_class, p2p.channel);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004370
4371 if (wpa_s->conf->p2p_oper_reg_class &&
4372 wpa_s->conf->p2p_oper_channel) {
4373 p2p.op_reg_class = wpa_s->conf->p2p_oper_reg_class;
4374 p2p.op_channel = wpa_s->conf->p2p_oper_channel;
4375 p2p.cfg_op_channel = 1;
4376 wpa_printf(MSG_DEBUG, "P2P: Configured operating channel: "
4377 "%d:%d", p2p.op_reg_class, p2p.op_channel);
4378
4379 } else {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004380 /*
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07004381 * Use random operation channel from 2.4 GHz band social
4382 * channels (1, 6, 11) or band 60 GHz social channel (2) if no
4383 * other preference is indicated.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004384 */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07004385 if (p2p_config_get_random_social(&p2p, &p2p.op_reg_class,
4386 &p2p.op_channel) != 0) {
4387 wpa_printf(MSG_ERROR,
4388 "P2P: Failed to select random social channel as operation channel");
4389 return -1;
4390 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004391 p2p.cfg_op_channel = 0;
4392 wpa_printf(MSG_DEBUG, "P2P: Random operating channel: "
4393 "%d:%d", p2p.op_reg_class, p2p.op_channel);
4394 }
Dmitry Shmidt44c95782013-05-17 09:51:35 -07004395
4396 if (wpa_s->conf->p2p_pref_chan && wpa_s->conf->num_p2p_pref_chan) {
4397 p2p.pref_chan = wpa_s->conf->p2p_pref_chan;
4398 p2p.num_pref_chan = wpa_s->conf->num_p2p_pref_chan;
4399 }
4400
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004401 if (wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
4402 os_memcpy(p2p.country, wpa_s->conf->country, 2);
4403 p2p.country[2] = 0x04;
4404 } else
4405 os_memcpy(p2p.country, "XX\x04", 3);
4406
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004407 os_memcpy(p2p.pri_dev_type, wpa_s->conf->device_type,
4408 WPS_DEV_TYPE_LEN);
4409
4410 p2p.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
4411 os_memcpy(p2p.sec_dev_type, wpa_s->conf->sec_device_type,
4412 p2p.num_sec_dev_types * WPS_DEV_TYPE_LEN);
4413
4414 p2p.concurrent_operations = !!(wpa_s->drv_flags &
4415 WPA_DRIVER_FLAGS_P2P_CONCURRENT);
4416
4417 p2p.max_peers = 100;
4418
4419 if (wpa_s->conf->p2p_ssid_postfix) {
4420 p2p.ssid_postfix_len =
4421 os_strlen(wpa_s->conf->p2p_ssid_postfix);
4422 if (p2p.ssid_postfix_len > sizeof(p2p.ssid_postfix))
4423 p2p.ssid_postfix_len = sizeof(p2p.ssid_postfix);
4424 os_memcpy(p2p.ssid_postfix, wpa_s->conf->p2p_ssid_postfix,
4425 p2p.ssid_postfix_len);
4426 }
4427
4428 p2p.p2p_intra_bss = wpa_s->conf->p2p_intra_bss;
4429
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004430 p2p.max_listen = wpa_s->max_remain_on_chan;
4431
Dmitry Shmidt2271d3f2014-06-23 12:16:31 -07004432 if (wpa_s->conf->p2p_passphrase_len >= 8 &&
4433 wpa_s->conf->p2p_passphrase_len <= 63)
4434 p2p.passphrase_len = wpa_s->conf->p2p_passphrase_len;
4435 else
4436 p2p.passphrase_len = 8;
4437
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004438 global->p2p = p2p_init(&p2p);
4439 if (global->p2p == NULL)
4440 return -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004441 global->p2p_init_wpa_s = wpa_s;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004442
4443 for (i = 0; i < MAX_WPS_VENDOR_EXT; i++) {
4444 if (wpa_s->conf->wps_vendor_ext[i] == NULL)
4445 continue;
4446 p2p_add_wps_vendor_extension(
4447 global->p2p, wpa_s->conf->wps_vendor_ext[i]);
4448 }
4449
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004450 p2p_set_no_go_freq(global->p2p, &wpa_s->conf->p2p_no_go_freq);
4451
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004452 return 0;
4453}
4454
4455
4456/**
4457 * wpas_p2p_deinit - Deinitialize per-interface P2P data
4458 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
4459 *
4460 * This function deinitialize per-interface P2P data.
4461 */
4462void wpas_p2p_deinit(struct wpa_supplicant *wpa_s)
4463{
4464 if (wpa_s->driver && wpa_s->drv_priv)
4465 wpa_drv_probe_req_report(wpa_s, 0);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004466
4467 if (wpa_s->go_params) {
4468 /* Clear any stored provisioning info */
4469 p2p_clear_provisioning_info(
4470 wpa_s->global->p2p,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004471 wpa_s->go_params->peer_device_addr);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004472 }
4473
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004474 os_free(wpa_s->go_params);
4475 wpa_s->go_params = NULL;
Dmitry Shmidt684785c2014-05-12 13:34:29 -07004476 eloop_cancel_timeout(wpas_p2p_psk_failure_removal, wpa_s, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004477 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
4478 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
4479 wpa_s->p2p_long_listen = 0;
4480 eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
4481 eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
4482 wpas_p2p_remove_pending_group_interface(wpa_s);
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08004483 eloop_cancel_timeout(wpas_p2p_group_freq_conflict, wpa_s, NULL);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08004484 wpas_p2p_listen_work_done(wpa_s);
4485 if (wpa_s->p2p_send_action_work) {
4486 os_free(wpa_s->p2p_send_action_work->ctx);
4487 radio_work_done(wpa_s->p2p_send_action_work);
4488 wpa_s->p2p_send_action_work = NULL;
4489 }
4490 eloop_cancel_timeout(wpas_p2p_send_action_work_timeout, wpa_s, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004491
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004492 wpabuf_free(wpa_s->p2p_oob_dev_pw);
4493 wpa_s->p2p_oob_dev_pw = NULL;
4494
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004495 os_free(wpa_s->p2p_group_common_freqs);
4496 wpa_s->p2p_group_common_freqs = NULL;
4497 wpa_s->p2p_group_common_freqs_num = 0;
4498
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004499 /* TODO: remove group interface from the driver if this wpa_s instance
4500 * is on top of a P2P group interface */
4501}
4502
4503
4504/**
4505 * wpas_p2p_deinit_global - Deinitialize global P2P module
4506 * @global: Pointer to global data from wpa_supplicant_init()
4507 *
4508 * This function deinitializes the global (per device) P2P module.
4509 */
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004510static void wpas_p2p_deinit_global(struct wpa_global *global)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004511{
4512 struct wpa_supplicant *wpa_s, *tmp;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004513
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004514 wpa_s = global->ifaces;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004515
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07004516 wpas_p2p_service_flush(global->p2p_init_wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004517
4518 /* Remove remaining P2P group interfaces */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004519 while (wpa_s && wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE)
4520 wpa_s = wpa_s->next;
4521 while (wpa_s) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004522 tmp = global->ifaces;
4523 while (tmp &&
4524 (tmp == wpa_s ||
4525 tmp->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)) {
4526 tmp = tmp->next;
4527 }
4528 if (tmp == NULL)
4529 break;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004530 /* Disconnect from the P2P group and deinit the interface */
4531 wpas_p2p_disconnect(tmp);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004532 }
4533
4534 /*
4535 * Deinit GO data on any possibly remaining interface (if main
4536 * interface is used as GO).
4537 */
4538 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
4539 if (wpa_s->ap_iface)
4540 wpas_p2p_group_deinit(wpa_s);
4541 }
4542
4543 p2p_deinit(global->p2p);
4544 global->p2p = NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004545 global->p2p_init_wpa_s = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004546}
4547
4548
4549static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s)
4550{
Dmitry Shmidt34af3062013-07-11 10:46:32 -07004551 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE) &&
4552 wpa_s->conf->p2p_no_group_iface)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004553 return 0; /* separate interface disabled per configuration */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004554 if (wpa_s->drv_flags &
4555 (WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE |
4556 WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P))
4557 return 1; /* P2P group requires a new interface in every case
4558 */
4559 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CONCURRENT))
4560 return 0; /* driver does not support concurrent operations */
4561 if (wpa_s->global->ifaces->next)
4562 return 1; /* more that one interface already in use */
4563 if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
4564 return 1; /* this interface is already in use */
4565 return 0;
4566}
4567
4568
4569static int wpas_p2p_start_go_neg(struct wpa_supplicant *wpa_s,
4570 const u8 *peer_addr,
4571 enum p2p_wps_method wps_method,
4572 int go_intent, const u8 *own_interface_addr,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004573 unsigned int force_freq, int persistent_group,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004574 struct wpa_ssid *ssid, unsigned int pref_freq)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004575{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004576 if (persistent_group && wpa_s->conf->persistent_reconnect)
4577 persistent_group = 2;
4578
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004579 /*
4580 * Increase GO config timeout if HT40 is used since it takes some time
4581 * to scan channels for coex purposes before the BSS can be started.
4582 */
4583 p2p_set_config_timeout(wpa_s->global->p2p,
4584 wpa_s->p2p_go_ht40 ? 255 : 100, 20);
4585
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004586 return p2p_connect(wpa_s->global->p2p, peer_addr, wps_method,
4587 go_intent, own_interface_addr, force_freq,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004588 persistent_group, ssid ? ssid->ssid : NULL,
4589 ssid ? ssid->ssid_len : 0,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004590 wpa_s->p2p_pd_before_go_neg, pref_freq,
4591 wps_method == WPS_NFC ? wpa_s->p2p_oob_dev_pw_id :
4592 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004593}
4594
4595
4596static int wpas_p2p_auth_go_neg(struct wpa_supplicant *wpa_s,
4597 const u8 *peer_addr,
4598 enum p2p_wps_method wps_method,
4599 int go_intent, const u8 *own_interface_addr,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004600 unsigned int force_freq, int persistent_group,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004601 struct wpa_ssid *ssid, unsigned int pref_freq)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004602{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004603 if (persistent_group && wpa_s->conf->persistent_reconnect)
4604 persistent_group = 2;
4605
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004606 return p2p_authorize(wpa_s->global->p2p, peer_addr, wps_method,
4607 go_intent, own_interface_addr, force_freq,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004608 persistent_group, ssid ? ssid->ssid : NULL,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004609 ssid ? ssid->ssid_len : 0, pref_freq,
4610 wps_method == WPS_NFC ? wpa_s->p2p_oob_dev_pw_id :
4611 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004612}
4613
4614
4615static void wpas_p2p_check_join_scan_limit(struct wpa_supplicant *wpa_s)
4616{
4617 wpa_s->p2p_join_scan_count++;
4618 wpa_printf(MSG_DEBUG, "P2P: Join scan attempt %d",
4619 wpa_s->p2p_join_scan_count);
4620 if (wpa_s->p2p_join_scan_count > P2P_MAX_JOIN_SCAN_ATTEMPTS) {
4621 wpa_printf(MSG_DEBUG, "P2P: Failed to find GO " MACSTR
4622 " for join operationg - stop join attempt",
4623 MAC2STR(wpa_s->pending_join_iface_addr));
4624 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004625 if (wpa_s->p2p_auto_pd) {
4626 wpa_s->p2p_auto_pd = 0;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07004627 wpa_msg_global(wpa_s, MSG_INFO,
4628 P2P_EVENT_PROV_DISC_FAILURE
4629 " p2p_dev_addr=" MACSTR " status=N/A",
4630 MAC2STR(wpa_s->pending_join_dev_addr));
Dmitry Shmidt04949592012-07-19 12:16:46 -07004631 return;
4632 }
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07004633 wpa_msg_global(wpa_s->parent, MSG_INFO,
4634 P2P_EVENT_GROUP_FORMATION_FAILURE);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004635 wpas_notify_p2p_group_formation_failure(wpa_s, "");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004636 }
4637}
4638
4639
Dmitry Shmidt04949592012-07-19 12:16:46 -07004640static int wpas_check_freq_conflict(struct wpa_supplicant *wpa_s, int freq)
4641{
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004642 int res;
4643 unsigned int num, i;
4644 struct wpa_used_freq_data *freqs;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004645
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004646 if (wpas_p2p_num_unused_channels(wpa_s) > 0) {
4647 /* Multiple channels are supported and not all are in use */
Dmitry Shmidt04949592012-07-19 12:16:46 -07004648 return 0;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004649 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004650
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004651 freqs = os_calloc(wpa_s->num_multichan_concurrent,
4652 sizeof(struct wpa_used_freq_data));
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004653 if (!freqs)
4654 return 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004655
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004656 num = wpas_p2p_valid_oper_freqs(wpa_s, freqs,
4657 wpa_s->num_multichan_concurrent);
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004658
4659 for (i = 0; i < num; i++) {
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004660 if (freqs[i].freq == freq) {
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004661 wpa_printf(MSG_DEBUG, "P2P: Frequency %d MHz in use by another virtual interface and can be used",
4662 freq);
4663 res = 0;
4664 goto exit_free;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004665 }
4666 }
4667
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004668 wpa_printf(MSG_DEBUG, "P2P: No valid operating frequencies");
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004669 res = 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004670
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07004671exit_free:
4672 os_free(freqs);
4673 return res;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004674}
4675
4676
4677static int wpas_p2p_peer_go(struct wpa_supplicant *wpa_s,
4678 const u8 *peer_dev_addr)
4679{
4680 struct wpa_bss *bss;
4681 int updated;
4682
4683 bss = wpa_bss_get_p2p_dev_addr(wpa_s, peer_dev_addr);
4684 if (bss == NULL)
4685 return -1;
4686 if (bss->last_update_idx < wpa_s->bss_update_idx) {
4687 wpa_printf(MSG_DEBUG, "P2P: Peer BSS entry not updated in the "
4688 "last scan");
4689 return 0;
4690 }
4691
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08004692 updated = os_reltime_before(&wpa_s->p2p_auto_started,
4693 &bss->last_update);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004694 wpa_printf(MSG_DEBUG, "P2P: Current BSS entry for peer updated at "
4695 "%ld.%06ld (%supdated in last scan)",
4696 bss->last_update.sec, bss->last_update.usec,
4697 updated ? "": "not ");
4698
4699 return updated;
4700}
4701
4702
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004703static void wpas_p2p_scan_res_join(struct wpa_supplicant *wpa_s,
4704 struct wpa_scan_results *scan_res)
4705{
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004706 struct wpa_bss *bss = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004707 int freq;
4708 u8 iface_addr[ETH_ALEN];
Dmitry Shmidt04949592012-07-19 12:16:46 -07004709
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004710 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
4711
4712 if (wpa_s->global->p2p_disabled)
4713 return;
4714
Dmitry Shmidt04949592012-07-19 12:16:46 -07004715 wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS) for %sjoin",
4716 scan_res ? (int) scan_res->num : -1,
4717 wpa_s->p2p_auto_join ? "auto_" : "");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004718
4719 if (scan_res)
4720 wpas_p2p_scan_res_handler(wpa_s, scan_res);
4721
Dmitry Shmidt04949592012-07-19 12:16:46 -07004722 if (wpa_s->p2p_auto_pd) {
4723 int join = wpas_p2p_peer_go(wpa_s,
4724 wpa_s->pending_join_dev_addr);
4725 if (join == 0 &&
4726 wpa_s->auto_pd_scan_retry < P2P_AUTO_PD_SCAN_ATTEMPTS) {
4727 wpa_s->auto_pd_scan_retry++;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07004728 bss = wpa_bss_get_bssid_latest(
4729 wpa_s, wpa_s->pending_join_dev_addr);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004730 if (bss) {
4731 freq = bss->freq;
4732 wpa_printf(MSG_DEBUG, "P2P: Scan retry %d for "
4733 "the peer " MACSTR " at %d MHz",
4734 wpa_s->auto_pd_scan_retry,
4735 MAC2STR(wpa_s->
4736 pending_join_dev_addr),
4737 freq);
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004738 wpas_p2p_join_scan_req(wpa_s, freq, NULL, 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004739 return;
4740 }
4741 }
4742
4743 if (join < 0)
4744 join = 0;
4745
4746 wpa_s->p2p_auto_pd = 0;
4747 wpa_s->pending_pd_use = join ? AUTO_PD_JOIN : AUTO_PD_GO_NEG;
4748 wpa_printf(MSG_DEBUG, "P2P: Auto PD with " MACSTR " join=%d",
4749 MAC2STR(wpa_s->pending_join_dev_addr), join);
4750 if (p2p_prov_disc_req(wpa_s->global->p2p,
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004751 wpa_s->pending_join_dev_addr, NULL,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004752 wpa_s->pending_pd_config_methods, join,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004753 0, wpa_s->user_initiated_pd) < 0) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07004754 wpa_s->p2p_auto_pd = 0;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07004755 wpa_msg_global(wpa_s, MSG_INFO,
4756 P2P_EVENT_PROV_DISC_FAILURE
4757 " p2p_dev_addr=" MACSTR " status=N/A",
4758 MAC2STR(wpa_s->pending_join_dev_addr));
Dmitry Shmidt04949592012-07-19 12:16:46 -07004759 }
4760 return;
4761 }
4762
4763 if (wpa_s->p2p_auto_join) {
4764 int join = wpas_p2p_peer_go(wpa_s,
4765 wpa_s->pending_join_dev_addr);
4766 if (join < 0) {
4767 wpa_printf(MSG_DEBUG, "P2P: Peer was not found to be "
4768 "running a GO -> use GO Negotiation");
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004769 wpa_msg_global(wpa_s->parent, MSG_INFO,
4770 P2P_EVENT_FALLBACK_TO_GO_NEG
4771 "reason=peer-not-running-GO");
Dmitry Shmidt04949592012-07-19 12:16:46 -07004772 wpas_p2p_connect(wpa_s, wpa_s->pending_join_dev_addr,
4773 wpa_s->p2p_pin, wpa_s->p2p_wps_method,
4774 wpa_s->p2p_persistent_group, 0, 0, 0,
4775 wpa_s->p2p_go_intent,
4776 wpa_s->p2p_connect_freq,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08004777 wpa_s->p2p_go_vht_center_freq2,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004778 wpa_s->p2p_persistent_id,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004779 wpa_s->p2p_pd_before_go_neg,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004780 wpa_s->p2p_go_ht40,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08004781 wpa_s->p2p_go_vht,
Dmitry Shmidtde47be72016-01-07 12:52:55 -08004782 wpa_s->p2p_go_max_oper_chwidth,
4783 NULL, 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004784 return;
4785 }
4786
4787 wpa_printf(MSG_DEBUG, "P2P: Peer was found running GO%s -> "
4788 "try to join the group", join ? "" :
4789 " in older scan");
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004790 if (!join) {
4791 wpa_msg_global(wpa_s->parent, MSG_INFO,
4792 P2P_EVENT_FALLBACK_TO_GO_NEG_ENABLED);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004793 wpa_s->p2p_fallback_to_go_neg = 1;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004794 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004795 }
4796
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004797 freq = p2p_get_oper_freq(wpa_s->global->p2p,
4798 wpa_s->pending_join_iface_addr);
4799 if (freq < 0 &&
4800 p2p_get_interface_addr(wpa_s->global->p2p,
4801 wpa_s->pending_join_dev_addr,
4802 iface_addr) == 0 &&
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07004803 os_memcmp(iface_addr, wpa_s->pending_join_dev_addr, ETH_ALEN) != 0
4804 && !wpa_bss_get_bssid(wpa_s, wpa_s->pending_join_iface_addr)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004805 wpa_printf(MSG_DEBUG, "P2P: Overwrite pending interface "
4806 "address for join from " MACSTR " to " MACSTR
4807 " based on newly discovered P2P peer entry",
4808 MAC2STR(wpa_s->pending_join_iface_addr),
4809 MAC2STR(iface_addr));
4810 os_memcpy(wpa_s->pending_join_iface_addr, iface_addr,
4811 ETH_ALEN);
4812
4813 freq = p2p_get_oper_freq(wpa_s->global->p2p,
4814 wpa_s->pending_join_iface_addr);
4815 }
4816 if (freq >= 0) {
4817 wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
4818 "from P2P peer table: %d MHz", freq);
4819 }
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004820 if (wpa_s->p2p_join_ssid_len) {
4821 wpa_printf(MSG_DEBUG, "P2P: Trying to find target GO BSS entry based on BSSID "
4822 MACSTR " and SSID %s",
4823 MAC2STR(wpa_s->pending_join_iface_addr),
4824 wpa_ssid_txt(wpa_s->p2p_join_ssid,
4825 wpa_s->p2p_join_ssid_len));
4826 bss = wpa_bss_get(wpa_s, wpa_s->pending_join_iface_addr,
4827 wpa_s->p2p_join_ssid,
4828 wpa_s->p2p_join_ssid_len);
Dmitry Shmidtde47be72016-01-07 12:52:55 -08004829 } else if (!bss) {
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004830 wpa_printf(MSG_DEBUG, "P2P: Trying to find target GO BSS entry based on BSSID "
4831 MACSTR, MAC2STR(wpa_s->pending_join_iface_addr));
4832 bss = wpa_bss_get_bssid_latest(wpa_s,
4833 wpa_s->pending_join_iface_addr);
4834 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004835 if (bss) {
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07004836 u8 dev_addr[ETH_ALEN];
4837
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004838 freq = bss->freq;
4839 wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
Dmitry Shmidt051af732013-10-22 13:52:46 -07004840 "from BSS table: %d MHz (SSID %s)", freq,
4841 wpa_ssid_txt(bss->ssid, bss->ssid_len));
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07004842 if (p2p_parse_dev_addr((const u8 *) (bss + 1), bss->ie_len,
4843 dev_addr) == 0 &&
4844 os_memcmp(wpa_s->pending_join_dev_addr,
4845 wpa_s->pending_join_iface_addr, ETH_ALEN) == 0 &&
4846 os_memcmp(dev_addr, wpa_s->pending_join_dev_addr,
4847 ETH_ALEN) != 0) {
4848 wpa_printf(MSG_DEBUG,
4849 "P2P: Update target GO device address based on BSS entry: " MACSTR " (was " MACSTR ")",
4850 MAC2STR(dev_addr),
4851 MAC2STR(wpa_s->pending_join_dev_addr));
4852 os_memcpy(wpa_s->pending_join_dev_addr, dev_addr,
4853 ETH_ALEN);
4854 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004855 }
4856 if (freq > 0) {
4857 u16 method;
4858
Dmitry Shmidt04949592012-07-19 12:16:46 -07004859 if (wpas_check_freq_conflict(wpa_s, freq) > 0) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07004860 wpa_msg_global(wpa_s->parent, MSG_INFO,
4861 P2P_EVENT_GROUP_FORMATION_FAILURE
4862 "reason=FREQ_CONFLICT");
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004863 wpas_notify_p2p_group_formation_failure(
4864 wpa_s, "FREQ_CONFLICT");
Dmitry Shmidt04949592012-07-19 12:16:46 -07004865 return;
4866 }
4867
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004868 wpa_printf(MSG_DEBUG, "P2P: Send Provision Discovery Request "
4869 "prior to joining an existing group (GO " MACSTR
4870 " freq=%u MHz)",
4871 MAC2STR(wpa_s->pending_join_dev_addr), freq);
4872 wpa_s->pending_pd_before_join = 1;
4873
4874 switch (wpa_s->pending_join_wps_method) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004875 case WPS_PIN_DISPLAY:
4876 method = WPS_CONFIG_KEYPAD;
4877 break;
4878 case WPS_PIN_KEYPAD:
4879 method = WPS_CONFIG_DISPLAY;
4880 break;
4881 case WPS_PBC:
4882 method = WPS_CONFIG_PUSHBUTTON;
4883 break;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004884 case WPS_P2PS:
4885 method = WPS_CONFIG_P2PS;
4886 break;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004887 default:
4888 method = 0;
4889 break;
4890 }
4891
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004892 if ((p2p_get_provisioning_info(wpa_s->global->p2p,
4893 wpa_s->pending_join_dev_addr) ==
4894 method)) {
4895 /*
4896 * We have already performed provision discovery for
4897 * joining the group. Proceed directly to join
4898 * operation without duplicated provision discovery. */
4899 wpa_printf(MSG_DEBUG, "P2P: Provision discovery "
4900 "with " MACSTR " already done - proceed to "
4901 "join",
4902 MAC2STR(wpa_s->pending_join_dev_addr));
4903 wpa_s->pending_pd_before_join = 0;
4904 goto start;
4905 }
4906
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004907 if (p2p_prov_disc_req(wpa_s->global->p2p,
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004908 wpa_s->pending_join_dev_addr,
4909 NULL, method, 1,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004910 freq, wpa_s->user_initiated_pd) < 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004911 wpa_printf(MSG_DEBUG, "P2P: Failed to send Provision "
4912 "Discovery Request before joining an "
4913 "existing group");
4914 wpa_s->pending_pd_before_join = 0;
4915 goto start;
4916 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004917 return;
4918 }
4919
4920 wpa_printf(MSG_DEBUG, "P2P: Failed to find BSS/GO - try again later");
4921 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
4922 eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
4923 wpas_p2p_check_join_scan_limit(wpa_s);
4924 return;
4925
4926start:
4927 /* Start join operation immediately */
Dmitry Shmidtde47be72016-01-07 12:52:55 -08004928 wpas_p2p_join_start(wpa_s, 0, wpa_s->p2p_join_ssid,
4929 wpa_s->p2p_join_ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004930}
4931
4932
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004933static void wpas_p2p_join_scan_req(struct wpa_supplicant *wpa_s, int freq,
4934 const u8 *ssid, size_t ssid_len)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004935{
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004936 int ret;
4937 struct wpa_driver_scan_params params;
4938 struct wpabuf *wps_ie, *ies;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004939 size_t ielen;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004940 int freqs[2] = { 0, 0 };
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004941
4942 os_memset(&params, 0, sizeof(params));
4943
4944 /* P2P Wildcard SSID */
4945 params.num_ssids = 1;
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004946 if (ssid && ssid_len) {
4947 params.ssids[0].ssid = ssid;
4948 params.ssids[0].ssid_len = ssid_len;
4949 os_memcpy(wpa_s->p2p_join_ssid, ssid, ssid_len);
4950 wpa_s->p2p_join_ssid_len = ssid_len;
4951 } else {
4952 params.ssids[0].ssid = (u8 *) P2P_WILDCARD_SSID;
4953 params.ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
4954 wpa_s->p2p_join_ssid_len = 0;
4955 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004956
4957 wpa_s->wps->dev.p2p = 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004958 wps_ie = wps_build_probe_req_ie(DEV_PW_DEFAULT, &wpa_s->wps->dev,
4959 wpa_s->wps->uuid, WPS_REQ_ENROLLEE, 0,
4960 NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004961 if (wps_ie == NULL) {
4962 wpas_p2p_scan_res_join(wpa_s, NULL);
4963 return;
4964 }
4965
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004966 ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
4967 ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004968 if (ies == NULL) {
4969 wpabuf_free(wps_ie);
4970 wpas_p2p_scan_res_join(wpa_s, NULL);
4971 return;
4972 }
4973 wpabuf_put_buf(ies, wps_ie);
4974 wpabuf_free(wps_ie);
4975
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004976 p2p_scan_ie(wpa_s->global->p2p, ies, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004977
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004978 params.p2p_probe = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004979 params.extra_ies = wpabuf_head(ies);
4980 params.extra_ies_len = wpabuf_len(ies);
Dmitry Shmidt9e3f8ee2014-01-17 10:52:01 -08004981
4982 if (!freq) {
4983 int oper_freq;
4984 /*
4985 * If freq is not provided, check the operating freq of the GO
4986 * and use a single channel scan on if possible.
4987 */
4988 oper_freq = p2p_get_oper_freq(wpa_s->global->p2p,
4989 wpa_s->pending_join_iface_addr);
4990 if (oper_freq > 0)
4991 freq = oper_freq;
4992 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004993 if (freq > 0) {
4994 freqs[0] = freq;
4995 params.freqs = freqs;
4996 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004997
4998 /*
4999 * Run a scan to update BSS table and start Provision Discovery once
5000 * the new scan results become available.
5001 */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005002 ret = wpa_drv_scan(wpa_s, &params);
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005003 if (!ret) {
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08005004 os_get_reltime(&wpa_s->scan_trigger_time);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005005 wpa_s->scan_res_handler = wpas_p2p_scan_res_join;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08005006 wpa_s->own_scan_requested = 1;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07005007 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005008
5009 wpabuf_free(ies);
5010
5011 if (ret) {
5012 wpa_printf(MSG_DEBUG, "P2P: Failed to start scan for join - "
5013 "try again later");
5014 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
5015 eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
5016 wpas_p2p_check_join_scan_limit(wpa_s);
5017 }
5018}
5019
5020
Dmitry Shmidt04949592012-07-19 12:16:46 -07005021static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx)
5022{
5023 struct wpa_supplicant *wpa_s = eloop_ctx;
Dmitry Shmidt344abd32014-01-14 13:17:00 -08005024 wpas_p2p_join_scan_req(wpa_s, 0, NULL, 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005025}
5026
5027
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005028static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
Dmitry Shmidt04949592012-07-19 12:16:46 -07005029 const u8 *dev_addr, enum p2p_wps_method wps_method,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08005030 int auto_join, int op_freq,
5031 const u8 *ssid, size_t ssid_len)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005032{
5033 wpa_printf(MSG_DEBUG, "P2P: Request to join existing group (iface "
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08005034 MACSTR " dev " MACSTR " op_freq=%d)%s",
5035 MAC2STR(iface_addr), MAC2STR(dev_addr), op_freq,
Dmitry Shmidt04949592012-07-19 12:16:46 -07005036 auto_join ? " (auto_join)" : "");
Dmitry Shmidt344abd32014-01-14 13:17:00 -08005037 if (ssid && ssid_len) {
5038 wpa_printf(MSG_DEBUG, "P2P: Group SSID specified: %s",
5039 wpa_ssid_txt(ssid, ssid_len));
5040 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005041
Dmitry Shmidt04949592012-07-19 12:16:46 -07005042 wpa_s->p2p_auto_pd = 0;
5043 wpa_s->p2p_auto_join = !!auto_join;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005044 os_memcpy(wpa_s->pending_join_iface_addr, iface_addr, ETH_ALEN);
5045 os_memcpy(wpa_s->pending_join_dev_addr, dev_addr, ETH_ALEN);
5046 wpa_s->pending_join_wps_method = wps_method;
5047
5048 /* Make sure we are not running find during connection establishment */
5049 wpas_p2p_stop_find(wpa_s);
5050
5051 wpa_s->p2p_join_scan_count = 0;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08005052 wpas_p2p_join_scan_req(wpa_s, op_freq, ssid, ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005053 return 0;
5054}
5055
5056
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08005057static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s, int freq,
5058 const u8 *ssid, size_t ssid_len)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005059{
5060 struct wpa_supplicant *group;
5061 struct p2p_go_neg_results res;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005062 struct wpa_bss *bss;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005063
5064 group = wpas_p2p_get_group_iface(wpa_s, 0, 0);
5065 if (group == NULL)
5066 return -1;
5067 if (group != wpa_s) {
5068 os_memcpy(group->p2p_pin, wpa_s->p2p_pin,
5069 sizeof(group->p2p_pin));
5070 group->p2p_wps_method = wpa_s->p2p_wps_method;
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08005071 } else {
5072 /*
5073 * Need to mark the current interface for p2p_group_formation
5074 * when a separate group interface is not used. This is needed
5075 * to allow p2p_cancel stop a pending p2p_connect-join.
5076 * wpas_p2p_init_group_interface() addresses this for the case
5077 * where a separate group interface is used.
5078 */
5079 wpa_s->global->p2p_group_formation = wpa_s;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005080 }
5081
5082 group->p2p_in_provisioning = 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005083 group->p2p_fallback_to_go_neg = wpa_s->p2p_fallback_to_go_neg;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005084
5085 os_memset(&res, 0, sizeof(res));
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08005086 os_memcpy(res.peer_device_addr, wpa_s->pending_join_dev_addr, ETH_ALEN);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005087 os_memcpy(res.peer_interface_addr, wpa_s->pending_join_iface_addr,
5088 ETH_ALEN);
5089 res.wps_method = wpa_s->pending_join_wps_method;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08005090 if (freq && ssid && ssid_len) {
5091 res.freq = freq;
5092 res.ssid_len = ssid_len;
5093 os_memcpy(res.ssid, ssid, ssid_len);
5094 } else {
Dmitry Shmidtde47be72016-01-07 12:52:55 -08005095 if (ssid && ssid_len) {
5096 bss = wpa_bss_get(wpa_s, wpa_s->pending_join_iface_addr,
5097 ssid, ssid_len);
5098 } else {
5099 bss = wpa_bss_get_bssid_latest(
5100 wpa_s, wpa_s->pending_join_iface_addr);
5101 }
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08005102 if (bss) {
5103 res.freq = bss->freq;
5104 res.ssid_len = bss->ssid_len;
5105 os_memcpy(res.ssid, bss->ssid, bss->ssid_len);
5106 wpa_printf(MSG_DEBUG, "P2P: Join target GO operating frequency from BSS table: %d MHz (SSID %s)",
5107 bss->freq,
5108 wpa_ssid_txt(bss->ssid, bss->ssid_len));
Dmitry Shmidtde47be72016-01-07 12:52:55 -08005109 } else if (ssid && ssid_len) {
5110 res.ssid_len = ssid_len;
5111 os_memcpy(res.ssid, ssid, ssid_len);
5112 wpa_printf(MSG_DEBUG, "P2P: Join target GO (SSID %s)",
5113 wpa_ssid_txt(ssid, ssid_len));
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08005114 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07005115 }
5116
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005117 if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
5118 wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel prior to "
5119 "starting client");
5120 wpa_drv_cancel_remain_on_channel(wpa_s);
5121 wpa_s->off_channel_freq = 0;
5122 wpa_s->roc_waiting_drv_freq = 0;
5123 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005124 wpas_start_wps_enrollee(group, &res);
5125
5126 /*
5127 * Allow a longer timeout for join-a-running-group than normal 15
5128 * second group formation timeout since the GO may not have authorized
5129 * our connection yet.
5130 */
5131 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
5132 eloop_register_timeout(60, 0, wpas_p2p_group_formation_timeout,
5133 wpa_s, NULL);
5134
5135 return 0;
5136}
5137
5138
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005139static int wpas_p2p_setup_freqs(struct wpa_supplicant *wpa_s, int freq,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005140 int *force_freq, int *pref_freq, int go,
5141 unsigned int *pref_freq_list,
5142 unsigned int *num_pref_freq)
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005143{
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005144 struct wpa_used_freq_data *freqs;
5145 int res, best_freq, num_unused;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005146 unsigned int freq_in_use = 0, num, i, max_pref_freq;
5147
5148 max_pref_freq = *num_pref_freq;
5149 *num_pref_freq = 0;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005150
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005151 freqs = os_calloc(wpa_s->num_multichan_concurrent,
5152 sizeof(struct wpa_used_freq_data));
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005153 if (!freqs)
5154 return -1;
5155
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005156 num = wpas_p2p_valid_oper_freqs(wpa_s, freqs,
5157 wpa_s->num_multichan_concurrent);
5158
5159 /*
5160 * It is possible that the total number of used frequencies is bigger
5161 * than the number of frequencies used for P2P, so get the system wide
5162 * number of unused frequencies.
5163 */
5164 num_unused = wpas_p2p_num_unused_channels(wpa_s);
5165
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07005166 wpa_printf(MSG_DEBUG,
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005167 "P2P: Setup freqs: freq=%d num_MCC=%d shared_freqs=%u num_unused=%d",
5168 freq, wpa_s->num_multichan_concurrent, num, num_unused);
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005169
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005170 if (freq > 0) {
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005171 int ret;
5172 if (go)
5173 ret = p2p_supported_freq(wpa_s->global->p2p, freq);
5174 else
5175 ret = p2p_supported_freq_cli(wpa_s->global->p2p, freq);
5176 if (!ret) {
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08005177 if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) &&
5178 ieee80211_is_dfs(freq)) {
5179 /*
5180 * If freq is a DFS channel and DFS is offloaded
5181 * to the driver, allow P2P GO to use it.
5182 */
5183 wpa_printf(MSG_DEBUG,
5184 "P2P: The forced channel for GO (%u MHz) is DFS, and DFS is offloaded to the driver",
5185 freq);
5186 } else {
5187 wpa_printf(MSG_DEBUG,
5188 "P2P: The forced channel (%u MHz) is not supported for P2P uses",
5189 freq);
5190 res = -3;
5191 goto exit_free;
5192 }
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005193 }
5194
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005195 for (i = 0; i < num; i++) {
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005196 if (freqs[i].freq == freq)
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005197 freq_in_use = 1;
5198 }
5199
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005200 if (num_unused <= 0 && !freq_in_use) {
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005201 wpa_printf(MSG_DEBUG, "P2P: Cannot start P2P group on %u MHz as there are no available channels",
5202 freq);
5203 res = -2;
5204 goto exit_free;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005205 }
5206 wpa_printf(MSG_DEBUG, "P2P: Trying to force us to use the "
5207 "requested channel (%u MHz)", freq);
5208 *force_freq = freq;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005209 goto exit_ok;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005210 }
5211
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005212 best_freq = wpas_p2p_pick_best_used_freq(wpa_s, freqs, num);
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005213
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005214 if (!wpa_s->conf->num_p2p_pref_chan && *pref_freq == 0) {
5215 enum wpa_driver_if_type iface_type;
5216
5217 if (go)
5218 iface_type = WPA_IF_P2P_GO;
5219 else
5220 iface_type = WPA_IF_P2P_CLIENT;
5221
5222 wpa_printf(MSG_DEBUG, "P2P: best_freq=%d, go=%d",
5223 best_freq, go);
5224
5225 res = wpa_drv_get_pref_freq_list(wpa_s, iface_type,
5226 &max_pref_freq,
5227 pref_freq_list);
5228 if (!res && max_pref_freq > 0) {
5229 *num_pref_freq = max_pref_freq;
5230 i = 0;
5231 while (wpas_p2p_disallowed_freq(wpa_s->global,
5232 pref_freq_list[i]) &&
5233 i < *num_pref_freq) {
5234 wpa_printf(MSG_DEBUG,
5235 "P2P: preferred_freq_list[%d]=%d is disallowed",
5236 i, pref_freq_list[i]);
5237 i++;
5238 }
5239 if (i != *num_pref_freq) {
5240 best_freq = pref_freq_list[i];
5241 wpa_printf(MSG_DEBUG,
5242 "P2P: Using preferred_freq_list[%d]=%d",
5243 i, best_freq);
5244 } else {
5245 wpa_printf(MSG_DEBUG,
5246 "P2P: All driver preferred frequencies are disallowed for P2P use");
5247 *num_pref_freq = 0;
5248 }
5249 } else {
5250 wpa_printf(MSG_DEBUG,
5251 "P2P: No preferred frequency list available");
5252 }
5253 }
5254
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005255 /* We have a candidate frequency to use */
5256 if (best_freq > 0) {
5257 if (*pref_freq == 0 && num_unused > 0) {
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08005258 wpa_printf(MSG_DEBUG, "P2P: Try to prefer a frequency (%u MHz) we are already using",
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005259 best_freq);
5260 *pref_freq = best_freq;
Dmitry Shmidt51a47d52013-09-10 10:52:57 -07005261 } else {
5262 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 -07005263 best_freq);
5264 *force_freq = best_freq;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005265 }
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005266 } else if (num_unused > 0) {
5267 wpa_printf(MSG_DEBUG,
5268 "P2P: Current operating channels are not available for P2P. Try to use another channel");
5269 *force_freq = 0;
5270 } else {
5271 wpa_printf(MSG_DEBUG,
5272 "P2P: All channels are in use and none of them are P2P enabled. Cannot start P2P group");
5273 res = -2;
5274 goto exit_free;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005275 }
5276
5277exit_ok:
5278 res = 0;
5279exit_free:
5280 os_free(freqs);
5281 return res;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005282}
5283
5284
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005285/**
5286 * wpas_p2p_connect - Request P2P Group Formation to be started
5287 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
5288 * @peer_addr: Address of the peer P2P Device
5289 * @pin: PIN to use during provisioning or %NULL to indicate PBC mode
5290 * @persistent_group: Whether to create a persistent group
Dmitry Shmidt04949592012-07-19 12:16:46 -07005291 * @auto_join: Whether to select join vs. GO Negotiation automatically
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005292 * @join: Whether to join an existing group (as a client) instead of starting
5293 * Group Owner negotiation; @peer_addr is BSSID in that case
5294 * @auth: Whether to only authorize the connection instead of doing that and
5295 * initiating Group Owner negotiation
5296 * @go_intent: GO Intent or -1 to use default
5297 * @freq: Frequency for the group or 0 for auto-selection
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005298 * @freq2: Center frequency of segment 1 for the GO operating in VHT 80P80 mode
Dmitry Shmidt04949592012-07-19 12:16:46 -07005299 * @persistent_id: Persistent group credentials to use for forcing GO
5300 * parameters or -1 to generate new values (SSID/passphrase)
5301 * @pd: Whether to send Provision Discovery prior to GO Negotiation as an
5302 * interoperability workaround when initiating group formation
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005303 * @ht40: Start GO with 40 MHz channel width
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005304 * @vht: Start GO with VHT support
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005305 * @vht_chwidth: Channel width supported by GO operating with VHT support
5306 * (VHT_CHANWIDTH_*).
Dmitry Shmidtde47be72016-01-07 12:52:55 -08005307 * @group_ssid: Specific Group SSID for join or %NULL if not set
5308 * @group_ssid_len: Length of @group_ssid in octets
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005309 * Returns: 0 or new PIN (if pin was %NULL) on success, -1 on unspecified
5310 * failure, -2 on failure due to channel not currently available,
5311 * -3 if forced channel is not supported
5312 */
5313int wpas_p2p_connect(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
5314 const char *pin, enum p2p_wps_method wps_method,
Dmitry Shmidt04949592012-07-19 12:16:46 -07005315 int persistent_group, int auto_join, int join, int auth,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005316 int go_intent, int freq, unsigned int vht_center_freq2,
5317 int persistent_id, int pd, int ht40, int vht,
Dmitry Shmidtde47be72016-01-07 12:52:55 -08005318 unsigned int vht_chwidth, const u8 *group_ssid,
5319 size_t group_ssid_len)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005320{
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005321 int force_freq = 0, pref_freq = 0;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005322 int ret = 0, res;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005323 enum wpa_driver_if_type iftype;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005324 const u8 *if_addr;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005325 struct wpa_ssid *ssid = NULL;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005326 unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS], size;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005327
5328 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
5329 return -1;
5330
Dmitry Shmidt04949592012-07-19 12:16:46 -07005331 if (persistent_id >= 0) {
5332 ssid = wpa_config_get_network(wpa_s->conf, persistent_id);
5333 if (ssid == NULL || ssid->disabled != 2 ||
5334 ssid->mode != WPAS_MODE_P2P_GO)
5335 return -1;
5336 }
5337
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07005338 os_free(wpa_s->global->add_psk);
5339 wpa_s->global->add_psk = NULL;
5340
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08005341 wpa_s->global->p2p_fail_on_wps_complete = 0;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005342 wpa_s->global->pending_p2ps_group = 0;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005343 wpa_s->global->pending_p2ps_group_freq = 0;
5344 wpa_s->p2ps_method_config_any = 0;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08005345
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005346 if (go_intent < 0)
5347 go_intent = wpa_s->conf->p2p_go_intent;
5348
5349 if (!auth)
5350 wpa_s->p2p_long_listen = 0;
5351
5352 wpa_s->p2p_wps_method = wps_method;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005353 wpa_s->p2p_persistent_group = !!persistent_group;
5354 wpa_s->p2p_persistent_id = persistent_id;
5355 wpa_s->p2p_go_intent = go_intent;
5356 wpa_s->p2p_connect_freq = freq;
5357 wpa_s->p2p_fallback_to_go_neg = 0;
5358 wpa_s->p2p_pd_before_go_neg = !!pd;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005359 wpa_s->p2p_go_ht40 = !!ht40;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005360 wpa_s->p2p_go_vht = !!vht;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005361 wpa_s->p2p_go_vht_center_freq2 = vht_center_freq2;
5362 wpa_s->p2p_go_max_oper_chwidth = vht_chwidth;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005363
5364 if (pin)
5365 os_strlcpy(wpa_s->p2p_pin, pin, sizeof(wpa_s->p2p_pin));
5366 else if (wps_method == WPS_PIN_DISPLAY) {
5367 ret = wps_generate_pin();
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005368 res = os_snprintf(wpa_s->p2p_pin, sizeof(wpa_s->p2p_pin),
5369 "%08d", ret);
5370 if (os_snprintf_error(sizeof(wpa_s->p2p_pin), res))
5371 wpa_s->p2p_pin[sizeof(wpa_s->p2p_pin) - 1] = '\0';
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005372 wpa_printf(MSG_DEBUG, "P2P: Randomly generated PIN: %s",
5373 wpa_s->p2p_pin);
5374 } else
5375 wpa_s->p2p_pin[0] = '\0';
5376
Dmitry Shmidt04949592012-07-19 12:16:46 -07005377 if (join || auto_join) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005378 u8 iface_addr[ETH_ALEN], dev_addr[ETH_ALEN];
5379 if (auth) {
5380 wpa_printf(MSG_DEBUG, "P2P: Authorize invitation to "
5381 "connect a running group from " MACSTR,
5382 MAC2STR(peer_addr));
5383 os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
5384 return ret;
5385 }
5386 os_memcpy(dev_addr, peer_addr, ETH_ALEN);
5387 if (p2p_get_interface_addr(wpa_s->global->p2p, peer_addr,
5388 iface_addr) < 0) {
5389 os_memcpy(iface_addr, peer_addr, ETH_ALEN);
5390 p2p_get_dev_addr(wpa_s->global->p2p, peer_addr,
5391 dev_addr);
5392 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07005393 if (auto_join) {
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08005394 os_get_reltime(&wpa_s->p2p_auto_started);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005395 wpa_printf(MSG_DEBUG, "P2P: Auto join started at "
5396 "%ld.%06ld",
5397 wpa_s->p2p_auto_started.sec,
5398 wpa_s->p2p_auto_started.usec);
5399 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005400 wpa_s->user_initiated_pd = 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005401 if (wpas_p2p_join(wpa_s, iface_addr, dev_addr, wps_method,
Dmitry Shmidtde47be72016-01-07 12:52:55 -08005402 auto_join, freq,
5403 group_ssid, group_ssid_len) < 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005404 return -1;
5405 return ret;
5406 }
5407
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005408 size = P2P_MAX_PREF_CHANNELS;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005409 res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005410 go_intent == 15, pref_freq_list, &size);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005411 if (res)
5412 return res;
Dmitry Shmidta0d265f2013-11-19 13:13:41 -08005413 wpas_p2p_set_own_freq_preference(wpa_s,
5414 force_freq ? force_freq : pref_freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005415
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005416 p2p_set_own_pref_freq_list(wpa_s->global->p2p, pref_freq_list, size);
5417
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005418 wpa_s->create_p2p_iface = wpas_p2p_create_iface(wpa_s);
5419
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005420 if (wpa_s->create_p2p_iface) {
5421 /* Prepare to add a new interface for the group */
5422 iftype = WPA_IF_P2P_GROUP;
5423 if (go_intent == 15)
5424 iftype = WPA_IF_P2P_GO;
5425 if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
5426 wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
5427 "interface for the group");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005428 return -1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005429 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005430
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005431 if_addr = wpa_s->pending_interface_addr;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005432 } else {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005433 if_addr = wpa_s->own_addr;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005434 os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
5435 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005436
5437 if (auth) {
5438 if (wpas_p2p_auth_go_neg(wpa_s, peer_addr, wps_method,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005439 go_intent, if_addr,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005440 force_freq, persistent_group, ssid,
5441 pref_freq) < 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005442 return -1;
5443 return ret;
5444 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005445
5446 if (wpas_p2p_start_go_neg(wpa_s, peer_addr, wps_method,
5447 go_intent, if_addr, force_freq,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005448 persistent_group, ssid, pref_freq) < 0) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005449 if (wpa_s->create_p2p_iface)
5450 wpas_p2p_remove_pending_group_interface(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005451 return -1;
5452 }
5453 return ret;
5454}
5455
5456
5457/**
5458 * wpas_p2p_remain_on_channel_cb - Indication of remain-on-channel start
5459 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
5460 * @freq: Frequency of the channel in MHz
5461 * @duration: Duration of the stay on the channel in milliseconds
5462 *
5463 * This callback is called when the driver indicates that it has started the
5464 * requested remain-on-channel duration.
5465 */
5466void wpas_p2p_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
5467 unsigned int freq, unsigned int duration)
5468{
5469 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
5470 return;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005471 wpa_printf(MSG_DEBUG, "P2P: remain-on-channel callback (off_channel_freq=%u pending_listen_freq=%d roc_waiting_drv_freq=%d freq=%u duration=%u)",
5472 wpa_s->off_channel_freq, wpa_s->pending_listen_freq,
5473 wpa_s->roc_waiting_drv_freq, freq, duration);
5474 if (wpa_s->off_channel_freq &&
5475 wpa_s->off_channel_freq == wpa_s->pending_listen_freq) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005476 p2p_listen_cb(wpa_s->global->p2p, wpa_s->pending_listen_freq,
5477 wpa_s->pending_listen_duration);
5478 wpa_s->pending_listen_freq = 0;
Dmitry Shmidt7f93d6f2014-02-21 11:22:49 -08005479 } else {
5480 wpa_printf(MSG_DEBUG, "P2P: Ignore remain-on-channel callback (off_channel_freq=%u pending_listen_freq=%d freq=%u duration=%u)",
5481 wpa_s->off_channel_freq, wpa_s->pending_listen_freq,
5482 freq, duration);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005483 }
5484}
5485
5486
Jithu Jance57cea1a2014-08-20 10:22:04 -07005487int wpas_p2p_listen_start(struct wpa_supplicant *wpa_s, unsigned int timeout)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005488{
5489 /* Limit maximum Listen state time based on driver limitation. */
5490 if (timeout > wpa_s->max_remain_on_chan)
5491 timeout = wpa_s->max_remain_on_chan;
5492
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005493 return p2p_listen(wpa_s->global->p2p, timeout);
5494}
5495
5496
5497/**
5498 * wpas_p2p_cancel_remain_on_channel_cb - Remain-on-channel timeout
5499 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
5500 * @freq: Frequency of the channel in MHz
5501 *
5502 * This callback is called when the driver indicates that a remain-on-channel
5503 * operation has been completed, i.e., the duration on the requested channel
5504 * has timed out.
5505 */
5506void wpas_p2p_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
5507 unsigned int freq)
5508{
5509 wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel callback "
5510 "(p2p_long_listen=%d ms pending_action_tx=%p)",
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005511 wpa_s->p2p_long_listen, offchannel_pending_action_tx(wpa_s));
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08005512 wpas_p2p_listen_work_done(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005513 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
5514 return;
Jithu Jance57cea1a2014-08-20 10:22:04 -07005515 if (wpa_s->p2p_long_listen > 0)
5516 wpa_s->p2p_long_listen -= wpa_s->max_remain_on_chan;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005517 if (p2p_listen_end(wpa_s->global->p2p, freq) > 0)
5518 return; /* P2P module started a new operation */
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08005519 if (offchannel_pending_action_tx(wpa_s))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005520 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005521 if (wpa_s->p2p_long_listen > 0) {
5522 wpa_printf(MSG_DEBUG, "P2P: Continuing long Listen state");
5523 wpas_p2p_listen_start(wpa_s, wpa_s->p2p_long_listen);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07005524 } else {
5525 /*
5526 * When listen duration is over, stop listen & update p2p_state
5527 * to IDLE.
5528 */
5529 p2p_stop_listen(wpa_s->global->p2p);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005530 }
5531}
5532
5533
5534/**
5535 * wpas_p2p_group_remove - Remove a P2P group
5536 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
5537 * @ifname: Network interface name of the group interface or "*" to remove all
5538 * groups
5539 * Returns: 0 on success, -1 on failure
5540 *
5541 * This function is used to remove a P2P group. This can be used to disconnect
5542 * from a group in which the local end is a P2P Client or to end a P2P Group in
5543 * case the local end is the Group Owner. If a virtual network interface was
5544 * created for this group, that interface will be removed. Otherwise, only the
5545 * configured P2P group network will be removed from the interface.
5546 */
5547int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s, const char *ifname)
5548{
5549 struct wpa_global *global = wpa_s->global;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005550 struct wpa_supplicant *calling_wpa_s = wpa_s;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005551
5552 if (os_strcmp(ifname, "*") == 0) {
5553 struct wpa_supplicant *prev;
5554 wpa_s = global->ifaces;
5555 while (wpa_s) {
5556 prev = wpa_s;
5557 wpa_s = wpa_s->next;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07005558 if (prev->p2p_group_interface !=
5559 NOT_P2P_GROUP_INTERFACE ||
5560 (prev->current_ssid &&
5561 prev->current_ssid->p2p_group))
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005562 wpas_p2p_disconnect_safely(prev, calling_wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005563 }
5564 return 0;
5565 }
5566
5567 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
5568 if (os_strcmp(wpa_s->ifname, ifname) == 0)
5569 break;
5570 }
5571
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005572 return wpas_p2p_disconnect_safely(wpa_s, calling_wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005573}
5574
5575
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005576static int wpas_p2p_select_go_freq(struct wpa_supplicant *wpa_s, int freq)
5577{
5578 unsigned int r;
5579
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005580 if (!wpa_s->conf->num_p2p_pref_chan && !freq) {
5581 unsigned int i, size = P2P_MAX_PREF_CHANNELS;
5582 unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS];
5583 int res;
5584
5585 res = wpa_drv_get_pref_freq_list(wpa_s, WPA_IF_P2P_GO,
5586 &size, pref_freq_list);
5587 if (!res && size > 0) {
5588 i = 0;
5589 while (wpas_p2p_disallowed_freq(wpa_s->global,
5590 pref_freq_list[i]) &&
5591 i < size) {
5592 wpa_printf(MSG_DEBUG,
5593 "P2P: preferred_freq_list[%d]=%d is disallowed",
5594 i, pref_freq_list[i]);
5595 i++;
5596 }
5597 if (i != size) {
5598 freq = pref_freq_list[i];
5599 wpa_printf(MSG_DEBUG,
5600 "P2P: Using preferred_freq_list[%d]=%d",
5601 i, freq);
5602 } else {
5603 wpa_printf(MSG_DEBUG,
5604 "P2P: All driver preferred frequencies are disallowed for P2P use");
5605 }
5606 } else {
5607 wpa_printf(MSG_DEBUG,
5608 "P2P: No preferred frequency list available");
5609 }
5610 }
5611
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005612 if (freq == 2) {
5613 wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 2.4 GHz "
5614 "band");
5615 if (wpa_s->best_24_freq > 0 &&
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005616 p2p_supported_freq_go(wpa_s->global->p2p,
5617 wpa_s->best_24_freq)) {
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005618 freq = wpa_s->best_24_freq;
5619 wpa_printf(MSG_DEBUG, "P2P: Use best 2.4 GHz band "
5620 "channel: %d MHz", freq);
5621 } else {
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07005622 if (os_get_random((u8 *) &r, sizeof(r)) < 0)
5623 return -1;
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005624 freq = 2412 + (r % 3) * 25;
5625 wpa_printf(MSG_DEBUG, "P2P: Use random 2.4 GHz band "
5626 "channel: %d MHz", freq);
5627 }
5628 }
5629
5630 if (freq == 5) {
5631 wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 5 GHz "
5632 "band");
5633 if (wpa_s->best_5_freq > 0 &&
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005634 p2p_supported_freq_go(wpa_s->global->p2p,
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005635 wpa_s->best_5_freq)) {
5636 freq = wpa_s->best_5_freq;
5637 wpa_printf(MSG_DEBUG, "P2P: Use best 5 GHz band "
5638 "channel: %d MHz", freq);
5639 } else {
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07005640 if (os_get_random((u8 *) &r, sizeof(r)) < 0)
5641 return -1;
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005642 freq = 5180 + (r % 4) * 20;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005643 if (!p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005644 wpa_printf(MSG_DEBUG, "P2P: Could not select "
5645 "5 GHz channel for P2P group");
5646 return -1;
5647 }
5648 wpa_printf(MSG_DEBUG, "P2P: Use random 5 GHz band "
5649 "channel: %d MHz", freq);
5650 }
5651 }
5652
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005653 if (freq > 0 && !p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08005654 if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) &&
5655 ieee80211_is_dfs(freq)) {
5656 /*
5657 * If freq is a DFS channel and DFS is offloaded to the
5658 * driver, allow P2P GO to use it.
5659 */
5660 wpa_printf(MSG_DEBUG, "P2P: "
5661 "%s: The forced channel for GO (%u MHz) is DFS, and DFS is offloaded",
5662 __func__, freq);
5663 return freq;
5664 }
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07005665 wpa_printf(MSG_DEBUG, "P2P: The forced channel for GO "
5666 "(%u MHz) is not supported for P2P uses",
5667 freq);
5668 return -1;
5669 }
5670
5671 return freq;
5672}
5673
5674
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005675static int wpas_p2p_supported_freq_go(struct wpa_supplicant *wpa_s,
5676 const struct p2p_channels *channels,
5677 int freq)
5678{
5679 if (!wpas_p2p_disallowed_freq(wpa_s->global, freq) &&
5680 p2p_supported_freq_go(wpa_s->global->p2p, freq) &&
5681 freq_included(wpa_s, channels, freq))
5682 return 1;
5683 return 0;
5684}
5685
5686
5687static void wpas_p2p_select_go_freq_no_pref(struct wpa_supplicant *wpa_s,
5688 struct p2p_go_neg_results *params,
5689 const struct p2p_channels *channels)
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005690{
5691 unsigned int i, r;
5692
5693 /* first try some random selection of the social channels */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07005694 if (os_get_random((u8 *) &r, sizeof(r)) < 0)
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005695 return;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005696
5697 for (i = 0; i < 3; i++) {
5698 params->freq = 2412 + ((r + i) % 3) * 25;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005699 if (wpas_p2p_supported_freq_go(wpa_s, channels, params->freq))
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005700 goto out;
5701 }
5702
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005703 /* try all other channels in operating class 81 */
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005704 for (i = 0; i < 11; i++) {
5705 params->freq = 2412 + i * 5;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005706
5707 /* skip social channels; covered in the previous loop */
5708 if (params->freq == 2412 ||
5709 params->freq == 2437 ||
5710 params->freq == 2462)
5711 continue;
5712
5713 if (wpas_p2p_supported_freq_go(wpa_s, channels, params->freq))
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005714 goto out;
5715 }
5716
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08005717 /* try all channels in operating class 115 */
5718 for (i = 0; i < 4; i++) {
5719 params->freq = 5180 + i * 20;
5720 if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005721 freq_included(wpa_s, channels, params->freq) &&
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08005722 p2p_supported_freq(wpa_s->global->p2p, params->freq))
5723 goto out;
5724 }
5725
5726 /* try all channels in operating class 124 */
5727 for (i = 0; i < 4; i++) {
5728 params->freq = 5745 + i * 20;
5729 if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005730 freq_included(wpa_s, channels, params->freq) &&
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08005731 p2p_supported_freq(wpa_s->global->p2p, params->freq))
5732 goto out;
5733 }
5734
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07005735 /* try social channel class 180 channel 2 */
5736 params->freq = 58320 + 1 * 2160;
5737 if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005738 freq_included(wpa_s, channels, params->freq) &&
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07005739 p2p_supported_freq(wpa_s->global->p2p, params->freq))
5740 goto out;
5741
5742 /* try all channels in reg. class 180 */
5743 for (i = 0; i < 4; i++) {
5744 params->freq = 58320 + i * 2160;
5745 if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005746 freq_included(wpa_s, channels, params->freq) &&
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07005747 p2p_supported_freq(wpa_s->global->p2p, params->freq))
5748 goto out;
5749 }
5750
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005751 params->freq = 0;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08005752 wpa_printf(MSG_DEBUG, "P2P: No 2.4, 5, or 60 GHz channel allowed");
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005753 return;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005754out:
5755 wpa_printf(MSG_DEBUG, "P2P: Set GO freq %d MHz (no preference known)",
5756 params->freq);
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005757}
5758
5759
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005760static int wpas_p2p_init_go_params(struct wpa_supplicant *wpa_s,
5761 struct p2p_go_neg_results *params,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005762 int freq, int vht_center_freq2, int ht40,
5763 int vht, int max_oper_chwidth,
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005764 const struct p2p_channels *channels)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005765{
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005766 struct wpa_used_freq_data *freqs;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005767 unsigned int cand;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005768 unsigned int num, i;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005769 int ignore_no_freqs = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005770
5771 os_memset(params, 0, sizeof(*params));
5772 params->role_go = 1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005773 params->ht40 = ht40;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005774 params->vht = vht;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005775 params->max_oper_chwidth = max_oper_chwidth;
5776 params->vht_center_freq2 = vht_center_freq2;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005777
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005778 freqs = os_calloc(wpa_s->num_multichan_concurrent,
5779 sizeof(struct wpa_used_freq_data));
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005780 if (!freqs)
5781 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005782
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005783 num = get_shared_radio_freqs_data(wpa_s, freqs,
5784 wpa_s->num_multichan_concurrent);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005785
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005786 if (wpa_s->current_ssid &&
5787 wpa_s->current_ssid->mode == WPAS_MODE_P2P_GO &&
5788 wpa_s->wpa_state == WPA_COMPLETED) {
5789 wpa_printf(MSG_DEBUG, "P2P: %s called for an active GO",
5790 __func__);
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005791
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005792 /*
5793 * If the frequency selection is done for an active P2P GO that
5794 * is not sharing a frequency, allow to select a new frequency
5795 * even if there are no unused frequencies as we are about to
5796 * move the P2P GO so its frequency can be re-used.
5797 */
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005798 for (i = 0; i < num; i++) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005799 if (freqs[i].freq == wpa_s->current_ssid->frequency &&
5800 freqs[i].flags == 0) {
5801 ignore_no_freqs = 1;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005802 break;
5803 }
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005804 }
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08005805 }
5806
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005807 /* try using the forced freq */
5808 if (freq) {
5809 if (!wpas_p2p_supported_freq_go(wpa_s, channels, freq)) {
5810 wpa_printf(MSG_DEBUG,
5811 "P2P: Forced GO freq %d MHz not accepted",
5812 freq);
5813 goto fail;
5814 }
5815
5816 for (i = 0; i < num; i++) {
5817 if (freqs[i].freq == freq) {
5818 wpa_printf(MSG_DEBUG,
5819 "P2P: forced freq (%d MHz) is also shared",
5820 freq);
5821 params->freq = freq;
5822 goto success;
5823 }
5824 }
5825
5826 if (!ignore_no_freqs &&
5827 wpas_p2p_num_unused_channels(wpa_s) <= 0) {
5828 wpa_printf(MSG_DEBUG,
5829 "P2P: Cannot force GO on freq (%d MHz) as all the channels are in use",
5830 freq);
5831 goto fail;
5832 }
5833
5834 wpa_printf(MSG_DEBUG,
5835 "P2P: force GO freq (%d MHz) on a free channel",
5836 freq);
5837 params->freq = freq;
5838 goto success;
5839 }
5840
5841 /* consider using one of the shared frequencies */
5842 if (num) {
5843 cand = wpas_p2p_pick_best_used_freq(wpa_s, freqs, num);
5844 if (wpas_p2p_supported_freq_go(wpa_s, channels, cand)) {
5845 wpa_printf(MSG_DEBUG,
5846 "P2P: Use shared freq (%d MHz) for GO",
5847 freq);
5848 params->freq = cand;
5849 goto success;
5850 }
5851
5852 /* try using one of the shared freqs */
5853 for (i = 0; i < num; i++) {
5854 if (wpas_p2p_supported_freq_go(wpa_s, channels,
5855 freqs[i].freq)) {
5856 wpa_printf(MSG_DEBUG,
5857 "P2P: Use shared freq (%d MHz) for GO",
5858 freq);
5859 params->freq = freqs[i].freq;
5860 goto success;
5861 }
5862 }
5863 }
5864
5865 if (!ignore_no_freqs &&
5866 wpas_p2p_num_unused_channels(wpa_s) <= 0) {
5867 wpa_printf(MSG_DEBUG,
5868 "P2P: Cannot force GO on any of the channels we are already using");
5869 goto fail;
5870 }
5871
5872 /* try using the setting from the configuration file */
5873 if (wpa_s->conf->p2p_oper_reg_class == 81 &&
5874 wpa_s->conf->p2p_oper_channel >= 1 &&
5875 wpa_s->conf->p2p_oper_channel <= 11 &&
5876 wpas_p2p_supported_freq_go(
5877 wpa_s, channels,
5878 2407 + 5 * wpa_s->conf->p2p_oper_channel)) {
5879 params->freq = 2407 + 5 * wpa_s->conf->p2p_oper_channel;
5880 wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on configured "
5881 "frequency %d MHz", params->freq);
5882 goto success;
5883 }
5884
5885 if ((wpa_s->conf->p2p_oper_reg_class == 115 ||
5886 wpa_s->conf->p2p_oper_reg_class == 116 ||
5887 wpa_s->conf->p2p_oper_reg_class == 117 ||
5888 wpa_s->conf->p2p_oper_reg_class == 124 ||
5889 wpa_s->conf->p2p_oper_reg_class == 125 ||
5890 wpa_s->conf->p2p_oper_reg_class == 126 ||
5891 wpa_s->conf->p2p_oper_reg_class == 127) &&
5892 wpas_p2p_supported_freq_go(wpa_s, channels,
5893 5000 +
5894 5 * wpa_s->conf->p2p_oper_channel)) {
5895 params->freq = 5000 + 5 * wpa_s->conf->p2p_oper_channel;
5896 wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on configured "
5897 "frequency %d MHz", params->freq);
5898 goto success;
5899 }
5900
5901 /* Try using best channels */
5902 if (wpa_s->conf->p2p_oper_channel == 0 &&
5903 wpa_s->best_overall_freq > 0 &&
5904 wpas_p2p_supported_freq_go(wpa_s, channels,
5905 wpa_s->best_overall_freq)) {
5906 params->freq = wpa_s->best_overall_freq;
5907 wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best overall "
5908 "channel %d MHz", params->freq);
5909 goto success;
5910 }
5911
5912 if (wpa_s->conf->p2p_oper_channel == 0 &&
5913 wpa_s->best_24_freq > 0 &&
5914 wpas_p2p_supported_freq_go(wpa_s, channels,
5915 wpa_s->best_24_freq)) {
5916 params->freq = wpa_s->best_24_freq;
5917 wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best 2.4 GHz "
5918 "channel %d MHz", params->freq);
5919 goto success;
5920 }
5921
5922 if (wpa_s->conf->p2p_oper_channel == 0 &&
5923 wpa_s->best_5_freq > 0 &&
5924 wpas_p2p_supported_freq_go(wpa_s, channels,
5925 wpa_s->best_5_freq)) {
5926 params->freq = wpa_s->best_5_freq;
5927 wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best 5 GHz "
5928 "channel %d MHz", params->freq);
5929 goto success;
5930 }
5931
5932 /* try using preferred channels */
5933 cand = p2p_get_pref_freq(wpa_s->global->p2p, channels);
5934 if (cand && wpas_p2p_supported_freq_go(wpa_s, channels, cand)) {
5935 params->freq = cand;
5936 wpa_printf(MSG_DEBUG, "P2P: Set GO freq %d MHz from preferred "
5937 "channels", params->freq);
5938 goto success;
5939 }
5940
5941 /* Try using one of the group common freqs */
5942 if (wpa_s->p2p_group_common_freqs) {
5943 for (i = 0; i < wpa_s->p2p_group_common_freqs_num; i++) {
5944 cand = wpa_s->p2p_group_common_freqs[i];
5945 if (wpas_p2p_supported_freq_go(wpa_s, channels, cand)) {
5946 params->freq = cand;
5947 wpa_printf(MSG_DEBUG,
5948 "P2P: Use freq %d MHz common with the peer",
5949 params->freq);
5950 goto success;
5951 }
5952 }
5953 }
5954
5955 /* no preference, select some channel */
5956 wpas_p2p_select_go_freq_no_pref(wpa_s, params, channels);
5957
5958 if (params->freq == 0) {
5959 wpa_printf(MSG_DEBUG, "P2P: did not find a freq for GO use");
5960 goto fail;
5961 }
5962
5963success:
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07005964 os_free(freqs);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005965 return 0;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005966fail:
5967 os_free(freqs);
5968 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005969}
5970
5971
5972static struct wpa_supplicant *
5973wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
5974 int go)
5975{
5976 struct wpa_supplicant *group_wpa_s;
5977
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005978 if (!wpas_p2p_create_iface(wpa_s)) {
5979 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use same interface for group "
5980 "operations");
Dmitry Shmidt56052862013-10-04 10:23:25 -07005981 wpa_s->p2p_first_connection_timeout = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005982 return wpa_s;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005983 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005984
5985 if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005986 WPA_IF_P2P_CLIENT) < 0) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07005987 wpa_msg_global(wpa_s, MSG_ERROR,
5988 "P2P: Failed to add group interface");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005989 return NULL;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005990 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005991 group_wpa_s = wpas_p2p_init_group_interface(wpa_s, go);
5992 if (group_wpa_s == NULL) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07005993 wpa_msg_global(wpa_s, MSG_ERROR,
5994 "P2P: Failed to initialize group interface");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005995 wpas_p2p_remove_pending_group_interface(wpa_s);
5996 return NULL;
5997 }
5998
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005999 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use separate group interface %s",
6000 group_wpa_s->ifname);
Dmitry Shmidt56052862013-10-04 10:23:25 -07006001 group_wpa_s->p2p_first_connection_timeout = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006002 return group_wpa_s;
6003}
6004
6005
6006/**
6007 * wpas_p2p_group_add - Add a new P2P group with local end as Group Owner
6008 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
6009 * @persistent_group: Whether to create a persistent group
6010 * @freq: Frequency for the group or 0 to indicate no hardcoding
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08006011 * @vht_center_freq2: segment_1 center frequency for GO operating in VHT 80P80
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07006012 * @ht40: Start GO with 40 MHz channel width
6013 * @vht: Start GO with VHT support
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08006014 * @vht_chwidth: channel bandwidth for GO operating with VHT support
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006015 * Returns: 0 on success, -1 on failure
6016 *
6017 * This function creates a new P2P group with the local end as the Group Owner,
6018 * i.e., without using Group Owner Negotiation.
6019 */
6020int wpas_p2p_group_add(struct wpa_supplicant *wpa_s, int persistent_group,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08006021 int freq, int vht_center_freq2, int ht40, int vht,
6022 int max_oper_chwidth)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006023{
6024 struct p2p_go_neg_results params;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006025
6026 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
6027 return -1;
6028
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07006029 os_free(wpa_s->global->add_psk);
6030 wpa_s->global->add_psk = NULL;
6031
Dmitry Shmidtdca39792011-09-06 11:17:33 -07006032 /* Make sure we are not running find during connection establishment */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006033 wpa_printf(MSG_DEBUG, "P2P: Stop any on-going P2P FIND");
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08006034 wpas_p2p_stop_find_oper(wpa_s);
Dmitry Shmidtdca39792011-09-06 11:17:33 -07006035
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07006036 freq = wpas_p2p_select_go_freq(wpa_s, freq);
6037 if (freq < 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006038 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006039
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08006040 if (wpas_p2p_init_go_params(wpa_s, &params, freq, vht_center_freq2,
6041 ht40, vht, max_oper_chwidth, NULL))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006042 return -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07006043 if (params.freq &&
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07006044 !p2p_supported_freq_go(wpa_s->global->p2p, params.freq)) {
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08006045 if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) &&
6046 ieee80211_is_dfs(params.freq)) {
6047 /*
6048 * If freq is a DFS channel and DFS is offloaded to the
6049 * driver, allow P2P GO to use it.
6050 */
6051 wpa_printf(MSG_DEBUG,
6052 "P2P: %s: The forced channel for GO (%u MHz) is DFS, and DFS is offloaded to driver",
6053 __func__, params.freq);
6054 } else {
6055 wpa_printf(MSG_DEBUG,
6056 "P2P: The selected channel for GO (%u MHz) is not supported for P2P uses",
6057 params.freq);
6058 return -1;
6059 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07006060 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006061 p2p_go_params(wpa_s->global->p2p, &params);
6062 params.persistent_group = persistent_group;
6063
6064 wpa_s = wpas_p2p_get_group_iface(wpa_s, 0, 1);
6065 if (wpa_s == NULL)
6066 return -1;
6067 wpas_start_wps_go(wpa_s, &params, 0);
6068
6069 return 0;
6070}
6071
6072
6073static int wpas_start_p2p_client(struct wpa_supplicant *wpa_s,
Dmitry Shmidt15907092014-03-25 10:42:57 -07006074 struct wpa_ssid *params, int addr_allocated,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006075 int freq, int force_scan)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006076{
6077 struct wpa_ssid *ssid;
6078
6079 wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 0);
6080 if (wpa_s == NULL)
6081 return -1;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006082 if (force_scan)
6083 os_get_reltime(&wpa_s->scan_min_time);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07006084 wpa_s->p2p_last_4way_hs_fail = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006085
6086 wpa_supplicant_ap_deinit(wpa_s);
6087
6088 ssid = wpa_config_add_network(wpa_s->conf);
6089 if (ssid == NULL)
6090 return -1;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006091 os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006092 wpa_config_set_network_defaults(ssid);
6093 ssid->temporary = 1;
6094 ssid->proto = WPA_PROTO_RSN;
6095 ssid->pairwise_cipher = WPA_CIPHER_CCMP;
6096 ssid->group_cipher = WPA_CIPHER_CCMP;
6097 ssid->key_mgmt = WPA_KEY_MGMT_PSK;
6098 ssid->ssid = os_malloc(params->ssid_len);
6099 if (ssid->ssid == NULL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006100 wpa_config_remove_network(wpa_s->conf, ssid->id);
6101 return -1;
6102 }
6103 os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
6104 ssid->ssid_len = params->ssid_len;
6105 ssid->p2p_group = 1;
6106 ssid->export_keys = 1;
6107 if (params->psk_set) {
6108 os_memcpy(ssid->psk, params->psk, 32);
6109 ssid->psk_set = 1;
6110 }
6111 if (params->passphrase)
6112 ssid->passphrase = os_strdup(params->passphrase);
6113
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006114 wpa_s->show_group_started = 1;
Dmitry Shmidt15907092014-03-25 10:42:57 -07006115 wpa_s->p2p_in_invitation = 1;
6116 wpa_s->p2p_invite_go_freq = freq;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08006117 wpa_s->p2p_go_group_formation_completed = 0;
6118 wpa_s->global->p2p_group_formation = wpa_s;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006119
Dmitry Shmidt15907092014-03-25 10:42:57 -07006120 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s->parent,
6121 NULL);
6122 eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
6123 wpas_p2p_group_formation_timeout,
6124 wpa_s->parent, NULL);
Dmitry Shmidtfa3fc4a2013-11-21 13:34:38 -08006125 wpa_supplicant_select_network(wpa_s, ssid);
6126
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006127 return 0;
6128}
6129
6130
6131int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
6132 struct wpa_ssid *ssid, int addr_allocated,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08006133 int force_freq, int neg_freq,
6134 int vht_center_freq2, int ht40,
6135 int vht, int max_oper_chwidth,
6136 const struct p2p_channels *channels,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006137 int connection_timeout, int force_scan)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006138{
6139 struct p2p_go_neg_results params;
Dmitry Shmidt96be6222014-02-13 10:16:51 -08006140 int go = 0, freq;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006141
6142 if (ssid->disabled != 2 || ssid->ssid == NULL)
6143 return -1;
6144
6145 if (wpas_get_p2p_group(wpa_s, ssid->ssid, ssid->ssid_len, &go) &&
6146 go == (ssid->mode == WPAS_MODE_P2P_GO)) {
6147 wpa_printf(MSG_DEBUG, "P2P: Requested persistent group is "
6148 "already running");
Dmitry Shmidtb1e52102015-05-29 12:36:29 -07006149 if (go == 0 &&
6150 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
6151 wpa_s->parent, NULL)) {
6152 /*
6153 * This can happen if Invitation Response frame was lost
6154 * and the peer (GO of a persistent group) tries to
6155 * invite us again. Reschedule the timeout to avoid
6156 * terminating the wait for the connection too early
6157 * since we now know that the peer is still trying to
6158 * invite us instead of having already started the GO.
6159 */
6160 wpa_printf(MSG_DEBUG,
6161 "P2P: Reschedule group formation timeout since peer is still trying to invite us");
6162 eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
6163 wpas_p2p_group_formation_timeout,
6164 wpa_s->parent, NULL);
6165 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006166 return 0;
6167 }
6168
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07006169 os_free(wpa_s->global->add_psk);
6170 wpa_s->global->add_psk = NULL;
6171
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006172 /* Make sure we are not running find during connection establishment */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08006173 wpas_p2p_stop_find_oper(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006174
Dmitry Shmidt04949592012-07-19 12:16:46 -07006175 wpa_s->p2p_fallback_to_go_neg = 0;
6176
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006177 if (ssid->mode == WPAS_MODE_P2P_GO) {
6178 if (force_freq > 0) {
6179 freq = wpas_p2p_select_go_freq(wpa_s, force_freq);
6180 if (freq < 0)
6181 return -1;
6182 } else {
6183 freq = wpas_p2p_select_go_freq(wpa_s, neg_freq);
6184 if (freq < 0 ||
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006185 (freq > 0 && !freq_included(wpa_s, channels, freq)))
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006186 freq = 0;
6187 }
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07006188 } else if (ssid->mode == WPAS_MODE_INFRA) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006189 freq = neg_freq;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006190 if (freq <= 0 || !freq_included(wpa_s, channels, freq)) {
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07006191 struct os_reltime now;
6192 struct wpa_bss *bss =
6193 wpa_bss_get_p2p_dev_addr(wpa_s, ssid->bssid);
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07006194
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07006195 os_get_reltime(&now);
6196 if (bss &&
6197 !os_reltime_expired(&now, &bss->last_update, 5) &&
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006198 freq_included(wpa_s, channels, bss->freq))
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07006199 freq = bss->freq;
6200 else
6201 freq = 0;
6202 }
6203
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006204 return wpas_start_p2p_client(wpa_s, ssid, addr_allocated, freq,
6205 force_scan);
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07006206 } else {
Dmitry Shmidt15907092014-03-25 10:42:57 -07006207 return -1;
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07006208 }
Dmitry Shmidt15907092014-03-25 10:42:57 -07006209
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08006210 if (wpas_p2p_init_go_params(wpa_s, &params, freq, vht_center_freq2,
6211 ht40, vht, max_oper_chwidth, channels))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006212 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006213
6214 params.role_go = 1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08006215 params.psk_set = ssid->psk_set;
6216 if (params.psk_set)
6217 os_memcpy(params.psk, ssid->psk, sizeof(params.psk));
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08006218 if (ssid->passphrase) {
6219 if (os_strlen(ssid->passphrase) >= sizeof(params.passphrase)) {
6220 wpa_printf(MSG_ERROR, "P2P: Invalid passphrase in "
6221 "persistent group");
6222 return -1;
6223 }
6224 os_strlcpy(params.passphrase, ssid->passphrase,
6225 sizeof(params.passphrase));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006226 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006227 os_memcpy(params.ssid, ssid->ssid, ssid->ssid_len);
6228 params.ssid_len = ssid->ssid_len;
6229 params.persistent_group = 1;
6230
6231 wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 1);
6232 if (wpa_s == NULL)
6233 return -1;
6234
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006235 p2p_channels_to_freqs(channels, params.freq_list, P2P_MAX_CHANNELS);
6236
Dmitry Shmidt56052862013-10-04 10:23:25 -07006237 wpa_s->p2p_first_connection_timeout = connection_timeout;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006238 wpas_start_wps_go(wpa_s, &params, 0);
6239
6240 return 0;
6241}
6242
6243
6244static void wpas_p2p_ie_update(void *ctx, struct wpabuf *beacon_ies,
6245 struct wpabuf *proberesp_ies)
6246{
6247 struct wpa_supplicant *wpa_s = ctx;
6248 if (wpa_s->ap_iface) {
6249 struct hostapd_data *hapd = wpa_s->ap_iface->bss[0];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006250 if (!(hapd->conf->p2p & P2P_GROUP_OWNER)) {
6251 wpabuf_free(beacon_ies);
6252 wpabuf_free(proberesp_ies);
6253 return;
6254 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006255 if (beacon_ies) {
6256 wpabuf_free(hapd->p2p_beacon_ie);
6257 hapd->p2p_beacon_ie = beacon_ies;
6258 }
6259 wpabuf_free(hapd->p2p_probe_resp_ie);
6260 hapd->p2p_probe_resp_ie = proberesp_ies;
6261 } else {
6262 wpabuf_free(beacon_ies);
6263 wpabuf_free(proberesp_ies);
6264 }
6265 wpa_supplicant_ap_update_beacon(wpa_s);
6266}
6267
6268
6269static void wpas_p2p_idle_update(void *ctx, int idle)
6270{
6271 struct wpa_supplicant *wpa_s = ctx;
6272 if (!wpa_s->ap_iface)
6273 return;
6274 wpa_printf(MSG_DEBUG, "P2P: GO - group %sidle", idle ? "" : "not ");
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006275 if (idle) {
6276 if (wpa_s->global->p2p_fail_on_wps_complete &&
6277 wpa_s->p2p_in_provisioning) {
6278 wpas_p2p_grpform_fail_after_wps(wpa_s);
6279 return;
6280 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006281 wpas_p2p_set_group_idle_timeout(wpa_s);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006282 } else
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006283 eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
6284}
6285
6286
6287struct p2p_group * wpas_p2p_group_init(struct wpa_supplicant *wpa_s,
Dmitry Shmidt04949592012-07-19 12:16:46 -07006288 struct wpa_ssid *ssid)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006289{
6290 struct p2p_group *group;
6291 struct p2p_group_config *cfg;
6292
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006293 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
6294 return NULL;
6295
6296 cfg = os_zalloc(sizeof(*cfg));
6297 if (cfg == NULL)
6298 return NULL;
6299
Dmitry Shmidt04949592012-07-19 12:16:46 -07006300 if (ssid->p2p_persistent_group && wpa_s->conf->persistent_reconnect)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006301 cfg->persistent_group = 2;
Dmitry Shmidt04949592012-07-19 12:16:46 -07006302 else if (ssid->p2p_persistent_group)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006303 cfg->persistent_group = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006304 os_memcpy(cfg->interface_addr, wpa_s->own_addr, ETH_ALEN);
6305 if (wpa_s->max_stations &&
6306 wpa_s->max_stations < wpa_s->conf->max_num_sta)
6307 cfg->max_clients = wpa_s->max_stations;
6308 else
6309 cfg->max_clients = wpa_s->conf->max_num_sta;
Dmitry Shmidt04949592012-07-19 12:16:46 -07006310 os_memcpy(cfg->ssid, ssid->ssid, ssid->ssid_len);
6311 cfg->ssid_len = ssid->ssid_len;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08006312 cfg->freq = ssid->frequency;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006313 cfg->cb_ctx = wpa_s;
6314 cfg->ie_update = wpas_p2p_ie_update;
6315 cfg->idle_update = wpas_p2p_idle_update;
6316
6317 group = p2p_group_init(wpa_s->global->p2p, cfg);
6318 if (group == NULL)
6319 os_free(cfg);
Dmitry Shmidt04949592012-07-19 12:16:46 -07006320 if (ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006321 p2p_group_notif_formation_done(group);
6322 wpa_s->p2p_group = group;
6323 return group;
6324}
6325
6326
6327void wpas_p2p_wps_success(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
6328 int registrar)
6329{
Dmitry Shmidt04949592012-07-19 12:16:46 -07006330 struct wpa_ssid *ssid = wpa_s->current_ssid;
6331
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006332 if (!wpa_s->p2p_in_provisioning) {
6333 wpa_printf(MSG_DEBUG, "P2P: Ignore WPS success event - P2P "
6334 "provisioning not in progress");
6335 return;
6336 }
6337
Dmitry Shmidt04949592012-07-19 12:16:46 -07006338 if (ssid && ssid->mode == WPAS_MODE_INFRA) {
6339 u8 go_dev_addr[ETH_ALEN];
6340 os_memcpy(go_dev_addr, wpa_s->bssid, ETH_ALEN);
6341 wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
6342 ssid->ssid_len);
6343 /* Clear any stored provisioning info */
6344 p2p_clear_provisioning_info(wpa_s->global->p2p, go_dev_addr);
6345 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006346
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006347 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s->parent,
6348 NULL);
Dmitry Shmidt56052862013-10-04 10:23:25 -07006349 wpa_s->p2p_go_group_formation_completed = 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07006350 if (ssid && ssid->mode == WPAS_MODE_INFRA) {
6351 /*
6352 * Use a separate timeout for initial data connection to
6353 * complete to allow the group to be removed automatically if
6354 * something goes wrong in this step before the P2P group idle
6355 * timeout mechanism is taken into use.
6356 */
Dmitry Shmidt56052862013-10-04 10:23:25 -07006357 wpa_dbg(wpa_s, MSG_DEBUG,
6358 "P2P: Re-start group formation timeout (%d seconds) as client for initial connection",
6359 P2P_MAX_INITIAL_CONN_WAIT);
Dmitry Shmidt04949592012-07-19 12:16:46 -07006360 eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
6361 wpas_p2p_group_formation_timeout,
6362 wpa_s->parent, NULL);
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08006363 /* Complete group formation on successful data connection. */
6364 wpa_s->p2p_go_group_formation_completed = 0;
Dmitry Shmidt56052862013-10-04 10:23:25 -07006365 } else if (ssid) {
6366 /*
6367 * Use a separate timeout for initial data connection to
6368 * complete to allow the group to be removed automatically if
6369 * the client does not complete data connection successfully.
6370 */
6371 wpa_dbg(wpa_s, MSG_DEBUG,
6372 "P2P: Re-start group formation timeout (%d seconds) as GO for initial connection",
6373 P2P_MAX_INITIAL_CONN_WAIT_GO);
6374 eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT_GO, 0,
6375 wpas_p2p_group_formation_timeout,
6376 wpa_s->parent, NULL);
6377 /*
6378 * Complete group formation on first successful data connection
6379 */
6380 wpa_s->p2p_go_group_formation_completed = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07006381 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006382 if (wpa_s->global->p2p)
6383 p2p_wps_success_cb(wpa_s->global->p2p, peer_addr);
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07006384 wpas_group_formation_completed(wpa_s, 1, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006385}
6386
6387
Jouni Malinen75ecf522011-06-27 15:19:46 -07006388void wpas_p2p_wps_failed(struct wpa_supplicant *wpa_s,
6389 struct wps_event_fail *fail)
6390{
6391 if (!wpa_s->p2p_in_provisioning) {
6392 wpa_printf(MSG_DEBUG, "P2P: Ignore WPS fail event - P2P "
6393 "provisioning not in progress");
6394 return;
6395 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006396
6397 if (wpa_s->go_params) {
6398 p2p_clear_provisioning_info(
6399 wpa_s->global->p2p,
Dmitry Shmidt04949592012-07-19 12:16:46 -07006400 wpa_s->go_params->peer_device_addr);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006401 }
6402
Jouni Malinen75ecf522011-06-27 15:19:46 -07006403 wpas_notify_p2p_wps_failed(wpa_s, fail);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006404
6405 if (wpa_s == wpa_s->global->p2p_group_formation) {
6406 /*
6407 * Allow some time for the failed WPS negotiation exchange to
6408 * complete, but remove the group since group formation cannot
6409 * succeed after provisioning failure.
6410 */
6411 wpa_printf(MSG_DEBUG, "P2P: WPS step failed during group formation - reject connection from timeout");
6412 wpa_s->global->p2p_fail_on_wps_complete = 1;
6413 eloop_deplete_timeout(0, 50000,
6414 wpas_p2p_group_formation_timeout,
6415 wpa_s->parent, NULL);
6416 }
6417}
6418
6419
6420int wpas_p2p_wps_eapol_cb(struct wpa_supplicant *wpa_s)
6421{
6422 if (!wpa_s->global->p2p_fail_on_wps_complete ||
6423 !wpa_s->p2p_in_provisioning)
6424 return 0;
6425
6426 wpas_p2p_grpform_fail_after_wps(wpa_s);
6427
6428 return 1;
Jouni Malinen75ecf522011-06-27 15:19:46 -07006429}
6430
6431
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006432int wpas_p2p_prov_disc(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
Dmitry Shmidt04949592012-07-19 12:16:46 -07006433 const char *config_method,
Dmitry Shmidt216983b2015-02-06 10:50:36 -08006434 enum wpas_p2p_prov_disc_use use,
6435 struct p2ps_provision *p2ps_prov)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006436{
6437 u16 config_methods;
6438
Dmitry Shmidt216983b2015-02-06 10:50:36 -08006439 wpa_s->global->pending_p2ps_group = 0;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006440 wpa_s->global->pending_p2ps_group_freq = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07006441 wpa_s->p2p_fallback_to_go_neg = 0;
6442 wpa_s->pending_pd_use = NORMAL_PD;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08006443 if (p2ps_prov && use == WPAS_P2P_PD_FOR_ASP) {
6444 p2ps_prov->conncap = p2ps_group_capability(
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006445 wpa_s, P2PS_SETUP_NONE, p2ps_prov->role,
6446 &p2ps_prov->force_freq, &p2ps_prov->pref_freq);
6447
Dmitry Shmidt216983b2015-02-06 10:50:36 -08006448 wpa_printf(MSG_DEBUG,
6449 "P2P: %s conncap: %d - ASP parsed: %x %x %d %s",
6450 __func__, p2ps_prov->conncap,
6451 p2ps_prov->adv_id, p2ps_prov->conncap,
6452 p2ps_prov->status, p2ps_prov->info);
6453
6454 config_methods = 0;
6455 } else if (os_strncmp(config_method, "display", 7) == 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006456 config_methods = WPS_CONFIG_DISPLAY;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006457 else if (os_strncmp(config_method, "keypad", 6) == 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006458 config_methods = WPS_CONFIG_KEYPAD;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006459 else if (os_strncmp(config_method, "pbc", 3) == 0 ||
6460 os_strncmp(config_method, "pushbutton", 10) == 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006461 config_methods = WPS_CONFIG_PUSHBUTTON;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006462 else {
6463 wpa_printf(MSG_DEBUG, "P2P: Unknown config method");
Dmitry Shmidt216983b2015-02-06 10:50:36 -08006464 os_free(p2ps_prov);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006465 return -1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006466 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006467
Dmitry Shmidt04949592012-07-19 12:16:46 -07006468 if (use == WPAS_P2P_PD_AUTO) {
6469 os_memcpy(wpa_s->pending_join_dev_addr, peer_addr, ETH_ALEN);
6470 wpa_s->pending_pd_config_methods = config_methods;
6471 wpa_s->p2p_auto_pd = 1;
6472 wpa_s->p2p_auto_join = 0;
6473 wpa_s->pending_pd_before_join = 0;
6474 wpa_s->auto_pd_scan_retry = 0;
6475 wpas_p2p_stop_find(wpa_s);
6476 wpa_s->p2p_join_scan_count = 0;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006477 os_get_reltime(&wpa_s->p2p_auto_started);
Dmitry Shmidt04949592012-07-19 12:16:46 -07006478 wpa_printf(MSG_DEBUG, "P2P: Auto PD started at %ld.%06ld",
6479 wpa_s->p2p_auto_started.sec,
6480 wpa_s->p2p_auto_started.usec);
6481 wpas_p2p_join_scan(wpa_s, NULL);
6482 return 0;
6483 }
6484
Dmitry Shmidt216983b2015-02-06 10:50:36 -08006485 if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled) {
6486 os_free(p2ps_prov);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006487 return -1;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08006488 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006489
Dmitry Shmidt216983b2015-02-06 10:50:36 -08006490 return p2p_prov_disc_req(wpa_s->global->p2p, peer_addr, p2ps_prov,
Dmitry Shmidt04949592012-07-19 12:16:46 -07006491 config_methods, use == WPAS_P2P_PD_FOR_JOIN,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08006492 0, 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006493}
6494
6495
6496int wpas_p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
6497 char *end)
6498{
6499 return p2p_scan_result_text(ies, ies_len, buf, end);
6500}
6501
6502
6503static void wpas_p2p_clear_pending_action_tx(struct wpa_supplicant *wpa_s)
6504{
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08006505 if (!offchannel_pending_action_tx(wpa_s))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006506 return;
6507
Dmitry Shmidtde47be72016-01-07 12:52:55 -08006508 if (wpa_s->p2p_send_action_work) {
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08006509 wpas_p2p_free_send_action_work(wpa_s);
Dmitry Shmidtde47be72016-01-07 12:52:55 -08006510 eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
6511 wpa_s, NULL);
6512 offchannel_send_action_done(wpa_s);
6513 }
Dmitry Shmidt03658832014-08-13 11:03:49 -07006514
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006515 wpa_printf(MSG_DEBUG, "P2P: Drop pending Action TX due to new "
6516 "operation request");
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08006517 offchannel_clear_pending_action_tx(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006518}
6519
6520
6521int wpas_p2p_find(struct wpa_supplicant *wpa_s, unsigned int timeout,
6522 enum p2p_discovery_type type,
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08006523 unsigned int num_req_dev_types, const u8 *req_dev_types,
Dmitry Shmidt216983b2015-02-06 10:50:36 -08006524 const u8 *dev_id, unsigned int search_delay,
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08006525 u8 seek_cnt, const char **seek_string, int freq)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006526{
6527 wpas_p2p_clear_pending_action_tx(wpa_s);
6528 wpa_s->p2p_long_listen = 0;
6529
Dmitry Shmidt04949592012-07-19 12:16:46 -07006530 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL ||
6531 wpa_s->p2p_in_provisioning)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006532 return -1;
6533
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08006534 wpa_supplicant_cancel_sched_scan(wpa_s);
6535
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006536 return p2p_find(wpa_s->global->p2p, timeout, type,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006537 num_req_dev_types, req_dev_types, dev_id,
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08006538 search_delay, seek_cnt, seek_string, freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006539}
6540
6541
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006542static void wpas_p2p_scan_res_ignore_search(struct wpa_supplicant *wpa_s,
6543 struct wpa_scan_results *scan_res)
6544{
6545 wpa_printf(MSG_DEBUG, "P2P: Ignore scan results");
6546
6547 if (wpa_s->p2p_scan_work) {
6548 struct wpa_radio_work *work = wpa_s->p2p_scan_work;
6549 wpa_s->p2p_scan_work = NULL;
6550 radio_work_done(work);
6551 }
6552
6553 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
6554 return;
6555
6556 /*
6557 * Indicate that results have been processed so that the P2P module can
6558 * continue pending tasks.
6559 */
6560 p2p_scan_res_handled(wpa_s->global->p2p);
6561}
6562
6563
6564static void wpas_p2p_stop_find_oper(struct wpa_supplicant *wpa_s)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006565{
6566 wpas_p2p_clear_pending_action_tx(wpa_s);
6567 wpa_s->p2p_long_listen = 0;
6568 eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
6569 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006570
6571 if (wpa_s->global->p2p)
6572 p2p_stop_find(wpa_s->global->p2p);
6573
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006574 if (wpa_s->scan_res_handler == wpas_p2p_scan_res_handler) {
6575 wpa_printf(MSG_DEBUG,
6576 "P2P: Do not consider the scan results after stop_find");
6577 wpa_s->scan_res_handler = wpas_p2p_scan_res_ignore_search;
6578 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08006579}
6580
6581
6582void wpas_p2p_stop_find(struct wpa_supplicant *wpa_s)
6583{
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006584 wpas_p2p_stop_find_oper(wpa_s);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08006585 if (!wpa_s->global->pending_group_iface_for_p2ps)
6586 wpas_p2p_remove_pending_group_interface(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006587}
6588
6589
6590static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx)
6591{
6592 struct wpa_supplicant *wpa_s = eloop_ctx;
6593 wpa_s->p2p_long_listen = 0;
6594}
6595
6596
6597int wpas_p2p_listen(struct wpa_supplicant *wpa_s, unsigned int timeout)
6598{
6599 int res;
6600
6601 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
6602 return -1;
6603
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08006604 wpa_supplicant_cancel_sched_scan(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006605 wpas_p2p_clear_pending_action_tx(wpa_s);
6606
6607 if (timeout == 0) {
6608 /*
6609 * This is a request for unlimited Listen state. However, at
6610 * least for now, this is mapped to a Listen state for one
6611 * hour.
6612 */
6613 timeout = 3600;
6614 }
6615 eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
6616 wpa_s->p2p_long_listen = 0;
6617
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006618 /*
6619 * Stop previous find/listen operation to avoid trying to request a new
6620 * remain-on-channel operation while the driver is still running the
6621 * previous one.
6622 */
6623 if (wpa_s->global->p2p)
6624 p2p_stop_find(wpa_s->global->p2p);
6625
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006626 res = wpas_p2p_listen_start(wpa_s, timeout * 1000);
6627 if (res == 0 && timeout * 1000 > wpa_s->max_remain_on_chan) {
6628 wpa_s->p2p_long_listen = timeout * 1000;
6629 eloop_register_timeout(timeout, 0,
6630 wpas_p2p_long_listen_timeout,
6631 wpa_s, NULL);
6632 }
6633
6634 return res;
6635}
6636
6637
6638int wpas_p2p_assoc_req_ie(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
6639 u8 *buf, size_t len, int p2p_group)
6640{
6641 struct wpabuf *p2p_ie;
6642 int ret;
6643
6644 if (wpa_s->global->p2p_disabled)
6645 return -1;
Dmitry Shmidt8bd70b72015-05-26 16:02:19 -07006646 /*
6647 * Advertize mandatory cross connection capability even on
6648 * p2p_disabled=1 interface when associating with a P2P Manager WLAN AP.
6649 */
6650 if (wpa_s->conf->p2p_disabled && p2p_group)
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07006651 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006652 if (wpa_s->global->p2p == NULL)
6653 return -1;
6654 if (bss == NULL)
6655 return -1;
6656
6657 p2p_ie = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
6658 ret = p2p_assoc_req_ie(wpa_s->global->p2p, bss->bssid, buf, len,
6659 p2p_group, p2p_ie);
6660 wpabuf_free(p2p_ie);
6661
6662 return ret;
6663}
6664
6665
6666int wpas_p2p_probe_req_rx(struct wpa_supplicant *wpa_s, const u8 *addr,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006667 const u8 *dst, const u8 *bssid,
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07006668 const u8 *ie, size_t ie_len,
6669 unsigned int rx_freq, int ssi_signal)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006670{
6671 if (wpa_s->global->p2p_disabled)
6672 return 0;
6673 if (wpa_s->global->p2p == NULL)
6674 return 0;
6675
Dmitry Shmidt04949592012-07-19 12:16:46 -07006676 switch (p2p_probe_req_rx(wpa_s->global->p2p, addr, dst, bssid,
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07006677 ie, ie_len, rx_freq)) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07006678 case P2P_PREQ_NOT_P2P:
6679 wpas_notify_preq(wpa_s, addr, dst, bssid, ie, ie_len,
6680 ssi_signal);
6681 /* fall through */
6682 case P2P_PREQ_MALFORMED:
6683 case P2P_PREQ_NOT_LISTEN:
6684 case P2P_PREQ_NOT_PROCESSED:
6685 default: /* make gcc happy */
6686 return 0;
6687 case P2P_PREQ_PROCESSED:
6688 return 1;
6689 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006690}
6691
6692
6693void wpas_p2p_rx_action(struct wpa_supplicant *wpa_s, const u8 *da,
6694 const u8 *sa, const u8 *bssid,
6695 u8 category, const u8 *data, size_t len, int freq)
6696{
6697 if (wpa_s->global->p2p_disabled)
6698 return;
6699 if (wpa_s->global->p2p == NULL)
6700 return;
6701
6702 p2p_rx_action(wpa_s->global->p2p, da, sa, bssid, category, data, len,
6703 freq);
6704}
6705
6706
6707void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies)
6708{
6709 if (wpa_s->global->p2p_disabled)
6710 return;
6711 if (wpa_s->global->p2p == NULL)
6712 return;
6713
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08006714 p2p_scan_ie(wpa_s->global->p2p, ies, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006715}
6716
6717
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07006718static void wpas_p2p_group_deinit(struct wpa_supplicant *wpa_s)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006719{
6720 p2p_group_deinit(wpa_s->p2p_group);
6721 wpa_s->p2p_group = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006722
6723 wpa_s->ap_configured_cb = NULL;
6724 wpa_s->ap_configured_cb_ctx = NULL;
6725 wpa_s->ap_configured_cb_data = NULL;
6726 wpa_s->connect_without_scan = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006727}
6728
6729
6730int wpas_p2p_reject(struct wpa_supplicant *wpa_s, const u8 *addr)
6731{
6732 wpa_s->p2p_long_listen = 0;
6733
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006734 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
6735 return -1;
6736
6737 return p2p_reject(wpa_s->global->p2p, addr);
6738}
6739
6740
6741/* Invite to reinvoke a persistent group */
6742int wpas_p2p_invite(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
Jouni Malinen31be0a42012-08-31 21:20:51 +03006743 struct wpa_ssid *ssid, const u8 *go_dev_addr, int freq,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08006744 int vht_center_freq2, int ht40, int vht, int max_chwidth,
6745 int pref_freq)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006746{
6747 enum p2p_invite_role role;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07006748 u8 *bssid = NULL;
6749 int force_freq = 0;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08006750 int res;
Dmitry Shmidta0d265f2013-11-19 13:13:41 -08006751 int no_pref_freq_given = pref_freq == 0;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006752 unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS], size;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08006753
Dmitry Shmidt700a1372013-03-15 14:14:44 -07006754 wpa_s->global->p2p_invite_group = NULL;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08006755 if (peer_addr)
6756 os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
6757 else
6758 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006759
Jouni Malinen31be0a42012-08-31 21:20:51 +03006760 wpa_s->p2p_persistent_go_freq = freq;
6761 wpa_s->p2p_go_ht40 = !!ht40;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08006762 wpa_s->p2p_go_vht = !!vht;
6763 wpa_s->p2p_go_max_oper_chwidth = max_chwidth;
6764 wpa_s->p2p_go_vht_center_freq2 = vht_center_freq2;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006765 if (ssid->mode == WPAS_MODE_P2P_GO) {
6766 role = P2P_INVITE_ROLE_GO;
6767 if (peer_addr == NULL) {
6768 wpa_printf(MSG_DEBUG, "P2P: Missing peer "
6769 "address in invitation command");
6770 return -1;
6771 }
6772 if (wpas_p2p_create_iface(wpa_s)) {
6773 if (wpas_p2p_add_group_interface(wpa_s,
6774 WPA_IF_P2P_GO) < 0) {
6775 wpa_printf(MSG_ERROR, "P2P: Failed to "
6776 "allocate a new interface for the "
6777 "group");
6778 return -1;
6779 }
6780 bssid = wpa_s->pending_interface_addr;
6781 } else
6782 bssid = wpa_s->own_addr;
6783 } else {
6784 role = P2P_INVITE_ROLE_CLIENT;
6785 peer_addr = ssid->bssid;
6786 }
6787 wpa_s->pending_invite_ssid_id = ssid->id;
6788
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006789 size = P2P_MAX_PREF_CHANNELS;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07006790 res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006791 role == P2P_INVITE_ROLE_GO,
6792 pref_freq_list, &size);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08006793 if (res)
6794 return res;
Irfan Sheriffaf84a572012-09-22 16:59:30 -07006795
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006796 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
6797 return -1;
6798
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08006799 p2p_set_own_pref_freq_list(wpa_s->global->p2p, pref_freq_list, size);
6800
Dmitry Shmidta0d265f2013-11-19 13:13:41 -08006801 if (wpa_s->parent->conf->p2p_ignore_shared_freq &&
6802 no_pref_freq_given && pref_freq > 0 &&
6803 wpa_s->num_multichan_concurrent > 1 &&
6804 wpas_p2p_num_unused_channels(wpa_s) > 0) {
6805 wpa_printf(MSG_DEBUG, "P2P: Ignore own channel preference %d MHz for invitation due to p2p_ignore_shared_freq=1 configuration",
6806 pref_freq);
6807 pref_freq = 0;
6808 }
6809
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08006810 /*
6811 * Stop any find/listen operations before invitation and possibly
6812 * connection establishment.
6813 */
6814 wpas_p2p_stop_find_oper(wpa_s);
6815
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006816 return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08006817 ssid->ssid, ssid->ssid_len, force_freq, go_dev_addr,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08006818 1, pref_freq, -1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006819}
6820
6821
6822/* Invite to join an active group */
6823int wpas_p2p_invite_group(struct wpa_supplicant *wpa_s, const char *ifname,
6824 const u8 *peer_addr, const u8 *go_dev_addr)
6825{
6826 struct wpa_global *global = wpa_s->global;
6827 enum p2p_invite_role role;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07006828 u8 *bssid = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006829 struct wpa_ssid *ssid;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08006830 int persistent;
Dmitry Shmidt051af732013-10-22 13:52:46 -07006831 int freq = 0, force_freq = 0, pref_freq = 0;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08006832 int res;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006833 unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS], size;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006834
Jouni Malinen31be0a42012-08-31 21:20:51 +03006835 wpa_s->p2p_persistent_go_freq = 0;
6836 wpa_s->p2p_go_ht40 = 0;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07006837 wpa_s->p2p_go_vht = 0;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08006838 wpa_s->p2p_go_vht_center_freq2 = 0;
6839 wpa_s->p2p_go_max_oper_chwidth = 0;
Jouni Malinen31be0a42012-08-31 21:20:51 +03006840
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006841 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
6842 if (os_strcmp(wpa_s->ifname, ifname) == 0)
6843 break;
6844 }
6845 if (wpa_s == NULL) {
6846 wpa_printf(MSG_DEBUG, "P2P: Interface '%s' not found", ifname);
6847 return -1;
6848 }
6849
6850 ssid = wpa_s->current_ssid;
6851 if (ssid == NULL) {
6852 wpa_printf(MSG_DEBUG, "P2P: No current SSID to use for "
6853 "invitation");
6854 return -1;
6855 }
6856
Dmitry Shmidt700a1372013-03-15 14:14:44 -07006857 wpa_s->global->p2p_invite_group = wpa_s;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08006858 persistent = ssid->p2p_persistent_group &&
6859 wpas_p2p_get_persistent(wpa_s->parent, peer_addr,
6860 ssid->ssid, ssid->ssid_len);
6861
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006862 if (ssid->mode == WPAS_MODE_P2P_GO) {
6863 role = P2P_INVITE_ROLE_ACTIVE_GO;
6864 bssid = wpa_s->own_addr;
6865 if (go_dev_addr == NULL)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006866 go_dev_addr = wpa_s->global->p2p_dev_addr;
Dmitry Shmidt051af732013-10-22 13:52:46 -07006867 freq = ssid->frequency;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006868 } else {
6869 role = P2P_INVITE_ROLE_CLIENT;
6870 if (wpa_s->wpa_state < WPA_ASSOCIATED) {
6871 wpa_printf(MSG_DEBUG, "P2P: Not associated - cannot "
6872 "invite to current group");
6873 return -1;
6874 }
6875 bssid = wpa_s->bssid;
6876 if (go_dev_addr == NULL &&
6877 !is_zero_ether_addr(wpa_s->go_dev_addr))
6878 go_dev_addr = wpa_s->go_dev_addr;
Dmitry Shmidt051af732013-10-22 13:52:46 -07006879 freq = wpa_s->current_bss ? wpa_s->current_bss->freq :
6880 (int) wpa_s->assoc_freq;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006881 }
6882 wpa_s->parent->pending_invite_ssid_id = -1;
6883
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006884 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
6885 return -1;
6886
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006887 size = P2P_MAX_PREF_CHANNELS;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07006888 res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006889 role == P2P_INVITE_ROLE_ACTIVE_GO,
6890 pref_freq_list, &size);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08006891 if (res)
6892 return res;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07006893 wpas_p2p_set_own_freq_preference(wpa_s, force_freq);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08006894
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006895 return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08006896 ssid->ssid, ssid->ssid_len, force_freq,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08006897 go_dev_addr, persistent, pref_freq, -1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006898}
6899
6900
6901void wpas_p2p_completed(struct wpa_supplicant *wpa_s)
6902{
6903 struct wpa_ssid *ssid = wpa_s->current_ssid;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006904 u8 go_dev_addr[ETH_ALEN];
Jouni Malinen75ecf522011-06-27 15:19:46 -07006905 int network_id = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006906 int persistent;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006907 int freq;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08006908 u8 ip[3 * 4];
6909 char ip_addr[100];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006910
Dmitry Shmidt04949592012-07-19 12:16:46 -07006911 if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION) {
6912 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
6913 wpa_s->parent, NULL);
6914 }
6915
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006916 if (!wpa_s->show_group_started || !ssid)
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006917 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006918
6919 wpa_s->show_group_started = 0;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08006920 if (!wpa_s->p2p_go_group_formation_completed &&
6921 wpa_s->global->p2p_group_formation == wpa_s) {
6922 wpa_dbg(wpa_s, MSG_DEBUG,
6923 "P2P: Marking group formation completed on client on data connection");
6924 wpa_s->p2p_go_group_formation_completed = 1;
6925 wpa_s->global->p2p_group_formation = NULL;
6926 wpa_s->p2p_in_provisioning = 0;
6927 wpa_s->p2p_in_invitation = 0;
6928 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006929
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006930 os_memset(go_dev_addr, 0, ETH_ALEN);
6931 if (ssid->bssid_set)
6932 os_memcpy(go_dev_addr, ssid->bssid, ETH_ALEN);
6933 persistent = wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
6934 ssid->ssid_len);
6935 os_memcpy(wpa_s->go_dev_addr, go_dev_addr, ETH_ALEN);
6936
6937 if (wpa_s->global->p2p_group_formation == wpa_s)
6938 wpa_s->global->p2p_group_formation = NULL;
6939
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006940 freq = wpa_s->current_bss ? wpa_s->current_bss->freq :
6941 (int) wpa_s->assoc_freq;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08006942
6943 ip_addr[0] = '\0';
6944 if (wpa_sm_get_p2p_ip_addr(wpa_s->wpa, ip) == 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006945 int res;
6946
6947 res = os_snprintf(ip_addr, sizeof(ip_addr),
6948 " ip_addr=%u.%u.%u.%u "
6949 "ip_mask=%u.%u.%u.%u go_ip_addr=%u.%u.%u.%u",
6950 ip[0], ip[1], ip[2], ip[3],
6951 ip[4], ip[5], ip[6], ip[7],
6952 ip[8], ip[9], ip[10], ip[11]);
6953 if (os_snprintf_error(sizeof(ip_addr), res))
6954 ip_addr[0] = '\0';
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08006955 }
6956
Dmitry Shmidt7f0b69e2014-07-28 10:35:20 -07006957 wpas_p2p_group_started(wpa_s, 0, ssid, freq,
6958 ssid->passphrase == NULL && ssid->psk_set ?
6959 ssid->psk : NULL,
6960 ssid->passphrase, go_dev_addr, persistent,
6961 ip_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006962
6963 if (persistent)
Jouni Malinen75ecf522011-06-27 15:19:46 -07006964 network_id = wpas_p2p_store_persistent_group(wpa_s->parent,
6965 ssid, go_dev_addr);
6966 if (network_id < 0)
6967 network_id = ssid->id;
6968 wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006969}
6970
6971
6972int wpas_p2p_presence_req(struct wpa_supplicant *wpa_s, u32 duration1,
6973 u32 interval1, u32 duration2, u32 interval2)
6974{
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006975 int ret;
6976
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006977 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
6978 return -1;
6979
6980 if (wpa_s->wpa_state < WPA_ASSOCIATED ||
6981 wpa_s->current_ssid == NULL ||
6982 wpa_s->current_ssid->mode != WPAS_MODE_INFRA)
6983 return -1;
6984
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006985 ret = p2p_presence_req(wpa_s->global->p2p, wpa_s->bssid,
6986 wpa_s->own_addr, wpa_s->assoc_freq,
6987 duration1, interval1, duration2, interval2);
6988 if (ret == 0)
6989 wpa_s->waiting_presence_resp = 1;
6990
6991 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006992}
6993
6994
6995int wpas_p2p_ext_listen(struct wpa_supplicant *wpa_s, unsigned int period,
6996 unsigned int interval)
6997{
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006998 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
6999 return -1;
7000
7001 return p2p_ext_listen(wpa_s->global->p2p, period, interval);
7002}
7003
7004
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007005static int wpas_p2p_is_client(struct wpa_supplicant *wpa_s)
7006{
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08007007 if (wpa_s->current_ssid == NULL) {
7008 /*
7009 * current_ssid can be cleared when P2P client interface gets
7010 * disconnected, so assume this interface was used as P2P
7011 * client.
7012 */
7013 return 1;
7014 }
7015 return wpa_s->current_ssid->p2p_group &&
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007016 wpa_s->current_ssid->mode == WPAS_MODE_INFRA;
7017}
7018
7019
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007020static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx)
7021{
7022 struct wpa_supplicant *wpa_s = eloop_ctx;
7023
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007024 if (wpa_s->conf->p2p_group_idle == 0 && !wpas_p2p_is_client(wpa_s)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007025 wpa_printf(MSG_DEBUG, "P2P: Ignore group idle timeout - "
7026 "disabled");
7027 return;
7028 }
7029
Dmitry Shmidt04949592012-07-19 12:16:46 -07007030 wpa_printf(MSG_DEBUG, "P2P: Group idle timeout reached - terminate "
7031 "group");
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07007032 wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_IDLE_TIMEOUT);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007033}
7034
7035
7036static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s)
7037{
Dmitry Shmidt04949592012-07-19 12:16:46 -07007038 int timeout;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007039
Dmitry Shmidt04949592012-07-19 12:16:46 -07007040 if (eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
7041 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
7042
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007043 if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
7044 return;
7045
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007046 timeout = wpa_s->conf->p2p_group_idle;
7047 if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA &&
7048 (timeout == 0 || timeout > P2P_MAX_CLIENT_IDLE))
7049 timeout = P2P_MAX_CLIENT_IDLE;
7050
7051 if (timeout == 0)
7052 return;
7053
Dmitry Shmidt04949592012-07-19 12:16:46 -07007054 if (timeout < 0) {
7055 if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA)
7056 timeout = 0; /* special client mode no-timeout */
7057 else
7058 return;
7059 }
7060
7061 if (wpa_s->p2p_in_provisioning) {
7062 /*
7063 * Use the normal group formation timeout during the
7064 * provisioning phase to avoid terminating this process too
7065 * early due to group idle timeout.
7066 */
7067 wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
7068 "during provisioning");
7069 return;
7070 }
Deepthi Gowri9e4e8ac2013-04-16 11:57:05 +05307071
Dmitry Shmidt04949592012-07-19 12:16:46 -07007072 if (wpa_s->show_group_started) {
7073 /*
7074 * Use the normal group formation timeout between the end of
7075 * the provisioning phase and completion of 4-way handshake to
7076 * avoid terminating this process too early due to group idle
7077 * timeout.
7078 */
7079 wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
7080 "while waiting for initial 4-way handshake to "
7081 "complete");
7082 return;
7083 }
7084
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007085 wpa_printf(MSG_DEBUG, "P2P: Set P2P group idle timeout to %u seconds",
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007086 timeout);
7087 eloop_register_timeout(timeout, 0, wpas_p2p_group_idle_timeout,
7088 wpa_s, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007089}
7090
7091
Jouni Malinen2b89da82012-08-31 22:04:41 +03007092/* Returns 1 if the interface was removed */
7093int wpas_p2p_deauth_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
7094 u16 reason_code, const u8 *ie, size_t ie_len,
7095 int locally_generated)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007096{
7097 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
Jouni Malinen2b89da82012-08-31 22:04:41 +03007098 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007099
Dmitry Shmidt04949592012-07-19 12:16:46 -07007100 if (!locally_generated)
7101 p2p_deauth_notif(wpa_s->global->p2p, bssid, reason_code, ie,
7102 ie_len);
7103
7104 if (reason_code == WLAN_REASON_DEAUTH_LEAVING && !locally_generated &&
7105 wpa_s->current_ssid &&
7106 wpa_s->current_ssid->p2p_group &&
7107 wpa_s->current_ssid->mode == WPAS_MODE_INFRA) {
7108 wpa_printf(MSG_DEBUG, "P2P: GO indicated that the P2P Group "
7109 "session is ending");
Jouni Malinen2b89da82012-08-31 22:04:41 +03007110 if (wpas_p2p_group_delete(wpa_s,
7111 P2P_GROUP_REMOVAL_GO_ENDING_SESSION)
7112 > 0)
7113 return 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07007114 }
Jouni Malinen2b89da82012-08-31 22:04:41 +03007115
7116 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007117}
7118
7119
7120void wpas_p2p_disassoc_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
Dmitry Shmidt04949592012-07-19 12:16:46 -07007121 u16 reason_code, const u8 *ie, size_t ie_len,
7122 int locally_generated)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007123{
7124 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7125 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007126
Dmitry Shmidt04949592012-07-19 12:16:46 -07007127 if (!locally_generated)
7128 p2p_disassoc_notif(wpa_s->global->p2p, bssid, reason_code, ie,
7129 ie_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007130}
7131
7132
7133void wpas_p2p_update_config(struct wpa_supplicant *wpa_s)
7134{
7135 struct p2p_data *p2p = wpa_s->global->p2p;
7136
7137 if (p2p == NULL)
7138 return;
7139
7140 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
7141 return;
7142
7143 if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_NAME)
7144 p2p_set_dev_name(p2p, wpa_s->conf->device_name);
7145
7146 if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_TYPE)
7147 p2p_set_pri_dev_type(p2p, wpa_s->conf->device_type);
7148
7149 if (wpa_s->wps &&
7150 (wpa_s->conf->changed_parameters & CFG_CHANGED_CONFIG_METHODS))
7151 p2p_set_config_methods(p2p, wpa_s->wps->config_methods);
7152
7153 if (wpa_s->wps && (wpa_s->conf->changed_parameters & CFG_CHANGED_UUID))
7154 p2p_set_uuid(p2p, wpa_s->wps->uuid);
7155
7156 if (wpa_s->conf->changed_parameters & CFG_CHANGED_WPS_STRING) {
7157 p2p_set_manufacturer(p2p, wpa_s->conf->manufacturer);
7158 p2p_set_model_name(p2p, wpa_s->conf->model_name);
7159 p2p_set_model_number(p2p, wpa_s->conf->model_number);
7160 p2p_set_serial_number(p2p, wpa_s->conf->serial_number);
7161 }
7162
7163 if (wpa_s->conf->changed_parameters & CFG_CHANGED_SEC_DEVICE_TYPE)
7164 p2p_set_sec_dev_types(p2p,
7165 (void *) wpa_s->conf->sec_device_type,
7166 wpa_s->conf->num_sec_device_types);
7167
7168 if (wpa_s->conf->changed_parameters & CFG_CHANGED_VENDOR_EXTENSION) {
7169 int i;
7170 p2p_remove_wps_vendor_extensions(p2p);
7171 for (i = 0; i < MAX_WPS_VENDOR_EXT; i++) {
7172 if (wpa_s->conf->wps_vendor_ext[i] == NULL)
7173 continue;
7174 p2p_add_wps_vendor_extension(
7175 p2p, wpa_s->conf->wps_vendor_ext[i]);
7176 }
7177 }
7178
7179 if ((wpa_s->conf->changed_parameters & CFG_CHANGED_COUNTRY) &&
7180 wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
7181 char country[3];
7182 country[0] = wpa_s->conf->country[0];
7183 country[1] = wpa_s->conf->country[1];
7184 country[2] = 0x04;
7185 p2p_set_country(p2p, country);
7186 }
7187
7188 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_SSID_POSTFIX) {
7189 p2p_set_ssid_postfix(p2p, (u8 *) wpa_s->conf->p2p_ssid_postfix,
7190 wpa_s->conf->p2p_ssid_postfix ?
7191 os_strlen(wpa_s->conf->p2p_ssid_postfix) :
7192 0);
7193 }
7194
7195 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_INTRA_BSS)
7196 p2p_set_intra_bss_dist(p2p, wpa_s->conf->p2p_intra_bss);
Jouni Malinen75ecf522011-06-27 15:19:46 -07007197
7198 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_LISTEN_CHANNEL) {
7199 u8 reg_class, channel;
7200 int ret;
7201 unsigned int r;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07007202 u8 channel_forced;
7203
Jouni Malinen75ecf522011-06-27 15:19:46 -07007204 if (wpa_s->conf->p2p_listen_reg_class &&
7205 wpa_s->conf->p2p_listen_channel) {
7206 reg_class = wpa_s->conf->p2p_listen_reg_class;
7207 channel = wpa_s->conf->p2p_listen_channel;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07007208 channel_forced = 1;
Jouni Malinen75ecf522011-06-27 15:19:46 -07007209 } else {
7210 reg_class = 81;
7211 /*
7212 * Pick one of the social channels randomly as the
7213 * listen channel.
7214 */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07007215 if (os_get_random((u8 *) &r, sizeof(r)) < 0)
7216 channel = 1;
7217 else
7218 channel = 1 + (r % 3) * 5;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07007219 channel_forced = 0;
Jouni Malinen75ecf522011-06-27 15:19:46 -07007220 }
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07007221 ret = p2p_set_listen_channel(p2p, reg_class, channel,
7222 channel_forced);
Jouni Malinen75ecf522011-06-27 15:19:46 -07007223 if (ret)
7224 wpa_printf(MSG_ERROR, "P2P: Own listen channel update "
7225 "failed: %d", ret);
7226 }
7227 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_OPER_CHANNEL) {
7228 u8 op_reg_class, op_channel, cfg_op_channel;
7229 int ret = 0;
7230 unsigned int r;
7231 if (wpa_s->conf->p2p_oper_reg_class &&
7232 wpa_s->conf->p2p_oper_channel) {
7233 op_reg_class = wpa_s->conf->p2p_oper_reg_class;
7234 op_channel = wpa_s->conf->p2p_oper_channel;
7235 cfg_op_channel = 1;
7236 } else {
7237 op_reg_class = 81;
7238 /*
7239 * Use random operation channel from (1, 6, 11)
7240 *if no other preference is indicated.
7241 */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07007242 if (os_get_random((u8 *) &r, sizeof(r)) < 0)
7243 op_channel = 1;
7244 else
7245 op_channel = 1 + (r % 3) * 5;
Jouni Malinen75ecf522011-06-27 15:19:46 -07007246 cfg_op_channel = 0;
7247 }
7248 ret = p2p_set_oper_channel(p2p, op_reg_class, op_channel,
7249 cfg_op_channel);
7250 if (ret)
7251 wpa_printf(MSG_ERROR, "P2P: Own oper channel update "
7252 "failed: %d", ret);
7253 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07007254
7255 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_PREF_CHAN) {
7256 if (p2p_set_pref_chan(p2p, wpa_s->conf->num_p2p_pref_chan,
7257 wpa_s->conf->p2p_pref_chan) < 0) {
7258 wpa_printf(MSG_ERROR, "P2P: Preferred channel list "
7259 "update failed");
7260 }
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07007261
7262 if (p2p_set_no_go_freq(p2p, &wpa_s->conf->p2p_no_go_freq) < 0) {
7263 wpa_printf(MSG_ERROR, "P2P: No GO channel list "
7264 "update failed");
7265 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07007266 }
Dmitry Shmidt2271d3f2014-06-23 12:16:31 -07007267
7268 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_PASSPHRASE_LEN)
7269 p2p_set_passphrase_len(p2p, wpa_s->conf->p2p_passphrase_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007270}
7271
7272
7273int wpas_p2p_set_noa(struct wpa_supplicant *wpa_s, u8 count, int start,
7274 int duration)
7275{
7276 if (!wpa_s->ap_iface)
7277 return -1;
7278 return hostapd_p2p_set_noa(wpa_s->ap_iface->bss[0], count, start,
7279 duration);
7280}
7281
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007282
7283int wpas_p2p_set_cross_connect(struct wpa_supplicant *wpa_s, int enabled)
7284{
7285 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7286 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007287
7288 wpa_s->global->cross_connection = enabled;
7289 p2p_set_cross_connect(wpa_s->global->p2p, enabled);
7290
7291 if (!enabled) {
7292 struct wpa_supplicant *iface;
7293
7294 for (iface = wpa_s->global->ifaces; iface; iface = iface->next)
7295 {
7296 if (iface->cross_connect_enabled == 0)
7297 continue;
7298
7299 iface->cross_connect_enabled = 0;
7300 iface->cross_connect_in_use = 0;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07007301 wpa_msg_global(iface->parent, MSG_INFO,
7302 P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
7303 iface->ifname,
7304 iface->cross_connect_uplink);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007305 }
7306 }
7307
7308 return 0;
7309}
7310
7311
7312static void wpas_p2p_enable_cross_connect(struct wpa_supplicant *uplink)
7313{
7314 struct wpa_supplicant *iface;
7315
7316 if (!uplink->global->cross_connection)
7317 return;
7318
7319 for (iface = uplink->global->ifaces; iface; iface = iface->next) {
7320 if (!iface->cross_connect_enabled)
7321 continue;
7322 if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
7323 0)
7324 continue;
7325 if (iface->ap_iface == NULL)
7326 continue;
7327 if (iface->cross_connect_in_use)
7328 continue;
7329
7330 iface->cross_connect_in_use = 1;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07007331 wpa_msg_global(iface->parent, MSG_INFO,
7332 P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
7333 iface->ifname, iface->cross_connect_uplink);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007334 }
7335}
7336
7337
7338static void wpas_p2p_disable_cross_connect(struct wpa_supplicant *uplink)
7339{
7340 struct wpa_supplicant *iface;
7341
7342 for (iface = uplink->global->ifaces; iface; iface = iface->next) {
7343 if (!iface->cross_connect_enabled)
7344 continue;
7345 if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
7346 0)
7347 continue;
7348 if (!iface->cross_connect_in_use)
7349 continue;
7350
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07007351 wpa_msg_global(iface->parent, MSG_INFO,
7352 P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
7353 iface->ifname, iface->cross_connect_uplink);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007354 iface->cross_connect_in_use = 0;
7355 }
7356}
7357
7358
7359void wpas_p2p_notif_connected(struct wpa_supplicant *wpa_s)
7360{
7361 if (wpa_s->ap_iface || wpa_s->current_ssid == NULL ||
7362 wpa_s->current_ssid->mode != WPAS_MODE_INFRA ||
7363 wpa_s->cross_connect_disallowed)
7364 wpas_p2p_disable_cross_connect(wpa_s);
7365 else
7366 wpas_p2p_enable_cross_connect(wpa_s);
Dmitry Shmidt04949592012-07-19 12:16:46 -07007367 if (!wpa_s->ap_iface &&
7368 eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
7369 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007370}
7371
7372
7373void wpas_p2p_notif_disconnected(struct wpa_supplicant *wpa_s)
7374{
7375 wpas_p2p_disable_cross_connect(wpa_s);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007376 if (!wpa_s->ap_iface &&
7377 !eloop_is_timeout_registered(wpas_p2p_group_idle_timeout,
7378 wpa_s, NULL))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007379 wpas_p2p_set_group_idle_timeout(wpa_s);
7380}
7381
7382
7383static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s)
7384{
7385 struct wpa_supplicant *iface;
7386
7387 if (!wpa_s->global->cross_connection)
7388 return;
7389
7390 for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
7391 if (iface == wpa_s)
7392 continue;
7393 if (iface->drv_flags &
7394 WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE)
7395 continue;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007396 if ((iface->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE) &&
7397 iface != wpa_s->parent)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007398 continue;
7399
7400 wpa_s->cross_connect_enabled = 1;
7401 os_strlcpy(wpa_s->cross_connect_uplink, iface->ifname,
7402 sizeof(wpa_s->cross_connect_uplink));
7403 wpa_printf(MSG_DEBUG, "P2P: Enable cross connection from "
7404 "%s to %s whenever uplink is available",
7405 wpa_s->ifname, wpa_s->cross_connect_uplink);
7406
7407 if (iface->ap_iface || iface->current_ssid == NULL ||
7408 iface->current_ssid->mode != WPAS_MODE_INFRA ||
7409 iface->cross_connect_disallowed ||
7410 iface->wpa_state != WPA_COMPLETED)
7411 break;
7412
7413 wpa_s->cross_connect_in_use = 1;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07007414 wpa_msg_global(wpa_s->parent, MSG_INFO,
7415 P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
7416 wpa_s->ifname, wpa_s->cross_connect_uplink);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007417 break;
7418 }
7419}
7420
7421
7422int wpas_p2p_notif_pbc_overlap(struct wpa_supplicant *wpa_s)
7423{
7424 if (wpa_s->p2p_group_interface != P2P_GROUP_INTERFACE_CLIENT &&
7425 !wpa_s->p2p_in_provisioning)
7426 return 0; /* not P2P client operation */
7427
7428 wpa_printf(MSG_DEBUG, "P2P: Terminate connection due to WPS PBC "
7429 "session overlap");
7430 if (wpa_s != wpa_s->parent)
7431 wpa_msg_ctrl(wpa_s->parent, MSG_INFO, WPS_EVENT_OVERLAP);
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07007432 wpas_p2p_group_formation_failed(wpa_s, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007433 return 1;
7434}
7435
7436
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07007437void wpas_p2p_pbc_overlap_cb(void *eloop_ctx, void *timeout_ctx)
7438{
7439 struct wpa_supplicant *wpa_s = eloop_ctx;
7440 wpas_p2p_notif_pbc_overlap(wpa_s);
7441}
7442
7443
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007444void wpas_p2p_update_channel_list(struct wpa_supplicant *wpa_s,
7445 enum wpas_p2p_channel_update_trig trig)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007446{
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07007447 struct p2p_channels chan, cli_chan;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007448 struct wpa_used_freq_data *freqs = NULL;
7449 unsigned int num = wpa_s->num_multichan_concurrent;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007450
7451 if (wpa_s->global == NULL || wpa_s->global->p2p == NULL)
7452 return;
7453
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007454 freqs = os_calloc(num, sizeof(struct wpa_used_freq_data));
7455 if (!freqs)
7456 return;
7457
7458 num = get_shared_radio_freqs_data(wpa_s, freqs, num);
7459
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007460 os_memset(&chan, 0, sizeof(chan));
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07007461 os_memset(&cli_chan, 0, sizeof(cli_chan));
7462 if (wpas_p2p_setup_channels(wpa_s, &chan, &cli_chan)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007463 wpa_printf(MSG_ERROR, "P2P: Failed to update supported "
7464 "channel list");
7465 return;
7466 }
7467
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07007468 p2p_update_channel_list(wpa_s->global->p2p, &chan, &cli_chan);
Dmitry Shmidt684785c2014-05-12 13:34:29 -07007469
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007470 wpas_p2p_optimize_listen_channel(wpa_s, freqs, num);
Dmitry Shmidt684785c2014-05-12 13:34:29 -07007471
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007472 /*
7473 * The used frequencies map changed, so it is possible that a GO is
7474 * using a channel that is no longer valid for P2P use. It is also
7475 * possible that due to policy consideration, it would be preferable to
7476 * move it to a frequency already used by other station interfaces.
7477 */
7478 wpas_p2p_consider_moving_gos(wpa_s, freqs, num, trig);
7479
7480 os_free(freqs);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007481}
7482
7483
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08007484static void wpas_p2p_scan_res_ignore(struct wpa_supplicant *wpa_s,
7485 struct wpa_scan_results *scan_res)
7486{
7487 wpa_printf(MSG_DEBUG, "P2P: Ignore scan results");
7488}
7489
7490
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007491int wpas_p2p_cancel(struct wpa_supplicant *wpa_s)
7492{
7493 struct wpa_global *global = wpa_s->global;
7494 int found = 0;
7495 const u8 *peer;
7496
7497 if (global->p2p == NULL)
7498 return -1;
7499
7500 wpa_printf(MSG_DEBUG, "P2P: Request to cancel group formation");
7501
7502 if (wpa_s->pending_interface_name[0] &&
7503 !is_zero_ether_addr(wpa_s->pending_interface_addr))
7504 found = 1;
7505
7506 peer = p2p_get_go_neg_peer(global->p2p);
7507 if (peer) {
7508 wpa_printf(MSG_DEBUG, "P2P: Unauthorize pending GO Neg peer "
7509 MACSTR, MAC2STR(peer));
7510 p2p_unauthorize(global->p2p, peer);
Dmitry Shmidt04949592012-07-19 12:16:46 -07007511 found = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007512 }
7513
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08007514 if (wpa_s->scan_res_handler == wpas_p2p_scan_res_join) {
7515 wpa_printf(MSG_DEBUG, "P2P: Stop pending scan for join");
7516 wpa_s->scan_res_handler = wpas_p2p_scan_res_ignore;
7517 found = 1;
7518 }
7519
7520 if (wpa_s->pending_pd_before_join) {
7521 wpa_printf(MSG_DEBUG, "P2P: Stop pending PD before join");
7522 wpa_s->pending_pd_before_join = 0;
7523 found = 1;
7524 }
7525
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007526 wpas_p2p_stop_find(wpa_s);
7527
7528 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
7529 if (wpa_s == global->p2p_group_formation &&
7530 (wpa_s->p2p_in_provisioning ||
7531 wpa_s->parent->pending_interface_type ==
7532 WPA_IF_P2P_CLIENT)) {
7533 wpa_printf(MSG_DEBUG, "P2P: Interface %s in group "
7534 "formation found - cancelling",
7535 wpa_s->ifname);
7536 found = 1;
7537 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
7538 wpa_s->parent, NULL);
Jouni Malinenadddfc42012-10-03 14:31:41 -07007539 if (wpa_s->p2p_in_provisioning) {
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07007540 wpas_group_formation_completed(wpa_s, 0, 0);
Jouni Malinenadddfc42012-10-03 14:31:41 -07007541 break;
7542 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07007543 wpas_p2p_group_delete(wpa_s,
7544 P2P_GROUP_REMOVAL_REQUESTED);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007545 break;
Dmitry Shmidt21de2142014-04-08 10:50:52 -07007546 } else if (wpa_s->p2p_in_invitation) {
7547 wpa_printf(MSG_DEBUG, "P2P: Interface %s in invitation found - cancelling",
7548 wpa_s->ifname);
7549 found = 1;
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07007550 wpas_p2p_group_formation_failed(wpa_s, 0);
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08007551 break;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007552 }
7553 }
7554
7555 if (!found) {
7556 wpa_printf(MSG_DEBUG, "P2P: No ongoing group formation found");
7557 return -1;
7558 }
7559
7560 return 0;
7561}
7562
7563
7564void wpas_p2p_interface_unavailable(struct wpa_supplicant *wpa_s)
7565{
7566 if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
7567 return;
7568
7569 wpa_printf(MSG_DEBUG, "P2P: Remove group due to driver resource not "
7570 "being available anymore");
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07007571 wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_UNAVAILABLE);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007572}
7573
7574
7575void wpas_p2p_update_best_channels(struct wpa_supplicant *wpa_s,
7576 int freq_24, int freq_5, int freq_overall)
7577{
7578 struct p2p_data *p2p = wpa_s->global->p2p;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007579 if (p2p == NULL)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007580 return;
7581 p2p_set_best_channels(p2p, freq_24, freq_5, freq_overall);
7582}
7583
7584
7585int wpas_p2p_unauthorize(struct wpa_supplicant *wpa_s, const char *addr)
7586{
7587 u8 peer[ETH_ALEN];
7588 struct p2p_data *p2p = wpa_s->global->p2p;
7589
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007590 if (p2p == NULL)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007591 return -1;
7592
7593 if (hwaddr_aton(addr, peer))
7594 return -1;
7595
7596 return p2p_unauthorize(p2p, peer);
7597}
7598
7599
7600/**
7601 * wpas_p2p_disconnect - Disconnect from a P2P Group
7602 * @wpa_s: Pointer to wpa_supplicant data
7603 * Returns: 0 on success, -1 on failure
7604 *
7605 * This can be used to disconnect from a group in which the local end is a P2P
7606 * Client or to end a P2P Group in case the local end is the Group Owner. If a
7607 * virtual network interface was created for this group, that interface will be
7608 * removed. Otherwise, only the configured P2P group network will be removed
7609 * from the interface.
7610 */
7611int wpas_p2p_disconnect(struct wpa_supplicant *wpa_s)
7612{
7613
7614 if (wpa_s == NULL)
7615 return -1;
7616
Jouni Malinen2b89da82012-08-31 22:04:41 +03007617 return wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_REQUESTED) < 0 ?
7618 -1 : 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007619}
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007620
7621
7622int wpas_p2p_in_progress(struct wpa_supplicant *wpa_s)
7623{
Dmitry Shmidtf8623282013-02-20 14:34:59 -08007624 int ret;
7625
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007626 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7627 return 0;
7628
Dmitry Shmidtf8623282013-02-20 14:34:59 -08007629 ret = p2p_in_progress(wpa_s->global->p2p);
7630 if (ret == 0) {
7631 /*
7632 * Check whether there is an ongoing WPS provisioning step (or
7633 * other parts of group formation) on another interface since
7634 * p2p_in_progress() does not report this to avoid issues for
7635 * scans during such provisioning step.
7636 */
7637 if (wpa_s->global->p2p_group_formation &&
7638 wpa_s->global->p2p_group_formation != wpa_s) {
7639 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Another interface (%s) "
7640 "in group formation",
7641 wpa_s->global->p2p_group_formation->ifname);
7642 ret = 1;
7643 }
7644 }
7645
Dmitry Shmidt92c368d2013-08-29 12:37:21 -07007646 if (!ret && wpa_s->global->p2p_go_wait_client.sec) {
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007647 struct os_reltime now;
7648 os_get_reltime(&now);
7649 if (os_reltime_expired(&now, &wpa_s->global->p2p_go_wait_client,
7650 P2P_MAX_INITIAL_CONN_WAIT_GO)) {
Dmitry Shmidt92c368d2013-08-29 12:37:21 -07007651 /* Wait for the first client has expired */
7652 wpa_s->global->p2p_go_wait_client.sec = 0;
7653 } else {
7654 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Waiting for initial client connection during group formation");
7655 ret = 1;
7656 }
7657 }
7658
Dmitry Shmidtf8623282013-02-20 14:34:59 -08007659 return ret;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007660}
7661
7662
7663void wpas_p2p_network_removed(struct wpa_supplicant *wpa_s,
7664 struct wpa_ssid *ssid)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007665{
7666 if (wpa_s->p2p_in_provisioning && ssid->p2p_group &&
7667 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
7668 wpa_s->parent, NULL) > 0) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07007669 /**
7670 * Remove the network by scheduling the group formation
7671 * timeout to happen immediately. The teardown code
7672 * needs to be scheduled to run asynch later so that we
7673 * don't delete data from under ourselves unexpectedly.
7674 * Calling wpas_p2p_group_formation_timeout directly
7675 * causes a series of crashes in WPS failure scenarios.
7676 */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007677 wpa_printf(MSG_DEBUG, "P2P: Canceled group formation due to "
7678 "P2P group network getting removed");
Dmitry Shmidt04949592012-07-19 12:16:46 -07007679 eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
7680 wpa_s->parent, NULL);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007681 }
7682}
7683
7684
7685struct wpa_ssid * wpas_p2p_get_persistent(struct wpa_supplicant *wpa_s,
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08007686 const u8 *addr, const u8 *ssid,
7687 size_t ssid_len)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007688{
7689 struct wpa_ssid *s;
7690 size_t i;
7691
7692 for (s = wpa_s->conf->ssid; s; s = s->next) {
7693 if (s->disabled != 2)
7694 continue;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08007695 if (ssid &&
7696 (ssid_len != s->ssid_len ||
7697 os_memcmp(ssid, s->ssid, ssid_len) != 0))
7698 continue;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07007699 if (addr == NULL) {
7700 if (s->mode == WPAS_MODE_P2P_GO)
7701 return s;
7702 continue;
7703 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007704 if (os_memcmp(s->bssid, addr, ETH_ALEN) == 0)
7705 return s; /* peer is GO in the persistent group */
7706 if (s->mode != WPAS_MODE_P2P_GO || s->p2p_client_list == NULL)
7707 continue;
7708 for (i = 0; i < s->num_p2p_clients; i++) {
Dmitry Shmidtff787d52015-01-12 13:01:47 -08007709 if (os_memcmp(s->p2p_client_list + i * 2 * ETH_ALEN,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007710 addr, ETH_ALEN) == 0)
7711 return s; /* peer is P2P client in persistent
7712 * group */
7713 }
7714 }
7715
7716 return NULL;
7717}
7718
7719
7720void wpas_p2p_notify_ap_sta_authorized(struct wpa_supplicant *wpa_s,
7721 const u8 *addr)
7722{
Dmitry Shmidt56052862013-10-04 10:23:25 -07007723 if (eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
7724 wpa_s->parent, NULL) > 0) {
7725 /*
7726 * This can happen if WPS provisioning step is not terminated
7727 * cleanly (e.g., P2P Client does not send WSC_Done). Since the
7728 * peer was able to connect, there is no need to time out group
7729 * formation after this, though. In addition, this is used with
7730 * the initial connection wait on the GO as a separate formation
7731 * timeout and as such, expected to be hit after the initial WPS
7732 * provisioning step.
7733 */
7734 wpa_printf(MSG_DEBUG, "P2P: Canceled P2P group formation timeout on data connection");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007735
7736 if (!wpa_s->p2p_go_group_formation_completed &&
7737 !wpa_s->group_formation_reported) {
7738 /*
7739 * GO has not yet notified group formation success since
7740 * the WPS step was not completed cleanly. Do that
7741 * notification now since the P2P Client was able to
7742 * connect and as such, must have received the
7743 * credential from the WPS step.
7744 */
7745 if (wpa_s->global->p2p)
7746 p2p_wps_success_cb(wpa_s->global->p2p, addr);
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07007747 wpas_group_formation_completed(wpa_s, 1, 0);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007748 }
Dmitry Shmidt56052862013-10-04 10:23:25 -07007749 }
7750 if (!wpa_s->p2p_go_group_formation_completed) {
7751 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Marking group formation completed on GO on first data connection");
7752 wpa_s->p2p_go_group_formation_completed = 1;
7753 wpa_s->global->p2p_group_formation = NULL;
7754 wpa_s->p2p_in_provisioning = 0;
Dmitry Shmidt21de2142014-04-08 10:50:52 -07007755 wpa_s->p2p_in_invitation = 0;
Dmitry Shmidt56052862013-10-04 10:23:25 -07007756 }
Dmitry Shmidt92c368d2013-08-29 12:37:21 -07007757 wpa_s->global->p2p_go_wait_client.sec = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08007758 if (addr == NULL)
7759 return;
7760 wpas_p2p_add_persistent_group_client(wpa_s, addr);
7761}
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08007762
Dmitry Shmidt04949592012-07-19 12:16:46 -07007763
Dmitry Shmidt7f656022015-02-25 14:36:37 -08007764static int wpas_p2p_fallback_to_go_neg(struct wpa_supplicant *wpa_s,
7765 int group_added)
Dmitry Shmidt04949592012-07-19 12:16:46 -07007766{
7767 struct wpa_supplicant *group = wpa_s;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08007768 int ret = 0;
7769
Dmitry Shmidt04949592012-07-19 12:16:46 -07007770 if (wpa_s->global->p2p_group_formation)
7771 group = wpa_s->global->p2p_group_formation;
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07007772 wpa_s = wpa_s->global->p2p_init_wpa_s;
Dmitry Shmidt04949592012-07-19 12:16:46 -07007773 offchannel_send_action_done(wpa_s);
7774 if (group_added)
Dmitry Shmidt7f656022015-02-25 14:36:37 -08007775 ret = wpas_p2p_group_delete(group, P2P_GROUP_REMOVAL_SILENT);
Dmitry Shmidt04949592012-07-19 12:16:46 -07007776 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Fall back to GO Negotiation");
7777 wpas_p2p_connect(wpa_s, wpa_s->pending_join_dev_addr, wpa_s->p2p_pin,
7778 wpa_s->p2p_wps_method, wpa_s->p2p_persistent_group, 0,
7779 0, 0, wpa_s->p2p_go_intent, wpa_s->p2p_connect_freq,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08007780 wpa_s->p2p_go_vht_center_freq2,
Dmitry Shmidt04949592012-07-19 12:16:46 -07007781 wpa_s->p2p_persistent_id,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07007782 wpa_s->p2p_pd_before_go_neg,
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07007783 wpa_s->p2p_go_ht40,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08007784 wpa_s->p2p_go_vht,
Dmitry Shmidtde47be72016-01-07 12:52:55 -08007785 wpa_s->p2p_go_max_oper_chwidth, NULL, 0);
Dmitry Shmidt7f656022015-02-25 14:36:37 -08007786 return ret;
Dmitry Shmidt04949592012-07-19 12:16:46 -07007787}
7788
7789
7790int wpas_p2p_scan_no_go_seen(struct wpa_supplicant *wpa_s)
7791{
Dmitry Shmidt7f656022015-02-25 14:36:37 -08007792 int res;
7793
Dmitry Shmidt04949592012-07-19 12:16:46 -07007794 if (!wpa_s->p2p_fallback_to_go_neg ||
7795 wpa_s->p2p_in_provisioning <= 5)
7796 return 0;
7797
7798 if (wpas_p2p_peer_go(wpa_s, wpa_s->pending_join_dev_addr) > 0)
7799 return 0; /* peer operating as a GO */
7800
7801 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: GO not found for p2p_connect-auto - "
7802 "fallback to GO Negotiation");
Dmitry Shmidt7f656022015-02-25 14:36:37 -08007803 wpa_msg_global(wpa_s->parent, MSG_INFO, P2P_EVENT_FALLBACK_TO_GO_NEG
7804 "reason=GO-not-found");
7805 res = wpas_p2p_fallback_to_go_neg(wpa_s, 1);
Dmitry Shmidt04949592012-07-19 12:16:46 -07007806
Dmitry Shmidt7f656022015-02-25 14:36:37 -08007807 return res == 1 ? 2 : 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07007808}
7809
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07007810
7811unsigned int wpas_p2p_search_delay(struct wpa_supplicant *wpa_s)
7812{
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07007813 struct wpa_supplicant *ifs;
7814
7815 if (wpa_s->wpa_state > WPA_SCANNING) {
7816 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use %u ms search delay due to "
7817 "concurrent operation",
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -07007818 wpa_s->conf->p2p_search_delay);
7819 return wpa_s->conf->p2p_search_delay;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07007820 }
7821
Dmitry Shmidt01904cf2013-12-05 11:08:35 -08007822 dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
7823 radio_list) {
7824 if (ifs != wpa_s && ifs->wpa_state > WPA_SCANNING) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07007825 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use %u ms search "
7826 "delay due to concurrent operation on "
7827 "interface %s",
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -07007828 wpa_s->conf->p2p_search_delay,
7829 ifs->ifname);
7830 return wpa_s->conf->p2p_search_delay;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07007831 }
7832 }
7833
7834 return 0;
7835}
7836
Dmitry Shmidt37d4d6a2013-03-18 13:09:42 -07007837
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07007838static int wpas_p2p_remove_psk_entry(struct wpa_supplicant *wpa_s,
7839 struct wpa_ssid *s, const u8 *addr,
7840 int iface_addr)
7841{
7842 struct psk_list_entry *psk, *tmp;
7843 int changed = 0;
7844
7845 dl_list_for_each_safe(psk, tmp, &s->psk_list, struct psk_list_entry,
7846 list) {
7847 if ((iface_addr && !psk->p2p &&
7848 os_memcmp(addr, psk->addr, ETH_ALEN) == 0) ||
7849 (!iface_addr && psk->p2p &&
7850 os_memcmp(addr, psk->addr, ETH_ALEN) == 0)) {
7851 wpa_dbg(wpa_s, MSG_DEBUG,
7852 "P2P: Remove persistent group PSK list entry for "
7853 MACSTR " p2p=%u",
7854 MAC2STR(psk->addr), psk->p2p);
7855 dl_list_del(&psk->list);
7856 os_free(psk);
7857 changed++;
7858 }
7859 }
7860
7861 return changed;
7862}
7863
7864
7865void wpas_p2p_new_psk_cb(struct wpa_supplicant *wpa_s, const u8 *mac_addr,
7866 const u8 *p2p_dev_addr,
7867 const u8 *psk, size_t psk_len)
7868{
7869 struct wpa_ssid *ssid = wpa_s->current_ssid;
7870 struct wpa_ssid *persistent;
Dmitry Shmidt7832adb2014-04-29 10:53:02 -07007871 struct psk_list_entry *p, *last;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07007872
7873 if (psk_len != sizeof(p->psk))
7874 return;
7875
7876 if (p2p_dev_addr) {
7877 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New PSK for addr=" MACSTR
7878 " p2p_dev_addr=" MACSTR,
7879 MAC2STR(mac_addr), MAC2STR(p2p_dev_addr));
7880 if (is_zero_ether_addr(p2p_dev_addr))
7881 p2p_dev_addr = NULL;
7882 } else {
7883 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New PSK for addr=" MACSTR,
7884 MAC2STR(mac_addr));
7885 }
7886
7887 if (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
7888 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: new_psk_cb during group formation");
7889 /* To be added to persistent group once created */
7890 if (wpa_s->global->add_psk == NULL) {
7891 wpa_s->global->add_psk = os_zalloc(sizeof(*p));
7892 if (wpa_s->global->add_psk == NULL)
7893 return;
7894 }
7895 p = wpa_s->global->add_psk;
7896 if (p2p_dev_addr) {
7897 p->p2p = 1;
7898 os_memcpy(p->addr, p2p_dev_addr, ETH_ALEN);
7899 } else {
7900 p->p2p = 0;
7901 os_memcpy(p->addr, mac_addr, ETH_ALEN);
7902 }
7903 os_memcpy(p->psk, psk, psk_len);
7904 return;
7905 }
7906
7907 if (ssid->mode != WPAS_MODE_P2P_GO || !ssid->p2p_persistent_group) {
7908 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Ignore new_psk_cb on not-persistent GO");
7909 return;
7910 }
7911
7912 persistent = wpas_p2p_get_persistent(wpa_s->parent, NULL, ssid->ssid,
7913 ssid->ssid_len);
7914 if (!persistent) {
7915 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not find persistent group information to store the new PSK");
7916 return;
7917 }
7918
7919 p = os_zalloc(sizeof(*p));
7920 if (p == NULL)
7921 return;
7922 if (p2p_dev_addr) {
7923 p->p2p = 1;
7924 os_memcpy(p->addr, p2p_dev_addr, ETH_ALEN);
7925 } else {
7926 p->p2p = 0;
7927 os_memcpy(p->addr, mac_addr, ETH_ALEN);
7928 }
7929 os_memcpy(p->psk, psk, psk_len);
7930
Dmitry Shmidt7832adb2014-04-29 10:53:02 -07007931 if (dl_list_len(&persistent->psk_list) > P2P_MAX_STORED_CLIENTS &&
7932 (last = dl_list_last(&persistent->psk_list,
7933 struct psk_list_entry, list))) {
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07007934 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove oldest PSK entry for "
7935 MACSTR " (p2p=%u) to make room for a new one",
7936 MAC2STR(last->addr), last->p2p);
7937 dl_list_del(&last->list);
7938 os_free(last);
7939 }
7940
7941 wpas_p2p_remove_psk_entry(wpa_s->parent, persistent,
7942 p2p_dev_addr ? p2p_dev_addr : mac_addr,
7943 p2p_dev_addr == NULL);
7944 if (p2p_dev_addr) {
7945 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add new PSK for p2p_dev_addr="
7946 MACSTR, MAC2STR(p2p_dev_addr));
7947 } else {
7948 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add new PSK for addr=" MACSTR,
7949 MAC2STR(mac_addr));
7950 }
7951 dl_list_add(&persistent->psk_list, &p->list);
7952
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07007953 if (wpa_s->parent->conf->update_config &&
7954 wpa_config_write(wpa_s->parent->confname, wpa_s->parent->conf))
7955 wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07007956}
7957
7958
7959static void wpas_p2p_remove_psk(struct wpa_supplicant *wpa_s,
7960 struct wpa_ssid *s, const u8 *addr,
7961 int iface_addr)
7962{
7963 int res;
7964
7965 res = wpas_p2p_remove_psk_entry(wpa_s, s, addr, iface_addr);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08007966 if (res > 0 && wpa_s->conf->update_config &&
7967 wpa_config_write(wpa_s->confname, wpa_s->conf))
7968 wpa_dbg(wpa_s, MSG_DEBUG,
7969 "P2P: Failed to update configuration");
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07007970}
7971
7972
7973static void wpas_p2p_remove_client_go(struct wpa_supplicant *wpa_s,
7974 const u8 *peer, int iface_addr)
7975{
7976 struct hostapd_data *hapd;
7977 struct hostapd_wpa_psk *psk, *prev, *rem;
7978 struct sta_info *sta;
7979
7980 if (wpa_s->ap_iface == NULL || wpa_s->current_ssid == NULL ||
7981 wpa_s->current_ssid->mode != WPAS_MODE_P2P_GO)
7982 return;
7983
7984 /* Remove per-station PSK entry */
7985 hapd = wpa_s->ap_iface->bss[0];
7986 prev = NULL;
7987 psk = hapd->conf->ssid.wpa_psk;
7988 while (psk) {
7989 if ((iface_addr && os_memcmp(peer, psk->addr, ETH_ALEN) == 0) ||
7990 (!iface_addr &&
7991 os_memcmp(peer, psk->p2p_dev_addr, ETH_ALEN) == 0)) {
7992 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove operating group PSK entry for "
7993 MACSTR " iface_addr=%d",
7994 MAC2STR(peer), iface_addr);
7995 if (prev)
7996 prev->next = psk->next;
7997 else
7998 hapd->conf->ssid.wpa_psk = psk->next;
7999 rem = psk;
8000 psk = psk->next;
8001 os_free(rem);
8002 } else {
8003 prev = psk;
8004 psk = psk->next;
8005 }
8006 }
8007
8008 /* Disconnect from group */
8009 if (iface_addr)
8010 sta = ap_get_sta(hapd, peer);
8011 else
8012 sta = ap_get_sta_p2p(hapd, peer);
8013 if (sta) {
8014 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Disconnect peer " MACSTR
8015 " (iface_addr=%d) from group",
8016 MAC2STR(peer), iface_addr);
8017 hostapd_drv_sta_deauth(hapd, sta->addr,
8018 WLAN_REASON_DEAUTH_LEAVING);
8019 ap_sta_deauthenticate(hapd, sta, WLAN_REASON_DEAUTH_LEAVING);
8020 }
8021}
8022
8023
8024void wpas_p2p_remove_client(struct wpa_supplicant *wpa_s, const u8 *peer,
8025 int iface_addr)
8026{
8027 struct wpa_ssid *s;
8028 struct wpa_supplicant *w;
Dmitry Shmidt8bd70b72015-05-26 16:02:19 -07008029 struct wpa_supplicant *p2p_wpa_s = wpa_s->global->p2p_init_wpa_s;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07008030
8031 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove client " MACSTR, MAC2STR(peer));
8032
8033 /* Remove from any persistent group */
Dmitry Shmidt8bd70b72015-05-26 16:02:19 -07008034 for (s = p2p_wpa_s->conf->ssid; s; s = s->next) {
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07008035 if (s->disabled != 2 || s->mode != WPAS_MODE_P2P_GO)
8036 continue;
8037 if (!iface_addr)
Dmitry Shmidt8bd70b72015-05-26 16:02:19 -07008038 wpas_remove_persistent_peer(p2p_wpa_s, s, peer, 0);
8039 wpas_p2p_remove_psk(p2p_wpa_s, s, peer, iface_addr);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07008040 }
8041
8042 /* Remove from any operating group */
8043 for (w = wpa_s->global->ifaces; w; w = w->next)
8044 wpas_p2p_remove_client_go(w, peer, iface_addr);
8045}
8046
8047
8048static void wpas_p2p_psk_failure_removal(void *eloop_ctx, void *timeout_ctx)
8049{
8050 struct wpa_supplicant *wpa_s = eloop_ctx;
8051 wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_PSK_FAILURE);
8052}
8053
8054
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08008055static void wpas_p2p_group_freq_conflict(void *eloop_ctx, void *timeout_ctx)
8056{
8057 struct wpa_supplicant *wpa_s = eloop_ctx;
8058
8059 wpa_printf(MSG_DEBUG, "P2P: Frequency conflict - terminate group");
8060 wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_FREQ_CONFLICT);
8061}
8062
8063
8064int wpas_p2p_handle_frequency_conflicts(struct wpa_supplicant *wpa_s, int freq,
8065 struct wpa_ssid *ssid)
8066{
8067 struct wpa_supplicant *iface;
8068
8069 for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
8070 if (!iface->current_ssid ||
8071 iface->current_ssid->frequency == freq ||
8072 (iface->p2p_group_interface == NOT_P2P_GROUP_INTERFACE &&
8073 !iface->current_ssid->p2p_group))
8074 continue;
8075
8076 /* Remove the connection with least priority */
8077 if (!wpas_is_p2p_prioritized(iface)) {
8078 /* STA connection has priority over existing
8079 * P2P connection, so remove the interface. */
8080 wpa_printf(MSG_DEBUG, "P2P: Removing P2P connection due to single channel concurrent mode frequency conflict");
8081 eloop_register_timeout(0, 0,
8082 wpas_p2p_group_freq_conflict,
8083 iface, NULL);
8084 /* If connection in progress is P2P connection, do not
8085 * proceed for the connection. */
8086 if (wpa_s == iface)
8087 return -1;
8088 else
8089 return 0;
8090 } else {
8091 /* P2P connection has priority, disable the STA network
8092 */
8093 wpa_supplicant_disable_network(wpa_s->global->ifaces,
8094 ssid);
8095 wpa_msg(wpa_s->global->ifaces, MSG_INFO,
8096 WPA_EVENT_FREQ_CONFLICT " id=%d", ssid->id);
8097 os_memset(wpa_s->global->ifaces->pending_bssid, 0,
8098 ETH_ALEN);
8099 /* If P2P connection is in progress, continue
8100 * connecting...*/
8101 if (wpa_s == iface)
8102 return 0;
8103 else
8104 return -1;
8105 }
8106 }
8107
8108 return 0;
8109}
8110
8111
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07008112int wpas_p2p_4way_hs_failed(struct wpa_supplicant *wpa_s)
8113{
8114 struct wpa_ssid *ssid = wpa_s->current_ssid;
8115
8116 if (ssid == NULL || !ssid->p2p_group)
8117 return 0;
8118
8119 if (wpa_s->p2p_last_4way_hs_fail &&
8120 wpa_s->p2p_last_4way_hs_fail == ssid) {
8121 u8 go_dev_addr[ETH_ALEN];
8122 struct wpa_ssid *persistent;
8123
8124 if (wpas_p2p_persistent_group(wpa_s, go_dev_addr,
8125 ssid->ssid,
8126 ssid->ssid_len) <= 0) {
8127 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not determine whether 4-way handshake failures were for a persistent group");
8128 goto disconnect;
8129 }
8130
8131 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Two 4-way handshake failures for a P2P group - go_dev_addr="
8132 MACSTR, MAC2STR(go_dev_addr));
8133 persistent = wpas_p2p_get_persistent(wpa_s->parent, go_dev_addr,
8134 ssid->ssid,
8135 ssid->ssid_len);
8136 if (persistent == NULL || persistent->mode != WPAS_MODE_INFRA) {
8137 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No matching persistent group stored");
8138 goto disconnect;
8139 }
8140 wpa_msg_global(wpa_s->parent, MSG_INFO,
8141 P2P_EVENT_PERSISTENT_PSK_FAIL "%d",
8142 persistent->id);
8143 disconnect:
8144 wpa_s->p2p_last_4way_hs_fail = NULL;
8145 /*
8146 * Remove the group from a timeout to avoid issues with caller
8147 * continuing to use the interface if this is on a P2P group
8148 * interface.
8149 */
8150 eloop_register_timeout(0, 0, wpas_p2p_psk_failure_removal,
8151 wpa_s, NULL);
8152 return 1;
8153 }
8154
8155 wpa_s->p2p_last_4way_hs_fail = ssid;
8156 return 0;
8157}
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08008158
8159
8160#ifdef CONFIG_WPS_NFC
8161
8162static struct wpabuf * wpas_p2p_nfc_handover(int ndef, struct wpabuf *wsc,
8163 struct wpabuf *p2p)
8164{
8165 struct wpabuf *ret;
8166 size_t wsc_len;
8167
8168 if (p2p == NULL) {
8169 wpabuf_free(wsc);
8170 wpa_printf(MSG_DEBUG, "P2P: No p2p buffer for handover");
8171 return NULL;
8172 }
8173
8174 wsc_len = wsc ? wpabuf_len(wsc) : 0;
8175 ret = wpabuf_alloc(2 + wsc_len + 2 + wpabuf_len(p2p));
8176 if (ret == NULL) {
8177 wpabuf_free(wsc);
8178 wpabuf_free(p2p);
8179 return NULL;
8180 }
8181
8182 wpabuf_put_be16(ret, wsc_len);
8183 if (wsc)
8184 wpabuf_put_buf(ret, wsc);
8185 wpabuf_put_be16(ret, wpabuf_len(p2p));
8186 wpabuf_put_buf(ret, p2p);
8187
8188 wpabuf_free(wsc);
8189 wpabuf_free(p2p);
8190 wpa_hexdump_buf(MSG_DEBUG,
8191 "P2P: Generated NFC connection handover message", ret);
8192
8193 if (ndef && ret) {
8194 struct wpabuf *tmp;
8195 tmp = ndef_build_p2p(ret);
8196 wpabuf_free(ret);
8197 if (tmp == NULL) {
8198 wpa_printf(MSG_DEBUG, "P2P: Failed to NDEF encapsulate handover request");
8199 return NULL;
8200 }
8201 ret = tmp;
8202 }
8203
8204 return ret;
8205}
8206
8207
8208static int wpas_p2p_cli_freq(struct wpa_supplicant *wpa_s,
8209 struct wpa_ssid **ssid, u8 *go_dev_addr)
8210{
8211 struct wpa_supplicant *iface;
8212
8213 if (go_dev_addr)
8214 os_memset(go_dev_addr, 0, ETH_ALEN);
8215 if (ssid)
8216 *ssid = NULL;
8217 for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
8218 if (iface->wpa_state < WPA_ASSOCIATING ||
8219 iface->current_ssid == NULL || iface->assoc_freq == 0 ||
8220 !iface->current_ssid->p2p_group ||
8221 iface->current_ssid->mode != WPAS_MODE_INFRA)
8222 continue;
8223 if (ssid)
8224 *ssid = iface->current_ssid;
8225 if (go_dev_addr)
8226 os_memcpy(go_dev_addr, iface->go_dev_addr, ETH_ALEN);
8227 return iface->assoc_freq;
8228 }
8229 return 0;
8230}
8231
8232
8233struct wpabuf * wpas_p2p_nfc_handover_req(struct wpa_supplicant *wpa_s,
8234 int ndef)
8235{
8236 struct wpabuf *wsc, *p2p;
8237 struct wpa_ssid *ssid;
8238 u8 go_dev_addr[ETH_ALEN];
8239 int cli_freq = wpas_p2p_cli_freq(wpa_s, &ssid, go_dev_addr);
8240
8241 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL) {
8242 wpa_printf(MSG_DEBUG, "P2P: P2P disabled - cannot build handover request");
8243 return NULL;
8244 }
8245
8246 if (wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
8247 wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
8248 &wpa_s->conf->wps_nfc_dh_privkey) < 0) {
8249 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No DH key available for handover request");
8250 return NULL;
8251 }
8252
8253 if (cli_freq == 0) {
8254 wsc = wps_build_nfc_handover_req_p2p(
8255 wpa_s->parent->wps, wpa_s->conf->wps_nfc_dh_pubkey);
8256 } else
8257 wsc = NULL;
8258 p2p = p2p_build_nfc_handover_req(wpa_s->global->p2p, cli_freq,
8259 go_dev_addr, ssid ? ssid->ssid : NULL,
8260 ssid ? ssid->ssid_len : 0);
8261
8262 return wpas_p2p_nfc_handover(ndef, wsc, p2p);
8263}
8264
8265
8266struct wpabuf * wpas_p2p_nfc_handover_sel(struct wpa_supplicant *wpa_s,
8267 int ndef, int tag)
8268{
8269 struct wpabuf *wsc, *p2p;
8270 struct wpa_ssid *ssid;
8271 u8 go_dev_addr[ETH_ALEN];
8272 int cli_freq = wpas_p2p_cli_freq(wpa_s, &ssid, go_dev_addr);
8273
8274 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
8275 return NULL;
8276
8277 if (!tag && wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
8278 wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
8279 &wpa_s->conf->wps_nfc_dh_privkey) < 0)
8280 return NULL;
8281
8282 if (cli_freq == 0) {
8283 wsc = wps_build_nfc_handover_sel_p2p(
8284 wpa_s->parent->wps,
8285 tag ? wpa_s->conf->wps_nfc_dev_pw_id :
8286 DEV_PW_NFC_CONNECTION_HANDOVER,
8287 wpa_s->conf->wps_nfc_dh_pubkey,
8288 tag ? wpa_s->conf->wps_nfc_dev_pw : NULL);
8289 } else
8290 wsc = NULL;
8291 p2p = p2p_build_nfc_handover_sel(wpa_s->global->p2p, cli_freq,
8292 go_dev_addr, ssid ? ssid->ssid : NULL,
8293 ssid ? ssid->ssid_len : 0);
8294
8295 return wpas_p2p_nfc_handover(ndef, wsc, p2p);
8296}
8297
8298
8299static int wpas_p2p_nfc_join_group(struct wpa_supplicant *wpa_s,
8300 struct p2p_nfc_params *params)
8301{
8302 wpa_printf(MSG_DEBUG, "P2P: Initiate join-group based on NFC "
8303 "connection handover (freq=%d)",
8304 params->go_freq);
8305
8306 if (params->go_freq && params->go_ssid_len) {
8307 wpa_s->p2p_wps_method = WPS_NFC;
8308 wpa_s->pending_join_wps_method = WPS_NFC;
8309 os_memset(wpa_s->pending_join_iface_addr, 0, ETH_ALEN);
8310 os_memcpy(wpa_s->pending_join_dev_addr, params->go_dev_addr,
8311 ETH_ALEN);
8312 return wpas_p2p_join_start(wpa_s, params->go_freq,
8313 params->go_ssid,
8314 params->go_ssid_len);
8315 }
8316
8317 return wpas_p2p_connect(wpa_s, params->peer->p2p_device_addr, NULL,
8318 WPS_NFC, 0, 0, 1, 0, wpa_s->conf->p2p_go_intent,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08008319 params->go_freq, wpa_s->p2p_go_vht_center_freq2,
Dmitry Shmidtde47be72016-01-07 12:52:55 -08008320 -1, 0, 1, 1, wpa_s->p2p_go_max_oper_chwidth,
8321 params->go_ssid_len ? params->go_ssid : NULL,
8322 params->go_ssid_len);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08008323}
8324
8325
8326static int wpas_p2p_nfc_auth_join(struct wpa_supplicant *wpa_s,
8327 struct p2p_nfc_params *params, int tag)
8328{
8329 int res, persistent;
8330 struct wpa_ssid *ssid;
8331
8332 wpa_printf(MSG_DEBUG, "P2P: Authorize join-group based on NFC "
8333 "connection handover");
8334 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
8335 ssid = wpa_s->current_ssid;
8336 if (ssid == NULL)
8337 continue;
8338 if (ssid->mode != WPAS_MODE_P2P_GO)
8339 continue;
8340 if (wpa_s->ap_iface == NULL)
8341 continue;
8342 break;
8343 }
8344 if (wpa_s == NULL) {
8345 wpa_printf(MSG_DEBUG, "P2P: Could not find GO interface");
8346 return -1;
8347 }
8348
8349 if (wpa_s->parent->p2p_oob_dev_pw_id !=
8350 DEV_PW_NFC_CONNECTION_HANDOVER &&
8351 !wpa_s->parent->p2p_oob_dev_pw) {
8352 wpa_printf(MSG_DEBUG, "P2P: No NFC Dev Pw known");
8353 return -1;
8354 }
8355 res = wpas_ap_wps_add_nfc_pw(
8356 wpa_s, wpa_s->parent->p2p_oob_dev_pw_id,
8357 wpa_s->parent->p2p_oob_dev_pw,
8358 wpa_s->parent->p2p_peer_oob_pk_hash_known ?
8359 wpa_s->parent->p2p_peer_oob_pubkey_hash : NULL);
8360 if (res)
8361 return res;
8362
8363 if (!tag) {
8364 wpa_printf(MSG_DEBUG, "P2P: Negotiated handover - wait for peer to join without invitation");
8365 return 0;
8366 }
8367
8368 if (!params->peer ||
8369 !(params->peer->dev_capab & P2P_DEV_CAPAB_INVITATION_PROCEDURE))
8370 return 0;
8371
8372 wpa_printf(MSG_DEBUG, "P2P: Static handover - invite peer " MACSTR
8373 " to join", MAC2STR(params->peer->p2p_device_addr));
8374
8375 wpa_s->global->p2p_invite_group = wpa_s;
8376 persistent = ssid->p2p_persistent_group &&
8377 wpas_p2p_get_persistent(wpa_s->parent,
8378 params->peer->p2p_device_addr,
8379 ssid->ssid, ssid->ssid_len);
8380 wpa_s->parent->pending_invite_ssid_id = -1;
8381
8382 return p2p_invite(wpa_s->global->p2p, params->peer->p2p_device_addr,
8383 P2P_INVITE_ROLE_ACTIVE_GO, wpa_s->own_addr,
8384 ssid->ssid, ssid->ssid_len, ssid->frequency,
8385 wpa_s->global->p2p_dev_addr, persistent, 0,
8386 wpa_s->parent->p2p_oob_dev_pw_id);
8387}
8388
8389
8390static int wpas_p2p_nfc_init_go_neg(struct wpa_supplicant *wpa_s,
8391 struct p2p_nfc_params *params,
8392 int forced_freq)
8393{
8394 wpa_printf(MSG_DEBUG, "P2P: Initiate GO Negotiation based on NFC "
8395 "connection handover");
8396 return wpas_p2p_connect(wpa_s, params->peer->p2p_device_addr, NULL,
8397 WPS_NFC, 0, 0, 0, 0, wpa_s->conf->p2p_go_intent,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08008398 forced_freq, wpa_s->p2p_go_vht_center_freq2,
Dmitry Shmidtde47be72016-01-07 12:52:55 -08008399 -1, 0, 1, 1, wpa_s->p2p_go_max_oper_chwidth,
8400 NULL, 0);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08008401}
8402
8403
8404static int wpas_p2p_nfc_resp_go_neg(struct wpa_supplicant *wpa_s,
8405 struct p2p_nfc_params *params,
8406 int forced_freq)
8407{
8408 int res;
8409
8410 wpa_printf(MSG_DEBUG, "P2P: Authorize GO Negotiation based on NFC "
8411 "connection handover");
8412 res = wpas_p2p_connect(wpa_s, params->peer->p2p_device_addr, NULL,
8413 WPS_NFC, 0, 0, 0, 1, wpa_s->conf->p2p_go_intent,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08008414 forced_freq, wpa_s->p2p_go_vht_center_freq2,
Dmitry Shmidtde47be72016-01-07 12:52:55 -08008415 -1, 0, 1, 1, wpa_s->p2p_go_max_oper_chwidth,
8416 NULL, 0);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08008417 if (res)
8418 return res;
8419
8420 res = wpas_p2p_listen(wpa_s, 60);
8421 if (res) {
8422 p2p_unauthorize(wpa_s->global->p2p,
8423 params->peer->p2p_device_addr);
8424 }
8425
8426 return res;
8427}
8428
8429
8430static int wpas_p2p_nfc_connection_handover(struct wpa_supplicant *wpa_s,
8431 const struct wpabuf *data,
8432 int sel, int tag, int forced_freq)
8433{
8434 const u8 *pos, *end;
8435 u16 len, id;
8436 struct p2p_nfc_params params;
8437 int res;
8438
8439 os_memset(&params, 0, sizeof(params));
8440 params.sel = sel;
8441
8442 wpa_hexdump_buf(MSG_DEBUG, "P2P: Received NFC tag payload", data);
8443
8444 pos = wpabuf_head(data);
8445 end = pos + wpabuf_len(data);
8446
8447 if (end - pos < 2) {
8448 wpa_printf(MSG_DEBUG, "P2P: Not enough data for Length of WSC "
8449 "attributes");
8450 return -1;
8451 }
8452 len = WPA_GET_BE16(pos);
8453 pos += 2;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008454 if (len > end - pos) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08008455 wpa_printf(MSG_DEBUG, "P2P: Not enough data for WSC "
8456 "attributes");
8457 return -1;
8458 }
8459 params.wsc_attr = pos;
8460 params.wsc_len = len;
8461 pos += len;
8462
8463 if (end - pos < 2) {
8464 wpa_printf(MSG_DEBUG, "P2P: Not enough data for Length of P2P "
8465 "attributes");
8466 return -1;
8467 }
8468 len = WPA_GET_BE16(pos);
8469 pos += 2;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008470 if (len > end - pos) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08008471 wpa_printf(MSG_DEBUG, "P2P: Not enough data for P2P "
8472 "attributes");
8473 return -1;
8474 }
8475 params.p2p_attr = pos;
8476 params.p2p_len = len;
8477 pos += len;
8478
8479 wpa_hexdump(MSG_DEBUG, "P2P: WSC attributes",
8480 params.wsc_attr, params.wsc_len);
8481 wpa_hexdump(MSG_DEBUG, "P2P: P2P attributes",
8482 params.p2p_attr, params.p2p_len);
8483 if (pos < end) {
8484 wpa_hexdump(MSG_DEBUG,
8485 "P2P: Ignored extra data after P2P attributes",
8486 pos, end - pos);
8487 }
8488
8489 res = p2p_process_nfc_connection_handover(wpa_s->global->p2p, &params);
8490 if (res)
8491 return res;
8492
8493 if (params.next_step == NO_ACTION)
8494 return 0;
8495
8496 if (params.next_step == BOTH_GO) {
8497 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_BOTH_GO "peer=" MACSTR,
8498 MAC2STR(params.peer->p2p_device_addr));
8499 return 0;
8500 }
8501
8502 if (params.next_step == PEER_CLIENT) {
8503 if (!is_zero_ether_addr(params.go_dev_addr)) {
8504 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_PEER_CLIENT
8505 "peer=" MACSTR " freq=%d go_dev_addr=" MACSTR
8506 " ssid=\"%s\"",
8507 MAC2STR(params.peer->p2p_device_addr),
8508 params.go_freq,
8509 MAC2STR(params.go_dev_addr),
8510 wpa_ssid_txt(params.go_ssid,
8511 params.go_ssid_len));
8512 } else {
8513 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_PEER_CLIENT
8514 "peer=" MACSTR " freq=%d",
8515 MAC2STR(params.peer->p2p_device_addr),
8516 params.go_freq);
8517 }
8518 return 0;
8519 }
8520
8521 if (wpas_p2p_cli_freq(wpa_s, NULL, NULL)) {
8522 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_WHILE_CLIENT "peer="
8523 MACSTR, MAC2STR(params.peer->p2p_device_addr));
8524 return 0;
8525 }
8526
8527 wpabuf_free(wpa_s->p2p_oob_dev_pw);
8528 wpa_s->p2p_oob_dev_pw = NULL;
8529
8530 if (params.oob_dev_pw_len < WPS_OOB_PUBKEY_HASH_LEN + 2) {
8531 wpa_printf(MSG_DEBUG, "P2P: No peer OOB Dev Pw "
8532 "received");
8533 return -1;
8534 }
8535
8536 id = WPA_GET_BE16(params.oob_dev_pw + WPS_OOB_PUBKEY_HASH_LEN);
8537 wpa_printf(MSG_DEBUG, "P2P: Peer OOB Dev Pw %u", id);
8538 wpa_hexdump(MSG_DEBUG, "P2P: Peer OOB Public Key hash",
8539 params.oob_dev_pw, WPS_OOB_PUBKEY_HASH_LEN);
8540 os_memcpy(wpa_s->p2p_peer_oob_pubkey_hash,
8541 params.oob_dev_pw, WPS_OOB_PUBKEY_HASH_LEN);
8542 wpa_s->p2p_peer_oob_pk_hash_known = 1;
8543
8544 if (tag) {
8545 if (id < 0x10) {
8546 wpa_printf(MSG_DEBUG, "P2P: Static handover - invalid "
8547 "peer OOB Device Password Id %u", id);
8548 return -1;
8549 }
8550 wpa_printf(MSG_DEBUG, "P2P: Static handover - use peer OOB "
8551 "Device Password Id %u", id);
8552 wpa_hexdump_key(MSG_DEBUG, "P2P: Peer OOB Device Password",
8553 params.oob_dev_pw + WPS_OOB_PUBKEY_HASH_LEN + 2,
8554 params.oob_dev_pw_len -
8555 WPS_OOB_PUBKEY_HASH_LEN - 2);
8556 wpa_s->p2p_oob_dev_pw_id = id;
8557 wpa_s->p2p_oob_dev_pw = wpabuf_alloc_copy(
8558 params.oob_dev_pw + WPS_OOB_PUBKEY_HASH_LEN + 2,
8559 params.oob_dev_pw_len -
8560 WPS_OOB_PUBKEY_HASH_LEN - 2);
8561 if (wpa_s->p2p_oob_dev_pw == NULL)
8562 return -1;
8563
8564 if (wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
8565 wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
8566 &wpa_s->conf->wps_nfc_dh_privkey) < 0)
8567 return -1;
8568 } else {
8569 wpa_printf(MSG_DEBUG, "P2P: Using abbreviated WPS handshake "
8570 "without Device Password");
8571 wpa_s->p2p_oob_dev_pw_id = DEV_PW_NFC_CONNECTION_HANDOVER;
8572 }
8573
8574 switch (params.next_step) {
8575 case NO_ACTION:
8576 case BOTH_GO:
8577 case PEER_CLIENT:
8578 /* already covered above */
8579 return 0;
8580 case JOIN_GROUP:
8581 return wpas_p2p_nfc_join_group(wpa_s, &params);
8582 case AUTH_JOIN:
8583 return wpas_p2p_nfc_auth_join(wpa_s, &params, tag);
8584 case INIT_GO_NEG:
8585 return wpas_p2p_nfc_init_go_neg(wpa_s, &params, forced_freq);
8586 case RESP_GO_NEG:
8587 /* TODO: use own OOB Dev Pw */
8588 return wpas_p2p_nfc_resp_go_neg(wpa_s, &params, forced_freq);
8589 }
8590
8591 return -1;
8592}
8593
8594
8595int wpas_p2p_nfc_tag_process(struct wpa_supplicant *wpa_s,
8596 const struct wpabuf *data, int forced_freq)
8597{
8598 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
8599 return -1;
8600
8601 return wpas_p2p_nfc_connection_handover(wpa_s, data, 1, 1, forced_freq);
8602}
8603
8604
8605int wpas_p2p_nfc_report_handover(struct wpa_supplicant *wpa_s, int init,
8606 const struct wpabuf *req,
8607 const struct wpabuf *sel, int forced_freq)
8608{
8609 struct wpabuf *tmp;
8610 int ret;
8611
8612 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
8613 return -1;
8614
8615 wpa_printf(MSG_DEBUG, "NFC: P2P connection handover reported");
8616
8617 wpa_hexdump_ascii(MSG_DEBUG, "NFC: Req",
8618 wpabuf_head(req), wpabuf_len(req));
8619 wpa_hexdump_ascii(MSG_DEBUG, "NFC: Sel",
8620 wpabuf_head(sel), wpabuf_len(sel));
8621 if (forced_freq)
8622 wpa_printf(MSG_DEBUG, "NFC: Forced freq %d", forced_freq);
8623 tmp = ndef_parse_p2p(init ? sel : req);
8624 if (tmp == NULL) {
8625 wpa_printf(MSG_DEBUG, "P2P: Could not parse NDEF");
8626 return -1;
8627 }
8628
8629 ret = wpas_p2p_nfc_connection_handover(wpa_s, tmp, init, 0,
8630 forced_freq);
8631 wpabuf_free(tmp);
8632
8633 return ret;
8634}
8635
8636
8637int wpas_p2p_nfc_tag_enabled(struct wpa_supplicant *wpa_s, int enabled)
8638{
8639 const u8 *if_addr;
8640 int go_intent = wpa_s->conf->p2p_go_intent;
8641 struct wpa_supplicant *iface;
8642
8643 if (wpa_s->global->p2p == NULL)
8644 return -1;
8645
8646 if (!enabled) {
8647 wpa_printf(MSG_DEBUG, "P2P: Disable use of own NFC Tag");
8648 for (iface = wpa_s->global->ifaces; iface; iface = iface->next)
8649 {
8650 if (!iface->ap_iface)
8651 continue;
8652 hostapd_wps_nfc_token_disable(iface->ap_iface->bss[0]);
8653 }
8654 p2p_set_authorized_oob_dev_pw_id(wpa_s->global->p2p, 0,
8655 0, NULL);
8656 if (wpa_s->p2p_nfc_tag_enabled)
8657 wpas_p2p_remove_pending_group_interface(wpa_s);
8658 wpa_s->p2p_nfc_tag_enabled = 0;
8659 return 0;
8660 }
8661
8662 if (wpa_s->global->p2p_disabled)
8663 return -1;
8664
8665 if (wpa_s->conf->wps_nfc_dh_pubkey == NULL ||
8666 wpa_s->conf->wps_nfc_dh_privkey == NULL ||
8667 wpa_s->conf->wps_nfc_dev_pw == NULL ||
8668 wpa_s->conf->wps_nfc_dev_pw_id < 0x10) {
8669 wpa_printf(MSG_DEBUG, "P2P: NFC password token not configured "
8670 "to allow static handover cases");
8671 return -1;
8672 }
8673
8674 wpa_printf(MSG_DEBUG, "P2P: Enable use of own NFC Tag");
8675
8676 wpa_s->p2p_oob_dev_pw_id = wpa_s->conf->wps_nfc_dev_pw_id;
8677 wpabuf_free(wpa_s->p2p_oob_dev_pw);
8678 wpa_s->p2p_oob_dev_pw = wpabuf_dup(wpa_s->conf->wps_nfc_dev_pw);
8679 if (wpa_s->p2p_oob_dev_pw == NULL)
8680 return -1;
8681 wpa_s->p2p_peer_oob_pk_hash_known = 0;
8682
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07008683 if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO ||
8684 wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT) {
8685 /*
8686 * P2P Group Interface present and the command came on group
8687 * interface, so enable the token for the current interface.
8688 */
8689 wpa_s->create_p2p_iface = 0;
8690 } else {
8691 wpa_s->create_p2p_iface = wpas_p2p_create_iface(wpa_s);
8692 }
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08008693
8694 if (wpa_s->create_p2p_iface) {
8695 enum wpa_driver_if_type iftype;
8696 /* Prepare to add a new interface for the group */
8697 iftype = WPA_IF_P2P_GROUP;
8698 if (go_intent == 15)
8699 iftype = WPA_IF_P2P_GO;
8700 if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
8701 wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
8702 "interface for the group");
8703 return -1;
8704 }
8705
8706 if_addr = wpa_s->pending_interface_addr;
8707 } else
8708 if_addr = wpa_s->own_addr;
8709
8710 wpa_s->p2p_nfc_tag_enabled = enabled;
8711
8712 for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
8713 struct hostapd_data *hapd;
8714 if (iface->ap_iface == NULL)
8715 continue;
8716 hapd = iface->ap_iface->bss[0];
8717 wpabuf_free(hapd->conf->wps_nfc_dh_pubkey);
8718 hapd->conf->wps_nfc_dh_pubkey =
8719 wpabuf_dup(wpa_s->conf->wps_nfc_dh_pubkey);
8720 wpabuf_free(hapd->conf->wps_nfc_dh_privkey);
8721 hapd->conf->wps_nfc_dh_privkey =
8722 wpabuf_dup(wpa_s->conf->wps_nfc_dh_privkey);
8723 wpabuf_free(hapd->conf->wps_nfc_dev_pw);
8724 hapd->conf->wps_nfc_dev_pw =
8725 wpabuf_dup(wpa_s->conf->wps_nfc_dev_pw);
8726 hapd->conf->wps_nfc_dev_pw_id = wpa_s->conf->wps_nfc_dev_pw_id;
8727
8728 if (hostapd_wps_nfc_token_enable(iface->ap_iface->bss[0]) < 0) {
8729 wpa_dbg(iface, MSG_DEBUG,
8730 "P2P: Failed to enable NFC Tag for GO");
8731 }
8732 }
8733 p2p_set_authorized_oob_dev_pw_id(
8734 wpa_s->global->p2p, wpa_s->conf->wps_nfc_dev_pw_id, go_intent,
8735 if_addr);
8736
8737 return 0;
8738}
8739
8740#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07008741
8742
8743static void wpas_p2p_optimize_listen_channel(struct wpa_supplicant *wpa_s,
8744 struct wpa_used_freq_data *freqs,
8745 unsigned int num)
8746{
8747 u8 curr_chan, cand, chan;
8748 unsigned int i;
8749
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008750 /*
8751 * If possible, optimize the Listen channel to be a channel that is
8752 * already used by one of the other interfaces.
8753 */
8754 if (!wpa_s->conf->p2p_optimize_listen_chan)
8755 return;
8756
8757 if (!wpa_s->current_ssid || wpa_s->wpa_state != WPA_COMPLETED)
8758 return;
8759
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07008760 curr_chan = p2p_get_listen_channel(wpa_s->global->p2p);
8761 for (i = 0, cand = 0; i < num; i++) {
8762 ieee80211_freq_to_chan(freqs[i].freq, &chan);
8763 if (curr_chan == chan) {
8764 cand = 0;
8765 break;
8766 }
8767
8768 if (chan == 1 || chan == 6 || chan == 11)
8769 cand = chan;
8770 }
8771
8772 if (cand) {
8773 wpa_dbg(wpa_s, MSG_DEBUG,
Dmitry Shmidt216983b2015-02-06 10:50:36 -08008774 "P2P: Update Listen channel to %u based on operating channel",
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07008775 cand);
8776 p2p_set_listen_channel(wpa_s->global->p2p, 81, cand, 0);
8777 }
8778}
8779
8780
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008781static int wpas_p2p_move_go_csa(struct wpa_supplicant *wpa_s)
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07008782{
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008783 struct hostapd_config *conf;
8784 struct p2p_go_neg_results params;
8785 struct csa_settings csa_settings;
8786 struct wpa_ssid *current_ssid = wpa_s->current_ssid;
8787 int old_freq = current_ssid->frequency;
8788 int ret;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07008789
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008790 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_AP_CSA)) {
8791 wpa_dbg(wpa_s, MSG_DEBUG, "CSA is not enabled");
8792 return -1;
8793 }
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07008794
8795 /*
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008796 * TODO: This function may not always work correctly. For example,
8797 * when we have a running GO and a BSS on a DFS channel.
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07008798 */
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08008799 if (wpas_p2p_init_go_params(wpa_s, &params, 0, 0, 0, 0, 0, NULL)) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008800 wpa_dbg(wpa_s, MSG_DEBUG,
8801 "P2P CSA: Failed to select new frequency for GO");
8802 return -1;
8803 }
8804
8805 if (current_ssid->frequency == params.freq) {
8806 wpa_dbg(wpa_s, MSG_DEBUG,
8807 "P2P CSA: Selected same frequency - not moving GO");
8808 return 0;
8809 }
8810
8811 conf = hostapd_config_defaults();
8812 if (!conf) {
8813 wpa_dbg(wpa_s, MSG_DEBUG,
8814 "P2P CSA: Failed to allocate default config");
8815 return -1;
8816 }
8817
8818 current_ssid->frequency = params.freq;
8819 if (wpa_supplicant_conf_ap_ht(wpa_s, current_ssid, conf)) {
8820 wpa_dbg(wpa_s, MSG_DEBUG,
8821 "P2P CSA: Failed to create new GO config");
8822 ret = -1;
8823 goto out;
8824 }
8825
8826 if (conf->hw_mode != wpa_s->ap_iface->current_mode->mode) {
8827 wpa_dbg(wpa_s, MSG_DEBUG,
8828 "P2P CSA: CSA to a different band is not supported");
8829 ret = -1;
8830 goto out;
8831 }
8832
8833 os_memset(&csa_settings, 0, sizeof(csa_settings));
8834 csa_settings.cs_count = P2P_GO_CSA_COUNT;
8835 csa_settings.block_tx = P2P_GO_CSA_BLOCK_TX;
8836 csa_settings.freq_params.freq = params.freq;
8837 csa_settings.freq_params.sec_channel_offset = conf->secondary_channel;
8838 csa_settings.freq_params.ht_enabled = conf->ieee80211n;
8839 csa_settings.freq_params.bandwidth = conf->secondary_channel ? 40 : 20;
8840
8841 if (conf->ieee80211ac) {
8842 int freq1 = 0, freq2 = 0;
8843 u8 chan, opclass;
8844
8845 if (ieee80211_freq_to_channel_ext(params.freq,
8846 conf->secondary_channel,
8847 conf->vht_oper_chwidth,
8848 &opclass, &chan) ==
8849 NUM_HOSTAPD_MODES) {
8850 wpa_printf(MSG_ERROR, "P2P CSA: Bad freq");
8851 ret = -1;
8852 goto out;
8853 }
8854
8855 if (conf->vht_oper_centr_freq_seg0_idx)
8856 freq1 = ieee80211_chan_to_freq(
8857 NULL, opclass,
8858 conf->vht_oper_centr_freq_seg0_idx);
8859
8860 if (conf->vht_oper_centr_freq_seg1_idx)
8861 freq2 = ieee80211_chan_to_freq(
8862 NULL, opclass,
8863 conf->vht_oper_centr_freq_seg1_idx);
8864
8865 if (freq1 < 0 || freq2 < 0) {
8866 wpa_dbg(wpa_s, MSG_DEBUG,
8867 "P2P CSA: Selected invalid VHT center freqs");
8868 ret = -1;
8869 goto out;
8870 }
8871
8872 csa_settings.freq_params.vht_enabled = conf->ieee80211ac;
8873 csa_settings.freq_params.center_freq1 = freq1;
8874 csa_settings.freq_params.center_freq2 = freq2;
8875
8876 switch (conf->vht_oper_chwidth) {
8877 case VHT_CHANWIDTH_80MHZ:
8878 case VHT_CHANWIDTH_80P80MHZ:
8879 csa_settings.freq_params.bandwidth = 80;
8880 break;
8881 case VHT_CHANWIDTH_160MHZ:
8882 csa_settings.freq_params.bandwidth = 160;
8883 break;
8884 }
8885 }
8886
8887 ret = ap_switch_channel(wpa_s, &csa_settings);
8888out:
8889 current_ssid->frequency = old_freq;
8890 hostapd_config_free(conf);
8891 return ret;
8892}
8893
8894
8895static void wpas_p2p_move_go_no_csa(struct wpa_supplicant *wpa_s)
8896{
8897 struct p2p_go_neg_results params;
8898 struct wpa_ssid *current_ssid = wpa_s->current_ssid;
8899
8900 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_REMOVE_AND_REFORM_GROUP);
8901
8902 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Move GO from freq=%d MHz",
8903 current_ssid->frequency);
8904
8905 /* Stop the AP functionality */
8906 /* TODO: Should do this in a way that does not indicated to possible
8907 * P2P Clients in the group that the group is terminated. */
8908 wpa_supplicant_ap_deinit(wpa_s);
8909
8910 /* Reselect the GO frequency */
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08008911 if (wpas_p2p_init_go_params(wpa_s, &params, 0, 0, 0, 0, 0, NULL)) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008912 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Failed to reselect freq");
8913 wpas_p2p_group_delete(wpa_s,
8914 P2P_GROUP_REMOVAL_GO_LEAVE_CHANNEL);
8915 return;
8916 }
8917 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New freq selected for the GO (%u MHz)",
8918 params.freq);
8919
8920 if (params.freq &&
8921 !p2p_supported_freq_go(wpa_s->global->p2p, params.freq)) {
8922 wpa_printf(MSG_DEBUG,
8923 "P2P: Selected freq (%u MHz) is not valid for P2P",
8924 params.freq);
8925 wpas_p2p_group_delete(wpa_s,
8926 P2P_GROUP_REMOVAL_GO_LEAVE_CHANNEL);
8927 return;
8928 }
8929
8930 /* Update the frequency */
8931 current_ssid->frequency = params.freq;
8932 wpa_s->connect_without_scan = current_ssid;
8933 wpa_s->reassociate = 1;
8934 wpa_s->disconnected = 0;
8935 wpa_supplicant_req_scan(wpa_s, 0, 0);
8936}
8937
8938
8939static void wpas_p2p_move_go(void *eloop_ctx, void *timeout_ctx)
8940{
8941 struct wpa_supplicant *wpa_s = eloop_ctx;
8942
8943 if (!wpa_s->ap_iface || !wpa_s->current_ssid)
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07008944 return;
8945
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008946 wpas_p2p_go_update_common_freqs(wpa_s);
8947
8948 /* Do not move GO in the middle of a CSA */
8949 if (hostapd_csa_in_progress(wpa_s->ap_iface)) {
8950 wpa_printf(MSG_DEBUG,
8951 "P2P: CSA is in progress - not moving GO");
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07008952 return;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008953 }
8954
8955 /*
8956 * First, try a channel switch flow. If it is not supported or fails,
8957 * take down the GO and bring it up again.
8958 */
8959 if (wpas_p2p_move_go_csa(wpa_s) < 0)
8960 wpas_p2p_move_go_no_csa(wpa_s);
8961}
8962
8963
8964static void wpas_p2p_reconsider_moving_go(void *eloop_ctx, void *timeout_ctx)
8965{
8966 struct wpa_supplicant *wpa_s = eloop_ctx;
8967 struct wpa_used_freq_data *freqs = NULL;
8968 unsigned int num = wpa_s->num_multichan_concurrent;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07008969
8970 freqs = os_calloc(num, sizeof(struct wpa_used_freq_data));
8971 if (!freqs)
8972 return;
8973
8974 num = get_shared_radio_freqs_data(wpa_s, freqs, num);
8975
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008976 /* Previous attempt to move a GO was not possible -- try again. */
8977 wpas_p2p_consider_moving_gos(wpa_s, freqs, num,
8978 WPAS_P2P_CHANNEL_UPDATE_ANY);
8979
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07008980 os_free(freqs);
8981}
8982
8983
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008984/*
8985 * Consider moving a GO from its currently used frequency:
8986 * 1. It is possible that due to regulatory consideration the frequency
8987 * can no longer be used and there is a need to evacuate the GO.
8988 * 2. It is possible that due to MCC considerations, it would be preferable
8989 * to move the GO to a channel that is currently used by some other
8990 * station interface.
8991 *
8992 * In case a frequency that became invalid is once again valid, cancel a
8993 * previously initiated GO frequency change.
8994 */
8995static void wpas_p2p_consider_moving_one_go(struct wpa_supplicant *wpa_s,
8996 struct wpa_used_freq_data *freqs,
8997 unsigned int num)
8998{
8999 unsigned int i, invalid_freq = 0, policy_move = 0, flags = 0;
9000 unsigned int timeout;
9001 int freq;
9002
9003 wpas_p2p_go_update_common_freqs(wpa_s);
9004
9005 freq = wpa_s->current_ssid->frequency;
9006 for (i = 0, invalid_freq = 0; i < num; i++) {
9007 if (freqs[i].freq == freq) {
9008 flags = freqs[i].flags;
9009
9010 /* The channel is invalid, must change it */
9011 if (!p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
9012 wpa_dbg(wpa_s, MSG_DEBUG,
9013 "P2P: Freq=%d MHz no longer valid for GO",
9014 freq);
9015 invalid_freq = 1;
9016 }
9017 } else if (freqs[i].flags == 0) {
9018 /* Freq is not used by any other station interface */
9019 continue;
9020 } else if (!p2p_supported_freq(wpa_s->global->p2p,
9021 freqs[i].freq)) {
9022 /* Freq is not valid for P2P use cases */
9023 continue;
9024 } else if (wpa_s->conf->p2p_go_freq_change_policy ==
9025 P2P_GO_FREQ_MOVE_SCM) {
9026 policy_move = 1;
9027 } else if (wpa_s->conf->p2p_go_freq_change_policy ==
9028 P2P_GO_FREQ_MOVE_SCM_PEER_SUPPORTS &&
9029 wpas_p2p_go_is_peer_freq(wpa_s, freqs[i].freq)) {
9030 policy_move = 1;
9031 } else if ((wpa_s->conf->p2p_go_freq_change_policy ==
9032 P2P_GO_FREQ_MOVE_SCM_ECSA) &&
9033 wpas_p2p_go_is_peer_freq(wpa_s, freqs[i].freq)) {
9034 if (!p2p_get_group_num_members(wpa_s->p2p_group)) {
9035 policy_move = 1;
9036 } else if ((wpa_s->drv_flags &
9037 WPA_DRIVER_FLAGS_AP_CSA) &&
9038 wpas_p2p_go_clients_support_ecsa(wpa_s)) {
9039 u8 chan;
9040
9041 /*
9042 * We do not support CSA between bands, so move
9043 * GO only within the same band.
9044 */
9045 if (wpa_s->ap_iface->current_mode->mode ==
9046 ieee80211_freq_to_chan(freqs[i].freq,
9047 &chan))
9048 policy_move = 1;
9049 }
9050 }
9051 }
9052
9053 wpa_dbg(wpa_s, MSG_DEBUG,
9054 "P2P: GO move: invalid_freq=%u, policy_move=%u, flags=0x%X",
9055 invalid_freq, policy_move, flags);
9056
9057 /*
9058 * The channel is valid, or we are going to have a policy move, so
9059 * cancel timeout.
9060 */
9061 if (!invalid_freq || policy_move) {
9062 wpa_dbg(wpa_s, MSG_DEBUG,
9063 "P2P: Cancel a GO move from freq=%d MHz", freq);
9064 eloop_cancel_timeout(wpas_p2p_move_go, wpa_s, NULL);
9065
9066 if (wpas_p2p_in_progress(wpa_s)) {
9067 wpa_dbg(wpa_s, MSG_DEBUG,
9068 "P2P: GO move: policy CS is not allowed - setting timeout to re-consider GO move");
9069 eloop_cancel_timeout(wpas_p2p_reconsider_moving_go,
9070 wpa_s, NULL);
9071 eloop_register_timeout(P2P_RECONSIDER_GO_MOVE_DELAY, 0,
9072 wpas_p2p_reconsider_moving_go,
9073 wpa_s, NULL);
9074 return;
9075 }
9076 }
9077
9078 if (!invalid_freq && (!policy_move || flags != 0)) {
9079 wpa_dbg(wpa_s, MSG_DEBUG,
9080 "P2P: Not initiating a GO frequency change");
9081 return;
9082 }
9083
9084 /*
9085 * Do not consider moving GO if it is in the middle of a CSA. When the
9086 * CSA is finished this flow should be retriggered.
9087 */
9088 if (hostapd_csa_in_progress(wpa_s->ap_iface)) {
9089 wpa_dbg(wpa_s, MSG_DEBUG,
9090 "P2P: Not initiating a GO frequency change - CSA is in progress");
9091 return;
9092 }
9093
9094 if (invalid_freq && !wpas_p2p_disallowed_freq(wpa_s->global, freq))
9095 timeout = P2P_GO_FREQ_CHANGE_TIME;
9096 else
9097 timeout = 0;
9098
9099 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Move GO from freq=%d MHz in %d secs",
9100 freq, timeout);
9101 eloop_cancel_timeout(wpas_p2p_move_go, wpa_s, NULL);
9102 eloop_register_timeout(timeout, 0, wpas_p2p_move_go, wpa_s, NULL);
9103}
9104
9105
9106static void wpas_p2p_consider_moving_gos(struct wpa_supplicant *wpa_s,
9107 struct wpa_used_freq_data *freqs,
9108 unsigned int num,
9109 enum wpas_p2p_channel_update_trig trig)
9110{
9111 struct wpa_supplicant *ifs;
9112
9113 eloop_cancel_timeout(wpas_p2p_reconsider_moving_go, ELOOP_ALL_CTX,
9114 NULL);
9115
9116 /*
9117 * Travers all the radio interfaces, and for each GO interface, check
9118 * if there is a need to move the GO from the frequency it is using,
9119 * or in case the frequency is valid again, cancel the evacuation flow.
9120 */
9121 dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
9122 radio_list) {
9123 if (ifs->current_ssid == NULL ||
9124 ifs->current_ssid->mode != WPAS_MODE_P2P_GO)
9125 continue;
9126
9127 /*
9128 * The GO was just started or completed channel switch, no need
9129 * to move it.
9130 */
9131 if (wpa_s == ifs &&
9132 (trig == WPAS_P2P_CHANNEL_UPDATE_STATE_CHANGE ||
9133 trig == WPAS_P2P_CHANNEL_UPDATE_CS)) {
9134 wpa_dbg(wpa_s, MSG_DEBUG,
9135 "P2P: GO move - schedule re-consideration");
9136 eloop_register_timeout(P2P_RECONSIDER_GO_MOVE_DELAY, 0,
9137 wpas_p2p_reconsider_moving_go,
9138 wpa_s, NULL);
9139 continue;
9140 }
9141
9142 wpas_p2p_consider_moving_one_go(ifs, freqs, num);
9143 }
9144}
9145
9146
9147void wpas_p2p_indicate_state_change(struct wpa_supplicant *wpa_s)
9148{
9149 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
9150 return;
9151
9152 wpas_p2p_update_channel_list(wpa_s,
9153 WPAS_P2P_CHANNEL_UPDATE_STATE_CHANGE);
9154}
9155
9156
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07009157void wpas_p2p_deinit_iface(struct wpa_supplicant *wpa_s)
9158{
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07009159 if (wpa_s == wpa_s->global->p2p_init_wpa_s && wpa_s->global->p2p) {
9160 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Disable P2P since removing "
9161 "the management interface is being removed");
9162 wpas_p2p_deinit_global(wpa_s->global);
9163 }
9164}
9165
9166
9167void wpas_p2p_ap_deinit(struct wpa_supplicant *wpa_s)
9168{
9169 if (wpa_s->ap_iface->bss)
9170 wpa_s->ap_iface->bss[0]->p2p_group = NULL;
9171 wpas_p2p_group_deinit(wpa_s);
9172}