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