2010-07-18 23:30:25 +02:00
|
|
|
/*
|
|
|
|
* Wi-Fi Direct - P2P module
|
|
|
|
* Copyright (c) 2009-2010, Atheros Communications
|
|
|
|
*
|
2012-02-11 15:31:36 +01:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2010-07-18 23:30:25 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "eloop.h"
|
|
|
|
#include "common/ieee802_11_defs.h"
|
|
|
|
#include "common/ieee802_11_common.h"
|
2012-01-22 16:20:53 +01:00
|
|
|
#include "common/wpa_ctrl.h"
|
2010-07-18 23:30:25 +02:00
|
|
|
#include "wps/wps_i.h"
|
|
|
|
#include "p2p_i.h"
|
|
|
|
#include "p2p.h"
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_state_timeout(void *eloop_ctx, void *timeout_ctx);
|
|
|
|
static void p2p_device_free(struct p2p_data *p2p, struct p2p_device *dev);
|
|
|
|
static void p2p_process_presence_req(struct p2p_data *p2p, const u8 *da,
|
|
|
|
const u8 *sa, const u8 *data, size_t len,
|
|
|
|
int rx_freq);
|
|
|
|
static void p2p_process_presence_resp(struct p2p_data *p2p, const u8 *da,
|
|
|
|
const u8 *sa, const u8 *data,
|
|
|
|
size_t len);
|
|
|
|
static void p2p_ext_listen_timeout(void *eloop_ctx, void *timeout_ctx);
|
2010-06-24 07:37:27 +02:00
|
|
|
static void p2p_scan_timeout(void *eloop_ctx, void *timeout_ctx);
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
|
2010-06-24 07:37:27 +02:00
|
|
|
/*
|
|
|
|
* p2p_scan recovery timeout
|
|
|
|
*
|
|
|
|
* Many drivers are using 30 second timeout on scan results. Allow a bit larger
|
|
|
|
* timeout for this to avoid hitting P2P timeout unnecessarily.
|
|
|
|
*/
|
|
|
|
#define P2P_SCAN_TIMEOUT 35
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
/**
|
|
|
|
* P2P_PEER_EXPIRATION_AGE - Number of seconds after which inactive peer
|
|
|
|
* entries will be removed
|
|
|
|
*/
|
|
|
|
#define P2P_PEER_EXPIRATION_AGE 300
|
|
|
|
|
|
|
|
#define P2P_PEER_EXPIRATION_INTERVAL (P2P_PEER_EXPIRATION_AGE / 2)
|
|
|
|
|
|
|
|
static void p2p_expire_peers(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev, *n;
|
|
|
|
struct os_time now;
|
2012-01-25 16:00:59 +01:00
|
|
|
size_t i;
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
os_get_time(&now);
|
|
|
|
dl_list_for_each_safe(dev, n, &p2p->devices, struct p2p_device, list) {
|
|
|
|
if (dev->last_seen.sec + P2P_PEER_EXPIRATION_AGE >= now.sec)
|
|
|
|
continue;
|
2012-01-25 16:27:47 +01:00
|
|
|
|
|
|
|
if (p2p->cfg->go_connected &&
|
|
|
|
p2p->cfg->go_connected(p2p->cfg->cb_ctx,
|
|
|
|
dev->info.p2p_device_addr)) {
|
|
|
|
/*
|
|
|
|
* We are connected as a client to a group in which the
|
|
|
|
* peer is the GO, so do not expire the peer entry.
|
|
|
|
*/
|
|
|
|
os_get_time(&dev->last_seen);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-01-25 16:00:59 +01:00
|
|
|
for (i = 0; i < p2p->num_groups; i++) {
|
|
|
|
if (p2p_group_is_client_connected(
|
|
|
|
p2p->groups[i], dev->info.p2p_device_addr))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i < p2p->num_groups) {
|
|
|
|
/*
|
|
|
|
* The peer is connected as a client in a group where
|
|
|
|
* we are the GO, so do not expire the peer entry.
|
|
|
|
*/
|
|
|
|
os_get_time(&dev->last_seen);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Expiring old peer "
|
2011-02-24 20:51:17 +01:00
|
|
|
"entry " MACSTR, MAC2STR(dev->info.p2p_device_addr));
|
2010-07-18 23:30:25 +02:00
|
|
|
dl_list_del(&dev->list);
|
|
|
|
p2p_device_free(p2p, dev);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_expiration_timeout(void *eloop_ctx, void *timeout_ctx)
|
|
|
|
{
|
|
|
|
struct p2p_data *p2p = eloop_ctx;
|
|
|
|
p2p_expire_peers(p2p);
|
|
|
|
eloop_register_timeout(P2P_PEER_EXPIRATION_INTERVAL, 0,
|
|
|
|
p2p_expiration_timeout, p2p, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const char * p2p_state_txt(int state)
|
|
|
|
{
|
|
|
|
switch (state) {
|
|
|
|
case P2P_IDLE:
|
|
|
|
return "IDLE";
|
|
|
|
case P2P_SEARCH:
|
|
|
|
return "SEARCH";
|
|
|
|
case P2P_CONNECT:
|
|
|
|
return "CONNECT";
|
|
|
|
case P2P_CONNECT_LISTEN:
|
|
|
|
return "CONNECT_LISTEN";
|
|
|
|
case P2P_GO_NEG:
|
|
|
|
return "GO_NEG";
|
|
|
|
case P2P_LISTEN_ONLY:
|
|
|
|
return "LISTEN_ONLY";
|
|
|
|
case P2P_WAIT_PEER_CONNECT:
|
|
|
|
return "WAIT_PEER_CONNECT";
|
|
|
|
case P2P_WAIT_PEER_IDLE:
|
|
|
|
return "WAIT_PEER_IDLE";
|
|
|
|
case P2P_SD_DURING_FIND:
|
|
|
|
return "SD_DURING_FIND";
|
|
|
|
case P2P_PROVISIONING:
|
|
|
|
return "PROVISIONING";
|
|
|
|
case P2P_PD_DURING_FIND:
|
|
|
|
return "PD_DURING_FIND";
|
|
|
|
case P2P_INVITE:
|
|
|
|
return "INVITE";
|
|
|
|
case P2P_INVITE_LISTEN:
|
|
|
|
return "INVITE_LISTEN";
|
2011-11-15 20:25:21 +01:00
|
|
|
case P2P_SEARCH_WHEN_READY:
|
|
|
|
return "SEARCH_WHEN_READY";
|
2012-08-23 18:42:53 +02:00
|
|
|
case P2P_CONTINUE_SEARCH_WHEN_READY:
|
|
|
|
return "CONTINUE_SEARCH_WHEN_READY";
|
2010-07-18 23:30:25 +02:00
|
|
|
default:
|
|
|
|
return "?";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-06 20:44:57 +01:00
|
|
|
u16 p2p_get_provisioning_info(struct p2p_data *p2p, const u8 *addr)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev = NULL;
|
|
|
|
|
|
|
|
if (!addr || !p2p)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
dev = p2p_get_device(p2p, addr);
|
|
|
|
if (dev)
|
|
|
|
return dev->wps_prov_info;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-01 21:06:03 +01:00
|
|
|
void p2p_clear_provisioning_info(struct p2p_data *p2p, const u8 *addr)
|
2011-12-06 20:44:57 +01:00
|
|
|
{
|
|
|
|
struct p2p_device *dev = NULL;
|
|
|
|
|
2012-03-01 21:06:03 +01:00
|
|
|
if (!addr || !p2p)
|
2011-12-06 20:44:57 +01:00
|
|
|
return;
|
|
|
|
|
2012-03-01 21:06:03 +01:00
|
|
|
dev = p2p_get_device(p2p, addr);
|
2011-12-06 20:44:57 +01:00
|
|
|
if (dev)
|
|
|
|
dev->wps_prov_info = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
void p2p_set_state(struct p2p_data *p2p, int new_state)
|
|
|
|
{
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: State %s -> %s",
|
|
|
|
p2p_state_txt(p2p->state), p2p_state_txt(new_state));
|
|
|
|
p2p->state = new_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_set_timeout(struct p2p_data *p2p, unsigned int sec, unsigned int usec)
|
|
|
|
{
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Set timeout (state=%s): %u.%06u sec",
|
|
|
|
p2p_state_txt(p2p->state), sec, usec);
|
|
|
|
eloop_cancel_timeout(p2p_state_timeout, p2p, NULL);
|
|
|
|
eloop_register_timeout(sec, usec, p2p_state_timeout, p2p, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_clear_timeout(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Clear timeout (state=%s)",
|
|
|
|
p2p_state_txt(p2p->state));
|
|
|
|
eloop_cancel_timeout(p2p_state_timeout, p2p, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_go_neg_failed(struct p2p_data *p2p, struct p2p_device *peer,
|
|
|
|
int status)
|
|
|
|
{
|
|
|
|
struct p2p_go_neg_results res;
|
|
|
|
p2p_clear_timeout(p2p);
|
|
|
|
p2p_set_state(p2p, P2P_IDLE);
|
2011-11-18 22:34:53 +01:00
|
|
|
if (p2p->go_neg_peer)
|
|
|
|
p2p->go_neg_peer->wps_method = WPS_NOT_READY;
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p->go_neg_peer = NULL;
|
|
|
|
|
|
|
|
os_memset(&res, 0, sizeof(res));
|
|
|
|
res.status = status;
|
|
|
|
if (peer) {
|
2011-02-24 20:51:17 +01:00
|
|
|
os_memcpy(res.peer_device_addr, peer->info.p2p_device_addr,
|
2010-07-18 23:30:25 +02:00
|
|
|
ETH_ALEN);
|
|
|
|
os_memcpy(res.peer_interface_addr, peer->intended_addr,
|
|
|
|
ETH_ALEN);
|
|
|
|
}
|
|
|
|
p2p->cfg->go_neg_completed(p2p->cfg->cb_ctx, &res);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-30 14:12:04 +01:00
|
|
|
static void p2p_listen_in_find(struct p2p_data *p2p, int dev_disc)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
|
|
|
unsigned int r, tu;
|
|
|
|
int freq;
|
|
|
|
struct wpabuf *ies;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Starting short listen state (state=%s)",
|
|
|
|
p2p_state_txt(p2p->state));
|
|
|
|
|
|
|
|
freq = p2p_channel_to_freq(p2p->cfg->country, p2p->cfg->reg_class,
|
|
|
|
p2p->cfg->channel);
|
|
|
|
if (freq < 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Unknown regulatory class/channel");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
os_get_random((u8 *) &r, sizeof(r));
|
|
|
|
tu = (r % ((p2p->max_disc_int - p2p->min_disc_int) + 1) +
|
|
|
|
p2p->min_disc_int) * 100;
|
2012-10-30 14:12:04 +01:00
|
|
|
if (p2p->max_disc_tu >= 0 && tu > (unsigned int) p2p->max_disc_tu)
|
|
|
|
tu = p2p->max_disc_tu;
|
|
|
|
if (!dev_disc && tu < 100)
|
|
|
|
tu = 100; /* Need to wait in non-device discovery use cases */
|
|
|
|
if (p2p->cfg->max_listen && 1024 * tu / 1000 > p2p->cfg->max_listen)
|
|
|
|
tu = p2p->cfg->max_listen * 1000 / 1024;
|
|
|
|
|
|
|
|
if (tu == 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Skip listen state "
|
|
|
|
"since duration was 0 TU");
|
|
|
|
p2p_set_timeout(p2p, 0, 0);
|
|
|
|
return;
|
|
|
|
}
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
p2p->pending_listen_freq = freq;
|
|
|
|
p2p->pending_listen_sec = 0;
|
|
|
|
p2p->pending_listen_usec = 1024 * tu;
|
|
|
|
|
|
|
|
ies = p2p_build_probe_resp_ies(p2p);
|
|
|
|
if (ies == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (p2p->cfg->start_listen(p2p->cfg->cb_ctx, freq, 1024 * tu / 1000,
|
|
|
|
ies) < 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Failed to start listen mode");
|
|
|
|
p2p->pending_listen_freq = 0;
|
|
|
|
}
|
|
|
|
wpabuf_free(ies);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_listen(struct p2p_data *p2p, unsigned int timeout)
|
|
|
|
{
|
|
|
|
int freq;
|
|
|
|
struct wpabuf *ies;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Going to listen(only) state");
|
|
|
|
|
|
|
|
freq = p2p_channel_to_freq(p2p->cfg->country, p2p->cfg->reg_class,
|
|
|
|
p2p->cfg->channel);
|
|
|
|
if (freq < 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Unknown regulatory class/channel");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
p2p->pending_listen_freq = freq;
|
|
|
|
p2p->pending_listen_sec = timeout / 1000;
|
|
|
|
p2p->pending_listen_usec = (timeout % 1000) * 1000;
|
|
|
|
|
|
|
|
if (p2p->p2p_scan_running) {
|
2012-04-16 17:51:33 +02:00
|
|
|
if (p2p->start_after_scan == P2P_AFTER_SCAN_CONNECT) {
|
2011-12-21 12:35:18 +01:00
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: p2p_scan running - connect is already "
|
|
|
|
"pending - skip listen");
|
|
|
|
return 0;
|
|
|
|
}
|
2010-07-18 23:30:25 +02:00
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: p2p_scan running - delay start of listen state");
|
|
|
|
p2p->start_after_scan = P2P_AFTER_SCAN_LISTEN;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ies = p2p_build_probe_resp_ies(p2p);
|
|
|
|
if (ies == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (p2p->cfg->start_listen(p2p->cfg->cb_ctx, freq, timeout, ies) < 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Failed to start listen mode");
|
|
|
|
p2p->pending_listen_freq = 0;
|
|
|
|
wpabuf_free(ies);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
wpabuf_free(ies);
|
|
|
|
|
|
|
|
p2p_set_state(p2p, P2P_LISTEN_ONLY);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_device_clear_reported(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev;
|
|
|
|
dl_list_for_each(dev, &p2p->devices, struct p2p_device, list)
|
|
|
|
dev->flags &= ~P2P_DEV_REPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* p2p_get_device - Fetch a peer entry
|
|
|
|
* @p2p: P2P module context from p2p_init()
|
|
|
|
* @addr: P2P Device Address of the peer
|
|
|
|
* Returns: Pointer to the device entry or %NULL if not found
|
|
|
|
*/
|
|
|
|
struct p2p_device * p2p_get_device(struct p2p_data *p2p, const u8 *addr)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev;
|
|
|
|
dl_list_for_each(dev, &p2p->devices, struct p2p_device, list) {
|
2011-02-24 20:51:17 +01:00
|
|
|
if (os_memcmp(dev->info.p2p_device_addr, addr, ETH_ALEN) == 0)
|
2010-07-18 23:30:25 +02:00
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* p2p_get_device_interface - Fetch a peer entry based on P2P Interface Address
|
|
|
|
* @p2p: P2P module context from p2p_init()
|
|
|
|
* @addr: P2P Interface Address of the peer
|
|
|
|
* Returns: Pointer to the device entry or %NULL if not found
|
|
|
|
*/
|
|
|
|
struct p2p_device * p2p_get_device_interface(struct p2p_data *p2p,
|
|
|
|
const u8 *addr)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev;
|
|
|
|
dl_list_for_each(dev, &p2p->devices, struct p2p_device, list) {
|
|
|
|
if (os_memcmp(dev->interface_addr, addr, ETH_ALEN) == 0)
|
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* p2p_create_device - Create a peer entry
|
|
|
|
* @p2p: P2P module context from p2p_init()
|
|
|
|
* @addr: P2P Device Address of the peer
|
|
|
|
* Returns: Pointer to the device entry or %NULL on failure
|
|
|
|
*
|
|
|
|
* If there is already an entry for the peer, it will be returned instead of
|
|
|
|
* creating a new one.
|
|
|
|
*/
|
|
|
|
static struct p2p_device * p2p_create_device(struct p2p_data *p2p,
|
|
|
|
const u8 *addr)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev, *oldest = NULL;
|
|
|
|
size_t count = 0;
|
|
|
|
|
|
|
|
dev = p2p_get_device(p2p, addr);
|
|
|
|
if (dev)
|
|
|
|
return dev;
|
|
|
|
|
|
|
|
dl_list_for_each(dev, &p2p->devices, struct p2p_device, list) {
|
|
|
|
count++;
|
|
|
|
if (oldest == NULL ||
|
|
|
|
os_time_before(&dev->last_seen, &oldest->last_seen))
|
|
|
|
oldest = dev;
|
|
|
|
}
|
|
|
|
if (count + 1 > p2p->cfg->max_peers && oldest) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Remove oldest peer entry to make room for a new "
|
|
|
|
"peer");
|
|
|
|
dl_list_del(&oldest->list);
|
|
|
|
p2p_device_free(p2p, oldest);
|
|
|
|
}
|
|
|
|
|
|
|
|
dev = os_zalloc(sizeof(*dev));
|
|
|
|
if (dev == NULL)
|
|
|
|
return NULL;
|
|
|
|
dl_list_add(&p2p->devices, &dev->list);
|
2011-02-24 20:51:17 +01:00
|
|
|
os_memcpy(dev->info.p2p_device_addr, addr, ETH_ALEN);
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_copy_client_info(struct p2p_device *dev,
|
|
|
|
struct p2p_client_info *cli)
|
|
|
|
{
|
2011-02-24 20:51:17 +01:00
|
|
|
os_memcpy(dev->info.device_name, cli->dev_name, cli->dev_name_len);
|
|
|
|
dev->info.device_name[cli->dev_name_len] = '\0';
|
|
|
|
dev->info.dev_capab = cli->dev_capab;
|
|
|
|
dev->info.config_methods = cli->config_methods;
|
|
|
|
os_memcpy(dev->info.pri_dev_type, cli->pri_dev_type, 8);
|
2011-03-17 10:45:46 +01:00
|
|
|
dev->info.wps_sec_dev_type_list_len = 8 * cli->num_sec_dev_types;
|
|
|
|
os_memcpy(dev->info.wps_sec_dev_type_list, cli->sec_dev_types,
|
|
|
|
dev->info.wps_sec_dev_type_list_len);
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int p2p_add_group_clients(struct p2p_data *p2p, const u8 *go_dev_addr,
|
|
|
|
const u8 *go_interface_addr, int freq,
|
|
|
|
const u8 *gi, size_t gi_len)
|
|
|
|
{
|
|
|
|
struct p2p_group_info info;
|
|
|
|
size_t c;
|
|
|
|
struct p2p_device *dev;
|
|
|
|
|
|
|
|
if (gi == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (p2p_group_info_parse(gi, gi_len, &info) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Clear old data for this group; if the devices are still in the
|
|
|
|
* group, the information will be restored in the loop following this.
|
|
|
|
*/
|
|
|
|
dl_list_for_each(dev, &p2p->devices, struct p2p_device, list) {
|
2011-11-18 20:58:18 +01:00
|
|
|
if (os_memcmp(dev->member_in_go_iface, go_interface_addr,
|
2010-07-18 23:30:25 +02:00
|
|
|
ETH_ALEN) == 0) {
|
|
|
|
os_memset(dev->member_in_go_iface, 0, ETH_ALEN);
|
|
|
|
os_memset(dev->member_in_go_dev, 0, ETH_ALEN);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (c = 0; c < info.num_clients; c++) {
|
|
|
|
struct p2p_client_info *cli = &info.client[c];
|
2011-12-18 15:38:48 +01:00
|
|
|
if (os_memcmp(cli->p2p_device_addr, p2p->cfg->dev_addr,
|
|
|
|
ETH_ALEN) == 0)
|
|
|
|
continue; /* ignore our own entry */
|
2010-07-18 23:30:25 +02:00
|
|
|
dev = p2p_get_device(p2p, cli->p2p_device_addr);
|
|
|
|
if (dev) {
|
|
|
|
if (dev->flags & (P2P_DEV_GROUP_CLIENT_ONLY |
|
2012-06-16 19:17:39 +02:00
|
|
|
P2P_DEV_PROBE_REQ_ONLY)) {
|
|
|
|
/*
|
|
|
|
* Update information since we have not
|
|
|
|
* received this directly from the client.
|
|
|
|
*/
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p_copy_client_info(dev, cli);
|
2012-06-16 19:17:39 +02:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Need to update P2P Client Discoverability
|
|
|
|
* flag since it is valid only in P2P Group
|
|
|
|
* Info attribute.
|
|
|
|
*/
|
|
|
|
dev->info.dev_capab &=
|
|
|
|
~P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY;
|
|
|
|
dev->info.dev_capab |=
|
|
|
|
cli->dev_capab &
|
|
|
|
P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY;
|
|
|
|
}
|
2010-07-18 23:30:25 +02:00
|
|
|
if (dev->flags & P2P_DEV_PROBE_REQ_ONLY) {
|
|
|
|
dev->flags &= ~P2P_DEV_PROBE_REQ_ONLY;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dev = p2p_create_device(p2p, cli->p2p_device_addr);
|
|
|
|
if (dev == NULL)
|
|
|
|
continue;
|
|
|
|
dev->flags |= P2P_DEV_GROUP_CLIENT_ONLY;
|
|
|
|
p2p_copy_client_info(dev, cli);
|
|
|
|
dev->oper_freq = freq;
|
2011-02-24 20:51:17 +01:00
|
|
|
p2p->cfg->dev_found(p2p->cfg->cb_ctx,
|
|
|
|
dev->info.p2p_device_addr,
|
2011-02-24 20:59:58 +01:00
|
|
|
&dev->info, 1);
|
|
|
|
dev->flags |= P2P_DEV_REPORTED | P2P_DEV_REPORTED_ONCE;
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
os_memcpy(dev->interface_addr, cli->p2p_interface_addr,
|
|
|
|
ETH_ALEN);
|
|
|
|
os_get_time(&dev->last_seen);
|
|
|
|
os_memcpy(dev->member_in_go_dev, go_dev_addr, ETH_ALEN);
|
|
|
|
os_memcpy(dev->member_in_go_iface, go_interface_addr,
|
|
|
|
ETH_ALEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-28 14:27:10 +02:00
|
|
|
static void p2p_copy_wps_info(struct p2p_device *dev, int probe_req,
|
|
|
|
const struct p2p_message *msg)
|
|
|
|
{
|
|
|
|
os_memcpy(dev->info.device_name, msg->device_name,
|
|
|
|
sizeof(dev->info.device_name));
|
|
|
|
|
|
|
|
if (msg->manufacturer &&
|
|
|
|
msg->manufacturer_len < sizeof(dev->info.manufacturer)) {
|
|
|
|
os_memset(dev->info.manufacturer, 0,
|
|
|
|
sizeof(dev->info.manufacturer));
|
|
|
|
os_memcpy(dev->info.manufacturer, msg->manufacturer,
|
|
|
|
msg->manufacturer_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg->model_name &&
|
|
|
|
msg->model_name_len < sizeof(dev->info.model_name)) {
|
|
|
|
os_memset(dev->info.model_name, 0,
|
|
|
|
sizeof(dev->info.model_name));
|
|
|
|
os_memcpy(dev->info.model_name, msg->model_name,
|
|
|
|
msg->model_name_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg->model_number &&
|
|
|
|
msg->model_number_len < sizeof(dev->info.model_number)) {
|
|
|
|
os_memset(dev->info.model_number, 0,
|
|
|
|
sizeof(dev->info.model_number));
|
|
|
|
os_memcpy(dev->info.model_number, msg->model_number,
|
|
|
|
msg->model_number_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg->serial_number &&
|
|
|
|
msg->serial_number_len < sizeof(dev->info.serial_number)) {
|
|
|
|
os_memset(dev->info.serial_number, 0,
|
|
|
|
sizeof(dev->info.serial_number));
|
|
|
|
os_memcpy(dev->info.serial_number, msg->serial_number,
|
|
|
|
msg->serial_number_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg->pri_dev_type)
|
|
|
|
os_memcpy(dev->info.pri_dev_type, msg->pri_dev_type,
|
|
|
|
sizeof(dev->info.pri_dev_type));
|
|
|
|
else if (msg->wps_pri_dev_type)
|
|
|
|
os_memcpy(dev->info.pri_dev_type, msg->wps_pri_dev_type,
|
|
|
|
sizeof(dev->info.pri_dev_type));
|
|
|
|
|
|
|
|
if (msg->wps_sec_dev_type_list) {
|
|
|
|
os_memcpy(dev->info.wps_sec_dev_type_list,
|
|
|
|
msg->wps_sec_dev_type_list,
|
|
|
|
msg->wps_sec_dev_type_list_len);
|
|
|
|
dev->info.wps_sec_dev_type_list_len =
|
|
|
|
msg->wps_sec_dev_type_list_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg->capability) {
|
2012-06-16 19:17:39 +02:00
|
|
|
/*
|
|
|
|
* P2P Client Discoverability bit is reserved in all frames
|
|
|
|
* that use this function, so do not change its value here.
|
|
|
|
*/
|
|
|
|
dev->info.dev_capab &= P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY;
|
|
|
|
dev->info.dev_capab |= msg->capability[0] &
|
|
|
|
~P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY;
|
2011-03-28 14:27:10 +02:00
|
|
|
dev->info.group_capab = msg->capability[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg->ext_listen_timing) {
|
|
|
|
dev->ext_listen_period = WPA_GET_LE16(msg->ext_listen_timing);
|
|
|
|
dev->ext_listen_interval =
|
|
|
|
WPA_GET_LE16(msg->ext_listen_timing + 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!probe_req) {
|
|
|
|
dev->info.config_methods = msg->config_methods ?
|
|
|
|
msg->config_methods : msg->wps_config_methods;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
/**
|
2012-04-26 15:11:17 +02:00
|
|
|
* p2p_add_device - Add peer entries based on scan results or P2P frames
|
2010-07-18 23:30:25 +02:00
|
|
|
* @p2p: P2P module context from p2p_init()
|
|
|
|
* @addr: Source address of Beacon or Probe Response frame (may be either
|
|
|
|
* P2P Device Address or P2P Interface Address)
|
|
|
|
* @level: Signal level (signal strength of the received frame from the peer)
|
|
|
|
* @freq: Frequency on which the Beacon or Probe Response frame was received
|
2012-12-25 10:22:42 +01:00
|
|
|
* @age_ms: Age of the information in milliseconds
|
2010-07-18 23:30:25 +02:00
|
|
|
* @ies: IEs from the Beacon or Probe Response frame
|
|
|
|
* @ies_len: Length of ies buffer in octets
|
2012-04-26 15:11:17 +02:00
|
|
|
* @scan_res: Whether this was based on scan results
|
2010-07-18 23:30:25 +02:00
|
|
|
* Returns: 0 on success, -1 on failure
|
|
|
|
*
|
|
|
|
* If the scan result is for a GO, the clients in the group will also be added
|
2010-09-06 15:51:46 +02:00
|
|
|
* to the peer table. This function can also be used with some other frames
|
|
|
|
* like Provision Discovery Request that contains P2P Capability and P2P Device
|
|
|
|
* Info attributes.
|
2010-07-18 23:30:25 +02:00
|
|
|
*/
|
2012-12-25 10:22:42 +01:00
|
|
|
int p2p_add_device(struct p2p_data *p2p, const u8 *addr, int freq,
|
|
|
|
unsigned int age_ms, int level, const u8 *ies,
|
|
|
|
size_t ies_len, int scan_res)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
|
|
|
struct p2p_device *dev;
|
|
|
|
struct p2p_message msg;
|
|
|
|
const u8 *p2p_dev_addr;
|
2011-03-19 11:16:20 +01:00
|
|
|
int i;
|
2012-12-25 10:22:42 +01:00
|
|
|
struct os_time time_now, time_tmp_age, entry_ts;
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
os_memset(&msg, 0, sizeof(msg));
|
|
|
|
if (p2p_parse_ies(ies, ies_len, &msg)) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Failed to parse P2P IE for a device entry");
|
|
|
|
p2p_parse_free(&msg);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg.p2p_device_addr)
|
|
|
|
p2p_dev_addr = msg.p2p_device_addr;
|
|
|
|
else if (msg.device_id)
|
|
|
|
p2p_dev_addr = msg.device_id;
|
|
|
|
else {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Ignore scan data without P2P Device Info or "
|
|
|
|
"P2P Device Id");
|
|
|
|
p2p_parse_free(&msg);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-06-29 07:11:39 +02:00
|
|
|
if (!is_zero_ether_addr(p2p->peer_filter) &&
|
|
|
|
os_memcmp(p2p_dev_addr, p2p->peer_filter, ETH_ALEN) != 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Do not add peer "
|
|
|
|
"filter for " MACSTR " due to peer filter",
|
|
|
|
MAC2STR(p2p_dev_addr));
|
2013-01-12 09:30:07 +01:00
|
|
|
p2p_parse_free(&msg);
|
2010-06-29 07:11:39 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
dev = p2p_create_device(p2p, p2p_dev_addr);
|
|
|
|
if (dev == NULL) {
|
|
|
|
p2p_parse_free(&msg);
|
|
|
|
return -1;
|
|
|
|
}
|
2012-12-25 10:22:42 +01:00
|
|
|
|
|
|
|
os_get_time(&time_now);
|
|
|
|
time_tmp_age.sec = age_ms / 1000;
|
|
|
|
time_tmp_age.usec = (age_ms % 1000) * 1000;
|
|
|
|
os_time_sub(&time_now, &time_tmp_age, &entry_ts);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update the device entry only if the new peer
|
|
|
|
* entry is newer than the one previously stored.
|
|
|
|
*/
|
|
|
|
if (dev->last_seen.usec > 0 &&
|
2013-01-12 09:30:07 +01:00
|
|
|
os_time_before(&entry_ts, &dev->last_seen)) {
|
|
|
|
p2p_parse_free(&msg);
|
2012-12-25 10:22:42 +01:00
|
|
|
return -1;
|
2013-01-12 09:30:07 +01:00
|
|
|
}
|
2012-12-25 10:22:42 +01:00
|
|
|
|
|
|
|
os_memcpy(&dev->last_seen, &entry_ts, sizeof(struct os_time));
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
dev->flags &= ~(P2P_DEV_PROBE_REQ_ONLY | P2P_DEV_GROUP_CLIENT_ONLY);
|
|
|
|
|
|
|
|
if (os_memcmp(addr, p2p_dev_addr, ETH_ALEN) != 0)
|
|
|
|
os_memcpy(dev->interface_addr, addr, ETH_ALEN);
|
|
|
|
if (msg.ssid &&
|
|
|
|
(msg.ssid[1] != P2P_WILDCARD_SSID_LEN ||
|
|
|
|
os_memcmp(msg.ssid + 2, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN)
|
|
|
|
!= 0)) {
|
|
|
|
os_memcpy(dev->oper_ssid, msg.ssid + 2, msg.ssid[1]);
|
|
|
|
dev->oper_ssid_len = msg.ssid[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (freq >= 2412 && freq <= 2484 && msg.ds_params &&
|
|
|
|
*msg.ds_params >= 1 && *msg.ds_params <= 14) {
|
|
|
|
int ds_freq;
|
|
|
|
if (*msg.ds_params == 14)
|
|
|
|
ds_freq = 2484;
|
|
|
|
else
|
|
|
|
ds_freq = 2407 + *msg.ds_params * 5;
|
|
|
|
if (freq != ds_freq) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Update Listen frequency based on DS "
|
|
|
|
"Parameter Set IE: %d -> %d MHz",
|
|
|
|
freq, ds_freq);
|
|
|
|
freq = ds_freq;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-26 15:11:17 +02:00
|
|
|
if (dev->listen_freq && dev->listen_freq != freq && scan_res) {
|
2010-07-18 23:30:25 +02:00
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Update Listen frequency based on scan "
|
|
|
|
"results (" MACSTR " %d -> %d MHz (DS param %d)",
|
2011-02-24 20:51:17 +01:00
|
|
|
MAC2STR(dev->info.p2p_device_addr), dev->listen_freq,
|
|
|
|
freq, msg.ds_params ? *msg.ds_params : -1);
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
2012-04-26 15:11:17 +02:00
|
|
|
if (scan_res) {
|
|
|
|
dev->listen_freq = freq;
|
|
|
|
if (msg.group_info)
|
|
|
|
dev->oper_freq = freq;
|
|
|
|
}
|
2011-06-23 20:29:10 +02:00
|
|
|
dev->info.level = level;
|
2010-07-18 23:30:25 +02:00
|
|
|
|
2011-03-28 14:27:10 +02:00
|
|
|
p2p_copy_wps_info(dev, 0, &msg);
|
2011-03-17 10:45:46 +01:00
|
|
|
|
2011-03-19 11:20:10 +01:00
|
|
|
for (i = 0; i < P2P_MAX_WPS_VENDOR_EXT; i++) {
|
2011-03-19 11:16:20 +01:00
|
|
|
wpabuf_free(dev->info.wps_vendor_ext[i]);
|
|
|
|
dev->info.wps_vendor_ext[i] = NULL;
|
|
|
|
}
|
|
|
|
|
2011-03-19 11:20:10 +01:00
|
|
|
for (i = 0; i < P2P_MAX_WPS_VENDOR_EXT; i++) {
|
2011-03-19 11:16:20 +01:00
|
|
|
if (msg.wps_vendor_ext[i] == NULL)
|
|
|
|
break;
|
|
|
|
dev->info.wps_vendor_ext[i] = wpabuf_alloc_copy(
|
|
|
|
msg.wps_vendor_ext[i], msg.wps_vendor_ext_len[i]);
|
|
|
|
if (dev->info.wps_vendor_ext[i] == NULL)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-03-02 16:26:01 +01:00
|
|
|
if (msg.wfd_subelems) {
|
|
|
|
wpabuf_free(dev->info.wfd_subelems);
|
|
|
|
dev->info.wfd_subelems = wpabuf_dup(msg.wfd_subelems);
|
|
|
|
}
|
|
|
|
|
2012-04-26 15:11:17 +02:00
|
|
|
if (scan_res) {
|
|
|
|
p2p_add_group_clients(p2p, p2p_dev_addr, addr, freq,
|
|
|
|
msg.group_info, msg.group_info_len);
|
|
|
|
}
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
p2p_parse_free(&msg);
|
|
|
|
|
|
|
|
if (p2p_pending_sd_req(p2p, dev))
|
|
|
|
dev->flags |= P2P_DEV_SD_SCHEDULE;
|
|
|
|
|
|
|
|
if (dev->flags & P2P_DEV_REPORTED)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Peer found with Listen frequency %d MHz", freq);
|
|
|
|
if (dev->flags & P2P_DEV_USER_REJECTED) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Do not report rejected device");
|
|
|
|
return 0;
|
|
|
|
}
|
2011-02-24 20:59:58 +01:00
|
|
|
|
|
|
|
p2p->cfg->dev_found(p2p->cfg->cb_ctx, addr, &dev->info,
|
|
|
|
!(dev->flags & P2P_DEV_REPORTED_ONCE));
|
|
|
|
dev->flags |= P2P_DEV_REPORTED | P2P_DEV_REPORTED_ONCE;
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_device_free(struct p2p_data *p2p, struct p2p_device *dev)
|
|
|
|
{
|
2011-03-19 11:16:20 +01:00
|
|
|
int i;
|
|
|
|
|
2011-11-18 22:13:03 +01:00
|
|
|
if (p2p->go_neg_peer == dev) {
|
|
|
|
/*
|
|
|
|
* If GO Negotiation is in progress, report that it has failed.
|
|
|
|
*/
|
|
|
|
p2p_go_neg_failed(p2p, dev, -1);
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p->go_neg_peer = NULL;
|
2011-11-18 22:13:03 +01:00
|
|
|
}
|
2010-07-18 23:30:25 +02:00
|
|
|
if (p2p->invite_peer == dev)
|
|
|
|
p2p->invite_peer = NULL;
|
|
|
|
if (p2p->sd_peer == dev)
|
|
|
|
p2p->sd_peer = NULL;
|
|
|
|
if (p2p->pending_client_disc_go == dev)
|
|
|
|
p2p->pending_client_disc_go = NULL;
|
|
|
|
|
2011-07-04 19:30:16 +02:00
|
|
|
/* dev_lost() device, but only if it was previously dev_found() */
|
|
|
|
if (dev->flags & P2P_DEV_REPORTED_ONCE)
|
|
|
|
p2p->cfg->dev_lost(p2p->cfg->cb_ctx,
|
|
|
|
dev->info.p2p_device_addr);
|
2011-02-24 21:22:16 +01:00
|
|
|
|
2011-03-19 11:20:10 +01:00
|
|
|
for (i = 0; i < P2P_MAX_WPS_VENDOR_EXT; i++) {
|
2011-03-19 11:16:20 +01:00
|
|
|
wpabuf_free(dev->info.wps_vendor_ext[i]);
|
|
|
|
dev->info.wps_vendor_ext[i] = NULL;
|
|
|
|
}
|
|
|
|
|
2012-03-02 16:26:01 +01:00
|
|
|
wpabuf_free(dev->info.wfd_subelems);
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
os_free(dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int p2p_get_next_prog_freq(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
struct p2p_channels *c;
|
|
|
|
struct p2p_reg_class *cla;
|
|
|
|
size_t cl, ch;
|
|
|
|
int found = 0;
|
|
|
|
u8 reg_class;
|
|
|
|
u8 channel;
|
|
|
|
int freq;
|
|
|
|
|
|
|
|
c = &p2p->cfg->channels;
|
|
|
|
for (cl = 0; cl < c->reg_classes; cl++) {
|
|
|
|
cla = &c->reg_class[cl];
|
|
|
|
if (cla->reg_class != p2p->last_prog_scan_class)
|
|
|
|
continue;
|
|
|
|
for (ch = 0; ch < cla->channels; ch++) {
|
|
|
|
if (cla->channel[ch] == p2p->last_prog_scan_chan) {
|
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!found) {
|
|
|
|
/* Start from beginning */
|
|
|
|
reg_class = c->reg_class[0].reg_class;
|
|
|
|
channel = c->reg_class[0].channel[0];
|
|
|
|
} else {
|
|
|
|
/* Pick the next channel */
|
|
|
|
ch++;
|
|
|
|
if (ch == cla->channels) {
|
|
|
|
cl++;
|
|
|
|
if (cl == c->reg_classes)
|
|
|
|
cl = 0;
|
|
|
|
ch = 0;
|
|
|
|
}
|
|
|
|
reg_class = c->reg_class[cl].reg_class;
|
|
|
|
channel = c->reg_class[cl].channel[ch];
|
|
|
|
}
|
|
|
|
|
|
|
|
freq = p2p_channel_to_freq(p2p->cfg->country, reg_class, channel);
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Next progressive search "
|
|
|
|
"channel: reg_class %u channel %u -> %d MHz",
|
|
|
|
reg_class, channel, freq);
|
|
|
|
p2p->last_prog_scan_class = reg_class;
|
|
|
|
p2p->last_prog_scan_chan = channel;
|
|
|
|
|
|
|
|
if (freq == 2412 || freq == 2437 || freq == 2462)
|
|
|
|
return 0; /* No need to add social channels */
|
|
|
|
return freq;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_search(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
int freq = 0;
|
|
|
|
enum p2p_scan_type type;
|
2012-02-27 22:14:35 +01:00
|
|
|
u16 pw_id = DEV_PW_DEFAULT;
|
2012-08-23 18:42:53 +02:00
|
|
|
int res;
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
if (p2p->drv_in_listen) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Driver is still "
|
|
|
|
"in Listen state - wait for it to end before "
|
|
|
|
"continuing");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
p2p->cfg->stop_listen(p2p->cfg->cb_ctx);
|
|
|
|
|
2012-06-30 19:18:07 +02:00
|
|
|
if (p2p->find_type == P2P_FIND_PROGRESSIVE &&
|
|
|
|
(freq = p2p_get_next_prog_freq(p2p)) > 0) {
|
2010-07-18 23:30:25 +02:00
|
|
|
type = P2P_SCAN_SOCIAL_PLUS_ONE;
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Starting search "
|
|
|
|
"(+ freq %u)", freq);
|
|
|
|
} else {
|
|
|
|
type = P2P_SCAN_SOCIAL;
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Starting search");
|
|
|
|
}
|
|
|
|
|
2012-08-23 18:42:53 +02:00
|
|
|
res = p2p->cfg->p2p_scan(p2p->cfg->cb_ctx, type, freq,
|
|
|
|
p2p->num_req_dev_types, p2p->req_dev_types,
|
|
|
|
p2p->find_dev_id, pw_id);
|
|
|
|
if (res < 0) {
|
2010-07-18 23:30:25 +02:00
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Scan request failed");
|
|
|
|
p2p_continue_find(p2p);
|
2012-08-23 18:42:53 +02:00
|
|
|
} else if (res == 1) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Could not start "
|
|
|
|
"p2p_scan at this point - will try again after "
|
|
|
|
"previous scan completes");
|
|
|
|
p2p_set_state(p2p, P2P_CONTINUE_SEARCH_WHEN_READY);
|
2010-06-24 07:37:27 +02:00
|
|
|
} else {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Running p2p_scan");
|
|
|
|
p2p->p2p_scan_running = 1;
|
|
|
|
eloop_cancel_timeout(p2p_scan_timeout, p2p, NULL);
|
|
|
|
eloop_register_timeout(P2P_SCAN_TIMEOUT, 0, p2p_scan_timeout,
|
|
|
|
p2p, NULL);
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_find_timeout(void *eloop_ctx, void *timeout_ctx)
|
|
|
|
{
|
|
|
|
struct p2p_data *p2p = eloop_ctx;
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Find timeout -> stop");
|
|
|
|
p2p_stop_find(p2p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int p2p_run_after_scan(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev;
|
|
|
|
enum p2p_after_scan op;
|
|
|
|
|
2010-10-20 18:41:20 +02:00
|
|
|
if (p2p->after_scan_tx) {
|
|
|
|
/* TODO: schedule p2p_run_after_scan to be called from TX
|
|
|
|
* status callback(?) */
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Send pending "
|
|
|
|
"Action frame at p2p_scan completion");
|
2011-10-23 11:42:55 +02:00
|
|
|
p2p->cfg->send_action(p2p->cfg->cb_ctx,
|
|
|
|
p2p->after_scan_tx->freq,
|
|
|
|
p2p->after_scan_tx->dst,
|
|
|
|
p2p->after_scan_tx->src,
|
|
|
|
p2p->after_scan_tx->bssid,
|
|
|
|
(u8 *) (p2p->after_scan_tx + 1),
|
|
|
|
p2p->after_scan_tx->len,
|
|
|
|
p2p->after_scan_tx->wait_time);
|
2010-10-20 18:41:20 +02:00
|
|
|
os_free(p2p->after_scan_tx);
|
|
|
|
p2p->after_scan_tx = NULL;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
op = p2p->start_after_scan;
|
|
|
|
p2p->start_after_scan = P2P_AFTER_SCAN_NOTHING;
|
|
|
|
switch (op) {
|
|
|
|
case P2P_AFTER_SCAN_NOTHING:
|
|
|
|
break;
|
|
|
|
case P2P_AFTER_SCAN_LISTEN:
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Start previously "
|
|
|
|
"requested Listen state");
|
|
|
|
p2p_listen(p2p, p2p->pending_listen_sec * 1000 +
|
|
|
|
p2p->pending_listen_usec / 1000);
|
|
|
|
return 1;
|
|
|
|
case P2P_AFTER_SCAN_CONNECT:
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Start previously "
|
|
|
|
"requested connect with " MACSTR,
|
|
|
|
MAC2STR(p2p->after_scan_peer));
|
|
|
|
dev = p2p_get_device(p2p, p2p->after_scan_peer);
|
|
|
|
if (dev == NULL) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Peer not "
|
|
|
|
"known anymore");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
p2p_connect_send(p2p, dev);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_scan_timeout(void *eloop_ctx, void *timeout_ctx)
|
|
|
|
{
|
|
|
|
struct p2p_data *p2p = eloop_ctx;
|
|
|
|
int running;
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: p2p_scan timeout "
|
|
|
|
"(running=%d)", p2p->p2p_scan_running);
|
|
|
|
running = p2p->p2p_scan_running;
|
|
|
|
/* Make sure we recover from missed scan results callback */
|
|
|
|
p2p->p2p_scan_running = 0;
|
|
|
|
|
|
|
|
if (running)
|
|
|
|
p2p_run_after_scan(p2p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-19 11:57:46 +01:00
|
|
|
static void p2p_free_req_dev_types(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
p2p->num_req_dev_types = 0;
|
|
|
|
os_free(p2p->req_dev_types);
|
|
|
|
p2p->req_dev_types = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
int p2p_find(struct p2p_data *p2p, unsigned int timeout,
|
2011-03-19 11:57:46 +01:00
|
|
|
enum p2p_discovery_type type,
|
2012-01-08 18:25:29 +01:00
|
|
|
unsigned int num_req_dev_types, const u8 *req_dev_types,
|
2012-08-23 17:20:58 +02:00
|
|
|
const u8 *dev_id, unsigned int search_delay)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
|
|
|
int res;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Starting find (type=%d)",
|
|
|
|
type);
|
|
|
|
if (p2p->p2p_scan_running) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: p2p_scan is "
|
|
|
|
"already running");
|
|
|
|
}
|
2011-03-19 11:57:46 +01:00
|
|
|
|
|
|
|
p2p_free_req_dev_types(p2p);
|
|
|
|
if (req_dev_types && num_req_dev_types) {
|
|
|
|
p2p->req_dev_types = os_malloc(num_req_dev_types *
|
|
|
|
WPS_DEV_TYPE_LEN);
|
|
|
|
if (p2p->req_dev_types == NULL)
|
|
|
|
return -1;
|
|
|
|
os_memcpy(p2p->req_dev_types, req_dev_types,
|
|
|
|
num_req_dev_types * WPS_DEV_TYPE_LEN);
|
|
|
|
p2p->num_req_dev_types = num_req_dev_types;
|
|
|
|
}
|
|
|
|
|
2012-01-08 18:25:29 +01:00
|
|
|
if (dev_id) {
|
|
|
|
os_memcpy(p2p->find_dev_id_buf, dev_id, ETH_ALEN);
|
|
|
|
p2p->find_dev_id = p2p->find_dev_id_buf;
|
|
|
|
} else
|
|
|
|
p2p->find_dev_id = NULL;
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p->start_after_scan = P2P_AFTER_SCAN_NOTHING;
|
|
|
|
p2p_clear_timeout(p2p);
|
|
|
|
p2p->cfg->stop_listen(p2p->cfg->cb_ctx);
|
|
|
|
p2p->find_type = type;
|
|
|
|
p2p_device_clear_reported(p2p);
|
|
|
|
p2p_set_state(p2p, P2P_SEARCH);
|
2012-08-23 17:20:58 +02:00
|
|
|
p2p->search_delay = search_delay;
|
|
|
|
p2p->in_search_delay = 0;
|
2010-07-18 23:30:25 +02:00
|
|
|
eloop_cancel_timeout(p2p_find_timeout, p2p, NULL);
|
2011-11-15 20:25:21 +01:00
|
|
|
p2p->last_p2p_find_timeout = timeout;
|
2010-07-18 23:30:25 +02:00
|
|
|
if (timeout)
|
|
|
|
eloop_register_timeout(timeout, 0, p2p_find_timeout,
|
|
|
|
p2p, NULL);
|
|
|
|
switch (type) {
|
|
|
|
case P2P_FIND_START_WITH_FULL:
|
|
|
|
case P2P_FIND_PROGRESSIVE:
|
2011-03-19 11:57:46 +01:00
|
|
|
res = p2p->cfg->p2p_scan(p2p->cfg->cb_ctx, P2P_SCAN_FULL, 0,
|
|
|
|
p2p->num_req_dev_types,
|
2012-02-27 22:14:35 +01:00
|
|
|
p2p->req_dev_types, dev_id,
|
|
|
|
DEV_PW_DEFAULT);
|
2010-07-18 23:30:25 +02:00
|
|
|
break;
|
|
|
|
case P2P_FIND_ONLY_SOCIAL:
|
2011-03-19 11:57:46 +01:00
|
|
|
res = p2p->cfg->p2p_scan(p2p->cfg->cb_ctx, P2P_SCAN_SOCIAL, 0,
|
|
|
|
p2p->num_req_dev_types,
|
2012-02-27 22:14:35 +01:00
|
|
|
p2p->req_dev_types, dev_id,
|
|
|
|
DEV_PW_DEFAULT);
|
2010-07-18 23:30:25 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res == 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Running p2p_scan");
|
|
|
|
p2p->p2p_scan_running = 1;
|
|
|
|
eloop_cancel_timeout(p2p_scan_timeout, p2p, NULL);
|
|
|
|
eloop_register_timeout(P2P_SCAN_TIMEOUT, 0, p2p_scan_timeout,
|
|
|
|
p2p, NULL);
|
2011-11-15 20:25:21 +01:00
|
|
|
} else if (res == 1) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Could not start "
|
|
|
|
"p2p_scan at this point - will try again after "
|
|
|
|
"previous scan completes");
|
|
|
|
res = 0;
|
|
|
|
p2p_set_state(p2p, P2P_SEARCH_WHEN_READY);
|
|
|
|
eloop_cancel_timeout(p2p_find_timeout, p2p, NULL);
|
2010-07-18 23:30:25 +02:00
|
|
|
} else {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Failed to start "
|
|
|
|
"p2p_scan");
|
2011-09-29 15:52:23 +02:00
|
|
|
p2p_set_state(p2p, P2P_IDLE);
|
|
|
|
eloop_cancel_timeout(p2p_find_timeout, p2p, NULL);
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-15 20:25:21 +01:00
|
|
|
int p2p_other_scan_completed(struct p2p_data *p2p)
|
|
|
|
{
|
2012-08-23 18:42:53 +02:00
|
|
|
if (p2p->state == P2P_CONTINUE_SEARCH_WHEN_READY) {
|
|
|
|
p2p_set_state(p2p, P2P_SEARCH);
|
|
|
|
p2p_search(p2p);
|
|
|
|
return 1;
|
|
|
|
}
|
2011-11-15 20:25:21 +01:00
|
|
|
if (p2p->state != P2P_SEARCH_WHEN_READY)
|
|
|
|
return 0;
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Starting pending P2P find "
|
|
|
|
"now that previous scan was completed");
|
|
|
|
if (p2p_find(p2p, p2p->last_p2p_find_timeout, p2p->find_type,
|
2012-01-08 18:25:29 +01:00
|
|
|
p2p->num_req_dev_types, p2p->req_dev_types,
|
2012-08-23 17:20:58 +02:00
|
|
|
p2p->find_dev_id, p2p->search_delay) < 0)
|
2011-11-15 20:25:21 +01:00
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-20 18:37:47 +02:00
|
|
|
void p2p_stop_find_for_freq(struct p2p_data *p2p, int freq)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Stopping find");
|
|
|
|
eloop_cancel_timeout(p2p_find_timeout, p2p, NULL);
|
|
|
|
p2p_clear_timeout(p2p);
|
2012-01-22 16:20:53 +01:00
|
|
|
if (p2p->state == P2P_SEARCH)
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_INFO, P2P_EVENT_FIND_STOPPED);
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p_set_state(p2p, P2P_IDLE);
|
2011-03-19 11:57:46 +01:00
|
|
|
p2p_free_req_dev_types(p2p);
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p->start_after_scan = P2P_AFTER_SCAN_NOTHING;
|
|
|
|
p2p->go_neg_peer = NULL;
|
|
|
|
p2p->sd_peer = NULL;
|
|
|
|
p2p->invite_peer = NULL;
|
2012-02-27 16:23:41 +01:00
|
|
|
p2p_stop_listen_for_freq(p2p, freq);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_stop_listen_for_freq(struct p2p_data *p2p, int freq)
|
|
|
|
{
|
2010-10-20 18:37:47 +02:00
|
|
|
if (freq > 0 && p2p->drv_in_listen == freq && p2p->in_listen) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Skip stop_listen "
|
|
|
|
"since we are on correct channel for response");
|
|
|
|
return;
|
|
|
|
}
|
2012-02-27 16:23:41 +01:00
|
|
|
if (p2p->in_listen) {
|
|
|
|
p2p->in_listen = 0;
|
|
|
|
p2p_clear_timeout(p2p);
|
|
|
|
}
|
2011-09-22 21:43:03 +02:00
|
|
|
if (p2p->drv_in_listen) {
|
|
|
|
/*
|
|
|
|
* The driver may not deliver callback to p2p_listen_end()
|
|
|
|
* when the operation gets canceled, so clear the internal
|
|
|
|
* variable that is tracking driver state.
|
|
|
|
*/
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Clear "
|
|
|
|
"drv_in_listen (%d)", p2p->drv_in_listen);
|
|
|
|
p2p->drv_in_listen = 0;
|
|
|
|
}
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p->cfg->stop_listen(p2p->cfg->cb_ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-20 18:37:47 +02:00
|
|
|
void p2p_stop_find(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
p2p_stop_find_for_freq(p2p, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-27 07:37:13 +01:00
|
|
|
static int p2p_prepare_channel_pref(struct p2p_data *p2p,
|
|
|
|
unsigned int force_freq,
|
|
|
|
unsigned int pref_freq)
|
|
|
|
{
|
|
|
|
u8 op_class, op_channel;
|
|
|
|
unsigned int freq = force_freq ? force_freq : pref_freq;
|
|
|
|
|
|
|
|
if (p2p_freq_to_channel(p2p->cfg->country, freq,
|
|
|
|
&op_class, &op_channel) < 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Unsupported frequency %u MHz", freq);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!p2p_channels_includes(&p2p->cfg->channels, op_class, op_channel)) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Frequency %u MHz (oper_class %u channel %u) not "
|
|
|
|
"allowed for P2P", freq, op_class, op_channel);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
p2p->op_reg_class = op_class;
|
|
|
|
p2p->op_channel = op_channel;
|
|
|
|
|
|
|
|
if (force_freq) {
|
|
|
|
p2p->channels.reg_classes = 1;
|
|
|
|
p2p->channels.reg_class[0].channels = 1;
|
|
|
|
p2p->channels.reg_class[0].reg_class = p2p->op_reg_class;
|
|
|
|
p2p->channels.reg_class[0].channel[0] = p2p->op_channel;
|
|
|
|
} else {
|
|
|
|
os_memcpy(&p2p->channels, &p2p->cfg->channels,
|
|
|
|
sizeof(struct p2p_channels));
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_prepare_channel_best(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
u8 op_class, op_channel;
|
|
|
|
|
|
|
|
if (!p2p->cfg->cfg_op_channel && p2p->best_freq_overall > 0 &&
|
|
|
|
p2p_supported_freq(p2p, p2p->best_freq_overall) &&
|
|
|
|
p2p_freq_to_channel(p2p->cfg->country, p2p->best_freq_overall,
|
|
|
|
&op_class, &op_channel) == 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Select best "
|
|
|
|
"overall channel as operating channel preference");
|
|
|
|
p2p->op_reg_class = op_class;
|
|
|
|
p2p->op_channel = op_channel;
|
|
|
|
} else if (!p2p->cfg->cfg_op_channel && p2p->best_freq_5 > 0 &&
|
|
|
|
p2p_supported_freq(p2p, p2p->best_freq_5) &&
|
|
|
|
p2p_freq_to_channel(p2p->cfg->country, p2p->best_freq_5,
|
|
|
|
&op_class, &op_channel) == 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Select best 5 GHz "
|
|
|
|
"channel as operating channel preference");
|
|
|
|
p2p->op_reg_class = op_class;
|
|
|
|
p2p->op_channel = op_channel;
|
|
|
|
} else if (!p2p->cfg->cfg_op_channel && p2p->best_freq_24 > 0 &&
|
|
|
|
p2p_supported_freq(p2p, p2p->best_freq_24) &&
|
|
|
|
p2p_freq_to_channel(p2p->cfg->country, p2p->best_freq_24,
|
|
|
|
&op_class, &op_channel) == 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Select best 2.4 "
|
|
|
|
"GHz channel as operating channel preference");
|
|
|
|
p2p->op_reg_class = op_class;
|
|
|
|
p2p->op_channel = op_channel;
|
|
|
|
} else {
|
|
|
|
p2p->op_reg_class = p2p->cfg->op_reg_class;
|
|
|
|
p2p->op_channel = p2p->cfg->op_channel;
|
|
|
|
}
|
|
|
|
|
|
|
|
os_memcpy(&p2p->channels, &p2p->cfg->channels,
|
|
|
|
sizeof(struct p2p_channels));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-27 07:27:11 +01:00
|
|
|
/**
|
|
|
|
* p2p_prepare_channel - Select operating channel for GO Negotiation
|
|
|
|
* @p2p: P2P module context from p2p_init()
|
|
|
|
* @dev: Selected peer device
|
|
|
|
* @force_freq: Forced frequency in MHz or 0 if not forced
|
|
|
|
* @pref_freq: Preferred frequency in MHz or 0 if no preference
|
|
|
|
* Returns: 0 on success, -1 on failure (channel not supported for P2P)
|
|
|
|
*
|
|
|
|
* This function is used to do initial operating channel selection for GO
|
|
|
|
* Negotiation prior to having received peer information. The selected channel
|
|
|
|
* may be further optimized in p2p_reselect_channel() once the peer information
|
|
|
|
* is available.
|
|
|
|
*/
|
2012-12-27 06:58:04 +01:00
|
|
|
static int p2p_prepare_channel(struct p2p_data *p2p, struct p2p_device *dev,
|
|
|
|
unsigned int force_freq, unsigned int pref_freq)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
2012-10-26 17:10:46 +02:00
|
|
|
if (force_freq || pref_freq) {
|
2012-12-27 07:37:13 +01:00
|
|
|
if (p2p_prepare_channel_pref(p2p, force_freq, pref_freq) < 0)
|
2010-10-14 11:39:40 +02:00
|
|
|
return -1;
|
2010-07-18 23:30:25 +02:00
|
|
|
} else {
|
2012-12-27 07:37:13 +01:00
|
|
|
p2p_prepare_channel_best(p2p);
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Own preference for operation channel: "
|
2010-11-10 12:33:47 +01:00
|
|
|
"Operating Class %u Channel %u%s",
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p->op_reg_class, p2p->op_channel,
|
|
|
|
force_freq ? " (forced)" : "");
|
|
|
|
|
2012-12-27 06:58:04 +01:00
|
|
|
if (force_freq)
|
|
|
|
dev->flags |= P2P_DEV_FORCE_FREQ;
|
|
|
|
else
|
|
|
|
dev->flags &= ~P2P_DEV_FORCE_FREQ;
|
|
|
|
|
2010-10-14 11:45:15 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-24 16:29:37 +02:00
|
|
|
static void p2p_set_dev_persistent(struct p2p_device *dev,
|
|
|
|
int persistent_group)
|
|
|
|
{
|
|
|
|
switch (persistent_group) {
|
|
|
|
case 0:
|
|
|
|
dev->flags &= ~(P2P_DEV_PREFER_PERSISTENT_GROUP |
|
|
|
|
P2P_DEV_PREFER_PERSISTENT_RECONN);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
dev->flags |= P2P_DEV_PREFER_PERSISTENT_GROUP;
|
|
|
|
dev->flags &= ~P2P_DEV_PREFER_PERSISTENT_RECONN;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
dev->flags |= P2P_DEV_PREFER_PERSISTENT_GROUP |
|
|
|
|
P2P_DEV_PREFER_PERSISTENT_RECONN;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-14 11:45:15 +02:00
|
|
|
int p2p_connect(struct p2p_data *p2p, const u8 *peer_addr,
|
|
|
|
enum p2p_wps_method wps_method,
|
|
|
|
int go_intent, const u8 *own_interface_addr,
|
2012-04-27 17:17:10 +02:00
|
|
|
unsigned int force_freq, int persistent_group,
|
2012-05-11 15:25:47 +02:00
|
|
|
const u8 *force_ssid, size_t force_ssid_len,
|
2012-10-26 17:10:46 +02:00
|
|
|
int pd_before_go_neg, unsigned int pref_freq)
|
2010-10-14 11:45:15 +02:00
|
|
|
{
|
|
|
|
struct p2p_device *dev;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Request to start group negotiation - peer=" MACSTR
|
|
|
|
" GO Intent=%d Intended Interface Address=" MACSTR
|
2012-05-11 15:25:47 +02:00
|
|
|
" wps_method=%d persistent_group=%d pd_before_go_neg=%d",
|
2010-10-14 11:45:15 +02:00
|
|
|
MAC2STR(peer_addr), go_intent, MAC2STR(own_interface_addr),
|
2012-05-11 15:25:47 +02:00
|
|
|
wps_method, persistent_group, pd_before_go_neg);
|
2010-10-14 11:45:15 +02:00
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
dev = p2p_get_device(p2p, peer_addr);
|
|
|
|
if (dev == NULL || (dev->flags & P2P_DEV_PROBE_REQ_ONLY)) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Cannot connect to unknown P2P Device " MACSTR,
|
|
|
|
MAC2STR(peer_addr));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-12-27 06:58:04 +01:00
|
|
|
if (p2p_prepare_channel(p2p, dev, force_freq, pref_freq) < 0)
|
|
|
|
return -1;
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
if (dev->flags & P2P_DEV_GROUP_CLIENT_ONLY) {
|
2011-02-24 20:51:17 +01:00
|
|
|
if (!(dev->info.dev_capab &
|
|
|
|
P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY)) {
|
2010-07-18 23:30:25 +02:00
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Cannot connect to P2P Device " MACSTR
|
|
|
|
" that is in a group and is not discoverable",
|
|
|
|
MAC2STR(peer_addr));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (dev->oper_freq <= 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Cannot connect to P2P Device " MACSTR
|
|
|
|
" with incomplete information",
|
|
|
|
MAC2STR(peer_addr));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First, try to connect directly. If the peer does not
|
|
|
|
* acknowledge frames, assume it is sleeping and use device
|
|
|
|
* discoverability via the GO at that point.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2012-04-27 17:17:10 +02:00
|
|
|
p2p->ssid_set = 0;
|
|
|
|
if (force_ssid) {
|
|
|
|
wpa_hexdump_ascii(MSG_DEBUG, "P2P: Forced SSID",
|
|
|
|
force_ssid, force_ssid_len);
|
|
|
|
os_memcpy(p2p->ssid, force_ssid, force_ssid_len);
|
|
|
|
p2p->ssid_len = force_ssid_len;
|
|
|
|
p2p->ssid_set = 1;
|
|
|
|
}
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
dev->flags &= ~P2P_DEV_NOT_YET_READY;
|
|
|
|
dev->flags &= ~P2P_DEV_USER_REJECTED;
|
|
|
|
dev->flags &= ~P2P_DEV_WAIT_GO_NEG_RESPONSE;
|
|
|
|
dev->flags &= ~P2P_DEV_WAIT_GO_NEG_CONFIRM;
|
2012-05-11 15:25:47 +02:00
|
|
|
if (pd_before_go_neg)
|
|
|
|
dev->flags |= P2P_DEV_PD_BEFORE_GO_NEG;
|
|
|
|
else
|
|
|
|
dev->flags &= ~P2P_DEV_PD_BEFORE_GO_NEG;
|
2010-12-28 10:48:58 +01:00
|
|
|
dev->connect_reqs = 0;
|
2010-07-18 23:30:25 +02:00
|
|
|
dev->go_neg_req_sent = 0;
|
|
|
|
dev->go_state = UNKNOWN_GO;
|
2011-10-24 16:29:37 +02:00
|
|
|
p2p_set_dev_persistent(dev, persistent_group);
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p->go_intent = go_intent;
|
|
|
|
os_memcpy(p2p->intended_addr, own_interface_addr, ETH_ALEN);
|
|
|
|
|
|
|
|
if (p2p->state != P2P_IDLE)
|
|
|
|
p2p_stop_find(p2p);
|
|
|
|
|
2010-11-05 17:17:20 +01:00
|
|
|
if (p2p->after_scan_tx) {
|
|
|
|
/*
|
|
|
|
* We need to drop the pending frame to avoid issues with the
|
|
|
|
* new GO Negotiation, e.g., when the pending frame was from a
|
|
|
|
* previous attempt at starting a GO Negotiation.
|
|
|
|
*/
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Dropped "
|
|
|
|
"previous pending Action frame TX that was waiting "
|
|
|
|
"for p2p_scan completion");
|
|
|
|
os_free(p2p->after_scan_tx);
|
|
|
|
p2p->after_scan_tx = NULL;
|
|
|
|
}
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
dev->wps_method = wps_method;
|
|
|
|
dev->status = P2P_SC_SUCCESS;
|
2010-07-02 17:27:00 +02:00
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
if (p2p->p2p_scan_running) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: p2p_scan running - delay connect send");
|
|
|
|
p2p->start_after_scan = P2P_AFTER_SCAN_CONNECT;
|
|
|
|
os_memcpy(p2p->after_scan_peer, peer_addr, ETH_ALEN);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
p2p->start_after_scan = P2P_AFTER_SCAN_NOTHING;
|
|
|
|
|
|
|
|
return p2p_connect_send(p2p, dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_authorize(struct p2p_data *p2p, const u8 *peer_addr,
|
|
|
|
enum p2p_wps_method wps_method,
|
|
|
|
int go_intent, const u8 *own_interface_addr,
|
2012-04-27 17:17:10 +02:00
|
|
|
unsigned int force_freq, int persistent_group,
|
2012-10-26 17:10:46 +02:00
|
|
|
const u8 *force_ssid, size_t force_ssid_len,
|
|
|
|
unsigned int pref_freq)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
|
|
|
struct p2p_device *dev;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Request to authorize group negotiation - peer=" MACSTR
|
|
|
|
" GO Intent=%d Intended Interface Address=" MACSTR
|
|
|
|
" wps_method=%d persistent_group=%d",
|
|
|
|
MAC2STR(peer_addr), go_intent, MAC2STR(own_interface_addr),
|
|
|
|
wps_method, persistent_group);
|
|
|
|
|
|
|
|
dev = p2p_get_device(p2p, peer_addr);
|
|
|
|
if (dev == NULL) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Cannot authorize unknown P2P Device " MACSTR,
|
|
|
|
MAC2STR(peer_addr));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-12-27 06:58:04 +01:00
|
|
|
if (p2p_prepare_channel(p2p, dev, force_freq, pref_freq) < 0)
|
|
|
|
return -1;
|
|
|
|
|
2012-04-27 17:17:10 +02:00
|
|
|
p2p->ssid_set = 0;
|
|
|
|
if (force_ssid) {
|
|
|
|
wpa_hexdump_ascii(MSG_DEBUG, "P2P: Forced SSID",
|
|
|
|
force_ssid, force_ssid_len);
|
|
|
|
os_memcpy(p2p->ssid, force_ssid, force_ssid_len);
|
|
|
|
p2p->ssid_len = force_ssid_len;
|
|
|
|
p2p->ssid_set = 1;
|
|
|
|
}
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
dev->flags &= ~P2P_DEV_NOT_YET_READY;
|
|
|
|
dev->flags &= ~P2P_DEV_USER_REJECTED;
|
|
|
|
dev->go_neg_req_sent = 0;
|
|
|
|
dev->go_state = UNKNOWN_GO;
|
2011-10-24 16:29:37 +02:00
|
|
|
p2p_set_dev_persistent(dev, persistent_group);
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p->go_intent = go_intent;
|
|
|
|
os_memcpy(p2p->intended_addr, own_interface_addr, ETH_ALEN);
|
|
|
|
|
|
|
|
dev->wps_method = wps_method;
|
|
|
|
dev->status = P2P_SC_SUCCESS;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_add_dev_info(struct p2p_data *p2p, const u8 *addr,
|
|
|
|
struct p2p_device *dev, struct p2p_message *msg)
|
|
|
|
{
|
|
|
|
os_get_time(&dev->last_seen);
|
|
|
|
|
2011-03-28 14:27:10 +02:00
|
|
|
p2p_copy_wps_info(dev, 0, msg);
|
2011-03-17 10:45:46 +01:00
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
if (msg->listen_channel) {
|
|
|
|
int freq;
|
|
|
|
freq = p2p_channel_to_freq((char *) msg->listen_channel,
|
|
|
|
msg->listen_channel[3],
|
|
|
|
msg->listen_channel[4]);
|
|
|
|
if (freq < 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Unknown peer Listen channel: "
|
|
|
|
"country=%c%c(0x%02x) reg_class=%u channel=%u",
|
|
|
|
msg->listen_channel[0],
|
|
|
|
msg->listen_channel[1],
|
|
|
|
msg->listen_channel[2],
|
|
|
|
msg->listen_channel[3],
|
|
|
|
msg->listen_channel[4]);
|
|
|
|
} else {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Update "
|
|
|
|
"peer " MACSTR " Listen channel: %u -> %u MHz",
|
2011-02-24 20:51:17 +01:00
|
|
|
MAC2STR(dev->info.p2p_device_addr),
|
2010-07-18 23:30:25 +02:00
|
|
|
dev->listen_freq, freq);
|
|
|
|
dev->listen_freq = freq;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-02 16:26:01 +01:00
|
|
|
if (msg->wfd_subelems) {
|
|
|
|
wpabuf_free(dev->info.wfd_subelems);
|
|
|
|
dev->info.wfd_subelems = wpabuf_dup(msg->wfd_subelems);
|
|
|
|
}
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
if (dev->flags & P2P_DEV_PROBE_REQ_ONLY) {
|
|
|
|
dev->flags &= ~P2P_DEV_PROBE_REQ_ONLY;
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Completed device entry based on data from "
|
|
|
|
"GO Negotiation Request");
|
|
|
|
} else {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Created device entry based on GO Neg Req: "
|
|
|
|
MACSTR " dev_capab=0x%x group_capab=0x%x name='%s' "
|
|
|
|
"listen_freq=%d",
|
2011-02-24 20:51:17 +01:00
|
|
|
MAC2STR(dev->info.p2p_device_addr),
|
|
|
|
dev->info.dev_capab, dev->info.group_capab,
|
|
|
|
dev->info.device_name, dev->listen_freq);
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dev->flags &= ~P2P_DEV_GROUP_CLIENT_ONLY;
|
|
|
|
|
|
|
|
if (dev->flags & P2P_DEV_USER_REJECTED) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Do not report rejected device");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-02-24 20:59:58 +01:00
|
|
|
p2p->cfg->dev_found(p2p->cfg->cb_ctx, addr, &dev->info,
|
|
|
|
!(dev->flags & P2P_DEV_REPORTED_ONCE));
|
|
|
|
dev->flags |= P2P_DEV_REPORTED | P2P_DEV_REPORTED_ONCE;
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_build_ssid(struct p2p_data *p2p, u8 *ssid, size_t *ssid_len)
|
|
|
|
{
|
|
|
|
os_memcpy(ssid, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN);
|
|
|
|
p2p_random((char *) &ssid[P2P_WILDCARD_SSID_LEN], 2);
|
|
|
|
os_memcpy(&ssid[P2P_WILDCARD_SSID_LEN + 2],
|
|
|
|
p2p->cfg->ssid_postfix, p2p->cfg->ssid_postfix_len);
|
|
|
|
*ssid_len = P2P_WILDCARD_SSID_LEN + 2 + p2p->cfg->ssid_postfix_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_go_params(struct p2p_data *p2p, struct p2p_go_neg_results *params)
|
|
|
|
{
|
|
|
|
p2p_build_ssid(p2p, params->ssid, ¶ms->ssid_len);
|
|
|
|
p2p_random(params->passphrase, 8);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_go_complete(struct p2p_data *p2p, struct p2p_device *peer)
|
|
|
|
{
|
|
|
|
struct p2p_go_neg_results res;
|
|
|
|
int go = peer->go_state == LOCAL_GO;
|
|
|
|
struct p2p_channels intersection;
|
|
|
|
int freqs;
|
|
|
|
size_t i, j;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: GO Negotiation with " MACSTR " completed (%s will be "
|
2011-02-24 20:51:17 +01:00
|
|
|
"GO)", MAC2STR(peer->info.p2p_device_addr),
|
2010-07-18 23:30:25 +02:00
|
|
|
go ? "local end" : "peer");
|
|
|
|
|
|
|
|
os_memset(&res, 0, sizeof(res));
|
|
|
|
res.role_go = go;
|
2011-02-24 20:51:17 +01:00
|
|
|
os_memcpy(res.peer_device_addr, peer->info.p2p_device_addr, ETH_ALEN);
|
2010-07-18 23:30:25 +02:00
|
|
|
os_memcpy(res.peer_interface_addr, peer->intended_addr, ETH_ALEN);
|
|
|
|
res.wps_method = peer->wps_method;
|
2011-10-24 16:29:37 +02:00
|
|
|
if (peer->flags & P2P_DEV_PREFER_PERSISTENT_GROUP) {
|
|
|
|
if (peer->flags & P2P_DEV_PREFER_PERSISTENT_RECONN)
|
|
|
|
res.persistent_group = 2;
|
|
|
|
else
|
|
|
|
res.persistent_group = 1;
|
|
|
|
}
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
if (go) {
|
|
|
|
/* Setup AP mode for WPS provisioning */
|
|
|
|
res.freq = p2p_channel_to_freq(p2p->cfg->country,
|
|
|
|
p2p->op_reg_class,
|
|
|
|
p2p->op_channel);
|
|
|
|
os_memcpy(res.ssid, p2p->ssid, p2p->ssid_len);
|
|
|
|
res.ssid_len = p2p->ssid_len;
|
|
|
|
p2p_random(res.passphrase, 8);
|
2010-08-05 18:15:11 +02:00
|
|
|
} else {
|
2010-07-18 23:30:25 +02:00
|
|
|
res.freq = peer->oper_freq;
|
2010-08-05 18:15:11 +02:00
|
|
|
if (p2p->ssid_len) {
|
|
|
|
os_memcpy(res.ssid, p2p->ssid, p2p->ssid_len);
|
|
|
|
res.ssid_len = p2p->ssid_len;
|
|
|
|
}
|
|
|
|
}
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
p2p_channels_intersect(&p2p->channels, &peer->channels,
|
|
|
|
&intersection);
|
|
|
|
freqs = 0;
|
|
|
|
for (i = 0; i < intersection.reg_classes; i++) {
|
|
|
|
struct p2p_reg_class *c = &intersection.reg_class[i];
|
|
|
|
if (freqs + 1 == P2P_MAX_CHANNELS)
|
|
|
|
break;
|
|
|
|
for (j = 0; j < c->channels; j++) {
|
|
|
|
int freq;
|
|
|
|
if (freqs + 1 == P2P_MAX_CHANNELS)
|
|
|
|
break;
|
|
|
|
freq = p2p_channel_to_freq(peer->country, c->reg_class,
|
|
|
|
c->channel[j]);
|
|
|
|
if (freq < 0)
|
|
|
|
continue;
|
|
|
|
res.freq_list[freqs++] = freq;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-06 20:04:01 +02:00
|
|
|
res.peer_config_timeout = go ? peer->client_timeout : peer->go_timeout;
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p_clear_timeout(p2p);
|
2011-10-11 17:29:31 +02:00
|
|
|
p2p->ssid_set = 0;
|
2010-07-18 23:30:25 +02:00
|
|
|
peer->go_neg_req_sent = 0;
|
|
|
|
peer->wps_method = WPS_NOT_READY;
|
|
|
|
|
|
|
|
p2p_set_state(p2p, P2P_PROVISIONING);
|
|
|
|
p2p->cfg->go_neg_completed(p2p->cfg->cb_ctx, &res);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_rx_p2p_action(struct p2p_data *p2p, const u8 *sa,
|
|
|
|
const u8 *data, size_t len, int rx_freq)
|
|
|
|
{
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: RX P2P Public Action from " MACSTR, MAC2STR(sa));
|
|
|
|
wpa_hexdump(MSG_MSGDUMP, "P2P: P2P Public Action contents", data, len);
|
|
|
|
|
|
|
|
if (len < 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (data[0]) {
|
|
|
|
case P2P_GO_NEG_REQ:
|
|
|
|
p2p_process_go_neg_req(p2p, sa, data + 1, len - 1, rx_freq);
|
|
|
|
break;
|
|
|
|
case P2P_GO_NEG_RESP:
|
|
|
|
p2p_process_go_neg_resp(p2p, sa, data + 1, len - 1, rx_freq);
|
|
|
|
break;
|
|
|
|
case P2P_GO_NEG_CONF:
|
|
|
|
p2p_process_go_neg_conf(p2p, sa, data + 1, len - 1);
|
|
|
|
break;
|
|
|
|
case P2P_INVITATION_REQ:
|
|
|
|
p2p_process_invitation_req(p2p, sa, data + 1, len - 1,
|
|
|
|
rx_freq);
|
|
|
|
break;
|
|
|
|
case P2P_INVITATION_RESP:
|
|
|
|
p2p_process_invitation_resp(p2p, sa, data + 1, len - 1);
|
|
|
|
break;
|
|
|
|
case P2P_PROV_DISC_REQ:
|
|
|
|
p2p_process_prov_disc_req(p2p, sa, data + 1, len - 1, rx_freq);
|
|
|
|
break;
|
|
|
|
case P2P_PROV_DISC_RESP:
|
|
|
|
p2p_process_prov_disc_resp(p2p, sa, data + 1, len - 1);
|
|
|
|
break;
|
|
|
|
case P2P_DEV_DISC_REQ:
|
|
|
|
p2p_process_dev_disc_req(p2p, sa, data + 1, len - 1, rx_freq);
|
|
|
|
break;
|
|
|
|
case P2P_DEV_DISC_RESP:
|
|
|
|
p2p_process_dev_disc_resp(p2p, sa, data + 1, len - 1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Unsupported P2P Public Action frame type %d",
|
|
|
|
data[0]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-18 20:53:36 +01:00
|
|
|
static void p2p_rx_action_public(struct p2p_data *p2p, const u8 *da,
|
|
|
|
const u8 *sa, const u8 *bssid, const u8 *data,
|
|
|
|
size_t len, int freq)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
|
|
|
if (len < 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (data[0]) {
|
|
|
|
case WLAN_PA_VENDOR_SPECIFIC:
|
|
|
|
data++;
|
|
|
|
len--;
|
|
|
|
if (len < 3)
|
|
|
|
return;
|
|
|
|
if (WPA_GET_BE24(data) != OUI_WFA)
|
|
|
|
return;
|
|
|
|
|
|
|
|
data += 3;
|
|
|
|
len -= 3;
|
|
|
|
if (len < 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (*data != P2P_OUI_TYPE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
p2p_rx_p2p_action(p2p, sa, data + 1, len - 1, freq);
|
|
|
|
break;
|
|
|
|
case WLAN_PA_GAS_INITIAL_REQ:
|
|
|
|
p2p_rx_gas_initial_req(p2p, sa, data + 1, len - 1, freq);
|
|
|
|
break;
|
|
|
|
case WLAN_PA_GAS_INITIAL_RESP:
|
2010-06-28 18:24:17 +02:00
|
|
|
p2p_rx_gas_initial_resp(p2p, sa, data + 1, len - 1, freq);
|
|
|
|
break;
|
|
|
|
case WLAN_PA_GAS_COMEBACK_REQ:
|
|
|
|
p2p_rx_gas_comeback_req(p2p, sa, data + 1, len - 1, freq);
|
|
|
|
break;
|
|
|
|
case WLAN_PA_GAS_COMEBACK_RESP:
|
|
|
|
p2p_rx_gas_comeback_resp(p2p, sa, data + 1, len - 1, freq);
|
2010-07-18 23:30:25 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_rx_action(struct p2p_data *p2p, const u8 *da, const u8 *sa,
|
|
|
|
const u8 *bssid, u8 category,
|
|
|
|
const u8 *data, size_t len, int freq)
|
|
|
|
{
|
|
|
|
if (category == WLAN_ACTION_PUBLIC) {
|
|
|
|
p2p_rx_action_public(p2p, da, sa, bssid, data, len, freq);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (category != WLAN_ACTION_VENDOR_SPECIFIC)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (len < 4)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (WPA_GET_BE24(data) != OUI_WFA)
|
|
|
|
return;
|
|
|
|
data += 3;
|
|
|
|
len -= 3;
|
|
|
|
|
|
|
|
if (*data != P2P_OUI_TYPE)
|
|
|
|
return;
|
|
|
|
data++;
|
|
|
|
len--;
|
|
|
|
|
|
|
|
/* P2P action frame */
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: RX P2P Action from " MACSTR, MAC2STR(sa));
|
|
|
|
wpa_hexdump(MSG_MSGDUMP, "P2P: P2P Action contents", data, len);
|
|
|
|
|
|
|
|
if (len < 1)
|
|
|
|
return;
|
|
|
|
switch (data[0]) {
|
|
|
|
case P2P_NOA:
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Received P2P Action - Notice of Absence");
|
|
|
|
/* TODO */
|
|
|
|
break;
|
|
|
|
case P2P_PRESENCE_REQ:
|
|
|
|
p2p_process_presence_req(p2p, da, sa, data + 1, len - 1, freq);
|
|
|
|
break;
|
|
|
|
case P2P_PRESENCE_RESP:
|
|
|
|
p2p_process_presence_resp(p2p, da, sa, data + 1, len - 1);
|
|
|
|
break;
|
|
|
|
case P2P_GO_DISC_REQ:
|
|
|
|
p2p_process_go_disc_req(p2p, da, sa, data + 1, len - 1, freq);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Received P2P Action - unknown type %u", data[0]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_go_neg_start(void *eloop_ctx, void *timeout_ctx)
|
|
|
|
{
|
|
|
|
struct p2p_data *p2p = eloop_ctx;
|
|
|
|
if (p2p->go_neg_peer == NULL)
|
|
|
|
return;
|
|
|
|
p2p->cfg->stop_listen(p2p->cfg->cb_ctx);
|
|
|
|
p2p->go_neg_peer->status = P2P_SC_SUCCESS;
|
|
|
|
p2p_connect_send(p2p, p2p->go_neg_peer);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_invite_start(void *eloop_ctx, void *timeout_ctx)
|
|
|
|
{
|
|
|
|
struct p2p_data *p2p = eloop_ctx;
|
|
|
|
if (p2p->invite_peer == NULL)
|
|
|
|
return;
|
|
|
|
p2p->cfg->stop_listen(p2p->cfg->cb_ctx);
|
|
|
|
p2p_invite_send(p2p, p2p->invite_peer, p2p->invite_go_dev_addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_add_dev_from_probe_req(struct p2p_data *p2p, const u8 *addr,
|
|
|
|
const u8 *ie, size_t ie_len)
|
|
|
|
{
|
|
|
|
struct p2p_message msg;
|
|
|
|
struct p2p_device *dev;
|
|
|
|
|
|
|
|
os_memset(&msg, 0, sizeof(msg));
|
|
|
|
if (p2p_parse_ies(ie, ie_len, &msg) < 0 || msg.p2p_attributes == NULL)
|
|
|
|
{
|
|
|
|
p2p_parse_free(&msg);
|
|
|
|
return; /* not a P2P probe */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg.ssid == NULL || msg.ssid[1] != P2P_WILDCARD_SSID_LEN ||
|
|
|
|
os_memcmp(msg.ssid + 2, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN)
|
|
|
|
!= 0) {
|
|
|
|
/* The Probe Request is not part of P2P Device Discovery. It is
|
|
|
|
* not known whether the source address of the frame is the P2P
|
|
|
|
* Device Address or P2P Interface Address. Do not add a new
|
|
|
|
* peer entry based on this frames.
|
|
|
|
*/
|
|
|
|
p2p_parse_free(&msg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dev = p2p_get_device(p2p, addr);
|
|
|
|
if (dev) {
|
|
|
|
if (dev->country[0] == 0 && msg.listen_channel)
|
|
|
|
os_memcpy(dev->country, msg.listen_channel, 3);
|
2011-10-01 19:40:14 +02:00
|
|
|
os_get_time(&dev->last_seen);
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p_parse_free(&msg);
|
|
|
|
return; /* already known */
|
|
|
|
}
|
|
|
|
|
|
|
|
dev = p2p_create_device(p2p, addr);
|
|
|
|
if (dev == NULL) {
|
|
|
|
p2p_parse_free(&msg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
os_get_time(&dev->last_seen);
|
|
|
|
dev->flags |= P2P_DEV_PROBE_REQ_ONLY;
|
|
|
|
|
|
|
|
if (msg.listen_channel) {
|
|
|
|
os_memcpy(dev->country, msg.listen_channel, 3);
|
|
|
|
dev->listen_freq = p2p_channel_to_freq(dev->country,
|
|
|
|
msg.listen_channel[3],
|
|
|
|
msg.listen_channel[4]);
|
|
|
|
}
|
|
|
|
|
2011-03-28 14:27:10 +02:00
|
|
|
p2p_copy_wps_info(dev, 1, &msg);
|
2011-03-17 10:45:46 +01:00
|
|
|
|
2012-03-02 16:26:01 +01:00
|
|
|
if (msg.wfd_subelems) {
|
|
|
|
wpabuf_free(dev->info.wfd_subelems);
|
|
|
|
dev->info.wfd_subelems = wpabuf_dup(msg.wfd_subelems);
|
|
|
|
}
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p_parse_free(&msg);
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Created device entry based on Probe Req: " MACSTR
|
|
|
|
" dev_capab=0x%x group_capab=0x%x name='%s' listen_freq=%d",
|
2011-02-24 20:51:17 +01:00
|
|
|
MAC2STR(dev->info.p2p_device_addr), dev->info.dev_capab,
|
|
|
|
dev->info.group_capab, dev->info.device_name,
|
|
|
|
dev->listen_freq);
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct p2p_device * p2p_add_dev_from_go_neg_req(struct p2p_data *p2p,
|
|
|
|
const u8 *addr,
|
|
|
|
struct p2p_message *msg)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev;
|
|
|
|
|
|
|
|
dev = p2p_get_device(p2p, addr);
|
|
|
|
if (dev) {
|
|
|
|
os_get_time(&dev->last_seen);
|
|
|
|
return dev; /* already known */
|
|
|
|
}
|
|
|
|
|
|
|
|
dev = p2p_create_device(p2p, addr);
|
|
|
|
if (dev == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
p2p_add_dev_info(p2p, addr, dev, msg);
|
|
|
|
|
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dev_type_match(const u8 *dev_type, const u8 *req_dev_type)
|
|
|
|
{
|
|
|
|
if (os_memcmp(dev_type, req_dev_type, WPS_DEV_TYPE_LEN) == 0)
|
|
|
|
return 1;
|
|
|
|
if (os_memcmp(dev_type, req_dev_type, 2) == 0 &&
|
|
|
|
WPA_GET_BE32(&req_dev_type[2]) == 0 &&
|
|
|
|
WPA_GET_BE16(&req_dev_type[6]) == 0)
|
|
|
|
return 1; /* Category match with wildcard OUI/sub-category */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dev_type_list_match(const u8 *dev_type, const u8 *req_dev_type[],
|
|
|
|
size_t num_req_dev_type)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < num_req_dev_type; i++) {
|
|
|
|
if (dev_type_match(dev_type, req_dev_type[i]))
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* p2p_match_dev_type - Match local device type with requested type
|
|
|
|
* @p2p: P2P module context from p2p_init()
|
|
|
|
* @wps: WPS TLVs from Probe Request frame (concatenated WPS IEs)
|
|
|
|
* Returns: 1 on match, 0 on mismatch
|
|
|
|
*
|
|
|
|
* This function can be used to match the Requested Device Type attribute in
|
|
|
|
* WPS IE with the local device types for deciding whether to reply to a Probe
|
|
|
|
* Request frame.
|
|
|
|
*/
|
|
|
|
int p2p_match_dev_type(struct p2p_data *p2p, struct wpabuf *wps)
|
|
|
|
{
|
|
|
|
struct wps_parse_attr attr;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
if (wps_parse_msg(wps, &attr))
|
|
|
|
return 1; /* assume no Requested Device Type attributes */
|
|
|
|
|
|
|
|
if (attr.num_req_dev_type == 0)
|
|
|
|
return 1; /* no Requested Device Type attributes -> match */
|
|
|
|
|
|
|
|
if (dev_type_list_match(p2p->cfg->pri_dev_type, attr.req_dev_type,
|
|
|
|
attr.num_req_dev_type))
|
|
|
|
return 1; /* Own Primary Device Type matches */
|
|
|
|
|
|
|
|
for (i = 0; i < p2p->cfg->num_sec_dev_types; i++)
|
|
|
|
if (dev_type_list_match(p2p->cfg->sec_dev_type[i],
|
|
|
|
attr.req_dev_type,
|
|
|
|
attr.num_req_dev_type))
|
|
|
|
return 1; /* Own Secondary Device Type matches */
|
|
|
|
|
|
|
|
/* No matching device type found */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct wpabuf * p2p_build_probe_resp_ies(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
struct wpabuf *buf;
|
|
|
|
u8 *len;
|
2012-02-27 22:14:35 +01:00
|
|
|
int pw_id = -1;
|
2012-03-02 16:26:01 +01:00
|
|
|
size_t extra = 0;
|
2010-07-18 23:30:25 +02:00
|
|
|
|
2012-03-02 16:26:01 +01:00
|
|
|
#ifdef CONFIG_WIFI_DISPLAY
|
|
|
|
if (p2p->wfd_ie_probe_resp)
|
|
|
|
extra = wpabuf_len(p2p->wfd_ie_probe_resp);
|
|
|
|
#endif /* CONFIG_WIFI_DISPLAY */
|
|
|
|
|
|
|
|
buf = wpabuf_alloc(1000 + extra);
|
2010-07-18 23:30:25 +02:00
|
|
|
if (buf == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2012-02-27 22:14:35 +01:00
|
|
|
if (p2p->go_neg_peer) {
|
|
|
|
/* Advertise immediate availability of WPS credential */
|
|
|
|
pw_id = p2p_wps_method_pw_id(p2p->go_neg_peer->wps_method);
|
|
|
|
}
|
|
|
|
|
|
|
|
p2p_build_wps_ie(p2p, buf, pw_id, 1);
|
2010-07-18 23:30:25 +02:00
|
|
|
|
2012-03-02 16:26:01 +01:00
|
|
|
#ifdef CONFIG_WIFI_DISPLAY
|
|
|
|
if (p2p->wfd_ie_probe_resp)
|
|
|
|
wpabuf_put_buf(buf, p2p->wfd_ie_probe_resp);
|
|
|
|
#endif /* CONFIG_WIFI_DISPLAY */
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
/* P2P IE */
|
|
|
|
len = p2p_buf_add_ie_hdr(buf);
|
2012-06-16 18:54:47 +02:00
|
|
|
p2p_buf_add_capability(buf, p2p->dev_capab &
|
|
|
|
~P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY, 0);
|
2010-07-18 23:30:25 +02:00
|
|
|
if (p2p->ext_listen_interval)
|
|
|
|
p2p_buf_add_ext_listen_timing(buf, p2p->ext_listen_period,
|
|
|
|
p2p->ext_listen_interval);
|
|
|
|
p2p_buf_add_device_info(buf, p2p, NULL);
|
|
|
|
p2p_buf_update_ie_hdr(buf, len);
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-15 20:49:50 +02:00
|
|
|
static int is_11b(u8 rate)
|
|
|
|
{
|
|
|
|
return rate == 0x02 || rate == 0x04 || rate == 0x0b || rate == 0x16;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int supp_rates_11b_only(struct ieee802_11_elems *elems)
|
|
|
|
{
|
|
|
|
int num_11b = 0, num_others = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (elems->supp_rates == NULL && elems->ext_supp_rates == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = 0; elems->supp_rates && i < elems->supp_rates_len; i++) {
|
|
|
|
if (is_11b(elems->supp_rates[i]))
|
|
|
|
num_11b++;
|
|
|
|
else
|
|
|
|
num_others++;
|
|
|
|
}
|
|
|
|
|
2011-08-02 10:18:03 +02:00
|
|
|
for (i = 0; elems->ext_supp_rates && i < elems->ext_supp_rates_len;
|
|
|
|
i++) {
|
|
|
|
if (is_11b(elems->ext_supp_rates[i]))
|
|
|
|
num_11b++;
|
|
|
|
else
|
|
|
|
num_others++;
|
|
|
|
}
|
|
|
|
|
2011-07-15 20:49:50 +02:00
|
|
|
return num_11b > 0 && num_others == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-01 20:13:38 +02:00
|
|
|
static enum p2p_probe_req_status
|
|
|
|
p2p_reply_probe(struct p2p_data *p2p, const u8 *addr, const u8 *dst,
|
|
|
|
const u8 *bssid, const u8 *ie, size_t ie_len)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
|
|
|
struct ieee802_11_elems elems;
|
|
|
|
struct wpabuf *buf;
|
|
|
|
struct ieee80211_mgmt *resp;
|
2011-07-15 19:48:06 +02:00
|
|
|
struct p2p_message msg;
|
2010-07-18 23:30:25 +02:00
|
|
|
struct wpabuf *ies;
|
|
|
|
|
|
|
|
if (!p2p->in_listen || !p2p->drv_in_listen) {
|
|
|
|
/* not in Listen state - ignore Probe Request */
|
2012-04-01 20:13:38 +02:00
|
|
|
return P2P_PREQ_NOT_LISTEN;
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ieee802_11_parse_elems((u8 *) ie, ie_len, &elems, 0) ==
|
|
|
|
ParseFailed) {
|
|
|
|
/* Ignore invalid Probe Request frames */
|
2012-04-01 20:13:38 +02:00
|
|
|
return P2P_PREQ_MALFORMED;
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (elems.p2p == NULL) {
|
|
|
|
/* not a P2P probe - ignore it */
|
2012-04-01 20:13:38 +02:00
|
|
|
return P2P_PREQ_NOT_P2P;
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
2011-07-15 19:25:53 +02:00
|
|
|
if (dst && !is_broadcast_ether_addr(dst) &&
|
|
|
|
os_memcmp(dst, p2p->cfg->dev_addr, ETH_ALEN) != 0) {
|
|
|
|
/* Not sent to the broadcast address or our P2P Device Address
|
|
|
|
*/
|
2012-04-01 20:13:38 +02:00
|
|
|
return P2P_PREQ_NOT_PROCESSED;
|
2011-07-15 19:25:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (bssid && !is_broadcast_ether_addr(bssid)) {
|
|
|
|
/* Not sent to the Wildcard BSSID */
|
2012-04-01 20:13:38 +02:00
|
|
|
return P2P_PREQ_NOT_PROCESSED;
|
2011-07-15 19:25:53 +02:00
|
|
|
}
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
if (elems.ssid == NULL || elems.ssid_len != P2P_WILDCARD_SSID_LEN ||
|
|
|
|
os_memcmp(elems.ssid, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN) !=
|
|
|
|
0) {
|
|
|
|
/* not using P2P Wildcard SSID - ignore */
|
2012-04-01 20:13:38 +02:00
|
|
|
return P2P_PREQ_NOT_PROCESSED;
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
2011-07-15 20:49:50 +02:00
|
|
|
if (supp_rates_11b_only(&elems)) {
|
|
|
|
/* Indicates support for 11b rates only */
|
2012-04-01 20:13:38 +02:00
|
|
|
return P2P_PREQ_NOT_P2P;
|
2011-07-15 20:49:50 +02:00
|
|
|
}
|
|
|
|
|
2011-07-15 19:48:06 +02:00
|
|
|
os_memset(&msg, 0, sizeof(msg));
|
|
|
|
if (p2p_parse_ies(ie, ie_len, &msg) < 0) {
|
|
|
|
/* Could not parse P2P attributes */
|
2012-04-01 20:13:38 +02:00
|
|
|
return P2P_PREQ_NOT_P2P;
|
2011-07-15 19:48:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (msg.device_id &&
|
2012-05-02 14:19:02 +02:00
|
|
|
os_memcmp(msg.device_id, p2p->cfg->dev_addr, ETH_ALEN) != 0) {
|
2011-07-15 19:48:06 +02:00
|
|
|
/* Device ID did not match */
|
|
|
|
p2p_parse_free(&msg);
|
2012-04-01 20:13:38 +02:00
|
|
|
return P2P_PREQ_NOT_PROCESSED;
|
2011-07-15 19:48:06 +02:00
|
|
|
}
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
/* Check Requested Device Type match */
|
2011-07-15 19:48:06 +02:00
|
|
|
if (msg.wps_attributes &&
|
|
|
|
!p2p_match_dev_type(p2p, msg.wps_attributes)) {
|
2010-07-18 23:30:25 +02:00
|
|
|
/* No match with Requested Device Type */
|
2011-07-15 19:48:06 +02:00
|
|
|
p2p_parse_free(&msg);
|
2012-04-01 20:13:38 +02:00
|
|
|
return P2P_PREQ_NOT_PROCESSED;
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
2011-07-15 19:48:06 +02:00
|
|
|
p2p_parse_free(&msg);
|
2010-07-18 23:30:25 +02:00
|
|
|
|
2012-04-01 20:13:38 +02:00
|
|
|
if (!p2p->cfg->send_probe_resp) {
|
|
|
|
/* Response generated elsewhere */
|
|
|
|
return P2P_PREQ_NOT_PROCESSED;
|
|
|
|
}
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Reply to P2P Probe Request in Listen state");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We do not really have a specific BSS that this frame is advertising,
|
|
|
|
* so build a frame that has some information in valid format. This is
|
|
|
|
* really only used for discovery purposes, not to learn exact BSS
|
|
|
|
* parameters.
|
|
|
|
*/
|
|
|
|
ies = p2p_build_probe_resp_ies(p2p);
|
|
|
|
if (ies == NULL)
|
2012-04-01 20:13:38 +02:00
|
|
|
return P2P_PREQ_NOT_PROCESSED;
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
buf = wpabuf_alloc(200 + wpabuf_len(ies));
|
|
|
|
if (buf == NULL) {
|
|
|
|
wpabuf_free(ies);
|
2012-04-01 20:13:38 +02:00
|
|
|
return P2P_PREQ_NOT_PROCESSED;
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
resp = NULL;
|
|
|
|
resp = wpabuf_put(buf, resp->u.probe_resp.variable - (u8 *) resp);
|
|
|
|
|
|
|
|
resp->frame_control = host_to_le16((WLAN_FC_TYPE_MGMT << 2) |
|
|
|
|
(WLAN_FC_STYPE_PROBE_RESP << 4));
|
|
|
|
os_memcpy(resp->da, addr, ETH_ALEN);
|
|
|
|
os_memcpy(resp->sa, p2p->cfg->dev_addr, ETH_ALEN);
|
|
|
|
os_memcpy(resp->bssid, p2p->cfg->dev_addr, ETH_ALEN);
|
|
|
|
resp->u.probe_resp.beacon_int = host_to_le16(100);
|
|
|
|
/* hardware or low-level driver will setup seq_ctrl and timestamp */
|
|
|
|
resp->u.probe_resp.capab_info =
|
|
|
|
host_to_le16(WLAN_CAPABILITY_SHORT_PREAMBLE |
|
|
|
|
WLAN_CAPABILITY_PRIVACY |
|
|
|
|
WLAN_CAPABILITY_SHORT_SLOT_TIME);
|
|
|
|
|
|
|
|
wpabuf_put_u8(buf, WLAN_EID_SSID);
|
|
|
|
wpabuf_put_u8(buf, P2P_WILDCARD_SSID_LEN);
|
|
|
|
wpabuf_put_data(buf, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN);
|
|
|
|
|
|
|
|
wpabuf_put_u8(buf, WLAN_EID_SUPP_RATES);
|
|
|
|
wpabuf_put_u8(buf, 8);
|
|
|
|
wpabuf_put_u8(buf, (60 / 5) | 0x80);
|
|
|
|
wpabuf_put_u8(buf, 90 / 5);
|
|
|
|
wpabuf_put_u8(buf, (120 / 5) | 0x80);
|
|
|
|
wpabuf_put_u8(buf, 180 / 5);
|
|
|
|
wpabuf_put_u8(buf, (240 / 5) | 0x80);
|
|
|
|
wpabuf_put_u8(buf, 360 / 5);
|
|
|
|
wpabuf_put_u8(buf, 480 / 5);
|
|
|
|
wpabuf_put_u8(buf, 540 / 5);
|
|
|
|
|
|
|
|
wpabuf_put_u8(buf, WLAN_EID_DS_PARAMS);
|
|
|
|
wpabuf_put_u8(buf, 1);
|
|
|
|
wpabuf_put_u8(buf, p2p->cfg->channel);
|
|
|
|
|
|
|
|
wpabuf_put_buf(buf, ies);
|
|
|
|
wpabuf_free(ies);
|
|
|
|
|
|
|
|
p2p->cfg->send_probe_resp(p2p->cfg->cb_ctx, buf);
|
|
|
|
|
|
|
|
wpabuf_free(buf);
|
2012-04-01 20:13:38 +02:00
|
|
|
|
|
|
|
return P2P_PREQ_NOT_PROCESSED;
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-01 20:13:38 +02:00
|
|
|
enum p2p_probe_req_status
|
|
|
|
p2p_probe_req_rx(struct p2p_data *p2p, const u8 *addr, const u8 *dst,
|
|
|
|
const u8 *bssid, const u8 *ie, size_t ie_len)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
2012-04-01 20:13:38 +02:00
|
|
|
enum p2p_probe_req_status res;
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p_add_dev_from_probe_req(p2p, addr, ie, ie_len);
|
|
|
|
|
2012-04-01 20:13:38 +02:00
|
|
|
res = p2p_reply_probe(p2p, addr, dst, bssid, ie, ie_len);
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
if ((p2p->state == P2P_CONNECT || p2p->state == P2P_CONNECT_LISTEN) &&
|
|
|
|
p2p->go_neg_peer &&
|
2011-02-24 20:51:17 +01:00
|
|
|
os_memcmp(addr, p2p->go_neg_peer->info.p2p_device_addr, ETH_ALEN)
|
|
|
|
== 0) {
|
2010-07-18 23:30:25 +02:00
|
|
|
/* Received a Probe Request from GO Negotiation peer */
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Found GO Negotiation peer - try to start GO "
|
|
|
|
"negotiation from timeout");
|
|
|
|
eloop_register_timeout(0, 0, p2p_go_neg_start, p2p, NULL);
|
2012-04-01 20:13:38 +02:00
|
|
|
return P2P_PREQ_PROCESSED;
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((p2p->state == P2P_INVITE || p2p->state == P2P_INVITE_LISTEN) &&
|
|
|
|
p2p->invite_peer &&
|
2011-02-24 20:51:17 +01:00
|
|
|
os_memcmp(addr, p2p->invite_peer->info.p2p_device_addr, ETH_ALEN)
|
|
|
|
== 0) {
|
2010-07-18 23:30:25 +02:00
|
|
|
/* Received a Probe Request from Invite peer */
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Found Invite peer - try to start Invite from "
|
|
|
|
"timeout");
|
|
|
|
eloop_register_timeout(0, 0, p2p_invite_start, p2p, NULL);
|
2012-04-01 20:13:38 +02:00
|
|
|
return P2P_PREQ_PROCESSED;
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
2012-04-01 20:13:38 +02:00
|
|
|
return res;
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int p2p_assoc_req_ie_wlan_ap(struct p2p_data *p2p, const u8 *bssid,
|
2010-07-07 06:37:20 +02:00
|
|
|
u8 *buf, size_t len, struct wpabuf *p2p_ie)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
|
|
|
struct wpabuf *tmp;
|
|
|
|
u8 *lpos;
|
|
|
|
size_t tmplen;
|
|
|
|
int res;
|
2010-07-10 19:19:34 +02:00
|
|
|
u8 group_capab;
|
2010-07-18 23:30:25 +02:00
|
|
|
|
2010-07-07 06:37:20 +02:00
|
|
|
if (p2p_ie == NULL)
|
|
|
|
return 0; /* WLAN AP is not a P2P manager */
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* (Re)Association Request - P2P IE
|
|
|
|
* P2P Capability attribute (shall be present)
|
2010-07-07 06:37:20 +02:00
|
|
|
* P2P Interface attribute (present if concurrent device and
|
|
|
|
* P2P Management is enabled)
|
2010-07-18 23:30:25 +02:00
|
|
|
*/
|
|
|
|
tmp = wpabuf_alloc(200);
|
|
|
|
if (tmp == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
lpos = p2p_buf_add_ie_hdr(tmp);
|
2010-07-10 19:19:34 +02:00
|
|
|
group_capab = 0;
|
|
|
|
if (p2p->num_groups > 0) {
|
|
|
|
group_capab |= P2P_GROUP_CAPAB_GROUP_OWNER;
|
|
|
|
if ((p2p->dev_capab & P2P_DEV_CAPAB_CONCURRENT_OPER) &&
|
|
|
|
(p2p->dev_capab & P2P_DEV_CAPAB_INFRA_MANAGED) &&
|
|
|
|
p2p->cross_connect)
|
|
|
|
group_capab |= P2P_GROUP_CAPAB_CROSS_CONN;
|
|
|
|
}
|
|
|
|
p2p_buf_add_capability(tmp, p2p->dev_capab, group_capab);
|
2010-07-07 06:37:20 +02:00
|
|
|
if ((p2p->dev_capab & P2P_DEV_CAPAB_CONCURRENT_OPER) &&
|
|
|
|
(p2p->dev_capab & P2P_DEV_CAPAB_INFRA_MANAGED))
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p_buf_add_p2p_interface(tmp, p2p);
|
|
|
|
p2p_buf_update_ie_hdr(tmp, lpos);
|
|
|
|
|
|
|
|
tmplen = wpabuf_len(tmp);
|
|
|
|
if (tmplen > len)
|
|
|
|
res = -1;
|
|
|
|
else {
|
|
|
|
os_memcpy(buf, wpabuf_head(tmp), tmplen);
|
|
|
|
res = tmplen;
|
|
|
|
}
|
|
|
|
wpabuf_free(tmp);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_assoc_req_ie(struct p2p_data *p2p, const u8 *bssid, u8 *buf,
|
2010-07-07 06:37:20 +02:00
|
|
|
size_t len, int p2p_group, struct wpabuf *p2p_ie)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
|
|
|
struct wpabuf *tmp;
|
|
|
|
u8 *lpos;
|
|
|
|
struct p2p_device *peer;
|
|
|
|
size_t tmplen;
|
|
|
|
int res;
|
2012-03-02 16:26:01 +01:00
|
|
|
size_t extra = 0;
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
if (!p2p_group)
|
2010-07-07 06:37:20 +02:00
|
|
|
return p2p_assoc_req_ie_wlan_ap(p2p, bssid, buf, len, p2p_ie);
|
2010-07-18 23:30:25 +02:00
|
|
|
|
2012-03-02 16:26:01 +01:00
|
|
|
#ifdef CONFIG_WIFI_DISPLAY
|
|
|
|
if (p2p->wfd_ie_assoc_req)
|
|
|
|
extra = wpabuf_len(p2p->wfd_ie_assoc_req);
|
|
|
|
#endif /* CONFIG_WIFI_DISPLAY */
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
/*
|
|
|
|
* (Re)Association Request - P2P IE
|
|
|
|
* P2P Capability attribute (shall be present)
|
|
|
|
* Extended Listen Timing (may be present)
|
|
|
|
* P2P Device Info attribute (shall be present)
|
|
|
|
*/
|
2012-03-02 16:26:01 +01:00
|
|
|
tmp = wpabuf_alloc(200 + extra);
|
2010-07-18 23:30:25 +02:00
|
|
|
if (tmp == NULL)
|
|
|
|
return -1;
|
|
|
|
|
2012-03-02 16:26:01 +01:00
|
|
|
#ifdef CONFIG_WIFI_DISPLAY
|
|
|
|
if (p2p->wfd_ie_assoc_req)
|
|
|
|
wpabuf_put_buf(tmp, p2p->wfd_ie_assoc_req);
|
|
|
|
#endif /* CONFIG_WIFI_DISPLAY */
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
peer = bssid ? p2p_get_device(p2p, bssid) : NULL;
|
|
|
|
|
|
|
|
lpos = p2p_buf_add_ie_hdr(tmp);
|
|
|
|
p2p_buf_add_capability(tmp, p2p->dev_capab, 0);
|
2010-07-07 06:36:08 +02:00
|
|
|
if (p2p->ext_listen_interval)
|
|
|
|
p2p_buf_add_ext_listen_timing(tmp, p2p->ext_listen_period,
|
|
|
|
p2p->ext_listen_interval);
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p_buf_add_device_info(tmp, p2p, peer);
|
|
|
|
p2p_buf_update_ie_hdr(tmp, lpos);
|
|
|
|
|
|
|
|
tmplen = wpabuf_len(tmp);
|
|
|
|
if (tmplen > len)
|
|
|
|
res = -1;
|
|
|
|
else {
|
|
|
|
os_memcpy(buf, wpabuf_head(tmp), tmplen);
|
|
|
|
res = tmplen;
|
|
|
|
}
|
|
|
|
wpabuf_free(tmp);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf, char *end)
|
|
|
|
{
|
|
|
|
struct wpabuf *p2p_ie;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
p2p_ie = ieee802_11_vendor_ie_concat(ies, ies_len, P2P_IE_VENDOR_TYPE);
|
|
|
|
if (p2p_ie == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ret = p2p_attr_text(p2p_ie, buf, end);
|
|
|
|
wpabuf_free(p2p_ie);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-17 10:58:46 +02:00
|
|
|
int p2p_parse_dev_addr_in_p2p_ie(struct wpabuf *p2p_ie, u8 *dev_addr)
|
2012-02-07 15:23:21 +01:00
|
|
|
{
|
|
|
|
struct p2p_message msg;
|
|
|
|
|
|
|
|
os_memset(&msg, 0, sizeof(msg));
|
2012-06-17 10:58:46 +02:00
|
|
|
if (p2p_parse_p2p_ie(p2p_ie, &msg))
|
2012-02-07 15:23:21 +01:00
|
|
|
return -1;
|
|
|
|
|
2012-03-30 14:50:33 +02:00
|
|
|
if (msg.p2p_device_addr) {
|
|
|
|
os_memcpy(dev_addr, msg.p2p_device_addr, ETH_ALEN);
|
2012-06-17 10:58:46 +02:00
|
|
|
return 0;
|
2012-03-30 14:50:33 +02:00
|
|
|
} else if (msg.device_id) {
|
|
|
|
os_memcpy(dev_addr, msg.device_id, ETH_ALEN);
|
2012-06-17 10:58:46 +02:00
|
|
|
return 0;
|
2012-02-07 15:23:21 +01:00
|
|
|
}
|
2012-06-17 10:58:46 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2012-02-07 15:23:21 +01:00
|
|
|
|
2012-06-17 10:58:46 +02:00
|
|
|
|
|
|
|
int p2p_parse_dev_addr(const u8 *ies, size_t ies_len, u8 *dev_addr)
|
|
|
|
{
|
|
|
|
struct wpabuf *p2p_ie;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
p2p_ie = ieee802_11_vendor_ie_concat(ies, ies_len,
|
|
|
|
P2P_IE_VENDOR_TYPE);
|
|
|
|
if (p2p_ie == NULL)
|
|
|
|
return -1;
|
|
|
|
ret = p2p_parse_dev_addr_in_p2p_ie(p2p_ie, dev_addr);
|
2012-02-07 15:23:21 +01:00
|
|
|
wpabuf_free(p2p_ie);
|
2012-03-30 14:50:33 +02:00
|
|
|
return ret;
|
2012-02-07 15:23:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
static void p2p_clear_go_neg(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
p2p->go_neg_peer = NULL;
|
|
|
|
p2p_clear_timeout(p2p);
|
|
|
|
p2p_set_state(p2p, P2P_IDLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_wps_success_cb(struct p2p_data *p2p, const u8 *mac_addr)
|
|
|
|
{
|
|
|
|
if (p2p->go_neg_peer == NULL) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: No pending Group Formation - "
|
|
|
|
"ignore WPS registration success notification");
|
|
|
|
return; /* No pending Group Formation */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (os_memcmp(mac_addr, p2p->go_neg_peer->intended_addr, ETH_ALEN) !=
|
|
|
|
0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Ignore WPS registration success notification "
|
|
|
|
"for " MACSTR " (GO Negotiation peer " MACSTR ")",
|
|
|
|
MAC2STR(mac_addr),
|
|
|
|
MAC2STR(p2p->go_neg_peer->intended_addr));
|
|
|
|
return; /* Ignore unexpected peer address */
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Group Formation completed successfully with " MACSTR,
|
|
|
|
MAC2STR(mac_addr));
|
|
|
|
|
|
|
|
p2p_clear_go_neg(p2p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_group_formation_failed(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
if (p2p->go_neg_peer == NULL) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: No pending Group Formation - "
|
|
|
|
"ignore group formation failure notification");
|
|
|
|
return; /* No pending Group Formation */
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Group Formation failed with " MACSTR,
|
|
|
|
MAC2STR(p2p->go_neg_peer->intended_addr));
|
|
|
|
|
|
|
|
p2p_clear_go_neg(p2p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct p2p_data * p2p_init(const struct p2p_config *cfg)
|
|
|
|
{
|
|
|
|
struct p2p_data *p2p;
|
|
|
|
|
|
|
|
if (cfg->max_peers < 1)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
p2p = os_zalloc(sizeof(*p2p) + sizeof(*cfg));
|
|
|
|
if (p2p == NULL)
|
|
|
|
return NULL;
|
|
|
|
p2p->cfg = (struct p2p_config *) (p2p + 1);
|
|
|
|
os_memcpy(p2p->cfg, cfg, sizeof(*cfg));
|
|
|
|
if (cfg->dev_name)
|
|
|
|
p2p->cfg->dev_name = os_strdup(cfg->dev_name);
|
2011-03-28 14:24:12 +02:00
|
|
|
if (cfg->manufacturer)
|
|
|
|
p2p->cfg->manufacturer = os_strdup(cfg->manufacturer);
|
|
|
|
if (cfg->model_name)
|
|
|
|
p2p->cfg->model_name = os_strdup(cfg->model_name);
|
|
|
|
if (cfg->model_number)
|
|
|
|
p2p->cfg->model_number = os_strdup(cfg->model_number);
|
|
|
|
if (cfg->serial_number)
|
|
|
|
p2p->cfg->serial_number = os_strdup(cfg->serial_number);
|
2012-03-29 20:28:34 +02:00
|
|
|
if (cfg->pref_chan) {
|
|
|
|
p2p->cfg->pref_chan = os_malloc(cfg->num_pref_chan *
|
|
|
|
sizeof(struct p2p_channel));
|
|
|
|
if (p2p->cfg->pref_chan) {
|
|
|
|
os_memcpy(p2p->cfg->pref_chan, cfg->pref_chan,
|
|
|
|
cfg->num_pref_chan *
|
|
|
|
sizeof(struct p2p_channel));
|
|
|
|
} else
|
|
|
|
p2p->cfg->num_pref_chan = 0;
|
|
|
|
}
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
p2p->min_disc_int = 1;
|
|
|
|
p2p->max_disc_int = 3;
|
2012-10-30 14:12:04 +01:00
|
|
|
p2p->max_disc_tu = -1;
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
os_get_random(&p2p->next_tie_breaker, 1);
|
|
|
|
p2p->next_tie_breaker &= 0x01;
|
|
|
|
if (cfg->sd_request)
|
|
|
|
p2p->dev_capab |= P2P_DEV_CAPAB_SERVICE_DISCOVERY;
|
|
|
|
p2p->dev_capab |= P2P_DEV_CAPAB_INVITATION_PROCEDURE;
|
|
|
|
if (cfg->concurrent_operations)
|
|
|
|
p2p->dev_capab |= P2P_DEV_CAPAB_CONCURRENT_OPER;
|
|
|
|
p2p->dev_capab |= P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY;
|
|
|
|
|
|
|
|
dl_list_init(&p2p->devices);
|
|
|
|
|
|
|
|
eloop_register_timeout(P2P_PEER_EXPIRATION_INTERVAL, 0,
|
|
|
|
p2p_expiration_timeout, p2p, NULL);
|
|
|
|
|
2012-08-15 22:19:11 +02:00
|
|
|
p2p->go_timeout = 100;
|
|
|
|
p2p->client_timeout = 20;
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
return p2p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_deinit(struct p2p_data *p2p)
|
|
|
|
{
|
2012-03-02 16:26:01 +01:00
|
|
|
#ifdef CONFIG_WIFI_DISPLAY
|
|
|
|
wpabuf_free(p2p->wfd_ie_beacon);
|
|
|
|
wpabuf_free(p2p->wfd_ie_probe_req);
|
|
|
|
wpabuf_free(p2p->wfd_ie_probe_resp);
|
|
|
|
wpabuf_free(p2p->wfd_ie_assoc_req);
|
|
|
|
wpabuf_free(p2p->wfd_ie_invitation);
|
|
|
|
wpabuf_free(p2p->wfd_ie_prov_disc_req);
|
|
|
|
wpabuf_free(p2p->wfd_ie_prov_disc_resp);
|
|
|
|
wpabuf_free(p2p->wfd_ie_go_neg);
|
|
|
|
wpabuf_free(p2p->wfd_dev_info);
|
|
|
|
wpabuf_free(p2p->wfd_assoc_bssid);
|
|
|
|
wpabuf_free(p2p->wfd_coupled_sink_info);
|
|
|
|
#endif /* CONFIG_WIFI_DISPLAY */
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
eloop_cancel_timeout(p2p_expiration_timeout, p2p, NULL);
|
|
|
|
eloop_cancel_timeout(p2p_ext_listen_timeout, p2p, NULL);
|
|
|
|
eloop_cancel_timeout(p2p_scan_timeout, p2p, NULL);
|
|
|
|
p2p_flush(p2p);
|
2011-03-19 11:57:46 +01:00
|
|
|
p2p_free_req_dev_types(p2p);
|
2010-07-18 23:30:25 +02:00
|
|
|
os_free(p2p->cfg->dev_name);
|
2011-03-28 14:24:12 +02:00
|
|
|
os_free(p2p->cfg->manufacturer);
|
|
|
|
os_free(p2p->cfg->model_name);
|
|
|
|
os_free(p2p->cfg->model_number);
|
|
|
|
os_free(p2p->cfg->serial_number);
|
2012-03-29 20:28:34 +02:00
|
|
|
os_free(p2p->cfg->pref_chan);
|
2010-07-18 23:30:25 +02:00
|
|
|
os_free(p2p->groups);
|
2010-06-28 18:24:17 +02:00
|
|
|
wpabuf_free(p2p->sd_resp);
|
2010-10-20 18:41:20 +02:00
|
|
|
os_free(p2p->after_scan_tx);
|
2011-03-19 10:57:10 +01:00
|
|
|
p2p_remove_wps_vendor_extensions(p2p);
|
2010-07-18 23:30:25 +02:00
|
|
|
os_free(p2p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_flush(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev, *prev;
|
2012-02-27 18:10:04 +01:00
|
|
|
p2p_stop_find(p2p);
|
2010-07-18 23:30:25 +02:00
|
|
|
dl_list_for_each_safe(dev, prev, &p2p->devices, struct p2p_device,
|
|
|
|
list) {
|
|
|
|
dl_list_del(&dev->list);
|
|
|
|
p2p_device_free(p2p, dev);
|
|
|
|
}
|
|
|
|
p2p_free_sd_queries(p2p);
|
2010-11-05 17:17:20 +01:00
|
|
|
os_free(p2p->after_scan_tx);
|
|
|
|
p2p->after_scan_tx = NULL;
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-25 12:09:50 +01:00
|
|
|
int p2p_unauthorize(struct p2p_data *p2p, const u8 *addr)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev;
|
|
|
|
|
|
|
|
dev = p2p_get_device(p2p, addr);
|
|
|
|
if (dev == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Unauthorizing " MACSTR,
|
|
|
|
MAC2STR(addr));
|
|
|
|
|
|
|
|
if (p2p->go_neg_peer == dev)
|
|
|
|
p2p->go_neg_peer = NULL;
|
|
|
|
|
|
|
|
dev->wps_method = WPS_NOT_READY;
|
|
|
|
dev->flags &= ~P2P_DEV_WAIT_GO_NEG_RESPONSE;
|
|
|
|
dev->flags &= ~P2P_DEV_WAIT_GO_NEG_CONFIRM;
|
|
|
|
|
|
|
|
/* Check if after_scan_tx is for this peer. If so free it */
|
|
|
|
if (p2p->after_scan_tx &&
|
|
|
|
os_memcmp(addr, p2p->after_scan_tx->dst, ETH_ALEN) == 0) {
|
|
|
|
os_free(p2p->after_scan_tx);
|
|
|
|
p2p->after_scan_tx = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
int p2p_set_dev_name(struct p2p_data *p2p, const char *dev_name)
|
|
|
|
{
|
|
|
|
os_free(p2p->cfg->dev_name);
|
|
|
|
if (dev_name) {
|
|
|
|
p2p->cfg->dev_name = os_strdup(dev_name);
|
|
|
|
if (p2p->cfg->dev_name == NULL)
|
|
|
|
return -1;
|
|
|
|
} else
|
|
|
|
p2p->cfg->dev_name = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-28 14:24:12 +02:00
|
|
|
int p2p_set_manufacturer(struct p2p_data *p2p, const char *manufacturer)
|
|
|
|
{
|
|
|
|
os_free(p2p->cfg->manufacturer);
|
|
|
|
p2p->cfg->manufacturer = NULL;
|
|
|
|
if (manufacturer) {
|
|
|
|
p2p->cfg->manufacturer = os_strdup(manufacturer);
|
|
|
|
if (p2p->cfg->manufacturer == NULL)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_model_name(struct p2p_data *p2p, const char *model_name)
|
|
|
|
{
|
|
|
|
os_free(p2p->cfg->model_name);
|
|
|
|
p2p->cfg->model_name = NULL;
|
|
|
|
if (model_name) {
|
|
|
|
p2p->cfg->model_name = os_strdup(model_name);
|
|
|
|
if (p2p->cfg->model_name == NULL)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_model_number(struct p2p_data *p2p, const char *model_number)
|
|
|
|
{
|
|
|
|
os_free(p2p->cfg->model_number);
|
|
|
|
p2p->cfg->model_number = NULL;
|
|
|
|
if (model_number) {
|
|
|
|
p2p->cfg->model_number = os_strdup(model_number);
|
|
|
|
if (p2p->cfg->model_number == NULL)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_serial_number(struct p2p_data *p2p, const char *serial_number)
|
|
|
|
{
|
|
|
|
os_free(p2p->cfg->serial_number);
|
|
|
|
p2p->cfg->serial_number = NULL;
|
|
|
|
if (serial_number) {
|
|
|
|
p2p->cfg->serial_number = os_strdup(serial_number);
|
|
|
|
if (p2p->cfg->serial_number == NULL)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_set_config_methods(struct p2p_data *p2p, u16 config_methods)
|
|
|
|
{
|
|
|
|
p2p->cfg->config_methods = config_methods;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_set_uuid(struct p2p_data *p2p, const u8 *uuid)
|
|
|
|
{
|
|
|
|
os_memcpy(p2p->cfg->uuid, uuid, 16);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
int p2p_set_pri_dev_type(struct p2p_data *p2p, const u8 *pri_dev_type)
|
|
|
|
{
|
|
|
|
os_memcpy(p2p->cfg->pri_dev_type, pri_dev_type, 8);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_sec_dev_types(struct p2p_data *p2p, const u8 dev_types[][8],
|
|
|
|
size_t num_dev_types)
|
|
|
|
{
|
|
|
|
if (num_dev_types > P2P_SEC_DEVICE_TYPES)
|
|
|
|
num_dev_types = P2P_SEC_DEVICE_TYPES;
|
|
|
|
p2p->cfg->num_sec_dev_types = num_dev_types;
|
|
|
|
os_memcpy(p2p->cfg->sec_dev_type, dev_types, num_dev_types * 8);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-19 10:57:10 +01:00
|
|
|
void p2p_remove_wps_vendor_extensions(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2011-03-19 11:20:10 +01:00
|
|
|
for (i = 0; i < P2P_MAX_WPS_VENDOR_EXT; i++) {
|
2011-03-19 10:57:10 +01:00
|
|
|
wpabuf_free(p2p->wps_vendor_ext[i]);
|
|
|
|
p2p->wps_vendor_ext[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_add_wps_vendor_extension(struct p2p_data *p2p,
|
|
|
|
const struct wpabuf *vendor_ext)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (vendor_ext == NULL)
|
|
|
|
return -1;
|
|
|
|
|
2011-03-19 11:20:10 +01:00
|
|
|
for (i = 0; i < P2P_MAX_WPS_VENDOR_EXT; i++) {
|
2011-03-19 10:57:10 +01:00
|
|
|
if (p2p->wps_vendor_ext[i] == NULL)
|
|
|
|
break;
|
|
|
|
}
|
2011-03-19 11:20:10 +01:00
|
|
|
if (i >= P2P_MAX_WPS_VENDOR_EXT)
|
2011-03-19 10:57:10 +01:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
p2p->wps_vendor_ext[i] = wpabuf_dup(vendor_ext);
|
|
|
|
if (p2p->wps_vendor_ext[i] == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
int p2p_set_country(struct p2p_data *p2p, const char *country)
|
|
|
|
{
|
|
|
|
os_memcpy(p2p->cfg->country, country, 3);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_continue_find(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev;
|
|
|
|
p2p_set_state(p2p, P2P_SEARCH);
|
|
|
|
dl_list_for_each(dev, &p2p->devices, struct p2p_device, list) {
|
|
|
|
if (dev->flags & P2P_DEV_SD_SCHEDULE) {
|
|
|
|
if (p2p_start_sd(p2p, dev) == 0)
|
|
|
|
return;
|
|
|
|
else
|
|
|
|
break;
|
2010-10-27 18:36:10 +02:00
|
|
|
} else if (dev->req_config_methods &&
|
|
|
|
!(dev->flags & P2P_DEV_PD_FOR_JOIN)) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Send "
|
2011-12-11 16:36:38 +01:00
|
|
|
"pending Provision Discovery Request to "
|
2010-10-27 18:36:10 +02:00
|
|
|
MACSTR " (config methods 0x%x)",
|
2011-02-24 20:51:17 +01:00
|
|
|
MAC2STR(dev->info.p2p_device_addr),
|
2010-10-27 18:36:10 +02:00
|
|
|
dev->req_config_methods);
|
2011-12-18 16:21:25 +01:00
|
|
|
if (p2p_send_prov_disc_req(p2p, dev, 0, 0) == 0)
|
2010-07-18 23:30:25 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-30 14:12:04 +01:00
|
|
|
p2p_listen_in_find(p2p, 1);
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_sd_cb(struct p2p_data *p2p, int success)
|
|
|
|
{
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Service Discovery Query TX callback: success=%d",
|
|
|
|
success);
|
|
|
|
p2p->pending_action_state = P2P_NO_PENDING_ACTION;
|
|
|
|
|
|
|
|
if (!success) {
|
|
|
|
if (p2p->sd_peer) {
|
|
|
|
p2p->sd_peer->flags &= ~P2P_DEV_SD_SCHEDULE;
|
|
|
|
p2p->sd_peer = NULL;
|
|
|
|
}
|
|
|
|
p2p_continue_find(p2p);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p2p->sd_peer == NULL) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: No SD peer entry known");
|
|
|
|
p2p_continue_find(p2p);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait for response from the peer */
|
|
|
|
p2p_set_state(p2p, P2P_SD_DURING_FIND);
|
|
|
|
p2p_set_timeout(p2p, 0, 200000);
|
|
|
|
}
|
|
|
|
|
2011-06-12 23:20:39 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* p2p_retry_pd - Retry any pending provision disc requests in IDLE state
|
|
|
|
* @p2p: P2P module context from p2p_init()
|
|
|
|
*/
|
2011-11-18 20:53:36 +01:00
|
|
|
static void p2p_retry_pd(struct p2p_data *p2p)
|
2011-06-12 23:20:39 +02:00
|
|
|
{
|
|
|
|
struct p2p_device *dev;
|
|
|
|
|
|
|
|
if (p2p->state != P2P_IDLE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Retry the prov disc req attempt only for the peer that the user had
|
2012-11-22 23:53:42 +01:00
|
|
|
* requested.
|
2011-06-12 23:20:39 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
dl_list_for_each(dev, &p2p->devices, struct p2p_device, list) {
|
|
|
|
if (os_memcmp(p2p->pending_pd_devaddr,
|
|
|
|
dev->info.p2p_device_addr, ETH_ALEN) != 0)
|
|
|
|
continue;
|
|
|
|
if (!dev->req_config_methods)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Send "
|
2011-12-11 16:36:38 +01:00
|
|
|
"pending Provision Discovery Request to "
|
2011-06-12 23:20:39 +02:00
|
|
|
MACSTR " (config methods 0x%x)",
|
|
|
|
MAC2STR(dev->info.p2p_device_addr),
|
|
|
|
dev->req_config_methods);
|
2012-11-22 23:53:42 +01:00
|
|
|
p2p_send_prov_disc_req(p2p, dev,
|
|
|
|
dev->flags & P2P_DEV_PD_FOR_JOIN, 0);
|
2011-06-12 23:20:39 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
static void p2p_prov_disc_cb(struct p2p_data *p2p, int success)
|
|
|
|
{
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Provision Discovery Request TX callback: success=%d",
|
|
|
|
success);
|
2011-06-12 23:20:39 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Postpone resetting the pending action state till after we actually
|
|
|
|
* time out. This allows us to take some action like notifying any
|
|
|
|
* interested parties about no response to the request.
|
|
|
|
*
|
|
|
|
* When the timer (below) goes off we check in IDLE, SEARCH, or
|
|
|
|
* LISTEN_ONLY state, which are the only allowed states to issue a PD
|
|
|
|
* requests in, if this was still pending and then raise notification.
|
|
|
|
*/
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
if (!success) {
|
2011-06-12 23:20:39 +02:00
|
|
|
p2p->pending_action_state = P2P_NO_PENDING_ACTION;
|
|
|
|
|
2012-07-23 20:59:01 +02:00
|
|
|
if (p2p->user_initiated_pd &&
|
|
|
|
(p2p->state == P2P_SEARCH || p2p->state == P2P_LISTEN_ONLY))
|
|
|
|
{
|
|
|
|
/* Retry request from timeout to avoid busy loops */
|
|
|
|
p2p->pending_action_state = P2P_PENDING_PD;
|
|
|
|
p2p_set_timeout(p2p, 0, 50000);
|
|
|
|
} else if (p2p->state != P2P_IDLE)
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p_continue_find(p2p);
|
2011-06-12 23:20:39 +02:00
|
|
|
else if (p2p->user_initiated_pd) {
|
|
|
|
p2p->pending_action_state = P2P_PENDING_PD;
|
|
|
|
p2p_set_timeout(p2p, 0, 300000);
|
|
|
|
}
|
2010-07-18 23:30:25 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-06-12 23:20:39 +02:00
|
|
|
/*
|
|
|
|
* This postponing, of resetting pending_action_state, needs to be
|
|
|
|
* done only for user initiated PD requests and not internal ones.
|
|
|
|
*/
|
|
|
|
if (p2p->user_initiated_pd)
|
|
|
|
p2p->pending_action_state = P2P_PENDING_PD;
|
|
|
|
else
|
|
|
|
p2p->pending_action_state = P2P_NO_PENDING_ACTION;
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
/* Wait for response from the peer */
|
|
|
|
if (p2p->state == P2P_SEARCH)
|
|
|
|
p2p_set_state(p2p, P2P_PD_DURING_FIND);
|
|
|
|
p2p_set_timeout(p2p, 0, 200000);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_scan_res_handler(struct p2p_data *p2p, const u8 *bssid, int freq,
|
2012-12-25 10:22:42 +01:00
|
|
|
unsigned int age, int level, const u8 *ies,
|
|
|
|
size_t ies_len)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
2012-12-25 10:22:42 +01:00
|
|
|
p2p_add_device(p2p, bssid, freq, age, level, ies, ies_len, 1);
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_scan_res_handled(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
if (!p2p->p2p_scan_running) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: p2p_scan was not "
|
|
|
|
"running, but scan results received");
|
|
|
|
}
|
|
|
|
p2p->p2p_scan_running = 0;
|
|
|
|
eloop_cancel_timeout(p2p_scan_timeout, p2p, NULL);
|
|
|
|
|
|
|
|
if (p2p_run_after_scan(p2p))
|
|
|
|
return;
|
|
|
|
if (p2p->state == P2P_SEARCH)
|
|
|
|
p2p_continue_find(p2p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-08 18:25:29 +01:00
|
|
|
void p2p_scan_ie(struct p2p_data *p2p, struct wpabuf *ies, const u8 *dev_id)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
2012-03-02 16:26:01 +01:00
|
|
|
u8 *len;
|
|
|
|
|
|
|
|
#ifdef CONFIG_WIFI_DISPLAY
|
|
|
|
if (p2p->wfd_ie_probe_req)
|
|
|
|
wpabuf_put_buf(ies, p2p->wfd_ie_probe_req);
|
|
|
|
#endif /* CONFIG_WIFI_DISPLAY */
|
|
|
|
|
|
|
|
len = p2p_buf_add_ie_hdr(ies);
|
2012-06-16 18:54:47 +02:00
|
|
|
p2p_buf_add_capability(ies, p2p->dev_capab &
|
|
|
|
~P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY, 0);
|
2012-01-08 18:25:29 +01:00
|
|
|
if (dev_id)
|
|
|
|
p2p_buf_add_device_id(ies, dev_id);
|
2010-07-18 23:30:25 +02:00
|
|
|
if (p2p->cfg->reg_class && p2p->cfg->channel)
|
|
|
|
p2p_buf_add_listen_channel(ies, p2p->cfg->country,
|
|
|
|
p2p->cfg->reg_class,
|
|
|
|
p2p->cfg->channel);
|
|
|
|
if (p2p->ext_listen_interval)
|
|
|
|
p2p_buf_add_ext_listen_timing(ies, p2p->ext_listen_period,
|
|
|
|
p2p->ext_listen_interval);
|
|
|
|
/* TODO: p2p_buf_add_operating_channel() if GO */
|
|
|
|
p2p_buf_update_ie_hdr(ies, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-28 15:14:35 +02:00
|
|
|
size_t p2p_scan_ie_buf_len(struct p2p_data *p2p)
|
|
|
|
{
|
2012-03-02 16:26:01 +01:00
|
|
|
size_t len = 100;
|
|
|
|
|
|
|
|
#ifdef CONFIG_WIFI_DISPLAY
|
|
|
|
if (p2p && p2p->wfd_ie_probe_req)
|
|
|
|
len += wpabuf_len(p2p->wfd_ie_probe_req);
|
|
|
|
#endif /* CONFIG_WIFI_DISPLAY */
|
|
|
|
|
|
|
|
return len;
|
2011-04-28 15:14:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
int p2p_ie_text(struct wpabuf *p2p_ie, char *buf, char *end)
|
|
|
|
{
|
|
|
|
return p2p_attr_text(p2p_ie, buf, end);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_go_neg_req_cb(struct p2p_data *p2p, int success)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev = p2p->go_neg_peer;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: GO Negotiation Request TX callback: success=%d",
|
|
|
|
success);
|
|
|
|
|
|
|
|
if (dev == NULL) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: No pending GO Negotiation");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (success) {
|
|
|
|
if (dev->flags & P2P_DEV_USER_REJECTED) {
|
|
|
|
p2p_set_state(p2p, P2P_IDLE);
|
|
|
|
return;
|
|
|
|
}
|
2012-06-09 17:03:47 +02:00
|
|
|
} else if (dev->go_neg_req_sent) {
|
|
|
|
/* Cancel the increment from p2p_connect_send() on failure */
|
|
|
|
dev->go_neg_req_sent--;
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!success &&
|
2011-02-24 20:51:17 +01:00
|
|
|
(dev->info.dev_capab & P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY) &&
|
2010-07-18 23:30:25 +02:00
|
|
|
!is_zero_ether_addr(dev->member_in_go_dev)) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Peer " MACSTR " did not acknowledge request - "
|
|
|
|
"try to use device discoverability through its GO",
|
2011-02-24 20:51:17 +01:00
|
|
|
MAC2STR(dev->info.p2p_device_addr));
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p->cfg->send_action_done(p2p->cfg->cb_ctx);
|
|
|
|
p2p_send_dev_disc_req(p2p, dev);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Use P2P find, if needed, to find the other device from its listen
|
|
|
|
* channel.
|
|
|
|
*/
|
|
|
|
p2p_set_state(p2p, P2P_CONNECT);
|
2012-08-11 20:14:57 +02:00
|
|
|
p2p_set_timeout(p2p, 0, success ? 200000 : 100000);
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_go_neg_resp_cb(struct p2p_data *p2p, int success)
|
|
|
|
{
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: GO Negotiation Response TX callback: success=%d",
|
|
|
|
success);
|
|
|
|
if (!p2p->go_neg_peer && p2p->state == P2P_PROVISIONING) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Ignore TX callback event - GO Negotiation is "
|
|
|
|
"not running anymore");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
p2p_set_state(p2p, P2P_CONNECT);
|
2012-08-11 20:14:57 +02:00
|
|
|
p2p_set_timeout(p2p, 0, 250000);
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_go_neg_resp_failure_cb(struct p2p_data *p2p, int success)
|
|
|
|
{
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: GO Negotiation Response (failure) TX callback: "
|
|
|
|
"success=%d", success);
|
2010-09-06 18:00:43 +02:00
|
|
|
if (p2p->go_neg_peer && p2p->go_neg_peer->status != P2P_SC_SUCCESS) {
|
|
|
|
p2p_go_neg_failed(p2p, p2p->go_neg_peer,
|
|
|
|
p2p->go_neg_peer->status);
|
|
|
|
}
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-19 11:47:33 +02:00
|
|
|
static void p2p_go_neg_conf_cb(struct p2p_data *p2p,
|
|
|
|
enum p2p_send_action_result result)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
|
|
|
struct p2p_device *dev;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
2010-10-19 11:47:33 +02:00
|
|
|
"P2P: GO Negotiation Confirm TX callback: result=%d",
|
|
|
|
result);
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p->cfg->send_action_done(p2p->cfg->cb_ctx);
|
2010-10-19 11:47:33 +02:00
|
|
|
if (result == P2P_SEND_ACTION_FAILED) {
|
|
|
|
p2p_go_neg_failed(p2p, p2p->go_neg_peer, -1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (result == P2P_SEND_ACTION_NO_ACK) {
|
2010-07-18 23:30:25 +02:00
|
|
|
/*
|
|
|
|
* It looks like the TX status for GO Negotiation Confirm is
|
|
|
|
* often showing failure even when the peer has actually
|
|
|
|
* received the frame. Since the peer may change channels
|
|
|
|
* immediately after having received the frame, we may not see
|
|
|
|
* an Ack for retries, so just dropping a single frame may
|
|
|
|
* trigger this. To allow the group formation to succeed if the
|
|
|
|
* peer did indeed receive the frame, continue regardless of
|
|
|
|
* the TX status.
|
|
|
|
*/
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Assume GO Negotiation Confirm TX was actually "
|
|
|
|
"received by the peer even though Ack was not "
|
|
|
|
"reported");
|
|
|
|
}
|
|
|
|
|
|
|
|
dev = p2p->go_neg_peer;
|
|
|
|
if (dev == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
p2p_go_complete(p2p, dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_send_action_cb(struct p2p_data *p2p, unsigned int freq, const u8 *dst,
|
2010-10-19 11:47:33 +02:00
|
|
|
const u8 *src, const u8 *bssid,
|
|
|
|
enum p2p_send_action_result result)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
|
|
|
enum p2p_pending_action_state state;
|
2010-10-19 11:47:33 +02:00
|
|
|
int success;
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Action frame TX callback (state=%d freq=%u dst=" MACSTR
|
2010-10-19 11:47:33 +02:00
|
|
|
" src=" MACSTR " bssid=" MACSTR " result=%d",
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p->pending_action_state, freq, MAC2STR(dst), MAC2STR(src),
|
2010-10-19 11:47:33 +02:00
|
|
|
MAC2STR(bssid), result);
|
|
|
|
success = result == P2P_SEND_ACTION_SUCCESS;
|
2010-07-18 23:30:25 +02:00
|
|
|
state = p2p->pending_action_state;
|
|
|
|
p2p->pending_action_state = P2P_NO_PENDING_ACTION;
|
|
|
|
switch (state) {
|
|
|
|
case P2P_NO_PENDING_ACTION:
|
|
|
|
break;
|
|
|
|
case P2P_PENDING_GO_NEG_REQUEST:
|
|
|
|
p2p_go_neg_req_cb(p2p, success);
|
|
|
|
break;
|
|
|
|
case P2P_PENDING_GO_NEG_RESPONSE:
|
|
|
|
p2p_go_neg_resp_cb(p2p, success);
|
|
|
|
break;
|
|
|
|
case P2P_PENDING_GO_NEG_RESPONSE_FAILURE:
|
|
|
|
p2p_go_neg_resp_failure_cb(p2p, success);
|
|
|
|
break;
|
|
|
|
case P2P_PENDING_GO_NEG_CONFIRM:
|
2010-10-19 11:47:33 +02:00
|
|
|
p2p_go_neg_conf_cb(p2p, result);
|
2010-07-18 23:30:25 +02:00
|
|
|
break;
|
|
|
|
case P2P_PENDING_SD:
|
|
|
|
p2p_sd_cb(p2p, success);
|
|
|
|
break;
|
|
|
|
case P2P_PENDING_PD:
|
|
|
|
p2p_prov_disc_cb(p2p, success);
|
|
|
|
break;
|
|
|
|
case P2P_PENDING_INVITATION_REQUEST:
|
|
|
|
p2p_invitation_req_cb(p2p, success);
|
|
|
|
break;
|
|
|
|
case P2P_PENDING_INVITATION_RESPONSE:
|
|
|
|
p2p_invitation_resp_cb(p2p, success);
|
|
|
|
break;
|
|
|
|
case P2P_PENDING_DEV_DISC_REQUEST:
|
|
|
|
p2p_dev_disc_req_cb(p2p, success);
|
|
|
|
break;
|
|
|
|
case P2P_PENDING_DEV_DISC_RESPONSE:
|
|
|
|
p2p_dev_disc_resp_cb(p2p, success);
|
|
|
|
break;
|
|
|
|
case P2P_PENDING_GO_DISC_REQ:
|
|
|
|
p2p_go_disc_req_cb(p2p, success);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_listen_cb(struct p2p_data *p2p, unsigned int freq,
|
|
|
|
unsigned int duration)
|
|
|
|
{
|
|
|
|
if (freq == p2p->pending_client_disc_freq) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Client discoverability remain-awake completed");
|
|
|
|
p2p->pending_client_disc_freq = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (freq != p2p->pending_listen_freq) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Unexpected listen callback for freq=%u "
|
|
|
|
"duration=%u (pending_listen_freq=%u)",
|
|
|
|
freq, duration, p2p->pending_listen_freq);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Starting Listen timeout(%u,%u) on freq=%u based on "
|
|
|
|
"callback",
|
|
|
|
p2p->pending_listen_sec, p2p->pending_listen_usec,
|
|
|
|
p2p->pending_listen_freq);
|
|
|
|
p2p->in_listen = 1;
|
2010-10-20 18:37:47 +02:00
|
|
|
p2p->drv_in_listen = freq;
|
2010-07-18 23:30:25 +02:00
|
|
|
if (p2p->pending_listen_sec || p2p->pending_listen_usec) {
|
|
|
|
/*
|
|
|
|
* Add 20 msec extra wait to avoid race condition with driver
|
|
|
|
* remain-on-channel end event, i.e., give driver more time to
|
|
|
|
* complete the operation before our timeout expires.
|
|
|
|
*/
|
|
|
|
p2p_set_timeout(p2p, p2p->pending_listen_sec,
|
|
|
|
p2p->pending_listen_usec + 20000);
|
|
|
|
}
|
|
|
|
|
|
|
|
p2p->pending_listen_freq = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_listen_end(struct p2p_data *p2p, unsigned int freq)
|
|
|
|
{
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Driver ended Listen "
|
|
|
|
"state (freq=%u)", freq);
|
|
|
|
p2p->drv_in_listen = 0;
|
|
|
|
if (p2p->in_listen)
|
|
|
|
return 0; /* Internal timeout will trigger the next step */
|
|
|
|
|
|
|
|
if (p2p->state == P2P_CONNECT_LISTEN && p2p->go_neg_peer) {
|
2011-01-12 12:48:55 +01:00
|
|
|
if (p2p->go_neg_peer->connect_reqs >= 120) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Timeout on sending GO Negotiation "
|
|
|
|
"Request without getting response");
|
|
|
|
p2p_go_neg_failed(p2p, p2p->go_neg_peer, -1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p_set_state(p2p, P2P_CONNECT);
|
|
|
|
p2p_connect_send(p2p, p2p->go_neg_peer);
|
|
|
|
return 1;
|
|
|
|
} else if (p2p->state == P2P_SEARCH) {
|
2012-02-09 11:49:36 +01:00
|
|
|
if (p2p->p2p_scan_running) {
|
|
|
|
/*
|
|
|
|
* Search is already in progress. This can happen if
|
|
|
|
* an Action frame RX is reported immediately after
|
|
|
|
* the end of a remain-on-channel operation and the
|
|
|
|
* response frame to that is sent using an offchannel
|
|
|
|
* operation while in p2p_find. Avoid an attempt to
|
|
|
|
* restart a scan here.
|
|
|
|
*/
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: p2p_scan "
|
|
|
|
"already in progress - do not try to start a "
|
|
|
|
"new one");
|
|
|
|
return 1;
|
|
|
|
}
|
2012-05-08 10:50:03 +02:00
|
|
|
if (p2p->pending_listen_freq) {
|
|
|
|
/*
|
|
|
|
* Better wait a bit if the driver is unable to start
|
|
|
|
* offchannel operation for some reason. p2p_search()
|
|
|
|
* will be started from internal timeout.
|
|
|
|
*/
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Listen "
|
|
|
|
"operation did not seem to start - delay "
|
|
|
|
"search phase to avoid busy loop");
|
|
|
|
p2p_set_timeout(p2p, 0, 100000);
|
|
|
|
return 1;
|
|
|
|
}
|
2012-08-23 17:20:58 +02:00
|
|
|
if (p2p->search_delay) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Delay "
|
|
|
|
"search operation by %u ms",
|
|
|
|
p2p->search_delay);
|
|
|
|
p2p_set_timeout(p2p, p2p->search_delay / 1000,
|
|
|
|
(p2p->search_delay % 1000) * 1000);
|
|
|
|
return 1;
|
|
|
|
}
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p_search(p2p);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_timeout_connect(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
p2p->cfg->send_action_done(p2p->cfg->cb_ctx);
|
2012-06-08 17:24:08 +02:00
|
|
|
if (p2p->go_neg_peer &&
|
|
|
|
(p2p->go_neg_peer->flags & P2P_DEV_WAIT_GO_NEG_CONFIRM)) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Wait for GO "
|
|
|
|
"Negotiation Confirm timed out - assume GO "
|
|
|
|
"Negotiation failed");
|
|
|
|
p2p_go_neg_failed(p2p, p2p->go_neg_peer, -1);
|
|
|
|
return;
|
|
|
|
}
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p_set_state(p2p, P2P_CONNECT_LISTEN);
|
2012-10-30 14:12:04 +01:00
|
|
|
p2p_listen_in_find(p2p, 0);
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_timeout_connect_listen(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
if (p2p->go_neg_peer) {
|
|
|
|
if (p2p->drv_in_listen) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Driver is "
|
|
|
|
"still in Listen state; wait for it to "
|
|
|
|
"complete");
|
|
|
|
return;
|
|
|
|
}
|
2010-12-28 10:48:58 +01:00
|
|
|
|
|
|
|
if (p2p->go_neg_peer->connect_reqs >= 120) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Timeout on sending GO Negotiation "
|
|
|
|
"Request without getting response");
|
|
|
|
p2p_go_neg_failed(p2p, p2p->go_neg_peer, -1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p_set_state(p2p, P2P_CONNECT);
|
|
|
|
p2p_connect_send(p2p, p2p->go_neg_peer);
|
|
|
|
} else
|
|
|
|
p2p_set_state(p2p, P2P_IDLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_timeout_wait_peer_connect(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* TODO: could remain constantly in Listen state for some time if there
|
|
|
|
* are no other concurrent uses for the radio. For now, go to listen
|
|
|
|
* state once per second to give other uses a chance to use the radio.
|
|
|
|
*/
|
|
|
|
p2p_set_state(p2p, P2P_WAIT_PEER_IDLE);
|
2011-12-18 17:01:11 +01:00
|
|
|
p2p_set_timeout(p2p, 0, 500000);
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_timeout_wait_peer_idle(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev = p2p->go_neg_peer;
|
|
|
|
|
|
|
|
if (dev == NULL) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Unknown GO Neg peer - stop GO Neg wait");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dev->wait_count++;
|
|
|
|
if (dev->wait_count >= 120) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Timeout on waiting peer to become ready for GO "
|
|
|
|
"Negotiation");
|
|
|
|
p2p_go_neg_failed(p2p, dev, -1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Go to Listen state while waiting for the peer to become "
|
|
|
|
"ready for GO Negotiation");
|
|
|
|
p2p_set_state(p2p, P2P_WAIT_PEER_CONNECT);
|
2012-10-30 14:12:04 +01:00
|
|
|
p2p_listen_in_find(p2p, 0);
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_timeout_sd_during_find(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Service Discovery Query timeout");
|
|
|
|
if (p2p->sd_peer) {
|
|
|
|
p2p->cfg->send_action_done(p2p->cfg->cb_ctx);
|
|
|
|
p2p->sd_peer->flags &= ~P2P_DEV_SD_SCHEDULE;
|
|
|
|
p2p->sd_peer = NULL;
|
|
|
|
}
|
|
|
|
p2p_continue_find(p2p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_timeout_prov_disc_during_find(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Provision Discovery Request timeout");
|
|
|
|
p2p->cfg->send_action_done(p2p->cfg->cb_ctx);
|
|
|
|
p2p_continue_find(p2p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-12 23:20:39 +02:00
|
|
|
static void p2p_timeout_prov_disc_req(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
p2p->pending_action_state = P2P_NO_PENDING_ACTION;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For user initiated PD requests that we have not gotten any responses
|
|
|
|
* for while in IDLE state, we retry them a couple of times before
|
|
|
|
* giving up.
|
|
|
|
*/
|
|
|
|
if (!p2p->user_initiated_pd)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: User initiated Provision Discovery Request timeout");
|
|
|
|
|
|
|
|
if (p2p->pd_retries) {
|
|
|
|
p2p->pd_retries--;
|
|
|
|
p2p_retry_pd(p2p);
|
|
|
|
} else {
|
2012-11-22 23:53:42 +01:00
|
|
|
struct p2p_device *dev;
|
|
|
|
int for_join = 0;
|
|
|
|
|
|
|
|
dl_list_for_each(dev, &p2p->devices, struct p2p_device, list) {
|
|
|
|
if (os_memcmp(p2p->pending_pd_devaddr,
|
|
|
|
dev->info.p2p_device_addr, ETH_ALEN) != 0)
|
|
|
|
continue;
|
|
|
|
if (dev->req_config_methods &&
|
|
|
|
(dev->flags & P2P_DEV_PD_FOR_JOIN))
|
|
|
|
for_join = 1;
|
|
|
|
}
|
|
|
|
|
2011-06-12 23:26:22 +02:00
|
|
|
if (p2p->cfg->prov_disc_fail)
|
|
|
|
p2p->cfg->prov_disc_fail(p2p->cfg->cb_ctx,
|
|
|
|
p2p->pending_pd_devaddr,
|
2012-11-22 23:53:42 +01:00
|
|
|
for_join ?
|
|
|
|
P2P_PROV_DISC_TIMEOUT_JOIN :
|
2011-06-12 23:26:22 +02:00
|
|
|
P2P_PROV_DISC_TIMEOUT);
|
2011-06-12 23:20:39 +02:00
|
|
|
p2p_reset_pending_pd(p2p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
static void p2p_timeout_invite(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
p2p->cfg->send_action_done(p2p->cfg->cb_ctx);
|
|
|
|
p2p_set_state(p2p, P2P_INVITE_LISTEN);
|
2010-07-07 05:22:31 +02:00
|
|
|
if (p2p->inv_role == P2P_INVITE_ROLE_ACTIVE_GO) {
|
|
|
|
/*
|
|
|
|
* Better remain on operating channel instead of listen channel
|
|
|
|
* when running a group.
|
|
|
|
*/
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Inviting in "
|
|
|
|
"active GO role - wait on operating channel");
|
|
|
|
p2p_set_timeout(p2p, 0, 100000);
|
|
|
|
return;
|
|
|
|
}
|
2012-10-30 14:12:04 +01:00
|
|
|
p2p_listen_in_find(p2p, 0);
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_timeout_invite_listen(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
if (p2p->invite_peer && p2p->invite_peer->invitation_reqs < 100) {
|
|
|
|
p2p_set_state(p2p, P2P_INVITE);
|
|
|
|
p2p_invite_send(p2p, p2p->invite_peer,
|
|
|
|
p2p->invite_go_dev_addr);
|
|
|
|
} else {
|
|
|
|
if (p2p->invite_peer) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Invitation Request retry limit reached");
|
|
|
|
if (p2p->cfg->invitation_result)
|
|
|
|
p2p->cfg->invitation_result(
|
|
|
|
p2p->cfg->cb_ctx, -1, NULL);
|
|
|
|
}
|
|
|
|
p2p_set_state(p2p, P2P_IDLE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_state_timeout(void *eloop_ctx, void *timeout_ctx)
|
|
|
|
{
|
|
|
|
struct p2p_data *p2p = eloop_ctx;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Timeout (state=%s)",
|
|
|
|
p2p_state_txt(p2p->state));
|
|
|
|
|
|
|
|
p2p->in_listen = 0;
|
|
|
|
|
|
|
|
switch (p2p->state) {
|
|
|
|
case P2P_IDLE:
|
2011-06-12 23:20:39 +02:00
|
|
|
/* Check if we timed out waiting for PD req */
|
|
|
|
if (p2p->pending_action_state == P2P_PENDING_PD)
|
|
|
|
p2p_timeout_prov_disc_req(p2p);
|
2010-07-18 23:30:25 +02:00
|
|
|
break;
|
|
|
|
case P2P_SEARCH:
|
2011-06-12 23:20:39 +02:00
|
|
|
/* Check if we timed out waiting for PD req */
|
|
|
|
if (p2p->pending_action_state == P2P_PENDING_PD)
|
|
|
|
p2p_timeout_prov_disc_req(p2p);
|
2012-08-23 17:20:58 +02:00
|
|
|
if (p2p->search_delay && !p2p->in_search_delay) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Delay "
|
|
|
|
"search operation by %u ms",
|
|
|
|
p2p->search_delay);
|
|
|
|
p2p->in_search_delay = 1;
|
|
|
|
p2p_set_timeout(p2p, p2p->search_delay / 1000,
|
|
|
|
(p2p->search_delay % 1000) * 1000);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
p2p->in_search_delay = 0;
|
2010-07-18 23:30:25 +02:00
|
|
|
p2p_search(p2p);
|
|
|
|
break;
|
|
|
|
case P2P_CONNECT:
|
|
|
|
p2p_timeout_connect(p2p);
|
|
|
|
break;
|
|
|
|
case P2P_CONNECT_LISTEN:
|
|
|
|
p2p_timeout_connect_listen(p2p);
|
|
|
|
break;
|
|
|
|
case P2P_GO_NEG:
|
|
|
|
break;
|
|
|
|
case P2P_LISTEN_ONLY:
|
2011-06-12 23:20:39 +02:00
|
|
|
/* Check if we timed out waiting for PD req */
|
|
|
|
if (p2p->pending_action_state == P2P_PENDING_PD)
|
|
|
|
p2p_timeout_prov_disc_req(p2p);
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
if (p2p->ext_listen_only) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Extended Listen Timing - Listen State "
|
|
|
|
"completed");
|
|
|
|
p2p->ext_listen_only = 0;
|
|
|
|
p2p_set_state(p2p, P2P_IDLE);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case P2P_WAIT_PEER_CONNECT:
|
|
|
|
p2p_timeout_wait_peer_connect(p2p);
|
|
|
|
break;
|
|
|
|
case P2P_WAIT_PEER_IDLE:
|
|
|
|
p2p_timeout_wait_peer_idle(p2p);
|
|
|
|
break;
|
|
|
|
case P2P_SD_DURING_FIND:
|
|
|
|
p2p_timeout_sd_during_find(p2p);
|
|
|
|
break;
|
|
|
|
case P2P_PROVISIONING:
|
|
|
|
break;
|
|
|
|
case P2P_PD_DURING_FIND:
|
|
|
|
p2p_timeout_prov_disc_during_find(p2p);
|
|
|
|
break;
|
|
|
|
case P2P_INVITE:
|
|
|
|
p2p_timeout_invite(p2p);
|
|
|
|
break;
|
|
|
|
case P2P_INVITE_LISTEN:
|
|
|
|
p2p_timeout_invite_listen(p2p);
|
|
|
|
break;
|
2011-11-15 20:25:21 +01:00
|
|
|
case P2P_SEARCH_WHEN_READY:
|
|
|
|
break;
|
2012-08-23 18:42:53 +02:00
|
|
|
case P2P_CONTINUE_SEARCH_WHEN_READY:
|
|
|
|
break;
|
2010-07-18 23:30:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_reject(struct p2p_data *p2p, const u8 *peer_addr)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev;
|
|
|
|
|
|
|
|
dev = p2p_get_device(p2p, peer_addr);
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Local request to reject "
|
|
|
|
"connection attempts by peer " MACSTR, MAC2STR(peer_addr));
|
|
|
|
if (dev == NULL) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Peer " MACSTR
|
|
|
|
" unknown", MAC2STR(peer_addr));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
dev->status = P2P_SC_FAIL_REJECTED_BY_USER;
|
|
|
|
dev->flags |= P2P_DEV_USER_REJECTED;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-18 15:52:33 +01:00
|
|
|
const char * p2p_wps_method_text(enum p2p_wps_method method)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
|
|
|
switch (method) {
|
|
|
|
case WPS_NOT_READY:
|
|
|
|
return "not-ready";
|
|
|
|
case WPS_PIN_DISPLAY:
|
|
|
|
return "Display";
|
|
|
|
case WPS_PIN_KEYPAD:
|
|
|
|
return "Keypad";
|
|
|
|
case WPS_PBC:
|
|
|
|
return "PBC";
|
|
|
|
}
|
|
|
|
|
|
|
|
return "??";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const char * p2p_go_state_text(enum p2p_go_state go_state)
|
|
|
|
{
|
|
|
|
switch (go_state) {
|
|
|
|
case UNKNOWN_GO:
|
|
|
|
return "unknown";
|
|
|
|
case LOCAL_GO:
|
|
|
|
return "local";
|
|
|
|
case REMOTE_GO:
|
|
|
|
return "remote";
|
|
|
|
}
|
|
|
|
|
|
|
|
return "??";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-22 20:26:31 +01:00
|
|
|
const struct p2p_peer_info * p2p_get_peer_info(struct p2p_data *p2p,
|
|
|
|
const u8 *addr, int next)
|
2010-07-18 23:30:25 +02:00
|
|
|
{
|
|
|
|
struct p2p_device *dev;
|
|
|
|
|
|
|
|
if (addr)
|
|
|
|
dev = p2p_get_device(p2p, addr);
|
|
|
|
else
|
|
|
|
dev = dl_list_first(&p2p->devices, struct p2p_device, list);
|
|
|
|
|
|
|
|
if (dev && next) {
|
|
|
|
dev = dl_list_first(&dev->list, struct p2p_device, list);
|
|
|
|
if (&dev->list == &p2p->devices)
|
|
|
|
dev = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dev == NULL)
|
2011-12-22 20:26:31 +01:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return &dev->info;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_get_peer_info_txt(const struct p2p_peer_info *info,
|
|
|
|
char *buf, size_t buflen)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev;
|
|
|
|
int res;
|
|
|
|
char *pos, *end;
|
|
|
|
struct os_time now;
|
|
|
|
|
|
|
|
if (info == NULL)
|
2010-07-18 23:30:25 +02:00
|
|
|
return -1;
|
|
|
|
|
2011-12-22 20:26:31 +01:00
|
|
|
dev = (struct p2p_device *) (((u8 *) info) -
|
|
|
|
offsetof(struct p2p_device, info));
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
pos = buf;
|
|
|
|
end = buf + buflen;
|
|
|
|
|
|
|
|
os_get_time(&now);
|
|
|
|
res = os_snprintf(pos, end - pos,
|
|
|
|
"age=%d\n"
|
|
|
|
"listen_freq=%d\n"
|
|
|
|
"wps_method=%s\n"
|
|
|
|
"interface_addr=" MACSTR "\n"
|
|
|
|
"member_in_go_dev=" MACSTR "\n"
|
|
|
|
"member_in_go_iface=" MACSTR "\n"
|
|
|
|
"go_neg_req_sent=%d\n"
|
|
|
|
"go_state=%s\n"
|
|
|
|
"dialog_token=%u\n"
|
|
|
|
"intended_addr=" MACSTR "\n"
|
|
|
|
"country=%c%c\n"
|
|
|
|
"oper_freq=%d\n"
|
|
|
|
"req_config_methods=0x%x\n"
|
2010-10-27 18:36:10 +02:00
|
|
|
"flags=%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n"
|
2010-07-18 23:30:25 +02:00
|
|
|
"status=%d\n"
|
|
|
|
"wait_count=%u\n"
|
|
|
|
"invitation_reqs=%u\n",
|
|
|
|
(int) (now.sec - dev->last_seen.sec),
|
|
|
|
dev->listen_freq,
|
|
|
|
p2p_wps_method_text(dev->wps_method),
|
|
|
|
MAC2STR(dev->interface_addr),
|
|
|
|
MAC2STR(dev->member_in_go_dev),
|
|
|
|
MAC2STR(dev->member_in_go_iface),
|
|
|
|
dev->go_neg_req_sent,
|
|
|
|
p2p_go_state_text(dev->go_state),
|
|
|
|
dev->dialog_token,
|
|
|
|
MAC2STR(dev->intended_addr),
|
|
|
|
dev->country[0] ? dev->country[0] : '_',
|
|
|
|
dev->country[1] ? dev->country[1] : '_',
|
|
|
|
dev->oper_freq,
|
|
|
|
dev->req_config_methods,
|
|
|
|
dev->flags & P2P_DEV_PROBE_REQ_ONLY ?
|
|
|
|
"[PROBE_REQ_ONLY]" : "",
|
|
|
|
dev->flags & P2P_DEV_REPORTED ? "[REPORTED]" : "",
|
|
|
|
dev->flags & P2P_DEV_NOT_YET_READY ?
|
|
|
|
"[NOT_YET_READY]" : "",
|
|
|
|
dev->flags & P2P_DEV_SD_INFO ? "[SD_INFO]" : "",
|
|
|
|
dev->flags & P2P_DEV_SD_SCHEDULE ? "[SD_SCHEDULE]" :
|
|
|
|
"",
|
|
|
|
dev->flags & P2P_DEV_PD_PEER_DISPLAY ?
|
|
|
|
"[PD_PEER_DISPLAY]" : "",
|
|
|
|
dev->flags & P2P_DEV_PD_PEER_KEYPAD ?
|
|
|
|
"[PD_PEER_KEYPAD]" : "",
|
|
|
|
dev->flags & P2P_DEV_USER_REJECTED ?
|
|
|
|
"[USER_REJECTED]" : "",
|
|
|
|
dev->flags & P2P_DEV_PEER_WAITING_RESPONSE ?
|
|
|
|
"[PEER_WAITING_RESPONSE]" : "",
|
|
|
|
dev->flags & P2P_DEV_PREFER_PERSISTENT_GROUP ?
|
|
|
|
"[PREFER_PERSISTENT_GROUP]" : "",
|
|
|
|
dev->flags & P2P_DEV_WAIT_GO_NEG_RESPONSE ?
|
|
|
|
"[WAIT_GO_NEG_RESPONSE]" : "",
|
|
|
|
dev->flags & P2P_DEV_WAIT_GO_NEG_CONFIRM ?
|
|
|
|
"[WAIT_GO_NEG_CONFIRM]" : "",
|
|
|
|
dev->flags & P2P_DEV_GROUP_CLIENT_ONLY ?
|
|
|
|
"[GROUP_CLIENT_ONLY]" : "",
|
2010-07-02 17:27:00 +02:00
|
|
|
dev->flags & P2P_DEV_FORCE_FREQ ?
|
2010-10-27 18:36:10 +02:00
|
|
|
"[FORCE_FREQ]" : "",
|
|
|
|
dev->flags & P2P_DEV_PD_FOR_JOIN ?
|
|
|
|
"[PD_FOR_JOIN]" : "",
|
2010-07-18 23:30:25 +02:00
|
|
|
dev->status,
|
|
|
|
dev->wait_count,
|
|
|
|
dev->invitation_reqs);
|
|
|
|
if (res < 0 || res >= end - pos)
|
|
|
|
return pos - buf;
|
|
|
|
pos += res;
|
|
|
|
|
|
|
|
if (dev->ext_listen_period) {
|
|
|
|
res = os_snprintf(pos, end - pos,
|
|
|
|
"ext_listen_period=%u\n"
|
|
|
|
"ext_listen_interval=%u\n",
|
|
|
|
dev->ext_listen_period,
|
|
|
|
dev->ext_listen_interval);
|
|
|
|
if (res < 0 || res >= end - pos)
|
|
|
|
return pos - buf;
|
|
|
|
pos += res;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dev->oper_ssid_len) {
|
|
|
|
res = os_snprintf(pos, end - pos,
|
|
|
|
"oper_ssid=%s\n",
|
|
|
|
wpa_ssid_txt(dev->oper_ssid,
|
|
|
|
dev->oper_ssid_len));
|
|
|
|
if (res < 0 || res >= end - pos)
|
|
|
|
return pos - buf;
|
|
|
|
pos += res;
|
|
|
|
}
|
|
|
|
|
2012-03-02 16:26:01 +01:00
|
|
|
#ifdef CONFIG_WIFI_DISPLAY
|
|
|
|
if (dev->info.wfd_subelems) {
|
|
|
|
res = os_snprintf(pos, end - pos, "wfd_subelems=");
|
|
|
|
if (res < 0 || res >= end - pos)
|
|
|
|
return pos - buf;
|
|
|
|
pos += res;
|
|
|
|
|
|
|
|
pos += wpa_snprintf_hex(pos, end - pos,
|
|
|
|
wpabuf_head(dev->info.wfd_subelems),
|
|
|
|
wpabuf_len(dev->info.wfd_subelems));
|
|
|
|
|
|
|
|
res = os_snprintf(pos, end - pos, "\n");
|
|
|
|
if (res < 0 || res >= end - pos)
|
|
|
|
return pos - buf;
|
|
|
|
pos += res;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_WIFI_DISPLAY */
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
return pos - buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-22 20:04:41 +01:00
|
|
|
int p2p_peer_known(struct p2p_data *p2p, const u8 *addr)
|
|
|
|
{
|
|
|
|
return p2p_get_device(p2p, addr) != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
void p2p_set_client_discoverability(struct p2p_data *p2p, int enabled)
|
|
|
|
{
|
|
|
|
if (enabled) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Client "
|
|
|
|
"discoverability enabled");
|
|
|
|
p2p->dev_capab |= P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY;
|
|
|
|
} else {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Client "
|
|
|
|
"discoverability disabled");
|
|
|
|
p2p->dev_capab &= ~P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct wpabuf * p2p_build_presence_req(u32 duration1, u32 interval1,
|
|
|
|
u32 duration2, u32 interval2)
|
|
|
|
{
|
|
|
|
struct wpabuf *req;
|
|
|
|
struct p2p_noa_desc desc1, desc2, *ptr1 = NULL, *ptr2 = NULL;
|
|
|
|
u8 *len;
|
|
|
|
|
|
|
|
req = wpabuf_alloc(100);
|
|
|
|
if (req == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (duration1 || interval1) {
|
|
|
|
os_memset(&desc1, 0, sizeof(desc1));
|
|
|
|
desc1.count_type = 1;
|
|
|
|
desc1.duration = duration1;
|
|
|
|
desc1.interval = interval1;
|
|
|
|
ptr1 = &desc1;
|
|
|
|
|
|
|
|
if (duration2 || interval2) {
|
|
|
|
os_memset(&desc2, 0, sizeof(desc2));
|
|
|
|
desc2.count_type = 2;
|
|
|
|
desc2.duration = duration2;
|
|
|
|
desc2.interval = interval2;
|
|
|
|
ptr2 = &desc2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
p2p_buf_add_action_hdr(req, P2P_PRESENCE_REQ, 1);
|
|
|
|
len = p2p_buf_add_ie_hdr(req);
|
|
|
|
p2p_buf_add_noa(req, 0, 0, 0, ptr1, ptr2);
|
|
|
|
p2p_buf_update_ie_hdr(req, len);
|
|
|
|
|
|
|
|
return req;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_presence_req(struct p2p_data *p2p, const u8 *go_interface_addr,
|
|
|
|
const u8 *own_interface_addr, unsigned int freq,
|
|
|
|
u32 duration1, u32 interval1, u32 duration2,
|
|
|
|
u32 interval2)
|
|
|
|
{
|
|
|
|
struct wpabuf *req;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Send Presence Request to "
|
|
|
|
"GO " MACSTR " (own interface " MACSTR ") freq=%u dur1=%u "
|
|
|
|
"int1=%u dur2=%u int2=%u",
|
|
|
|
MAC2STR(go_interface_addr), MAC2STR(own_interface_addr),
|
|
|
|
freq, duration1, interval1, duration2, interval2);
|
|
|
|
|
|
|
|
req = p2p_build_presence_req(duration1, interval1, duration2,
|
|
|
|
interval2);
|
|
|
|
if (req == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
p2p->pending_action_state = P2P_NO_PENDING_ACTION;
|
2010-10-20 18:41:20 +02:00
|
|
|
if (p2p_send_action(p2p, freq, go_interface_addr, own_interface_addr,
|
|
|
|
go_interface_addr,
|
|
|
|
wpabuf_head(req), wpabuf_len(req), 200) < 0) {
|
2010-07-18 23:30:25 +02:00
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Failed to send Action frame");
|
|
|
|
}
|
|
|
|
wpabuf_free(req);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct wpabuf * p2p_build_presence_resp(u8 status, const u8 *noa,
|
|
|
|
size_t noa_len, u8 dialog_token)
|
|
|
|
{
|
|
|
|
struct wpabuf *resp;
|
|
|
|
u8 *len;
|
|
|
|
|
|
|
|
resp = wpabuf_alloc(100 + noa_len);
|
|
|
|
if (resp == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
p2p_buf_add_action_hdr(resp, P2P_PRESENCE_RESP, dialog_token);
|
|
|
|
len = p2p_buf_add_ie_hdr(resp);
|
|
|
|
p2p_buf_add_status(resp, status);
|
|
|
|
if (noa) {
|
|
|
|
wpabuf_put_u8(resp, P2P_ATTR_NOTICE_OF_ABSENCE);
|
|
|
|
wpabuf_put_le16(resp, noa_len);
|
|
|
|
wpabuf_put_data(resp, noa, noa_len);
|
|
|
|
} else
|
|
|
|
p2p_buf_add_noa(resp, 0, 0, 0, NULL, NULL);
|
|
|
|
p2p_buf_update_ie_hdr(resp, len);
|
|
|
|
|
|
|
|
return resp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_process_presence_req(struct p2p_data *p2p, const u8 *da,
|
|
|
|
const u8 *sa, const u8 *data, size_t len,
|
|
|
|
int rx_freq)
|
|
|
|
{
|
|
|
|
struct p2p_message msg;
|
|
|
|
u8 status;
|
|
|
|
struct wpabuf *resp;
|
|
|
|
size_t g;
|
|
|
|
struct p2p_group *group = NULL;
|
|
|
|
int parsed = 0;
|
|
|
|
u8 noa[50];
|
|
|
|
int noa_len;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Received P2P Action - P2P Presence Request");
|
|
|
|
|
|
|
|
for (g = 0; g < p2p->num_groups; g++) {
|
|
|
|
if (os_memcmp(da, p2p_group_get_interface_addr(p2p->groups[g]),
|
|
|
|
ETH_ALEN) == 0) {
|
|
|
|
group = p2p->groups[g];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (group == NULL) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Ignore P2P Presence Request for unknown group "
|
|
|
|
MACSTR, MAC2STR(da));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p2p_parse(data, len, &msg) < 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Failed to parse P2P Presence Request");
|
|
|
|
status = P2P_SC_FAIL_INVALID_PARAMS;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
parsed = 1;
|
|
|
|
|
|
|
|
if (msg.noa == NULL) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: No NoA attribute in P2P Presence Request");
|
|
|
|
status = P2P_SC_FAIL_INVALID_PARAMS;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = p2p_group_presence_req(group, sa, msg.noa, msg.noa_len);
|
|
|
|
|
|
|
|
fail:
|
|
|
|
if (p2p->cfg->get_noa)
|
|
|
|
noa_len = p2p->cfg->get_noa(p2p->cfg->cb_ctx, da, noa,
|
|
|
|
sizeof(noa));
|
|
|
|
else
|
|
|
|
noa_len = -1;
|
|
|
|
resp = p2p_build_presence_resp(status, noa_len > 0 ? noa : NULL,
|
|
|
|
noa_len > 0 ? noa_len : 0,
|
|
|
|
msg.dialog_token);
|
|
|
|
if (parsed)
|
|
|
|
p2p_parse_free(&msg);
|
|
|
|
if (resp == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
p2p->pending_action_state = P2P_NO_PENDING_ACTION;
|
2010-10-20 18:41:20 +02:00
|
|
|
if (p2p_send_action(p2p, rx_freq, sa, da, da,
|
|
|
|
wpabuf_head(resp), wpabuf_len(resp), 200) < 0) {
|
2010-07-18 23:30:25 +02:00
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Failed to send Action frame");
|
|
|
|
}
|
|
|
|
wpabuf_free(resp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_process_presence_resp(struct p2p_data *p2p, const u8 *da,
|
|
|
|
const u8 *sa, const u8 *data, size_t len)
|
|
|
|
{
|
|
|
|
struct p2p_message msg;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Received P2P Action - P2P Presence Response");
|
|
|
|
|
|
|
|
if (p2p_parse(data, len, &msg) < 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Failed to parse P2P Presence Response");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg.status == NULL || msg.noa == NULL) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: No Status or NoA attribute in P2P Presence "
|
|
|
|
"Response");
|
|
|
|
p2p_parse_free(&msg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*msg.status) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: P2P Presence Request was rejected: status %u",
|
|
|
|
*msg.status);
|
|
|
|
p2p_parse_free(&msg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: P2P Presence Request was accepted");
|
|
|
|
wpa_hexdump(MSG_DEBUG, "P2P: P2P Presence Response - NoA",
|
|
|
|
msg.noa, msg.noa_len);
|
|
|
|
/* TODO: process NoA */
|
|
|
|
p2p_parse_free(&msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void p2p_ext_listen_timeout(void *eloop_ctx, void *timeout_ctx)
|
|
|
|
{
|
|
|
|
struct p2p_data *p2p = eloop_ctx;
|
|
|
|
|
|
|
|
if (p2p->ext_listen_interval) {
|
|
|
|
/* Schedule next extended listen timeout */
|
|
|
|
eloop_register_timeout(p2p->ext_listen_interval_sec,
|
|
|
|
p2p->ext_listen_interval_usec,
|
|
|
|
p2p_ext_listen_timeout, p2p, NULL);
|
|
|
|
}
|
|
|
|
|
2010-08-04 18:02:27 +02:00
|
|
|
if (p2p->state == P2P_LISTEN_ONLY && p2p->ext_listen_only) {
|
|
|
|
/*
|
|
|
|
* This should not really happen, but it looks like the Listen
|
|
|
|
* command may fail is something else (e.g., a scan) was
|
|
|
|
* running at an inconvenient time. As a workaround, allow new
|
|
|
|
* Extended Listen operation to be started.
|
|
|
|
*/
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Previous "
|
|
|
|
"Extended Listen operation had not been completed - "
|
|
|
|
"try again");
|
|
|
|
p2p->ext_listen_only = 0;
|
|
|
|
p2p_set_state(p2p, P2P_IDLE);
|
|
|
|
}
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
if (p2p->state != P2P_IDLE) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Skip Extended "
|
|
|
|
"Listen timeout in active state (%s)",
|
|
|
|
p2p_state_txt(p2p->state));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Extended Listen timeout");
|
|
|
|
p2p->ext_listen_only = 1;
|
|
|
|
if (p2p_listen(p2p, p2p->ext_listen_period) < 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Failed to start "
|
|
|
|
"Listen state for Extended Listen Timing");
|
|
|
|
p2p->ext_listen_only = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_ext_listen(struct p2p_data *p2p, unsigned int period,
|
|
|
|
unsigned int interval)
|
|
|
|
{
|
|
|
|
if (period > 65535 || interval > 65535 || period > interval ||
|
|
|
|
(period == 0 && interval > 0) || (period > 0 && interval == 0)) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Invalid Extended Listen Timing request: "
|
|
|
|
"period=%u interval=%u", period, interval);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
eloop_cancel_timeout(p2p_ext_listen_timeout, p2p, NULL);
|
|
|
|
|
|
|
|
if (interval == 0) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Disabling Extended Listen Timing");
|
|
|
|
p2p->ext_listen_period = 0;
|
|
|
|
p2p->ext_listen_interval = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
|
|
|
|
"P2P: Enabling Extended Listen Timing: period %u msec, "
|
|
|
|
"interval %u msec", period, interval);
|
|
|
|
p2p->ext_listen_period = period;
|
|
|
|
p2p->ext_listen_interval = interval;
|
|
|
|
p2p->ext_listen_interval_sec = interval / 1000;
|
|
|
|
p2p->ext_listen_interval_usec = (interval % 1000) * 1000;
|
|
|
|
|
|
|
|
eloop_register_timeout(p2p->ext_listen_interval_sec,
|
|
|
|
p2p->ext_listen_interval_usec,
|
|
|
|
p2p_ext_listen_timeout, p2p, NULL);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_deauth_notif(struct p2p_data *p2p, const u8 *bssid, u16 reason_code,
|
|
|
|
const u8 *ie, size_t ie_len)
|
|
|
|
{
|
|
|
|
struct p2p_message msg;
|
|
|
|
|
|
|
|
if (bssid == NULL || ie == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
os_memset(&msg, 0, sizeof(msg));
|
|
|
|
if (p2p_parse_ies(ie, ie_len, &msg))
|
|
|
|
return;
|
|
|
|
if (msg.minor_reason_code == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_INFO,
|
|
|
|
"P2P: Deauthentication notification BSSID " MACSTR
|
|
|
|
" reason_code=%u minor_reason_code=%u",
|
|
|
|
MAC2STR(bssid), reason_code, *msg.minor_reason_code);
|
|
|
|
|
|
|
|
p2p_parse_free(&msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_disassoc_notif(struct p2p_data *p2p, const u8 *bssid, u16 reason_code,
|
|
|
|
const u8 *ie, size_t ie_len)
|
|
|
|
{
|
|
|
|
struct p2p_message msg;
|
|
|
|
|
|
|
|
if (bssid == NULL || ie == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
os_memset(&msg, 0, sizeof(msg));
|
|
|
|
if (p2p_parse_ies(ie, ie_len, &msg))
|
|
|
|
return;
|
|
|
|
if (msg.minor_reason_code == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_INFO,
|
|
|
|
"P2P: Disassociation notification BSSID " MACSTR
|
|
|
|
" reason_code=%u minor_reason_code=%u",
|
|
|
|
MAC2STR(bssid), reason_code, *msg.minor_reason_code);
|
|
|
|
|
|
|
|
p2p_parse_free(&msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void p2p_set_managed_oper(struct p2p_data *p2p, int enabled)
|
|
|
|
{
|
|
|
|
if (enabled) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Managed P2P "
|
|
|
|
"Device operations enabled");
|
|
|
|
p2p->dev_capab |= P2P_DEV_CAPAB_INFRA_MANAGED;
|
|
|
|
} else {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Managed P2P "
|
|
|
|
"Device operations disabled");
|
|
|
|
p2p->dev_capab &= ~P2P_DEV_CAPAB_INFRA_MANAGED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_listen_channel(struct p2p_data *p2p, u8 reg_class, u8 channel)
|
|
|
|
{
|
|
|
|
if (p2p_channel_to_freq(p2p->cfg->country, reg_class, channel) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Set Listen channel: "
|
|
|
|
"reg_class %u channel %u", reg_class, channel);
|
|
|
|
p2p->cfg->reg_class = reg_class;
|
|
|
|
p2p->cfg->channel = channel;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_ssid_postfix(struct p2p_data *p2p, const u8 *postfix, size_t len)
|
|
|
|
{
|
|
|
|
wpa_hexdump_ascii(MSG_DEBUG, "P2P: New SSID postfix", postfix, len);
|
|
|
|
if (postfix == NULL) {
|
|
|
|
p2p->cfg->ssid_postfix_len = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (len > sizeof(p2p->cfg->ssid_postfix))
|
|
|
|
return -1;
|
|
|
|
os_memcpy(p2p->cfg->ssid_postfix, postfix, len);
|
|
|
|
p2p->cfg->ssid_postfix_len = len;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-25 11:08:43 +02:00
|
|
|
int p2p_set_oper_channel(struct p2p_data *p2p, u8 op_reg_class, u8 op_channel,
|
|
|
|
int cfg_op_channel)
|
|
|
|
{
|
|
|
|
if (p2p_channel_to_freq(p2p->cfg->country, op_reg_class, op_channel)
|
|
|
|
< 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_INFO, "P2P: Set Operating channel: "
|
|
|
|
"reg_class %u channel %u", op_reg_class, op_channel);
|
|
|
|
p2p->cfg->op_reg_class = op_reg_class;
|
|
|
|
p2p->cfg->op_channel = op_channel;
|
|
|
|
p2p->cfg->cfg_op_channel = cfg_op_channel;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-29 20:28:34 +02:00
|
|
|
int p2p_set_pref_chan(struct p2p_data *p2p, unsigned int num_pref_chan,
|
|
|
|
const struct p2p_channel *pref_chan)
|
|
|
|
{
|
|
|
|
struct p2p_channel *n;
|
|
|
|
|
|
|
|
if (pref_chan) {
|
|
|
|
n = os_malloc(num_pref_chan * sizeof(struct p2p_channel));
|
|
|
|
if (n == NULL)
|
|
|
|
return -1;
|
|
|
|
os_memcpy(n, pref_chan,
|
|
|
|
num_pref_chan * sizeof(struct p2p_channel));
|
|
|
|
} else
|
|
|
|
n = NULL;
|
|
|
|
|
|
|
|
os_free(p2p->cfg->pref_chan);
|
|
|
|
p2p->cfg->pref_chan = n;
|
|
|
|
p2p->cfg->num_pref_chan = num_pref_chan;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
int p2p_get_interface_addr(struct p2p_data *p2p, const u8 *dev_addr,
|
|
|
|
u8 *iface_addr)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev = p2p_get_device(p2p, dev_addr);
|
|
|
|
if (dev == NULL || is_zero_ether_addr(dev->interface_addr))
|
|
|
|
return -1;
|
|
|
|
os_memcpy(iface_addr, dev->interface_addr, ETH_ALEN);
|
|
|
|
return 0;
|
|
|
|
}
|
2010-06-29 07:11:39 +02:00
|
|
|
|
|
|
|
|
2010-07-10 22:07:08 +02:00
|
|
|
int p2p_get_dev_addr(struct p2p_data *p2p, const u8 *iface_addr,
|
|
|
|
u8 *dev_addr)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev = p2p_get_device_interface(p2p, iface_addr);
|
|
|
|
if (dev == NULL)
|
|
|
|
return -1;
|
2011-02-24 20:51:17 +01:00
|
|
|
os_memcpy(dev_addr, dev->info.p2p_device_addr, ETH_ALEN);
|
2010-07-10 22:07:08 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-29 07:11:39 +02:00
|
|
|
void p2p_set_peer_filter(struct p2p_data *p2p, const u8 *addr)
|
|
|
|
{
|
|
|
|
os_memcpy(p2p->peer_filter, addr, ETH_ALEN);
|
|
|
|
if (is_zero_ether_addr(p2p->peer_filter))
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Disable peer "
|
|
|
|
"filter");
|
|
|
|
else
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Enable peer "
|
|
|
|
"filter for " MACSTR, MAC2STR(p2p->peer_filter));
|
|
|
|
}
|
2010-07-10 19:19:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
void p2p_set_cross_connect(struct p2p_data *p2p, int enabled)
|
|
|
|
{
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Cross connection %s",
|
|
|
|
enabled ? "enabled" : "disabled");
|
|
|
|
if (p2p->cross_connect == enabled)
|
|
|
|
return;
|
|
|
|
p2p->cross_connect = enabled;
|
|
|
|
/* TODO: may need to tear down any action group where we are GO(?) */
|
|
|
|
}
|
2010-08-05 01:00:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
int p2p_get_oper_freq(struct p2p_data *p2p, const u8 *iface_addr)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev = p2p_get_device_interface(p2p, iface_addr);
|
|
|
|
if (dev == NULL)
|
|
|
|
return -1;
|
|
|
|
if (dev->oper_freq <= 0)
|
|
|
|
return -1;
|
|
|
|
return dev->oper_freq;
|
|
|
|
}
|
2010-09-08 20:18:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
void p2p_set_intra_bss_dist(struct p2p_data *p2p, int enabled)
|
|
|
|
{
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Intra BSS distribution %s",
|
|
|
|
enabled ? "enabled" : "disabled");
|
|
|
|
p2p->cfg->p2p_intra_bss = enabled;
|
|
|
|
}
|
2010-10-15 17:55:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
void p2p_update_channel_list(struct p2p_data *p2p, struct p2p_channels *chan)
|
|
|
|
{
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Update channel list");
|
|
|
|
os_memcpy(&p2p->cfg->channels, chan, sizeof(struct p2p_channels));
|
|
|
|
}
|
2010-10-20 18:41:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
int p2p_send_action(struct p2p_data *p2p, unsigned int freq, const u8 *dst,
|
|
|
|
const u8 *src, const u8 *bssid, const u8 *buf,
|
|
|
|
size_t len, unsigned int wait_time)
|
|
|
|
{
|
|
|
|
if (p2p->p2p_scan_running) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Delay Action "
|
|
|
|
"frame TX until p2p_scan completes");
|
|
|
|
if (p2p->after_scan_tx) {
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Dropped "
|
|
|
|
"previous pending Action frame TX");
|
|
|
|
os_free(p2p->after_scan_tx);
|
|
|
|
}
|
|
|
|
p2p->after_scan_tx = os_malloc(sizeof(*p2p->after_scan_tx) +
|
|
|
|
len);
|
|
|
|
if (p2p->after_scan_tx == NULL)
|
|
|
|
return -1;
|
|
|
|
p2p->after_scan_tx->freq = freq;
|
|
|
|
os_memcpy(p2p->after_scan_tx->dst, dst, ETH_ALEN);
|
|
|
|
os_memcpy(p2p->after_scan_tx->src, src, ETH_ALEN);
|
|
|
|
os_memcpy(p2p->after_scan_tx->bssid, bssid, ETH_ALEN);
|
|
|
|
p2p->after_scan_tx->len = len;
|
|
|
|
p2p->after_scan_tx->wait_time = wait_time;
|
|
|
|
os_memcpy(p2p->after_scan_tx + 1, buf, len);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return p2p->cfg->send_action(p2p->cfg->cb_ctx, freq, dst, src, bssid,
|
|
|
|
buf, len, wait_time);
|
|
|
|
}
|
2010-11-10 12:33:47 +01:00
|
|
|
|
|
|
|
|
|
|
|
void p2p_set_best_channels(struct p2p_data *p2p, int freq_24, int freq_5,
|
|
|
|
int freq_overall)
|
|
|
|
{
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Best channel: 2.4 GHz: %d,"
|
|
|
|
" 5 GHz: %d, overall: %d", freq_24, freq_5, freq_overall);
|
|
|
|
p2p->best_freq_24 = freq_24;
|
|
|
|
p2p->best_freq_5 = freq_5;
|
|
|
|
p2p->best_freq_overall = freq_overall;
|
|
|
|
}
|
2010-12-17 14:05:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
const u8 * p2p_get_go_neg_peer(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
if (p2p == NULL || p2p->go_neg_peer == NULL)
|
|
|
|
return NULL;
|
2011-02-24 20:51:17 +01:00
|
|
|
return p2p->go_neg_peer->info.p2p_device_addr;
|
2010-12-17 14:05:35 +01:00
|
|
|
}
|
2011-02-24 21:05:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
const struct p2p_peer_info *
|
|
|
|
p2p_get_peer_found(struct p2p_data *p2p, const u8 *addr, int next)
|
|
|
|
{
|
|
|
|
struct p2p_device *dev;
|
|
|
|
|
|
|
|
if (addr) {
|
|
|
|
dev = p2p_get_device(p2p, addr);
|
|
|
|
if (!dev)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!next) {
|
|
|
|
if (dev->flags & P2P_DEV_PROBE_REQ_ONLY)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return &dev->info;
|
|
|
|
} else {
|
|
|
|
do {
|
|
|
|
dev = dl_list_first(&dev->list,
|
|
|
|
struct p2p_device,
|
|
|
|
list);
|
|
|
|
if (&dev->list == &p2p->devices)
|
|
|
|
return NULL;
|
|
|
|
} while (dev->flags & P2P_DEV_PROBE_REQ_ONLY);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dev = dl_list_first(&p2p->devices, struct p2p_device, list);
|
|
|
|
if (!dev)
|
|
|
|
return NULL;
|
|
|
|
while (dev->flags & P2P_DEV_PROBE_REQ_ONLY) {
|
|
|
|
dev = dl_list_first(&dev->list,
|
|
|
|
struct p2p_device,
|
|
|
|
list);
|
|
|
|
if (&dev->list == &p2p->devices)
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &dev->info;
|
|
|
|
}
|
2011-09-29 15:53:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
int p2p_in_progress(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
if (p2p == NULL)
|
|
|
|
return 0;
|
2012-08-23 18:42:53 +02:00
|
|
|
if (p2p->state == P2P_SEARCH || p2p->state == P2P_SEARCH_WHEN_READY ||
|
|
|
|
p2p->state == P2P_CONTINUE_SEARCH_WHEN_READY)
|
|
|
|
return 2;
|
2011-09-29 20:48:07 +02:00
|
|
|
return p2p->state != P2P_IDLE && p2p->state != P2P_PROVISIONING;
|
2011-09-29 15:53:55 +02:00
|
|
|
}
|
2012-08-15 22:19:11 +02:00
|
|
|
|
|
|
|
|
|
|
|
void p2p_set_config_timeout(struct p2p_data *p2p, u8 go_timeout,
|
|
|
|
u8 client_timeout)
|
|
|
|
{
|
|
|
|
if (p2p) {
|
|
|
|
p2p->go_timeout = go_timeout;
|
|
|
|
p2p->client_timeout = client_timeout;
|
|
|
|
}
|
|
|
|
}
|
2012-08-23 18:42:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
void p2p_increase_search_delay(struct p2p_data *p2p, unsigned int delay)
|
|
|
|
{
|
|
|
|
if (p2p && p2p->search_delay < delay)
|
|
|
|
p2p->search_delay = delay;
|
|
|
|
}
|
2012-03-02 16:26:01 +01:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_WIFI_DISPLAY
|
|
|
|
|
|
|
|
static void p2p_update_wfd_ie_groups(struct p2p_data *p2p)
|
|
|
|
{
|
|
|
|
size_t g;
|
|
|
|
struct p2p_group *group;
|
|
|
|
|
|
|
|
for (g = 0; g < p2p->num_groups; g++) {
|
|
|
|
group = p2p->groups[g];
|
|
|
|
p2p_group_update_ies(group);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_wfd_ie_beacon(struct p2p_data *p2p, struct wpabuf *ie)
|
|
|
|
{
|
|
|
|
wpabuf_free(p2p->wfd_ie_beacon);
|
|
|
|
p2p->wfd_ie_beacon = ie;
|
|
|
|
p2p_update_wfd_ie_groups(p2p);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_wfd_ie_probe_req(struct p2p_data *p2p, struct wpabuf *ie)
|
|
|
|
{
|
|
|
|
wpabuf_free(p2p->wfd_ie_probe_req);
|
|
|
|
p2p->wfd_ie_probe_req = ie;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_wfd_ie_probe_resp(struct p2p_data *p2p, struct wpabuf *ie)
|
|
|
|
{
|
|
|
|
wpabuf_free(p2p->wfd_ie_probe_resp);
|
|
|
|
p2p->wfd_ie_probe_resp = ie;
|
|
|
|
p2p_update_wfd_ie_groups(p2p);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_wfd_ie_assoc_req(struct p2p_data *p2p, struct wpabuf *ie)
|
|
|
|
{
|
|
|
|
wpabuf_free(p2p->wfd_ie_assoc_req);
|
|
|
|
p2p->wfd_ie_assoc_req = ie;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_wfd_ie_invitation(struct p2p_data *p2p, struct wpabuf *ie)
|
|
|
|
{
|
|
|
|
wpabuf_free(p2p->wfd_ie_invitation);
|
|
|
|
p2p->wfd_ie_invitation = ie;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_wfd_ie_prov_disc_req(struct p2p_data *p2p, struct wpabuf *ie)
|
|
|
|
{
|
|
|
|
wpabuf_free(p2p->wfd_ie_prov_disc_req);
|
|
|
|
p2p->wfd_ie_prov_disc_req = ie;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_wfd_ie_prov_disc_resp(struct p2p_data *p2p, struct wpabuf *ie)
|
|
|
|
{
|
|
|
|
wpabuf_free(p2p->wfd_ie_prov_disc_resp);
|
|
|
|
p2p->wfd_ie_prov_disc_resp = ie;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_wfd_ie_go_neg(struct p2p_data *p2p, struct wpabuf *ie)
|
|
|
|
{
|
|
|
|
wpabuf_free(p2p->wfd_ie_go_neg);
|
|
|
|
p2p->wfd_ie_go_neg = ie;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_wfd_dev_info(struct p2p_data *p2p, const struct wpabuf *elem)
|
|
|
|
{
|
|
|
|
wpabuf_free(p2p->wfd_dev_info);
|
|
|
|
if (elem) {
|
|
|
|
p2p->wfd_dev_info = wpabuf_dup(elem);
|
|
|
|
if (p2p->wfd_dev_info == NULL)
|
|
|
|
return -1;
|
|
|
|
} else
|
|
|
|
p2p->wfd_dev_info = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_wfd_assoc_bssid(struct p2p_data *p2p, const struct wpabuf *elem)
|
|
|
|
{
|
|
|
|
wpabuf_free(p2p->wfd_assoc_bssid);
|
|
|
|
if (elem) {
|
|
|
|
p2p->wfd_assoc_bssid = wpabuf_dup(elem);
|
|
|
|
if (p2p->wfd_assoc_bssid == NULL)
|
|
|
|
return -1;
|
|
|
|
} else
|
|
|
|
p2p->wfd_assoc_bssid = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_wfd_coupled_sink_info(struct p2p_data *p2p,
|
|
|
|
const struct wpabuf *elem)
|
|
|
|
{
|
|
|
|
wpabuf_free(p2p->wfd_coupled_sink_info);
|
|
|
|
if (elem) {
|
|
|
|
p2p->wfd_coupled_sink_info = wpabuf_dup(elem);
|
|
|
|
if (p2p->wfd_coupled_sink_info == NULL)
|
|
|
|
return -1;
|
|
|
|
} else
|
|
|
|
p2p->wfd_coupled_sink_info = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_WIFI_DISPLAY */
|
2012-10-30 14:12:04 +01:00
|
|
|
|
|
|
|
|
|
|
|
int p2p_set_disc_int(struct p2p_data *p2p, int min_disc_int, int max_disc_int,
|
|
|
|
int max_disc_tu)
|
|
|
|
{
|
|
|
|
if (min_disc_int > max_disc_int || min_disc_int < 0 || max_disc_int < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
p2p->min_disc_int = min_disc_int;
|
|
|
|
p2p->max_disc_int = max_disc_int;
|
|
|
|
p2p->max_disc_tu = max_disc_tu;
|
|
|
|
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG, "P2P: Set discoverable interval: "
|
|
|
|
"min=%d max=%d max_tu=%d", min_disc_int, max_disc_int,
|
|
|
|
max_disc_tu);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|