p2p_supplicant.c 134 KB

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