p2p_supplicant.c 182 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573
  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/sta_info.h"
  19. #include "ap/ap_drv_ops.h"
  20. #include "ap/p2p_hostapd.h"
  21. #include "eapol_supp/eapol_supp_sm.h"
  22. #include "rsn_supp/wpa.h"
  23. #include "wpa_supplicant_i.h"
  24. #include "driver_i.h"
  25. #include "ap.h"
  26. #include "config_ssid.h"
  27. #include "config.h"
  28. #include "notify.h"
  29. #include "scan.h"
  30. #include "bss.h"
  31. #include "offchannel.h"
  32. #include "wps_supplicant.h"
  33. #include "p2p_supplicant.h"
  34. /*
  35. * How many times to try to scan to find the GO before giving up on join
  36. * request.
  37. */
  38. #define P2P_MAX_JOIN_SCAN_ATTEMPTS 10
  39. #define P2P_AUTO_PD_SCAN_ATTEMPTS 5
  40. #ifndef P2P_MAX_CLIENT_IDLE
  41. /*
  42. * How many seconds to try to reconnect to the GO when connection in P2P client
  43. * role has been lost.
  44. */
  45. #define P2P_MAX_CLIENT_IDLE 10
  46. #endif /* P2P_MAX_CLIENT_IDLE */
  47. #ifndef P2P_MAX_INITIAL_CONN_WAIT
  48. /*
  49. * How many seconds to wait for initial 4-way handshake to get completed after
  50. * WPS provisioning step.
  51. */
  52. #define P2P_MAX_INITIAL_CONN_WAIT 10
  53. #endif /* P2P_MAX_INITIAL_CONN_WAIT */
  54. #ifndef P2P_MAX_INITIAL_CONN_WAIT_GO
  55. /*
  56. * How many seconds to wait for initial 4-way handshake to get completed after
  57. * WPS provisioning step on the GO. This controls the extra time the P2P
  58. * operation is considered to be in progress (e.g., to delay other scans) after
  59. * WPS provisioning has been completed on the GO during group formation.
  60. */
  61. #define P2P_MAX_INITIAL_CONN_WAIT_GO 10
  62. #endif /* P2P_MAX_INITIAL_CONN_WAIT_GO */
  63. #ifndef P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE
  64. /*
  65. * How many seconds to wait for initial 4-way handshake to get completed after
  66. * re-invocation of a persistent group on the GO when the client is expected
  67. * to connect automatically (no user interaction).
  68. */
  69. #define P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE 15
  70. #endif /* P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE */
  71. #ifndef P2P_CONCURRENT_SEARCH_DELAY
  72. #define P2P_CONCURRENT_SEARCH_DELAY 500
  73. #endif /* P2P_CONCURRENT_SEARCH_DELAY */
  74. #define P2P_MGMT_DEVICE_PREFIX "p2p-dev-"
  75. enum p2p_group_removal_reason {
  76. P2P_GROUP_REMOVAL_UNKNOWN,
  77. P2P_GROUP_REMOVAL_SILENT,
  78. P2P_GROUP_REMOVAL_FORMATION_FAILED,
  79. P2P_GROUP_REMOVAL_REQUESTED,
  80. P2P_GROUP_REMOVAL_IDLE_TIMEOUT,
  81. P2P_GROUP_REMOVAL_UNAVAILABLE,
  82. P2P_GROUP_REMOVAL_GO_ENDING_SESSION,
  83. P2P_GROUP_REMOVAL_PSK_FAILURE
  84. };
  85. static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx);
  86. static struct wpa_supplicant *
  87. wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
  88. int go);
  89. static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s);
  90. static void wpas_p2p_join_scan_req(struct wpa_supplicant *wpa_s, int freq);
  91. static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx);
  92. static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
  93. const u8 *dev_addr, enum p2p_wps_method wps_method,
  94. int auto_join);
  95. static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s);
  96. static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s);
  97. static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx);
  98. static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s);
  99. static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
  100. void *timeout_ctx);
  101. static void wpas_p2p_fallback_to_go_neg(struct wpa_supplicant *wpa_s,
  102. int group_added);
  103. static int wpas_p2p_stop_find_oper(struct wpa_supplicant *wpa_s);
  104. /*
  105. * Get the number of concurrent channels that the HW can operate, but that are
  106. * currently not in use by any of the wpa_supplicant interfaces.
  107. */
  108. static int wpas_p2p_num_unused_channels(struct wpa_supplicant *wpa_s)
  109. {
  110. int *freqs;
  111. int num, unused;
  112. freqs = os_calloc(wpa_s->num_multichan_concurrent, sizeof(int));
  113. if (!freqs)
  114. return -1;
  115. num = get_shared_radio_freqs(wpa_s, freqs,
  116. wpa_s->num_multichan_concurrent);
  117. os_free(freqs);
  118. unused = wpa_s->num_multichan_concurrent - num;
  119. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: num_unused_channels: %d", unused);
  120. return unused;
  121. }
  122. /*
  123. * Get the frequencies that are currently in use by one or more of the virtual
  124. * interfaces, and that are also valid for P2P operation.
  125. */
  126. static int wpas_p2p_valid_oper_freqs(struct wpa_supplicant *wpa_s,
  127. int *p2p_freqs, unsigned int len)
  128. {
  129. int *freqs;
  130. unsigned int num, i, j;
  131. freqs = os_calloc(wpa_s->num_multichan_concurrent, sizeof(int));
  132. if (!freqs)
  133. return -1;
  134. num = get_shared_radio_freqs(wpa_s, freqs,
  135. wpa_s->num_multichan_concurrent);
  136. os_memset(p2p_freqs, 0, sizeof(int) * len);
  137. for (i = 0, j = 0; i < num && j < len; i++) {
  138. if (p2p_supported_freq(wpa_s->global->p2p, freqs[i]))
  139. p2p_freqs[j++] = freqs[i];
  140. }
  141. os_free(freqs);
  142. dump_freq_array(wpa_s, "valid for P2P", p2p_freqs, j);
  143. return j;
  144. }
  145. static void wpas_p2p_set_own_freq_preference(struct wpa_supplicant *wpa_s,
  146. int freq)
  147. {
  148. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  149. return;
  150. if (freq > 0 && wpa_s->num_multichan_concurrent > 1 &&
  151. wpas_p2p_num_unused_channels(wpa_s) > 0 &&
  152. wpa_s->parent->conf->p2p_ignore_shared_freq)
  153. freq = 0;
  154. p2p_set_own_freq_preference(wpa_s->global->p2p, freq);
  155. }
  156. static void wpas_p2p_scan_res_handler(struct wpa_supplicant *wpa_s,
  157. struct wpa_scan_results *scan_res)
  158. {
  159. size_t i;
  160. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  161. return;
  162. wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS)",
  163. (int) scan_res->num);
  164. for (i = 0; i < scan_res->num; i++) {
  165. struct wpa_scan_res *bss = scan_res->res[i];
  166. struct os_time time_tmp_age, entry_ts;
  167. const u8 *ies;
  168. size_t ies_len;
  169. time_tmp_age.sec = bss->age / 1000;
  170. time_tmp_age.usec = (bss->age % 1000) * 1000;
  171. os_time_sub(&scan_res->fetch_time, &time_tmp_age, &entry_ts);
  172. ies = (const u8 *) (bss + 1);
  173. ies_len = bss->ie_len;
  174. if (bss->beacon_ie_len > 0 &&
  175. !wpa_scan_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE) &&
  176. wpa_scan_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE)) {
  177. wpa_printf(MSG_DEBUG, "P2P: Use P2P IE(s) from Beacon frame since no P2P IE(s) in Probe Response frames received for "
  178. MACSTR, MAC2STR(bss->bssid));
  179. ies = ies + ies_len;
  180. ies_len = bss->beacon_ie_len;
  181. }
  182. if (p2p_scan_res_handler(wpa_s->global->p2p, bss->bssid,
  183. bss->freq, &entry_ts, bss->level,
  184. ies, ies_len) > 0)
  185. break;
  186. }
  187. p2p_scan_res_handled(wpa_s->global->p2p);
  188. }
  189. static int wpas_p2p_scan(void *ctx, enum p2p_scan_type type, int freq,
  190. unsigned int num_req_dev_types,
  191. const u8 *req_dev_types, const u8 *dev_id, u16 pw_id)
  192. {
  193. struct wpa_supplicant *wpa_s = ctx;
  194. struct wpa_supplicant *ifs;
  195. struct wpa_driver_scan_params params;
  196. int ret;
  197. struct wpabuf *wps_ie, *ies;
  198. int social_channels[] = { 2412, 2437, 2462, 0, 0 };
  199. size_t ielen;
  200. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  201. return -1;
  202. for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
  203. if (ifs->sta_scan_pending &&
  204. (wpas_scan_scheduled(ifs) || ifs->scanning) &&
  205. wpas_p2p_in_progress(wpa_s) == 2) {
  206. wpa_printf(MSG_DEBUG, "Delaying P2P scan to allow "
  207. "pending station mode scan to be "
  208. "completed on interface %s", ifs->ifname);
  209. wpa_s->global->p2p_cb_on_scan_complete = 1;
  210. wpa_supplicant_req_scan(ifs, 0, 0);
  211. return 1;
  212. }
  213. }
  214. os_memset(&params, 0, sizeof(params));
  215. /* P2P Wildcard SSID */
  216. params.num_ssids = 1;
  217. params.ssids[0].ssid = (u8 *) P2P_WILDCARD_SSID;
  218. params.ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
  219. wpa_s->wps->dev.p2p = 1;
  220. wps_ie = wps_build_probe_req_ie(pw_id, &wpa_s->wps->dev,
  221. wpa_s->wps->uuid, WPS_REQ_ENROLLEE,
  222. num_req_dev_types, req_dev_types);
  223. if (wps_ie == NULL)
  224. return -1;
  225. ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
  226. ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
  227. if (ies == NULL) {
  228. wpabuf_free(wps_ie);
  229. return -1;
  230. }
  231. wpabuf_put_buf(ies, wps_ie);
  232. wpabuf_free(wps_ie);
  233. p2p_scan_ie(wpa_s->global->p2p, ies, dev_id);
  234. params.p2p_probe = 1;
  235. params.extra_ies = wpabuf_head(ies);
  236. params.extra_ies_len = wpabuf_len(ies);
  237. switch (type) {
  238. case P2P_SCAN_SOCIAL:
  239. params.freqs = social_channels;
  240. break;
  241. case P2P_SCAN_FULL:
  242. break;
  243. case P2P_SCAN_SOCIAL_PLUS_ONE:
  244. social_channels[3] = freq;
  245. params.freqs = social_channels;
  246. break;
  247. }
  248. ret = wpa_drv_scan(wpa_s, &params);
  249. wpabuf_free(ies);
  250. if (ret) {
  251. for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
  252. if (ifs->scanning ||
  253. ifs->scan_res_handler == wpas_p2p_scan_res_handler) {
  254. wpa_s->global->p2p_cb_on_scan_complete = 1;
  255. ret = 1;
  256. break;
  257. }
  258. }
  259. } else {
  260. os_get_time(&wpa_s->scan_trigger_time);
  261. wpa_s->scan_res_handler = wpas_p2p_scan_res_handler;
  262. }
  263. return ret;
  264. }
  265. static enum wpa_driver_if_type wpas_p2p_if_type(int p2p_group_interface)
  266. {
  267. switch (p2p_group_interface) {
  268. case P2P_GROUP_INTERFACE_PENDING:
  269. return WPA_IF_P2P_GROUP;
  270. case P2P_GROUP_INTERFACE_GO:
  271. return WPA_IF_P2P_GO;
  272. case P2P_GROUP_INTERFACE_CLIENT:
  273. return WPA_IF_P2P_CLIENT;
  274. }
  275. return WPA_IF_P2P_GROUP;
  276. }
  277. static struct wpa_supplicant * wpas_get_p2p_group(struct wpa_supplicant *wpa_s,
  278. const u8 *ssid,
  279. size_t ssid_len, int *go)
  280. {
  281. struct wpa_ssid *s;
  282. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  283. for (s = wpa_s->conf->ssid; s; s = s->next) {
  284. if (s->disabled != 0 || !s->p2p_group ||
  285. s->ssid_len != ssid_len ||
  286. os_memcmp(ssid, s->ssid, ssid_len) != 0)
  287. continue;
  288. if (s->mode == WPAS_MODE_P2P_GO &&
  289. s != wpa_s->current_ssid)
  290. continue;
  291. if (go)
  292. *go = s->mode == WPAS_MODE_P2P_GO;
  293. return wpa_s;
  294. }
  295. }
  296. return NULL;
  297. }
  298. static int wpas_p2p_group_delete(struct wpa_supplicant *wpa_s,
  299. enum p2p_group_removal_reason removal_reason)
  300. {
  301. struct wpa_ssid *ssid;
  302. char *gtype;
  303. const char *reason;
  304. ssid = wpa_s->current_ssid;
  305. if (ssid == NULL) {
  306. /*
  307. * The current SSID was not known, but there may still be a
  308. * pending P2P group interface waiting for provisioning or a
  309. * P2P group that is trying to reconnect.
  310. */
  311. ssid = wpa_s->conf->ssid;
  312. while (ssid) {
  313. if (ssid->p2p_group && ssid->disabled != 2)
  314. break;
  315. ssid = ssid->next;
  316. }
  317. if (ssid == NULL &&
  318. wpa_s->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)
  319. {
  320. wpa_printf(MSG_ERROR, "P2P: P2P group interface "
  321. "not found");
  322. return -1;
  323. }
  324. }
  325. if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO)
  326. gtype = "GO";
  327. else if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT ||
  328. (ssid && ssid->mode == WPAS_MODE_INFRA)) {
  329. wpa_s->reassociate = 0;
  330. wpa_s->disconnected = 1;
  331. wpa_supplicant_deauthenticate(wpa_s,
  332. WLAN_REASON_DEAUTH_LEAVING);
  333. gtype = "client";
  334. } else
  335. gtype = "GO";
  336. if (wpa_s->cross_connect_in_use) {
  337. wpa_s->cross_connect_in_use = 0;
  338. wpa_msg_global(wpa_s->parent, MSG_INFO,
  339. P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
  340. wpa_s->ifname, wpa_s->cross_connect_uplink);
  341. }
  342. switch (removal_reason) {
  343. case P2P_GROUP_REMOVAL_REQUESTED:
  344. reason = " reason=REQUESTED";
  345. break;
  346. case P2P_GROUP_REMOVAL_FORMATION_FAILED:
  347. reason = " reason=FORMATION_FAILED";
  348. break;
  349. case P2P_GROUP_REMOVAL_IDLE_TIMEOUT:
  350. reason = " reason=IDLE";
  351. break;
  352. case P2P_GROUP_REMOVAL_UNAVAILABLE:
  353. reason = " reason=UNAVAILABLE";
  354. break;
  355. case P2P_GROUP_REMOVAL_GO_ENDING_SESSION:
  356. reason = " reason=GO_ENDING_SESSION";
  357. break;
  358. case P2P_GROUP_REMOVAL_PSK_FAILURE:
  359. reason = " reason=PSK_FAILURE";
  360. break;
  361. default:
  362. reason = "";
  363. break;
  364. }
  365. if (removal_reason != P2P_GROUP_REMOVAL_SILENT) {
  366. wpa_msg_global(wpa_s->parent, MSG_INFO,
  367. P2P_EVENT_GROUP_REMOVED "%s %s%s",
  368. wpa_s->ifname, gtype, reason);
  369. }
  370. if (eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
  371. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
  372. if (eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  373. wpa_s->parent, NULL) > 0) {
  374. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group formation "
  375. "timeout");
  376. wpa_s->p2p_in_provisioning = 0;
  377. }
  378. /*
  379. * Make sure wait for the first client does not remain active after the
  380. * group has been removed.
  381. */
  382. wpa_s->global->p2p_go_wait_client.sec = 0;
  383. if (removal_reason != P2P_GROUP_REMOVAL_SILENT && ssid)
  384. wpas_notify_p2p_group_removed(wpa_s, ssid, gtype);
  385. if (wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE) {
  386. struct wpa_global *global;
  387. char *ifname;
  388. enum wpa_driver_if_type type;
  389. wpa_printf(MSG_DEBUG, "P2P: Remove group interface %s",
  390. wpa_s->ifname);
  391. global = wpa_s->global;
  392. ifname = os_strdup(wpa_s->ifname);
  393. type = wpas_p2p_if_type(wpa_s->p2p_group_interface);
  394. wpa_supplicant_remove_iface(wpa_s->global, wpa_s, 0);
  395. wpa_s = global->ifaces;
  396. if (wpa_s && ifname)
  397. wpa_drv_if_remove(wpa_s, type, ifname);
  398. os_free(ifname);
  399. return 1;
  400. }
  401. if (!wpa_s->p2p_go_group_formation_completed) {
  402. wpa_s->global->p2p_group_formation = NULL;
  403. wpa_s->p2p_in_provisioning = 0;
  404. }
  405. wpa_s->show_group_started = 0;
  406. os_free(wpa_s->go_params);
  407. wpa_s->go_params = NULL;
  408. wpa_printf(MSG_DEBUG, "P2P: Remove temporary group network");
  409. if (ssid && (ssid->p2p_group ||
  410. ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION ||
  411. (ssid->key_mgmt & WPA_KEY_MGMT_WPS))) {
  412. int id = ssid->id;
  413. if (ssid == wpa_s->current_ssid) {
  414. wpa_sm_set_config(wpa_s->wpa, NULL);
  415. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  416. wpa_s->current_ssid = NULL;
  417. }
  418. /*
  419. * Networks objects created during any P2P activities are not
  420. * exposed out as they might/will confuse certain non-P2P aware
  421. * applications since these network objects won't behave like
  422. * regular ones.
  423. *
  424. * Likewise, we don't send out network removed signals for such
  425. * network objects.
  426. */
  427. wpa_config_remove_network(wpa_s->conf, id);
  428. wpa_supplicant_clear_status(wpa_s);
  429. wpa_supplicant_cancel_sched_scan(wpa_s);
  430. wpa_s->sta_scan_pending = 0;
  431. } else {
  432. wpa_printf(MSG_DEBUG, "P2P: Temporary group network not "
  433. "found");
  434. }
  435. if (wpa_s->ap_iface)
  436. wpa_supplicant_ap_deinit(wpa_s);
  437. else
  438. wpa_drv_deinit_p2p_cli(wpa_s);
  439. return 0;
  440. }
  441. static int wpas_p2p_persistent_group(struct wpa_supplicant *wpa_s,
  442. u8 *go_dev_addr,
  443. const u8 *ssid, size_t ssid_len)
  444. {
  445. struct wpa_bss *bss;
  446. const u8 *bssid;
  447. struct wpabuf *p2p;
  448. u8 group_capab;
  449. const u8 *addr;
  450. if (wpa_s->go_params)
  451. bssid = wpa_s->go_params->peer_interface_addr;
  452. else
  453. bssid = wpa_s->bssid;
  454. bss = wpa_bss_get(wpa_s, bssid, ssid, ssid_len);
  455. if (bss == NULL) {
  456. u8 iface_addr[ETH_ALEN];
  457. if (p2p_get_interface_addr(wpa_s->global->p2p, bssid,
  458. iface_addr) == 0)
  459. bss = wpa_bss_get(wpa_s, iface_addr, ssid, ssid_len);
  460. }
  461. if (bss == NULL) {
  462. wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
  463. "group is persistent - BSS " MACSTR " not found",
  464. MAC2STR(bssid));
  465. return 0;
  466. }
  467. p2p = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
  468. if (p2p == NULL)
  469. p2p = wpa_bss_get_vendor_ie_multi_beacon(bss,
  470. P2P_IE_VENDOR_TYPE);
  471. if (p2p == NULL) {
  472. wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
  473. "group is persistent - BSS " MACSTR
  474. " did not include P2P IE", MAC2STR(bssid));
  475. wpa_hexdump(MSG_DEBUG, "P2P: Probe Response IEs",
  476. (u8 *) (bss + 1), bss->ie_len);
  477. wpa_hexdump(MSG_DEBUG, "P2P: Beacon IEs",
  478. ((u8 *) bss + 1) + bss->ie_len,
  479. bss->beacon_ie_len);
  480. return 0;
  481. }
  482. group_capab = p2p_get_group_capab(p2p);
  483. addr = p2p_get_go_dev_addr(p2p);
  484. wpa_printf(MSG_DEBUG, "P2P: Checking whether group is persistent: "
  485. "group_capab=0x%x", group_capab);
  486. if (addr) {
  487. os_memcpy(go_dev_addr, addr, ETH_ALEN);
  488. wpa_printf(MSG_DEBUG, "P2P: GO Device Address " MACSTR,
  489. MAC2STR(addr));
  490. } else
  491. os_memset(go_dev_addr, 0, ETH_ALEN);
  492. wpabuf_free(p2p);
  493. wpa_printf(MSG_DEBUG, "P2P: BSS " MACSTR " group_capab=0x%x "
  494. "go_dev_addr=" MACSTR,
  495. MAC2STR(bssid), group_capab, MAC2STR(go_dev_addr));
  496. return group_capab & P2P_GROUP_CAPAB_PERSISTENT_GROUP;
  497. }
  498. static int wpas_p2p_store_persistent_group(struct wpa_supplicant *wpa_s,
  499. struct wpa_ssid *ssid,
  500. const u8 *go_dev_addr)
  501. {
  502. struct wpa_ssid *s;
  503. int changed = 0;
  504. wpa_printf(MSG_DEBUG, "P2P: Storing credentials for a persistent "
  505. "group (GO Dev Addr " MACSTR ")", MAC2STR(go_dev_addr));
  506. for (s = wpa_s->conf->ssid; s; s = s->next) {
  507. if (s->disabled == 2 &&
  508. os_memcmp(go_dev_addr, s->bssid, ETH_ALEN) == 0 &&
  509. s->ssid_len == ssid->ssid_len &&
  510. os_memcmp(ssid->ssid, s->ssid, ssid->ssid_len) == 0)
  511. break;
  512. }
  513. if (s) {
  514. wpa_printf(MSG_DEBUG, "P2P: Update existing persistent group "
  515. "entry");
  516. if (ssid->passphrase && !s->passphrase)
  517. changed = 1;
  518. else if (ssid->passphrase && s->passphrase &&
  519. os_strcmp(ssid->passphrase, s->passphrase) != 0)
  520. changed = 1;
  521. } else {
  522. wpa_printf(MSG_DEBUG, "P2P: Create a new persistent group "
  523. "entry");
  524. changed = 1;
  525. s = wpa_config_add_network(wpa_s->conf);
  526. if (s == NULL)
  527. return -1;
  528. /*
  529. * Instead of network_added we emit persistent_group_added
  530. * notification. Also to keep the defense checks in
  531. * persistent_group obj registration method, we set the
  532. * relevant flags in s to designate it as a persistent group.
  533. */
  534. s->p2p_group = 1;
  535. s->p2p_persistent_group = 1;
  536. wpas_notify_persistent_group_added(wpa_s, s);
  537. wpa_config_set_network_defaults(s);
  538. }
  539. s->p2p_group = 1;
  540. s->p2p_persistent_group = 1;
  541. s->disabled = 2;
  542. s->bssid_set = 1;
  543. os_memcpy(s->bssid, go_dev_addr, ETH_ALEN);
  544. s->mode = ssid->mode;
  545. s->auth_alg = WPA_AUTH_ALG_OPEN;
  546. s->key_mgmt = WPA_KEY_MGMT_PSK;
  547. s->proto = WPA_PROTO_RSN;
  548. s->pairwise_cipher = WPA_CIPHER_CCMP;
  549. s->export_keys = 1;
  550. if (ssid->passphrase) {
  551. os_free(s->passphrase);
  552. s->passphrase = os_strdup(ssid->passphrase);
  553. }
  554. if (ssid->psk_set) {
  555. s->psk_set = 1;
  556. os_memcpy(s->psk, ssid->psk, 32);
  557. }
  558. if (s->passphrase && !s->psk_set)
  559. wpa_config_update_psk(s);
  560. if (s->ssid == NULL || s->ssid_len < ssid->ssid_len) {
  561. os_free(s->ssid);
  562. s->ssid = os_malloc(ssid->ssid_len);
  563. }
  564. if (s->ssid) {
  565. s->ssid_len = ssid->ssid_len;
  566. os_memcpy(s->ssid, ssid->ssid, s->ssid_len);
  567. }
  568. if (ssid->mode == WPAS_MODE_P2P_GO && wpa_s->global->add_psk) {
  569. dl_list_add(&s->psk_list, &wpa_s->global->add_psk->list);
  570. wpa_s->global->add_psk = NULL;
  571. changed = 1;
  572. }
  573. #ifndef CONFIG_NO_CONFIG_WRITE
  574. if (changed && wpa_s->conf->update_config &&
  575. wpa_config_write(wpa_s->confname, wpa_s->conf)) {
  576. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  577. }
  578. #endif /* CONFIG_NO_CONFIG_WRITE */
  579. return s->id;
  580. }
  581. static void wpas_p2p_add_persistent_group_client(struct wpa_supplicant *wpa_s,
  582. const u8 *addr)
  583. {
  584. struct wpa_ssid *ssid, *s;
  585. u8 *n;
  586. size_t i;
  587. int found = 0;
  588. ssid = wpa_s->current_ssid;
  589. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
  590. !ssid->p2p_persistent_group)
  591. return;
  592. for (s = wpa_s->parent->conf->ssid; s; s = s->next) {
  593. if (s->disabled != 2 || s->mode != WPAS_MODE_P2P_GO)
  594. continue;
  595. if (s->ssid_len == ssid->ssid_len &&
  596. os_memcmp(s->ssid, ssid->ssid, s->ssid_len) == 0)
  597. break;
  598. }
  599. if (s == NULL)
  600. return;
  601. for (i = 0; s->p2p_client_list && i < s->num_p2p_clients; i++) {
  602. if (os_memcmp(s->p2p_client_list + i * ETH_ALEN, addr,
  603. ETH_ALEN) != 0)
  604. continue;
  605. if (i == s->num_p2p_clients - 1)
  606. return; /* already the most recent entry */
  607. /* move the entry to mark it most recent */
  608. os_memmove(s->p2p_client_list + i * ETH_ALEN,
  609. s->p2p_client_list + (i + 1) * ETH_ALEN,
  610. (s->num_p2p_clients - i - 1) * ETH_ALEN);
  611. os_memcpy(s->p2p_client_list +
  612. (s->num_p2p_clients - 1) * ETH_ALEN, addr, ETH_ALEN);
  613. found = 1;
  614. break;
  615. }
  616. if (!found && s->num_p2p_clients < P2P_MAX_STORED_CLIENTS) {
  617. n = os_realloc_array(s->p2p_client_list,
  618. s->num_p2p_clients + 1, ETH_ALEN);
  619. if (n == NULL)
  620. return;
  621. os_memcpy(n + s->num_p2p_clients * ETH_ALEN, addr, ETH_ALEN);
  622. s->p2p_client_list = n;
  623. s->num_p2p_clients++;
  624. } else if (!found) {
  625. /* Not enough room for an additional entry - drop the oldest
  626. * entry */
  627. os_memmove(s->p2p_client_list,
  628. s->p2p_client_list + ETH_ALEN,
  629. (s->num_p2p_clients - 1) * ETH_ALEN);
  630. os_memcpy(s->p2p_client_list +
  631. (s->num_p2p_clients - 1) * ETH_ALEN,
  632. addr, ETH_ALEN);
  633. }
  634. #ifndef CONFIG_NO_CONFIG_WRITE
  635. if (wpa_s->parent->conf->update_config &&
  636. wpa_config_write(wpa_s->parent->confname, wpa_s->parent->conf))
  637. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  638. #endif /* CONFIG_NO_CONFIG_WRITE */
  639. }
  640. static void wpas_group_formation_completed(struct wpa_supplicant *wpa_s,
  641. int success)
  642. {
  643. struct wpa_ssid *ssid;
  644. const char *ssid_txt;
  645. int client;
  646. int persistent;
  647. u8 go_dev_addr[ETH_ALEN];
  648. int network_id = -1;
  649. /*
  650. * This callback is likely called for the main interface. Update wpa_s
  651. * to use the group interface if a new interface was created for the
  652. * group.
  653. */
  654. if (wpa_s->global->p2p_group_formation)
  655. wpa_s = wpa_s->global->p2p_group_formation;
  656. if (wpa_s->p2p_go_group_formation_completed) {
  657. wpa_s->global->p2p_group_formation = NULL;
  658. wpa_s->p2p_in_provisioning = 0;
  659. }
  660. if (!success) {
  661. wpa_msg_global(wpa_s->parent, MSG_INFO,
  662. P2P_EVENT_GROUP_FORMATION_FAILURE);
  663. wpas_p2p_group_delete(wpa_s,
  664. P2P_GROUP_REMOVAL_FORMATION_FAILED);
  665. return;
  666. }
  667. wpa_msg_global(wpa_s->parent, MSG_INFO,
  668. P2P_EVENT_GROUP_FORMATION_SUCCESS);
  669. ssid = wpa_s->current_ssid;
  670. if (ssid && ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
  671. ssid->mode = WPAS_MODE_P2P_GO;
  672. p2p_group_notif_formation_done(wpa_s->p2p_group);
  673. wpa_supplicant_ap_mac_addr_filter(wpa_s, NULL);
  674. }
  675. persistent = 0;
  676. if (ssid) {
  677. ssid_txt = wpa_ssid_txt(ssid->ssid, ssid->ssid_len);
  678. client = ssid->mode == WPAS_MODE_INFRA;
  679. if (ssid->mode == WPAS_MODE_P2P_GO) {
  680. persistent = ssid->p2p_persistent_group;
  681. os_memcpy(go_dev_addr, wpa_s->global->p2p_dev_addr,
  682. ETH_ALEN);
  683. } else
  684. persistent = wpas_p2p_persistent_group(wpa_s,
  685. go_dev_addr,
  686. ssid->ssid,
  687. ssid->ssid_len);
  688. } else {
  689. ssid_txt = "";
  690. client = wpa_s->p2p_group_interface ==
  691. P2P_GROUP_INTERFACE_CLIENT;
  692. os_memset(go_dev_addr, 0, ETH_ALEN);
  693. }
  694. wpa_s->show_group_started = 0;
  695. if (client) {
  696. /*
  697. * Indicate event only after successfully completed 4-way
  698. * handshake, i.e., when the interface is ready for data
  699. * packets.
  700. */
  701. wpa_s->show_group_started = 1;
  702. } else if (ssid && ssid->passphrase == NULL && ssid->psk_set) {
  703. char psk[65];
  704. wpa_snprintf_hex(psk, sizeof(psk), ssid->psk, 32);
  705. wpa_msg_global(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  706. "%s GO ssid=\"%s\" freq=%d psk=%s go_dev_addr="
  707. MACSTR "%s",
  708. wpa_s->ifname, ssid_txt, ssid->frequency, psk,
  709. MAC2STR(go_dev_addr),
  710. persistent ? " [PERSISTENT]" : "");
  711. wpas_p2p_cross_connect_setup(wpa_s);
  712. wpas_p2p_set_group_idle_timeout(wpa_s);
  713. } else {
  714. wpa_msg_global(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  715. "%s GO ssid=\"%s\" freq=%d passphrase=\"%s\" "
  716. "go_dev_addr=" MACSTR "%s",
  717. wpa_s->ifname, ssid_txt,
  718. ssid ? ssid->frequency : 0,
  719. ssid && ssid->passphrase ? ssid->passphrase : "",
  720. MAC2STR(go_dev_addr),
  721. persistent ? " [PERSISTENT]" : "");
  722. wpas_p2p_cross_connect_setup(wpa_s);
  723. wpas_p2p_set_group_idle_timeout(wpa_s);
  724. }
  725. if (persistent)
  726. network_id = wpas_p2p_store_persistent_group(wpa_s->parent,
  727. ssid, go_dev_addr);
  728. else {
  729. os_free(wpa_s->global->add_psk);
  730. wpa_s->global->add_psk = NULL;
  731. }
  732. if (network_id < 0 && ssid)
  733. network_id = ssid->id;
  734. if (!client) {
  735. wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 0);
  736. os_get_time(&wpa_s->global->p2p_go_wait_client);
  737. }
  738. }
  739. static void wpas_p2p_send_action_tx_status(struct wpa_supplicant *wpa_s,
  740. unsigned int freq,
  741. const u8 *dst, const u8 *src,
  742. const u8 *bssid,
  743. const u8 *data, size_t data_len,
  744. enum offchannel_send_action_result
  745. result)
  746. {
  747. enum p2p_send_action_result res = P2P_SEND_ACTION_SUCCESS;
  748. if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled)
  749. return;
  750. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  751. return;
  752. switch (result) {
  753. case OFFCHANNEL_SEND_ACTION_SUCCESS:
  754. res = P2P_SEND_ACTION_SUCCESS;
  755. break;
  756. case OFFCHANNEL_SEND_ACTION_NO_ACK:
  757. res = P2P_SEND_ACTION_NO_ACK;
  758. break;
  759. case OFFCHANNEL_SEND_ACTION_FAILED:
  760. res = P2P_SEND_ACTION_FAILED;
  761. break;
  762. }
  763. p2p_send_action_cb(wpa_s->global->p2p, freq, dst, src, bssid, res);
  764. if (result != OFFCHANNEL_SEND_ACTION_SUCCESS &&
  765. wpa_s->pending_pd_before_join &&
  766. (os_memcmp(dst, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
  767. os_memcmp(dst, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0) &&
  768. wpa_s->p2p_fallback_to_go_neg) {
  769. wpa_s->pending_pd_before_join = 0;
  770. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No ACK for PD Req "
  771. "during p2p_connect-auto");
  772. wpas_p2p_fallback_to_go_neg(wpa_s, 0);
  773. return;
  774. }
  775. }
  776. static int wpas_send_action(void *ctx, unsigned int freq, const u8 *dst,
  777. const u8 *src, const u8 *bssid, const u8 *buf,
  778. size_t len, unsigned int wait_time)
  779. {
  780. struct wpa_supplicant *wpa_s = ctx;
  781. return offchannel_send_action(wpa_s, freq, dst, src, bssid, buf, len,
  782. wait_time,
  783. wpas_p2p_send_action_tx_status, 1);
  784. }
  785. static void wpas_send_action_done(void *ctx)
  786. {
  787. struct wpa_supplicant *wpa_s = ctx;
  788. offchannel_send_action_done(wpa_s);
  789. }
  790. static int wpas_copy_go_neg_results(struct wpa_supplicant *wpa_s,
  791. struct p2p_go_neg_results *params)
  792. {
  793. if (wpa_s->go_params == NULL) {
  794. wpa_s->go_params = os_malloc(sizeof(*params));
  795. if (wpa_s->go_params == NULL)
  796. return -1;
  797. }
  798. os_memcpy(wpa_s->go_params, params, sizeof(*params));
  799. return 0;
  800. }
  801. static void wpas_start_wps_enrollee(struct wpa_supplicant *wpa_s,
  802. struct p2p_go_neg_results *res)
  803. {
  804. wpa_printf(MSG_DEBUG, "P2P: Start WPS Enrollee for peer " MACSTR,
  805. MAC2STR(res->peer_interface_addr));
  806. wpa_hexdump_ascii(MSG_DEBUG, "P2P: Start WPS Enrollee for SSID",
  807. res->ssid, res->ssid_len);
  808. wpa_supplicant_ap_deinit(wpa_s);
  809. wpas_copy_go_neg_results(wpa_s, res);
  810. if (res->wps_method == WPS_PBC)
  811. wpas_wps_start_pbc(wpa_s, res->peer_interface_addr, 1);
  812. else {
  813. u16 dev_pw_id = DEV_PW_DEFAULT;
  814. if (wpa_s->p2p_wps_method == WPS_PIN_KEYPAD)
  815. dev_pw_id = DEV_PW_REGISTRAR_SPECIFIED;
  816. wpas_wps_start_pin(wpa_s, res->peer_interface_addr,
  817. wpa_s->p2p_pin, 1, dev_pw_id);
  818. }
  819. }
  820. static void wpas_p2p_add_psk_list(struct wpa_supplicant *wpa_s,
  821. struct wpa_ssid *ssid)
  822. {
  823. struct wpa_ssid *persistent;
  824. struct psk_list_entry *psk;
  825. struct hostapd_data *hapd;
  826. if (!wpa_s->ap_iface)
  827. return;
  828. persistent = wpas_p2p_get_persistent(wpa_s->parent, NULL, ssid->ssid,
  829. ssid->ssid_len);
  830. if (persistent == NULL)
  831. return;
  832. hapd = wpa_s->ap_iface->bss[0];
  833. dl_list_for_each(psk, &persistent->psk_list, struct psk_list_entry,
  834. list) {
  835. struct hostapd_wpa_psk *hpsk;
  836. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add persistent group PSK entry for "
  837. MACSTR " psk=%d",
  838. MAC2STR(psk->addr), psk->p2p);
  839. hpsk = os_zalloc(sizeof(*hpsk));
  840. if (hpsk == NULL)
  841. break;
  842. os_memcpy(hpsk->psk, psk->psk, PMK_LEN);
  843. if (psk->p2p)
  844. os_memcpy(hpsk->p2p_dev_addr, psk->addr, ETH_ALEN);
  845. else
  846. os_memcpy(hpsk->addr, psk->addr, ETH_ALEN);
  847. hpsk->next = hapd->conf->ssid.wpa_psk;
  848. hapd->conf->ssid.wpa_psk = hpsk;
  849. }
  850. }
  851. static void p2p_go_configured(void *ctx, void *data)
  852. {
  853. struct wpa_supplicant *wpa_s = ctx;
  854. struct p2p_go_neg_results *params = data;
  855. struct wpa_ssid *ssid;
  856. int network_id = -1;
  857. ssid = wpa_s->current_ssid;
  858. if (ssid && ssid->mode == WPAS_MODE_P2P_GO) {
  859. wpa_printf(MSG_DEBUG, "P2P: Group setup without provisioning");
  860. if (wpa_s->global->p2p_group_formation == wpa_s)
  861. wpa_s->global->p2p_group_formation = NULL;
  862. if (os_strlen(params->passphrase) > 0) {
  863. wpa_msg_global(wpa_s->parent, MSG_INFO,
  864. P2P_EVENT_GROUP_STARTED
  865. "%s GO ssid=\"%s\" freq=%d "
  866. "passphrase=\"%s\" go_dev_addr=" MACSTR
  867. "%s", wpa_s->ifname,
  868. wpa_ssid_txt(ssid->ssid, ssid->ssid_len),
  869. ssid->frequency, params->passphrase,
  870. MAC2STR(wpa_s->global->p2p_dev_addr),
  871. params->persistent_group ?
  872. " [PERSISTENT]" : "");
  873. } else {
  874. char psk[65];
  875. wpa_snprintf_hex(psk, sizeof(psk), params->psk,
  876. sizeof(params->psk));
  877. wpa_msg_global(wpa_s->parent, MSG_INFO,
  878. P2P_EVENT_GROUP_STARTED
  879. "%s GO ssid=\"%s\" freq=%d psk=%s "
  880. "go_dev_addr=" MACSTR "%s",
  881. wpa_s->ifname,
  882. wpa_ssid_txt(ssid->ssid, ssid->ssid_len),
  883. ssid->frequency, psk,
  884. MAC2STR(wpa_s->global->p2p_dev_addr),
  885. params->persistent_group ?
  886. " [PERSISTENT]" : "");
  887. }
  888. os_get_time(&wpa_s->global->p2p_go_wait_client);
  889. if (params->persistent_group) {
  890. network_id = wpas_p2p_store_persistent_group(
  891. wpa_s->parent, ssid,
  892. wpa_s->global->p2p_dev_addr);
  893. wpas_p2p_add_psk_list(wpa_s, ssid);
  894. }
  895. if (network_id < 0)
  896. network_id = ssid->id;
  897. wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 0);
  898. wpas_p2p_cross_connect_setup(wpa_s);
  899. wpas_p2p_set_group_idle_timeout(wpa_s);
  900. if (wpa_s->p2p_first_connection_timeout) {
  901. wpa_dbg(wpa_s, MSG_DEBUG,
  902. "P2P: Start group formation timeout of %d seconds until first data connection on GO",
  903. wpa_s->p2p_first_connection_timeout);
  904. wpa_s->p2p_go_group_formation_completed = 0;
  905. wpa_s->global->p2p_group_formation = wpa_s;
  906. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  907. wpa_s->parent, NULL);
  908. eloop_register_timeout(
  909. wpa_s->p2p_first_connection_timeout, 0,
  910. wpas_p2p_group_formation_timeout,
  911. wpa_s->parent, NULL);
  912. }
  913. return;
  914. }
  915. wpa_printf(MSG_DEBUG, "P2P: Setting up WPS for GO provisioning");
  916. if (wpa_supplicant_ap_mac_addr_filter(wpa_s,
  917. params->peer_interface_addr)) {
  918. wpa_printf(MSG_DEBUG, "P2P: Failed to setup MAC address "
  919. "filtering");
  920. return;
  921. }
  922. if (params->wps_method == WPS_PBC)
  923. wpa_supplicant_ap_wps_pbc(wpa_s, params->peer_interface_addr,
  924. params->peer_device_addr);
  925. else if (wpa_s->p2p_pin[0])
  926. wpa_supplicant_ap_wps_pin(wpa_s, params->peer_interface_addr,
  927. wpa_s->p2p_pin, NULL, 0, 0);
  928. os_free(wpa_s->go_params);
  929. wpa_s->go_params = NULL;
  930. }
  931. static void wpas_start_wps_go(struct wpa_supplicant *wpa_s,
  932. struct p2p_go_neg_results *params,
  933. int group_formation)
  934. {
  935. struct wpa_ssid *ssid;
  936. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Starting GO");
  937. if (wpas_copy_go_neg_results(wpa_s, params) < 0) {
  938. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not copy GO Negotiation "
  939. "results");
  940. return;
  941. }
  942. ssid = wpa_config_add_network(wpa_s->conf);
  943. if (ssid == NULL) {
  944. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not add network for GO");
  945. return;
  946. }
  947. wpa_s->show_group_started = 0;
  948. wpa_config_set_network_defaults(ssid);
  949. ssid->temporary = 1;
  950. ssid->p2p_group = 1;
  951. ssid->p2p_persistent_group = params->persistent_group;
  952. ssid->mode = group_formation ? WPAS_MODE_P2P_GROUP_FORMATION :
  953. WPAS_MODE_P2P_GO;
  954. ssid->frequency = params->freq;
  955. ssid->ht40 = params->ht40;
  956. ssid->vht = params->vht;
  957. ssid->ssid = os_zalloc(params->ssid_len + 1);
  958. if (ssid->ssid) {
  959. os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
  960. ssid->ssid_len = params->ssid_len;
  961. }
  962. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  963. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  964. ssid->proto = WPA_PROTO_RSN;
  965. ssid->pairwise_cipher = WPA_CIPHER_CCMP;
  966. if (os_strlen(params->passphrase) > 0) {
  967. ssid->passphrase = os_strdup(params->passphrase);
  968. if (ssid->passphrase == NULL) {
  969. wpa_msg_global(wpa_s, MSG_ERROR,
  970. "P2P: Failed to copy passphrase for GO");
  971. wpa_config_remove_network(wpa_s->conf, ssid->id);
  972. return;
  973. }
  974. } else
  975. ssid->passphrase = NULL;
  976. ssid->psk_set = params->psk_set;
  977. if (ssid->psk_set)
  978. os_memcpy(ssid->psk, params->psk, sizeof(ssid->psk));
  979. else if (ssid->passphrase)
  980. wpa_config_update_psk(ssid);
  981. ssid->ap_max_inactivity = wpa_s->parent->conf->p2p_go_max_inactivity;
  982. wpa_s->ap_configured_cb = p2p_go_configured;
  983. wpa_s->ap_configured_cb_ctx = wpa_s;
  984. wpa_s->ap_configured_cb_data = wpa_s->go_params;
  985. wpa_s->connect_without_scan = ssid;
  986. wpa_s->reassociate = 1;
  987. wpa_s->disconnected = 0;
  988. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Request scan (that will be skipped) to "
  989. "start GO)");
  990. wpa_supplicant_req_scan(wpa_s, 0, 0);
  991. }
  992. static void wpas_p2p_clone_config(struct wpa_supplicant *dst,
  993. const struct wpa_supplicant *src)
  994. {
  995. struct wpa_config *d;
  996. const struct wpa_config *s;
  997. d = dst->conf;
  998. s = src->conf;
  999. #define C(n) if (s->n) d->n = os_strdup(s->n)
  1000. C(device_name);
  1001. C(manufacturer);
  1002. C(model_name);
  1003. C(model_number);
  1004. C(serial_number);
  1005. C(config_methods);
  1006. #undef C
  1007. os_memcpy(d->device_type, s->device_type, WPS_DEV_TYPE_LEN);
  1008. os_memcpy(d->sec_device_type, s->sec_device_type,
  1009. sizeof(d->sec_device_type));
  1010. d->num_sec_device_types = s->num_sec_device_types;
  1011. d->p2p_group_idle = s->p2p_group_idle;
  1012. d->p2p_intra_bss = s->p2p_intra_bss;
  1013. d->persistent_reconnect = s->persistent_reconnect;
  1014. d->max_num_sta = s->max_num_sta;
  1015. d->pbc_in_m1 = s->pbc_in_m1;
  1016. d->ignore_old_scan_res = s->ignore_old_scan_res;
  1017. d->beacon_int = s->beacon_int;
  1018. d->disassoc_low_ack = s->disassoc_low_ack;
  1019. d->disable_scan_offload = s->disable_scan_offload;
  1020. }
  1021. static void wpas_p2p_get_group_ifname(struct wpa_supplicant *wpa_s,
  1022. char *ifname, size_t len)
  1023. {
  1024. char *ifname_ptr = wpa_s->ifname;
  1025. if (os_strncmp(wpa_s->ifname, P2P_MGMT_DEVICE_PREFIX,
  1026. os_strlen(P2P_MGMT_DEVICE_PREFIX)) == 0) {
  1027. ifname_ptr = os_strrchr(wpa_s->ifname, '-') + 1;
  1028. }
  1029. os_snprintf(ifname, len, "p2p-%s-%d", ifname_ptr, wpa_s->p2p_group_idx);
  1030. if (os_strlen(ifname) >= IFNAMSIZ &&
  1031. os_strlen(wpa_s->ifname) < IFNAMSIZ) {
  1032. /* Try to avoid going over the IFNAMSIZ length limit */
  1033. os_snprintf(ifname, len, "p2p-%d", wpa_s->p2p_group_idx);
  1034. }
  1035. }
  1036. static int wpas_p2p_add_group_interface(struct wpa_supplicant *wpa_s,
  1037. enum wpa_driver_if_type type)
  1038. {
  1039. char ifname[120], force_ifname[120];
  1040. if (wpa_s->pending_interface_name[0]) {
  1041. wpa_printf(MSG_DEBUG, "P2P: Pending virtual interface exists "
  1042. "- skip creation of a new one");
  1043. if (is_zero_ether_addr(wpa_s->pending_interface_addr)) {
  1044. wpa_printf(MSG_DEBUG, "P2P: Pending virtual address "
  1045. "unknown?! ifname='%s'",
  1046. wpa_s->pending_interface_name);
  1047. return -1;
  1048. }
  1049. return 0;
  1050. }
  1051. wpas_p2p_get_group_ifname(wpa_s, ifname, sizeof(ifname));
  1052. force_ifname[0] = '\0';
  1053. wpa_printf(MSG_DEBUG, "P2P: Create a new interface %s for the group",
  1054. ifname);
  1055. wpa_s->p2p_group_idx++;
  1056. wpa_s->pending_interface_type = type;
  1057. if (wpa_drv_if_add(wpa_s, type, ifname, NULL, NULL, force_ifname,
  1058. wpa_s->pending_interface_addr, NULL) < 0) {
  1059. wpa_printf(MSG_ERROR, "P2P: Failed to create new group "
  1060. "interface");
  1061. return -1;
  1062. }
  1063. if (force_ifname[0]) {
  1064. wpa_printf(MSG_DEBUG, "P2P: Driver forced interface name %s",
  1065. force_ifname);
  1066. os_strlcpy(wpa_s->pending_interface_name, force_ifname,
  1067. sizeof(wpa_s->pending_interface_name));
  1068. } else
  1069. os_strlcpy(wpa_s->pending_interface_name, ifname,
  1070. sizeof(wpa_s->pending_interface_name));
  1071. wpa_printf(MSG_DEBUG, "P2P: Created pending virtual interface %s addr "
  1072. MACSTR, wpa_s->pending_interface_name,
  1073. MAC2STR(wpa_s->pending_interface_addr));
  1074. return 0;
  1075. }
  1076. static void wpas_p2p_remove_pending_group_interface(
  1077. struct wpa_supplicant *wpa_s)
  1078. {
  1079. if (!wpa_s->pending_interface_name[0] ||
  1080. is_zero_ether_addr(wpa_s->pending_interface_addr))
  1081. return; /* No pending virtual interface */
  1082. wpa_printf(MSG_DEBUG, "P2P: Removing pending group interface %s",
  1083. wpa_s->pending_interface_name);
  1084. wpa_drv_if_remove(wpa_s, wpa_s->pending_interface_type,
  1085. wpa_s->pending_interface_name);
  1086. os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
  1087. wpa_s->pending_interface_name[0] = '\0';
  1088. }
  1089. static struct wpa_supplicant *
  1090. wpas_p2p_init_group_interface(struct wpa_supplicant *wpa_s, int go)
  1091. {
  1092. struct wpa_interface iface;
  1093. struct wpa_supplicant *group_wpa_s;
  1094. if (!wpa_s->pending_interface_name[0]) {
  1095. wpa_printf(MSG_ERROR, "P2P: No pending group interface");
  1096. if (!wpas_p2p_create_iface(wpa_s))
  1097. return NULL;
  1098. /*
  1099. * Something has forced us to remove the pending interface; try
  1100. * to create a new one and hope for the best that we will get
  1101. * the same local address.
  1102. */
  1103. if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
  1104. WPA_IF_P2P_CLIENT) < 0)
  1105. return NULL;
  1106. }
  1107. os_memset(&iface, 0, sizeof(iface));
  1108. iface.ifname = wpa_s->pending_interface_name;
  1109. iface.driver = wpa_s->driver->name;
  1110. if (wpa_s->conf->ctrl_interface == NULL &&
  1111. wpa_s->parent != wpa_s &&
  1112. wpa_s->p2p_mgmt &&
  1113. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE))
  1114. iface.ctrl_interface = wpa_s->parent->conf->ctrl_interface;
  1115. else
  1116. iface.ctrl_interface = wpa_s->conf->ctrl_interface;
  1117. iface.driver_param = wpa_s->conf->driver_param;
  1118. group_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface);
  1119. if (group_wpa_s == NULL) {
  1120. wpa_printf(MSG_ERROR, "P2P: Failed to create new "
  1121. "wpa_supplicant interface");
  1122. return NULL;
  1123. }
  1124. wpa_s->pending_interface_name[0] = '\0';
  1125. group_wpa_s->parent = wpa_s;
  1126. group_wpa_s->p2p_group_interface = go ? P2P_GROUP_INTERFACE_GO :
  1127. P2P_GROUP_INTERFACE_CLIENT;
  1128. wpa_s->global->p2p_group_formation = group_wpa_s;
  1129. wpas_p2p_clone_config(group_wpa_s, wpa_s);
  1130. return group_wpa_s;
  1131. }
  1132. static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
  1133. void *timeout_ctx)
  1134. {
  1135. struct wpa_supplicant *wpa_s = eloop_ctx;
  1136. wpa_printf(MSG_DEBUG, "P2P: Group Formation timed out");
  1137. wpas_p2p_group_formation_failed(wpa_s);
  1138. }
  1139. void wpas_p2p_group_formation_failed(struct wpa_supplicant *wpa_s)
  1140. {
  1141. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  1142. wpa_s->parent, NULL);
  1143. if (wpa_s->global->p2p)
  1144. p2p_group_formation_failed(wpa_s->global->p2p);
  1145. else if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  1146. wpa_drv_p2p_group_formation_failed(wpa_s);
  1147. wpas_group_formation_completed(wpa_s, 0);
  1148. }
  1149. void wpas_p2p_ap_setup_failed(struct wpa_supplicant *wpa_s)
  1150. {
  1151. if (wpa_s->global->p2p_group_formation != wpa_s)
  1152. return;
  1153. /* Speed up group formation timeout since this cannot succeed */
  1154. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  1155. wpa_s->parent, NULL);
  1156. eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
  1157. wpa_s->parent, NULL);
  1158. }
  1159. void wpas_go_neg_completed(void *ctx, struct p2p_go_neg_results *res)
  1160. {
  1161. struct wpa_supplicant *wpa_s = ctx;
  1162. if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
  1163. wpa_drv_cancel_remain_on_channel(wpa_s);
  1164. wpa_s->off_channel_freq = 0;
  1165. wpa_s->roc_waiting_drv_freq = 0;
  1166. }
  1167. if (res->status) {
  1168. wpa_msg_global(wpa_s, MSG_INFO,
  1169. P2P_EVENT_GO_NEG_FAILURE "status=%d",
  1170. res->status);
  1171. wpas_notify_p2p_go_neg_completed(wpa_s, res);
  1172. wpas_p2p_remove_pending_group_interface(wpa_s);
  1173. return;
  1174. }
  1175. if (wpa_s->p2p_go_ht40)
  1176. res->ht40 = 1;
  1177. if (wpa_s->p2p_go_vht)
  1178. res->vht = 1;
  1179. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_SUCCESS "role=%s "
  1180. "freq=%d ht40=%d peer_dev=" MACSTR " peer_iface=" MACSTR
  1181. " wps_method=%s",
  1182. res->role_go ? "GO" : "client", res->freq, res->ht40,
  1183. MAC2STR(res->peer_device_addr),
  1184. MAC2STR(res->peer_interface_addr),
  1185. p2p_wps_method_text(res->wps_method));
  1186. wpas_notify_p2p_go_neg_completed(wpa_s, res);
  1187. if (res->role_go && wpa_s->p2p_persistent_id >= 0) {
  1188. struct wpa_ssid *ssid;
  1189. ssid = wpa_config_get_network(wpa_s->conf,
  1190. wpa_s->p2p_persistent_id);
  1191. if (ssid && ssid->disabled == 2 &&
  1192. ssid->mode == WPAS_MODE_P2P_GO && ssid->passphrase) {
  1193. size_t len = os_strlen(ssid->passphrase);
  1194. wpa_printf(MSG_DEBUG, "P2P: Override passphrase based "
  1195. "on requested persistent group");
  1196. os_memcpy(res->passphrase, ssid->passphrase, len);
  1197. res->passphrase[len] = '\0';
  1198. }
  1199. }
  1200. if (wpa_s->create_p2p_iface) {
  1201. struct wpa_supplicant *group_wpa_s =
  1202. wpas_p2p_init_group_interface(wpa_s, res->role_go);
  1203. if (group_wpa_s == NULL) {
  1204. wpas_p2p_remove_pending_group_interface(wpa_s);
  1205. return;
  1206. }
  1207. if (group_wpa_s != wpa_s) {
  1208. os_memcpy(group_wpa_s->p2p_pin, wpa_s->p2p_pin,
  1209. sizeof(group_wpa_s->p2p_pin));
  1210. group_wpa_s->p2p_wps_method = wpa_s->p2p_wps_method;
  1211. }
  1212. os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
  1213. wpa_s->pending_interface_name[0] = '\0';
  1214. group_wpa_s->p2p_in_provisioning = 1;
  1215. if (res->role_go)
  1216. wpas_start_wps_go(group_wpa_s, res, 1);
  1217. else
  1218. wpas_start_wps_enrollee(group_wpa_s, res);
  1219. } else {
  1220. wpa_s->p2p_in_provisioning = 1;
  1221. wpa_s->global->p2p_group_formation = wpa_s;
  1222. if (res->role_go)
  1223. wpas_start_wps_go(wpa_s, res, 1);
  1224. else
  1225. wpas_start_wps_enrollee(ctx, res);
  1226. }
  1227. wpa_s->p2p_long_listen = 0;
  1228. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  1229. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  1230. eloop_register_timeout(15 + res->peer_config_timeout / 100,
  1231. (res->peer_config_timeout % 100) * 10000,
  1232. wpas_p2p_group_formation_timeout, wpa_s, NULL);
  1233. }
  1234. void wpas_go_neg_req_rx(void *ctx, const u8 *src, u16 dev_passwd_id)
  1235. {
  1236. struct wpa_supplicant *wpa_s = ctx;
  1237. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_REQUEST MACSTR
  1238. " dev_passwd_id=%u", MAC2STR(src), dev_passwd_id);
  1239. wpas_notify_p2p_go_neg_req(wpa_s, src, dev_passwd_id);
  1240. }
  1241. void wpas_dev_found(void *ctx, const u8 *addr,
  1242. const struct p2p_peer_info *info,
  1243. int new_device)
  1244. {
  1245. #ifndef CONFIG_NO_STDOUT_DEBUG
  1246. struct wpa_supplicant *wpa_s = ctx;
  1247. char devtype[WPS_DEV_TYPE_BUFSIZE];
  1248. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_FOUND MACSTR
  1249. " p2p_dev_addr=" MACSTR
  1250. " pri_dev_type=%s name='%s' config_methods=0x%x "
  1251. "dev_capab=0x%x group_capab=0x%x",
  1252. MAC2STR(addr), MAC2STR(info->p2p_device_addr),
  1253. wps_dev_type_bin2str(info->pri_dev_type, devtype,
  1254. sizeof(devtype)),
  1255. info->device_name, info->config_methods,
  1256. info->dev_capab, info->group_capab);
  1257. #endif /* CONFIG_NO_STDOUT_DEBUG */
  1258. wpas_notify_p2p_device_found(ctx, info->p2p_device_addr, new_device);
  1259. }
  1260. static void wpas_dev_lost(void *ctx, const u8 *dev_addr)
  1261. {
  1262. struct wpa_supplicant *wpa_s = ctx;
  1263. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_LOST
  1264. "p2p_dev_addr=" MACSTR, MAC2STR(dev_addr));
  1265. wpas_notify_p2p_device_lost(wpa_s, dev_addr);
  1266. }
  1267. static void wpas_find_stopped(void *ctx)
  1268. {
  1269. struct wpa_supplicant *wpa_s = ctx;
  1270. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_FIND_STOPPED);
  1271. }
  1272. static int wpas_start_listen(void *ctx, unsigned int freq,
  1273. unsigned int duration,
  1274. const struct wpabuf *probe_resp_ie)
  1275. {
  1276. struct wpa_supplicant *wpa_s = ctx;
  1277. wpa_drv_set_ap_wps_ie(wpa_s, NULL, probe_resp_ie, NULL);
  1278. if (wpa_drv_probe_req_report(wpa_s, 1) < 0) {
  1279. wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver to "
  1280. "report received Probe Request frames");
  1281. return -1;
  1282. }
  1283. wpa_s->pending_listen_freq = freq;
  1284. wpa_s->pending_listen_duration = duration;
  1285. if (wpa_drv_remain_on_channel(wpa_s, freq, duration) < 0) {
  1286. wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver "
  1287. "to remain on channel (%u MHz) for Listen "
  1288. "state", freq);
  1289. wpa_s->pending_listen_freq = 0;
  1290. return -1;
  1291. }
  1292. wpa_s->off_channel_freq = 0;
  1293. wpa_s->roc_waiting_drv_freq = freq;
  1294. return 0;
  1295. }
  1296. static void wpas_stop_listen(void *ctx)
  1297. {
  1298. struct wpa_supplicant *wpa_s = ctx;
  1299. if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
  1300. wpa_drv_cancel_remain_on_channel(wpa_s);
  1301. wpa_s->off_channel_freq = 0;
  1302. wpa_s->roc_waiting_drv_freq = 0;
  1303. }
  1304. wpa_drv_set_ap_wps_ie(wpa_s, NULL, NULL, NULL);
  1305. wpa_drv_probe_req_report(wpa_s, 0);
  1306. }
  1307. static int wpas_send_probe_resp(void *ctx, const struct wpabuf *buf)
  1308. {
  1309. struct wpa_supplicant *wpa_s = ctx;
  1310. return wpa_drv_send_mlme(wpa_s, wpabuf_head(buf), wpabuf_len(buf), 1);
  1311. }
  1312. /*
  1313. * DNS Header section is used only to calculate compression pointers, so the
  1314. * contents of this data does not matter, but the length needs to be reserved
  1315. * in the virtual packet.
  1316. */
  1317. #define DNS_HEADER_LEN 12
  1318. /*
  1319. * 27-octet in-memory packet from P2P specification containing two implied
  1320. * queries for _tcp.lcoal. PTR IN and _udp.local. PTR IN
  1321. */
  1322. #define P2P_SD_IN_MEMORY_LEN 27
  1323. static int p2p_sd_dns_uncompress_label(char **upos, char *uend, u8 *start,
  1324. u8 **spos, const u8 *end)
  1325. {
  1326. while (*spos < end) {
  1327. u8 val = ((*spos)[0] & 0xc0) >> 6;
  1328. int len;
  1329. if (val == 1 || val == 2) {
  1330. /* These are reserved values in RFC 1035 */
  1331. wpa_printf(MSG_DEBUG, "P2P: Invalid domain name "
  1332. "sequence starting with 0x%x", val);
  1333. return -1;
  1334. }
  1335. if (val == 3) {
  1336. u16 offset;
  1337. u8 *spos_tmp;
  1338. /* Offset */
  1339. if (*spos + 2 > end) {
  1340. wpa_printf(MSG_DEBUG, "P2P: No room for full "
  1341. "DNS offset field");
  1342. return -1;
  1343. }
  1344. offset = (((*spos)[0] & 0x3f) << 8) | (*spos)[1];
  1345. if (offset >= *spos - start) {
  1346. wpa_printf(MSG_DEBUG, "P2P: Invalid DNS "
  1347. "pointer offset %u", offset);
  1348. return -1;
  1349. }
  1350. (*spos) += 2;
  1351. spos_tmp = start + offset;
  1352. return p2p_sd_dns_uncompress_label(upos, uend, start,
  1353. &spos_tmp,
  1354. *spos - 2);
  1355. }
  1356. /* Label */
  1357. len = (*spos)[0] & 0x3f;
  1358. if (len == 0)
  1359. return 0;
  1360. (*spos)++;
  1361. if (*spos + len > end) {
  1362. wpa_printf(MSG_DEBUG, "P2P: Invalid domain name "
  1363. "sequence - no room for label with length "
  1364. "%u", len);
  1365. return -1;
  1366. }
  1367. if (*upos + len + 2 > uend)
  1368. return -2;
  1369. os_memcpy(*upos, *spos, len);
  1370. *spos += len;
  1371. *upos += len;
  1372. (*upos)[0] = '.';
  1373. (*upos)++;
  1374. (*upos)[0] = '\0';
  1375. }
  1376. return 0;
  1377. }
  1378. /* Uncompress domain names per RFC 1035 using the P2P SD in-memory packet.
  1379. * Returns -1 on parsing error (invalid input sequence), -2 if output buffer is
  1380. * not large enough */
  1381. static int p2p_sd_dns_uncompress(char *buf, size_t buf_len, const u8 *msg,
  1382. size_t msg_len, size_t offset)
  1383. {
  1384. /* 27-octet in-memory packet from P2P specification */
  1385. const char *prefix = "\x04_tcp\x05local\x00\x00\x0C\x00\x01"
  1386. "\x04_udp\xC0\x11\x00\x0C\x00\x01";
  1387. u8 *tmp, *end, *spos;
  1388. char *upos, *uend;
  1389. int ret = 0;
  1390. if (buf_len < 2)
  1391. return -1;
  1392. if (offset > msg_len)
  1393. return -1;
  1394. tmp = os_malloc(DNS_HEADER_LEN + P2P_SD_IN_MEMORY_LEN + msg_len);
  1395. if (tmp == NULL)
  1396. return -1;
  1397. spos = tmp + DNS_HEADER_LEN + P2P_SD_IN_MEMORY_LEN;
  1398. end = spos + msg_len;
  1399. spos += offset;
  1400. os_memset(tmp, 0, DNS_HEADER_LEN);
  1401. os_memcpy(tmp + DNS_HEADER_LEN, prefix, P2P_SD_IN_MEMORY_LEN);
  1402. os_memcpy(tmp + DNS_HEADER_LEN + P2P_SD_IN_MEMORY_LEN, msg, msg_len);
  1403. upos = buf;
  1404. uend = buf + buf_len;
  1405. ret = p2p_sd_dns_uncompress_label(&upos, uend, tmp, &spos, end);
  1406. if (ret) {
  1407. os_free(tmp);
  1408. return ret;
  1409. }
  1410. if (upos == buf) {
  1411. upos[0] = '.';
  1412. upos[1] = '\0';
  1413. } else if (upos[-1] == '.')
  1414. upos[-1] = '\0';
  1415. os_free(tmp);
  1416. return 0;
  1417. }
  1418. static struct p2p_srv_bonjour *
  1419. wpas_p2p_service_get_bonjour(struct wpa_supplicant *wpa_s,
  1420. const struct wpabuf *query)
  1421. {
  1422. struct p2p_srv_bonjour *bsrv;
  1423. size_t len;
  1424. len = wpabuf_len(query);
  1425. dl_list_for_each(bsrv, &wpa_s->global->p2p_srv_bonjour,
  1426. struct p2p_srv_bonjour, list) {
  1427. if (len == wpabuf_len(bsrv->query) &&
  1428. os_memcmp(wpabuf_head(query), wpabuf_head(bsrv->query),
  1429. len) == 0)
  1430. return bsrv;
  1431. }
  1432. return NULL;
  1433. }
  1434. static struct p2p_srv_upnp *
  1435. wpas_p2p_service_get_upnp(struct wpa_supplicant *wpa_s, u8 version,
  1436. const char *service)
  1437. {
  1438. struct p2p_srv_upnp *usrv;
  1439. dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
  1440. struct p2p_srv_upnp, list) {
  1441. if (version == usrv->version &&
  1442. os_strcmp(service, usrv->service) == 0)
  1443. return usrv;
  1444. }
  1445. return NULL;
  1446. }
  1447. static void wpas_sd_add_proto_not_avail(struct wpabuf *resp, u8 srv_proto,
  1448. u8 srv_trans_id)
  1449. {
  1450. u8 *len_pos;
  1451. if (wpabuf_tailroom(resp) < 5)
  1452. return;
  1453. /* Length (to be filled) */
  1454. len_pos = wpabuf_put(resp, 2);
  1455. wpabuf_put_u8(resp, srv_proto);
  1456. wpabuf_put_u8(resp, srv_trans_id);
  1457. /* Status Code */
  1458. wpabuf_put_u8(resp, P2P_SD_PROTO_NOT_AVAILABLE);
  1459. /* Response Data: empty */
  1460. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
  1461. }
  1462. static void wpas_sd_all_bonjour(struct wpa_supplicant *wpa_s,
  1463. struct wpabuf *resp, u8 srv_trans_id)
  1464. {
  1465. struct p2p_srv_bonjour *bsrv;
  1466. u8 *len_pos;
  1467. wpa_printf(MSG_DEBUG, "P2P: SD Request for all Bonjour services");
  1468. if (dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
  1469. wpa_printf(MSG_DEBUG, "P2P: Bonjour protocol not available");
  1470. return;
  1471. }
  1472. dl_list_for_each(bsrv, &wpa_s->global->p2p_srv_bonjour,
  1473. struct p2p_srv_bonjour, list) {
  1474. if (wpabuf_tailroom(resp) <
  1475. 5 + wpabuf_len(bsrv->query) + wpabuf_len(bsrv->resp))
  1476. return;
  1477. /* Length (to be filled) */
  1478. len_pos = wpabuf_put(resp, 2);
  1479. wpabuf_put_u8(resp, P2P_SERV_BONJOUR);
  1480. wpabuf_put_u8(resp, srv_trans_id);
  1481. /* Status Code */
  1482. wpabuf_put_u8(resp, P2P_SD_SUCCESS);
  1483. wpa_hexdump_ascii(MSG_DEBUG, "P2P: Matching Bonjour service",
  1484. wpabuf_head(bsrv->resp),
  1485. wpabuf_len(bsrv->resp));
  1486. /* Response Data */
  1487. wpabuf_put_buf(resp, bsrv->query); /* Key */
  1488. wpabuf_put_buf(resp, bsrv->resp); /* Value */
  1489. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
  1490. 2);
  1491. }
  1492. }
  1493. static int match_bonjour_query(struct p2p_srv_bonjour *bsrv, const u8 *query,
  1494. size_t query_len)
  1495. {
  1496. char str_rx[256], str_srv[256];
  1497. if (query_len < 3 || wpabuf_len(bsrv->query) < 3)
  1498. return 0; /* Too short to include DNS Type and Version */
  1499. if (os_memcmp(query + query_len - 3,
  1500. wpabuf_head_u8(bsrv->query) + wpabuf_len(bsrv->query) - 3,
  1501. 3) != 0)
  1502. return 0; /* Mismatch in DNS Type or Version */
  1503. if (query_len == wpabuf_len(bsrv->query) &&
  1504. os_memcmp(query, wpabuf_head(bsrv->query), query_len - 3) == 0)
  1505. return 1; /* Binary match */
  1506. if (p2p_sd_dns_uncompress(str_rx, sizeof(str_rx), query, query_len - 3,
  1507. 0))
  1508. return 0; /* Failed to uncompress query */
  1509. if (p2p_sd_dns_uncompress(str_srv, sizeof(str_srv),
  1510. wpabuf_head(bsrv->query),
  1511. wpabuf_len(bsrv->query) - 3, 0))
  1512. return 0; /* Failed to uncompress service */
  1513. return os_strcmp(str_rx, str_srv) == 0;
  1514. }
  1515. static void wpas_sd_req_bonjour(struct wpa_supplicant *wpa_s,
  1516. struct wpabuf *resp, u8 srv_trans_id,
  1517. const u8 *query, size_t query_len)
  1518. {
  1519. struct p2p_srv_bonjour *bsrv;
  1520. u8 *len_pos;
  1521. int matches = 0;
  1522. wpa_hexdump_ascii(MSG_DEBUG, "P2P: SD Request for Bonjour",
  1523. query, query_len);
  1524. if (dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
  1525. wpa_printf(MSG_DEBUG, "P2P: Bonjour protocol not available");
  1526. wpas_sd_add_proto_not_avail(resp, P2P_SERV_BONJOUR,
  1527. srv_trans_id);
  1528. return;
  1529. }
  1530. if (query_len == 0) {
  1531. wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
  1532. return;
  1533. }
  1534. dl_list_for_each(bsrv, &wpa_s->global->p2p_srv_bonjour,
  1535. struct p2p_srv_bonjour, list) {
  1536. if (!match_bonjour_query(bsrv, query, query_len))
  1537. continue;
  1538. if (wpabuf_tailroom(resp) <
  1539. 5 + query_len + wpabuf_len(bsrv->resp))
  1540. return;
  1541. matches++;
  1542. /* Length (to be filled) */
  1543. len_pos = wpabuf_put(resp, 2);
  1544. wpabuf_put_u8(resp, P2P_SERV_BONJOUR);
  1545. wpabuf_put_u8(resp, srv_trans_id);
  1546. /* Status Code */
  1547. wpabuf_put_u8(resp, P2P_SD_SUCCESS);
  1548. wpa_hexdump_ascii(MSG_DEBUG, "P2P: Matching Bonjour service",
  1549. wpabuf_head(bsrv->resp),
  1550. wpabuf_len(bsrv->resp));
  1551. /* Response Data */
  1552. wpabuf_put_data(resp, query, query_len); /* Key */
  1553. wpabuf_put_buf(resp, bsrv->resp); /* Value */
  1554. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
  1555. }
  1556. if (matches == 0) {
  1557. wpa_printf(MSG_DEBUG, "P2P: Requested Bonjour service not "
  1558. "available");
  1559. if (wpabuf_tailroom(resp) < 5)
  1560. return;
  1561. /* Length (to be filled) */
  1562. len_pos = wpabuf_put(resp, 2);
  1563. wpabuf_put_u8(resp, P2P_SERV_BONJOUR);
  1564. wpabuf_put_u8(resp, srv_trans_id);
  1565. /* Status Code */
  1566. wpabuf_put_u8(resp, P2P_SD_REQUESTED_INFO_NOT_AVAILABLE);
  1567. /* Response Data: empty */
  1568. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
  1569. 2);
  1570. }
  1571. }
  1572. static void wpas_sd_all_upnp(struct wpa_supplicant *wpa_s,
  1573. struct wpabuf *resp, u8 srv_trans_id)
  1574. {
  1575. struct p2p_srv_upnp *usrv;
  1576. u8 *len_pos;
  1577. wpa_printf(MSG_DEBUG, "P2P: SD Request for all UPnP services");
  1578. if (dl_list_empty(&wpa_s->global->p2p_srv_upnp)) {
  1579. wpa_printf(MSG_DEBUG, "P2P: UPnP protocol not available");
  1580. return;
  1581. }
  1582. dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
  1583. struct p2p_srv_upnp, list) {
  1584. if (wpabuf_tailroom(resp) < 5 + 1 + os_strlen(usrv->service))
  1585. return;
  1586. /* Length (to be filled) */
  1587. len_pos = wpabuf_put(resp, 2);
  1588. wpabuf_put_u8(resp, P2P_SERV_UPNP);
  1589. wpabuf_put_u8(resp, srv_trans_id);
  1590. /* Status Code */
  1591. wpabuf_put_u8(resp, P2P_SD_SUCCESS);
  1592. /* Response Data */
  1593. wpabuf_put_u8(resp, usrv->version);
  1594. wpa_printf(MSG_DEBUG, "P2P: Matching UPnP Service: %s",
  1595. usrv->service);
  1596. wpabuf_put_str(resp, usrv->service);
  1597. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
  1598. 2);
  1599. }
  1600. }
  1601. static void wpas_sd_req_upnp(struct wpa_supplicant *wpa_s,
  1602. struct wpabuf *resp, u8 srv_trans_id,
  1603. const u8 *query, size_t query_len)
  1604. {
  1605. struct p2p_srv_upnp *usrv;
  1606. u8 *len_pos;
  1607. u8 version;
  1608. char *str;
  1609. int count = 0;
  1610. wpa_hexdump_ascii(MSG_DEBUG, "P2P: SD Request for UPnP",
  1611. query, query_len);
  1612. if (dl_list_empty(&wpa_s->global->p2p_srv_upnp)) {
  1613. wpa_printf(MSG_DEBUG, "P2P: UPnP protocol not available");
  1614. wpas_sd_add_proto_not_avail(resp, P2P_SERV_UPNP,
  1615. srv_trans_id);
  1616. return;
  1617. }
  1618. if (query_len == 0) {
  1619. wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
  1620. return;
  1621. }
  1622. if (wpabuf_tailroom(resp) < 5)
  1623. return;
  1624. /* Length (to be filled) */
  1625. len_pos = wpabuf_put(resp, 2);
  1626. wpabuf_put_u8(resp, P2P_SERV_UPNP);
  1627. wpabuf_put_u8(resp, srv_trans_id);
  1628. version = query[0];
  1629. str = os_malloc(query_len);
  1630. if (str == NULL)
  1631. return;
  1632. os_memcpy(str, query + 1, query_len - 1);
  1633. str[query_len - 1] = '\0';
  1634. dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
  1635. struct p2p_srv_upnp, list) {
  1636. if (version != usrv->version)
  1637. continue;
  1638. if (os_strcmp(str, "ssdp:all") != 0 &&
  1639. os_strstr(usrv->service, str) == NULL)
  1640. continue;
  1641. if (wpabuf_tailroom(resp) < 2)
  1642. break;
  1643. if (count == 0) {
  1644. /* Status Code */
  1645. wpabuf_put_u8(resp, P2P_SD_SUCCESS);
  1646. /* Response Data */
  1647. wpabuf_put_u8(resp, version);
  1648. } else
  1649. wpabuf_put_u8(resp, ',');
  1650. count++;
  1651. wpa_printf(MSG_DEBUG, "P2P: Matching UPnP Service: %s",
  1652. usrv->service);
  1653. if (wpabuf_tailroom(resp) < os_strlen(usrv->service))
  1654. break;
  1655. wpabuf_put_str(resp, usrv->service);
  1656. }
  1657. os_free(str);
  1658. if (count == 0) {
  1659. wpa_printf(MSG_DEBUG, "P2P: Requested UPnP service not "
  1660. "available");
  1661. /* Status Code */
  1662. wpabuf_put_u8(resp, P2P_SD_REQUESTED_INFO_NOT_AVAILABLE);
  1663. /* Response Data: empty */
  1664. }
  1665. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
  1666. }
  1667. #ifdef CONFIG_WIFI_DISPLAY
  1668. static void wpas_sd_req_wfd(struct wpa_supplicant *wpa_s,
  1669. struct wpabuf *resp, u8 srv_trans_id,
  1670. const u8 *query, size_t query_len)
  1671. {
  1672. const u8 *pos;
  1673. u8 role;
  1674. u8 *len_pos;
  1675. wpa_hexdump(MSG_DEBUG, "P2P: SD Request for WFD", query, query_len);
  1676. if (!wpa_s->global->wifi_display) {
  1677. wpa_printf(MSG_DEBUG, "P2P: WFD protocol not available");
  1678. wpas_sd_add_proto_not_avail(resp, P2P_SERV_WIFI_DISPLAY,
  1679. srv_trans_id);
  1680. return;
  1681. }
  1682. if (query_len < 1) {
  1683. wpa_printf(MSG_DEBUG, "P2P: Missing WFD Requested Device "
  1684. "Role");
  1685. return;
  1686. }
  1687. if (wpabuf_tailroom(resp) < 5)
  1688. return;
  1689. pos = query;
  1690. role = *pos++;
  1691. wpa_printf(MSG_DEBUG, "P2P: WSD for device role 0x%x", role);
  1692. /* TODO: role specific handling */
  1693. /* Length (to be filled) */
  1694. len_pos = wpabuf_put(resp, 2);
  1695. wpabuf_put_u8(resp, P2P_SERV_WIFI_DISPLAY);
  1696. wpabuf_put_u8(resp, srv_trans_id);
  1697. wpabuf_put_u8(resp, P2P_SD_SUCCESS); /* Status Code */
  1698. while (pos < query + query_len) {
  1699. if (*pos < MAX_WFD_SUBELEMS &&
  1700. wpa_s->global->wfd_subelem[*pos] &&
  1701. wpabuf_tailroom(resp) >=
  1702. wpabuf_len(wpa_s->global->wfd_subelem[*pos])) {
  1703. wpa_printf(MSG_DEBUG, "P2P: Add WSD response "
  1704. "subelement %u", *pos);
  1705. wpabuf_put_buf(resp, wpa_s->global->wfd_subelem[*pos]);
  1706. }
  1707. pos++;
  1708. }
  1709. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
  1710. }
  1711. #endif /* CONFIG_WIFI_DISPLAY */
  1712. void wpas_sd_request(void *ctx, int freq, const u8 *sa, u8 dialog_token,
  1713. u16 update_indic, const u8 *tlvs, size_t tlvs_len)
  1714. {
  1715. struct wpa_supplicant *wpa_s = ctx;
  1716. const u8 *pos = tlvs;
  1717. const u8 *end = tlvs + tlvs_len;
  1718. const u8 *tlv_end;
  1719. u16 slen;
  1720. struct wpabuf *resp;
  1721. u8 srv_proto, srv_trans_id;
  1722. size_t buf_len;
  1723. char *buf;
  1724. wpa_hexdump(MSG_MSGDUMP, "P2P: Service Discovery Request TLVs",
  1725. tlvs, tlvs_len);
  1726. buf_len = 2 * tlvs_len + 1;
  1727. buf = os_malloc(buf_len);
  1728. if (buf) {
  1729. wpa_snprintf_hex(buf, buf_len, tlvs, tlvs_len);
  1730. wpa_msg_ctrl(wpa_s, MSG_INFO, P2P_EVENT_SERV_DISC_REQ "%d "
  1731. MACSTR " %u %u %s",
  1732. freq, MAC2STR(sa), dialog_token, update_indic,
  1733. buf);
  1734. os_free(buf);
  1735. }
  1736. if (wpa_s->p2p_sd_over_ctrl_iface) {
  1737. wpas_notify_p2p_sd_request(wpa_s, freq, sa, dialog_token,
  1738. update_indic, tlvs, tlvs_len);
  1739. return; /* to be processed by an external program */
  1740. }
  1741. resp = wpabuf_alloc(10000);
  1742. if (resp == NULL)
  1743. return;
  1744. while (pos + 1 < end) {
  1745. wpa_printf(MSG_DEBUG, "P2P: Service Request TLV");
  1746. slen = WPA_GET_LE16(pos);
  1747. pos += 2;
  1748. if (pos + slen > end || slen < 2) {
  1749. wpa_printf(MSG_DEBUG, "P2P: Unexpected Query Data "
  1750. "length");
  1751. wpabuf_free(resp);
  1752. return;
  1753. }
  1754. tlv_end = pos + slen;
  1755. srv_proto = *pos++;
  1756. wpa_printf(MSG_DEBUG, "P2P: Service Protocol Type %u",
  1757. srv_proto);
  1758. srv_trans_id = *pos++;
  1759. wpa_printf(MSG_DEBUG, "P2P: Service Transaction ID %u",
  1760. srv_trans_id);
  1761. wpa_hexdump(MSG_MSGDUMP, "P2P: Query Data",
  1762. pos, tlv_end - pos);
  1763. if (wpa_s->force_long_sd) {
  1764. wpa_printf(MSG_DEBUG, "P2P: SD test - force long "
  1765. "response");
  1766. wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
  1767. wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
  1768. goto done;
  1769. }
  1770. switch (srv_proto) {
  1771. case P2P_SERV_ALL_SERVICES:
  1772. wpa_printf(MSG_DEBUG, "P2P: Service Discovery Request "
  1773. "for all services");
  1774. if (dl_list_empty(&wpa_s->global->p2p_srv_upnp) &&
  1775. dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
  1776. wpa_printf(MSG_DEBUG, "P2P: No service "
  1777. "discovery protocols available");
  1778. wpas_sd_add_proto_not_avail(
  1779. resp, P2P_SERV_ALL_SERVICES,
  1780. srv_trans_id);
  1781. break;
  1782. }
  1783. wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
  1784. wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
  1785. break;
  1786. case P2P_SERV_BONJOUR:
  1787. wpas_sd_req_bonjour(wpa_s, resp, srv_trans_id,
  1788. pos, tlv_end - pos);
  1789. break;
  1790. case P2P_SERV_UPNP:
  1791. wpas_sd_req_upnp(wpa_s, resp, srv_trans_id,
  1792. pos, tlv_end - pos);
  1793. break;
  1794. #ifdef CONFIG_WIFI_DISPLAY
  1795. case P2P_SERV_WIFI_DISPLAY:
  1796. wpas_sd_req_wfd(wpa_s, resp, srv_trans_id,
  1797. pos, tlv_end - pos);
  1798. break;
  1799. #endif /* CONFIG_WIFI_DISPLAY */
  1800. default:
  1801. wpa_printf(MSG_DEBUG, "P2P: Unavailable service "
  1802. "protocol %u", srv_proto);
  1803. wpas_sd_add_proto_not_avail(resp, srv_proto,
  1804. srv_trans_id);
  1805. break;
  1806. }
  1807. pos = tlv_end;
  1808. }
  1809. done:
  1810. wpas_notify_p2p_sd_request(wpa_s, freq, sa, dialog_token,
  1811. update_indic, tlvs, tlvs_len);
  1812. wpas_p2p_sd_response(wpa_s, freq, sa, dialog_token, resp);
  1813. wpabuf_free(resp);
  1814. }
  1815. void wpas_sd_response(void *ctx, const u8 *sa, u16 update_indic,
  1816. const u8 *tlvs, size_t tlvs_len)
  1817. {
  1818. struct wpa_supplicant *wpa_s = ctx;
  1819. const u8 *pos = tlvs;
  1820. const u8 *end = tlvs + tlvs_len;
  1821. const u8 *tlv_end;
  1822. u16 slen;
  1823. size_t buf_len;
  1824. char *buf;
  1825. wpa_hexdump(MSG_MSGDUMP, "P2P: Service Discovery Response TLVs",
  1826. tlvs, tlvs_len);
  1827. if (tlvs_len > 1500) {
  1828. /* TODO: better way for handling this */
  1829. wpa_msg_ctrl(wpa_s, MSG_INFO,
  1830. P2P_EVENT_SERV_DISC_RESP MACSTR
  1831. " %u <long response: %u bytes>",
  1832. MAC2STR(sa), update_indic,
  1833. (unsigned int) tlvs_len);
  1834. } else {
  1835. buf_len = 2 * tlvs_len + 1;
  1836. buf = os_malloc(buf_len);
  1837. if (buf) {
  1838. wpa_snprintf_hex(buf, buf_len, tlvs, tlvs_len);
  1839. wpa_msg_ctrl(wpa_s, MSG_INFO,
  1840. P2P_EVENT_SERV_DISC_RESP MACSTR " %u %s",
  1841. MAC2STR(sa), update_indic, buf);
  1842. os_free(buf);
  1843. }
  1844. }
  1845. while (pos < end) {
  1846. u8 srv_proto, srv_trans_id, status;
  1847. wpa_printf(MSG_DEBUG, "P2P: Service Response TLV");
  1848. slen = WPA_GET_LE16(pos);
  1849. pos += 2;
  1850. if (pos + slen > end || slen < 3) {
  1851. wpa_printf(MSG_DEBUG, "P2P: Unexpected Response Data "
  1852. "length");
  1853. return;
  1854. }
  1855. tlv_end = pos + slen;
  1856. srv_proto = *pos++;
  1857. wpa_printf(MSG_DEBUG, "P2P: Service Protocol Type %u",
  1858. srv_proto);
  1859. srv_trans_id = *pos++;
  1860. wpa_printf(MSG_DEBUG, "P2P: Service Transaction ID %u",
  1861. srv_trans_id);
  1862. status = *pos++;
  1863. wpa_printf(MSG_DEBUG, "P2P: Status Code ID %u",
  1864. status);
  1865. wpa_hexdump(MSG_MSGDUMP, "P2P: Response Data",
  1866. pos, tlv_end - pos);
  1867. pos = tlv_end;
  1868. }
  1869. wpas_notify_p2p_sd_response(wpa_s, sa, update_indic, tlvs, tlvs_len);
  1870. }
  1871. u64 wpas_p2p_sd_request(struct wpa_supplicant *wpa_s, const u8 *dst,
  1872. const struct wpabuf *tlvs)
  1873. {
  1874. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  1875. return wpa_drv_p2p_sd_request(wpa_s, dst, tlvs);
  1876. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  1877. return 0;
  1878. return (uintptr_t) p2p_sd_request(wpa_s->global->p2p, dst, tlvs);
  1879. }
  1880. u64 wpas_p2p_sd_request_upnp(struct wpa_supplicant *wpa_s, const u8 *dst,
  1881. u8 version, const char *query)
  1882. {
  1883. struct wpabuf *tlvs;
  1884. u64 ret;
  1885. tlvs = wpabuf_alloc(2 + 1 + 1 + 1 + os_strlen(query));
  1886. if (tlvs == NULL)
  1887. return 0;
  1888. wpabuf_put_le16(tlvs, 1 + 1 + 1 + os_strlen(query));
  1889. wpabuf_put_u8(tlvs, P2P_SERV_UPNP); /* Service Protocol Type */
  1890. wpabuf_put_u8(tlvs, 1); /* Service Transaction ID */
  1891. wpabuf_put_u8(tlvs, version);
  1892. wpabuf_put_str(tlvs, query);
  1893. ret = wpas_p2p_sd_request(wpa_s, dst, tlvs);
  1894. wpabuf_free(tlvs);
  1895. return ret;
  1896. }
  1897. #ifdef CONFIG_WIFI_DISPLAY
  1898. static u64 wpas_p2p_sd_request_wfd(struct wpa_supplicant *wpa_s, const u8 *dst,
  1899. const struct wpabuf *tlvs)
  1900. {
  1901. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  1902. return 0;
  1903. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  1904. return 0;
  1905. return (uintptr_t) p2p_sd_request_wfd(wpa_s->global->p2p, dst, tlvs);
  1906. }
  1907. #define MAX_WFD_SD_SUBELEMS 20
  1908. static void wfd_add_sd_req_role(struct wpabuf *tlvs, u8 id, u8 role,
  1909. const char *subelems)
  1910. {
  1911. u8 *len;
  1912. const char *pos;
  1913. int val;
  1914. int count = 0;
  1915. len = wpabuf_put(tlvs, 2);
  1916. wpabuf_put_u8(tlvs, P2P_SERV_WIFI_DISPLAY); /* Service Protocol Type */
  1917. wpabuf_put_u8(tlvs, id); /* Service Transaction ID */
  1918. wpabuf_put_u8(tlvs, role);
  1919. pos = subelems;
  1920. while (*pos) {
  1921. val = atoi(pos);
  1922. if (val >= 0 && val < 256) {
  1923. wpabuf_put_u8(tlvs, val);
  1924. count++;
  1925. if (count == MAX_WFD_SD_SUBELEMS)
  1926. break;
  1927. }
  1928. pos = os_strchr(pos + 1, ',');
  1929. if (pos == NULL)
  1930. break;
  1931. pos++;
  1932. }
  1933. WPA_PUT_LE16(len, (u8 *) wpabuf_put(tlvs, 0) - len - 2);
  1934. }
  1935. u64 wpas_p2p_sd_request_wifi_display(struct wpa_supplicant *wpa_s,
  1936. const u8 *dst, const char *role)
  1937. {
  1938. struct wpabuf *tlvs;
  1939. u64 ret;
  1940. const char *subelems;
  1941. u8 id = 1;
  1942. subelems = os_strchr(role, ' ');
  1943. if (subelems == NULL)
  1944. return 0;
  1945. subelems++;
  1946. tlvs = wpabuf_alloc(4 * (2 + 1 + 1 + 1 + MAX_WFD_SD_SUBELEMS));
  1947. if (tlvs == NULL)
  1948. return 0;
  1949. if (os_strstr(role, "[source]"))
  1950. wfd_add_sd_req_role(tlvs, id++, 0x00, subelems);
  1951. if (os_strstr(role, "[pri-sink]"))
  1952. wfd_add_sd_req_role(tlvs, id++, 0x01, subelems);
  1953. if (os_strstr(role, "[sec-sink]"))
  1954. wfd_add_sd_req_role(tlvs, id++, 0x02, subelems);
  1955. if (os_strstr(role, "[source+sink]"))
  1956. wfd_add_sd_req_role(tlvs, id++, 0x03, subelems);
  1957. ret = wpas_p2p_sd_request_wfd(wpa_s, dst, tlvs);
  1958. wpabuf_free(tlvs);
  1959. return ret;
  1960. }
  1961. #endif /* CONFIG_WIFI_DISPLAY */
  1962. int wpas_p2p_sd_cancel_request(struct wpa_supplicant *wpa_s, u64 req)
  1963. {
  1964. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  1965. return wpa_drv_p2p_sd_cancel_request(wpa_s, req);
  1966. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  1967. return -1;
  1968. return p2p_sd_cancel_request(wpa_s->global->p2p,
  1969. (void *) (uintptr_t) req);
  1970. }
  1971. void wpas_p2p_sd_response(struct wpa_supplicant *wpa_s, int freq,
  1972. const u8 *dst, u8 dialog_token,
  1973. const struct wpabuf *resp_tlvs)
  1974. {
  1975. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  1976. wpa_drv_p2p_sd_response(wpa_s, freq, dst, dialog_token,
  1977. resp_tlvs);
  1978. return;
  1979. }
  1980. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  1981. return;
  1982. p2p_sd_response(wpa_s->global->p2p, freq, dst, dialog_token,
  1983. resp_tlvs);
  1984. }
  1985. void wpas_p2p_sd_service_update(struct wpa_supplicant *wpa_s)
  1986. {
  1987. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  1988. wpa_drv_p2p_service_update(wpa_s);
  1989. return;
  1990. }
  1991. if (wpa_s->global->p2p)
  1992. p2p_sd_service_update(wpa_s->global->p2p);
  1993. }
  1994. static void wpas_p2p_srv_bonjour_free(struct p2p_srv_bonjour *bsrv)
  1995. {
  1996. dl_list_del(&bsrv->list);
  1997. wpabuf_free(bsrv->query);
  1998. wpabuf_free(bsrv->resp);
  1999. os_free(bsrv);
  2000. }
  2001. static void wpas_p2p_srv_upnp_free(struct p2p_srv_upnp *usrv)
  2002. {
  2003. dl_list_del(&usrv->list);
  2004. os_free(usrv->service);
  2005. os_free(usrv);
  2006. }
  2007. void wpas_p2p_service_flush(struct wpa_supplicant *wpa_s)
  2008. {
  2009. struct p2p_srv_bonjour *bsrv, *bn;
  2010. struct p2p_srv_upnp *usrv, *un;
  2011. dl_list_for_each_safe(bsrv, bn, &wpa_s->global->p2p_srv_bonjour,
  2012. struct p2p_srv_bonjour, list)
  2013. wpas_p2p_srv_bonjour_free(bsrv);
  2014. dl_list_for_each_safe(usrv, un, &wpa_s->global->p2p_srv_upnp,
  2015. struct p2p_srv_upnp, list)
  2016. wpas_p2p_srv_upnp_free(usrv);
  2017. wpas_p2p_sd_service_update(wpa_s);
  2018. }
  2019. int wpas_p2p_service_add_bonjour(struct wpa_supplicant *wpa_s,
  2020. struct wpabuf *query, struct wpabuf *resp)
  2021. {
  2022. struct p2p_srv_bonjour *bsrv;
  2023. bsrv = os_zalloc(sizeof(*bsrv));
  2024. if (bsrv == NULL)
  2025. return -1;
  2026. bsrv->query = query;
  2027. bsrv->resp = resp;
  2028. dl_list_add(&wpa_s->global->p2p_srv_bonjour, &bsrv->list);
  2029. wpas_p2p_sd_service_update(wpa_s);
  2030. return 0;
  2031. }
  2032. int wpas_p2p_service_del_bonjour(struct wpa_supplicant *wpa_s,
  2033. const struct wpabuf *query)
  2034. {
  2035. struct p2p_srv_bonjour *bsrv;
  2036. bsrv = wpas_p2p_service_get_bonjour(wpa_s, query);
  2037. if (bsrv == NULL)
  2038. return -1;
  2039. wpas_p2p_srv_bonjour_free(bsrv);
  2040. wpas_p2p_sd_service_update(wpa_s);
  2041. return 0;
  2042. }
  2043. int wpas_p2p_service_add_upnp(struct wpa_supplicant *wpa_s, u8 version,
  2044. const char *service)
  2045. {
  2046. struct p2p_srv_upnp *usrv;
  2047. if (wpas_p2p_service_get_upnp(wpa_s, version, service))
  2048. return 0; /* Already listed */
  2049. usrv = os_zalloc(sizeof(*usrv));
  2050. if (usrv == NULL)
  2051. return -1;
  2052. usrv->version = version;
  2053. usrv->service = os_strdup(service);
  2054. if (usrv->service == NULL) {
  2055. os_free(usrv);
  2056. return -1;
  2057. }
  2058. dl_list_add(&wpa_s->global->p2p_srv_upnp, &usrv->list);
  2059. wpas_p2p_sd_service_update(wpa_s);
  2060. return 0;
  2061. }
  2062. int wpas_p2p_service_del_upnp(struct wpa_supplicant *wpa_s, u8 version,
  2063. const char *service)
  2064. {
  2065. struct p2p_srv_upnp *usrv;
  2066. usrv = wpas_p2p_service_get_upnp(wpa_s, version, service);
  2067. if (usrv == NULL)
  2068. return -1;
  2069. wpas_p2p_srv_upnp_free(usrv);
  2070. wpas_p2p_sd_service_update(wpa_s);
  2071. return 0;
  2072. }
  2073. static void wpas_prov_disc_local_display(struct wpa_supplicant *wpa_s,
  2074. const u8 *peer, const char *params,
  2075. unsigned int generated_pin)
  2076. {
  2077. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_SHOW_PIN MACSTR
  2078. " %08d%s", MAC2STR(peer), generated_pin, params);
  2079. }
  2080. static void wpas_prov_disc_local_keypad(struct wpa_supplicant *wpa_s,
  2081. const u8 *peer, const char *params)
  2082. {
  2083. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_ENTER_PIN MACSTR
  2084. "%s", MAC2STR(peer), params);
  2085. }
  2086. void wpas_prov_disc_req(void *ctx, const u8 *peer, u16 config_methods,
  2087. const u8 *dev_addr, const u8 *pri_dev_type,
  2088. const char *dev_name, u16 supp_config_methods,
  2089. u8 dev_capab, u8 group_capab, const u8 *group_id,
  2090. size_t group_id_len)
  2091. {
  2092. struct wpa_supplicant *wpa_s = ctx;
  2093. char devtype[WPS_DEV_TYPE_BUFSIZE];
  2094. char params[300];
  2095. u8 empty_dev_type[8];
  2096. unsigned int generated_pin = 0;
  2097. struct wpa_supplicant *group = NULL;
  2098. if (group_id) {
  2099. for (group = wpa_s->global->ifaces; group; group = group->next)
  2100. {
  2101. struct wpa_ssid *s = group->current_ssid;
  2102. if (s != NULL &&
  2103. s->mode == WPAS_MODE_P2P_GO &&
  2104. group_id_len - ETH_ALEN == s->ssid_len &&
  2105. os_memcmp(group_id + ETH_ALEN, s->ssid,
  2106. s->ssid_len) == 0)
  2107. break;
  2108. }
  2109. }
  2110. if (pri_dev_type == NULL) {
  2111. os_memset(empty_dev_type, 0, sizeof(empty_dev_type));
  2112. pri_dev_type = empty_dev_type;
  2113. }
  2114. os_snprintf(params, sizeof(params), " p2p_dev_addr=" MACSTR
  2115. " pri_dev_type=%s name='%s' config_methods=0x%x "
  2116. "dev_capab=0x%x group_capab=0x%x%s%s",
  2117. MAC2STR(dev_addr),
  2118. wps_dev_type_bin2str(pri_dev_type, devtype,
  2119. sizeof(devtype)),
  2120. dev_name, supp_config_methods, dev_capab, group_capab,
  2121. group ? " group=" : "",
  2122. group ? group->ifname : "");
  2123. params[sizeof(params) - 1] = '\0';
  2124. if (config_methods & WPS_CONFIG_DISPLAY) {
  2125. generated_pin = wps_generate_pin();
  2126. wpas_prov_disc_local_display(wpa_s, peer, params,
  2127. generated_pin);
  2128. } else if (config_methods & WPS_CONFIG_KEYPAD)
  2129. wpas_prov_disc_local_keypad(wpa_s, peer, params);
  2130. else if (config_methods & WPS_CONFIG_PUSHBUTTON)
  2131. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_REQ
  2132. MACSTR "%s", MAC2STR(peer), params);
  2133. wpas_notify_p2p_provision_discovery(wpa_s, peer, 1 /* request */,
  2134. P2P_PROV_DISC_SUCCESS,
  2135. config_methods, generated_pin);
  2136. }
  2137. void wpas_prov_disc_resp(void *ctx, const u8 *peer, u16 config_methods)
  2138. {
  2139. struct wpa_supplicant *wpa_s = ctx;
  2140. unsigned int generated_pin = 0;
  2141. char params[20];
  2142. if (wpa_s->pending_pd_before_join &&
  2143. (os_memcmp(peer, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
  2144. os_memcmp(peer, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0)) {
  2145. wpa_s->pending_pd_before_join = 0;
  2146. wpa_printf(MSG_DEBUG, "P2P: Starting pending "
  2147. "join-existing-group operation");
  2148. wpas_p2p_join_start(wpa_s);
  2149. return;
  2150. }
  2151. if (wpa_s->pending_pd_use == AUTO_PD_JOIN ||
  2152. wpa_s->pending_pd_use == AUTO_PD_GO_NEG)
  2153. os_snprintf(params, sizeof(params), " peer_go=%d",
  2154. wpa_s->pending_pd_use == AUTO_PD_JOIN);
  2155. else
  2156. params[0] = '\0';
  2157. if (config_methods & WPS_CONFIG_DISPLAY)
  2158. wpas_prov_disc_local_keypad(wpa_s, peer, params);
  2159. else if (config_methods & WPS_CONFIG_KEYPAD) {
  2160. generated_pin = wps_generate_pin();
  2161. wpas_prov_disc_local_display(wpa_s, peer, params,
  2162. generated_pin);
  2163. } else if (config_methods & WPS_CONFIG_PUSHBUTTON)
  2164. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_RESP
  2165. MACSTR "%s", MAC2STR(peer), params);
  2166. wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
  2167. P2P_PROV_DISC_SUCCESS,
  2168. config_methods, generated_pin);
  2169. }
  2170. static void wpas_prov_disc_fail(void *ctx, const u8 *peer,
  2171. enum p2p_prov_disc_status status)
  2172. {
  2173. struct wpa_supplicant *wpa_s = ctx;
  2174. if (wpa_s->p2p_fallback_to_go_neg) {
  2175. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: PD for p2p_connect-auto "
  2176. "failed - fall back to GO Negotiation");
  2177. wpas_p2p_fallback_to_go_neg(wpa_s, 0);
  2178. return;
  2179. }
  2180. if (status == P2P_PROV_DISC_TIMEOUT_JOIN) {
  2181. wpa_s->pending_pd_before_join = 0;
  2182. wpa_printf(MSG_DEBUG, "P2P: Starting pending "
  2183. "join-existing-group operation (no ACK for PD "
  2184. "Req attempts)");
  2185. wpas_p2p_join_start(wpa_s);
  2186. return;
  2187. }
  2188. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
  2189. " p2p_dev_addr=" MACSTR " status=%d",
  2190. MAC2STR(peer), status);
  2191. wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
  2192. status, 0, 0);
  2193. }
  2194. static int freq_included(const struct p2p_channels *channels, unsigned int freq)
  2195. {
  2196. if (channels == NULL)
  2197. return 1; /* Assume no restrictions */
  2198. return p2p_channels_includes_freq(channels, freq);
  2199. }
  2200. static u8 wpas_invitation_process(void *ctx, const u8 *sa, const u8 *bssid,
  2201. const u8 *go_dev_addr, const u8 *ssid,
  2202. size_t ssid_len, int *go, u8 *group_bssid,
  2203. int *force_freq, int persistent_group,
  2204. const struct p2p_channels *channels)
  2205. {
  2206. struct wpa_supplicant *wpa_s = ctx;
  2207. struct wpa_ssid *s;
  2208. int res;
  2209. struct wpa_supplicant *grp;
  2210. if (!persistent_group) {
  2211. wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
  2212. " to join an active group", MAC2STR(sa));
  2213. if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
  2214. (os_memcmp(go_dev_addr, wpa_s->p2p_auth_invite, ETH_ALEN)
  2215. == 0 ||
  2216. os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0)) {
  2217. wpa_printf(MSG_DEBUG, "P2P: Accept previously "
  2218. "authorized invitation");
  2219. goto accept_inv;
  2220. }
  2221. /*
  2222. * Do not accept the invitation automatically; notify user and
  2223. * request approval.
  2224. */
  2225. return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
  2226. }
  2227. grp = wpas_get_p2p_group(wpa_s, ssid, ssid_len, go);
  2228. if (grp) {
  2229. wpa_printf(MSG_DEBUG, "P2P: Accept invitation to already "
  2230. "running persistent group");
  2231. if (*go)
  2232. os_memcpy(group_bssid, grp->own_addr, ETH_ALEN);
  2233. goto accept_inv;
  2234. }
  2235. if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
  2236. os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0) {
  2237. wpa_printf(MSG_DEBUG, "P2P: Accept previously initiated "
  2238. "invitation to re-invoke a persistent group");
  2239. } else if (!wpa_s->conf->persistent_reconnect)
  2240. return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
  2241. for (s = wpa_s->conf->ssid; s; s = s->next) {
  2242. if (s->disabled == 2 &&
  2243. os_memcmp(s->bssid, go_dev_addr, ETH_ALEN) == 0 &&
  2244. s->ssid_len == ssid_len &&
  2245. os_memcmp(ssid, s->ssid, ssid_len) == 0)
  2246. break;
  2247. }
  2248. if (!s) {
  2249. wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
  2250. " requested reinvocation of an unknown group",
  2251. MAC2STR(sa));
  2252. return P2P_SC_FAIL_UNKNOWN_GROUP;
  2253. }
  2254. if (s->mode == WPAS_MODE_P2P_GO && !wpas_p2p_create_iface(wpa_s)) {
  2255. *go = 1;
  2256. if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
  2257. wpa_printf(MSG_DEBUG, "P2P: The only available "
  2258. "interface is already in use - reject "
  2259. "invitation");
  2260. return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
  2261. }
  2262. os_memcpy(group_bssid, wpa_s->own_addr, ETH_ALEN);
  2263. } else if (s->mode == WPAS_MODE_P2P_GO) {
  2264. *go = 1;
  2265. if (wpas_p2p_add_group_interface(wpa_s, WPA_IF_P2P_GO) < 0)
  2266. {
  2267. wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
  2268. "interface address for the group");
  2269. return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
  2270. }
  2271. os_memcpy(group_bssid, wpa_s->pending_interface_addr,
  2272. ETH_ALEN);
  2273. }
  2274. accept_inv:
  2275. wpas_p2p_set_own_freq_preference(wpa_s, 0);
  2276. /* Get one of the frequencies currently in use */
  2277. if (wpas_p2p_valid_oper_freqs(wpa_s, &res, 1) > 0) {
  2278. wpa_printf(MSG_DEBUG, "P2P: Trying to force channel to match a channel already used by one of the interfaces");
  2279. *force_freq = res;
  2280. wpas_p2p_set_own_freq_preference(wpa_s, res);
  2281. }
  2282. if (*force_freq > 0 && wpa_s->num_multichan_concurrent > 1 &&
  2283. wpas_p2p_num_unused_channels(wpa_s) > 0) {
  2284. if (*go == 0) {
  2285. /* We are the client */
  2286. wpa_printf(MSG_DEBUG, "P2P: Peer was found to be "
  2287. "running a GO but we are capable of MCC, "
  2288. "figure out the best channel to use");
  2289. *force_freq = 0;
  2290. } else if (!freq_included(channels, *force_freq)) {
  2291. /* We are the GO, and *force_freq is not in the
  2292. * intersection */
  2293. wpa_printf(MSG_DEBUG, "P2P: Forced GO freq %d MHz not "
  2294. "in intersection but we are capable of MCC, "
  2295. "figure out the best channel to use",
  2296. *force_freq);
  2297. *force_freq = 0;
  2298. }
  2299. }
  2300. return P2P_SC_SUCCESS;
  2301. }
  2302. static void wpas_invitation_received(void *ctx, const u8 *sa, const u8 *bssid,
  2303. const u8 *ssid, size_t ssid_len,
  2304. const u8 *go_dev_addr, u8 status,
  2305. int op_freq)
  2306. {
  2307. struct wpa_supplicant *wpa_s = ctx;
  2308. struct wpa_ssid *s;
  2309. for (s = wpa_s->conf->ssid; s; s = s->next) {
  2310. if (s->disabled == 2 &&
  2311. s->ssid_len == ssid_len &&
  2312. os_memcmp(ssid, s->ssid, ssid_len) == 0)
  2313. break;
  2314. }
  2315. if (status == P2P_SC_SUCCESS) {
  2316. wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
  2317. " was accepted; op_freq=%d MHz",
  2318. MAC2STR(sa), op_freq);
  2319. if (s) {
  2320. int go = s->mode == WPAS_MODE_P2P_GO;
  2321. wpas_p2p_group_add_persistent(
  2322. wpa_s, s, go, go ? op_freq : 0, 0, 0, NULL,
  2323. go ? P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE : 0);
  2324. } else if (bssid) {
  2325. wpa_s->user_initiated_pd = 0;
  2326. wpas_p2p_join(wpa_s, bssid, go_dev_addr,
  2327. wpa_s->p2p_wps_method, 0);
  2328. }
  2329. return;
  2330. }
  2331. if (status != P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
  2332. wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
  2333. " was rejected (status %u)", MAC2STR(sa), status);
  2334. return;
  2335. }
  2336. if (!s) {
  2337. if (bssid) {
  2338. wpa_msg_global(wpa_s, MSG_INFO,
  2339. P2P_EVENT_INVITATION_RECEIVED
  2340. "sa=" MACSTR " go_dev_addr=" MACSTR
  2341. " bssid=" MACSTR " unknown-network",
  2342. MAC2STR(sa), MAC2STR(go_dev_addr),
  2343. MAC2STR(bssid));
  2344. } else {
  2345. wpa_msg_global(wpa_s, MSG_INFO,
  2346. P2P_EVENT_INVITATION_RECEIVED
  2347. "sa=" MACSTR " go_dev_addr=" MACSTR
  2348. " unknown-network",
  2349. MAC2STR(sa), MAC2STR(go_dev_addr));
  2350. }
  2351. return;
  2352. }
  2353. if (s->mode == WPAS_MODE_P2P_GO && op_freq) {
  2354. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
  2355. "sa=" MACSTR " persistent=%d freq=%d",
  2356. MAC2STR(sa), s->id, op_freq);
  2357. } else {
  2358. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
  2359. "sa=" MACSTR " persistent=%d",
  2360. MAC2STR(sa), s->id);
  2361. }
  2362. }
  2363. static void wpas_remove_persistent_peer(struct wpa_supplicant *wpa_s,
  2364. struct wpa_ssid *ssid,
  2365. const u8 *peer, int inv)
  2366. {
  2367. size_t i;
  2368. if (ssid == NULL)
  2369. return;
  2370. for (i = 0; ssid->p2p_client_list && i < ssid->num_p2p_clients; i++) {
  2371. if (os_memcmp(ssid->p2p_client_list + i * ETH_ALEN, peer,
  2372. ETH_ALEN) == 0)
  2373. break;
  2374. }
  2375. if (i >= ssid->num_p2p_clients) {
  2376. if (ssid->mode != WPAS_MODE_P2P_GO &&
  2377. os_memcmp(ssid->bssid, peer, ETH_ALEN) == 0) {
  2378. wpa_printf(MSG_DEBUG, "P2P: Remove persistent group %d "
  2379. "due to invitation result", ssid->id);
  2380. wpas_notify_network_removed(wpa_s, ssid);
  2381. wpa_config_remove_network(wpa_s->conf, ssid->id);
  2382. return;
  2383. }
  2384. return; /* Peer not found in client list */
  2385. }
  2386. wpa_printf(MSG_DEBUG, "P2P: Remove peer " MACSTR " from persistent "
  2387. "group %d client list%s",
  2388. MAC2STR(peer), ssid->id,
  2389. inv ? " due to invitation result" : "");
  2390. os_memmove(ssid->p2p_client_list + i * ETH_ALEN,
  2391. ssid->p2p_client_list + (i + 1) * ETH_ALEN,
  2392. (ssid->num_p2p_clients - i - 1) * ETH_ALEN);
  2393. ssid->num_p2p_clients--;
  2394. #ifndef CONFIG_NO_CONFIG_WRITE
  2395. if (wpa_s->parent->conf->update_config &&
  2396. wpa_config_write(wpa_s->parent->confname, wpa_s->parent->conf))
  2397. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  2398. #endif /* CONFIG_NO_CONFIG_WRITE */
  2399. }
  2400. static void wpas_remove_persistent_client(struct wpa_supplicant *wpa_s,
  2401. const u8 *peer)
  2402. {
  2403. struct wpa_ssid *ssid;
  2404. wpa_s = wpa_s->global->p2p_invite_group;
  2405. if (wpa_s == NULL)
  2406. return; /* No known invitation group */
  2407. ssid = wpa_s->current_ssid;
  2408. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
  2409. !ssid->p2p_persistent_group)
  2410. return; /* Not operating as a GO in persistent group */
  2411. ssid = wpas_p2p_get_persistent(wpa_s->parent, peer,
  2412. ssid->ssid, ssid->ssid_len);
  2413. wpas_remove_persistent_peer(wpa_s, ssid, peer, 1);
  2414. }
  2415. static void wpas_invitation_result(void *ctx, int status, const u8 *bssid,
  2416. const struct p2p_channels *channels,
  2417. const u8 *peer)
  2418. {
  2419. struct wpa_supplicant *wpa_s = ctx;
  2420. struct wpa_ssid *ssid;
  2421. if (bssid) {
  2422. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
  2423. "status=%d " MACSTR,
  2424. status, MAC2STR(bssid));
  2425. } else {
  2426. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
  2427. "status=%d ", status);
  2428. }
  2429. wpas_notify_p2p_invitation_result(wpa_s, status, bssid);
  2430. wpa_printf(MSG_DEBUG, "P2P: Invitation result - status=%d peer=" MACSTR,
  2431. status, MAC2STR(peer));
  2432. if (wpa_s->pending_invite_ssid_id == -1) {
  2433. if (status == P2P_SC_FAIL_UNKNOWN_GROUP)
  2434. wpas_remove_persistent_client(wpa_s, peer);
  2435. return; /* Invitation to active group */
  2436. }
  2437. if (status == P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
  2438. wpa_printf(MSG_DEBUG, "P2P: Waiting for peer to start another "
  2439. "invitation exchange to indicate readiness for "
  2440. "re-invocation");
  2441. }
  2442. if (status != P2P_SC_SUCCESS) {
  2443. if (status == P2P_SC_FAIL_UNKNOWN_GROUP) {
  2444. ssid = wpa_config_get_network(
  2445. wpa_s->conf, wpa_s->pending_invite_ssid_id);
  2446. wpas_remove_persistent_peer(wpa_s, ssid, peer, 1);
  2447. }
  2448. wpas_p2p_remove_pending_group_interface(wpa_s);
  2449. return;
  2450. }
  2451. ssid = wpa_config_get_network(wpa_s->conf,
  2452. wpa_s->pending_invite_ssid_id);
  2453. if (ssid == NULL) {
  2454. wpa_printf(MSG_ERROR, "P2P: Could not find persistent group "
  2455. "data matching with invitation");
  2456. return;
  2457. }
  2458. /*
  2459. * The peer could have missed our ctrl::ack frame for Invitation
  2460. * Response and continue retransmitting the frame. To reduce the
  2461. * likelihood of the peer not getting successful TX status for the
  2462. * Invitation Response frame, wait a short time here before starting
  2463. * the persistent group so that we will remain on the current channel to
  2464. * acknowledge any possible retransmission from the peer.
  2465. */
  2466. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: 50 ms wait on current channel before "
  2467. "starting persistent group");
  2468. os_sleep(0, 50000);
  2469. wpas_p2p_group_add_persistent(wpa_s, ssid,
  2470. ssid->mode == WPAS_MODE_P2P_GO,
  2471. wpa_s->p2p_persistent_go_freq,
  2472. wpa_s->p2p_go_ht40, wpa_s->p2p_go_vht,
  2473. channels,
  2474. ssid->mode == WPAS_MODE_P2P_GO ?
  2475. P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE :
  2476. 0);
  2477. }
  2478. static int wpas_p2p_disallowed_freq(struct wpa_global *global,
  2479. unsigned int freq)
  2480. {
  2481. return freq_range_list_includes(&global->p2p_disallow_freq, freq);
  2482. }
  2483. static void wpas_p2p_add_chan(struct p2p_reg_class *reg, u8 chan)
  2484. {
  2485. reg->channel[reg->channels] = chan;
  2486. reg->channels++;
  2487. }
  2488. static int wpas_p2p_default_channels(struct wpa_supplicant *wpa_s,
  2489. struct p2p_channels *chan,
  2490. struct p2p_channels *cli_chan)
  2491. {
  2492. int i, cla = 0;
  2493. os_memset(cli_chan, 0, sizeof(*cli_chan));
  2494. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for 2.4 GHz "
  2495. "band");
  2496. /* Operating class 81 - 2.4 GHz band channels 1..13 */
  2497. chan->reg_class[cla].reg_class = 81;
  2498. chan->reg_class[cla].channels = 0;
  2499. for (i = 0; i < 11; i++) {
  2500. if (!wpas_p2p_disallowed_freq(wpa_s->global, 2412 + i * 5))
  2501. wpas_p2p_add_chan(&chan->reg_class[cla], i + 1);
  2502. }
  2503. if (chan->reg_class[cla].channels)
  2504. cla++;
  2505. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for lower 5 GHz "
  2506. "band");
  2507. /* Operating class 115 - 5 GHz, channels 36-48 */
  2508. chan->reg_class[cla].reg_class = 115;
  2509. chan->reg_class[cla].channels = 0;
  2510. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 36 * 5))
  2511. wpas_p2p_add_chan(&chan->reg_class[cla], 36);
  2512. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 40 * 5))
  2513. wpas_p2p_add_chan(&chan->reg_class[cla], 40);
  2514. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 44 * 5))
  2515. wpas_p2p_add_chan(&chan->reg_class[cla], 44);
  2516. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 48 * 5))
  2517. wpas_p2p_add_chan(&chan->reg_class[cla], 48);
  2518. if (chan->reg_class[cla].channels)
  2519. cla++;
  2520. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for higher 5 GHz "
  2521. "band");
  2522. /* Operating class 124 - 5 GHz, channels 149,153,157,161 */
  2523. chan->reg_class[cla].reg_class = 124;
  2524. chan->reg_class[cla].channels = 0;
  2525. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 149 * 5))
  2526. wpas_p2p_add_chan(&chan->reg_class[cla], 149);
  2527. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 153 * 5))
  2528. wpas_p2p_add_chan(&chan->reg_class[cla], 153);
  2529. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 156 * 5))
  2530. wpas_p2p_add_chan(&chan->reg_class[cla], 157);
  2531. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 161 * 5))
  2532. wpas_p2p_add_chan(&chan->reg_class[cla], 161);
  2533. if (chan->reg_class[cla].channels)
  2534. cla++;
  2535. chan->reg_classes = cla;
  2536. return 0;
  2537. }
  2538. static struct hostapd_hw_modes * get_mode(struct hostapd_hw_modes *modes,
  2539. u16 num_modes,
  2540. enum hostapd_hw_mode mode)
  2541. {
  2542. u16 i;
  2543. for (i = 0; i < num_modes; i++) {
  2544. if (modes[i].mode == mode)
  2545. return &modes[i];
  2546. }
  2547. return NULL;
  2548. }
  2549. enum chan_allowed {
  2550. NOT_ALLOWED, PASSIVE_ONLY, ALLOWED
  2551. };
  2552. static int has_channel(struct wpa_global *global,
  2553. struct hostapd_hw_modes *mode, u8 chan, int *flags)
  2554. {
  2555. int i;
  2556. unsigned int freq;
  2557. freq = (mode->mode == HOSTAPD_MODE_IEEE80211A ? 5000 : 2407) +
  2558. chan * 5;
  2559. if (wpas_p2p_disallowed_freq(global, freq))
  2560. return NOT_ALLOWED;
  2561. for (i = 0; i < mode->num_channels; i++) {
  2562. if (mode->channels[i].chan == chan) {
  2563. if (flags)
  2564. *flags = mode->channels[i].flag;
  2565. if (mode->channels[i].flag &
  2566. (HOSTAPD_CHAN_DISABLED |
  2567. HOSTAPD_CHAN_RADAR))
  2568. return NOT_ALLOWED;
  2569. if (mode->channels[i].flag &
  2570. (HOSTAPD_CHAN_PASSIVE_SCAN |
  2571. HOSTAPD_CHAN_NO_IBSS))
  2572. return PASSIVE_ONLY;
  2573. return ALLOWED;
  2574. }
  2575. }
  2576. return NOT_ALLOWED;
  2577. }
  2578. struct p2p_oper_class_map {
  2579. enum hostapd_hw_mode mode;
  2580. u8 op_class;
  2581. u8 min_chan;
  2582. u8 max_chan;
  2583. u8 inc;
  2584. enum { BW20, BW40PLUS, BW40MINUS, BW80 } bw;
  2585. };
  2586. static struct p2p_oper_class_map op_class[] = {
  2587. { HOSTAPD_MODE_IEEE80211G, 81, 1, 13, 1, BW20 },
  2588. #if 0 /* Do not enable HT40 on 2 GHz for now */
  2589. { HOSTAPD_MODE_IEEE80211G, 83, 1, 9, 1, BW40PLUS },
  2590. { HOSTAPD_MODE_IEEE80211G, 84, 5, 13, 1, BW40MINUS },
  2591. #endif
  2592. { HOSTAPD_MODE_IEEE80211A, 115, 36, 48, 4, BW20 },
  2593. { HOSTAPD_MODE_IEEE80211A, 124, 149, 161, 4, BW20 },
  2594. { HOSTAPD_MODE_IEEE80211A, 116, 36, 44, 8, BW40PLUS },
  2595. { HOSTAPD_MODE_IEEE80211A, 117, 40, 48, 8, BW40MINUS },
  2596. { HOSTAPD_MODE_IEEE80211A, 126, 149, 157, 8, BW40PLUS },
  2597. { HOSTAPD_MODE_IEEE80211A, 127, 153, 161, 8, BW40MINUS },
  2598. /*
  2599. * IEEE P802.11ac/D7.0 Table E-4 actually talks about channel center
  2600. * frequency index 42, 58, 106, 122, 138, 155 with channel spacing of
  2601. * 80 MHz, but currently use the following definition for simplicity
  2602. * (these center frequencies are not actual channels, which makes
  2603. * has_channel() fail). wpas_p2p_verify_80mhz() should take care of
  2604. * removing invalid channels.
  2605. */
  2606. { HOSTAPD_MODE_IEEE80211A, 128, 36, 161, 4, BW80 },
  2607. { -1, 0, 0, 0, 0, BW20 }
  2608. };
  2609. static int wpas_p2p_get_center_80mhz(struct wpa_supplicant *wpa_s,
  2610. struct hostapd_hw_modes *mode,
  2611. u8 channel)
  2612. {
  2613. u8 center_channels[] = { 42, 58, 106, 122, 138, 155 };
  2614. unsigned int i;
  2615. if (mode->mode != HOSTAPD_MODE_IEEE80211A)
  2616. return 0;
  2617. for (i = 0; i < ARRAY_SIZE(center_channels); i++)
  2618. /*
  2619. * In 80 MHz, the bandwidth "spans" 12 channels (e.g., 36-48),
  2620. * so the center channel is 6 channels away from the start/end.
  2621. */
  2622. if (channel >= center_channels[i] - 6 &&
  2623. channel <= center_channels[i] + 6)
  2624. return center_channels[i];
  2625. return 0;
  2626. }
  2627. static enum chan_allowed wpas_p2p_verify_80mhz(struct wpa_supplicant *wpa_s,
  2628. struct hostapd_hw_modes *mode,
  2629. u8 channel, u8 bw)
  2630. {
  2631. u8 center_chan;
  2632. int i, flags;
  2633. enum chan_allowed res, ret = ALLOWED;
  2634. center_chan = wpas_p2p_get_center_80mhz(wpa_s, mode, channel);
  2635. if (!center_chan)
  2636. return NOT_ALLOWED;
  2637. if (center_chan >= 58 && center_chan <= 138)
  2638. return NOT_ALLOWED; /* Do not allow DFS channels for P2P */
  2639. /* check all the channels are available */
  2640. for (i = 0; i < 4; i++) {
  2641. int adj_chan = center_chan - 6 + i * 4;
  2642. res = has_channel(wpa_s->global, mode, adj_chan, &flags);
  2643. if (res == NOT_ALLOWED)
  2644. return NOT_ALLOWED;
  2645. if (res == PASSIVE_ONLY)
  2646. ret = PASSIVE_ONLY;
  2647. if (i == 0 && !(flags & HOSTAPD_CHAN_VHT_10_70))
  2648. return NOT_ALLOWED;
  2649. if (i == 1 && !(flags & HOSTAPD_CHAN_VHT_30_50))
  2650. return NOT_ALLOWED;
  2651. if (i == 2 && !(flags & HOSTAPD_CHAN_VHT_50_30))
  2652. return NOT_ALLOWED;
  2653. if (i == 3 && !(flags & HOSTAPD_CHAN_VHT_70_10))
  2654. return NOT_ALLOWED;
  2655. }
  2656. return ret;
  2657. }
  2658. static enum chan_allowed wpas_p2p_verify_channel(struct wpa_supplicant *wpa_s,
  2659. struct hostapd_hw_modes *mode,
  2660. u8 channel, u8 bw)
  2661. {
  2662. int flag;
  2663. enum chan_allowed res, res2;
  2664. res2 = res = has_channel(wpa_s->global, mode, channel, &flag);
  2665. if (bw == BW40MINUS) {
  2666. if (!(flag & HOSTAPD_CHAN_HT40MINUS))
  2667. return NOT_ALLOWED;
  2668. res2 = has_channel(wpa_s->global, mode, channel - 4, NULL);
  2669. } else if (bw == BW40PLUS) {
  2670. if (!(flag & HOSTAPD_CHAN_HT40PLUS))
  2671. return NOT_ALLOWED;
  2672. res2 = has_channel(wpa_s->global, mode, channel + 4, NULL);
  2673. } else if (bw == BW80) {
  2674. res2 = wpas_p2p_verify_80mhz(wpa_s, mode, channel, bw);
  2675. }
  2676. if (res == NOT_ALLOWED || res2 == NOT_ALLOWED)
  2677. return NOT_ALLOWED;
  2678. if (res == PASSIVE_ONLY || res2 == PASSIVE_ONLY)
  2679. return PASSIVE_ONLY;
  2680. return res;
  2681. }
  2682. static int wpas_p2p_setup_channels(struct wpa_supplicant *wpa_s,
  2683. struct p2p_channels *chan,
  2684. struct p2p_channels *cli_chan)
  2685. {
  2686. struct hostapd_hw_modes *mode;
  2687. int cla, op, cli_cla;
  2688. if (wpa_s->hw.modes == NULL) {
  2689. wpa_printf(MSG_DEBUG, "P2P: Driver did not support fetching "
  2690. "of all supported channels; assume dualband "
  2691. "support");
  2692. return wpas_p2p_default_channels(wpa_s, chan, cli_chan);
  2693. }
  2694. cla = cli_cla = 0;
  2695. for (op = 0; op_class[op].op_class; op++) {
  2696. struct p2p_oper_class_map *o = &op_class[op];
  2697. u8 ch;
  2698. struct p2p_reg_class *reg = NULL, *cli_reg = NULL;
  2699. mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, o->mode);
  2700. if (mode == NULL)
  2701. continue;
  2702. for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
  2703. enum chan_allowed res;
  2704. res = wpas_p2p_verify_channel(wpa_s, mode, ch, o->bw);
  2705. if (res == ALLOWED) {
  2706. if (reg == NULL) {
  2707. wpa_printf(MSG_DEBUG, "P2P: Add operating class %u",
  2708. o->op_class);
  2709. reg = &chan->reg_class[cla];
  2710. cla++;
  2711. reg->reg_class = o->op_class;
  2712. }
  2713. reg->channel[reg->channels] = ch;
  2714. reg->channels++;
  2715. } else if (res == PASSIVE_ONLY &&
  2716. wpa_s->conf->p2p_add_cli_chan) {
  2717. if (cli_reg == NULL) {
  2718. wpa_printf(MSG_DEBUG, "P2P: Add operating class %u (client only)",
  2719. o->op_class);
  2720. cli_reg = &cli_chan->reg_class[cli_cla];
  2721. cli_cla++;
  2722. cli_reg->reg_class = o->op_class;
  2723. }
  2724. cli_reg->channel[cli_reg->channels] = ch;
  2725. cli_reg->channels++;
  2726. }
  2727. }
  2728. if (reg) {
  2729. wpa_hexdump(MSG_DEBUG, "P2P: Channels",
  2730. reg->channel, reg->channels);
  2731. }
  2732. if (cli_reg) {
  2733. wpa_hexdump(MSG_DEBUG, "P2P: Channels (client only)",
  2734. cli_reg->channel, cli_reg->channels);
  2735. }
  2736. }
  2737. chan->reg_classes = cla;
  2738. cli_chan->reg_classes = cli_cla;
  2739. return 0;
  2740. }
  2741. int wpas_p2p_get_ht40_mode(struct wpa_supplicant *wpa_s,
  2742. struct hostapd_hw_modes *mode, u8 channel)
  2743. {
  2744. int op;
  2745. enum chan_allowed ret;
  2746. for (op = 0; op_class[op].op_class; op++) {
  2747. struct p2p_oper_class_map *o = &op_class[op];
  2748. u8 ch;
  2749. for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
  2750. if (o->mode != HOSTAPD_MODE_IEEE80211A ||
  2751. o->bw == BW20 || ch != channel)
  2752. continue;
  2753. ret = wpas_p2p_verify_channel(wpa_s, mode, ch, o->bw);
  2754. if (ret == ALLOWED)
  2755. return (o->bw == BW40MINUS) ? -1 : 1;
  2756. }
  2757. }
  2758. return 0;
  2759. }
  2760. int wpas_p2p_get_vht80_center(struct wpa_supplicant *wpa_s,
  2761. struct hostapd_hw_modes *mode, u8 channel)
  2762. {
  2763. if (!wpas_p2p_verify_channel(wpa_s, mode, channel, BW80))
  2764. return 0;
  2765. return wpas_p2p_get_center_80mhz(wpa_s, mode, channel);
  2766. }
  2767. static int wpas_get_noa(void *ctx, const u8 *interface_addr, u8 *buf,
  2768. size_t buf_len)
  2769. {
  2770. struct wpa_supplicant *wpa_s = ctx;
  2771. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  2772. if (os_memcmp(wpa_s->own_addr, interface_addr, ETH_ALEN) == 0)
  2773. break;
  2774. }
  2775. if (wpa_s == NULL)
  2776. return -1;
  2777. return wpa_drv_get_noa(wpa_s, buf, buf_len);
  2778. }
  2779. static int wpas_go_connected(void *ctx, const u8 *dev_addr)
  2780. {
  2781. struct wpa_supplicant *wpa_s = ctx;
  2782. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  2783. struct wpa_ssid *ssid = wpa_s->current_ssid;
  2784. if (ssid == NULL)
  2785. continue;
  2786. if (ssid->mode != WPAS_MODE_INFRA)
  2787. continue;
  2788. if (wpa_s->wpa_state != WPA_COMPLETED &&
  2789. wpa_s->wpa_state != WPA_GROUP_HANDSHAKE)
  2790. continue;
  2791. if (os_memcmp(wpa_s->go_dev_addr, dev_addr, ETH_ALEN) == 0)
  2792. return 1;
  2793. }
  2794. return 0;
  2795. }
  2796. static void wpas_p2p_debug_print(void *ctx, int level, const char *msg)
  2797. {
  2798. struct wpa_supplicant *wpa_s = ctx;
  2799. wpa_msg_global(wpa_s, level, "P2P: %s", msg);
  2800. }
  2801. int wpas_p2p_add_p2pdev_interface(struct wpa_supplicant *wpa_s)
  2802. {
  2803. struct wpa_interface iface;
  2804. struct wpa_supplicant *p2pdev_wpa_s;
  2805. char ifname[100];
  2806. char force_name[100];
  2807. int ret;
  2808. os_snprintf(ifname, sizeof(ifname), P2P_MGMT_DEVICE_PREFIX "%s",
  2809. wpa_s->ifname);
  2810. force_name[0] = '\0';
  2811. wpa_s->pending_interface_type = WPA_IF_P2P_DEVICE;
  2812. ret = wpa_drv_if_add(wpa_s, WPA_IF_P2P_DEVICE, ifname, NULL, NULL,
  2813. force_name, wpa_s->pending_interface_addr, NULL);
  2814. if (ret < 0) {
  2815. wpa_printf(MSG_DEBUG, "P2P: Failed to create P2P Device interface");
  2816. return ret;
  2817. }
  2818. os_strlcpy(wpa_s->pending_interface_name, ifname,
  2819. sizeof(wpa_s->pending_interface_name));
  2820. os_memset(&iface, 0, sizeof(iface));
  2821. iface.p2p_mgmt = 1;
  2822. iface.ifname = wpa_s->pending_interface_name;
  2823. iface.driver = wpa_s->driver->name;
  2824. iface.driver_param = wpa_s->conf->driver_param;
  2825. iface.confname = wpa_s->confname;
  2826. p2pdev_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface);
  2827. if (!p2pdev_wpa_s) {
  2828. wpa_printf(MSG_DEBUG, "P2P: Failed to add P2P Device interface");
  2829. return -1;
  2830. }
  2831. p2pdev_wpa_s->parent = wpa_s;
  2832. wpa_s->pending_interface_name[0] = '\0';
  2833. return 0;
  2834. }
  2835. /**
  2836. * wpas_p2p_init - Initialize P2P module for %wpa_supplicant
  2837. * @global: Pointer to global data from wpa_supplicant_init()
  2838. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  2839. * Returns: 0 on success, -1 on failure
  2840. */
  2841. int wpas_p2p_init(struct wpa_global *global, struct wpa_supplicant *wpa_s)
  2842. {
  2843. struct p2p_config p2p;
  2844. unsigned int r;
  2845. int i;
  2846. if (wpa_s->conf->p2p_disabled)
  2847. return 0;
  2848. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
  2849. return 0;
  2850. if (global->p2p)
  2851. return 0;
  2852. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  2853. struct p2p_params params;
  2854. wpa_printf(MSG_DEBUG, "P2P: Use driver-based P2P management");
  2855. os_memset(&params, 0, sizeof(params));
  2856. params.dev_name = wpa_s->conf->device_name;
  2857. os_memcpy(params.pri_dev_type, wpa_s->conf->device_type,
  2858. WPS_DEV_TYPE_LEN);
  2859. params.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
  2860. os_memcpy(params.sec_dev_type,
  2861. wpa_s->conf->sec_device_type,
  2862. params.num_sec_dev_types * WPS_DEV_TYPE_LEN);
  2863. if (wpa_drv_p2p_set_params(wpa_s, &params) < 0)
  2864. return -1;
  2865. return 0;
  2866. }
  2867. os_memset(&p2p, 0, sizeof(p2p));
  2868. p2p.cb_ctx = wpa_s;
  2869. p2p.debug_print = wpas_p2p_debug_print;
  2870. p2p.p2p_scan = wpas_p2p_scan;
  2871. p2p.send_action = wpas_send_action;
  2872. p2p.send_action_done = wpas_send_action_done;
  2873. p2p.go_neg_completed = wpas_go_neg_completed;
  2874. p2p.go_neg_req_rx = wpas_go_neg_req_rx;
  2875. p2p.dev_found = wpas_dev_found;
  2876. p2p.dev_lost = wpas_dev_lost;
  2877. p2p.find_stopped = wpas_find_stopped;
  2878. p2p.start_listen = wpas_start_listen;
  2879. p2p.stop_listen = wpas_stop_listen;
  2880. p2p.send_probe_resp = wpas_send_probe_resp;
  2881. p2p.sd_request = wpas_sd_request;
  2882. p2p.sd_response = wpas_sd_response;
  2883. p2p.prov_disc_req = wpas_prov_disc_req;
  2884. p2p.prov_disc_resp = wpas_prov_disc_resp;
  2885. p2p.prov_disc_fail = wpas_prov_disc_fail;
  2886. p2p.invitation_process = wpas_invitation_process;
  2887. p2p.invitation_received = wpas_invitation_received;
  2888. p2p.invitation_result = wpas_invitation_result;
  2889. p2p.get_noa = wpas_get_noa;
  2890. p2p.go_connected = wpas_go_connected;
  2891. os_memcpy(wpa_s->global->p2p_dev_addr, wpa_s->own_addr, ETH_ALEN);
  2892. os_memcpy(p2p.dev_addr, wpa_s->global->p2p_dev_addr, ETH_ALEN);
  2893. p2p.dev_name = wpa_s->conf->device_name;
  2894. p2p.manufacturer = wpa_s->conf->manufacturer;
  2895. p2p.model_name = wpa_s->conf->model_name;
  2896. p2p.model_number = wpa_s->conf->model_number;
  2897. p2p.serial_number = wpa_s->conf->serial_number;
  2898. if (wpa_s->wps) {
  2899. os_memcpy(p2p.uuid, wpa_s->wps->uuid, 16);
  2900. p2p.config_methods = wpa_s->wps->config_methods;
  2901. }
  2902. if (wpa_s->conf->p2p_listen_reg_class &&
  2903. wpa_s->conf->p2p_listen_channel) {
  2904. p2p.reg_class = wpa_s->conf->p2p_listen_reg_class;
  2905. p2p.channel = wpa_s->conf->p2p_listen_channel;
  2906. } else {
  2907. p2p.reg_class = 81;
  2908. /*
  2909. * Pick one of the social channels randomly as the listen
  2910. * channel.
  2911. */
  2912. os_get_random((u8 *) &r, sizeof(r));
  2913. p2p.channel = 1 + (r % 3) * 5;
  2914. }
  2915. wpa_printf(MSG_DEBUG, "P2P: Own listen channel: %d", p2p.channel);
  2916. if (wpa_s->conf->p2p_oper_reg_class &&
  2917. wpa_s->conf->p2p_oper_channel) {
  2918. p2p.op_reg_class = wpa_s->conf->p2p_oper_reg_class;
  2919. p2p.op_channel = wpa_s->conf->p2p_oper_channel;
  2920. p2p.cfg_op_channel = 1;
  2921. wpa_printf(MSG_DEBUG, "P2P: Configured operating channel: "
  2922. "%d:%d", p2p.op_reg_class, p2p.op_channel);
  2923. } else {
  2924. p2p.op_reg_class = 81;
  2925. /*
  2926. * Use random operation channel from (1, 6, 11) if no other
  2927. * preference is indicated.
  2928. */
  2929. os_get_random((u8 *) &r, sizeof(r));
  2930. p2p.op_channel = 1 + (r % 3) * 5;
  2931. p2p.cfg_op_channel = 0;
  2932. wpa_printf(MSG_DEBUG, "P2P: Random operating channel: "
  2933. "%d:%d", p2p.op_reg_class, p2p.op_channel);
  2934. }
  2935. if (wpa_s->conf->p2p_pref_chan && wpa_s->conf->num_p2p_pref_chan) {
  2936. p2p.pref_chan = wpa_s->conf->p2p_pref_chan;
  2937. p2p.num_pref_chan = wpa_s->conf->num_p2p_pref_chan;
  2938. }
  2939. if (wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
  2940. os_memcpy(p2p.country, wpa_s->conf->country, 2);
  2941. p2p.country[2] = 0x04;
  2942. } else
  2943. os_memcpy(p2p.country, "XX\x04", 3);
  2944. if (wpas_p2p_setup_channels(wpa_s, &p2p.channels, &p2p.cli_channels)) {
  2945. wpa_printf(MSG_ERROR, "P2P: Failed to configure supported "
  2946. "channel list");
  2947. return -1;
  2948. }
  2949. os_memcpy(p2p.pri_dev_type, wpa_s->conf->device_type,
  2950. WPS_DEV_TYPE_LEN);
  2951. p2p.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
  2952. os_memcpy(p2p.sec_dev_type, wpa_s->conf->sec_device_type,
  2953. p2p.num_sec_dev_types * WPS_DEV_TYPE_LEN);
  2954. p2p.concurrent_operations = !!(wpa_s->drv_flags &
  2955. WPA_DRIVER_FLAGS_P2P_CONCURRENT);
  2956. p2p.max_peers = 100;
  2957. if (wpa_s->conf->p2p_ssid_postfix) {
  2958. p2p.ssid_postfix_len =
  2959. os_strlen(wpa_s->conf->p2p_ssid_postfix);
  2960. if (p2p.ssid_postfix_len > sizeof(p2p.ssid_postfix))
  2961. p2p.ssid_postfix_len = sizeof(p2p.ssid_postfix);
  2962. os_memcpy(p2p.ssid_postfix, wpa_s->conf->p2p_ssid_postfix,
  2963. p2p.ssid_postfix_len);
  2964. }
  2965. p2p.p2p_intra_bss = wpa_s->conf->p2p_intra_bss;
  2966. p2p.max_listen = wpa_s->max_remain_on_chan;
  2967. global->p2p = p2p_init(&p2p);
  2968. if (global->p2p == NULL)
  2969. return -1;
  2970. global->p2p_init_wpa_s = wpa_s;
  2971. for (i = 0; i < MAX_WPS_VENDOR_EXT; i++) {
  2972. if (wpa_s->conf->wps_vendor_ext[i] == NULL)
  2973. continue;
  2974. p2p_add_wps_vendor_extension(
  2975. global->p2p, wpa_s->conf->wps_vendor_ext[i]);
  2976. }
  2977. p2p_set_no_go_freq(global->p2p, &wpa_s->conf->p2p_no_go_freq);
  2978. return 0;
  2979. }
  2980. /**
  2981. * wpas_p2p_deinit - Deinitialize per-interface P2P data
  2982. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  2983. *
  2984. * This function deinitialize per-interface P2P data.
  2985. */
  2986. void wpas_p2p_deinit(struct wpa_supplicant *wpa_s)
  2987. {
  2988. if (wpa_s->driver && wpa_s->drv_priv)
  2989. wpa_drv_probe_req_report(wpa_s, 0);
  2990. if (wpa_s->go_params) {
  2991. /* Clear any stored provisioning info */
  2992. p2p_clear_provisioning_info(
  2993. wpa_s->global->p2p,
  2994. wpa_s->go_params->peer_device_addr);
  2995. }
  2996. os_free(wpa_s->go_params);
  2997. wpa_s->go_params = NULL;
  2998. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  2999. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  3000. wpa_s->p2p_long_listen = 0;
  3001. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  3002. eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
  3003. wpas_p2p_remove_pending_group_interface(wpa_s);
  3004. /* TODO: remove group interface from the driver if this wpa_s instance
  3005. * is on top of a P2P group interface */
  3006. }
  3007. /**
  3008. * wpas_p2p_deinit_global - Deinitialize global P2P module
  3009. * @global: Pointer to global data from wpa_supplicant_init()
  3010. *
  3011. * This function deinitializes the global (per device) P2P module.
  3012. */
  3013. void wpas_p2p_deinit_global(struct wpa_global *global)
  3014. {
  3015. struct wpa_supplicant *wpa_s, *tmp;
  3016. wpa_s = global->ifaces;
  3017. if (wpa_s)
  3018. wpas_p2p_service_flush(wpa_s);
  3019. if (global->p2p == NULL)
  3020. return;
  3021. /* Remove remaining P2P group interfaces */
  3022. while (wpa_s && wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE)
  3023. wpa_s = wpa_s->next;
  3024. while (wpa_s) {
  3025. tmp = global->ifaces;
  3026. while (tmp &&
  3027. (tmp == wpa_s ||
  3028. tmp->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)) {
  3029. tmp = tmp->next;
  3030. }
  3031. if (tmp == NULL)
  3032. break;
  3033. /* Disconnect from the P2P group and deinit the interface */
  3034. wpas_p2p_disconnect(tmp);
  3035. }
  3036. /*
  3037. * Deinit GO data on any possibly remaining interface (if main
  3038. * interface is used as GO).
  3039. */
  3040. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  3041. if (wpa_s->ap_iface)
  3042. wpas_p2p_group_deinit(wpa_s);
  3043. }
  3044. p2p_deinit(global->p2p);
  3045. global->p2p = NULL;
  3046. global->p2p_init_wpa_s = NULL;
  3047. }
  3048. static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s)
  3049. {
  3050. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE) &&
  3051. wpa_s->conf->p2p_no_group_iface)
  3052. return 0; /* separate interface disabled per configuration */
  3053. if (wpa_s->drv_flags &
  3054. (WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE |
  3055. WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P))
  3056. return 1; /* P2P group requires a new interface in every case
  3057. */
  3058. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CONCURRENT))
  3059. return 0; /* driver does not support concurrent operations */
  3060. if (wpa_s->global->ifaces->next)
  3061. return 1; /* more that one interface already in use */
  3062. if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
  3063. return 1; /* this interface is already in use */
  3064. return 0;
  3065. }
  3066. static int wpas_p2p_start_go_neg(struct wpa_supplicant *wpa_s,
  3067. const u8 *peer_addr,
  3068. enum p2p_wps_method wps_method,
  3069. int go_intent, const u8 *own_interface_addr,
  3070. unsigned int force_freq, int persistent_group,
  3071. struct wpa_ssid *ssid, unsigned int pref_freq)
  3072. {
  3073. if (persistent_group && wpa_s->conf->persistent_reconnect)
  3074. persistent_group = 2;
  3075. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  3076. return wpa_drv_p2p_connect(wpa_s, peer_addr, wps_method,
  3077. go_intent, own_interface_addr,
  3078. force_freq, persistent_group);
  3079. }
  3080. /*
  3081. * Increase GO config timeout if HT40 is used since it takes some time
  3082. * to scan channels for coex purposes before the BSS can be started.
  3083. */
  3084. p2p_set_config_timeout(wpa_s->global->p2p,
  3085. wpa_s->p2p_go_ht40 ? 255 : 100, 20);
  3086. return p2p_connect(wpa_s->global->p2p, peer_addr, wps_method,
  3087. go_intent, own_interface_addr, force_freq,
  3088. persistent_group, ssid ? ssid->ssid : NULL,
  3089. ssid ? ssid->ssid_len : 0,
  3090. wpa_s->p2p_pd_before_go_neg, pref_freq);
  3091. }
  3092. static int wpas_p2p_auth_go_neg(struct wpa_supplicant *wpa_s,
  3093. const u8 *peer_addr,
  3094. enum p2p_wps_method wps_method,
  3095. int go_intent, const u8 *own_interface_addr,
  3096. unsigned int force_freq, int persistent_group,
  3097. struct wpa_ssid *ssid, unsigned int pref_freq)
  3098. {
  3099. if (persistent_group && wpa_s->conf->persistent_reconnect)
  3100. persistent_group = 2;
  3101. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  3102. return -1;
  3103. return p2p_authorize(wpa_s->global->p2p, peer_addr, wps_method,
  3104. go_intent, own_interface_addr, force_freq,
  3105. persistent_group, ssid ? ssid->ssid : NULL,
  3106. ssid ? ssid->ssid_len : 0, pref_freq);
  3107. }
  3108. static void wpas_p2p_check_join_scan_limit(struct wpa_supplicant *wpa_s)
  3109. {
  3110. wpa_s->p2p_join_scan_count++;
  3111. wpa_printf(MSG_DEBUG, "P2P: Join scan attempt %d",
  3112. wpa_s->p2p_join_scan_count);
  3113. if (wpa_s->p2p_join_scan_count > P2P_MAX_JOIN_SCAN_ATTEMPTS) {
  3114. wpa_printf(MSG_DEBUG, "P2P: Failed to find GO " MACSTR
  3115. " for join operationg - stop join attempt",
  3116. MAC2STR(wpa_s->pending_join_iface_addr));
  3117. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  3118. if (wpa_s->p2p_auto_pd) {
  3119. wpa_s->p2p_auto_pd = 0;
  3120. wpa_msg_global(wpa_s, MSG_INFO,
  3121. P2P_EVENT_PROV_DISC_FAILURE
  3122. " p2p_dev_addr=" MACSTR " status=N/A",
  3123. MAC2STR(wpa_s->pending_join_dev_addr));
  3124. return;
  3125. }
  3126. wpa_msg_global(wpa_s->parent, MSG_INFO,
  3127. P2P_EVENT_GROUP_FORMATION_FAILURE);
  3128. }
  3129. }
  3130. static int wpas_check_freq_conflict(struct wpa_supplicant *wpa_s, int freq)
  3131. {
  3132. int *freqs, res, num, i;
  3133. if (wpas_p2p_num_unused_channels(wpa_s) > 0) {
  3134. /* Multiple channels are supported and not all are in use */
  3135. return 0;
  3136. }
  3137. freqs = os_calloc(wpa_s->num_multichan_concurrent, sizeof(int));
  3138. if (!freqs)
  3139. return 1;
  3140. num = wpas_p2p_valid_oper_freqs(wpa_s, freqs,
  3141. wpa_s->num_multichan_concurrent);
  3142. if (num < 0) {
  3143. res = 1;
  3144. goto exit_free;
  3145. }
  3146. for (i = 0; i < num; i++) {
  3147. if (freqs[i] == freq) {
  3148. wpa_printf(MSG_DEBUG, "P2P: Frequency %d MHz in use by another virtual interface and can be used",
  3149. freq);
  3150. res = 0;
  3151. goto exit_free;
  3152. }
  3153. }
  3154. res = 1;
  3155. exit_free:
  3156. os_free(freqs);
  3157. return res;
  3158. }
  3159. static int wpas_p2p_peer_go(struct wpa_supplicant *wpa_s,
  3160. const u8 *peer_dev_addr)
  3161. {
  3162. struct wpa_bss *bss;
  3163. int updated;
  3164. bss = wpa_bss_get_p2p_dev_addr(wpa_s, peer_dev_addr);
  3165. if (bss == NULL)
  3166. return -1;
  3167. if (bss->last_update_idx < wpa_s->bss_update_idx) {
  3168. wpa_printf(MSG_DEBUG, "P2P: Peer BSS entry not updated in the "
  3169. "last scan");
  3170. return 0;
  3171. }
  3172. updated = os_time_before(&wpa_s->p2p_auto_started, &bss->last_update);
  3173. wpa_printf(MSG_DEBUG, "P2P: Current BSS entry for peer updated at "
  3174. "%ld.%06ld (%supdated in last scan)",
  3175. bss->last_update.sec, bss->last_update.usec,
  3176. updated ? "": "not ");
  3177. return updated;
  3178. }
  3179. static void wpas_p2p_scan_res_join(struct wpa_supplicant *wpa_s,
  3180. struct wpa_scan_results *scan_res)
  3181. {
  3182. struct wpa_bss *bss;
  3183. int freq;
  3184. u8 iface_addr[ETH_ALEN];
  3185. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  3186. if (wpa_s->global->p2p_disabled)
  3187. return;
  3188. wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS) for %sjoin",
  3189. scan_res ? (int) scan_res->num : -1,
  3190. wpa_s->p2p_auto_join ? "auto_" : "");
  3191. if (scan_res)
  3192. wpas_p2p_scan_res_handler(wpa_s, scan_res);
  3193. if (wpa_s->p2p_auto_pd) {
  3194. int join = wpas_p2p_peer_go(wpa_s,
  3195. wpa_s->pending_join_dev_addr);
  3196. if (join == 0 &&
  3197. wpa_s->auto_pd_scan_retry < P2P_AUTO_PD_SCAN_ATTEMPTS) {
  3198. wpa_s->auto_pd_scan_retry++;
  3199. bss = wpa_bss_get_bssid_latest(
  3200. wpa_s, wpa_s->pending_join_dev_addr);
  3201. if (bss) {
  3202. freq = bss->freq;
  3203. wpa_printf(MSG_DEBUG, "P2P: Scan retry %d for "
  3204. "the peer " MACSTR " at %d MHz",
  3205. wpa_s->auto_pd_scan_retry,
  3206. MAC2STR(wpa_s->
  3207. pending_join_dev_addr),
  3208. freq);
  3209. wpas_p2p_join_scan_req(wpa_s, freq);
  3210. return;
  3211. }
  3212. }
  3213. if (join < 0)
  3214. join = 0;
  3215. wpa_s->p2p_auto_pd = 0;
  3216. wpa_s->pending_pd_use = join ? AUTO_PD_JOIN : AUTO_PD_GO_NEG;
  3217. wpa_printf(MSG_DEBUG, "P2P: Auto PD with " MACSTR " join=%d",
  3218. MAC2STR(wpa_s->pending_join_dev_addr), join);
  3219. if (p2p_prov_disc_req(wpa_s->global->p2p,
  3220. wpa_s->pending_join_dev_addr,
  3221. wpa_s->pending_pd_config_methods, join,
  3222. 0, wpa_s->user_initiated_pd) < 0) {
  3223. wpa_s->p2p_auto_pd = 0;
  3224. wpa_msg_global(wpa_s, MSG_INFO,
  3225. P2P_EVENT_PROV_DISC_FAILURE
  3226. " p2p_dev_addr=" MACSTR " status=N/A",
  3227. MAC2STR(wpa_s->pending_join_dev_addr));
  3228. }
  3229. return;
  3230. }
  3231. if (wpa_s->p2p_auto_join) {
  3232. int join = wpas_p2p_peer_go(wpa_s,
  3233. wpa_s->pending_join_dev_addr);
  3234. if (join < 0) {
  3235. wpa_printf(MSG_DEBUG, "P2P: Peer was not found to be "
  3236. "running a GO -> use GO Negotiation");
  3237. wpas_p2p_connect(wpa_s, wpa_s->pending_join_dev_addr,
  3238. wpa_s->p2p_pin, wpa_s->p2p_wps_method,
  3239. wpa_s->p2p_persistent_group, 0, 0, 0,
  3240. wpa_s->p2p_go_intent,
  3241. wpa_s->p2p_connect_freq,
  3242. wpa_s->p2p_persistent_id,
  3243. wpa_s->p2p_pd_before_go_neg,
  3244. wpa_s->p2p_go_ht40,
  3245. wpa_s->p2p_go_vht);
  3246. return;
  3247. }
  3248. wpa_printf(MSG_DEBUG, "P2P: Peer was found running GO%s -> "
  3249. "try to join the group", join ? "" :
  3250. " in older scan");
  3251. if (!join)
  3252. wpa_s->p2p_fallback_to_go_neg = 1;
  3253. }
  3254. freq = p2p_get_oper_freq(wpa_s->global->p2p,
  3255. wpa_s->pending_join_iface_addr);
  3256. if (freq < 0 &&
  3257. p2p_get_interface_addr(wpa_s->global->p2p,
  3258. wpa_s->pending_join_dev_addr,
  3259. iface_addr) == 0 &&
  3260. os_memcmp(iface_addr, wpa_s->pending_join_dev_addr, ETH_ALEN) != 0)
  3261. {
  3262. wpa_printf(MSG_DEBUG, "P2P: Overwrite pending interface "
  3263. "address for join from " MACSTR " to " MACSTR
  3264. " based on newly discovered P2P peer entry",
  3265. MAC2STR(wpa_s->pending_join_iface_addr),
  3266. MAC2STR(iface_addr));
  3267. os_memcpy(wpa_s->pending_join_iface_addr, iface_addr,
  3268. ETH_ALEN);
  3269. freq = p2p_get_oper_freq(wpa_s->global->p2p,
  3270. wpa_s->pending_join_iface_addr);
  3271. }
  3272. if (freq >= 0) {
  3273. wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
  3274. "from P2P peer table: %d MHz", freq);
  3275. }
  3276. bss = wpa_bss_get_bssid_latest(wpa_s, wpa_s->pending_join_iface_addr);
  3277. if (bss) {
  3278. freq = bss->freq;
  3279. wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
  3280. "from BSS table: %d MHz (SSID %s)", freq,
  3281. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  3282. }
  3283. if (freq > 0) {
  3284. u16 method;
  3285. if (wpas_check_freq_conflict(wpa_s, freq) > 0) {
  3286. wpa_msg_global(wpa_s->parent, MSG_INFO,
  3287. P2P_EVENT_GROUP_FORMATION_FAILURE
  3288. "reason=FREQ_CONFLICT");
  3289. return;
  3290. }
  3291. wpa_printf(MSG_DEBUG, "P2P: Send Provision Discovery Request "
  3292. "prior to joining an existing group (GO " MACSTR
  3293. " freq=%u MHz)",
  3294. MAC2STR(wpa_s->pending_join_dev_addr), freq);
  3295. wpa_s->pending_pd_before_join = 1;
  3296. switch (wpa_s->pending_join_wps_method) {
  3297. case WPS_PIN_DISPLAY:
  3298. method = WPS_CONFIG_KEYPAD;
  3299. break;
  3300. case WPS_PIN_KEYPAD:
  3301. method = WPS_CONFIG_DISPLAY;
  3302. break;
  3303. case WPS_PBC:
  3304. method = WPS_CONFIG_PUSHBUTTON;
  3305. break;
  3306. default:
  3307. method = 0;
  3308. break;
  3309. }
  3310. if ((p2p_get_provisioning_info(wpa_s->global->p2p,
  3311. wpa_s->pending_join_dev_addr) ==
  3312. method)) {
  3313. /*
  3314. * We have already performed provision discovery for
  3315. * joining the group. Proceed directly to join
  3316. * operation without duplicated provision discovery. */
  3317. wpa_printf(MSG_DEBUG, "P2P: Provision discovery "
  3318. "with " MACSTR " already done - proceed to "
  3319. "join",
  3320. MAC2STR(wpa_s->pending_join_dev_addr));
  3321. wpa_s->pending_pd_before_join = 0;
  3322. goto start;
  3323. }
  3324. if (p2p_prov_disc_req(wpa_s->global->p2p,
  3325. wpa_s->pending_join_dev_addr, method, 1,
  3326. freq, wpa_s->user_initiated_pd) < 0) {
  3327. wpa_printf(MSG_DEBUG, "P2P: Failed to send Provision "
  3328. "Discovery Request before joining an "
  3329. "existing group");
  3330. wpa_s->pending_pd_before_join = 0;
  3331. goto start;
  3332. }
  3333. return;
  3334. }
  3335. wpa_printf(MSG_DEBUG, "P2P: Failed to find BSS/GO - try again later");
  3336. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  3337. eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
  3338. wpas_p2p_check_join_scan_limit(wpa_s);
  3339. return;
  3340. start:
  3341. /* Start join operation immediately */
  3342. wpas_p2p_join_start(wpa_s);
  3343. }
  3344. static void wpas_p2p_join_scan_req(struct wpa_supplicant *wpa_s, int freq)
  3345. {
  3346. int ret;
  3347. struct wpa_driver_scan_params params;
  3348. struct wpabuf *wps_ie, *ies;
  3349. size_t ielen;
  3350. int freqs[2] = { 0, 0 };
  3351. os_memset(&params, 0, sizeof(params));
  3352. /* P2P Wildcard SSID */
  3353. params.num_ssids = 1;
  3354. params.ssids[0].ssid = (u8 *) P2P_WILDCARD_SSID;
  3355. params.ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
  3356. wpa_s->wps->dev.p2p = 1;
  3357. wps_ie = wps_build_probe_req_ie(DEV_PW_DEFAULT, &wpa_s->wps->dev,
  3358. wpa_s->wps->uuid, WPS_REQ_ENROLLEE, 0,
  3359. NULL);
  3360. if (wps_ie == NULL) {
  3361. wpas_p2p_scan_res_join(wpa_s, NULL);
  3362. return;
  3363. }
  3364. ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
  3365. ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
  3366. if (ies == NULL) {
  3367. wpabuf_free(wps_ie);
  3368. wpas_p2p_scan_res_join(wpa_s, NULL);
  3369. return;
  3370. }
  3371. wpabuf_put_buf(ies, wps_ie);
  3372. wpabuf_free(wps_ie);
  3373. p2p_scan_ie(wpa_s->global->p2p, ies, NULL);
  3374. params.p2p_probe = 1;
  3375. params.extra_ies = wpabuf_head(ies);
  3376. params.extra_ies_len = wpabuf_len(ies);
  3377. if (freq > 0) {
  3378. freqs[0] = freq;
  3379. params.freqs = freqs;
  3380. }
  3381. /*
  3382. * Run a scan to update BSS table and start Provision Discovery once
  3383. * the new scan results become available.
  3384. */
  3385. ret = wpa_drv_scan(wpa_s, &params);
  3386. if (!ret) {
  3387. os_get_time(&wpa_s->scan_trigger_time);
  3388. wpa_s->scan_res_handler = wpas_p2p_scan_res_join;
  3389. }
  3390. wpabuf_free(ies);
  3391. if (ret) {
  3392. wpa_printf(MSG_DEBUG, "P2P: Failed to start scan for join - "
  3393. "try again later");
  3394. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  3395. eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
  3396. wpas_p2p_check_join_scan_limit(wpa_s);
  3397. }
  3398. }
  3399. static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx)
  3400. {
  3401. struct wpa_supplicant *wpa_s = eloop_ctx;
  3402. wpas_p2p_join_scan_req(wpa_s, 0);
  3403. }
  3404. static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
  3405. const u8 *dev_addr, enum p2p_wps_method wps_method,
  3406. int auto_join)
  3407. {
  3408. wpa_printf(MSG_DEBUG, "P2P: Request to join existing group (iface "
  3409. MACSTR " dev " MACSTR ")%s",
  3410. MAC2STR(iface_addr), MAC2STR(dev_addr),
  3411. auto_join ? " (auto_join)" : "");
  3412. wpa_s->p2p_auto_pd = 0;
  3413. wpa_s->p2p_auto_join = !!auto_join;
  3414. os_memcpy(wpa_s->pending_join_iface_addr, iface_addr, ETH_ALEN);
  3415. os_memcpy(wpa_s->pending_join_dev_addr, dev_addr, ETH_ALEN);
  3416. wpa_s->pending_join_wps_method = wps_method;
  3417. /* Make sure we are not running find during connection establishment */
  3418. wpas_p2p_stop_find(wpa_s);
  3419. wpa_s->p2p_join_scan_count = 0;
  3420. wpas_p2p_join_scan(wpa_s, NULL);
  3421. return 0;
  3422. }
  3423. static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s)
  3424. {
  3425. struct wpa_supplicant *group;
  3426. struct p2p_go_neg_results res;
  3427. struct wpa_bss *bss;
  3428. group = wpas_p2p_get_group_iface(wpa_s, 0, 0);
  3429. if (group == NULL)
  3430. return -1;
  3431. if (group != wpa_s) {
  3432. os_memcpy(group->p2p_pin, wpa_s->p2p_pin,
  3433. sizeof(group->p2p_pin));
  3434. group->p2p_wps_method = wpa_s->p2p_wps_method;
  3435. } else {
  3436. /*
  3437. * Need to mark the current interface for p2p_group_formation
  3438. * when a separate group interface is not used. This is needed
  3439. * to allow p2p_cancel stop a pending p2p_connect-join.
  3440. * wpas_p2p_init_group_interface() addresses this for the case
  3441. * where a separate group interface is used.
  3442. */
  3443. wpa_s->global->p2p_group_formation = wpa_s;
  3444. }
  3445. group->p2p_in_provisioning = 1;
  3446. group->p2p_fallback_to_go_neg = wpa_s->p2p_fallback_to_go_neg;
  3447. os_memset(&res, 0, sizeof(res));
  3448. os_memcpy(res.peer_interface_addr, wpa_s->pending_join_iface_addr,
  3449. ETH_ALEN);
  3450. res.wps_method = wpa_s->pending_join_wps_method;
  3451. bss = wpa_bss_get_bssid_latest(wpa_s, wpa_s->pending_join_iface_addr);
  3452. if (bss) {
  3453. res.freq = bss->freq;
  3454. res.ssid_len = bss->ssid_len;
  3455. os_memcpy(res.ssid, bss->ssid, bss->ssid_len);
  3456. wpa_printf(MSG_DEBUG, "P2P: Join target GO operating frequency "
  3457. "from BSS table: %d MHz (SSID %s)", bss->freq,
  3458. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  3459. }
  3460. if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
  3461. wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel prior to "
  3462. "starting client");
  3463. wpa_drv_cancel_remain_on_channel(wpa_s);
  3464. wpa_s->off_channel_freq = 0;
  3465. wpa_s->roc_waiting_drv_freq = 0;
  3466. }
  3467. wpas_start_wps_enrollee(group, &res);
  3468. /*
  3469. * Allow a longer timeout for join-a-running-group than normal 15
  3470. * second group formation timeout since the GO may not have authorized
  3471. * our connection yet.
  3472. */
  3473. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  3474. eloop_register_timeout(60, 0, wpas_p2p_group_formation_timeout,
  3475. wpa_s, NULL);
  3476. return 0;
  3477. }
  3478. static int wpas_p2p_setup_freqs(struct wpa_supplicant *wpa_s, int freq,
  3479. int *force_freq, int *pref_freq, int go)
  3480. {
  3481. int *freqs, res;
  3482. unsigned int freq_in_use = 0, num, i;
  3483. freqs = os_calloc(wpa_s->num_multichan_concurrent, sizeof(int));
  3484. if (!freqs)
  3485. return -1;
  3486. num = get_shared_radio_freqs(wpa_s, freqs,
  3487. wpa_s->num_multichan_concurrent);
  3488. wpa_printf(MSG_DEBUG,
  3489. "P2P: Setup freqs: freq=%d num_MCC=%d shared_freqs=%u",
  3490. freq, wpa_s->num_multichan_concurrent, num);
  3491. if (freq > 0) {
  3492. int ret;
  3493. if (go)
  3494. ret = p2p_supported_freq(wpa_s->global->p2p, freq);
  3495. else
  3496. ret = p2p_supported_freq_cli(wpa_s->global->p2p, freq);
  3497. if (!ret) {
  3498. wpa_printf(MSG_DEBUG, "P2P: The forced channel "
  3499. "(%u MHz) is not supported for P2P uses",
  3500. freq);
  3501. res = -3;
  3502. goto exit_free;
  3503. }
  3504. for (i = 0; i < num; i++) {
  3505. if (freqs[i] == freq)
  3506. freq_in_use = 1;
  3507. }
  3508. if (num == wpa_s->num_multichan_concurrent && !freq_in_use) {
  3509. wpa_printf(MSG_DEBUG, "P2P: Cannot start P2P group on %u MHz as there are no available channels",
  3510. freq);
  3511. res = -2;
  3512. goto exit_free;
  3513. }
  3514. wpa_printf(MSG_DEBUG, "P2P: Trying to force us to use the "
  3515. "requested channel (%u MHz)", freq);
  3516. *force_freq = freq;
  3517. goto exit_ok;
  3518. }
  3519. for (i = 0; i < num; i++) {
  3520. if (!p2p_supported_freq(wpa_s->global->p2p, freqs[i]))
  3521. continue;
  3522. wpa_printf(MSG_DEBUG, "P2P: Try to force us to use frequency (%u MHz) which is already in use",
  3523. *force_freq);
  3524. *force_freq = freqs[i];
  3525. if (*pref_freq == 0 && num < wpa_s->num_multichan_concurrent) {
  3526. wpa_printf(MSG_DEBUG, "P2P: Try to prefer a frequency we are already using");
  3527. *pref_freq = *force_freq;
  3528. }
  3529. break;
  3530. }
  3531. if (i == num) {
  3532. if (num < wpa_s->num_multichan_concurrent) {
  3533. wpa_printf(MSG_DEBUG, "P2P: Current operating channels are not available for P2P. Try to use another channel");
  3534. *force_freq = 0;
  3535. } else {
  3536. wpa_printf(MSG_DEBUG, "P2P: All channels are in use and none of them are P2P enabled. Cannot start P2P group");
  3537. res = -2;
  3538. goto exit_free;
  3539. }
  3540. }
  3541. exit_ok:
  3542. res = 0;
  3543. exit_free:
  3544. os_free(freqs);
  3545. return res;
  3546. }
  3547. /**
  3548. * wpas_p2p_connect - Request P2P Group Formation to be started
  3549. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3550. * @peer_addr: Address of the peer P2P Device
  3551. * @pin: PIN to use during provisioning or %NULL to indicate PBC mode
  3552. * @persistent_group: Whether to create a persistent group
  3553. * @auto_join: Whether to select join vs. GO Negotiation automatically
  3554. * @join: Whether to join an existing group (as a client) instead of starting
  3555. * Group Owner negotiation; @peer_addr is BSSID in that case
  3556. * @auth: Whether to only authorize the connection instead of doing that and
  3557. * initiating Group Owner negotiation
  3558. * @go_intent: GO Intent or -1 to use default
  3559. * @freq: Frequency for the group or 0 for auto-selection
  3560. * @persistent_id: Persistent group credentials to use for forcing GO
  3561. * parameters or -1 to generate new values (SSID/passphrase)
  3562. * @pd: Whether to send Provision Discovery prior to GO Negotiation as an
  3563. * interoperability workaround when initiating group formation
  3564. * @ht40: Start GO with 40 MHz channel width
  3565. * @vht: Start GO with VHT support
  3566. * Returns: 0 or new PIN (if pin was %NULL) on success, -1 on unspecified
  3567. * failure, -2 on failure due to channel not currently available,
  3568. * -3 if forced channel is not supported
  3569. */
  3570. int wpas_p2p_connect(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  3571. const char *pin, enum p2p_wps_method wps_method,
  3572. int persistent_group, int auto_join, int join, int auth,
  3573. int go_intent, int freq, int persistent_id, int pd,
  3574. int ht40, int vht)
  3575. {
  3576. int force_freq = 0, pref_freq = 0;
  3577. int ret = 0, res;
  3578. enum wpa_driver_if_type iftype;
  3579. const u8 *if_addr;
  3580. struct wpa_ssid *ssid = NULL;
  3581. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  3582. return -1;
  3583. if (persistent_id >= 0) {
  3584. ssid = wpa_config_get_network(wpa_s->conf, persistent_id);
  3585. if (ssid == NULL || ssid->disabled != 2 ||
  3586. ssid->mode != WPAS_MODE_P2P_GO)
  3587. return -1;
  3588. }
  3589. os_free(wpa_s->global->add_psk);
  3590. wpa_s->global->add_psk = NULL;
  3591. if (go_intent < 0)
  3592. go_intent = wpa_s->conf->p2p_go_intent;
  3593. if (!auth)
  3594. wpa_s->p2p_long_listen = 0;
  3595. wpa_s->p2p_wps_method = wps_method;
  3596. wpa_s->p2p_persistent_group = !!persistent_group;
  3597. wpa_s->p2p_persistent_id = persistent_id;
  3598. wpa_s->p2p_go_intent = go_intent;
  3599. wpa_s->p2p_connect_freq = freq;
  3600. wpa_s->p2p_fallback_to_go_neg = 0;
  3601. wpa_s->p2p_pd_before_go_neg = !!pd;
  3602. wpa_s->p2p_go_ht40 = !!ht40;
  3603. wpa_s->p2p_go_vht = !!vht;
  3604. if (pin)
  3605. os_strlcpy(wpa_s->p2p_pin, pin, sizeof(wpa_s->p2p_pin));
  3606. else if (wps_method == WPS_PIN_DISPLAY) {
  3607. ret = wps_generate_pin();
  3608. os_snprintf(wpa_s->p2p_pin, sizeof(wpa_s->p2p_pin), "%08d",
  3609. ret);
  3610. wpa_printf(MSG_DEBUG, "P2P: Randomly generated PIN: %s",
  3611. wpa_s->p2p_pin);
  3612. } else
  3613. wpa_s->p2p_pin[0] = '\0';
  3614. if (join || auto_join) {
  3615. u8 iface_addr[ETH_ALEN], dev_addr[ETH_ALEN];
  3616. if (auth) {
  3617. wpa_printf(MSG_DEBUG, "P2P: Authorize invitation to "
  3618. "connect a running group from " MACSTR,
  3619. MAC2STR(peer_addr));
  3620. os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
  3621. return ret;
  3622. }
  3623. os_memcpy(dev_addr, peer_addr, ETH_ALEN);
  3624. if (p2p_get_interface_addr(wpa_s->global->p2p, peer_addr,
  3625. iface_addr) < 0) {
  3626. os_memcpy(iface_addr, peer_addr, ETH_ALEN);
  3627. p2p_get_dev_addr(wpa_s->global->p2p, peer_addr,
  3628. dev_addr);
  3629. }
  3630. if (auto_join) {
  3631. os_get_time(&wpa_s->p2p_auto_started);
  3632. wpa_printf(MSG_DEBUG, "P2P: Auto join started at "
  3633. "%ld.%06ld",
  3634. wpa_s->p2p_auto_started.sec,
  3635. wpa_s->p2p_auto_started.usec);
  3636. }
  3637. wpa_s->user_initiated_pd = 1;
  3638. if (wpas_p2p_join(wpa_s, iface_addr, dev_addr, wps_method,
  3639. auto_join) < 0)
  3640. return -1;
  3641. return ret;
  3642. }
  3643. res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
  3644. go_intent == 15);
  3645. if (res)
  3646. return res;
  3647. wpas_p2p_set_own_freq_preference(wpa_s, force_freq);
  3648. wpa_s->create_p2p_iface = wpas_p2p_create_iface(wpa_s);
  3649. if (wpa_s->create_p2p_iface) {
  3650. /* Prepare to add a new interface for the group */
  3651. iftype = WPA_IF_P2P_GROUP;
  3652. if (go_intent == 15)
  3653. iftype = WPA_IF_P2P_GO;
  3654. if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
  3655. wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
  3656. "interface for the group");
  3657. return -1;
  3658. }
  3659. if_addr = wpa_s->pending_interface_addr;
  3660. } else
  3661. if_addr = wpa_s->own_addr;
  3662. if (auth) {
  3663. if (wpas_p2p_auth_go_neg(wpa_s, peer_addr, wps_method,
  3664. go_intent, if_addr,
  3665. force_freq, persistent_group, ssid,
  3666. pref_freq) < 0)
  3667. return -1;
  3668. return ret;
  3669. }
  3670. if (wpas_p2p_start_go_neg(wpa_s, peer_addr, wps_method,
  3671. go_intent, if_addr, force_freq,
  3672. persistent_group, ssid, pref_freq) < 0) {
  3673. if (wpa_s->create_p2p_iface)
  3674. wpas_p2p_remove_pending_group_interface(wpa_s);
  3675. return -1;
  3676. }
  3677. return ret;
  3678. }
  3679. /**
  3680. * wpas_p2p_remain_on_channel_cb - Indication of remain-on-channel start
  3681. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3682. * @freq: Frequency of the channel in MHz
  3683. * @duration: Duration of the stay on the channel in milliseconds
  3684. *
  3685. * This callback is called when the driver indicates that it has started the
  3686. * requested remain-on-channel duration.
  3687. */
  3688. void wpas_p2p_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
  3689. unsigned int freq, unsigned int duration)
  3690. {
  3691. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  3692. return;
  3693. if (wpa_s->off_channel_freq == wpa_s->pending_listen_freq) {
  3694. p2p_listen_cb(wpa_s->global->p2p, wpa_s->pending_listen_freq,
  3695. wpa_s->pending_listen_duration);
  3696. wpa_s->pending_listen_freq = 0;
  3697. }
  3698. }
  3699. static int wpas_p2p_listen_start(struct wpa_supplicant *wpa_s,
  3700. unsigned int timeout)
  3701. {
  3702. /* Limit maximum Listen state time based on driver limitation. */
  3703. if (timeout > wpa_s->max_remain_on_chan)
  3704. timeout = wpa_s->max_remain_on_chan;
  3705. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  3706. return wpa_drv_p2p_listen(wpa_s, timeout);
  3707. return p2p_listen(wpa_s->global->p2p, timeout);
  3708. }
  3709. /**
  3710. * wpas_p2p_cancel_remain_on_channel_cb - Remain-on-channel timeout
  3711. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3712. * @freq: Frequency of the channel in MHz
  3713. *
  3714. * This callback is called when the driver indicates that a remain-on-channel
  3715. * operation has been completed, i.e., the duration on the requested channel
  3716. * has timed out.
  3717. */
  3718. void wpas_p2p_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
  3719. unsigned int freq)
  3720. {
  3721. wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel callback "
  3722. "(p2p_long_listen=%d ms pending_action_tx=%p)",
  3723. wpa_s->p2p_long_listen, offchannel_pending_action_tx(wpa_s));
  3724. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  3725. return;
  3726. if (p2p_listen_end(wpa_s->global->p2p, freq) > 0)
  3727. return; /* P2P module started a new operation */
  3728. if (offchannel_pending_action_tx(wpa_s))
  3729. return;
  3730. if (wpa_s->p2p_long_listen > 0)
  3731. wpa_s->p2p_long_listen -= wpa_s->max_remain_on_chan;
  3732. if (wpa_s->p2p_long_listen > 0) {
  3733. wpa_printf(MSG_DEBUG, "P2P: Continuing long Listen state");
  3734. wpas_p2p_listen_start(wpa_s, wpa_s->p2p_long_listen);
  3735. } else {
  3736. /*
  3737. * When listen duration is over, stop listen & update p2p_state
  3738. * to IDLE.
  3739. */
  3740. p2p_stop_listen(wpa_s->global->p2p);
  3741. }
  3742. }
  3743. /**
  3744. * wpas_p2p_group_remove - Remove a P2P group
  3745. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3746. * @ifname: Network interface name of the group interface or "*" to remove all
  3747. * groups
  3748. * Returns: 0 on success, -1 on failure
  3749. *
  3750. * This function is used to remove a P2P group. This can be used to disconnect
  3751. * from a group in which the local end is a P2P Client or to end a P2P Group in
  3752. * case the local end is the Group Owner. If a virtual network interface was
  3753. * created for this group, that interface will be removed. Otherwise, only the
  3754. * configured P2P group network will be removed from the interface.
  3755. */
  3756. int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s, const char *ifname)
  3757. {
  3758. struct wpa_global *global = wpa_s->global;
  3759. if (os_strcmp(ifname, "*") == 0) {
  3760. struct wpa_supplicant *prev;
  3761. wpa_s = global->ifaces;
  3762. while (wpa_s) {
  3763. prev = wpa_s;
  3764. wpa_s = wpa_s->next;
  3765. if (prev->p2p_group_interface !=
  3766. NOT_P2P_GROUP_INTERFACE ||
  3767. (prev->current_ssid &&
  3768. prev->current_ssid->p2p_group))
  3769. wpas_p2p_disconnect(prev);
  3770. }
  3771. return 0;
  3772. }
  3773. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  3774. if (os_strcmp(wpa_s->ifname, ifname) == 0)
  3775. break;
  3776. }
  3777. return wpas_p2p_disconnect(wpa_s);
  3778. }
  3779. static int wpas_p2p_select_go_freq(struct wpa_supplicant *wpa_s, int freq)
  3780. {
  3781. unsigned int r;
  3782. if (freq == 2) {
  3783. wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 2.4 GHz "
  3784. "band");
  3785. if (wpa_s->best_24_freq > 0 &&
  3786. p2p_supported_freq_go(wpa_s->global->p2p,
  3787. wpa_s->best_24_freq)) {
  3788. freq = wpa_s->best_24_freq;
  3789. wpa_printf(MSG_DEBUG, "P2P: Use best 2.4 GHz band "
  3790. "channel: %d MHz", freq);
  3791. } else {
  3792. os_get_random((u8 *) &r, sizeof(r));
  3793. freq = 2412 + (r % 3) * 25;
  3794. wpa_printf(MSG_DEBUG, "P2P: Use random 2.4 GHz band "
  3795. "channel: %d MHz", freq);
  3796. }
  3797. }
  3798. if (freq == 5) {
  3799. wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 5 GHz "
  3800. "band");
  3801. if (wpa_s->best_5_freq > 0 &&
  3802. p2p_supported_freq_go(wpa_s->global->p2p,
  3803. wpa_s->best_5_freq)) {
  3804. freq = wpa_s->best_5_freq;
  3805. wpa_printf(MSG_DEBUG, "P2P: Use best 5 GHz band "
  3806. "channel: %d MHz", freq);
  3807. } else {
  3808. os_get_random((u8 *) &r, sizeof(r));
  3809. freq = 5180 + (r % 4) * 20;
  3810. if (!p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
  3811. wpa_printf(MSG_DEBUG, "P2P: Could not select "
  3812. "5 GHz channel for P2P group");
  3813. return -1;
  3814. }
  3815. wpa_printf(MSG_DEBUG, "P2P: Use random 5 GHz band "
  3816. "channel: %d MHz", freq);
  3817. }
  3818. }
  3819. if (freq > 0 && !p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
  3820. wpa_printf(MSG_DEBUG, "P2P: The forced channel for GO "
  3821. "(%u MHz) is not supported for P2P uses",
  3822. freq);
  3823. return -1;
  3824. }
  3825. return freq;
  3826. }
  3827. static int wpas_p2p_init_go_params(struct wpa_supplicant *wpa_s,
  3828. struct p2p_go_neg_results *params,
  3829. int freq, int ht40, int vht,
  3830. const struct p2p_channels *channels)
  3831. {
  3832. int res, *freqs;
  3833. unsigned int pref_freq;
  3834. unsigned int num, i;
  3835. os_memset(params, 0, sizeof(*params));
  3836. params->role_go = 1;
  3837. params->ht40 = ht40;
  3838. params->vht = vht;
  3839. if (freq) {
  3840. if (!freq_included(channels, freq)) {
  3841. wpa_printf(MSG_DEBUG, "P2P: Forced GO freq %d MHz not "
  3842. "accepted", freq);
  3843. return -1;
  3844. }
  3845. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on forced "
  3846. "frequency %d MHz", freq);
  3847. params->freq = freq;
  3848. } else if (wpa_s->conf->p2p_oper_reg_class == 81 &&
  3849. wpa_s->conf->p2p_oper_channel >= 1 &&
  3850. wpa_s->conf->p2p_oper_channel <= 11 &&
  3851. freq_included(channels,
  3852. 2407 + 5 * wpa_s->conf->p2p_oper_channel)) {
  3853. params->freq = 2407 + 5 * wpa_s->conf->p2p_oper_channel;
  3854. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on configured "
  3855. "frequency %d MHz", params->freq);
  3856. } else if ((wpa_s->conf->p2p_oper_reg_class == 115 ||
  3857. wpa_s->conf->p2p_oper_reg_class == 116 ||
  3858. wpa_s->conf->p2p_oper_reg_class == 117 ||
  3859. wpa_s->conf->p2p_oper_reg_class == 124 ||
  3860. wpa_s->conf->p2p_oper_reg_class == 126 ||
  3861. wpa_s->conf->p2p_oper_reg_class == 127) &&
  3862. freq_included(channels,
  3863. 5000 + 5 * wpa_s->conf->p2p_oper_channel)) {
  3864. params->freq = 5000 + 5 * wpa_s->conf->p2p_oper_channel;
  3865. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on configured "
  3866. "frequency %d MHz", params->freq);
  3867. } else if (wpa_s->conf->p2p_oper_channel == 0 &&
  3868. wpa_s->best_overall_freq > 0 &&
  3869. p2p_supported_freq_go(wpa_s->global->p2p,
  3870. wpa_s->best_overall_freq) &&
  3871. freq_included(channels, wpa_s->best_overall_freq)) {
  3872. params->freq = wpa_s->best_overall_freq;
  3873. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best overall "
  3874. "channel %d MHz", params->freq);
  3875. } else if (wpa_s->conf->p2p_oper_channel == 0 &&
  3876. wpa_s->best_24_freq > 0 &&
  3877. p2p_supported_freq_go(wpa_s->global->p2p,
  3878. wpa_s->best_24_freq) &&
  3879. freq_included(channels, wpa_s->best_24_freq)) {
  3880. params->freq = wpa_s->best_24_freq;
  3881. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best 2.4 GHz "
  3882. "channel %d MHz", params->freq);
  3883. } else if (wpa_s->conf->p2p_oper_channel == 0 &&
  3884. wpa_s->best_5_freq > 0 &&
  3885. p2p_supported_freq_go(wpa_s->global->p2p,
  3886. wpa_s->best_5_freq) &&
  3887. freq_included(channels, wpa_s->best_5_freq)) {
  3888. params->freq = wpa_s->best_5_freq;
  3889. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best 5 GHz "
  3890. "channel %d MHz", params->freq);
  3891. } else if ((pref_freq = p2p_get_pref_freq(wpa_s->global->p2p,
  3892. channels))) {
  3893. params->freq = pref_freq;
  3894. wpa_printf(MSG_DEBUG, "P2P: Set GO freq %d MHz from preferred "
  3895. "channels", params->freq);
  3896. } else {
  3897. int chan;
  3898. for (chan = 0; chan < 11; chan++) {
  3899. params->freq = 2412 + chan * 5;
  3900. if (!wpas_p2p_disallowed_freq(wpa_s->global,
  3901. params->freq) &&
  3902. freq_included(channels, params->freq))
  3903. break;
  3904. }
  3905. if (chan == 11) {
  3906. wpa_printf(MSG_DEBUG, "P2P: No 2.4 GHz channel "
  3907. "allowed");
  3908. return -1;
  3909. }
  3910. wpa_printf(MSG_DEBUG, "P2P: Set GO freq %d MHz (no preference "
  3911. "known)", params->freq);
  3912. }
  3913. freqs = os_calloc(wpa_s->num_multichan_concurrent, sizeof(int));
  3914. if (!freqs)
  3915. return -1;
  3916. res = wpas_p2p_valid_oper_freqs(wpa_s, freqs,
  3917. wpa_s->num_multichan_concurrent);
  3918. if (res < 0) {
  3919. os_free(freqs);
  3920. return -1;
  3921. }
  3922. num = res;
  3923. if (!freq) {
  3924. for (i = 0; i < num; i++) {
  3925. if (freq_included(channels, freqs[i])) {
  3926. wpa_printf(MSG_DEBUG, "P2P: Force GO on a channel we are already using (%u MHz)",
  3927. freqs[i]);
  3928. params->freq = freqs[i];
  3929. break;
  3930. }
  3931. }
  3932. if (i == num) {
  3933. if (wpas_p2p_num_unused_channels(wpa_s) <= 0) {
  3934. wpa_printf(MSG_DEBUG, "P2P: Cannot force GO on any of the channels we are already using");
  3935. os_free(freqs);
  3936. return -1;
  3937. } else {
  3938. wpa_printf(MSG_DEBUG, "P2P: Cannot force GO on any of the channels we are already using. Use one of the free channels");
  3939. }
  3940. }
  3941. } else {
  3942. for (i = 0; i < num; i++) {
  3943. if (freqs[i] == freq)
  3944. break;
  3945. }
  3946. if (i == num) {
  3947. if (wpas_p2p_num_unused_channels(wpa_s) <= 0) {
  3948. wpa_printf(MSG_DEBUG, "P2P: Cannot force GO on freq (%u MHz) as all the channels are in use", freq);
  3949. os_free(freqs);
  3950. return -1;
  3951. } else {
  3952. wpa_printf(MSG_DEBUG, "P2P: Cannot force GO on any of the channels we are already using. Use one of the free channels");
  3953. }
  3954. }
  3955. }
  3956. os_free(freqs);
  3957. return 0;
  3958. }
  3959. static struct wpa_supplicant *
  3960. wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
  3961. int go)
  3962. {
  3963. struct wpa_supplicant *group_wpa_s;
  3964. if (!wpas_p2p_create_iface(wpa_s)) {
  3965. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use same interface for group "
  3966. "operations");
  3967. wpa_s->p2p_first_connection_timeout = 0;
  3968. return wpa_s;
  3969. }
  3970. if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
  3971. WPA_IF_P2P_CLIENT) < 0) {
  3972. wpa_msg_global(wpa_s, MSG_ERROR,
  3973. "P2P: Failed to add group interface");
  3974. return NULL;
  3975. }
  3976. group_wpa_s = wpas_p2p_init_group_interface(wpa_s, go);
  3977. if (group_wpa_s == NULL) {
  3978. wpa_msg_global(wpa_s, MSG_ERROR,
  3979. "P2P: Failed to initialize group interface");
  3980. wpas_p2p_remove_pending_group_interface(wpa_s);
  3981. return NULL;
  3982. }
  3983. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use separate group interface %s",
  3984. group_wpa_s->ifname);
  3985. group_wpa_s->p2p_first_connection_timeout = 0;
  3986. return group_wpa_s;
  3987. }
  3988. /**
  3989. * wpas_p2p_group_add - Add a new P2P group with local end as Group Owner
  3990. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3991. * @persistent_group: Whether to create a persistent group
  3992. * @freq: Frequency for the group or 0 to indicate no hardcoding
  3993. * @ht40: Start GO with 40 MHz channel width
  3994. * @vht: Start GO with VHT support
  3995. * Returns: 0 on success, -1 on failure
  3996. *
  3997. * This function creates a new P2P group with the local end as the Group Owner,
  3998. * i.e., without using Group Owner Negotiation.
  3999. */
  4000. int wpas_p2p_group_add(struct wpa_supplicant *wpa_s, int persistent_group,
  4001. int freq, int ht40, int vht)
  4002. {
  4003. struct p2p_go_neg_results params;
  4004. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4005. return -1;
  4006. os_free(wpa_s->global->add_psk);
  4007. wpa_s->global->add_psk = NULL;
  4008. /* Make sure we are not running find during connection establishment */
  4009. wpa_printf(MSG_DEBUG, "P2P: Stop any on-going P2P FIND");
  4010. wpas_p2p_stop_find_oper(wpa_s);
  4011. freq = wpas_p2p_select_go_freq(wpa_s, freq);
  4012. if (freq < 0)
  4013. return -1;
  4014. if (wpas_p2p_init_go_params(wpa_s, &params, freq, ht40, vht, NULL))
  4015. return -1;
  4016. if (params.freq &&
  4017. !p2p_supported_freq_go(wpa_s->global->p2p, params.freq)) {
  4018. wpa_printf(MSG_DEBUG, "P2P: The selected channel for GO "
  4019. "(%u MHz) is not supported for P2P uses",
  4020. params.freq);
  4021. return -1;
  4022. }
  4023. p2p_go_params(wpa_s->global->p2p, &params);
  4024. params.persistent_group = persistent_group;
  4025. wpa_s = wpas_p2p_get_group_iface(wpa_s, 0, 1);
  4026. if (wpa_s == NULL)
  4027. return -1;
  4028. wpas_start_wps_go(wpa_s, &params, 0);
  4029. return 0;
  4030. }
  4031. static int wpas_start_p2p_client(struct wpa_supplicant *wpa_s,
  4032. struct wpa_ssid *params, int addr_allocated)
  4033. {
  4034. struct wpa_ssid *ssid;
  4035. wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 0);
  4036. if (wpa_s == NULL)
  4037. return -1;
  4038. wpa_s->p2p_last_4way_hs_fail = NULL;
  4039. wpa_supplicant_ap_deinit(wpa_s);
  4040. ssid = wpa_config_add_network(wpa_s->conf);
  4041. if (ssid == NULL)
  4042. return -1;
  4043. wpa_config_set_network_defaults(ssid);
  4044. ssid->temporary = 1;
  4045. ssid->proto = WPA_PROTO_RSN;
  4046. ssid->pairwise_cipher = WPA_CIPHER_CCMP;
  4047. ssid->group_cipher = WPA_CIPHER_CCMP;
  4048. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  4049. ssid->ssid = os_malloc(params->ssid_len);
  4050. if (ssid->ssid == NULL) {
  4051. wpa_config_remove_network(wpa_s->conf, ssid->id);
  4052. return -1;
  4053. }
  4054. os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
  4055. ssid->ssid_len = params->ssid_len;
  4056. ssid->p2p_group = 1;
  4057. ssid->export_keys = 1;
  4058. if (params->psk_set) {
  4059. os_memcpy(ssid->psk, params->psk, 32);
  4060. ssid->psk_set = 1;
  4061. }
  4062. if (params->passphrase)
  4063. ssid->passphrase = os_strdup(params->passphrase);
  4064. wpa_supplicant_select_network(wpa_s, ssid);
  4065. wpa_s->show_group_started = 1;
  4066. return 0;
  4067. }
  4068. int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
  4069. struct wpa_ssid *ssid, int addr_allocated,
  4070. int freq, int ht40, int vht,
  4071. const struct p2p_channels *channels,
  4072. int connection_timeout)
  4073. {
  4074. struct p2p_go_neg_results params;
  4075. int go = 0;
  4076. if (ssid->disabled != 2 || ssid->ssid == NULL)
  4077. return -1;
  4078. if (wpas_get_p2p_group(wpa_s, ssid->ssid, ssid->ssid_len, &go) &&
  4079. go == (ssid->mode == WPAS_MODE_P2P_GO)) {
  4080. wpa_printf(MSG_DEBUG, "P2P: Requested persistent group is "
  4081. "already running");
  4082. return 0;
  4083. }
  4084. os_free(wpa_s->global->add_psk);
  4085. wpa_s->global->add_psk = NULL;
  4086. /* Make sure we are not running find during connection establishment */
  4087. wpas_p2p_stop_find_oper(wpa_s);
  4088. wpa_s->p2p_fallback_to_go_neg = 0;
  4089. if (ssid->mode == WPAS_MODE_INFRA)
  4090. return wpas_start_p2p_client(wpa_s, ssid, addr_allocated);
  4091. if (ssid->mode != WPAS_MODE_P2P_GO)
  4092. return -1;
  4093. freq = wpas_p2p_select_go_freq(wpa_s, freq);
  4094. if (freq < 0)
  4095. return -1;
  4096. if (wpas_p2p_init_go_params(wpa_s, &params, freq, ht40, vht, channels))
  4097. return -1;
  4098. params.role_go = 1;
  4099. params.psk_set = ssid->psk_set;
  4100. if (params.psk_set)
  4101. os_memcpy(params.psk, ssid->psk, sizeof(params.psk));
  4102. if (ssid->passphrase) {
  4103. if (os_strlen(ssid->passphrase) >= sizeof(params.passphrase)) {
  4104. wpa_printf(MSG_ERROR, "P2P: Invalid passphrase in "
  4105. "persistent group");
  4106. return -1;
  4107. }
  4108. os_strlcpy(params.passphrase, ssid->passphrase,
  4109. sizeof(params.passphrase));
  4110. }
  4111. os_memcpy(params.ssid, ssid->ssid, ssid->ssid_len);
  4112. params.ssid_len = ssid->ssid_len;
  4113. params.persistent_group = 1;
  4114. wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 1);
  4115. if (wpa_s == NULL)
  4116. return -1;
  4117. wpa_s->p2p_first_connection_timeout = connection_timeout;
  4118. wpas_start_wps_go(wpa_s, &params, 0);
  4119. return 0;
  4120. }
  4121. static void wpas_p2p_ie_update(void *ctx, struct wpabuf *beacon_ies,
  4122. struct wpabuf *proberesp_ies)
  4123. {
  4124. struct wpa_supplicant *wpa_s = ctx;
  4125. if (wpa_s->ap_iface) {
  4126. struct hostapd_data *hapd = wpa_s->ap_iface->bss[0];
  4127. if (!(hapd->conf->p2p & P2P_GROUP_OWNER)) {
  4128. wpabuf_free(beacon_ies);
  4129. wpabuf_free(proberesp_ies);
  4130. return;
  4131. }
  4132. if (beacon_ies) {
  4133. wpabuf_free(hapd->p2p_beacon_ie);
  4134. hapd->p2p_beacon_ie = beacon_ies;
  4135. }
  4136. wpabuf_free(hapd->p2p_probe_resp_ie);
  4137. hapd->p2p_probe_resp_ie = proberesp_ies;
  4138. } else {
  4139. wpabuf_free(beacon_ies);
  4140. wpabuf_free(proberesp_ies);
  4141. }
  4142. wpa_supplicant_ap_update_beacon(wpa_s);
  4143. }
  4144. static void wpas_p2p_idle_update(void *ctx, int idle)
  4145. {
  4146. struct wpa_supplicant *wpa_s = ctx;
  4147. if (!wpa_s->ap_iface)
  4148. return;
  4149. wpa_printf(MSG_DEBUG, "P2P: GO - group %sidle", idle ? "" : "not ");
  4150. if (idle)
  4151. wpas_p2p_set_group_idle_timeout(wpa_s);
  4152. else
  4153. eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
  4154. }
  4155. struct p2p_group * wpas_p2p_group_init(struct wpa_supplicant *wpa_s,
  4156. struct wpa_ssid *ssid)
  4157. {
  4158. struct p2p_group *group;
  4159. struct p2p_group_config *cfg;
  4160. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4161. return NULL;
  4162. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4163. return NULL;
  4164. cfg = os_zalloc(sizeof(*cfg));
  4165. if (cfg == NULL)
  4166. return NULL;
  4167. if (ssid->p2p_persistent_group && wpa_s->conf->persistent_reconnect)
  4168. cfg->persistent_group = 2;
  4169. else if (ssid->p2p_persistent_group)
  4170. cfg->persistent_group = 1;
  4171. os_memcpy(cfg->interface_addr, wpa_s->own_addr, ETH_ALEN);
  4172. if (wpa_s->max_stations &&
  4173. wpa_s->max_stations < wpa_s->conf->max_num_sta)
  4174. cfg->max_clients = wpa_s->max_stations;
  4175. else
  4176. cfg->max_clients = wpa_s->conf->max_num_sta;
  4177. os_memcpy(cfg->ssid, ssid->ssid, ssid->ssid_len);
  4178. cfg->ssid_len = ssid->ssid_len;
  4179. cfg->cb_ctx = wpa_s;
  4180. cfg->ie_update = wpas_p2p_ie_update;
  4181. cfg->idle_update = wpas_p2p_idle_update;
  4182. group = p2p_group_init(wpa_s->global->p2p, cfg);
  4183. if (group == NULL)
  4184. os_free(cfg);
  4185. if (ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION)
  4186. p2p_group_notif_formation_done(group);
  4187. wpa_s->p2p_group = group;
  4188. return group;
  4189. }
  4190. void wpas_p2p_wps_success(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  4191. int registrar)
  4192. {
  4193. struct wpa_ssid *ssid = wpa_s->current_ssid;
  4194. if (!wpa_s->p2p_in_provisioning) {
  4195. wpa_printf(MSG_DEBUG, "P2P: Ignore WPS success event - P2P "
  4196. "provisioning not in progress");
  4197. return;
  4198. }
  4199. if (ssid && ssid->mode == WPAS_MODE_INFRA) {
  4200. u8 go_dev_addr[ETH_ALEN];
  4201. os_memcpy(go_dev_addr, wpa_s->bssid, ETH_ALEN);
  4202. wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
  4203. ssid->ssid_len);
  4204. /* Clear any stored provisioning info */
  4205. p2p_clear_provisioning_info(wpa_s->global->p2p, go_dev_addr);
  4206. }
  4207. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s->parent,
  4208. NULL);
  4209. wpa_s->p2p_go_group_formation_completed = 1;
  4210. if (ssid && ssid->mode == WPAS_MODE_INFRA) {
  4211. /*
  4212. * Use a separate timeout for initial data connection to
  4213. * complete to allow the group to be removed automatically if
  4214. * something goes wrong in this step before the P2P group idle
  4215. * timeout mechanism is taken into use.
  4216. */
  4217. wpa_dbg(wpa_s, MSG_DEBUG,
  4218. "P2P: Re-start group formation timeout (%d seconds) as client for initial connection",
  4219. P2P_MAX_INITIAL_CONN_WAIT);
  4220. eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
  4221. wpas_p2p_group_formation_timeout,
  4222. wpa_s->parent, NULL);
  4223. } else if (ssid) {
  4224. /*
  4225. * Use a separate timeout for initial data connection to
  4226. * complete to allow the group to be removed automatically if
  4227. * the client does not complete data connection successfully.
  4228. */
  4229. wpa_dbg(wpa_s, MSG_DEBUG,
  4230. "P2P: Re-start group formation timeout (%d seconds) as GO for initial connection",
  4231. P2P_MAX_INITIAL_CONN_WAIT_GO);
  4232. eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT_GO, 0,
  4233. wpas_p2p_group_formation_timeout,
  4234. wpa_s->parent, NULL);
  4235. /*
  4236. * Complete group formation on first successful data connection
  4237. */
  4238. wpa_s->p2p_go_group_formation_completed = 0;
  4239. }
  4240. if (wpa_s->global->p2p)
  4241. p2p_wps_success_cb(wpa_s->global->p2p, peer_addr);
  4242. else if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4243. wpa_drv_wps_success_cb(wpa_s, peer_addr);
  4244. wpas_group_formation_completed(wpa_s, 1);
  4245. }
  4246. void wpas_p2p_wps_failed(struct wpa_supplicant *wpa_s,
  4247. struct wps_event_fail *fail)
  4248. {
  4249. if (!wpa_s->p2p_in_provisioning) {
  4250. wpa_printf(MSG_DEBUG, "P2P: Ignore WPS fail event - P2P "
  4251. "provisioning not in progress");
  4252. return;
  4253. }
  4254. if (wpa_s->go_params) {
  4255. p2p_clear_provisioning_info(
  4256. wpa_s->global->p2p,
  4257. wpa_s->go_params->peer_device_addr);
  4258. }
  4259. wpas_notify_p2p_wps_failed(wpa_s, fail);
  4260. }
  4261. int wpas_p2p_prov_disc(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  4262. const char *config_method,
  4263. enum wpas_p2p_prov_disc_use use)
  4264. {
  4265. u16 config_methods;
  4266. wpa_s->p2p_fallback_to_go_neg = 0;
  4267. wpa_s->pending_pd_use = NORMAL_PD;
  4268. if (os_strncmp(config_method, "display", 7) == 0)
  4269. config_methods = WPS_CONFIG_DISPLAY;
  4270. else if (os_strncmp(config_method, "keypad", 6) == 0)
  4271. config_methods = WPS_CONFIG_KEYPAD;
  4272. else if (os_strncmp(config_method, "pbc", 3) == 0 ||
  4273. os_strncmp(config_method, "pushbutton", 10) == 0)
  4274. config_methods = WPS_CONFIG_PUSHBUTTON;
  4275. else {
  4276. wpa_printf(MSG_DEBUG, "P2P: Unknown config method");
  4277. return -1;
  4278. }
  4279. if (use == WPAS_P2P_PD_AUTO) {
  4280. os_memcpy(wpa_s->pending_join_dev_addr, peer_addr, ETH_ALEN);
  4281. wpa_s->pending_pd_config_methods = config_methods;
  4282. wpa_s->p2p_auto_pd = 1;
  4283. wpa_s->p2p_auto_join = 0;
  4284. wpa_s->pending_pd_before_join = 0;
  4285. wpa_s->auto_pd_scan_retry = 0;
  4286. wpas_p2p_stop_find(wpa_s);
  4287. wpa_s->p2p_join_scan_count = 0;
  4288. os_get_time(&wpa_s->p2p_auto_started);
  4289. wpa_printf(MSG_DEBUG, "P2P: Auto PD started at %ld.%06ld",
  4290. wpa_s->p2p_auto_started.sec,
  4291. wpa_s->p2p_auto_started.usec);
  4292. wpas_p2p_join_scan(wpa_s, NULL);
  4293. return 0;
  4294. }
  4295. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  4296. return wpa_drv_p2p_prov_disc_req(wpa_s, peer_addr,
  4297. config_methods,
  4298. use == WPAS_P2P_PD_FOR_JOIN);
  4299. }
  4300. if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled)
  4301. return -1;
  4302. return p2p_prov_disc_req(wpa_s->global->p2p, peer_addr,
  4303. config_methods, use == WPAS_P2P_PD_FOR_JOIN,
  4304. 0, 1);
  4305. }
  4306. int wpas_p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
  4307. char *end)
  4308. {
  4309. return p2p_scan_result_text(ies, ies_len, buf, end);
  4310. }
  4311. static void wpas_p2p_clear_pending_action_tx(struct wpa_supplicant *wpa_s)
  4312. {
  4313. if (!offchannel_pending_action_tx(wpa_s))
  4314. return;
  4315. wpa_printf(MSG_DEBUG, "P2P: Drop pending Action TX due to new "
  4316. "operation request");
  4317. offchannel_clear_pending_action_tx(wpa_s);
  4318. }
  4319. int wpas_p2p_find(struct wpa_supplicant *wpa_s, unsigned int timeout,
  4320. enum p2p_discovery_type type,
  4321. unsigned int num_req_dev_types, const u8 *req_dev_types,
  4322. const u8 *dev_id, unsigned int search_delay)
  4323. {
  4324. wpas_p2p_clear_pending_action_tx(wpa_s);
  4325. wpa_s->p2p_long_listen = 0;
  4326. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4327. return wpa_drv_p2p_find(wpa_s, timeout, type);
  4328. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL ||
  4329. wpa_s->p2p_in_provisioning)
  4330. return -1;
  4331. wpa_supplicant_cancel_sched_scan(wpa_s);
  4332. return p2p_find(wpa_s->global->p2p, timeout, type,
  4333. num_req_dev_types, req_dev_types, dev_id,
  4334. search_delay);
  4335. }
  4336. static int wpas_p2p_stop_find_oper(struct wpa_supplicant *wpa_s)
  4337. {
  4338. wpas_p2p_clear_pending_action_tx(wpa_s);
  4339. wpa_s->p2p_long_listen = 0;
  4340. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  4341. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  4342. wpa_s->global->p2p_cb_on_scan_complete = 0;
  4343. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  4344. wpa_drv_p2p_stop_find(wpa_s);
  4345. return 1;
  4346. }
  4347. if (wpa_s->global->p2p)
  4348. p2p_stop_find(wpa_s->global->p2p);
  4349. return 0;
  4350. }
  4351. void wpas_p2p_stop_find(struct wpa_supplicant *wpa_s)
  4352. {
  4353. if (wpas_p2p_stop_find_oper(wpa_s) > 0)
  4354. return;
  4355. wpas_p2p_remove_pending_group_interface(wpa_s);
  4356. }
  4357. static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx)
  4358. {
  4359. struct wpa_supplicant *wpa_s = eloop_ctx;
  4360. wpa_s->p2p_long_listen = 0;
  4361. }
  4362. int wpas_p2p_listen(struct wpa_supplicant *wpa_s, unsigned int timeout)
  4363. {
  4364. int res;
  4365. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4366. return -1;
  4367. wpa_supplicant_cancel_sched_scan(wpa_s);
  4368. wpas_p2p_clear_pending_action_tx(wpa_s);
  4369. if (timeout == 0) {
  4370. /*
  4371. * This is a request for unlimited Listen state. However, at
  4372. * least for now, this is mapped to a Listen state for one
  4373. * hour.
  4374. */
  4375. timeout = 3600;
  4376. }
  4377. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  4378. wpa_s->p2p_long_listen = 0;
  4379. /*
  4380. * Stop previous find/listen operation to avoid trying to request a new
  4381. * remain-on-channel operation while the driver is still running the
  4382. * previous one.
  4383. */
  4384. if (wpa_s->global->p2p)
  4385. p2p_stop_find(wpa_s->global->p2p);
  4386. res = wpas_p2p_listen_start(wpa_s, timeout * 1000);
  4387. if (res == 0 && timeout * 1000 > wpa_s->max_remain_on_chan) {
  4388. wpa_s->p2p_long_listen = timeout * 1000;
  4389. eloop_register_timeout(timeout, 0,
  4390. wpas_p2p_long_listen_timeout,
  4391. wpa_s, NULL);
  4392. }
  4393. return res;
  4394. }
  4395. int wpas_p2p_assoc_req_ie(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
  4396. u8 *buf, size_t len, int p2p_group)
  4397. {
  4398. struct wpabuf *p2p_ie;
  4399. int ret;
  4400. if (wpa_s->global->p2p_disabled)
  4401. return -1;
  4402. if (wpa_s->global->p2p == NULL)
  4403. return -1;
  4404. if (bss == NULL)
  4405. return -1;
  4406. p2p_ie = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
  4407. ret = p2p_assoc_req_ie(wpa_s->global->p2p, bss->bssid, buf, len,
  4408. p2p_group, p2p_ie);
  4409. wpabuf_free(p2p_ie);
  4410. return ret;
  4411. }
  4412. int wpas_p2p_probe_req_rx(struct wpa_supplicant *wpa_s, const u8 *addr,
  4413. const u8 *dst, const u8 *bssid,
  4414. const u8 *ie, size_t ie_len, int ssi_signal)
  4415. {
  4416. if (wpa_s->global->p2p_disabled)
  4417. return 0;
  4418. if (wpa_s->global->p2p == NULL)
  4419. return 0;
  4420. switch (p2p_probe_req_rx(wpa_s->global->p2p, addr, dst, bssid,
  4421. ie, ie_len)) {
  4422. case P2P_PREQ_NOT_P2P:
  4423. wpas_notify_preq(wpa_s, addr, dst, bssid, ie, ie_len,
  4424. ssi_signal);
  4425. /* fall through */
  4426. case P2P_PREQ_MALFORMED:
  4427. case P2P_PREQ_NOT_LISTEN:
  4428. case P2P_PREQ_NOT_PROCESSED:
  4429. default: /* make gcc happy */
  4430. return 0;
  4431. case P2P_PREQ_PROCESSED:
  4432. return 1;
  4433. }
  4434. }
  4435. void wpas_p2p_rx_action(struct wpa_supplicant *wpa_s, const u8 *da,
  4436. const u8 *sa, const u8 *bssid,
  4437. u8 category, const u8 *data, size_t len, int freq)
  4438. {
  4439. if (wpa_s->global->p2p_disabled)
  4440. return;
  4441. if (wpa_s->global->p2p == NULL)
  4442. return;
  4443. p2p_rx_action(wpa_s->global->p2p, da, sa, bssid, category, data, len,
  4444. freq);
  4445. }
  4446. void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies)
  4447. {
  4448. if (wpa_s->global->p2p_disabled)
  4449. return;
  4450. if (wpa_s->global->p2p == NULL)
  4451. return;
  4452. p2p_scan_ie(wpa_s->global->p2p, ies, NULL);
  4453. }
  4454. void wpas_p2p_group_deinit(struct wpa_supplicant *wpa_s)
  4455. {
  4456. p2p_group_deinit(wpa_s->p2p_group);
  4457. wpa_s->p2p_group = NULL;
  4458. wpa_s->ap_configured_cb = NULL;
  4459. wpa_s->ap_configured_cb_ctx = NULL;
  4460. wpa_s->ap_configured_cb_data = NULL;
  4461. wpa_s->connect_without_scan = NULL;
  4462. }
  4463. int wpas_p2p_reject(struct wpa_supplicant *wpa_s, const u8 *addr)
  4464. {
  4465. wpa_s->p2p_long_listen = 0;
  4466. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4467. return wpa_drv_p2p_reject(wpa_s, addr);
  4468. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4469. return -1;
  4470. return p2p_reject(wpa_s->global->p2p, addr);
  4471. }
  4472. /* Invite to reinvoke a persistent group */
  4473. int wpas_p2p_invite(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  4474. struct wpa_ssid *ssid, const u8 *go_dev_addr, int freq,
  4475. int ht40, int vht, int pref_freq)
  4476. {
  4477. enum p2p_invite_role role;
  4478. u8 *bssid = NULL;
  4479. int force_freq = 0;
  4480. int res;
  4481. wpa_s->global->p2p_invite_group = NULL;
  4482. if (peer_addr)
  4483. os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
  4484. else
  4485. os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
  4486. wpa_s->p2p_persistent_go_freq = freq;
  4487. wpa_s->p2p_go_ht40 = !!ht40;
  4488. if (ssid->mode == WPAS_MODE_P2P_GO) {
  4489. role = P2P_INVITE_ROLE_GO;
  4490. if (peer_addr == NULL) {
  4491. wpa_printf(MSG_DEBUG, "P2P: Missing peer "
  4492. "address in invitation command");
  4493. return -1;
  4494. }
  4495. if (wpas_p2p_create_iface(wpa_s)) {
  4496. if (wpas_p2p_add_group_interface(wpa_s,
  4497. WPA_IF_P2P_GO) < 0) {
  4498. wpa_printf(MSG_ERROR, "P2P: Failed to "
  4499. "allocate a new interface for the "
  4500. "group");
  4501. return -1;
  4502. }
  4503. bssid = wpa_s->pending_interface_addr;
  4504. } else
  4505. bssid = wpa_s->own_addr;
  4506. } else {
  4507. role = P2P_INVITE_ROLE_CLIENT;
  4508. peer_addr = ssid->bssid;
  4509. }
  4510. wpa_s->pending_invite_ssid_id = ssid->id;
  4511. res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
  4512. role == P2P_INVITE_ROLE_GO);
  4513. if (res)
  4514. return res;
  4515. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4516. return wpa_drv_p2p_invite(wpa_s, peer_addr, role, bssid,
  4517. ssid->ssid, ssid->ssid_len,
  4518. go_dev_addr, 1);
  4519. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4520. return -1;
  4521. return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
  4522. ssid->ssid, ssid->ssid_len, force_freq, go_dev_addr,
  4523. 1, pref_freq);
  4524. }
  4525. /* Invite to join an active group */
  4526. int wpas_p2p_invite_group(struct wpa_supplicant *wpa_s, const char *ifname,
  4527. const u8 *peer_addr, const u8 *go_dev_addr)
  4528. {
  4529. struct wpa_global *global = wpa_s->global;
  4530. enum p2p_invite_role role;
  4531. u8 *bssid = NULL;
  4532. struct wpa_ssid *ssid;
  4533. int persistent;
  4534. int freq = 0, force_freq = 0, pref_freq = 0;
  4535. int res;
  4536. wpa_s->p2p_persistent_go_freq = 0;
  4537. wpa_s->p2p_go_ht40 = 0;
  4538. wpa_s->p2p_go_vht = 0;
  4539. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  4540. if (os_strcmp(wpa_s->ifname, ifname) == 0)
  4541. break;
  4542. }
  4543. if (wpa_s == NULL) {
  4544. wpa_printf(MSG_DEBUG, "P2P: Interface '%s' not found", ifname);
  4545. return -1;
  4546. }
  4547. ssid = wpa_s->current_ssid;
  4548. if (ssid == NULL) {
  4549. wpa_printf(MSG_DEBUG, "P2P: No current SSID to use for "
  4550. "invitation");
  4551. return -1;
  4552. }
  4553. wpa_s->global->p2p_invite_group = wpa_s;
  4554. persistent = ssid->p2p_persistent_group &&
  4555. wpas_p2p_get_persistent(wpa_s->parent, peer_addr,
  4556. ssid->ssid, ssid->ssid_len);
  4557. if (ssid->mode == WPAS_MODE_P2P_GO) {
  4558. role = P2P_INVITE_ROLE_ACTIVE_GO;
  4559. bssid = wpa_s->own_addr;
  4560. if (go_dev_addr == NULL)
  4561. go_dev_addr = wpa_s->global->p2p_dev_addr;
  4562. freq = ssid->frequency;
  4563. } else {
  4564. role = P2P_INVITE_ROLE_CLIENT;
  4565. if (wpa_s->wpa_state < WPA_ASSOCIATED) {
  4566. wpa_printf(MSG_DEBUG, "P2P: Not associated - cannot "
  4567. "invite to current group");
  4568. return -1;
  4569. }
  4570. bssid = wpa_s->bssid;
  4571. if (go_dev_addr == NULL &&
  4572. !is_zero_ether_addr(wpa_s->go_dev_addr))
  4573. go_dev_addr = wpa_s->go_dev_addr;
  4574. freq = wpa_s->current_bss ? wpa_s->current_bss->freq :
  4575. (int) wpa_s->assoc_freq;
  4576. }
  4577. wpa_s->parent->pending_invite_ssid_id = -1;
  4578. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4579. return wpa_drv_p2p_invite(wpa_s, peer_addr, role, bssid,
  4580. ssid->ssid, ssid->ssid_len,
  4581. go_dev_addr, persistent);
  4582. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4583. return -1;
  4584. res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
  4585. role == P2P_INVITE_ROLE_ACTIVE_GO);
  4586. if (res)
  4587. return res;
  4588. wpas_p2p_set_own_freq_preference(wpa_s, force_freq);
  4589. return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
  4590. ssid->ssid, ssid->ssid_len, force_freq,
  4591. go_dev_addr, persistent, pref_freq);
  4592. }
  4593. void wpas_p2p_completed(struct wpa_supplicant *wpa_s)
  4594. {
  4595. struct wpa_ssid *ssid = wpa_s->current_ssid;
  4596. const char *ssid_txt;
  4597. u8 go_dev_addr[ETH_ALEN];
  4598. int network_id = -1;
  4599. int persistent;
  4600. int freq;
  4601. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION) {
  4602. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  4603. wpa_s->parent, NULL);
  4604. }
  4605. if (!wpa_s->show_group_started || !ssid)
  4606. goto done;
  4607. wpa_s->show_group_started = 0;
  4608. ssid_txt = wpa_ssid_txt(ssid->ssid, ssid->ssid_len);
  4609. os_memset(go_dev_addr, 0, ETH_ALEN);
  4610. if (ssid->bssid_set)
  4611. os_memcpy(go_dev_addr, ssid->bssid, ETH_ALEN);
  4612. persistent = wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
  4613. ssid->ssid_len);
  4614. os_memcpy(wpa_s->go_dev_addr, go_dev_addr, ETH_ALEN);
  4615. if (wpa_s->global->p2p_group_formation == wpa_s)
  4616. wpa_s->global->p2p_group_formation = NULL;
  4617. freq = wpa_s->current_bss ? wpa_s->current_bss->freq :
  4618. (int) wpa_s->assoc_freq;
  4619. if (ssid->passphrase == NULL && ssid->psk_set) {
  4620. char psk[65];
  4621. wpa_snprintf_hex(psk, sizeof(psk), ssid->psk, 32);
  4622. wpa_msg_global(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  4623. "%s client ssid=\"%s\" freq=%d psk=%s "
  4624. "go_dev_addr=" MACSTR "%s",
  4625. wpa_s->ifname, ssid_txt, freq, psk,
  4626. MAC2STR(go_dev_addr),
  4627. persistent ? " [PERSISTENT]" : "");
  4628. } else {
  4629. wpa_msg_global(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  4630. "%s client ssid=\"%s\" freq=%d "
  4631. "passphrase=\"%s\" go_dev_addr=" MACSTR "%s",
  4632. wpa_s->ifname, ssid_txt, freq,
  4633. ssid->passphrase ? ssid->passphrase : "",
  4634. MAC2STR(go_dev_addr),
  4635. persistent ? " [PERSISTENT]" : "");
  4636. }
  4637. if (persistent)
  4638. network_id = wpas_p2p_store_persistent_group(wpa_s->parent,
  4639. ssid, go_dev_addr);
  4640. if (network_id < 0)
  4641. network_id = ssid->id;
  4642. wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 1);
  4643. done:
  4644. wpas_p2p_continue_after_scan(wpa_s);
  4645. }
  4646. int wpas_p2p_presence_req(struct wpa_supplicant *wpa_s, u32 duration1,
  4647. u32 interval1, u32 duration2, u32 interval2)
  4648. {
  4649. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4650. return -1;
  4651. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4652. return -1;
  4653. if (wpa_s->wpa_state < WPA_ASSOCIATED ||
  4654. wpa_s->current_ssid == NULL ||
  4655. wpa_s->current_ssid->mode != WPAS_MODE_INFRA)
  4656. return -1;
  4657. return p2p_presence_req(wpa_s->global->p2p, wpa_s->bssid,
  4658. wpa_s->own_addr, wpa_s->assoc_freq,
  4659. duration1, interval1, duration2, interval2);
  4660. }
  4661. int wpas_p2p_ext_listen(struct wpa_supplicant *wpa_s, unsigned int period,
  4662. unsigned int interval)
  4663. {
  4664. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4665. return -1;
  4666. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4667. return -1;
  4668. return p2p_ext_listen(wpa_s->global->p2p, period, interval);
  4669. }
  4670. static int wpas_p2p_is_client(struct wpa_supplicant *wpa_s)
  4671. {
  4672. if (wpa_s->current_ssid == NULL) {
  4673. /*
  4674. * current_ssid can be cleared when P2P client interface gets
  4675. * disconnected, so assume this interface was used as P2P
  4676. * client.
  4677. */
  4678. return 1;
  4679. }
  4680. return wpa_s->current_ssid->p2p_group &&
  4681. wpa_s->current_ssid->mode == WPAS_MODE_INFRA;
  4682. }
  4683. static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx)
  4684. {
  4685. struct wpa_supplicant *wpa_s = eloop_ctx;
  4686. if (wpa_s->conf->p2p_group_idle == 0 && !wpas_p2p_is_client(wpa_s)) {
  4687. wpa_printf(MSG_DEBUG, "P2P: Ignore group idle timeout - "
  4688. "disabled");
  4689. return;
  4690. }
  4691. wpa_printf(MSG_DEBUG, "P2P: Group idle timeout reached - terminate "
  4692. "group");
  4693. wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_IDLE_TIMEOUT);
  4694. }
  4695. static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s)
  4696. {
  4697. int timeout;
  4698. if (eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
  4699. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
  4700. if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
  4701. return;
  4702. timeout = wpa_s->conf->p2p_group_idle;
  4703. if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA &&
  4704. (timeout == 0 || timeout > P2P_MAX_CLIENT_IDLE))
  4705. timeout = P2P_MAX_CLIENT_IDLE;
  4706. if (timeout == 0)
  4707. return;
  4708. if (timeout < 0) {
  4709. if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA)
  4710. timeout = 0; /* special client mode no-timeout */
  4711. else
  4712. return;
  4713. }
  4714. if (wpa_s->p2p_in_provisioning) {
  4715. /*
  4716. * Use the normal group formation timeout during the
  4717. * provisioning phase to avoid terminating this process too
  4718. * early due to group idle timeout.
  4719. */
  4720. wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
  4721. "during provisioning");
  4722. return;
  4723. }
  4724. if (wpa_s->show_group_started) {
  4725. /*
  4726. * Use the normal group formation timeout between the end of
  4727. * the provisioning phase and completion of 4-way handshake to
  4728. * avoid terminating this process too early due to group idle
  4729. * timeout.
  4730. */
  4731. wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
  4732. "while waiting for initial 4-way handshake to "
  4733. "complete");
  4734. return;
  4735. }
  4736. wpa_printf(MSG_DEBUG, "P2P: Set P2P group idle timeout to %u seconds",
  4737. timeout);
  4738. eloop_register_timeout(timeout, 0, wpas_p2p_group_idle_timeout,
  4739. wpa_s, NULL);
  4740. }
  4741. /* Returns 1 if the interface was removed */
  4742. int wpas_p2p_deauth_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
  4743. u16 reason_code, const u8 *ie, size_t ie_len,
  4744. int locally_generated)
  4745. {
  4746. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4747. return 0;
  4748. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4749. return 0;
  4750. if (!locally_generated)
  4751. p2p_deauth_notif(wpa_s->global->p2p, bssid, reason_code, ie,
  4752. ie_len);
  4753. if (reason_code == WLAN_REASON_DEAUTH_LEAVING && !locally_generated &&
  4754. wpa_s->current_ssid &&
  4755. wpa_s->current_ssid->p2p_group &&
  4756. wpa_s->current_ssid->mode == WPAS_MODE_INFRA) {
  4757. wpa_printf(MSG_DEBUG, "P2P: GO indicated that the P2P Group "
  4758. "session is ending");
  4759. if (wpas_p2p_group_delete(wpa_s,
  4760. P2P_GROUP_REMOVAL_GO_ENDING_SESSION)
  4761. > 0)
  4762. return 1;
  4763. }
  4764. return 0;
  4765. }
  4766. void wpas_p2p_disassoc_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
  4767. u16 reason_code, const u8 *ie, size_t ie_len,
  4768. int locally_generated)
  4769. {
  4770. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4771. return;
  4772. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4773. return;
  4774. if (!locally_generated)
  4775. p2p_disassoc_notif(wpa_s->global->p2p, bssid, reason_code, ie,
  4776. ie_len);
  4777. }
  4778. void wpas_p2p_update_config(struct wpa_supplicant *wpa_s)
  4779. {
  4780. struct p2p_data *p2p = wpa_s->global->p2p;
  4781. if (p2p == NULL)
  4782. return;
  4783. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
  4784. return;
  4785. if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_NAME)
  4786. p2p_set_dev_name(p2p, wpa_s->conf->device_name);
  4787. if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_TYPE)
  4788. p2p_set_pri_dev_type(p2p, wpa_s->conf->device_type);
  4789. if (wpa_s->wps &&
  4790. (wpa_s->conf->changed_parameters & CFG_CHANGED_CONFIG_METHODS))
  4791. p2p_set_config_methods(p2p, wpa_s->wps->config_methods);
  4792. if (wpa_s->wps && (wpa_s->conf->changed_parameters & CFG_CHANGED_UUID))
  4793. p2p_set_uuid(p2p, wpa_s->wps->uuid);
  4794. if (wpa_s->conf->changed_parameters & CFG_CHANGED_WPS_STRING) {
  4795. p2p_set_manufacturer(p2p, wpa_s->conf->manufacturer);
  4796. p2p_set_model_name(p2p, wpa_s->conf->model_name);
  4797. p2p_set_model_number(p2p, wpa_s->conf->model_number);
  4798. p2p_set_serial_number(p2p, wpa_s->conf->serial_number);
  4799. }
  4800. if (wpa_s->conf->changed_parameters & CFG_CHANGED_SEC_DEVICE_TYPE)
  4801. p2p_set_sec_dev_types(p2p,
  4802. (void *) wpa_s->conf->sec_device_type,
  4803. wpa_s->conf->num_sec_device_types);
  4804. if (wpa_s->conf->changed_parameters & CFG_CHANGED_VENDOR_EXTENSION) {
  4805. int i;
  4806. p2p_remove_wps_vendor_extensions(p2p);
  4807. for (i = 0; i < MAX_WPS_VENDOR_EXT; i++) {
  4808. if (wpa_s->conf->wps_vendor_ext[i] == NULL)
  4809. continue;
  4810. p2p_add_wps_vendor_extension(
  4811. p2p, wpa_s->conf->wps_vendor_ext[i]);
  4812. }
  4813. }
  4814. if ((wpa_s->conf->changed_parameters & CFG_CHANGED_COUNTRY) &&
  4815. wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
  4816. char country[3];
  4817. country[0] = wpa_s->conf->country[0];
  4818. country[1] = wpa_s->conf->country[1];
  4819. country[2] = 0x04;
  4820. p2p_set_country(p2p, country);
  4821. }
  4822. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_SSID_POSTFIX) {
  4823. p2p_set_ssid_postfix(p2p, (u8 *) wpa_s->conf->p2p_ssid_postfix,
  4824. wpa_s->conf->p2p_ssid_postfix ?
  4825. os_strlen(wpa_s->conf->p2p_ssid_postfix) :
  4826. 0);
  4827. }
  4828. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_INTRA_BSS)
  4829. p2p_set_intra_bss_dist(p2p, wpa_s->conf->p2p_intra_bss);
  4830. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_LISTEN_CHANNEL) {
  4831. u8 reg_class, channel;
  4832. int ret;
  4833. unsigned int r;
  4834. if (wpa_s->conf->p2p_listen_reg_class &&
  4835. wpa_s->conf->p2p_listen_channel) {
  4836. reg_class = wpa_s->conf->p2p_listen_reg_class;
  4837. channel = wpa_s->conf->p2p_listen_channel;
  4838. } else {
  4839. reg_class = 81;
  4840. /*
  4841. * Pick one of the social channels randomly as the
  4842. * listen channel.
  4843. */
  4844. os_get_random((u8 *) &r, sizeof(r));
  4845. channel = 1 + (r % 3) * 5;
  4846. }
  4847. ret = p2p_set_listen_channel(p2p, reg_class, channel);
  4848. if (ret)
  4849. wpa_printf(MSG_ERROR, "P2P: Own listen channel update "
  4850. "failed: %d", ret);
  4851. }
  4852. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_OPER_CHANNEL) {
  4853. u8 op_reg_class, op_channel, cfg_op_channel;
  4854. int ret = 0;
  4855. unsigned int r;
  4856. if (wpa_s->conf->p2p_oper_reg_class &&
  4857. wpa_s->conf->p2p_oper_channel) {
  4858. op_reg_class = wpa_s->conf->p2p_oper_reg_class;
  4859. op_channel = wpa_s->conf->p2p_oper_channel;
  4860. cfg_op_channel = 1;
  4861. } else {
  4862. op_reg_class = 81;
  4863. /*
  4864. * Use random operation channel from (1, 6, 11)
  4865. *if no other preference is indicated.
  4866. */
  4867. os_get_random((u8 *) &r, sizeof(r));
  4868. op_channel = 1 + (r % 3) * 5;
  4869. cfg_op_channel = 0;
  4870. }
  4871. ret = p2p_set_oper_channel(p2p, op_reg_class, op_channel,
  4872. cfg_op_channel);
  4873. if (ret)
  4874. wpa_printf(MSG_ERROR, "P2P: Own oper channel update "
  4875. "failed: %d", ret);
  4876. }
  4877. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_PREF_CHAN) {
  4878. if (p2p_set_pref_chan(p2p, wpa_s->conf->num_p2p_pref_chan,
  4879. wpa_s->conf->p2p_pref_chan) < 0) {
  4880. wpa_printf(MSG_ERROR, "P2P: Preferred channel list "
  4881. "update failed");
  4882. }
  4883. if (p2p_set_no_go_freq(p2p, &wpa_s->conf->p2p_no_go_freq) < 0) {
  4884. wpa_printf(MSG_ERROR, "P2P: No GO channel list "
  4885. "update failed");
  4886. }
  4887. }
  4888. }
  4889. int wpas_p2p_set_noa(struct wpa_supplicant *wpa_s, u8 count, int start,
  4890. int duration)
  4891. {
  4892. if (!wpa_s->ap_iface)
  4893. return -1;
  4894. return hostapd_p2p_set_noa(wpa_s->ap_iface->bss[0], count, start,
  4895. duration);
  4896. }
  4897. int wpas_p2p_set_cross_connect(struct wpa_supplicant *wpa_s, int enabled)
  4898. {
  4899. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4900. return -1;
  4901. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4902. return -1;
  4903. wpa_s->global->cross_connection = enabled;
  4904. p2p_set_cross_connect(wpa_s->global->p2p, enabled);
  4905. if (!enabled) {
  4906. struct wpa_supplicant *iface;
  4907. for (iface = wpa_s->global->ifaces; iface; iface = iface->next)
  4908. {
  4909. if (iface->cross_connect_enabled == 0)
  4910. continue;
  4911. iface->cross_connect_enabled = 0;
  4912. iface->cross_connect_in_use = 0;
  4913. wpa_msg_global(iface->parent, MSG_INFO,
  4914. P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
  4915. iface->ifname,
  4916. iface->cross_connect_uplink);
  4917. }
  4918. }
  4919. return 0;
  4920. }
  4921. static void wpas_p2p_enable_cross_connect(struct wpa_supplicant *uplink)
  4922. {
  4923. struct wpa_supplicant *iface;
  4924. if (!uplink->global->cross_connection)
  4925. return;
  4926. for (iface = uplink->global->ifaces; iface; iface = iface->next) {
  4927. if (!iface->cross_connect_enabled)
  4928. continue;
  4929. if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
  4930. 0)
  4931. continue;
  4932. if (iface->ap_iface == NULL)
  4933. continue;
  4934. if (iface->cross_connect_in_use)
  4935. continue;
  4936. iface->cross_connect_in_use = 1;
  4937. wpa_msg_global(iface->parent, MSG_INFO,
  4938. P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
  4939. iface->ifname, iface->cross_connect_uplink);
  4940. }
  4941. }
  4942. static void wpas_p2p_disable_cross_connect(struct wpa_supplicant *uplink)
  4943. {
  4944. struct wpa_supplicant *iface;
  4945. for (iface = uplink->global->ifaces; iface; iface = iface->next) {
  4946. if (!iface->cross_connect_enabled)
  4947. continue;
  4948. if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
  4949. 0)
  4950. continue;
  4951. if (!iface->cross_connect_in_use)
  4952. continue;
  4953. wpa_msg_global(iface->parent, MSG_INFO,
  4954. P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
  4955. iface->ifname, iface->cross_connect_uplink);
  4956. iface->cross_connect_in_use = 0;
  4957. }
  4958. }
  4959. void wpas_p2p_notif_connected(struct wpa_supplicant *wpa_s)
  4960. {
  4961. if (wpa_s->ap_iface || wpa_s->current_ssid == NULL ||
  4962. wpa_s->current_ssid->mode != WPAS_MODE_INFRA ||
  4963. wpa_s->cross_connect_disallowed)
  4964. wpas_p2p_disable_cross_connect(wpa_s);
  4965. else
  4966. wpas_p2p_enable_cross_connect(wpa_s);
  4967. if (!wpa_s->ap_iface &&
  4968. eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
  4969. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
  4970. }
  4971. void wpas_p2p_notif_disconnected(struct wpa_supplicant *wpa_s)
  4972. {
  4973. wpas_p2p_disable_cross_connect(wpa_s);
  4974. if (!wpa_s->ap_iface &&
  4975. !eloop_is_timeout_registered(wpas_p2p_group_idle_timeout,
  4976. wpa_s, NULL))
  4977. wpas_p2p_set_group_idle_timeout(wpa_s);
  4978. }
  4979. static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s)
  4980. {
  4981. struct wpa_supplicant *iface;
  4982. if (!wpa_s->global->cross_connection)
  4983. return;
  4984. for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
  4985. if (iface == wpa_s)
  4986. continue;
  4987. if (iface->drv_flags &
  4988. WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE)
  4989. continue;
  4990. if (iface->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE)
  4991. continue;
  4992. wpa_s->cross_connect_enabled = 1;
  4993. os_strlcpy(wpa_s->cross_connect_uplink, iface->ifname,
  4994. sizeof(wpa_s->cross_connect_uplink));
  4995. wpa_printf(MSG_DEBUG, "P2P: Enable cross connection from "
  4996. "%s to %s whenever uplink is available",
  4997. wpa_s->ifname, wpa_s->cross_connect_uplink);
  4998. if (iface->ap_iface || iface->current_ssid == NULL ||
  4999. iface->current_ssid->mode != WPAS_MODE_INFRA ||
  5000. iface->cross_connect_disallowed ||
  5001. iface->wpa_state != WPA_COMPLETED)
  5002. break;
  5003. wpa_s->cross_connect_in_use = 1;
  5004. wpa_msg_global(wpa_s->parent, MSG_INFO,
  5005. P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
  5006. wpa_s->ifname, wpa_s->cross_connect_uplink);
  5007. break;
  5008. }
  5009. }
  5010. int wpas_p2p_notif_pbc_overlap(struct wpa_supplicant *wpa_s)
  5011. {
  5012. if (wpa_s->p2p_group_interface != P2P_GROUP_INTERFACE_CLIENT &&
  5013. !wpa_s->p2p_in_provisioning)
  5014. return 0; /* not P2P client operation */
  5015. wpa_printf(MSG_DEBUG, "P2P: Terminate connection due to WPS PBC "
  5016. "session overlap");
  5017. if (wpa_s != wpa_s->parent)
  5018. wpa_msg_ctrl(wpa_s->parent, MSG_INFO, WPS_EVENT_OVERLAP);
  5019. wpas_p2p_group_formation_failed(wpa_s);
  5020. return 1;
  5021. }
  5022. void wpas_p2p_update_channel_list(struct wpa_supplicant *wpa_s)
  5023. {
  5024. struct p2p_channels chan, cli_chan;
  5025. if (wpa_s->global == NULL || wpa_s->global->p2p == NULL)
  5026. return;
  5027. os_memset(&chan, 0, sizeof(chan));
  5028. os_memset(&cli_chan, 0, sizeof(cli_chan));
  5029. if (wpas_p2p_setup_channels(wpa_s, &chan, &cli_chan)) {
  5030. wpa_printf(MSG_ERROR, "P2P: Failed to update supported "
  5031. "channel list");
  5032. return;
  5033. }
  5034. p2p_update_channel_list(wpa_s->global->p2p, &chan, &cli_chan);
  5035. }
  5036. static void wpas_p2p_scan_res_ignore(struct wpa_supplicant *wpa_s,
  5037. struct wpa_scan_results *scan_res)
  5038. {
  5039. wpa_printf(MSG_DEBUG, "P2P: Ignore scan results");
  5040. }
  5041. int wpas_p2p_cancel(struct wpa_supplicant *wpa_s)
  5042. {
  5043. struct wpa_global *global = wpa_s->global;
  5044. int found = 0;
  5045. const u8 *peer;
  5046. if (global->p2p == NULL)
  5047. return -1;
  5048. wpa_printf(MSG_DEBUG, "P2P: Request to cancel group formation");
  5049. if (wpa_s->pending_interface_name[0] &&
  5050. !is_zero_ether_addr(wpa_s->pending_interface_addr))
  5051. found = 1;
  5052. peer = p2p_get_go_neg_peer(global->p2p);
  5053. if (peer) {
  5054. wpa_printf(MSG_DEBUG, "P2P: Unauthorize pending GO Neg peer "
  5055. MACSTR, MAC2STR(peer));
  5056. p2p_unauthorize(global->p2p, peer);
  5057. found = 1;
  5058. }
  5059. if (wpa_s->scan_res_handler == wpas_p2p_scan_res_join) {
  5060. wpa_printf(MSG_DEBUG, "P2P: Stop pending scan for join");
  5061. wpa_s->scan_res_handler = wpas_p2p_scan_res_ignore;
  5062. found = 1;
  5063. }
  5064. if (wpa_s->pending_pd_before_join) {
  5065. wpa_printf(MSG_DEBUG, "P2P: Stop pending PD before join");
  5066. wpa_s->pending_pd_before_join = 0;
  5067. found = 1;
  5068. }
  5069. wpas_p2p_stop_find(wpa_s);
  5070. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  5071. if (wpa_s == global->p2p_group_formation &&
  5072. (wpa_s->p2p_in_provisioning ||
  5073. wpa_s->parent->pending_interface_type ==
  5074. WPA_IF_P2P_CLIENT)) {
  5075. wpa_printf(MSG_DEBUG, "P2P: Interface %s in group "
  5076. "formation found - cancelling",
  5077. wpa_s->ifname);
  5078. found = 1;
  5079. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  5080. wpa_s->parent, NULL);
  5081. if (wpa_s->p2p_in_provisioning) {
  5082. wpas_group_formation_completed(wpa_s, 0);
  5083. break;
  5084. }
  5085. wpas_p2p_group_delete(wpa_s,
  5086. P2P_GROUP_REMOVAL_REQUESTED);
  5087. break;
  5088. }
  5089. }
  5090. if (!found) {
  5091. wpa_printf(MSG_DEBUG, "P2P: No ongoing group formation found");
  5092. return -1;
  5093. }
  5094. return 0;
  5095. }
  5096. void wpas_p2p_interface_unavailable(struct wpa_supplicant *wpa_s)
  5097. {
  5098. if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
  5099. return;
  5100. wpa_printf(MSG_DEBUG, "P2P: Remove group due to driver resource not "
  5101. "being available anymore");
  5102. wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_UNAVAILABLE);
  5103. }
  5104. void wpas_p2p_update_best_channels(struct wpa_supplicant *wpa_s,
  5105. int freq_24, int freq_5, int freq_overall)
  5106. {
  5107. struct p2p_data *p2p = wpa_s->global->p2p;
  5108. if (p2p == NULL || (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT))
  5109. return;
  5110. p2p_set_best_channels(p2p, freq_24, freq_5, freq_overall);
  5111. }
  5112. int wpas_p2p_unauthorize(struct wpa_supplicant *wpa_s, const char *addr)
  5113. {
  5114. u8 peer[ETH_ALEN];
  5115. struct p2p_data *p2p = wpa_s->global->p2p;
  5116. if (p2p == NULL || (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT))
  5117. return -1;
  5118. if (hwaddr_aton(addr, peer))
  5119. return -1;
  5120. return p2p_unauthorize(p2p, peer);
  5121. }
  5122. /**
  5123. * wpas_p2p_disconnect - Disconnect from a P2P Group
  5124. * @wpa_s: Pointer to wpa_supplicant data
  5125. * Returns: 0 on success, -1 on failure
  5126. *
  5127. * This can be used to disconnect from a group in which the local end is a P2P
  5128. * Client or to end a P2P Group in case the local end is the Group Owner. If a
  5129. * virtual network interface was created for this group, that interface will be
  5130. * removed. Otherwise, only the configured P2P group network will be removed
  5131. * from the interface.
  5132. */
  5133. int wpas_p2p_disconnect(struct wpa_supplicant *wpa_s)
  5134. {
  5135. if (wpa_s == NULL)
  5136. return -1;
  5137. return wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_REQUESTED) < 0 ?
  5138. -1 : 0;
  5139. }
  5140. int wpas_p2p_in_progress(struct wpa_supplicant *wpa_s)
  5141. {
  5142. int ret;
  5143. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5144. return 0;
  5145. ret = p2p_in_progress(wpa_s->global->p2p);
  5146. if (ret == 0) {
  5147. /*
  5148. * Check whether there is an ongoing WPS provisioning step (or
  5149. * other parts of group formation) on another interface since
  5150. * p2p_in_progress() does not report this to avoid issues for
  5151. * scans during such provisioning step.
  5152. */
  5153. if (wpa_s->global->p2p_group_formation &&
  5154. wpa_s->global->p2p_group_formation != wpa_s) {
  5155. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Another interface (%s) "
  5156. "in group formation",
  5157. wpa_s->global->p2p_group_formation->ifname);
  5158. ret = 1;
  5159. }
  5160. }
  5161. if (!ret && wpa_s->global->p2p_go_wait_client.sec) {
  5162. struct os_time now;
  5163. os_get_time(&now);
  5164. if (now.sec > wpa_s->global->p2p_go_wait_client.sec +
  5165. P2P_MAX_INITIAL_CONN_WAIT_GO) {
  5166. /* Wait for the first client has expired */
  5167. wpa_s->global->p2p_go_wait_client.sec = 0;
  5168. } else {
  5169. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Waiting for initial client connection during group formation");
  5170. ret = 1;
  5171. }
  5172. }
  5173. return ret;
  5174. }
  5175. void wpas_p2p_network_removed(struct wpa_supplicant *wpa_s,
  5176. struct wpa_ssid *ssid)
  5177. {
  5178. if (wpa_s->p2p_in_provisioning && ssid->p2p_group &&
  5179. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  5180. wpa_s->parent, NULL) > 0) {
  5181. /**
  5182. * Remove the network by scheduling the group formation
  5183. * timeout to happen immediately. The teardown code
  5184. * needs to be scheduled to run asynch later so that we
  5185. * don't delete data from under ourselves unexpectedly.
  5186. * Calling wpas_p2p_group_formation_timeout directly
  5187. * causes a series of crashes in WPS failure scenarios.
  5188. */
  5189. wpa_printf(MSG_DEBUG, "P2P: Canceled group formation due to "
  5190. "P2P group network getting removed");
  5191. eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
  5192. wpa_s->parent, NULL);
  5193. }
  5194. }
  5195. struct wpa_ssid * wpas_p2p_get_persistent(struct wpa_supplicant *wpa_s,
  5196. const u8 *addr, const u8 *ssid,
  5197. size_t ssid_len)
  5198. {
  5199. struct wpa_ssid *s;
  5200. size_t i;
  5201. for (s = wpa_s->conf->ssid; s; s = s->next) {
  5202. if (s->disabled != 2)
  5203. continue;
  5204. if (ssid &&
  5205. (ssid_len != s->ssid_len ||
  5206. os_memcmp(ssid, s->ssid, ssid_len) != 0))
  5207. continue;
  5208. if (addr == NULL) {
  5209. if (s->mode == WPAS_MODE_P2P_GO)
  5210. return s;
  5211. continue;
  5212. }
  5213. if (os_memcmp(s->bssid, addr, ETH_ALEN) == 0)
  5214. return s; /* peer is GO in the persistent group */
  5215. if (s->mode != WPAS_MODE_P2P_GO || s->p2p_client_list == NULL)
  5216. continue;
  5217. for (i = 0; i < s->num_p2p_clients; i++) {
  5218. if (os_memcmp(s->p2p_client_list + i * ETH_ALEN,
  5219. addr, ETH_ALEN) == 0)
  5220. return s; /* peer is P2P client in persistent
  5221. * group */
  5222. }
  5223. }
  5224. return NULL;
  5225. }
  5226. void wpas_p2p_notify_ap_sta_authorized(struct wpa_supplicant *wpa_s,
  5227. const u8 *addr)
  5228. {
  5229. if (eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  5230. wpa_s->parent, NULL) > 0) {
  5231. /*
  5232. * This can happen if WPS provisioning step is not terminated
  5233. * cleanly (e.g., P2P Client does not send WSC_Done). Since the
  5234. * peer was able to connect, there is no need to time out group
  5235. * formation after this, though. In addition, this is used with
  5236. * the initial connection wait on the GO as a separate formation
  5237. * timeout and as such, expected to be hit after the initial WPS
  5238. * provisioning step.
  5239. */
  5240. wpa_printf(MSG_DEBUG, "P2P: Canceled P2P group formation timeout on data connection");
  5241. }
  5242. if (!wpa_s->p2p_go_group_formation_completed) {
  5243. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Marking group formation completed on GO on first data connection");
  5244. wpa_s->p2p_go_group_formation_completed = 1;
  5245. wpa_s->global->p2p_group_formation = NULL;
  5246. wpa_s->p2p_in_provisioning = 0;
  5247. }
  5248. wpa_s->global->p2p_go_wait_client.sec = 0;
  5249. if (addr == NULL)
  5250. return;
  5251. wpas_p2p_add_persistent_group_client(wpa_s, addr);
  5252. }
  5253. static void wpas_p2p_fallback_to_go_neg(struct wpa_supplicant *wpa_s,
  5254. int group_added)
  5255. {
  5256. struct wpa_supplicant *group = wpa_s;
  5257. if (wpa_s->global->p2p_group_formation)
  5258. group = wpa_s->global->p2p_group_formation;
  5259. wpa_s = wpa_s->parent;
  5260. offchannel_send_action_done(wpa_s);
  5261. if (group_added)
  5262. wpas_p2p_group_delete(group, P2P_GROUP_REMOVAL_SILENT);
  5263. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Fall back to GO Negotiation");
  5264. wpas_p2p_connect(wpa_s, wpa_s->pending_join_dev_addr, wpa_s->p2p_pin,
  5265. wpa_s->p2p_wps_method, wpa_s->p2p_persistent_group, 0,
  5266. 0, 0, wpa_s->p2p_go_intent, wpa_s->p2p_connect_freq,
  5267. wpa_s->p2p_persistent_id,
  5268. wpa_s->p2p_pd_before_go_neg,
  5269. wpa_s->p2p_go_ht40,
  5270. wpa_s->p2p_go_vht);
  5271. }
  5272. int wpas_p2p_scan_no_go_seen(struct wpa_supplicant *wpa_s)
  5273. {
  5274. if (!wpa_s->p2p_fallback_to_go_neg ||
  5275. wpa_s->p2p_in_provisioning <= 5)
  5276. return 0;
  5277. if (wpas_p2p_peer_go(wpa_s, wpa_s->pending_join_dev_addr) > 0)
  5278. return 0; /* peer operating as a GO */
  5279. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: GO not found for p2p_connect-auto - "
  5280. "fallback to GO Negotiation");
  5281. wpas_p2p_fallback_to_go_neg(wpa_s, 1);
  5282. return 1;
  5283. }
  5284. unsigned int wpas_p2p_search_delay(struct wpa_supplicant *wpa_s)
  5285. {
  5286. const char *rn, *rn2;
  5287. struct wpa_supplicant *ifs;
  5288. if (wpa_s->wpa_state > WPA_SCANNING) {
  5289. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use %u ms search delay due to "
  5290. "concurrent operation",
  5291. P2P_CONCURRENT_SEARCH_DELAY);
  5292. return P2P_CONCURRENT_SEARCH_DELAY;
  5293. }
  5294. if (!wpa_s->driver->get_radio_name)
  5295. return 0;
  5296. rn = wpa_s->driver->get_radio_name(wpa_s->drv_priv);
  5297. if (rn == NULL || rn[0] == '\0')
  5298. return 0;
  5299. for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
  5300. if (ifs == wpa_s || !ifs->driver->get_radio_name)
  5301. continue;
  5302. rn2 = ifs->driver->get_radio_name(ifs->drv_priv);
  5303. if (!rn2 || os_strcmp(rn, rn2) != 0)
  5304. continue;
  5305. if (ifs->wpa_state > WPA_SCANNING) {
  5306. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use %u ms search "
  5307. "delay due to concurrent operation on "
  5308. "interface %s",
  5309. P2P_CONCURRENT_SEARCH_DELAY, ifs->ifname);
  5310. return P2P_CONCURRENT_SEARCH_DELAY;
  5311. }
  5312. }
  5313. return 0;
  5314. }
  5315. void wpas_p2p_continue_after_scan(struct wpa_supplicant *wpa_s)
  5316. {
  5317. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Station mode scan operation not "
  5318. "pending anymore (sta_scan_pending=%d "
  5319. "p2p_cb_on_scan_complete=%d)", wpa_s->sta_scan_pending,
  5320. wpa_s->global->p2p_cb_on_scan_complete);
  5321. wpa_s->sta_scan_pending = 0;
  5322. if (!wpa_s->global->p2p_cb_on_scan_complete)
  5323. return;
  5324. wpa_s->global->p2p_cb_on_scan_complete = 0;
  5325. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5326. return;
  5327. if (p2p_other_scan_completed(wpa_s->global->p2p) == 1) {
  5328. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Pending P2P operation "
  5329. "continued after successful connection");
  5330. p2p_increase_search_delay(wpa_s->global->p2p,
  5331. wpas_p2p_search_delay(wpa_s));
  5332. }
  5333. }
  5334. static int wpas_p2p_remove_psk_entry(struct wpa_supplicant *wpa_s,
  5335. struct wpa_ssid *s, const u8 *addr,
  5336. int iface_addr)
  5337. {
  5338. struct psk_list_entry *psk, *tmp;
  5339. int changed = 0;
  5340. dl_list_for_each_safe(psk, tmp, &s->psk_list, struct psk_list_entry,
  5341. list) {
  5342. if ((iface_addr && !psk->p2p &&
  5343. os_memcmp(addr, psk->addr, ETH_ALEN) == 0) ||
  5344. (!iface_addr && psk->p2p &&
  5345. os_memcmp(addr, psk->addr, ETH_ALEN) == 0)) {
  5346. wpa_dbg(wpa_s, MSG_DEBUG,
  5347. "P2P: Remove persistent group PSK list entry for "
  5348. MACSTR " p2p=%u",
  5349. MAC2STR(psk->addr), psk->p2p);
  5350. dl_list_del(&psk->list);
  5351. os_free(psk);
  5352. changed++;
  5353. }
  5354. }
  5355. return changed;
  5356. }
  5357. void wpas_p2p_new_psk_cb(struct wpa_supplicant *wpa_s, const u8 *mac_addr,
  5358. const u8 *p2p_dev_addr,
  5359. const u8 *psk, size_t psk_len)
  5360. {
  5361. struct wpa_ssid *ssid = wpa_s->current_ssid;
  5362. struct wpa_ssid *persistent;
  5363. struct psk_list_entry *p;
  5364. if (psk_len != sizeof(p->psk))
  5365. return;
  5366. if (p2p_dev_addr) {
  5367. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New PSK for addr=" MACSTR
  5368. " p2p_dev_addr=" MACSTR,
  5369. MAC2STR(mac_addr), MAC2STR(p2p_dev_addr));
  5370. if (is_zero_ether_addr(p2p_dev_addr))
  5371. p2p_dev_addr = NULL;
  5372. } else {
  5373. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New PSK for addr=" MACSTR,
  5374. MAC2STR(mac_addr));
  5375. }
  5376. if (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
  5377. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: new_psk_cb during group formation");
  5378. /* To be added to persistent group once created */
  5379. if (wpa_s->global->add_psk == NULL) {
  5380. wpa_s->global->add_psk = os_zalloc(sizeof(*p));
  5381. if (wpa_s->global->add_psk == NULL)
  5382. return;
  5383. }
  5384. p = wpa_s->global->add_psk;
  5385. if (p2p_dev_addr) {
  5386. p->p2p = 1;
  5387. os_memcpy(p->addr, p2p_dev_addr, ETH_ALEN);
  5388. } else {
  5389. p->p2p = 0;
  5390. os_memcpy(p->addr, mac_addr, ETH_ALEN);
  5391. }
  5392. os_memcpy(p->psk, psk, psk_len);
  5393. return;
  5394. }
  5395. if (ssid->mode != WPAS_MODE_P2P_GO || !ssid->p2p_persistent_group) {
  5396. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Ignore new_psk_cb on not-persistent GO");
  5397. return;
  5398. }
  5399. persistent = wpas_p2p_get_persistent(wpa_s->parent, NULL, ssid->ssid,
  5400. ssid->ssid_len);
  5401. if (!persistent) {
  5402. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not find persistent group information to store the new PSK");
  5403. return;
  5404. }
  5405. p = os_zalloc(sizeof(*p));
  5406. if (p == NULL)
  5407. return;
  5408. if (p2p_dev_addr) {
  5409. p->p2p = 1;
  5410. os_memcpy(p->addr, p2p_dev_addr, ETH_ALEN);
  5411. } else {
  5412. p->p2p = 0;
  5413. os_memcpy(p->addr, mac_addr, ETH_ALEN);
  5414. }
  5415. os_memcpy(p->psk, psk, psk_len);
  5416. if (dl_list_len(&persistent->psk_list) > P2P_MAX_STORED_CLIENTS) {
  5417. struct psk_list_entry *last;
  5418. last = dl_list_last(&persistent->psk_list,
  5419. struct psk_list_entry, list);
  5420. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove oldest PSK entry for "
  5421. MACSTR " (p2p=%u) to make room for a new one",
  5422. MAC2STR(last->addr), last->p2p);
  5423. dl_list_del(&last->list);
  5424. os_free(last);
  5425. }
  5426. wpas_p2p_remove_psk_entry(wpa_s->parent, persistent,
  5427. p2p_dev_addr ? p2p_dev_addr : mac_addr,
  5428. p2p_dev_addr == NULL);
  5429. if (p2p_dev_addr) {
  5430. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add new PSK for p2p_dev_addr="
  5431. MACSTR, MAC2STR(p2p_dev_addr));
  5432. } else {
  5433. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add new PSK for addr=" MACSTR,
  5434. MAC2STR(mac_addr));
  5435. }
  5436. dl_list_add(&persistent->psk_list, &p->list);
  5437. #ifndef CONFIG_NO_CONFIG_WRITE
  5438. if (wpa_s->parent->conf->update_config &&
  5439. wpa_config_write(wpa_s->parent->confname, wpa_s->parent->conf))
  5440. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  5441. #endif /* CONFIG_NO_CONFIG_WRITE */
  5442. }
  5443. static void wpas_p2p_remove_psk(struct wpa_supplicant *wpa_s,
  5444. struct wpa_ssid *s, const u8 *addr,
  5445. int iface_addr)
  5446. {
  5447. int res;
  5448. res = wpas_p2p_remove_psk_entry(wpa_s, s, addr, iface_addr);
  5449. if (res > 0) {
  5450. #ifndef CONFIG_NO_CONFIG_WRITE
  5451. if (wpa_s->conf->update_config &&
  5452. wpa_config_write(wpa_s->confname, wpa_s->conf))
  5453. wpa_dbg(wpa_s, MSG_DEBUG,
  5454. "P2P: Failed to update configuration");
  5455. #endif /* CONFIG_NO_CONFIG_WRITE */
  5456. }
  5457. }
  5458. static void wpas_p2p_remove_client_go(struct wpa_supplicant *wpa_s,
  5459. const u8 *peer, int iface_addr)
  5460. {
  5461. struct hostapd_data *hapd;
  5462. struct hostapd_wpa_psk *psk, *prev, *rem;
  5463. struct sta_info *sta;
  5464. if (wpa_s->ap_iface == NULL || wpa_s->current_ssid == NULL ||
  5465. wpa_s->current_ssid->mode != WPAS_MODE_P2P_GO)
  5466. return;
  5467. /* Remove per-station PSK entry */
  5468. hapd = wpa_s->ap_iface->bss[0];
  5469. prev = NULL;
  5470. psk = hapd->conf->ssid.wpa_psk;
  5471. while (psk) {
  5472. if ((iface_addr && os_memcmp(peer, psk->addr, ETH_ALEN) == 0) ||
  5473. (!iface_addr &&
  5474. os_memcmp(peer, psk->p2p_dev_addr, ETH_ALEN) == 0)) {
  5475. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove operating group PSK entry for "
  5476. MACSTR " iface_addr=%d",
  5477. MAC2STR(peer), iface_addr);
  5478. if (prev)
  5479. prev->next = psk->next;
  5480. else
  5481. hapd->conf->ssid.wpa_psk = psk->next;
  5482. rem = psk;
  5483. psk = psk->next;
  5484. os_free(rem);
  5485. } else {
  5486. prev = psk;
  5487. psk = psk->next;
  5488. }
  5489. }
  5490. /* Disconnect from group */
  5491. if (iface_addr)
  5492. sta = ap_get_sta(hapd, peer);
  5493. else
  5494. sta = ap_get_sta_p2p(hapd, peer);
  5495. if (sta) {
  5496. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Disconnect peer " MACSTR
  5497. " (iface_addr=%d) from group",
  5498. MAC2STR(peer), iface_addr);
  5499. hostapd_drv_sta_deauth(hapd, sta->addr,
  5500. WLAN_REASON_DEAUTH_LEAVING);
  5501. ap_sta_deauthenticate(hapd, sta, WLAN_REASON_DEAUTH_LEAVING);
  5502. }
  5503. }
  5504. void wpas_p2p_remove_client(struct wpa_supplicant *wpa_s, const u8 *peer,
  5505. int iface_addr)
  5506. {
  5507. struct wpa_ssid *s;
  5508. struct wpa_supplicant *w;
  5509. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove client " MACSTR, MAC2STR(peer));
  5510. /* Remove from any persistent group */
  5511. for (s = wpa_s->parent->conf->ssid; s; s = s->next) {
  5512. if (s->disabled != 2 || s->mode != WPAS_MODE_P2P_GO)
  5513. continue;
  5514. if (!iface_addr)
  5515. wpas_remove_persistent_peer(wpa_s, s, peer, 0);
  5516. wpas_p2p_remove_psk(wpa_s->parent, s, peer, iface_addr);
  5517. }
  5518. /* Remove from any operating group */
  5519. for (w = wpa_s->global->ifaces; w; w = w->next)
  5520. wpas_p2p_remove_client_go(w, peer, iface_addr);
  5521. }
  5522. static void wpas_p2p_psk_failure_removal(void *eloop_ctx, void *timeout_ctx)
  5523. {
  5524. struct wpa_supplicant *wpa_s = eloop_ctx;
  5525. wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_PSK_FAILURE);
  5526. }
  5527. int wpas_p2p_4way_hs_failed(struct wpa_supplicant *wpa_s)
  5528. {
  5529. struct wpa_ssid *ssid = wpa_s->current_ssid;
  5530. if (ssid == NULL || !ssid->p2p_group)
  5531. return 0;
  5532. if (wpa_s->p2p_last_4way_hs_fail &&
  5533. wpa_s->p2p_last_4way_hs_fail == ssid) {
  5534. u8 go_dev_addr[ETH_ALEN];
  5535. struct wpa_ssid *persistent;
  5536. if (wpas_p2p_persistent_group(wpa_s, go_dev_addr,
  5537. ssid->ssid,
  5538. ssid->ssid_len) <= 0) {
  5539. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not determine whether 4-way handshake failures were for a persistent group");
  5540. goto disconnect;
  5541. }
  5542. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Two 4-way handshake failures for a P2P group - go_dev_addr="
  5543. MACSTR, MAC2STR(go_dev_addr));
  5544. persistent = wpas_p2p_get_persistent(wpa_s->parent, go_dev_addr,
  5545. ssid->ssid,
  5546. ssid->ssid_len);
  5547. if (persistent == NULL || persistent->mode != WPAS_MODE_INFRA) {
  5548. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No matching persistent group stored");
  5549. goto disconnect;
  5550. }
  5551. wpa_msg_global(wpa_s->parent, MSG_INFO,
  5552. P2P_EVENT_PERSISTENT_PSK_FAIL "%d",
  5553. persistent->id);
  5554. disconnect:
  5555. wpa_s->p2p_last_4way_hs_fail = NULL;
  5556. /*
  5557. * Remove the group from a timeout to avoid issues with caller
  5558. * continuing to use the interface if this is on a P2P group
  5559. * interface.
  5560. */
  5561. eloop_register_timeout(0, 0, wpas_p2p_psk_failure_removal,
  5562. wpa_s, NULL);
  5563. return 1;
  5564. }
  5565. wpa_s->p2p_last_4way_hs_fail = ssid;
  5566. return 0;
  5567. }