| /* |
| * Wi-Fi Direct - P2P module |
| * Copyright (c) 2009-2010, Atheros Communications |
| * |
| * This software may be distributed under the terms of the BSD license. |
| * See README for more details. |
| */ |
| |
| #include "includes.h" |
| |
| #include <log/log.h> |
| #include "common.h" |
| #include "eloop.h" |
| #include "common/defs.h" |
| #include "common/ieee802_11_defs.h" |
| #include "common/ieee802_11_common.h" |
| #include "common/wpa_ctrl.h" |
| #include "crypto/sha256.h" |
| #include "crypto/crypto.h" |
| #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); |
| static void p2p_scan_timeout(void *eloop_ctx, void *timeout_ctx); |
| |
| |
| /* |
| * 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 |
| |
| /** |
| * P2P_PEER_EXPIRATION_AGE - Number of seconds after which inactive peer |
| * entries will be removed |
| */ |
| #ifndef P2P_PEER_EXPIRATION_AGE |
| #define P2P_PEER_EXPIRATION_AGE 60 |
| #endif /* P2P_PEER_EXPIRATION_AGE */ |
| |
| |
| void p2p_expire_peers(struct p2p_data *p2p) |
| { |
| struct p2p_device *dev, *n; |
| struct os_reltime now; |
| size_t i; |
| |
| os_get_reltime(&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; |
| |
| if (dev == p2p->go_neg_peer) { |
| /* |
| * GO Negotiation is in progress with the peer, so |
| * don't expire the peer entry until GO Negotiation |
| * fails or times out. |
| */ |
| continue; |
| } |
| |
| 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_reltime(&dev->last_seen); |
| continue; |
| } |
| |
| 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_reltime(&dev->last_seen); |
| continue; |
| } |
| |
| p2p_dbg(p2p, "Expiring old peer entry " MACSTR, |
| MAC2STR(dev->info.p2p_device_addr)); |
| dl_list_del(&dev->list); |
| p2p_device_free(p2p, dev); |
| } |
| } |
| |
| |
| 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"; |
| default: |
| return "?"; |
| } |
| } |
| |
| |
| const char * p2p_get_state_txt(struct p2p_data *p2p) |
| { |
| return p2p_state_txt(p2p->state); |
| } |
| |
| |
| struct p2ps_advertisement * p2p_get_p2ps_adv_list(struct p2p_data *p2p) |
| { |
| return p2p ? p2p->p2ps_adv_list : NULL; |
| } |
| |
| |
| void p2p_set_intended_addr(struct p2p_data *p2p, const u8 *intended_addr) |
| { |
| if (p2p && intended_addr) |
| os_memcpy(p2p->intended_addr, intended_addr, ETH_ALEN); |
| } |
| |
| |
| 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; |
| } |
| |
| |
| void p2p_clear_provisioning_info(struct p2p_data *p2p, const u8 *addr) |
| { |
| struct p2p_device *dev = NULL; |
| |
| if (!addr || !p2p) |
| return; |
| |
| dev = p2p_get_device(p2p, addr); |
| if (dev) |
| dev->wps_prov_info = 0; |
| } |
| |
| |
| void p2p_set_state(struct p2p_data *p2p, int new_state) |
| { |
| p2p_dbg(p2p, "State %s -> %s", |
| p2p_state_txt(p2p->state), p2p_state_txt(new_state)); |
| p2p->state = new_state; |
| |
| if (new_state == P2P_IDLE && p2p->pending_channel) { |
| p2p_dbg(p2p, "Apply change in listen channel"); |
| p2p->cfg->reg_class = p2p->pending_reg_class; |
| p2p->cfg->channel = p2p->pending_channel; |
| p2p->pending_reg_class = 0; |
| p2p->pending_channel = 0; |
| } |
| } |
| |
| |
| void p2p_set_timeout(struct p2p_data *p2p, unsigned int sec, unsigned int usec) |
| { |
| p2p_dbg(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) |
| { |
| p2p_dbg(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, int status) |
| { |
| struct p2p_go_neg_results res; |
| struct p2p_device *peer = p2p->go_neg_peer; |
| |
| if (!peer) |
| return; |
| |
| eloop_cancel_timeout(p2p_go_neg_wait_timeout, p2p, NULL); |
| if (p2p->state != P2P_SEARCH) { |
| /* |
| * Clear timeouts related to GO Negotiation if no new p2p_find |
| * has been started. |
| */ |
| p2p_clear_timeout(p2p); |
| p2p_set_state(p2p, P2P_IDLE); |
| } |
| |
| peer->flags &= ~P2P_DEV_PEER_WAITING_RESPONSE; |
| peer->wps_method = WPS_NOT_READY; |
| peer->oob_pw_id = 0; |
| wpabuf_free(peer->go_neg_conf); |
| peer->go_neg_conf = NULL; |
| p2p->go_neg_peer = NULL; |
| |
| os_memset(&res, 0, sizeof(res)); |
| res.status = status; |
| os_memcpy(res.peer_device_addr, peer->info.p2p_device_addr, ETH_ALEN); |
| os_memcpy(res.peer_interface_addr, peer->intended_addr, ETH_ALEN); |
| p2p->cfg->go_neg_completed(p2p->cfg->cb_ctx, &res); |
| } |
| |
| |
| static void p2p_listen_in_find(struct p2p_data *p2p, int dev_disc) |
| { |
| unsigned int r, tu; |
| int freq; |
| struct wpabuf *ies; |
| |
| p2p_dbg(p2p, "Starting short listen state (state=%s)", |
| p2p_state_txt(p2p->state)); |
| |
| if (p2p->pending_listen_freq) { |
| /* We have a pending p2p_listen request */ |
| p2p_dbg(p2p, "p2p_listen command pending already"); |
| return; |
| } |
| |
| freq = p2p_channel_to_freq(p2p->cfg->reg_class, p2p->cfg->channel); |
| if (freq < 0) { |
| p2p_dbg(p2p, "Unknown regulatory class/channel"); |
| return; |
| } |
| |
| if (os_get_random((u8 *) &r, sizeof(r)) < 0) |
| r = 0; |
| tu = (r % ((p2p->max_disc_int - p2p->min_disc_int) + 1) + |
| p2p->min_disc_int) * 100; |
| 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) { |
| p2p_dbg(p2p, "Skip listen state since duration was 0 TU"); |
| p2p_set_timeout(p2p, 0, 0); |
| return; |
| } |
| |
| ies = p2p_build_probe_resp_ies(p2p, NULL, 0); |
| if (ies == NULL) |
| return; |
| |
| p2p->pending_listen_freq = freq; |
| p2p->pending_listen_sec = 0; |
| p2p->pending_listen_usec = 1024 * tu; |
| |
| if (p2p->cfg->start_listen(p2p->cfg->cb_ctx, freq, 1024 * tu / 1000, |
| ies) < 0) { |
| p2p_dbg(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; |
| |
| p2p_dbg(p2p, "Going to listen(only) state"); |
| |
| if (p2p->pending_listen_freq) { |
| /* We have a pending p2p_listen request */ |
| p2p_dbg(p2p, "p2p_listen command pending already"); |
| return -1; |
| } |
| |
| freq = p2p_channel_to_freq(p2p->cfg->reg_class, p2p->cfg->channel); |
| if (freq < 0) { |
| p2p_dbg(p2p, "Unknown regulatory class/channel"); |
| return -1; |
| } |
| |
| p2p->pending_listen_sec = timeout / 1000; |
| p2p->pending_listen_usec = (timeout % 1000) * 1000; |
| |
| if (p2p->p2p_scan_running) { |
| if (p2p->start_after_scan == P2P_AFTER_SCAN_CONNECT) { |
| p2p_dbg(p2p, "p2p_scan running - connect is already pending - skip listen"); |
| return 0; |
| } |
| p2p_dbg(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, NULL, 0); |
| if (ies == NULL) |
| return -1; |
| |
| p2p->pending_listen_freq = freq; |
| |
| if (p2p->cfg->start_listen(p2p->cfg->cb_ctx, freq, timeout, ies) < 0) { |
| p2p_dbg(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; |
| dev->sd_reqs = 0; |
| } |
| } |
| |
| |
| /** |
| * 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) { |
| if (os_memcmp(dev->info.p2p_device_addr, addr, ETH_ALEN) == 0) |
| 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_reltime_before(&dev->last_seen, &oldest->last_seen)) |
| oldest = dev; |
| } |
| if (count + 1 > p2p->cfg->max_peers && oldest) { |
| p2p_dbg(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); |
| os_memcpy(dev->info.p2p_device_addr, addr, ETH_ALEN); |
| |
| return dev; |
| } |
| |
| |
| static void p2p_copy_client_info(struct p2p_device *dev, |
| struct p2p_client_info *cli) |
| { |
| p2p_copy_filter_devname(dev->info.device_name, |
| sizeof(dev->info.device_name), |
| cli->dev_name, cli->dev_name_len); |
| 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); |
| dev->info.wps_sec_dev_type_list_len = 8 * cli->num_sec_dev_types; |
| if (dev->info.wps_sec_dev_type_list_len > WPS_SEC_DEV_TYPE_MAX_LEN) { |
| android_errorWriteLog(0x534e4554, "172937525"); |
| dev->info.wps_sec_dev_type_list_len = WPS_SEC_DEV_TYPE_MAX_LEN; |
| } |
| os_memcpy(dev->info.wps_sec_dev_type_list, cli->sec_dev_types, |
| dev->info.wps_sec_dev_type_list_len); |
| } |
| |
| |
| 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 os_reltime *rx_time) |
| { |
| 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) { |
| if (os_memcmp(dev->member_in_go_iface, go_interface_addr, |
| 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]; |
| if (os_memcmp(cli->p2p_device_addr, p2p->cfg->dev_addr, |
| ETH_ALEN) == 0) |
| continue; /* ignore our own entry */ |
| dev = p2p_get_device(p2p, cli->p2p_device_addr); |
| if (dev) { |
| if (dev->flags & (P2P_DEV_GROUP_CLIENT_ONLY | |
| P2P_DEV_PROBE_REQ_ONLY)) { |
| /* |
| * Update information since we have not |
| * received this directly from the client. |
| */ |
| p2p_copy_client_info(dev, cli); |
| } 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; |
| } |
| 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; |
| p2p->cfg->dev_found(p2p->cfg->cb_ctx, |
| dev->info.p2p_device_addr, |
| &dev->info, 1); |
| dev->flags |= P2P_DEV_REPORTED | P2P_DEV_REPORTED_ONCE; |
| } |
| |
| os_memcpy(dev->interface_addr, cli->p2p_interface_addr, |
| ETH_ALEN); |
| os_memcpy(&dev->last_seen, rx_time, sizeof(struct os_reltime)); |
| os_memcpy(dev->member_in_go_dev, go_dev_addr, ETH_ALEN); |
| os_memcpy(dev->member_in_go_iface, go_interface_addr, |
| ETH_ALEN); |
| dev->flags |= P2P_DEV_LAST_SEEN_AS_GROUP_CLIENT; |
| } |
| |
| return 0; |
| } |
| |
| |
| static void p2p_copy_wps_info(struct p2p_data *p2p, 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) { |
| /* |
| * 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; |
| 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) { |
| u16 new_config_methods; |
| new_config_methods = msg->config_methods ? |
| msg->config_methods : msg->wps_config_methods; |
| if (new_config_methods && |
| dev->info.config_methods != new_config_methods) { |
| p2p_dbg(p2p, "Update peer " MACSTR |
| " config_methods 0x%x -> 0x%x", |
| MAC2STR(dev->info.p2p_device_addr), |
| dev->info.config_methods, |
| new_config_methods); |
| dev->info.config_methods = new_config_methods; |
| } |
| } |
| } |
| |
| |
| static void p2p_update_peer_vendor_elems(struct p2p_device *dev, const u8 *ies, |
| size_t ies_len) |
| { |
| const u8 *pos, *end; |
| u8 id, len; |
| |
| wpabuf_free(dev->info.vendor_elems); |
| dev->info.vendor_elems = NULL; |
| |
| end = ies + ies_len; |
| |
| for (pos = ies; end - pos > 1; pos += len) { |
| id = *pos++; |
| len = *pos++; |
| |
| if (len > end - pos) |
| break; |
| |
| if (id != WLAN_EID_VENDOR_SPECIFIC || len < 3) |
| continue; |
| |
| if (len >= 4) { |
| u32 type = WPA_GET_BE32(pos); |
| |
| if (type == WPA_IE_VENDOR_TYPE || |
| type == WMM_IE_VENDOR_TYPE || |
| type == WPS_IE_VENDOR_TYPE || |
| type == P2P_IE_VENDOR_TYPE || |
| type == WFD_IE_VENDOR_TYPE) |
| continue; |
| } |
| |
| /* Unknown vendor element - make raw IE data available */ |
| if (wpabuf_resize(&dev->info.vendor_elems, 2 + len) < 0) |
| break; |
| wpabuf_put_data(dev->info.vendor_elems, pos - 2, 2 + len); |
| } |
| } |
| |
| |
| static int p2p_compare_wfd_info(struct p2p_device *dev, |
| const struct p2p_message *msg) |
| { |
| if (dev->info.wfd_subelems && msg->wfd_subelems) { |
| if (dev->info.wfd_subelems->used != msg->wfd_subelems->used) |
| return 1; |
| |
| return os_memcmp(dev->info.wfd_subelems->buf, |
| msg->wfd_subelems->buf, |
| dev->info.wfd_subelems->used); |
| } |
| if (dev->info.wfd_subelems || msg->wfd_subelems) |
| return 1; |
| |
| return 0; |
| } |
| |
| |
| /** |
| * p2p_add_device - Add peer entries based on scan results or P2P frames |
| * @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 |
| * @rx_time: Time when the result was received |
| * @ies: IEs from the Beacon or Probe Response frame |
| * @ies_len: Length of ies buffer in octets |
| * @scan_res: Whether this was based on scan results |
| * Returns: 0 on success, -1 on failure |
| * |
| * If the scan result is for a GO, the clients in the group will also be added |
| * 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. |
| */ |
| int p2p_add_device(struct p2p_data *p2p, const u8 *addr, int freq, |
| struct os_reltime *rx_time, int level, const u8 *ies, |
| size_t ies_len, int scan_res) |
| { |
| struct p2p_device *dev; |
| struct p2p_message msg; |
| const u8 *p2p_dev_addr; |
| int wfd_changed; |
| int dev_name_changed; |
| int i; |
| struct os_reltime time_now; |
| |
| os_memset(&msg, 0, sizeof(msg)); |
| if (p2p_parse_ies(ies, ies_len, &msg)) { |
| p2p_dbg(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 { |
| p2p_dbg(p2p, "Ignore scan data without P2P Device Info or P2P Device Id"); |
| p2p_parse_free(&msg); |
| return -1; |
| } |
| |
| if (!is_zero_ether_addr(p2p->peer_filter) && |
| os_memcmp(p2p_dev_addr, p2p->peer_filter, ETH_ALEN) != 0) { |
| p2p_dbg(p2p, "Do not add peer filter for " MACSTR |
| " due to peer filter", MAC2STR(p2p_dev_addr)); |
| p2p_parse_free(&msg); |
| return 0; |
| } |
| |
| dev = p2p_create_device(p2p, p2p_dev_addr); |
| if (dev == NULL) { |
| p2p_parse_free(&msg); |
| return -1; |
| } |
| |
| if (rx_time == NULL) { |
| os_get_reltime(&time_now); |
| rx_time = &time_now; |
| } |
| |
| /* |
| * Update the device entry only if the new peer |
| * entry is newer than the one previously stored, or if |
| * the device was previously seen as a P2P Client in a group |
| * and the new entry isn't older than a threshold. |
| */ |
| if (dev->last_seen.sec > 0 && |
| os_reltime_before(rx_time, &dev->last_seen) && |
| (!(dev->flags & P2P_DEV_LAST_SEEN_AS_GROUP_CLIENT) || |
| os_reltime_expired(&dev->last_seen, rx_time, |
| P2P_DEV_GROUP_CLIENT_RESP_THRESHOLD))) { |
| p2p_dbg(p2p, |
| "Do not update peer entry based on old frame (rx_time=%u.%06u last_seen=%u.%06u flags=0x%x)", |
| (unsigned int) rx_time->sec, |
| (unsigned int) rx_time->usec, |
| (unsigned int) dev->last_seen.sec, |
| (unsigned int) dev->last_seen.usec, |
| dev->flags); |
| p2p_parse_free(&msg); |
| return -1; |
| } |
| |
| os_memcpy(&dev->last_seen, rx_time, sizeof(struct os_reltime)); |
| |
| dev->flags &= ~(P2P_DEV_PROBE_REQ_ONLY | P2P_DEV_GROUP_CLIENT_ONLY | |
| P2P_DEV_LAST_SEEN_AS_GROUP_CLIENT); |
| |
| if (os_memcmp(addr, p2p_dev_addr, ETH_ALEN) != 0) |
| os_memcpy(dev->interface_addr, addr, ETH_ALEN); |
| if (msg.ssid && |
| msg.ssid[1] <= sizeof(dev->oper_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]; |
| } |
| |
| wpabuf_free(dev->info.p2ps_instance); |
| dev->info.p2ps_instance = NULL; |
| if (msg.adv_service_instance && msg.adv_service_instance_len) |
| dev->info.p2ps_instance = wpabuf_alloc_copy( |
| msg.adv_service_instance, msg.adv_service_instance_len); |
| |
| 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) { |
| p2p_dbg(p2p, "Update Listen frequency based on DS Parameter Set IE: %d -> %d MHz", |
| freq, ds_freq); |
| freq = ds_freq; |
| } |
| } |
| |
| if (dev->listen_freq && dev->listen_freq != freq && scan_res) { |
| p2p_dbg(p2p, "Update Listen frequency based on scan results (" |
| MACSTR " %d -> %d MHz (DS param %d)", |
| MAC2STR(dev->info.p2p_device_addr), dev->listen_freq, |
| freq, msg.ds_params ? *msg.ds_params : -1); |
| } |
| if (scan_res) { |
| dev->listen_freq = freq; |
| if (msg.group_info) |
| dev->oper_freq = freq; |
| } |
| dev->info.level = level; |
| |
| dev_name_changed = os_strncmp(dev->info.device_name, msg.device_name, |
| WPS_DEV_NAME_MAX_LEN) != 0; |
| |
| p2p_copy_wps_info(p2p, dev, 0, &msg); |
| |
| for (i = 0; i < P2P_MAX_WPS_VENDOR_EXT; i++) { |
| wpabuf_free(dev->info.wps_vendor_ext[i]); |
| dev->info.wps_vendor_ext[i] = NULL; |
| } |
| |
| for (i = 0; i < P2P_MAX_WPS_VENDOR_EXT; i++) { |
| 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; |
| } |
| |
| wfd_changed = p2p_compare_wfd_info(dev, &msg); |
| |
| if (wfd_changed) { |
| wpabuf_free(dev->info.wfd_subelems); |
| if (msg.wfd_subelems) |
| dev->info.wfd_subelems = wpabuf_dup(msg.wfd_subelems); |
| else |
| dev->info.wfd_subelems = NULL; |
| } |
| |
| if (scan_res) { |
| p2p_add_group_clients(p2p, p2p_dev_addr, addr, freq, |
| msg.group_info, msg.group_info_len, |
| rx_time); |
| } |
| |
| p2p_parse_free(&msg); |
| |
| p2p_update_peer_vendor_elems(dev, ies, ies_len); |
| |
| if (dev->flags & P2P_DEV_REPORTED && !wfd_changed && |
| !dev_name_changed && |
| (!msg.adv_service_instance || |
| (dev->flags & P2P_DEV_P2PS_REPORTED))) |
| return 0; |
| |
| p2p_dbg(p2p, "Peer found with Listen frequency %d MHz (rx_time=%u.%06u)", |
| freq, (unsigned int) rx_time->sec, |
| (unsigned int) rx_time->usec); |
| if (dev->flags & P2P_DEV_USER_REJECTED) { |
| p2p_dbg(p2p, "Do not report rejected device"); |
| return 0; |
| } |
| |
| if (dev->info.config_methods == 0 && |
| (freq == 2412 || freq == 2437 || freq == 2462)) { |
| /* |
| * If we have only seen a Beacon frame from a GO, we do not yet |
| * know what WPS config methods it supports. Since some |
| * applications use config_methods value from P2P-DEVICE-FOUND |
| * events, postpone reporting this peer until we've fully |
| * discovered its capabilities. |
| * |
| * At least for now, do this only if the peer was detected on |
| * one of the social channels since that peer can be easily be |
| * found again and there are no limitations of having to use |
| * passive scan on this channels, so this can be done through |
| * Probe Response frame that includes the config_methods |
| * information. |
| */ |
| p2p_dbg(p2p, "Do not report peer " MACSTR |
| " with unknown config methods", MAC2STR(addr)); |
| return 0; |
| } |
| |
| 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; |
| |
| if (msg.adv_service_instance) |
| dev->flags |= P2P_DEV_P2PS_REPORTED; |
| |
| return 0; |
| } |
| |
| |
| static void p2p_device_free(struct p2p_data *p2p, struct p2p_device *dev) |
| { |
| int i; |
| |
| if (p2p->go_neg_peer == dev) { |
| /* |
| * If GO Negotiation is in progress, report that it has failed. |
| */ |
| p2p_go_neg_failed(p2p, -1); |
| } |
| 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; |
| |
| /* 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); |
| |
| for (i = 0; i < P2P_MAX_WPS_VENDOR_EXT; i++) { |
| wpabuf_free(dev->info.wps_vendor_ext[i]); |
| dev->info.wps_vendor_ext[i] = NULL; |
| } |
| |
| wpabuf_free(dev->info.wfd_subelems); |
| wpabuf_free(dev->info.vendor_elems); |
| wpabuf_free(dev->go_neg_conf); |
| wpabuf_free(dev->info.p2ps_instance); |
| |
| 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(reg_class, channel); |
| p2p_dbg(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; |
| u16 pw_id = DEV_PW_DEFAULT; |
| int res; |
| |
| if (p2p->drv_in_listen) { |
| p2p_dbg(p2p, "Driver is still in Listen state - wait for it to end before continuing"); |
| return; |
| } |
| p2p->cfg->stop_listen(p2p->cfg->cb_ctx); |
| |
| if (p2p->find_pending_full && |
| (p2p->find_type == P2P_FIND_PROGRESSIVE || |
| p2p->find_type == P2P_FIND_START_WITH_FULL)) { |
| type = P2P_SCAN_FULL; |
| p2p_dbg(p2p, "Starting search (pending full scan)"); |
| p2p->find_pending_full = 0; |
| } else if ((p2p->find_type == P2P_FIND_PROGRESSIVE && |
| (freq = p2p_get_next_prog_freq(p2p)) > 0) || |
| (p2p->find_type == P2P_FIND_START_WITH_FULL && |
| (freq = p2p->find_specified_freq) > 0)) { |
| type = P2P_SCAN_SOCIAL_PLUS_ONE; |
| p2p_dbg(p2p, "Starting search (+ freq %u)", freq); |
| } else { |
| type = P2P_SCAN_SOCIAL; |
| p2p_dbg(p2p, "Starting search"); |
| } |
| |
| 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) { |
| p2p_dbg(p2p, "Scan request schedule failed"); |
| p2p_continue_find(p2p); |
| } |
| } |
| |
| |
| static void p2p_find_timeout(void *eloop_ctx, void *timeout_ctx) |
| { |
| struct p2p_data *p2p = eloop_ctx; |
| p2p_dbg(p2p, "Find timeout -> stop"); |
| p2p_stop_find(p2p); |
| } |
| |
| |
| void p2p_notify_scan_trigger_status(struct p2p_data *p2p, int status) |
| { |
| if (status != 0) { |
| p2p_dbg(p2p, "Scan request failed"); |
| /* Do continue find even for the first p2p_find_scan */ |
| p2p_continue_find(p2p); |
| } else { |
| p2p_dbg(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); |
| } |
| } |
| |
| |
| static int p2p_run_after_scan(struct p2p_data *p2p) |
| { |
| struct p2p_device *dev; |
| enum p2p_after_scan op; |
| |
| 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: |
| p2p_dbg(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: |
| p2p_dbg(p2p, "Start previously requested connect with " MACSTR, |
| MAC2STR(p2p->after_scan_peer)); |
| dev = p2p_get_device(p2p, p2p->after_scan_peer); |
| if (dev == NULL) { |
| p2p_dbg(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; |
| p2p_dbg(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); |
| } |
| |
| |
| 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; |
| } |
| |
| |
| static int p2ps_gen_hash(struct p2p_data *p2p, const char *str, u8 *hash) |
| { |
| u8 buf[SHA256_MAC_LEN]; |
| char str_buf[256]; |
| const u8 *adv_array; |
| size_t i, adv_len; |
| |
| if (!str || !hash) |
| return 0; |
| |
| if (!str[0]) { |
| os_memcpy(hash, p2p->wild_card_hash, P2PS_HASH_LEN); |
| return 1; |
| } |
| |
| adv_array = (u8 *) str_buf; |
| adv_len = os_strlen(str); |
| if (adv_len >= sizeof(str_buf)) |
| return 0; |
| |
| for (i = 0; i < adv_len; i++) { |
| if (str[i] >= 'A' && str[i] <= 'Z') |
| str_buf[i] = str[i] - 'A' + 'a'; |
| else |
| str_buf[i] = str[i]; |
| } |
| |
| if (sha256_vector(1, &adv_array, &adv_len, buf)) |
| return 0; |
| |
| os_memcpy(hash, buf, P2PS_HASH_LEN); |
| return 1; |
| } |
| |
| |
| int p2p_find(struct p2p_data *p2p, unsigned int timeout, |
| enum p2p_discovery_type type, |
| unsigned int num_req_dev_types, const u8 *req_dev_types, |
| const u8 *dev_id, unsigned int search_delay, |
| u8 seek_count, const char **seek, int freq) |
| { |
| int res; |
| struct os_reltime start; |
| |
| p2p_dbg(p2p, "Starting find (type=%d)", type); |
| if (p2p->p2p_scan_running) { |
| p2p_dbg(p2p, "p2p_scan is already running"); |
| } |
| |
| p2p_free_req_dev_types(p2p); |
| if (req_dev_types && num_req_dev_types) { |
| p2p->req_dev_types = os_memdup(req_dev_types, |
| num_req_dev_types * |
| WPS_DEV_TYPE_LEN); |
| if (p2p->req_dev_types == NULL) |
| return -1; |
| p2p->num_req_dev_types = num_req_dev_types; |
| } |
| |
| 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; |
| |
| if (seek_count == 0 || !seek) { |
| /* Not an ASP search */ |
| p2p->p2ps_seek = 0; |
| } else if (seek_count == 1 && seek && (!seek[0] || !seek[0][0])) { |
| /* |
| * An empty seek string means no hash values, but still an ASP |
| * search. |
| */ |
| p2p_dbg(p2p, "ASP search"); |
| p2p->p2ps_seek_count = 0; |
| p2p->p2ps_seek = 1; |
| } else if (seek && seek_count <= P2P_MAX_QUERY_HASH) { |
| u8 buf[P2PS_HASH_LEN]; |
| int i, count = 0; |
| |
| for (i = 0; i < seek_count; i++) { |
| if (!p2ps_gen_hash(p2p, seek[i], buf)) |
| continue; |
| |
| p2p_dbg(p2p, "Seek service %s hash " MACSTR, |
| seek[i], MAC2STR(buf)); |
| os_memcpy(&p2p->p2ps_seek_hash[count * P2PS_HASH_LEN], |
| buf, P2PS_HASH_LEN); |
| count++; |
| } |
| |
| p2p->p2ps_seek_count = count; |
| p2p->p2ps_seek = 1; |
| } else { |
| p2p->p2ps_seek_count = 0; |
| p2p->p2ps_seek = 1; |
| } |
| |
| /* Special case to perform wildcard search */ |
| if (p2p->p2ps_seek_count == 0 && p2p->p2ps_seek) { |
| p2p->p2ps_seek_count = 1; |
| os_memcpy(&p2p->p2ps_seek_hash, p2p->wild_card_hash, |
| P2PS_HASH_LEN); |
| } |
| |
| p2p->start_after_scan = P2P_AFTER_SCAN_NOTHING; |
| p2p_clear_timeout(p2p); |
| if (p2p->pending_listen_freq) { |
| p2p_dbg(p2p, "Clear pending_listen_freq for p2p_find"); |
| p2p->pending_listen_freq = 0; |
| } |
| p2p->cfg->stop_listen(p2p->cfg->cb_ctx); |
| p2p->find_pending_full = 0; |
| p2p->find_type = type; |
| if (freq != 2412 && freq != 2437 && freq != 2462 && freq != 60480) |
| p2p->find_specified_freq = freq; |
| else |
| p2p->find_specified_freq = 0; |
| p2p_device_clear_reported(p2p); |
| os_memset(p2p->sd_query_no_ack, 0, ETH_ALEN); |
| p2p_set_state(p2p, P2P_SEARCH); |
| p2p->search_delay = search_delay; |
| p2p->in_search_delay = 0; |
| eloop_cancel_timeout(p2p_find_timeout, p2p, NULL); |
| p2p->last_p2p_find_timeout = timeout; |
| if (timeout) |
| eloop_register_timeout(timeout, 0, p2p_find_timeout, |
| p2p, NULL); |
| os_get_reltime(&start); |
| switch (type) { |
| case P2P_FIND_START_WITH_FULL: |
| if (freq > 0) { |
| /* |
| * Start with the specified channel and then move to |
| * scans for social channels and this specific channel. |
| */ |
| res = p2p->cfg->p2p_scan(p2p->cfg->cb_ctx, |
| P2P_SCAN_SPECIFIC, freq, |
| p2p->num_req_dev_types, |
| p2p->req_dev_types, dev_id, |
| DEV_PW_DEFAULT); |
| break; |
| } |
| /* fall through */ |
| case P2P_FIND_PROGRESSIVE: |
| res = p2p->cfg->p2p_scan(p2p->cfg->cb_ctx, P2P_SCAN_FULL, 0, |
| p2p->num_req_dev_types, |
| p2p->req_dev_types, dev_id, |
| DEV_PW_DEFAULT); |
| break; |
| case P2P_FIND_ONLY_SOCIAL: |
| res = p2p->cfg->p2p_scan(p2p->cfg->cb_ctx, P2P_SCAN_SOCIAL, 0, |
| p2p->num_req_dev_types, |
| p2p->req_dev_types, dev_id, |
| DEV_PW_DEFAULT); |
| break; |
| default: |
| return -1; |
| } |
| |
| if (!res) |
| p2p->find_start = start; |
| |
| if (res != 0 && p2p->p2p_scan_running) { |
| p2p_dbg(p2p, "Failed to start p2p_scan - another p2p_scan was already running"); |
| /* wait for the previous p2p_scan to complete */ |
| if (type == P2P_FIND_PROGRESSIVE || |
| (type == P2P_FIND_START_WITH_FULL && freq == 0)) |
| p2p->find_pending_full = 1; |
| res = 0; /* do not report failure */ |
| } else if (res != 0) { |
| p2p_dbg(p2p, "Failed to start p2p_scan"); |
| p2p_set_state(p2p, P2P_IDLE); |
| eloop_cancel_timeout(p2p_find_timeout, p2p, NULL); |
| } |
| |
| return res; |
| } |
| |
| |
| void p2p_stop_find_for_freq(struct p2p_data *p2p, int freq) |
| { |
| p2p_dbg(p2p, "Stopping find"); |
| eloop_cancel_timeout(p2p_find_timeout, p2p, NULL); |
| p2p_clear_timeout(p2p); |
| if (p2p->state == P2P_SEARCH || p2p->state == P2P_SD_DURING_FIND) |
| p2p->cfg->find_stopped(p2p->cfg->cb_ctx); |
| |
| p2p->p2ps_seek_count = 0; |
| |
| p2p_set_state(p2p, P2P_IDLE); |
| p2p_free_req_dev_types(p2p); |
| p2p->start_after_scan = P2P_AFTER_SCAN_NOTHING; |
| if (p2p->go_neg_peer) |
| p2p->go_neg_peer->flags &= ~P2P_DEV_PEER_WAITING_RESPONSE; |
| p2p->go_neg_peer = NULL; |
| p2p->sd_peer = NULL; |
| p2p->invite_peer = NULL; |
| p2p_stop_listen_for_freq(p2p, freq); |
| p2p->send_action_in_progress = 0; |
| } |
| |
| |
| void p2p_stop_listen_for_freq(struct p2p_data *p2p, int freq) |
| { |
| if (freq > 0 && p2p->drv_in_listen == freq && p2p->in_listen) { |
| p2p_dbg(p2p, "Skip stop_listen since we are on correct channel for response"); |
| return; |
| } |
| if (p2p->in_listen) { |
| p2p->in_listen = 0; |
| p2p_clear_timeout(p2p); |
| } |
| 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. |
| */ |
| p2p_dbg(p2p, "Clear drv_in_listen (%d)", p2p->drv_in_listen); |
| p2p->drv_in_listen = 0; |
| } |
| p2p->cfg->stop_listen(p2p->cfg->cb_ctx); |
| } |
| |
| |
| void p2p_stop_listen(struct p2p_data *p2p) |
| { |
| if (p2p->state != P2P_LISTEN_ONLY) { |
| p2p_dbg(p2p, "Skip stop_listen since not in listen_only state."); |
| return; |
| } |
| |
| p2p_stop_listen_for_freq(p2p, 0); |
| p2p_set_state(p2p, P2P_IDLE); |
| } |
| |
| |
| void p2p_stop_find(struct p2p_data *p2p) |
| { |
| p2p->pending_listen_freq = 0; |
| p2p_stop_find_for_freq(p2p, 0); |
| } |
| |
| |
| static int p2p_prepare_channel_pref(struct p2p_data *p2p, |
| unsigned int force_freq, |
| unsigned int pref_freq, int go) |
| { |
| u8 op_class, op_channel; |
| unsigned int freq = force_freq ? force_freq : pref_freq; |
| |
| p2p_dbg(p2p, "Prepare channel pref - force_freq=%u pref_freq=%u go=%d", |
| force_freq, pref_freq, go); |
| if (p2p_freq_to_channel(freq, &op_class, &op_channel) < 0) { |
| p2p_dbg(p2p, "Unsupported frequency %u MHz", freq); |
| return -1; |
| } |
| |
| if (!p2p_channels_includes(&p2p->cfg->channels, op_class, op_channel) && |
| (go || !p2p_channels_includes(&p2p->cfg->cli_channels, op_class, |
| op_channel))) { |
| p2p_dbg(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; |
| const int op_classes_5ghz[] = { 124, 125, 115, 0 }; |
| const int op_classes_ht40[] = { 126, 127, 116, 117, 0 }; |
| const int op_classes_vht[] = { 128, 0 }; |
| const int op_classes_edmg[] = { 181, 182, 183, 0 }; |
| |
| p2p_dbg(p2p, "Prepare channel best"); |
| |
| if (!p2p->cfg->cfg_op_channel && p2p->best_freq_overall > 0 && |
| p2p_supported_freq(p2p, p2p->best_freq_overall) && |
| p2p_freq_to_channel(p2p->best_freq_overall, &op_class, &op_channel) |
| == 0) { |
| p2p_dbg(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->best_freq_5, &op_class, &op_channel) |
| == 0) { |
| p2p_dbg(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->best_freq_24, &op_class, |
| &op_channel) == 0) { |
| p2p_dbg(p2p, "Select best 2.4 GHz channel as operating channel preference"); |
| p2p->op_reg_class = op_class; |
| p2p->op_channel = op_channel; |
| } else if (p2p->cfg->num_pref_chan > 0 && |
| p2p_channels_includes(&p2p->cfg->channels, |
| p2p->cfg->pref_chan[0].op_class, |
| p2p->cfg->pref_chan[0].chan)) { |
| p2p_dbg(p2p, "Select first pref_chan entry as operating channel preference"); |
| p2p->op_reg_class = p2p->cfg->pref_chan[0].op_class; |
| p2p->op_channel = p2p->cfg->pref_chan[0].chan; |
| } else if (p2p_channel_select(&p2p->cfg->channels, op_classes_edmg, |
| &p2p->op_reg_class, &p2p->op_channel) == |
| 0) { |
| p2p_dbg(p2p, "Select possible EDMG channel (op_class %u channel %u) as operating channel preference", |
| p2p->op_reg_class, p2p->op_channel); |
| } else if (p2p_channel_select(&p2p->cfg->channels, op_classes_vht, |
| &p2p->op_reg_class, &p2p->op_channel) == |
| 0) { |
| p2p_dbg(p2p, "Select possible VHT channel (op_class %u channel %u) as operating channel preference", |
| p2p->op_reg_class, p2p->op_channel); |
| } else if (p2p_channel_select(&p2p->cfg->channels, op_classes_ht40, |
| &p2p->op_reg_class, &p2p->op_channel) == |
| 0) { |
| p2p_dbg(p2p, "Select possible HT40 channel (op_class %u channel %u) as operating channel preference", |
| p2p->op_reg_class, p2p->op_channel); |
| } else if (p2p_channel_select(&p2p->cfg->channels, op_classes_5ghz, |
| &p2p->op_reg_class, &p2p->op_channel) == |
| 0) { |
| p2p_dbg(p2p, "Select possible 5 GHz channel (op_class %u channel %u) as operating channel preference", |
| p2p->op_reg_class, p2p->op_channel); |
| } else if (p2p_channels_includes(&p2p->cfg->channels, |
| p2p->cfg->op_reg_class, |
| p2p->cfg->op_channel)) { |
| p2p_dbg(p2p, "Select pre-configured channel as operating channel preference"); |
| p2p->op_reg_class = p2p->cfg->op_reg_class; |
| p2p->op_channel = p2p->cfg->op_channel; |
| } else if (p2p_channel_random_social(&p2p->cfg->channels, |
| &p2p->op_reg_class, |
| &p2p->op_channel, |
| NULL, NULL) == 0) { |
| p2p_dbg(p2p, "Select random available social channel (op_class %u channel %u) as operating channel preference", |
| p2p->op_reg_class, p2p->op_channel); |
| } else { |
| /* Select any random available channel from the first available |
| * operating class */ |
| p2p_channel_select(&p2p->cfg->channels, NULL, |
| &p2p->op_reg_class, |
| &p2p->op_channel); |
| p2p_dbg(p2p, "Select random available channel %d from operating class %d as operating channel preference", |
| p2p->op_channel, p2p->op_reg_class); |
| } |
| |
| os_memcpy(&p2p->channels, &p2p->cfg->channels, |
| sizeof(struct p2p_channels)); |
| } |
| |
| |
| /** |
| * p2p_prepare_channel - Select operating channel for GO Negotiation or P2PS PD |
| * @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 |
| * @go: Whether the local end will be forced to be GO |
| * 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 or for P2PS PD |
| * signalling. The selected channel may be further optimized in |
| * p2p_reselect_channel() once the peer information is available. |
| */ |
| int p2p_prepare_channel(struct p2p_data *p2p, struct p2p_device *dev, |
| unsigned int force_freq, unsigned int pref_freq, int go) |
| { |
| p2p_dbg(p2p, "Prepare channel - force_freq=%u pref_freq=%u go=%d", |
| force_freq, pref_freq, go); |
| if (force_freq || pref_freq) { |
| if (p2p_prepare_channel_pref(p2p, force_freq, pref_freq, go) < |
| 0) |
| return -1; |
| } else { |
| p2p_prepare_channel_best(p2p); |
| } |
| p2p_channels_dump(p2p, "prepared channels", &p2p->channels); |
| if (go) |
| p2p_channels_remove_freqs(&p2p->channels, &p2p->no_go_freq); |
| else if (!force_freq) |
| p2p_channels_union_inplace(&p2p->channels, |
| &p2p->cfg->cli_channels); |
| p2p_channels_dump(p2p, "after go/cli filter/add", &p2p->channels); |
| |
| p2p_dbg(p2p, "Own preference for operation channel: Operating Class %u Channel %u%s", |
| p2p->op_reg_class, p2p->op_channel, |
| force_freq ? " (forced)" : ""); |
| |
| if (force_freq) |
| dev->flags |= P2P_DEV_FORCE_FREQ; |
| else |
| dev->flags &= ~P2P_DEV_FORCE_FREQ; |
| |
| return 0; |
| } |
| |
| |
| 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; |
| } |
| } |
| |
| |
| 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, |
| unsigned int force_freq, int persistent_group, |
| const u8 *force_ssid, size_t force_ssid_len, |
| int pd_before_go_neg, unsigned int pref_freq, u16 oob_pw_id) |
| { |
| struct p2p_device *dev; |
| |
| p2p_dbg(p2p, "Request to start group negotiation - peer=" MACSTR |
| " GO Intent=%d Intended Interface Address=" MACSTR |
| " wps_method=%d persistent_group=%d pd_before_go_neg=%d " |
| "oob_pw_id=%u", |
| MAC2STR(peer_addr), go_intent, MAC2STR(own_interface_addr), |
| wps_method, persistent_group, pd_before_go_neg, oob_pw_id); |
| |
| dev = p2p_get_device(p2p, peer_addr); |
| if (dev == NULL || (dev->flags & P2P_DEV_PROBE_REQ_ONLY)) { |
| p2p_dbg(p2p, "Cannot connect to unknown P2P Device " MACSTR, |
| MAC2STR(peer_addr)); |
| return -1; |
| } |
| |
| if (p2p_prepare_channel(p2p, dev, force_freq, pref_freq, |
| go_intent == 15) < 0) |
| return -1; |
| |
| if (dev->flags & P2P_DEV_GROUP_CLIENT_ONLY) { |
| if (!(dev->info.dev_capab & |
| P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY)) { |
| p2p_dbg(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) { |
| p2p_dbg(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. |
| */ |
| } |
| |
| 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; |
| } |
| |
| 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; |
| if (pd_before_go_neg) |
| dev->flags |= P2P_DEV_PD_BEFORE_GO_NEG; |
| else { |
| dev->flags &= ~P2P_DEV_PD_BEFORE_GO_NEG; |
| /* |
| * Assign dialog token and tie breaker here to use the same |
| * values in each retry within the same GO Negotiation exchange. |
| */ |
| dev->dialog_token++; |
| if (dev->dialog_token == 0) |
| dev->dialog_token = 1; |
| dev->tie_breaker = p2p->next_tie_breaker; |
| p2p->next_tie_breaker = !p2p->next_tie_breaker; |
| } |
| dev->connect_reqs = 0; |
| dev->go_neg_req_sent = 0; |
| dev->go_state = UNKNOWN_GO; |
| p2p_set_dev_persistent(dev, persistent_group); |
| p2p->go_intent = go_intent; |
| os_memcpy(p2p->intended_addr, own_interface_addr, ETH_ALEN); |
| |
| if (p2p->state != P2P_IDLE) |
| p2p_stop_find(p2p); |
| |
| dev->wps_method = wps_method; |
| dev->oob_pw_id = oob_pw_id; |
| dev->status = P2P_SC_SUCCESS; |
| |
| if (p2p->p2p_scan_running) { |
| p2p_dbg(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; |
| } |
| |
| 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, |
| unsigned int force_freq, int persistent_group, |
| const u8 *force_ssid, size_t force_ssid_len, |
| unsigned int pref_freq, u16 oob_pw_id) |
| { |
| struct p2p_device *dev; |
| |
| p2p_dbg(p2p, "Request to authorize group negotiation - peer=" MACSTR |
| " GO Intent=%d Intended Interface Address=" MACSTR |
| " wps_method=%d persistent_group=%d oob_pw_id=%u", |
| MAC2STR(peer_addr), go_intent, MAC2STR(own_interface_addr), |
| wps_method, persistent_group, oob_pw_id); |
| |
| dev = p2p_get_device(p2p, peer_addr); |
| if (dev == NULL) { |
| p2p_dbg(p2p, "Cannot authorize unknown P2P Device " MACSTR, |
| MAC2STR(peer_addr)); |
| return -1; |
| } |
| |
| if (p2p_prepare_channel(p2p, dev, force_freq, pref_freq, go_intent == |
| 15) < 0) |
| return -1; |
| |
| 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; |
| } |
| |
| dev->flags &= ~P2P_DEV_NOT_YET_READY; |
| dev->flags &= ~P2P_DEV_USER_REJECTED; |
| dev->go_neg_req_sent = 0; |
| dev->go_state = UNKNOWN_GO; |
| p2p_set_dev_persistent(dev, persistent_group); |
| p2p->go_intent = go_intent; |
| os_memcpy(p2p->intended_addr, own_interface_addr, ETH_ALEN); |
| |
| dev->wps_method = wps_method; |
| dev->oob_pw_id = oob_pw_id; |
| 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_reltime(&dev->last_seen); |
| |
| p2p_copy_wps_info(p2p, dev, 0, msg); |
| |
| if (msg->listen_channel) { |
| int freq; |
| freq = p2p_channel_to_freq(msg->listen_channel[3], |
| msg->listen_channel[4]); |
| if (freq < 0) { |
| p2p_dbg(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 { |
| p2p_dbg(p2p, "Update peer " MACSTR |
| " Listen channel: %u -> %u MHz", |
| MAC2STR(dev->info.p2p_device_addr), |
| dev->listen_freq, freq); |
| dev->listen_freq = freq; |
| } |
| } |
| |
| if (msg->wfd_subelems) { |
| wpabuf_free(dev->info.wfd_subelems); |
| dev->info.wfd_subelems = wpabuf_dup(msg->wfd_subelems); |
| } |
| |
| if (dev->flags & P2P_DEV_PROBE_REQ_ONLY) { |
| dev->flags &= ~P2P_DEV_PROBE_REQ_ONLY; |
| p2p_dbg(p2p, "Completed device entry based on data from GO Negotiation Request"); |
| } else { |
| p2p_dbg(p2p, "Created device entry based on GO Neg Req: " |
| MACSTR " dev_capab=0x%x group_capab=0x%x name='%s' " |
| "listen_freq=%d", |
| MAC2STR(dev->info.p2p_device_addr), |
| dev->info.dev_capab, dev->info.group_capab, |
| dev->info.device_name, dev->listen_freq); |
| } |
| |
| dev->flags &= ~P2P_DEV_GROUP_CLIENT_ONLY; |
| |
| if (dev->flags & P2P_DEV_USER_REJECTED) { |
| p2p_dbg(p2p, "Do not report rejected device"); |
| return; |
| } |
| |
| 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; |
| } |
| |
| |
| 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) |
| { |
| if (p2p->ssid_set) { |
| os_memcpy(params->ssid, p2p->ssid, p2p->ssid_len); |
| params->ssid_len = p2p->ssid_len; |
| } else { |
| p2p_build_ssid(p2p, params->ssid, ¶ms->ssid_len); |
| } |
| p2p->ssid_set = 0; |
| |
| if (p2p->passphrase_set) { |
| os_memcpy(params->passphrase, p2p->passphrase, os_strlen(p2p->passphrase)); |
| } else { |
| p2p_random(params->passphrase, p2p->cfg->passphrase_len); |
| } |
| p2p->passphrase_set = 0; |
| 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; |
| |
| p2p_dbg(p2p, "GO Negotiation with " MACSTR " completed (%s will be GO)", |
| MAC2STR(peer->info.p2p_device_addr), go ? "local end" : "peer"); |
| |
| os_memset(&res, 0, sizeof(res)); |
| res.role_go = go; |
| os_memcpy(res.peer_device_addr, peer->info.p2p_device_addr, ETH_ALEN); |
| os_memcpy(res.peer_interface_addr, peer->intended_addr, ETH_ALEN); |
| res.wps_method = peer->wps_method; |
| 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; |
| } |
| |
| if (go) { |
| /* Setup AP mode for WPS provisioning */ |
| res.freq = p2p_channel_to_freq(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, p2p->cfg->passphrase_len); |
| } else { |
| res.freq = peer->oper_freq; |
| if (p2p->ssid_len) { |
| os_memcpy(res.ssid, p2p->ssid, p2p->ssid_len); |
| res.ssid_len = p2p->ssid_len; |
| } |
| } |
| |
| p2p_channels_dump(p2p, "own channels", &p2p->channels); |
| p2p_channels_dump(p2p, "peer channels", &peer->channels); |
| p2p_channels_intersect(&p2p->channels, &peer->channels, |
| &intersection); |
| if (go) { |
| p2p_channels_remove_freqs(&intersection, &p2p->no_go_freq); |
| p2p_channels_dump(p2p, "intersection after no-GO removal", |
| &intersection); |
| } |
| |
| p2p_channels_to_freqs(&intersection, res.freq_list, |
| P2P_MAX_CHANNELS); |
| |
| res.peer_config_timeout = go ? peer->client_timeout : peer->go_timeout; |
| |
| p2p_clear_timeout(p2p); |
| p2p->ssid_set = 0; |
| peer->go_neg_req_sent = 0; |
| peer->flags &= ~P2P_DEV_PEER_WAITING_RESPONSE; |
| peer->wps_method = WPS_NOT_READY; |
| peer->oob_pw_id = 0; |
| wpabuf_free(peer->go_neg_conf); |
| peer->go_neg_conf = NULL; |
| |
| 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) |
| { |
| p2p_dbg(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: |
| p2p_dbg(p2p, "Unsupported P2P Public Action frame type %d", |
| data[0]); |
| break; |
| } |
| } |
| |
| |
| 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) |
| { |
| if (len < 1) |
| return; |
| |
| switch (data[0]) { |
| case WLAN_PA_VENDOR_SPECIFIC: |
| data++; |
| len--; |
| if (len < 4) |
| return; |
| if (WPA_GET_BE32(data) != P2P_IE_VENDOR_TYPE) |
| return; |
| |
| data += 4; |
| len -= 4; |
| |
| p2p_rx_p2p_action(p2p, sa, data, len, 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: |
| 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); |
| 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_BE32(data) != P2P_IE_VENDOR_TYPE) |
| return; |
| data += 4; |
| len -= 4; |
| |
| /* P2P action frame */ |
| p2p_dbg(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: |
| p2p_dbg(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: |
| p2p_dbg(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; |
| if (p2p->pending_listen_freq) { |
| p2p_dbg(p2p, "Clear pending_listen_freq for p2p_go_neg_start"); |
| p2p->pending_listen_freq = 0; |
| } |
| p2p->cfg->stop_listen(p2p->cfg->cb_ctx); |
| p2p->go_neg_peer->status = P2P_SC_SUCCESS; |
| /* |
| * Set new timeout to make sure a previously set one does not expire |
| * too quickly while waiting for the GO Negotiation to complete. |
| */ |
| p2p_set_timeout(p2p, 0, 500000); |
| 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; |
| if (p2p->pending_listen_freq) { |
| p2p_dbg(p2p, "Clear pending_listen_freq for p2p_invite_start"); |
| p2p->pending_listen_freq = 0; |
| } |
| p2p->cfg->stop_listen(p2p->cfg->cb_ctx); |
| p2p_invite_send(p2p, p2p->invite_peer, p2p->invite_go_dev_addr, |
| p2p->invite_dev_pw_id); |
| } |
| |
| |
| 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 (msg.listen_channel) { |
| int freq; |
| |
| if (dev->country[0] == 0) |
| os_memcpy(dev->country, msg.listen_channel, 3); |
| |
| freq = p2p_channel_to_freq(msg.listen_channel[3], |
| msg.listen_channel[4]); |
| |
| if (freq > 0 && dev->listen_freq != freq) { |
| p2p_dbg(p2p, |
| "Updated peer " MACSTR " Listen channel (Probe Request): %d -> %d MHz", |
| MAC2STR(addr), dev->listen_freq, freq); |
| dev->listen_freq = freq; |
| } |
| } |
| |
| os_get_reltime(&dev->last_seen); |
| p2p_parse_free(&msg); |
| return; /* already known */ |
| } |
| |
| dev = p2p_create_device(p2p, addr); |
| if (dev == NULL) { |
| p2p_parse_free(&msg); |
| return; |
| } |
| |
| os_get_reltime(&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(msg.listen_channel[3], |
| msg.listen_channel[4]); |
| } |
| |
| p2p_copy_wps_info(p2p, dev, 1, &msg); |
| |
| if (msg.wfd_subelems) { |
| wpabuf_free(dev->info.wfd_subelems); |
| dev->info.wfd_subelems = wpabuf_dup(msg.wfd_subelems); |
| } |
| |
| p2p_parse_free(&msg); |
| |
| p2p_dbg(p2p, "Created device entry based on Probe Req: " MACSTR |
| " dev_capab=0x%x group_capab=0x%x name='%s' listen_freq=%d", |
| MAC2STR(dev->info.p2p_device_addr), dev->info.dev_capab, |
| dev->info.group_capab, dev->info.device_name, |
| dev->listen_freq); |
| } |
| |
| |
| 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_reltime(&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, |
| const u8 *query_hash, |
| u8 query_count) |
| { |
| struct wpabuf *buf; |
| u8 *len; |
| int pw_id = -1; |
| size_t extra = 0; |
| |
| #ifdef CONFIG_WIFI_DISPLAY |
| if (p2p->wfd_ie_probe_resp) |
| extra = wpabuf_len(p2p->wfd_ie_probe_resp); |
| #endif /* CONFIG_WIFI_DISPLAY */ |
| |
| if (p2p->vendor_elem && p2p->vendor_elem[VENDOR_ELEM_PROBE_RESP_P2P]) |
| extra += wpabuf_len(p2p->vendor_elem[VENDOR_ELEM_PROBE_RESP_P2P]); |
| |
| if (query_count) |
| extra += MAX_SVC_ADV_IE_LEN; |
| |
| buf = wpabuf_alloc(1000 + extra); |
| if (buf == NULL) |
| return NULL; |
| |
| if (p2p->go_neg_peer) { |
| /* Advertise immediate availability of WPS credential */ |
| pw_id = p2p_wps_method_pw_id(p2p->go_neg_peer->wps_method); |
| } |
| |
| if (p2p_build_wps_ie(p2p, buf, pw_id, 1) < 0) { |
| p2p_dbg(p2p, "Failed to build WPS IE for Probe Response"); |
| wpabuf_free(buf); |
| return NULL; |
| } |
| |
| #ifdef CONFIG_WIFI_DISPLAY |
| if (p2p->wfd_ie_probe_resp) |
| wpabuf_put_buf(buf, p2p->wfd_ie_probe_resp); |
| #endif /* CONFIG_WIFI_DISPLAY */ |
| |
| if (p2p->vendor_elem && p2p->vendor_elem[VENDOR_ELEM_PROBE_RESP_P2P]) |
| wpabuf_put_buf(buf, |
| p2p->vendor_elem[VENDOR_ELEM_PROBE_RESP_P2P]); |
| |
| /* P2P IE */ |
| len = p2p_buf_add_ie_hdr(buf); |
| p2p_buf_add_capability(buf, p2p->dev_capab & |
| ~P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY, 0); |
| 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); |
| |
| if (query_count) { |
| p2p_buf_add_service_instance(buf, p2p, query_count, query_hash, |
| p2p->p2ps_adv_list); |
| } |
| |
| return buf; |
| } |
| |
| static int p2p_build_probe_resp_buf(struct p2p_data *p2p, struct wpabuf *buf, |
| struct wpabuf *ies, |
| const u8 *addr, int rx_freq) |
| { |
| struct ieee80211_mgmt *resp; |
| u8 channel, op_class; |
| |
| resp = wpabuf_put(buf, offsetof(struct ieee80211_mgmt, |
| u.probe_resp.variable)); |
| |
| 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); |
| |
| if (!rx_freq) { |
| channel = p2p->cfg->channel; |
| } else if (p2p_freq_to_channel(rx_freq, &op_class, &channel)) { |
| p2p_err(p2p, "Failed to convert freq to channel"); |
| return -1; |
| } |
| |
| wpabuf_put_u8(buf, WLAN_EID_DS_PARAMS); |
| wpabuf_put_u8(buf, 1); |
| wpabuf_put_u8(buf, channel); |
| |
| wpabuf_put_buf(buf, ies); |
| |
| return 0; |
| } |
| |
| static int p2p_service_find_asp(struct p2p_data *p2p, const u8 *hash) |
| { |
| struct p2ps_advertisement *adv_data; |
| int any_wfa; |
| |
| p2p_dbg(p2p, "ASP find - ASP list: %p", p2p->p2ps_adv_list); |
| |
| /* Wildcard org.wi-fi.wfds matches any WFA spec defined service */ |
| any_wfa = os_memcmp(hash, p2p->wild_card_hash, P2PS_HASH_LEN) == 0; |
| |
| adv_data = p2p->p2ps_adv_list; |
| while (adv_data) { |
| if (os_memcmp(hash, adv_data->hash, P2PS_HASH_LEN) == 0) |
| return 1; /* exact hash match */ |
| if (any_wfa && |
| os_strncmp(adv_data->svc_name, P2PS_WILD_HASH_STR, |
| os_strlen(P2PS_WILD_HASH_STR)) == 0) |
| return 1; /* WFA service match */ |
| adv_data = adv_data->next; |
| } |
| |
| return 0; |
| } |
| |
| |
| 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, |
| unsigned int rx_freq) |
| { |
| struct ieee802_11_elems elems; |
| struct wpabuf *buf; |
| struct p2p_message msg; |
| struct wpabuf *ies; |
| |
| if (ieee802_11_parse_elems((u8 *) ie, ie_len, &elems, 0) == |
| ParseFailed) { |
| /* Ignore invalid Probe Request frames */ |
| p2p_dbg(p2p, "Could not parse Probe Request frame - ignore it"); |
| return P2P_PREQ_MALFORMED; |
| } |
| |
| if (elems.p2p == NULL) { |
| /* not a P2P probe - ignore it */ |
| p2p_dbg(p2p, "Not a P2P probe - ignore it"); |
| return P2P_PREQ_NOT_P2P; |
| } |
| |
| 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 |
| */ |
| p2p_dbg(p2p, "Probe Req DA " MACSTR " not ours - ignore it", |
| MAC2STR(dst)); |
| return P2P_PREQ_NOT_PROCESSED; |
| } |
| |
| if (bssid && !is_broadcast_ether_addr(bssid)) { |
| /* Not sent to the Wildcard BSSID */ |
| p2p_dbg(p2p, "Probe Req BSSID " MACSTR " not wildcard - ignore it", |
| MAC2STR(bssid)); |
| return P2P_PREQ_NOT_PROCESSED; |
| } |
| |
| 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 */ |
| p2p_dbg(p2p, "Probe Req not using P2P Wildcard SSID - ignore it"); |
| return P2P_PREQ_NOT_PROCESSED; |
| } |
| |
| if (supp_rates_11b_only(&elems)) { |
| /* Indicates support for 11b rates only */ |
| p2p_dbg(p2p, "Probe Req with 11b rates only supported - ignore it"); |
| return P2P_PREQ_NOT_P2P; |
| } |
| |
| os_memset(&msg, 0, sizeof(msg)); |
| if (p2p_parse_ies(ie, ie_len, &msg) < 0) { |
| /* Could not parse P2P attributes */ |
| p2p_dbg(p2p, "Could not parse P2P attributes in Probe Req - ignore it"); |
| return P2P_PREQ_NOT_P2P; |
| } |
| |
| if (msg.service_hash && msg.service_hash_count) { |
| const u8 *hash = msg.service_hash; |
| u8 i; |
| int p2ps_svc_found = 0; |
| |
| p2p_dbg(p2p, "in_listen=%d drv_in_listen=%d when received P2PS Probe Request at %u MHz; own Listen channel %u, pending listen freq %u MHz", |
| p2p->in_listen, p2p->drv_in_listen, rx_freq, |
| p2p->cfg->channel, p2p->pending_listen_freq); |
| |
| if (!p2p->in_listen && !p2p->drv_in_listen && |
| p2p->pending_listen_freq && rx_freq && |
| rx_freq != p2p->pending_listen_freq) { |
| p2p_dbg(p2p, "Do not reply to Probe Request frame that was received on %u MHz while waiting to start Listen state on %u MHz", |
| rx_freq, p2p->pending_listen_freq); |
| p2p_parse_free(&msg); |
| return P2P_PREQ_NOT_LISTEN; |
| } |
| |
| for (i = 0; i < msg.service_hash_count; i++) { |
| if (p2p_service_find_asp(p2p, hash)) { |
| p2p_dbg(p2p, "Service Hash match found: " |
| MACSTR, MAC2STR(hash)); |
| p2ps_svc_found = 1; |
| break; |
| } |
| hash += P2PS_HASH_LEN; |
| } |
| |
| /* Probed hash unknown */ |
| if (!p2ps_svc_found) { |
| p2p_dbg(p2p, "No Service Hash match found"); |
| p2p_parse_free(&msg); |
| return P2P_PREQ_NOT_PROCESSED; |
| } |
| } else { |
| /* This is not a P2PS Probe Request */ |
| p2p_dbg(p2p, "No P2PS Hash in Probe Request"); |
| |
| if (!p2p->in_listen || !p2p->drv_in_listen) { |
| /* not in Listen state - ignore Probe Request */ |
| p2p_dbg(p2p, "Not in Listen state (in_listen=%d drv_in_listen=%d) - ignore Probe Request", |
| p2p->in_listen, p2p->drv_in_listen); |
| p2p_parse_free(&msg); |
| return P2P_PREQ_NOT_LISTEN; |
| } |
| } |
| |
| if (msg.device_id && |
| os_memcmp(msg.device_id, p2p->cfg->dev_addr, ETH_ALEN) != 0) { |
| /* Device ID did not match */ |
| p2p_dbg(p2p, "Probe Req requested Device ID " MACSTR " did not match - ignore it", |
| MAC2STR(msg.device_id)); |
| p2p_parse_free(&msg); |
| return P2P_PREQ_NOT_PROCESSED; |
| } |
| |
| /* Check Requested Device Type match */ |
| if (msg.wps_attributes && |
| !p2p_match_dev_type(p2p, msg.wps_attributes)) { |
| /* No match with Requested Device Type */ |
| p2p_dbg(p2p, "Probe Req requested Device Type did not match - ignore it"); |
| p2p_parse_free(&msg); |
| return P2P_PREQ_NOT_PROCESSED; |
| } |
| |
| if (!p2p->cfg->send_probe_resp) { |
| /* Response generated elsewhere */ |
| p2p_dbg(p2p, "Probe Resp generated elsewhere - do not generate additional response"); |
| p2p_parse_free(&msg); |
| return P2P_PREQ_NOT_PROCESSED; |
| } |
| |
| p2p_dbg(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, msg.service_hash, |
| msg.service_hash_count); |
| p2p_parse_free(&msg); |
| if (ies == NULL) |
| return P2P_PREQ_NOT_PROCESSED; |
| |
| buf = wpabuf_alloc(200 + wpabuf_len(ies)); |
| if (buf == NULL) { |
| wpabuf_free(ies); |
| return P2P_PREQ_NOT_PROCESSED; |
| } |
| |
| if (p2p_build_probe_resp_buf(p2p, buf, ies, addr, rx_freq)) { |
| wpabuf_free(ies); |
| wpabuf_free(buf); |
| return P2P_PREQ_NOT_PROCESSED; |
| } |
| |
| wpabuf_free(ies); |
| |
| p2p->cfg->send_probe_resp(p2p->cfg->cb_ctx, buf, rx_freq); |
| |
| wpabuf_free(buf); |
| |
| return P2P_PREQ_PROCESSED; |
| } |
| |
| |
| 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, |
| unsigned int rx_freq, int p2p_lo_started) |
| { |
| enum p2p_probe_req_status res; |
| |
| p2p_add_dev_from_probe_req(p2p, addr, ie, ie_len); |
| |
| if (p2p_lo_started) { |
| p2p_dbg(p2p, |
| "Probe Response is offloaded, do not reply Probe Request"); |
| return P2P_PREQ_PROCESSED; |
| } |
| |
| res = p2p_reply_probe(p2p, addr, dst, bssid, ie, ie_len, rx_freq); |
| if (res != P2P_PREQ_PROCESSED && res != P2P_PREQ_NOT_PROCESSED) |
| return res; |
| |
| /* |
| * Activate a pending GO Negotiation/Invite flow if a received Probe |
| * Request frame is from an expected peer. Some devices may share the |
| * same address for P2P and non-P2P STA running simultaneously. The |
| * P2P_PREQ_PROCESSED and P2P_PREQ_NOT_PROCESSED p2p_reply_probe() |
| * return values verified above ensure we are handling a Probe Request |
| * frame from a P2P peer. |
| */ |
| if ((p2p->state == P2P_CONNECT || p2p->state == P2P_CONNECT_LISTEN) && |
| p2p->go_neg_peer && |
| os_memcmp(addr, p2p->go_neg_peer->info.p2p_device_addr, ETH_ALEN) |
| == 0 && |
| !(p2p->go_neg_peer->flags & P2P_DEV_WAIT_GO_NEG_CONFIRM)) { |
| /* Received a Probe Request from GO Negotiation peer */ |
| p2p_dbg(p2p, "Found GO Negotiation peer - try to start GO negotiation from timeout"); |
| eloop_cancel_timeout(p2p_go_neg_start, p2p, NULL); |
| eloop_register_timeout(0, 0, p2p_go_neg_start, p2p, NULL); |
| return res; |
| } |
| |
| if ((p2p->state == P2P_INVITE || p2p->state == P2P_INVITE_LISTEN) && |
| p2p->invite_peer && |
| (p2p->invite_peer->flags & P2P_DEV_WAIT_INV_REQ_ACK) && |
| os_memcmp(addr, p2p->invite_peer->info.p2p_device_addr, ETH_ALEN) |
| == 0) { |
| /* Received a Probe Request from Invite peer */ |
| p2p_dbg(p2p, "Found Invite peer - try to start Invite from timeout"); |
| eloop_cancel_timeout(p2p_invite_start, p2p, NULL); |
| eloop_register_timeout(0, 0, p2p_invite_start, p2p, NULL); |
| return res; |
| } |
| |
| return res; |
| } |
| |
| |
| static int p2p_assoc_req_ie_wlan_ap(struct p2p_data *p2p, const u8 *bssid, |
| u8 *buf, size_t len, struct wpabuf *p2p_ie) |
| { |
| struct wpabuf *tmp; |
| u8 *lpos; |
| size_t tmplen; |
| int res; |
| u8 group_capab; |
| struct p2p_message msg; |
| |
| if (p2p_ie == NULL) |
| return 0; /* WLAN AP is not a P2P manager */ |
| |
| os_memset(&msg, 0, sizeof(msg)); |
| if (p2p_parse_p2p_ie(p2p_ie, &msg) < 0) |
| return 0; |
| |
| p2p_dbg(p2p, "BSS P2P manageability %s", |
| msg.manageability ? "enabled" : "disabled"); |
| |
| if (!msg.manageability) |
| return 0; |
| |
| /* |
| * (Re)Association Request - P2P IE |
| * P2P Capability attribute (shall be present) |
| * P2P Interface attribute (present if concurrent device and |
| * P2P Management is enabled) |
| */ |
| tmp = wpabuf_alloc(200); |
| if (tmp == NULL) |
| return -1; |
| |
| lpos = p2p_buf_add_ie_hdr(tmp); |
| 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); |
| if ((p2p->dev_capab & P2P_DEV_CAPAB_CONCURRENT_OPER) && |
| (p2p->dev_capab & P2P_DEV_CAPAB_INFRA_MANAGED)) |
| 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, |
| size_t len, int p2p_group, struct wpabuf *p2p_ie) |
| { |
| struct wpabuf *tmp; |
| u8 *lpos; |
| struct p2p_device *peer; |
| size_t tmplen; |
| int res; |
| size_t extra = 0; |
| |
| if (!p2p_group) |
| return p2p_assoc_req_ie_wlan_ap(p2p, bssid, buf, len, p2p_ie); |
| |
| #ifdef CONFIG_WIFI_DISPLAY |
| if (p2p->wfd_ie_assoc_req) |
| extra = wpabuf_len(p2p->wfd_ie_assoc_req); |
| #endif /* CONFIG_WIFI_DISPLAY */ |
| |
| if (p2p->vendor_elem && p2p->vendor_elem[VENDOR_ELEM_P2P_ASSOC_REQ]) |
| extra += wpabuf_len(p2p->vendor_elem[VENDOR_ELEM_P2P_ASSOC_REQ]); |
| |
| /* |
| * (Re)Association Request - P2P IE |
| * P2P Capability attribute (shall be present) |
| * Extended Listen Timing (may be present) |
| * P2P Device Info attribute (shall be present) |
| */ |
| tmp = wpabuf_alloc(200 + extra); |
| if (tmp == NULL) |
| return -1; |
| |
| #ifdef CONFIG_WIFI_DISPLAY |
| if (p2p->wfd_ie_assoc_req) |
| wpabuf_put_buf(tmp, p2p->wfd_ie_assoc_req); |
| #endif /* CONFIG_WIFI_DISPLAY */ |
| |
| if (p2p->vendor_elem && p2p->vendor_elem[VENDOR_ELEM_P2P_ASSOC_REQ]) |
| wpabuf_put_buf(tmp, |
| p2p->vendor_elem[VENDOR_ELEM_P2P_ASSOC_REQ]); |
| |
| peer = bssid ? p2p_get_device(p2p, bssid) : NULL; |
| |
| lpos = p2p_buf_add_ie_hdr(tmp); |
| p2p_buf_add_capability(tmp, p2p->dev_capab, 0); |
| if (p2p->ext_listen_interval) |
| p2p_buf_add_ext_listen_timing(tmp, p2p->ext_listen_period, |
| p2p->ext_listen_interval); |
| 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; |
| } |
| |
| |
| struct p2ps_advertisement * |
| p2p_service_p2ps_id(struct p2p_data *p2p, u32 adv_id) |
| { |
| struct p2ps_advertisement *adv_data; |
| |
| if (!p2p) |
| return NULL; |
| |
| adv_data = p2p->p2ps_adv_list; |
| while (adv_data) { |
| if (adv_data->id == adv_id) |
| return adv_data; |
| adv_data = adv_data->next; |
| } |
| |
| return NULL; |
| } |
| |
| |
| int p2p_service_del_asp(struct p2p_data *p2p, u32 adv_id) |
| { |
| struct p2ps_advertisement *adv_data; |
| struct p2ps_advertisement **prior; |
| |
| if (!p2p) |
| return -1; |
| |
| adv_data = p2p->p2ps_adv_list; |
| prior = &p2p->p2ps_adv_list; |
| while (adv_data) { |
| if (adv_data->id == adv_id) { |
| p2p_dbg(p2p, "Delete ASP adv_id=0x%x", adv_id); |
| *prior = adv_data->next; |
| os_free(adv_data); |
| return 0; |
| } |
| prior = &adv_data->next; |
| adv_data = adv_data->next; |
| } |
| |
| return -1; |
| } |
| |
| |
| int p2p_service_add_asp(struct p2p_data *p2p, int auto_accept, u32 adv_id, |
| const char *adv_str, u8 svc_state, u16 config_methods, |
| const char *svc_info, const u8 *cpt_priority) |
| { |
| struct p2ps_advertisement *adv_data, *tmp, **prev; |
| u8 buf[P2PS_HASH_LEN]; |
| size_t adv_data_len, adv_len, info_len = 0; |
| int i; |
| |
| if (!p2p || !adv_str || !adv_str[0] || !cpt_priority) |
| return -1; |
| |
| if (!(config_methods & p2p->cfg->config_methods)) { |
| p2p_dbg(p2p, "Config methods not supported svc: 0x%x dev: 0x%x", |
| config_methods, p2p->cfg->config_methods); |
| return -1; |
| } |
| |
| if (!p2ps_gen_hash(p2p, adv_str, buf)) |
| return -1; |
| |
| if (svc_info) |
| info_len = os_strlen(svc_info); |
| adv_len = os_strlen(adv_str); |
| adv_data_len = sizeof(struct p2ps_advertisement) + adv_len + 1 + |
| info_len + 1; |
| |
| adv_data = os_zalloc(adv_data_len); |
| if (!adv_data) |
| return -1; |
| |
| os_memcpy(adv_data->hash, buf, P2PS_HASH_LEN); |
| adv_data->id = adv_id; |
| adv_data->state = svc_state; |
| adv_data->config_methods = config_methods & p2p->cfg->config_methods; |
| adv_data->auto_accept = (u8) auto_accept; |
| os_memcpy(adv_data->svc_name, adv_str, adv_len); |
| |
| for (i = 0; cpt_priority[i] && i < P2PS_FEATURE_CAPAB_CPT_MAX; i++) { |
| adv_data->cpt_priority[i] = cpt_priority[i]; |
| adv_data->cpt_mask |= cpt_priority[i]; |
| } |
| |
| if (svc_info && info_len) { |
| adv_data->svc_info = &adv_data->svc_name[adv_len + 1]; |
| os_memcpy(adv_data->svc_info, svc_info, info_len); |
| } |
| |
| /* |
| * Group Advertisements by service string. They do not need to be |
| * sorted, but groups allow easier Probe Response instance grouping |
| */ |
| tmp = p2p->p2ps_adv_list; |
| prev = &p2p->p2ps_adv_list; |
| while (tmp) { |
| if (tmp->id == adv_data->id) { |
| if (os_strcmp(tmp->svc_name, adv_data->svc_name) != 0) { |
| os_free(adv_data); |
| return -1; |
| } |
| adv_data->next = tmp->next; |
| *prev = adv_data; |
| os_free(tmp); |
| goto inserted; |
| } else { |
| if (os_strcmp(tmp->svc_name, adv_data->svc_name) == 0) { |
| adv_data->next = tmp->next; |
| tmp->next = adv_data; |
| goto inserted; |
| } |
| } |
| prev = &tmp->next; |
| tmp = tmp->next; |
| } |
| |
| /* No svc_name match found */ |
| adv_data->next = p2p->p2ps_adv_list; |
| p2p->p2ps_adv_list = adv_data; |
| |
| inserted: |
| p2p_dbg(p2p, |
| "Added ASP advertisement adv_id=0x%x config_methods=0x%x svc_state=0x%x adv_str='%s' cpt_mask=0x%x", |
| adv_id, adv_data->config_methods, svc_state, adv_str, |
| adv_data->cpt_mask); |
| |
| return 0; |
| } |
| |
| |
| void p2p_service_flush_asp(struct p2p_data *p2p) |
| { |
| struct p2ps_advertisement *adv, *prev; |
| |
| if (!p2p) |
| return; |
| |
| adv = p2p->p2ps_adv_list; |
| while (adv) { |
| prev = adv; |
| adv = adv->next; |
| os_free(prev); |
| } |
| |
| p2p->p2ps_adv_list = NULL; |
| p2ps_prov_free(p2p); |
| p2p_dbg(p2p, "All ASP advertisements flushed"); |
| } |
| |
| |
| int p2p_parse_dev_addr_in_p2p_ie(struct wpabuf *p2p_ie, u8 *dev_addr) |
| { |
| struct p2p_message msg; |
| |
| os_memset(&msg, 0, sizeof(msg)); |
| if (p2p_parse_p2p_ie(p2p_ie, &msg)) |
| return -1; |
| |
| if (msg.p2p_device_addr) { |
| os_memcpy(dev_addr, msg.p2p_device_addr, ETH_ALEN); |
| return 0; |
| } else if (msg.device_id) { |
| os_memcpy(dev_addr, msg.device_id, ETH_ALEN); |
| return 0; |
| } |
| return -1; |
| } |
| |
| |
| 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); |
| wpabuf_free(p2p_ie); |
| return ret; |
| } |
| |
| |
| 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) { |
| p2p_dbg(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) { |
| p2p_dbg(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 */ |
| } |
| |
| p2p_dbg(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) { |
| p2p_dbg(p2p, "No pending Group Formation - ignore group formation failure notification"); |
| |