選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

p2p_supplicant.c 117KB

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