p2p_supplicant.c 89 KB

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