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