1 /*
2 * wpa_supplicant - P2P
3 * Copyright (c) 2009-2010, Atheros Communications
4 * Copyright (c) 2010-2014, Jouni Malinen <j@w1.fi>
5 *
6 * This software may be distributed under the terms of the BSD license.
7 * See README for more details.
8 */
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"
20 #include "ap/ap_config.h"
21 #include "ap/sta_info.h"
22 #include "ap/ap_drv_ops.h"
23 #include "ap/wps_hostapd.h"
24 #include "ap/p2p_hostapd.h"
25 #include "ap/dfs.h"
26 #include "eapol_supp/eapol_supp_sm.h"
27 #include "rsn_supp/wpa.h"
28 #include "wpa_supplicant_i.h"
29 #include "driver_i.h"
30 #include "ap.h"
31 #include "config_ssid.h"
32 #include "config.h"
33 #include "notify.h"
34 #include "scan.h"
35 #include "bss.h"
36 #include "offchannel.h"
37 #include "wps_supplicant.h"
38 #include "p2p_supplicant.h"
39 #include "wifi_display.h"
40
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
48 #define P2P_AUTO_PD_SCAN_ATTEMPTS 5
49
50 /**
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
63 #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
71 #ifndef P2P_MAX_INITIAL_CONN_WAIT
72 /*
73 * How many seconds to wait for initial 4-way handshake to get completed after
74 * WPS provisioning step or after the re-invocation of a persistent group on a
75 * P2P Client.
76 */
77 #define P2P_MAX_INITIAL_CONN_WAIT 10
78 #endif /* P2P_MAX_INITIAL_CONN_WAIT */
79
80 #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
90 #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
99 #define P2P_MGMT_DEVICE_PREFIX "p2p-dev-"
100
101 /*
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
107 enum 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,
115 P2P_GROUP_REMOVAL_PSK_FAILURE,
116 P2P_GROUP_REMOVAL_FREQ_CONFLICT,
117 P2P_GROUP_REMOVAL_GO_LEAVE_CHANNEL
118 };
119
120
121 static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx);
122 static struct wpa_supplicant *
123 wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
124 int go);
125 static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s, int freq,
126 const u8 *ssid, size_t ssid_len);
127 static 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);
131 static void wpas_p2p_join_scan_req(struct wpa_supplicant *wpa_s, int freq,
132 const u8 *ssid, size_t ssid_len);
133 static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx);
134 static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
135 const u8 *dev_addr, enum p2p_wps_method wps_method,
136 int auto_join, int freq,
137 const u8 *ssid, size_t ssid_len);
138 static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s);
139 static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s);
140 static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx);
141 static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s);
142 static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
143 void *timeout_ctx);
144 static void wpas_p2p_group_freq_conflict(void *eloop_ctx, void *timeout_ctx);
145 static int wpas_p2p_fallback_to_go_neg(struct wpa_supplicant *wpa_s,
146 int group_added);
147 static void wpas_p2p_stop_find_oper(struct wpa_supplicant *wpa_s);
148 static void wpas_stop_listen(void *ctx);
149 static void wpas_p2p_psk_failure_removal(void *eloop_ctx, void *timeout_ctx);
150 static void wpas_p2p_group_deinit(struct wpa_supplicant *wpa_s);
151 static int wpas_p2p_add_group_interface(struct wpa_supplicant *wpa_s,
152 enum wpa_driver_if_type type);
153 static void wpas_p2p_group_formation_failed(struct wpa_supplicant *wpa_s,
154 int already_deleted);
155 static void wpas_p2p_optimize_listen_channel(struct wpa_supplicant *wpa_s,
156 struct wpa_used_freq_data *freqs,
157 unsigned int num);
158 static void wpas_p2p_move_go(void *eloop_ctx, void *timeout_ctx);
159 static int wpas_p2p_go_is_peer_freq(struct wpa_supplicant *wpa_s, int freq);
160 static void
161 wpas_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);
164 static void wpas_p2p_reconsider_moving_go(void *eloop_ctx, void *timeout_ctx);
165
166
167 /*
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 */
wpas_p2p_num_unused_channels(struct wpa_supplicant * wpa_s)171 static int wpas_p2p_num_unused_channels(struct wpa_supplicant *wpa_s)
172 {
173 int *freqs;
174 int num, unused;
175
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
184 unused = wpa_s->num_multichan_concurrent - num;
185 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: num_unused_channels: %d", unused);
186 return unused;
187 }
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 */
194 static unsigned int
wpas_p2p_valid_oper_freqs(struct wpa_supplicant * wpa_s,struct wpa_used_freq_data * p2p_freqs,unsigned int len)195 wpas_p2p_valid_oper_freqs(struct wpa_supplicant *wpa_s,
196 struct wpa_used_freq_data *p2p_freqs,
197 unsigned int len)
198 {
199 struct wpa_used_freq_data *freqs;
200 unsigned int num, i, j;
201
202 freqs = os_calloc(wpa_s->num_multichan_concurrent,
203 sizeof(struct wpa_used_freq_data));
204 if (!freqs)
205 return 0;
206
207 num = get_shared_radio_freqs_data(wpa_s, freqs,
208 wpa_s->num_multichan_concurrent);
209
210 os_memset(p2p_freqs, 0, sizeof(struct wpa_used_freq_data) * len);
211
212 for (i = 0, j = 0; i < num && j < len; i++) {
213 if (p2p_supported_freq(wpa_s->global->p2p, freqs[i].freq))
214 p2p_freqs[j++] = freqs[i];
215 }
216
217 os_free(freqs);
218
219 dump_freq_data(wpa_s, "valid for P2P", p2p_freqs, j);
220
221 return j;
222 }
223
224
wpas_p2p_set_own_freq_preference(struct wpa_supplicant * wpa_s,int freq)225 static 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;
230
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 &&
235 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);
239 freq = 0;
240 }
241 p2p_set_own_freq_preference(wpa_s->global->p2p, freq);
242 }
243
244
wpas_p2p_scan_res_handler(struct wpa_supplicant * wpa_s,struct wpa_scan_results * scan_res)245 static void wpas_p2p_scan_res_handler(struct wpa_supplicant *wpa_s,
246 struct wpa_scan_results *scan_res)
247 {
248 size_t i;
249
250 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
256 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];
264 struct os_reltime time_tmp_age, entry_ts;
265 const u8 *ies;
266 size_t ies_len;
267
268 time_tmp_age.sec = bss->age / 1000;
269 time_tmp_age.usec = (bss->age % 1000) * 1000;
270 os_reltime_sub(&scan_res->fetch_time, &time_tmp_age, &entry_ts);
271
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
284 if (p2p_scan_res_handler(wpa_s->global->p2p, bss->bssid,
285 bss->freq, &entry_ts, bss->level,
286 ies, ies_len) > 0)
287 break;
288 }
289
290 p2p_scan_res_handled(wpa_s->global->p2p);
291 }
292
293
wpas_p2p_trigger_scan_cb(struct wpa_radio_work * work,int deinit)294 static 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) {
301 if (!work->started) {
302 wpa_scan_free_params(params);
303 return;
304 }
305
306 wpa_s->p2p_scan_work = NULL;
307 return;
308 }
309
310 if (wpa_s->clear_driver_scan_cache) {
311 wpa_printf(MSG_DEBUG,
312 "Request driver to clear scan cache due to local BSS flush");
313 params->only_new_results = 1;
314 }
315 ret = wpa_drv_scan(wpa_s, params);
316 if (ret == 0)
317 wpa_s->curr_scan_cookie = params->scan_cookie;
318 wpa_scan_free_params(params);
319 work->ctx = NULL;
320 if (ret) {
321 radio_work_done(work);
322 p2p_notify_scan_trigger_status(wpa_s->global->p2p, ret);
323 return;
324 }
325
326 p2p_notify_scan_trigger_status(wpa_s->global->p2p, ret);
327 os_get_reltime(&wpa_s->scan_trigger_time);
328 wpa_s->scan_res_handler = wpas_p2p_scan_res_handler;
329 wpa_s->own_scan_requested = 1;
330 wpa_s->clear_driver_scan_cache = 0;
331 wpa_s->p2p_scan_work = work;
332 }
333
334
wpas_p2p_search_social_channel(struct wpa_supplicant * wpa_s,int freq)335 static int wpas_p2p_search_social_channel(struct wpa_supplicant *wpa_s,
336 int freq)
337 {
338 if (wpa_s->global->p2p_24ghz_social_channels &&
339 (freq == 2412 || freq == 2437 || freq == 2462)) {
340 /*
341 * Search all social channels regardless of whether these have
342 * been disabled for P2P operating channel use to avoid missing
343 * peers.
344 */
345 return 1;
346 }
347 return p2p_supported_freq(wpa_s->global->p2p, freq);
348 }
349
350
wpas_p2p_scan(void * ctx,enum p2p_scan_type type,int freq,unsigned int num_req_dev_types,const u8 * req_dev_types,const u8 * dev_id,u16 pw_id)351 static int wpas_p2p_scan(void *ctx, enum p2p_scan_type type, int freq,
352 unsigned int num_req_dev_types,
353 const u8 *req_dev_types, const u8 *dev_id, u16 pw_id)
354 {
355 struct wpa_supplicant *wpa_s = ctx;
356 struct wpa_driver_scan_params *params = NULL;
357 struct wpabuf *wps_ie, *ies;
358 unsigned int num_channels = 0;
359 int social_channels_freq[] = { 2412, 2437, 2462, 60480 };
360 size_t ielen;
361 u8 *n, i;
362 unsigned int bands;
363
364 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
365 return -1;
366
367 if (wpa_s->p2p_scan_work) {
368 wpa_dbg(wpa_s, MSG_INFO, "P2P: Reject scan trigger since one is already pending");
369 return -1;
370 }
371
372 params = os_zalloc(sizeof(*params));
373 if (params == NULL)
374 return -1;
375
376 /* P2P Wildcard SSID */
377 params->num_ssids = 1;
378 n = os_malloc(P2P_WILDCARD_SSID_LEN);
379 if (n == NULL)
380 goto fail;
381 os_memcpy(n, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN);
382 params->ssids[0].ssid = n;
383 params->ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
384
385 wpa_s->wps->dev.p2p = 1;
386 wps_ie = wps_build_probe_req_ie(pw_id, &wpa_s->wps->dev,
387 wpa_s->wps->uuid, WPS_REQ_ENROLLEE,
388 num_req_dev_types, req_dev_types);
389 if (wps_ie == NULL)
390 goto fail;
391
392 switch (type) {
393 case P2P_SCAN_SOCIAL:
394 params->freqs = os_calloc(ARRAY_SIZE(social_channels_freq) + 1,
395 sizeof(int));
396 if (params->freqs == NULL)
397 goto fail;
398 for (i = 0; i < ARRAY_SIZE(social_channels_freq); i++) {
399 if (wpas_p2p_search_social_channel(
400 wpa_s, social_channels_freq[i]))
401 params->freqs[num_channels++] =
402 social_channels_freq[i];
403 }
404 params->freqs[num_channels++] = 0;
405 break;
406 case P2P_SCAN_FULL:
407 break;
408 case P2P_SCAN_SPECIFIC:
409 params->freqs = os_calloc(2, sizeof(int));
410 if (params->freqs == NULL)
411 goto fail;
412 params->freqs[0] = freq;
413 params->freqs[1] = 0;
414 break;
415 case P2P_SCAN_SOCIAL_PLUS_ONE:
416 params->freqs = os_calloc(ARRAY_SIZE(social_channels_freq) + 2,
417 sizeof(int));
418 if (params->freqs == NULL)
419 goto fail;
420 for (i = 0; i < ARRAY_SIZE(social_channels_freq); i++) {
421 if (wpas_p2p_search_social_channel(
422 wpa_s, social_channels_freq[i]))
423 params->freqs[num_channels++] =
424 social_channels_freq[i];
425 }
426 if (p2p_supported_freq(wpa_s->global->p2p, freq))
427 params->freqs[num_channels++] = freq;
428 params->freqs[num_channels++] = 0;
429 break;
430 }
431
432 ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
433 ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
434 if (ies == NULL) {
435 wpabuf_free(wps_ie);
436 goto fail;
437 }
438 wpabuf_put_buf(ies, wps_ie);
439 wpabuf_free(wps_ie);
440
441 bands = wpas_get_bands(wpa_s, params->freqs);
442 p2p_scan_ie(wpa_s->global->p2p, ies, dev_id, bands);
443
444 params->p2p_probe = 1;
445 n = os_malloc(wpabuf_len(ies));
446 if (n == NULL) {
447 wpabuf_free(ies);
448 goto fail;
449 }
450 os_memcpy(n, wpabuf_head(ies), wpabuf_len(ies));
451 params->extra_ies = n;
452 params->extra_ies_len = wpabuf_len(ies);
453 wpabuf_free(ies);
454
455 radio_remove_works(wpa_s, "p2p-scan", 0);
456 if (radio_add_work(wpa_s, 0, "p2p-scan", 0, wpas_p2p_trigger_scan_cb,
457 params) < 0)
458 goto fail;
459 return 0;
460
461 fail:
462 wpa_scan_free_params(params);
463 return -1;
464 }
465
466
wpas_p2p_if_type(int p2p_group_interface)467 static enum wpa_driver_if_type wpas_p2p_if_type(int p2p_group_interface)
468 {
469 switch (p2p_group_interface) {
470 case P2P_GROUP_INTERFACE_PENDING:
471 return WPA_IF_P2P_GROUP;
472 case P2P_GROUP_INTERFACE_GO:
473 return WPA_IF_P2P_GO;
474 case P2P_GROUP_INTERFACE_CLIENT:
475 return WPA_IF_P2P_CLIENT;
476 }
477
478 return WPA_IF_P2P_GROUP;
479 }
480
481
wpas_get_p2p_group(struct wpa_supplicant * wpa_s,const u8 * ssid,size_t ssid_len,int * go)482 static struct wpa_supplicant * wpas_get_p2p_group(struct wpa_supplicant *wpa_s,
483 const u8 *ssid,
484 size_t ssid_len, int *go)
485 {
486 struct wpa_ssid *s;
487
488 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
489 for (s = wpa_s->conf->ssid; s; s = s->next) {
490 if (s->disabled != 0 || !s->p2p_group ||
491 s->ssid_len != ssid_len ||
492 os_memcmp(ssid, s->ssid, ssid_len) != 0)
493 continue;
494 if (s->mode == WPAS_MODE_P2P_GO &&
495 s != wpa_s->current_ssid)
496 continue;
497 if (go)
498 *go = s->mode == WPAS_MODE_P2P_GO;
499 return wpa_s;
500 }
501 }
502
503 return NULL;
504 }
505
506
run_wpas_p2p_disconnect(void * eloop_ctx,void * timeout_ctx)507 static void run_wpas_p2p_disconnect(void *eloop_ctx, void *timeout_ctx)
508 {
509 struct wpa_supplicant *wpa_s = eloop_ctx;
510 wpa_printf(MSG_DEBUG,
511 "P2P: Complete previously requested removal of %s",
512 wpa_s->ifname);
513 wpas_p2p_disconnect(wpa_s);
514 }
515
516
wpas_p2p_disconnect_safely(struct wpa_supplicant * wpa_s,struct wpa_supplicant * calling_wpa_s)517 static int wpas_p2p_disconnect_safely(struct wpa_supplicant *wpa_s,
518 struct wpa_supplicant *calling_wpa_s)
519 {
520 if (calling_wpa_s == wpa_s && wpa_s &&
521 wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE) {
522 /*
523 * The calling wpa_s instance is going to be removed. Do that
524 * from an eloop callback to keep the instance available until
525 * the caller has returned. This my be needed, e.g., to provide
526 * control interface responses on the per-interface socket.
527 */
528 if (eloop_register_timeout(0, 0, run_wpas_p2p_disconnect,
529 wpa_s, NULL) < 0)
530 return -1;
531 return 0;
532 }
533
534 return wpas_p2p_disconnect(wpa_s);
535 }
536
537
538 /* Determine total number of clients in active groups where we are the GO */
p2p_group_go_member_count(struct wpa_supplicant * wpa_s)539 static unsigned int p2p_group_go_member_count(struct wpa_supplicant *wpa_s)
540 {
541 unsigned int count = 0;
542 struct wpa_ssid *s;
543
544 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
545 for (s = wpa_s->conf->ssid; s; s = s->next) {
546 wpa_printf(MSG_DEBUG,
547 "P2P: sup:%p ssid:%p disabled:%d p2p:%d mode:%d",
548 wpa_s, s, s->disabled, s->p2p_group,
549 s->mode);
550 if (!s->disabled && s->p2p_group &&
551 s->mode == WPAS_MODE_P2P_GO) {
552 count += p2p_get_group_num_members(
553 wpa_s->p2p_group);
554 }
555 }
556 }
557
558 return count;
559 }
560
561
p2p_is_active_persistent_group(struct wpa_supplicant * wpa_s)562 static unsigned int p2p_is_active_persistent_group(struct wpa_supplicant *wpa_s)
563 {
564 return !wpa_s->p2p_mgmt && wpa_s->current_ssid &&
565 !wpa_s->current_ssid->disabled &&
566 wpa_s->current_ssid->p2p_group &&
567 wpa_s->current_ssid->p2p_persistent_group;
568 }
569
570
p2p_is_active_persistent_go(struct wpa_supplicant * wpa_s)571 static unsigned int p2p_is_active_persistent_go(struct wpa_supplicant *wpa_s)
572 {
573 return p2p_is_active_persistent_group(wpa_s) &&
574 wpa_s->current_ssid->mode == WPAS_MODE_P2P_GO;
575 }
576
577
578 /* Find an interface for a P2P group where we are the GO */
579 static struct wpa_supplicant *
wpas_p2p_get_go_group(struct wpa_supplicant * wpa_s)580 wpas_p2p_get_go_group(struct wpa_supplicant *wpa_s)
581 {
582 struct wpa_supplicant *save = NULL;
583
584 if (!wpa_s)
585 return NULL;
586
587 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
588 if (!p2p_is_active_persistent_go(wpa_s))
589 continue;
590
591 /* Prefer a group with connected clients */
592 if (p2p_get_group_num_members(wpa_s->p2p_group))
593 return wpa_s;
594 save = wpa_s;
595 }
596
597 /* No group with connected clients, so pick the one without (if any) */
598 return save;
599 }
600
601
p2p_is_active_persistent_cli(struct wpa_supplicant * wpa_s)602 static unsigned int p2p_is_active_persistent_cli(struct wpa_supplicant *wpa_s)
603 {
604 return p2p_is_active_persistent_group(wpa_s) &&
605 wpa_s->current_ssid->mode == WPAS_MODE_INFRA;
606 }
607
608
609 /* Find an interface for a P2P group where we are the P2P Client */
610 static struct wpa_supplicant *
wpas_p2p_get_cli_group(struct wpa_supplicant * wpa_s)611 wpas_p2p_get_cli_group(struct wpa_supplicant *wpa_s)
612 {
613 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
614 if (p2p_is_active_persistent_cli(wpa_s))
615 return wpa_s;
616 }
617
618 return NULL;
619 }
620
621
622 /* Find a persistent group where we are the GO */
623 static struct wpa_ssid *
wpas_p2p_get_persistent_go(struct wpa_supplicant * wpa_s)624 wpas_p2p_get_persistent_go(struct wpa_supplicant *wpa_s)
625 {
626 struct wpa_ssid *s;
627
628 for (s = wpa_s->conf->ssid; s; s = s->next) {
629 if (s->disabled == 2 && s->mode == WPAS_MODE_P2P_GO)
630 return s;
631 }
632
633 return NULL;
634 }
635
636
p2ps_group_capability(void * ctx,u8 incoming,u8 role,unsigned int * force_freq,unsigned int * pref_freq)637 static u8 p2ps_group_capability(void *ctx, u8 incoming, u8 role,
638 unsigned int *force_freq,
639 unsigned int *pref_freq)
640 {
641 struct wpa_supplicant *wpa_s = ctx;
642 struct wpa_ssid *s;
643 u8 conncap = P2PS_SETUP_NONE;
644 unsigned int owned_members = 0;
645 struct wpa_supplicant *go_wpa_s, *cli_wpa_s;
646 struct wpa_ssid *persistent_go;
647 int p2p_no_group_iface;
648 unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS], size;
649
650 wpa_printf(MSG_DEBUG, "P2P: Conncap - in:%d role:%d", incoming, role);
651
652 if (force_freq)
653 *force_freq = 0;
654 if (pref_freq)
655 *pref_freq = 0;
656
657 size = P2P_MAX_PREF_CHANNELS;
658 if (force_freq && pref_freq &&
659 !wpas_p2p_setup_freqs(wpa_s, 0, (int *) force_freq,
660 (int *) pref_freq, 0, pref_freq_list, &size))
661 wpas_p2p_set_own_freq_preference(wpa_s,
662 *force_freq ? *force_freq :
663 *pref_freq);
664
665 /*
666 * For non-concurrent capable devices:
667 * If persistent_go, then no new.
668 * If GO, then no client.
669 * If client, then no GO.
670 */
671 go_wpa_s = wpas_p2p_get_go_group(wpa_s);
672 if (go_wpa_s)
673 owned_members = p2p_get_group_num_members(go_wpa_s->p2p_group);
674 persistent_go = wpas_p2p_get_persistent_go(wpa_s);
675 p2p_no_group_iface = !wpas_p2p_create_iface(wpa_s);
676 cli_wpa_s = wpas_p2p_get_cli_group(wpa_s);
677
678 wpa_printf(MSG_DEBUG,
679 "P2P: GO(iface)=%p members=%u CLI(iface)=%p persistent(ssid)=%p",
680 go_wpa_s, owned_members, cli_wpa_s, persistent_go);
681
682 /* If not concurrent, restrict our choices */
683 if (p2p_no_group_iface) {
684 wpa_printf(MSG_DEBUG, "P2P: p2p_no_group_iface");
685
686 if (cli_wpa_s)
687 return P2PS_SETUP_NONE;
688
689 if (go_wpa_s) {
690 if (role == P2PS_SETUP_CLIENT ||
691 incoming == P2PS_SETUP_GROUP_OWNER ||
692 p2p_client_limit_reached(go_wpa_s->p2p_group))
693 return P2PS_SETUP_NONE;
694
695 return P2PS_SETUP_GROUP_OWNER;
696 }
697
698 if (persistent_go) {
699 if (role == P2PS_SETUP_NONE || role == P2PS_SETUP_NEW) {
700 if (!incoming)
701 return P2PS_SETUP_GROUP_OWNER |
702 P2PS_SETUP_CLIENT;
703 if (incoming == P2PS_SETUP_NEW) {
704 u8 r;
705
706 if (os_get_random(&r, sizeof(r)) < 0 ||
707 (r & 1))
708 return P2PS_SETUP_CLIENT;
709 return P2PS_SETUP_GROUP_OWNER;
710 }
711 }
712 }
713 }
714
715 /* If a required role has been specified, handle it here */
716 if (role && role != P2PS_SETUP_NEW) {
717 switch (incoming) {
718 case P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_NEW:
719 case P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_CLIENT:
720 /*
721 * Peer has an active GO, so if the role allows it and
722 * we do not have any active roles, become client.
723 */
724 if ((role & P2PS_SETUP_CLIENT) && !go_wpa_s &&
725 !cli_wpa_s)
726 return P2PS_SETUP_CLIENT;
727
728 /* fall through */
729
730 case P2PS_SETUP_NONE:
731 case P2PS_SETUP_NEW:
732 conncap = role;
733 goto grp_owner;
734
735 case P2PS_SETUP_GROUP_OWNER:
736 /*
737 * Must be a complimentary role - cannot be a client to
738 * more than one peer.
739 */
740 if (incoming == role || cli_wpa_s)
741 return P2PS_SETUP_NONE;
742
743 return P2PS_SETUP_CLIENT;
744
745 case P2PS_SETUP_CLIENT:
746 /* Must be a complimentary role */
747 if (incoming != role) {
748 conncap = P2PS_SETUP_GROUP_OWNER;
749 goto grp_owner;
750 }
751 /* fall through */
752
753 default:
754 return P2PS_SETUP_NONE;
755 }
756 }
757
758 /*
759 * For now, we only will support ownership of one group, and being a
760 * client of one group. Therefore, if we have either an existing GO
761 * group, or an existing client group, we will not do a new GO
762 * negotiation, but rather try to re-use the existing groups.
763 */
764 switch (incoming) {
765 case P2PS_SETUP_NONE:
766 case P2PS_SETUP_NEW:
767 if (cli_wpa_s)
768 conncap = P2PS_SETUP_GROUP_OWNER;
769 else if (!owned_members)
770 conncap = P2PS_SETUP_NEW;
771 else if (incoming == P2PS_SETUP_NONE)
772 conncap = P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_CLIENT;
773 else
774 conncap = P2PS_SETUP_CLIENT;
775 break;
776
777 case P2PS_SETUP_CLIENT:
778 conncap = P2PS_SETUP_GROUP_OWNER;
779 break;
780
781 case P2PS_SETUP_GROUP_OWNER:
782 if (!cli_wpa_s)
783 conncap = P2PS_SETUP_CLIENT;
784 break;
785
786 case P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_NEW:
787 case P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_CLIENT:
788 if (cli_wpa_s)
789 conncap = P2PS_SETUP_GROUP_OWNER;
790 else {
791 u8 r;
792
793 if (os_get_random(&r, sizeof(r)) < 0 ||
794 (r & 1))
795 conncap = P2PS_SETUP_CLIENT;
796 else
797 conncap = P2PS_SETUP_GROUP_OWNER;
798 }
799 break;
800
801 default:
802 return P2PS_SETUP_NONE;
803 }
804
805 grp_owner:
806 if ((conncap & P2PS_SETUP_GROUP_OWNER) ||
807 (!incoming && (conncap & P2PS_SETUP_NEW))) {
808 if (go_wpa_s && p2p_client_limit_reached(go_wpa_s->p2p_group))
809 conncap &= ~P2PS_SETUP_GROUP_OWNER;
810
811 s = wpas_p2p_get_persistent_go(wpa_s);
812 if (!s && !go_wpa_s && p2p_no_group_iface) {
813 p2p_set_intended_addr(wpa_s->global->p2p,
814 wpa_s->p2p_mgmt ?
815 wpa_s->parent->own_addr :
816 wpa_s->own_addr);
817 } else if (!s && !go_wpa_s) {
818 if (wpas_p2p_add_group_interface(wpa_s,
819 WPA_IF_P2P_GROUP) < 0) {
820 wpa_printf(MSG_ERROR,
821 "P2P: Failed to allocate a new interface for the group");
822 return P2PS_SETUP_NONE;
823 }
824 wpa_s->global->pending_group_iface_for_p2ps = 1;
825 p2p_set_intended_addr(wpa_s->global->p2p,
826 wpa_s->pending_interface_addr);
827 }
828 }
829
830 return conncap;
831 }
832
833
wpas_p2p_group_delete(struct wpa_supplicant * wpa_s,enum p2p_group_removal_reason removal_reason)834 static int wpas_p2p_group_delete(struct wpa_supplicant *wpa_s,
835 enum p2p_group_removal_reason removal_reason)
836 {
837 struct wpa_ssid *ssid;
838 char *gtype;
839 const char *reason;
840
841 ssid = wpa_s->current_ssid;
842 if (ssid == NULL) {
843 /*
844 * The current SSID was not known, but there may still be a
845 * pending P2P group interface waiting for provisioning or a
846 * P2P group that is trying to reconnect.
847 */
848 ssid = wpa_s->conf->ssid;
849 while (ssid) {
850 if (ssid->p2p_group && ssid->disabled != 2)
851 break;
852 ssid = ssid->next;
853 }
854 if (ssid == NULL &&
855 wpa_s->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)
856 {
857 wpa_printf(MSG_ERROR, "P2P: P2P group interface "
858 "not found");
859 return -1;
860 }
861 }
862 if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO)
863 gtype = "GO";
864 else if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT ||
865 (ssid && ssid->mode == WPAS_MODE_INFRA)) {
866 wpa_s->reassociate = 0;
867 wpa_s->disconnected = 1;
868 gtype = "client";
869 } else
870 gtype = "GO";
871
872 if (removal_reason != P2P_GROUP_REMOVAL_SILENT && ssid)
873 wpas_notify_p2p_group_removed(wpa_s, ssid, gtype);
874
875 if (os_strcmp(gtype, "client") == 0) {
876 wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
877 if (eloop_is_timeout_registered(wpas_p2p_psk_failure_removal,
878 wpa_s, NULL)) {
879 wpa_printf(MSG_DEBUG,
880 "P2P: PSK failure removal was scheduled, so use PSK failure as reason for group removal");
881 removal_reason = P2P_GROUP_REMOVAL_PSK_FAILURE;
882 eloop_cancel_timeout(wpas_p2p_psk_failure_removal,
883 wpa_s, NULL);
884 }
885 }
886
887 if (wpa_s->cross_connect_in_use) {
888 wpa_s->cross_connect_in_use = 0;
889 wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
890 P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
891 wpa_s->ifname, wpa_s->cross_connect_uplink);
892 }
893 switch (removal_reason) {
894 case P2P_GROUP_REMOVAL_REQUESTED:
895 reason = " reason=REQUESTED";
896 break;
897 case P2P_GROUP_REMOVAL_FORMATION_FAILED:
898 reason = " reason=FORMATION_FAILED";
899 break;
900 case P2P_GROUP_REMOVAL_IDLE_TIMEOUT:
901 reason = " reason=IDLE";
902 break;
903 case P2P_GROUP_REMOVAL_UNAVAILABLE:
904 reason = " reason=UNAVAILABLE";
905 break;
906 case P2P_GROUP_REMOVAL_GO_ENDING_SESSION:
907 reason = " reason=GO_ENDING_SESSION";
908 break;
909 case P2P_GROUP_REMOVAL_PSK_FAILURE:
910 reason = " reason=PSK_FAILURE";
911 break;
912 case P2P_GROUP_REMOVAL_FREQ_CONFLICT:
913 reason = " reason=FREQ_CONFLICT";
914 break;
915 default:
916 reason = "";
917 break;
918 }
919 if (removal_reason != P2P_GROUP_REMOVAL_SILENT) {
920 wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
921 P2P_EVENT_GROUP_REMOVED "%s %s%s",
922 wpa_s->ifname, gtype, reason);
923 }
924
925 if (eloop_cancel_timeout(wpas_p2p_group_freq_conflict, wpa_s, NULL) > 0)
926 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group freq_conflict timeout");
927 if (eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
928 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
929 if (eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
930 wpa_s->p2pdev, NULL) > 0) {
931 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group formation "
932 "timeout");
933 wpa_s->p2p_in_provisioning = 0;
934 wpas_p2p_group_formation_failed(wpa_s, 1);
935 }
936
937 wpa_s->p2p_in_invitation = 0;
938 eloop_cancel_timeout(wpas_p2p_move_go, wpa_s, NULL);
939 eloop_cancel_timeout(wpas_p2p_reconsider_moving_go, wpa_s, NULL);
940
941 /*
942 * Make sure wait for the first client does not remain active after the
943 * group has been removed.
944 */
945 wpa_s->global->p2p_go_wait_client.sec = 0;
946
947 if (wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE) {
948 struct wpa_global *global;
949 char *ifname;
950 enum wpa_driver_if_type type;
951 wpa_printf(MSG_DEBUG, "P2P: Remove group interface %s",
952 wpa_s->ifname);
953 global = wpa_s->global;
954 ifname = os_strdup(wpa_s->ifname);
955 type = wpas_p2p_if_type(wpa_s->p2p_group_interface);
956 eloop_cancel_timeout(run_wpas_p2p_disconnect, wpa_s, NULL);
957 wpa_supplicant_remove_iface(wpa_s->global, wpa_s, 0);
958 wpa_s = global->ifaces;
959 if (wpa_s && ifname)
960 wpa_drv_if_remove(wpa_s, type, ifname);
961 os_free(ifname);
962 return 1;
963 }
964
965 /*
966 * The primary interface was used for P2P group operations, so
967 * need to reset its p2pdev.
968 */
969 wpa_s->p2pdev = wpa_s->parent;
970
971 if (!wpa_s->p2p_go_group_formation_completed) {
972 wpa_s->global->p2p_group_formation = NULL;
973 wpa_s->p2p_in_provisioning = 0;
974 }
975
976 wpa_s->show_group_started = 0;
977 os_free(wpa_s->go_params);
978 wpa_s->go_params = NULL;
979
980 os_free(wpa_s->p2p_group_common_freqs);
981 wpa_s->p2p_group_common_freqs = NULL;
982 wpa_s->p2p_group_common_freqs_num = 0;
983 wpa_s->p2p_go_do_acs = 0;
984
985 wpa_s->waiting_presence_resp = 0;
986
987 wpa_printf(MSG_DEBUG, "P2P: Remove temporary group network");
988 if (ssid && (ssid->p2p_group ||
989 ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION ||
990 (ssid->key_mgmt & WPA_KEY_MGMT_WPS))) {
991 int id = ssid->id;
992 if (ssid == wpa_s->current_ssid) {
993 wpa_sm_set_config(wpa_s->wpa, NULL);
994 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
995 wpa_s->current_ssid = NULL;
996 }
997 /*
998 * Networks objects created during any P2P activities are not
999 * exposed out as they might/will confuse certain non-P2P aware
1000 * applications since these network objects won't behave like
1001 * regular ones.
1002 *
1003 * Likewise, we don't send out network removed signals for such
1004 * network objects.
1005 */
1006 wpa_config_remove_network(wpa_s->conf, id);
1007 wpa_supplicant_clear_status(wpa_s);
1008 wpa_supplicant_cancel_sched_scan(wpa_s);
1009 } else {
1010 wpa_printf(MSG_DEBUG, "P2P: Temporary group network not "
1011 "found");
1012 }
1013 if (wpa_s->ap_iface)
1014 wpa_supplicant_ap_deinit(wpa_s);
1015 else
1016 wpa_drv_deinit_p2p_cli(wpa_s);
1017
1018 os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
1019
1020 return 0;
1021 }
1022
1023
wpas_p2p_persistent_group(struct wpa_supplicant * wpa_s,u8 * go_dev_addr,const u8 * ssid,size_t ssid_len)1024 static int wpas_p2p_persistent_group(struct wpa_supplicant *wpa_s,
1025 u8 *go_dev_addr,
1026 const u8 *ssid, size_t ssid_len)
1027 {
1028 struct wpa_bss *bss;
1029 const u8 *bssid;
1030 struct wpabuf *p2p;
1031 u8 group_capab;
1032 const u8 *addr;
1033
1034 if (wpa_s->go_params)
1035 bssid = wpa_s->go_params->peer_interface_addr;
1036 else
1037 bssid = wpa_s->bssid;
1038
1039 bss = wpa_bss_get(wpa_s, bssid, ssid, ssid_len);
1040 if (bss == NULL && wpa_s->go_params &&
1041 !is_zero_ether_addr(wpa_s->go_params->peer_device_addr))
1042 bss = wpa_bss_get_p2p_dev_addr(
1043 wpa_s, wpa_s->go_params->peer_device_addr);
1044 if (bss == NULL) {
1045 u8 iface_addr[ETH_ALEN];
1046 if (p2p_get_interface_addr(wpa_s->global->p2p, bssid,
1047 iface_addr) == 0)
1048 bss = wpa_bss_get(wpa_s, iface_addr, ssid, ssid_len);
1049 }
1050 if (bss == NULL) {
1051 wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
1052 "group is persistent - BSS " MACSTR " not found",
1053 MAC2STR(bssid));
1054 return 0;
1055 }
1056
1057 p2p = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
1058 if (p2p == NULL)
1059 p2p = wpa_bss_get_vendor_ie_multi_beacon(bss,
1060 P2P_IE_VENDOR_TYPE);
1061 if (p2p == NULL) {
1062 wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
1063 "group is persistent - BSS " MACSTR
1064 " did not include P2P IE", MAC2STR(bssid));
1065 wpa_hexdump(MSG_DEBUG, "P2P: Probe Response IEs",
1066 (u8 *) (bss + 1), bss->ie_len);
1067 wpa_hexdump(MSG_DEBUG, "P2P: Beacon IEs",
1068 ((u8 *) bss + 1) + bss->ie_len,
1069 bss->beacon_ie_len);
1070 return 0;
1071 }
1072
1073 group_capab = p2p_get_group_capab(p2p);
1074 addr = p2p_get_go_dev_addr(p2p);
1075 wpa_printf(MSG_DEBUG, "P2P: Checking whether group is persistent: "
1076 "group_capab=0x%x", group_capab);
1077 if (addr) {
1078 os_memcpy(go_dev_addr, addr, ETH_ALEN);
1079 wpa_printf(MSG_DEBUG, "P2P: GO Device Address " MACSTR,
1080 MAC2STR(addr));
1081 } else
1082 os_memset(go_dev_addr, 0, ETH_ALEN);
1083 wpabuf_free(p2p);
1084
1085 wpa_printf(MSG_DEBUG, "P2P: BSS " MACSTR " group_capab=0x%x "
1086 "go_dev_addr=" MACSTR,
1087 MAC2STR(bssid), group_capab, MAC2STR(go_dev_addr));
1088
1089 return !!(group_capab & P2P_GROUP_CAPAB_PERSISTENT_GROUP);
1090 }
1091
1092
wpas_p2p_store_persistent_group(struct wpa_supplicant * wpa_s,struct wpa_ssid * ssid,const u8 * go_dev_addr)1093 static int wpas_p2p_store_persistent_group(struct wpa_supplicant *wpa_s,
1094 struct wpa_ssid *ssid,
1095 const u8 *go_dev_addr)
1096 {
1097 struct wpa_ssid *s;
1098 int changed = 0;
1099
1100 wpa_printf(MSG_DEBUG, "P2P: Storing credentials for a persistent "
1101 "group (GO Dev Addr " MACSTR ")", MAC2STR(go_dev_addr));
1102 for (s = wpa_s->conf->ssid; s; s = s->next) {
1103 if (s->disabled == 2 &&
1104 os_memcmp(go_dev_addr, s->bssid, ETH_ALEN) == 0 &&
1105 s->ssid_len == ssid->ssid_len &&
1106 os_memcmp(ssid->ssid, s->ssid, ssid->ssid_len) == 0)
1107 break;
1108 }
1109
1110 if (s) {
1111 wpa_printf(MSG_DEBUG, "P2P: Update existing persistent group "
1112 "entry");
1113 if (ssid->passphrase && !s->passphrase)
1114 changed = 1;
1115 else if (ssid->passphrase && s->passphrase &&
1116 os_strcmp(ssid->passphrase, s->passphrase) != 0)
1117 changed = 1;
1118 } else {
1119 wpa_printf(MSG_DEBUG, "P2P: Create a new persistent group "
1120 "entry");
1121 changed = 1;
1122 s = wpa_config_add_network(wpa_s->conf);
1123 if (s == NULL)
1124 return -1;
1125
1126 /*
1127 * Instead of network_added we emit persistent_group_added
1128 * notification. Also to keep the defense checks in
1129 * persistent_group obj registration method, we set the
1130 * relevant flags in s to designate it as a persistent group.
1131 */
1132 s->p2p_group = 1;
1133 s->p2p_persistent_group = 1;
1134 wpas_notify_persistent_group_added(wpa_s, s);
1135 wpa_config_set_network_defaults(s);
1136 }
1137
1138 s->p2p_group = 1;
1139 s->p2p_persistent_group = 1;
1140 s->disabled = 2;
1141 s->bssid_set = 1;
1142 os_memcpy(s->bssid, go_dev_addr, ETH_ALEN);
1143 s->mode = ssid->mode;
1144 s->auth_alg = WPA_AUTH_ALG_OPEN;
1145 s->key_mgmt = WPA_KEY_MGMT_PSK;
1146 s->proto = WPA_PROTO_RSN;
1147 s->pbss = ssid->pbss;
1148 s->pairwise_cipher = ssid->pbss ? WPA_CIPHER_GCMP : WPA_CIPHER_CCMP;
1149 s->export_keys = 1;
1150 if (ssid->passphrase) {
1151 os_free(s->passphrase);
1152 s->passphrase = os_strdup(ssid->passphrase);
1153 }
1154 if (ssid->psk_set) {
1155 s->psk_set = 1;
1156 os_memcpy(s->psk, ssid->psk, 32);
1157 }
1158 if (s->passphrase && !s->psk_set)
1159 wpa_config_update_psk(s);
1160 if (s->ssid == NULL || s->ssid_len < ssid->ssid_len) {
1161 os_free(s->ssid);
1162 s->ssid = os_malloc(ssid->ssid_len);
1163 }
1164 if (s->ssid) {
1165 s->ssid_len = ssid->ssid_len;
1166 os_memcpy(s->ssid, ssid->ssid, s->ssid_len);
1167 }
1168 if (ssid->mode == WPAS_MODE_P2P_GO && wpa_s->global->add_psk) {
1169 dl_list_add(&s->psk_list, &wpa_s->global->add_psk->list);
1170 wpa_s->global->add_psk = NULL;
1171 changed = 1;
1172 }
1173
1174 if (changed && wpa_s->conf->update_config &&
1175 wpa_config_write(wpa_s->confname, wpa_s->conf)) {
1176 wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
1177 }
1178
1179 return s->id;
1180 }
1181
1182
wpas_p2p_add_persistent_group_client(struct wpa_supplicant * wpa_s,const u8 * addr)1183 static void wpas_p2p_add_persistent_group_client(struct wpa_supplicant *wpa_s,
1184 const u8 *addr)
1185 {
1186 struct wpa_ssid *ssid, *s;
1187 u8 *n;
1188 size_t i;
1189 int found = 0;
1190 struct wpa_supplicant *p2p_wpa_s = wpa_s->global->p2p_init_wpa_s;
1191
1192 ssid = wpa_s->current_ssid;
1193 if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
1194 !ssid->p2p_persistent_group)
1195 return;
1196
1197 for (s = p2p_wpa_s->conf->ssid; s; s = s->next) {
1198 if (s->disabled != 2 || s->mode != WPAS_MODE_P2P_GO)
1199 continue;
1200
1201 if (s->ssid_len == ssid->ssid_len &&
1202 os_memcmp(s->ssid, ssid->ssid, s->ssid_len) == 0)
1203 break;
1204 }
1205
1206 if (s == NULL)
1207 return;
1208
1209 for (i = 0; s->p2p_client_list && i < s->num_p2p_clients; i++) {
1210 if (os_memcmp(s->p2p_client_list + i * 2 * ETH_ALEN, addr,
1211 ETH_ALEN) != 0)
1212 continue;
1213
1214 if (i == s->num_p2p_clients - 1)
1215 return; /* already the most recent entry */
1216
1217 /* move the entry to mark it most recent */
1218 os_memmove(s->p2p_client_list + i * 2 * ETH_ALEN,
1219 s->p2p_client_list + (i + 1) * 2 * ETH_ALEN,
1220 (s->num_p2p_clients - i - 1) * 2 * ETH_ALEN);
1221 os_memcpy(s->p2p_client_list +
1222 (s->num_p2p_clients - 1) * 2 * ETH_ALEN, addr,
1223 ETH_ALEN);
1224 os_memset(s->p2p_client_list +
1225 (s->num_p2p_clients - 1) * 2 * ETH_ALEN + ETH_ALEN,
1226 0xff, ETH_ALEN);
1227 found = 1;
1228 break;
1229 }
1230
1231 if (!found && s->num_p2p_clients < P2P_MAX_STORED_CLIENTS) {
1232 n = os_realloc_array(s->p2p_client_list,
1233 s->num_p2p_clients + 1, 2 * ETH_ALEN);
1234 if (n == NULL)
1235 return;
1236 os_memcpy(n + s->num_p2p_clients * 2 * ETH_ALEN, addr,
1237 ETH_ALEN);
1238 os_memset(n + s->num_p2p_clients * 2 * ETH_ALEN + ETH_ALEN,
1239 0xff, ETH_ALEN);
1240 s->p2p_client_list = n;
1241 s->num_p2p_clients++;
1242 } else if (!found && s->p2p_client_list) {
1243 /* Not enough room for an additional entry - drop the oldest
1244 * entry */
1245 os_memmove(s->p2p_client_list,
1246 s->p2p_client_list + 2 * ETH_ALEN,
1247 (s->num_p2p_clients - 1) * 2 * ETH_ALEN);
1248 os_memcpy(s->p2p_client_list +
1249 (s->num_p2p_clients - 1) * 2 * ETH_ALEN,
1250 addr, ETH_ALEN);
1251 os_memset(s->p2p_client_list +
1252 (s->num_p2p_clients - 1) * 2 * ETH_ALEN + ETH_ALEN,
1253 0xff, ETH_ALEN);
1254 }
1255
1256 if (p2p_wpa_s->conf->update_config &&
1257 wpa_config_write(p2p_wpa_s->confname, p2p_wpa_s->conf))
1258 wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
1259 }
1260
1261
wpas_p2p_group_started(struct wpa_supplicant * wpa_s,int go,struct wpa_ssid * ssid,int freq,const u8 * psk,const char * passphrase,const u8 * go_dev_addr,int persistent,const char * extra)1262 static void wpas_p2p_group_started(struct wpa_supplicant *wpa_s,
1263 int go, struct wpa_ssid *ssid, int freq,
1264 const u8 *psk, const char *passphrase,
1265 const u8 *go_dev_addr, int persistent,
1266 const char *extra)
1267 {
1268 const char *ssid_txt;
1269 char psk_txt[65];
1270
1271 if (psk)
1272 wpa_snprintf_hex(psk_txt, sizeof(psk_txt), psk, 32);
1273 else
1274 psk_txt[0] = '\0';
1275
1276 if (ssid)
1277 ssid_txt = wpa_ssid_txt(ssid->ssid, ssid->ssid_len);
1278 else
1279 ssid_txt = "";
1280
1281 if (passphrase && passphrase[0] == '\0')
1282 passphrase = NULL;
1283
1284 /*
1285 * Include PSK/passphrase only in the control interface message and
1286 * leave it out from the debug log entry.
1287 */
1288 wpa_msg_global_ctrl(wpa_s->p2pdev, MSG_INFO,
1289 P2P_EVENT_GROUP_STARTED
1290 "%s %s ssid=\"%s\" freq=%d%s%s%s%s%s go_dev_addr="
1291 MACSTR "%s%s",
1292 wpa_s->ifname, go ? "GO" : "client", ssid_txt, freq,
1293 psk ? " psk=" : "", psk_txt,
1294 passphrase ? " passphrase=\"" : "",
1295 passphrase ? passphrase : "",
1296 passphrase ? "\"" : "",
1297 MAC2STR(go_dev_addr),
1298 persistent ? " [PERSISTENT]" : "", extra);
1299 wpa_printf(MSG_INFO, P2P_EVENT_GROUP_STARTED
1300 "%s %s ssid=\"%s\" freq=%d go_dev_addr=" MACSTR "%s%s",
1301 wpa_s->ifname, go ? "GO" : "client", ssid_txt, freq,
1302 MAC2STR(go_dev_addr), persistent ? " [PERSISTENT]" : "",
1303 extra);
1304 }
1305
1306
wpas_group_formation_completed(struct wpa_supplicant * wpa_s,int success,int already_deleted)1307 static void wpas_group_formation_completed(struct wpa_supplicant *wpa_s,
1308 int success, int already_deleted)
1309 {
1310 struct wpa_ssid *ssid;
1311 int client;
1312 int persistent;
1313 u8 go_dev_addr[ETH_ALEN];
1314
1315 /*
1316 * This callback is likely called for the main interface. Update wpa_s
1317 * to use the group interface if a new interface was created for the
1318 * group.
1319 */
1320 if (wpa_s->global->p2p_group_formation)
1321 wpa_s = wpa_s->global->p2p_group_formation;
1322 if (wpa_s->p2p_go_group_formation_completed) {
1323 wpa_s->global->p2p_group_formation = NULL;
1324 wpa_s->p2p_in_provisioning = 0;
1325 } else if (wpa_s->p2p_in_provisioning && !success) {
1326 wpa_msg(wpa_s, MSG_DEBUG,
1327 "P2P: Stop provisioning state due to failure");
1328 wpa_s->p2p_in_provisioning = 0;
1329 }
1330 wpa_s->p2p_in_invitation = 0;
1331 wpa_s->group_formation_reported = 1;
1332
1333 if (!success) {
1334 wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
1335 P2P_EVENT_GROUP_FORMATION_FAILURE);
1336 wpas_notify_p2p_group_formation_failure(wpa_s, "");
1337 if (already_deleted)
1338 return;
1339 wpas_p2p_group_delete(wpa_s,
1340 P2P_GROUP_REMOVAL_FORMATION_FAILED);
1341 return;
1342 }
1343
1344 wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
1345 P2P_EVENT_GROUP_FORMATION_SUCCESS);
1346
1347 ssid = wpa_s->current_ssid;
1348 if (ssid && ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
1349 ssid->mode = WPAS_MODE_P2P_GO;
1350 p2p_group_notif_formation_done(wpa_s->p2p_group);
1351 wpa_supplicant_ap_mac_addr_filter(wpa_s, NULL);
1352 }
1353
1354 persistent = 0;
1355 if (ssid) {
1356 client = ssid->mode == WPAS_MODE_INFRA;
1357 if (ssid->mode == WPAS_MODE_P2P_GO) {
1358 persistent = ssid->p2p_persistent_group;
1359 os_memcpy(go_dev_addr, wpa_s->global->p2p_dev_addr,
1360 ETH_ALEN);
1361 } else
1362 persistent = wpas_p2p_persistent_group(wpa_s,
1363 go_dev_addr,
1364 ssid->ssid,
1365 ssid->ssid_len);
1366 } else {
1367 client = wpa_s->p2p_group_interface ==
1368 P2P_GROUP_INTERFACE_CLIENT;
1369 os_memset(go_dev_addr, 0, ETH_ALEN);
1370 }
1371
1372 wpa_s->show_group_started = 0;
1373 if (client) {
1374 /*
1375 * Indicate event only after successfully completed 4-way
1376 * handshake, i.e., when the interface is ready for data
1377 * packets.
1378 */
1379 wpa_s->show_group_started = 1;
1380 } else {
1381 wpas_p2p_group_started(wpa_s, 1, ssid,
1382 ssid ? ssid->frequency : 0,
1383 ssid && ssid->passphrase == NULL &&
1384 ssid->psk_set ? ssid->psk : NULL,
1385 ssid ? ssid->passphrase : NULL,
1386 go_dev_addr, persistent, "");
1387 wpas_p2p_cross_connect_setup(wpa_s);
1388 wpas_p2p_set_group_idle_timeout(wpa_s);
1389 }
1390
1391 if (persistent)
1392 wpas_p2p_store_persistent_group(wpa_s->p2pdev,
1393 ssid, go_dev_addr);
1394 else {
1395 os_free(wpa_s->global->add_psk);
1396 wpa_s->global->add_psk = NULL;
1397 }
1398
1399 if (!client) {
1400 wpas_notify_p2p_group_started(wpa_s, ssid, persistent, 0, NULL);
1401 os_get_reltime(&wpa_s->global->p2p_go_wait_client);
1402 }
1403 }
1404
1405
1406 struct send_action_work {
1407 unsigned int freq;
1408 u8 dst[ETH_ALEN];
1409 u8 src[ETH_ALEN];
1410 u8 bssid[ETH_ALEN];
1411 size_t len;
1412 unsigned int wait_time;
1413 u8 buf[0];
1414 };
1415
1416
wpas_p2p_free_send_action_work(struct wpa_supplicant * wpa_s)1417 static void wpas_p2p_free_send_action_work(struct wpa_supplicant *wpa_s)
1418 {
1419 struct send_action_work *awork = wpa_s->p2p_send_action_work->ctx;
1420
1421 wpa_printf(MSG_DEBUG,
1422 "P2P: Free Action frame radio work @%p (freq=%u dst="
1423 MACSTR " src=" MACSTR " bssid=" MACSTR " wait_time=%u)",
1424 wpa_s->p2p_send_action_work, awork->freq,
1425 MAC2STR(awork->dst), MAC2STR(awork->src),
1426 MAC2STR(awork->bssid), awork->wait_time);
1427 wpa_hexdump(MSG_DEBUG, "P2P: Freeing pending Action frame",
1428 awork->buf, awork->len);
1429 os_free(awork);
1430 wpa_s->p2p_send_action_work->ctx = NULL;
1431 radio_work_done(wpa_s->p2p_send_action_work);
1432 wpa_s->p2p_send_action_work = NULL;
1433 }
1434
1435
wpas_p2p_send_action_work_timeout(void * eloop_ctx,void * timeout_ctx)1436 static void wpas_p2p_send_action_work_timeout(void *eloop_ctx,
1437 void *timeout_ctx)
1438 {
1439 struct wpa_supplicant *wpa_s = eloop_ctx;
1440
1441 if (!wpa_s->p2p_send_action_work)
1442 return;
1443
1444 wpa_printf(MSG_DEBUG, "P2P: Send Action frame radio work timed out");
1445 wpas_p2p_free_send_action_work(wpa_s);
1446 }
1447
1448
wpas_p2p_action_tx_clear(struct wpa_supplicant * wpa_s)1449 static void wpas_p2p_action_tx_clear(struct wpa_supplicant *wpa_s)
1450 {
1451 if (wpa_s->p2p_send_action_work) {
1452 struct send_action_work *awork;
1453
1454 awork = wpa_s->p2p_send_action_work->ctx;
1455 wpa_printf(MSG_DEBUG,
1456 "P2P: Clear Action TX work @%p (wait_time=%u)",
1457 wpa_s->p2p_send_action_work, awork->wait_time);
1458 if (awork->wait_time == 0) {
1459 wpas_p2p_free_send_action_work(wpa_s);
1460 } else {
1461 /*
1462 * In theory, this should not be needed, but number of
1463 * places in the P2P code is still using non-zero wait
1464 * time for the last Action frame in the sequence and
1465 * some of these do not call send_action_done().
1466 */
1467 eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
1468 wpa_s, NULL);
1469 eloop_register_timeout(
1470 0, awork->wait_time * 1000,
1471 wpas_p2p_send_action_work_timeout,
1472 wpa_s, NULL);
1473 }
1474 }
1475 }
1476
1477
wpas_p2p_send_action_tx_status(struct wpa_supplicant * wpa_s,unsigned int freq,const u8 * dst,const u8 * src,const u8 * bssid,const u8 * data,size_t data_len,enum offchannel_send_action_result result)1478 static void wpas_p2p_send_action_tx_status(struct wpa_supplicant *wpa_s,
1479 unsigned int freq,
1480 const u8 *dst, const u8 *src,
1481 const u8 *bssid,
1482 const u8 *data, size_t data_len,
1483 enum offchannel_send_action_result
1484 result)
1485 {
1486 enum p2p_send_action_result res = P2P_SEND_ACTION_SUCCESS;
1487
1488 wpas_p2p_action_tx_clear(wpa_s);
1489
1490 if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled)
1491 return;
1492
1493 switch (result) {
1494 case OFFCHANNEL_SEND_ACTION_SUCCESS:
1495 res = P2P_SEND_ACTION_SUCCESS;
1496 break;
1497 case OFFCHANNEL_SEND_ACTION_NO_ACK:
1498 res = P2P_SEND_ACTION_NO_ACK;
1499 break;
1500 case OFFCHANNEL_SEND_ACTION_FAILED:
1501 res = P2P_SEND_ACTION_FAILED;
1502 break;
1503 }
1504
1505 p2p_send_action_cb(wpa_s->global->p2p, freq, dst, src, bssid, res);
1506
1507 if (result != OFFCHANNEL_SEND_ACTION_SUCCESS &&
1508 wpa_s->pending_pd_before_join &&
1509 (os_memcmp(dst, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
1510 os_memcmp(dst, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0) &&
1511 wpa_s->p2p_fallback_to_go_neg) {
1512 wpa_s->pending_pd_before_join = 0;
1513 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No ACK for PD Req "
1514 "during p2p_connect-auto");
1515 wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
1516 P2P_EVENT_FALLBACK_TO_GO_NEG
1517 "reason=no-ACK-to-PD-Req");
1518 wpas_p2p_fallback_to_go_neg(wpa_s, 0);
1519 return;
1520 }
1521 }
1522
1523
wpas_send_action_cb(struct wpa_radio_work * work,int deinit)1524 static void wpas_send_action_cb(struct wpa_radio_work *work, int deinit)
1525 {
1526 struct wpa_supplicant *wpa_s = work->wpa_s;
1527 struct send_action_work *awork = work->ctx;
1528
1529 if (deinit) {
1530 if (work->started) {
1531 eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
1532 wpa_s, NULL);
1533 wpa_s->p2p_send_action_work = NULL;
1534 offchannel_send_action_done(wpa_s);
1535 }
1536 os_free(awork);
1537 return;
1538 }
1539
1540 if (offchannel_send_action(wpa_s, awork->freq, awork->dst, awork->src,
1541 awork->bssid, awork->buf, awork->len,
1542 awork->wait_time,
1543 wpas_p2p_send_action_tx_status, 1) < 0) {
1544 os_free(awork);
1545 radio_work_done(work);
1546 return;
1547 }
1548 wpa_s->p2p_send_action_work = work;
1549 }
1550
1551
wpas_send_action_work(struct wpa_supplicant * wpa_s,unsigned int freq,const u8 * dst,const u8 * src,const u8 * bssid,const u8 * buf,size_t len,unsigned int wait_time)1552 static int wpas_send_action_work(struct wpa_supplicant *wpa_s,
1553 unsigned int freq, const u8 *dst,
1554 const u8 *src, const u8 *bssid, const u8 *buf,
1555 size_t len, unsigned int wait_time)
1556 {
1557 struct send_action_work *awork;
1558
1559 if (radio_work_pending(wpa_s, "p2p-send-action")) {
1560 wpa_printf(MSG_DEBUG, "P2P: Cannot schedule new p2p-send-action work since one is already pending");
1561 return -1;
1562 }
1563
1564 awork = os_zalloc(sizeof(*awork) + len);
1565 if (awork == NULL)
1566 return -1;
1567
1568 awork->freq = freq;
1569 os_memcpy(awork->dst, dst, ETH_ALEN);
1570 os_memcpy(awork->src, src, ETH_ALEN);
1571 os_memcpy(awork->bssid, bssid, ETH_ALEN);
1572 awork->len = len;
1573 awork->wait_time = wait_time;
1574 os_memcpy(awork->buf, buf, len);
1575
1576 if (radio_add_work(wpa_s, freq, "p2p-send-action", 1,
1577 wpas_send_action_cb, awork) < 0) {
1578 os_free(awork);
1579 return -1;
1580 }
1581
1582 return 0;
1583 }
1584
1585
wpas_send_action(void * ctx,unsigned int freq,const u8 * dst,const u8 * src,const u8 * bssid,const u8 * buf,size_t len,unsigned int wait_time,int * scheduled)1586 static int wpas_send_action(void *ctx, unsigned int freq, const u8 *dst,
1587 const u8 *src, const u8 *bssid, const u8 *buf,
1588 size_t len, unsigned int wait_time, int *scheduled)
1589 {
1590 struct wpa_supplicant *wpa_s = ctx;
1591 int listen_freq = -1, send_freq = -1;
1592
1593 if (scheduled)
1594 *scheduled = 0;
1595 if (wpa_s->p2p_listen_work)
1596 listen_freq = wpa_s->p2p_listen_work->freq;
1597 if (wpa_s->p2p_send_action_work)
1598 send_freq = wpa_s->p2p_send_action_work->freq;
1599 if (listen_freq != (int) freq && send_freq != (int) freq) {
1600 int res;
1601
1602 wpa_printf(MSG_DEBUG, "P2P: Schedule new radio work for Action frame TX (listen_freq=%d send_freq=%d freq=%u)",
1603 listen_freq, send_freq, freq);
1604 res = wpas_send_action_work(wpa_s, freq, dst, src, bssid, buf,
1605 len, wait_time);
1606 if (res == 0 && scheduled)
1607 *scheduled = 1;
1608 return res;
1609 }
1610
1611 wpa_printf(MSG_DEBUG, "P2P: Use ongoing radio work for Action frame TX");
1612 return offchannel_send_action(wpa_s, freq, dst, src, bssid, buf, len,
1613 wait_time,
1614 wpas_p2p_send_action_tx_status, 1);
1615 }
1616
1617
wpas_send_action_done(void * ctx)1618 static void wpas_send_action_done(void *ctx)
1619 {
1620 struct wpa_supplicant *wpa_s = ctx;
1621
1622 if (wpa_s->p2p_send_action_work) {
1623 eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
1624 wpa_s, NULL);
1625 os_free(wpa_s->p2p_send_action_work->ctx);
1626 radio_work_done(wpa_s->p2p_send_action_work);
1627 wpa_s->p2p_send_action_work = NULL;
1628 }
1629
1630 offchannel_send_action_done(wpa_s);
1631 }
1632
1633
wpas_copy_go_neg_results(struct wpa_supplicant * wpa_s,struct p2p_go_neg_results * params)1634 static int wpas_copy_go_neg_results(struct wpa_supplicant *wpa_s,
1635 struct p2p_go_neg_results *params)
1636 {
1637 if (wpa_s->go_params == NULL) {
1638 wpa_s->go_params = os_malloc(sizeof(*params));
1639 if (wpa_s->go_params == NULL)
1640 return -1;
1641 }
1642 os_memcpy(wpa_s->go_params, params, sizeof(*params));
1643 return 0;
1644 }
1645
1646
wpas_start_wps_enrollee(struct wpa_supplicant * wpa_s,struct p2p_go_neg_results * res)1647 static void wpas_start_wps_enrollee(struct wpa_supplicant *wpa_s,
1648 struct p2p_go_neg_results *res)
1649 {
1650 wpa_s->group_formation_reported = 0;
1651 wpa_printf(MSG_DEBUG, "P2P: Start WPS Enrollee for peer " MACSTR
1652 " dev_addr " MACSTR " wps_method %d",
1653 MAC2STR(res->peer_interface_addr),
1654 MAC2STR(res->peer_device_addr), res->wps_method);
1655 wpa_hexdump_ascii(MSG_DEBUG, "P2P: Start WPS Enrollee for SSID",
1656 res->ssid, res->ssid_len);
1657 wpa_supplicant_ap_deinit(wpa_s);
1658 wpas_copy_go_neg_results(wpa_s, res);
1659 if (res->wps_method == WPS_PBC) {
1660 wpas_wps_start_pbc(wpa_s, res->peer_interface_addr, 1, 0);
1661 #ifdef CONFIG_WPS_NFC
1662 } else if (res->wps_method == WPS_NFC) {
1663 wpas_wps_start_nfc(wpa_s, res->peer_device_addr,
1664 res->peer_interface_addr,
1665 wpa_s->p2pdev->p2p_oob_dev_pw,
1666 wpa_s->p2pdev->p2p_oob_dev_pw_id, 1,
1667 wpa_s->p2pdev->p2p_oob_dev_pw_id ==
1668 DEV_PW_NFC_CONNECTION_HANDOVER ?
1669 wpa_s->p2pdev->p2p_peer_oob_pubkey_hash :
1670 NULL,
1671 NULL, 0, 0);
1672 #endif /* CONFIG_WPS_NFC */
1673 } else {
1674 u16 dev_pw_id = DEV_PW_DEFAULT;
1675 if (wpa_s->p2p_wps_method == WPS_P2PS)
1676 dev_pw_id = DEV_PW_P2PS_DEFAULT;
1677 if (wpa_s->p2p_wps_method == WPS_PIN_KEYPAD)
1678 dev_pw_id = DEV_PW_REGISTRAR_SPECIFIED;
1679 wpas_wps_start_pin(wpa_s, res->peer_interface_addr,
1680 wpa_s->p2p_pin, 1, dev_pw_id);
1681 }
1682 }
1683
1684
wpas_p2p_add_psk_list(struct wpa_supplicant * wpa_s,struct wpa_ssid * ssid)1685 static void wpas_p2p_add_psk_list(struct wpa_supplicant *wpa_s,
1686 struct wpa_ssid *ssid)
1687 {
1688 struct wpa_ssid *persistent;
1689 struct psk_list_entry *psk;
1690 struct hostapd_data *hapd;
1691
1692 if (!wpa_s->ap_iface)
1693 return;
1694
1695 persistent = wpas_p2p_get_persistent(wpa_s->p2pdev, NULL, ssid->ssid,
1696 ssid->ssid_len);
1697 if (persistent == NULL)
1698 return;
1699
1700 hapd = wpa_s->ap_iface->bss[0];
1701
1702 dl_list_for_each(psk, &persistent->psk_list, struct psk_list_entry,
1703 list) {
1704 struct hostapd_wpa_psk *hpsk;
1705
1706 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add persistent group PSK entry for "
1707 MACSTR " psk=%d",
1708 MAC2STR(psk->addr), psk->p2p);
1709 hpsk = os_zalloc(sizeof(*hpsk));
1710 if (hpsk == NULL)
1711 break;
1712 os_memcpy(hpsk->psk, psk->psk, PMK_LEN);
1713 if (psk->p2p)
1714 os_memcpy(hpsk->p2p_dev_addr, psk->addr, ETH_ALEN);
1715 else
1716 os_memcpy(hpsk->addr, psk->addr, ETH_ALEN);
1717 hpsk->next = hapd->conf->ssid.wpa_psk;
1718 hapd->conf->ssid.wpa_psk = hpsk;
1719 }
1720 }
1721
1722
p2p_go_dump_common_freqs(struct wpa_supplicant * wpa_s)1723 static void p2p_go_dump_common_freqs(struct wpa_supplicant *wpa_s)
1724 {
1725 char buf[20 + P2P_MAX_CHANNELS * 6];
1726 char *pos, *end;
1727 unsigned int i;
1728 int res;
1729
1730 pos = buf;
1731 end = pos + sizeof(buf);
1732 for (i = 0; i < wpa_s->p2p_group_common_freqs_num; i++) {
1733 res = os_snprintf(pos, end - pos, " %d",
1734 wpa_s->p2p_group_common_freqs[i]);
1735 if (os_snprintf_error(end - pos, res))
1736 break;
1737 pos += res;
1738 }
1739 *pos = '\0';
1740
1741 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Common group frequencies:%s", buf);
1742 }
1743
1744
p2p_go_save_group_common_freqs(struct wpa_supplicant * wpa_s,struct p2p_go_neg_results * params)1745 static void p2p_go_save_group_common_freqs(struct wpa_supplicant *wpa_s,
1746 struct p2p_go_neg_results *params)
1747 {
1748 unsigned int i, len = int_array_len(wpa_s->go_params->freq_list);
1749
1750 wpa_s->p2p_group_common_freqs_num = 0;
1751 os_free(wpa_s->p2p_group_common_freqs);
1752 wpa_s->p2p_group_common_freqs = os_calloc(len, sizeof(int));
1753 if (!wpa_s->p2p_group_common_freqs)
1754 return;
1755
1756 for (i = 0; i < len; i++) {
1757 if (!wpa_s->go_params->freq_list[i])
1758 break;
1759 wpa_s->p2p_group_common_freqs[i] =
1760 wpa_s->go_params->freq_list[i];
1761 }
1762 wpa_s->p2p_group_common_freqs_num = i;
1763 }
1764
1765
p2p_config_write(struct wpa_supplicant * wpa_s)1766 static void p2p_config_write(struct wpa_supplicant *wpa_s)
1767 {
1768 #ifndef CONFIG_NO_CONFIG_WRITE
1769 if (wpa_s->p2pdev->conf->update_config &&
1770 wpa_config_write(wpa_s->p2pdev->confname, wpa_s->p2pdev->conf))
1771 wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
1772 #endif /* CONFIG_NO_CONFIG_WRITE */
1773 }
1774
1775
p2p_go_configured(void * ctx,void * data)1776 static void p2p_go_configured(void *ctx, void *data)
1777 {
1778 struct wpa_supplicant *wpa_s = ctx;
1779 struct p2p_go_neg_results *params = data;
1780 struct wpa_ssid *ssid;
1781
1782 wpa_s->ap_configured_cb = NULL;
1783 wpa_s->ap_configured_cb_ctx = NULL;
1784 wpa_s->ap_configured_cb_data = NULL;
1785 if (!wpa_s->go_params) {
1786 wpa_printf(MSG_ERROR,
1787 "P2P: p2p_go_configured() called with wpa_s->go_params == NULL");
1788 return;
1789 }
1790
1791 p2p_go_save_group_common_freqs(wpa_s, params);
1792 p2p_go_dump_common_freqs(wpa_s);
1793
1794 ssid = wpa_s->current_ssid;
1795 if (ssid && ssid->mode == WPAS_MODE_P2P_GO) {
1796 wpa_printf(MSG_DEBUG, "P2P: Group setup without provisioning");
1797 if (wpa_s->global->p2p_group_formation == wpa_s)
1798 wpa_s->global->p2p_group_formation = NULL;
1799 wpas_p2p_group_started(wpa_s, 1, ssid, ssid->frequency,
1800 params->passphrase[0] == '\0' ?
1801 params->psk : NULL,
1802 params->passphrase,
1803 wpa_s->global->p2p_dev_addr,
1804 params->persistent_group, "");
1805 wpa_s->group_formation_reported = 1;
1806
1807 if (wpa_s->p2pdev->p2ps_method_config_any) {
1808 if (is_zero_ether_addr(wpa_s->p2pdev->p2ps_join_addr)) {
1809 wpa_dbg(wpa_s, MSG_DEBUG,
1810 "P2PS: Setting default PIN for ANY");
1811 wpa_supplicant_ap_wps_pin(wpa_s, NULL,
1812 "12345670", NULL, 0,
1813 0);
1814 } else {
1815 wpa_dbg(wpa_s, MSG_DEBUG,
1816 "P2PS: Setting default PIN for " MACSTR,
1817 MAC2STR(wpa_s->p2pdev->p2ps_join_addr));
1818 wpa_supplicant_ap_wps_pin(
1819 wpa_s, wpa_s->p2pdev->p2ps_join_addr,
1820 "12345670", NULL, 0, 0);
1821 }
1822 wpa_s->p2pdev->p2ps_method_config_any = 0;
1823 }
1824
1825 os_get_reltime(&wpa_s->global->p2p_go_wait_client);
1826 if (params->persistent_group) {
1827 wpas_p2p_store_persistent_group(
1828 wpa_s->p2pdev, ssid,
1829 wpa_s->global->p2p_dev_addr);
1830 wpas_p2p_add_psk_list(wpa_s, ssid);
1831 }
1832
1833 wpas_notify_p2p_group_started(wpa_s, ssid,
1834 params->persistent_group, 0,
1835 NULL);
1836 wpas_p2p_cross_connect_setup(wpa_s);
1837 wpas_p2p_set_group_idle_timeout(wpa_s);
1838
1839 if (wpa_s->p2p_first_connection_timeout) {
1840 wpa_dbg(wpa_s, MSG_DEBUG,
1841 "P2P: Start group formation timeout of %d seconds until first data connection on GO",
1842 wpa_s->p2p_first_connection_timeout);
1843 wpa_s->p2p_go_group_formation_completed = 0;
1844 wpa_s->global->p2p_group_formation = wpa_s;
1845 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
1846 wpa_s->p2pdev, NULL);
1847 eloop_register_timeout(
1848 wpa_s->p2p_first_connection_timeout, 0,
1849 wpas_p2p_group_formation_timeout,
1850 wpa_s->p2pdev, NULL);
1851 }
1852
1853 return;
1854 }
1855
1856 wpa_printf(MSG_DEBUG, "P2P: Setting up WPS for GO provisioning");
1857 if (wpa_supplicant_ap_mac_addr_filter(wpa_s,
1858 params->peer_interface_addr)) {
1859 wpa_printf(MSG_DEBUG, "P2P: Failed to setup MAC address "
1860 "filtering");
1861 return;
1862 }
1863 if (params->wps_method == WPS_PBC) {
1864 wpa_supplicant_ap_wps_pbc(wpa_s, params->peer_interface_addr,
1865 params->peer_device_addr);
1866 #ifdef CONFIG_WPS_NFC
1867 } else if (params->wps_method == WPS_NFC) {
1868 if (wpa_s->p2pdev->p2p_oob_dev_pw_id !=
1869 DEV_PW_NFC_CONNECTION_HANDOVER &&
1870 !wpa_s->p2pdev->p2p_oob_dev_pw) {
1871 wpa_printf(MSG_DEBUG, "P2P: No NFC Dev Pw known");
1872 return;
1873 }
1874 wpas_ap_wps_add_nfc_pw(
1875 wpa_s, wpa_s->p2pdev->p2p_oob_dev_pw_id,
1876 wpa_s->p2pdev->p2p_oob_dev_pw,
1877 wpa_s->p2pdev->p2p_peer_oob_pk_hash_known ?
1878 wpa_s->p2pdev->p2p_peer_oob_pubkey_hash : NULL);
1879 #endif /* CONFIG_WPS_NFC */
1880 } else if (wpa_s->p2p_pin[0])
1881 wpa_supplicant_ap_wps_pin(wpa_s, params->peer_interface_addr,
1882 wpa_s->p2p_pin, NULL, 0, 0);
1883 os_free(wpa_s->go_params);
1884 wpa_s->go_params = NULL;
1885 }
1886
1887
1888 /**
1889 * wpas_p2p_freq_to_edmg_channel - Convert frequency into EDMG channel
1890 * @freq: Frequency (MHz) to convert
1891 * @op_class: Buffer for returning operating class
1892 * @op_edmg_channel: Buffer for returning channel number
1893 * Returns: 0 on success, -1 on failure
1894 *
1895 * This can be used to find the highest channel bonding which includes the
1896 * specified frequency.
1897 */
wpas_p2p_freq_to_edmg_channel(struct wpa_supplicant * wpa_s,unsigned int freq,u8 * op_class,u8 * op_edmg_channel)1898 static int wpas_p2p_freq_to_edmg_channel(struct wpa_supplicant *wpa_s,
1899 unsigned int freq,
1900 u8 *op_class, u8 *op_edmg_channel)
1901 {
1902 struct hostapd_hw_modes *hwmode;
1903 struct ieee80211_edmg_config edmg;
1904 unsigned int i;
1905 enum chan_width chanwidth[] = {
1906 CHAN_WIDTH_8640,
1907 CHAN_WIDTH_6480,
1908 CHAN_WIDTH_4320,
1909 };
1910
1911 if (!wpa_s->hw.modes)
1912 return -1;
1913
1914 hwmode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes,
1915 HOSTAPD_MODE_IEEE80211AD, 0);
1916 if (!hwmode) {
1917 wpa_printf(MSG_ERROR,
1918 "Unsupported AP mode: HOSTAPD_MODE_IEEE80211AD");
1919 return -1;
1920 }
1921
1922 /* Find the highest EDMG channel bandwidth to start the P2P GO */
1923 for (i = 0; i < ARRAY_SIZE(chanwidth); i++) {
1924 if (ieee80211_chaninfo_to_channel(freq, chanwidth[i], 0,
1925 op_class,
1926 op_edmg_channel) < 0)
1927 continue;
1928
1929 hostapd_encode_edmg_chan(1, *op_edmg_channel, 0, &edmg);
1930 if (edmg.channels &&
1931 ieee802_edmg_is_allowed(hwmode->edmg, edmg)) {
1932 wpa_printf(MSG_DEBUG,
1933 "Freq %u to EDMG channel %u at opclass %u",
1934 freq, *op_edmg_channel, *op_class);
1935 return 0;
1936 }
1937 }
1938
1939 return -1;
1940 }
1941
1942
wpas_p2p_try_edmg_channel(struct wpa_supplicant * wpa_s,struct p2p_go_neg_results * params)1943 int wpas_p2p_try_edmg_channel(struct wpa_supplicant *wpa_s,
1944 struct p2p_go_neg_results *params)
1945 {
1946 u8 op_channel, op_class;
1947 int freq;
1948
1949 /* Try social channel as primary channel frequency */
1950 freq = (!params->freq) ? 58320 + 1 * 2160 : params->freq;
1951
1952 if (wpas_p2p_freq_to_edmg_channel(wpa_s, freq, &op_class,
1953 &op_channel) == 0) {
1954 wpa_printf(MSG_DEBUG,
1955 "Freq %d will be used to set an EDMG connection (channel=%u opclass=%u)",
1956 freq, op_channel, op_class);
1957 params->freq = freq;
1958 return 0;
1959 }
1960
1961 return -1;
1962 }
1963
1964
wpas_start_wps_go(struct wpa_supplicant * wpa_s,struct p2p_go_neg_results * params,int group_formation)1965 static void wpas_start_wps_go(struct wpa_supplicant *wpa_s,
1966 struct p2p_go_neg_results *params,
1967 int group_formation)
1968 {
1969 struct wpa_ssid *ssid;
1970
1971 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Starting GO");
1972 if (wpas_copy_go_neg_results(wpa_s, params) < 0) {
1973 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not copy GO Negotiation "
1974 "results");
1975 return;
1976 }
1977
1978 ssid = wpa_config_add_network(wpa_s->conf);
1979 if (ssid == NULL) {
1980 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not add network for GO");
1981 return;
1982 }
1983
1984 wpa_s->show_group_started = 0;
1985 wpa_s->p2p_go_group_formation_completed = 0;
1986 wpa_s->group_formation_reported = 0;
1987 os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
1988
1989 wpa_config_set_network_defaults(ssid);
1990 ssid->temporary = 1;
1991 ssid->p2p_group = 1;
1992 ssid->p2p_persistent_group = !!params->persistent_group;
1993 ssid->mode = group_formation ? WPAS_MODE_P2P_GROUP_FORMATION :
1994 WPAS_MODE_P2P_GO;
1995 ssid->frequency = params->freq;
1996 ssid->ht40 = params->ht40;
1997 ssid->vht = params->vht;
1998 ssid->max_oper_chwidth = params->max_oper_chwidth;
1999 ssid->vht_center_freq2 = params->vht_center_freq2;
2000 ssid->he = params->he;
2001 if (params->edmg) {
2002 u8 op_channel, op_class;
2003
2004 if (!wpas_p2p_freq_to_edmg_channel(wpa_s, params->freq,
2005 &op_class, &op_channel)) {
2006 ssid->edmg_channel = op_channel;
2007 ssid->enable_edmg = params->edmg;
2008 } else {
2009 wpa_dbg(wpa_s, MSG_DEBUG,
2010 "P2P: Could not match EDMG channel, freq %d, for GO",
2011 params->freq);
2012 }
2013 }
2014
2015 ssid->ssid = os_zalloc(params->ssid_len + 1);
2016 if (ssid->ssid) {
2017 os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
2018 ssid->ssid_len = params->ssid_len;
2019 }
2020 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
2021 ssid->key_mgmt = WPA_KEY_MGMT_PSK;
2022 ssid->proto = WPA_PROTO_RSN;
2023 ssid->pairwise_cipher = WPA_CIPHER_CCMP;
2024 ssid->group_cipher = WPA_CIPHER_CCMP;
2025 if (params->freq > 56160) {
2026 /*
2027 * Enable GCMP instead of CCMP as pairwise_cipher and
2028 * group_cipher in 60 GHz.
2029 */
2030 ssid->pairwise_cipher = WPA_CIPHER_GCMP;
2031 ssid->group_cipher = WPA_CIPHER_GCMP;
2032 /* P2P GO in 60 GHz is always a PCP (PBSS) */
2033 ssid->pbss = 1;
2034 }
2035 if (os_strlen(params->passphrase) > 0) {
2036 ssid->passphrase = os_strdup(params->passphrase);
2037 if (ssid->passphrase == NULL) {
2038 wpa_msg_global(wpa_s, MSG_ERROR,
2039 "P2P: Failed to copy passphrase for GO");
2040 wpa_config_remove_network(wpa_s->conf, ssid->id);
2041 return;
2042 }
2043 } else
2044 ssid->passphrase = NULL;
2045 ssid->psk_set = params->psk_set;
2046 if (ssid->psk_set)
2047 os_memcpy(ssid->psk, params->psk, sizeof(ssid->psk));
2048 else if (ssid->passphrase)
2049 wpa_config_update_psk(ssid);
2050 ssid->ap_max_inactivity = wpa_s->p2pdev->conf->p2p_go_max_inactivity;
2051
2052 wpa_s->ap_configured_cb = p2p_go_configured;
2053 wpa_s->ap_configured_cb_ctx = wpa_s;
2054 wpa_s->ap_configured_cb_data = wpa_s->go_params;
2055 wpa_s->scan_req = NORMAL_SCAN_REQ;
2056 wpa_s->connect_without_scan = ssid;
2057 wpa_s->reassociate = 1;
2058 wpa_s->disconnected = 0;
2059 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Request scan (that will be skipped) to "
2060 "start GO)");
2061 wpa_supplicant_req_scan(wpa_s, 0, 0);
2062 }
2063
2064
wpas_p2p_clone_config(struct wpa_supplicant * dst,const struct wpa_supplicant * src)2065 static void wpas_p2p_clone_config(struct wpa_supplicant *dst,
2066 const struct wpa_supplicant *src)
2067 {
2068 struct wpa_config *d;
2069 const struct wpa_config *s;
2070
2071 d = dst->conf;
2072 s = src->conf;
2073
2074 #define C(n) \
2075 do { \
2076 if (s->n && !d->n) \
2077 d->n = os_strdup(s->n); \
2078 } while (0)
2079
2080 C(device_name);
2081 C(manufacturer);
2082 C(model_name);
2083 C(model_number);
2084 C(serial_number);
2085 C(config_methods);
2086 #undef C
2087
2088 os_memcpy(d->device_type, s->device_type, WPS_DEV_TYPE_LEN);
2089 os_memcpy(d->sec_device_type, s->sec_device_type,
2090 sizeof(d->sec_device_type));
2091 d->num_sec_device_types = s->num_sec_device_types;
2092
2093 d->p2p_group_idle = s->p2p_group_idle;
2094 d->p2p_go_freq_change_policy = s->p2p_go_freq_change_policy;
2095 d->p2p_intra_bss = s->p2p_intra_bss;
2096 d->persistent_reconnect = s->persistent_reconnect;
2097 d->max_num_sta = s->max_num_sta;
2098 d->pbc_in_m1 = s->pbc_in_m1;
2099 d->ignore_old_scan_res = s->ignore_old_scan_res;
2100 d->beacon_int = s->beacon_int;
2101 d->dtim_period = s->dtim_period;
2102 d->p2p_go_ctwindow = s->p2p_go_ctwindow;
2103 d->disassoc_low_ack = s->disassoc_low_ack;
2104 d->disable_scan_offload = s->disable_scan_offload;
2105 d->passive_scan = s->passive_scan;
2106
2107 if (s->wps_nfc_dh_privkey && s->wps_nfc_dh_pubkey &&
2108 !d->wps_nfc_pw_from_config) {
2109 wpabuf_free(d->wps_nfc_dh_privkey);
2110 wpabuf_free(d->wps_nfc_dh_pubkey);
2111 d->wps_nfc_dh_privkey = wpabuf_dup(s->wps_nfc_dh_privkey);
2112 d->wps_nfc_dh_pubkey = wpabuf_dup(s->wps_nfc_dh_pubkey);
2113 }
2114 d->p2p_cli_probe = s->p2p_cli_probe;
2115 d->go_interworking = s->go_interworking;
2116 d->go_access_network_type = s->go_access_network_type;
2117 d->go_internet = s->go_internet;
2118 d->go_venue_group = s->go_venue_group;
2119 d->go_venue_type = s->go_venue_type;
2120 }
2121
2122
wpas_p2p_get_group_ifname(struct wpa_supplicant * wpa_s,char * ifname,size_t len)2123 static void wpas_p2p_get_group_ifname(struct wpa_supplicant *wpa_s,
2124 char *ifname, size_t len)
2125 {
2126 char *ifname_ptr = wpa_s->ifname;
2127
2128 if (os_strncmp(wpa_s->ifname, P2P_MGMT_DEVICE_PREFIX,
2129 os_strlen(P2P_MGMT_DEVICE_PREFIX)) == 0) {
2130 ifname_ptr = os_strrchr(wpa_s->ifname, '-') + 1;
2131 }
2132
2133 os_snprintf(ifname, len, "p2p-%s-%d", ifname_ptr, wpa_s->p2p_group_idx);
2134 if (os_strlen(ifname) >= IFNAMSIZ &&
2135 os_strlen(wpa_s->ifname) < IFNAMSIZ) {
2136 int res;
2137
2138 /* Try to avoid going over the IFNAMSIZ length limit */
2139 res = os_snprintf(ifname, len, "p2p-%d", wpa_s->p2p_group_idx);
2140 if (os_snprintf_error(len, res) && len)
2141 ifname[len - 1] = '\0';
2142 }
2143 }
2144
2145
wpas_p2p_add_group_interface(struct wpa_supplicant * wpa_s,enum wpa_driver_if_type type)2146 static int wpas_p2p_add_group_interface(struct wpa_supplicant *wpa_s,
2147 enum wpa_driver_if_type type)
2148 {
2149 char ifname[120], force_ifname[120];
2150
2151 if (wpa_s->pending_interface_name[0]) {
2152 wpa_printf(MSG_DEBUG, "P2P: Pending virtual interface exists "
2153 "- skip creation of a new one");
2154 if (is_zero_ether_addr(wpa_s->pending_interface_addr)) {
2155 wpa_printf(MSG_DEBUG, "P2P: Pending virtual address "
2156 "unknown?! ifname='%s'",
2157 wpa_s->pending_interface_name);
2158 return -1;
2159 }
2160 return 0;
2161 }
2162
2163 wpas_p2p_get_group_ifname(wpa_s, ifname, sizeof(ifname));
2164 force_ifname[0] = '\0';
2165
2166 wpa_printf(MSG_DEBUG, "P2P: Create a new interface %s for the group",
2167 ifname);
2168 wpa_s->p2p_group_idx++;
2169
2170 wpa_s->pending_interface_type = type;
2171 if (wpa_drv_if_add(wpa_s, type, ifname, NULL, NULL, force_ifname,
2172 wpa_s->pending_interface_addr, NULL) < 0) {
2173 wpa_printf(MSG_ERROR, "P2P: Failed to create new group "
2174 "interface");
2175 return -1;
2176 }
2177
2178 if (wpa_s->conf->p2p_interface_random_mac_addr) {
2179 random_mac_addr(wpa_s->pending_interface_addr);
2180 wpa_printf(MSG_DEBUG, "P2P: Generate random MAC address " MACSTR
2181 " for the group",
2182 MAC2STR(wpa_s->pending_interface_addr));
2183 }
2184
2185 if (force_ifname[0]) {
2186 wpa_printf(MSG_DEBUG, "P2P: Driver forced interface name %s",
2187 force_ifname);
2188 os_strlcpy(wpa_s->pending_interface_name, force_ifname,
2189 sizeof(wpa_s->pending_interface_name));
2190 } else
2191 os_strlcpy(wpa_s->pending_interface_name, ifname,
2192 sizeof(wpa_s->pending_interface_name));
2193 wpa_printf(MSG_DEBUG, "P2P: Created pending virtual interface %s addr "
2194 MACSTR, wpa_s->pending_interface_name,
2195 MAC2STR(wpa_s->pending_interface_addr));
2196
2197 return 0;
2198 }
2199
2200
wpas_p2p_remove_pending_group_interface(struct wpa_supplicant * wpa_s)2201 static void wpas_p2p_remove_pending_group_interface(
2202 struct wpa_supplicant *wpa_s)
2203 {
2204 if (!wpa_s->pending_interface_name[0] ||
2205 is_zero_ether_addr(wpa_s->pending_interface_addr))
2206 return; /* No pending virtual interface */
2207
2208 wpa_printf(MSG_DEBUG, "P2P: Removing pending group interface %s",
2209 wpa_s->pending_interface_name);
2210 wpa_drv_if_remove(wpa_s, wpa_s->pending_interface_type,
2211 wpa_s->pending_interface_name);
2212 os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
2213 wpa_s->pending_interface_name[0] = '\0';
2214 wpa_s->global->pending_group_iface_for_p2ps = 0;
2215 }
2216
2217
2218 static struct wpa_supplicant *
wpas_p2p_init_group_interface(struct wpa_supplicant * wpa_s,int go)2219 wpas_p2p_init_group_interface(struct wpa_supplicant *wpa_s, int go)
2220 {
2221 struct wpa_interface iface;
2222 struct wpa_supplicant *group_wpa_s;
2223
2224 if (!wpa_s->pending_interface_name[0]) {
2225 wpa_printf(MSG_ERROR, "P2P: No pending group interface");
2226 if (!wpas_p2p_create_iface(wpa_s))
2227 return NULL;
2228 /*
2229 * Something has forced us to remove the pending interface; try
2230 * to create a new one and hope for the best that we will get
2231 * the same local address.
2232 */
2233 if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
2234 WPA_IF_P2P_CLIENT) < 0)
2235 return NULL;
2236 }
2237
2238 os_memset(&iface, 0, sizeof(iface));
2239 iface.ifname = wpa_s->pending_interface_name;
2240 iface.driver = wpa_s->driver->name;
2241 if (wpa_s->conf->ctrl_interface == NULL &&
2242 wpa_s->parent != wpa_s &&
2243 wpa_s->p2p_mgmt &&
2244 (wpa_s->drv_flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE))
2245 iface.ctrl_interface = wpa_s->parent->conf->ctrl_interface;
2246 else
2247 iface.ctrl_interface = wpa_s->conf->ctrl_interface;
2248 iface.driver_param = wpa_s->conf->driver_param;
2249 group_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface, wpa_s);
2250 if (group_wpa_s == NULL) {
2251 wpa_printf(MSG_ERROR, "P2P: Failed to create new "
2252 "wpa_supplicant interface");
2253 return NULL;
2254 }
2255 wpa_s->pending_interface_name[0] = '\0';
2256 group_wpa_s->p2p_group_interface = go ? P2P_GROUP_INTERFACE_GO :
2257 P2P_GROUP_INTERFACE_CLIENT;
2258 wpa_s->global->p2p_group_formation = group_wpa_s;
2259 wpa_s->global->pending_group_iface_for_p2ps = 0;
2260
2261 wpas_p2p_clone_config(group_wpa_s, wpa_s);
2262
2263 if (wpa_s->conf->p2p_interface_random_mac_addr) {
2264 if (wpa_drv_set_mac_addr(group_wpa_s,
2265 wpa_s->pending_interface_addr) < 0) {
2266 wpa_msg(group_wpa_s, MSG_INFO,
2267 "Failed to set random MAC address");
2268 wpa_supplicant_remove_iface(wpa_s->global, group_wpa_s,
2269 0);
2270 return NULL;
2271 }
2272
2273 if (wpa_supplicant_update_mac_addr(group_wpa_s) < 0) {
2274 wpa_msg(group_wpa_s, MSG_INFO,
2275 "Could not update MAC address information");
2276 wpa_supplicant_remove_iface(wpa_s->global, group_wpa_s,
2277 0);
2278 return NULL;
2279 }
2280
2281 wpa_printf(MSG_DEBUG, "P2P: Using random MAC address " MACSTR
2282 " for the group",
2283 MAC2STR(wpa_s->pending_interface_addr));
2284 }
2285
2286 return group_wpa_s;
2287 }
2288
2289
wpas_p2p_group_formation_timeout(void * eloop_ctx,void * timeout_ctx)2290 static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
2291 void *timeout_ctx)
2292 {
2293 struct wpa_supplicant *wpa_s = eloop_ctx;
2294 wpa_printf(MSG_DEBUG, "P2P: Group Formation timed out");
2295 wpas_p2p_group_formation_failed(wpa_s, 0);
2296 }
2297
2298
wpas_p2p_group_formation_failed(struct wpa_supplicant * wpa_s,int already_deleted)2299 static void wpas_p2p_group_formation_failed(struct wpa_supplicant *wpa_s,
2300 int already_deleted)
2301 {
2302 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
2303 wpa_s->p2pdev, NULL);
2304 if (wpa_s->global->p2p)
2305 p2p_group_formation_failed(wpa_s->global->p2p);
2306 wpas_group_formation_completed(wpa_s, 0, already_deleted);
2307 }
2308
2309
wpas_p2p_grpform_fail_after_wps(struct wpa_supplicant * wpa_s)2310 static void wpas_p2p_grpform_fail_after_wps(struct wpa_supplicant *wpa_s)
2311 {
2312 wpa_printf(MSG_DEBUG, "P2P: Reject group formation due to WPS provisioning failure");
2313 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
2314 wpa_s->p2pdev, NULL);
2315 eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
2316 wpa_s->p2pdev, NULL);
2317 wpa_s->global->p2p_fail_on_wps_complete = 0;
2318 }
2319
2320
wpas_p2p_ap_setup_failed(struct wpa_supplicant * wpa_s)2321 void wpas_p2p_ap_setup_failed(struct wpa_supplicant *wpa_s)
2322 {
2323 if (wpa_s->global->p2p_group_formation != wpa_s)
2324 return;
2325 /* Speed up group formation timeout since this cannot succeed */
2326 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
2327 wpa_s->p2pdev, NULL);
2328 eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
2329 wpa_s->p2pdev, NULL);
2330 }
2331
2332
wpas_go_neg_completed(void * ctx,struct p2p_go_neg_results * res)2333 static void wpas_go_neg_completed(void *ctx, struct p2p_go_neg_results *res)
2334 {
2335 struct wpa_supplicant *wpa_s = ctx;
2336 struct wpa_supplicant *group_wpa_s;
2337
2338 if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
2339 wpa_drv_cancel_remain_on_channel(wpa_s);
2340 wpa_s->off_channel_freq = 0;
2341 wpa_s->roc_waiting_drv_freq = 0;
2342 }
2343
2344 if (res->status) {
2345 wpa_msg_global(wpa_s, MSG_INFO,
2346 P2P_EVENT_GO_NEG_FAILURE "status=%d",
2347 res->status);
2348 wpas_notify_p2p_go_neg_completed(wpa_s, res);
2349 wpas_p2p_remove_pending_group_interface(wpa_s);
2350 return;
2351 }
2352
2353 if (!res->role_go) {
2354 /* Inform driver of the operating channel of GO. */
2355 wpa_drv_set_prob_oper_freq(wpa_s, res->freq);
2356 }
2357
2358 if (wpa_s->p2p_go_ht40)
2359 res->ht40 = 1;
2360 if (wpa_s->p2p_go_vht)
2361 res->vht = 1;
2362 if (wpa_s->p2p_go_he)
2363 res->he = 1;
2364 if (wpa_s->p2p_go_edmg)
2365 res->edmg = 1;
2366 res->max_oper_chwidth = wpa_s->p2p_go_max_oper_chwidth;
2367 res->vht_center_freq2 = wpa_s->p2p_go_vht_center_freq2;
2368
2369 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_SUCCESS "role=%s "
2370 "freq=%d ht40=%d peer_dev=" MACSTR " peer_iface=" MACSTR
2371 " wps_method=%s",
2372 res->role_go ? "GO" : "client", res->freq, res->ht40,
2373 MAC2STR(res->peer_device_addr),
2374 MAC2STR(res->peer_interface_addr),
2375 p2p_wps_method_text(res->wps_method));
2376 wpas_notify_p2p_go_neg_completed(wpa_s, res);
2377
2378 if (res->role_go && wpa_s->p2p_persistent_id >= 0) {
2379 struct wpa_ssid *ssid;
2380 ssid = wpa_config_get_network(wpa_s->conf,
2381 wpa_s->p2p_persistent_id);
2382 if (ssid && ssid->disabled == 2 &&
2383 ssid->mode == WPAS_MODE_P2P_GO && ssid->passphrase) {
2384 size_t len = os_strlen(ssid->passphrase);
2385 wpa_printf(MSG_DEBUG, "P2P: Override passphrase based "
2386 "on requested persistent group");
2387 os_memcpy(res->passphrase, ssid->passphrase, len);
2388 res->passphrase[len] = '\0';
2389 }
2390 }
2391
2392 if (wpa_s->create_p2p_iface) {
2393 group_wpa_s =
2394 wpas_p2p_init_group_interface(wpa_s, res->role_go);
2395 if (group_wpa_s == NULL) {
2396 wpas_p2p_remove_pending_group_interface(wpa_s);
2397 eloop_cancel_timeout(wpas_p2p_long_listen_timeout,
2398 wpa_s, NULL);
2399 wpas_p2p_group_formation_failed(wpa_s, 1);
2400 return;
2401 }
2402 os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
2403 wpa_s->pending_interface_name[0] = '\0';
2404 } else {
2405 group_wpa_s = wpa_s->parent;
2406 wpa_s->global->p2p_group_formation = group_wpa_s;
2407 if (group_wpa_s != wpa_s)
2408 wpas_p2p_clone_config(group_wpa_s, wpa_s);
2409 }
2410
2411 group_wpa_s->p2p_in_provisioning = 1;
2412 group_wpa_s->p2pdev = wpa_s;
2413 if (group_wpa_s != wpa_s) {
2414 os_memcpy(group_wpa_s->p2p_pin, wpa_s->p2p_pin,
2415 sizeof(group_wpa_s->p2p_pin));
2416 group_wpa_s->p2p_wps_method = wpa_s->p2p_wps_method;
2417 }
2418 if (res->role_go) {
2419 wpas_start_wps_go(group_wpa_s, res, 1);
2420 } else {
2421 os_get_reltime(&group_wpa_s->scan_min_time);
2422 wpas_start_wps_enrollee(group_wpa_s, res);
2423 }
2424
2425 wpa_s->global->p2p_long_listen = 0;
2426 eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
2427
2428 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
2429 eloop_register_timeout(15 + res->peer_config_timeout / 100,
2430 (res->peer_config_timeout % 100) * 10000,
2431 wpas_p2p_group_formation_timeout, wpa_s, NULL);
2432 }
2433
2434
wpas_go_neg_req_rx(void * ctx,const u8 * src,u16 dev_passwd_id,u8 go_intent)2435 static void wpas_go_neg_req_rx(void *ctx, const u8 *src, u16 dev_passwd_id,
2436 u8 go_intent)
2437 {
2438 struct wpa_supplicant *wpa_s = ctx;
2439 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_REQUEST MACSTR
2440 " dev_passwd_id=%u go_intent=%u", MAC2STR(src),
2441 dev_passwd_id, go_intent);
2442
2443 wpas_notify_p2p_go_neg_req(wpa_s, src, dev_passwd_id, go_intent);
2444 }
2445
2446
wpas_dev_found(void * ctx,const u8 * addr,const struct p2p_peer_info * info,int new_device)2447 static void wpas_dev_found(void *ctx, const u8 *addr,
2448 const struct p2p_peer_info *info,
2449 int new_device)
2450 {
2451 u8 *wfd_dev_info = NULL;
2452 u8 wfd_dev_info_len = 0;
2453 #ifndef CONFIG_NO_STDOUT_DEBUG
2454 struct wpa_supplicant *wpa_s = ctx;
2455 char devtype[WPS_DEV_TYPE_BUFSIZE];
2456 char *wfd_dev_info_hex = NULL;
2457
2458 #ifdef CONFIG_WIFI_DISPLAY
2459 wfd_dev_info_hex = wifi_display_subelem_hex(info->wfd_subelems,
2460 WFD_SUBELEM_DEVICE_INFO);
2461 if (wfd_dev_info_hex) {
2462 wfd_dev_info_len = strlen(wfd_dev_info_hex) / 2;
2463 wfd_dev_info = os_zalloc(wfd_dev_info_len);
2464 // Only used for notification, so not handling error.
2465 hexstr2bin(wfd_dev_info_hex, wfd_dev_info, wfd_dev_info_len);
2466 }
2467 #endif /* CONFIG_WIFI_DISPLAY */
2468
2469 if (info->p2ps_instance) {
2470 char str[256];
2471 const u8 *buf = wpabuf_head(info->p2ps_instance);
2472 size_t len = wpabuf_len(info->p2ps_instance);
2473
2474 while (len) {
2475 u32 id;
2476 u16 methods;
2477 u8 str_len;
2478
2479 if (len < 4 + 2 + 1)
2480 break;
2481 id = WPA_GET_LE32(buf);
2482 buf += sizeof(u32);
2483 methods = WPA_GET_BE16(buf);
2484 buf += sizeof(u16);
2485 str_len = *buf++;
2486 if (str_len > len - 4 - 2 - 1)
2487 break;
2488 os_memcpy(str, buf, str_len);
2489 str[str_len] = '\0';
2490 buf += str_len;
2491 len -= str_len + sizeof(u32) + sizeof(u16) + sizeof(u8);
2492
2493 wpa_msg_global(wpa_s, MSG_INFO,
2494 P2P_EVENT_DEVICE_FOUND MACSTR
2495 " p2p_dev_addr=" MACSTR
2496 " pri_dev_type=%s name='%s'"
2497 " config_methods=0x%x"
2498 " dev_capab=0x%x"
2499 " group_capab=0x%x"
2500 " adv_id=%x asp_svc=%s%s",
2501 MAC2STR(addr),
2502 MAC2STR(info->p2p_device_addr),
2503 wps_dev_type_bin2str(
2504 info->pri_dev_type,
2505 devtype, sizeof(devtype)),
2506 info->device_name, methods,
2507 info->dev_capab, info->group_capab,
2508 id, str,
2509 info->vendor_elems ?
2510 " vendor_elems=1" : "");
2511 }
2512 goto done;
2513 }
2514
2515 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_FOUND MACSTR
2516 " p2p_dev_addr=" MACSTR
2517 " pri_dev_type=%s name='%s' config_methods=0x%x "
2518 "dev_capab=0x%x group_capab=0x%x%s%s%s new=%d",
2519 MAC2STR(addr), MAC2STR(info->p2p_device_addr),
2520 wps_dev_type_bin2str(info->pri_dev_type, devtype,
2521 sizeof(devtype)),
2522 info->device_name, info->config_methods,
2523 info->dev_capab, info->group_capab,
2524 wfd_dev_info_hex ? " wfd_dev_info=0x" : "",
2525 wfd_dev_info_hex ? wfd_dev_info_hex : "",
2526 info->vendor_elems ? " vendor_elems=1" : "",
2527 new_device);
2528
2529 done:
2530 os_free(wfd_dev_info_hex);
2531 #endif /* CONFIG_NO_STDOUT_DEBUG */
2532
2533 wpas_notify_p2p_device_found(ctx, addr, info, wfd_dev_info,
2534 wfd_dev_info_len, new_device);
2535 os_free(wfd_dev_info);
2536 }
2537
2538
wpas_dev_lost(void * ctx,const u8 * dev_addr)2539 static void wpas_dev_lost(void *ctx, const u8 *dev_addr)
2540 {
2541 struct wpa_supplicant *wpa_s = ctx;
2542
2543 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_LOST
2544 "p2p_dev_addr=" MACSTR, MAC2STR(dev_addr));
2545
2546 wpas_notify_p2p_device_lost(wpa_s, dev_addr);
2547 }
2548
2549
wpas_find_stopped(void * ctx)2550 static void wpas_find_stopped(void *ctx)
2551 {
2552 struct wpa_supplicant *wpa_s = ctx;
2553
2554 if (wpa_s->p2p_scan_work && wpas_abort_ongoing_scan(wpa_s) < 0)
2555 wpa_printf(MSG_DEBUG, "P2P: Abort ongoing scan failed");
2556
2557 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_FIND_STOPPED);
2558 wpas_notify_p2p_find_stopped(wpa_s);
2559 }
2560
2561
2562 struct wpas_p2p_listen_work {
2563 unsigned int freq;
2564 unsigned int duration;
2565 struct wpabuf *probe_resp_ie;
2566 };
2567
2568
wpas_p2p_listen_work_free(struct wpas_p2p_listen_work * lwork)2569 static void wpas_p2p_listen_work_free(struct wpas_p2p_listen_work *lwork)
2570 {
2571 if (lwork == NULL)
2572 return;
2573 wpabuf_free(lwork->probe_resp_ie);
2574 os_free(lwork);
2575 }
2576
2577
wpas_p2p_listen_work_done(struct wpa_supplicant * wpa_s)2578 static void wpas_p2p_listen_work_done(struct wpa_supplicant *wpa_s)
2579 {
2580 struct wpas_p2p_listen_work *lwork;
2581
2582 if (!wpa_s->p2p_listen_work)
2583 return;
2584
2585 lwork = wpa_s->p2p_listen_work->ctx;
2586 wpas_p2p_listen_work_free(lwork);
2587 radio_work_done(wpa_s->p2p_listen_work);
2588 wpa_s->p2p_listen_work = NULL;
2589 }
2590
2591
wpas_start_listen_cb(struct wpa_radio_work * work,int deinit)2592 static void wpas_start_listen_cb(struct wpa_radio_work *work, int deinit)
2593 {
2594 struct wpa_supplicant *wpa_s = work->wpa_s;
2595 struct wpas_p2p_listen_work *lwork = work->ctx;
2596 unsigned int duration;
2597
2598 if (deinit) {
2599 if (work->started) {
2600 wpa_s->p2p_listen_work = NULL;
2601 wpas_stop_listen(wpa_s);
2602 }
2603 wpas_p2p_listen_work_free(lwork);
2604 return;
2605 }
2606
2607 wpa_s->p2p_listen_work = work;
2608
2609 wpa_drv_set_ap_wps_ie(wpa_s, NULL, lwork->probe_resp_ie, NULL);
2610
2611 if (wpa_drv_probe_req_report(wpa_s, 1) < 0) {
2612 wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver to "
2613 "report received Probe Request frames");
2614 wpas_p2p_listen_work_done(wpa_s);
2615 return;
2616 }
2617
2618 wpa_s->pending_listen_freq = lwork->freq;
2619 wpa_s->pending_listen_duration = lwork->duration;
2620
2621 duration = lwork->duration;
2622 #ifdef CONFIG_TESTING_OPTIONS
2623 if (wpa_s->extra_roc_dur) {
2624 wpa_printf(MSG_DEBUG, "TESTING: Increase ROC duration %u -> %u",
2625 duration, duration + wpa_s->extra_roc_dur);
2626 duration += wpa_s->extra_roc_dur;
2627 }
2628 #endif /* CONFIG_TESTING_OPTIONS */
2629
2630 if (wpa_drv_remain_on_channel(wpa_s, lwork->freq, duration) < 0) {
2631 wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver "
2632 "to remain on channel (%u MHz) for Listen "
2633 "state", lwork->freq);
2634 wpas_p2p_listen_work_done(wpa_s);
2635 wpa_s->pending_listen_freq = 0;
2636 return;
2637 }
2638 wpa_s->off_channel_freq = 0;
2639 wpa_s->roc_waiting_drv_freq = lwork->freq;
2640 }
2641
2642
wpas_start_listen(void * ctx,unsigned int freq,unsigned int duration,const struct wpabuf * probe_resp_ie)2643 static int wpas_start_listen(void *ctx, unsigned int freq,
2644 unsigned int duration,
2645 const struct wpabuf *probe_resp_ie)
2646 {
2647 struct wpa_supplicant *wpa_s = ctx;
2648 struct wpas_p2p_listen_work *lwork;
2649
2650 if (wpa_s->p2p_listen_work) {
2651 wpa_printf(MSG_DEBUG, "P2P: Reject start_listen since p2p_listen_work already exists");
2652 return -1;
2653 }
2654
2655 lwork = os_zalloc(sizeof(*lwork));
2656 if (lwork == NULL)
2657 return -1;
2658 lwork->freq = freq;
2659 lwork->duration = duration;
2660 if (probe_resp_ie) {
2661 lwork->probe_resp_ie = wpabuf_dup(probe_resp_ie);
2662 if (lwork->probe_resp_ie == NULL) {
2663 wpas_p2p_listen_work_free(lwork);
2664 return -1;
2665 }
2666 }
2667
2668 if (radio_add_work(wpa_s, freq, "p2p-listen", 0, wpas_start_listen_cb,
2669 lwork) < 0) {
2670 wpas_p2p_listen_work_free(lwork);
2671 return -1;
2672 }
2673
2674 return 0;
2675 }
2676
2677
wpas_stop_listen(void * ctx)2678 static void wpas_stop_listen(void *ctx)
2679 {
2680 struct wpa_supplicant *wpa_s = ctx;
2681 if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
2682 wpa_drv_cancel_remain_on_channel(wpa_s);
2683 wpa_s->off_channel_freq = 0;
2684 wpa_s->roc_waiting_drv_freq = 0;
2685 }
2686 wpa_drv_set_ap_wps_ie(wpa_s, NULL, NULL, NULL);
2687
2688 /*
2689 * Don't cancel Probe Request RX reporting for a connected P2P Client
2690 * handling Probe Request frames.
2691 */
2692 if (!wpa_s->p2p_cli_probe)
2693 wpa_drv_probe_req_report(wpa_s, 0);
2694
2695 wpas_p2p_listen_work_done(wpa_s);
2696 }
2697
2698
wpas_send_probe_resp(void * ctx,const struct wpabuf * buf,unsigned int freq)2699 static int wpas_send_probe_resp(void *ctx, const struct wpabuf *buf,
2700 unsigned int freq)
2701 {
2702 struct wpa_supplicant *wpa_s = ctx;
2703 return wpa_drv_send_mlme(wpa_s, wpabuf_head(buf), wpabuf_len(buf), 1,
2704 freq, 0);
2705 }
2706
2707
wpas_prov_disc_local_display(struct wpa_supplicant * wpa_s,const u8 * peer,const char * params,unsigned int generated_pin)2708 static void wpas_prov_disc_local_display(struct wpa_supplicant *wpa_s,
2709 const u8 *peer, const char *params,
2710 unsigned int generated_pin)
2711 {
2712 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_SHOW_PIN MACSTR
2713 " %08d%s", MAC2STR(peer), generated_pin, params);
2714 }
2715
2716
wpas_prov_disc_local_keypad(struct wpa_supplicant * wpa_s,const u8 * peer,const char * params)2717 static void wpas_prov_disc_local_keypad(struct wpa_supplicant *wpa_s,
2718 const u8 *peer, const char *params)
2719 {
2720 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_ENTER_PIN MACSTR
2721 "%s", MAC2STR(peer), params);
2722 }
2723
2724
wpas_prov_disc_req(void * ctx,const u8 * peer,u16 config_methods,const u8 * dev_addr,const u8 * pri_dev_type,const char * dev_name,u16 supp_config_methods,u8 dev_capab,u8 group_capab,const u8 * group_id,size_t group_id_len)2725 static void wpas_prov_disc_req(void *ctx, const u8 *peer, u16 config_methods,
2726 const u8 *dev_addr, const u8 *pri_dev_type,
2727 const char *dev_name, u16 supp_config_methods,
2728 u8 dev_capab, u8 group_capab, const u8 *group_id,
2729 size_t group_id_len)
2730 {
2731 struct wpa_supplicant *wpa_s = ctx;
2732 char devtype[WPS_DEV_TYPE_BUFSIZE];
2733 char params[300];
2734 u8 empty_dev_type[8];
2735 unsigned int generated_pin = 0;
2736 struct wpa_supplicant *group = NULL;
2737 int res;
2738
2739 if (group_id) {
2740 for (group = wpa_s->global->ifaces; group; group = group->next)
2741 {
2742 struct wpa_ssid *s = group->current_ssid;
2743 if (s != NULL &&
2744 s->mode == WPAS_MODE_P2P_GO &&
2745 group_id_len - ETH_ALEN == s->ssid_len &&
2746 os_memcmp(group_id + ETH_ALEN, s->ssid,
2747 s->ssid_len) == 0)
2748 break;
2749 }
2750 }
2751
2752 if (pri_dev_type == NULL) {
2753 os_memset(empty_dev_type, 0, sizeof(empty_dev_type));
2754 pri_dev_type = empty_dev_type;
2755 }
2756 res = os_snprintf(params, sizeof(params), " p2p_dev_addr=" MACSTR
2757 " pri_dev_type=%s name='%s' config_methods=0x%x "
2758 "dev_capab=0x%x group_capab=0x%x%s%s",
2759 MAC2STR(dev_addr),
2760 wps_dev_type_bin2str(pri_dev_type, devtype,
2761 sizeof(devtype)),
2762 dev_name, supp_config_methods, dev_capab, group_capab,
2763 group ? " group=" : "",
2764 group ? group->ifname : "");
2765 if (os_snprintf_error(sizeof(params), res))
2766 wpa_printf(MSG_DEBUG, "P2P: PD Request event truncated");
2767 params[sizeof(params) - 1] = '\0';
2768
2769 if (config_methods & WPS_CONFIG_DISPLAY) {
2770 if (wps_generate_pin(&generated_pin) < 0) {
2771 wpa_printf(MSG_DEBUG, "P2P: Could not generate PIN");
2772 wpas_notify_p2p_provision_discovery(
2773 wpa_s, peer, 0 /* response */,
2774 P2P_PROV_DISC_INFO_UNAVAILABLE, 0, 0);
2775 return;
2776 }
2777 wpas_prov_disc_local_display(wpa_s, peer, params,
2778 generated_pin);
2779 } else if (config_methods & WPS_CONFIG_KEYPAD)
2780 wpas_prov_disc_local_keypad(wpa_s, peer, params);
2781 else if (config_methods & WPS_CONFIG_PUSHBUTTON)
2782 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_REQ
2783 MACSTR "%s", MAC2STR(peer), params);
2784
2785 wpas_notify_p2p_provision_discovery(wpa_s, peer, 1 /* request */,
2786 P2P_PROV_DISC_SUCCESS,
2787 config_methods, generated_pin);
2788 }
2789
2790
wpas_prov_disc_resp(void * ctx,const u8 * peer,u16 config_methods)2791 static void wpas_prov_disc_resp(void *ctx, const u8 *peer, u16 config_methods)
2792 {
2793 struct wpa_supplicant *wpa_s = ctx;
2794 unsigned int generated_pin = 0;
2795 char params[20];
2796
2797 if (wpa_s->pending_pd_before_join &&
2798 (os_memcmp(peer, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
2799 os_memcmp(peer, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0)) {
2800 wpa_s->pending_pd_before_join = 0;
2801 wpa_printf(MSG_DEBUG, "P2P: Starting pending "
2802 "join-existing-group operation");
2803 wpas_p2p_join_start(wpa_s, 0, NULL, 0);
2804 return;
2805 }
2806
2807 if (wpa_s->pending_pd_use == AUTO_PD_JOIN ||
2808 wpa_s->pending_pd_use == AUTO_PD_GO_NEG) {
2809 int res;
2810
2811 res = os_snprintf(params, sizeof(params), " peer_go=%d",
2812 wpa_s->pending_pd_use == AUTO_PD_JOIN);
2813 if (os_snprintf_error(sizeof(params), res))
2814 params[sizeof(params) - 1] = '\0';
2815 } else
2816 params[0] = '\0';
2817
2818 if (config_methods & WPS_CONFIG_DISPLAY)
2819 wpas_prov_disc_local_keypad(wpa_s, peer, params);
2820 else if (config_methods & WPS_CONFIG_KEYPAD) {
2821 if (wps_generate_pin(&generated_pin) < 0) {
2822 wpa_printf(MSG_DEBUG, "P2P: Could not generate PIN");
2823 wpas_notify_p2p_provision_discovery(
2824 wpa_s, peer, 0 /* response */,
2825 P2P_PROV_DISC_INFO_UNAVAILABLE, 0, 0);
2826 return;
2827 }
2828 wpas_prov_disc_local_display(wpa_s, peer, params,
2829 generated_pin);
2830 } else if (config_methods & WPS_CONFIG_PUSHBUTTON)
2831 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_RESP
2832 MACSTR "%s", MAC2STR(peer), params);
2833
2834 wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
2835 P2P_PROV_DISC_SUCCESS,
2836 config_methods, generated_pin);
2837 }
2838
2839
wpas_prov_disc_fail(void * ctx,const u8 * peer,enum p2p_prov_disc_status status,u32 adv_id,const u8 * adv_mac,const char * deferred_session_resp)2840 static void wpas_prov_disc_fail(void *ctx, const u8 *peer,
2841 enum p2p_prov_disc_status status,
2842 u32 adv_id, const u8 *adv_mac,
2843 const char *deferred_session_resp)
2844 {
2845 struct wpa_supplicant *wpa_s = ctx;
2846
2847 if (wpa_s->p2p_fallback_to_go_neg) {
2848 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: PD for p2p_connect-auto "
2849 "failed - fall back to GO Negotiation");
2850 wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
2851 P2P_EVENT_FALLBACK_TO_GO_NEG
2852 "reason=PD-failed");
2853 wpas_p2p_fallback_to_go_neg(wpa_s, 0);
2854 return;
2855 }
2856
2857 if (status == P2P_PROV_DISC_TIMEOUT_JOIN) {
2858 wpa_s->pending_pd_before_join = 0;
2859 wpa_printf(MSG_DEBUG, "P2P: Starting pending "
2860 "join-existing-group operation (no ACK for PD "
2861 "Req attempts)");
2862 wpas_p2p_join_start(wpa_s, 0, NULL, 0);
2863 return;
2864 }
2865
2866 if (adv_id && adv_mac && deferred_session_resp) {
2867 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
2868 " p2p_dev_addr=" MACSTR " status=%d adv_id=%x"
2869 " deferred_session_resp='%s'",
2870 MAC2STR(peer), status, adv_id,
2871 deferred_session_resp);
2872 } else if (adv_id && adv_mac) {
2873 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
2874 " p2p_dev_addr=" MACSTR " status=%d adv_id=%x",
2875 MAC2STR(peer), status, adv_id);
2876 } else {
2877 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
2878 " p2p_dev_addr=" MACSTR " status=%d",
2879 MAC2STR(peer), status);
2880 }
2881
2882 wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
2883 status, 0, 0);
2884 }
2885
2886
freq_included(struct wpa_supplicant * wpa_s,const struct p2p_channels * channels,unsigned int freq)2887 static int freq_included(struct wpa_supplicant *wpa_s,
2888 const struct p2p_channels *channels,
2889 unsigned int freq)
2890 {
2891 if ((channels == NULL || p2p_channels_includes_freq(channels, freq)) &&
2892 wpas_p2p_go_is_peer_freq(wpa_s, freq))
2893 return 1;
2894 return 0;
2895 }
2896
2897
wpas_p2p_go_update_common_freqs(struct wpa_supplicant * wpa_s)2898 static void wpas_p2p_go_update_common_freqs(struct wpa_supplicant *wpa_s)
2899 {
2900 unsigned int num = P2P_MAX_CHANNELS;
2901 int *common_freqs;
2902 int ret;
2903
2904 p2p_go_dump_common_freqs(wpa_s);
2905 common_freqs = os_calloc(num, sizeof(int));
2906 if (!common_freqs)
2907 return;
2908
2909 ret = p2p_group_get_common_freqs(wpa_s->p2p_group, common_freqs, &num);
2910 if (ret < 0) {
2911 wpa_dbg(wpa_s, MSG_DEBUG,
2912 "P2P: Failed to get group common freqs");
2913 os_free(common_freqs);
2914 return;
2915 }
2916
2917 os_free(wpa_s->p2p_group_common_freqs);
2918 wpa_s->p2p_group_common_freqs = common_freqs;
2919 wpa_s->p2p_group_common_freqs_num = num;
2920 p2p_go_dump_common_freqs(wpa_s);
2921 }
2922
2923
2924 /*
2925 * Check if the given frequency is one of the possible operating frequencies
2926 * set after the completion of the GO Negotiation.
2927 */
wpas_p2p_go_is_peer_freq(struct wpa_supplicant * wpa_s,int freq)2928 static int wpas_p2p_go_is_peer_freq(struct wpa_supplicant *wpa_s, int freq)
2929 {
2930 unsigned int i;
2931
2932 p2p_go_dump_common_freqs(wpa_s);
2933
2934 /* assume no restrictions */
2935 if (!wpa_s->p2p_group_common_freqs_num)
2936 return 1;
2937
2938 for (i = 0; i < wpa_s->p2p_group_common_freqs_num; i++) {
2939 if (wpa_s->p2p_group_common_freqs[i] == freq)
2940 return 1;
2941 }
2942 return 0;
2943 }
2944
2945
wpas_sta_check_ecsa(struct hostapd_data * hapd,struct sta_info * sta,void * ctx)2946 static int wpas_sta_check_ecsa(struct hostapd_data *hapd,
2947 struct sta_info *sta, void *ctx)
2948 {
2949 int *ecsa_support = ctx;
2950
2951 *ecsa_support &= sta->ecsa_supported;
2952
2953 return 0;
2954 }
2955
2956
2957 /* Check if all the peers support eCSA */
wpas_p2p_go_clients_support_ecsa(struct wpa_supplicant * wpa_s)2958 static int wpas_p2p_go_clients_support_ecsa(struct wpa_supplicant *wpa_s)
2959 {
2960 int ecsa_support = 1;
2961
2962 ap_for_each_sta(wpa_s->ap_iface->bss[0], wpas_sta_check_ecsa,
2963 &ecsa_support);
2964
2965 return ecsa_support;
2966 }
2967
2968
2969 /**
2970 * Pick the best frequency to use from all the currently used frequencies.
2971 */
wpas_p2p_pick_best_used_freq(struct wpa_supplicant * wpa_s,struct wpa_used_freq_data * freqs,unsigned int num)2972 static int wpas_p2p_pick_best_used_freq(struct wpa_supplicant *wpa_s,
2973 struct wpa_used_freq_data *freqs,
2974 unsigned int num)
2975 {
2976 unsigned int i, c;
2977
2978 /* find a candidate freq that is supported by P2P */
2979 for (c = 0; c < num; c++)
2980 if (p2p_supported_freq(wpa_s->global->p2p, freqs[c].freq))
2981 break;
2982
2983 if (c == num)
2984 return 0;
2985
2986 /* once we have a candidate, try to find a 'better' one */
2987 for (i = c + 1; i < num; i++) {
2988 if (!p2p_supported_freq(wpa_s->global->p2p, freqs[i].freq))
2989 continue;
2990
2991 /*
2992 * 1. Infrastructure station interfaces have higher preference.
2993 * 2. P2P Clients have higher preference.
2994 * 3. All others.
2995 */
2996 if (freqs[i].flags & WPA_FREQ_USED_BY_INFRA_STATION) {
2997 c = i;
2998 break;
2999 }
3000
3001 if ((freqs[i].flags & WPA_FREQ_USED_BY_P2P_CLIENT))
3002 c = i;
3003 }
3004 return freqs[c].freq;
3005 }
3006
3007
wpas_invitation_process(void * ctx,const u8 * sa,const u8 * bssid,const u8 * go_dev_addr,const u8 * ssid,size_t ssid_len,int * go,u8 * group_bssid,int * force_freq,int persistent_group,const struct p2p_channels * channels,int dev_pw_id)3008 static u8 wpas_invitation_process(void *ctx, const u8 *sa, const u8 *bssid,
3009 const u8 *go_dev_addr, const u8 *ssid,
3010 size_t ssid_len, int *go, u8 *group_bssid,
3011 int *force_freq, int persistent_group,
3012 const struct p2p_channels *channels,
3013 int dev_pw_id)
3014 {
3015 struct wpa_supplicant *wpa_s = ctx;
3016 struct wpa_ssid *s;
3017 struct wpa_used_freq_data *freqs;
3018 struct wpa_supplicant *grp;
3019 int best_freq;
3020
3021 if (!persistent_group) {
3022 wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
3023 " to join an active group (SSID: %s)",
3024 MAC2STR(sa), wpa_ssid_txt(ssid, ssid_len));
3025 if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
3026 (os_memcmp(go_dev_addr, wpa_s->p2p_auth_invite, ETH_ALEN)
3027 == 0 ||
3028 os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0)) {
3029 wpa_printf(MSG_DEBUG, "P2P: Accept previously "
3030 "authorized invitation");
3031 goto accept_inv;
3032 }
3033
3034 #ifdef CONFIG_WPS_NFC
3035 if (dev_pw_id >= 0 && wpa_s->p2p_nfc_tag_enabled &&
3036 dev_pw_id == wpa_s->p2p_oob_dev_pw_id) {
3037 wpa_printf(MSG_DEBUG, "P2P: Accept invitation based on local enabled NFC Tag");
3038 wpa_s->p2p_wps_method = WPS_NFC;
3039 wpa_s->pending_join_wps_method = WPS_NFC;
3040 os_memcpy(wpa_s->pending_join_dev_addr,
3041 go_dev_addr, ETH_ALEN);
3042 os_memcpy(wpa_s->pending_join_iface_addr,
3043 bssid, ETH_ALEN);
3044 goto accept_inv;
3045 }
3046 #endif /* CONFIG_WPS_NFC */
3047
3048 /*
3049 * Do not accept the invitation automatically; notify user and
3050 * request approval.
3051 */
3052 return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
3053 }
3054
3055 grp = wpas_get_p2p_group(wpa_s, ssid, ssid_len, go);
3056 if (grp) {
3057 wpa_printf(MSG_DEBUG, "P2P: Accept invitation to already "
3058 "running persistent group");
3059 if (*go)
3060 os_memcpy(group_bssid, grp->own_addr, ETH_ALEN);
3061 goto accept_inv;
3062 }
3063
3064 if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
3065 os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0) {
3066 wpa_printf(MSG_DEBUG, "P2P: Accept previously initiated "
3067 "invitation to re-invoke a persistent group");
3068 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
3069 } else if (!wpa_s->conf->persistent_reconnect)
3070 return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
3071
3072 for (s = wpa_s->conf->ssid; s; s = s->next) {
3073 if (s->disabled == 2 &&
3074 os_memcmp(s->bssid, go_dev_addr, ETH_ALEN) == 0 &&
3075 s->ssid_len == ssid_len &&
3076 os_memcmp(ssid, s->ssid, ssid_len) == 0)
3077 break;
3078 }
3079
3080 if (!s) {
3081 wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
3082 " requested reinvocation of an unknown group",
3083 MAC2STR(sa));
3084 return P2P_SC_FAIL_UNKNOWN_GROUP;
3085 }
3086
3087 if (s->mode == WPAS_MODE_P2P_GO && !wpas_p2p_create_iface(wpa_s)) {
3088 *go = 1;
3089 if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
3090 wpa_printf(MSG_DEBUG, "P2P: The only available "
3091 "interface is already in use - reject "
3092 "invitation");
3093 return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
3094 }
3095 if (wpa_s->p2p_mgmt)
3096 os_memcpy(group_bssid, wpa_s->parent->own_addr,
3097 ETH_ALEN);
3098 else
3099 os_memcpy(group_bssid, wpa_s->own_addr, ETH_ALEN);
3100 } else if (s->mode == WPAS_MODE_P2P_GO) {
3101 *go = 1;
3102 if (wpas_p2p_add_group_interface(wpa_s, WPA_IF_P2P_GO) < 0)
3103 {
3104 wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
3105 "interface address for the group");
3106 return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
3107 }
3108 os_memcpy(group_bssid, wpa_s->pending_interface_addr,
3109 ETH_ALEN);
3110 }
3111
3112 accept_inv:
3113 wpas_p2p_set_own_freq_preference(wpa_s, 0);
3114
3115 best_freq = 0;
3116 freqs = os_calloc(wpa_s->num_multichan_concurrent,
3117 sizeof(struct wpa_used_freq_data));
3118 if (freqs) {
3119 int num_channels = wpa_s->num_multichan_concurrent;
3120 int num = wpas_p2p_valid_oper_freqs(wpa_s, freqs, num_channels);
3121 best_freq = wpas_p2p_pick_best_used_freq(wpa_s, freqs, num);
3122 os_free(freqs);
3123 }
3124
3125 /* Get one of the frequencies currently in use */
3126 if (best_freq > 0) {
3127 wpa_printf(MSG_DEBUG, "P2P: Trying to prefer a channel already used by one of the interfaces");
3128 wpas_p2p_set_own_freq_preference(wpa_s, best_freq);
3129
3130 if (wpa_s->num_multichan_concurrent < 2 ||
3131 wpas_p2p_num_unused_channels(wpa_s) < 1) {
3132 wpa_printf(MSG_DEBUG, "P2P: No extra channels available - trying to force channel to match a channel already used by one of the interfaces");
3133 *force_freq = best_freq;
3134 }
3135 }
3136
3137 if (*force_freq > 0 && wpa_s->num_multichan_concurrent > 1 &&
3138 wpas_p2p_num_unused_channels(wpa_s) > 0) {
3139 if (*go == 0) {
3140 /* We are the client */
3141 wpa_printf(MSG_DEBUG, "P2P: Peer was found to be "
3142 "running a GO but we are capable of MCC, "
3143 "figure out the best channel to use");
3144 *force_freq = 0;
3145 } else if (!freq_included(wpa_s, channels, *force_freq)) {
3146 /* We are the GO, and *force_freq is not in the
3147 * intersection */
3148 wpa_printf(MSG_DEBUG, "P2P: Forced GO freq %d MHz not "
3149 "in intersection but we are capable of MCC, "
3150 "figure out the best channel to use",
3151 *force_freq);
3152 *force_freq = 0;
3153 }
3154 }
3155
3156 return P2P_SC_SUCCESS;
3157 }
3158
3159
wpas_invitation_received(void * ctx,const u8 * sa,const u8 * bssid,const u8 * ssid,size_t ssid_len,const u8 * go_dev_addr,u8 status,int op_freq)3160 static void wpas_invitation_received(void *ctx, const u8 *sa, const u8 *bssid,
3161 const u8 *ssid, size_t ssid_len,
3162 const u8 *go_dev_addr, u8 status,
3163 int op_freq)
3164 {
3165 struct wpa_supplicant *wpa_s = ctx;
3166 struct wpa_ssid *s;
3167
3168 for (s = wpa_s->conf->ssid; s; s = s->next) {
3169 if (s->disabled == 2 &&
3170 s->ssid_len == ssid_len &&
3171 os_memcmp(ssid, s->ssid, ssid_len) == 0)
3172 break;
3173 }
3174
3175 if (status == P2P_SC_SUCCESS) {
3176 wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
3177 " was accepted; op_freq=%d MHz, SSID=%s",
3178 MAC2STR(sa), op_freq, wpa_ssid_txt(ssid, ssid_len));
3179 if (s) {
3180 int go = s->mode == WPAS_MODE_P2P_GO;
3181 if (go) {
3182 wpa_msg_global(wpa_s, MSG_INFO,
3183 P2P_EVENT_INVITATION_ACCEPTED
3184 "sa=" MACSTR
3185 " persistent=%d freq=%d",
3186 MAC2STR(sa), s->id, op_freq);
3187 } else {
3188 wpa_msg_global(wpa_s, MSG_INFO,
3189 P2P_EVENT_INVITATION_ACCEPTED
3190 "sa=" MACSTR
3191 " persistent=%d",
3192 MAC2STR(sa), s->id);
3193 }
3194 wpas_p2p_group_add_persistent(
3195 wpa_s, s, go, 0, op_freq, 0,
3196 wpa_s->conf->p2p_go_ht40,
3197 wpa_s->conf->p2p_go_vht,
3198 0,
3199 wpa_s->conf->p2p_go_he,
3200 wpa_s->conf->p2p_go_edmg, NULL,
3201 go ? P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE : 0,
3202 1);
3203 } else if (bssid) {
3204 wpa_s->user_initiated_pd = 0;
3205 wpa_msg_global(wpa_s, MSG_INFO,
3206 P2P_EVENT_INVITATION_ACCEPTED
3207 "sa=" MACSTR " go_dev_addr=" MACSTR
3208 " bssid=" MACSTR " unknown-network",
3209 MAC2STR(sa), MAC2STR(go_dev_addr),
3210 MAC2STR(bssid));
3211 wpas_p2p_join(wpa_s, bssid, go_dev_addr,
3212 wpa_s->p2p_wps_method, 0, op_freq,
3213 ssid, ssid_len);
3214 }
3215 return;
3216 }
3217
3218 if (status != P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
3219 wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
3220 " was rejected (status %u)", MAC2STR(sa), status);
3221 return;
3222 }
3223
3224 if (!s) {
3225 if (bssid) {
3226 wpa_msg_global(wpa_s, MSG_INFO,
3227 P2P_EVENT_INVITATION_RECEIVED
3228 "sa=" MACSTR " go_dev_addr=" MACSTR
3229 " bssid=" MACSTR " unknown-network",
3230 MAC2STR(sa), MAC2STR(go_dev_addr),
3231 MAC2STR(bssid));
3232 } else {
3233 wpa_msg_global(wpa_s, MSG_INFO,
3234 P2P_EVENT_INVITATION_RECEIVED
3235 "sa=" MACSTR " go_dev_addr=" MACSTR
3236 " unknown-network",
3237 MAC2STR(sa), MAC2STR(go_dev_addr));
3238 }
3239 wpas_notify_p2p_invitation_received(wpa_s, sa, go_dev_addr,
3240 bssid, 0, op_freq);
3241 return;
3242 }
3243
3244 if (s->mode == WPAS_MODE_P2P_GO && op_freq) {
3245 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
3246 "sa=" MACSTR " persistent=%d freq=%d",
3247 MAC2STR(sa), s->id, op_freq);
3248 } else {
3249 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
3250 "sa=" MACSTR " persistent=%d",
3251 MAC2STR(sa), s->id);
3252 }
3253 wpas_notify_p2p_invitation_received(wpa_s, sa, go_dev_addr, bssid,
3254 s->id, op_freq);
3255 }
3256
3257
wpas_remove_persistent_peer(struct wpa_supplicant * wpa_s,struct wpa_ssid * ssid,const u8 * peer,int inv)3258 static void wpas_remove_persistent_peer(struct wpa_supplicant *wpa_s,
3259 struct wpa_ssid *ssid,
3260 const u8 *peer, int inv)
3261 {
3262 size_t i;
3263 struct wpa_supplicant *p2p_wpa_s = wpa_s->global->p2p_init_wpa_s;
3264
3265 if (ssid == NULL)
3266 return;
3267
3268 for (i = 0; ssid->p2p_client_list && i < ssid->num_p2p_clients; i++) {
3269 if (os_memcmp(ssid->p2p_client_list + i * 2 * ETH_ALEN, peer,
3270 ETH_ALEN) == 0)
3271 break;
3272 }
3273 if (i >= ssid->num_p2p_clients || !ssid->p2p_client_list) {
3274 if (ssid->mode != WPAS_MODE_P2P_GO &&
3275 os_memcmp(ssid->bssid, peer, ETH_ALEN) == 0) {
3276 wpa_printf(MSG_DEBUG, "P2P: Remove persistent group %d "
3277 "due to invitation result", ssid->id);
3278 wpas_notify_network_removed(wpa_s, ssid);
3279 wpa_config_remove_network(wpa_s->conf, ssid->id);
3280 return;
3281 }
3282 return; /* Peer not found in client list */
3283 }
3284
3285 wpa_printf(MSG_DEBUG, "P2P: Remove peer " MACSTR " from persistent "
3286 "group %d client list%s",
3287 MAC2STR(peer), ssid->id,
3288 inv ? " due to invitation result" : "");
3289 os_memmove(ssid->p2p_client_list + i * 2 * ETH_ALEN,
3290 ssid->p2p_client_list + (i + 1) * 2 * ETH_ALEN,
3291 (ssid->num_p2p_clients - i - 1) * 2 * ETH_ALEN);
3292 ssid->num_p2p_clients--;
3293 if (p2p_wpa_s->conf->update_config &&
3294 wpa_config_write(p2p_wpa_s->confname, p2p_wpa_s->conf))
3295 wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
3296 }
3297
3298
wpas_remove_persistent_client(struct wpa_supplicant * wpa_s,const u8 * peer)3299 static void wpas_remove_persistent_client(struct wpa_supplicant *wpa_s,
3300 const u8 *peer)
3301 {
3302 struct wpa_ssid *ssid;
3303
3304 wpa_s = wpa_s->global->p2p_invite_group;
3305 if (wpa_s == NULL)
3306 return; /* No known invitation group */
3307 ssid = wpa_s->current_ssid;
3308 if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
3309 !ssid->p2p_persistent_group)
3310 return; /* Not operating as a GO in persistent group */
3311 ssid = wpas_p2p_get_persistent(wpa_s->p2pdev, peer,
3312 ssid->ssid, ssid->ssid_len);
3313 wpas_remove_persistent_peer(wpa_s, ssid, peer, 1);
3314 }
3315
3316
wpas_invitation_result(void * ctx,int status,const u8 * bssid,const struct p2p_channels * channels,const u8 * peer,int neg_freq,int peer_oper_freq)3317 static void wpas_invitation_result(void *ctx, int status, const u8 *bssid,
3318 const struct p2p_channels *channels,
3319 const u8 *peer, int neg_freq,
3320 int peer_oper_freq)
3321 {
3322 struct wpa_supplicant *wpa_s = ctx;
3323 struct wpa_ssid *ssid;
3324 int freq;
3325
3326 if (bssid) {
3327 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
3328 "status=%d " MACSTR,
3329 status, MAC2STR(bssid));
3330 } else {
3331 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
3332 "status=%d ", status);
3333 }
3334 wpas_notify_p2p_invitation_result(wpa_s, status, bssid);
3335
3336 wpa_printf(MSG_DEBUG, "P2P: Invitation result - status=%d peer=" MACSTR,
3337 status, MAC2STR(peer));
3338 if (wpa_s->pending_invite_ssid_id == -1) {
3339 struct wpa_supplicant *group_if =
3340 wpa_s->global->p2p_invite_group;
3341
3342 if (status == P2P_SC_FAIL_UNKNOWN_GROUP)
3343 wpas_remove_persistent_client(wpa_s, peer);
3344
3345 /*
3346 * Invitation to an active group. If this is successful and we
3347 * are the GO, set the client wait to postpone some concurrent
3348 * operations and to allow provisioning and connection to happen
3349 * more quickly.
3350 */
3351 if (status == P2P_SC_SUCCESS &&
3352 group_if && group_if->current_ssid &&
3353 group_if->current_ssid->mode == WPAS_MODE_P2P_GO) {
3354 os_get_reltime(&wpa_s->global->p2p_go_wait_client);
3355 #ifdef CONFIG_TESTING_OPTIONS
3356 if (group_if->p2p_go_csa_on_inv) {
3357 wpa_printf(MSG_DEBUG,
3358 "Testing: force P2P GO CSA after invitation");
3359 eloop_cancel_timeout(
3360 wpas_p2p_reconsider_moving_go,
3361 wpa_s, NULL);
3362 eloop_register_timeout(
3363 0, 50000,
3364 wpas_p2p_reconsider_moving_go,
3365 wpa_s, NULL);
3366 }
3367 #endif /* CONFIG_TESTING_OPTIONS */
3368 }
3369 return;
3370 }
3371
3372 if (status == P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
3373 wpa_printf(MSG_DEBUG, "P2P: Waiting for peer to start another "
3374 "invitation exchange to indicate readiness for "
3375 "re-invocation");
3376 }
3377
3378 if (status != P2P_SC_SUCCESS) {
3379 if (status == P2P_SC_FAIL_UNKNOWN_GROUP) {
3380 ssid = wpa_config_get_network(
3381 wpa_s->conf, wpa_s->pending_invite_ssid_id);
3382 wpas_remove_persistent_peer(wpa_s, ssid, peer, 1);
3383 }
3384 wpas_p2p_remove_pending_group_interface(wpa_s);
3385 return;
3386 }
3387
3388 ssid = wpa_config_get_network(wpa_s->conf,
3389 wpa_s->pending_invite_ssid_id);
3390 if (ssid == NULL) {
3391 wpa_printf(MSG_ERROR, "P2P: Could not find persistent group "
3392 "data matching with invitation");
3393 return;
3394 }
3395
3396 /*
3397 * The peer could have missed our ctrl::ack frame for Invitation
3398 * Response and continue retransmitting the frame. To reduce the
3399 * likelihood of the peer not getting successful TX status for the
3400 * Invitation Response frame, wait a short time here before starting
3401 * the persistent group so that we will remain on the current channel to
3402 * acknowledge any possible retransmission from the peer.
3403 */
3404 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: 50 ms wait on current channel before "
3405 "starting persistent group");
3406 os_sleep(0, 50000);
3407
3408 if (neg_freq > 0 && ssid->mode == WPAS_MODE_P2P_GO &&
3409 freq_included(wpa_s, channels, neg_freq))
3410 freq = neg_freq;
3411 else if (peer_oper_freq > 0 && ssid->mode != WPAS_MODE_P2P_GO &&
3412 freq_included(wpa_s, channels, peer_oper_freq))
3413 freq = peer_oper_freq;
3414 else
3415 freq = 0;
3416
3417 wpa_printf(MSG_DEBUG, "P2P: Persistent group invitation success - op_freq=%d MHz SSID=%s",
3418 freq, wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
3419 wpas_p2p_group_add_persistent(wpa_s, ssid,
3420 ssid->mode == WPAS_MODE_P2P_GO,
3421 wpa_s->p2p_persistent_go_freq,
3422 freq,
3423 wpa_s->p2p_go_vht_center_freq2,
3424 wpa_s->p2p_go_ht40, wpa_s->p2p_go_vht,
3425 wpa_s->p2p_go_max_oper_chwidth,
3426 wpa_s->p2p_go_he,
3427 wpa_s->p2p_go_edmg,
3428 channels,
3429 ssid->mode == WPAS_MODE_P2P_GO ?
3430 P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE :
3431 0, 1);
3432 }
3433
3434
wpas_p2p_disallowed_freq(struct wpa_global * global,unsigned int freq)3435 static int wpas_p2p_disallowed_freq(struct wpa_global *global,
3436 unsigned int freq)
3437 {
3438 if (freq_range_list_includes(&global->p2p_go_avoid_freq, freq))
3439 return 1;
3440 return freq_range_list_includes(&global->p2p_disallow_freq, freq);
3441 }
3442
3443
wpas_p2p_add_chan(struct p2p_reg_class * reg,u8 chan)3444 static void wpas_p2p_add_chan(struct p2p_reg_class *reg, u8 chan)
3445 {
3446 reg->channel[reg->channels] = chan;
3447 reg->channels++;
3448 }
3449
3450
wpas_p2p_default_channels(struct wpa_supplicant * wpa_s,struct p2p_channels * chan,struct p2p_channels * cli_chan)3451 static int wpas_p2p_default_channels(struct wpa_supplicant *wpa_s,
3452 struct p2p_channels *chan,
3453 struct p2p_channels *cli_chan)
3454 {
3455 int i, cla = 0;
3456
3457 wpa_s->global->p2p_24ghz_social_channels = 1;
3458
3459 os_memset(cli_chan, 0, sizeof(*cli_chan));
3460
3461 wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for 2.4 GHz "
3462 "band");
3463
3464 /* Operating class 81 - 2.4 GHz band channels 1..13 */
3465 chan->reg_class[cla].reg_class = 81;
3466 chan->reg_class[cla].channels = 0;
3467 for (i = 0; i < 11; i++) {
3468 if (!wpas_p2p_disallowed_freq(wpa_s->global, 2412 + i * 5))
3469 wpas_p2p_add_chan(&chan->reg_class[cla], i + 1);
3470 }
3471 if (chan->reg_class[cla].channels)
3472 cla++;
3473
3474 wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for lower 5 GHz "
3475 "band");
3476
3477 /* Operating class 115 - 5 GHz, channels 36-48 */
3478 chan->reg_class[cla].reg_class = 115;
3479 chan->reg_class[cla].channels = 0;
3480 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 36 * 5))
3481 wpas_p2p_add_chan(&chan->reg_class[cla], 36);
3482 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 40 * 5))
3483 wpas_p2p_add_chan(&chan->reg_class[cla], 40);
3484 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 44 * 5))
3485 wpas_p2p_add_chan(&chan->reg_class[cla], 44);
3486 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 48 * 5))
3487 wpas_p2p_add_chan(&chan->reg_class[cla], 48);
3488 if (chan->reg_class[cla].channels)
3489 cla++;
3490
3491 wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for higher 5 GHz "
3492 "band");
3493
3494 /* Operating class 124 - 5 GHz, channels 149,153,157,161 */
3495 chan->reg_class[cla].reg_class = 124;
3496 chan->reg_class[cla].channels = 0;
3497 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 149 * 5))
3498 wpas_p2p_add_chan(&chan->reg_class[cla], 149);
3499 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 153 * 5))
3500 wpas_p2p_add_chan(&chan->reg_class[cla], 153);
3501 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 156 * 5))
3502 wpas_p2p_add_chan(&chan->reg_class[cla], 157);
3503 if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 161 * 5))
3504 wpas_p2p_add_chan(&chan->reg_class[cla], 161);
3505 if (chan->reg_class[cla].channels)
3506 cla++;
3507
3508 chan->reg_classes = cla;
3509 return 0;
3510 }
3511
3512
has_channel(struct wpa_global * global,struct hostapd_hw_modes * mode,u8 chan,int * flags)3513 static int has_channel(struct wpa_global *global,
3514 struct hostapd_hw_modes *mode, u8 chan, int *flags)
3515 {
3516 int i;
3517 unsigned int freq;
3518
3519 freq = (mode->mode == HOSTAPD_MODE_IEEE80211A ? 5000 : 2407) +
3520 chan * 5;
3521 if (wpas_p2p_disallowed_freq(global, freq))
3522 return NOT_ALLOWED;
3523
3524 for (i = 0; i < mode->num_channels; i++) {
3525 if (mode->channels[i].chan == chan) {
3526 if (flags)
3527 *flags = mode->channels[i].flag;
3528 if (mode->channels[i].flag &
3529 (HOSTAPD_CHAN_DISABLED |
3530 HOSTAPD_CHAN_RADAR))
3531 return NOT_ALLOWED;
3532 if (mode->channels[i].flag & HOSTAPD_CHAN_NO_IR)
3533 return NO_IR;
3534 return ALLOWED;
3535 }
3536 }
3537
3538 return NOT_ALLOWED;
3539 }
3540
3541
wpas_p2p_get_center_80mhz(struct wpa_supplicant * wpa_s,struct hostapd_hw_modes * mode,u8 channel)3542 static int wpas_p2p_get_center_80mhz(struct wpa_supplicant *wpa_s,
3543 struct hostapd_hw_modes *mode,
3544 u8 channel)
3545 {
3546 u8 center_channels[] = { 42, 58, 106, 122, 138, 155 };
3547 size_t i;
3548
3549 if (mode->mode != HOSTAPD_MODE_IEEE80211A)
3550 return 0;
3551
3552 for (i = 0; i < ARRAY_SIZE(center_channels); i++)
3553 /*
3554 * In 80 MHz, the bandwidth "spans" 12 channels (e.g., 36-48),
3555 * so the center channel is 6 channels away from the start/end.
3556 */
3557 if (channel >= center_channels[i] - 6 &&
3558 channel <= center_channels[i] + 6)
3559 return center_channels[i];
3560
3561 return 0;
3562 }
3563
3564
wpas_p2p_verify_80mhz(struct wpa_supplicant * wpa_s,struct hostapd_hw_modes * mode,u8 channel,u8 bw)3565 static enum chan_allowed wpas_p2p_verify_80mhz(struct wpa_supplicant *wpa_s,
3566 struct hostapd_hw_modes *mode,
3567 u8 channel, u8 bw)
3568 {
3569 u8 center_chan;
3570 int i, flags;
3571 enum chan_allowed res, ret = ALLOWED;
3572
3573 center_chan = wpas_p2p_get_center_80mhz(wpa_s, mode, channel);
3574 if (!center_chan)
3575 return NOT_ALLOWED;
3576 if (center_chan >= 58 && center_chan <= 138)
3577 return NOT_ALLOWED; /* Do not allow DFS channels for P2P */
3578
3579 /* check all the channels are available */
3580 for (i = 0; i < 4; i++) {
3581 int adj_chan = center_chan - 6 + i * 4;
3582
3583 res = has_channel(wpa_s->global, mode, adj_chan, &flags);
3584 if (res == NOT_ALLOWED)
3585 return NOT_ALLOWED;
3586 if (res == NO_IR)
3587 ret = NO_IR;
3588
3589 if (i == 0 && !(flags & HOSTAPD_CHAN_VHT_10_70))
3590 return NOT_ALLOWED;
3591 if (i == 1 && !(flags & HOSTAPD_CHAN_VHT_30_50))
3592 return NOT_ALLOWED;
3593 if (i == 2 && !(flags & HOSTAPD_CHAN_VHT_50_30))
3594 return NOT_ALLOWED;
3595 if (i == 3 && !(flags & HOSTAPD_CHAN_VHT_70_10))
3596 return NOT_ALLOWED;
3597 }
3598
3599 return ret;
3600 }
3601
3602
wpas_p2p_get_center_160mhz(struct wpa_supplicant * wpa_s,struct hostapd_hw_modes * mode,u8 channel)3603 static int wpas_p2p_get_center_160mhz(struct wpa_supplicant *wpa_s,
3604 struct hostapd_hw_modes *mode,
3605 u8 channel)
3606 {
3607 u8 center_channels[] = { 50, 114 };
3608 unsigned int i;
3609
3610 if (mode->mode != HOSTAPD_MODE_IEEE80211A)
3611 return 0;
3612
3613 for (i = 0; i < ARRAY_SIZE(center_channels); i++)
3614 /*
3615 * In 160 MHz, the bandwidth "spans" 28 channels (e.g., 36-64),
3616 * so the center channel is 14 channels away from the start/end.
3617 */
3618 if (channel >= center_channels[i] - 14 &&
3619 channel <= center_channels[i] + 14)
3620 return center_channels[i];
3621
3622 return 0;
3623 }
3624
3625
wpas_p2p_verify_160mhz(struct wpa_supplicant * wpa_s,struct hostapd_hw_modes * mode,u8 channel,u8 bw)3626 static enum chan_allowed wpas_p2p_verify_160mhz(struct wpa_supplicant *wpa_s,
3627 struct hostapd_hw_modes *mode,
3628 u8 channel, u8 bw)
3629 {
3630 u8 center_chan;
3631 int i, flags;
3632 enum chan_allowed res, ret = ALLOWED;
3633
3634 center_chan = wpas_p2p_get_center_160mhz(wpa_s, mode, channel);
3635 if (!center_chan)
3636 return NOT_ALLOWED;
3637 /* VHT 160 MHz uses DFS channels in most countries. */
3638
3639 /* Check all the channels are available */
3640 for (i = 0; i < 8; i++) {
3641 int adj_chan = center_chan - 14 + i * 4;
3642
3643 res = has_channel(wpa_s->global, mode, adj_chan, &flags);
3644 if (res == NOT_ALLOWED)
3645 return NOT_ALLOWED;
3646
3647 if (res == NO_IR)
3648 ret = NO_IR;
3649
3650 if (i == 0 && !(flags & HOSTAPD_CHAN_VHT_10_150))
3651 return NOT_ALLOWED;
3652 if (i == 1 && !(flags & HOSTAPD_CHAN_VHT_30_130))
3653 return NOT_ALLOWED;
3654 if (i == 2 && !(flags & HOSTAPD_CHAN_VHT_50_110))
3655 return NOT_ALLOWED;
3656 if (i == 3 && !(flags & HOSTAPD_CHAN_VHT_70_90))
3657 return NOT_ALLOWED;
3658 if (i == 4 && !(flags & HOSTAPD_CHAN_VHT_90_70))
3659 return NOT_ALLOWED;
3660 if (i == 5 && !(flags & HOSTAPD_CHAN_VHT_110_50))
3661 return NOT_ALLOWED;
3662 if (i == 6 && !(flags & HOSTAPD_CHAN_VHT_130_30))
3663 return NOT_ALLOWED;
3664 if (i == 7 && !(flags & HOSTAPD_CHAN_VHT_150_10))
3665 return NOT_ALLOWED;
3666 }
3667
3668 return ret;
3669 }
3670
3671
wpas_p2p_verify_edmg(struct wpa_supplicant * wpa_s,struct hostapd_hw_modes * mode,u8 channel)3672 static enum chan_allowed wpas_p2p_verify_edmg(struct wpa_supplicant *wpa_s,
3673 struct hostapd_hw_modes *mode,
3674 u8 channel)
3675 {
3676 struct ieee80211_edmg_config edmg;
3677
3678 hostapd_encode_edmg_chan(1, channel, 0, &edmg);
3679 if (edmg.channels && ieee802_edmg_is_allowed(mode->edmg, edmg))
3680 return ALLOWED;
3681
3682 return NOT_ALLOWED;
3683 }
3684
3685
wpas_p2p_verify_channel(struct wpa_supplicant * wpa_s,struct hostapd_hw_modes * mode,u8 channel,u8 bw)3686 static enum chan_allowed wpas_p2p_verify_channel(struct wpa_supplicant *wpa_s,
3687 struct hostapd_hw_modes *mode,
3688 u8 channel, u8 bw)
3689 {
3690 int flag = 0;
3691 enum chan_allowed res, res2;
3692
3693 res2 = res = has_channel(wpa_s->global, mode, channel, &flag);
3694 if (bw == BW40MINUS) {
3695 if (!(flag & HOSTAPD_CHAN_HT40MINUS))
3696 return NOT_ALLOWED;
3697 res2 = has_channel(wpa_s->global, mode, channel - 4, NULL);
3698 } else if (bw == BW40PLUS) {
3699 if (!(flag & HOSTAPD_CHAN_HT40PLUS))
3700 return NOT_ALLOWED;
3701 res2 = has_channel(wpa_s->global, mode, channel + 4, NULL);
3702 } else if (bw == BW80) {
3703 res2 = wpas_p2p_verify_80mhz(wpa_s, mode, channel, bw);
3704 } else if (bw == BW160) {
3705 res2 = wpas_p2p_verify_160mhz(wpa_s, mode, channel, bw);
3706 } else if (bw == BW4320 || bw == BW6480 || bw == BW8640) {
3707 return wpas_p2p_verify_edmg(wpa_s, mode, channel);
3708 }
3709
3710 if (res == NOT_ALLOWED || res2 == NOT_ALLOWED)
3711 return NOT_ALLOWED;
3712 if (res == NO_IR || res2 == NO_IR)
3713 return NO_IR;
3714 return res;
3715 }
3716
3717
wpas_p2p_setup_channels(struct wpa_supplicant * wpa_s,struct p2p_channels * chan,struct p2p_channels * cli_chan)3718 static int wpas_p2p_setup_channels(struct wpa_supplicant *wpa_s,
3719 struct p2p_channels *chan,
3720 struct p2p_channels *cli_chan)
3721 {
3722 struct hostapd_hw_modes *mode;
3723 int cla, op, cli_cla;
3724
3725 if (wpa_s->hw.modes == NULL) {
3726 wpa_printf(MSG_DEBUG, "P2P: Driver did not support fetching "
3727 "of all supported channels; assume dualband "
3728 "support");
3729 return wpas_p2p_default_channels(wpa_s, chan, cli_chan);
3730 }
3731
3732 cla = cli_cla = 0;
3733
3734 for (op = 0; global_op_class[op].op_class; op++) {
3735 const struct oper_class_map *o = &global_op_class[op];
3736 u8 ch;
3737 struct p2p_reg_class *reg = NULL, *cli_reg = NULL;
3738
3739 if (o->p2p == NO_P2P_SUPP)
3740 continue;
3741
3742 mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, o->mode,
3743 is_6ghz_op_class(o->op_class));
3744 if (mode == NULL)
3745 continue;
3746 if (mode->mode == HOSTAPD_MODE_IEEE80211G)
3747 wpa_s->global->p2p_24ghz_social_channels = 1;
3748 for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
3749 enum chan_allowed res;
3750 res = wpas_p2p_verify_channel(wpa_s, mode, ch, o->bw);
3751 if (res == ALLOWED) {
3752 if (reg == NULL) {
3753 if (cla == P2P_MAX_REG_CLASSES)
3754 continue;
3755 wpa_printf(MSG_DEBUG, "P2P: Add operating class %u",
3756 o->op_class);
3757 reg = &chan->reg_class[cla];
3758 cla++;
3759 reg->reg_class = o->op_class;
3760 }
3761 if (reg->channels == P2P_MAX_REG_CLASS_CHANNELS)
3762 continue;
3763 reg->channel[reg->channels] = ch;
3764 reg->channels++;
3765 } else if (res == NO_IR &&
3766 wpa_s->conf->p2p_add_cli_chan) {
3767 if (cli_reg == NULL) {
3768 if (cli_cla == P2P_MAX_REG_CLASSES)
3769 continue;
3770 wpa_printf(MSG_DEBUG, "P2P: Add operating class %u (client only)",
3771 o->op_class);
3772 cli_reg = &cli_chan->reg_class[cli_cla];
3773 cli_cla++;
3774 cli_reg->reg_class = o->op_class;
3775 }
3776 if (cli_reg->channels ==
3777 P2P_MAX_REG_CLASS_CHANNELS)
3778 continue;
3779 cli_reg->channel[cli_reg->channels] = ch;
3780 cli_reg->channels++;
3781 }
3782 }
3783 if (reg) {
3784 wpa_hexdump(MSG_DEBUG, "P2P: Channels",
3785 reg->channel, reg->channels);
3786 }
3787 if (cli_reg) {
3788 wpa_hexdump(MSG_DEBUG, "P2P: Channels (client only)",
3789 cli_reg->channel, cli_reg->channels);
3790 }
3791 }
3792
3793 chan->reg_classes = cla;
3794 cli_chan->reg_classes = cli_cla;
3795
3796 return 0;
3797 }
3798
3799
wpas_p2p_get_ht40_mode(struct wpa_supplicant * wpa_s,struct hostapd_hw_modes * mode,u8 channel)3800 int wpas_p2p_get_ht40_mode(struct wpa_supplicant *wpa_s,
3801 struct hostapd_hw_modes *mode, u8 channel)
3802 {
3803 int op;
3804 enum chan_allowed ret;
3805
3806 for (op = 0; global_op_class[op].op_class; op++) {
3807 const struct oper_class_map *o = &global_op_class[op];
3808 u8 ch;
3809
3810 if (o->p2p == NO_P2P_SUPP)
3811 continue;
3812
3813 for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
3814 if (o->mode != HOSTAPD_MODE_IEEE80211A ||
3815 (o->bw != BW40PLUS && o->bw != BW40MINUS) ||
3816 ch != channel)
3817 continue;
3818 ret = wpas_p2p_verify_channel(wpa_s, mode, ch, o->bw);
3819 if (ret == ALLOWED)
3820 return (o->bw == BW40MINUS) ? -1 : 1;
3821 }
3822 }
3823 return 0;
3824 }
3825
3826
wpas_p2p_get_vht80_center(struct wpa_supplicant * wpa_s,struct hostapd_hw_modes * mode,u8 channel)3827 int wpas_p2p_get_vht80_center(struct wpa_supplicant *wpa_s,
3828 struct hostapd_hw_modes *mode, u8 channel)
3829 {
3830 if (!wpas_p2p_verify_channel(wpa_s, mode, channel, BW80))
3831 return 0;
3832
3833 return wpas_p2p_get_center_80mhz(wpa_s, mode, channel);
3834 }
3835
3836
wpas_p2p_get_vht160_center(struct wpa_supplicant * wpa_s,struct hostapd_hw_modes * mode,u8 channel)3837 int wpas_p2p_get_vht160_center(struct wpa_supplicant *wpa_s,
3838 struct hostapd_hw_modes *mode, u8 channel)
3839 {
3840 if (!wpas_p2p_verify_channel(wpa_s, mode, channel, BW160))
3841 return 0;
3842 return wpas_p2p_get_center_160mhz(wpa_s, mode, channel);
3843 }
3844
3845
wpas_get_noa(void * ctx,const u8 * interface_addr,u8 * buf,size_t buf_len)3846 static int wpas_get_noa(void *ctx, const u8 *interface_addr, u8 *buf,
3847 size_t buf_len)
3848 {
3849 struct wpa_supplicant *wpa_s = ctx;
3850
3851 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
3852 if (os_memcmp(wpa_s->own_addr, interface_addr, ETH_ALEN) == 0)
3853 break;
3854 }
3855 if (wpa_s == NULL)
3856 return -1;
3857
3858 return wpa_drv_get_noa(wpa_s, buf, buf_len);
3859 }
3860
3861
wpas_get_p2p_go_iface(struct wpa_supplicant * wpa_s,const u8 * ssid,size_t ssid_len)3862 struct wpa_supplicant * wpas_get_p2p_go_iface(struct wpa_supplicant *wpa_s,
3863 const u8 *ssid, size_t ssid_len)
3864 {
3865 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
3866 struct wpa_ssid *s = wpa_s->current_ssid;
3867 if (s == NULL)
3868 continue;
3869 if (s->mode != WPAS_MODE_P2P_GO &&
3870 s->mode != WPAS_MODE_AP &&
3871 s->mode != WPAS_MODE_P2P_GROUP_FORMATION)
3872 continue;
3873 if (s->ssid_len != ssid_len ||
3874 os_memcmp(ssid, s->ssid, ssid_len) != 0)
3875 continue;
3876 return wpa_s;
3877 }
3878
3879 return NULL;
3880
3881 }
3882
3883
wpas_get_p2p_client_iface(struct wpa_supplicant * wpa_s,const u8 * peer_dev_addr)3884 struct wpa_supplicant * wpas_get_p2p_client_iface(struct wpa_supplicant *wpa_s,
3885 const u8 *peer_dev_addr)
3886 {
3887 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
3888 struct wpa_ssid *ssid = wpa_s->current_ssid;
3889 if (ssid && (ssid->mode != WPAS_MODE_INFRA || !ssid->p2p_group))
3890 continue;
3891 if (os_memcmp(wpa_s->go_dev_addr, peer_dev_addr, ETH_ALEN) == 0)
3892 return wpa_s;
3893 }
3894
3895 return NULL;
3896 }
3897
3898
wpas_go_connected(void * ctx,const u8 * dev_addr)3899 static int wpas_go_connected(void *ctx, const u8 *dev_addr)
3900 {
3901 struct wpa_supplicant *wpa_s = ctx;
3902
3903 return wpas_get_p2p_client_iface(wpa_s, dev_addr) != NULL;
3904 }
3905
3906
wpas_is_concurrent_session_active(void * ctx)3907 static int wpas_is_concurrent_session_active(void *ctx)
3908 {
3909 struct wpa_supplicant *wpa_s = ctx;
3910 struct wpa_supplicant *ifs;
3911
3912 for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
3913 if (ifs == wpa_s)
3914 continue;
3915 if (ifs->wpa_state > WPA_ASSOCIATED)
3916 return 1;
3917 }
3918 return 0;
3919 }
3920
3921
wpas_p2p_debug_print(void * ctx,int level,const char * msg)3922 static void wpas_p2p_debug_print(void *ctx, int level, const char *msg)
3923 {
3924 struct wpa_supplicant *wpa_s = ctx;
3925 wpa_msg_global(wpa_s, level, "P2P: %s", msg);
3926 }
3927
3928
wpas_p2p_add_p2pdev_interface(struct wpa_supplicant * wpa_s,const char * conf_p2p_dev)3929 int wpas_p2p_add_p2pdev_interface(struct wpa_supplicant *wpa_s,
3930 const char *conf_p2p_dev)
3931 {
3932 struct wpa_interface iface;
3933 struct wpa_supplicant *p2pdev_wpa_s;
3934 char ifname[100];
3935 char force_name[100];
3936 int ret;
3937
3938 ret = os_snprintf(ifname, sizeof(ifname), P2P_MGMT_DEVICE_PREFIX "%s",
3939 wpa_s->ifname);
3940 if (os_snprintf_error(sizeof(ifname), ret))
3941 return -1;
3942 force_name[0] = '\0';
3943 wpa_s->pending_interface_type = WPA_IF_P2P_DEVICE;
3944 ret = wpa_drv_if_add(wpa_s, WPA_IF_P2P_DEVICE, ifname, NULL, NULL,
3945 force_name, wpa_s->pending_interface_addr, NULL);
3946 if (ret < 0) {
3947 wpa_printf(MSG_DEBUG, "P2P: Failed to create P2P Device interface");
3948 return ret;
3949 }
3950 os_strlcpy(wpa_s->pending_interface_name, ifname,
3951 sizeof(wpa_s->pending_interface_name));
3952
3953 os_memset(&iface, 0, sizeof(iface));
3954 iface.p2p_mgmt = 1;
3955 iface.ifname = wpa_s->pending_interface_name;
3956 iface.driver = wpa_s->driver->name;
3957 iface.driver_param = wpa_s->conf->driver_param;
3958
3959 /*
3960 * If a P2P Device configuration file was given, use it as the interface
3961 * configuration file (instead of using parent's configuration file.
3962 */
3963 if (conf_p2p_dev) {
3964 iface.confname = conf_p2p_dev;
3965 iface.ctrl_interface = NULL;
3966 } else {
3967 iface.confname = wpa_s->confname;
3968 iface.ctrl_interface = wpa_s->conf->ctrl_interface;
3969 }
3970
3971 p2pdev_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface, wpa_s);
3972 if (!p2pdev_wpa_s) {
3973 wpa_printf(MSG_DEBUG, "P2P: Failed to add P2P Device interface");
3974 return -1;
3975 }
3976
3977 p2pdev_wpa_s->p2pdev = p2pdev_wpa_s;
3978 wpa_s->pending_interface_name[0] = '\0';
3979 return 0;
3980 }
3981
3982
wpas_presence_resp(void * ctx,const u8 * src,u8 status,const u8 * noa,size_t noa_len)3983 static void wpas_presence_resp(void *ctx, const u8 *src, u8 status,
3984 const u8 *noa, size_t noa_len)
3985 {
3986 struct wpa_supplicant *wpa_s, *intf = ctx;
3987 char hex[100];
3988
3989 for (wpa_s = intf->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
3990 if (wpa_s->waiting_presence_resp)
3991 break;
3992 }
3993 if (!wpa_s) {
3994 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No group interface was waiting for presence response");
3995 return;
3996 }
3997 wpa_s->waiting_presence_resp = 0;
3998
3999 wpa_snprintf_hex(hex, sizeof(hex), noa, noa_len);
4000 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PRESENCE_RESPONSE "src=" MACSTR
4001 " status=%u noa=%s", MAC2STR(src), status, hex);
4002 }
4003
4004
wpas_get_persistent_group(void * ctx,const u8 * addr,const u8 * ssid,size_t ssid_len,u8 * go_dev_addr,u8 * ret_ssid,size_t * ret_ssid_len,u8 * intended_iface_addr)4005 static int wpas_get_persistent_group(void *ctx, const u8 *addr, const u8 *ssid,
4006 size_t ssid_len, u8 *go_dev_addr,
4007 u8 *ret_ssid, size_t *ret_ssid_len,
4008 u8 *intended_iface_addr)
4009 {
4010 struct wpa_supplicant *wpa_s = ctx;
4011 struct wpa_ssid *s;
4012
4013 s = wpas_p2p_get_persistent(wpa_s, addr, ssid, ssid_len);
4014 if (s) {
4015 os_memcpy(ret_ssid, s->ssid, s->ssid_len);
4016 *ret_ssid_len = s->ssid_len;
4017 os_memcpy(go_dev_addr, s->bssid, ETH_ALEN);
4018
4019 if (s->mode != WPAS_MODE_P2P_GO) {
4020 os_memset(intended_iface_addr, 0, ETH_ALEN);
4021 } else if (wpas_p2p_create_iface(wpa_s)) {
4022 if (wpas_p2p_add_group_interface(wpa_s, WPA_IF_P2P_GO))
4023 return 0;
4024
4025 os_memcpy(intended_iface_addr,
4026 wpa_s->pending_interface_addr, ETH_ALEN);
4027 } else {
4028 os_memcpy(intended_iface_addr, wpa_s->own_addr,
4029 ETH_ALEN);
4030 }
4031 return 1;
4032 }
4033
4034 return 0;
4035 }
4036
4037
wpas_get_go_info(void * ctx,u8 * intended_addr,u8 * ssid,size_t * ssid_len,int * group_iface,unsigned int * freq)4038 static int wpas_get_go_info(void *ctx, u8 *intended_addr,
4039 u8 *ssid, size_t *ssid_len, int *group_iface,
4040 unsigned int *freq)
4041 {
4042 struct wpa_supplicant *wpa_s = ctx;
4043 struct wpa_supplicant *go;
4044 struct wpa_ssid *s;
4045
4046 /*
4047 * group_iface will be set to 1 only if a dedicated interface for P2P
4048 * role is required. First, we try to reuse an active GO. However,
4049 * if it is not present, we will try to reactivate an existing
4050 * persistent group and set group_iface to 1, so the caller will know
4051 * that the pending interface should be used.
4052 */
4053 *group_iface = 0;
4054
4055 if (freq)
4056 *freq = 0;
4057
4058 go = wpas_p2p_get_go_group(wpa_s);
4059 if (!go) {
4060 s = wpas_p2p_get_persistent_go(wpa_s);
4061 *group_iface = wpas_p2p_create_iface(wpa_s);
4062 if (s)
4063 os_memcpy(intended_addr, s->bssid, ETH_ALEN);
4064 else
4065 return 0;
4066 } else {
4067 s = go->current_ssid;
4068 os_memcpy(intended_addr, go->own_addr, ETH_ALEN);
4069 if (freq)
4070 *freq = go->assoc_freq;
4071 }
4072
4073 os_memcpy(ssid, s->ssid, s->ssid_len);
4074 *ssid_len = s->ssid_len;
4075
4076 return 1;
4077 }
4078
4079
wpas_remove_stale_groups(void * ctx,const u8 * peer,const u8 * go,const u8 * ssid,size_t ssid_len)4080 static int wpas_remove_stale_groups(void *ctx, const u8 *peer, const u8 *go,
4081 const u8 *ssid, size_t ssid_len)
4082 {
4083 struct wpa_supplicant *wpa_s = ctx;
4084 struct wpa_ssid *s;
4085 int save_config = 0;
4086 size_t i;
4087
4088 /* Start with our first choice of Persistent Groups */
4089 while ((s = wpas_p2p_get_persistent(wpa_s, peer, NULL, 0))) {
4090 if (go && ssid && ssid_len &&
4091 s->ssid_len == ssid_len &&
4092 os_memcmp(go, s->bssid, ETH_ALEN) == 0 &&
4093 os_memcmp(ssid, s->ssid, ssid_len) == 0)
4094 break;
4095
4096 /* Remove stale persistent group */
4097 if (s->mode != WPAS_MODE_P2P_GO || s->num_p2p_clients <= 1) {
4098 wpa_dbg(wpa_s, MSG_DEBUG,
4099 "P2P: Remove stale persistent group id=%d",
4100 s->id);
4101 wpas_notify_persistent_group_removed(wpa_s, s);
4102 wpa_config_remove_network(wpa_s->conf, s->id);
4103 save_config = 1;
4104 continue;
4105 }
4106
4107 for (i = 0; i < s->num_p2p_clients; i++) {
4108 if (os_memcmp(s->p2p_client_list + i * 2 * ETH_ALEN,
4109 peer, ETH_ALEN) != 0)
4110 continue;
4111
4112 os_memmove(s->p2p_client_list + i * 2 * ETH_ALEN,
4113 s->p2p_client_list + (i + 1) * 2 * ETH_ALEN,
4114 (s->num_p2p_clients - i - 1) * 2 * ETH_ALEN);
4115 break;
4116 }
4117 s->num_p2p_clients--;
4118 save_config = 1;
4119 }
4120
4121 if (save_config)
4122 p2p_config_write(wpa_s);
4123
4124 /* Return TRUE if valid SSID remains */
4125 return s != NULL;
4126 }
4127
4128
wpas_p2ps_get_feat_cap_str(char * buf,size_t buf_len,const u8 * feat_cap,size_t feat_cap_len)4129 static void wpas_p2ps_get_feat_cap_str(char *buf, size_t buf_len,
4130 const u8 *feat_cap, size_t feat_cap_len)
4131 {
4132 static const char pref[] = " feature_cap=";
4133 int ret;
4134
4135 buf[0] = '\0';
4136
4137 /*
4138 * We expect a feature capability to contain at least one byte to be
4139 * reported. The string buffer provided by the caller function is
4140 * expected to be big enough to contain all bytes of the attribute for
4141 * known specifications. This function truncates the reported bytes if
4142 * the feature capability data exceeds the string buffer size.
4143 */
4144 if (!feat_cap || !feat_cap_len || buf_len < sizeof(pref) + 2)
4145 return;
4146
4147 os_memcpy(buf, pref, sizeof(pref));
4148 ret = wpa_snprintf_hex(&buf[sizeof(pref) - 1],
4149 buf_len - sizeof(pref) + 1,
4150 feat_cap, feat_cap_len);
4151
4152 if (ret != (2 * (int) feat_cap_len))
4153 wpa_printf(MSG_WARNING, "P2PS feature_cap bytes truncated");
4154 }
4155
4156
wpas_p2ps_prov_complete(void * ctx,u8 status,const u8 * dev,const u8 * adv_mac,const u8 * ses_mac,const u8 * grp_mac,u32 adv_id,u32 ses_id,u8 conncap,int passwd_id,const u8 * persist_ssid,size_t persist_ssid_size,int response_done,int prov_start,const char * session_info,const u8 * feat_cap,size_t feat_cap_len,unsigned int freq,const u8 * group_ssid,size_t group_ssid_len)4157 static void wpas_p2ps_prov_complete(void *ctx, u8 status, const u8 *dev,
4158 const u8 *adv_mac, const u8 *ses_mac,
4159 const u8 *grp_mac, u32 adv_id, u32 ses_id,
4160 u8 conncap, int passwd_id,
4161 const u8 *persist_ssid,
4162 size_t persist_ssid_size, int response_done,
4163 int prov_start, const char *session_info,
4164 const u8 *feat_cap, size_t feat_cap_len,
4165 unsigned int freq,
4166 const u8 *group_ssid, size_t group_ssid_len)
4167 {
4168 struct wpa_supplicant *wpa_s = ctx;
4169 u8 mac[ETH_ALEN];
4170 struct wpa_ssid *persistent_go, *stale, *s = NULL;
4171 int save_config = 0;
4172 struct wpa_supplicant *go_wpa_s;
4173 char feat_cap_str[256];
4174
4175 if (!dev)
4176 return;
4177
4178 os_memset(mac, 0, ETH_ALEN);
4179 if (!adv_mac)
4180 adv_mac = mac;
4181 if (!ses_mac)
4182 ses_mac = mac;
4183 if (!grp_mac)
4184 grp_mac = mac;
4185
4186 wpas_p2ps_get_feat_cap_str(feat_cap_str, sizeof(feat_cap_str),
4187 feat_cap, feat_cap_len);
4188
4189 if (prov_start) {
4190 if (session_info == NULL) {
4191 wpa_msg_global(wpa_s, MSG_INFO,
4192 P2P_EVENT_P2PS_PROVISION_START MACSTR
4193 " adv_id=%x conncap=%x"
4194 " adv_mac=" MACSTR
4195 " session=%x mac=" MACSTR
4196 " dev_passwd_id=%d%s",
4197 MAC2STR(dev), adv_id, conncap,
4198 MAC2STR(adv_mac),
4199 ses_id, MAC2STR(ses_mac),
4200 passwd_id, feat_cap_str);
4201 } else {
4202 wpa_msg_global(wpa_s, MSG_INFO,
4203 P2P_EVENT_P2PS_PROVISION_START MACSTR
4204 " adv_id=%x conncap=%x"
4205 " adv_mac=" MACSTR
4206 " session=%x mac=" MACSTR
4207 " dev_passwd_id=%d info='%s'%s",
4208 MAC2STR(dev), adv_id, conncap,
4209 MAC2STR(adv_mac),
4210 ses_id, MAC2STR(ses_mac),
4211 passwd_id, session_info, feat_cap_str);
4212 }
4213 return;
4214 }
4215
4216 go_wpa_s = wpas_p2p_get_go_group(wpa_s);
4217 persistent_go = wpas_p2p_get_persistent_go(wpa_s);
4218
4219 if (status && status != P2P_SC_SUCCESS_DEFERRED) {
4220 if (go_wpa_s && !p2p_group_go_member_count(wpa_s))
4221 wpas_p2p_group_remove(wpa_s, go_wpa_s->ifname);
4222
4223 if (persistent_go && !persistent_go->num_p2p_clients) {
4224 /* remove empty persistent GO */
4225 wpa_dbg(wpa_s, MSG_DEBUG,
4226 "P2P: Remove empty persistent group id=%d",
4227 persistent_go->id);
4228 wpas_notify_persistent_group_removed(wpa_s,
4229 persistent_go);
4230 wpa_config_remove_network(wpa_s->conf,
4231 persistent_go->id);
4232 }
4233
4234 wpa_msg_global(wpa_s, MSG_INFO,
4235 P2P_EVENT_P2PS_PROVISION_DONE MACSTR
4236 " status=%d"
4237 " adv_id=%x adv_mac=" MACSTR
4238 " session=%x mac=" MACSTR "%s",
4239 MAC2STR(dev), status,
4240 adv_id, MAC2STR(adv_mac),
4241 ses_id, MAC2STR(ses_mac), feat_cap_str);
4242 return;
4243 }
4244
4245 /* Clean up stale persistent groups with this device */
4246 if (persist_ssid && persist_ssid_size)
4247 s = wpas_p2p_get_persistent(wpa_s, dev, persist_ssid,
4248 persist_ssid_size);
4249
4250 if (persist_ssid && s && s->mode != WPAS_MODE_P2P_GO &&
4251 is_zero_ether_addr(grp_mac)) {
4252 wpa_dbg(wpa_s, MSG_ERROR,
4253 "P2P: Peer device is a GO in a persistent group, but it did not provide the intended MAC address");
4254 return;
4255 }
4256
4257 for (;;) {
4258 stale = wpas_p2p_get_persistent(wpa_s, dev, NULL, 0);
4259 if (!stale)
4260 break;
4261
4262 if (s && s->ssid_len == stale->ssid_len &&
4263 os_memcmp(stale->bssid, s->bssid, ETH_ALEN) == 0 &&
4264 os_memcmp(stale->ssid, s->ssid, s->ssid_len) == 0)
4265 break;
4266
4267 /* Remove stale persistent group */
4268 if (stale->mode != WPAS_MODE_P2P_GO ||
4269 stale->num_p2p_clients <= 1) {
4270 wpa_dbg(wpa_s, MSG_DEBUG,
4271 "P2P: Remove stale persistent group id=%d",
4272 stale->id);
4273 wpas_notify_persistent_group_removed(wpa_s, stale);
4274 wpa_config_remove_network(wpa_s->conf, stale->id);
4275 } else {
4276 size_t i;
4277
4278 for (i = 0; i < stale->num_p2p_clients; i++) {
4279 if (os_memcmp(stale->p2p_client_list +
4280 i * ETH_ALEN,
4281 dev, ETH_ALEN) == 0) {
4282 os_memmove(stale->p2p_client_list +
4283 i * ETH_ALEN,
4284 stale->p2p_client_list +
4285 (i + 1) * ETH_ALEN,
4286 (stale->num_p2p_clients -
4287 i - 1) * ETH_ALEN);
4288 break;
4289 }
4290 }
4291 stale->num_p2p_clients--;
4292 }
4293 save_config = 1;
4294 }
4295
4296 if (save_config)
4297 p2p_config_write(wpa_s);
4298
4299 if (s) {
4300 if (go_wpa_s && !p2p_group_go_member_count(wpa_s))
4301 wpas_p2p_group_remove(wpa_s, go_wpa_s->ifname);
4302
4303 if (persistent_go && s != persistent_go &&
4304 !persistent_go->num_p2p_clients) {
4305 /* remove empty persistent GO */
4306 wpa_dbg(wpa_s, MSG_DEBUG,
4307 "P2P: Remove empty persistent group id=%d",
4308 persistent_go->id);
4309 wpas_notify_persistent_group_removed(wpa_s,
4310 persistent_go);
4311 wpa_config_remove_network(wpa_s->conf,
4312 persistent_go->id);
4313 /* Save config */
4314 }
4315
4316 wpa_msg_global(wpa_s, MSG_INFO,
4317 P2P_EVENT_P2PS_PROVISION_DONE MACSTR
4318 " status=%d"
4319 " adv_id=%x adv_mac=" MACSTR
4320 " session=%x mac=" MACSTR
4321 " persist=%d%s",
4322 MAC2STR(dev), status,
4323 adv_id, MAC2STR(adv_mac),
4324 ses_id, MAC2STR(ses_mac), s->id, feat_cap_str);
4325 return;
4326 }
4327
4328 wpa_s->global->pending_p2ps_group = 0;
4329 wpa_s->global->pending_p2ps_group_freq = 0;
4330
4331 if (conncap == P2PS_SETUP_GROUP_OWNER) {
4332 /*
4333 * We need to copy the interface name. Simply saving a
4334 * pointer isn't enough, since if we use pending_interface_name
4335 * it will be overwritten when the group is added.
4336 */
4337 char go_ifname[100];
4338
4339 go_ifname[0] = '\0';
4340 if (!go_wpa_s) {
4341 if (!response_done) {
4342 wpa_s->global->pending_p2ps_group = 1;
4343 wpa_s->global->pending_p2ps_group_freq = freq;
4344 }
4345
4346 if (!wpas_p2p_create_iface(wpa_s))
4347 os_memcpy(go_ifname, wpa_s->ifname,
4348 sizeof(go_ifname));
4349 else if (wpa_s->pending_interface_name[0])
4350 os_memcpy(go_ifname,
4351 wpa_s->pending_interface_name,
4352 sizeof(go_ifname));
4353
4354 if (!go_ifname[0]) {
4355 wpas_p2ps_prov_complete(
4356 wpa_s, P2P_SC_FAIL_UNKNOWN_GROUP,
4357 dev, adv_mac, ses_mac,
4358 grp_mac, adv_id, ses_id, 0, 0,
4359 NULL, 0, 0, 0, NULL, NULL, 0, 0,
4360 NULL, 0);
4361 return;
4362 }
4363
4364 /* If PD Resp complete, start up the GO */
4365 if (response_done && persistent_go) {
4366 wpas_p2p_group_add_persistent(
4367 wpa_s, persistent_go,
4368 0, 0, freq, 0, 0, 0, 0, 0, 0, NULL,
4369 persistent_go->mode ==
4370 WPAS_MODE_P2P_GO ?
4371 P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE :
4372 0, 0);
4373 } else if (response_done) {
4374 wpas_p2p_group_add(wpa_s, 1, freq,
4375 0, 0, 0, 0, 0, 0);
4376 }
4377
4378 if (passwd_id == DEV_PW_P2PS_DEFAULT) {
4379 os_memcpy(wpa_s->p2ps_join_addr, grp_mac,
4380 ETH_ALEN);
4381 wpa_s->p2ps_method_config_any = 1;
4382 }
4383 } else if (passwd_id == DEV_PW_P2PS_DEFAULT) {
4384 os_memcpy(go_ifname, go_wpa_s->ifname,
4385 sizeof(go_ifname));
4386
4387 if (is_zero_ether_addr(grp_mac)) {
4388 wpa_dbg(go_wpa_s, MSG_DEBUG,
4389 "P2P: Setting PIN-1 for ANY");
4390 wpa_supplicant_ap_wps_pin(go_wpa_s, NULL,
4391 "12345670", NULL, 0,
4392 0);
4393 } else {
4394 wpa_dbg(go_wpa_s, MSG_DEBUG,
4395 "P2P: Setting PIN-1 for " MACSTR,
4396 MAC2STR(grp_mac));
4397 wpa_supplicant_ap_wps_pin(go_wpa_s, grp_mac,
4398 "12345670", NULL, 0,
4399 0);
4400 }
4401
4402 os_memcpy(wpa_s->p2ps_join_addr, grp_mac, ETH_ALEN);
4403 wpa_s->p2ps_method_config_any = 1;
4404 }
4405
4406 wpa_msg_global(wpa_s, MSG_INFO,
4407 P2P_EVENT_P2PS_PROVISION_DONE MACSTR
4408 " status=%d conncap=%x"
4409 " adv_id=%x adv_mac=" MACSTR
4410 " session=%x mac=" MACSTR
4411 " dev_passwd_id=%d go=%s%s",
4412 MAC2STR(dev), status, conncap,
4413 adv_id, MAC2STR(adv_mac),
4414 ses_id, MAC2STR(ses_mac),
4415 passwd_id, go_ifname, feat_cap_str);
4416 return;
4417 }
4418
4419 if (go_wpa_s && !p2p_group_go_member_count(wpa_s))
4420 wpas_p2p_group_remove(wpa_s, go_wpa_s->ifname);
4421
4422 if (persistent_go && !persistent_go->num_p2p_clients) {
4423 /* remove empty persistent GO */
4424 wpa_dbg(wpa_s, MSG_DEBUG,
4425 "P2P: Remove empty persistent group id=%d",
4426 persistent_go->id);
4427 wpas_notify_persistent_group_removed(wpa_s, persistent_go);
4428 wpa_config_remove_network(wpa_s->conf, persistent_go->id);
4429 }
4430
4431 if (conncap == P2PS_SETUP_CLIENT) {
4432 char ssid_hex[32 * 2 + 1];
4433
4434 if (group_ssid)
4435 wpa_snprintf_hex(ssid_hex, sizeof(ssid_hex),
4436 group_ssid, group_ssid_len);
4437 else
4438 ssid_hex[0] = '\0';
4439 wpa_msg_global(wpa_s, MSG_INFO,
4440 P2P_EVENT_P2PS_PROVISION_DONE MACSTR
4441 " status=%d conncap=%x"
4442 " adv_id=%x adv_mac=" MACSTR
4443 " session=%x mac=" MACSTR
4444 " dev_passwd_id=%d join=" MACSTR "%s%s%s",
4445 MAC2STR(dev), status, conncap,
4446 adv_id, MAC2STR(adv_mac),
4447 ses_id, MAC2STR(ses_mac),
4448 passwd_id, MAC2STR(grp_mac), feat_cap_str,
4449 group_ssid ? " group_ssid=" : "", ssid_hex);
4450 } else {
4451 wpa_msg_global(wpa_s, MSG_INFO,
4452 P2P_EVENT_P2PS_PROVISION_DONE MACSTR
4453 " status=%d conncap=%x"
4454 " adv_id=%x adv_mac=" MACSTR
4455 " session=%x mac=" MACSTR
4456 " dev_passwd_id=%d%s",
4457 MAC2STR(dev), status, conncap,
4458 adv_id, MAC2STR(adv_mac),
4459 ses_id, MAC2STR(ses_mac),
4460 passwd_id, feat_cap_str);
4461 }
4462 }
4463
4464
_wpas_p2p_in_progress(void * ctx)4465 static int _wpas_p2p_in_progress(void *ctx)
4466 {
4467 struct wpa_supplicant *wpa_s = ctx;
4468 return wpas_p2p_in_progress(wpa_s);
4469 }
4470
4471
wpas_prov_disc_resp_cb(void * ctx)4472 static int wpas_prov_disc_resp_cb(void *ctx)
4473 {
4474 struct wpa_supplicant *wpa_s = ctx;
4475 struct wpa_ssid *persistent_go;
4476 unsigned int freq;
4477
4478 if (!wpa_s->global->pending_p2ps_group)
4479 return 0;
4480
4481 freq = wpa_s->global->pending_p2ps_group_freq;
4482 wpa_s->global->pending_p2ps_group_freq = 0;
4483 wpa_s->global->pending_p2ps_group = 0;
4484
4485 if (wpas_p2p_get_go_group(wpa_s))
4486 return 0;
4487 persistent_go = wpas_p2p_get_persistent_go(wpa_s);
4488
4489 if (persistent_go) {
4490 wpas_p2p_group_add_persistent(
4491 wpa_s, persistent_go, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4492 NULL,
4493 persistent_go->mode == WPAS_MODE_P2P_GO ?
4494 P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE : 0, 0);
4495 } else {
4496 wpas_p2p_group_add(wpa_s, 1, freq, 0, 0, 0, 0, 0, 0);
4497 }
4498
4499 return 1;
4500 }
4501
4502
wpas_p2p_get_pref_freq_list(void * ctx,int go,unsigned int * len,unsigned int * freq_list)4503 static int wpas_p2p_get_pref_freq_list(void *ctx, int go,
4504 unsigned int *len,
4505 unsigned int *freq_list)
4506 {
4507 struct wpa_supplicant *wpa_s = ctx;
4508
4509 return wpa_drv_get_pref_freq_list(wpa_s, go ? WPA_IF_P2P_GO :
4510 WPA_IF_P2P_CLIENT, len, freq_list);
4511 }
4512
wpas_p2p_mac_setup(struct wpa_supplicant * wpa_s)4513 int wpas_p2p_mac_setup(struct wpa_supplicant *wpa_s)
4514 {
4515 u8 addr[ETH_ALEN] = {0};
4516
4517 if (wpa_s->conf->p2p_device_random_mac_addr == 0)
4518 return 0;
4519
4520 if (wpa_s->conf->ssid == NULL) {
4521 if (random_mac_addr(addr) < 0) {
4522 wpa_msg(wpa_s, MSG_INFO,
4523 "Failed to generate random MAC address");
4524 return -EINVAL;
4525 }
4526
4527 /* Store generated MAC address. */
4528 os_memcpy(wpa_s->conf->p2p_device_persistent_mac_addr, addr,
4529 ETH_ALEN);
4530 } else {
4531 /* If there are existing saved groups, restore last MAC address.
4532 * if there is no last used MAC address, the last one is
4533 * factory MAC. */
4534 if (is_zero_ether_addr(
4535 wpa_s->conf->p2p_device_persistent_mac_addr))
4536 return 0;
4537 os_memcpy(addr, wpa_s->conf->p2p_device_persistent_mac_addr,
4538 ETH_ALEN);
4539 wpa_msg(wpa_s, MSG_DEBUG, "Restore last used MAC address.");
4540 }
4541
4542 if (wpa_drv_set_mac_addr(wpa_s, addr) < 0) {
4543 wpa_msg(wpa_s, MSG_INFO,
4544 "Failed to set random MAC address");
4545 return -EINVAL;
4546 }
4547
4548 if (wpa_supplicant_update_mac_addr(wpa_s) < 0) {
4549 wpa_msg(wpa_s, MSG_INFO,
4550 "Could not update MAC address information");
4551 return -EINVAL;
4552 }
4553
4554 wpa_msg(wpa_s, MSG_DEBUG, "Using random MAC address " MACSTR,
4555 MAC2STR(addr));
4556
4557 return 0;
4558 }
4559
4560 /**
4561 * wpas_p2p_init - Initialize P2P module for %wpa_supplicant
4562 * @global: Pointer to global data from wpa_supplicant_init()
4563 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
4564 * Returns: 0 on success, -1 on failure
4565 */
wpas_p2p_init(struct wpa_global * global,struct wpa_supplicant * wpa_s)4566 int wpas_p2p_init(struct wpa_global *global, struct wpa_supplicant *wpa_s)
4567 {
4568 struct p2p_config p2p;
4569 int i;
4570
4571 if (wpa_s->conf->p2p_disabled)
4572 return 0;
4573
4574 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
4575 return 0;
4576
4577 if (global->p2p)
4578 return 0;
4579
4580 if (wpas_p2p_mac_setup(wpa_s) < 0) {
4581 wpa_msg(wpa_s, MSG_ERROR,
4582 "Failed to initialize P2P random MAC address.");
4583 return -1;
4584 }
4585
4586 os_memset(&p2p, 0, sizeof(p2p));
4587 p2p.cb_ctx = wpa_s;
4588 p2p.debug_print = wpas_p2p_debug_print;
4589 p2p.p2p_scan = wpas_p2p_scan;
4590 p2p.send_action = wpas_send_action;
4591 p2p.send_action_done = wpas_send_action_done;
4592 p2p.go_neg_completed = wpas_go_neg_completed;
4593 p2p.go_neg_req_rx = wpas_go_neg_req_rx;
4594 p2p.dev_found = wpas_dev_found;
4595 p2p.dev_lost = wpas_dev_lost;
4596 p2p.find_stopped = wpas_find_stopped;
4597 p2p.start_listen = wpas_start_listen;
4598 p2p.stop_listen = wpas_stop_listen;
4599 p2p.send_probe_resp = wpas_send_probe_resp;
4600 p2p.sd_request = wpas_sd_request;
4601 p2p.sd_response = wpas_sd_response;
4602 p2p.prov_disc_req = wpas_prov_disc_req;
4603 p2p.prov_disc_resp = wpas_prov_disc_resp;
4604 p2p.prov_disc_fail = wpas_prov_disc_fail;
4605 p2p.invitation_process = wpas_invitation_process;
4606 p2p.invitation_received = wpas_invitation_received;
4607 p2p.invitation_result = wpas_invitation_result;
4608 p2p.get_noa = wpas_get_noa;
4609 p2p.go_connected = wpas_go_connected;
4610 p2p.presence_resp = wpas_presence_resp;
4611 p2p.is_concurrent_session_active = wpas_is_concurrent_session_active;
4612 p2p.is_p2p_in_progress = _wpas_p2p_in_progress;
4613 p2p.get_persistent_group = wpas_get_persistent_group;
4614 p2p.get_go_info = wpas_get_go_info;
4615 p2p.remove_stale_groups = wpas_remove_stale_groups;
4616 p2p.p2ps_prov_complete = wpas_p2ps_prov_complete;
4617 p2p.prov_disc_resp_cb = wpas_prov_disc_resp_cb;
4618 p2p.p2ps_group_capability = p2ps_group_capability;
4619 p2p.get_pref_freq_list = wpas_p2p_get_pref_freq_list;
4620
4621 os_memcpy(wpa_s->global->p2p_dev_addr, wpa_s->own_addr, ETH_ALEN);
4622 os_memcpy(p2p.dev_addr, wpa_s->global->p2p_dev_addr, ETH_ALEN);
4623 p2p.dev_name = wpa_s->conf->device_name;
4624 p2p.manufacturer = wpa_s->conf->manufacturer;
4625 p2p.model_name = wpa_s->conf->model_name;
4626 p2p.model_number = wpa_s->conf->model_number;
4627 p2p.serial_number = wpa_s->conf->serial_number;
4628 if (wpa_s->wps) {
4629 os_memcpy(p2p.uuid, wpa_s->wps->uuid, 16);
4630 p2p.config_methods = wpa_s->wps->config_methods;
4631 }
4632
4633 if (wpas_p2p_setup_channels(wpa_s, &p2p.channels, &p2p.cli_channels)) {
4634 wpa_printf(MSG_ERROR,
4635 "P2P: Failed to configure supported channel list");
4636 return -1;
4637 }
4638
4639 if (wpa_s->conf->p2p_listen_reg_class &&
4640 wpa_s->conf->p2p_listen_channel) {
4641 p2p.reg_class = wpa_s->conf->p2p_listen_reg_class;
4642 p2p.channel = wpa_s->conf->p2p_listen_channel;
4643 p2p.channel_forced = 1;
4644 } else {
4645 /*
4646 * Pick one of the social channels randomly as the listen
4647 * channel.
4648 */
4649 if (p2p_config_get_random_social(&p2p, &p2p.reg_class,
4650 &p2p.channel,
4651 &global->p2p_go_avoid_freq,
4652 &global->p2p_disallow_freq) !=
4653 0) {
4654 wpa_printf(MSG_INFO,
4655 "P2P: No social channels supported by the driver - do not enable P2P");
4656 return 0;
4657 }
4658 p2p.channel_forced = 0;
4659 }
4660 wpa_printf(MSG_DEBUG, "P2P: Own listen channel: %d:%d",
4661 p2p.reg_class, p2p.channel);
4662
4663 if (wpa_s->conf->p2p_oper_reg_class &&
4664 wpa_s->conf->p2p_oper_channel) {
4665 p2p.op_reg_class = wpa_s->conf->p2p_oper_reg_class;
4666 p2p.op_channel = wpa_s->conf->p2p_oper_channel;
4667 p2p.cfg_op_channel = 1;
4668 wpa_printf(MSG_DEBUG, "P2P: Configured operating channel: "
4669 "%d:%d", p2p.op_reg_class, p2p.op_channel);
4670
4671 } else {
4672 /*
4673 * Use random operation channel from 2.4 GHz band social
4674 * channels (1, 6, 11) or band 60 GHz social channel (2) if no
4675 * other preference is indicated.
4676 */
4677 if (p2p_config_get_random_social(&p2p, &p2p.op_reg_class,
4678 &p2p.op_channel, NULL,
4679 NULL) != 0) {
4680 wpa_printf(MSG_INFO,
4681 "P2P: Failed to select random social channel as operation channel");
4682 p2p.op_reg_class = 0;
4683 p2p.op_channel = 0;
4684 /* This will be overridden during group setup in
4685 * p2p_prepare_channel(), so allow setup to continue. */
4686 }
4687 p2p.cfg_op_channel = 0;
4688 wpa_printf(MSG_DEBUG, "P2P: Random operating channel: "
4689 "%d:%d", p2p.op_reg_class, p2p.op_channel);
4690 }
4691
4692 if (wpa_s->conf->p2p_pref_chan && wpa_s->conf->num_p2p_pref_chan) {
4693 p2p.pref_chan = wpa_s->conf->p2p_pref_chan;
4694 p2p.num_pref_chan = wpa_s->conf->num_p2p_pref_chan;
4695 }
4696
4697 if (wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
4698 os_memcpy(p2p.country, wpa_s->conf->country, 2);
4699 p2p.country[2] = 0x04;
4700 } else
4701 os_memcpy(p2p.country, "XX\x04", 3);
4702
4703 os_memcpy(p2p.pri_dev_type, wpa_s->conf->device_type,
4704 WPS_DEV_TYPE_LEN);
4705
4706 p2p.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
4707 os_memcpy(p2p.sec_dev_type, wpa_s->conf->sec_device_type,
4708 p2p.num_sec_dev_types * WPS_DEV_TYPE_LEN);
4709
4710 p2p.concurrent_operations = !!(wpa_s->drv_flags &
4711 WPA_DRIVER_FLAGS_P2P_CONCURRENT);
4712
4713 p2p.max_peers = 100;
4714
4715 if (wpa_s->conf->p2p_ssid_postfix) {
4716 p2p.ssid_postfix_len =
4717 os_strlen(wpa_s->conf->p2p_ssid_postfix);
4718 if (p2p.ssid_postfix_len > sizeof(p2p.ssid_postfix))
4719 p2p.ssid_postfix_len = sizeof(p2p.ssid_postfix);
4720 os_memcpy(p2p.ssid_postfix, wpa_s->conf->p2p_ssid_postfix,
4721 p2p.ssid_postfix_len);
4722 }
4723
4724 p2p.p2p_intra_bss = wpa_s->conf->p2p_intra_bss;
4725
4726 p2p.max_listen = wpa_s->max_remain_on_chan;
4727
4728 if (wpa_s->conf->p2p_passphrase_len >= 8 &&
4729 wpa_s->conf->p2p_passphrase_len <= 63)
4730 p2p.passphrase_len = wpa_s->conf->p2p_passphrase_len;
4731 else
4732 p2p.passphrase_len = 8;
4733
4734 global->p2p = p2p_init(&p2p);
4735 if (global->p2p == NULL)
4736 return -1;
4737 global->p2p_init_wpa_s = wpa_s;
4738
4739 for (i = 0; i < MAX_WPS_VENDOR_EXT; i++) {
4740 if (wpa_s->conf->wps_vendor_ext[i] == NULL)
4741 continue;
4742 p2p_add_wps_vendor_extension(
4743 global->p2p, wpa_s->conf->wps_vendor_ext[i]);
4744 }
4745
4746 p2p_set_no_go_freq(global->p2p, &wpa_s->conf->p2p_no_go_freq);
4747
4748 return 0;
4749 }
4750
4751
4752 /**
4753 * wpas_p2p_deinit - Deinitialize per-interface P2P data
4754 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
4755 *
4756 * This function deinitialize per-interface P2P data.
4757 */
wpas_p2p_deinit(struct wpa_supplicant * wpa_s)4758 void wpas_p2p_deinit(struct wpa_supplicant *wpa_s)
4759 {
4760 if (wpa_s->driver && wpa_s->drv_priv)
4761 wpa_drv_probe_req_report(wpa_s, 0);
4762
4763 if (wpa_s->go_params) {
4764 /* Clear any stored provisioning info */
4765 p2p_clear_provisioning_info(
4766 wpa_s->global->p2p,
4767 wpa_s->go_params->peer_device_addr);
4768 }
4769
4770 os_free(wpa_s->go_params);
4771 wpa_s->go_params = NULL;
4772 eloop_cancel_timeout(wpas_p2p_psk_failure_removal, wpa_s, NULL);
4773 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
4774 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
4775 wpa_s->global->p2p_long_listen = 0;
4776 eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
4777 eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
4778 wpas_p2p_remove_pending_group_interface(wpa_s);
4779 eloop_cancel_timeout(wpas_p2p_group_freq_conflict, wpa_s, NULL);
4780 wpas_p2p_listen_work_done(wpa_s);
4781 if (wpa_s->p2p_send_action_work) {
4782 os_free(wpa_s->p2p_send_action_work->ctx);
4783 radio_work_done(wpa_s->p2p_send_action_work);
4784 wpa_s->p2p_send_action_work = NULL;
4785 }
4786 eloop_cancel_timeout(wpas_p2p_send_action_work_timeout, wpa_s, NULL);
4787
4788 wpabuf_free(wpa_s->p2p_oob_dev_pw);
4789 wpa_s->p2p_oob_dev_pw = NULL;
4790
4791 os_free(wpa_s->p2p_group_common_freqs);
4792 wpa_s->p2p_group_common_freqs = NULL;
4793 wpa_s->p2p_group_common_freqs_num = 0;
4794
4795 /* TODO: remove group interface from the driver if this wpa_s instance
4796 * is on top of a P2P group interface */
4797 }
4798
4799
4800 /**
4801 * wpas_p2p_deinit_global - Deinitialize global P2P module
4802 * @global: Pointer to global data from wpa_supplicant_init()
4803 *
4804 * This function deinitializes the global (per device) P2P module.
4805 */
wpas_p2p_deinit_global(struct wpa_global * global)4806 static void wpas_p2p_deinit_global(struct wpa_global *global)
4807 {
4808 struct wpa_supplicant *wpa_s, *tmp;
4809
4810 wpa_s = global->ifaces;
4811
4812 wpas_p2p_service_flush(global->p2p_init_wpa_s);
4813
4814 /* Remove remaining P2P group interfaces */
4815 while (wpa_s && wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE)
4816 wpa_s = wpa_s->next;
4817 while (wpa_s) {
4818 tmp = global->ifaces;
4819 while (tmp &&
4820 (tmp == wpa_s ||
4821 tmp->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)) {
4822 tmp = tmp->next;
4823 }
4824 if (tmp == NULL)
4825 break;
4826 /* Disconnect from the P2P group and deinit the interface */
4827 wpas_p2p_disconnect(tmp);
4828 }
4829
4830 /*
4831 * Deinit GO data on any possibly remaining interface (if main
4832 * interface is used as GO).
4833 */
4834 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
4835 if (wpa_s->ap_iface)
4836 wpas_p2p_group_deinit(wpa_s);
4837 }
4838
4839 p2p_deinit(global->p2p);
4840 global->p2p = NULL;
4841 global->p2p_init_wpa_s = NULL;
4842 }
4843
4844
wpas_p2p_create_iface(struct wpa_supplicant * wpa_s)4845 static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s)
4846 {
4847 if (wpa_s->conf->p2p_no_group_iface)
4848 return 0; /* separate interface disabled per configuration */
4849 if (wpa_s->drv_flags &
4850 (WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE |
4851 WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P))
4852 return 1; /* P2P group requires a new interface in every case
4853 */
4854 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CONCURRENT))
4855 return 0; /* driver does not support concurrent operations */
4856 if (wpa_s->global->ifaces->next)
4857 return 1; /* more that one interface already in use */
4858 if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
4859 return 1; /* this interface is already in use */
4860 return 0;
4861 }
4862
4863
wpas_p2p_start_go_neg(struct wpa_supplicant * wpa_s,const u8 * peer_addr,enum p2p_wps_method wps_method,int go_intent,const u8 * own_interface_addr,unsigned int force_freq,int persistent_group,struct wpa_ssid * ssid,unsigned int pref_freq)4864 static int wpas_p2p_start_go_neg(struct wpa_supplicant *wpa_s,
4865 const u8 *peer_addr,
4866 enum p2p_wps_method wps_method,
4867 int go_intent, const u8 *own_interface_addr,
4868 unsigned int force_freq, int persistent_group,
4869 struct wpa_ssid *ssid, unsigned int pref_freq)
4870 {
4871 if (persistent_group && wpa_s->conf->persistent_reconnect)
4872 persistent_group = 2;
4873
4874 /*
4875 * Increase GO config timeout if HT40 is used since it takes some time
4876 * to scan channels for coex purposes before the BSS can be started.
4877 */
4878 p2p_set_config_timeout(wpa_s->global->p2p,
4879 wpa_s->p2p_go_ht40 ? 255 : 100, 20);
4880
4881 return p2p_connect(wpa_s->global->p2p, peer_addr, wps_method,
4882 go_intent, own_interface_addr, force_freq,
4883 persistent_group, ssid ? ssid->ssid : NULL,
4884 ssid ? ssid->ssid_len : 0,
4885 wpa_s->p2p_pd_before_go_neg, pref_freq,
4886 wps_method == WPS_NFC ? wpa_s->p2p_oob_dev_pw_id :
4887 0);
4888 }
4889
4890
wpas_p2p_auth_go_neg(struct wpa_supplicant * wpa_s,const u8 * peer_addr,enum p2p_wps_method wps_method,int go_intent,const u8 * own_interface_addr,unsigned int force_freq,int persistent_group,struct wpa_ssid * ssid,unsigned int pref_freq)4891 static int wpas_p2p_auth_go_neg(struct wpa_supplicant *wpa_s,
4892 const u8 *peer_addr,
4893 enum p2p_wps_method wps_method,
4894 int go_intent, const u8 *own_interface_addr,
4895 unsigned int force_freq, int persistent_group,
4896 struct wpa_ssid *ssid, unsigned int pref_freq)
4897 {
4898 if (persistent_group && wpa_s->conf->persistent_reconnect)
4899 persistent_group = 2;
4900
4901 return p2p_authorize(wpa_s->global->p2p, peer_addr, wps_method,
4902 go_intent, own_interface_addr, force_freq,
4903 persistent_group, ssid ? ssid->ssid : NULL,
4904 ssid ? ssid->ssid_len : 0, pref_freq,
4905 wps_method == WPS_NFC ? wpa_s->p2p_oob_dev_pw_id :
4906 0);
4907 }
4908
4909
wpas_p2p_check_join_scan_limit(struct wpa_supplicant * wpa_s)4910 static void wpas_p2p_check_join_scan_limit(struct wpa_supplicant *wpa_s)
4911 {
4912 wpa_s->p2p_join_scan_count++;
4913 wpa_printf(MSG_DEBUG, "P2P: Join scan attempt %d",
4914 wpa_s->p2p_join_scan_count);
4915 if (wpa_s->p2p_join_scan_count > P2P_MAX_JOIN_SCAN_ATTEMPTS) {
4916 wpa_printf(MSG_DEBUG, "P2P: Failed to find GO " MACSTR
4917 " for join operationg - stop join attempt",
4918 MAC2STR(wpa_s->pending_join_iface_addr));
4919 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
4920 if (wpa_s->p2p_auto_pd) {
4921 wpa_s->p2p_auto_pd = 0;
4922 wpa_msg_global(wpa_s, MSG_INFO,
4923 P2P_EVENT_PROV_DISC_FAILURE
4924 " p2p_dev_addr=" MACSTR " status=N/A",
4925 MAC2STR(wpa_s->pending_join_dev_addr));
4926 return;
4927 }
4928 wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
4929 P2P_EVENT_GROUP_FORMATION_FAILURE);
4930 wpas_notify_p2p_group_formation_failure(wpa_s, "");
4931 }
4932 }
4933
4934
wpas_check_freq_conflict(struct wpa_supplicant * wpa_s,int freq)4935 static int wpas_check_freq_conflict(struct wpa_supplicant *wpa_s, int freq)
4936 {
4937 int res;
4938 unsigned int num, i;
4939 struct wpa_used_freq_data *freqs;
4940
4941 if (wpas_p2p_num_unused_channels(wpa_s) > 0) {
4942 /* Multiple channels are supported and not all are in use */
4943 return 0;
4944 }
4945
4946 freqs = os_calloc(wpa_s->num_multichan_concurrent,
4947 sizeof(struct wpa_used_freq_data));
4948 if (!freqs)
4949 return 1;
4950
4951 num = wpas_p2p_valid_oper_freqs(wpa_s, freqs,
4952 wpa_s->num_multichan_concurrent);
4953
4954 for (i = 0; i < num; i++) {
4955 if (freqs[i].freq == freq) {
4956 wpa_printf(MSG_DEBUG, "P2P: Frequency %d MHz in use by another virtual interface and can be used",
4957 freq);
4958 res = 0;
4959 goto exit_free;
4960 }
4961 }
4962
4963 wpa_printf(MSG_DEBUG, "P2P: No valid operating frequencies");
4964 res = 1;
4965
4966 exit_free:
4967 os_free(freqs);
4968 return res;
4969 }
4970
4971
wpas_p2p_peer_go(struct wpa_supplicant * wpa_s,const u8 * peer_dev_addr)4972 static int wpas_p2p_peer_go(struct wpa_supplicant *wpa_s,
4973 const u8 *peer_dev_addr)
4974 {
4975 struct wpa_bss *bss;
4976 int updated;
4977
4978 bss = wpa_bss_get_p2p_dev_addr(wpa_s, peer_dev_addr);
4979 if (bss == NULL)
4980 return -1;
4981 if (bss->last_update_idx < wpa_s->bss_update_idx) {
4982 wpa_printf(MSG_DEBUG, "P2P: Peer BSS entry not updated in the "
4983 "last scan");
4984 return 0;
4985 }
4986
4987 updated = os_reltime_before(&wpa_s->p2p_auto_started,
4988 &bss->last_update);
4989 wpa_printf(MSG_DEBUG, "P2P: Current BSS entry for peer updated at "
4990 "%ld.%06ld (%supdated in last scan)",
4991 bss->last_update.sec, bss->last_update.usec,
4992 updated ? "": "not ");
4993
4994 return updated;
4995 }
4996
4997
wpas_p2p_scan_res_join(struct wpa_supplicant * wpa_s,struct wpa_scan_results * scan_res)4998 static void wpas_p2p_scan_res_join(struct wpa_supplicant *wpa_s,
4999 struct wpa_scan_results *scan_res)
5000 {
5001 struct wpa_bss *bss = NULL;
5002 int freq;
5003 u8 iface_addr[ETH_ALEN];
5004
5005 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
5006
5007 if (wpa_s->global->p2p_disabled)
5008 return;
5009
5010 wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS) for %sjoin",
5011 scan_res ? (int) scan_res->num : -1,
5012 wpa_s->p2p_auto_join ? "auto_" : "");
5013
5014 if (scan_res)
5015 wpas_p2p_scan_res_handler(wpa_s, scan_res);
5016
5017 if (wpa_s->p2p_auto_pd) {
5018 int join = wpas_p2p_peer_go(wpa_s,
5019 wpa_s->pending_join_dev_addr);
5020 if (join == 0 &&
5021 wpa_s->auto_pd_scan_retry < P2P_AUTO_PD_SCAN_ATTEMPTS) {
5022 wpa_s->auto_pd_scan_retry++;
5023 bss = wpa_bss_get_bssid_latest(
5024 wpa_s, wpa_s->pending_join_dev_addr);
5025 if (bss) {
5026 freq = bss->freq;
5027 wpa_printf(MSG_DEBUG, "P2P: Scan retry %d for "
5028 "the peer " MACSTR " at %d MHz",
5029 wpa_s->auto_pd_scan_retry,
5030 MAC2STR(wpa_s->
5031 pending_join_dev_addr),
5032 freq);
5033 wpas_p2p_join_scan_req(wpa_s, freq, NULL, 0);
5034 return;
5035 }
5036 }
5037
5038 if (join < 0)
5039 join = 0;
5040
5041 wpa_s->p2p_auto_pd = 0;
5042 wpa_s->pending_pd_use = join ? AUTO_PD_JOIN : AUTO_PD_GO_NEG;
5043 wpa_printf(MSG_DEBUG, "P2P: Auto PD with " MACSTR " join=%d",
5044 MAC2STR(wpa_s->pending_join_dev_addr), join);
5045 if (p2p_prov_disc_req(wpa_s->global->p2p,
5046 wpa_s->pending_join_dev_addr, NULL,
5047 wpa_s->pending_pd_config_methods, join,
5048 0, wpa_s->user_initiated_pd) < 0) {
5049 wpa_s->p2p_auto_pd = 0;
5050 wpa_msg_global(wpa_s, MSG_INFO,
5051 P2P_EVENT_PROV_DISC_FAILURE
5052 " p2p_dev_addr=" MACSTR " status=N/A",
5053 MAC2STR(wpa_s->pending_join_dev_addr));
5054 }
5055 return;
5056 }
5057
5058 if (wpa_s->p2p_auto_join) {
5059 int join = wpas_p2p_peer_go(wpa_s,
5060 wpa_s->pending_join_dev_addr);
5061 if (join < 0) {
5062 wpa_printf(MSG_DEBUG, "P2P: Peer was not found to be "
5063 "running a GO -> use GO Negotiation");
5064 wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
5065 P2P_EVENT_FALLBACK_TO_GO_NEG
5066 "reason=peer-not-running-GO");
5067 wpas_p2p_connect(wpa_s, wpa_s->pending_join_dev_addr,
5068 wpa_s->p2p_pin, wpa_s->p2p_wps_method,
5069 wpa_s->p2p_persistent_group, 0, 0, 0,
5070 wpa_s->p2p_go_intent,
5071 wpa_s->p2p_connect_freq,
5072 wpa_s->p2p_go_vht_center_freq2,
5073 wpa_s->p2p_persistent_id,
5074 wpa_s->p2p_pd_before_go_neg,
5075 wpa_s->p2p_go_ht40,
5076 wpa_s->p2p_go_vht,
5077 wpa_s->p2p_go_max_oper_chwidth,
5078 wpa_s->p2p_go_he,
5079 wpa_s->p2p_go_edmg,
5080 NULL, 0);
5081 return;
5082 }
5083
5084 wpa_printf(MSG_DEBUG, "P2P: Peer was found running GO%s -> "
5085 "try to join the group", join ? "" :
5086 " in older scan");
5087 if (!join) {
5088 wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
5089 P2P_EVENT_FALLBACK_TO_GO_NEG_ENABLED);
5090 wpa_s->p2p_fallback_to_go_neg = 1;
5091 }
5092 }
5093
5094 freq = p2p_get_oper_freq(wpa_s->global->p2p,
5095 wpa_s->pending_join_iface_addr);
5096 if (freq < 0 &&
5097 p2p_get_interface_addr(wpa_s->global->p2p,
5098 wpa_s->pending_join_dev_addr,
5099 iface_addr) == 0 &&
5100 os_memcmp(iface_addr, wpa_s->pending_join_dev_addr, ETH_ALEN) != 0
5101 && !wpa_bss_get_bssid(wpa_s, wpa_s->pending_join_iface_addr)) {
5102 wpa_printf(MSG_DEBUG, "P2P: Overwrite pending interface "
5103 "address for join from " MACSTR " to " MACSTR
5104 " based on newly discovered P2P peer entry",
5105 MAC2STR(wpa_s->pending_join_iface_addr),
5106 MAC2STR(iface_addr));
5107 os_memcpy(wpa_s->pending_join_iface_addr, iface_addr,
5108 ETH_ALEN);
5109
5110 freq = p2p_get_oper_freq(wpa_s->global->p2p,
5111 wpa_s->pending_join_iface_addr);
5112 }
5113 if (freq >= 0) {
5114 wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
5115 "from P2P peer table: %d MHz", freq);
5116 }
5117 if (wpa_s->p2p_join_ssid_len) {
5118 wpa_printf(MSG_DEBUG, "P2P: Trying to find target GO BSS entry based on BSSID "
5119 MACSTR " and SSID %s",
5120 MAC2STR(wpa_s->pending_join_iface_addr),
5121 wpa_ssid_txt(wpa_s->p2p_join_ssid,
5122 wpa_s->p2p_join_ssid_len));
5123 bss = wpa_bss_get(wpa_s, wpa_s->pending_join_iface_addr,
5124 wpa_s->p2p_join_ssid,
5125 wpa_s->p2p_join_ssid_len);
5126 } else if (!bss) {
5127 wpa_printf(MSG_DEBUG, "P2P: Trying to find target GO BSS entry based on BSSID "
5128 MACSTR, MAC2STR(wpa_s->pending_join_iface_addr));
5129 bss = wpa_bss_get_bssid_latest(wpa_s,
5130 wpa_s->pending_join_iface_addr);
5131 }
5132 if (bss) {
5133 u8 dev_addr[ETH_ALEN];
5134
5135 freq = bss->freq;
5136 wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
5137 "from BSS table: %d MHz (SSID %s)", freq,
5138 wpa_ssid_txt(bss->ssid, bss->ssid_len));
5139 if (p2p_parse_dev_addr((const u8 *) (bss + 1), bss->ie_len,
5140 dev_addr) == 0 &&
5141 os_memcmp(wpa_s->pending_join_dev_addr,
5142 wpa_s->pending_join_iface_addr, ETH_ALEN) == 0 &&
5143 os_memcmp(dev_addr, wpa_s->pending_join_dev_addr,
5144 ETH_ALEN) != 0) {
5145 wpa_printf(MSG_DEBUG,
5146 "P2P: Update target GO device address based on BSS entry: " MACSTR " (was " MACSTR ")",
5147 MAC2STR(dev_addr),
5148 MAC2STR(wpa_s->pending_join_dev_addr));
5149 os_memcpy(wpa_s->pending_join_dev_addr, dev_addr,
5150 ETH_ALEN);
5151 }
5152 }
5153 if (freq > 0) {
5154 u16 method;
5155
5156 if (wpas_check_freq_conflict(wpa_s, freq) > 0) {
5157 wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
5158 P2P_EVENT_GROUP_FORMATION_FAILURE
5159 "reason=FREQ_CONFLICT");
5160 wpas_notify_p2p_group_formation_failure(
5161 wpa_s, "FREQ_CONFLICT");
5162 return;
5163 }
5164
5165 wpa_printf(MSG_DEBUG, "P2P: Send Provision Discovery Request "
5166 "prior to joining an existing group (GO " MACSTR
5167 " freq=%u MHz)",
5168 MAC2STR(wpa_s->pending_join_dev_addr), freq);
5169 wpa_s->pending_pd_before_join = 1;
5170
5171 switch (wpa_s->pending_join_wps_method) {
5172 case WPS_PIN_DISPLAY:
5173 method = WPS_CONFIG_KEYPAD;
5174 break;
5175 case WPS_PIN_KEYPAD:
5176 method = WPS_CONFIG_DISPLAY;
5177 break;
5178 case WPS_PBC:
5179 method = WPS_CONFIG_PUSHBUTTON;
5180 break;
5181 case WPS_P2PS:
5182 method = WPS_CONFIG_P2PS;
5183 break;
5184 default:
5185 method = 0;
5186 break;
5187 }
5188
5189 if ((p2p_get_provisioning_info(wpa_s->global->p2p,
5190 wpa_s->pending_join_dev_addr) ==
5191 method)) {
5192 /*
5193 * We have already performed provision discovery for
5194 * joining the group. Proceed directly to join
5195 * operation without duplicated provision discovery. */
5196 wpa_printf(MSG_DEBUG, "P2P: Provision discovery "
5197 "with " MACSTR " already done - proceed to "
5198 "join",
5199 MAC2STR(wpa_s->pending_join_dev_addr));
5200 wpa_s->pending_pd_before_join = 0;
5201 goto start;
5202 }
5203
5204 if (p2p_prov_disc_req(wpa_s->global->p2p,
5205 wpa_s->pending_join_dev_addr,
5206 NULL, method, 1,
5207 freq, wpa_s->user_initiated_pd) < 0) {
5208 wpa_printf(MSG_DEBUG, "P2P: Failed to send Provision "
5209 "Discovery Request before joining an "
5210 "existing group");
5211 wpa_s->pending_pd_before_join = 0;
5212 goto start;
5213 }
5214 return;
5215 }
5216
5217 wpa_printf(MSG_DEBUG, "P2P: Failed to find BSS/GO - try again later");
5218 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
5219 eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
5220 wpas_p2p_check_join_scan_limit(wpa_s);
5221 return;
5222
5223 start:
5224 /* Start join operation immediately */
5225 wpas_p2p_join_start(wpa_s, 0, wpa_s->p2p_join_ssid,
5226 wpa_s->p2p_join_ssid_len);
5227 }
5228
5229
wpas_p2p_join_scan_req(struct wpa_supplicant * wpa_s,int freq,const u8 * ssid,size_t ssid_len)5230 static void wpas_p2p_join_scan_req(struct wpa_supplicant *wpa_s, int freq,
5231 const u8 *ssid, size_t ssid_len)
5232 {
5233 int ret;
5234 struct wpa_driver_scan_params params;
5235 struct wpabuf *wps_ie, *ies;
5236 size_t ielen;
5237 int freqs[2] = { 0, 0 };
5238 unsigned int bands;
5239
5240 os_memset(¶ms, 0, sizeof(params));
5241
5242 /* P2P Wildcard SSID */
5243 params.num_ssids = 1;
5244 if (ssid && ssid_len) {
5245 params.ssids[0].ssid = ssid;
5246 params.ssids[0].ssid_len = ssid_len;
5247 os_memcpy(wpa_s->p2p_join_ssid, ssid, ssid_len);
5248 wpa_s->p2p_join_ssid_len = ssid_len;
5249 } else {
5250 params.ssids[0].ssid = (u8 *) P2P_WILDCARD_SSID;
5251 params.ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
5252 wpa_s->p2p_join_ssid_len = 0;
5253 }
5254
5255 wpa_s->wps->dev.p2p = 1;
5256 wps_ie = wps_build_probe_req_ie(DEV_PW_DEFAULT, &wpa_s->wps->dev,
5257 wpa_s->wps->uuid, WPS_REQ_ENROLLEE, 0,
5258 NULL);
5259 if (wps_ie == NULL) {
5260 wpas_p2p_scan_res_join(wpa_s, NULL);
5261 return;
5262 }
5263
5264 if (!freq) {
5265 int oper_freq;
5266 /*
5267 * If freq is not provided, check the operating freq of the GO
5268 * and use a single channel scan on if possible.
5269 */
5270 oper_freq = p2p_get_oper_freq(wpa_s->global->p2p,
5271 wpa_s->pending_join_iface_addr);
5272 if (oper_freq > 0)
5273 freq = oper_freq;
5274 }
5275 if (freq > 0) {
5276 freqs[0] = freq;
5277 params.freqs = freqs;
5278 }
5279
5280 ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
5281 ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
5282 if (ies == NULL) {
5283 wpabuf_free(wps_ie);
5284 wpas_p2p_scan_res_join(wpa_s, NULL);
5285 return;
5286 }
5287 wpabuf_put_buf(ies, wps_ie);
5288 wpabuf_free(wps_ie);
5289
5290 bands = wpas_get_bands(wpa_s, freqs);
5291 p2p_scan_ie(wpa_s->global->p2p, ies, NULL, bands);
5292
5293 params.p2p_probe = 1;
5294 params.extra_ies = wpabuf_head(ies);
5295 params.extra_ies_len = wpabuf_len(ies);
5296
5297 if (wpa_s->clear_driver_scan_cache) {
5298 wpa_printf(MSG_DEBUG,
5299 "Request driver to clear scan cache due to local BSS flush");
5300 params.only_new_results = 1;
5301 }
5302
5303 /*
5304 * Run a scan to update BSS table and start Provision Discovery once
5305 * the new scan results become available.
5306 */
5307 ret = wpa_drv_scan(wpa_s, ¶ms);
5308 if (!ret) {
5309 os_get_reltime(&wpa_s->scan_trigger_time);
5310 wpa_s->scan_res_handler = wpas_p2p_scan_res_join;
5311 wpa_s->own_scan_requested = 1;
5312 wpa_s->clear_driver_scan_cache = 0;
5313 }
5314
5315 wpabuf_free(ies);
5316
5317 if (ret) {
5318 wpa_printf(MSG_DEBUG, "P2P: Failed to start scan for join - "
5319 "try again later");
5320 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
5321 eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
5322 wpas_p2p_check_join_scan_limit(wpa_s);
5323 }
5324 }
5325
5326
wpas_p2p_join_scan(void * eloop_ctx,void * timeout_ctx)5327 static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx)
5328 {
5329 struct wpa_supplicant *wpa_s = eloop_ctx;
5330 wpas_p2p_join_scan_req(wpa_s, 0, NULL, 0);
5331 }
5332
5333
wpas_p2p_join(struct wpa_supplicant * wpa_s,const u8 * iface_addr,const u8 * dev_addr,enum p2p_wps_method wps_method,int auto_join,int op_freq,const u8 * ssid,size_t ssid_len)5334 static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
5335 const u8 *dev_addr, enum p2p_wps_method wps_method,
5336 int auto_join, int op_freq,
5337 const u8 *ssid, size_t ssid_len)
5338 {
5339 wpa_printf(MSG_DEBUG, "P2P: Request to join existing group (iface "
5340 MACSTR " dev " MACSTR " op_freq=%d)%s",
5341 MAC2STR(iface_addr), MAC2STR(dev_addr), op_freq,
5342 auto_join ? " (auto_join)" : "");
5343 if (ssid && ssid_len) {
5344 wpa_printf(MSG_DEBUG, "P2P: Group SSID specified: %s",
5345 wpa_ssid_txt(ssid, ssid_len));
5346 }
5347
5348 wpa_s->p2p_auto_pd = 0;
5349 wpa_s->p2p_auto_join = !!auto_join;
5350 os_memcpy(wpa_s->pending_join_iface_addr, iface_addr, ETH_ALEN);
5351 os_memcpy(wpa_s->pending_join_dev_addr, dev_addr, ETH_ALEN);
5352 wpa_s->pending_join_wps_method = wps_method;
5353
5354 /* Make sure we are not running find during connection establishment */
5355 wpas_p2p_stop_find(wpa_s);
5356
5357 wpa_s->p2p_join_scan_count = 0;
5358 wpas_p2p_join_scan_req(wpa_s, op_freq, ssid, ssid_len);
5359 return 0;
5360 }
5361
5362
wpas_p2p_join_start(struct wpa_supplicant * wpa_s,int freq,const u8 * ssid,size_t ssid_len)5363 static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s, int freq,
5364 const u8 *ssid, size_t ssid_len)
5365 {
5366 struct wpa_supplicant *group;
5367 struct p2p_go_neg_results res;
5368 struct wpa_bss *bss;
5369
5370 group = wpas_p2p_get_group_iface(wpa_s, 0, 0);
5371 if (group == NULL)
5372 return -1;
5373 if (group != wpa_s) {
5374 os_memcpy(group->p2p_pin, wpa_s->p2p_pin,
5375 sizeof(group->p2p_pin));
5376 group->p2p_wps_method = wpa_s->p2p_wps_method;
5377 }
5378
5379 /*
5380 * Need to mark the current interface for p2p_group_formation
5381 * when a separate group interface is not used. This is needed
5382 * to allow p2p_cancel stop a pending p2p_connect-join.
5383 * wpas_p2p_init_group_interface() addresses this for the case
5384 * where a separate group interface is used.
5385 */
5386 if (group == wpa_s->parent)
5387 wpa_s->global->p2p_group_formation = group;
5388
5389 group->p2p_in_provisioning = 1;
5390 group->p2p_fallback_to_go_neg = wpa_s->p2p_fallback_to_go_neg;
5391
5392 os_memset(&res, 0, sizeof(res));
5393 os_memcpy(res.peer_device_addr, wpa_s->pending_join_dev_addr, ETH_ALEN);
5394 os_memcpy(res.peer_interface_addr, wpa_s->pending_join_iface_addr,
5395 ETH_ALEN);
5396 res.wps_method = wpa_s->pending_join_wps_method;
5397 if (freq && ssid && ssid_len) {
5398 res.freq = freq;
5399 res.ssid_len = ssid_len;
5400 os_memcpy(res.ssid, ssid, ssid_len);
5401 } else {
5402 if (ssid && ssid_len) {
5403 bss = wpa_bss_get(wpa_s, wpa_s->pending_join_iface_addr,
5404 ssid, ssid_len);
5405 } else {
5406 bss = wpa_bss_get_bssid_latest(
5407 wpa_s, wpa_s->pending_join_iface_addr);
5408 }
5409 if (bss) {
5410 res.freq = bss->freq;
5411 res.ssid_len = bss->ssid_len;
5412 os_memcpy(res.ssid, bss->ssid, bss->ssid_len);
5413 wpa_printf(MSG_DEBUG, "P2P: Join target GO operating frequency from BSS table: %d MHz (SSID %s)",
5414 bss->freq,
5415 wpa_ssid_txt(bss->ssid, bss->ssid_len));
5416 } else if (ssid && ssid_len) {
5417 res.ssid_len = ssid_len;
5418 os_memcpy(res.ssid, ssid, ssid_len);
5419 wpa_printf(MSG_DEBUG, "P2P: Join target GO (SSID %s)",
5420 wpa_ssid_txt(ssid, ssid_len));
5421 }
5422 }
5423
5424 if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
5425 wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel prior to "
5426 "starting client");
5427 wpa_drv_cancel_remain_on_channel(wpa_s);
5428 wpa_s->off_channel_freq = 0;
5429 wpa_s->roc_waiting_drv_freq = 0;
5430 }
5431 wpas_start_wps_enrollee(group, &res);
5432
5433 /*
5434 * Allow a longer timeout for join-a-running-group than normal 15
5435 * second group formation timeout since the GO may not have authorized
5436 * our connection yet.
5437 */
5438 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
5439 eloop_register_timeout(60, 0, wpas_p2p_group_formation_timeout,
5440 wpa_s, NULL);
5441
5442 return 0;
5443 }
5444
5445
wpas_p2p_setup_freqs(struct wpa_supplicant * wpa_s,int freq,int * force_freq,int * pref_freq,int go,unsigned int * pref_freq_list,unsigned int * num_pref_freq)5446 static int wpas_p2p_setup_freqs(struct wpa_supplicant *wpa_s, int freq,
5447 int *force_freq, int *pref_freq, int go,
5448 unsigned int *pref_freq_list,
5449 unsigned int *num_pref_freq)
5450 {
5451 struct wpa_used_freq_data *freqs;
5452 int res, best_freq, num_unused;
5453 unsigned int freq_in_use = 0, num, i, max_pref_freq;
5454
5455 max_pref_freq = *num_pref_freq;
5456 *num_pref_freq = 0;
5457
5458 freqs = os_calloc(wpa_s->num_multichan_concurrent,
5459 sizeof(struct wpa_used_freq_data));
5460 if (!freqs)
5461 return -1;
5462
5463 num = wpas_p2p_valid_oper_freqs(wpa_s, freqs,
5464 wpa_s->num_multichan_concurrent);
5465
5466 /*
5467 * It is possible that the total number of used frequencies is bigger
5468 * than the number of frequencies used for P2P, so get the system wide
5469 * number of unused frequencies.
5470 */
5471 num_unused = wpas_p2p_num_unused_channels(wpa_s);
5472
5473 wpa_printf(MSG_DEBUG,
5474 "P2P: Setup freqs: freq=%d num_MCC=%d shared_freqs=%u num_unused=%d",
5475 freq, wpa_s->num_multichan_concurrent, num, num_unused);
5476
5477 if (freq > 0) {
5478 int ret;
5479 if (go)
5480 ret = p2p_supported_freq(wpa_s->global->p2p, freq);
5481 else
5482 ret = p2p_supported_freq_cli(wpa_s->global->p2p, freq);
5483 if (!ret) {
5484 if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) &&
5485 ieee80211_is_dfs(freq, wpa_s->hw.modes,
5486 wpa_s->hw.num_modes)) {
5487 /*
5488 * If freq is a DFS channel and DFS is offloaded
5489 * to the driver, allow P2P GO to use it.
5490 */
5491 wpa_printf(MSG_DEBUG,
5492 "P2P: The forced channel for GO (%u MHz) is DFS, and DFS is offloaded to the driver",
5493 freq);
5494 } else {
5495 wpa_printf(MSG_DEBUG,
5496 "P2P: The forced channel (%u MHz) is not supported for P2P uses",
5497 freq);
5498 res = -3;
5499 goto exit_free;
5500 }
5501 }
5502
5503 for (i = 0; i < num; i++) {
5504 if (freqs[i].freq == freq)
5505 freq_in_use = 1;
5506 }
5507
5508 if (num_unused <= 0 && !freq_in_use) {
5509 wpa_printf(MSG_DEBUG, "P2P: Cannot start P2P group on %u MHz as there are no available channels",
5510 freq);
5511 res = -2;
5512 goto exit_free;
5513 }
5514 wpa_printf(MSG_DEBUG, "P2P: Trying to force us to use the "
5515 "requested channel (%u MHz)", freq);
5516 *force_freq = freq;
5517 goto exit_ok;
5518 }
5519
5520 best_freq = wpas_p2p_pick_best_used_freq(wpa_s, freqs, num);
5521
5522 if (!wpa_s->conf->num_p2p_pref_chan && *pref_freq == 0) {
5523 enum wpa_driver_if_type iface_type;
5524
5525 if (go)
5526 iface_type = WPA_IF_P2P_GO;
5527 else
5528 iface_type = WPA_IF_P2P_CLIENT;
5529
5530 wpa_printf(MSG_DEBUG, "P2P: best_freq=%d, go=%d",
5531 best_freq, go);
5532
5533 res = wpa_drv_get_pref_freq_list(wpa_s, iface_type,
5534 &max_pref_freq,
5535 pref_freq_list);
5536 if (!res && max_pref_freq > 0) {
5537 *num_pref_freq = max_pref_freq;
5538 i = 0;
5539 while (i < *num_pref_freq &&
5540 (!p2p_supported_freq(wpa_s->global->p2p,
5541 pref_freq_list[i]) ||
5542 wpas_p2p_disallowed_freq(wpa_s->global,
5543 pref_freq_list[i]))) {
5544 wpa_printf(MSG_DEBUG,
5545 "P2P: preferred_freq_list[%d]=%d is disallowed",
5546 i, pref_freq_list[i]);
5547 i++;
5548 }
5549 if (i != *num_pref_freq) {
5550 best_freq = pref_freq_list[i];
5551 wpa_printf(MSG_DEBUG,
5552 "P2P: Using preferred_freq_list[%d]=%d",
5553 i, best_freq);
5554 } else {
5555 wpa_printf(MSG_DEBUG,
5556 "P2P: All driver preferred frequencies are disallowed for P2P use");
5557 *num_pref_freq = 0;
5558 }
5559 } else {
5560 wpa_printf(MSG_DEBUG,
5561 "P2P: No preferred frequency list available");
5562 }
5563 }
5564
5565 /* We have a candidate frequency to use */
5566 if (best_freq > 0) {
5567 if (*pref_freq == 0 && num_unused > 0) {
5568 wpa_printf(MSG_DEBUG, "P2P: Try to prefer a frequency (%u MHz) we are already using",
5569 best_freq);
5570 *pref_freq = best_freq;
5571 } else {
5572 wpa_printf(MSG_DEBUG, "P2P: Try to force us to use frequency (%u MHz) which is already in use",
5573 best_freq);
5574 *force_freq = best_freq;
5575 }
5576 } else if (num_unused > 0) {
5577 wpa_printf(MSG_DEBUG,
5578 "P2P: Current operating channels are not available for P2P. Try to use another channel");
5579 *force_freq = 0;
5580 } else {
5581 wpa_printf(MSG_DEBUG,
5582 "P2P: All channels are in use and none of them are P2P enabled. Cannot start P2P group");
5583 res = -2;
5584 goto exit_free;
5585 }
5586
5587 exit_ok:
5588 res = 0;
5589 exit_free:
5590 os_free(freqs);
5591 return res;
5592 }
5593
5594
5595 /**
5596 * wpas_p2p_connect - Request P2P Group Formation to be started
5597 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
5598 * @peer_addr: Address of the peer P2P Device
5599 * @pin: PIN to use during provisioning or %NULL to indicate PBC mode
5600 * @persistent_group: Whether to create a persistent group
5601 * @auto_join: Whether to select join vs. GO Negotiation automatically
5602 * @join: Whether to join an existing group (as a client) instead of starting
5603 * Group Owner negotiation; @peer_addr is BSSID in that case
5604 * @auth: Whether to only authorize the connection instead of doing that and
5605 * initiating Group Owner negotiation
5606 * @go_intent: GO Intent or -1 to use default
5607 * @freq: Frequency for the group or 0 for auto-selection
5608 * @freq2: Center frequency of segment 1 for the GO operating in VHT 80P80 mode
5609 * @persistent_id: Persistent group credentials to use for forcing GO
5610 * parameters or -1 to generate new values (SSID/passphrase)
5611 * @pd: Whether to send Provision Discovery prior to GO Negotiation as an
5612 * interoperability workaround when initiating group formation
5613 * @ht40: Start GO with 40 MHz channel width
5614 * @vht: Start GO with VHT support
5615 * @vht_chwidth: Channel width supported by GO operating with VHT support
5616 * (CHANWIDTH_*).
5617 * @group_ssid: Specific Group SSID for join or %NULL if not set
5618 * @group_ssid_len: Length of @group_ssid in octets
5619 * Returns: 0 or new PIN (if pin was %NULL) on success, -1 on unspecified
5620 * failure, -2 on failure due to channel not currently available,
5621 * -3 if forced channel is not supported
5622 */
wpas_p2p_connect(struct wpa_supplicant * wpa_s,const u8 * peer_addr,const char * pin,enum p2p_wps_method wps_method,int persistent_group,int auto_join,int join,int auth,int go_intent,int freq,unsigned int vht_center_freq2,int persistent_id,int pd,int ht40,int vht,unsigned int vht_chwidth,int he,int edmg,const u8 * group_ssid,size_t group_ssid_len)5623 int wpas_p2p_connect(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
5624 const char *pin, enum p2p_wps_method wps_method,
5625 int persistent_group, int auto_join, int join, int auth,
5626 int go_intent, int freq, unsigned int vht_center_freq2,
5627 int persistent_id, int pd, int ht40, int vht,
5628 unsigned int vht_chwidth, int he, int edmg,
5629 const u8 *group_ssid, size_t group_ssid_len)
5630 {
5631 int force_freq = 0, pref_freq = 0;
5632 int ret = 0, res;
5633 enum wpa_driver_if_type iftype;
5634 const u8 *if_addr;
5635 struct wpa_ssid *ssid = NULL;
5636 unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS], size;
5637
5638 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
5639 return -1;
5640
5641 if (persistent_id >= 0) {
5642 ssid = wpa_config_get_network(wpa_s->conf, persistent_id);
5643 if (ssid == NULL || ssid->disabled != 2 ||
5644 ssid->mode != WPAS_MODE_P2P_GO)
5645 return -1;
5646 }
5647
5648 os_free(wpa_s->global->add_psk);
5649 wpa_s->global->add_psk = NULL;
5650
5651 wpa_s->global->p2p_fail_on_wps_complete = 0;
5652 wpa_s->global->pending_p2ps_group = 0;
5653 wpa_s->global->pending_p2ps_group_freq = 0;
5654 wpa_s->p2ps_method_config_any = 0;
5655
5656 if (go_intent < 0)
5657 go_intent = wpa_s->conf->p2p_go_intent;
5658
5659 if (!auth)
5660 wpa_s->global->p2p_long_listen = 0;
5661
5662 wpa_s->p2p_wps_method = wps_method;
5663 wpa_s->p2p_persistent_group = !!persistent_group;
5664 wpa_s->p2p_persistent_id = persistent_id;
5665 wpa_s->p2p_go_intent = go_intent;
5666 wpa_s->p2p_connect_freq = freq;
5667 wpa_s->p2p_fallback_to_go_neg = 0;
5668 wpa_s->p2p_pd_before_go_neg = !!pd;
5669 wpa_s->p2p_go_ht40 = !!ht40;
5670 wpa_s->p2p_go_vht = !!vht;
5671 wpa_s->p2p_go_vht_center_freq2 = vht_center_freq2;
5672 wpa_s->p2p_go_max_oper_chwidth = vht_chwidth;
5673 wpa_s->p2p_go_he = !!he;
5674 wpa_s->p2p_go_edmg = !!edmg;
5675
5676 if (pin)
5677 os_strlcpy(wpa_s->p2p_pin, pin, sizeof(wpa_s->p2p_pin));
5678 else if (wps_method == WPS_PIN_DISPLAY) {
5679 if (wps_generate_pin((unsigned int *) &ret) < 0)
5680 return -1;
5681 res = os_snprintf(wpa_s->p2p_pin, sizeof(wpa_s->p2p_pin),
5682 "%08d", ret);
5683 if (os_snprintf_error(sizeof(wpa_s->p2p_pin), res))
5684 wpa_s->p2p_pin[sizeof(wpa_s->p2p_pin) - 1] = '\0';
5685 wpa_printf(MSG_DEBUG, "P2P: Randomly generated PIN: %s",
5686 wpa_s->p2p_pin);
5687 } else if (wps_method == WPS_P2PS) {
5688 /* Force the P2Ps default PIN to be used */
5689 os_strlcpy(wpa_s->p2p_pin, "12345670", sizeof(wpa_s->p2p_pin));
5690 } else
5691 wpa_s->p2p_pin[0] = '\0';
5692
5693 if (join || auto_join) {
5694 u8 iface_addr[ETH_ALEN], dev_addr[ETH_ALEN];
5695 if (auth) {
5696 wpa_printf(MSG_DEBUG, "P2P: Authorize invitation to "
5697 "connect a running group from " MACSTR,
5698 MAC2STR(peer_addr));
5699 os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
5700 return ret;
5701 }
5702 os_memcpy(dev_addr, peer_addr, ETH_ALEN);
5703 if (p2p_get_interface_addr(wpa_s->global->p2p, peer_addr,
5704 iface_addr) < 0) {
5705 os_memcpy(iface_addr, peer_addr, ETH_ALEN);
5706 p2p_get_dev_addr(wpa_s->global->p2p, peer_addr,
5707 dev_addr);
5708 }
5709 if (auto_join) {
5710 os_get_reltime(&wpa_s->p2p_auto_started);
5711 wpa_printf(MSG_DEBUG, "P2P: Auto join started at "
5712 "%ld.%06ld",
5713 wpa_s->p2p_auto_started.sec,
5714 wpa_s->p2p_auto_started.usec);
5715 }
5716 wpa_s->user_initiated_pd = 1;
5717 if (wpas_p2p_join(wpa_s, iface_addr, dev_addr, wps_method,
5718 auto_join, freq,
5719 group_ssid, group_ssid_len) < 0)
5720 return -1;
5721 return ret;
5722 }
5723
5724 size = P2P_MAX_PREF_CHANNELS;
5725 res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
5726 go_intent == 15, pref_freq_list, &size);
5727 if (res)
5728 return res;
5729 wpas_p2p_set_own_freq_preference(wpa_s,
5730 force_freq ? force_freq : pref_freq);
5731
5732 p2p_set_own_pref_freq_list(wpa_s->global->p2p, pref_freq_list, size);
5733
5734 wpa_s->create_p2p_iface = wpas_p2p_create_iface(wpa_s);
5735
5736 if (wpa_s->create_p2p_iface) {
5737 /* Prepare to add a new interface for the group */
5738 iftype = WPA_IF_P2P_GROUP;
5739 if (go_intent == 15)
5740 iftype = WPA_IF_P2P_GO;
5741 if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
5742 wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
5743 "interface for the group");
5744 return -1;
5745 }
5746
5747 if_addr = wpa_s->pending_interface_addr;
5748 } else {
5749 if (wpa_s->p2p_mgmt)
5750 if_addr = wpa_s->parent->own_addr;
5751 else
5752 if_addr = wpa_s->own_addr;
5753 os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
5754 }
5755
5756 if (auth) {
5757 if (wpas_p2p_auth_go_neg(wpa_s, peer_addr, wps_method,
5758 go_intent, if_addr,
5759 force_freq, persistent_group, ssid,
5760 pref_freq) < 0)
5761 return -1;
5762 return ret;
5763 }
5764
5765 if (wpas_p2p_start_go_neg(wpa_s, peer_addr, wps_method,
5766 go_intent, if_addr, force_freq,
5767 persistent_group, ssid, pref_freq) < 0) {
5768 if (wpa_s->create_p2p_iface)
5769 wpas_p2p_remove_pending_group_interface(wpa_s);
5770 return -1;
5771 }
5772 return ret;
5773 }
5774
5775
5776 /**
5777 * wpas_p2p_remain_on_channel_cb - Indication of remain-on-channel start
5778 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
5779 * @freq: Frequency of the channel in MHz
5780 * @duration: Duration of the stay on the channel in milliseconds
5781 *
5782 * This callback is called when the driver indicates that it has started the
5783 * requested remain-on-channel duration.
5784 */
wpas_p2p_remain_on_channel_cb(struct wpa_supplicant * wpa_s,unsigned int freq,unsigned int duration)5785 void wpas_p2p_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
5786 unsigned int freq, unsigned int duration)
5787 {
5788 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
5789 return;
5790 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)",
5791 wpa_s->off_channel_freq, wpa_s->pending_listen_freq,
5792 wpa_s->roc_waiting_drv_freq, freq, duration);
5793 if (wpa_s->off_channel_freq &&
5794 wpa_s->off_channel_freq == wpa_s->pending_listen_freq) {
5795 p2p_listen_cb(wpa_s->global->p2p, wpa_s->pending_listen_freq,
5796 wpa_s->pending_listen_duration);
5797 wpa_s->pending_listen_freq = 0;
5798 } else {
5799 wpa_printf(MSG_DEBUG, "P2P: Ignore remain-on-channel callback (off_channel_freq=%u pending_listen_freq=%d freq=%u duration=%u)",
5800 wpa_s->off_channel_freq, wpa_s->pending_listen_freq,
5801 freq, duration);
5802 }
5803 }
5804
5805
wpas_p2p_listen_start(struct wpa_supplicant * wpa_s,unsigned int timeout)5806 int wpas_p2p_listen_start(struct wpa_supplicant *wpa_s, unsigned int timeout)
5807 {
5808 /* Limit maximum Listen state time based on driver limitation. */
5809 if (timeout > wpa_s->max_remain_on_chan)
5810 timeout = wpa_s->max_remain_on_chan;
5811
5812 return p2p_listen(wpa_s->global->p2p, timeout);
5813 }
5814
5815
5816 /**
5817 * wpas_p2p_cancel_remain_on_channel_cb - Remain-on-channel timeout
5818 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
5819 * @freq: Frequency of the channel in MHz
5820 *
5821 * This callback is called when the driver indicates that a remain-on-channel
5822 * operation has been completed, i.e., the duration on the requested channel
5823 * has timed out.
5824 */
wpas_p2p_cancel_remain_on_channel_cb(struct wpa_supplicant * wpa_s,unsigned int freq)5825 void wpas_p2p_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
5826 unsigned int freq)
5827 {
5828 wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel callback "
5829 "(p2p_long_listen=%d ms pending_action_tx=%p)",
5830 wpa_s->global->p2p_long_listen,
5831 offchannel_pending_action_tx(wpa_s));
5832 wpas_p2p_listen_work_done(wpa_s);
5833 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
5834 return;
5835 if (wpa_s->global->p2p_long_listen > 0)
5836 wpa_s->global->p2p_long_listen -= wpa_s->max_remain_on_chan;
5837 if (p2p_listen_end(wpa_s->global->p2p, freq) > 0)
5838 return; /* P2P module started a new operation */
5839 if (offchannel_pending_action_tx(wpa_s))
5840 return;
5841 if (wpa_s->global->p2p_long_listen > 0) {
5842 wpa_printf(MSG_DEBUG, "P2P: Continuing long Listen state");
5843 wpas_p2p_listen_start(wpa_s, wpa_s->global->p2p_long_listen);
5844 } else {
5845 /*
5846 * When listen duration is over, stop listen & update p2p_state
5847 * to IDLE.
5848 */
5849 p2p_stop_listen(wpa_s->global->p2p);
5850 }
5851 }
5852
5853
5854 /**
5855 * wpas_p2p_group_remove - Remove a P2P group
5856 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
5857 * @ifname: Network interface name of the group interface or "*" to remove all
5858 * groups
5859 * Returns: 0 on success, -1 on failure
5860 *
5861 * This function is used to remove a P2P group. This can be used to disconnect
5862 * from a group in which the local end is a P2P Client or to end a P2P Group in
5863 * case the local end is the Group Owner. If a virtual network interface was
5864 * created for this group, that interface will be removed. Otherwise, only the
5865 * configured P2P group network will be removed from the interface.
5866 */
wpas_p2p_group_remove(struct wpa_supplicant * wpa_s,const char * ifname)5867 int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s, const char *ifname)
5868 {
5869 struct wpa_global *global = wpa_s->global;
5870 struct wpa_supplicant *calling_wpa_s = wpa_s;
5871
5872 if (os_strcmp(ifname, "*") == 0) {
5873 struct wpa_supplicant *prev;
5874 wpa_s = global->ifaces;
5875 while (wpa_s) {
5876 prev = wpa_s;
5877 wpa_s = wpa_s->next;
5878 if (prev->p2p_group_interface !=
5879 NOT_P2P_GROUP_INTERFACE ||
5880 (prev->current_ssid &&
5881 prev->current_ssid->p2p_group))
5882 wpas_p2p_disconnect_safely(prev, calling_wpa_s);
5883 }
5884 return 0;
5885 }
5886
5887 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
5888 if (os_strcmp(wpa_s->ifname, ifname) == 0)
5889 break;
5890 }
5891
5892 return wpas_p2p_disconnect_safely(wpa_s, calling_wpa_s);
5893 }
5894
5895
wpas_p2p_select_go_freq(struct wpa_supplicant * wpa_s,int freq)5896 static int wpas_p2p_select_go_freq(struct wpa_supplicant *wpa_s, int freq)
5897 {
5898 unsigned int r;
5899
5900 if (!wpa_s->conf->num_p2p_pref_chan && !freq) {
5901 unsigned int i, size = P2P_MAX_PREF_CHANNELS;
5902 unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS];
5903 int res;
5904
5905 res = wpa_drv_get_pref_freq_list(wpa_s, WPA_IF_P2P_GO,
5906 &size, pref_freq_list);
5907 if (!res && size > 0) {
5908 i = 0;
5909 while (i < size &&
5910 (!p2p_supported_freq(wpa_s->global->p2p,
5911 pref_freq_list[i]) ||
5912 wpas_p2p_disallowed_freq(wpa_s->global,
5913 pref_freq_list[i]))) {
5914 wpa_printf(MSG_DEBUG,
5915 "P2P: preferred_freq_list[%d]=%d is disallowed",
5916 i, pref_freq_list[i]);
5917 i++;
5918 }
5919 if (i != size) {
5920 freq = pref_freq_list[i];
5921 wpa_printf(MSG_DEBUG,
5922 "P2P: Using preferred_freq_list[%d]=%d",
5923 i, freq);
5924 } else {
5925 wpa_printf(MSG_DEBUG,
5926 "P2P: All driver preferred frequencies are disallowed for P2P use");
5927 }
5928 } else {
5929 wpa_printf(MSG_DEBUG,
5930 "P2P: No preferred frequency list available");
5931 }
5932 }
5933
5934 if (freq == 2) {
5935 wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 2.4 GHz "
5936 "band");
5937 if (wpa_s->best_24_freq > 0 &&
5938 p2p_supported_freq_go(wpa_s->global->p2p,
5939 wpa_s->best_24_freq)) {
5940 freq = wpa_s->best_24_freq;
5941 wpa_printf(MSG_DEBUG, "P2P: Use best 2.4 GHz band "
5942 "channel: %d MHz", freq);
5943 } else {
5944 if (os_get_random((u8 *) &r, sizeof(r)) < 0)
5945 return -1;
5946 freq = 2412 + (r % 3) * 25;
5947 wpa_printf(MSG_DEBUG, "P2P: Use random 2.4 GHz band "
5948 "channel: %d MHz", freq);
5949 }
5950 }
5951
5952 if (freq == 5) {
5953 wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 5 GHz "
5954 "band");
5955 if (wpa_s->best_5_freq > 0 &&
5956 p2p_supported_freq_go(wpa_s->global->p2p,
5957 wpa_s->best_5_freq)) {
5958 freq = wpa_s->best_5_freq;
5959 wpa_printf(MSG_DEBUG, "P2P: Use best 5 GHz band "
5960 "channel: %d MHz", freq);
5961 } else {
5962 if (os_get_random((u8 *) &r, sizeof(r)) < 0)
5963 return -1;
5964
5965 /*
5966 * most of 5G channels are DFS, only operating class 115 and 124
5967 * are available possibly, randomly pick a start to check them.
5968 */
5969 int possible_5g_freqs[] = {
5970 /* operating class 115 */
5971 5180, 5200, 5220, 5240,
5972 /* operating class 124 */
5973 5745, 5765, 5785, 5805,
5974 };
5975 int possible_5g_freqs_num =
5976 sizeof(possible_5g_freqs)/sizeof(possible_5g_freqs[0]);
5977
5978 int i;
5979 for (i = 0; i < possible_5g_freqs_num; i++, r++) {
5980 if (p2p_supported_freq_go(
5981 wpa_s->global->p2p,
5982 possible_5g_freqs[r % possible_5g_freqs_num])) {
5983 freq = possible_5g_freqs[r % possible_5g_freqs_num];
5984 break;
5985 }
5986 }
5987
5988 if (i >= possible_5g_freqs_num) {
5989 wpa_printf(MSG_DEBUG, "P2P: Could not select "
5990 "5 GHz channel for P2P group");
5991 return -1;
5992 }
5993 wpa_printf(MSG_DEBUG, "P2P: Use random 5 GHz band "
5994 "channel: %d MHz", freq);
5995 }
5996 }
5997
5998 if (freq > 0 && !p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
5999 if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) &&
6000 ieee80211_is_dfs(freq, wpa_s->hw.modes,
6001 wpa_s->hw.num_modes)) {
6002 /*
6003 * If freq is a DFS channel and DFS is offloaded to the
6004 * driver, allow P2P GO to use it.
6005 */
6006 wpa_printf(MSG_DEBUG, "P2P: "
6007 "%s: The forced channel for GO (%u MHz) is DFS, and DFS is offloaded",
6008 __func__, freq);
6009 return freq;
6010 }
6011 wpa_printf(MSG_DEBUG, "P2P: The forced channel for GO "
6012 "(%u MHz) is not supported for P2P uses",
6013 freq);
6014 return -1;
6015 }
6016
6017 return freq;
6018 }
6019
6020
wpas_p2p_supported_freq_go(struct wpa_supplicant * wpa_s,const struct p2p_channels * channels,int freq)6021 static int wpas_p2p_supported_freq_go(struct wpa_supplicant *wpa_s,
6022 const struct p2p_channels *channels,
6023 int freq)
6024 {
6025 if (!wpas_p2p_disallowed_freq(wpa_s->global, freq) &&
6026 p2p_supported_freq_go(wpa_s->global->p2p, freq) &&
6027 freq_included(wpa_s, channels, freq))
6028 return 1;
6029 return 0;
6030 }
6031
6032
wpas_p2p_select_go_freq_no_pref(struct wpa_supplicant * wpa_s,struct p2p_go_neg_results * params,const struct p2p_channels * channels)6033 static void wpas_p2p_select_go_freq_no_pref(struct wpa_supplicant *wpa_s,
6034 struct p2p_go_neg_results *params,
6035 const struct p2p_channels *channels)
6036 {
6037 unsigned int i, r;
6038
6039 /* try all channels in operating class 115 */
6040 for (i = 0; i < 4; i++) {
6041 params->freq = 5180 + i * 20;
6042 if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
6043 freq_included(wpa_s, channels, params->freq) &&
6044 p2p_supported_freq(wpa_s->global->p2p, params->freq))
6045 goto out;
6046 }
6047
6048 /* try all channels in operating class 124 */
6049 for (i = 0; i < 4; i++) {
6050 params->freq = 5745 + i * 20;
6051 if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
6052 freq_included(wpa_s, channels, params->freq) &&
6053 p2p_supported_freq(wpa_s->global->p2p, params->freq))
6054 goto out;
6055 }
6056
6057 /* try social channel class 180 channel 2 */
6058 params->freq = 58320 + 1 * 2160;
6059 if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
6060 freq_included(wpa_s, channels, params->freq) &&
6061 p2p_supported_freq(wpa_s->global->p2p, params->freq))
6062 goto out;
6063
6064 /* try all channels in reg. class 180 */
6065 for (i = 0; i < 4; i++) {
6066 params->freq = 58320 + i * 2160;
6067 if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
6068 freq_included(wpa_s, channels, params->freq) &&
6069 p2p_supported_freq(wpa_s->global->p2p, params->freq))
6070 goto out;
6071 }
6072
6073 /* try some random selection of the social channels */
6074 if (os_get_random((u8 *) &r, sizeof(r)) < 0)
6075 return;
6076
6077 for (i = 0; i < 3; i++) {
6078 params->freq = 2412 + ((r + i) % 3) * 25;
6079 if (wpas_p2p_supported_freq_go(wpa_s, channels, params->freq))
6080 goto out;
6081 }
6082
6083 /* try all other channels in operating class 81 */
6084 for (i = 0; i < 11; i++) {
6085 params->freq = 2412 + i * 5;
6086
6087 /* skip social channels; covered in the previous loop */
6088 if (params->freq == 2412 ||
6089 params->freq == 2437 ||
6090 params->freq == 2462)
6091 continue;
6092
6093 if (wpas_p2p_supported_freq_go(wpa_s, channels, params->freq))
6094 goto out;
6095 }
6096
6097 params->freq = 0;
6098 wpa_printf(MSG_DEBUG, "P2P: No 2.4, 5, or 60 GHz channel allowed");
6099 return;
6100 out:
6101 wpa_printf(MSG_DEBUG, "P2P: Set GO freq %d MHz (no preference known)",
6102 params->freq);
6103 }
6104
6105
wpas_same_band(int freq1,int freq2)6106 static int wpas_same_band(int freq1, int freq2)
6107 {
6108 enum hostapd_hw_mode mode1, mode2;
6109 u8 chan1, chan2;
6110
6111 mode1 = ieee80211_freq_to_chan(freq1, &chan1);
6112 mode2 = ieee80211_freq_to_chan(freq2, &chan2);
6113 if (mode1 == NUM_HOSTAPD_MODES)
6114 return 0;
6115 return mode1 == mode2;
6116 }
6117
6118
wpas_p2p_init_go_params(struct wpa_supplicant * wpa_s,struct p2p_go_neg_results * params,int freq,int vht_center_freq2,int ht40,int vht,int max_oper_chwidth,int he,int edmg,const struct p2p_channels * channels)6119 static int wpas_p2p_init_go_params(struct wpa_supplicant *wpa_s,
6120 struct p2p_go_neg_results *params,
6121 int freq, int vht_center_freq2, int ht40,
6122 int vht, int max_oper_chwidth, int he,
6123 int edmg,
6124 const struct p2p_channels *channels)
6125 {
6126 struct wpa_used_freq_data *freqs;
6127 unsigned int cand;
6128 unsigned int num, i;
6129 int ignore_no_freqs = 0;
6130 int unused_channels = wpas_p2p_num_unused_channels(wpa_s) > 0;
6131
6132 os_memset(params, 0, sizeof(*params));
6133 params->role_go = 1;
6134 params->ht40 = ht40;
6135 params->vht = vht;
6136 params->he = he;
6137 params->max_oper_chwidth = max_oper_chwidth;
6138 params->vht_center_freq2 = vht_center_freq2;
6139 params->edmg = edmg;
6140
6141 freqs = os_calloc(wpa_s->num_multichan_concurrent,
6142 sizeof(struct wpa_used_freq_data));
6143 if (!freqs)
6144 return -1;
6145
6146 num = get_shared_radio_freqs_data(wpa_s, freqs,
6147 wpa_s->num_multichan_concurrent);
6148
6149 if (wpa_s->current_ssid &&
6150 wpa_s->current_ssid->mode == WPAS_MODE_P2P_GO &&
6151 wpa_s->wpa_state == WPA_COMPLETED) {
6152 wpa_printf(MSG_DEBUG, "P2P: %s called for an active GO",
6153 __func__);
6154
6155 /*
6156 * If the frequency selection is done for an active P2P GO that
6157 * is not sharing a frequency, allow to select a new frequency
6158 * even if there are no unused frequencies as we are about to
6159 * move the P2P GO so its frequency can be re-used.
6160 */
6161 for (i = 0; i < num; i++) {
6162 if (freqs[i].freq == wpa_s->current_ssid->frequency &&
6163 freqs[i].flags == 0) {
6164 ignore_no_freqs = 1;
6165 break;
6166 }
6167 }
6168 }
6169
6170 /* Try to use EDMG channel */
6171 if (params->edmg) {
6172 if (wpas_p2p_try_edmg_channel(wpa_s, params) == 0)
6173 goto success;
6174 params->edmg = 0;
6175 }
6176
6177 /* try using the forced freq */
6178 if (freq) {
6179 if (wpas_p2p_disallowed_freq(wpa_s->global, freq) ||
6180 !freq_included(wpa_s, channels, freq)) {
6181 wpa_printf(MSG_DEBUG,
6182 "P2P: Forced GO freq %d MHz disallowed",
6183 freq);
6184 goto fail;
6185 }
6186 if (!p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
6187 if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) &&
6188 ieee80211_is_dfs(freq, wpa_s->hw.modes,
6189 wpa_s->hw.num_modes)) {
6190 /*
6191 * If freq is a DFS channel and DFS is offloaded
6192 * to the driver, allow P2P GO to use it.
6193 */
6194 wpa_printf(MSG_DEBUG,
6195 "P2P: %s: The forced channel for GO (%u MHz) requires DFS and DFS is offloaded",
6196 __func__, freq);
6197 } else {
6198 wpa_printf(MSG_DEBUG,
6199 "P2P: The forced channel for GO (%u MHz) is not supported for P2P uses",
6200 freq);
6201 goto fail;
6202 }
6203 }
6204
6205 for (i = 0; i < num; i++) {
6206 if (freqs[i].freq == freq) {
6207 wpa_printf(MSG_DEBUG,
6208 "P2P: forced freq (%d MHz) is also shared",
6209 freq);
6210 params->freq = freq;
6211 goto success;
6212 }
6213 }
6214
6215 if (!ignore_no_freqs && !unused_channels) {
6216 wpa_printf(MSG_DEBUG,
6217 "P2P: Cannot force GO on freq (%d MHz) as all the channels are in use",
6218 freq);
6219 goto fail;
6220 }
6221
6222 wpa_printf(MSG_DEBUG,
6223 "P2P: force GO freq (%d MHz) on a free channel",
6224 freq);
6225 params->freq = freq;
6226 goto success;
6227 }
6228
6229 /* consider using one of the shared frequencies */
6230 if (num &&
6231 (!wpa_s->conf->p2p_ignore_shared_freq || !unused_channels)) {
6232 cand = wpas_p2p_pick_best_used_freq(wpa_s, freqs, num);
6233 if (wpas_p2p_supported_freq_go(wpa_s, channels, cand)) {
6234 wpa_printf(MSG_DEBUG,
6235 "P2P: Use shared freq (%d MHz) for GO",
6236 cand);
6237 params->freq = cand;
6238 goto success;
6239 }
6240
6241 /* try using one of the shared freqs */
6242 for (i = 0; i < num; i++) {
6243 if (wpas_p2p_supported_freq_go(wpa_s, channels,
6244 freqs[i].freq)) {
6245 wpa_printf(MSG_DEBUG,
6246 "P2P: Use shared freq (%d MHz) for GO",
6247 freqs[i].freq);
6248 params->freq = freqs[i].freq;
6249 goto success;
6250 }
6251 }
6252 }
6253
6254 if (!ignore_no_freqs && !unused_channels) {
6255 wpa_printf(MSG_DEBUG,
6256 "P2P: Cannot force GO on any of the channels we are already using");
6257 goto fail;
6258 }
6259
6260 /* try using the setting from the configuration file */
6261 if (wpa_s->conf->p2p_oper_reg_class == 81 &&
6262 wpa_s->conf->p2p_oper_channel >= 1 &&
6263 wpa_s->conf->p2p_oper_channel <= 11 &&
6264 wpas_p2p_supported_freq_go(
6265 wpa_s, channels,
6266 2407 + 5 * wpa_s->conf->p2p_oper_channel)) {
6267 params->freq = 2407 + 5 * wpa_s->conf->p2p_oper_channel;
6268 wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on configured "
6269 "frequency %d MHz", params->freq);
6270 goto success;
6271 }
6272
6273 if ((wpa_s->conf->p2p_oper_reg_class == 115 ||
6274 wpa_s->conf->p2p_oper_reg_class == 116 ||
6275 wpa_s->conf->p2p_oper_reg_class == 117 ||
6276 wpa_s->conf->p2p_oper_reg_class == 124 ||
6277 wpa_s->conf->p2p_oper_reg_class == 125 ||
6278 wpa_s->conf->p2p_oper_reg_class == 126 ||
6279 wpa_s->conf->p2p_oper_reg_class == 127) &&
6280 wpas_p2p_supported_freq_go(wpa_s, channels,
6281 5000 +
6282 5 * wpa_s->conf->p2p_oper_channel)) {
6283 params->freq = 5000 + 5 * wpa_s->conf->p2p_oper_channel;
6284 wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on configured "
6285 "frequency %d MHz", params->freq);
6286 goto success;
6287 }
6288
6289 /* Try using best channels */
6290 if (wpa_s->conf->p2p_oper_channel == 0 &&
6291 wpa_s->best_overall_freq > 0 &&
6292 wpas_p2p_supported_freq_go(wpa_s, channels,
6293 wpa_s->best_overall_freq)) {
6294 params->freq = wpa_s->best_overall_freq;
6295 wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best overall "
6296 "channel %d MHz", params->freq);
6297 goto success;
6298 }
6299
6300 if (wpa_s->conf->p2p_oper_channel == 0 &&
6301 wpa_s->best_24_freq > 0 &&
6302 wpas_p2p_supported_freq_go(wpa_s, channels,
6303 wpa_s->best_24_freq)) {
6304 params->freq = wpa_s->best_24_freq;
6305 wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best 2.4 GHz "
6306 "channel %d MHz", params->freq);
6307 goto success;
6308 }
6309
6310 if (wpa_s->conf->p2p_oper_channel == 0 &&
6311 wpa_s->best_5_freq > 0 &&
6312 wpas_p2p_supported_freq_go(wpa_s, channels,
6313 wpa_s->best_5_freq)) {
6314 params->freq = wpa_s->best_5_freq;
6315 wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best 5 GHz "
6316 "channel %d MHz", params->freq);
6317 goto success;
6318 }
6319
6320 /* try using preferred channels */
6321 cand = p2p_get_pref_freq(wpa_s->global->p2p, channels);
6322 if (cand && wpas_p2p_supported_freq_go(wpa_s, channels, cand)) {
6323 params->freq = cand;
6324 wpa_printf(MSG_DEBUG, "P2P: Set GO freq %d MHz from preferred "
6325 "channels", params->freq);
6326 goto success;
6327 }
6328
6329 /* Try using a channel that allows VHT to be used with 80 MHz */
6330 if (wpa_s->hw.modes && wpa_s->p2p_group_common_freqs) {
6331 for (i = 0; i < wpa_s->p2p_group_common_freqs_num; i++) {
6332 enum hostapd_hw_mode mode;
6333 struct hostapd_hw_modes *hwmode;
6334 u8 chan;
6335
6336 cand = wpa_s->p2p_group_common_freqs[i];
6337 mode = ieee80211_freq_to_chan(cand, &chan);
6338 hwmode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes,
6339 mode, is_6ghz_freq(cand));
6340 if (!hwmode ||
6341 wpas_p2p_verify_channel(wpa_s, hwmode, chan,
6342 BW80) != ALLOWED)
6343 continue;
6344 if (wpas_p2p_supported_freq_go(wpa_s, channels, cand)) {
6345 params->freq = cand;
6346 wpa_printf(MSG_DEBUG,
6347 "P2P: Use freq %d MHz common with the peer and allowing VHT80",
6348 params->freq);
6349 goto success;
6350 }
6351 }
6352 }
6353
6354 /* Try using a channel that allows HT to be used with 40 MHz on the same
6355 * band so that CSA can be used */
6356 if (wpa_s->current_ssid && wpa_s->hw.modes &&
6357 wpa_s->p2p_group_common_freqs) {
6358 for (i = 0; i < wpa_s->p2p_group_common_freqs_num; i++) {
6359 enum hostapd_hw_mode mode;
6360 struct hostapd_hw_modes *hwmode;
6361 u8 chan;
6362
6363 cand = wpa_s->p2p_group_common_freqs[i];
6364 mode = ieee80211_freq_to_chan(cand, &chan);
6365 hwmode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes,
6366 mode, is_6ghz_freq(cand));
6367 if (!wpas_same_band(wpa_s->current_ssid->frequency,
6368 cand) ||
6369 !hwmode ||
6370 (wpas_p2p_verify_channel(wpa_s, hwmode, chan,
6371 BW40MINUS) != ALLOWED &&
6372 wpas_p2p_verify_channel(wpa_s, hwmode, chan,
6373 BW40PLUS) != ALLOWED))
6374 continue;
6375 if (wpas_p2p_supported_freq_go(wpa_s, channels, cand)) {
6376 params->freq = cand;
6377 wpa_printf(MSG_DEBUG,
6378 "P2P: Use freq %d MHz common with the peer, allowing HT40, and maintaining same band",
6379 params->freq);
6380 goto success;
6381 }
6382 }
6383 }
6384
6385 /* Try using one of the group common freqs on the same band so that CSA
6386 * can be used */
6387 if (wpa_s->current_ssid && wpa_s->p2p_group_common_freqs) {
6388 for (i = 0; i < wpa_s->p2p_group_common_freqs_num; i++) {
6389 cand = wpa_s->p2p_group_common_freqs[i];
6390 if (!wpas_same_band(wpa_s->current_ssid->frequency,
6391 cand))
6392 continue;
6393 if (wpas_p2p_supported_freq_go(wpa_s, channels, cand)) {
6394 params->freq = cand;
6395 wpa_printf(MSG_DEBUG,
6396 "P2P: Use freq %d MHz common with the peer and maintaining same band",
6397 params->freq);
6398 goto success;
6399 }
6400 }
6401 }
6402
6403 /* Try using one of the group common freqs */
6404 if (wpa_s->p2p_group_common_freqs) {
6405 for (i = 0; i < wpa_s->p2p_group_common_freqs_num; i++) {
6406 cand = wpa_s->p2p_group_common_freqs[i];
6407 if (wpas_p2p_supported_freq_go(wpa_s, channels, cand)) {
6408 params->freq = cand;
6409 wpa_printf(MSG_DEBUG,
6410 "P2P: Use freq %d MHz common with the peer",
6411 params->freq);
6412 goto success;
6413 }
6414 }
6415 }
6416
6417 /* no preference, select some channel */
6418 wpas_p2p_select_go_freq_no_pref(wpa_s, params, channels);
6419
6420 if (params->freq == 0) {
6421 wpa_printf(MSG_DEBUG, "P2P: did not find a freq for GO use");
6422 goto fail;
6423 }
6424
6425 success:
6426 os_free(freqs);
6427 return 0;
6428 fail:
6429 os_free(freqs);
6430 return -1;
6431 }
6432
6433
6434 static struct wpa_supplicant *
wpas_p2p_get_group_iface(struct wpa_supplicant * wpa_s,int addr_allocated,int go)6435 wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
6436 int go)
6437 {
6438 struct wpa_supplicant *group_wpa_s;
6439
6440 if (!wpas_p2p_create_iface(wpa_s)) {
6441 if (wpa_s->p2p_mgmt) {
6442 /*
6443 * We may be called on the p2p_dev interface which
6444 * cannot be used for group operations, so always use
6445 * the primary interface.
6446 */
6447 wpa_s->parent->p2pdev = wpa_s;
6448 wpa_s = wpa_s->parent;
6449 }
6450 wpa_dbg(wpa_s, MSG_DEBUG,
6451 "P2P: Use primary interface for group operations");
6452 wpa_s->p2p_first_connection_timeout = 0;
6453 if (wpa_s != wpa_s->p2pdev)
6454 wpas_p2p_clone_config(wpa_s, wpa_s->p2pdev);
6455 return wpa_s;
6456 }
6457
6458 if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
6459 WPA_IF_P2P_CLIENT) < 0) {
6460 wpa_msg_global(wpa_s, MSG_ERROR,
6461 "P2P: Failed to add group interface");
6462 return NULL;
6463 }
6464 group_wpa_s = wpas_p2p_init_group_interface(wpa_s, go);
6465 if (group_wpa_s == NULL) {
6466 wpa_msg_global(wpa_s, MSG_ERROR,
6467 "P2P: Failed to initialize group interface");
6468 wpas_p2p_remove_pending_group_interface(wpa_s);
6469 return NULL;
6470 }
6471
6472 if (go && wpa_s->p2p_go_do_acs) {
6473 group_wpa_s->p2p_go_do_acs = wpa_s->p2p_go_do_acs;
6474 group_wpa_s->p2p_go_acs_band = wpa_s->p2p_go_acs_band;
6475 wpa_s->p2p_go_do_acs = 0;
6476 }
6477
6478 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use separate group interface %s",
6479 group_wpa_s->ifname);
6480 group_wpa_s->p2p_first_connection_timeout = 0;
6481 return group_wpa_s;
6482 }
6483
6484
6485 /**
6486 * wpas_p2p_group_add - Add a new P2P group with local end as Group Owner
6487 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
6488 * @persistent_group: Whether to create a persistent group
6489 * @freq: Frequency for the group or 0 to indicate no hardcoding
6490 * @vht_center_freq2: segment_1 center frequency for GO operating in VHT 80P80
6491 * @ht40: Start GO with 40 MHz channel width
6492 * @vht: Start GO with VHT support
6493 * @vht_chwidth: channel bandwidth for GO operating with VHT support
6494 * @edmg: Start GO with EDMG support
6495 * Returns: 0 on success, -1 on failure
6496 *
6497 * This function creates a new P2P group with the local end as the Group Owner,
6498 * i.e., without using Group Owner Negotiation.
6499 */
wpas_p2p_group_add(struct wpa_supplicant * wpa_s,int persistent_group,int freq,int vht_center_freq2,int ht40,int vht,int max_oper_chwidth,int he,int edmg)6500 int wpas_p2p_group_add(struct wpa_supplicant *wpa_s, int persistent_group,
6501 int freq, int vht_center_freq2, int ht40, int vht,
6502 int max_oper_chwidth, int he, int edmg)
6503 {
6504 struct p2p_go_neg_results params;
6505
6506 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
6507 return -1;
6508
6509 os_free(wpa_s->global->add_psk);
6510 wpa_s->global->add_psk = NULL;
6511
6512 /* Make sure we are not running find during connection establishment */
6513 wpa_printf(MSG_DEBUG, "P2P: Stop any on-going P2P FIND");
6514 wpas_p2p_stop_find_oper(wpa_s);
6515
6516 if (!wpa_s->p2p_go_do_acs) {
6517 freq = wpas_p2p_select_go_freq(wpa_s, freq);
6518 if (freq < 0)
6519 return -1;
6520 }
6521
6522 if (wpas_p2p_init_go_params(wpa_s, ¶ms, freq, vht_center_freq2,
6523 ht40, vht, max_oper_chwidth, he, edmg,
6524 NULL))
6525 return -1;
6526
6527 p2p_go_params(wpa_s->global->p2p, ¶ms);
6528 params.persistent_group = persistent_group;
6529
6530 wpa_s = wpas_p2p_get_group_iface(wpa_s, 0, 1);
6531 if (wpa_s == NULL)
6532 return -1;
6533 wpas_start_wps_go(wpa_s, ¶ms, 0);
6534
6535 return 0;
6536 }
6537
6538
wpas_start_p2p_client(struct wpa_supplicant * wpa_s,struct wpa_ssid * params,int addr_allocated,int freq,int force_scan)6539 static int wpas_start_p2p_client(struct wpa_supplicant *wpa_s,
6540 struct wpa_ssid *params, int addr_allocated,
6541 int freq, int force_scan)
6542 {
6543 struct wpa_ssid *ssid;
6544
6545 wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 0);
6546 if (wpa_s == NULL)
6547 return -1;
6548 if (force_scan)
6549 os_get_reltime(&wpa_s->scan_min_time);
6550 wpa_s->p2p_last_4way_hs_fail = NULL;
6551
6552 wpa_supplicant_ap_deinit(wpa_s);
6553
6554 ssid = wpa_config_add_network(wpa_s->conf);
6555 if (ssid == NULL)
6556 return -1;
6557 os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
6558 wpa_config_set_network_defaults(ssid);
6559 ssid->temporary = 1;
6560 ssid->proto = WPA_PROTO_RSN;
6561 ssid->pbss = params->pbss;
6562 ssid->pairwise_cipher = params->pbss ? WPA_CIPHER_GCMP :
6563 WPA_CIPHER_CCMP;
6564 ssid->group_cipher = params->pbss ? WPA_CIPHER_GCMP : WPA_CIPHER_CCMP;
6565 ssid->key_mgmt = WPA_KEY_MGMT_PSK;
6566 ssid->ssid = os_malloc(params->ssid_len);
6567 if (ssid->ssid == NULL) {
6568 wpa_config_remove_network(wpa_s->conf, ssid->id);
6569 return -1;
6570 }
6571 os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
6572 ssid->ssid_len = params->ssid_len;
6573 ssid->p2p_group = 1;
6574 ssid->export_keys = 1;
6575 if (params->psk_set) {
6576 os_memcpy(ssid->psk, params->psk, 32);
6577 ssid->psk_set = 1;
6578 }
6579 if (params->passphrase)
6580 ssid->passphrase = os_strdup(params->passphrase);
6581
6582 wpa_s->show_group_started = 1;
6583 wpa_s->p2p_in_invitation = 1;
6584 wpa_s->p2p_invite_go_freq = freq;
6585 wpa_s->p2p_go_group_formation_completed = 0;
6586 wpa_s->global->p2p_group_formation = wpa_s;
6587
6588 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s->p2pdev,
6589 NULL);
6590 eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
6591 wpas_p2p_group_formation_timeout,
6592 wpa_s->p2pdev, NULL);
6593 wpa_supplicant_select_network(wpa_s, ssid);
6594
6595 return 0;
6596 }
6597
6598
wpas_p2p_group_add_persistent(struct wpa_supplicant * wpa_s,struct wpa_ssid * ssid,int addr_allocated,int force_freq,int neg_freq,int vht_center_freq2,int ht40,int vht,int max_oper_chwidth,int he,int edmg,const struct p2p_channels * channels,int connection_timeout,int force_scan)6599 int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
6600 struct wpa_ssid *ssid, int addr_allocated,
6601 int force_freq, int neg_freq,
6602 int vht_center_freq2, int ht40,
6603 int vht, int max_oper_chwidth, int he,
6604 int edmg,
6605 const struct p2p_channels *channels,
6606 int connection_timeout, int force_scan)
6607 {
6608 struct p2p_go_neg_results params;
6609 int go = 0, freq;
6610
6611 if (ssid->disabled != 2 || ssid->ssid == NULL)
6612 return -1;
6613
6614 if (wpas_get_p2p_group(wpa_s, ssid->ssid, ssid->ssid_len, &go) &&
6615 go == (ssid->mode == WPAS_MODE_P2P_GO)) {
6616 wpa_printf(MSG_DEBUG, "P2P: Requested persistent group is "
6617 "already running");
6618 if (go == 0 &&
6619 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
6620 wpa_s->p2pdev, NULL)) {
6621 /*
6622 * This can happen if Invitation Response frame was lost
6623 * and the peer (GO of a persistent group) tries to
6624 * invite us again. Reschedule the timeout to avoid
6625 * terminating the wait for the connection too early
6626 * since we now know that the peer is still trying to
6627 * invite us instead of having already started the GO.
6628 */
6629 wpa_printf(MSG_DEBUG,
6630 "P2P: Reschedule group formation timeout since peer is still trying to invite us");
6631 eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
6632 wpas_p2p_group_formation_timeout,
6633 wpa_s->p2pdev, NULL);
6634 }
6635 return 0;
6636 }
6637
6638 os_free(wpa_s->global->add_psk);
6639 wpa_s->global->add_psk = NULL;
6640
6641 /* Make sure we are not running find during connection establishment */
6642 wpas_p2p_stop_find_oper(wpa_s);
6643
6644 wpa_s->p2p_fallback_to_go_neg = 0;
6645
6646 if (ssid->mode == WPAS_MODE_P2P_GO) {
6647 if (force_freq > 0) {
6648 freq = wpas_p2p_select_go_freq(wpa_s, force_freq);
6649 if (freq < 0)
6650 return -1;
6651 } else {
6652 freq = wpas_p2p_select_go_freq(wpa_s, neg_freq);
6653 if (freq < 0 ||
6654 (freq > 0 && !freq_included(wpa_s, channels, freq)))
6655 freq = 0;
6656 }
6657 } else if (ssid->mode == WPAS_MODE_INFRA) {
6658 freq = neg_freq;
6659 if (freq <= 0 || !freq_included(wpa_s, channels, freq)) {
6660 struct os_reltime now;
6661 struct wpa_bss *bss =
6662 wpa_bss_get_p2p_dev_addr(wpa_s, ssid->bssid);
6663
6664 os_get_reltime(&now);
6665 if (bss &&
6666 !os_reltime_expired(&now, &bss->last_update, 5) &&
6667 freq_included(wpa_s, channels, bss->freq))
6668 freq = bss->freq;
6669 else
6670 freq = 0;
6671 }
6672
6673 return wpas_start_p2p_client(wpa_s, ssid, addr_allocated, freq,
6674 force_scan);
6675 } else {
6676 return -1;
6677 }
6678
6679 if (wpas_p2p_init_go_params(wpa_s, ¶ms, freq, vht_center_freq2,
6680 ht40, vht, max_oper_chwidth, he, edmg,
6681 channels))
6682 return -1;
6683
6684 params.role_go = 1;
6685 params.psk_set = ssid->psk_set;
6686 if (params.psk_set)
6687 os_memcpy(params.psk, ssid->psk, sizeof(params.psk));
6688 if (ssid->passphrase) {
6689 if (os_strlen(ssid->passphrase) >= sizeof(params.passphrase)) {
6690 wpa_printf(MSG_ERROR, "P2P: Invalid passphrase in "
6691 "persistent group");
6692 return -1;
6693 }
6694 os_strlcpy(params.passphrase, ssid->passphrase,
6695 sizeof(params.passphrase));
6696 }
6697 os_memcpy(params.ssid, ssid->ssid, ssid->ssid_len);
6698 params.ssid_len = ssid->ssid_len;
6699 params.persistent_group = 1;
6700
6701 wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 1);
6702 if (wpa_s == NULL)
6703 return -1;
6704
6705 p2p_channels_to_freqs(channels, params.freq_list, P2P_MAX_CHANNELS);
6706
6707 wpa_s->p2p_first_connection_timeout = connection_timeout;
6708 wpas_start_wps_go(wpa_s, ¶ms, 0);
6709
6710 return 0;
6711 }
6712
6713
wpas_p2p_ie_update(void * ctx,struct wpabuf * beacon_ies,struct wpabuf * proberesp_ies)6714 static void wpas_p2p_ie_update(void *ctx, struct wpabuf *beacon_ies,
6715 struct wpabuf *proberesp_ies)
6716 {
6717 struct wpa_supplicant *wpa_s = ctx;
6718 if (wpa_s->ap_iface) {
6719 struct hostapd_data *hapd = wpa_s->ap_iface->bss[0];
6720 if (!(hapd->conf->p2p & P2P_GROUP_OWNER)) {
6721 wpabuf_free(beacon_ies);
6722 wpabuf_free(proberesp_ies);
6723 return;
6724 }
6725 if (beacon_ies) {
6726 wpabuf_free(hapd->p2p_beacon_ie);
6727 hapd->p2p_beacon_ie = beacon_ies;
6728 }
6729 wpabuf_free(hapd->p2p_probe_resp_ie);
6730 hapd->p2p_probe_resp_ie = proberesp_ies;
6731 } else {
6732 wpabuf_free(beacon_ies);
6733 wpabuf_free(proberesp_ies);
6734 }
6735 wpa_supplicant_ap_update_beacon(wpa_s);
6736 }
6737
6738
wpas_p2p_idle_update(void * ctx,int idle)6739 static void wpas_p2p_idle_update(void *ctx, int idle)
6740 {
6741 struct wpa_supplicant *wpa_s = ctx;
6742 if (!wpa_s->ap_iface)
6743 return;
6744 wpa_printf(MSG_DEBUG, "P2P: GO - group %sidle", idle ? "" : "not ");
6745 if (idle) {
6746 if (wpa_s->global->p2p_fail_on_wps_complete &&
6747 wpa_s->p2p_in_provisioning) {
6748 wpas_p2p_grpform_fail_after_wps(wpa_s);
6749 return;
6750 }
6751 wpas_p2p_set_group_idle_timeout(wpa_s);
6752 } else
6753 eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
6754 }
6755
6756
wpas_p2p_group_init(struct wpa_supplicant * wpa_s,struct wpa_ssid * ssid)6757 struct p2p_group * wpas_p2p_group_init(struct wpa_supplicant *wpa_s,
6758 struct wpa_ssid *ssid)
6759 {
6760 struct p2p_group *group;
6761 struct p2p_group_config *cfg;
6762
6763 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL ||
6764 !ssid->p2p_group)
6765 return NULL;
6766
6767 cfg = os_zalloc(sizeof(*cfg));
6768 if (cfg == NULL)
6769 return NULL;
6770
6771 if (ssid->p2p_persistent_group && wpa_s->conf->persistent_reconnect)
6772 cfg->persistent_group = 2;
6773 else if (ssid->p2p_persistent_group)
6774 cfg->persistent_group = 1;
6775 os_memcpy(cfg->interface_addr, wpa_s->own_addr, ETH_ALEN);
6776 if (wpa_s->max_stations &&
6777 wpa_s->max_stations < wpa_s->conf->max_num_sta)
6778 cfg->max_clients = wpa_s->max_stations;
6779 else
6780 cfg->max_clients = wpa_s->conf->max_num_sta;
6781 os_memcpy(cfg->ssid, ssid->ssid, ssid->ssid_len);
6782 cfg->ssid_len = ssid->ssid_len;
6783 cfg->freq = ssid->frequency;
6784 cfg->cb_ctx = wpa_s;
6785 cfg->ie_update = wpas_p2p_ie_update;
6786 cfg->idle_update = wpas_p2p_idle_update;
6787 cfg->ip_addr_alloc = WPA_GET_BE32(wpa_s->p2pdev->conf->ip_addr_start)
6788 != 0;
6789
6790 group = p2p_group_init(wpa_s->global->p2p, cfg);
6791 if (group == NULL)
6792 os_free(cfg);
6793 if (ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION)
6794 p2p_group_notif_formation_done(group);
6795 wpa_s->p2p_group = group;
6796 return group;
6797 }
6798
6799
wpas_p2p_wps_success(struct wpa_supplicant * wpa_s,const u8 * peer_addr,int registrar)6800 void wpas_p2p_wps_success(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
6801 int registrar)
6802 {
6803 struct wpa_ssid *ssid = wpa_s->current_ssid;
6804
6805 if (!wpa_s->p2p_in_provisioning) {
6806 wpa_printf(MSG_DEBUG, "P2P: Ignore WPS success event - P2P "
6807 "provisioning not in progress");
6808 return;
6809 }
6810
6811 if (ssid && ssid->mode == WPAS_MODE_INFRA) {
6812 u8 go_dev_addr[ETH_ALEN];
6813 os_memcpy(go_dev_addr, wpa_s->bssid, ETH_ALEN);
6814 wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
6815 ssid->ssid_len);
6816 /* Clear any stored provisioning info */
6817 p2p_clear_provisioning_info(wpa_s->global->p2p, go_dev_addr);
6818 }
6819
6820 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s->p2pdev,
6821 NULL);
6822 wpa_s->p2p_go_group_formation_completed = 1;
6823 if (ssid && ssid->mode == WPAS_MODE_INFRA) {
6824 /*
6825 * Use a separate timeout for initial data connection to
6826 * complete to allow the group to be removed automatically if
6827 * something goes wrong in this step before the P2P group idle
6828 * timeout mechanism is taken into use.
6829 */
6830 wpa_dbg(wpa_s, MSG_DEBUG,
6831 "P2P: Re-start group formation timeout (%d seconds) as client for initial connection",
6832 P2P_MAX_INITIAL_CONN_WAIT);
6833 eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
6834 wpas_p2p_group_formation_timeout,
6835 wpa_s->p2pdev, NULL);
6836 /* Complete group formation on successful data connection. */
6837 wpa_s->p2p_go_group_formation_completed = 0;
6838 } else if (ssid) {
6839 /*
6840 * Use a separate timeout for initial data connection to
6841 * complete to allow the group to be removed automatically if
6842 * the client does not complete data connection successfully.
6843 */
6844 wpa_dbg(wpa_s, MSG_DEBUG,
6845 "P2P: Re-start group formation timeout (%d seconds) as GO for initial connection",
6846 P2P_MAX_INITIAL_CONN_WAIT_GO);
6847 eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT_GO, 0,
6848 wpas_p2p_group_formation_timeout,
6849 wpa_s->p2pdev, NULL);
6850 /*
6851 * Complete group formation on first successful data connection
6852 */
6853 wpa_s->p2p_go_group_formation_completed = 0;
6854 }
6855 if (wpa_s->global->p2p)
6856 p2p_wps_success_cb(wpa_s->global->p2p, peer_addr);
6857 wpas_group_formation_completed(wpa_s, 1, 0);
6858 }
6859
6860
wpas_p2p_wps_failed(struct wpa_supplicant * wpa_s,struct wps_event_fail * fail)6861 void wpas_p2p_wps_failed(struct wpa_supplicant *wpa_s,
6862 struct wps_event_fail *fail)
6863 {
6864 if (!wpa_s->p2p_in_provisioning) {
6865 wpa_printf(MSG_DEBUG, "P2P: Ignore WPS fail event - P2P "
6866 "provisioning not in progress");
6867 return;
6868 }
6869
6870 if (wpa_s->go_params) {
6871 p2p_clear_provisioning_info(
6872 wpa_s->global->p2p,
6873 wpa_s->go_params->peer_device_addr);
6874 }
6875
6876 wpas_notify_p2p_wps_failed(wpa_s, fail);
6877
6878 if (wpa_s == wpa_s->global->p2p_group_formation) {
6879 /*
6880 * Allow some time for the failed WPS negotiation exchange to
6881 * complete, but remove the group since group formation cannot
6882 * succeed after provisioning failure.
6883 */
6884 wpa_printf(MSG_DEBUG, "P2P: WPS step failed during group formation - reject connection from timeout");
6885 wpa_s->global->p2p_fail_on_wps_complete = 1;
6886 eloop_deplete_timeout(0, 50000,
6887 wpas_p2p_group_formation_timeout,
6888 wpa_s->p2pdev, NULL);
6889 }
6890 }
6891
6892
wpas_p2p_wps_eapol_cb(struct wpa_supplicant * wpa_s)6893 int wpas_p2p_wps_eapol_cb(struct wpa_supplicant *wpa_s)
6894 {
6895 if (!wpa_s->global->p2p_fail_on_wps_complete ||
6896 !wpa_s->p2p_in_provisioning)
6897 return 0;
6898
6899 wpas_p2p_grpform_fail_after_wps(wpa_s);
6900
6901 return 1;
6902 }
6903
6904
wpas_p2p_prov_disc(struct wpa_supplicant * wpa_s,const u8 * peer_addr,const char * config_method,enum wpas_p2p_prov_disc_use use,struct p2ps_provision * p2ps_prov)6905 int wpas_p2p_prov_disc(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
6906 const char *config_method,
6907 enum wpas_p2p_prov_disc_use use,
6908 struct p2ps_provision *p2ps_prov)
6909 {
6910 u16 config_methods;
6911
6912 wpa_s->global->pending_p2ps_group = 0;
6913 wpa_s->global->pending_p2ps_group_freq = 0;
6914 wpa_s->p2p_fallback_to_go_neg = 0;
6915 wpa_s->pending_pd_use = NORMAL_PD;
6916 if (p2ps_prov && use == WPAS_P2P_PD_FOR_ASP) {
6917 p2ps_prov->conncap = p2ps_group_capability(
6918 wpa_s, P2PS_SETUP_NONE, p2ps_prov->role,
6919 &p2ps_prov->force_freq, &p2ps_prov->pref_freq);
6920
6921 wpa_printf(MSG_DEBUG,
6922 "P2P: %s conncap: %d - ASP parsed: %x %x %d %s",
6923 __func__, p2ps_prov->conncap,
6924 p2ps_prov->adv_id, p2ps_prov->conncap,
6925 p2ps_prov->status, p2ps_prov->info);
6926
6927 config_methods = 0;
6928 } else if (os_strncmp(config_method, "display", 7) == 0)
6929 config_methods = WPS_CONFIG_DISPLAY;
6930 else if (os_strncmp(config_method, "keypad", 6) == 0)
6931 config_methods = WPS_CONFIG_KEYPAD;
6932 else if (os_strncmp(config_method, "pbc", 3) == 0 ||
6933 os_strncmp(config_method, "pushbutton", 10) == 0)
6934 config_methods = WPS_CONFIG_PUSHBUTTON;
6935 else {
6936 wpa_printf(MSG_DEBUG, "P2P: Unknown config method");
6937 os_free(p2ps_prov);
6938 return -1;
6939 }
6940
6941 if (use == WPAS_P2P_PD_AUTO) {
6942 os_memcpy(wpa_s->pending_join_dev_addr, peer_addr, ETH_ALEN);
6943 wpa_s->pending_pd_config_methods = config_methods;
6944 wpa_s->p2p_auto_pd = 1;
6945 wpa_s->p2p_auto_join = 0;
6946 wpa_s->pending_pd_before_join = 0;
6947 wpa_s->auto_pd_scan_retry = 0;
6948 wpas_p2p_stop_find(wpa_s);
6949 wpa_s->p2p_join_scan_count = 0;
6950 os_get_reltime(&wpa_s->p2p_auto_started);
6951 wpa_printf(MSG_DEBUG, "P2P: Auto PD started at %ld.%06ld",
6952 wpa_s->p2p_auto_started.sec,
6953 wpa_s->p2p_auto_started.usec);
6954 wpas_p2p_join_scan(wpa_s, NULL);
6955 return 0;
6956 }
6957
6958 if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled) {
6959 os_free(p2ps_prov);
6960 return -1;
6961 }
6962
6963 return p2p_prov_disc_req(wpa_s->global->p2p, peer_addr, p2ps_prov,
6964 config_methods, use == WPAS_P2P_PD_FOR_JOIN,
6965 0, 1);
6966 }
6967
6968
wpas_p2p_scan_result_text(const u8 * ies,size_t ies_len,char * buf,char * end)6969 int wpas_p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
6970 char *end)
6971 {
6972 return p2p_scan_result_text(ies, ies_len, buf, end);
6973 }
6974
6975
wpas_p2p_clear_pending_action_tx(struct wpa_supplicant * wpa_s)6976 static void wpas_p2p_clear_pending_action_tx(struct wpa_supplicant *wpa_s)
6977 {
6978 if (!offchannel_pending_action_tx(wpa_s))
6979 return;
6980
6981 if (wpa_s->p2p_send_action_work) {
6982 wpas_p2p_free_send_action_work(wpa_s);
6983 eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
6984 wpa_s, NULL);
6985 offchannel_send_action_done(wpa_s);
6986 }
6987
6988 wpa_printf(MSG_DEBUG, "P2P: Drop pending Action TX due to new "
6989 "operation request");
6990 offchannel_clear_pending_action_tx(wpa_s);
6991 }
6992
6993
wpas_p2p_find(struct wpa_supplicant * wpa_s,unsigned int timeout,enum p2p_discovery_type type,unsigned int num_req_dev_types,const u8 * req_dev_types,const u8 * dev_id,unsigned int search_delay,u8 seek_cnt,const char ** seek_string,int freq)6994 int wpas_p2p_find(struct wpa_supplicant *wpa_s, unsigned int timeout,
6995 enum p2p_discovery_type type,
6996 unsigned int num_req_dev_types, const u8 *req_dev_types,
6997 const u8 *dev_id, unsigned int search_delay,
6998 u8 seek_cnt, const char **seek_string, int freq)
6999 {
7000 wpas_p2p_clear_pending_action_tx(wpa_s);
7001 wpa_s->global->p2p_long_listen = 0;
7002
7003 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL ||
7004 wpa_s->p2p_in_provisioning) {
7005 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Reject p2p_find operation%s%s",
7006 (wpa_s->global->p2p_disabled || !wpa_s->global->p2p) ?
7007 " (P2P disabled)" : "",
7008 wpa_s->p2p_in_provisioning ?
7009 " (p2p_in_provisioning)" : "");
7010 return -1;
7011 }
7012
7013 wpa_supplicant_cancel_sched_scan(wpa_s);
7014
7015 return p2p_find(wpa_s->global->p2p, timeout, type,
7016 num_req_dev_types, req_dev_types, dev_id,
7017 search_delay, seek_cnt, seek_string, freq);
7018 }
7019
7020
wpas_p2p_scan_res_ignore_search(struct wpa_supplicant * wpa_s,struct wpa_scan_results * scan_res)7021 static void wpas_p2p_scan_res_ignore_search(struct wpa_supplicant *wpa_s,
7022 struct wpa_scan_results *scan_res)
7023 {
7024 wpa_printf(MSG_DEBUG, "P2P: Ignore scan results");
7025
7026 if (wpa_s->p2p_scan_work) {
7027 struct wpa_radio_work *work = wpa_s->p2p_scan_work;
7028 wpa_s->p2p_scan_work = NULL;
7029 radio_work_done(work);
7030 }
7031
7032 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7033 return;
7034
7035 /*
7036 * Indicate that results have been processed so that the P2P module can
7037 * continue pending tasks.
7038 */
7039 p2p_scan_res_handled(wpa_s->global->p2p);
7040 }
7041
7042
wpas_p2p_stop_find_oper(struct wpa_supplicant * wpa_s)7043 static void wpas_p2p_stop_find_oper(struct wpa_supplicant *wpa_s)
7044 {
7045 wpas_p2p_clear_pending_action_tx(wpa_s);
7046 wpa_s->global->p2p_long_listen = 0;
7047 eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
7048 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
7049
7050 if (wpa_s->global->p2p)
7051 p2p_stop_find(wpa_s->global->p2p);
7052
7053 if (wpa_s->scan_res_handler == wpas_p2p_scan_res_handler) {
7054 wpa_printf(MSG_DEBUG,
7055 "P2P: Do not consider the scan results after stop_find");
7056 wpa_s->scan_res_handler = wpas_p2p_scan_res_ignore_search;
7057 }
7058 }
7059
7060
wpas_p2p_stop_find(struct wpa_supplicant * wpa_s)7061 void wpas_p2p_stop_find(struct wpa_supplicant *wpa_s)
7062 {
7063 wpas_p2p_stop_find_oper(wpa_s);
7064 if (!wpa_s->global->pending_group_iface_for_p2ps)
7065 wpas_p2p_remove_pending_group_interface(wpa_s);
7066 }
7067
7068
wpas_p2p_long_listen_timeout(void * eloop_ctx,void * timeout_ctx)7069 static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx)
7070 {
7071 struct wpa_supplicant *wpa_s = eloop_ctx;
7072 wpa_s->global->p2p_long_listen = 0;
7073 }
7074
7075
wpas_p2p_listen(struct wpa_supplicant * wpa_s,unsigned int timeout)7076 int wpas_p2p_listen(struct wpa_supplicant *wpa_s, unsigned int timeout)
7077 {
7078 int res;
7079
7080 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7081 return -1;
7082
7083 if (wpa_s->p2p_lo_started) {
7084 wpa_printf(MSG_DEBUG,
7085 "P2P: Cannot start P2P listen, it is offloaded");
7086 return -1;
7087 }
7088
7089 wpa_supplicant_cancel_sched_scan(wpa_s);
7090 wpas_p2p_clear_pending_action_tx(wpa_s);
7091
7092 if (timeout == 0) {
7093 /*
7094 * This is a request for unlimited Listen state. However, at
7095 * least for now, this is mapped to a Listen state for one
7096 * hour.
7097 */
7098 timeout = 3600;
7099 }
7100 eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
7101 wpa_s->global->p2p_long_listen = 0;
7102
7103 /*
7104 * Stop previous find/listen operation to avoid trying to request a new
7105 * remain-on-channel operation while the driver is still running the
7106 * previous one.
7107 */
7108 if (wpa_s->global->p2p)
7109 p2p_stop_find(wpa_s->global->p2p);
7110
7111 res = wpas_p2p_listen_start(wpa_s, timeout * 1000);
7112 if (res == 0 && timeout * 1000 > wpa_s->max_remain_on_chan) {
7113 wpa_s->global->p2p_long_listen = timeout * 1000;
7114 eloop_register_timeout(timeout, 0,
7115 wpas_p2p_long_listen_timeout,
7116 wpa_s, NULL);
7117 }
7118
7119 return res;
7120 }
7121
7122
wpas_p2p_assoc_req_ie(struct wpa_supplicant * wpa_s,struct wpa_bss * bss,u8 * buf,size_t len,int p2p_group)7123 int wpas_p2p_assoc_req_ie(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
7124 u8 *buf, size_t len, int p2p_group)
7125 {
7126 struct wpabuf *p2p_ie;
7127 int ret;
7128
7129 if (wpa_s->global->p2p_disabled)
7130 return -1;
7131 /*
7132 * Advertize mandatory cross connection capability even on
7133 * p2p_disabled=1 interface when associating with a P2P Manager WLAN AP.
7134 */
7135 if (wpa_s->conf->p2p_disabled && p2p_group)
7136 return -1;
7137 if (wpa_s->global->p2p == NULL)
7138 return -1;
7139 if (bss == NULL)
7140 return -1;
7141
7142 p2p_ie = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
7143 ret = p2p_assoc_req_ie(wpa_s->global->p2p, bss->bssid, buf, len,
7144 p2p_group, p2p_ie);
7145 wpabuf_free(p2p_ie);
7146
7147 return ret;
7148 }
7149
7150
wpas_p2p_probe_req_rx(struct wpa_supplicant * wpa_s,const u8 * addr,const u8 * dst,const u8 * bssid,const u8 * ie,size_t ie_len,unsigned int rx_freq,int ssi_signal)7151 int wpas_p2p_probe_req_rx(struct wpa_supplicant *wpa_s, const u8 *addr,
7152 const u8 *dst, const u8 *bssid,
7153 const u8 *ie, size_t ie_len,
7154 unsigned int rx_freq, int ssi_signal)
7155 {
7156 if (wpa_s->global->p2p_disabled)
7157 return 0;
7158 if (wpa_s->global->p2p == NULL)
7159 return 0;
7160
7161 switch (p2p_probe_req_rx(wpa_s->global->p2p, addr, dst, bssid,
7162 ie, ie_len, rx_freq, wpa_s->p2p_lo_started)) {
7163 case P2P_PREQ_NOT_P2P:
7164 wpas_notify_preq(wpa_s, addr, dst, bssid, ie, ie_len,
7165 ssi_signal);
7166 /* fall through */
7167 case P2P_PREQ_MALFORMED:
7168 case P2P_PREQ_NOT_LISTEN:
7169 case P2P_PREQ_NOT_PROCESSED:
7170 default: /* make gcc happy */
7171 return 0;
7172 case P2P_PREQ_PROCESSED:
7173 return 1;
7174 }
7175 }
7176
7177
wpas_p2p_rx_action(struct wpa_supplicant * wpa_s,const u8 * da,const u8 * sa,const u8 * bssid,u8 category,const u8 * data,size_t len,int freq)7178 void wpas_p2p_rx_action(struct wpa_supplicant *wpa_s, const u8 *da,
7179 const u8 *sa, const u8 *bssid,
7180 u8 category, const u8 *data, size_t len, int freq)
7181 {
7182 if (wpa_s->global->p2p_disabled)
7183 return;
7184 if (wpa_s->global->p2p == NULL)
7185 return;
7186
7187 p2p_rx_action(wpa_s->global->p2p, da, sa, bssid, category, data, len,
7188 freq);
7189 }
7190
7191
wpas_p2p_scan_ie(struct wpa_supplicant * wpa_s,struct wpabuf * ies)7192 void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies)
7193 {
7194 unsigned int bands;
7195
7196 if (wpa_s->global->p2p_disabled)
7197 return;
7198 if (wpa_s->global->p2p == NULL)
7199 return;
7200
7201 bands = wpas_get_bands(wpa_s, NULL);
7202 p2p_scan_ie(wpa_s->global->p2p, ies, NULL, bands);
7203 }
7204
7205
wpas_p2p_group_deinit(struct wpa_supplicant * wpa_s)7206 static void wpas_p2p_group_deinit(struct wpa_supplicant *wpa_s)
7207 {
7208 p2p_group_deinit(wpa_s->p2p_group);
7209 wpa_s->p2p_group = NULL;
7210
7211 wpa_s->ap_configured_cb = NULL;
7212 wpa_s->ap_configured_cb_ctx = NULL;
7213 wpa_s->ap_configured_cb_data = NULL;
7214 wpa_s->connect_without_scan = NULL;
7215 }
7216
7217
wpas_p2p_reject(struct wpa_supplicant * wpa_s,const u8 * addr)7218 int wpas_p2p_reject(struct wpa_supplicant *wpa_s, const u8 *addr)
7219 {
7220 wpa_s->global->p2p_long_listen = 0;
7221
7222 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7223 return -1;
7224
7225 return p2p_reject(wpa_s->global->p2p, addr);
7226 }
7227
7228
7229 /* Invite to reinvoke a persistent group */
wpas_p2p_invite(struct wpa_supplicant * wpa_s,const u8 * peer_addr,struct wpa_ssid * ssid,const u8 * go_dev_addr,int freq,int vht_center_freq2,int ht40,int vht,int max_chwidth,int pref_freq,int he,int edmg)7230 int wpas_p2p_invite(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
7231 struct wpa_ssid *ssid, const u8 *go_dev_addr, int freq,
7232 int vht_center_freq2, int ht40, int vht, int max_chwidth,
7233 int pref_freq, int he, int edmg)
7234 {
7235 enum p2p_invite_role role;
7236 u8 *bssid = NULL;
7237 int force_freq = 0;
7238 int res;
7239 int no_pref_freq_given = pref_freq == 0;
7240 unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS], size;
7241
7242 wpa_s->global->p2p_invite_group = NULL;
7243 if (peer_addr)
7244 os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
7245 else
7246 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
7247
7248 wpa_s->p2p_persistent_go_freq = freq;
7249 wpa_s->p2p_go_ht40 = !!ht40;
7250 wpa_s->p2p_go_vht = !!vht;
7251 wpa_s->p2p_go_he = !!he;
7252 wpa_s->p2p_go_max_oper_chwidth = max_chwidth;
7253 wpa_s->p2p_go_vht_center_freq2 = vht_center_freq2;
7254 wpa_s->p2p_go_edmg = !!edmg;
7255 if (ssid->mode == WPAS_MODE_P2P_GO) {
7256 role = P2P_INVITE_ROLE_GO;
7257 if (peer_addr == NULL) {
7258 wpa_printf(MSG_DEBUG, "P2P: Missing peer "
7259 "address in invitation command");
7260 return -1;
7261 }
7262 if (wpas_p2p_create_iface(wpa_s)) {
7263 if (wpas_p2p_add_group_interface(wpa_s,
7264 WPA_IF_P2P_GO) < 0) {
7265 wpa_printf(MSG_ERROR, "P2P: Failed to "
7266 "allocate a new interface for the "
7267 "group");
7268 return -1;
7269 }
7270 bssid = wpa_s->pending_interface_addr;
7271 } else if (wpa_s->p2p_mgmt)
7272 bssid = wpa_s->parent->own_addr;
7273 else
7274 bssid = wpa_s->own_addr;
7275 } else {
7276 role = P2P_INVITE_ROLE_CLIENT;
7277 peer_addr = ssid->bssid;
7278 }
7279 wpa_s->pending_invite_ssid_id = ssid->id;
7280
7281 size = P2P_MAX_PREF_CHANNELS;
7282 res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
7283 role == P2P_INVITE_ROLE_GO,
7284 pref_freq_list, &size);
7285 if (res)
7286 return res;
7287
7288 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7289 return -1;
7290
7291 p2p_set_own_pref_freq_list(wpa_s->global->p2p, pref_freq_list, size);
7292
7293 if (wpa_s->parent->conf->p2p_ignore_shared_freq &&
7294 no_pref_freq_given && pref_freq > 0 &&
7295 wpa_s->num_multichan_concurrent > 1 &&
7296 wpas_p2p_num_unused_channels(wpa_s) > 0) {
7297 wpa_printf(MSG_DEBUG, "P2P: Ignore own channel preference %d MHz for invitation due to p2p_ignore_shared_freq=1 configuration",
7298 pref_freq);
7299 pref_freq = 0;
7300 }
7301
7302 /*
7303 * Stop any find/listen operations before invitation and possibly
7304 * connection establishment.
7305 */
7306 wpas_p2p_stop_find_oper(wpa_s);
7307
7308 return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
7309 ssid->ssid, ssid->ssid_len, force_freq, go_dev_addr,
7310 1, pref_freq, -1);
7311 }
7312
7313
7314 /* Invite to join an active group */
wpas_p2p_invite_group(struct wpa_supplicant * wpa_s,const char * ifname,const u8 * peer_addr,const u8 * go_dev_addr)7315 int wpas_p2p_invite_group(struct wpa_supplicant *wpa_s, const char *ifname,
7316 const u8 *peer_addr, const u8 *go_dev_addr)
7317 {
7318 struct wpa_global *global = wpa_s->global;
7319 enum p2p_invite_role role;
7320 u8 *bssid = NULL;
7321 struct wpa_ssid *ssid;
7322 int persistent;
7323 int freq = 0, force_freq = 0, pref_freq = 0;
7324 int res;
7325 unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS], size;
7326
7327 wpa_s->p2p_persistent_go_freq = 0;
7328 wpa_s->p2p_go_ht40 = 0;
7329 wpa_s->p2p_go_vht = 0;
7330 wpa_s->p2p_go_vht_center_freq2 = 0;
7331 wpa_s->p2p_go_max_oper_chwidth = 0;
7332 wpa_s->p2p_go_edmg = 0;
7333
7334 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
7335 if (os_strcmp(wpa_s->ifname, ifname) == 0)
7336 break;
7337 }
7338 if (wpa_s == NULL) {
7339 wpa_printf(MSG_DEBUG, "P2P: Interface '%s' not found", ifname);
7340 return -1;
7341 }
7342
7343 ssid = wpa_s->current_ssid;
7344 if (ssid == NULL) {
7345 wpa_printf(MSG_DEBUG, "P2P: No current SSID to use for "
7346 "invitation");
7347 return -1;
7348 }
7349
7350 wpa_s->global->p2p_invite_group = wpa_s;
7351 persistent = ssid->p2p_persistent_group &&
7352 wpas_p2p_get_persistent(wpa_s->p2pdev, peer_addr,
7353 ssid->ssid, ssid->ssid_len);
7354
7355 if (ssid->mode == WPAS_MODE_P2P_GO) {
7356 role = P2P_INVITE_ROLE_ACTIVE_GO;
7357 bssid = wpa_s->own_addr;
7358 if (go_dev_addr == NULL)
7359 go_dev_addr = wpa_s->global->p2p_dev_addr;
7360 freq = ssid->frequency;
7361 } else {
7362 role = P2P_INVITE_ROLE_CLIENT;
7363 if (wpa_s->wpa_state < WPA_ASSOCIATED) {
7364 wpa_printf(MSG_DEBUG, "P2P: Not associated - cannot "
7365 "invite to current group");
7366 return -1;
7367 }
7368 bssid = wpa_s->bssid;
7369 if (go_dev_addr == NULL &&
7370 !is_zero_ether_addr(wpa_s->go_dev_addr))
7371 go_dev_addr = wpa_s->go_dev_addr;
7372 freq = wpa_s->current_bss ? wpa_s->current_bss->freq :
7373 (int) wpa_s->assoc_freq;
7374 }
7375 wpa_s->p2pdev->pending_invite_ssid_id = -1;
7376
7377 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7378 return -1;
7379
7380 size = P2P_MAX_PREF_CHANNELS;
7381 res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
7382 role == P2P_INVITE_ROLE_ACTIVE_GO,
7383 pref_freq_list, &size);
7384 if (res)
7385 return res;
7386 wpas_p2p_set_own_freq_preference(wpa_s, force_freq);
7387
7388 return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
7389 ssid->ssid, ssid->ssid_len, force_freq,
7390 go_dev_addr, persistent, pref_freq, -1);
7391 }
7392
7393
wpas_p2p_completed(struct wpa_supplicant * wpa_s)7394 void wpas_p2p_completed(struct wpa_supplicant *wpa_s)
7395 {
7396 struct wpa_ssid *ssid = wpa_s->current_ssid;
7397 u8 go_dev_addr[ETH_ALEN];
7398 int persistent;
7399 int freq;
7400 u8 ip[3 * 4], *ip_ptr = NULL;
7401 char ip_addr[100];
7402
7403 if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION) {
7404 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
7405 wpa_s->p2pdev, NULL);
7406 }
7407
7408 if (!wpa_s->show_group_started || !ssid)
7409 return;
7410
7411 wpa_s->show_group_started = 0;
7412 if (!wpa_s->p2p_go_group_formation_completed &&
7413 wpa_s->global->p2p_group_formation == wpa_s) {
7414 wpa_dbg(wpa_s, MSG_DEBUG,
7415 "P2P: Marking group formation completed on client on data connection");
7416 wpa_s->p2p_go_group_formation_completed = 1;
7417 wpa_s->global->p2p_group_formation = NULL;
7418 wpa_s->p2p_in_provisioning = 0;
7419 wpa_s->p2p_in_invitation = 0;
7420 }
7421
7422 os_memset(go_dev_addr, 0, ETH_ALEN);
7423 if (ssid->bssid_set)
7424 os_memcpy(go_dev_addr, ssid->bssid, ETH_ALEN);
7425 persistent = wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
7426 ssid->ssid_len);
7427 os_memcpy(wpa_s->go_dev_addr, go_dev_addr, ETH_ALEN);
7428
7429 if (wpa_s->global->p2p_group_formation == wpa_s)
7430 wpa_s->global->p2p_group_formation = NULL;
7431
7432 freq = wpa_s->current_bss ? wpa_s->current_bss->freq :
7433 (int) wpa_s->assoc_freq;
7434
7435 ip_addr[0] = '\0';
7436 if (wpa_sm_get_p2p_ip_addr(wpa_s->wpa, ip) == 0) {
7437 int res;
7438
7439 res = os_snprintf(ip_addr, sizeof(ip_addr),
7440 " ip_addr=%u.%u.%u.%u "
7441 "ip_mask=%u.%u.%u.%u go_ip_addr=%u.%u.%u.%u",
7442 ip[0], ip[1], ip[2], ip[3],
7443 ip[4], ip[5], ip[6], ip[7],
7444 ip[8], ip[9], ip[10], ip[11]);
7445 if (os_snprintf_error(sizeof(ip_addr), res))
7446 ip_addr[0] = '\0';
7447 ip_ptr = ip;
7448 }
7449
7450 wpas_p2p_group_started(wpa_s, 0, ssid, freq,
7451 ssid->passphrase == NULL && ssid->psk_set ?
7452 ssid->psk : NULL,
7453 ssid->passphrase, go_dev_addr, persistent,
7454 ip_addr);
7455
7456 if (persistent)
7457 wpas_p2p_store_persistent_group(wpa_s->p2pdev,
7458 ssid, go_dev_addr);
7459
7460 wpas_notify_p2p_group_started(wpa_s, ssid, persistent, 1, ip_ptr);
7461 }
7462
7463
wpas_p2p_presence_req(struct wpa_supplicant * wpa_s,u32 duration1,u32 interval1,u32 duration2,u32 interval2)7464 int wpas_p2p_presence_req(struct wpa_supplicant *wpa_s, u32 duration1,
7465 u32 interval1, u32 duration2, u32 interval2)
7466 {
7467 int ret;
7468
7469 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7470 return -1;
7471
7472 if (wpa_s->wpa_state < WPA_ASSOCIATED ||
7473 wpa_s->current_ssid == NULL ||
7474 wpa_s->current_ssid->mode != WPAS_MODE_INFRA)
7475 return -1;
7476
7477 ret = p2p_presence_req(wpa_s->global->p2p, wpa_s->bssid,
7478 wpa_s->own_addr, wpa_s->assoc_freq,
7479 duration1, interval1, duration2, interval2);
7480 if (ret == 0)
7481 wpa_s->waiting_presence_resp = 1;
7482
7483 return ret;
7484 }
7485
7486
wpas_p2p_ext_listen(struct wpa_supplicant * wpa_s,unsigned int period,unsigned int interval)7487 int wpas_p2p_ext_listen(struct wpa_supplicant *wpa_s, unsigned int period,
7488 unsigned int interval)
7489 {
7490 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7491 return -1;
7492
7493 return p2p_ext_listen(wpa_s->global->p2p, period, interval);
7494 }
7495
7496
wpas_p2p_is_client(struct wpa_supplicant * wpa_s)7497 static int wpas_p2p_is_client(struct wpa_supplicant *wpa_s)
7498 {
7499 if (wpa_s->current_ssid == NULL) {
7500 /*
7501 * current_ssid can be cleared when P2P client interface gets
7502 * disconnected, so assume this interface was used as P2P
7503 * client.
7504 */
7505 return 1;
7506 }
7507 return wpa_s->current_ssid->p2p_group &&
7508 wpa_s->current_ssid->mode == WPAS_MODE_INFRA;
7509 }
7510
7511
wpas_p2p_group_idle_timeout(void * eloop_ctx,void * timeout_ctx)7512 static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx)
7513 {
7514 struct wpa_supplicant *wpa_s = eloop_ctx;
7515
7516 if (wpa_s->conf->p2p_group_idle == 0 && !wpas_p2p_is_client(wpa_s)) {
7517 wpa_printf(MSG_DEBUG, "P2P: Ignore group idle timeout - "
7518 "disabled");
7519 return;
7520 }
7521
7522 wpa_printf(MSG_DEBUG, "P2P: Group idle timeout reached - terminate "
7523 "group");
7524 wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_IDLE_TIMEOUT);
7525 }
7526
7527
wpas_p2p_set_group_idle_timeout(struct wpa_supplicant * wpa_s)7528 static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s)
7529 {
7530 int timeout;
7531
7532 if (eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
7533 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
7534
7535 if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
7536 return;
7537
7538 timeout = wpa_s->conf->p2p_group_idle;
7539 if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA &&
7540 (timeout == 0 || timeout > P2P_MAX_CLIENT_IDLE))
7541 timeout = P2P_MAX_CLIENT_IDLE;
7542
7543 if (timeout == 0)
7544 return;
7545
7546 if (timeout < 0) {
7547 if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA)
7548 timeout = 0; /* special client mode no-timeout */
7549 else
7550 return;
7551 }
7552
7553 if (wpa_s->p2p_in_provisioning) {
7554 /*
7555 * Use the normal group formation timeout during the
7556 * provisioning phase to avoid terminating this process too
7557 * early due to group idle timeout.
7558 */
7559 wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
7560 "during provisioning");
7561 return;
7562 }
7563
7564 if (wpa_s->show_group_started) {
7565 /*
7566 * Use the normal group formation timeout between the end of
7567 * the provisioning phase and completion of 4-way handshake to
7568 * avoid terminating this process too early due to group idle
7569 * timeout.
7570 */
7571 wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
7572 "while waiting for initial 4-way handshake to "
7573 "complete");
7574 return;
7575 }
7576
7577 wpa_printf(MSG_DEBUG, "P2P: Set P2P group idle timeout to %u seconds",
7578 timeout);
7579 eloop_register_timeout(timeout, 0, wpas_p2p_group_idle_timeout,
7580 wpa_s, NULL);
7581 }
7582
7583
7584 /* Returns 1 if the interface was removed */
wpas_p2p_deauth_notif(struct wpa_supplicant * wpa_s,const u8 * bssid,u16 reason_code,const u8 * ie,size_t ie_len,int locally_generated)7585 int wpas_p2p_deauth_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
7586 u16 reason_code, const u8 *ie, size_t ie_len,
7587 int locally_generated)
7588 {
7589 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7590 return 0;
7591
7592 if (!locally_generated)
7593 p2p_deauth_notif(wpa_s->global->p2p, bssid, reason_code, ie,
7594 ie_len);
7595
7596 if (reason_code == WLAN_REASON_DEAUTH_LEAVING && !locally_generated &&
7597 wpa_s->current_ssid &&
7598 wpa_s->current_ssid->p2p_group &&
7599 wpa_s->current_ssid->mode == WPAS_MODE_INFRA) {
7600 wpa_printf(MSG_DEBUG, "P2P: GO indicated that the P2P Group "
7601 "session is ending");
7602 if (wpas_p2p_group_delete(wpa_s,
7603 P2P_GROUP_REMOVAL_GO_ENDING_SESSION)
7604 > 0)
7605 return 1;
7606 }
7607
7608 return 0;
7609 }
7610
7611
wpas_p2p_disassoc_notif(struct wpa_supplicant * wpa_s,const u8 * bssid,u16 reason_code,const u8 * ie,size_t ie_len,int locally_generated)7612 void wpas_p2p_disassoc_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
7613 u16 reason_code, const u8 *ie, size_t ie_len,
7614 int locally_generated)
7615 {
7616 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7617 return;
7618
7619 if (!locally_generated)
7620 p2p_disassoc_notif(wpa_s->global->p2p, bssid, reason_code, ie,
7621 ie_len);
7622 }
7623
7624
wpas_p2p_update_config(struct wpa_supplicant * wpa_s)7625 void wpas_p2p_update_config(struct wpa_supplicant *wpa_s)
7626 {
7627 struct p2p_data *p2p = wpa_s->global->p2p;
7628
7629 if (p2p == NULL)
7630 return;
7631
7632 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
7633 return;
7634
7635 if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_NAME)
7636 p2p_set_dev_name(p2p, wpa_s->conf->device_name);
7637
7638 if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_TYPE)
7639 p2p_set_pri_dev_type(p2p, wpa_s->conf->device_type);
7640
7641 if (wpa_s->wps &&
7642 (wpa_s->conf->changed_parameters & CFG_CHANGED_CONFIG_METHODS))
7643 p2p_set_config_methods(p2p, wpa_s->wps->config_methods);
7644
7645 if (wpa_s->wps && (wpa_s->conf->changed_parameters & CFG_CHANGED_UUID))
7646 p2p_set_uuid(p2p, wpa_s->wps->uuid);
7647
7648 if (wpa_s->conf->changed_parameters & CFG_CHANGED_WPS_STRING) {
7649 p2p_set_manufacturer(p2p, wpa_s->conf->manufacturer);
7650 p2p_set_model_name(p2p, wpa_s->conf->model_name);
7651 p2p_set_model_number(p2p, wpa_s->conf->model_number);
7652 p2p_set_serial_number(p2p, wpa_s->conf->serial_number);
7653 }
7654
7655 if (wpa_s->conf->changed_parameters & CFG_CHANGED_SEC_DEVICE_TYPE)
7656 p2p_set_sec_dev_types(p2p,
7657 (void *) wpa_s->conf->sec_device_type,
7658 wpa_s->conf->num_sec_device_types);
7659
7660 if (wpa_s->conf->changed_parameters & CFG_CHANGED_VENDOR_EXTENSION) {
7661 int i;
7662 p2p_remove_wps_vendor_extensions(p2p);
7663 for (i = 0; i < MAX_WPS_VENDOR_EXT; i++) {
7664 if (wpa_s->conf->wps_vendor_ext[i] == NULL)
7665 continue;
7666 p2p_add_wps_vendor_extension(
7667 p2p, wpa_s->conf->wps_vendor_ext[i]);
7668 }
7669 }
7670
7671 if ((wpa_s->conf->changed_parameters & CFG_CHANGED_COUNTRY) &&
7672 wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
7673 char country[3];
7674 country[0] = wpa_s->conf->country[0];
7675 country[1] = wpa_s->conf->country[1];
7676 country[2] = 0x04;
7677 p2p_set_country(p2p, country);
7678 }
7679
7680 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_SSID_POSTFIX) {
7681 p2p_set_ssid_postfix(p2p, (u8 *) wpa_s->conf->p2p_ssid_postfix,
7682 wpa_s->conf->p2p_ssid_postfix ?
7683 os_strlen(wpa_s->conf->p2p_ssid_postfix) :
7684 0);
7685 }
7686
7687 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_INTRA_BSS)
7688 p2p_set_intra_bss_dist(p2p, wpa_s->conf->p2p_intra_bss);
7689
7690 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_LISTEN_CHANNEL) {
7691 u8 reg_class, channel;
7692 int ret;
7693 unsigned int r;
7694 u8 channel_forced;
7695
7696 if (wpa_s->conf->p2p_listen_reg_class &&
7697 wpa_s->conf->p2p_listen_channel) {
7698 reg_class = wpa_s->conf->p2p_listen_reg_class;
7699 channel = wpa_s->conf->p2p_listen_channel;
7700 channel_forced = 1;
7701 } else {
7702 reg_class = 81;
7703 /*
7704 * Pick one of the social channels randomly as the
7705 * listen channel.
7706 */
7707 if (os_get_random((u8 *) &r, sizeof(r)) < 0)
7708 channel = 1;
7709 else
7710 channel = 1 + (r % 3) * 5;
7711 channel_forced = 0;
7712 }
7713 ret = p2p_set_listen_channel(p2p, reg_class, channel,
7714 channel_forced);
7715 if (ret)
7716 wpa_printf(MSG_ERROR, "P2P: Own listen channel update "
7717 "failed: %d", ret);
7718 }
7719 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_OPER_CHANNEL) {
7720 u8 op_reg_class, op_channel, cfg_op_channel;
7721 int ret = 0;
7722 unsigned int r;
7723 if (wpa_s->conf->p2p_oper_reg_class &&
7724 wpa_s->conf->p2p_oper_channel) {
7725 op_reg_class = wpa_s->conf->p2p_oper_reg_class;
7726 op_channel = wpa_s->conf->p2p_oper_channel;
7727 cfg_op_channel = 1;
7728 } else {
7729 op_reg_class = 81;
7730 /*
7731 * Use random operation channel from (1, 6, 11)
7732 *if no other preference is indicated.
7733 */
7734 if (os_get_random((u8 *) &r, sizeof(r)) < 0)
7735 op_channel = 1;
7736 else
7737 op_channel = 1 + (r % 3) * 5;
7738 cfg_op_channel = 0;
7739 }
7740 ret = p2p_set_oper_channel(p2p, op_reg_class, op_channel,
7741 cfg_op_channel);
7742 if (ret)
7743 wpa_printf(MSG_ERROR, "P2P: Own oper channel update "
7744 "failed: %d", ret);
7745 }
7746
7747 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_PREF_CHAN) {
7748 if (p2p_set_pref_chan(p2p, wpa_s->conf->num_p2p_pref_chan,
7749 wpa_s->conf->p2p_pref_chan) < 0) {
7750 wpa_printf(MSG_ERROR, "P2P: Preferred channel list "
7751 "update failed");
7752 }
7753
7754 if (p2p_set_no_go_freq(p2p, &wpa_s->conf->p2p_no_go_freq) < 0) {
7755 wpa_printf(MSG_ERROR, "P2P: No GO channel list "
7756 "update failed");
7757 }
7758 }
7759
7760 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_PASSPHRASE_LEN)
7761 p2p_set_passphrase_len(p2p, wpa_s->conf->p2p_passphrase_len);
7762 }
7763
7764
wpas_p2p_set_noa(struct wpa_supplicant * wpa_s,u8 count,int start,int duration)7765 int wpas_p2p_set_noa(struct wpa_supplicant *wpa_s, u8 count, int start,
7766 int duration)
7767 {
7768 if (!wpa_s->ap_iface)
7769 return -1;
7770 return hostapd_p2p_set_noa(wpa_s->ap_iface->bss[0], count, start,
7771 duration);
7772 }
7773
7774
wpas_p2p_set_cross_connect(struct wpa_supplicant * wpa_s,int enabled)7775 int wpas_p2p_set_cross_connect(struct wpa_supplicant *wpa_s, int enabled)
7776 {
7777 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
7778 return -1;
7779
7780 wpa_s->global->cross_connection = enabled;
7781 p2p_set_cross_connect(wpa_s->global->p2p, enabled);
7782
7783 if (!enabled) {
7784 struct wpa_supplicant *iface;
7785
7786 for (iface = wpa_s->global->ifaces; iface; iface = iface->next)
7787 {
7788 if (iface->cross_connect_enabled == 0)
7789 continue;
7790
7791 iface->cross_connect_enabled = 0;
7792 iface->cross_connect_in_use = 0;
7793 wpa_msg_global(iface->p2pdev, MSG_INFO,
7794 P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
7795 iface->ifname,
7796 iface->cross_connect_uplink);
7797 }
7798 }
7799
7800 return 0;
7801 }
7802
7803
wpas_p2p_enable_cross_connect(struct wpa_supplicant * uplink)7804 static void wpas_p2p_enable_cross_connect(struct wpa_supplicant *uplink)
7805 {
7806 struct wpa_supplicant *iface;
7807
7808 if (!uplink->global->cross_connection)
7809 return;
7810
7811 for (iface = uplink->global->ifaces; iface; iface = iface->next) {
7812 if (!iface->cross_connect_enabled)
7813 continue;
7814 if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
7815 0)
7816 continue;
7817 if (iface->ap_iface == NULL)
7818 continue;
7819 if (iface->cross_connect_in_use)
7820 continue;
7821
7822 iface->cross_connect_in_use = 1;
7823 wpa_msg_global(iface->p2pdev, MSG_INFO,
7824 P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
7825 iface->ifname, iface->cross_connect_uplink);
7826 }
7827 }
7828
7829
wpas_p2p_disable_cross_connect(struct wpa_supplicant * uplink)7830 static void wpas_p2p_disable_cross_connect(struct wpa_supplicant *uplink)
7831 {
7832 struct wpa_supplicant *iface;
7833
7834 for (iface = uplink->global->ifaces; iface; iface = iface->next) {
7835 if (!iface->cross_connect_enabled)
7836 continue;
7837 if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
7838 0)
7839 continue;
7840 if (!iface->cross_connect_in_use)
7841 continue;
7842
7843 wpa_msg_global(iface->p2pdev, MSG_INFO,
7844 P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
7845 iface->ifname, iface->cross_connect_uplink);
7846 iface->cross_connect_in_use = 0;
7847 }
7848 }
7849
7850
wpas_p2p_notif_connected(struct wpa_supplicant * wpa_s)7851 void wpas_p2p_notif_connected(struct wpa_supplicant *wpa_s)
7852 {
7853 if (wpa_s->ap_iface || wpa_s->current_ssid == NULL ||
7854 wpa_s->current_ssid->mode != WPAS_MODE_INFRA ||
7855 wpa_s->cross_connect_disallowed)
7856 wpas_p2p_disable_cross_connect(wpa_s);
7857 else
7858 wpas_p2p_enable_cross_connect(wpa_s);
7859 if (!wpa_s->ap_iface &&
7860 eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
7861 wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
7862 }
7863
7864
wpas_p2p_notif_disconnected(struct wpa_supplicant * wpa_s)7865 void wpas_p2p_notif_disconnected(struct wpa_supplicant *wpa_s)
7866 {
7867 wpas_p2p_disable_cross_connect(wpa_s);
7868 if (!wpa_s->ap_iface &&
7869 !eloop_is_timeout_registered(wpas_p2p_group_idle_timeout,
7870 wpa_s, NULL))
7871 wpas_p2p_set_group_idle_timeout(wpa_s);
7872 }
7873
7874
wpas_p2p_cross_connect_setup(struct wpa_supplicant * wpa_s)7875 static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s)
7876 {
7877 struct wpa_supplicant *iface;
7878
7879 if (!wpa_s->global->cross_connection)
7880 return;
7881
7882 for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
7883 if (iface == wpa_s)
7884 continue;
7885 if (iface->drv_flags &
7886 WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE)
7887 continue;
7888 if ((iface->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE) &&
7889 iface != wpa_s->parent)
7890 continue;
7891
7892 wpa_s->cross_connect_enabled = 1;
7893 os_strlcpy(wpa_s->cross_connect_uplink, iface->ifname,
7894 sizeof(wpa_s->cross_connect_uplink));
7895 wpa_printf(MSG_DEBUG, "P2P: Enable cross connection from "
7896 "%s to %s whenever uplink is available",
7897 wpa_s->ifname, wpa_s->cross_connect_uplink);
7898
7899 if (iface->ap_iface || iface->current_ssid == NULL ||
7900 iface->current_ssid->mode != WPAS_MODE_INFRA ||
7901 iface->cross_connect_disallowed ||
7902 iface->wpa_state != WPA_COMPLETED)
7903 break;
7904
7905 wpa_s->cross_connect_in_use = 1;
7906 wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
7907 P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
7908 wpa_s->ifname, wpa_s->cross_connect_uplink);
7909 break;
7910 }
7911 }
7912
7913
wpas_p2p_notif_pbc_overlap(struct wpa_supplicant * wpa_s)7914 int wpas_p2p_notif_pbc_overlap(struct wpa_supplicant *wpa_s)
7915 {
7916 if (wpa_s->p2p_group_interface != P2P_GROUP_INTERFACE_CLIENT &&
7917 !wpa_s->p2p_in_provisioning)
7918 return 0; /* not P2P client operation */
7919
7920 wpa_printf(MSG_DEBUG, "P2P: Terminate connection due to WPS PBC "
7921 "session overlap");
7922 if (wpa_s != wpa_s->p2pdev)
7923 wpa_msg_ctrl(wpa_s->p2pdev, MSG_INFO, WPS_EVENT_OVERLAP);
7924 wpas_p2p_group_formation_failed(wpa_s, 0);
7925 return 1;
7926 }
7927
7928
wpas_p2p_pbc_overlap_cb(void * eloop_ctx,void * timeout_ctx)7929 void wpas_p2p_pbc_overlap_cb(void *eloop_ctx, void *timeout_ctx)
7930 {
7931 struct wpa_supplicant *wpa_s = eloop_ctx;
7932 wpas_p2p_notif_pbc_overlap(wpa_s);
7933 }
7934
7935
wpas_p2p_update_channel_list(struct wpa_supplicant * wpa_s,enum wpas_p2p_channel_update_trig trig)7936 void wpas_p2p_update_channel_list(struct wpa_supplicant *wpa_s,
7937 enum wpas_p2p_channel_update_trig trig)
7938 {
7939 struct p2p_channels chan, cli_chan;
7940 struct wpa_used_freq_data *freqs = NULL;
7941 unsigned int num = wpa_s->num_multichan_concurrent;
7942
7943 if (wpa_s->global == NULL || wpa_s->global->p2p == NULL)
7944 return;
7945
7946 freqs = os_calloc(num, sizeof(struct wpa_used_freq_data));
7947 if (!freqs)
7948 return;
7949
7950 num = get_shared_radio_freqs_data(wpa_s, freqs, num);
7951
7952 os_memset(&chan, 0, sizeof(chan));
7953 os_memset(&cli_chan, 0, sizeof(cli_chan));
7954 if (wpas_p2p_setup_channels(wpa_s, &chan, &cli_chan)) {
7955 wpa_printf(MSG_ERROR, "P2P: Failed to update supported "
7956 "channel list");
7957 return;
7958 }
7959
7960 p2p_update_channel_list(wpa_s->global->p2p, &chan, &cli_chan);
7961
7962 wpas_p2p_optimize_listen_channel(wpa_s, freqs, num);
7963
7964 /*
7965 * The used frequencies map changed, so it is possible that a GO is
7966 * using a channel that is no longer valid for P2P use. It is also
7967 * possible that due to policy consideration, it would be preferable to
7968 * move it to a frequency already used by other station interfaces.
7969 */
7970 wpas_p2p_consider_moving_gos(wpa_s, freqs, num, trig);
7971
7972 os_free(freqs);
7973 }
7974
7975
wpas_p2p_scan_res_ignore(struct wpa_supplicant * wpa_s,struct wpa_scan_results * scan_res)7976 static void wpas_p2p_scan_res_ignore(struct wpa_supplicant *wpa_s,
7977 struct wpa_scan_results *scan_res)
7978 {
7979 wpa_printf(MSG_DEBUG, "P2P: Ignore scan results");
7980 }
7981
7982
wpas_p2p_cancel(struct wpa_supplicant * wpa_s)7983 int wpas_p2p_cancel(struct wpa_supplicant *wpa_s)
7984 {
7985 struct wpa_global *global = wpa_s->global;
7986 int found = 0;
7987 const u8 *peer;
7988
7989 if (global->p2p == NULL)
7990 return -1;
7991
7992 wpa_printf(MSG_DEBUG, "P2P: Request to cancel group formation");
7993
7994 if (wpa_s->pending_interface_name[0] &&
7995 !is_zero_ether_addr(wpa_s->pending_interface_addr))
7996 found = 1;
7997
7998 peer = p2p_get_go_neg_peer(global->p2p);
7999 if (peer) {
8000 wpa_printf(MSG_DEBUG, "P2P: Unauthorize pending GO Neg peer "
8001 MACSTR, MAC2STR(peer));
8002 p2p_unauthorize(global->p2p, peer);
8003 found = 1;
8004 }
8005
8006 if (wpa_s->scan_res_handler == wpas_p2p_scan_res_join) {
8007 wpa_printf(MSG_DEBUG, "P2P: Stop pending scan for join");
8008 wpa_s->scan_res_handler = wpas_p2p_scan_res_ignore;
8009 found = 1;
8010 }
8011
8012 if (wpa_s->pending_pd_before_join) {
8013 wpa_printf(MSG_DEBUG, "P2P: Stop pending PD before join");
8014 wpa_s->pending_pd_before_join = 0;
8015 found = 1;
8016 }
8017
8018 wpas_p2p_stop_find(wpa_s);
8019
8020 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
8021 if (wpa_s == global->p2p_group_formation &&
8022 (wpa_s->p2p_in_provisioning ||
8023 wpa_s->parent->pending_interface_type ==
8024 WPA_IF_P2P_CLIENT)) {
8025 wpa_printf(MSG_DEBUG, "P2P: Interface %s in group "
8026 "formation found - cancelling",
8027 wpa_s->ifname);
8028 found = 1;
8029 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
8030 wpa_s->p2pdev, NULL);
8031 if (wpa_s->p2p_in_provisioning) {
8032 wpas_group_formation_completed(wpa_s, 0, 0);
8033 break;
8034 }
8035 wpas_p2p_group_delete(wpa_s,
8036 P2P_GROUP_REMOVAL_REQUESTED);
8037 break;
8038 } else if (wpa_s->p2p_in_invitation) {
8039 wpa_printf(MSG_DEBUG, "P2P: Interface %s in invitation found - cancelling",
8040 wpa_s->ifname);
8041 found = 1;
8042 wpas_p2p_group_formation_failed(wpa_s, 0);
8043 break;
8044 }
8045 }
8046
8047 if (!found) {
8048 wpa_printf(MSG_DEBUG, "P2P: No ongoing group formation found");
8049 return -1;
8050 }
8051
8052 return 0;
8053 }
8054
8055
wpas_p2p_interface_unavailable(struct wpa_supplicant * wpa_s)8056 void wpas_p2p_interface_unavailable(struct wpa_supplicant *wpa_s)
8057 {
8058 if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
8059 return;
8060
8061 wpa_printf(MSG_DEBUG, "P2P: Remove group due to driver resource not "
8062 "being available anymore");
8063 wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_UNAVAILABLE);
8064 }
8065
8066
wpas_p2p_update_best_channels(struct wpa_supplicant * wpa_s,int freq_24,int freq_5,int freq_overall)8067 void wpas_p2p_update_best_channels(struct wpa_supplicant *wpa_s,
8068 int freq_24, int freq_5, int freq_overall)
8069 {
8070 struct p2p_data *p2p = wpa_s->global->p2p;
8071 if (p2p == NULL)
8072 return;
8073 p2p_set_best_channels(p2p, freq_24, freq_5, freq_overall);
8074 }
8075
8076
wpas_p2p_unauthorize(struct wpa_supplicant * wpa_s,const char * addr)8077 int wpas_p2p_unauthorize(struct wpa_supplicant *wpa_s, const char *addr)
8078 {
8079 u8 peer[ETH_ALEN];
8080 struct p2p_data *p2p = wpa_s->global->p2p;
8081
8082 if (p2p == NULL)
8083 return -1;
8084
8085 if (hwaddr_aton(addr, peer))
8086 return -1;
8087
8088 return p2p_unauthorize(p2p, peer);
8089 }
8090
8091
8092 /**
8093 * wpas_p2p_disconnect - Disconnect from a P2P Group
8094 * @wpa_s: Pointer to wpa_supplicant data
8095 * Returns: 0 on success, -1 on failure
8096 *
8097 * This can be used to disconnect from a group in which the local end is a P2P
8098 * Client or to end a P2P Group in case the local end is the Group Owner. If a
8099 * virtual network interface was created for this group, that interface will be
8100 * removed. Otherwise, only the configured P2P group network will be removed
8101 * from the interface.
8102 */
wpas_p2p_disconnect(struct wpa_supplicant * wpa_s)8103 int wpas_p2p_disconnect(struct wpa_supplicant *wpa_s)
8104 {
8105
8106 if (wpa_s == NULL)
8107 return -1;
8108
8109 return wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_REQUESTED) < 0 ?
8110 -1 : 0;
8111 }
8112
8113
wpas_p2p_in_progress(struct wpa_supplicant * wpa_s)8114 int wpas_p2p_in_progress(struct wpa_supplicant *wpa_s)
8115 {
8116 int ret;
8117
8118 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
8119 return 0;
8120
8121 ret = p2p_in_progress(wpa_s->global->p2p);
8122 if (ret == 0) {
8123 /*
8124 * Check whether there is an ongoing WPS provisioning step (or
8125 * other parts of group formation) on another interface since
8126 * p2p_in_progress() does not report this to avoid issues for
8127 * scans during such provisioning step.
8128 */
8129 if (wpa_s->global->p2p_group_formation &&
8130 wpa_s->global->p2p_group_formation != wpa_s) {
8131 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Another interface (%s) "
8132 "in group formation",
8133 wpa_s->global->p2p_group_formation->ifname);
8134 ret = 1;
8135 }
8136 }
8137
8138 if (!ret && wpa_s->global->p2p_go_wait_client.sec) {
8139 struct os_reltime now;
8140 os_get_reltime(&now);
8141 if (os_reltime_expired(&now, &wpa_s->global->p2p_go_wait_client,
8142 P2P_MAX_INITIAL_CONN_WAIT_GO)) {
8143 /* Wait for the first client has expired */
8144 wpa_s->global->p2p_go_wait_client.sec = 0;
8145 } else {
8146 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Waiting for initial client connection during group formation");
8147 ret = 1;
8148 }
8149 }
8150
8151 return ret;
8152 }
8153
8154
wpas_p2p_network_removed(struct wpa_supplicant * wpa_s,struct wpa_ssid * ssid)8155 void wpas_p2p_network_removed(struct wpa_supplicant *wpa_s,
8156 struct wpa_ssid *ssid)
8157 {
8158 if (wpa_s->p2p_in_provisioning && ssid->p2p_group &&
8159 eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
8160 wpa_s->p2pdev, NULL) > 0) {
8161 /**
8162 * Remove the network by scheduling the group formation
8163 * timeout to happen immediately. The teardown code
8164 * needs to be scheduled to run asynch later so that we
8165 * don't delete data from under ourselves unexpectedly.
8166 * Calling wpas_p2p_group_formation_timeout directly
8167 * causes a series of crashes in WPS failure scenarios.
8168 */
8169 wpa_printf(MSG_DEBUG, "P2P: Canceled group formation due to "
8170 "P2P group network getting removed");
8171 eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
8172 wpa_s->p2pdev, NULL);
8173 }
8174 }
8175
8176
wpas_p2p_get_persistent(struct wpa_supplicant * wpa_s,const u8 * addr,const u8 * ssid,size_t ssid_len)8177 struct wpa_ssid * wpas_p2p_get_persistent(struct wpa_supplicant *wpa_s,
8178 const u8 *addr, const u8 *ssid,
8179 size_t ssid_len)
8180 {
8181 struct wpa_ssid *s;
8182 size_t i;
8183
8184 for (s = wpa_s->conf->ssid; s; s = s->next) {
8185 if (s->disabled != 2)
8186 continue;
8187 if (ssid &&
8188 (ssid_len != s->ssid_len ||
8189 os_memcmp(ssid, s->ssid, ssid_len) != 0))
8190 continue;
8191 if (addr == NULL) {
8192 if (s->mode == WPAS_MODE_P2P_GO)
8193 return s;
8194 continue;
8195 }
8196 if (os_memcmp(s->bssid, addr, ETH_ALEN) == 0)
8197 return s; /* peer is GO in the persistent group */
8198 if (s->mode != WPAS_MODE_P2P_GO || s->p2p_client_list == NULL)
8199 continue;
8200 for (i = 0; i < s->num_p2p_clients; i++) {
8201 if (os_memcmp(s->p2p_client_list + i * 2 * ETH_ALEN,
8202 addr, ETH_ALEN) == 0)
8203 return s; /* peer is P2P client in persistent
8204 * group */
8205 }
8206 }
8207
8208 return NULL;
8209 }
8210
8211
wpas_p2p_notify_ap_sta_authorized(struct wpa_supplicant * wpa_s,const u8 * addr)8212 void wpas_p2p_notify_ap_sta_authorized(struct wpa_supplicant *wpa_s,
8213 const u8 *addr)
8214 {
8215 if (eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
8216 wpa_s->p2pdev, NULL) > 0) {
8217 /*
8218 * This can happen if WPS provisioning step is not terminated
8219 * cleanly (e.g., P2P Client does not send WSC_Done). Since the
8220 * peer was able to connect, there is no need to time out group
8221 * formation after this, though. In addition, this is used with
8222 * the initial connection wait on the GO as a separate formation
8223 * timeout and as such, expected to be hit after the initial WPS
8224 * provisioning step.
8225 */
8226 wpa_printf(MSG_DEBUG, "P2P: Canceled P2P group formation timeout on data connection");
8227
8228 if (!wpa_s->p2p_go_group_formation_completed &&
8229 !wpa_s->group_formation_reported) {
8230 /*
8231 * GO has not yet notified group formation success since
8232 * the WPS step was not completed cleanly. Do that
8233 * notification now since the P2P Client was able to
8234 * connect and as such, must have received the
8235 * credential from the WPS step.
8236 */
8237 if (wpa_s->global->p2p)
8238 p2p_wps_success_cb(wpa_s->global->p2p, addr);
8239 wpas_group_formation_completed(wpa_s, 1, 0);
8240 }
8241 }
8242 if (!wpa_s->p2p_go_group_formation_completed) {
8243 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Marking group formation completed on GO on first data connection");
8244 wpa_s->p2p_go_group_formation_completed = 1;
8245 wpa_s->global->p2p_group_formation = NULL;
8246 wpa_s->p2p_in_provisioning = 0;
8247 wpa_s->p2p_in_invitation = 0;
8248 }
8249 wpa_s->global->p2p_go_wait_client.sec = 0;
8250 if (addr == NULL)
8251 return;
8252 wpas_p2p_add_persistent_group_client(wpa_s, addr);
8253 }
8254
8255
wpas_p2p_fallback_to_go_neg(struct wpa_supplicant * wpa_s,int group_added)8256 static int wpas_p2p_fallback_to_go_neg(struct wpa_supplicant *wpa_s,
8257 int group_added)
8258 {
8259 struct wpa_supplicant *group = wpa_s;
8260 int ret = 0;
8261
8262 if (wpa_s->global->p2p_group_formation)
8263 group = wpa_s->global->p2p_group_formation;
8264 wpa_s = wpa_s->global->p2p_init_wpa_s;
8265 offchannel_send_action_done(wpa_s);
8266 if (group_added)
8267 ret = wpas_p2p_group_delete(group, P2P_GROUP_REMOVAL_SILENT);
8268 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Fall back to GO Negotiation");
8269 wpas_p2p_connect(wpa_s, wpa_s->pending_join_dev_addr, wpa_s->p2p_pin,
8270 wpa_s->p2p_wps_method, wpa_s->p2p_persistent_group, 0,
8271 0, 0, wpa_s->p2p_go_intent, wpa_s->p2p_connect_freq,
8272 wpa_s->p2p_go_vht_center_freq2,
8273 wpa_s->p2p_persistent_id,
8274 wpa_s->p2p_pd_before_go_neg,
8275 wpa_s->p2p_go_ht40,
8276 wpa_s->p2p_go_vht,
8277 wpa_s->p2p_go_max_oper_chwidth,
8278 wpa_s->p2p_go_he,
8279 wpa_s->p2p_go_edmg,
8280 NULL, 0);
8281 return ret;
8282 }
8283
8284
wpas_p2p_scan_no_go_seen(struct wpa_supplicant * wpa_s)8285 int wpas_p2p_scan_no_go_seen(struct wpa_supplicant *wpa_s)
8286 {
8287 int res;
8288
8289 if (!wpa_s->p2p_fallback_to_go_neg ||
8290 wpa_s->p2p_in_provisioning <= 5)
8291 return 0;
8292
8293 if (wpas_p2p_peer_go(wpa_s, wpa_s->pending_join_dev_addr) > 0)
8294 return 0; /* peer operating as a GO */
8295
8296 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: GO not found for p2p_connect-auto - "
8297 "fallback to GO Negotiation");
8298 wpa_msg_global(wpa_s->p2pdev, MSG_INFO, P2P_EVENT_FALLBACK_TO_GO_NEG
8299 "reason=GO-not-found");
8300 res = wpas_p2p_fallback_to_go_neg(wpa_s, 1);
8301
8302 return res == 1 ? 2 : 1;
8303 }
8304
8305
wpas_p2p_search_delay(struct wpa_supplicant * wpa_s)8306 unsigned int wpas_p2p_search_delay(struct wpa_supplicant *wpa_s)
8307 {
8308 struct wpa_supplicant *ifs;
8309
8310 if (wpa_s->wpa_state > WPA_SCANNING) {
8311 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use %u ms search delay due to "
8312 "concurrent operation",
8313 wpa_s->conf->p2p_search_delay);
8314 return wpa_s->conf->p2p_search_delay;
8315 }
8316
8317 dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
8318 radio_list) {
8319 if (ifs != wpa_s && ifs->wpa_state > WPA_SCANNING) {
8320 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use %u ms search "
8321 "delay due to concurrent operation on "
8322 "interface %s",
8323 wpa_s->conf->p2p_search_delay,
8324 ifs->ifname);
8325 return wpa_s->conf->p2p_search_delay;
8326 }
8327 }
8328
8329 return 0;
8330 }
8331
8332
wpas_p2p_remove_psk_entry(struct wpa_supplicant * wpa_s,struct wpa_ssid * s,const u8 * addr,int iface_addr)8333 static int wpas_p2p_remove_psk_entry(struct wpa_supplicant *wpa_s,
8334 struct wpa_ssid *s, const u8 *addr,
8335 int iface_addr)
8336 {
8337 struct psk_list_entry *psk, *tmp;
8338 int changed = 0;
8339
8340 dl_list_for_each_safe(psk, tmp, &s->psk_list, struct psk_list_entry,
8341 list) {
8342 if ((iface_addr && !psk->p2p &&
8343 os_memcmp(addr, psk->addr, ETH_ALEN) == 0) ||
8344 (!iface_addr && psk->p2p &&
8345 os_memcmp(addr, psk->addr, ETH_ALEN) == 0)) {
8346 wpa_dbg(wpa_s, MSG_DEBUG,
8347 "P2P: Remove persistent group PSK list entry for "
8348 MACSTR " p2p=%u",
8349 MAC2STR(psk->addr), psk->p2p);
8350 dl_list_del(&psk->list);
8351 os_free(psk);
8352 changed++;
8353 }
8354 }
8355
8356 return changed;
8357 }
8358
8359
wpas_p2p_new_psk_cb(struct wpa_supplicant * wpa_s,const u8 * mac_addr,const u8 * p2p_dev_addr,const u8 * psk,size_t psk_len)8360 void wpas_p2p_new_psk_cb(struct wpa_supplicant *wpa_s, const u8 *mac_addr,
8361 const u8 *p2p_dev_addr,
8362 const u8 *psk, size_t psk_len)
8363 {
8364 struct wpa_ssid *ssid = wpa_s->current_ssid;
8365 struct wpa_ssid *persistent;
8366 struct psk_list_entry *p, *last;
8367
8368 if (psk_len != sizeof(p->psk))
8369 return;
8370
8371 if (p2p_dev_addr) {
8372 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New PSK for addr=" MACSTR
8373 " p2p_dev_addr=" MACSTR,
8374 MAC2STR(mac_addr), MAC2STR(p2p_dev_addr));
8375 if (is_zero_ether_addr(p2p_dev_addr))
8376 p2p_dev_addr = NULL;
8377 } else {
8378 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New PSK for addr=" MACSTR,
8379 MAC2STR(mac_addr));
8380 }
8381
8382 if (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
8383 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: new_psk_cb during group formation");
8384 /* To be added to persistent group once created */
8385 if (wpa_s->global->add_psk == NULL) {
8386 wpa_s->global->add_psk = os_zalloc(sizeof(*p));
8387 if (wpa_s->global->add_psk == NULL)
8388 return;
8389 }
8390 p = wpa_s->global->add_psk;
8391 if (p2p_dev_addr) {
8392 p->p2p = 1;
8393 os_memcpy(p->addr, p2p_dev_addr, ETH_ALEN);
8394 } else {
8395 p->p2p = 0;
8396 os_memcpy(p->addr, mac_addr, ETH_ALEN);
8397 }
8398 os_memcpy(p->psk, psk, psk_len);
8399 return;
8400 }
8401
8402 if (ssid->mode != WPAS_MODE_P2P_GO || !ssid->p2p_persistent_group) {
8403 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Ignore new_psk_cb on not-persistent GO");
8404 return;
8405 }
8406
8407 persistent = wpas_p2p_get_persistent(wpa_s->p2pdev, NULL, ssid->ssid,
8408 ssid->ssid_len);
8409 if (!persistent) {
8410 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not find persistent group information to store the new PSK");
8411 return;
8412 }
8413
8414 p = os_zalloc(sizeof(*p));
8415 if (p == NULL)
8416 return;
8417 if (p2p_dev_addr) {
8418 p->p2p = 1;
8419 os_memcpy(p->addr, p2p_dev_addr, ETH_ALEN);
8420 } else {
8421 p->p2p = 0;
8422 os_memcpy(p->addr, mac_addr, ETH_ALEN);
8423 }
8424 os_memcpy(p->psk, psk, psk_len);
8425
8426 if (dl_list_len(&persistent->psk_list) > P2P_MAX_STORED_CLIENTS &&
8427 (last = dl_list_last(&persistent->psk_list,
8428 struct psk_list_entry, list))) {
8429 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove oldest PSK entry for "
8430 MACSTR " (p2p=%u) to make room for a new one",
8431 MAC2STR(last->addr), last->p2p);
8432 dl_list_del(&last->list);
8433 os_free(last);
8434 }
8435
8436 wpas_p2p_remove_psk_entry(wpa_s->p2pdev, persistent,
8437 p2p_dev_addr ? p2p_dev_addr : mac_addr,
8438 p2p_dev_addr == NULL);
8439 if (p2p_dev_addr) {
8440 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add new PSK for p2p_dev_addr="
8441 MACSTR, MAC2STR(p2p_dev_addr));
8442 } else {
8443 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add new PSK for addr=" MACSTR,
8444 MAC2STR(mac_addr));
8445 }
8446 dl_list_add(&persistent->psk_list, &p->list);
8447
8448 if (wpa_s->p2pdev->conf->update_config &&
8449 wpa_config_write(wpa_s->p2pdev->confname, wpa_s->p2pdev->conf))
8450 wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
8451 }
8452
8453
wpas_p2p_remove_psk(struct wpa_supplicant * wpa_s,struct wpa_ssid * s,const u8 * addr,int iface_addr)8454 static void wpas_p2p_remove_psk(struct wpa_supplicant *wpa_s,
8455 struct wpa_ssid *s, const u8 *addr,
8456 int iface_addr)
8457 {
8458 int res;
8459
8460 res = wpas_p2p_remove_psk_entry(wpa_s, s, addr, iface_addr);
8461 if (res > 0 && wpa_s->conf->update_config &&
8462 wpa_config_write(wpa_s->confname, wpa_s->conf))
8463 wpa_dbg(wpa_s, MSG_DEBUG,
8464 "P2P: Failed to update configuration");
8465 }
8466
8467
wpas_p2p_remove_client_go(struct wpa_supplicant * wpa_s,const u8 * peer,int iface_addr)8468 static void wpas_p2p_remove_client_go(struct wpa_supplicant *wpa_s,
8469 const u8 *peer, int iface_addr)
8470 {
8471 struct hostapd_data *hapd;
8472 struct hostapd_wpa_psk *psk, *prev, *rem;
8473 struct sta_info *sta;
8474
8475 if (wpa_s->ap_iface == NULL || wpa_s->current_ssid == NULL ||
8476 wpa_s->current_ssid->mode != WPAS_MODE_P2P_GO)
8477 return;
8478
8479 /* Remove per-station PSK entry */
8480 hapd = wpa_s->ap_iface->bss[0];
8481 prev = NULL;
8482 psk = hapd->conf->ssid.wpa_psk;
8483 while (psk) {
8484 if ((iface_addr && os_memcmp(peer, psk->addr, ETH_ALEN) == 0) ||
8485 (!iface_addr &&
8486 os_memcmp(peer, psk->p2p_dev_addr, ETH_ALEN) == 0)) {
8487 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove operating group PSK entry for "
8488 MACSTR " iface_addr=%d",
8489 MAC2STR(peer), iface_addr);
8490 if (prev)
8491 prev->next = psk->next;
8492 else
8493 hapd->conf->ssid.wpa_psk = psk->next;
8494 rem = psk;
8495 psk = psk->next;
8496 os_free(rem);
8497 } else {
8498 prev = psk;
8499 psk = psk->next;
8500 }
8501 }
8502
8503 /* Disconnect from group */
8504 if (iface_addr)
8505 sta = ap_get_sta(hapd, peer);
8506 else
8507 sta = ap_get_sta_p2p(hapd, peer);
8508 if (sta) {
8509 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Disconnect peer " MACSTR
8510 " (iface_addr=%d) from group",
8511 MAC2STR(peer), iface_addr);
8512 hostapd_drv_sta_deauth(hapd, sta->addr,
8513 WLAN_REASON_DEAUTH_LEAVING);
8514 ap_sta_deauthenticate(hapd, sta, WLAN_REASON_DEAUTH_LEAVING);
8515 }
8516 }
8517
8518
wpas_p2p_remove_client(struct wpa_supplicant * wpa_s,const u8 * peer,int iface_addr)8519 void wpas_p2p_remove_client(struct wpa_supplicant *wpa_s, const u8 *peer,
8520 int iface_addr)
8521 {
8522 struct wpa_ssid *s;
8523 struct wpa_supplicant *w;
8524 struct wpa_supplicant *p2p_wpa_s = wpa_s->global->p2p_init_wpa_s;
8525
8526 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove client " MACSTR, MAC2STR(peer));
8527
8528 /* Remove from any persistent group */
8529 for (s = p2p_wpa_s->conf->ssid; s; s = s->next) {
8530 if (s->disabled != 2 || s->mode != WPAS_MODE_P2P_GO)
8531 continue;
8532 if (!iface_addr)
8533 wpas_remove_persistent_peer(p2p_wpa_s, s, peer, 0);
8534 wpas_p2p_remove_psk(p2p_wpa_s, s, peer, iface_addr);
8535 }
8536
8537 /* Remove from any operating group */
8538 for (w = wpa_s->global->ifaces; w; w = w->next)
8539 wpas_p2p_remove_client_go(w, peer, iface_addr);
8540 }
8541
8542
wpas_p2p_psk_failure_removal(void * eloop_ctx,void * timeout_ctx)8543 static void wpas_p2p_psk_failure_removal(void *eloop_ctx, void *timeout_ctx)
8544 {
8545 struct wpa_supplicant *wpa_s = eloop_ctx;
8546 wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_PSK_FAILURE);
8547 }
8548
8549
wpas_p2p_group_freq_conflict(void * eloop_ctx,void * timeout_ctx)8550 static void wpas_p2p_group_freq_conflict(void *eloop_ctx, void *timeout_ctx)
8551 {
8552 struct wpa_supplicant *wpa_s = eloop_ctx;
8553
8554 wpa_printf(MSG_DEBUG, "P2P: Frequency conflict - terminate group");
8555 wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_FREQ_CONFLICT);
8556 }
8557
8558
wpas_p2p_handle_frequency_conflicts(struct wpa_supplicant * wpa_s,int freq,struct wpa_ssid * ssid)8559 int wpas_p2p_handle_frequency_conflicts(struct wpa_supplicant *wpa_s, int freq,
8560 struct wpa_ssid *ssid)
8561 {
8562 struct wpa_supplicant *iface;
8563
8564 for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
8565 if (!iface->current_ssid ||
8566 iface->current_ssid->frequency == freq ||
8567 (iface->p2p_group_interface == NOT_P2P_GROUP_INTERFACE &&
8568 !iface->current_ssid->p2p_group))
8569 continue;
8570
8571 /* Remove the connection with least priority */
8572 if (!wpas_is_p2p_prioritized(iface)) {
8573 /* STA connection has priority over existing
8574 * P2P connection, so remove the interface. */
8575 wpa_printf(MSG_DEBUG, "P2P: Removing P2P connection due to single channel concurrent mode frequency conflict");
8576 eloop_register_timeout(0, 0,
8577 wpas_p2p_group_freq_conflict,
8578 iface, NULL);
8579 /* If connection in progress is P2P connection, do not
8580 * proceed for the connection. */
8581 if (wpa_s == iface)
8582 return -1;
8583 else
8584 return 0;
8585 } else {
8586 /* P2P connection has priority, disable the STA network
8587 */
8588 wpa_supplicant_disable_network(wpa_s->global->ifaces,
8589 ssid);
8590 wpa_msg(wpa_s->global->ifaces, MSG_INFO,
8591 WPA_EVENT_FREQ_CONFLICT " id=%d", ssid->id);
8592 os_memset(wpa_s->global->ifaces->pending_bssid, 0,
8593 ETH_ALEN);
8594 /* If P2P connection is in progress, continue
8595 * connecting...*/
8596 if (wpa_s == iface)
8597 return 0;
8598 else
8599 return -1;
8600 }
8601 }
8602
8603 return 0;
8604 }
8605
8606
wpas_p2p_4way_hs_failed(struct wpa_supplicant * wpa_s)8607 int wpas_p2p_4way_hs_failed(struct wpa_supplicant *wpa_s)
8608 {
8609 struct wpa_ssid *ssid = wpa_s->current_ssid;
8610
8611 if (ssid == NULL || !ssid->p2p_group)
8612 return 0;
8613
8614 if (wpa_s->p2p_last_4way_hs_fail &&
8615 wpa_s->p2p_last_4way_hs_fail == ssid) {
8616 u8 go_dev_addr[ETH_ALEN];
8617 struct wpa_ssid *persistent;
8618
8619 if (wpas_p2p_persistent_group(wpa_s, go_dev_addr,
8620 ssid->ssid,
8621 ssid->ssid_len) <= 0) {
8622 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not determine whether 4-way handshake failures were for a persistent group");
8623 goto disconnect;
8624 }
8625
8626 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Two 4-way handshake failures for a P2P group - go_dev_addr="
8627 MACSTR, MAC2STR(go_dev_addr));
8628 persistent = wpas_p2p_get_persistent(wpa_s->p2pdev, go_dev_addr,
8629 ssid->ssid,
8630 ssid->ssid_len);
8631 if (persistent == NULL || persistent->mode != WPAS_MODE_INFRA) {
8632 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No matching persistent group stored");
8633 goto disconnect;
8634 }
8635 wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
8636 P2P_EVENT_PERSISTENT_PSK_FAIL "%d",
8637 persistent->id);
8638 disconnect:
8639 wpa_s->p2p_last_4way_hs_fail = NULL;
8640 /*
8641 * Remove the group from a timeout to avoid issues with caller
8642 * continuing to use the interface if this is on a P2P group
8643 * interface.
8644 */
8645 eloop_register_timeout(0, 0, wpas_p2p_psk_failure_removal,
8646 wpa_s, NULL);
8647 return 1;
8648 }
8649
8650 wpa_s->p2p_last_4way_hs_fail = ssid;
8651 return 0;
8652 }
8653
8654
8655 #ifdef CONFIG_WPS_NFC
8656
wpas_p2p_nfc_handover(int ndef,struct wpabuf * wsc,struct wpabuf * p2p)8657 static struct wpabuf * wpas_p2p_nfc_handover(int ndef, struct wpabuf *wsc,
8658 struct wpabuf *p2p)
8659 {
8660 struct wpabuf *ret;
8661 size_t wsc_len;
8662
8663 if (p2p == NULL) {
8664 wpabuf_free(wsc);
8665 wpa_printf(MSG_DEBUG, "P2P: No p2p buffer for handover");
8666 return NULL;
8667 }
8668
8669 wsc_len = wsc ? wpabuf_len(wsc) : 0;
8670 ret = wpabuf_alloc(2 + wsc_len + 2 + wpabuf_len(p2p));
8671 if (ret == NULL) {
8672 wpabuf_free(wsc);
8673 wpabuf_free(p2p);
8674 return NULL;
8675 }
8676
8677 wpabuf_put_be16(ret, wsc_len);
8678 if (wsc)
8679 wpabuf_put_buf(ret, wsc);
8680 wpabuf_put_be16(ret, wpabuf_len(p2p));
8681 wpabuf_put_buf(ret, p2p);
8682
8683 wpabuf_free(wsc);
8684 wpabuf_free(p2p);
8685 wpa_hexdump_buf(MSG_DEBUG,
8686 "P2P: Generated NFC connection handover message", ret);
8687
8688 if (ndef && ret) {
8689 struct wpabuf *tmp;
8690 tmp = ndef_build_p2p(ret);
8691 wpabuf_free(ret);
8692 if (tmp == NULL) {
8693 wpa_printf(MSG_DEBUG, "P2P: Failed to NDEF encapsulate handover request");
8694 return NULL;
8695 }
8696 ret = tmp;
8697 }
8698
8699 return ret;
8700 }
8701
8702
wpas_p2p_cli_freq(struct wpa_supplicant * wpa_s,struct wpa_ssid ** ssid,u8 * go_dev_addr)8703 static int wpas_p2p_cli_freq(struct wpa_supplicant *wpa_s,
8704 struct wpa_ssid **ssid, u8 *go_dev_addr)
8705 {
8706 struct wpa_supplicant *iface;
8707
8708 if (go_dev_addr)
8709 os_memset(go_dev_addr, 0, ETH_ALEN);
8710 if (ssid)
8711 *ssid = NULL;
8712 for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
8713 if (iface->wpa_state < WPA_ASSOCIATING ||
8714 iface->current_ssid == NULL || iface->assoc_freq == 0 ||
8715 !iface->current_ssid->p2p_group ||
8716 iface->current_ssid->mode != WPAS_MODE_INFRA)
8717 continue;
8718 if (ssid)
8719 *ssid = iface->current_ssid;
8720 if (go_dev_addr)
8721 os_memcpy(go_dev_addr, iface->go_dev_addr, ETH_ALEN);
8722 return iface->assoc_freq;
8723 }
8724 return 0;
8725 }
8726
8727
wpas_p2p_nfc_handover_req(struct wpa_supplicant * wpa_s,int ndef)8728 struct wpabuf * wpas_p2p_nfc_handover_req(struct wpa_supplicant *wpa_s,
8729 int ndef)
8730 {
8731 struct wpabuf *wsc, *p2p;
8732 struct wpa_ssid *ssid;
8733 u8 go_dev_addr[ETH_ALEN];
8734 int cli_freq = wpas_p2p_cli_freq(wpa_s, &ssid, go_dev_addr);
8735
8736 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL) {
8737 wpa_printf(MSG_DEBUG, "P2P: P2P disabled - cannot build handover request");
8738 return NULL;
8739 }
8740
8741 if (wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
8742 wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
8743 &wpa_s->conf->wps_nfc_dh_privkey) < 0) {
8744 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No DH key available for handover request");
8745 return NULL;
8746 }
8747
8748 if (cli_freq == 0) {
8749 wsc = wps_build_nfc_handover_req_p2p(
8750 wpa_s->parent->wps, wpa_s->conf->wps_nfc_dh_pubkey);
8751 } else
8752 wsc = NULL;
8753 p2p = p2p_build_nfc_handover_req(wpa_s->global->p2p, cli_freq,
8754 go_dev_addr, ssid ? ssid->ssid : NULL,
8755 ssid ? ssid->ssid_len : 0);
8756
8757 return wpas_p2p_nfc_handover(ndef, wsc, p2p);
8758 }
8759
8760
wpas_p2p_nfc_handover_sel(struct wpa_supplicant * wpa_s,int ndef,int tag)8761 struct wpabuf * wpas_p2p_nfc_handover_sel(struct wpa_supplicant *wpa_s,
8762 int ndef, int tag)
8763 {
8764 struct wpabuf *wsc, *p2p;
8765 struct wpa_ssid *ssid;
8766 u8 go_dev_addr[ETH_ALEN];
8767 int cli_freq = wpas_p2p_cli_freq(wpa_s, &ssid, go_dev_addr);
8768
8769 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
8770 return NULL;
8771
8772 if (!tag && wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
8773 wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
8774 &wpa_s->conf->wps_nfc_dh_privkey) < 0)
8775 return NULL;
8776
8777 if (cli_freq == 0) {
8778 wsc = wps_build_nfc_handover_sel_p2p(
8779 wpa_s->parent->wps,
8780 tag ? wpa_s->conf->wps_nfc_dev_pw_id :
8781 DEV_PW_NFC_CONNECTION_HANDOVER,
8782 wpa_s->conf->wps_nfc_dh_pubkey,
8783 tag ? wpa_s->conf->wps_nfc_dev_pw : NULL);
8784 } else
8785 wsc = NULL;
8786 p2p = p2p_build_nfc_handover_sel(wpa_s->global->p2p, cli_freq,
8787 go_dev_addr, ssid ? ssid->ssid : NULL,
8788 ssid ? ssid->ssid_len : 0);
8789
8790 return wpas_p2p_nfc_handover(ndef, wsc, p2p);
8791 }
8792
8793
wpas_p2p_nfc_join_group(struct wpa_supplicant * wpa_s,struct p2p_nfc_params * params)8794 static int wpas_p2p_nfc_join_group(struct wpa_supplicant *wpa_s,
8795 struct p2p_nfc_params *params)
8796 {
8797 wpa_printf(MSG_DEBUG, "P2P: Initiate join-group based on NFC "
8798 "connection handover (freq=%d)",
8799 params->go_freq);
8800
8801 if (params->go_freq && params->go_ssid_len) {
8802 wpa_s->p2p_wps_method = WPS_NFC;
8803 wpa_s->pending_join_wps_method = WPS_NFC;
8804 os_memset(wpa_s->pending_join_iface_addr, 0, ETH_ALEN);
8805 os_memcpy(wpa_s->pending_join_dev_addr, params->go_dev_addr,
8806 ETH_ALEN);
8807 return wpas_p2p_join_start(wpa_s, params->go_freq,
8808 params->go_ssid,
8809 params->go_ssid_len);
8810 }
8811
8812 return wpas_p2p_connect(wpa_s, params->peer->p2p_device_addr, NULL,
8813 WPS_NFC, 0, 0, 1, 0, wpa_s->conf->p2p_go_intent,
8814 params->go_freq, wpa_s->p2p_go_vht_center_freq2,
8815 -1, 0, 1, 1, wpa_s->p2p_go_max_oper_chwidth,
8816 wpa_s->p2p_go_he, wpa_s->p2p_go_edmg,
8817 params->go_ssid_len ? params->go_ssid : NULL,
8818 params->go_ssid_len);
8819 }
8820
8821
wpas_p2p_nfc_auth_join(struct wpa_supplicant * wpa_s,struct p2p_nfc_params * params,int tag)8822 static int wpas_p2p_nfc_auth_join(struct wpa_supplicant *wpa_s,
8823 struct p2p_nfc_params *params, int tag)
8824 {
8825 int res, persistent;
8826 struct wpa_ssid *ssid;
8827
8828 wpa_printf(MSG_DEBUG, "P2P: Authorize join-group based on NFC "
8829 "connection handover");
8830 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
8831 ssid = wpa_s->current_ssid;
8832 if (ssid == NULL)
8833 continue;
8834 if (ssid->mode != WPAS_MODE_P2P_GO)
8835 continue;
8836 if (wpa_s->ap_iface == NULL)
8837 continue;
8838 break;
8839 }
8840 if (wpa_s == NULL) {
8841 wpa_printf(MSG_DEBUG, "P2P: Could not find GO interface");
8842 return -1;
8843 }
8844
8845 if (wpa_s->p2pdev->p2p_oob_dev_pw_id !=
8846 DEV_PW_NFC_CONNECTION_HANDOVER &&
8847 !wpa_s->p2pdev->p2p_oob_dev_pw) {
8848 wpa_printf(MSG_DEBUG, "P2P: No NFC Dev Pw known");
8849 return -1;
8850 }
8851 res = wpas_ap_wps_add_nfc_pw(
8852 wpa_s, wpa_s->p2pdev->p2p_oob_dev_pw_id,
8853 wpa_s->p2pdev->p2p_oob_dev_pw,
8854 wpa_s->p2pdev->p2p_peer_oob_pk_hash_known ?
8855 wpa_s->p2pdev->p2p_peer_oob_pubkey_hash : NULL);
8856 if (res)
8857 return res;
8858
8859 if (!tag) {
8860 wpa_printf(MSG_DEBUG, "P2P: Negotiated handover - wait for peer to join without invitation");
8861 return 0;
8862 }
8863
8864 if (!params->peer ||
8865 !(params->peer->dev_capab & P2P_DEV_CAPAB_INVITATION_PROCEDURE))
8866 return 0;
8867
8868 wpa_printf(MSG_DEBUG, "P2P: Static handover - invite peer " MACSTR
8869 " to join", MAC2STR(params->peer->p2p_device_addr));
8870
8871 wpa_s->global->p2p_invite_group = wpa_s;
8872 persistent = ssid->p2p_persistent_group &&
8873 wpas_p2p_get_persistent(wpa_s->p2pdev,
8874 params->peer->p2p_device_addr,
8875 ssid->ssid, ssid->ssid_len);
8876 wpa_s->p2pdev->pending_invite_ssid_id = -1;
8877
8878 return p2p_invite(wpa_s->global->p2p, params->peer->p2p_device_addr,
8879 P2P_INVITE_ROLE_ACTIVE_GO, wpa_s->own_addr,
8880 ssid->ssid, ssid->ssid_len, ssid->frequency,
8881 wpa_s->global->p2p_dev_addr, persistent, 0,
8882 wpa_s->p2pdev->p2p_oob_dev_pw_id);
8883 }
8884
8885
wpas_p2p_nfc_init_go_neg(struct wpa_supplicant * wpa_s,struct p2p_nfc_params * params,int forced_freq)8886 static int wpas_p2p_nfc_init_go_neg(struct wpa_supplicant *wpa_s,
8887 struct p2p_nfc_params *params,
8888 int forced_freq)
8889 {
8890 wpa_printf(MSG_DEBUG, "P2P: Initiate GO Negotiation based on NFC "
8891 "connection handover");
8892 return wpas_p2p_connect(wpa_s, params->peer->p2p_device_addr, NULL,
8893 WPS_NFC, 0, 0, 0, 0, wpa_s->conf->p2p_go_intent,
8894 forced_freq, wpa_s->p2p_go_vht_center_freq2,
8895 -1, 0, 1, 1, wpa_s->p2p_go_max_oper_chwidth,
8896 wpa_s->p2p_go_he, wpa_s->p2p_go_edmg,
8897 NULL, 0);
8898 }
8899
8900
wpas_p2p_nfc_resp_go_neg(struct wpa_supplicant * wpa_s,struct p2p_nfc_params * params,int forced_freq)8901 static int wpas_p2p_nfc_resp_go_neg(struct wpa_supplicant *wpa_s,
8902 struct p2p_nfc_params *params,
8903 int forced_freq)
8904 {
8905 int res;
8906
8907 wpa_printf(MSG_DEBUG, "P2P: Authorize GO Negotiation based on NFC "
8908 "connection handover");
8909 res = wpas_p2p_connect(wpa_s, params->peer->p2p_device_addr, NULL,
8910 WPS_NFC, 0, 0, 0, 1, wpa_s->conf->p2p_go_intent,
8911 forced_freq, wpa_s->p2p_go_vht_center_freq2,
8912 -1, 0, 1, 1, wpa_s->p2p_go_max_oper_chwidth,
8913 wpa_s->p2p_go_he, wpa_s->p2p_go_edmg,
8914 NULL, 0);
8915 if (res)
8916 return res;
8917
8918 res = wpas_p2p_listen(wpa_s, 60);
8919 if (res) {
8920 p2p_unauthorize(wpa_s->global->p2p,
8921 params->peer->p2p_device_addr);
8922 }
8923
8924 return res;
8925 }
8926
8927
wpas_p2p_nfc_connection_handover(struct wpa_supplicant * wpa_s,const struct wpabuf * data,int sel,int tag,int forced_freq)8928 static int wpas_p2p_nfc_connection_handover(struct wpa_supplicant *wpa_s,
8929 const struct wpabuf *data,
8930 int sel, int tag, int forced_freq)
8931 {
8932 const u8 *pos, *end;
8933 u16 len, id;
8934 struct p2p_nfc_params params;
8935 int res;
8936
8937 os_memset(¶ms, 0, sizeof(params));
8938 params.sel = sel;
8939
8940 wpa_hexdump_buf(MSG_DEBUG, "P2P: Received NFC tag payload", data);
8941
8942 pos = wpabuf_head(data);
8943 end = pos + wpabuf_len(data);
8944
8945 if (end - pos < 2) {
8946 wpa_printf(MSG_DEBUG, "P2P: Not enough data for Length of WSC "
8947 "attributes");
8948 return -1;
8949 }
8950 len = WPA_GET_BE16(pos);
8951 pos += 2;
8952 if (len > end - pos) {
8953 wpa_printf(MSG_DEBUG, "P2P: Not enough data for WSC "
8954 "attributes");
8955 return -1;
8956 }
8957 params.wsc_attr = pos;
8958 params.wsc_len = len;
8959 pos += len;
8960
8961 if (end - pos < 2) {
8962 wpa_printf(MSG_DEBUG, "P2P: Not enough data for Length of P2P "
8963 "attributes");
8964 return -1;
8965 }
8966 len = WPA_GET_BE16(pos);
8967 pos += 2;
8968 if (len > end - pos) {
8969 wpa_printf(MSG_DEBUG, "P2P: Not enough data for P2P "
8970 "attributes");
8971 return -1;
8972 }
8973 params.p2p_attr = pos;
8974 params.p2p_len = len;
8975 pos += len;
8976
8977 wpa_hexdump(MSG_DEBUG, "P2P: WSC attributes",
8978 params.wsc_attr, params.wsc_len);
8979 wpa_hexdump(MSG_DEBUG, "P2P: P2P attributes",
8980 params.p2p_attr, params.p2p_len);
8981 if (pos < end) {
8982 wpa_hexdump(MSG_DEBUG,
8983 "P2P: Ignored extra data after P2P attributes",
8984 pos, end - pos);
8985 }
8986
8987 res = p2p_process_nfc_connection_handover(wpa_s->global->p2p, ¶ms);
8988 if (res)
8989 return res;
8990
8991 if (params.next_step == NO_ACTION)
8992 return 0;
8993
8994 if (params.next_step == BOTH_GO) {
8995 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_BOTH_GO "peer=" MACSTR,
8996 MAC2STR(params.peer->p2p_device_addr));
8997 return 0;
8998 }
8999
9000 if (params.next_step == PEER_CLIENT) {
9001 if (!is_zero_ether_addr(params.go_dev_addr)) {
9002 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_PEER_CLIENT
9003 "peer=" MACSTR " freq=%d go_dev_addr=" MACSTR
9004 " ssid=\"%s\"",
9005 MAC2STR(params.peer->p2p_device_addr),
9006 params.go_freq,
9007 MAC2STR(params.go_dev_addr),
9008 wpa_ssid_txt(params.go_ssid,
9009 params.go_ssid_len));
9010 } else {
9011 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_PEER_CLIENT
9012 "peer=" MACSTR " freq=%d",
9013 MAC2STR(params.peer->p2p_device_addr),
9014 params.go_freq);
9015 }
9016 return 0;
9017 }
9018
9019 if (wpas_p2p_cli_freq(wpa_s, NULL, NULL)) {
9020 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_WHILE_CLIENT "peer="
9021 MACSTR, MAC2STR(params.peer->p2p_device_addr));
9022 return 0;
9023 }
9024
9025 wpabuf_free(wpa_s->p2p_oob_dev_pw);
9026 wpa_s->p2p_oob_dev_pw = NULL;
9027
9028 if (params.oob_dev_pw_len < WPS_OOB_PUBKEY_HASH_LEN + 2) {
9029 wpa_printf(MSG_DEBUG, "P2P: No peer OOB Dev Pw "
9030 "received");
9031 return -1;
9032 }
9033
9034 id = WPA_GET_BE16(params.oob_dev_pw + WPS_OOB_PUBKEY_HASH_LEN);
9035 wpa_printf(MSG_DEBUG, "P2P: Peer OOB Dev Pw %u", id);
9036 wpa_hexdump(MSG_DEBUG, "P2P: Peer OOB Public Key hash",
9037 params.oob_dev_pw, WPS_OOB_PUBKEY_HASH_LEN);
9038 os_memcpy(wpa_s->p2p_peer_oob_pubkey_hash,
9039 params.oob_dev_pw, WPS_OOB_PUBKEY_HASH_LEN);
9040 wpa_s->p2p_peer_oob_pk_hash_known = 1;
9041
9042 if (tag) {
9043 if (id < 0x10) {
9044 wpa_printf(MSG_DEBUG, "P2P: Static handover - invalid "
9045 "peer OOB Device Password Id %u", id);
9046 return -1;
9047 }
9048 wpa_printf(MSG_DEBUG, "P2P: Static handover - use peer OOB "
9049 "Device Password Id %u", id);
9050 wpa_hexdump_key(MSG_DEBUG, "P2P: Peer OOB Device Password",
9051 params.oob_dev_pw + WPS_OOB_PUBKEY_HASH_LEN + 2,
9052 params.oob_dev_pw_len -
9053 WPS_OOB_PUBKEY_HASH_LEN - 2);
9054 wpa_s->p2p_oob_dev_pw_id = id;
9055 wpa_s->p2p_oob_dev_pw = wpabuf_alloc_copy(
9056 params.oob_dev_pw + WPS_OOB_PUBKEY_HASH_LEN + 2,
9057 params.oob_dev_pw_len -
9058 WPS_OOB_PUBKEY_HASH_LEN - 2);
9059 if (wpa_s->p2p_oob_dev_pw == NULL)
9060 return -1;
9061
9062 if (wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
9063 wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
9064 &wpa_s->conf->wps_nfc_dh_privkey) < 0)
9065 return -1;
9066 } else {
9067 wpa_printf(MSG_DEBUG, "P2P: Using abbreviated WPS handshake "
9068 "without Device Password");
9069 wpa_s->p2p_oob_dev_pw_id = DEV_PW_NFC_CONNECTION_HANDOVER;
9070 }
9071
9072 switch (params.next_step) {
9073 case NO_ACTION:
9074 case BOTH_GO:
9075 case PEER_CLIENT:
9076 /* already covered above */
9077 return 0;
9078 case JOIN_GROUP:
9079 return wpas_p2p_nfc_join_group(wpa_s, ¶ms);
9080 case AUTH_JOIN:
9081 return wpas_p2p_nfc_auth_join(wpa_s, ¶ms, tag);
9082 case INIT_GO_NEG:
9083 return wpas_p2p_nfc_init_go_neg(wpa_s, ¶ms, forced_freq);
9084 case RESP_GO_NEG:
9085 /* TODO: use own OOB Dev Pw */
9086 return wpas_p2p_nfc_resp_go_neg(wpa_s, ¶ms, forced_freq);
9087 }
9088
9089 return -1;
9090 }
9091
9092
wpas_p2p_nfc_tag_process(struct wpa_supplicant * wpa_s,const struct wpabuf * data,int forced_freq)9093 int wpas_p2p_nfc_tag_process(struct wpa_supplicant *wpa_s,
9094 const struct wpabuf *data, int forced_freq)
9095 {
9096 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
9097 return -1;
9098
9099 return wpas_p2p_nfc_connection_handover(wpa_s, data, 1, 1, forced_freq);
9100 }
9101
9102
wpas_p2p_nfc_report_handover(struct wpa_supplicant * wpa_s,int init,const struct wpabuf * req,const struct wpabuf * sel,int forced_freq)9103 int wpas_p2p_nfc_report_handover(struct wpa_supplicant *wpa_s, int init,
9104 const struct wpabuf *req,
9105 const struct wpabuf *sel, int forced_freq)
9106 {
9107 struct wpabuf *tmp;
9108 int ret;
9109
9110 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
9111 return -1;
9112
9113 wpa_printf(MSG_DEBUG, "NFC: P2P connection handover reported");
9114
9115 wpa_hexdump_ascii(MSG_DEBUG, "NFC: Req",
9116 wpabuf_head(req), wpabuf_len(req));
9117 wpa_hexdump_ascii(MSG_DEBUG, "NFC: Sel",
9118 wpabuf_head(sel), wpabuf_len(sel));
9119 if (forced_freq)
9120 wpa_printf(MSG_DEBUG, "NFC: Forced freq %d", forced_freq);
9121 tmp = ndef_parse_p2p(init ? sel : req);
9122 if (tmp == NULL) {
9123 wpa_printf(MSG_DEBUG, "P2P: Could not parse NDEF");
9124 return -1;
9125 }
9126
9127 ret = wpas_p2p_nfc_connection_handover(wpa_s, tmp, init, 0,
9128 forced_freq);
9129 wpabuf_free(tmp);
9130
9131 return ret;
9132 }
9133
9134
wpas_p2p_nfc_tag_enabled(struct wpa_supplicant * wpa_s,int enabled)9135 int wpas_p2p_nfc_tag_enabled(struct wpa_supplicant *wpa_s, int enabled)
9136 {
9137 const u8 *if_addr;
9138 int go_intent = wpa_s->conf->p2p_go_intent;
9139 struct wpa_supplicant *iface;
9140
9141 if (wpa_s->global->p2p == NULL)
9142 return -1;
9143
9144 if (!enabled) {
9145 wpa_printf(MSG_DEBUG, "P2P: Disable use of own NFC Tag");
9146 for (iface = wpa_s->global->ifaces; iface; iface = iface->next)
9147 {
9148 if (!iface->ap_iface)
9149 continue;
9150 hostapd_wps_nfc_token_disable(iface->ap_iface->bss[0]);
9151 }
9152 p2p_set_authorized_oob_dev_pw_id(wpa_s->global->p2p, 0,
9153 0, NULL);
9154 if (wpa_s->p2p_nfc_tag_enabled)
9155 wpas_p2p_remove_pending_group_interface(wpa_s);
9156 wpa_s->p2p_nfc_tag_enabled = 0;
9157 return 0;
9158 }
9159
9160 if (wpa_s->global->p2p_disabled)
9161 return -1;
9162
9163 if (wpa_s->conf->wps_nfc_dh_pubkey == NULL ||
9164 wpa_s->conf->wps_nfc_dh_privkey == NULL ||
9165 wpa_s->conf->wps_nfc_dev_pw == NULL ||
9166 wpa_s->conf->wps_nfc_dev_pw_id < 0x10) {
9167 wpa_printf(MSG_DEBUG, "P2P: NFC password token not configured "
9168 "to allow static handover cases");
9169 return -1;
9170 }
9171
9172 wpa_printf(MSG_DEBUG, "P2P: Enable use of own NFC Tag");
9173
9174 wpa_s->p2p_oob_dev_pw_id = wpa_s->conf->wps_nfc_dev_pw_id;
9175 wpabuf_free(wpa_s->p2p_oob_dev_pw);
9176 wpa_s->p2p_oob_dev_pw = wpabuf_dup(wpa_s->conf->wps_nfc_dev_pw);
9177 if (wpa_s->p2p_oob_dev_pw == NULL)
9178 return -1;
9179 wpa_s->p2p_peer_oob_pk_hash_known = 0;
9180
9181 if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO ||
9182 wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT) {
9183 /*
9184 * P2P Group Interface present and the command came on group
9185 * interface, so enable the token for the current interface.
9186 */
9187 wpa_s->create_p2p_iface = 0;
9188 } else {
9189 wpa_s->create_p2p_iface = wpas_p2p_create_iface(wpa_s);
9190 }
9191
9192 if (wpa_s->create_p2p_iface) {
9193 enum wpa_driver_if_type iftype;
9194 /* Prepare to add a new interface for the group */
9195 iftype = WPA_IF_P2P_GROUP;
9196 if (go_intent == 15)
9197 iftype = WPA_IF_P2P_GO;
9198 if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
9199 wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
9200 "interface for the group");
9201 return -1;
9202 }
9203
9204 if_addr = wpa_s->pending_interface_addr;
9205 } else if (wpa_s->p2p_mgmt)
9206 if_addr = wpa_s->parent->own_addr;
9207 else
9208 if_addr = wpa_s->own_addr;
9209
9210 wpa_s->p2p_nfc_tag_enabled = enabled;
9211
9212 for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
9213 struct hostapd_data *hapd;
9214 if (iface->ap_iface == NULL)
9215 continue;
9216 hapd = iface->ap_iface->bss[0];
9217 wpabuf_free(hapd->conf->wps_nfc_dh_pubkey);
9218 hapd->conf->wps_nfc_dh_pubkey =
9219 wpabuf_dup(wpa_s->conf->wps_nfc_dh_pubkey);
9220 wpabuf_free(hapd->conf->wps_nfc_dh_privkey);
9221 hapd->conf->wps_nfc_dh_privkey =
9222 wpabuf_dup(wpa_s->conf->wps_nfc_dh_privkey);
9223 wpabuf_free(hapd->conf->wps_nfc_dev_pw);
9224 hapd->conf->wps_nfc_dev_pw =
9225 wpabuf_dup(wpa_s->conf->wps_nfc_dev_pw);
9226 hapd->conf->wps_nfc_dev_pw_id = wpa_s->conf->wps_nfc_dev_pw_id;
9227
9228 if (hostapd_wps_nfc_token_enable(iface->ap_iface->bss[0]) < 0) {
9229 wpa_dbg(iface, MSG_DEBUG,
9230 "P2P: Failed to enable NFC Tag for GO");
9231 }
9232 }
9233 p2p_set_authorized_oob_dev_pw_id(
9234 wpa_s->global->p2p, wpa_s->conf->wps_nfc_dev_pw_id, go_intent,
9235 if_addr);
9236
9237 return 0;
9238 }
9239
9240 #endif /* CONFIG_WPS_NFC */
9241
9242
wpas_p2p_optimize_listen_channel(struct wpa_supplicant * wpa_s,struct wpa_used_freq_data * freqs,unsigned int num)9243 static void wpas_p2p_optimize_listen_channel(struct wpa_supplicant *wpa_s,
9244 struct wpa_used_freq_data *freqs,
9245 unsigned int num)
9246 {
9247 u8 curr_chan, cand, chan;
9248 unsigned int i;
9249
9250 /*
9251 * If possible, optimize the Listen channel to be a channel that is
9252 * already used by one of the other interfaces.
9253 */
9254 if (!wpa_s->conf->p2p_optimize_listen_chan)
9255 return;
9256
9257 if (!wpa_s->current_ssid || wpa_s->wpa_state != WPA_COMPLETED)
9258 return;
9259
9260 curr_chan = p2p_get_listen_channel(wpa_s->global->p2p);
9261 for (i = 0, cand = 0; i < num; i++) {
9262 ieee80211_freq_to_chan(freqs[i].freq, &chan);
9263 if (curr_chan == chan) {
9264 cand = 0;
9265 break;
9266 }
9267
9268 if (chan == 1 || chan == 6 || chan == 11)
9269 cand = chan;
9270 }
9271
9272 if (cand) {
9273 wpa_dbg(wpa_s, MSG_DEBUG,
9274 "P2P: Update Listen channel to %u based on operating channel",
9275 cand);
9276 p2p_set_listen_channel(wpa_s->global->p2p, 81, cand, 0);
9277 }
9278 }
9279
9280
wpas_p2p_move_go_csa(struct wpa_supplicant * wpa_s)9281 static int wpas_p2p_move_go_csa(struct wpa_supplicant *wpa_s)
9282 {
9283 struct hostapd_config *conf;
9284 struct p2p_go_neg_results params;
9285 struct csa_settings csa_settings;
9286 struct wpa_ssid *current_ssid = wpa_s->current_ssid;
9287 int old_freq = current_ssid->frequency;
9288 int ret;
9289
9290 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_AP_CSA)) {
9291 wpa_dbg(wpa_s, MSG_DEBUG, "CSA is not enabled");
9292 return -1;
9293 }
9294
9295 /*
9296 * TODO: This function may not always work correctly. For example,
9297 * when we have a running GO and a BSS on a DFS channel.
9298 */
9299 if (wpas_p2p_init_go_params(wpa_s, ¶ms, 0, 0, 0, 0, 0, 0, 0,
9300 NULL)) {
9301 wpa_dbg(wpa_s, MSG_DEBUG,
9302 "P2P CSA: Failed to select new frequency for GO");
9303 return -1;
9304 }
9305
9306 if (current_ssid->frequency == params.freq) {
9307 wpa_dbg(wpa_s, MSG_DEBUG,
9308 "P2P CSA: Selected same frequency - not moving GO");
9309 return 0;
9310 }
9311
9312 conf = hostapd_config_defaults();
9313 if (!conf) {
9314 wpa_dbg(wpa_s, MSG_DEBUG,
9315 "P2P CSA: Failed to allocate default config");
9316 return -1;
9317 }
9318
9319 current_ssid->frequency = params.freq;
9320 if (wpa_supplicant_conf_ap_ht(wpa_s, current_ssid, conf)) {
9321 wpa_dbg(wpa_s, MSG_DEBUG,
9322 "P2P CSA: Failed to create new GO config");
9323 ret = -1;
9324 goto out;
9325 }
9326
9327 if (conf->hw_mode != wpa_s->ap_iface->current_mode->mode) {
9328 wpa_dbg(wpa_s, MSG_DEBUG,
9329 "P2P CSA: CSA to a different band is not supported");
9330 ret = -1;
9331 goto out;
9332 }
9333
9334 os_memset(&csa_settings, 0, sizeof(csa_settings));
9335 csa_settings.cs_count = P2P_GO_CSA_COUNT;
9336 csa_settings.block_tx = P2P_GO_CSA_BLOCK_TX;
9337 csa_settings.freq_params.freq = params.freq;
9338 csa_settings.freq_params.sec_channel_offset = conf->secondary_channel;
9339 csa_settings.freq_params.ht_enabled = conf->ieee80211n;
9340 csa_settings.freq_params.bandwidth = conf->secondary_channel ? 40 : 20;
9341
9342 if (conf->ieee80211ac) {
9343 int freq1 = 0, freq2 = 0;
9344 u8 chan, opclass;
9345
9346 if (ieee80211_freq_to_channel_ext(params.freq,
9347 conf->secondary_channel,
9348 conf->vht_oper_chwidth,
9349 &opclass, &chan) ==
9350 NUM_HOSTAPD_MODES) {
9351 wpa_printf(MSG_ERROR, "P2P CSA: Bad freq");
9352 ret = -1;
9353 goto out;
9354 }
9355
9356 if (conf->vht_oper_centr_freq_seg0_idx)
9357 freq1 = ieee80211_chan_to_freq(
9358 NULL, opclass,
9359 conf->vht_oper_centr_freq_seg0_idx);
9360
9361 if (conf->vht_oper_centr_freq_seg1_idx)
9362 freq2 = ieee80211_chan_to_freq(
9363 NULL, opclass,
9364 conf->vht_oper_centr_freq_seg1_idx);
9365
9366 if (freq1 < 0 || freq2 < 0) {
9367 wpa_dbg(wpa_s, MSG_DEBUG,
9368 "P2P CSA: Selected invalid VHT center freqs");
9369 ret = -1;
9370 goto out;
9371 }
9372
9373 csa_settings.freq_params.vht_enabled = conf->ieee80211ac;
9374 csa_settings.freq_params.center_freq1 = freq1;
9375 csa_settings.freq_params.center_freq2 = freq2;
9376
9377 switch (conf->vht_oper_chwidth) {
9378 case CHANWIDTH_80MHZ:
9379 case CHANWIDTH_80P80MHZ:
9380 csa_settings.freq_params.bandwidth = 80;
9381 break;
9382 case CHANWIDTH_160MHZ:
9383 csa_settings.freq_params.bandwidth = 160;
9384 break;
9385 }
9386 }
9387
9388 ret = ap_switch_channel(wpa_s, &csa_settings);
9389 out:
9390 current_ssid->frequency = old_freq;
9391 hostapd_config_free(conf);
9392 return ret;
9393 }
9394
9395
wpas_p2p_move_go_no_csa(struct wpa_supplicant * wpa_s)9396 static void wpas_p2p_move_go_no_csa(struct wpa_supplicant *wpa_s)
9397 {
9398 struct p2p_go_neg_results params;
9399 struct wpa_ssid *current_ssid = wpa_s->current_ssid;
9400
9401 wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_REMOVE_AND_REFORM_GROUP);
9402
9403 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Move GO from freq=%d MHz",
9404 current_ssid->frequency);
9405
9406 /* Stop the AP functionality */
9407 /* TODO: Should do this in a way that does not indicated to possible
9408 * P2P Clients in the group that the group is terminated. */
9409 wpa_supplicant_ap_deinit(wpa_s);
9410
9411 /* Reselect the GO frequency */
9412 if (wpas_p2p_init_go_params(wpa_s, ¶ms, 0, 0, 0, 0, 0, 0, 0,
9413 NULL)) {
9414 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Failed to reselect freq");
9415 wpas_p2p_group_delete(wpa_s,
9416 P2P_GROUP_REMOVAL_GO_LEAVE_CHANNEL);
9417 return;
9418 }
9419 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New freq selected for the GO (%u MHz)",
9420 params.freq);
9421
9422 if (params.freq &&
9423 !p2p_supported_freq_go(wpa_s->global->p2p, params.freq)) {
9424 wpa_printf(MSG_DEBUG,
9425 "P2P: Selected freq (%u MHz) is not valid for P2P",
9426 params.freq);
9427 wpas_p2p_group_delete(wpa_s,
9428 P2P_GROUP_REMOVAL_GO_LEAVE_CHANNEL);
9429 return;
9430 }
9431
9432 /* Update the frequency */
9433 current_ssid->frequency = params.freq;
9434 wpa_s->connect_without_scan = current_ssid;
9435 wpa_s->reassociate = 1;
9436 wpa_s->disconnected = 0;
9437 wpa_supplicant_req_scan(wpa_s, 0, 0);
9438 }
9439
9440
wpas_p2p_move_go(void * eloop_ctx,void * timeout_ctx)9441 static void wpas_p2p_move_go(void *eloop_ctx, void *timeout_ctx)
9442 {
9443 struct wpa_supplicant *wpa_s = eloop_ctx;
9444
9445 if (!wpa_s->ap_iface || !wpa_s->current_ssid)
9446 return;
9447
9448 wpas_p2p_go_update_common_freqs(wpa_s);
9449
9450 /* Do not move GO in the middle of a CSA */
9451 if (hostapd_csa_in_progress(wpa_s->ap_iface)) {
9452 wpa_printf(MSG_DEBUG,
9453 "P2P: CSA is in progress - not moving GO");
9454 return;
9455 }
9456
9457 /*
9458 * First, try a channel switch flow. If it is not supported or fails,
9459 * take down the GO and bring it up again.
9460 */
9461 if (wpas_p2p_move_go_csa(wpa_s) < 0)
9462 wpas_p2p_move_go_no_csa(wpa_s);
9463 }
9464
9465
wpas_p2p_reconsider_moving_go(void * eloop_ctx,void * timeout_ctx)9466 static void wpas_p2p_reconsider_moving_go(void *eloop_ctx, void *timeout_ctx)
9467 {
9468 struct wpa_supplicant *wpa_s = eloop_ctx;
9469 struct wpa_used_freq_data *freqs = NULL;
9470 unsigned int num = wpa_s->num_multichan_concurrent;
9471
9472 freqs = os_calloc(num, sizeof(struct wpa_used_freq_data));
9473 if (!freqs)
9474 return;
9475
9476 num = get_shared_radio_freqs_data(wpa_s, freqs, num);
9477
9478 /* Previous attempt to move a GO was not possible -- try again. */
9479 wpas_p2p_consider_moving_gos(wpa_s, freqs, num,
9480 WPAS_P2P_CHANNEL_UPDATE_ANY);
9481
9482 os_free(freqs);
9483 }
9484
9485
9486 /*
9487 * Consider moving a GO from its currently used frequency:
9488 * 1. It is possible that due to regulatory consideration the frequency
9489 * can no longer be used and there is a need to evacuate the GO.
9490 * 2. It is possible that due to MCC considerations, it would be preferable
9491 * to move the GO to a channel that is currently used by some other
9492 * station interface.
9493 *
9494 * In case a frequency that became invalid is once again valid, cancel a
9495 * previously initiated GO frequency change.
9496 */
wpas_p2p_consider_moving_one_go(struct wpa_supplicant * wpa_s,struct wpa_used_freq_data * freqs,unsigned int num)9497 static void wpas_p2p_consider_moving_one_go(struct wpa_supplicant *wpa_s,
9498 struct wpa_used_freq_data *freqs,
9499 unsigned int num)
9500 {
9501 unsigned int i, invalid_freq = 0, policy_move = 0, flags = 0;
9502 unsigned int timeout;
9503 int freq;
9504 int dfs_offload;
9505
9506 wpas_p2p_go_update_common_freqs(wpa_s);
9507
9508 freq = wpa_s->current_ssid->frequency;
9509 dfs_offload = (wpa_s->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) &&
9510 ieee80211_is_dfs(freq, wpa_s->hw.modes, wpa_s->hw.num_modes);
9511 for (i = 0, invalid_freq = 0; i < num; i++) {
9512 if (freqs[i].freq == freq) {
9513 flags = freqs[i].flags;
9514
9515 /* The channel is invalid, must change it */
9516 if (!p2p_supported_freq_go(wpa_s->global->p2p, freq) &&
9517 !dfs_offload) {
9518 wpa_dbg(wpa_s, MSG_DEBUG,
9519 "P2P: Freq=%d MHz no longer valid for GO",
9520 freq);
9521 invalid_freq = 1;
9522 }
9523 } else if (freqs[i].flags == 0) {
9524 /* Freq is not used by any other station interface */
9525 continue;
9526 } else if (!p2p_supported_freq(wpa_s->global->p2p,
9527 freqs[i].freq) && !dfs_offload) {
9528 /* Freq is not valid for P2P use cases */
9529 continue;
9530 } else if (wpa_s->conf->p2p_go_freq_change_policy ==
9531 P2P_GO_FREQ_MOVE_SCM) {
9532 policy_move = 1;
9533 } else if (wpa_s->conf->p2p_go_freq_change_policy ==
9534 P2P_GO_FREQ_MOVE_SCM_PEER_SUPPORTS &&
9535 wpas_p2p_go_is_peer_freq(wpa_s, freqs[i].freq)) {
9536 policy_move = 1;
9537 } else if ((wpa_s->conf->p2p_go_freq_change_policy ==
9538 P2P_GO_FREQ_MOVE_SCM_ECSA) &&
9539 wpas_p2p_go_is_peer_freq(wpa_s, freqs[i].freq)) {
9540 if (!p2p_get_group_num_members(wpa_s->p2p_group)) {
9541 policy_move = 1;
9542 } else if ((wpa_s->drv_flags &
9543 WPA_DRIVER_FLAGS_AP_CSA) &&
9544 wpas_p2p_go_clients_support_ecsa(wpa_s)) {
9545 u8 chan;
9546
9547 /*
9548 * We do not support CSA between bands, so move
9549 * GO only within the same band.
9550 */
9551 if (wpa_s->ap_iface->current_mode->mode ==
9552 ieee80211_freq_to_chan(freqs[i].freq,
9553 &chan))
9554 policy_move = 1;
9555 }
9556 }
9557 }
9558
9559 wpa_dbg(wpa_s, MSG_DEBUG,
9560 "P2P: GO move: invalid_freq=%u, policy_move=%u, flags=0x%X",
9561 invalid_freq, policy_move, flags);
9562
9563 /*
9564 * The channel is valid, or we are going to have a policy move, so
9565 * cancel timeout.
9566 */
9567 if (!invalid_freq || policy_move) {
9568 wpa_dbg(wpa_s, MSG_DEBUG,
9569 "P2P: Cancel a GO move from freq=%d MHz", freq);
9570 eloop_cancel_timeout(wpas_p2p_move_go, wpa_s, NULL);
9571
9572 if (wpas_p2p_in_progress(wpa_s)) {
9573 wpa_dbg(wpa_s, MSG_DEBUG,
9574 "P2P: GO move: policy CS is not allowed - setting timeout to re-consider GO move");
9575 eloop_cancel_timeout(wpas_p2p_reconsider_moving_go,
9576 wpa_s, NULL);
9577 eloop_register_timeout(P2P_RECONSIDER_GO_MOVE_DELAY, 0,
9578 wpas_p2p_reconsider_moving_go,
9579 wpa_s, NULL);
9580 return;
9581 }
9582 }
9583
9584 if (!invalid_freq && (!policy_move || flags != 0)) {
9585 wpa_dbg(wpa_s, MSG_DEBUG,
9586 "P2P: Not initiating a GO frequency change");
9587 return;
9588 }
9589
9590 /*
9591 * Do not consider moving GO if it is in the middle of a CSA. When the
9592 * CSA is finished this flow should be retriggered.
9593 */
9594 if (hostapd_csa_in_progress(wpa_s->ap_iface)) {
9595 wpa_dbg(wpa_s, MSG_DEBUG,
9596 "P2P: Not initiating a GO frequency change - CSA is in progress");
9597 return;
9598 }
9599
9600 if (invalid_freq && !wpas_p2p_disallowed_freq(wpa_s->global, freq))
9601 timeout = P2P_GO_FREQ_CHANGE_TIME;
9602 else
9603 timeout = 0;
9604
9605 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Move GO from freq=%d MHz in %d secs",
9606 freq, timeout);
9607 eloop_cancel_timeout(wpas_p2p_move_go, wpa_s, NULL);
9608 eloop_register_timeout(timeout, 0, wpas_p2p_move_go, wpa_s, NULL);
9609 }
9610
9611
wpas_p2p_consider_moving_gos(struct wpa_supplicant * wpa_s,struct wpa_used_freq_data * freqs,unsigned int num,enum wpas_p2p_channel_update_trig trig)9612 static void wpas_p2p_consider_moving_gos(struct wpa_supplicant *wpa_s,
9613 struct wpa_used_freq_data *freqs,
9614 unsigned int num,
9615 enum wpas_p2p_channel_update_trig trig)
9616 {
9617 struct wpa_supplicant *ifs;
9618
9619 eloop_cancel_timeout(wpas_p2p_reconsider_moving_go, ELOOP_ALL_CTX,
9620 NULL);
9621
9622 /*
9623 * Travers all the radio interfaces, and for each GO interface, check
9624 * if there is a need to move the GO from the frequency it is using,
9625 * or in case the frequency is valid again, cancel the evacuation flow.
9626 */
9627 dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
9628 radio_list) {
9629 if (ifs->current_ssid == NULL ||
9630 ifs->current_ssid->mode != WPAS_MODE_P2P_GO)
9631 continue;
9632
9633 /*
9634 * The GO was just started or completed channel switch, no need
9635 * to move it.
9636 */
9637 if (wpa_s == ifs &&
9638 (trig == WPAS_P2P_CHANNEL_UPDATE_STATE_CHANGE ||
9639 trig == WPAS_P2P_CHANNEL_UPDATE_CS)) {
9640 wpa_dbg(wpa_s, MSG_DEBUG,
9641 "P2P: GO move - schedule re-consideration");
9642 eloop_register_timeout(P2P_RECONSIDER_GO_MOVE_DELAY, 0,
9643 wpas_p2p_reconsider_moving_go,
9644 wpa_s, NULL);
9645 continue;
9646 }
9647
9648 wpas_p2p_consider_moving_one_go(ifs, freqs, num);
9649 }
9650 }
9651
9652
wpas_p2p_indicate_state_change(struct wpa_supplicant * wpa_s)9653 void wpas_p2p_indicate_state_change(struct wpa_supplicant *wpa_s)
9654 {
9655 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
9656 return;
9657
9658 wpas_p2p_update_channel_list(wpa_s,
9659 WPAS_P2P_CHANNEL_UPDATE_STATE_CHANGE);
9660 }
9661
9662
wpas_p2p_deinit_iface(struct wpa_supplicant * wpa_s)9663 void wpas_p2p_deinit_iface(struct wpa_supplicant *wpa_s)
9664 {
9665 if (wpa_s == wpa_s->global->p2p_init_wpa_s && wpa_s->global->p2p) {
9666 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Disable P2P since removing "
9667 "the management interface is being removed");
9668 wpas_p2p_deinit_global(wpa_s->global);
9669 }
9670 }
9671
9672
wpas_p2p_ap_deinit(struct wpa_supplicant * wpa_s)9673 void wpas_p2p_ap_deinit(struct wpa_supplicant *wpa_s)
9674 {
9675 if (wpa_s->ap_iface->bss)
9676 wpa_s->ap_iface->bss[0]->p2p_group = NULL;
9677 wpas_p2p_group_deinit(wpa_s);
9678 }
9679
9680
wpas_p2p_lo_start(struct wpa_supplicant * wpa_s,unsigned int freq,unsigned int period,unsigned int interval,unsigned int count)9681 int wpas_p2p_lo_start(struct wpa_supplicant *wpa_s, unsigned int freq,
9682 unsigned int period, unsigned int interval,
9683 unsigned int count)
9684 {
9685 struct p2p_data *p2p = wpa_s->global->p2p;
9686 u8 *device_types;
9687 size_t dev_types_len;
9688 struct wpabuf *buf;
9689 int ret;
9690
9691 if (wpa_s->p2p_lo_started) {
9692 wpa_dbg(wpa_s, MSG_DEBUG,
9693 "P2P Listen offload is already started");
9694 return 0;
9695 }
9696
9697 if (wpa_s->global->p2p == NULL ||
9698 !(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_LISTEN_OFFLOAD)) {
9699 wpa_printf(MSG_DEBUG, "P2P: Listen offload not supported");
9700 return -1;
9701 }
9702
9703 if (!p2p_supported_freq(wpa_s->global->p2p, freq)) {
9704 wpa_printf(MSG_ERROR, "P2P: Input channel not supported: %u",
9705 freq);
9706 return -1;
9707 }
9708
9709 /* Get device type */
9710 dev_types_len = (wpa_s->conf->num_sec_device_types + 1) *
9711 WPS_DEV_TYPE_LEN;
9712 device_types = os_malloc(dev_types_len);
9713 if (!device_types)
9714 return -1;
9715 os_memcpy(device_types, wpa_s->conf->device_type, WPS_DEV_TYPE_LEN);
9716 os_memcpy(&device_types[WPS_DEV_TYPE_LEN], wpa_s->conf->sec_device_type,
9717 wpa_s->conf->num_sec_device_types * WPS_DEV_TYPE_LEN);
9718
9719 /* Get Probe Response IE(s) */
9720 buf = p2p_build_probe_resp_template(p2p, freq);
9721 if (!buf) {
9722 os_free(device_types);
9723 return -1;
9724 }
9725
9726 ret = wpa_drv_p2p_lo_start(wpa_s, freq, period, interval, count,
9727 device_types, dev_types_len,
9728 wpabuf_mhead_u8(buf), wpabuf_len(buf));
9729 if (ret < 0)
9730 wpa_dbg(wpa_s, MSG_DEBUG,
9731 "P2P: Failed to start P2P listen offload");
9732
9733 os_free(device_types);
9734 wpabuf_free(buf);
9735
9736 if (ret == 0) {
9737 wpa_s->p2p_lo_started = 1;
9738
9739 /* Stop current P2P listen if any */
9740 wpas_stop_listen(wpa_s);
9741 }
9742
9743 return ret;
9744 }
9745
9746
wpas_p2p_lo_stop(struct wpa_supplicant * wpa_s)9747 int wpas_p2p_lo_stop(struct wpa_supplicant *wpa_s)
9748 {
9749 int ret;
9750
9751 if (!wpa_s->p2p_lo_started)
9752 return 0;
9753
9754 ret = wpa_drv_p2p_lo_stop(wpa_s);
9755 if (ret < 0)
9756 wpa_dbg(wpa_s, MSG_DEBUG,
9757 "P2P: Failed to stop P2P listen offload");
9758
9759 wpa_s->p2p_lo_started = 0;
9760 return ret;
9761 }
9762