p2p_supplicant.c 93 KB

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