p2p_supplicant.c 124 KB

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