]> git.ipfire.org Git - thirdparty/hostap.git/blob - wpa_supplicant/p2p_supplicant.c
P2P: Verify that forced channel is suitable for autonomous GO
[thirdparty/hostap.git] / wpa_supplicant / p2p_supplicant.c
1 /*
2 * wpa_supplicant - P2P
3 * Copyright (c) 2009-2010, Atheros Communications
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
11 *
12 * See README and COPYING for more details.
13 */
14
15 #include "includes.h"
16
17 #include "common.h"
18 #include "eloop.h"
19 #include "common/ieee802_11_common.h"
20 #include "common/ieee802_11_defs.h"
21 #include "common/wpa_ctrl.h"
22 #include "wps/wps_i.h"
23 #include "p2p/p2p.h"
24 #include "ap/hostapd.h"
25 #include "ap/p2p_hostapd.h"
26 #include "wpa_supplicant_i.h"
27 #include "driver_i.h"
28 #include "ap.h"
29 #include "config_ssid.h"
30 #include "config.h"
31 #include "mlme.h"
32 #include "notify.h"
33 #include "scan.h"
34 #include "bss.h"
35 #include "wps_supplicant.h"
36 #include "p2p_supplicant.h"
37
38
39 static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx);
40 static struct wpa_supplicant *
41 wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
42 int go);
43 static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s);
44 static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx);
45 static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
46 const u8 *dev_addr, enum p2p_wps_method wps_method);
47 static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s);
48 static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s);
49
50
51 static void wpas_p2p_scan_res_handler(struct wpa_supplicant *wpa_s,
52 struct wpa_scan_results *scan_res)
53 {
54 size_t i;
55
56 if (wpa_s->global->p2p_disabled)
57 return;
58
59 wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS)",
60 (int) scan_res->num);
61
62 for (i = 0; i < scan_res->num; i++) {
63 struct wpa_scan_res *bss = scan_res->res[i];
64 if (p2p_scan_res_handler(wpa_s->global->p2p, bss->bssid,
65 bss->freq, bss->level,
66 (const u8 *) (bss + 1),
67 bss->ie_len) > 0)
68 return;
69 }
70
71 p2p_scan_res_handled(wpa_s->global->p2p);
72 }
73
74
75 static int wpas_p2p_scan(void *ctx, enum p2p_scan_type type, int freq)
76 {
77 struct wpa_supplicant *wpa_s = ctx;
78 struct wpa_driver_scan_params params;
79 int ret;
80 struct wpabuf *wps_ie, *ies;
81 int social_channels[] = { 2412, 2437, 2462, 0, 0 };
82
83 os_memset(&params, 0, sizeof(params));
84
85 /* P2P Wildcard SSID */
86 params.num_ssids = 1;
87 params.ssids[0].ssid = (u8 *) P2P_WILDCARD_SSID;
88 params.ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
89
90 wpa_s->wps->dev.p2p = 1;
91 wps_ie = wps_build_probe_req_ie(0, &wpa_s->wps->dev, wpa_s->wps->uuid,
92 WPS_REQ_ENROLLEE);
93 if (wps_ie == NULL)
94 return -1;
95
96 ies = wpabuf_alloc(wpabuf_len(wps_ie) + 100);
97 if (ies == NULL) {
98 wpabuf_free(wps_ie);
99 return -1;
100 }
101 wpabuf_put_buf(ies, wps_ie);
102 wpabuf_free(wps_ie);
103
104 p2p_scan_ie(wpa_s->global->p2p, ies);
105
106 params.extra_ies = wpabuf_head(ies);
107 params.extra_ies_len = wpabuf_len(ies);
108
109 switch (type) {
110 case P2P_SCAN_SOCIAL:
111 params.freqs = social_channels;
112 break;
113 case P2P_SCAN_FULL:
114 break;
115 case P2P_SCAN_SPECIFIC:
116 social_channels[0] = freq;
117 social_channels[1] = 0;
118 params.freqs = social_channels;
119 break;
120 case P2P_SCAN_SOCIAL_PLUS_ONE:
121 social_channels[3] = freq;
122 params.freqs = social_channels;
123 break;
124 }
125
126 wpa_s->scan_res_handler = wpas_p2p_scan_res_handler;
127 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME)
128 ret = ieee80211_sta_req_scan(wpa_s, &params);
129 else
130 ret = wpa_drv_scan(wpa_s, &params);
131
132 wpabuf_free(ies);
133
134 return ret;
135 }
136
137
138 #ifdef CONFIG_CLIENT_MLME
139 static void p2p_rx_action_mlme(void *ctx, const u8 *buf, size_t len, int freq)
140 {
141 struct wpa_supplicant *wpa_s = ctx;
142 const struct ieee80211_mgmt *mgmt;
143 size_t hdr_len;
144
145 if (wpa_s->global->p2p_disabled)
146 return;
147 mgmt = (const struct ieee80211_mgmt *) buf;
148 hdr_len = (const u8 *) &mgmt->u.action.u.vs_public_action.action - buf;
149 if (hdr_len > len)
150 return;
151 p2p_rx_action(wpa_s->global->p2p, mgmt->da, mgmt->sa, mgmt->bssid,
152 mgmt->u.action.category,
153 &mgmt->u.action.u.vs_public_action.action,
154 len - hdr_len, freq);
155 }
156 #endif /* CONFIG_CLIENT_MLME */
157
158
159 static enum wpa_driver_if_type wpas_p2p_if_type(int p2p_group_interface)
160 {
161 switch (p2p_group_interface) {
162 case P2P_GROUP_INTERFACE_PENDING:
163 return WPA_IF_P2P_GROUP;
164 case P2P_GROUP_INTERFACE_GO:
165 return WPA_IF_P2P_GO;
166 case P2P_GROUP_INTERFACE_CLIENT:
167 return WPA_IF_P2P_CLIENT;
168 }
169
170 return WPA_IF_P2P_GROUP;
171 }
172
173
174 static void wpas_p2p_group_delete(struct wpa_supplicant *wpa_s)
175 {
176 struct wpa_ssid *ssid;
177 char *gtype;
178
179 ssid = wpa_s->current_ssid;
180 if (ssid == NULL) {
181 /*
182 * The current SSID was not known, but there may still be a
183 * pending P2P group interface waiting for provisioning.
184 */
185 ssid = wpa_s->conf->ssid;
186 while (ssid) {
187 if (ssid->p2p_group &&
188 (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION ||
189 (ssid->key_mgmt & WPA_KEY_MGMT_WPS)))
190 break;
191 ssid = ssid->next;
192 }
193 }
194 if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO)
195 gtype = "GO";
196 else if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT ||
197 (ssid && ssid->mode == WPAS_MODE_INFRA)) {
198 wpa_s->reassociate = 0;
199 wpa_s->disconnected = 1;
200 wpa_supplicant_deauthenticate(wpa_s,
201 WLAN_REASON_DEAUTH_LEAVING);
202 gtype = "client";
203 } else
204 gtype = "GO";
205 if (wpa_s->cross_connect_in_use) {
206 wpa_s->cross_connect_in_use = 0;
207 wpa_msg(wpa_s->parent, MSG_INFO,
208 P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
209 wpa_s->ifname, wpa_s->cross_connect_uplink);
210 }
211 wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_REMOVED "%s %s",
212 wpa_s->ifname, gtype);
213 if (wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE) {
214 struct wpa_global *global;
215 char *ifname;
216 enum wpa_driver_if_type type;
217 wpa_printf(MSG_DEBUG, "P2P: Remove group interface %s",
218 wpa_s->ifname);
219 global = wpa_s->global;
220 ifname = os_strdup(wpa_s->ifname);
221 type = wpas_p2p_if_type(wpa_s->p2p_group_interface);
222 wpa_supplicant_remove_iface(wpa_s->global, wpa_s);
223 wpa_s = global->ifaces;
224 if (wpa_s && ifname)
225 wpa_drv_if_remove(wpa_s, type, ifname);
226 os_free(ifname);
227 return;
228 }
229
230 wpa_printf(MSG_DEBUG, "P2P: Remove temporary group network");
231 if (ssid && (ssid->p2p_group ||
232 ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION ||
233 (ssid->key_mgmt & WPA_KEY_MGMT_WPS))) {
234 int id = ssid->id;
235 if (ssid == wpa_s->current_ssid)
236 wpa_s->current_ssid = NULL;
237 wpas_notify_network_removed(wpa_s, ssid);
238 wpa_config_remove_network(wpa_s->conf, id);
239 wpa_supplicant_clear_status(wpa_s);
240 } else {
241 wpa_printf(MSG_DEBUG, "P2P: Temporary group network not "
242 "found");
243 }
244 wpa_supplicant_ap_deinit(wpa_s);
245 }
246
247
248 static int wpas_p2p_persistent_group(struct wpa_supplicant *wpa_s,
249 u8 *go_dev_addr,
250 const u8 *ssid, size_t ssid_len)
251 {
252 struct wpa_bss *bss;
253 const u8 *bssid;
254 struct wpabuf *p2p;
255 u8 group_capab;
256 const u8 *addr;
257
258 if (wpa_s->go_params)
259 bssid = wpa_s->go_params->peer_interface_addr;
260 else
261 bssid = wpa_s->bssid;
262
263 bss = wpa_bss_get(wpa_s, bssid, ssid, ssid_len);
264 if (bss == NULL) {
265 u8 iface_addr[ETH_ALEN];
266 if (p2p_get_interface_addr(wpa_s->global->p2p, bssid,
267 iface_addr) == 0)
268 bss = wpa_bss_get(wpa_s, iface_addr, ssid, ssid_len);
269 }
270 if (bss == NULL) {
271 wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
272 "group is persistent - BSS " MACSTR " not found",
273 MAC2STR(bssid));
274 return 0;
275 }
276
277 p2p = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
278 if (p2p == NULL) {
279 wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
280 "group is persistent - BSS " MACSTR
281 " did not include P2P IE", MAC2STR(bssid));
282 wpa_hexdump(MSG_DEBUG, "P2P: Probe Response IEs",
283 (u8 *) (bss + 1), bss->ie_len);
284 wpa_hexdump(MSG_DEBUG, "P2P: Beacon IEs",
285 ((u8 *) bss + 1) + bss->ie_len,
286 bss->beacon_ie_len);
287 return 0;
288 }
289
290 group_capab = p2p_get_group_capab(p2p);
291 addr = p2p_get_go_dev_addr(p2p);
292 wpa_printf(MSG_DEBUG, "P2P: Checking whether group is persistent: "
293 "group_capab=0x%x", group_capab);
294 if (addr) {
295 os_memcpy(go_dev_addr, addr, ETH_ALEN);
296 wpa_printf(MSG_DEBUG, "P2P: GO Device Address " MACSTR,
297 MAC2STR(addr));
298 } else
299 os_memset(go_dev_addr, 0, ETH_ALEN);
300 wpabuf_free(p2p);
301
302 wpa_printf(MSG_DEBUG, "P2P: BSS " MACSTR " group_capab=0x%x "
303 "go_dev_addr=" MACSTR,
304 MAC2STR(bssid), group_capab, MAC2STR(go_dev_addr));
305
306 return group_capab & P2P_GROUP_CAPAB_PERSISTENT_GROUP;
307 }
308
309
310 static void wpas_p2p_store_persistent_group(struct wpa_supplicant *wpa_s,
311 struct wpa_ssid *ssid,
312 const u8 *go_dev_addr)
313 {
314 struct wpa_ssid *s;
315 int changed = 0;
316
317 wpa_printf(MSG_DEBUG, "P2P: Storing credentials for a persistent "
318 "group (GO Dev Addr " MACSTR ")", MAC2STR(go_dev_addr));
319 for (s = wpa_s->conf->ssid; s; s = s->next) {
320 if (s->disabled == 2 &&
321 os_memcmp(go_dev_addr, s->bssid, ETH_ALEN) == 0 &&
322 s->ssid_len == ssid->ssid_len &&
323 os_memcmp(ssid->ssid, s->ssid, ssid->ssid_len) == 0)
324 break;
325 }
326
327 if (s) {
328 wpa_printf(MSG_DEBUG, "P2P: Update existing persistent group "
329 "entry");
330 if (ssid->passphrase && !s->passphrase)
331 changed = 1;
332 else if (ssid->passphrase && s->passphrase &&
333 os_strcmp(ssid->passphrase, s->passphrase) != 0)
334 changed = 1;
335 } else {
336 wpa_printf(MSG_DEBUG, "P2P: Create a new persistent group "
337 "entry");
338 changed = 1;
339 s = wpa_config_add_network(wpa_s->conf);
340 if (s == NULL)
341 return;
342 wpa_config_set_network_defaults(s);
343 }
344
345 s->p2p_group = 1;
346 s->p2p_persistent_group = 1;
347 s->disabled = 2;
348 s->bssid_set = 1;
349 os_memcpy(s->bssid, go_dev_addr, ETH_ALEN);
350 s->mode = ssid->mode;
351 s->auth_alg = WPA_AUTH_ALG_OPEN;
352 s->key_mgmt = WPA_KEY_MGMT_PSK;
353 s->proto = WPA_PROTO_RSN;
354 s->pairwise_cipher = WPA_CIPHER_CCMP;
355 if (ssid->passphrase) {
356 os_free(s->passphrase);
357 s->passphrase = os_strdup(ssid->passphrase);
358 }
359 if (ssid->psk_set) {
360 s->psk_set = 1;
361 os_memcpy(s->psk, ssid->psk, 32);
362 }
363 if (s->passphrase && !s->psk_set)
364 wpa_config_update_psk(s);
365 if (s->ssid == NULL || s->ssid_len < ssid->ssid_len) {
366 os_free(s->ssid);
367 s->ssid = os_malloc(ssid->ssid_len);
368 }
369 if (s->ssid) {
370 s->ssid_len = ssid->ssid_len;
371 os_memcpy(s->ssid, ssid->ssid, s->ssid_len);
372 }
373
374 #ifndef CONFIG_NO_CONFIG_WRITE
375 if (changed && wpa_s->conf->update_config &&
376 wpa_config_write(wpa_s->confname, wpa_s->conf)) {
377 wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
378 }
379 #endif /* CONFIG_NO_CONFIG_WRITE */
380 }
381
382
383 static void wpas_group_formation_completed(struct wpa_supplicant *wpa_s,
384 int success)
385 {
386 struct wpa_ssid *ssid;
387 const char *ssid_txt;
388 int client;
389 int persistent;
390 u8 go_dev_addr[ETH_ALEN];
391
392 /*
393 * This callback is likely called for the main interface. Update wpa_s
394 * to use the group interface if a new interface was created for the
395 * group.
396 */
397 if (wpa_s->global->p2p_group_formation)
398 wpa_s = wpa_s->global->p2p_group_formation;
399 wpa_s->p2p_in_provisioning = 0;
400
401 if (!success) {
402 wpa_msg(wpa_s->parent, MSG_INFO,
403 P2P_EVENT_GROUP_FORMATION_FAILURE);
404 wpas_p2p_group_delete(wpa_s);
405 return;
406 }
407
408 wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_FORMATION_SUCCESS);
409
410 ssid = wpa_s->current_ssid;
411 if (ssid && ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
412 ssid->mode = WPAS_MODE_P2P_GO;
413 p2p_group_notif_formation_done(wpa_s->p2p_group);
414 wpa_supplicant_ap_mac_addr_filter(wpa_s, NULL);
415 }
416
417 persistent = 0;
418 if (ssid) {
419 ssid_txt = wpa_ssid_txt(ssid->ssid, ssid->ssid_len);
420 client = ssid->mode == WPAS_MODE_INFRA;
421 if (ssid->mode == WPAS_MODE_P2P_GO) {
422 persistent = ssid->p2p_persistent_group;
423 os_memcpy(go_dev_addr, wpa_s->parent->own_addr,
424 ETH_ALEN);
425 } else
426 persistent = wpas_p2p_persistent_group(wpa_s,
427 go_dev_addr,
428 ssid->ssid,
429 ssid->ssid_len);
430 } else {
431 ssid_txt = "";
432 client = wpa_s->p2p_group_interface ==
433 P2P_GROUP_INTERFACE_CLIENT;
434 }
435
436 wpa_s->show_group_started = 0;
437 if (client) {
438 /*
439 * Indicate event only after successfully completed 4-way
440 * handshake, i.e., when the interface is ready for data
441 * packets.
442 */
443 wpa_s->show_group_started = 1;
444 } else if (ssid && ssid->passphrase == NULL && ssid->psk_set) {
445 char psk[65];
446 wpa_snprintf_hex(psk, sizeof(psk), ssid->psk, 32);
447 wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
448 "%s GO ssid=\"%s\" freq=%d psk=%s go_dev_addr=" MACSTR
449 "%s",
450 wpa_s->ifname, ssid_txt, ssid->frequency, psk,
451 MAC2STR(go_dev_addr),
452 persistent ? " [PERSISTENT]" : "");
453 wpas_p2p_cross_connect_setup(wpa_s);
454 } else {
455 wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
456 "%s GO ssid=\"%s\" freq=%d passphrase=\"%s\" "
457 "go_dev_addr=" MACSTR "%s",
458 wpa_s->ifname, ssid_txt, ssid->frequency,
459 ssid && ssid->passphrase ? ssid->passphrase : "",
460 MAC2STR(go_dev_addr),
461 persistent ? " [PERSISTENT]" : "");
462 wpas_p2p_cross_connect_setup(wpa_s);
463 }
464
465 if (persistent)
466 wpas_p2p_store_persistent_group(wpa_s->parent, ssid,
467 go_dev_addr);
468 }
469
470
471 static void wpas_send_action_cb(void *eloop_ctx, void *timeout_ctx)
472 {
473 struct wpa_supplicant *wpa_s = eloop_ctx;
474 struct wpa_supplicant *iface;
475 int res;
476 int without_roc;
477
478 without_roc = wpa_s->pending_action_without_roc;
479 wpa_s->pending_action_without_roc = 0;
480 wpa_printf(MSG_DEBUG, "P2P: Send Action callback (without_roc=%d "
481 "pending_action_tx=%p)",
482 without_roc, wpa_s->pending_action_tx);
483
484 if (wpa_s->pending_action_tx == NULL)
485 return;
486
487 if (wpa_s->off_channel_freq != wpa_s->pending_action_freq &&
488 wpa_s->pending_action_freq != 0) {
489 wpa_printf(MSG_DEBUG, "P2P: Pending Action frame TX "
490 "waiting for another freq=%u (off_channel_freq=%u)",
491 wpa_s->pending_action_freq,
492 wpa_s->off_channel_freq);
493 if (without_roc && wpa_s->off_channel_freq == 0) {
494 /*
495 * We may get here if wpas_send_action() found us to be
496 * on the correct channel, but remain-on-channel cancel
497 * event was received before getting here.
498 */
499 wpa_printf(MSG_DEBUG, "P2P: Schedule "
500 "remain-on-channel to send Action frame");
501 if (wpa_drv_remain_on_channel(
502 wpa_s, wpa_s->pending_action_freq, 200) <
503 0) {
504 wpa_printf(MSG_DEBUG, "P2P: Failed to request "
505 "driver to remain on channel (%u "
506 "MHz) for Action Frame TX",
507 wpa_s->pending_action_freq);
508 } else
509 wpa_s->roc_waiting_drv_freq =
510 wpa_s->pending_action_freq;
511 }
512 return;
513 }
514
515 /*
516 * This call is likely going to be on the P2P device instance if the
517 * driver uses a separate interface for that purpose. However, some
518 * Action frames are actually sent within a P2P Group and when that is
519 * the case, we need to follow power saving (e.g., GO buffering the
520 * frame for a client in PS mode or a client following the advertised
521 * NoA from its GO). To make that easier for the driver, select the
522 * correct group interface here.
523 */
524 if (os_memcmp(wpa_s->pending_action_src, wpa_s->own_addr, ETH_ALEN) !=
525 0) {
526 /*
527 * Try to find a group interface that matches with the source
528 * address.
529 */
530 iface = wpa_s->global->ifaces;
531 while (iface) {
532 if (os_memcmp(wpa_s->pending_action_src,
533 iface->own_addr, ETH_ALEN) == 0)
534 break;
535 iface = iface->next;
536 }
537 if (iface) {
538 wpa_printf(MSG_DEBUG, "P2P: Use group interface %s "
539 "instead of interface %s for Action TX",
540 iface->ifname, wpa_s->ifname);
541 } else
542 iface = wpa_s;
543 } else
544 iface = wpa_s;
545
546 wpa_printf(MSG_DEBUG, "P2P: Sending pending Action frame to "
547 MACSTR " using interface %s",
548 MAC2STR(wpa_s->pending_action_dst), iface->ifname);
549 res = wpa_drv_send_action(iface, wpa_s->pending_action_freq,
550 wpa_s->pending_action_dst,
551 wpa_s->pending_action_src,
552 wpa_s->pending_action_bssid,
553 wpabuf_head(wpa_s->pending_action_tx),
554 wpabuf_len(wpa_s->pending_action_tx));
555 if (res) {
556 wpa_printf(MSG_DEBUG, "P2P: Failed to send the pending "
557 "Action frame");
558 /*
559 * Use fake TX status event to allow P2P state machine to
560 * continue.
561 */
562 wpas_send_action_tx_status(
563 wpa_s, wpa_s->pending_action_dst,
564 wpabuf_head(wpa_s->pending_action_tx),
565 wpabuf_len(wpa_s->pending_action_tx), 0);
566 }
567 }
568
569
570 void wpas_send_action_tx_status(struct wpa_supplicant *wpa_s, const u8 *dst,
571 const u8 *data, size_t data_len, int ack)
572 {
573 if (wpa_s->global->p2p_disabled)
574 return;
575
576 if (wpa_s->pending_action_tx == NULL) {
577 wpa_printf(MSG_DEBUG, "P2P: Ignore Action TX status - no "
578 "pending operation");
579 return;
580 }
581
582 if (os_memcmp(dst, wpa_s->pending_action_dst, ETH_ALEN) != 0) {
583 wpa_printf(MSG_DEBUG, "P2P: Ignore Action TX status - unknown "
584 "destination address");
585 return;
586 }
587
588 wpabuf_free(wpa_s->pending_action_tx);
589 wpa_s->pending_action_tx = NULL;
590
591 p2p_send_action_cb(wpa_s->global->p2p, wpa_s->pending_action_freq,
592 wpa_s->pending_action_dst,
593 wpa_s->pending_action_src,
594 wpa_s->pending_action_bssid,
595 ack);
596
597 if (wpa_s->pending_pd_before_join &&
598 (os_memcmp(wpa_s->pending_action_dst, wpa_s->pending_join_dev_addr,
599 ETH_ALEN) == 0 ||
600 os_memcmp(wpa_s->pending_action_dst,
601 wpa_s->pending_join_iface_addr, ETH_ALEN) == 0)) {
602 wpa_s->pending_pd_before_join = 0;
603 wpa_printf(MSG_DEBUG, "P2P: Starting pending "
604 "join-existing-group operation");
605 wpas_p2p_join_start(wpa_s);
606 }
607 }
608
609
610 static int wpas_send_action(void *ctx, unsigned int freq, const u8 *dst,
611 const u8 *src, const u8 *bssid, const u8 *buf,
612 size_t len, unsigned int wait_time)
613 {
614 struct wpa_supplicant *wpa_s = ctx;
615
616 wpa_printf(MSG_DEBUG, "P2P: Send action frame: freq=%d dst=" MACSTR
617 " src=" MACSTR " bssid=" MACSTR " len=%d",
618 freq, MAC2STR(dst), MAC2STR(src), MAC2STR(bssid),
619 (int) len);
620
621 if (wpa_s->pending_action_tx) {
622 wpa_printf(MSG_DEBUG, "P2P: Dropped pending Action frame TX "
623 "to " MACSTR, MAC2STR(wpa_s->pending_action_dst));
624 wpabuf_free(wpa_s->pending_action_tx);
625 }
626 wpa_s->pending_action_tx = wpabuf_alloc(len);
627 if (wpa_s->pending_action_tx == NULL) {
628 wpa_printf(MSG_DEBUG, "P2P: Failed to allocate Action frame "
629 "TX buffer (len=%llu)", (unsigned long long) len);
630 return -1;
631 }
632 wpabuf_put_data(wpa_s->pending_action_tx, buf, len);
633 os_memcpy(wpa_s->pending_action_src, src, ETH_ALEN);
634 os_memcpy(wpa_s->pending_action_dst, dst, ETH_ALEN);
635 os_memcpy(wpa_s->pending_action_bssid, bssid, ETH_ALEN);
636 wpa_s->pending_action_freq = freq;
637
638 if (wpa_s->off_channel_freq == freq || freq == 0) {
639 wpa_printf(MSG_DEBUG, "P2P: Already on requested channel; "
640 "send Action frame immediately");
641 /* TODO: Would there ever be need to extend the current
642 * duration on the channel? */
643 wpa_s->pending_action_without_roc = 1;
644 eloop_cancel_timeout(wpas_send_action_cb, wpa_s, NULL);
645 eloop_register_timeout(0, 0, wpas_send_action_cb, wpa_s, NULL);
646 return 0;
647 }
648 wpa_s->pending_action_without_roc = 0;
649
650 if (wpa_s->roc_waiting_drv_freq == freq) {
651 wpa_printf(MSG_DEBUG, "P2P: Already waiting for driver to get "
652 "to frequency %u MHz; continue waiting to send the "
653 "Action frame", freq);
654 return 0;
655 }
656
657 wpa_printf(MSG_DEBUG, "P2P: Schedule Action frame to be transmitted "
658 "once the driver gets to the requested channel");
659 if (wait_time > wpa_s->max_remain_on_chan)
660 wait_time = wpa_s->max_remain_on_chan;
661 if (wpa_drv_remain_on_channel(wpa_s, freq, wait_time) < 0) {
662 wpa_printf(MSG_DEBUG, "P2P: Failed to request driver "
663 "to remain on channel (%u MHz) for Action "
664 "Frame TX", freq);
665 return -1;
666 }
667 wpa_s->roc_waiting_drv_freq = freq;
668
669 return 0;
670 }
671
672
673 static void wpas_send_action_done(void *ctx)
674 {
675 struct wpa_supplicant *wpa_s = ctx;
676 wpa_printf(MSG_DEBUG, "P2P: Action frame sequence done notification");
677 wpabuf_free(wpa_s->pending_action_tx);
678 wpa_s->pending_action_tx = NULL;
679 if (wpa_s->off_channel_freq) {
680 wpa_drv_cancel_remain_on_channel(wpa_s);
681 wpa_s->off_channel_freq = 0;
682 wpa_s->roc_waiting_drv_freq = 0;
683 }
684 }
685
686
687 static int wpas_copy_go_neg_results(struct wpa_supplicant *wpa_s,
688 struct p2p_go_neg_results *params)
689 {
690 if (wpa_s->go_params == NULL) {
691 wpa_s->go_params = os_malloc(sizeof(*params));
692 if (wpa_s->go_params == NULL)
693 return -1;
694 }
695 os_memcpy(wpa_s->go_params, params, sizeof(*params));
696 return 0;
697 }
698
699
700 static void wpas_start_wps_enrollee(struct wpa_supplicant *wpa_s,
701 struct p2p_go_neg_results *res)
702 {
703 wpa_printf(MSG_DEBUG, "P2P: Start WPS Enrollee for peer " MACSTR,
704 MAC2STR(res->peer_interface_addr));
705 wpa_hexdump_ascii(MSG_DEBUG, "P2P: Start WPS Enrollee for SSID",
706 res->ssid, res->ssid_len);
707 wpa_supplicant_ap_deinit(wpa_s);
708 wpas_copy_go_neg_results(wpa_s, res);
709 if (res->wps_method == WPS_PBC)
710 wpas_wps_start_pbc(wpa_s, res->peer_interface_addr, 1);
711 else {
712 u16 dev_pw_id = DEV_PW_DEFAULT;
713 if (wpa_s->p2p_wps_method == WPS_PIN_KEYPAD)
714 dev_pw_id = DEV_PW_REGISTRAR_SPECIFIED;
715 wpas_wps_start_pin(wpa_s, res->peer_interface_addr,
716 wpa_s->p2p_pin, 1, dev_pw_id);
717 }
718 }
719
720
721 static void p2p_go_configured(void *ctx, void *data)
722 {
723 struct wpa_supplicant *wpa_s = ctx;
724 struct p2p_go_neg_results *params = data;
725 struct wpa_ssid *ssid;
726
727 ssid = wpa_s->current_ssid;
728 if (ssid && ssid->mode == WPAS_MODE_P2P_GO) {
729 wpa_printf(MSG_DEBUG, "P2P: Group setup without provisioning");
730 wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
731 "%s GO ssid=\"%s\" freq=%d passphrase=\"%s\" "
732 "go_dev_addr=" MACSTR "%s",
733 wpa_s->ifname,
734 wpa_ssid_txt(ssid->ssid, ssid->ssid_len),
735 ssid->frequency,
736 params->passphrase ? params->passphrase : "",
737 MAC2STR(wpa_s->parent->own_addr),
738 params->persistent_group ? " [PERSISTENT]" : "");
739 if (params->persistent_group)
740 wpas_p2p_store_persistent_group(
741 wpa_s->parent, ssid,
742 wpa_s->parent->own_addr);
743 wpas_p2p_cross_connect_setup(wpa_s);
744 return;
745 }
746
747 wpa_printf(MSG_DEBUG, "P2P: Setting up WPS for GO provisioning");
748 if (wpa_supplicant_ap_mac_addr_filter(wpa_s,
749 params->peer_interface_addr)) {
750 wpa_printf(MSG_DEBUG, "P2P: Failed to setup MAC address "
751 "filtering");
752 return;
753 }
754 if (params->wps_method == WPS_PBC)
755 wpa_supplicant_ap_wps_pbc(wpa_s, params->peer_interface_addr);
756 else if (wpa_s->p2p_pin[0])
757 wpa_supplicant_ap_wps_pin(wpa_s, params->peer_interface_addr,
758 wpa_s->p2p_pin, NULL, 0);
759 os_free(wpa_s->go_params);
760 wpa_s->go_params = NULL;
761 }
762
763
764 static void wpas_start_wps_go(struct wpa_supplicant *wpa_s,
765 struct p2p_go_neg_results *params,
766 int group_formation)
767 {
768 struct wpa_ssid *ssid;
769
770 if (wpas_copy_go_neg_results(wpa_s, params) < 0)
771 return;
772
773 ssid = wpa_config_add_network(wpa_s->conf);
774 if (ssid == NULL)
775 return;
776
777 wpa_config_set_network_defaults(ssid);
778 ssid->temporary = 1;
779 ssid->p2p_group = 1;
780 ssid->p2p_persistent_group = params->persistent_group;
781 ssid->mode = group_formation ? WPAS_MODE_P2P_GROUP_FORMATION :
782 WPAS_MODE_P2P_GO;
783 ssid->frequency = params->freq;
784 ssid->ssid = os_zalloc(params->ssid_len + 1);
785 if (ssid->ssid) {
786 os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
787 ssid->ssid_len = params->ssid_len;
788 }
789 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
790 ssid->key_mgmt = WPA_KEY_MGMT_PSK;
791 ssid->proto = WPA_PROTO_RSN;
792 ssid->pairwise_cipher = WPA_CIPHER_CCMP;
793 ssid->passphrase = os_strdup(params->passphrase);
794
795 wpa_s->ap_configured_cb = p2p_go_configured;
796 wpa_s->ap_configured_cb_ctx = wpa_s;
797 wpa_s->ap_configured_cb_data = wpa_s->go_params;
798 wpa_s->connect_without_scan = 1;
799 wpa_s->reassociate = 1;
800 wpa_s->disconnected = 0;
801 wpa_supplicant_req_scan(wpa_s, 0, 0);
802 }
803
804
805 static void wpas_p2p_clone_config(struct wpa_supplicant *dst,
806 const struct wpa_supplicant *src)
807 {
808 struct wpa_config *d;
809 const struct wpa_config *s;
810
811 d = dst->conf;
812 s = src->conf;
813
814 #define C(n) if (s->n) d->n = os_strdup(s->n)
815 C(device_name);
816 C(manufacturer);
817 C(model_name);
818 C(model_number);
819 C(serial_number);
820 C(device_type);
821 C(config_methods);
822 #undef C
823 }
824
825
826 static int wpas_p2p_add_group_interface(struct wpa_supplicant *wpa_s,
827 enum wpa_driver_if_type type)
828 {
829 char ifname[120], force_ifname[120];
830
831 if (wpa_s->pending_interface_name[0]) {
832 wpa_printf(MSG_DEBUG, "P2P: Pending virtual interface exists "
833 "- skip creation of a new one");
834 if (is_zero_ether_addr(wpa_s->pending_interface_addr)) {
835 wpa_printf(MSG_DEBUG, "P2P: Pending virtual address "
836 "unknown?! ifname='%s'",
837 wpa_s->pending_interface_name);
838 return -1;
839 }
840 return 0;
841 }
842
843 os_snprintf(ifname, sizeof(ifname), "%s-p2p-%d", wpa_s->ifname,
844 wpa_s->p2p_group_idx);
845 force_ifname[0] = '\0';
846
847 wpa_printf(MSG_DEBUG, "P2P: Create a new interface %s for the group",
848 ifname);
849 wpa_s->p2p_group_idx++;
850
851 wpa_s->pending_interface_type = type;
852 if (wpa_drv_if_add(wpa_s, type, ifname, NULL, NULL, force_ifname,
853 wpa_s->pending_interface_addr) < 0) {
854 wpa_printf(MSG_ERROR, "P2P: Failed to create new group "
855 "interface");
856 return -1;
857 }
858
859 if (force_ifname[0]) {
860 wpa_printf(MSG_DEBUG, "P2P: Driver forced interface name %s",
861 force_ifname);
862 os_strlcpy(wpa_s->pending_interface_name, force_ifname,
863 sizeof(wpa_s->pending_interface_name));
864 } else
865 os_strlcpy(wpa_s->pending_interface_name, ifname,
866 sizeof(wpa_s->pending_interface_name));
867 wpa_printf(MSG_DEBUG, "P2P: Created pending virtual interface %s addr "
868 MACSTR, wpa_s->pending_interface_name,
869 MAC2STR(wpa_s->pending_interface_addr));
870
871 return 0;
872 }
873
874
875 static void wpas_p2p_remove_pending_group_interface(
876 struct wpa_supplicant *wpa_s)
877 {
878 if (!wpa_s->pending_interface_name[0] ||
879 is_zero_ether_addr(wpa_s->pending_interface_addr))
880 return; /* No pending virtual interface */
881
882 wpa_printf(MSG_DEBUG, "P2P: Removing pending group interface %s",
883 wpa_s->pending_interface_name);
884 wpa_drv_if_remove(wpa_s, wpa_s->pending_interface_type,
885 wpa_s->pending_interface_name);
886 os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
887 wpa_s->pending_interface_name[0] = '\0';
888 }
889
890
891 static struct wpa_supplicant *
892 wpas_p2p_init_group_interface(struct wpa_supplicant *wpa_s, int go)
893 {
894 struct wpa_interface iface;
895 struct wpa_supplicant *group_wpa_s;
896
897 if (!wpa_s->pending_interface_name[0]) {
898 wpa_printf(MSG_ERROR, "P2P: No pending group interface");
899 return NULL;
900 }
901
902 os_memset(&iface, 0, sizeof(iface));
903 iface.ifname = wpa_s->pending_interface_name;
904 iface.driver = wpa_s->driver->name;
905 iface.ctrl_interface = wpa_s->conf->ctrl_interface;
906 iface.driver_param = wpa_s->conf->driver_param;
907 group_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface);
908 if (group_wpa_s == NULL) {
909 wpa_printf(MSG_ERROR, "P2P: Failed to create new "
910 "wpa_supplicant interface");
911 return NULL;
912 }
913 wpa_s->pending_interface_name[0] = '\0';
914 group_wpa_s->parent = wpa_s;
915 group_wpa_s->p2p_group_interface = go ? P2P_GROUP_INTERFACE_GO :
916 P2P_GROUP_INTERFACE_CLIENT;
917 wpa_s->global->p2p_group_formation = group_wpa_s;
918
919 wpas_p2p_clone_config(group_wpa_s, wpa_s);
920
921 return group_wpa_s;
922 }
923
924
925 static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
926 void *timeout_ctx)
927 {
928 struct wpa_supplicant *wpa_s = eloop_ctx;
929 wpa_printf(MSG_DEBUG, "P2P: Group Formation timed out");
930 if (wpa_s->global->p2p)
931 p2p_group_formation_failed(wpa_s->global->p2p);
932 wpas_group_formation_completed(wpa_s, 0);
933 }
934
935
936 void wpas_go_neg_completed(void *ctx, struct p2p_go_neg_results *res)
937 {
938 struct wpa_supplicant *wpa_s = ctx;
939
940 if (wpa_s->off_channel_freq) {
941 wpa_drv_cancel_remain_on_channel(wpa_s);
942 wpa_s->off_channel_freq = 0;
943 wpa_s->roc_waiting_drv_freq = 0;
944 }
945
946 if (res->status) {
947 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_FAILURE "status=%d",
948 res->status);
949 wpas_p2p_remove_pending_group_interface(wpa_s);
950 return;
951 }
952
953 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_SUCCESS);
954
955 if (wpa_s->create_p2p_iface) {
956 struct wpa_supplicant *group_wpa_s =
957 wpas_p2p_init_group_interface(wpa_s, res->role_go);
958 if (group_wpa_s == NULL) {
959 wpas_p2p_remove_pending_group_interface(wpa_s);
960 return;
961 }
962 if (group_wpa_s != wpa_s) {
963 os_memcpy(group_wpa_s->p2p_pin, wpa_s->p2p_pin,
964 sizeof(group_wpa_s->p2p_pin));
965 group_wpa_s->p2p_wps_method = wpa_s->p2p_wps_method;
966 }
967 os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
968 wpa_s->pending_interface_name[0] = '\0';
969 group_wpa_s->p2p_in_provisioning = 1;
970
971 if (res->role_go)
972 wpas_start_wps_go(group_wpa_s, res, 1);
973 else
974 wpas_start_wps_enrollee(group_wpa_s, res);
975 } else {
976 wpa_s->p2p_in_provisioning = 1;
977 wpa_s->global->p2p_group_formation = wpa_s;
978
979 if (res->role_go)
980 wpas_start_wps_go(wpa_s, res, 1);
981 else
982 wpas_start_wps_enrollee(ctx, res);
983 }
984
985 wpa_s->p2p_long_listen = 0;
986 eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
987
988 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
989 eloop_register_timeout(15 + res->peer_config_timeout / 100,
990 (res->peer_config_timeout % 100) * 10000,
991 wpas_p2p_group_formation_timeout, wpa_s, NULL);
992 }
993
994
995 void wpas_go_neg_req_rx(void *ctx, const u8 *src, u16 dev_passwd_id)
996 {
997 struct wpa_supplicant *wpa_s = ctx;
998 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_REQUEST MACSTR
999 " dev_passwd_id=%u", MAC2STR(src), dev_passwd_id);
1000 }
1001
1002
1003 void wpas_dev_found(void *ctx, const u8 *addr, const u8 *dev_addr,
1004 const u8 *pri_dev_type, const char *dev_name,
1005 u16 config_methods, u8 dev_capab, u8 group_capab)
1006 {
1007 struct wpa_supplicant *wpa_s = ctx;
1008 char devtype[WPS_DEV_TYPE_BUFSIZE];
1009 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_FOUND MACSTR
1010 " p2p_dev_addr=" MACSTR
1011 " pri_dev_type=%s name='%s' config_methods=0x%x "
1012 "dev_capab=0x%x group_capab=0x%x",
1013 MAC2STR(addr), MAC2STR(dev_addr),
1014 wps_dev_type_bin2str(pri_dev_type, devtype, sizeof(devtype)),
1015 dev_name, config_methods, dev_capab, group_capab);
1016 }
1017
1018
1019 static int wpas_start_listen(void *ctx, unsigned int freq,
1020 unsigned int duration,
1021 const struct wpabuf *probe_resp_ie)
1022 {
1023 struct wpa_supplicant *wpa_s = ctx;
1024
1025 wpa_drv_set_ap_wps_ie(wpa_s, NULL, probe_resp_ie, NULL);
1026
1027 if (wpa_drv_probe_req_report(wpa_s, 1) < 0) {
1028 wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver to "
1029 "report received Probe Request frames");
1030 return -1;
1031 }
1032
1033 wpa_s->pending_listen_freq = freq;
1034 wpa_s->pending_listen_duration = duration;
1035
1036 if (wpa_drv_remain_on_channel(wpa_s, freq, duration) < 0) {
1037 wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver "
1038 "to remain on channel (%u MHz) for Listen "
1039 "state", freq);
1040 wpa_s->pending_listen_freq = 0;
1041 return -1;
1042 }
1043 wpa_s->roc_waiting_drv_freq = freq;
1044
1045 return 0;
1046 }
1047
1048
1049 static void wpas_stop_listen(void *ctx)
1050 {
1051 struct wpa_supplicant *wpa_s = ctx;
1052 if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
1053 wpa_drv_cancel_remain_on_channel(wpa_s);
1054 wpa_s->off_channel_freq = 0;
1055 wpa_s->roc_waiting_drv_freq = 0;
1056 }
1057 wpa_drv_probe_req_report(wpa_s, 0);
1058 }
1059
1060
1061 static int wpas_send_probe_resp(void *ctx, const struct wpabuf *buf)
1062 {
1063 struct wpa_supplicant *wpa_s = ctx;
1064 return wpa_drv_send_mlme(wpa_s, wpabuf_head(buf), wpabuf_len(buf));
1065 }
1066
1067
1068 static struct p2p_srv_bonjour *
1069 wpas_p2p_service_get_bonjour(struct wpa_supplicant *wpa_s,
1070 const struct wpabuf *query)
1071 {
1072 struct p2p_srv_bonjour *bsrv;
1073 size_t len;
1074
1075 len = wpabuf_len(query);
1076 dl_list_for_each(bsrv, &wpa_s->global->p2p_srv_bonjour,
1077 struct p2p_srv_bonjour, list) {
1078 if (len == wpabuf_len(bsrv->query) &&
1079 os_memcmp(wpabuf_head(query), wpabuf_head(bsrv->query),
1080 len) == 0)
1081 return bsrv;
1082 }
1083 return NULL;
1084 }
1085
1086
1087 static struct p2p_srv_upnp *
1088 wpas_p2p_service_get_upnp(struct wpa_supplicant *wpa_s, u8 version,
1089 const char *service)
1090 {
1091 struct p2p_srv_upnp *usrv;
1092
1093 dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
1094 struct p2p_srv_upnp, list) {
1095 if (version == usrv->version &&
1096 os_strcmp(service, usrv->service) == 0)
1097 return usrv;
1098 }
1099 return NULL;
1100 }
1101
1102
1103 static void wpas_sd_add_proto_not_avail(struct wpabuf *resp, u8 srv_proto,
1104 u8 srv_trans_id)
1105 {
1106 u8 *len_pos;
1107
1108 if (wpabuf_tailroom(resp) < 5)
1109 return;
1110
1111 /* Length (to be filled) */
1112 len_pos = wpabuf_put(resp, 2);
1113 wpabuf_put_u8(resp, srv_proto);
1114 wpabuf_put_u8(resp, srv_trans_id);
1115 /* Status Code */
1116 wpabuf_put_u8(resp, P2P_SD_PROTO_NOT_AVAILABLE);
1117 /* Response Data: empty */
1118 WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
1119 }
1120
1121
1122 static void wpas_sd_all_bonjour(struct wpa_supplicant *wpa_s,
1123 struct wpabuf *resp, u8 srv_trans_id)
1124 {
1125 struct p2p_srv_bonjour *bsrv;
1126 u8 *len_pos;
1127
1128 wpa_printf(MSG_DEBUG, "P2P: SD Request for all Bonjour services");
1129
1130 if (dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
1131 wpa_printf(MSG_DEBUG, "P2P: Bonjour protocol not available");
1132 return;
1133 }
1134
1135 dl_list_for_each(bsrv, &wpa_s->global->p2p_srv_bonjour,
1136 struct p2p_srv_bonjour, list) {
1137 if (wpabuf_tailroom(resp) <
1138 5 + wpabuf_len(bsrv->query) + wpabuf_len(bsrv->resp))
1139 return;
1140 /* Length (to be filled) */
1141 len_pos = wpabuf_put(resp, 2);
1142 wpabuf_put_u8(resp, P2P_SERV_BONJOUR);
1143 wpabuf_put_u8(resp, srv_trans_id);
1144 /* Status Code */
1145 wpabuf_put_u8(resp, P2P_SD_SUCCESS);
1146 wpa_hexdump_ascii(MSG_DEBUG, "P2P: Matching Bonjour service",
1147 wpabuf_head(bsrv->resp),
1148 wpabuf_len(bsrv->resp));
1149 /* Response Data */
1150 wpabuf_put_buf(resp, bsrv->query); /* Key */
1151 wpabuf_put_buf(resp, bsrv->resp); /* Value */
1152 WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
1153 2);
1154 }
1155 }
1156
1157
1158 static void wpas_sd_req_bonjour(struct wpa_supplicant *wpa_s,
1159 struct wpabuf *resp, u8 srv_trans_id,
1160 const u8 *query, size_t query_len)
1161 {
1162 struct p2p_srv_bonjour *bsrv;
1163 struct wpabuf buf;
1164 u8 *len_pos;
1165
1166 wpa_hexdump_ascii(MSG_DEBUG, "P2P: SD Request for Bonjour",
1167 query, query_len);
1168 if (dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
1169 wpa_printf(MSG_DEBUG, "P2P: Bonjour protocol not available");
1170 wpas_sd_add_proto_not_avail(resp, P2P_SERV_BONJOUR,
1171 srv_trans_id);
1172 return;
1173 }
1174
1175 if (query_len == 0) {
1176 wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
1177 return;
1178 }
1179
1180 if (wpabuf_tailroom(resp) < 5)
1181 return;
1182 /* Length (to be filled) */
1183 len_pos = wpabuf_put(resp, 2);
1184 wpabuf_put_u8(resp, P2P_SERV_BONJOUR);
1185 wpabuf_put_u8(resp, srv_trans_id);
1186
1187 wpabuf_set(&buf, query, query_len);
1188 bsrv = wpas_p2p_service_get_bonjour(wpa_s, &buf);
1189 if (bsrv == NULL) {
1190 wpa_printf(MSG_DEBUG, "P2P: Requested Bonjour service not "
1191 "available");
1192
1193 /* Status Code */
1194 wpabuf_put_u8(resp, P2P_SD_REQUESTED_INFO_NOT_AVAILABLE);
1195 /* Response Data: empty */
1196 WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
1197 2);
1198 return;
1199 }
1200
1201 /* Status Code */
1202 wpabuf_put_u8(resp, P2P_SD_SUCCESS);
1203 wpa_hexdump_ascii(MSG_DEBUG, "P2P: Matching Bonjour service",
1204 wpabuf_head(bsrv->resp), wpabuf_len(bsrv->resp));
1205
1206 if (wpabuf_tailroom(resp) >=
1207 wpabuf_len(bsrv->query) + wpabuf_len(bsrv->resp)) {
1208 /* Response Data */
1209 wpabuf_put_buf(resp, bsrv->query); /* Key */
1210 wpabuf_put_buf(resp, bsrv->resp); /* Value */
1211 }
1212 WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
1213 }
1214
1215
1216 static void wpas_sd_all_upnp(struct wpa_supplicant *wpa_s,
1217 struct wpabuf *resp, u8 srv_trans_id)
1218 {
1219 struct p2p_srv_upnp *usrv;
1220 u8 *len_pos;
1221
1222 wpa_printf(MSG_DEBUG, "P2P: SD Request for all UPnP services");
1223
1224 if (dl_list_empty(&wpa_s->global->p2p_srv_upnp)) {
1225 wpa_printf(MSG_DEBUG, "P2P: UPnP protocol not available");
1226 return;
1227 }
1228
1229 dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
1230 struct p2p_srv_upnp, list) {
1231 if (wpabuf_tailroom(resp) < 5 + 1 + os_strlen(usrv->service))
1232 return;
1233
1234 /* Length (to be filled) */
1235 len_pos = wpabuf_put(resp, 2);
1236 wpabuf_put_u8(resp, P2P_SERV_UPNP);
1237 wpabuf_put_u8(resp, srv_trans_id);
1238
1239 /* Status Code */
1240 wpabuf_put_u8(resp, P2P_SD_SUCCESS);
1241 /* Response Data */
1242 wpabuf_put_u8(resp, usrv->version);
1243 wpa_printf(MSG_DEBUG, "P2P: Matching UPnP Service: %s",
1244 usrv->service);
1245 wpabuf_put_str(resp, usrv->service);
1246 WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
1247 2);
1248 }
1249 }
1250
1251
1252 static void wpas_sd_req_upnp(struct wpa_supplicant *wpa_s,
1253 struct wpabuf *resp, u8 srv_trans_id,
1254 const u8 *query, size_t query_len)
1255 {
1256 struct p2p_srv_upnp *usrv;
1257 u8 *len_pos;
1258 u8 version;
1259 char *str;
1260 int count = 0;
1261
1262 wpa_hexdump_ascii(MSG_DEBUG, "P2P: SD Request for UPnP",
1263 query, query_len);
1264
1265 if (dl_list_empty(&wpa_s->global->p2p_srv_upnp)) {
1266 wpa_printf(MSG_DEBUG, "P2P: UPnP protocol not available");
1267 wpas_sd_add_proto_not_avail(resp, P2P_SERV_UPNP,
1268 srv_trans_id);
1269 return;
1270 }
1271
1272 if (query_len == 0) {
1273 wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
1274 return;
1275 }
1276
1277 version = query[0];
1278 str = os_malloc(query_len);
1279 if (str == NULL)
1280 return;
1281 os_memcpy(str, query + 1, query_len - 1);
1282 str[query_len - 1] = '\0';
1283
1284 if (wpabuf_tailroom(resp) < 5)
1285 return;
1286
1287 /* Length (to be filled) */
1288 len_pos = wpabuf_put(resp, 2);
1289 wpabuf_put_u8(resp, P2P_SERV_UPNP);
1290 wpabuf_put_u8(resp, srv_trans_id);
1291
1292 dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
1293 struct p2p_srv_upnp, list) {
1294 if (version != usrv->version)
1295 continue;
1296
1297 if (os_strcmp(str, "ssdp:all") != 0 &&
1298 os_strstr(usrv->service, str) == NULL)
1299 continue;
1300
1301 if (wpabuf_tailroom(resp) < 2)
1302 break;
1303 if (count == 0) {
1304 /* Status Code */
1305 wpabuf_put_u8(resp, P2P_SD_SUCCESS);
1306 /* Response Data */
1307 wpabuf_put_u8(resp, version);
1308 } else
1309 wpabuf_put_u8(resp, ',');
1310
1311 count++;
1312
1313 wpa_printf(MSG_DEBUG, "P2P: Matching UPnP Service: %s",
1314 usrv->service);
1315 if (wpabuf_tailroom(resp) < os_strlen(usrv->service))
1316 break;
1317 wpabuf_put_str(resp, usrv->service);
1318 }
1319
1320 if (count == 0) {
1321 wpa_printf(MSG_DEBUG, "P2P: Requested UPnP service not "
1322 "available");
1323 /* Status Code */
1324 wpabuf_put_u8(resp, P2P_SD_REQUESTED_INFO_NOT_AVAILABLE);
1325 /* Response Data: empty */
1326 }
1327
1328 WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
1329 }
1330
1331
1332 void wpas_sd_request(void *ctx, int freq, const u8 *sa, u8 dialog_token,
1333 u16 update_indic, const u8 *tlvs, size_t tlvs_len)
1334 {
1335 struct wpa_supplicant *wpa_s = ctx;
1336 const u8 *pos = tlvs;
1337 const u8 *end = tlvs + tlvs_len;
1338 const u8 *tlv_end;
1339 u16 slen;
1340 struct wpabuf *resp;
1341 u8 srv_proto, srv_trans_id;
1342 size_t buf_len;
1343 char *buf;
1344
1345 wpa_hexdump(MSG_MSGDUMP, "P2P: Service Discovery Request TLVs",
1346 tlvs, tlvs_len);
1347 buf_len = 2 * tlvs_len + 1;
1348 buf = os_malloc(buf_len);
1349 if (buf) {
1350 wpa_snprintf_hex(buf, buf_len, tlvs, tlvs_len);
1351 wpa_msg_ctrl(wpa_s, MSG_INFO, P2P_EVENT_SERV_DISC_REQ "%d "
1352 MACSTR " %u %u %s",
1353 freq, MAC2STR(sa), dialog_token, update_indic,
1354 buf);
1355 os_free(buf);
1356 }
1357
1358 if (wpa_s->p2p_sd_over_ctrl_iface)
1359 return; /* to be processed by an external program */
1360
1361 resp = wpabuf_alloc(10000);
1362 if (resp == NULL)
1363 return;
1364
1365 while (pos + 1 < end) {
1366 wpa_printf(MSG_DEBUG, "P2P: Service Request TLV");
1367 slen = WPA_GET_LE16(pos);
1368 pos += 2;
1369 if (pos + slen > end || slen < 2) {
1370 wpa_printf(MSG_DEBUG, "P2P: Unexpected Query Data "
1371 "length");
1372 wpabuf_free(resp);
1373 return;
1374 }
1375 tlv_end = pos + slen;
1376
1377 srv_proto = *pos++;
1378 wpa_printf(MSG_DEBUG, "P2P: Service Protocol Type %u",
1379 srv_proto);
1380 srv_trans_id = *pos++;
1381 wpa_printf(MSG_DEBUG, "P2P: Service Transaction ID %u",
1382 srv_trans_id);
1383
1384 wpa_hexdump(MSG_MSGDUMP, "P2P: Query Data",
1385 pos, tlv_end - pos);
1386
1387
1388 if (wpa_s->force_long_sd) {
1389 wpa_printf(MSG_DEBUG, "P2P: SD test - force long "
1390 "response");
1391 wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
1392 wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
1393 goto done;
1394 }
1395
1396 switch (srv_proto) {
1397 case P2P_SERV_ALL_SERVICES:
1398 wpa_printf(MSG_DEBUG, "P2P: Service Discovery Request "
1399 "for all services");
1400 if (dl_list_empty(&wpa_s->global->p2p_srv_upnp) &&
1401 dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
1402 wpa_printf(MSG_DEBUG, "P2P: No service "
1403 "discovery protocols available");
1404 wpas_sd_add_proto_not_avail(
1405 resp, P2P_SERV_ALL_SERVICES,
1406 srv_trans_id);
1407 break;
1408 }
1409 wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
1410 wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
1411 break;
1412 case P2P_SERV_BONJOUR:
1413 wpas_sd_req_bonjour(wpa_s, resp, srv_trans_id,
1414 pos, tlv_end - pos);
1415 break;
1416 case P2P_SERV_UPNP:
1417 wpas_sd_req_upnp(wpa_s, resp, srv_trans_id,
1418 pos, tlv_end - pos);
1419 break;
1420 default:
1421 wpa_printf(MSG_DEBUG, "P2P: Unavailable service "
1422 "protocol %u", srv_proto);
1423 wpas_sd_add_proto_not_avail(resp, srv_proto,
1424 srv_trans_id);
1425 break;
1426 }
1427
1428 pos = tlv_end;
1429 }
1430
1431 done:
1432 wpas_p2p_sd_response(wpa_s, freq, sa, dialog_token, resp);
1433
1434 wpabuf_free(resp);
1435 }
1436
1437
1438 void wpas_sd_response(void *ctx, const u8 *sa, u16 update_indic,
1439 const u8 *tlvs, size_t tlvs_len)
1440 {
1441 struct wpa_supplicant *wpa_s = ctx;
1442 const u8 *pos = tlvs;
1443 const u8 *end = tlvs + tlvs_len;
1444 const u8 *tlv_end;
1445 u16 slen;
1446 size_t buf_len;
1447 char *buf;
1448
1449 wpa_hexdump(MSG_MSGDUMP, "P2P: Service Discovery Response TLVs",
1450 tlvs, tlvs_len);
1451 if (tlvs_len > 1500) {
1452 /* TODO: better way for handling this */
1453 wpa_msg_ctrl(wpa_s, MSG_INFO,
1454 P2P_EVENT_SERV_DISC_RESP MACSTR
1455 " %u <long response: %u bytes>",
1456 MAC2STR(sa), update_indic,
1457 (unsigned int) tlvs_len);
1458 } else {
1459 buf_len = 2 * tlvs_len + 1;
1460 buf = os_malloc(buf_len);
1461 if (buf) {
1462 wpa_snprintf_hex(buf, buf_len, tlvs, tlvs_len);
1463 wpa_msg_ctrl(wpa_s, MSG_INFO,
1464 P2P_EVENT_SERV_DISC_RESP MACSTR " %u %s",
1465 MAC2STR(sa), update_indic, buf);
1466 os_free(buf);
1467 }
1468 }
1469
1470 while (pos < end) {
1471 u8 srv_proto, srv_trans_id, status;
1472
1473 wpa_printf(MSG_DEBUG, "P2P: Service Response TLV");
1474 slen = WPA_GET_LE16(pos);
1475 pos += 2;
1476 if (pos + slen > end || slen < 3) {
1477 wpa_printf(MSG_DEBUG, "P2P: Unexpected Response Data "
1478 "length");
1479 return;
1480 }
1481 tlv_end = pos + slen;
1482
1483 srv_proto = *pos++;
1484 wpa_printf(MSG_DEBUG, "P2P: Service Protocol Type %u",
1485 srv_proto);
1486 srv_trans_id = *pos++;
1487 wpa_printf(MSG_DEBUG, "P2P: Service Transaction ID %u",
1488 srv_trans_id);
1489 status = *pos++;
1490 wpa_printf(MSG_DEBUG, "P2P: Status Code ID %u",
1491 status);
1492
1493 wpa_hexdump(MSG_MSGDUMP, "P2P: Response Data",
1494 pos, tlv_end - pos);
1495
1496 pos = tlv_end;
1497 }
1498 }
1499
1500
1501 void * wpas_p2p_sd_request(struct wpa_supplicant *wpa_s, const u8 *dst,
1502 const struct wpabuf *tlvs)
1503 {
1504 return p2p_sd_request(wpa_s->global->p2p, dst, tlvs);
1505 }
1506
1507
1508 void * wpas_p2p_sd_request_upnp(struct wpa_supplicant *wpa_s, const u8 *dst,
1509 u8 version, const char *query)
1510 {
1511 struct wpabuf *tlvs;
1512 void *ret;
1513
1514 tlvs = wpabuf_alloc(2 + 1 + 1 + 1 + os_strlen(query));
1515 if (tlvs == NULL)
1516 return NULL;
1517 wpabuf_put_le16(tlvs, 1 + 1 + 1 + os_strlen(query));
1518 wpabuf_put_u8(tlvs, P2P_SERV_UPNP); /* Service Protocol Type */
1519 wpabuf_put_u8(tlvs, 1); /* Service Transaction ID */
1520 wpabuf_put_u8(tlvs, version);
1521 wpabuf_put_str(tlvs, query);
1522 ret = wpas_p2p_sd_request(wpa_s, dst, tlvs);
1523 wpabuf_free(tlvs);
1524 return ret;
1525 }
1526
1527
1528 int wpas_p2p_sd_cancel_request(struct wpa_supplicant *wpa_s, void *req)
1529 {
1530 return p2p_sd_cancel_request(wpa_s->global->p2p, req);
1531 }
1532
1533
1534 void wpas_p2p_sd_response(struct wpa_supplicant *wpa_s, int freq,
1535 const u8 *dst, u8 dialog_token,
1536 const struct wpabuf *resp_tlvs)
1537 {
1538 p2p_sd_response(wpa_s->global->p2p, freq, dst, dialog_token,
1539 resp_tlvs);
1540 }
1541
1542
1543 void wpas_p2p_sd_service_update(struct wpa_supplicant *wpa_s)
1544 {
1545 p2p_sd_service_update(wpa_s->global->p2p);
1546 }
1547
1548
1549 static void wpas_p2p_srv_bonjour_free(struct p2p_srv_bonjour *bsrv)
1550 {
1551 dl_list_del(&bsrv->list);
1552 wpabuf_free(bsrv->query);
1553 wpabuf_free(bsrv->resp);
1554 os_free(bsrv);
1555 }
1556
1557
1558 static void wpas_p2p_srv_upnp_free(struct p2p_srv_upnp *usrv)
1559 {
1560 dl_list_del(&usrv->list);
1561 os_free(usrv->service);
1562 os_free(usrv);
1563 }
1564
1565
1566 void wpas_p2p_service_flush(struct wpa_supplicant *wpa_s)
1567 {
1568 struct p2p_srv_bonjour *bsrv, *bn;
1569 struct p2p_srv_upnp *usrv, *un;
1570
1571 dl_list_for_each_safe(bsrv, bn, &wpa_s->global->p2p_srv_bonjour,
1572 struct p2p_srv_bonjour, list)
1573 wpas_p2p_srv_bonjour_free(bsrv);
1574
1575 dl_list_for_each_safe(usrv, un, &wpa_s->global->p2p_srv_upnp,
1576 struct p2p_srv_upnp, list)
1577 wpas_p2p_srv_upnp_free(usrv);
1578
1579 wpas_p2p_sd_service_update(wpa_s);
1580 }
1581
1582
1583 int wpas_p2p_service_add_bonjour(struct wpa_supplicant *wpa_s,
1584 struct wpabuf *query, struct wpabuf *resp)
1585 {
1586 struct p2p_srv_bonjour *bsrv;
1587
1588 bsrv = wpas_p2p_service_get_bonjour(wpa_s, query);
1589 if (bsrv) {
1590 wpabuf_free(query);
1591 wpabuf_free(bsrv->resp);
1592 bsrv->resp = resp;
1593 return 0;
1594 }
1595
1596 bsrv = os_zalloc(sizeof(*bsrv));
1597 if (bsrv == NULL)
1598 return -1;
1599 bsrv->query = query;
1600 bsrv->resp = resp;
1601 dl_list_add(&wpa_s->global->p2p_srv_bonjour, &bsrv->list);
1602
1603 wpas_p2p_sd_service_update(wpa_s);
1604 return 0;
1605 }
1606
1607
1608 int wpas_p2p_service_del_bonjour(struct wpa_supplicant *wpa_s,
1609 const struct wpabuf *query)
1610 {
1611 struct p2p_srv_bonjour *bsrv;
1612
1613 bsrv = wpas_p2p_service_get_bonjour(wpa_s, query);
1614 if (bsrv == NULL)
1615 return -1;
1616 wpas_p2p_srv_bonjour_free(bsrv);
1617 wpas_p2p_sd_service_update(wpa_s);
1618 return 0;
1619 }
1620
1621
1622 int wpas_p2p_service_add_upnp(struct wpa_supplicant *wpa_s, u8 version,
1623 const char *service)
1624 {
1625 struct p2p_srv_upnp *usrv;
1626
1627 if (wpas_p2p_service_get_upnp(wpa_s, version, service))
1628 return 0; /* Already listed */
1629 usrv = os_zalloc(sizeof(*usrv));
1630 if (usrv == NULL)
1631 return -1;
1632 usrv->version = version;
1633 usrv->service = os_strdup(service);
1634 if (usrv->service == NULL) {
1635 os_free(usrv);
1636 return -1;
1637 }
1638 dl_list_add(&wpa_s->global->p2p_srv_upnp, &usrv->list);
1639
1640 wpas_p2p_sd_service_update(wpa_s);
1641 return 0;
1642 }
1643
1644
1645 int wpas_p2p_service_del_upnp(struct wpa_supplicant *wpa_s, u8 version,
1646 const char *service)
1647 {
1648 struct p2p_srv_upnp *usrv;
1649
1650 usrv = wpas_p2p_service_get_upnp(wpa_s, version, service);
1651 if (usrv == NULL)
1652 return -1;
1653 wpas_p2p_srv_upnp_free(usrv);
1654 wpas_p2p_sd_service_update(wpa_s);
1655 return 0;
1656 }
1657
1658
1659 static void wpas_prov_disc_local_display(struct wpa_supplicant *wpa_s,
1660 const u8 *peer, const char *params)
1661 {
1662 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_SHOW_PIN MACSTR " %08d%s",
1663 MAC2STR(peer), wps_generate_pin(), params);
1664 }
1665
1666
1667 static void wpas_prov_disc_local_keypad(struct wpa_supplicant *wpa_s,
1668 const u8 *peer, const char *params)
1669 {
1670 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_ENTER_PIN MACSTR "%s",
1671 MAC2STR(peer), params);
1672 }
1673
1674
1675 void wpas_prov_disc_req(void *ctx, const u8 *peer, u16 config_methods,
1676 const u8 *dev_addr, const u8 *pri_dev_type,
1677 const char *dev_name, u16 supp_config_methods,
1678 u8 dev_capab, u8 group_capab)
1679 {
1680 struct wpa_supplicant *wpa_s = ctx;
1681 char devtype[WPS_DEV_TYPE_BUFSIZE];
1682 char params[200];
1683 u8 empty_dev_type[8];
1684
1685 if (pri_dev_type == NULL) {
1686 os_memset(empty_dev_type, 0, sizeof(empty_dev_type));
1687 pri_dev_type = empty_dev_type;
1688 }
1689 os_snprintf(params, sizeof(params), " p2p_dev_addr=" MACSTR
1690 " pri_dev_type=%s name='%s' config_methods=0x%x "
1691 "dev_capab=0x%x group_capab=0x%x",
1692 MAC2STR(dev_addr),
1693 wps_dev_type_bin2str(pri_dev_type, devtype,
1694 sizeof(devtype)),
1695 dev_name, supp_config_methods, dev_capab, group_capab);
1696 params[sizeof(params) - 1] = '\0';
1697
1698 if (config_methods & WPS_CONFIG_DISPLAY)
1699 wpas_prov_disc_local_display(wpa_s, peer, params);
1700 else if (config_methods & WPS_CONFIG_KEYPAD)
1701 wpas_prov_disc_local_keypad(wpa_s, peer, params);
1702 else if (config_methods & WPS_CONFIG_PUSHBUTTON)
1703 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_REQ MACSTR
1704 "%s", MAC2STR(peer), params);
1705 }
1706
1707
1708 void wpas_prov_disc_resp(void *ctx, const u8 *peer, u16 config_methods)
1709 {
1710 struct wpa_supplicant *wpa_s = ctx;
1711 if (config_methods & WPS_CONFIG_DISPLAY)
1712 wpas_prov_disc_local_keypad(wpa_s, peer, "");
1713 else if (config_methods & WPS_CONFIG_KEYPAD)
1714 wpas_prov_disc_local_display(wpa_s, peer, "");
1715 else if (config_methods & WPS_CONFIG_PUSHBUTTON)
1716 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_RESP MACSTR,
1717 MAC2STR(peer));
1718
1719 if (wpa_s->pending_pd_before_join &&
1720 (os_memcmp(peer, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
1721 os_memcmp(peer, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0)) {
1722 wpa_s->pending_pd_before_join = 0;
1723 wpa_printf(MSG_DEBUG, "P2P: Starting pending "
1724 "join-existing-group operation");
1725 wpas_p2p_join_start(wpa_s);
1726 }
1727 }
1728
1729
1730 static u8 wpas_invitation_process(void *ctx, const u8 *sa, const u8 *bssid,
1731 const u8 *go_dev_addr, const u8 *ssid,
1732 size_t ssid_len, int *go, u8 *group_bssid,
1733 int *force_freq, int persistent_group)
1734 {
1735 struct wpa_supplicant *wpa_s = ctx;
1736 struct wpa_ssid *s;
1737 u8 cur_bssid[ETH_ALEN];
1738 int res;
1739
1740 if (!persistent_group) {
1741 wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
1742 " to join an active group", MAC2STR(sa));
1743 if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
1744 (os_memcmp(go_dev_addr, wpa_s->p2p_auth_invite, ETH_ALEN)
1745 == 0 ||
1746 os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0)) {
1747 wpa_printf(MSG_DEBUG, "P2P: Accept previously "
1748 "authorized invitation");
1749 goto accept_inv;
1750 }
1751 /*
1752 * Do not accept the invitation automatically; notify user and
1753 * request approval.
1754 */
1755 return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
1756 }
1757
1758 if (!wpa_s->conf->persistent_reconnect)
1759 return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
1760
1761 for (s = wpa_s->conf->ssid; s; s = s->next) {
1762 if (s->disabled == 2 &&
1763 os_memcmp(s->bssid, go_dev_addr, ETH_ALEN) == 0 &&
1764 s->ssid_len == ssid_len &&
1765 os_memcmp(ssid, s->ssid, ssid_len) == 0)
1766 break;
1767 }
1768
1769 if (!s) {
1770 wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
1771 " requested reinvocation of an unknown group",
1772 MAC2STR(sa));
1773 return P2P_SC_FAIL_UNKNOWN_GROUP;
1774 }
1775
1776 if (s->mode == WPAS_MODE_P2P_GO && !wpas_p2p_create_iface(wpa_s)) {
1777 *go = 1;
1778 if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
1779 wpa_printf(MSG_DEBUG, "P2P: The only available "
1780 "interface is already in use - reject "
1781 "invitation");
1782 return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
1783 }
1784 os_memcpy(group_bssid, wpa_s->own_addr, ETH_ALEN);
1785 } else if (s->mode == WPAS_MODE_P2P_GO) {
1786 *go = 1;
1787 if (wpas_p2p_add_group_interface(wpa_s, WPA_IF_P2P_GO) < 0)
1788 {
1789 wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
1790 "interface address for the group");
1791 return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
1792 }
1793 os_memcpy(group_bssid, wpa_s->pending_interface_addr,
1794 ETH_ALEN);
1795 }
1796
1797 accept_inv:
1798 if (wpa_s->current_ssid && wpa_drv_get_bssid(wpa_s, cur_bssid) == 0 &&
1799 wpa_s->assoc_freq) {
1800 wpa_printf(MSG_DEBUG, "P2P: Trying to force channel to match "
1801 "the channel we are already using");
1802 *force_freq = wpa_s->assoc_freq;
1803 }
1804
1805 res = wpa_drv_shared_freq(wpa_s);
1806 if (res > 0) {
1807 wpa_printf(MSG_DEBUG, "P2P: Trying to force channel to match "
1808 "with the channel we are already using on a "
1809 "shared interface");
1810 *force_freq = res;
1811 }
1812
1813 return P2P_SC_SUCCESS;
1814 }
1815
1816
1817 static void wpas_invitation_received(void *ctx, const u8 *sa, const u8 *bssid,
1818 const u8 *ssid, size_t ssid_len,
1819 const u8 *go_dev_addr, u8 status,
1820 int op_freq)
1821 {
1822 struct wpa_supplicant *wpa_s = ctx;
1823 struct wpa_ssid *s;
1824
1825 for (s = wpa_s->conf->ssid; s; s = s->next) {
1826 if (s->disabled == 2 &&
1827 s->ssid_len == ssid_len &&
1828 os_memcmp(ssid, s->ssid, ssid_len) == 0)
1829 break;
1830 }
1831
1832 if (status == P2P_SC_SUCCESS) {
1833 wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
1834 " was accepted; op_freq=%d MHz",
1835 MAC2STR(sa), op_freq);
1836 if (s) {
1837 wpas_p2p_group_add_persistent(
1838 wpa_s, s, s->mode == WPAS_MODE_P2P_GO, 0);
1839 } else if (bssid) {
1840 wpas_p2p_join(wpa_s, bssid, go_dev_addr,
1841 wpa_s->p2p_wps_method);
1842 }
1843 return;
1844 }
1845
1846 if (status != P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
1847 wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
1848 " was rejected (status %u)", MAC2STR(sa), status);
1849 return;
1850 }
1851
1852 if (!s) {
1853 if (bssid) {
1854 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
1855 "sa=" MACSTR " go_dev_addr=" MACSTR
1856 " bssid=" MACSTR " unknown-network",
1857 MAC2STR(sa), MAC2STR(go_dev_addr),
1858 MAC2STR(bssid));
1859 } else {
1860 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
1861 "sa=" MACSTR " go_dev_addr=" MACSTR
1862 " unknown-network",
1863 MAC2STR(sa), MAC2STR(go_dev_addr));
1864 }
1865 return;
1866 }
1867
1868 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED "sa=" MACSTR
1869 " persistent=%d", MAC2STR(sa), s->id);
1870 }
1871
1872
1873 static void wpas_invitation_result(void *ctx, int status, const u8 *bssid)
1874 {
1875 struct wpa_supplicant *wpa_s = ctx;
1876 struct wpa_ssid *ssid;
1877
1878 if (bssid) {
1879 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
1880 "status=%d " MACSTR,
1881 status, MAC2STR(bssid));
1882 } else {
1883 wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
1884 "status=%d ", status);
1885 }
1886
1887 if (wpa_s->pending_invite_ssid_id == -1)
1888 return; /* Invitation to active group */
1889
1890 if (status != P2P_SC_SUCCESS) {
1891 wpas_p2p_remove_pending_group_interface(wpa_s);
1892 return;
1893 }
1894
1895 ssid = wpa_config_get_network(wpa_s->conf,
1896 wpa_s->pending_invite_ssid_id);
1897 if (ssid == NULL) {
1898 wpa_printf(MSG_ERROR, "P2P: Could not find persistent group "
1899 "data matching with invitation");
1900 return;
1901 }
1902
1903 wpas_p2p_group_add_persistent(wpa_s, ssid,
1904 ssid->mode == WPAS_MODE_P2P_GO, 0);
1905 }
1906
1907
1908 static int wpas_p2p_setup_channels(struct wpa_supplicant *wpa_s,
1909 struct p2p_config *p2p)
1910 {
1911 struct hostapd_hw_modes *modes;
1912 u16 num_modes, flags;
1913 int i, cla;
1914 int band24 = 0, band5_low = 0, band5_high = 0;
1915
1916 /* TODO: more detailed selection of channels within reg_class based on
1917 * driver capabilities */
1918
1919 modes = wpa_drv_get_hw_feature_data(wpa_s, &num_modes, &flags);
1920 if (modes == NULL) {
1921 wpa_printf(MSG_DEBUG, "P2P: Driver did not support fetching "
1922 "of all supported channels; assume dualband "
1923 "support");
1924 band24 = band5_low = band5_high = 1;
1925 } else {
1926 for (i = 0; i < num_modes; i++) {
1927 struct hostapd_hw_modes *mode;
1928 mode = &modes[i];
1929 if (mode->mode == HOSTAPD_MODE_IEEE80211G) {
1930 band24 = 1;
1931 } else if (mode->mode == HOSTAPD_MODE_IEEE80211A) {
1932 int j;
1933 for (j = 0; j < mode->num_channels; j++) {
1934 struct hostapd_channel_data *ch;
1935 ch = &mode->channels[j];
1936 if (ch->chan == 36)
1937 band5_low = 1;
1938 else if (ch->chan == 157)
1939 band5_high = 1;
1940 }
1941 }
1942 }
1943 }
1944
1945 cla = 0;
1946
1947 if (band24) {
1948 wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for "
1949 "2.4 GHz band");
1950
1951 /* Operating class 81 - 2.4 GHz band channels 1..13 */
1952 p2p->channels.reg_class[cla].reg_class = 81;
1953 #if 0
1954 p2p->channels.reg_class[cla].channels = 13;
1955 for (i = 0; i < 13; i++)
1956 p2p->channels.reg_class[cla].channel[i] = i + 1;
1957 #else
1958 p2p->channels.reg_class[cla].channels = 11;
1959 for (i = 0; i < 11; i++)
1960 p2p->channels.reg_class[cla].channel[i] = i + 1;
1961 #endif
1962 cla++;
1963
1964 #if 0
1965 /* Operating class 82 - 2.4 GHz band channel 14 */
1966 p2p->channels.reg_class[cla].reg_class = 82;
1967 p2p->channels.reg_class[cla].channels = 1;
1968 p2p->channels.reg_class[cla].channel[0] = 14;
1969 cla++;
1970 #endif
1971
1972 #if 0
1973 /* Operating class 83 - 2.4 GHz band channels 1..9; 40 MHz */
1974 p2p->channels.reg_class[cla].reg_class = 83;
1975 p2p->channels.reg_class[cla].channels = 9;
1976 for (i = 0; i < 9; i++)
1977 p2p->channels.reg_class[cla].channel[i] = i + 1;
1978 cla++;
1979
1980 /* Operating class 84 - 2.4 GHz band channels 5..13; 40 MHz */
1981 p2p->channels.reg_class[cla].reg_class = 84;
1982 p2p->channels.reg_class[cla].channels = 9;
1983 for (i = 0; i < 9; i++)
1984 p2p->channels.reg_class[cla].channel[i] = i + 5;
1985 cla++;
1986 #endif
1987 }
1988
1989 if (band5_low) {
1990 wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for "
1991 "lower 5 GHz band");
1992
1993 /* Operating class 115 - 5 GHz, channels 36-48 */
1994 p2p->channels.reg_class[cla].reg_class = 115;
1995 p2p->channels.reg_class[cla].channels = 4;
1996 p2p->channels.reg_class[cla].channel[0] = 36;
1997 p2p->channels.reg_class[cla].channel[1] = 40;
1998 p2p->channels.reg_class[cla].channel[2] = 44;
1999 p2p->channels.reg_class[cla].channel[3] = 48;
2000 cla++;
2001
2002 #if 0
2003 /* Operating class 116 - 5 GHz, channels 36,44; 40 MHz */
2004 p2p->channels.reg_class[cla].reg_class = 116;
2005 p2p->channels.reg_class[cla].channels = 2;
2006 p2p->channels.reg_class[cla].channel[0] = 36;
2007 p2p->channels.reg_class[cla].channel[1] = 44;
2008 cla++;
2009
2010 /* Operating class 117 - 5 GHz, channels 40,48; 40 MHz */
2011 p2p->channels.reg_class[cla].reg_class = 117;
2012 p2p->channels.reg_class[cla].channels = 2;
2013 p2p->channels.reg_class[cla].channel[0] = 40;
2014 p2p->channels.reg_class[cla].channel[1] = 48;
2015 cla++;
2016 #endif
2017 }
2018
2019 if (band5_high) {
2020 wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for "
2021 "higher 5 GHz band");
2022
2023 /* Operating class 124 - 5 GHz, channels 149,153,157,161 */
2024 p2p->channels.reg_class[cla].reg_class = 124;
2025 p2p->channels.reg_class[cla].channels = 4;
2026 p2p->channels.reg_class[cla].channel[0] = 149;
2027 p2p->channels.reg_class[cla].channel[1] = 153;
2028 p2p->channels.reg_class[cla].channel[2] = 157;
2029 p2p->channels.reg_class[cla].channel[3] = 161;
2030 cla++;
2031
2032 #if 0
2033 /* Operating class 126 - 5 GHz, channels 149,157; 40 MHz */
2034 p2p->channels.reg_class[cla].reg_class = 126;
2035 p2p->channels.reg_class[cla].channels = 2;
2036 p2p->channels.reg_class[cla].channel[0] = 149;
2037 p2p->channels.reg_class[cla].channel[1] = 157;
2038 cla++;
2039
2040 /* Operating class 127 - 5 GHz, channels 153,161; 40 MHz */
2041 p2p->channels.reg_class[cla].reg_class = 127;
2042 p2p->channels.reg_class[cla].channels = 2;
2043 p2p->channels.reg_class[cla].channel[0] = 153;
2044 p2p->channels.reg_class[cla].channel[1] = 161;
2045 cla++;
2046 #endif
2047 }
2048
2049 p2p->channels.reg_classes = cla;
2050
2051 if (modes)
2052 ieee80211_sta_free_hw_features(modes, num_modes);
2053
2054 return 0;
2055 }
2056
2057
2058 static int wpas_get_noa(void *ctx, const u8 *interface_addr, u8 *buf,
2059 size_t buf_len)
2060 {
2061 struct wpa_supplicant *wpa_s = ctx;
2062
2063 for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
2064 if (os_memcmp(wpa_s->own_addr, interface_addr, ETH_ALEN) == 0)
2065 break;
2066 }
2067 if (wpa_s == NULL)
2068 return -1;
2069
2070 return wpa_drv_get_noa(wpa_s, buf, buf_len);
2071 }
2072
2073
2074 /**
2075 * wpas_p2p_init - Initialize P2P module for %wpa_supplicant
2076 * @global: Pointer to global data from wpa_supplicant_init()
2077 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
2078 * Returns: 0 on success, -1 on failure
2079 */
2080 int wpas_p2p_init(struct wpa_global *global, struct wpa_supplicant *wpa_s)
2081 {
2082 struct p2p_config p2p;
2083 unsigned int r;
2084 int i;
2085
2086 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
2087 return 0;
2088
2089 #ifdef CONFIG_CLIENT_MLME
2090 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)) {
2091 wpa_s->mlme.public_action_cb = p2p_rx_action_mlme;
2092 wpa_s->mlme.public_action_cb_ctx = wpa_s;
2093 }
2094 #endif /* CONFIG_CLIENT_MLME */
2095
2096 if (wpa_drv_disable_11b_rates(wpa_s, 1) < 0) {
2097 wpa_printf(MSG_DEBUG, "P2P: Failed to disable 11b rates");
2098 /* Continue anyway; this is not really a fatal error */
2099 }
2100
2101 if (global->p2p)
2102 return 0;
2103
2104 os_memset(&p2p, 0, sizeof(p2p));
2105 p2p.msg_ctx = wpa_s;
2106 p2p.cb_ctx = wpa_s;
2107 p2p.p2p_scan = wpas_p2p_scan;
2108 p2p.send_action = wpas_send_action;
2109 p2p.send_action_done = wpas_send_action_done;
2110 p2p.go_neg_completed = wpas_go_neg_completed;
2111 p2p.go_neg_req_rx = wpas_go_neg_req_rx;
2112 p2p.dev_found = wpas_dev_found;
2113 p2p.start_listen = wpas_start_listen;
2114 p2p.stop_listen = wpas_stop_listen;
2115 p2p.send_probe_resp = wpas_send_probe_resp;
2116 p2p.sd_request = wpas_sd_request;
2117 p2p.sd_response = wpas_sd_response;
2118 p2p.prov_disc_req = wpas_prov_disc_req;
2119 p2p.prov_disc_resp = wpas_prov_disc_resp;
2120 p2p.invitation_process = wpas_invitation_process;
2121 p2p.invitation_received = wpas_invitation_received;
2122 p2p.invitation_result = wpas_invitation_result;
2123 p2p.get_noa = wpas_get_noa;
2124
2125 os_memcpy(wpa_s->global->p2p_dev_addr, wpa_s->own_addr, ETH_ALEN);
2126 os_memcpy(p2p.dev_addr, wpa_s->own_addr, ETH_ALEN);
2127 p2p.dev_name = wpa_s->conf->device_name;
2128
2129 if (wpa_s->conf->p2p_listen_reg_class &&
2130 wpa_s->conf->p2p_listen_channel) {
2131 p2p.reg_class = wpa_s->conf->p2p_listen_reg_class;
2132 p2p.channel = wpa_s->conf->p2p_listen_channel;
2133 } else {
2134 p2p.reg_class = 81;
2135 /*
2136 * Pick one of the social channels randomly as the listen
2137 * channel.
2138 */
2139 os_get_random((u8 *) &r, sizeof(r));
2140 p2p.channel = 1 + (r % 3) * 5;
2141 }
2142
2143 if (wpa_s->conf->p2p_oper_reg_class &&
2144 wpa_s->conf->p2p_oper_channel) {
2145 p2p.op_reg_class = wpa_s->conf->p2p_oper_reg_class;
2146 p2p.op_channel = wpa_s->conf->p2p_oper_channel;
2147 } else {
2148 p2p.op_reg_class = 81;
2149 /*
2150 * For initial tests, pick the operation channel randomly.
2151 * TODO: Use scan results (etc.) to select the best channel.
2152 */
2153 p2p.op_channel = 1 + r % 11;
2154 }
2155 wpa_printf(MSG_DEBUG, "P2P: Own listen channel: %d "
2156 "Own preferred operation channel: %d",
2157 p2p.channel, p2p.op_channel);
2158 if (wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
2159 os_memcpy(p2p.country, wpa_s->conf->country, 2);
2160 p2p.country[2] = 0x04;
2161 } else
2162 os_memcpy(p2p.country, "US\x04", 3);
2163
2164 if (wpas_p2p_setup_channels(wpa_s, &p2p)) {
2165 wpa_printf(MSG_ERROR, "P2P: Failed to configure supported "
2166 "channel list");
2167 return -1;
2168 }
2169
2170 if (wpa_s->conf->device_type &&
2171 wps_dev_type_str2bin(wpa_s->conf->device_type, p2p.pri_dev_type) <
2172 0) {
2173 wpa_printf(MSG_ERROR, "P2P: Invalid device_type");
2174 return -1;
2175 }
2176
2177 for (i = 0; i < MAX_SEC_DEVICE_TYPES; i++) {
2178 if (wpa_s->conf->sec_device_type[i] == NULL)
2179 continue;
2180 if (wps_dev_type_str2bin(
2181 wpa_s->conf->sec_device_type[i],
2182 p2p.sec_dev_type[p2p.num_sec_dev_types]) < 0) {
2183 wpa_printf(MSG_ERROR, "P2P: Invalid sec_device_type");
2184 return -1;
2185 }
2186 p2p.num_sec_dev_types++;
2187 if (p2p.num_sec_dev_types == P2P_SEC_DEVICE_TYPES)
2188 break;
2189 }
2190
2191 p2p.concurrent_operations = !!(wpa_s->drv_flags &
2192 WPA_DRIVER_FLAGS_P2P_CONCURRENT);
2193
2194 p2p.max_peers = wpa_s->max_stations ? wpa_s->max_stations : 100;
2195
2196 if (wpa_s->conf->p2p_ssid_postfix) {
2197 p2p.ssid_postfix_len =
2198 os_strlen(wpa_s->conf->p2p_ssid_postfix);
2199 if (p2p.ssid_postfix_len > sizeof(p2p.ssid_postfix))
2200 p2p.ssid_postfix_len = sizeof(p2p.ssid_postfix);
2201 os_memcpy(p2p.ssid_postfix, wpa_s->conf->p2p_ssid_postfix,
2202 p2p.ssid_postfix_len);
2203 }
2204
2205 p2p.p2p_intra_bss = wpa_s->conf->p2p_intra_bss;
2206
2207 global->p2p = p2p_init(&p2p);
2208 if (global->p2p == NULL)
2209 return -1;
2210
2211 return 0;
2212 }
2213
2214
2215 /**
2216 * wpas_p2p_deinit - Deinitialize per-interface P2P data
2217 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
2218 *
2219 * This function deinitialize per-interface P2P data.
2220 */
2221 void wpas_p2p_deinit(struct wpa_supplicant *wpa_s)
2222 {
2223 if (wpa_s->driver && wpa_s->drv_priv)
2224 wpa_drv_probe_req_report(wpa_s, 0);
2225 os_free(wpa_s->go_params);
2226 wpa_s->go_params = NULL;
2227 wpabuf_free(wpa_s->pending_action_tx);
2228 wpa_s->pending_action_tx = NULL;
2229 eloop_cancel_timeout(wpas_send_action_cb, wpa_s, NULL);
2230 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
2231 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
2232 wpa_s->p2p_long_listen = 0;
2233 eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
2234 wpas_p2p_remove_pending_group_interface(wpa_s);
2235
2236 /* TODO: remove group interface from the driver if this wpa_s instance
2237 * is on top of a P2P group interface */
2238 }
2239
2240
2241 /**
2242 * wpas_p2p_deinit_global - Deinitialize global P2P module
2243 * @global: Pointer to global data from wpa_supplicant_init()
2244 *
2245 * This function deinitializes the global (per device) P2P module.
2246 */
2247 void wpas_p2p_deinit_global(struct wpa_global *global)
2248 {
2249 struct wpa_supplicant *wpa_s, *tmp;
2250 char *ifname;
2251
2252 if (global->p2p == NULL)
2253 return;
2254
2255 /* Remove remaining P2P group interfaces */
2256 wpa_s = global->ifaces;
2257 if (wpa_s)
2258 wpas_p2p_service_flush(wpa_s);
2259 while (wpa_s && wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE)
2260 wpa_s = wpa_s->next;
2261 while (wpa_s) {
2262 enum wpa_driver_if_type type;
2263 tmp = global->ifaces;
2264 while (tmp &&
2265 (tmp == wpa_s ||
2266 tmp->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)) {
2267 tmp = tmp->next;
2268 }
2269 if (tmp == NULL)
2270 break;
2271 ifname = os_strdup(tmp->ifname);
2272 type = wpas_p2p_if_type(tmp->p2p_group_interface);
2273 wpa_supplicant_remove_iface(global, tmp);
2274 if (ifname)
2275 wpa_drv_if_remove(wpa_s, type, ifname);
2276 os_free(ifname);
2277 }
2278
2279 /*
2280 * Deinit GO data on any possibly remaining interface (if main
2281 * interface is used as GO).
2282 */
2283 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
2284 if (wpa_s->ap_iface)
2285 wpas_p2p_group_deinit(wpa_s);
2286 }
2287
2288 p2p_deinit(global->p2p);
2289 global->p2p = NULL;
2290 }
2291
2292
2293 static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s)
2294 {
2295 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE)
2296 return 1; /* P2P group requires a new interface in every case
2297 */
2298 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CONCURRENT))
2299 return 0; /* driver does not support concurrent operations */
2300 if (wpa_s->global->ifaces->next)
2301 return 1; /* more that one interface already in use */
2302 if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
2303 return 1; /* this interface is already in use */
2304 return 0;
2305 }
2306
2307
2308 static int wpas_p2p_start_go_neg(struct wpa_supplicant *wpa_s,
2309 const u8 *peer_addr,
2310 enum p2p_wps_method wps_method,
2311 int go_intent, const u8 *own_interface_addr,
2312 unsigned int force_freq, int persistent_group)
2313 {
2314 return p2p_connect(wpa_s->global->p2p, peer_addr, wps_method,
2315 go_intent, own_interface_addr, force_freq,
2316 persistent_group);
2317 }
2318
2319
2320 static int wpas_p2p_auth_go_neg(struct wpa_supplicant *wpa_s,
2321 const u8 *peer_addr,
2322 enum p2p_wps_method wps_method,
2323 int go_intent, const u8 *own_interface_addr,
2324 unsigned int force_freq, int persistent_group)
2325 {
2326 return p2p_authorize(wpa_s->global->p2p, peer_addr, wps_method,
2327 go_intent, own_interface_addr, force_freq,
2328 persistent_group);
2329 }
2330
2331
2332 static void wpas_p2p_scan_res_join(struct wpa_supplicant *wpa_s,
2333 struct wpa_scan_results *scan_res)
2334 {
2335 struct wpa_bss *bss;
2336 int freq;
2337
2338 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
2339
2340 if (wpa_s->global->p2p_disabled)
2341 return;
2342
2343 wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS) for join",
2344 scan_res ? (int) scan_res->num : -1);
2345
2346 if (scan_res)
2347 wpas_p2p_scan_res_handler(wpa_s, scan_res);
2348
2349 freq = p2p_get_oper_freq(wpa_s->global->p2p,
2350 wpa_s->pending_join_iface_addr);
2351 if (freq >= 0) {
2352 wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
2353 "from P2P peer table: %d MHz", freq);
2354 }
2355 bss = wpa_bss_get_bssid(wpa_s, wpa_s->pending_join_iface_addr);
2356 if (bss) {
2357 freq = bss->freq;
2358 wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
2359 "from BSS table: %d MHz", freq);
2360 }
2361 if (freq > 0) {
2362 u16 method;
2363
2364 wpa_printf(MSG_DEBUG, "P2P: Send Provision Discovery Request "
2365 "prior to joining an existing group (GO " MACSTR
2366 " freq=%u MHz)",
2367 MAC2STR(wpa_s->pending_join_dev_addr), freq);
2368 wpa_s->pending_pd_before_join = 1;
2369
2370 switch (wpa_s->pending_join_wps_method) {
2371 case WPS_PIN_LABEL:
2372 case WPS_PIN_DISPLAY:
2373 method = WPS_CONFIG_KEYPAD;
2374 break;
2375 case WPS_PIN_KEYPAD:
2376 method = WPS_CONFIG_DISPLAY;
2377 break;
2378 case WPS_PBC:
2379 method = WPS_CONFIG_PUSHBUTTON;
2380 break;
2381 default:
2382 method = 0;
2383 break;
2384 }
2385
2386 if (p2p_prov_disc_req(wpa_s->global->p2p,
2387 wpa_s->pending_join_dev_addr, method, 1)
2388 < 0) {
2389 wpa_printf(MSG_DEBUG, "P2P: Failed to send Provision "
2390 "Discovery Request before joining an "
2391 "existing group");
2392 wpa_s->pending_pd_before_join = 0;
2393 goto start;
2394 }
2395
2396 /*
2397 * Actual join operation will be started from the Action frame
2398 * TX status callback.
2399 */
2400 return;
2401 }
2402
2403 wpa_printf(MSG_DEBUG, "P2P: Target BSS/GO not yet in BSS table - "
2404 "cannot send Provision Discovery Request");
2405
2406 start:
2407 /* Start join operation immediately */
2408 wpas_p2p_join_start(wpa_s);
2409 }
2410
2411
2412 static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx)
2413 {
2414 struct wpa_supplicant *wpa_s = eloop_ctx;
2415 int ret;
2416 struct wpa_driver_scan_params params;
2417 struct wpabuf *wps_ie, *ies;
2418
2419 os_memset(&params, 0, sizeof(params));
2420
2421 /* P2P Wildcard SSID */
2422 params.num_ssids = 1;
2423 params.ssids[0].ssid = (u8 *) P2P_WILDCARD_SSID;
2424 params.ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
2425
2426 wpa_s->wps->dev.p2p = 1;
2427 wps_ie = wps_build_probe_req_ie(0, &wpa_s->wps->dev, wpa_s->wps->uuid,
2428 WPS_REQ_ENROLLEE);
2429 if (wps_ie == NULL) {
2430 wpas_p2p_scan_res_join(wpa_s, NULL);
2431 return;
2432 }
2433
2434 ies = wpabuf_alloc(wpabuf_len(wps_ie) + 100);
2435 if (ies == NULL) {
2436 wpabuf_free(wps_ie);
2437 wpas_p2p_scan_res_join(wpa_s, NULL);
2438 return;
2439 }
2440 wpabuf_put_buf(ies, wps_ie);
2441 wpabuf_free(wps_ie);
2442
2443 p2p_scan_ie(wpa_s->global->p2p, ies);
2444
2445 params.extra_ies = wpabuf_head(ies);
2446 params.extra_ies_len = wpabuf_len(ies);
2447
2448 /*
2449 * Run a scan to update BSS table and start Provision Discovery once
2450 * the new scan results become available.
2451 */
2452 wpa_s->scan_res_handler = wpas_p2p_scan_res_join;
2453 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME)
2454 ret = ieee80211_sta_req_scan(wpa_s, &params);
2455 else
2456 ret = wpa_drv_scan(wpa_s, &params);
2457
2458 wpabuf_free(ies);
2459
2460 if (ret) {
2461 wpa_printf(MSG_DEBUG, "P2P: Failed to start scan for join - "
2462 "try again later");
2463 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
2464 eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
2465 }
2466 }
2467
2468
2469 static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
2470 const u8 *dev_addr, enum p2p_wps_method wps_method)
2471 {
2472 wpa_printf(MSG_DEBUG, "P2P: Request to join existing group (iface "
2473 MACSTR " dev " MACSTR ")",
2474 MAC2STR(iface_addr), MAC2STR(dev_addr));
2475
2476 os_memcpy(wpa_s->pending_join_iface_addr, iface_addr, ETH_ALEN);
2477 os_memcpy(wpa_s->pending_join_dev_addr, dev_addr, ETH_ALEN);
2478 wpa_s->pending_join_wps_method = wps_method;
2479
2480 /* Make sure we are not running find during connection establishment */
2481 wpas_p2p_stop_find(wpa_s);
2482
2483 wpas_p2p_join_scan(wpa_s, NULL);
2484 return 0;
2485 }
2486
2487
2488 static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s)
2489 {
2490 struct wpa_supplicant *group;
2491 struct p2p_go_neg_results res;
2492
2493 group = wpas_p2p_get_group_iface(wpa_s, 0, 0);
2494 if (group == NULL)
2495 return -1;
2496 if (group != wpa_s) {
2497 os_memcpy(group->p2p_pin, wpa_s->p2p_pin,
2498 sizeof(group->p2p_pin));
2499 group->p2p_wps_method = wpa_s->p2p_wps_method;
2500 }
2501
2502 group->p2p_in_provisioning = 1;
2503
2504 os_memset(&res, 0, sizeof(res));
2505 os_memcpy(res.peer_interface_addr, wpa_s->pending_join_iface_addr,
2506 ETH_ALEN);
2507 res.wps_method = wpa_s->pending_join_wps_method;
2508 wpas_start_wps_enrollee(group, &res);
2509
2510 /*
2511 * Allow a longer timeout for join-a-running-group than normal 15
2512 * second group formation timeout since the GO may not have authorized
2513 * our connection yet.
2514 */
2515 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
2516 eloop_register_timeout(60, 0, wpas_p2p_group_formation_timeout,
2517 wpa_s, NULL);
2518
2519 return 0;
2520 }
2521
2522
2523 /**
2524 * wpas_p2p_connect - Request P2P Group Formation to be started
2525 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
2526 * @peer_addr: Address of the peer P2P Device
2527 * @pin: PIN to use during provisioning or %NULL to indicate PBC mode
2528 * @persistent_group: Whether to create a persistent group
2529 * @join: Whether to join an existing group (as a client) instead of starting
2530 * Group Owner negotiation; @peer_addr is BSSID in that case
2531 * @auth: Whether to only authorize the connection instead of doing that and
2532 * initiating Group Owner negotiation
2533 * @go_intent: GO Intent or -1 to use default
2534 * @freq: Frequency for the group or 0 for auto-selection
2535 * Returns: 0 or new PIN (if pin was %NULL) on success, -1 on unspecified
2536 * failure, -2 on failure due to channel not currently available,
2537 * -3 if forced channel is not supported
2538 */
2539 int wpas_p2p_connect(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
2540 const char *pin, enum p2p_wps_method wps_method,
2541 int persistent_group, int join, int auth, int go_intent,
2542 int freq)
2543 {
2544 int force_freq = 0, oper_freq = 0;
2545 u8 bssid[ETH_ALEN];
2546 int ret = 0;
2547 enum wpa_driver_if_type iftype;
2548
2549 if (go_intent < 0)
2550 go_intent = wpa_s->conf->p2p_go_intent;
2551
2552 if (!auth)
2553 wpa_s->p2p_long_listen = 0;
2554
2555 wpa_s->p2p_wps_method = wps_method;
2556
2557 if (pin)
2558 os_strlcpy(wpa_s->p2p_pin, pin, sizeof(wpa_s->p2p_pin));
2559 else if (wps_method == WPS_PIN_DISPLAY) {
2560 ret = wps_generate_pin();
2561 os_snprintf(wpa_s->p2p_pin, sizeof(wpa_s->p2p_pin), "%08d",
2562 ret);
2563 wpa_printf(MSG_DEBUG, "P2P: Randomly generated PIN: %s",
2564 wpa_s->p2p_pin);
2565 } else
2566 wpa_s->p2p_pin[0] = '\0';
2567
2568 if (join) {
2569 u8 iface_addr[ETH_ALEN], dev_addr[ETH_ALEN];
2570 if (auth) {
2571 wpa_printf(MSG_DEBUG, "P2P: Authorize invitation to "
2572 "connect a running group from " MACSTR,
2573 MAC2STR(peer_addr));
2574 os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
2575 return ret;
2576 }
2577 os_memcpy(dev_addr, peer_addr, ETH_ALEN);
2578 if (p2p_get_interface_addr(wpa_s->global->p2p, peer_addr,
2579 iface_addr) < 0) {
2580 os_memcpy(iface_addr, peer_addr, ETH_ALEN);
2581 p2p_get_dev_addr(wpa_s->global->p2p, peer_addr,
2582 dev_addr);
2583 }
2584 if (wpas_p2p_join(wpa_s, iface_addr, dev_addr, wps_method) <
2585 0)
2586 return -1;
2587 return ret;
2588 }
2589
2590 if (wpa_s->current_ssid && wpa_drv_get_bssid(wpa_s, bssid) == 0 &&
2591 wpa_s->assoc_freq)
2592 oper_freq = wpa_s->assoc_freq;
2593 else {
2594 oper_freq = wpa_drv_shared_freq(wpa_s);
2595 if (oper_freq < 0)
2596 oper_freq = 0;
2597 }
2598
2599 if (freq > 0) {
2600 if (!p2p_supported_freq(wpa_s->global->p2p, freq)) {
2601 wpa_printf(MSG_DEBUG, "P2P: The forced channel "
2602 "(%u MHz) is not supported for P2P uses",
2603 freq);
2604 return -3;
2605 }
2606
2607 if (oper_freq > 0 && freq != oper_freq &&
2608 !(wpa_s->drv_flags &
2609 WPA_DRIVER_FLAGS_MULTI_CHANNEL_CONCURRENT)) {
2610 wpa_printf(MSG_DEBUG, "P2P: Cannot start P2P group "
2611 "on %u MHz while connected on another "
2612 "channel (%u MHz)", freq, oper_freq);
2613 return -2;
2614 }
2615 wpa_printf(MSG_DEBUG, "P2P: Trying to force us to use the "
2616 "requested channel (%u MHz)", freq);
2617 force_freq = freq;
2618 } else if (oper_freq > 0 &&
2619 !p2p_supported_freq(wpa_s->global->p2p, oper_freq)) {
2620 if (!(wpa_s->drv_flags &
2621 WPA_DRIVER_FLAGS_MULTI_CHANNEL_CONCURRENT)) {
2622 wpa_printf(MSG_DEBUG, "P2P: Cannot start P2P group "
2623 "while connected on non-P2P supported "
2624 "channel (%u MHz)", oper_freq);
2625 return -2;
2626 }
2627 wpa_printf(MSG_DEBUG, "P2P: Current operating channel "
2628 "(%u MHz) not available for P2P - try to use "
2629 "another channel", oper_freq);
2630 force_freq = 0;
2631 } else if (oper_freq > 0) {
2632 wpa_printf(MSG_DEBUG, "P2P: Trying to force us to use the "
2633 "channel we are already using (%u MHz) on another "
2634 "interface", oper_freq);
2635 force_freq = oper_freq;
2636 }
2637
2638 wpa_s->create_p2p_iface = wpas_p2p_create_iface(wpa_s);
2639
2640 if (!wpa_s->create_p2p_iface) {
2641 if (auth) {
2642 if (wpas_p2p_auth_go_neg(wpa_s, peer_addr, wps_method,
2643 go_intent, wpa_s->own_addr,
2644 force_freq, persistent_group)
2645 < 0)
2646 return -1;
2647 return ret;
2648 }
2649 if (wpas_p2p_start_go_neg(wpa_s, peer_addr, wps_method,
2650 go_intent, wpa_s->own_addr,
2651 force_freq, persistent_group) < 0)
2652 return -1;
2653 return ret;
2654 }
2655
2656 /* Prepare to add a new interface for the group */
2657 iftype = WPA_IF_P2P_GROUP;
2658 if (join)
2659 iftype = WPA_IF_P2P_CLIENT;
2660 else if (go_intent == 15)
2661 iftype = WPA_IF_P2P_GO;
2662 if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
2663 wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
2664 "interface for the group");
2665 return -1;
2666 }
2667
2668 if (auth) {
2669 if (wpas_p2p_auth_go_neg(wpa_s, peer_addr, wps_method,
2670 go_intent,
2671 wpa_s->pending_interface_addr,
2672 force_freq, persistent_group) < 0)
2673 return -1;
2674 return ret;
2675 }
2676 if (wpas_p2p_start_go_neg(wpa_s, peer_addr, wps_method, go_intent,
2677 wpa_s->pending_interface_addr,
2678 force_freq, persistent_group) < 0) {
2679 wpas_p2p_remove_pending_group_interface(wpa_s);
2680 return -1;
2681 }
2682 return ret;
2683 }
2684
2685
2686 /**
2687 * wpas_p2p_remain_on_channel_cb - Indication of remain-on-channel start
2688 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
2689 * @freq: Frequency of the channel in MHz
2690 * @duration: Duration of the stay on the channel in milliseconds
2691 *
2692 * This callback is called when the driver indicates that it has started the
2693 * requested remain-on-channel duration.
2694 */
2695 void wpas_p2p_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
2696 unsigned int freq, unsigned int duration)
2697 {
2698 wpa_s->roc_waiting_drv_freq = 0;
2699 wpa_s->off_channel_freq = freq;
2700 wpas_send_action_cb(wpa_s, NULL);
2701 if (wpa_s->off_channel_freq == wpa_s->pending_listen_freq) {
2702 p2p_listen_cb(wpa_s->global->p2p, wpa_s->pending_listen_freq,
2703 wpa_s->pending_listen_duration);
2704 wpa_s->pending_listen_freq = 0;
2705 }
2706 }
2707
2708
2709 static int wpas_p2p_listen_start(struct wpa_supplicant *wpa_s,
2710 unsigned int timeout)
2711 {
2712 /* Limit maximum Listen state time based on driver limitation. */
2713 if (timeout > wpa_s->max_remain_on_chan)
2714 timeout = wpa_s->max_remain_on_chan;
2715
2716 return p2p_listen(wpa_s->global->p2p, timeout);
2717 }
2718
2719
2720 /**
2721 * wpas_p2p_cancel_remain_on_channel_cb - Remain-on-channel timeout
2722 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
2723 * @freq: Frequency of the channel in MHz
2724 *
2725 * This callback is called when the driver indicates that a remain-on-channel
2726 * operation has been completed, i.e., the duration on the requested channel
2727 * has timed out.
2728 */
2729 void wpas_p2p_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
2730 unsigned int freq)
2731 {
2732 wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel callback "
2733 "(p2p_long_listen=%d pending_action_tx=%p)",
2734 wpa_s->p2p_long_listen, wpa_s->pending_action_tx);
2735 wpa_s->off_channel_freq = 0;
2736 if (p2p_listen_end(wpa_s->global->p2p, freq) > 0)
2737 return; /* P2P module started a new operation */
2738 if (wpa_s->pending_action_tx)
2739 return;
2740 if (wpa_s->p2p_long_listen > 0)
2741 wpa_s->p2p_long_listen -= 5;
2742 if (wpa_s->p2p_long_listen > 0) {
2743 wpa_printf(MSG_DEBUG, "P2P: Continuing long Listen state");
2744 wpas_p2p_listen_start(wpa_s, wpa_s->p2p_long_listen * 1000);
2745 }
2746 }
2747
2748
2749 /**
2750 * wpas_p2p_group_remove - Remove a P2P group
2751 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
2752 * @ifname: Network interface name of the group interface or "*" to remove all
2753 * groups
2754 * Returns: 0 on success, -1 on failure
2755 *
2756 * This function is used to remove a P2P group. This can be used to disconnect
2757 * from a group in which the local end is a P2P Client or to end a P2P Group in
2758 * case the local end is the Group Owner. If a virtual network interface was
2759 * created for this group, that interface will be removed. Otherwise, only the
2760 * configured P2P group network will be removed from the interface.
2761 */
2762 int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s, const char *ifname)
2763 {
2764 struct wpa_global *global = wpa_s->global;
2765
2766 if (os_strcmp(ifname, "*") == 0) {
2767 struct wpa_supplicant *prev;
2768 wpa_s = global->ifaces;
2769 while (wpa_s) {
2770 prev = wpa_s;
2771 wpa_s = wpa_s->next;
2772 wpas_p2p_group_delete(prev);
2773 }
2774 return 0;
2775 }
2776
2777 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
2778 if (os_strcmp(wpa_s->ifname, ifname) == 0)
2779 break;
2780 }
2781
2782 if (wpa_s == NULL)
2783 return -1;
2784
2785 wpas_p2p_group_delete(wpa_s);
2786
2787 return 0;
2788 }
2789
2790
2791 static void wpas_p2p_init_go_params(struct wpa_supplicant *wpa_s,
2792 struct p2p_go_neg_results *params,
2793 int freq)
2794 {
2795 u8 bssid[ETH_ALEN];
2796 int res;
2797
2798 os_memset(params, 0, sizeof(*params));
2799 params->role_go = 1;
2800 params->freq = 2412;
2801 if (freq)
2802 params->freq = freq;
2803 else if (wpa_s->conf->p2p_oper_reg_class == 81 &&
2804 wpa_s->conf->p2p_oper_channel >= 1 &&
2805 wpa_s->conf->p2p_oper_channel <= 11)
2806 params->freq = 2407 + 5 * wpa_s->conf->p2p_oper_channel;
2807 else if (wpa_s->conf->p2p_oper_reg_class == 115 ||
2808 wpa_s->conf->p2p_oper_reg_class == 118)
2809 params->freq = 5000 + 5 * wpa_s->conf->p2p_oper_channel;
2810 if (wpa_s->current_ssid && wpa_drv_get_bssid(wpa_s, bssid) == 0 &&
2811 wpa_s->assoc_freq && !freq) {
2812 wpa_printf(MSG_DEBUG, "P2P: Force GO on the channel we are "
2813 "already using");
2814 params->freq = wpa_s->assoc_freq;
2815 }
2816
2817 res = wpa_drv_shared_freq(wpa_s);
2818 if (res > 0 && !freq) {
2819 wpa_printf(MSG_DEBUG, "P2P: Force GO on the channel we are "
2820 "already using on a shared interface");
2821 params->freq = res;
2822 }
2823 }
2824
2825
2826 static struct wpa_supplicant *
2827 wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
2828 int go)
2829 {
2830 struct wpa_supplicant *group_wpa_s;
2831
2832 if (!wpas_p2p_create_iface(wpa_s))
2833 return wpa_s;
2834
2835 if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
2836 WPA_IF_P2P_CLIENT) < 0)
2837 return NULL;
2838 group_wpa_s = wpas_p2p_init_group_interface(wpa_s, go);
2839 if (group_wpa_s == NULL) {
2840 wpas_p2p_remove_pending_group_interface(wpa_s);
2841 return NULL;
2842 }
2843
2844 return group_wpa_s;
2845 }
2846
2847
2848 /**
2849 * wpas_p2p_group_add - Add a new P2P group with local end as Group Owner
2850 * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
2851 * @persistent_group: Whether to create a persistent group
2852 * @freq: Frequency for the group or 0 to indicate no hardcoding
2853 * Returns: 0 on success, -1 on failure
2854 *
2855 * This function creates a new P2P group with the local end as the Group Owner,
2856 * i.e., without using Group Owner Negotiation.
2857 */
2858 int wpas_p2p_group_add(struct wpa_supplicant *wpa_s, int persistent_group,
2859 int freq)
2860 {
2861 struct p2p_go_neg_results params;
2862
2863 if (freq > 0 && !p2p_supported_freq(wpa_s->global->p2p, freq)) {
2864 wpa_printf(MSG_DEBUG, "P2P: The forced channel for GO "
2865 "(%u MHz) is not supported for P2P uses",
2866 freq);
2867 return -1;
2868 }
2869
2870 wpas_p2p_init_go_params(wpa_s, &params, freq);
2871 p2p_go_params(wpa_s->global->p2p, &params);
2872 params.persistent_group = persistent_group;
2873
2874 wpa_s = wpas_p2p_get_group_iface(wpa_s, 0, 1);
2875 if (wpa_s == NULL)
2876 return -1;
2877 wpas_start_wps_go(wpa_s, &params, 0);
2878
2879 return 0;
2880 }
2881
2882
2883 static int wpas_start_p2p_client(struct wpa_supplicant *wpa_s,
2884 struct wpa_ssid *params, int addr_allocated)
2885 {
2886 struct wpa_ssid *ssid;
2887
2888 wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 0);
2889 if (wpa_s == NULL)
2890 return -1;
2891
2892 wpa_supplicant_ap_deinit(wpa_s);
2893
2894 ssid = wpa_config_add_network(wpa_s->conf);
2895 if (ssid == NULL)
2896 return -1;
2897 wpas_notify_network_added(wpa_s, ssid);
2898 wpa_config_set_network_defaults(ssid);
2899 ssid->temporary = 1;
2900 ssid->proto = WPA_PROTO_RSN;
2901 ssid->pairwise_cipher = WPA_CIPHER_CCMP;
2902 ssid->group_cipher = WPA_CIPHER_CCMP;
2903 ssid->key_mgmt = WPA_KEY_MGMT_PSK;
2904 ssid->ssid = os_malloc(params->ssid_len);
2905 if (ssid->ssid == NULL) {
2906 wpas_notify_network_removed(wpa_s, ssid);
2907 wpa_config_remove_network(wpa_s->conf, ssid->id);
2908 return -1;
2909 }
2910 os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
2911 ssid->ssid_len = params->ssid_len;
2912 ssid->p2p_group = 1;
2913 if (params->psk_set) {
2914 os_memcpy(ssid->psk, params->psk, 32);
2915 ssid->psk_set = 1;
2916 }
2917 if (params->passphrase)
2918 ssid->passphrase = os_strdup(params->passphrase);
2919
2920 wpa_supplicant_select_network(wpa_s, ssid);
2921
2922 wpa_s->show_group_started = 1;
2923
2924 return 0;
2925 }
2926
2927
2928 int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
2929 struct wpa_ssid *ssid, int addr_allocated,
2930 int freq)
2931 {
2932 struct p2p_go_neg_results params;
2933
2934 if (ssid->disabled != 2 || ssid->ssid == NULL)
2935 return -1;
2936
2937 wpa_s->p2p_long_listen = 0;
2938 eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
2939
2940 if (ssid->mode == WPAS_MODE_INFRA)
2941 return wpas_start_p2p_client(wpa_s, ssid, addr_allocated);
2942
2943 if (ssid->mode != WPAS_MODE_P2P_GO)
2944 return -1;
2945
2946 wpas_p2p_init_go_params(wpa_s, &params, freq);
2947
2948 params.role_go = 1;
2949 if (ssid->passphrase == NULL ||
2950 os_strlen(ssid->passphrase) >= sizeof(params.passphrase)) {
2951 wpa_printf(MSG_DEBUG, "P2P: Invalid passphrase in persistent "
2952 "group");
2953 return -1;
2954 }
2955 os_strlcpy(params.passphrase, ssid->passphrase,
2956 sizeof(params.passphrase));
2957 os_memcpy(params.ssid, ssid->ssid, ssid->ssid_len);
2958 params.ssid_len = ssid->ssid_len;
2959 params.persistent_group = 1;
2960
2961 wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 1);
2962 if (wpa_s == NULL)
2963 return -1;
2964
2965 wpas_start_wps_go(wpa_s, &params, 0);
2966
2967 return 0;
2968 }
2969
2970
2971 static void wpas_p2p_ie_update(void *ctx, struct wpabuf *beacon_ies,
2972 struct wpabuf *proberesp_ies)
2973 {
2974 struct wpa_supplicant *wpa_s = ctx;
2975 if (wpa_s->ap_iface) {
2976 struct hostapd_data *hapd = wpa_s->ap_iface->bss[0];
2977 if (beacon_ies) {
2978 wpabuf_free(hapd->p2p_beacon_ie);
2979 hapd->p2p_beacon_ie = beacon_ies;
2980 }
2981 wpabuf_free(hapd->p2p_probe_resp_ie);
2982 hapd->p2p_probe_resp_ie = proberesp_ies;
2983 } else {
2984 wpabuf_free(beacon_ies);
2985 wpabuf_free(proberesp_ies);
2986 }
2987 wpa_supplicant_ap_update_beacon(wpa_s);
2988 }
2989
2990
2991 struct p2p_group * wpas_p2p_group_init(struct wpa_supplicant *wpa_s,
2992 int persistent_group,
2993 int group_formation)
2994 {
2995 struct p2p_group *group;
2996 struct p2p_group_config *cfg;
2997
2998 cfg = os_zalloc(sizeof(*cfg));
2999 if (cfg == NULL)
3000 return NULL;
3001
3002 cfg->persistent_group = persistent_group;
3003 os_memcpy(cfg->interface_addr, wpa_s->own_addr, ETH_ALEN);
3004 cfg->cb_ctx = wpa_s;
3005 cfg->ie_update = wpas_p2p_ie_update;
3006
3007 group = p2p_group_init(wpa_s->global->p2p, cfg);
3008 if (group == NULL)
3009 os_free(cfg);
3010 if (!group_formation)
3011 p2p_group_notif_formation_done(group);
3012 wpa_s->p2p_group = group;
3013 return group;
3014 }
3015
3016
3017 void wpas_p2p_wps_success(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
3018 int registrar)
3019 {
3020 if (!wpa_s->p2p_in_provisioning) {
3021 wpa_printf(MSG_DEBUG, "P2P: Ignore WPS success event - P2P "
3022 "provisioning not in progress");
3023 return;
3024 }
3025
3026 eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s->parent,
3027 NULL);
3028 if (wpa_s->global->p2p)
3029 p2p_wps_success_cb(wpa_s->global->p2p, peer_addr);
3030 wpas_group_formation_completed(wpa_s, 1);
3031 }
3032
3033
3034 int wpas_p2p_prov_disc(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
3035 const char *config_method)
3036 {
3037 u16 config_methods;
3038
3039 if (os_strcmp(config_method, "display") == 0)
3040 config_methods = WPS_CONFIG_DISPLAY;
3041 else if (os_strcmp(config_method, "keypad") == 0)
3042 config_methods = WPS_CONFIG_KEYPAD;
3043 else if (os_strcmp(config_method, "pbc") == 0 ||
3044 os_strcmp(config_method, "pushbutton") == 0)
3045 config_methods = WPS_CONFIG_PUSHBUTTON;
3046 else
3047 return -1;
3048
3049 if (wpa_s->global->p2p == NULL)
3050 return -1;
3051
3052 return p2p_prov_disc_req(wpa_s->global->p2p, peer_addr,
3053 config_methods, 0);
3054 }
3055
3056
3057 int wpas_p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
3058 char *end)
3059 {
3060 return p2p_scan_result_text(ies, ies_len, buf, end);
3061 }
3062
3063
3064 static void wpas_p2p_clear_pending_action_tx(struct wpa_supplicant *wpa_s)
3065 {
3066 if (!wpa_s->pending_action_tx)
3067 return;
3068
3069 wpa_printf(MSG_DEBUG, "P2P: Drop pending Action TX due to new "
3070 "operation request");
3071 wpabuf_free(wpa_s->pending_action_tx);
3072 wpa_s->pending_action_tx = NULL;
3073 }
3074
3075
3076 int wpas_p2p_find(struct wpa_supplicant *wpa_s, unsigned int timeout,
3077 enum p2p_discovery_type type)
3078 {
3079 wpas_p2p_clear_pending_action_tx(wpa_s);
3080 wpa_s->p2p_long_listen = 0;
3081
3082 return p2p_find(wpa_s->global->p2p, timeout, type);
3083 }
3084
3085
3086 void wpas_p2p_stop_find(struct wpa_supplicant *wpa_s)
3087 {
3088 wpas_p2p_clear_pending_action_tx(wpa_s);
3089 wpa_s->p2p_long_listen = 0;
3090 eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
3091
3092 p2p_stop_find(wpa_s->global->p2p);
3093
3094 wpas_p2p_remove_pending_group_interface(wpa_s);
3095 }
3096
3097
3098 static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx)
3099 {
3100 struct wpa_supplicant *wpa_s = eloop_ctx;
3101 wpa_s->p2p_long_listen = 0;
3102 }
3103
3104
3105 int wpas_p2p_listen(struct wpa_supplicant *wpa_s, unsigned int timeout)
3106 {
3107 int res;
3108
3109 wpas_p2p_clear_pending_action_tx(wpa_s);
3110
3111 if (timeout == 0) {
3112 /*
3113 * This is a request for unlimited Listen state. However, at
3114 * least for now, this is mapped to a Listen state for one
3115 * hour.
3116 */
3117 timeout = 3600;
3118 }
3119 eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
3120 wpa_s->p2p_long_listen = 0;
3121
3122 res = wpas_p2p_listen_start(wpa_s, timeout * 1000);
3123 if (res == 0 && timeout * 1000 > wpa_s->max_remain_on_chan) {
3124 wpa_s->p2p_long_listen = timeout;
3125 eloop_register_timeout(timeout, 0,
3126 wpas_p2p_long_listen_timeout,
3127 wpa_s, NULL);
3128 }
3129
3130 return res;
3131 }
3132
3133
3134 int wpas_p2p_assoc_req_ie(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
3135 u8 *buf, size_t len, int p2p_group)
3136 {
3137 struct wpabuf *p2p_ie;
3138 int ret;
3139
3140 if (wpa_s->global->p2p_disabled)
3141 return -1;
3142 if (wpa_s->global->p2p == NULL)
3143 return -1;
3144 if (bss == NULL)
3145 return -1;
3146
3147 p2p_ie = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
3148 ret = p2p_assoc_req_ie(wpa_s->global->p2p, bss->bssid, buf, len,
3149 p2p_group, p2p_ie);
3150 wpabuf_free(p2p_ie);
3151
3152 return ret;
3153 }
3154
3155
3156 int wpas_p2p_probe_req_rx(struct wpa_supplicant *wpa_s, const u8 *addr,
3157 const u8 *ie, size_t ie_len)
3158 {
3159 if (wpa_s->global->p2p_disabled)
3160 return 0;
3161 if (wpa_s->global->p2p == NULL)
3162 return 0;
3163
3164 return p2p_probe_req_rx(wpa_s->global->p2p, addr, ie, ie_len);
3165 }
3166
3167
3168 void wpas_p2p_rx_action(struct wpa_supplicant *wpa_s, const u8 *da,
3169 const u8 *sa, const u8 *bssid,
3170 u8 category, const u8 *data, size_t len, int freq)
3171 {
3172 if (wpa_s->global->p2p_disabled)
3173 return;
3174 if (wpa_s->global->p2p == NULL)
3175 return;
3176
3177 p2p_rx_action(wpa_s->global->p2p, da, sa, bssid, category, data, len,
3178 freq);
3179 }
3180
3181
3182 void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies)
3183 {
3184 if (wpa_s->global->p2p_disabled)
3185 return;
3186 if (wpa_s->global->p2p == NULL)
3187 return;
3188
3189 p2p_scan_ie(wpa_s->global->p2p, ies);
3190 }
3191
3192
3193 void wpas_p2p_group_deinit(struct wpa_supplicant *wpa_s)
3194 {
3195 p2p_group_deinit(wpa_s->p2p_group);
3196 wpa_s->p2p_group = NULL;
3197 }
3198
3199
3200 int wpas_p2p_reject(struct wpa_supplicant *wpa_s, const u8 *addr)
3201 {
3202 wpa_s->p2p_long_listen = 0;
3203
3204 return p2p_reject(wpa_s->global->p2p, addr);
3205 }
3206
3207
3208 /* Invite to reinvoke a persistent group */
3209 int wpas_p2p_invite(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
3210 struct wpa_ssid *ssid, const u8 *go_dev_addr)
3211 {
3212 enum p2p_invite_role role;
3213 u8 *bssid = NULL;
3214
3215 if (ssid->mode == WPAS_MODE_P2P_GO) {
3216 role = P2P_INVITE_ROLE_GO;
3217 if (peer_addr == NULL) {
3218 wpa_printf(MSG_DEBUG, "P2P: Missing peer "
3219 "address in invitation command");
3220 return -1;
3221 }
3222 if (wpas_p2p_create_iface(wpa_s)) {
3223 if (wpas_p2p_add_group_interface(wpa_s,
3224 WPA_IF_P2P_GO) < 0) {
3225 wpa_printf(MSG_ERROR, "P2P: Failed to "
3226 "allocate a new interface for the "
3227 "group");
3228 return -1;
3229 }
3230 bssid = wpa_s->pending_interface_addr;
3231 } else
3232 bssid = wpa_s->own_addr;
3233 } else {
3234 role = P2P_INVITE_ROLE_CLIENT;
3235 peer_addr = ssid->bssid;
3236 }
3237 wpa_s->pending_invite_ssid_id = ssid->id;
3238
3239 return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
3240 ssid->ssid, ssid->ssid_len, 0, go_dev_addr, 1);
3241 }
3242
3243
3244 /* Invite to join an active group */
3245 int wpas_p2p_invite_group(struct wpa_supplicant *wpa_s, const char *ifname,
3246 const u8 *peer_addr, const u8 *go_dev_addr)
3247 {
3248 struct wpa_global *global = wpa_s->global;
3249 enum p2p_invite_role role;
3250 u8 *bssid = NULL;
3251 struct wpa_ssid *ssid;
3252
3253 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
3254 if (os_strcmp(wpa_s->ifname, ifname) == 0)
3255 break;
3256 }
3257 if (wpa_s == NULL) {
3258 wpa_printf(MSG_DEBUG, "P2P: Interface '%s' not found", ifname);
3259 return -1;
3260 }
3261
3262 ssid = wpa_s->current_ssid;
3263 if (ssid == NULL) {
3264 wpa_printf(MSG_DEBUG, "P2P: No current SSID to use for "
3265 "invitation");
3266 return -1;
3267 }
3268
3269 if (ssid->mode == WPAS_MODE_P2P_GO) {
3270 role = P2P_INVITE_ROLE_ACTIVE_GO;
3271 bssid = wpa_s->own_addr;
3272 if (go_dev_addr == NULL)
3273 go_dev_addr = wpa_s->parent->own_addr;
3274 } else {
3275 role = P2P_INVITE_ROLE_CLIENT;
3276 if (wpa_s->wpa_state < WPA_ASSOCIATED) {
3277 wpa_printf(MSG_DEBUG, "P2P: Not associated - cannot "
3278 "invite to current group");
3279 return -1;
3280 }
3281 bssid = wpa_s->bssid;
3282 if (go_dev_addr == NULL &&
3283 !is_zero_ether_addr(wpa_s->go_dev_addr))
3284 go_dev_addr = wpa_s->go_dev_addr;
3285 }
3286 wpa_s->pending_invite_ssid_id = -1;
3287
3288 return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
3289 ssid->ssid, ssid->ssid_len, wpa_s->assoc_freq,
3290 go_dev_addr, 0);
3291 }
3292
3293
3294 void wpas_p2p_completed(struct wpa_supplicant *wpa_s)
3295 {
3296 struct wpa_ssid *ssid = wpa_s->current_ssid;
3297 const char *ssid_txt;
3298 u8 go_dev_addr[ETH_ALEN];
3299 int persistent;
3300
3301 if (!wpa_s->show_group_started || !ssid)
3302 return;
3303
3304 wpa_s->show_group_started = 0;
3305
3306 ssid_txt = wpa_ssid_txt(ssid->ssid, ssid->ssid_len);
3307 os_memset(go_dev_addr, 0, ETH_ALEN);
3308 if (ssid->bssid_set)
3309 os_memcpy(go_dev_addr, ssid->bssid, ETH_ALEN);
3310 persistent = wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
3311 ssid->ssid_len);
3312 os_memcpy(wpa_s->go_dev_addr, go_dev_addr, ETH_ALEN);
3313
3314 if (ssid->passphrase == NULL && ssid->psk_set) {
3315 char psk[65];
3316 wpa_snprintf_hex(psk, sizeof(psk), ssid->psk, 32);
3317 wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
3318 "%s client ssid=\"%s\" freq=%d psk=%s go_dev_addr="
3319 MACSTR "%s",
3320 wpa_s->ifname, ssid_txt, ssid->frequency, psk,
3321 MAC2STR(go_dev_addr),
3322 persistent ? " [PERSISTENT]" : "");
3323 } else {
3324 wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
3325 "%s client ssid=\"%s\" freq=%d passphrase=\"%s\" "
3326 "go_dev_addr=" MACSTR "%s",
3327 wpa_s->ifname, ssid_txt, ssid->frequency,
3328 ssid->passphrase ? ssid->passphrase : "",
3329 MAC2STR(go_dev_addr),
3330 persistent ? " [PERSISTENT]" : "");
3331 }
3332
3333 if (persistent)
3334 wpas_p2p_store_persistent_group(wpa_s->parent, ssid,
3335 go_dev_addr);
3336 }
3337
3338
3339 int wpas_p2p_presence_req(struct wpa_supplicant *wpa_s, u32 duration1,
3340 u32 interval1, u32 duration2, u32 interval2)
3341 {
3342 if (wpa_s->wpa_state < WPA_ASSOCIATED ||
3343 wpa_s->current_ssid == NULL ||
3344 wpa_s->current_ssid->mode != WPAS_MODE_INFRA)
3345 return -1;
3346
3347 return p2p_presence_req(wpa_s->global->p2p, wpa_s->bssid,
3348 wpa_s->own_addr, wpa_s->assoc_freq,
3349 duration1, interval1, duration2, interval2);
3350 }
3351
3352
3353 int wpas_p2p_ext_listen(struct wpa_supplicant *wpa_s, unsigned int period,
3354 unsigned int interval)
3355 {
3356 return p2p_ext_listen(wpa_s->global->p2p, period, interval);
3357 }
3358
3359
3360 void wpas_p2p_deauth_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
3361 u16 reason_code, const u8 *ie, size_t ie_len)
3362 {
3363 if (wpa_s->global->p2p_disabled)
3364 return;
3365
3366 p2p_deauth_notif(wpa_s->global->p2p, bssid, reason_code, ie, ie_len);
3367 }
3368
3369
3370 void wpas_p2p_disassoc_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
3371 u16 reason_code, const u8 *ie, size_t ie_len)
3372 {
3373 if (wpa_s->global->p2p_disabled)
3374 return;
3375
3376 p2p_disassoc_notif(wpa_s->global->p2p, bssid, reason_code, ie, ie_len);
3377 }
3378
3379
3380 void wpas_p2p_update_config(struct wpa_supplicant *wpa_s)
3381 {
3382 struct p2p_data *p2p = wpa_s->global->p2p;
3383
3384 if (p2p == NULL)
3385 return;
3386
3387 if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
3388 return;
3389
3390 if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_NAME)
3391 p2p_set_dev_name(p2p, wpa_s->conf->device_name);
3392
3393 if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_TYPE) {
3394 u8 pri_dev_type[8];
3395 if (wpa_s->conf->device_type) {
3396 if (wps_dev_type_str2bin(wpa_s->conf->device_type,
3397 pri_dev_type) < 0) {
3398 wpa_printf(MSG_ERROR, "P2P: Invalid "
3399 "device_type");
3400 } else
3401 p2p_set_pri_dev_type(p2p, pri_dev_type);
3402 }
3403 }
3404
3405 if (wpa_s->conf->changed_parameters & CFG_CHANGED_SEC_DEVICE_TYPE) {
3406 u8 sec_dev_type[P2P_SEC_DEVICE_TYPES][8];
3407 size_t num = 0;
3408 int i;
3409 for (i = 0; i < MAX_SEC_DEVICE_TYPES; i++) {
3410 if (wpa_s->conf->sec_device_type[i] == NULL)
3411 continue;
3412 if (wps_dev_type_str2bin(
3413 wpa_s->conf->sec_device_type[i],
3414 sec_dev_type[num]) < 0) {
3415 wpa_printf(MSG_ERROR, "P2P: Invalid "
3416 "sec_device_type");
3417 continue;
3418 }
3419 num++;
3420 if (num == P2P_SEC_DEVICE_TYPES)
3421 break;
3422 }
3423 p2p_set_sec_dev_types(p2p, (void *) sec_dev_type, num);
3424 }
3425
3426 if ((wpa_s->conf->changed_parameters & CFG_CHANGED_COUNTRY) &&
3427 wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
3428 char country[3];
3429 country[0] = wpa_s->conf->country[0];
3430 country[1] = wpa_s->conf->country[1];
3431 country[2] = 0x04;
3432 p2p_set_country(p2p, country);
3433 }
3434
3435 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_SSID_POSTFIX) {
3436 p2p_set_ssid_postfix(p2p, (u8 *) wpa_s->conf->p2p_ssid_postfix,
3437 wpa_s->conf->p2p_ssid_postfix ?
3438 os_strlen(wpa_s->conf->p2p_ssid_postfix) :
3439 0);
3440 }
3441
3442 if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_INTRA_BSS)
3443 p2p_set_intra_bss_dist(p2p, wpa_s->conf->p2p_intra_bss);
3444 }
3445
3446
3447 int wpas_p2p_set_noa(struct wpa_supplicant *wpa_s, u8 count, int start,
3448 int duration)
3449 {
3450 if (!wpa_s->ap_iface)
3451 return -1;
3452 return hostapd_p2p_set_noa(wpa_s->ap_iface->bss[0], count, start,
3453 duration);
3454 }
3455
3456
3457 int wpas_p2p_set_cross_connect(struct wpa_supplicant *wpa_s, int enabled)
3458 {
3459 if (wpa_s->global->p2p_disabled)
3460 return -1;
3461 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
3462 return -1;
3463
3464 wpa_s->global->cross_connection = enabled;
3465 p2p_set_cross_connect(wpa_s->global->p2p, enabled);
3466
3467 if (!enabled) {
3468 struct wpa_supplicant *iface;
3469
3470 for (iface = wpa_s->global->ifaces; iface; iface = iface->next)
3471 {
3472 if (iface->cross_connect_enabled == 0)
3473 continue;
3474
3475 iface->cross_connect_enabled = 0;
3476 iface->cross_connect_in_use = 0;
3477 wpa_msg(iface->parent, MSG_INFO,
3478 P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
3479 iface->ifname, iface->cross_connect_uplink);
3480 }
3481 }
3482
3483 return 0;
3484 }
3485
3486
3487 static void wpas_p2p_enable_cross_connect(struct wpa_supplicant *uplink)
3488 {
3489 struct wpa_supplicant *iface;
3490
3491 if (!uplink->global->cross_connection)
3492 return;
3493
3494 for (iface = uplink->global->ifaces; iface; iface = iface->next) {
3495 if (!iface->cross_connect_enabled)
3496 continue;
3497 if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
3498 0)
3499 continue;
3500 if (iface->ap_iface == NULL)
3501 continue;
3502 if (iface->cross_connect_in_use)
3503 continue;
3504
3505 iface->cross_connect_in_use = 1;
3506 wpa_msg(iface->parent, MSG_INFO,
3507 P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
3508 iface->ifname, iface->cross_connect_uplink);
3509 }
3510 }
3511
3512
3513 static void wpas_p2p_disable_cross_connect(struct wpa_supplicant *uplink)
3514 {
3515 struct wpa_supplicant *iface;
3516
3517 for (iface = uplink->global->ifaces; iface; iface = iface->next) {
3518 if (!iface->cross_connect_enabled)
3519 continue;
3520 if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
3521 0)
3522 continue;
3523 if (!iface->cross_connect_in_use)
3524 continue;
3525
3526 wpa_msg(iface->parent, MSG_INFO,
3527 P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
3528 iface->ifname, iface->cross_connect_uplink);
3529 iface->cross_connect_in_use = 0;
3530 }
3531 }
3532
3533
3534 void wpas_p2p_notif_connected(struct wpa_supplicant *wpa_s)
3535 {
3536 if (wpa_s->ap_iface || wpa_s->current_ssid == NULL ||
3537 wpa_s->current_ssid->mode != WPAS_MODE_INFRA ||
3538 wpa_s->cross_connect_disallowed)
3539 wpas_p2p_disable_cross_connect(wpa_s);
3540 else
3541 wpas_p2p_enable_cross_connect(wpa_s);
3542 }
3543
3544
3545 void wpas_p2p_notif_disconnected(struct wpa_supplicant *wpa_s)
3546 {
3547 wpas_p2p_disable_cross_connect(wpa_s);
3548 }
3549
3550
3551 static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s)
3552 {
3553 struct wpa_supplicant *iface;
3554
3555 if (!wpa_s->global->cross_connection)
3556 return;
3557
3558 for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
3559 if (iface == wpa_s)
3560 continue;
3561 if (iface->drv_flags &
3562 WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE)
3563 continue;
3564 if (iface->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE)
3565 continue;
3566
3567 wpa_s->cross_connect_enabled = 1;
3568 os_strlcpy(wpa_s->cross_connect_uplink, iface->ifname,
3569 sizeof(wpa_s->cross_connect_uplink));
3570 wpa_printf(MSG_DEBUG, "P2P: Enable cross connection from "
3571 "%s to %s whenever uplink is available",
3572 wpa_s->ifname, wpa_s->cross_connect_uplink);
3573
3574 if (iface->ap_iface || iface->current_ssid == NULL ||
3575 iface->current_ssid->mode != WPAS_MODE_INFRA ||
3576 iface->cross_connect_disallowed ||
3577 iface->wpa_state != WPA_COMPLETED)
3578 break;
3579
3580 wpa_s->cross_connect_in_use = 1;
3581 wpa_msg(wpa_s->parent, MSG_INFO,
3582 P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
3583 wpa_s->ifname, wpa_s->cross_connect_uplink);
3584 break;
3585 }
3586 }
3587
3588
3589 int wpas_p2p_notif_pbc_overlap(struct wpa_supplicant *wpa_s)
3590 {
3591 if (wpa_s->p2p_group_interface != P2P_GROUP_INTERFACE_CLIENT &&
3592 !wpa_s->p2p_in_provisioning)
3593 return 0; /* not P2P client operation */
3594
3595 wpa_printf(MSG_DEBUG, "P2P: Terminate connection due to WPS PBC "
3596 "session overlap");
3597 wpas_group_formation_completed(wpa_s, 0);
3598 return 1;
3599 }