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