12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310 |
- /*
- * Wi-Fi Direct - P2P Group Owner Negotiation
- * 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 "common.h"
- #include "utils/eloop.h"
- #include "common/ieee802_11_defs.h"
- #include "common/wpa_ctrl.h"
- #include "wps/wps_defs.h"
- #include "p2p_i.h"
- #include "p2p.h"
- static int p2p_go_det(u8 own_intent, u8 peer_value)
- {
- u8 peer_intent = peer_value >> 1;
- if (own_intent == peer_intent) {
- if (own_intent == P2P_MAX_GO_INTENT)
- return -1; /* both devices want to become GO */
- /* Use tie breaker bit to determine GO */
- return (peer_value & 0x01) ? 0 : 1;
- }
- return own_intent > peer_intent;
- }
- int p2p_peer_channels_check(struct p2p_data *p2p, struct p2p_channels *own,
- struct p2p_device *dev,
- const u8 *channel_list, size_t channel_list_len)
- {
- const u8 *pos, *end;
- struct p2p_channels *ch;
- size_t channels;
- struct p2p_channels intersection;
- ch = &dev->channels;
- os_memset(ch, 0, sizeof(*ch));
- pos = channel_list;
- end = channel_list + channel_list_len;
- if (end - pos < 3)
- return -1;
- os_memcpy(dev->country, pos, 3);
- wpa_hexdump_ascii(MSG_DEBUG, "P2P: Peer country", pos, 3);
- if (pos[2] != 0x04 && os_memcmp(pos, p2p->cfg->country, 2) != 0) {
- p2p_info(p2p, "Mismatching country (ours=%c%c peer's=%c%c)",
- p2p->cfg->country[0], p2p->cfg->country[1],
- pos[0], pos[1]);
- return -1;
- }
- pos += 3;
- while (pos + 2 < end) {
- struct p2p_reg_class *cl = &ch->reg_class[ch->reg_classes];
- cl->reg_class = *pos++;
- if (pos + 1 + pos[0] > end) {
- p2p_info(p2p, "Invalid peer Channel List");
- return -1;
- }
- channels = *pos++;
- cl->channels = channels > P2P_MAX_REG_CLASS_CHANNELS ?
- P2P_MAX_REG_CLASS_CHANNELS : channels;
- os_memcpy(cl->channel, pos, cl->channels);
- pos += channels;
- ch->reg_classes++;
- if (ch->reg_classes == P2P_MAX_REG_CLASSES)
- break;
- }
- p2p_channels_intersect(own, &dev->channels, &intersection);
- p2p_dbg(p2p, "Own reg_classes %d peer reg_classes %d intersection reg_classes %d",
- (int) own->reg_classes,
- (int) dev->channels.reg_classes,
- (int) intersection.reg_classes);
- if (intersection.reg_classes == 0) {
- p2p_info(p2p, "No common channels found");
- return -1;
- }
- return 0;
- }
- static int p2p_peer_channels(struct p2p_data *p2p, struct p2p_device *dev,
- const u8 *channel_list, size_t channel_list_len)
- {
- return p2p_peer_channels_check(p2p, &p2p->channels, dev,
- channel_list, channel_list_len);
- }
- u16 p2p_wps_method_pw_id(enum p2p_wps_method wps_method)
- {
- switch (wps_method) {
- case WPS_PIN_DISPLAY:
- return DEV_PW_REGISTRAR_SPECIFIED;
- case WPS_PIN_KEYPAD:
- return DEV_PW_USER_SPECIFIED;
- case WPS_PBC:
- return DEV_PW_PUSHBUTTON;
- case WPS_NFC:
- return DEV_PW_NFC_CONNECTION_HANDOVER;
- case WPS_P2PS:
- return DEV_PW_P2PS_DEFAULT;
- default:
- return DEV_PW_DEFAULT;
- }
- }
- static const char * p2p_wps_method_str(enum p2p_wps_method wps_method)
- {
- switch (wps_method) {
- case WPS_PIN_DISPLAY:
- return "Display";
- case WPS_PIN_KEYPAD:
- return "Keypad";
- case WPS_PBC:
- return "PBC";
- case WPS_NFC:
- return "NFC";
- case WPS_P2PS:
- return "P2PS";
- default:
- return "??";
- }
- }
- static struct wpabuf * p2p_build_go_neg_req(struct p2p_data *p2p,
- struct p2p_device *peer)
- {
- struct wpabuf *buf;
- u8 *len;
- u8 group_capab;
- size_t extra = 0;
- u16 pw_id;
- #ifdef CONFIG_WIFI_DISPLAY
- if (p2p->wfd_ie_go_neg)
- extra = wpabuf_len(p2p->wfd_ie_go_neg);
- #endif /* CONFIG_WIFI_DISPLAY */
- if (p2p->vendor_elem && p2p->vendor_elem[VENDOR_ELEM_P2P_GO_NEG_REQ])
- extra += wpabuf_len(p2p->vendor_elem[VENDOR_ELEM_P2P_GO_NEG_REQ]);
- buf = wpabuf_alloc(1000 + extra);
- if (buf == NULL)
- return NULL;
- p2p_buf_add_public_action_hdr(buf, P2P_GO_NEG_REQ, peer->dialog_token);
- len = p2p_buf_add_ie_hdr(buf);
- group_capab = 0;
- if (peer->flags & P2P_DEV_PREFER_PERSISTENT_GROUP) {
- group_capab |= P2P_GROUP_CAPAB_PERSISTENT_GROUP;
- if (peer->flags & P2P_DEV_PREFER_PERSISTENT_RECONN)
- group_capab |= P2P_GROUP_CAPAB_PERSISTENT_RECONN;
- }
- if (p2p->cross_connect)
- group_capab |= P2P_GROUP_CAPAB_CROSS_CONN;
- if (p2p->cfg->p2p_intra_bss)
- group_capab |= P2P_GROUP_CAPAB_INTRA_BSS_DIST;
- p2p_buf_add_capability(buf, p2p->dev_capab &
- ~P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY,
- group_capab);
- p2p_buf_add_go_intent(buf, (p2p->go_intent << 1) | peer->tie_breaker);
- p2p_buf_add_config_timeout(buf, p2p->go_timeout, p2p->client_timeout);
- p2p_buf_add_listen_channel(buf, p2p->cfg->country, p2p->cfg->reg_class,
- p2p->cfg->channel);
- if (p2p->ext_listen_interval)
- p2p_buf_add_ext_listen_timing(buf, p2p->ext_listen_period,
- p2p->ext_listen_interval);
- p2p_buf_add_intended_addr(buf, p2p->intended_addr);
- p2p_buf_add_channel_list(buf, p2p->cfg->country, &p2p->channels);
- p2p_buf_add_device_info(buf, p2p, peer);
- p2p_buf_add_operating_channel(buf, p2p->cfg->country,
- p2p->op_reg_class, p2p->op_channel);
- p2p_buf_update_ie_hdr(buf, len);
- p2p_buf_add_pref_channel_list(buf, p2p->pref_freq_list,
- p2p->num_pref_freq);
- /* WPS IE with Device Password ID attribute */
- pw_id = p2p_wps_method_pw_id(peer->wps_method);
- if (peer->oob_pw_id)
- pw_id = peer->oob_pw_id;
- if (p2p_build_wps_ie(p2p, buf, pw_id, 0) < 0) {
- p2p_dbg(p2p, "Failed to build WPS IE for GO Negotiation Request");
- wpabuf_free(buf);
- return NULL;
- }
- #ifdef CONFIG_WIFI_DISPLAY
- if (p2p->wfd_ie_go_neg)
- wpabuf_put_buf(buf, p2p->wfd_ie_go_neg);
- #endif /* CONFIG_WIFI_DISPLAY */
- if (p2p->vendor_elem && p2p->vendor_elem[VENDOR_ELEM_P2P_GO_NEG_REQ])
- wpabuf_put_buf(buf, p2p->vendor_elem[VENDOR_ELEM_P2P_GO_NEG_REQ]);
- return buf;
- }
- int p2p_connect_send(struct p2p_data *p2p, struct p2p_device *dev)
- {
- struct wpabuf *req;
- int freq;
- if (dev->flags & P2P_DEV_PD_BEFORE_GO_NEG) {
- u16 config_method;
- p2p_dbg(p2p, "Use PD-before-GO-Neg workaround for " MACSTR,
- MAC2STR(dev->info.p2p_device_addr));
- if (dev->wps_method == WPS_PIN_DISPLAY)
- config_method = WPS_CONFIG_KEYPAD;
- else if (dev->wps_method == WPS_PIN_KEYPAD)
- config_method = WPS_CONFIG_DISPLAY;
- else if (dev->wps_method == WPS_PBC)
- config_method = WPS_CONFIG_PUSHBUTTON;
- else if (dev->wps_method == WPS_P2PS)
- config_method = WPS_CONFIG_P2PS;
- else
- return -1;
- return p2p_prov_disc_req(p2p, dev->info.p2p_device_addr,
- NULL, config_method, 0, 0, 1);
- }
- freq = dev->listen_freq > 0 ? dev->listen_freq : dev->oper_freq;
- if (dev->oob_go_neg_freq > 0)
- freq = dev->oob_go_neg_freq;
- if (freq <= 0) {
- p2p_dbg(p2p, "No Listen/Operating frequency known for the peer "
- MACSTR " to send GO Negotiation Request",
- MAC2STR(dev->info.p2p_device_addr));
- return -1;
- }
- req = p2p_build_go_neg_req(p2p, dev);
- if (req == NULL)
- return -1;
- p2p_dbg(p2p, "Sending GO Negotiation Request");
- p2p_set_state(p2p, P2P_CONNECT);
- p2p->pending_action_state = P2P_PENDING_GO_NEG_REQUEST;
- p2p->go_neg_peer = dev;
- eloop_cancel_timeout(p2p_go_neg_wait_timeout, p2p, NULL);
- dev->flags |= P2P_DEV_WAIT_GO_NEG_RESPONSE;
- dev->connect_reqs++;
- if (p2p_send_action(p2p, freq, dev->info.p2p_device_addr,
- p2p->cfg->dev_addr, dev->info.p2p_device_addr,
- wpabuf_head(req), wpabuf_len(req), 500) < 0) {
- p2p_dbg(p2p, "Failed to send Action frame");
- /* Use P2P find to recover and retry */
- p2p_set_timeout(p2p, 0, 0);
- } else
- dev->go_neg_req_sent++;
- wpabuf_free(req);
- return 0;
- }
- static struct wpabuf * p2p_build_go_neg_resp(struct p2p_data *p2p,
- struct p2p_device *peer,
- u8 dialog_token, u8 status,
- u8 tie_breaker)
- {
- struct wpabuf *buf;
- u8 *len;
- u8 group_capab;
- size_t extra = 0;
- u16 pw_id;
- p2p_dbg(p2p, "Building GO Negotiation Response");
- #ifdef CONFIG_WIFI_DISPLAY
- if (p2p->wfd_ie_go_neg)
- extra = wpabuf_len(p2p->wfd_ie_go_neg);
- #endif /* CONFIG_WIFI_DISPLAY */
- if (p2p->vendor_elem && p2p->vendor_elem[VENDOR_ELEM_P2P_GO_NEG_RESP])
- extra += wpabuf_len(p2p->vendor_elem[VENDOR_ELEM_P2P_GO_NEG_RESP]);
- buf = wpabuf_alloc(1000 + extra);
- if (buf == NULL)
- return NULL;
- p2p_buf_add_public_action_hdr(buf, P2P_GO_NEG_RESP, dialog_token);
- len = p2p_buf_add_ie_hdr(buf);
- p2p_buf_add_status(buf, status);
- group_capab = 0;
- if (peer && peer->go_state == LOCAL_GO) {
- if (peer->flags & P2P_DEV_PREFER_PERSISTENT_GROUP) {
- group_capab |= P2P_GROUP_CAPAB_PERSISTENT_GROUP;
- if (peer->flags & P2P_DEV_PREFER_PERSISTENT_RECONN)
- group_capab |=
- P2P_GROUP_CAPAB_PERSISTENT_RECONN;
- }
- if (p2p->cross_connect)
- group_capab |= P2P_GROUP_CAPAB_CROSS_CONN;
- if (p2p->cfg->p2p_intra_bss)
- group_capab |= P2P_GROUP_CAPAB_INTRA_BSS_DIST;
- }
- p2p_buf_add_capability(buf, p2p->dev_capab &
- ~P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY,
- group_capab);
- p2p_buf_add_go_intent(buf, (p2p->go_intent << 1) | tie_breaker);
- p2p_buf_add_config_timeout(buf, p2p->go_timeout, p2p->client_timeout);
- if (peer && peer->go_state == REMOTE_GO) {
- p2p_dbg(p2p, "Omit Operating Channel attribute");
- } else {
- p2p_buf_add_operating_channel(buf, p2p->cfg->country,
- p2p->op_reg_class,
- p2p->op_channel);
- }
- p2p_buf_add_intended_addr(buf, p2p->intended_addr);
- if (status || peer == NULL) {
- p2p_buf_add_channel_list(buf, p2p->cfg->country,
- &p2p->channels);
- } else if (peer->go_state == REMOTE_GO) {
- p2p_buf_add_channel_list(buf, p2p->cfg->country,
- &p2p->channels);
- } else {
- struct p2p_channels res;
- p2p_channels_intersect(&p2p->channels, &peer->channels,
- &res);
- p2p_buf_add_channel_list(buf, p2p->cfg->country, &res);
- }
- p2p_buf_add_device_info(buf, p2p, peer);
- if (peer && peer->go_state == LOCAL_GO) {
- p2p_buf_add_group_id(buf, p2p->cfg->dev_addr, p2p->ssid,
- p2p->ssid_len);
- }
- p2p_buf_update_ie_hdr(buf, len);
- /* WPS IE with Device Password ID attribute */
- pw_id = p2p_wps_method_pw_id(peer ? peer->wps_method : WPS_NOT_READY);
- if (peer && peer->oob_pw_id)
- pw_id = peer->oob_pw_id;
- if (p2p_build_wps_ie(p2p, buf, pw_id, 0) < 0) {
- p2p_dbg(p2p, "Failed to build WPS IE for GO Negotiation Response");
- wpabuf_free(buf);
- return NULL;
- }
- #ifdef CONFIG_WIFI_DISPLAY
- if (p2p->wfd_ie_go_neg)
- wpabuf_put_buf(buf, p2p->wfd_ie_go_neg);
- #endif /* CONFIG_WIFI_DISPLAY */
- if (p2p->vendor_elem && p2p->vendor_elem[VENDOR_ELEM_P2P_GO_NEG_RESP])
- wpabuf_put_buf(buf, p2p->vendor_elem[VENDOR_ELEM_P2P_GO_NEG_RESP]);
- return buf;
- }
- /**
- * p2p_reselect_channel - Re-select operating channel based on peer information
- * @p2p: P2P module context from p2p_init()
- * @intersection: Support channel list intersection from local and peer
- *
- * This function is used to re-select the best channel after having received
- * information from the peer to allow supported channel lists to be intersected.
- * This can be used to improve initial channel selection done in
- * p2p_prepare_channel() prior to the start of GO Negotiation. In addition, this
- * can be used for Invitation case.
- */
- void p2p_reselect_channel(struct p2p_data *p2p,
- struct p2p_channels *intersection)
- {
- struct p2p_reg_class *cl;
- int freq;
- u8 op_reg_class, op_channel;
- unsigned int i;
- 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 };
- if (p2p->own_freq_preference > 0 &&
- p2p_freq_to_channel(p2p->own_freq_preference,
- &op_reg_class, &op_channel) == 0 &&
- p2p_channels_includes(intersection, op_reg_class, op_channel)) {
- p2p_dbg(p2p, "Pick own channel preference (reg_class %u channel %u) from intersection",
- op_reg_class, op_channel);
- p2p->op_reg_class = op_reg_class;
- p2p->op_channel = op_channel;
- return;
- }
- if (p2p->best_freq_overall > 0 &&
- p2p_freq_to_channel(p2p->best_freq_overall,
- &op_reg_class, &op_channel) == 0 &&
- p2p_channels_includes(intersection, op_reg_class, op_channel)) {
- p2p_dbg(p2p, "Pick best overall channel (reg_class %u channel %u) from intersection",
- op_reg_class, op_channel);
- p2p->op_reg_class = op_reg_class;
- p2p->op_channel = op_channel;
- return;
- }
- /* First, try to pick the best channel from another band */
- freq = p2p_channel_to_freq(p2p->op_reg_class, p2p->op_channel);
- if (freq >= 2400 && freq < 2500 && p2p->best_freq_5 > 0 &&
- !p2p_channels_includes(intersection, p2p->op_reg_class,
- p2p->op_channel) &&
- p2p_freq_to_channel(p2p->best_freq_5,
- &op_reg_class, &op_channel) == 0 &&
- p2p_channels_includes(intersection, op_reg_class, op_channel)) {
- p2p_dbg(p2p, "Pick best 5 GHz channel (reg_class %u channel %u) from intersection",
- op_reg_class, op_channel);
- p2p->op_reg_class = op_reg_class;
- p2p->op_channel = op_channel;
- return;
- }
- if (freq >= 4900 && freq < 6000 && p2p->best_freq_24 > 0 &&
- !p2p_channels_includes(intersection, p2p->op_reg_class,
- p2p->op_channel) &&
- p2p_freq_to_channel(p2p->best_freq_24,
- &op_reg_class, &op_channel) == 0 &&
- p2p_channels_includes(intersection, op_reg_class, op_channel)) {
- p2p_dbg(p2p, "Pick best 2.4 GHz channel (reg_class %u channel %u) from intersection",
- op_reg_class, op_channel);
- p2p->op_reg_class = op_reg_class;
- p2p->op_channel = op_channel;
- return;
- }
- /* Select channel with highest preference if the peer supports it */
- for (i = 0; p2p->cfg->pref_chan && i < p2p->cfg->num_pref_chan; i++) {
- if (p2p_channels_includes(intersection,
- p2p->cfg->pref_chan[i].op_class,
- p2p->cfg->pref_chan[i].chan)) {
- p2p->op_reg_class = p2p->cfg->pref_chan[i].op_class;
- p2p->op_channel = p2p->cfg->pref_chan[i].chan;
- p2p_dbg(p2p, "Pick highest preferred channel (op_class %u channel %u) from intersection",
- p2p->op_reg_class, p2p->op_channel);
- return;
- }
- }
- /* Try a channel where we might be able to use VHT */
- if (p2p_channel_select(intersection, op_classes_vht,
- &p2p->op_reg_class, &p2p->op_channel) == 0) {
- p2p_dbg(p2p, "Pick possible VHT channel (op_class %u channel %u) from intersection",
- p2p->op_reg_class, p2p->op_channel);
- return;
- }
- /* Try a channel where we might be able to use HT40 */
- if (p2p_channel_select(intersection, op_classes_ht40,
- &p2p->op_reg_class, &p2p->op_channel) == 0) {
- p2p_dbg(p2p, "Pick possible HT40 channel (op_class %u channel %u) from intersection",
- p2p->op_reg_class, p2p->op_channel);
- return;
- }
- /* Prefer a 5 GHz channel */
- if (p2p_channel_select(intersection, op_classes_5ghz,
- &p2p->op_reg_class, &p2p->op_channel) == 0) {
- p2p_dbg(p2p, "Pick possible 5 GHz channel (op_class %u channel %u) from intersection",
- p2p->op_reg_class, p2p->op_channel);
- return;
- }
- /*
- * Try to see if the original channel is in the intersection. If
- * so, no need to change anything, as it already contains some
- * randomness.
- */
- if (p2p_channels_includes(intersection, p2p->op_reg_class,
- p2p->op_channel)) {
- p2p_dbg(p2p, "Using original operating class and channel (op_class %u channel %u) from intersection",
- p2p->op_reg_class, p2p->op_channel);
- return;
- }
- /*
- * Fall back to whatever is included in the channel intersection since
- * no better options seems to be available.
- */
- cl = &intersection->reg_class[0];
- p2p_dbg(p2p, "Pick another channel (reg_class %u channel %u) from intersection",
- cl->reg_class, cl->channel[0]);
- p2p->op_reg_class = cl->reg_class;
- p2p->op_channel = cl->channel[0];
- }
- int p2p_go_select_channel(struct p2p_data *p2p, struct p2p_device *dev,
- u8 *status)
- {
- struct p2p_channels tmp, intersection;
- p2p_channels_dump(p2p, "own channels", &p2p->channels);
- p2p_channels_dump(p2p, "peer channels", &dev->channels);
- p2p_channels_intersect(&p2p->channels, &dev->channels, &tmp);
- p2p_channels_dump(p2p, "intersection", &tmp);
- p2p_channels_remove_freqs(&tmp, &p2p->no_go_freq);
- p2p_channels_dump(p2p, "intersection after no-GO removal", &tmp);
- p2p_channels_intersect(&tmp, &p2p->cfg->channels, &intersection);
- p2p_channels_dump(p2p, "intersection with local channel list",
- &intersection);
- if (intersection.reg_classes == 0 ||
- intersection.reg_class[0].channels == 0) {
- *status = P2P_SC_FAIL_NO_COMMON_CHANNELS;
- p2p_dbg(p2p, "No common channels found");
- return -1;
- }
- if (!p2p_channels_includes(&intersection, p2p->op_reg_class,
- p2p->op_channel)) {
- if (dev->flags & P2P_DEV_FORCE_FREQ) {
- *status = P2P_SC_FAIL_NO_COMMON_CHANNELS;
- p2p_dbg(p2p, "Peer does not support the forced channel");
- return -1;
- }
- p2p_dbg(p2p, "Selected operating channel (op_class %u channel %u) not acceptable to the peer",
- p2p->op_reg_class, p2p->op_channel);
- p2p_reselect_channel(p2p, &intersection);
- } else if (!(dev->flags & P2P_DEV_FORCE_FREQ) &&
- !p2p->cfg->cfg_op_channel) {
- p2p_dbg(p2p, "Try to optimize channel selection with peer information received; previously selected op_class %u channel %u",
- p2p->op_reg_class, p2p->op_channel);
- p2p_reselect_channel(p2p, &intersection);
- }
- if (!p2p->ssid_set) {
- p2p_build_ssid(p2p, p2p->ssid, &p2p->ssid_len);
- p2p->ssid_set = 1;
- }
- return 0;
- }
- void p2p_process_go_neg_req(struct p2p_data *p2p, const u8 *sa,
- const u8 *data, size_t len, int rx_freq)
- {
- struct p2p_device *dev = NULL;
- struct wpabuf *resp;
- struct p2p_message msg;
- u8 status = P2P_SC_FAIL_INVALID_PARAMS;
- int tie_breaker = 0;
- int freq;
- p2p_dbg(p2p, "Received GO Negotiation Request from " MACSTR "(freq=%d)",
- MAC2STR(sa), rx_freq);
- if (p2p_parse(data, len, &msg))
- return;
- if (!msg.capability) {
- p2p_dbg(p2p, "Mandatory Capability attribute missing from GO Negotiation Request");
- #ifdef CONFIG_P2P_STRICT
- goto fail;
- #endif /* CONFIG_P2P_STRICT */
- }
- if (msg.go_intent)
- tie_breaker = *msg.go_intent & 0x01;
- else {
- p2p_dbg(p2p, "Mandatory GO Intent attribute missing from GO Negotiation Request");
- #ifdef CONFIG_P2P_STRICT
- goto fail;
- #endif /* CONFIG_P2P_STRICT */
- }
- if (!msg.config_timeout) {
- p2p_dbg(p2p, "Mandatory Configuration Timeout attribute missing from GO Negotiation Request");
- #ifdef CONFIG_P2P_STRICT
- goto fail;
- #endif /* CONFIG_P2P_STRICT */
- }
- if (!msg.listen_channel) {
- p2p_dbg(p2p, "No Listen Channel attribute received");
- goto fail;
- }
- if (!msg.operating_channel) {
- p2p_dbg(p2p, "No Operating Channel attribute received");
- goto fail;
- }
- if (!msg.channel_list) {
- p2p_dbg(p2p, "No Channel List attribute received");
- goto fail;
- }
- if (!msg.intended_addr) {
- p2p_dbg(p2p, "No Intended P2P Interface Address attribute received");
- goto fail;
- }
- if (!msg.p2p_device_info) {
- p2p_dbg(p2p, "No P2P Device Info attribute received");
- goto fail;
- }
- if (os_memcmp(msg.p2p_device_addr, sa, ETH_ALEN) != 0) {
- p2p_dbg(p2p, "Unexpected GO Negotiation Request SA=" MACSTR
- " != dev_addr=" MACSTR,
- MAC2STR(sa), MAC2STR(msg.p2p_device_addr));
- goto fail;
- }
- dev = p2p_get_device(p2p, sa);
- if (msg.status && *msg.status) {
- p2p_dbg(p2p, "Unexpected Status attribute (%d) in GO Negotiation Request",
- *msg.status);
- if (dev && p2p->go_neg_peer == dev &&
- *msg.status == P2P_SC_FAIL_REJECTED_BY_USER) {
- /*
- * This mechanism for using Status attribute in GO
- * Negotiation Request is not compliant with the P2P
- * specification, but some deployed devices use it to
- * indicate rejection of GO Negotiation in a case where
- * they have sent out GO Negotiation Response with
- * status 1. The P2P specification explicitly disallows
- * this. To avoid unnecessary interoperability issues
- * and extra frames, mark the pending negotiation as
- * failed and do not reply to this GO Negotiation
- * Request frame.
- */
- p2p->cfg->send_action_done(p2p->cfg->cb_ctx);
- p2p_go_neg_failed(p2p, *msg.status);
- p2p_parse_free(&msg);
- return;
- }
- goto fail;
- }
- if (dev == NULL)
- dev = p2p_add_dev_from_go_neg_req(p2p, sa, &msg);
- else if ((dev->flags & P2P_DEV_PROBE_REQ_ONLY) ||
- !(dev->flags & P2P_DEV_REPORTED))
- p2p_add_dev_info(p2p, sa, dev, &msg);
- else if (!dev->listen_freq && !dev->oper_freq) {
- /*
- * This may happen if the peer entry was added based on PD
- * Request and no Probe Request/Response frame has been received
- * from this peer (or that information has timed out).
- */
- p2p_dbg(p2p, "Update peer " MACSTR
- " based on GO Neg Req since listen/oper freq not known",
- MAC2STR(dev->info.p2p_device_addr));
- p2p_add_dev_info(p2p, sa, dev, &msg);
- }
- if (p2p->go_neg_peer && p2p->go_neg_peer == dev)
- eloop_cancel_timeout(p2p_go_neg_wait_timeout, p2p, NULL);
- if (dev && dev->flags & P2P_DEV_USER_REJECTED) {
- p2p_dbg(p2p, "User has rejected this peer");
- status = P2P_SC_FAIL_REJECTED_BY_USER;
- } else if (dev == NULL ||
- (dev->wps_method == WPS_NOT_READY &&
- (p2p->authorized_oob_dev_pw_id == 0 ||
- p2p->authorized_oob_dev_pw_id !=
- msg.dev_password_id))) {
- p2p_dbg(p2p, "Not ready for GO negotiation with " MACSTR,
- MAC2STR(sa));
- status = P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
- p2p->cfg->go_neg_req_rx(p2p->cfg->cb_ctx, sa,
- msg.dev_password_id,
- msg.go_intent ? (*msg.go_intent >> 1) :
- 0);
- } else if (p2p->go_neg_peer && p2p->go_neg_peer != dev) {
- p2p_dbg(p2p, "Already in Group Formation with another peer");
- status = P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
- } else {
- int go;
- if (!p2p->go_neg_peer) {
- p2p_dbg(p2p, "Starting GO Negotiation with previously authorized peer");
- if (!(dev->flags & P2P_DEV_FORCE_FREQ)) {
- p2p_dbg(p2p, "Use default channel settings");
- 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));
- } else {
- p2p_dbg(p2p, "Use previously configured forced channel settings");
- }
- }
- dev->flags &= ~P2P_DEV_NOT_YET_READY;
- if (!msg.go_intent) {
- p2p_dbg(p2p, "No GO Intent attribute received");
- goto fail;
- }
- if ((*msg.go_intent >> 1) > P2P_MAX_GO_INTENT) {
- p2p_dbg(p2p, "Invalid GO Intent value (%u) received",
- *msg.go_intent >> 1);
- goto fail;
- }
- if (dev->go_neg_req_sent &&
- os_memcmp(sa, p2p->cfg->dev_addr, ETH_ALEN) > 0) {
- p2p_dbg(p2p, "Do not reply since peer has higher address and GO Neg Request already sent");
- p2p_parse_free(&msg);
- return;
- }
- go = p2p_go_det(p2p->go_intent, *msg.go_intent);
- if (go < 0) {
- p2p_dbg(p2p, "Incompatible GO Intent");
- status = P2P_SC_FAIL_BOTH_GO_INTENT_15;
- goto fail;
- }
- if (p2p_peer_channels(p2p, dev, msg.channel_list,
- msg.channel_list_len) < 0) {
- p2p_dbg(p2p, "No common channels found");
- status = P2P_SC_FAIL_NO_COMMON_CHANNELS;
- goto fail;
- }
- switch (msg.dev_password_id) {
- case DEV_PW_REGISTRAR_SPECIFIED:
- p2p_dbg(p2p, "PIN from peer Display");
- if (dev->wps_method != WPS_PIN_KEYPAD) {
- p2p_dbg(p2p, "We have wps_method=%s -> incompatible",
- p2p_wps_method_str(dev->wps_method));
- status = P2P_SC_FAIL_INCOMPATIBLE_PROV_METHOD;
- goto fail;
- }
- break;
- case DEV_PW_USER_SPECIFIED:
- p2p_dbg(p2p, "Peer entered PIN on Keypad");
- if (dev->wps_method != WPS_PIN_DISPLAY) {
- p2p_dbg(p2p, "We have wps_method=%s -> incompatible",
- p2p_wps_method_str(dev->wps_method));
- status = P2P_SC_FAIL_INCOMPATIBLE_PROV_METHOD;
- goto fail;
- }
- break;
- case DEV_PW_PUSHBUTTON:
- p2p_dbg(p2p, "Peer using pushbutton");
- if (dev->wps_method != WPS_PBC) {
- p2p_dbg(p2p, "We have wps_method=%s -> incompatible",
- p2p_wps_method_str(dev->wps_method));
- status = P2P_SC_FAIL_INCOMPATIBLE_PROV_METHOD;
- goto fail;
- }
- break;
- case DEV_PW_P2PS_DEFAULT:
- p2p_dbg(p2p, "Peer using P2PS pin");
- if (dev->wps_method != WPS_P2PS) {
- p2p_dbg(p2p,
- "We have wps_method=%s -> incompatible",
- p2p_wps_method_str(dev->wps_method));
- status = P2P_SC_FAIL_INCOMPATIBLE_PROV_METHOD;
- goto fail;
- }
- break;
- default:
- if (msg.dev_password_id &&
- msg.dev_password_id == dev->oob_pw_id) {
- p2p_dbg(p2p, "Peer using NFC");
- if (dev->wps_method != WPS_NFC) {
- p2p_dbg(p2p, "We have wps_method=%s -> incompatible",
- p2p_wps_method_str(
- dev->wps_method));
- status = P2P_SC_FAIL_INCOMPATIBLE_PROV_METHOD;
- goto fail;
- }
- break;
- }
- #ifdef CONFIG_WPS_NFC
- if (p2p->authorized_oob_dev_pw_id &&
- msg.dev_password_id ==
- p2p->authorized_oob_dev_pw_id) {
- p2p_dbg(p2p, "Using static handover with our device password from NFC Tag");
- dev->wps_method = WPS_NFC;
- dev->oob_pw_id = p2p->authorized_oob_dev_pw_id;
- break;
- }
- #endif /* CONFIG_WPS_NFC */
- p2p_dbg(p2p, "Unsupported Device Password ID %d",
- msg.dev_password_id);
- status = P2P_SC_FAIL_INCOMPATIBLE_PROV_METHOD;
- goto fail;
- }
- if (go && p2p_go_select_channel(p2p, dev, &status) < 0)
- goto fail;
- dev->go_state = go ? LOCAL_GO : REMOTE_GO;
- dev->oper_freq = p2p_channel_to_freq(msg.operating_channel[3],
- msg.operating_channel[4]);
- p2p_dbg(p2p, "Peer operating channel preference: %d MHz",
- dev->oper_freq);
- if (msg.config_timeout) {
- dev->go_timeout = msg.config_timeout[0];
- dev->client_timeout = msg.config_timeout[1];
- }
- p2p_dbg(p2p, "GO Negotiation with " MACSTR, MAC2STR(sa));
- if (p2p->state != P2P_IDLE)
- p2p_stop_find_for_freq(p2p, rx_freq);
- p2p_set_state(p2p, P2P_GO_NEG);
- p2p_clear_timeout(p2p);
- dev->dialog_token = msg.dialog_token;
- os_memcpy(dev->intended_addr, msg.intended_addr, ETH_ALEN);
- p2p->go_neg_peer = dev;
- eloop_cancel_timeout(p2p_go_neg_wait_timeout, p2p, NULL);
- status = P2P_SC_SUCCESS;
- }
- fail:
- if (dev)
- dev->status = status;
- resp = p2p_build_go_neg_resp(p2p, dev, msg.dialog_token, status,
- !tie_breaker);
- p2p_parse_free(&msg);
- if (resp == NULL)
- return;
- p2p_dbg(p2p, "Sending GO Negotiation Response");
- if (rx_freq > 0)
- freq = rx_freq;
- else
- freq = p2p_channel_to_freq(p2p->cfg->reg_class,
- p2p->cfg->channel);
- if (freq < 0) {
- p2p_dbg(p2p, "Unknown regulatory class/channel");
- wpabuf_free(resp);
- return;
- }
- if (status == P2P_SC_SUCCESS) {
- p2p->pending_action_state = P2P_PENDING_GO_NEG_RESPONSE;
- dev->flags |= P2P_DEV_WAIT_GO_NEG_CONFIRM;
- if (os_memcmp(sa, p2p->cfg->dev_addr, ETH_ALEN) < 0) {
- /*
- * Peer has smaller address, so the GO Negotiation
- * Response from us is expected to complete
- * negotiation. Ignore a GO Negotiation Response from
- * the peer if it happens to be received after this
- * point due to a race condition in GO Negotiation
- * Request transmission and processing.
- */
- dev->flags &= ~P2P_DEV_WAIT_GO_NEG_RESPONSE;
- }
- } else
- p2p->pending_action_state =
- P2P_PENDING_GO_NEG_RESPONSE_FAILURE;
- if (p2p_send_action(p2p, freq, sa, p2p->cfg->dev_addr,
- p2p->cfg->dev_addr,
- wpabuf_head(resp), wpabuf_len(resp), 500) < 0) {
- p2p_dbg(p2p, "Failed to send Action frame");
- }
- wpabuf_free(resp);
- }
- static struct wpabuf * p2p_build_go_neg_conf(struct p2p_data *p2p,
- struct p2p_device *peer,
- u8 dialog_token, u8 status,
- const u8 *resp_chan, int go)
- {
- struct wpabuf *buf;
- u8 *len;
- struct p2p_channels res;
- u8 group_capab;
- size_t extra = 0;
- p2p_dbg(p2p, "Building GO Negotiation Confirm");
- #ifdef CONFIG_WIFI_DISPLAY
- if (p2p->wfd_ie_go_neg)
- extra = wpabuf_len(p2p->wfd_ie_go_neg);
- #endif /* CONFIG_WIFI_DISPLAY */
- if (p2p->vendor_elem && p2p->vendor_elem[VENDOR_ELEM_P2P_GO_NEG_CONF])
- extra += wpabuf_len(p2p->vendor_elem[VENDOR_ELEM_P2P_GO_NEG_CONF]);
- buf = wpabuf_alloc(1000 + extra);
- if (buf == NULL)
- return NULL;
- p2p_buf_add_public_action_hdr(buf, P2P_GO_NEG_CONF, dialog_token);
- len = p2p_buf_add_ie_hdr(buf);
- p2p_buf_add_status(buf, status);
- group_capab = 0;
- if (peer->go_state == LOCAL_GO) {
- if (peer->flags & P2P_DEV_PREFER_PERSISTENT_GROUP) {
- group_capab |= P2P_GROUP_CAPAB_PERSISTENT_GROUP;
- if (peer->flags & P2P_DEV_PREFER_PERSISTENT_RECONN)
- group_capab |=
- P2P_GROUP_CAPAB_PERSISTENT_RECONN;
- }
- if (p2p->cross_connect)
- group_capab |= P2P_GROUP_CAPAB_CROSS_CONN;
- if (p2p->cfg->p2p_intra_bss)
- group_capab |= P2P_GROUP_CAPAB_INTRA_BSS_DIST;
- }
- p2p_buf_add_capability(buf, p2p->dev_capab &
- ~P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY,
- group_capab);
- if (go || resp_chan == NULL)
- p2p_buf_add_operating_channel(buf, p2p->cfg->country,
- p2p->op_reg_class,
- p2p->op_channel);
- else
- p2p_buf_add_operating_channel(buf, (const char *) resp_chan,
- resp_chan[3], resp_chan[4]);
- p2p_channels_intersect(&p2p->channels, &peer->channels, &res);
- p2p_buf_add_channel_list(buf, p2p->cfg->country, &res);
- if (go) {
- p2p_buf_add_group_id(buf, p2p->cfg->dev_addr, p2p->ssid,
- p2p->ssid_len);
- }
- p2p_buf_update_ie_hdr(buf, len);
- #ifdef CONFIG_WIFI_DISPLAY
- if (p2p->wfd_ie_go_neg)
- wpabuf_put_buf(buf, p2p->wfd_ie_go_neg);
- #endif /* CONFIG_WIFI_DISPLAY */
- if (p2p->vendor_elem && p2p->vendor_elem[VENDOR_ELEM_P2P_GO_NEG_CONF])
- wpabuf_put_buf(buf, p2p->vendor_elem[VENDOR_ELEM_P2P_GO_NEG_CONF]);
- return buf;
- }
- void p2p_process_go_neg_resp(struct p2p_data *p2p, const u8 *sa,
- const u8 *data, size_t len, int rx_freq)
- {
- struct p2p_device *dev;
- int go = -1;
- struct p2p_message msg;
- u8 status = P2P_SC_SUCCESS;
- int freq;
- p2p_dbg(p2p, "Received GO Negotiation Response from " MACSTR
- " (freq=%d)", MAC2STR(sa), rx_freq);
- dev = p2p_get_device(p2p, sa);
- if (dev == NULL || dev->wps_method == WPS_NOT_READY ||
- dev != p2p->go_neg_peer) {
- p2p_dbg(p2p, "Not ready for GO negotiation with " MACSTR,
- MAC2STR(sa));
- return;
- }
- if (p2p_parse(data, len, &msg))
- return;
- if (!(dev->flags & P2P_DEV_WAIT_GO_NEG_RESPONSE)) {
- p2p_dbg(p2p, "Was not expecting GO Negotiation Response - ignore");
- p2p_parse_free(&msg);
- return;
- }
- dev->flags &= ~P2P_DEV_WAIT_GO_NEG_RESPONSE;
- if (msg.dialog_token != dev->dialog_token) {
- p2p_dbg(p2p, "Unexpected Dialog Token %u (expected %u)",
- msg.dialog_token, dev->dialog_token);
- p2p_parse_free(&msg);
- return;
- }
- if (!msg.status) {
- p2p_dbg(p2p, "No Status attribute received");
- status = P2P_SC_FAIL_INVALID_PARAMS;
- goto fail;
- }
- if (*msg.status) {
- p2p_dbg(p2p, "GO Negotiation rejected: status %d", *msg.status);
- dev->go_neg_req_sent = 0;
- if (*msg.status == P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
- p2p_dbg(p2p, "Wait for the peer to become ready for GO Negotiation");
- dev->flags |= P2P_DEV_NOT_YET_READY;
- eloop_cancel_timeout(p2p_go_neg_wait_timeout, p2p,
- NULL);
- eloop_register_timeout(120, 0, p2p_go_neg_wait_timeout,
- p2p, NULL);
- if (p2p->state == P2P_CONNECT_LISTEN)
- p2p_set_state(p2p, P2P_WAIT_PEER_CONNECT);
- else
- p2p_set_state(p2p, P2P_WAIT_PEER_IDLE);
- p2p_set_timeout(p2p, 0, 0);
- } else {
- p2p_dbg(p2p, "Stop GO Negotiation attempt");
- p2p_go_neg_failed(p2p, *msg.status);
- }
- p2p->cfg->send_action_done(p2p->cfg->cb_ctx);
- p2p_parse_free(&msg);
- return;
- }
- if (!msg.capability) {
- p2p_dbg(p2p, "Mandatory Capability attribute missing from GO Negotiation Response");
- #ifdef CONFIG_P2P_STRICT
- status = P2P_SC_FAIL_INVALID_PARAMS;
- goto fail;
- #endif /* CONFIG_P2P_STRICT */
- }
- if (!msg.p2p_device_info) {
- p2p_dbg(p2p, "Mandatory P2P Device Info attribute missing from GO Negotiation Response");
- #ifdef CONFIG_P2P_STRICT
- status = P2P_SC_FAIL_INVALID_PARAMS;
- goto fail;
- #endif /* CONFIG_P2P_STRICT */
- }
- if (!msg.intended_addr) {
- p2p_dbg(p2p, "No Intended P2P Interface Address attribute received");
- status = P2P_SC_FAIL_INVALID_PARAMS;
- goto fail;
- }
- if (!msg.go_intent) {
- p2p_dbg(p2p, "No GO Intent attribute received");
- status = P2P_SC_FAIL_INVALID_PARAMS;
- goto fail;
- }
- if ((*msg.go_intent >> 1) > P2P_MAX_GO_INTENT) {
- p2p_dbg(p2p, "Invalid GO Intent value (%u) received",
- *msg.go_intent >> 1);
- status = P2P_SC_FAIL_INVALID_PARAMS;
- goto fail;
- }
- go = p2p_go_det(p2p->go_intent, *msg.go_intent);
- if (go < 0) {
- p2p_dbg(p2p, "Incompatible GO Intent");
- status = P2P_SC_FAIL_INCOMPATIBLE_PARAMS;
- goto fail;
- }
- if (!go && msg.group_id) {
- /* Store SSID for Provisioning step */
- p2p->ssid_len = msg.group_id_len - ETH_ALEN;
- os_memcpy(p2p->ssid, msg.group_id + ETH_ALEN, p2p->ssid_len);
- } else if (!go) {
- p2p_dbg(p2p, "Mandatory P2P Group ID attribute missing from GO Negotiation Response");
- p2p->ssid_len = 0;
- status = P2P_SC_FAIL_INVALID_PARAMS;
- goto fail;
- }
- if (!msg.config_timeout) {
- p2p_dbg(p2p, "Mandatory Configuration Timeout attribute missing from GO Negotiation Response");
- #ifdef CONFIG_P2P_STRICT
- status = P2P_SC_FAIL_INVALID_PARAMS;
- goto fail;
- #endif /* CONFIG_P2P_STRICT */
- } else {
- dev->go_timeout = msg.config_timeout[0];
- dev->client_timeout = msg.config_timeout[1];
- }
- if (!msg.operating_channel && !go) {
- /*
- * Note: P2P Client may omit Operating Channel attribute to
- * indicate it does not have a preference.
- */
- p2p_dbg(p2p, "No Operating Channel attribute received");
- status = P2P_SC_FAIL_INVALID_PARAMS;
- goto fail;
- }
- if (!msg.channel_list) {
- p2p_dbg(p2p, "No Channel List attribute received");
- status = P2P_SC_FAIL_INVALID_PARAMS;
- goto fail;
- }
- if (p2p_peer_channels(p2p, dev, msg.channel_list,
- msg.channel_list_len) < 0) {
- p2p_dbg(p2p, "No common channels found");
- status = P2P_SC_FAIL_NO_COMMON_CHANNELS;
- goto fail;
- }
- if (msg.operating_channel) {
- dev->oper_freq = p2p_channel_to_freq(msg.operating_channel[3],
- msg.operating_channel[4]);
- p2p_dbg(p2p, "Peer operating channel preference: %d MHz",
- dev->oper_freq);
- } else
- dev->oper_freq = 0;
- switch (msg.dev_password_id) {
- case DEV_PW_REGISTRAR_SPECIFIED:
- p2p_dbg(p2p, "PIN from peer Display");
- if (dev->wps_method != WPS_PIN_KEYPAD) {
- p2p_dbg(p2p, "We have wps_method=%s -> incompatible",
- p2p_wps_method_str(dev->wps_method));
- status = P2P_SC_FAIL_INCOMPATIBLE_PROV_METHOD;
- goto fail;
- }
- break;
- case DEV_PW_USER_SPECIFIED:
- p2p_dbg(p2p, "Peer entered PIN on Keypad");
- if (dev->wps_method != WPS_PIN_DISPLAY) {
- p2p_dbg(p2p, "We have wps_method=%s -> incompatible",
- p2p_wps_method_str(dev->wps_method));
- status = P2P_SC_FAIL_INCOMPATIBLE_PROV_METHOD;
- goto fail;
- }
- break;
- case DEV_PW_PUSHBUTTON:
- p2p_dbg(p2p, "Peer using pushbutton");
- if (dev->wps_method != WPS_PBC) {
- p2p_dbg(p2p, "We have wps_method=%s -> incompatible",
- p2p_wps_method_str(dev->wps_method));
- status = P2P_SC_FAIL_INCOMPATIBLE_PROV_METHOD;
- goto fail;
- }
- break;
- case DEV_PW_P2PS_DEFAULT:
- p2p_dbg(p2p, "P2P: Peer using P2PS default pin");
- if (dev->wps_method != WPS_P2PS) {
- p2p_dbg(p2p, "We have wps_method=%s -> incompatible",
- p2p_wps_method_str(dev->wps_method));
- status = P2P_SC_FAIL_INCOMPATIBLE_PROV_METHOD;
- goto fail;
- }
- break;
- default:
- if (msg.dev_password_id &&
- msg.dev_password_id == dev->oob_pw_id) {
- p2p_dbg(p2p, "Peer using NFC");
- if (dev->wps_method != WPS_NFC) {
- p2p_dbg(p2p, "We have wps_method=%s -> incompatible",
- p2p_wps_method_str(dev->wps_method));
- status = P2P_SC_FAIL_INCOMPATIBLE_PROV_METHOD;
- goto fail;
- }
- break;
- }
- p2p_dbg(p2p, "Unsupported Device Password ID %d",
- msg.dev_password_id);
- status = P2P_SC_FAIL_INCOMPATIBLE_PROV_METHOD;
- goto fail;
- }
- if (go && p2p_go_select_channel(p2p, dev, &status) < 0)
- goto fail;
- p2p_set_state(p2p, P2P_GO_NEG);
- p2p_clear_timeout(p2p);
- p2p_dbg(p2p, "GO Negotiation with " MACSTR, MAC2STR(sa));
- os_memcpy(dev->intended_addr, msg.intended_addr, ETH_ALEN);
- fail:
- /* Store GO Negotiation Confirmation to allow retransmission */
- wpabuf_free(dev->go_neg_conf);
- dev->go_neg_conf = p2p_build_go_neg_conf(p2p, dev, msg.dialog_token,
- status, msg.operating_channel,
- go);
- p2p_parse_free(&msg);
- if (dev->go_neg_conf == NULL)
- return;
- p2p_dbg(p2p, "Sending GO Negotiation Confirm");
- if (status == P2P_SC_SUCCESS) {
- p2p->pending_action_state = P2P_PENDING_GO_NEG_CONFIRM;
- dev->go_state = go ? LOCAL_GO : REMOTE_GO;
- } else
- p2p->pending_action_state = P2P_NO_PENDING_ACTION;
- if (rx_freq > 0)
- freq = rx_freq;
- else
- freq = dev->listen_freq;
- dev->go_neg_conf_freq = freq;
- dev->go_neg_conf_sent = 0;
- if (p2p_send_action(p2p, freq, sa, p2p->cfg->dev_addr, sa,
- wpabuf_head(dev->go_neg_conf),
- wpabuf_len(dev->go_neg_conf), 200) < 0) {
- p2p_dbg(p2p, "Failed to send Action frame");
- p2p_go_neg_failed(p2p, -1);
- p2p->cfg->send_action_done(p2p->cfg->cb_ctx);
- } else
- dev->go_neg_conf_sent++;
- if (status != P2P_SC_SUCCESS) {
- p2p_dbg(p2p, "GO Negotiation failed");
- p2p_go_neg_failed(p2p, status);
- }
- }
- void p2p_process_go_neg_conf(struct p2p_data *p2p, const u8 *sa,
- const u8 *data, size_t len)
- {
- struct p2p_device *dev;
- struct p2p_message msg;
- p2p_dbg(p2p, "Received GO Negotiation Confirm from " MACSTR,
- MAC2STR(sa));
- dev = p2p_get_device(p2p, sa);
- if (dev == NULL || dev->wps_method == WPS_NOT_READY ||
- dev != p2p->go_neg_peer) {
- p2p_dbg(p2p, "Not ready for GO negotiation with " MACSTR,
- MAC2STR(sa));
- return;
- }
- if (p2p->pending_action_state == P2P_PENDING_GO_NEG_RESPONSE) {
- p2p_dbg(p2p, "Stopped waiting for TX status on GO Negotiation Response since we already received Confirmation");
- p2p->pending_action_state = P2P_NO_PENDING_ACTION;
- }
- if (p2p_parse(data, len, &msg))
- return;
- if (!(dev->flags & P2P_DEV_WAIT_GO_NEG_CONFIRM)) {
- p2p_dbg(p2p, "Was not expecting GO Negotiation Confirm - ignore");
- p2p_parse_free(&msg);
- return;
- }
- dev->flags &= ~P2P_DEV_WAIT_GO_NEG_CONFIRM;
- p2p->cfg->send_action_done(p2p->cfg->cb_ctx);
- if (msg.dialog_token != dev->dialog_token) {
- p2p_dbg(p2p, "Unexpected Dialog Token %u (expected %u)",
- msg.dialog_token, dev->dialog_token);
- p2p_parse_free(&msg);
- return;
- }
- if (!msg.status) {
- p2p_dbg(p2p, "No Status attribute received");
- p2p_parse_free(&msg);
- return;
- }
- if (*msg.status) {
- p2p_dbg(p2p, "GO Negotiation rejected: status %d", *msg.status);
- p2p_go_neg_failed(p2p, *msg.status);
- p2p_parse_free(&msg);
- return;
- }
- if (dev->go_state == REMOTE_GO && msg.group_id) {
- /* Store SSID for Provisioning step */
- p2p->ssid_len = msg.group_id_len - ETH_ALEN;
- os_memcpy(p2p->ssid, msg.group_id + ETH_ALEN, p2p->ssid_len);
- } else if (dev->go_state == REMOTE_GO) {
- p2p_dbg(p2p, "Mandatory P2P Group ID attribute missing from GO Negotiation Confirmation");
- p2p->ssid_len = 0;
- p2p_go_neg_failed(p2p, P2P_SC_FAIL_INVALID_PARAMS);
- p2p_parse_free(&msg);
- return;
- }
- if (!msg.operating_channel) {
- p2p_dbg(p2p, "Mandatory Operating Channel attribute missing from GO Negotiation Confirmation");
- #ifdef CONFIG_P2P_STRICT
- p2p_parse_free(&msg);
- return;
- #endif /* CONFIG_P2P_STRICT */
- } else if (dev->go_state == REMOTE_GO) {
- int oper_freq = p2p_channel_to_freq(msg.operating_channel[3],
- msg.operating_channel[4]);
- if (oper_freq != dev->oper_freq) {
- p2p_dbg(p2p, "Updated peer (GO) operating channel preference from %d MHz to %d MHz",
- dev->oper_freq, oper_freq);
- dev->oper_freq = oper_freq;
- }
- }
- if (!msg.channel_list) {
- p2p_dbg(p2p, "Mandatory Operating Channel attribute missing from GO Negotiation Confirmation");
- #ifdef CONFIG_P2P_STRICT
- p2p_parse_free(&msg);
- return;
- #endif /* CONFIG_P2P_STRICT */
- }
- p2p_parse_free(&msg);
- if (dev->go_state == UNKNOWN_GO) {
- /*
- * This should not happen since GO negotiation has already
- * been completed.
- */
- p2p_dbg(p2p, "Unexpected GO Neg state - do not know which end becomes GO");
- return;
- }
- /*
- * The peer could have missed our ctrl::ack frame for GO Negotiation
- * Confirm and continue retransmitting the frame. To reduce the
- * likelihood of the peer not getting successful TX status for the
- * GO Negotiation Confirm frame, wait a short time here before starting
- * the group so that we will remain on the current channel to
- * acknowledge any possible retransmission from the peer.
- */
- p2p_dbg(p2p, "20 ms wait on current channel before starting group");
- os_sleep(0, 20000);
- p2p_go_complete(p2p, dev);
- }
|