p2p_supplicant.c 262 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300
  1. /*
  2. * wpa_supplicant - P2P
  3. * Copyright (c) 2009-2010, Atheros Communications
  4. * Copyright (c) 2010-2014, Jouni Malinen <j@w1.fi>
  5. *
  6. * This software may be distributed under the terms of the BSD license.
  7. * See README for more details.
  8. */
  9. #include "includes.h"
  10. #include "common.h"
  11. #include "eloop.h"
  12. #include "common/ieee802_11_common.h"
  13. #include "common/ieee802_11_defs.h"
  14. #include "common/wpa_ctrl.h"
  15. #include "wps/wps_i.h"
  16. #include "p2p/p2p.h"
  17. #include "ap/hostapd.h"
  18. #include "ap/ap_config.h"
  19. #include "ap/sta_info.h"
  20. #include "ap/ap_drv_ops.h"
  21. #include "ap/wps_hostapd.h"
  22. #include "ap/p2p_hostapd.h"
  23. #include "ap/dfs.h"
  24. #include "eapol_supp/eapol_supp_sm.h"
  25. #include "rsn_supp/wpa.h"
  26. #include "wpa_supplicant_i.h"
  27. #include "driver_i.h"
  28. #include "ap.h"
  29. #include "config_ssid.h"
  30. #include "config.h"
  31. #include "notify.h"
  32. #include "scan.h"
  33. #include "bss.h"
  34. #include "offchannel.h"
  35. #include "wps_supplicant.h"
  36. #include "p2p_supplicant.h"
  37. #include "wifi_display.h"
  38. /*
  39. * How many times to try to scan to find the GO before giving up on join
  40. * request.
  41. */
  42. #define P2P_MAX_JOIN_SCAN_ATTEMPTS 10
  43. #define P2P_AUTO_PD_SCAN_ATTEMPTS 5
  44. /**
  45. * Defines time interval in seconds when a GO needs to evacuate a frequency that
  46. * it is currently using, but is no longer valid for P2P use cases.
  47. */
  48. #define P2P_GO_FREQ_CHANGE_TIME 5
  49. /**
  50. * Defines CSA parameters which are used when GO evacuates the no longer valid
  51. * channel (and if the driver supports channel switch).
  52. */
  53. #define P2P_GO_CSA_COUNT 7
  54. #define P2P_GO_CSA_BLOCK_TX 0
  55. #ifndef P2P_MAX_CLIENT_IDLE
  56. /*
  57. * How many seconds to try to reconnect to the GO when connection in P2P client
  58. * role has been lost.
  59. */
  60. #define P2P_MAX_CLIENT_IDLE 10
  61. #endif /* P2P_MAX_CLIENT_IDLE */
  62. #ifndef P2P_MAX_INITIAL_CONN_WAIT
  63. /*
  64. * How many seconds to wait for initial 4-way handshake to get completed after
  65. * WPS provisioning step or after the re-invocation of a persistent group on a
  66. * P2P Client.
  67. */
  68. #define P2P_MAX_INITIAL_CONN_WAIT 10
  69. #endif /* P2P_MAX_INITIAL_CONN_WAIT */
  70. #ifndef P2P_MAX_INITIAL_CONN_WAIT_GO
  71. /*
  72. * How many seconds to wait for initial 4-way handshake to get completed after
  73. * WPS provisioning step on the GO. This controls the extra time the P2P
  74. * operation is considered to be in progress (e.g., to delay other scans) after
  75. * WPS provisioning has been completed on the GO during group formation.
  76. */
  77. #define P2P_MAX_INITIAL_CONN_WAIT_GO 10
  78. #endif /* P2P_MAX_INITIAL_CONN_WAIT_GO */
  79. #ifndef P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE
  80. /*
  81. * How many seconds to wait for initial 4-way handshake to get completed after
  82. * re-invocation of a persistent group on the GO when the client is expected
  83. * to connect automatically (no user interaction).
  84. */
  85. #define P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE 15
  86. #endif /* P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE */
  87. #define P2P_MGMT_DEVICE_PREFIX "p2p-dev-"
  88. /*
  89. * How many seconds to wait to re-attempt to move GOs, in case previous attempt
  90. * was not possible.
  91. */
  92. #define P2P_RECONSIDER_GO_MOVE_DELAY 30
  93. enum p2p_group_removal_reason {
  94. P2P_GROUP_REMOVAL_UNKNOWN,
  95. P2P_GROUP_REMOVAL_SILENT,
  96. P2P_GROUP_REMOVAL_FORMATION_FAILED,
  97. P2P_GROUP_REMOVAL_REQUESTED,
  98. P2P_GROUP_REMOVAL_IDLE_TIMEOUT,
  99. P2P_GROUP_REMOVAL_UNAVAILABLE,
  100. P2P_GROUP_REMOVAL_GO_ENDING_SESSION,
  101. P2P_GROUP_REMOVAL_PSK_FAILURE,
  102. P2P_GROUP_REMOVAL_FREQ_CONFLICT,
  103. P2P_GROUP_REMOVAL_GO_LEAVE_CHANNEL
  104. };
  105. static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx);
  106. static struct wpa_supplicant *
  107. wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
  108. int go);
  109. static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s, int freq,
  110. const u8 *ssid, size_t ssid_len);
  111. static int wpas_p2p_setup_freqs(struct wpa_supplicant *wpa_s, int freq,
  112. int *force_freq, int *pref_freq, int go,
  113. unsigned int *pref_freq_list,
  114. unsigned int *num_pref_freq);
  115. static void wpas_p2p_join_scan_req(struct wpa_supplicant *wpa_s, int freq,
  116. const u8 *ssid, size_t ssid_len);
  117. static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx);
  118. static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
  119. const u8 *dev_addr, enum p2p_wps_method wps_method,
  120. int auto_join, int freq,
  121. const u8 *ssid, size_t ssid_len);
  122. static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s);
  123. static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s);
  124. static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx);
  125. static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s);
  126. static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
  127. void *timeout_ctx);
  128. static void wpas_p2p_group_freq_conflict(void *eloop_ctx, void *timeout_ctx);
  129. static int wpas_p2p_fallback_to_go_neg(struct wpa_supplicant *wpa_s,
  130. int group_added);
  131. static void wpas_p2p_stop_find_oper(struct wpa_supplicant *wpa_s);
  132. static void wpas_stop_listen(void *ctx);
  133. static void wpas_p2p_psk_failure_removal(void *eloop_ctx, void *timeout_ctx);
  134. static void wpas_p2p_group_deinit(struct wpa_supplicant *wpa_s);
  135. static int wpas_p2p_add_group_interface(struct wpa_supplicant *wpa_s,
  136. enum wpa_driver_if_type type);
  137. static void wpas_p2p_group_formation_failed(struct wpa_supplicant *wpa_s,
  138. int already_deleted);
  139. static void wpas_p2p_optimize_listen_channel(struct wpa_supplicant *wpa_s,
  140. struct wpa_used_freq_data *freqs,
  141. unsigned int num);
  142. static void wpas_p2p_move_go(void *eloop_ctx, void *timeout_ctx);
  143. static int wpas_p2p_go_is_peer_freq(struct wpa_supplicant *wpa_s, int freq);
  144. static void
  145. wpas_p2p_consider_moving_gos(struct wpa_supplicant *wpa_s,
  146. struct wpa_used_freq_data *freqs, unsigned int num,
  147. enum wpas_p2p_channel_update_trig trig);
  148. static void wpas_p2p_reconsider_moving_go(void *eloop_ctx, void *timeout_ctx);
  149. /*
  150. * Get the number of concurrent channels that the HW can operate, but that are
  151. * currently not in use by any of the wpa_supplicant interfaces.
  152. */
  153. static int wpas_p2p_num_unused_channels(struct wpa_supplicant *wpa_s)
  154. {
  155. int *freqs;
  156. int num, unused;
  157. freqs = os_calloc(wpa_s->num_multichan_concurrent, sizeof(int));
  158. if (!freqs)
  159. return -1;
  160. num = get_shared_radio_freqs(wpa_s, freqs,
  161. wpa_s->num_multichan_concurrent);
  162. os_free(freqs);
  163. unused = wpa_s->num_multichan_concurrent - num;
  164. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: num_unused_channels: %d", unused);
  165. return unused;
  166. }
  167. /*
  168. * Get the frequencies that are currently in use by one or more of the virtual
  169. * interfaces, and that are also valid for P2P operation.
  170. */
  171. static unsigned int
  172. wpas_p2p_valid_oper_freqs(struct wpa_supplicant *wpa_s,
  173. struct wpa_used_freq_data *p2p_freqs,
  174. unsigned int len)
  175. {
  176. struct wpa_used_freq_data *freqs;
  177. unsigned int num, i, j;
  178. freqs = os_calloc(wpa_s->num_multichan_concurrent,
  179. sizeof(struct wpa_used_freq_data));
  180. if (!freqs)
  181. return 0;
  182. num = get_shared_radio_freqs_data(wpa_s, freqs,
  183. wpa_s->num_multichan_concurrent);
  184. os_memset(p2p_freqs, 0, sizeof(struct wpa_used_freq_data) * len);
  185. for (i = 0, j = 0; i < num && j < len; i++) {
  186. if (p2p_supported_freq(wpa_s->global->p2p, freqs[i].freq))
  187. p2p_freqs[j++] = freqs[i];
  188. }
  189. os_free(freqs);
  190. dump_freq_data(wpa_s, "valid for P2P", p2p_freqs, j);
  191. return j;
  192. }
  193. static void wpas_p2p_set_own_freq_preference(struct wpa_supplicant *wpa_s,
  194. int freq)
  195. {
  196. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  197. return;
  198. /* Use the wpa_s used to control the P2P Device operation */
  199. wpa_s = wpa_s->global->p2p_init_wpa_s;
  200. if (wpa_s->conf->p2p_ignore_shared_freq &&
  201. freq > 0 && wpa_s->num_multichan_concurrent > 1 &&
  202. wpas_p2p_num_unused_channels(wpa_s) > 0) {
  203. wpa_printf(MSG_DEBUG, "P2P: Ignore own channel preference %d MHz due to p2p_ignore_shared_freq=1 configuration",
  204. freq);
  205. freq = 0;
  206. }
  207. p2p_set_own_freq_preference(wpa_s->global->p2p, freq);
  208. }
  209. static void wpas_p2p_scan_res_handler(struct wpa_supplicant *wpa_s,
  210. struct wpa_scan_results *scan_res)
  211. {
  212. size_t i;
  213. if (wpa_s->p2p_scan_work) {
  214. struct wpa_radio_work *work = wpa_s->p2p_scan_work;
  215. wpa_s->p2p_scan_work = NULL;
  216. radio_work_done(work);
  217. }
  218. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  219. return;
  220. wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS)",
  221. (int) scan_res->num);
  222. for (i = 0; i < scan_res->num; i++) {
  223. struct wpa_scan_res *bss = scan_res->res[i];
  224. struct os_reltime time_tmp_age, entry_ts;
  225. const u8 *ies;
  226. size_t ies_len;
  227. time_tmp_age.sec = bss->age / 1000;
  228. time_tmp_age.usec = (bss->age % 1000) * 1000;
  229. os_reltime_sub(&scan_res->fetch_time, &time_tmp_age, &entry_ts);
  230. ies = (const u8 *) (bss + 1);
  231. ies_len = bss->ie_len;
  232. if (bss->beacon_ie_len > 0 &&
  233. !wpa_scan_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE) &&
  234. wpa_scan_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE)) {
  235. wpa_printf(MSG_DEBUG, "P2P: Use P2P IE(s) from Beacon frame since no P2P IE(s) in Probe Response frames received for "
  236. MACSTR, MAC2STR(bss->bssid));
  237. ies = ies + ies_len;
  238. ies_len = bss->beacon_ie_len;
  239. }
  240. if (p2p_scan_res_handler(wpa_s->global->p2p, bss->bssid,
  241. bss->freq, &entry_ts, bss->level,
  242. ies, ies_len) > 0)
  243. break;
  244. }
  245. p2p_scan_res_handled(wpa_s->global->p2p);
  246. }
  247. static void wpas_p2p_trigger_scan_cb(struct wpa_radio_work *work, int deinit)
  248. {
  249. struct wpa_supplicant *wpa_s = work->wpa_s;
  250. struct wpa_driver_scan_params *params = work->ctx;
  251. int ret;
  252. if (deinit) {
  253. if (!work->started) {
  254. wpa_scan_free_params(params);
  255. return;
  256. }
  257. wpa_s->p2p_scan_work = NULL;
  258. return;
  259. }
  260. ret = wpa_drv_scan(wpa_s, params);
  261. wpa_scan_free_params(params);
  262. work->ctx = NULL;
  263. if (ret) {
  264. radio_work_done(work);
  265. p2p_notify_scan_trigger_status(wpa_s->global->p2p, ret);
  266. return;
  267. }
  268. p2p_notify_scan_trigger_status(wpa_s->global->p2p, ret);
  269. os_get_reltime(&wpa_s->scan_trigger_time);
  270. wpa_s->scan_res_handler = wpas_p2p_scan_res_handler;
  271. wpa_s->own_scan_requested = 1;
  272. wpa_s->p2p_scan_work = work;
  273. }
  274. static int wpas_p2p_search_social_channel(struct wpa_supplicant *wpa_s,
  275. int freq)
  276. {
  277. if (wpa_s->global->p2p_24ghz_social_channels &&
  278. (freq == 2412 || freq == 2437 || freq == 2462)) {
  279. /*
  280. * Search all social channels regardless of whether these have
  281. * been disabled for P2P operating channel use to avoid missing
  282. * peers.
  283. */
  284. return 1;
  285. }
  286. return p2p_supported_freq(wpa_s->global->p2p, freq);
  287. }
  288. static int wpas_p2p_scan(void *ctx, enum p2p_scan_type type, int freq,
  289. unsigned int num_req_dev_types,
  290. const u8 *req_dev_types, const u8 *dev_id, u16 pw_id)
  291. {
  292. struct wpa_supplicant *wpa_s = ctx;
  293. struct wpa_driver_scan_params *params = NULL;
  294. struct wpabuf *wps_ie, *ies;
  295. unsigned int num_channels = 0;
  296. int social_channels_freq[] = { 2412, 2437, 2462, 60480 };
  297. size_t ielen;
  298. u8 *n, i;
  299. unsigned int bands;
  300. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  301. return -1;
  302. if (wpa_s->p2p_scan_work) {
  303. wpa_dbg(wpa_s, MSG_INFO, "P2P: Reject scan trigger since one is already pending");
  304. return -1;
  305. }
  306. params = os_zalloc(sizeof(*params));
  307. if (params == NULL)
  308. return -1;
  309. /* P2P Wildcard SSID */
  310. params->num_ssids = 1;
  311. n = os_malloc(P2P_WILDCARD_SSID_LEN);
  312. if (n == NULL)
  313. goto fail;
  314. os_memcpy(n, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN);
  315. params->ssids[0].ssid = n;
  316. params->ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
  317. wpa_s->wps->dev.p2p = 1;
  318. wps_ie = wps_build_probe_req_ie(pw_id, &wpa_s->wps->dev,
  319. wpa_s->wps->uuid, WPS_REQ_ENROLLEE,
  320. num_req_dev_types, req_dev_types);
  321. if (wps_ie == NULL)
  322. goto fail;
  323. switch (type) {
  324. case P2P_SCAN_SOCIAL:
  325. params->freqs = os_calloc(ARRAY_SIZE(social_channels_freq) + 1,
  326. sizeof(int));
  327. if (params->freqs == NULL)
  328. goto fail;
  329. for (i = 0; i < ARRAY_SIZE(social_channels_freq); i++) {
  330. if (wpas_p2p_search_social_channel(
  331. wpa_s, social_channels_freq[i]))
  332. params->freqs[num_channels++] =
  333. social_channels_freq[i];
  334. }
  335. params->freqs[num_channels++] = 0;
  336. break;
  337. case P2P_SCAN_FULL:
  338. break;
  339. case P2P_SCAN_SPECIFIC:
  340. params->freqs = os_calloc(2, sizeof(int));
  341. if (params->freqs == NULL)
  342. goto fail;
  343. params->freqs[0] = freq;
  344. params->freqs[1] = 0;
  345. break;
  346. case P2P_SCAN_SOCIAL_PLUS_ONE:
  347. params->freqs = os_calloc(ARRAY_SIZE(social_channels_freq) + 2,
  348. sizeof(int));
  349. if (params->freqs == NULL)
  350. goto fail;
  351. for (i = 0; i < ARRAY_SIZE(social_channels_freq); i++) {
  352. if (wpas_p2p_search_social_channel(
  353. wpa_s, social_channels_freq[i]))
  354. params->freqs[num_channels++] =
  355. social_channels_freq[i];
  356. }
  357. if (p2p_supported_freq(wpa_s->global->p2p, freq))
  358. params->freqs[num_channels++] = freq;
  359. params->freqs[num_channels++] = 0;
  360. break;
  361. }
  362. ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
  363. ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
  364. if (ies == NULL) {
  365. wpabuf_free(wps_ie);
  366. goto fail;
  367. }
  368. wpabuf_put_buf(ies, wps_ie);
  369. wpabuf_free(wps_ie);
  370. bands = wpas_get_bands(wpa_s, params->freqs);
  371. p2p_scan_ie(wpa_s->global->p2p, ies, dev_id, bands);
  372. params->p2p_probe = 1;
  373. n = os_malloc(wpabuf_len(ies));
  374. if (n == NULL) {
  375. wpabuf_free(ies);
  376. goto fail;
  377. }
  378. os_memcpy(n, wpabuf_head(ies), wpabuf_len(ies));
  379. params->extra_ies = n;
  380. params->extra_ies_len = wpabuf_len(ies);
  381. wpabuf_free(ies);
  382. radio_remove_works(wpa_s, "p2p-scan", 0);
  383. if (radio_add_work(wpa_s, 0, "p2p-scan", 0, wpas_p2p_trigger_scan_cb,
  384. params) < 0)
  385. goto fail;
  386. return 0;
  387. fail:
  388. wpa_scan_free_params(params);
  389. return -1;
  390. }
  391. static enum wpa_driver_if_type wpas_p2p_if_type(int p2p_group_interface)
  392. {
  393. switch (p2p_group_interface) {
  394. case P2P_GROUP_INTERFACE_PENDING:
  395. return WPA_IF_P2P_GROUP;
  396. case P2P_GROUP_INTERFACE_GO:
  397. return WPA_IF_P2P_GO;
  398. case P2P_GROUP_INTERFACE_CLIENT:
  399. return WPA_IF_P2P_CLIENT;
  400. }
  401. return WPA_IF_P2P_GROUP;
  402. }
  403. static struct wpa_supplicant * wpas_get_p2p_group(struct wpa_supplicant *wpa_s,
  404. const u8 *ssid,
  405. size_t ssid_len, int *go)
  406. {
  407. struct wpa_ssid *s;
  408. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  409. for (s = wpa_s->conf->ssid; s; s = s->next) {
  410. if (s->disabled != 0 || !s->p2p_group ||
  411. s->ssid_len != ssid_len ||
  412. os_memcmp(ssid, s->ssid, ssid_len) != 0)
  413. continue;
  414. if (s->mode == WPAS_MODE_P2P_GO &&
  415. s != wpa_s->current_ssid)
  416. continue;
  417. if (go)
  418. *go = s->mode == WPAS_MODE_P2P_GO;
  419. return wpa_s;
  420. }
  421. }
  422. return NULL;
  423. }
  424. static void run_wpas_p2p_disconnect(void *eloop_ctx, void *timeout_ctx)
  425. {
  426. struct wpa_supplicant *wpa_s = eloop_ctx;
  427. wpa_printf(MSG_DEBUG,
  428. "P2P: Complete previously requested removal of %s",
  429. wpa_s->ifname);
  430. wpas_p2p_disconnect(wpa_s);
  431. }
  432. static int wpas_p2p_disconnect_safely(struct wpa_supplicant *wpa_s,
  433. struct wpa_supplicant *calling_wpa_s)
  434. {
  435. if (calling_wpa_s == wpa_s && wpa_s &&
  436. wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE) {
  437. /*
  438. * The calling wpa_s instance is going to be removed. Do that
  439. * from an eloop callback to keep the instance available until
  440. * the caller has returned. This my be needed, e.g., to provide
  441. * control interface responses on the per-interface socket.
  442. */
  443. if (eloop_register_timeout(0, 0, run_wpas_p2p_disconnect,
  444. wpa_s, NULL) < 0)
  445. return -1;
  446. return 0;
  447. }
  448. return wpas_p2p_disconnect(wpa_s);
  449. }
  450. /* Determine total number of clients in active groups where we are the GO */
  451. static unsigned int p2p_group_go_member_count(struct wpa_supplicant *wpa_s)
  452. {
  453. unsigned int count = 0;
  454. struct wpa_ssid *s;
  455. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  456. for (s = wpa_s->conf->ssid; s; s = s->next) {
  457. wpa_printf(MSG_DEBUG,
  458. "P2P: sup:%p ssid:%p disabled:%d p2p:%d mode:%d",
  459. wpa_s, s, s->disabled, s->p2p_group,
  460. s->mode);
  461. if (!s->disabled && s->p2p_group &&
  462. s->mode == WPAS_MODE_P2P_GO) {
  463. count += p2p_get_group_num_members(
  464. wpa_s->p2p_group);
  465. }
  466. }
  467. }
  468. return count;
  469. }
  470. static unsigned int p2p_is_active_persistent_group(struct wpa_supplicant *wpa_s)
  471. {
  472. return !wpa_s->p2p_mgmt && wpa_s->current_ssid &&
  473. !wpa_s->current_ssid->disabled &&
  474. wpa_s->current_ssid->p2p_group &&
  475. wpa_s->current_ssid->p2p_persistent_group;
  476. }
  477. static unsigned int p2p_is_active_persistent_go(struct wpa_supplicant *wpa_s)
  478. {
  479. return p2p_is_active_persistent_group(wpa_s) &&
  480. wpa_s->current_ssid->mode == WPAS_MODE_P2P_GO;
  481. }
  482. /* Find an interface for a P2P group where we are the GO */
  483. static struct wpa_supplicant *
  484. wpas_p2p_get_go_group(struct wpa_supplicant *wpa_s)
  485. {
  486. struct wpa_supplicant *save = NULL;
  487. if (!wpa_s)
  488. return NULL;
  489. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  490. if (!p2p_is_active_persistent_go(wpa_s))
  491. continue;
  492. /* Prefer a group with connected clients */
  493. if (p2p_get_group_num_members(wpa_s->p2p_group))
  494. return wpa_s;
  495. save = wpa_s;
  496. }
  497. /* No group with connected clients, so pick the one without (if any) */
  498. return save;
  499. }
  500. static unsigned int p2p_is_active_persistent_cli(struct wpa_supplicant *wpa_s)
  501. {
  502. return p2p_is_active_persistent_group(wpa_s) &&
  503. wpa_s->current_ssid->mode == WPAS_MODE_INFRA;
  504. }
  505. /* Find an interface for a P2P group where we are the P2P Client */
  506. static struct wpa_supplicant *
  507. wpas_p2p_get_cli_group(struct wpa_supplicant *wpa_s)
  508. {
  509. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  510. if (p2p_is_active_persistent_cli(wpa_s))
  511. return wpa_s;
  512. }
  513. return NULL;
  514. }
  515. /* Find a persistent group where we are the GO */
  516. static struct wpa_ssid *
  517. wpas_p2p_get_persistent_go(struct wpa_supplicant *wpa_s)
  518. {
  519. struct wpa_ssid *s;
  520. for (s = wpa_s->conf->ssid; s; s = s->next) {
  521. if (s->disabled == 2 && s->mode == WPAS_MODE_P2P_GO)
  522. return s;
  523. }
  524. return NULL;
  525. }
  526. static u8 p2ps_group_capability(void *ctx, u8 incoming, u8 role,
  527. unsigned int *force_freq,
  528. unsigned int *pref_freq)
  529. {
  530. struct wpa_supplicant *wpa_s = ctx;
  531. struct wpa_ssid *s;
  532. u8 conncap = P2PS_SETUP_NONE;
  533. unsigned int owned_members = 0;
  534. struct wpa_supplicant *go_wpa_s, *cli_wpa_s;
  535. struct wpa_ssid *persistent_go;
  536. int p2p_no_group_iface;
  537. unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS], size;
  538. wpa_printf(MSG_DEBUG, "P2P: Conncap - in:%d role:%d", incoming, role);
  539. if (force_freq)
  540. *force_freq = 0;
  541. if (pref_freq)
  542. *pref_freq = 0;
  543. size = P2P_MAX_PREF_CHANNELS;
  544. if (force_freq && pref_freq &&
  545. !wpas_p2p_setup_freqs(wpa_s, 0, (int *) force_freq,
  546. (int *) pref_freq, 0, pref_freq_list, &size))
  547. wpas_p2p_set_own_freq_preference(wpa_s,
  548. *force_freq ? *force_freq :
  549. *pref_freq);
  550. /*
  551. * For non-concurrent capable devices:
  552. * If persistent_go, then no new.
  553. * If GO, then no client.
  554. * If client, then no GO.
  555. */
  556. go_wpa_s = wpas_p2p_get_go_group(wpa_s);
  557. if (go_wpa_s)
  558. owned_members = p2p_get_group_num_members(go_wpa_s->p2p_group);
  559. persistent_go = wpas_p2p_get_persistent_go(wpa_s);
  560. p2p_no_group_iface = !wpas_p2p_create_iface(wpa_s);
  561. cli_wpa_s = wpas_p2p_get_cli_group(wpa_s);
  562. wpa_printf(MSG_DEBUG,
  563. "P2P: GO(iface)=%p members=%u CLI(iface)=%p persistent(ssid)=%p",
  564. go_wpa_s, owned_members, cli_wpa_s, persistent_go);
  565. /* If not concurrent, restrict our choices */
  566. if (p2p_no_group_iface) {
  567. wpa_printf(MSG_DEBUG, "P2P: p2p_no_group_iface");
  568. if (cli_wpa_s)
  569. return P2PS_SETUP_NONE;
  570. if (go_wpa_s) {
  571. if (role == P2PS_SETUP_CLIENT ||
  572. incoming == P2PS_SETUP_GROUP_OWNER ||
  573. p2p_client_limit_reached(go_wpa_s->p2p_group))
  574. return P2PS_SETUP_NONE;
  575. return P2PS_SETUP_GROUP_OWNER;
  576. }
  577. if (persistent_go) {
  578. if (role == P2PS_SETUP_NONE || role == P2PS_SETUP_NEW) {
  579. if (!incoming)
  580. return P2PS_SETUP_GROUP_OWNER |
  581. P2PS_SETUP_CLIENT;
  582. if (incoming == P2PS_SETUP_NEW) {
  583. u8 r;
  584. if (os_get_random(&r, sizeof(r)) < 0 ||
  585. (r & 1))
  586. return P2PS_SETUP_CLIENT;
  587. return P2PS_SETUP_GROUP_OWNER;
  588. }
  589. }
  590. }
  591. }
  592. /* If a required role has been specified, handle it here */
  593. if (role && role != P2PS_SETUP_NEW) {
  594. switch (incoming) {
  595. case P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_NEW:
  596. case P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_CLIENT:
  597. /*
  598. * Peer has an active GO, so if the role allows it and
  599. * we do not have any active roles, become client.
  600. */
  601. if ((role & P2PS_SETUP_CLIENT) && !go_wpa_s &&
  602. !cli_wpa_s)
  603. return P2PS_SETUP_CLIENT;
  604. /* fall through */
  605. case P2PS_SETUP_NONE:
  606. case P2PS_SETUP_NEW:
  607. conncap = role;
  608. goto grp_owner;
  609. case P2PS_SETUP_GROUP_OWNER:
  610. /*
  611. * Must be a complimentary role - cannot be a client to
  612. * more than one peer.
  613. */
  614. if (incoming == role || cli_wpa_s)
  615. return P2PS_SETUP_NONE;
  616. return P2PS_SETUP_CLIENT;
  617. case P2PS_SETUP_CLIENT:
  618. /* Must be a complimentary role */
  619. if (incoming != role) {
  620. conncap = P2PS_SETUP_GROUP_OWNER;
  621. goto grp_owner;
  622. }
  623. default:
  624. return P2PS_SETUP_NONE;
  625. }
  626. }
  627. /*
  628. * For now, we only will support ownership of one group, and being a
  629. * client of one group. Therefore, if we have either an existing GO
  630. * group, or an existing client group, we will not do a new GO
  631. * negotiation, but rather try to re-use the existing groups.
  632. */
  633. switch (incoming) {
  634. case P2PS_SETUP_NONE:
  635. case P2PS_SETUP_NEW:
  636. if (cli_wpa_s)
  637. conncap = P2PS_SETUP_GROUP_OWNER;
  638. else if (!owned_members)
  639. conncap = P2PS_SETUP_NEW;
  640. else if (incoming == P2PS_SETUP_NONE)
  641. conncap = P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_CLIENT;
  642. else
  643. conncap = P2PS_SETUP_CLIENT;
  644. break;
  645. case P2PS_SETUP_CLIENT:
  646. conncap = P2PS_SETUP_GROUP_OWNER;
  647. break;
  648. case P2PS_SETUP_GROUP_OWNER:
  649. if (!cli_wpa_s)
  650. conncap = P2PS_SETUP_CLIENT;
  651. break;
  652. case P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_NEW:
  653. case P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_CLIENT:
  654. if (cli_wpa_s)
  655. conncap = P2PS_SETUP_GROUP_OWNER;
  656. else {
  657. u8 r;
  658. if (os_get_random(&r, sizeof(r)) < 0 ||
  659. (r & 1))
  660. conncap = P2PS_SETUP_CLIENT;
  661. else
  662. conncap = P2PS_SETUP_GROUP_OWNER;
  663. }
  664. break;
  665. default:
  666. return P2PS_SETUP_NONE;
  667. }
  668. grp_owner:
  669. if ((conncap & P2PS_SETUP_GROUP_OWNER) ||
  670. (!incoming && (conncap & P2PS_SETUP_NEW))) {
  671. if (go_wpa_s && p2p_client_limit_reached(go_wpa_s->p2p_group))
  672. conncap &= ~P2PS_SETUP_GROUP_OWNER;
  673. s = wpas_p2p_get_persistent_go(wpa_s);
  674. if (!s && !go_wpa_s && p2p_no_group_iface) {
  675. p2p_set_intended_addr(wpa_s->global->p2p,
  676. wpa_s->p2p_mgmt ?
  677. wpa_s->parent->own_addr :
  678. wpa_s->own_addr);
  679. } else if (!s && !go_wpa_s) {
  680. if (wpas_p2p_add_group_interface(wpa_s,
  681. WPA_IF_P2P_GROUP) < 0) {
  682. wpa_printf(MSG_ERROR,
  683. "P2P: Failed to allocate a new interface for the group");
  684. return P2PS_SETUP_NONE;
  685. }
  686. wpa_s->global->pending_group_iface_for_p2ps = 1;
  687. p2p_set_intended_addr(wpa_s->global->p2p,
  688. wpa_s->pending_interface_addr);
  689. }
  690. }
  691. return conncap;
  692. }
  693. static int wpas_p2p_group_delete(struct wpa_supplicant *wpa_s,
  694. enum p2p_group_removal_reason removal_reason)
  695. {
  696. struct wpa_ssid *ssid;
  697. char *gtype;
  698. const char *reason;
  699. ssid = wpa_s->current_ssid;
  700. if (ssid == NULL) {
  701. /*
  702. * The current SSID was not known, but there may still be a
  703. * pending P2P group interface waiting for provisioning or a
  704. * P2P group that is trying to reconnect.
  705. */
  706. ssid = wpa_s->conf->ssid;
  707. while (ssid) {
  708. if (ssid->p2p_group && ssid->disabled != 2)
  709. break;
  710. ssid = ssid->next;
  711. }
  712. if (ssid == NULL &&
  713. wpa_s->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)
  714. {
  715. wpa_printf(MSG_ERROR, "P2P: P2P group interface "
  716. "not found");
  717. return -1;
  718. }
  719. }
  720. if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO)
  721. gtype = "GO";
  722. else if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT ||
  723. (ssid && ssid->mode == WPAS_MODE_INFRA)) {
  724. wpa_s->reassociate = 0;
  725. wpa_s->disconnected = 1;
  726. gtype = "client";
  727. } else
  728. gtype = "GO";
  729. if (removal_reason != P2P_GROUP_REMOVAL_SILENT && ssid)
  730. wpas_notify_p2p_group_removed(wpa_s, ssid, gtype);
  731. if (os_strcmp(gtype, "client") == 0) {
  732. wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  733. if (eloop_is_timeout_registered(wpas_p2p_psk_failure_removal,
  734. wpa_s, NULL)) {
  735. wpa_printf(MSG_DEBUG,
  736. "P2P: PSK failure removal was scheduled, so use PSK failure as reason for group removal");
  737. removal_reason = P2P_GROUP_REMOVAL_PSK_FAILURE;
  738. eloop_cancel_timeout(wpas_p2p_psk_failure_removal,
  739. wpa_s, NULL);
  740. }
  741. }
  742. if (wpa_s->cross_connect_in_use) {
  743. wpa_s->cross_connect_in_use = 0;
  744. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  745. P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
  746. wpa_s->ifname, wpa_s->cross_connect_uplink);
  747. }
  748. switch (removal_reason) {
  749. case P2P_GROUP_REMOVAL_REQUESTED:
  750. reason = " reason=REQUESTED";
  751. break;
  752. case P2P_GROUP_REMOVAL_FORMATION_FAILED:
  753. reason = " reason=FORMATION_FAILED";
  754. break;
  755. case P2P_GROUP_REMOVAL_IDLE_TIMEOUT:
  756. reason = " reason=IDLE";
  757. break;
  758. case P2P_GROUP_REMOVAL_UNAVAILABLE:
  759. reason = " reason=UNAVAILABLE";
  760. break;
  761. case P2P_GROUP_REMOVAL_GO_ENDING_SESSION:
  762. reason = " reason=GO_ENDING_SESSION";
  763. break;
  764. case P2P_GROUP_REMOVAL_PSK_FAILURE:
  765. reason = " reason=PSK_FAILURE";
  766. break;
  767. case P2P_GROUP_REMOVAL_FREQ_CONFLICT:
  768. reason = " reason=FREQ_CONFLICT";
  769. break;
  770. default:
  771. reason = "";
  772. break;
  773. }
  774. if (removal_reason != P2P_GROUP_REMOVAL_SILENT) {
  775. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  776. P2P_EVENT_GROUP_REMOVED "%s %s%s",
  777. wpa_s->ifname, gtype, reason);
  778. }
  779. if (eloop_cancel_timeout(wpas_p2p_group_freq_conflict, wpa_s, NULL) > 0)
  780. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group freq_conflict timeout");
  781. if (eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
  782. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
  783. if (eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  784. wpa_s->p2pdev, NULL) > 0) {
  785. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group formation "
  786. "timeout");
  787. wpa_s->p2p_in_provisioning = 0;
  788. wpas_p2p_group_formation_failed(wpa_s, 1);
  789. }
  790. wpa_s->p2p_in_invitation = 0;
  791. eloop_cancel_timeout(wpas_p2p_move_go, wpa_s, NULL);
  792. eloop_cancel_timeout(wpas_p2p_reconsider_moving_go, wpa_s, NULL);
  793. /*
  794. * Make sure wait for the first client does not remain active after the
  795. * group has been removed.
  796. */
  797. wpa_s->global->p2p_go_wait_client.sec = 0;
  798. if (wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE) {
  799. struct wpa_global *global;
  800. char *ifname;
  801. enum wpa_driver_if_type type;
  802. wpa_printf(MSG_DEBUG, "P2P: Remove group interface %s",
  803. wpa_s->ifname);
  804. global = wpa_s->global;
  805. ifname = os_strdup(wpa_s->ifname);
  806. type = wpas_p2p_if_type(wpa_s->p2p_group_interface);
  807. eloop_cancel_timeout(run_wpas_p2p_disconnect, wpa_s, NULL);
  808. wpa_supplicant_remove_iface(wpa_s->global, wpa_s, 0);
  809. wpa_s = global->ifaces;
  810. if (wpa_s && ifname)
  811. wpa_drv_if_remove(wpa_s, type, ifname);
  812. os_free(ifname);
  813. return 1;
  814. }
  815. /*
  816. * The primary interface was used for P2P group operations, so
  817. * need to reset its p2pdev.
  818. */
  819. wpa_s->p2pdev = wpa_s->parent;
  820. if (!wpa_s->p2p_go_group_formation_completed) {
  821. wpa_s->global->p2p_group_formation = NULL;
  822. wpa_s->p2p_in_provisioning = 0;
  823. }
  824. wpa_s->show_group_started = 0;
  825. os_free(wpa_s->go_params);
  826. wpa_s->go_params = NULL;
  827. os_free(wpa_s->p2p_group_common_freqs);
  828. wpa_s->p2p_group_common_freqs = NULL;
  829. wpa_s->p2p_group_common_freqs_num = 0;
  830. wpa_s->waiting_presence_resp = 0;
  831. wpa_printf(MSG_DEBUG, "P2P: Remove temporary group network");
  832. if (ssid && (ssid->p2p_group ||
  833. ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION ||
  834. (ssid->key_mgmt & WPA_KEY_MGMT_WPS))) {
  835. int id = ssid->id;
  836. if (ssid == wpa_s->current_ssid) {
  837. wpa_sm_set_config(wpa_s->wpa, NULL);
  838. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  839. wpa_s->current_ssid = NULL;
  840. }
  841. /*
  842. * Networks objects created during any P2P activities are not
  843. * exposed out as they might/will confuse certain non-P2P aware
  844. * applications since these network objects won't behave like
  845. * regular ones.
  846. *
  847. * Likewise, we don't send out network removed signals for such
  848. * network objects.
  849. */
  850. wpa_config_remove_network(wpa_s->conf, id);
  851. wpa_supplicant_clear_status(wpa_s);
  852. wpa_supplicant_cancel_sched_scan(wpa_s);
  853. } else {
  854. wpa_printf(MSG_DEBUG, "P2P: Temporary group network not "
  855. "found");
  856. }
  857. if (wpa_s->ap_iface)
  858. wpa_supplicant_ap_deinit(wpa_s);
  859. else
  860. wpa_drv_deinit_p2p_cli(wpa_s);
  861. os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
  862. return 0;
  863. }
  864. static int wpas_p2p_persistent_group(struct wpa_supplicant *wpa_s,
  865. u8 *go_dev_addr,
  866. const u8 *ssid, size_t ssid_len)
  867. {
  868. struct wpa_bss *bss;
  869. const u8 *bssid;
  870. struct wpabuf *p2p;
  871. u8 group_capab;
  872. const u8 *addr;
  873. if (wpa_s->go_params)
  874. bssid = wpa_s->go_params->peer_interface_addr;
  875. else
  876. bssid = wpa_s->bssid;
  877. bss = wpa_bss_get(wpa_s, bssid, ssid, ssid_len);
  878. if (bss == NULL && wpa_s->go_params &&
  879. !is_zero_ether_addr(wpa_s->go_params->peer_device_addr))
  880. bss = wpa_bss_get_p2p_dev_addr(
  881. wpa_s, wpa_s->go_params->peer_device_addr);
  882. if (bss == NULL) {
  883. u8 iface_addr[ETH_ALEN];
  884. if (p2p_get_interface_addr(wpa_s->global->p2p, bssid,
  885. iface_addr) == 0)
  886. bss = wpa_bss_get(wpa_s, iface_addr, ssid, ssid_len);
  887. }
  888. if (bss == NULL) {
  889. wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
  890. "group is persistent - BSS " MACSTR " not found",
  891. MAC2STR(bssid));
  892. return 0;
  893. }
  894. p2p = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
  895. if (p2p == NULL)
  896. p2p = wpa_bss_get_vendor_ie_multi_beacon(bss,
  897. P2P_IE_VENDOR_TYPE);
  898. if (p2p == NULL) {
  899. wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
  900. "group is persistent - BSS " MACSTR
  901. " did not include P2P IE", MAC2STR(bssid));
  902. wpa_hexdump(MSG_DEBUG, "P2P: Probe Response IEs",
  903. (u8 *) (bss + 1), bss->ie_len);
  904. wpa_hexdump(MSG_DEBUG, "P2P: Beacon IEs",
  905. ((u8 *) bss + 1) + bss->ie_len,
  906. bss->beacon_ie_len);
  907. return 0;
  908. }
  909. group_capab = p2p_get_group_capab(p2p);
  910. addr = p2p_get_go_dev_addr(p2p);
  911. wpa_printf(MSG_DEBUG, "P2P: Checking whether group is persistent: "
  912. "group_capab=0x%x", group_capab);
  913. if (addr) {
  914. os_memcpy(go_dev_addr, addr, ETH_ALEN);
  915. wpa_printf(MSG_DEBUG, "P2P: GO Device Address " MACSTR,
  916. MAC2STR(addr));
  917. } else
  918. os_memset(go_dev_addr, 0, ETH_ALEN);
  919. wpabuf_free(p2p);
  920. wpa_printf(MSG_DEBUG, "P2P: BSS " MACSTR " group_capab=0x%x "
  921. "go_dev_addr=" MACSTR,
  922. MAC2STR(bssid), group_capab, MAC2STR(go_dev_addr));
  923. return !!(group_capab & P2P_GROUP_CAPAB_PERSISTENT_GROUP);
  924. }
  925. static int wpas_p2p_store_persistent_group(struct wpa_supplicant *wpa_s,
  926. struct wpa_ssid *ssid,
  927. const u8 *go_dev_addr)
  928. {
  929. struct wpa_ssid *s;
  930. int changed = 0;
  931. wpa_printf(MSG_DEBUG, "P2P: Storing credentials for a persistent "
  932. "group (GO Dev Addr " MACSTR ")", MAC2STR(go_dev_addr));
  933. for (s = wpa_s->conf->ssid; s; s = s->next) {
  934. if (s->disabled == 2 &&
  935. os_memcmp(go_dev_addr, s->bssid, ETH_ALEN) == 0 &&
  936. s->ssid_len == ssid->ssid_len &&
  937. os_memcmp(ssid->ssid, s->ssid, ssid->ssid_len) == 0)
  938. break;
  939. }
  940. if (s) {
  941. wpa_printf(MSG_DEBUG, "P2P: Update existing persistent group "
  942. "entry");
  943. if (ssid->passphrase && !s->passphrase)
  944. changed = 1;
  945. else if (ssid->passphrase && s->passphrase &&
  946. os_strcmp(ssid->passphrase, s->passphrase) != 0)
  947. changed = 1;
  948. } else {
  949. wpa_printf(MSG_DEBUG, "P2P: Create a new persistent group "
  950. "entry");
  951. changed = 1;
  952. s = wpa_config_add_network(wpa_s->conf);
  953. if (s == NULL)
  954. return -1;
  955. /*
  956. * Instead of network_added we emit persistent_group_added
  957. * notification. Also to keep the defense checks in
  958. * persistent_group obj registration method, we set the
  959. * relevant flags in s to designate it as a persistent group.
  960. */
  961. s->p2p_group = 1;
  962. s->p2p_persistent_group = 1;
  963. wpas_notify_persistent_group_added(wpa_s, s);
  964. wpa_config_set_network_defaults(s);
  965. }
  966. s->p2p_group = 1;
  967. s->p2p_persistent_group = 1;
  968. s->disabled = 2;
  969. s->bssid_set = 1;
  970. os_memcpy(s->bssid, go_dev_addr, ETH_ALEN);
  971. s->mode = ssid->mode;
  972. s->auth_alg = WPA_AUTH_ALG_OPEN;
  973. s->key_mgmt = WPA_KEY_MGMT_PSK;
  974. s->proto = WPA_PROTO_RSN;
  975. s->pbss = ssid->pbss;
  976. s->pairwise_cipher = ssid->pbss ? WPA_CIPHER_GCMP : WPA_CIPHER_CCMP;
  977. s->export_keys = 1;
  978. if (ssid->passphrase) {
  979. os_free(s->passphrase);
  980. s->passphrase = os_strdup(ssid->passphrase);
  981. }
  982. if (ssid->psk_set) {
  983. s->psk_set = 1;
  984. os_memcpy(s->psk, ssid->psk, 32);
  985. }
  986. if (s->passphrase && !s->psk_set)
  987. wpa_config_update_psk(s);
  988. if (s->ssid == NULL || s->ssid_len < ssid->ssid_len) {
  989. os_free(s->ssid);
  990. s->ssid = os_malloc(ssid->ssid_len);
  991. }
  992. if (s->ssid) {
  993. s->ssid_len = ssid->ssid_len;
  994. os_memcpy(s->ssid, ssid->ssid, s->ssid_len);
  995. }
  996. if (ssid->mode == WPAS_MODE_P2P_GO && wpa_s->global->add_psk) {
  997. dl_list_add(&s->psk_list, &wpa_s->global->add_psk->list);
  998. wpa_s->global->add_psk = NULL;
  999. changed = 1;
  1000. }
  1001. if (changed && wpa_s->conf->update_config &&
  1002. wpa_config_write(wpa_s->confname, wpa_s->conf)) {
  1003. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  1004. }
  1005. return s->id;
  1006. }
  1007. static void wpas_p2p_add_persistent_group_client(struct wpa_supplicant *wpa_s,
  1008. const u8 *addr)
  1009. {
  1010. struct wpa_ssid *ssid, *s;
  1011. u8 *n;
  1012. size_t i;
  1013. int found = 0;
  1014. struct wpa_supplicant *p2p_wpa_s = wpa_s->global->p2p_init_wpa_s;
  1015. ssid = wpa_s->current_ssid;
  1016. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
  1017. !ssid->p2p_persistent_group)
  1018. return;
  1019. for (s = p2p_wpa_s->conf->ssid; s; s = s->next) {
  1020. if (s->disabled != 2 || s->mode != WPAS_MODE_P2P_GO)
  1021. continue;
  1022. if (s->ssid_len == ssid->ssid_len &&
  1023. os_memcmp(s->ssid, ssid->ssid, s->ssid_len) == 0)
  1024. break;
  1025. }
  1026. if (s == NULL)
  1027. return;
  1028. for (i = 0; s->p2p_client_list && i < s->num_p2p_clients; i++) {
  1029. if (os_memcmp(s->p2p_client_list + i * 2 * ETH_ALEN, addr,
  1030. ETH_ALEN) != 0)
  1031. continue;
  1032. if (i == s->num_p2p_clients - 1)
  1033. return; /* already the most recent entry */
  1034. /* move the entry to mark it most recent */
  1035. os_memmove(s->p2p_client_list + i * 2 * ETH_ALEN,
  1036. s->p2p_client_list + (i + 1) * 2 * ETH_ALEN,
  1037. (s->num_p2p_clients - i - 1) * 2 * ETH_ALEN);
  1038. os_memcpy(s->p2p_client_list +
  1039. (s->num_p2p_clients - 1) * 2 * ETH_ALEN, addr,
  1040. ETH_ALEN);
  1041. os_memset(s->p2p_client_list +
  1042. (s->num_p2p_clients - 1) * 2 * ETH_ALEN + ETH_ALEN,
  1043. 0xff, ETH_ALEN);
  1044. found = 1;
  1045. break;
  1046. }
  1047. if (!found && s->num_p2p_clients < P2P_MAX_STORED_CLIENTS) {
  1048. n = os_realloc_array(s->p2p_client_list,
  1049. s->num_p2p_clients + 1, 2 * ETH_ALEN);
  1050. if (n == NULL)
  1051. return;
  1052. os_memcpy(n + s->num_p2p_clients * 2 * ETH_ALEN, addr,
  1053. ETH_ALEN);
  1054. os_memset(n + s->num_p2p_clients * 2 * ETH_ALEN + ETH_ALEN,
  1055. 0xff, ETH_ALEN);
  1056. s->p2p_client_list = n;
  1057. s->num_p2p_clients++;
  1058. } else if (!found && s->p2p_client_list) {
  1059. /* Not enough room for an additional entry - drop the oldest
  1060. * entry */
  1061. os_memmove(s->p2p_client_list,
  1062. s->p2p_client_list + 2 * ETH_ALEN,
  1063. (s->num_p2p_clients - 1) * 2 * ETH_ALEN);
  1064. os_memcpy(s->p2p_client_list +
  1065. (s->num_p2p_clients - 1) * 2 * ETH_ALEN,
  1066. addr, ETH_ALEN);
  1067. os_memset(s->p2p_client_list +
  1068. (s->num_p2p_clients - 1) * 2 * ETH_ALEN + ETH_ALEN,
  1069. 0xff, ETH_ALEN);
  1070. }
  1071. if (p2p_wpa_s->conf->update_config &&
  1072. wpa_config_write(p2p_wpa_s->confname, p2p_wpa_s->conf))
  1073. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  1074. }
  1075. static void wpas_p2p_group_started(struct wpa_supplicant *wpa_s,
  1076. int go, struct wpa_ssid *ssid, int freq,
  1077. const u8 *psk, const char *passphrase,
  1078. const u8 *go_dev_addr, int persistent,
  1079. const char *extra)
  1080. {
  1081. const char *ssid_txt;
  1082. char psk_txt[65];
  1083. if (psk)
  1084. wpa_snprintf_hex(psk_txt, sizeof(psk_txt), psk, 32);
  1085. else
  1086. psk_txt[0] = '\0';
  1087. if (ssid)
  1088. ssid_txt = wpa_ssid_txt(ssid->ssid, ssid->ssid_len);
  1089. else
  1090. ssid_txt = "";
  1091. if (passphrase && passphrase[0] == '\0')
  1092. passphrase = NULL;
  1093. /*
  1094. * Include PSK/passphrase only in the control interface message and
  1095. * leave it out from the debug log entry.
  1096. */
  1097. wpa_msg_global_ctrl(wpa_s->p2pdev, MSG_INFO,
  1098. P2P_EVENT_GROUP_STARTED
  1099. "%s %s ssid=\"%s\" freq=%d%s%s%s%s%s go_dev_addr="
  1100. MACSTR "%s%s",
  1101. wpa_s->ifname, go ? "GO" : "client", ssid_txt, freq,
  1102. psk ? " psk=" : "", psk_txt,
  1103. passphrase ? " passphrase=\"" : "",
  1104. passphrase ? passphrase : "",
  1105. passphrase ? "\"" : "",
  1106. MAC2STR(go_dev_addr),
  1107. persistent ? " [PERSISTENT]" : "", extra);
  1108. wpa_printf(MSG_INFO, P2P_EVENT_GROUP_STARTED
  1109. "%s %s ssid=\"%s\" freq=%d go_dev_addr=" MACSTR "%s%s",
  1110. wpa_s->ifname, go ? "GO" : "client", ssid_txt, freq,
  1111. MAC2STR(go_dev_addr), persistent ? " [PERSISTENT]" : "",
  1112. extra);
  1113. }
  1114. static void wpas_group_formation_completed(struct wpa_supplicant *wpa_s,
  1115. int success, int already_deleted)
  1116. {
  1117. struct wpa_ssid *ssid;
  1118. int client;
  1119. int persistent;
  1120. u8 go_dev_addr[ETH_ALEN];
  1121. /*
  1122. * This callback is likely called for the main interface. Update wpa_s
  1123. * to use the group interface if a new interface was created for the
  1124. * group.
  1125. */
  1126. if (wpa_s->global->p2p_group_formation)
  1127. wpa_s = wpa_s->global->p2p_group_formation;
  1128. if (wpa_s->p2p_go_group_formation_completed) {
  1129. wpa_s->global->p2p_group_formation = NULL;
  1130. wpa_s->p2p_in_provisioning = 0;
  1131. }
  1132. wpa_s->p2p_in_invitation = 0;
  1133. wpa_s->group_formation_reported = 1;
  1134. if (!success) {
  1135. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  1136. P2P_EVENT_GROUP_FORMATION_FAILURE);
  1137. wpas_notify_p2p_group_formation_failure(wpa_s, "");
  1138. if (already_deleted)
  1139. return;
  1140. wpas_p2p_group_delete(wpa_s,
  1141. P2P_GROUP_REMOVAL_FORMATION_FAILED);
  1142. return;
  1143. }
  1144. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  1145. P2P_EVENT_GROUP_FORMATION_SUCCESS);
  1146. ssid = wpa_s->current_ssid;
  1147. if (ssid && ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
  1148. ssid->mode = WPAS_MODE_P2P_GO;
  1149. p2p_group_notif_formation_done(wpa_s->p2p_group);
  1150. wpa_supplicant_ap_mac_addr_filter(wpa_s, NULL);
  1151. }
  1152. persistent = 0;
  1153. if (ssid) {
  1154. client = ssid->mode == WPAS_MODE_INFRA;
  1155. if (ssid->mode == WPAS_MODE_P2P_GO) {
  1156. persistent = ssid->p2p_persistent_group;
  1157. os_memcpy(go_dev_addr, wpa_s->global->p2p_dev_addr,
  1158. ETH_ALEN);
  1159. } else
  1160. persistent = wpas_p2p_persistent_group(wpa_s,
  1161. go_dev_addr,
  1162. ssid->ssid,
  1163. ssid->ssid_len);
  1164. } else {
  1165. client = wpa_s->p2p_group_interface ==
  1166. P2P_GROUP_INTERFACE_CLIENT;
  1167. os_memset(go_dev_addr, 0, ETH_ALEN);
  1168. }
  1169. wpa_s->show_group_started = 0;
  1170. if (client) {
  1171. /*
  1172. * Indicate event only after successfully completed 4-way
  1173. * handshake, i.e., when the interface is ready for data
  1174. * packets.
  1175. */
  1176. wpa_s->show_group_started = 1;
  1177. } else {
  1178. wpas_p2p_group_started(wpa_s, 1, ssid,
  1179. ssid ? ssid->frequency : 0,
  1180. ssid && ssid->passphrase == NULL &&
  1181. ssid->psk_set ? ssid->psk : NULL,
  1182. ssid ? ssid->passphrase : NULL,
  1183. go_dev_addr, persistent, "");
  1184. wpas_p2p_cross_connect_setup(wpa_s);
  1185. wpas_p2p_set_group_idle_timeout(wpa_s);
  1186. }
  1187. if (persistent)
  1188. wpas_p2p_store_persistent_group(wpa_s->p2pdev,
  1189. ssid, go_dev_addr);
  1190. else {
  1191. os_free(wpa_s->global->add_psk);
  1192. wpa_s->global->add_psk = NULL;
  1193. }
  1194. if (!client) {
  1195. wpas_notify_p2p_group_started(wpa_s, ssid, persistent, 0, NULL);
  1196. os_get_reltime(&wpa_s->global->p2p_go_wait_client);
  1197. }
  1198. }
  1199. struct send_action_work {
  1200. unsigned int freq;
  1201. u8 dst[ETH_ALEN];
  1202. u8 src[ETH_ALEN];
  1203. u8 bssid[ETH_ALEN];
  1204. size_t len;
  1205. unsigned int wait_time;
  1206. u8 buf[0];
  1207. };
  1208. static void wpas_p2p_free_send_action_work(struct wpa_supplicant *wpa_s)
  1209. {
  1210. struct send_action_work *awork = wpa_s->p2p_send_action_work->ctx;
  1211. wpa_printf(MSG_DEBUG,
  1212. "P2P: Free Action frame radio work @%p (freq=%u dst="
  1213. MACSTR " src=" MACSTR " bssid=" MACSTR " wait_time=%u)",
  1214. wpa_s->p2p_send_action_work, awork->freq,
  1215. MAC2STR(awork->dst), MAC2STR(awork->src),
  1216. MAC2STR(awork->bssid), awork->wait_time);
  1217. wpa_hexdump(MSG_DEBUG, "P2P: Freeing pending Action frame",
  1218. awork->buf, awork->len);
  1219. os_free(awork);
  1220. wpa_s->p2p_send_action_work->ctx = NULL;
  1221. radio_work_done(wpa_s->p2p_send_action_work);
  1222. wpa_s->p2p_send_action_work = NULL;
  1223. }
  1224. static void wpas_p2p_send_action_work_timeout(void *eloop_ctx,
  1225. void *timeout_ctx)
  1226. {
  1227. struct wpa_supplicant *wpa_s = eloop_ctx;
  1228. if (!wpa_s->p2p_send_action_work)
  1229. return;
  1230. wpa_printf(MSG_DEBUG, "P2P: Send Action frame radio work timed out");
  1231. wpas_p2p_free_send_action_work(wpa_s);
  1232. }
  1233. static void wpas_p2p_action_tx_clear(struct wpa_supplicant *wpa_s)
  1234. {
  1235. if (wpa_s->p2p_send_action_work) {
  1236. struct send_action_work *awork;
  1237. awork = wpa_s->p2p_send_action_work->ctx;
  1238. wpa_printf(MSG_DEBUG,
  1239. "P2P: Clear Action TX work @%p (wait_time=%u)",
  1240. wpa_s->p2p_send_action_work, awork->wait_time);
  1241. if (awork->wait_time == 0) {
  1242. wpas_p2p_free_send_action_work(wpa_s);
  1243. } else {
  1244. /*
  1245. * In theory, this should not be needed, but number of
  1246. * places in the P2P code is still using non-zero wait
  1247. * time for the last Action frame in the sequence and
  1248. * some of these do not call send_action_done().
  1249. */
  1250. eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
  1251. wpa_s, NULL);
  1252. eloop_register_timeout(
  1253. 0, awork->wait_time * 1000,
  1254. wpas_p2p_send_action_work_timeout,
  1255. wpa_s, NULL);
  1256. }
  1257. }
  1258. }
  1259. static void wpas_p2p_send_action_tx_status(struct wpa_supplicant *wpa_s,
  1260. unsigned int freq,
  1261. const u8 *dst, const u8 *src,
  1262. const u8 *bssid,
  1263. const u8 *data, size_t data_len,
  1264. enum offchannel_send_action_result
  1265. result)
  1266. {
  1267. enum p2p_send_action_result res = P2P_SEND_ACTION_SUCCESS;
  1268. wpas_p2p_action_tx_clear(wpa_s);
  1269. if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled)
  1270. return;
  1271. switch (result) {
  1272. case OFFCHANNEL_SEND_ACTION_SUCCESS:
  1273. res = P2P_SEND_ACTION_SUCCESS;
  1274. break;
  1275. case OFFCHANNEL_SEND_ACTION_NO_ACK:
  1276. res = P2P_SEND_ACTION_NO_ACK;
  1277. break;
  1278. case OFFCHANNEL_SEND_ACTION_FAILED:
  1279. res = P2P_SEND_ACTION_FAILED;
  1280. break;
  1281. }
  1282. p2p_send_action_cb(wpa_s->global->p2p, freq, dst, src, bssid, res);
  1283. if (result != OFFCHANNEL_SEND_ACTION_SUCCESS &&
  1284. wpa_s->pending_pd_before_join &&
  1285. (os_memcmp(dst, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
  1286. os_memcmp(dst, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0) &&
  1287. wpa_s->p2p_fallback_to_go_neg) {
  1288. wpa_s->pending_pd_before_join = 0;
  1289. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No ACK for PD Req "
  1290. "during p2p_connect-auto");
  1291. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  1292. P2P_EVENT_FALLBACK_TO_GO_NEG
  1293. "reason=no-ACK-to-PD-Req");
  1294. wpas_p2p_fallback_to_go_neg(wpa_s, 0);
  1295. return;
  1296. }
  1297. }
  1298. static void wpas_send_action_cb(struct wpa_radio_work *work, int deinit)
  1299. {
  1300. struct wpa_supplicant *wpa_s = work->wpa_s;
  1301. struct send_action_work *awork = work->ctx;
  1302. if (deinit) {
  1303. if (work->started) {
  1304. eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
  1305. wpa_s, NULL);
  1306. wpa_s->p2p_send_action_work = NULL;
  1307. offchannel_send_action_done(wpa_s);
  1308. }
  1309. os_free(awork);
  1310. return;
  1311. }
  1312. if (offchannel_send_action(wpa_s, awork->freq, awork->dst, awork->src,
  1313. awork->bssid, awork->buf, awork->len,
  1314. awork->wait_time,
  1315. wpas_p2p_send_action_tx_status, 1) < 0) {
  1316. os_free(awork);
  1317. radio_work_done(work);
  1318. return;
  1319. }
  1320. wpa_s->p2p_send_action_work = work;
  1321. }
  1322. static int wpas_send_action_work(struct wpa_supplicant *wpa_s,
  1323. unsigned int freq, const u8 *dst,
  1324. const u8 *src, const u8 *bssid, const u8 *buf,
  1325. size_t len, unsigned int wait_time)
  1326. {
  1327. struct send_action_work *awork;
  1328. if (wpa_s->p2p_send_action_work) {
  1329. wpa_printf(MSG_DEBUG, "P2P: Cannot schedule new p2p-send-action work since one is already pending");
  1330. return -1;
  1331. }
  1332. awork = os_zalloc(sizeof(*awork) + len);
  1333. if (awork == NULL)
  1334. return -1;
  1335. awork->freq = freq;
  1336. os_memcpy(awork->dst, dst, ETH_ALEN);
  1337. os_memcpy(awork->src, src, ETH_ALEN);
  1338. os_memcpy(awork->bssid, bssid, ETH_ALEN);
  1339. awork->len = len;
  1340. awork->wait_time = wait_time;
  1341. os_memcpy(awork->buf, buf, len);
  1342. if (radio_add_work(wpa_s, freq, "p2p-send-action", 0,
  1343. wpas_send_action_cb, awork) < 0) {
  1344. os_free(awork);
  1345. return -1;
  1346. }
  1347. return 0;
  1348. }
  1349. static int wpas_send_action(void *ctx, unsigned int freq, const u8 *dst,
  1350. const u8 *src, const u8 *bssid, const u8 *buf,
  1351. size_t len, unsigned int wait_time)
  1352. {
  1353. struct wpa_supplicant *wpa_s = ctx;
  1354. int listen_freq = -1, send_freq = -1;
  1355. if (wpa_s->p2p_listen_work)
  1356. listen_freq = wpa_s->p2p_listen_work->freq;
  1357. if (wpa_s->p2p_send_action_work)
  1358. send_freq = wpa_s->p2p_send_action_work->freq;
  1359. if (listen_freq != (int) freq && send_freq != (int) freq) {
  1360. wpa_printf(MSG_DEBUG, "P2P: Schedule new radio work for Action frame TX (listen_freq=%d send_freq=%d)",
  1361. listen_freq, send_freq);
  1362. return wpas_send_action_work(wpa_s, freq, dst, src, bssid, buf,
  1363. len, wait_time);
  1364. }
  1365. wpa_printf(MSG_DEBUG, "P2P: Use ongoing radio work for Action frame TX");
  1366. return offchannel_send_action(wpa_s, freq, dst, src, bssid, buf, len,
  1367. wait_time,
  1368. wpas_p2p_send_action_tx_status, 1);
  1369. }
  1370. static void wpas_send_action_done(void *ctx)
  1371. {
  1372. struct wpa_supplicant *wpa_s = ctx;
  1373. if (wpa_s->p2p_send_action_work) {
  1374. eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
  1375. wpa_s, NULL);
  1376. os_free(wpa_s->p2p_send_action_work->ctx);
  1377. radio_work_done(wpa_s->p2p_send_action_work);
  1378. wpa_s->p2p_send_action_work = NULL;
  1379. }
  1380. offchannel_send_action_done(wpa_s);
  1381. }
  1382. static int wpas_copy_go_neg_results(struct wpa_supplicant *wpa_s,
  1383. struct p2p_go_neg_results *params)
  1384. {
  1385. if (wpa_s->go_params == NULL) {
  1386. wpa_s->go_params = os_malloc(sizeof(*params));
  1387. if (wpa_s->go_params == NULL)
  1388. return -1;
  1389. }
  1390. os_memcpy(wpa_s->go_params, params, sizeof(*params));
  1391. return 0;
  1392. }
  1393. static void wpas_start_wps_enrollee(struct wpa_supplicant *wpa_s,
  1394. struct p2p_go_neg_results *res)
  1395. {
  1396. wpa_s->group_formation_reported = 0;
  1397. wpa_printf(MSG_DEBUG, "P2P: Start WPS Enrollee for peer " MACSTR
  1398. " dev_addr " MACSTR " wps_method %d",
  1399. MAC2STR(res->peer_interface_addr),
  1400. MAC2STR(res->peer_device_addr), res->wps_method);
  1401. wpa_hexdump_ascii(MSG_DEBUG, "P2P: Start WPS Enrollee for SSID",
  1402. res->ssid, res->ssid_len);
  1403. wpa_supplicant_ap_deinit(wpa_s);
  1404. wpas_copy_go_neg_results(wpa_s, res);
  1405. if (res->wps_method == WPS_PBC) {
  1406. wpas_wps_start_pbc(wpa_s, res->peer_interface_addr, 1);
  1407. #ifdef CONFIG_WPS_NFC
  1408. } else if (res->wps_method == WPS_NFC) {
  1409. wpas_wps_start_nfc(wpa_s, res->peer_device_addr,
  1410. res->peer_interface_addr,
  1411. wpa_s->p2pdev->p2p_oob_dev_pw,
  1412. wpa_s->p2pdev->p2p_oob_dev_pw_id, 1,
  1413. wpa_s->p2pdev->p2p_oob_dev_pw_id ==
  1414. DEV_PW_NFC_CONNECTION_HANDOVER ?
  1415. wpa_s->p2pdev->p2p_peer_oob_pubkey_hash :
  1416. NULL,
  1417. NULL, 0, 0);
  1418. #endif /* CONFIG_WPS_NFC */
  1419. } else {
  1420. u16 dev_pw_id = DEV_PW_DEFAULT;
  1421. if (wpa_s->p2p_wps_method == WPS_P2PS)
  1422. dev_pw_id = DEV_PW_P2PS_DEFAULT;
  1423. if (wpa_s->p2p_wps_method == WPS_PIN_KEYPAD)
  1424. dev_pw_id = DEV_PW_REGISTRAR_SPECIFIED;
  1425. wpas_wps_start_pin(wpa_s, res->peer_interface_addr,
  1426. wpa_s->p2p_pin, 1, dev_pw_id);
  1427. }
  1428. }
  1429. static void wpas_p2p_add_psk_list(struct wpa_supplicant *wpa_s,
  1430. struct wpa_ssid *ssid)
  1431. {
  1432. struct wpa_ssid *persistent;
  1433. struct psk_list_entry *psk;
  1434. struct hostapd_data *hapd;
  1435. if (!wpa_s->ap_iface)
  1436. return;
  1437. persistent = wpas_p2p_get_persistent(wpa_s->p2pdev, NULL, ssid->ssid,
  1438. ssid->ssid_len);
  1439. if (persistent == NULL)
  1440. return;
  1441. hapd = wpa_s->ap_iface->bss[0];
  1442. dl_list_for_each(psk, &persistent->psk_list, struct psk_list_entry,
  1443. list) {
  1444. struct hostapd_wpa_psk *hpsk;
  1445. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add persistent group PSK entry for "
  1446. MACSTR " psk=%d",
  1447. MAC2STR(psk->addr), psk->p2p);
  1448. hpsk = os_zalloc(sizeof(*hpsk));
  1449. if (hpsk == NULL)
  1450. break;
  1451. os_memcpy(hpsk->psk, psk->psk, PMK_LEN);
  1452. if (psk->p2p)
  1453. os_memcpy(hpsk->p2p_dev_addr, psk->addr, ETH_ALEN);
  1454. else
  1455. os_memcpy(hpsk->addr, psk->addr, ETH_ALEN);
  1456. hpsk->next = hapd->conf->ssid.wpa_psk;
  1457. hapd->conf->ssid.wpa_psk = hpsk;
  1458. }
  1459. }
  1460. static void p2p_go_dump_common_freqs(struct wpa_supplicant *wpa_s)
  1461. {
  1462. unsigned int i;
  1463. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Common group frequencies (len=%u):",
  1464. wpa_s->p2p_group_common_freqs_num);
  1465. for (i = 0; i < wpa_s->p2p_group_common_freqs_num; i++)
  1466. wpa_dbg(wpa_s, MSG_DEBUG, "freq[%u]: %d",
  1467. i, wpa_s->p2p_group_common_freqs[i]);
  1468. }
  1469. static void p2p_go_save_group_common_freqs(struct wpa_supplicant *wpa_s,
  1470. struct p2p_go_neg_results *params)
  1471. {
  1472. unsigned int i, len = int_array_len(wpa_s->go_params->freq_list);
  1473. wpa_s->p2p_group_common_freqs_num = 0;
  1474. os_free(wpa_s->p2p_group_common_freqs);
  1475. wpa_s->p2p_group_common_freqs = os_calloc(len, sizeof(int));
  1476. if (!wpa_s->p2p_group_common_freqs)
  1477. return;
  1478. for (i = 0; i < len; i++) {
  1479. if (!wpa_s->go_params->freq_list[i])
  1480. break;
  1481. wpa_s->p2p_group_common_freqs[i] =
  1482. wpa_s->go_params->freq_list[i];
  1483. }
  1484. wpa_s->p2p_group_common_freqs_num = i;
  1485. }
  1486. static void p2p_config_write(struct wpa_supplicant *wpa_s)
  1487. {
  1488. #ifndef CONFIG_NO_CONFIG_WRITE
  1489. if (wpa_s->p2pdev->conf->update_config &&
  1490. wpa_config_write(wpa_s->p2pdev->confname, wpa_s->p2pdev->conf))
  1491. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  1492. #endif /* CONFIG_NO_CONFIG_WRITE */
  1493. }
  1494. static void p2p_go_configured(void *ctx, void *data)
  1495. {
  1496. struct wpa_supplicant *wpa_s = ctx;
  1497. struct p2p_go_neg_results *params = data;
  1498. struct wpa_ssid *ssid;
  1499. wpa_s->ap_configured_cb = NULL;
  1500. wpa_s->ap_configured_cb_ctx = NULL;
  1501. wpa_s->ap_configured_cb_data = NULL;
  1502. if (!wpa_s->go_params) {
  1503. wpa_printf(MSG_ERROR,
  1504. "P2P: p2p_go_configured() called with wpa_s->go_params == NULL");
  1505. return;
  1506. }
  1507. p2p_go_save_group_common_freqs(wpa_s, params);
  1508. p2p_go_dump_common_freqs(wpa_s);
  1509. ssid = wpa_s->current_ssid;
  1510. if (ssid && ssid->mode == WPAS_MODE_P2P_GO) {
  1511. wpa_printf(MSG_DEBUG, "P2P: Group setup without provisioning");
  1512. if (wpa_s->global->p2p_group_formation == wpa_s)
  1513. wpa_s->global->p2p_group_formation = NULL;
  1514. wpas_p2p_group_started(wpa_s, 1, ssid, ssid->frequency,
  1515. params->passphrase[0] == '\0' ?
  1516. params->psk : NULL,
  1517. params->passphrase,
  1518. wpa_s->global->p2p_dev_addr,
  1519. params->persistent_group, "");
  1520. wpa_s->group_formation_reported = 1;
  1521. if (wpa_s->p2pdev->p2ps_method_config_any) {
  1522. if (is_zero_ether_addr(wpa_s->p2pdev->p2ps_join_addr)) {
  1523. wpa_dbg(wpa_s, MSG_DEBUG,
  1524. "P2PS: Setting default PIN for ANY");
  1525. wpa_supplicant_ap_wps_pin(wpa_s, NULL,
  1526. "12345670", NULL, 0,
  1527. 0);
  1528. } else {
  1529. wpa_dbg(wpa_s, MSG_DEBUG,
  1530. "P2PS: Setting default PIN for " MACSTR,
  1531. MAC2STR(wpa_s->p2pdev->p2ps_join_addr));
  1532. wpa_supplicant_ap_wps_pin(
  1533. wpa_s, wpa_s->p2pdev->p2ps_join_addr,
  1534. "12345670", NULL, 0, 0);
  1535. }
  1536. wpa_s->p2pdev->p2ps_method_config_any = 0;
  1537. }
  1538. os_get_reltime(&wpa_s->global->p2p_go_wait_client);
  1539. if (params->persistent_group) {
  1540. wpas_p2p_store_persistent_group(
  1541. wpa_s->p2pdev, ssid,
  1542. wpa_s->global->p2p_dev_addr);
  1543. wpas_p2p_add_psk_list(wpa_s, ssid);
  1544. }
  1545. wpas_notify_p2p_group_started(wpa_s, ssid,
  1546. params->persistent_group, 0,
  1547. NULL);
  1548. wpas_p2p_cross_connect_setup(wpa_s);
  1549. wpas_p2p_set_group_idle_timeout(wpa_s);
  1550. if (wpa_s->p2p_first_connection_timeout) {
  1551. wpa_dbg(wpa_s, MSG_DEBUG,
  1552. "P2P: Start group formation timeout of %d seconds until first data connection on GO",
  1553. wpa_s->p2p_first_connection_timeout);
  1554. wpa_s->p2p_go_group_formation_completed = 0;
  1555. wpa_s->global->p2p_group_formation = wpa_s;
  1556. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  1557. wpa_s->p2pdev, NULL);
  1558. eloop_register_timeout(
  1559. wpa_s->p2p_first_connection_timeout, 0,
  1560. wpas_p2p_group_formation_timeout,
  1561. wpa_s->p2pdev, NULL);
  1562. }
  1563. return;
  1564. }
  1565. wpa_printf(MSG_DEBUG, "P2P: Setting up WPS for GO provisioning");
  1566. if (wpa_supplicant_ap_mac_addr_filter(wpa_s,
  1567. params->peer_interface_addr)) {
  1568. wpa_printf(MSG_DEBUG, "P2P: Failed to setup MAC address "
  1569. "filtering");
  1570. return;
  1571. }
  1572. if (params->wps_method == WPS_PBC) {
  1573. wpa_supplicant_ap_wps_pbc(wpa_s, params->peer_interface_addr,
  1574. params->peer_device_addr);
  1575. #ifdef CONFIG_WPS_NFC
  1576. } else if (params->wps_method == WPS_NFC) {
  1577. if (wpa_s->p2pdev->p2p_oob_dev_pw_id !=
  1578. DEV_PW_NFC_CONNECTION_HANDOVER &&
  1579. !wpa_s->p2pdev->p2p_oob_dev_pw) {
  1580. wpa_printf(MSG_DEBUG, "P2P: No NFC Dev Pw known");
  1581. return;
  1582. }
  1583. wpas_ap_wps_add_nfc_pw(
  1584. wpa_s, wpa_s->p2pdev->p2p_oob_dev_pw_id,
  1585. wpa_s->p2pdev->p2p_oob_dev_pw,
  1586. wpa_s->p2pdev->p2p_peer_oob_pk_hash_known ?
  1587. wpa_s->p2pdev->p2p_peer_oob_pubkey_hash : NULL);
  1588. #endif /* CONFIG_WPS_NFC */
  1589. } else if (wpa_s->p2p_pin[0])
  1590. wpa_supplicant_ap_wps_pin(wpa_s, params->peer_interface_addr,
  1591. wpa_s->p2p_pin, NULL, 0, 0);
  1592. os_free(wpa_s->go_params);
  1593. wpa_s->go_params = NULL;
  1594. }
  1595. static void wpas_start_wps_go(struct wpa_supplicant *wpa_s,
  1596. struct p2p_go_neg_results *params,
  1597. int group_formation)
  1598. {
  1599. struct wpa_ssid *ssid;
  1600. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Starting GO");
  1601. if (wpas_copy_go_neg_results(wpa_s, params) < 0) {
  1602. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not copy GO Negotiation "
  1603. "results");
  1604. return;
  1605. }
  1606. ssid = wpa_config_add_network(wpa_s->conf);
  1607. if (ssid == NULL) {
  1608. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not add network for GO");
  1609. return;
  1610. }
  1611. wpa_s->show_group_started = 0;
  1612. wpa_s->p2p_go_group_formation_completed = 0;
  1613. wpa_s->group_formation_reported = 0;
  1614. os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
  1615. wpa_config_set_network_defaults(ssid);
  1616. ssid->temporary = 1;
  1617. ssid->p2p_group = 1;
  1618. ssid->p2p_persistent_group = !!params->persistent_group;
  1619. ssid->mode = group_formation ? WPAS_MODE_P2P_GROUP_FORMATION :
  1620. WPAS_MODE_P2P_GO;
  1621. ssid->frequency = params->freq;
  1622. ssid->ht40 = params->ht40;
  1623. ssid->vht = params->vht;
  1624. ssid->max_oper_chwidth = params->max_oper_chwidth;
  1625. ssid->vht_center_freq2 = params->vht_center_freq2;
  1626. ssid->ssid = os_zalloc(params->ssid_len + 1);
  1627. if (ssid->ssid) {
  1628. os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
  1629. ssid->ssid_len = params->ssid_len;
  1630. }
  1631. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  1632. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  1633. ssid->proto = WPA_PROTO_RSN;
  1634. ssid->pairwise_cipher = WPA_CIPHER_CCMP;
  1635. ssid->group_cipher = WPA_CIPHER_CCMP;
  1636. if (params->freq > 56160) {
  1637. /*
  1638. * Enable GCMP instead of CCMP as pairwise_cipher and
  1639. * group_cipher in 60 GHz.
  1640. */
  1641. ssid->pairwise_cipher = WPA_CIPHER_GCMP;
  1642. ssid->group_cipher = WPA_CIPHER_GCMP;
  1643. /* P2P GO in 60 GHz is always a PCP (PBSS) */
  1644. ssid->pbss = 1;
  1645. }
  1646. if (os_strlen(params->passphrase) > 0) {
  1647. ssid->passphrase = os_strdup(params->passphrase);
  1648. if (ssid->passphrase == NULL) {
  1649. wpa_msg_global(wpa_s, MSG_ERROR,
  1650. "P2P: Failed to copy passphrase for GO");
  1651. wpa_config_remove_network(wpa_s->conf, ssid->id);
  1652. return;
  1653. }
  1654. } else
  1655. ssid->passphrase = NULL;
  1656. ssid->psk_set = params->psk_set;
  1657. if (ssid->psk_set)
  1658. os_memcpy(ssid->psk, params->psk, sizeof(ssid->psk));
  1659. else if (ssid->passphrase)
  1660. wpa_config_update_psk(ssid);
  1661. ssid->ap_max_inactivity = wpa_s->p2pdev->conf->p2p_go_max_inactivity;
  1662. wpa_s->ap_configured_cb = p2p_go_configured;
  1663. wpa_s->ap_configured_cb_ctx = wpa_s;
  1664. wpa_s->ap_configured_cb_data = wpa_s->go_params;
  1665. wpa_s->scan_req = NORMAL_SCAN_REQ;
  1666. wpa_s->connect_without_scan = ssid;
  1667. wpa_s->reassociate = 1;
  1668. wpa_s->disconnected = 0;
  1669. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Request scan (that will be skipped) to "
  1670. "start GO)");
  1671. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1672. }
  1673. static void wpas_p2p_clone_config(struct wpa_supplicant *dst,
  1674. const struct wpa_supplicant *src)
  1675. {
  1676. struct wpa_config *d;
  1677. const struct wpa_config *s;
  1678. d = dst->conf;
  1679. s = src->conf;
  1680. #define C(n) \
  1681. do { \
  1682. if (s->n && !d->n) \
  1683. d->n = os_strdup(s->n); \
  1684. } while (0)
  1685. C(device_name);
  1686. C(manufacturer);
  1687. C(model_name);
  1688. C(model_number);
  1689. C(serial_number);
  1690. C(config_methods);
  1691. #undef C
  1692. os_memcpy(d->device_type, s->device_type, WPS_DEV_TYPE_LEN);
  1693. os_memcpy(d->sec_device_type, s->sec_device_type,
  1694. sizeof(d->sec_device_type));
  1695. d->num_sec_device_types = s->num_sec_device_types;
  1696. d->p2p_group_idle = s->p2p_group_idle;
  1697. d->p2p_go_freq_change_policy = s->p2p_go_freq_change_policy;
  1698. d->p2p_intra_bss = s->p2p_intra_bss;
  1699. d->persistent_reconnect = s->persistent_reconnect;
  1700. d->max_num_sta = s->max_num_sta;
  1701. d->pbc_in_m1 = s->pbc_in_m1;
  1702. d->ignore_old_scan_res = s->ignore_old_scan_res;
  1703. d->beacon_int = s->beacon_int;
  1704. d->dtim_period = s->dtim_period;
  1705. d->p2p_go_ctwindow = s->p2p_go_ctwindow;
  1706. d->disassoc_low_ack = s->disassoc_low_ack;
  1707. d->disable_scan_offload = s->disable_scan_offload;
  1708. d->passive_scan = s->passive_scan;
  1709. if (s->wps_nfc_dh_privkey && s->wps_nfc_dh_pubkey &&
  1710. !d->wps_nfc_pw_from_config) {
  1711. wpabuf_free(d->wps_nfc_dh_privkey);
  1712. wpabuf_free(d->wps_nfc_dh_pubkey);
  1713. d->wps_nfc_dh_privkey = wpabuf_dup(s->wps_nfc_dh_privkey);
  1714. d->wps_nfc_dh_pubkey = wpabuf_dup(s->wps_nfc_dh_pubkey);
  1715. }
  1716. d->p2p_cli_probe = s->p2p_cli_probe;
  1717. }
  1718. static void wpas_p2p_get_group_ifname(struct wpa_supplicant *wpa_s,
  1719. char *ifname, size_t len)
  1720. {
  1721. char *ifname_ptr = wpa_s->ifname;
  1722. if (os_strncmp(wpa_s->ifname, P2P_MGMT_DEVICE_PREFIX,
  1723. os_strlen(P2P_MGMT_DEVICE_PREFIX)) == 0) {
  1724. ifname_ptr = os_strrchr(wpa_s->ifname, '-') + 1;
  1725. }
  1726. os_snprintf(ifname, len, "p2p-%s-%d", ifname_ptr, wpa_s->p2p_group_idx);
  1727. if (os_strlen(ifname) >= IFNAMSIZ &&
  1728. os_strlen(wpa_s->ifname) < IFNAMSIZ) {
  1729. int res;
  1730. /* Try to avoid going over the IFNAMSIZ length limit */
  1731. res = os_snprintf(ifname, len, "p2p-%d", wpa_s->p2p_group_idx);
  1732. if (os_snprintf_error(len, res) && len)
  1733. ifname[len - 1] = '\0';
  1734. }
  1735. }
  1736. static int wpas_p2p_add_group_interface(struct wpa_supplicant *wpa_s,
  1737. enum wpa_driver_if_type type)
  1738. {
  1739. char ifname[120], force_ifname[120];
  1740. if (wpa_s->pending_interface_name[0]) {
  1741. wpa_printf(MSG_DEBUG, "P2P: Pending virtual interface exists "
  1742. "- skip creation of a new one");
  1743. if (is_zero_ether_addr(wpa_s->pending_interface_addr)) {
  1744. wpa_printf(MSG_DEBUG, "P2P: Pending virtual address "
  1745. "unknown?! ifname='%s'",
  1746. wpa_s->pending_interface_name);
  1747. return -1;
  1748. }
  1749. return 0;
  1750. }
  1751. wpas_p2p_get_group_ifname(wpa_s, ifname, sizeof(ifname));
  1752. force_ifname[0] = '\0';
  1753. wpa_printf(MSG_DEBUG, "P2P: Create a new interface %s for the group",
  1754. ifname);
  1755. wpa_s->p2p_group_idx++;
  1756. wpa_s->pending_interface_type = type;
  1757. if (wpa_drv_if_add(wpa_s, type, ifname, NULL, NULL, force_ifname,
  1758. wpa_s->pending_interface_addr, NULL) < 0) {
  1759. wpa_printf(MSG_ERROR, "P2P: Failed to create new group "
  1760. "interface");
  1761. return -1;
  1762. }
  1763. if (force_ifname[0]) {
  1764. wpa_printf(MSG_DEBUG, "P2P: Driver forced interface name %s",
  1765. force_ifname);
  1766. os_strlcpy(wpa_s->pending_interface_name, force_ifname,
  1767. sizeof(wpa_s->pending_interface_name));
  1768. } else
  1769. os_strlcpy(wpa_s->pending_interface_name, ifname,
  1770. sizeof(wpa_s->pending_interface_name));
  1771. wpa_printf(MSG_DEBUG, "P2P: Created pending virtual interface %s addr "
  1772. MACSTR, wpa_s->pending_interface_name,
  1773. MAC2STR(wpa_s->pending_interface_addr));
  1774. return 0;
  1775. }
  1776. static void wpas_p2p_remove_pending_group_interface(
  1777. struct wpa_supplicant *wpa_s)
  1778. {
  1779. if (!wpa_s->pending_interface_name[0] ||
  1780. is_zero_ether_addr(wpa_s->pending_interface_addr))
  1781. return; /* No pending virtual interface */
  1782. wpa_printf(MSG_DEBUG, "P2P: Removing pending group interface %s",
  1783. wpa_s->pending_interface_name);
  1784. wpa_drv_if_remove(wpa_s, wpa_s->pending_interface_type,
  1785. wpa_s->pending_interface_name);
  1786. os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
  1787. wpa_s->pending_interface_name[0] = '\0';
  1788. wpa_s->global->pending_group_iface_for_p2ps = 0;
  1789. }
  1790. static struct wpa_supplicant *
  1791. wpas_p2p_init_group_interface(struct wpa_supplicant *wpa_s, int go)
  1792. {
  1793. struct wpa_interface iface;
  1794. struct wpa_supplicant *group_wpa_s;
  1795. if (!wpa_s->pending_interface_name[0]) {
  1796. wpa_printf(MSG_ERROR, "P2P: No pending group interface");
  1797. if (!wpas_p2p_create_iface(wpa_s))
  1798. return NULL;
  1799. /*
  1800. * Something has forced us to remove the pending interface; try
  1801. * to create a new one and hope for the best that we will get
  1802. * the same local address.
  1803. */
  1804. if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
  1805. WPA_IF_P2P_CLIENT) < 0)
  1806. return NULL;
  1807. }
  1808. os_memset(&iface, 0, sizeof(iface));
  1809. iface.ifname = wpa_s->pending_interface_name;
  1810. iface.driver = wpa_s->driver->name;
  1811. if (wpa_s->conf->ctrl_interface == NULL &&
  1812. wpa_s->parent != wpa_s &&
  1813. wpa_s->p2p_mgmt &&
  1814. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE))
  1815. iface.ctrl_interface = wpa_s->parent->conf->ctrl_interface;
  1816. else
  1817. iface.ctrl_interface = wpa_s->conf->ctrl_interface;
  1818. iface.driver_param = wpa_s->conf->driver_param;
  1819. group_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface, wpa_s);
  1820. if (group_wpa_s == NULL) {
  1821. wpa_printf(MSG_ERROR, "P2P: Failed to create new "
  1822. "wpa_supplicant interface");
  1823. return NULL;
  1824. }
  1825. wpa_s->pending_interface_name[0] = '\0';
  1826. group_wpa_s->p2p_group_interface = go ? P2P_GROUP_INTERFACE_GO :
  1827. P2P_GROUP_INTERFACE_CLIENT;
  1828. wpa_s->global->p2p_group_formation = group_wpa_s;
  1829. wpa_s->global->pending_group_iface_for_p2ps = 0;
  1830. wpas_p2p_clone_config(group_wpa_s, wpa_s);
  1831. return group_wpa_s;
  1832. }
  1833. static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
  1834. void *timeout_ctx)
  1835. {
  1836. struct wpa_supplicant *wpa_s = eloop_ctx;
  1837. wpa_printf(MSG_DEBUG, "P2P: Group Formation timed out");
  1838. wpas_p2p_group_formation_failed(wpa_s, 0);
  1839. }
  1840. static void wpas_p2p_group_formation_failed(struct wpa_supplicant *wpa_s,
  1841. int already_deleted)
  1842. {
  1843. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  1844. wpa_s->p2pdev, NULL);
  1845. if (wpa_s->global->p2p)
  1846. p2p_group_formation_failed(wpa_s->global->p2p);
  1847. wpas_group_formation_completed(wpa_s, 0, already_deleted);
  1848. }
  1849. static void wpas_p2p_grpform_fail_after_wps(struct wpa_supplicant *wpa_s)
  1850. {
  1851. wpa_printf(MSG_DEBUG, "P2P: Reject group formation due to WPS provisioning failure");
  1852. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  1853. wpa_s->p2pdev, NULL);
  1854. eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
  1855. wpa_s->p2pdev, NULL);
  1856. wpa_s->global->p2p_fail_on_wps_complete = 0;
  1857. }
  1858. void wpas_p2p_ap_setup_failed(struct wpa_supplicant *wpa_s)
  1859. {
  1860. if (wpa_s->global->p2p_group_formation != wpa_s)
  1861. return;
  1862. /* Speed up group formation timeout since this cannot succeed */
  1863. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  1864. wpa_s->p2pdev, NULL);
  1865. eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
  1866. wpa_s->p2pdev, NULL);
  1867. }
  1868. static void wpas_go_neg_completed(void *ctx, struct p2p_go_neg_results *res)
  1869. {
  1870. struct wpa_supplicant *wpa_s = ctx;
  1871. struct wpa_supplicant *group_wpa_s;
  1872. if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
  1873. wpa_drv_cancel_remain_on_channel(wpa_s);
  1874. wpa_s->off_channel_freq = 0;
  1875. wpa_s->roc_waiting_drv_freq = 0;
  1876. }
  1877. if (res->status) {
  1878. wpa_msg_global(wpa_s, MSG_INFO,
  1879. P2P_EVENT_GO_NEG_FAILURE "status=%d",
  1880. res->status);
  1881. wpas_notify_p2p_go_neg_completed(wpa_s, res);
  1882. wpas_p2p_remove_pending_group_interface(wpa_s);
  1883. return;
  1884. }
  1885. if (!res->role_go) {
  1886. /* Inform driver of the operating channel of GO. */
  1887. wpa_drv_set_prob_oper_freq(wpa_s, res->freq);
  1888. }
  1889. if (wpa_s->p2p_go_ht40)
  1890. res->ht40 = 1;
  1891. if (wpa_s->p2p_go_vht)
  1892. res->vht = 1;
  1893. res->max_oper_chwidth = wpa_s->p2p_go_max_oper_chwidth;
  1894. res->vht_center_freq2 = wpa_s->p2p_go_vht_center_freq2;
  1895. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_SUCCESS "role=%s "
  1896. "freq=%d ht40=%d peer_dev=" MACSTR " peer_iface=" MACSTR
  1897. " wps_method=%s",
  1898. res->role_go ? "GO" : "client", res->freq, res->ht40,
  1899. MAC2STR(res->peer_device_addr),
  1900. MAC2STR(res->peer_interface_addr),
  1901. p2p_wps_method_text(res->wps_method));
  1902. wpas_notify_p2p_go_neg_completed(wpa_s, res);
  1903. if (res->role_go && wpa_s->p2p_persistent_id >= 0) {
  1904. struct wpa_ssid *ssid;
  1905. ssid = wpa_config_get_network(wpa_s->conf,
  1906. wpa_s->p2p_persistent_id);
  1907. if (ssid && ssid->disabled == 2 &&
  1908. ssid->mode == WPAS_MODE_P2P_GO && ssid->passphrase) {
  1909. size_t len = os_strlen(ssid->passphrase);
  1910. wpa_printf(MSG_DEBUG, "P2P: Override passphrase based "
  1911. "on requested persistent group");
  1912. os_memcpy(res->passphrase, ssid->passphrase, len);
  1913. res->passphrase[len] = '\0';
  1914. }
  1915. }
  1916. if (wpa_s->create_p2p_iface) {
  1917. group_wpa_s =
  1918. wpas_p2p_init_group_interface(wpa_s, res->role_go);
  1919. if (group_wpa_s == NULL) {
  1920. wpas_p2p_remove_pending_group_interface(wpa_s);
  1921. eloop_cancel_timeout(wpas_p2p_long_listen_timeout,
  1922. wpa_s, NULL);
  1923. wpas_p2p_group_formation_failed(wpa_s, 1);
  1924. return;
  1925. }
  1926. os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
  1927. wpa_s->pending_interface_name[0] = '\0';
  1928. } else {
  1929. group_wpa_s = wpa_s->parent;
  1930. wpa_s->global->p2p_group_formation = group_wpa_s;
  1931. if (group_wpa_s != wpa_s)
  1932. wpas_p2p_clone_config(group_wpa_s, wpa_s);
  1933. }
  1934. group_wpa_s->p2p_in_provisioning = 1;
  1935. group_wpa_s->p2pdev = wpa_s;
  1936. if (group_wpa_s != wpa_s) {
  1937. os_memcpy(group_wpa_s->p2p_pin, wpa_s->p2p_pin,
  1938. sizeof(group_wpa_s->p2p_pin));
  1939. group_wpa_s->p2p_wps_method = wpa_s->p2p_wps_method;
  1940. }
  1941. if (res->role_go) {
  1942. wpas_start_wps_go(group_wpa_s, res, 1);
  1943. } else {
  1944. os_get_reltime(&group_wpa_s->scan_min_time);
  1945. wpas_start_wps_enrollee(group_wpa_s, res);
  1946. }
  1947. wpa_s->p2p_long_listen = 0;
  1948. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  1949. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  1950. eloop_register_timeout(15 + res->peer_config_timeout / 100,
  1951. (res->peer_config_timeout % 100) * 10000,
  1952. wpas_p2p_group_formation_timeout, wpa_s, NULL);
  1953. }
  1954. static void wpas_go_neg_req_rx(void *ctx, const u8 *src, u16 dev_passwd_id,
  1955. u8 go_intent)
  1956. {
  1957. struct wpa_supplicant *wpa_s = ctx;
  1958. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_REQUEST MACSTR
  1959. " dev_passwd_id=%u go_intent=%u", MAC2STR(src),
  1960. dev_passwd_id, go_intent);
  1961. wpas_notify_p2p_go_neg_req(wpa_s, src, dev_passwd_id, go_intent);
  1962. }
  1963. static void wpas_dev_found(void *ctx, const u8 *addr,
  1964. const struct p2p_peer_info *info,
  1965. int new_device)
  1966. {
  1967. #ifndef CONFIG_NO_STDOUT_DEBUG
  1968. struct wpa_supplicant *wpa_s = ctx;
  1969. char devtype[WPS_DEV_TYPE_BUFSIZE];
  1970. char *wfd_dev_info_hex = NULL;
  1971. #ifdef CONFIG_WIFI_DISPLAY
  1972. wfd_dev_info_hex = wifi_display_subelem_hex(info->wfd_subelems,
  1973. WFD_SUBELEM_DEVICE_INFO);
  1974. #endif /* CONFIG_WIFI_DISPLAY */
  1975. if (info->p2ps_instance) {
  1976. char str[256];
  1977. const u8 *buf = wpabuf_head(info->p2ps_instance);
  1978. size_t len = wpabuf_len(info->p2ps_instance);
  1979. while (len) {
  1980. u32 id;
  1981. u16 methods;
  1982. u8 str_len;
  1983. if (len < 4 + 2 + 1)
  1984. break;
  1985. id = WPA_GET_LE32(buf);
  1986. buf += sizeof(u32);
  1987. methods = WPA_GET_BE16(buf);
  1988. buf += sizeof(u16);
  1989. str_len = *buf++;
  1990. if (str_len > len - 4 - 2 - 1)
  1991. break;
  1992. os_memcpy(str, buf, str_len);
  1993. str[str_len] = '\0';
  1994. buf += str_len;
  1995. len -= str_len + sizeof(u32) + sizeof(u16) + sizeof(u8);
  1996. wpa_msg_global(wpa_s, MSG_INFO,
  1997. P2P_EVENT_DEVICE_FOUND MACSTR
  1998. " p2p_dev_addr=" MACSTR
  1999. " pri_dev_type=%s name='%s'"
  2000. " config_methods=0x%x"
  2001. " dev_capab=0x%x"
  2002. " group_capab=0x%x"
  2003. " adv_id=%x asp_svc=%s%s",
  2004. MAC2STR(addr),
  2005. MAC2STR(info->p2p_device_addr),
  2006. wps_dev_type_bin2str(
  2007. info->pri_dev_type,
  2008. devtype, sizeof(devtype)),
  2009. info->device_name, methods,
  2010. info->dev_capab, info->group_capab,
  2011. id, str,
  2012. info->vendor_elems ?
  2013. " vendor_elems=1" : "");
  2014. }
  2015. goto done;
  2016. }
  2017. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_FOUND MACSTR
  2018. " p2p_dev_addr=" MACSTR
  2019. " pri_dev_type=%s name='%s' config_methods=0x%x "
  2020. "dev_capab=0x%x group_capab=0x%x%s%s%s new=%d",
  2021. MAC2STR(addr), MAC2STR(info->p2p_device_addr),
  2022. wps_dev_type_bin2str(info->pri_dev_type, devtype,
  2023. sizeof(devtype)),
  2024. info->device_name, info->config_methods,
  2025. info->dev_capab, info->group_capab,
  2026. wfd_dev_info_hex ? " wfd_dev_info=0x" : "",
  2027. wfd_dev_info_hex ? wfd_dev_info_hex : "",
  2028. info->vendor_elems ? " vendor_elems=1" : "",
  2029. new_device);
  2030. done:
  2031. os_free(wfd_dev_info_hex);
  2032. #endif /* CONFIG_NO_STDOUT_DEBUG */
  2033. wpas_notify_p2p_device_found(ctx, info->p2p_device_addr, new_device);
  2034. }
  2035. static void wpas_dev_lost(void *ctx, const u8 *dev_addr)
  2036. {
  2037. struct wpa_supplicant *wpa_s = ctx;
  2038. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_LOST
  2039. "p2p_dev_addr=" MACSTR, MAC2STR(dev_addr));
  2040. wpas_notify_p2p_device_lost(wpa_s, dev_addr);
  2041. }
  2042. static void wpas_find_stopped(void *ctx)
  2043. {
  2044. struct wpa_supplicant *wpa_s = ctx;
  2045. if (wpa_s->p2p_scan_work && wpas_abort_ongoing_scan(wpa_s) < 0)
  2046. wpa_printf(MSG_DEBUG, "P2P: Abort ongoing scan failed");
  2047. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_FIND_STOPPED);
  2048. wpas_notify_p2p_find_stopped(wpa_s);
  2049. }
  2050. struct wpas_p2p_listen_work {
  2051. unsigned int freq;
  2052. unsigned int duration;
  2053. struct wpabuf *probe_resp_ie;
  2054. };
  2055. static void wpas_p2p_listen_work_free(struct wpas_p2p_listen_work *lwork)
  2056. {
  2057. if (lwork == NULL)
  2058. return;
  2059. wpabuf_free(lwork->probe_resp_ie);
  2060. os_free(lwork);
  2061. }
  2062. static void wpas_p2p_listen_work_done(struct wpa_supplicant *wpa_s)
  2063. {
  2064. struct wpas_p2p_listen_work *lwork;
  2065. if (!wpa_s->p2p_listen_work)
  2066. return;
  2067. lwork = wpa_s->p2p_listen_work->ctx;
  2068. wpas_p2p_listen_work_free(lwork);
  2069. radio_work_done(wpa_s->p2p_listen_work);
  2070. wpa_s->p2p_listen_work = NULL;
  2071. }
  2072. static void wpas_start_listen_cb(struct wpa_radio_work *work, int deinit)
  2073. {
  2074. struct wpa_supplicant *wpa_s = work->wpa_s;
  2075. struct wpas_p2p_listen_work *lwork = work->ctx;
  2076. unsigned int duration;
  2077. if (deinit) {
  2078. if (work->started) {
  2079. wpa_s->p2p_listen_work = NULL;
  2080. wpas_stop_listen(wpa_s);
  2081. }
  2082. wpas_p2p_listen_work_free(lwork);
  2083. return;
  2084. }
  2085. wpa_s->p2p_listen_work = work;
  2086. wpa_drv_set_ap_wps_ie(wpa_s, NULL, lwork->probe_resp_ie, NULL);
  2087. if (wpa_drv_probe_req_report(wpa_s, 1) < 0) {
  2088. wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver to "
  2089. "report received Probe Request frames");
  2090. wpas_p2p_listen_work_done(wpa_s);
  2091. return;
  2092. }
  2093. wpa_s->pending_listen_freq = lwork->freq;
  2094. wpa_s->pending_listen_duration = lwork->duration;
  2095. duration = lwork->duration;
  2096. #ifdef CONFIG_TESTING_OPTIONS
  2097. if (wpa_s->extra_roc_dur) {
  2098. wpa_printf(MSG_DEBUG, "TESTING: Increase ROC duration %u -> %u",
  2099. duration, duration + wpa_s->extra_roc_dur);
  2100. duration += wpa_s->extra_roc_dur;
  2101. }
  2102. #endif /* CONFIG_TESTING_OPTIONS */
  2103. if (wpa_drv_remain_on_channel(wpa_s, lwork->freq, duration) < 0) {
  2104. wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver "
  2105. "to remain on channel (%u MHz) for Listen "
  2106. "state", lwork->freq);
  2107. wpas_p2p_listen_work_done(wpa_s);
  2108. wpa_s->pending_listen_freq = 0;
  2109. return;
  2110. }
  2111. wpa_s->off_channel_freq = 0;
  2112. wpa_s->roc_waiting_drv_freq = lwork->freq;
  2113. }
  2114. static int wpas_start_listen(void *ctx, unsigned int freq,
  2115. unsigned int duration,
  2116. const struct wpabuf *probe_resp_ie)
  2117. {
  2118. struct wpa_supplicant *wpa_s = ctx;
  2119. struct wpas_p2p_listen_work *lwork;
  2120. if (wpa_s->p2p_listen_work) {
  2121. wpa_printf(MSG_DEBUG, "P2P: Reject start_listen since p2p_listen_work already exists");
  2122. return -1;
  2123. }
  2124. lwork = os_zalloc(sizeof(*lwork));
  2125. if (lwork == NULL)
  2126. return -1;
  2127. lwork->freq = freq;
  2128. lwork->duration = duration;
  2129. if (probe_resp_ie) {
  2130. lwork->probe_resp_ie = wpabuf_dup(probe_resp_ie);
  2131. if (lwork->probe_resp_ie == NULL) {
  2132. wpas_p2p_listen_work_free(lwork);
  2133. return -1;
  2134. }
  2135. }
  2136. if (radio_add_work(wpa_s, freq, "p2p-listen", 0, wpas_start_listen_cb,
  2137. lwork) < 0) {
  2138. wpas_p2p_listen_work_free(lwork);
  2139. return -1;
  2140. }
  2141. return 0;
  2142. }
  2143. static void wpas_stop_listen(void *ctx)
  2144. {
  2145. struct wpa_supplicant *wpa_s = ctx;
  2146. if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
  2147. wpa_drv_cancel_remain_on_channel(wpa_s);
  2148. wpa_s->off_channel_freq = 0;
  2149. wpa_s->roc_waiting_drv_freq = 0;
  2150. }
  2151. wpa_drv_set_ap_wps_ie(wpa_s, NULL, NULL, NULL);
  2152. /*
  2153. * Don't cancel Probe Request RX reporting for a connected P2P Client
  2154. * handling Probe Request frames.
  2155. */
  2156. if (!wpa_s->p2p_cli_probe)
  2157. wpa_drv_probe_req_report(wpa_s, 0);
  2158. wpas_p2p_listen_work_done(wpa_s);
  2159. }
  2160. static int wpas_send_probe_resp(void *ctx, const struct wpabuf *buf,
  2161. unsigned int freq)
  2162. {
  2163. struct wpa_supplicant *wpa_s = ctx;
  2164. return wpa_drv_send_mlme(wpa_s, wpabuf_head(buf), wpabuf_len(buf), 1,
  2165. freq);
  2166. }
  2167. static void wpas_prov_disc_local_display(struct wpa_supplicant *wpa_s,
  2168. const u8 *peer, const char *params,
  2169. unsigned int generated_pin)
  2170. {
  2171. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_SHOW_PIN MACSTR
  2172. " %08d%s", MAC2STR(peer), generated_pin, params);
  2173. }
  2174. static void wpas_prov_disc_local_keypad(struct wpa_supplicant *wpa_s,
  2175. const u8 *peer, const char *params)
  2176. {
  2177. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_ENTER_PIN MACSTR
  2178. "%s", MAC2STR(peer), params);
  2179. }
  2180. static void wpas_prov_disc_req(void *ctx, const u8 *peer, u16 config_methods,
  2181. const u8 *dev_addr, const u8 *pri_dev_type,
  2182. const char *dev_name, u16 supp_config_methods,
  2183. u8 dev_capab, u8 group_capab, const u8 *group_id,
  2184. size_t group_id_len)
  2185. {
  2186. struct wpa_supplicant *wpa_s = ctx;
  2187. char devtype[WPS_DEV_TYPE_BUFSIZE];
  2188. char params[300];
  2189. u8 empty_dev_type[8];
  2190. unsigned int generated_pin = 0;
  2191. struct wpa_supplicant *group = NULL;
  2192. int res;
  2193. if (group_id) {
  2194. for (group = wpa_s->global->ifaces; group; group = group->next)
  2195. {
  2196. struct wpa_ssid *s = group->current_ssid;
  2197. if (s != NULL &&
  2198. s->mode == WPAS_MODE_P2P_GO &&
  2199. group_id_len - ETH_ALEN == s->ssid_len &&
  2200. os_memcmp(group_id + ETH_ALEN, s->ssid,
  2201. s->ssid_len) == 0)
  2202. break;
  2203. }
  2204. }
  2205. if (pri_dev_type == NULL) {
  2206. os_memset(empty_dev_type, 0, sizeof(empty_dev_type));
  2207. pri_dev_type = empty_dev_type;
  2208. }
  2209. res = os_snprintf(params, sizeof(params), " p2p_dev_addr=" MACSTR
  2210. " pri_dev_type=%s name='%s' config_methods=0x%x "
  2211. "dev_capab=0x%x group_capab=0x%x%s%s",
  2212. MAC2STR(dev_addr),
  2213. wps_dev_type_bin2str(pri_dev_type, devtype,
  2214. sizeof(devtype)),
  2215. dev_name, supp_config_methods, dev_capab, group_capab,
  2216. group ? " group=" : "",
  2217. group ? group->ifname : "");
  2218. if (os_snprintf_error(sizeof(params), res))
  2219. wpa_printf(MSG_DEBUG, "P2P: PD Request event truncated");
  2220. params[sizeof(params) - 1] = '\0';
  2221. if (config_methods & WPS_CONFIG_DISPLAY) {
  2222. if (wps_generate_pin(&generated_pin) < 0) {
  2223. wpa_printf(MSG_DEBUG, "P2P: Could not generate PIN");
  2224. wpas_notify_p2p_provision_discovery(
  2225. wpa_s, peer, 0 /* response */,
  2226. P2P_PROV_DISC_INFO_UNAVAILABLE, 0, 0);
  2227. return;
  2228. }
  2229. wpas_prov_disc_local_display(wpa_s, peer, params,
  2230. generated_pin);
  2231. } else if (config_methods & WPS_CONFIG_KEYPAD)
  2232. wpas_prov_disc_local_keypad(wpa_s, peer, params);
  2233. else if (config_methods & WPS_CONFIG_PUSHBUTTON)
  2234. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_REQ
  2235. MACSTR "%s", MAC2STR(peer), params);
  2236. wpas_notify_p2p_provision_discovery(wpa_s, peer, 1 /* request */,
  2237. P2P_PROV_DISC_SUCCESS,
  2238. config_methods, generated_pin);
  2239. }
  2240. static void wpas_prov_disc_resp(void *ctx, const u8 *peer, u16 config_methods)
  2241. {
  2242. struct wpa_supplicant *wpa_s = ctx;
  2243. unsigned int generated_pin = 0;
  2244. char params[20];
  2245. if (wpa_s->pending_pd_before_join &&
  2246. (os_memcmp(peer, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
  2247. os_memcmp(peer, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0)) {
  2248. wpa_s->pending_pd_before_join = 0;
  2249. wpa_printf(MSG_DEBUG, "P2P: Starting pending "
  2250. "join-existing-group operation");
  2251. wpas_p2p_join_start(wpa_s, 0, NULL, 0);
  2252. return;
  2253. }
  2254. if (wpa_s->pending_pd_use == AUTO_PD_JOIN ||
  2255. wpa_s->pending_pd_use == AUTO_PD_GO_NEG) {
  2256. int res;
  2257. res = os_snprintf(params, sizeof(params), " peer_go=%d",
  2258. wpa_s->pending_pd_use == AUTO_PD_JOIN);
  2259. if (os_snprintf_error(sizeof(params), res))
  2260. params[sizeof(params) - 1] = '\0';
  2261. } else
  2262. params[0] = '\0';
  2263. if (config_methods & WPS_CONFIG_DISPLAY)
  2264. wpas_prov_disc_local_keypad(wpa_s, peer, params);
  2265. else if (config_methods & WPS_CONFIG_KEYPAD) {
  2266. if (wps_generate_pin(&generated_pin) < 0) {
  2267. wpa_printf(MSG_DEBUG, "P2P: Could not generate PIN");
  2268. wpas_notify_p2p_provision_discovery(
  2269. wpa_s, peer, 0 /* response */,
  2270. P2P_PROV_DISC_INFO_UNAVAILABLE, 0, 0);
  2271. return;
  2272. }
  2273. wpas_prov_disc_local_display(wpa_s, peer, params,
  2274. generated_pin);
  2275. } else if (config_methods & WPS_CONFIG_PUSHBUTTON)
  2276. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_RESP
  2277. MACSTR "%s", MAC2STR(peer), params);
  2278. wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
  2279. P2P_PROV_DISC_SUCCESS,
  2280. config_methods, generated_pin);
  2281. }
  2282. static void wpas_prov_disc_fail(void *ctx, const u8 *peer,
  2283. enum p2p_prov_disc_status status,
  2284. u32 adv_id, const u8 *adv_mac,
  2285. const char *deferred_session_resp)
  2286. {
  2287. struct wpa_supplicant *wpa_s = ctx;
  2288. if (wpa_s->p2p_fallback_to_go_neg) {
  2289. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: PD for p2p_connect-auto "
  2290. "failed - fall back to GO Negotiation");
  2291. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  2292. P2P_EVENT_FALLBACK_TO_GO_NEG
  2293. "reason=PD-failed");
  2294. wpas_p2p_fallback_to_go_neg(wpa_s, 0);
  2295. return;
  2296. }
  2297. if (status == P2P_PROV_DISC_TIMEOUT_JOIN) {
  2298. wpa_s->pending_pd_before_join = 0;
  2299. wpa_printf(MSG_DEBUG, "P2P: Starting pending "
  2300. "join-existing-group operation (no ACK for PD "
  2301. "Req attempts)");
  2302. wpas_p2p_join_start(wpa_s, 0, NULL, 0);
  2303. return;
  2304. }
  2305. if (adv_id && adv_mac && deferred_session_resp) {
  2306. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
  2307. " p2p_dev_addr=" MACSTR " status=%d adv_id=%x"
  2308. " deferred_session_resp='%s'",
  2309. MAC2STR(peer), status, adv_id,
  2310. deferred_session_resp);
  2311. } else if (adv_id && adv_mac) {
  2312. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
  2313. " p2p_dev_addr=" MACSTR " status=%d adv_id=%x",
  2314. MAC2STR(peer), status, adv_id);
  2315. } else {
  2316. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
  2317. " p2p_dev_addr=" MACSTR " status=%d",
  2318. MAC2STR(peer), status);
  2319. }
  2320. wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
  2321. status, 0, 0);
  2322. }
  2323. static int freq_included(struct wpa_supplicant *wpa_s,
  2324. const struct p2p_channels *channels,
  2325. unsigned int freq)
  2326. {
  2327. if ((channels == NULL || p2p_channels_includes_freq(channels, freq)) &&
  2328. wpas_p2p_go_is_peer_freq(wpa_s, freq))
  2329. return 1;
  2330. return 0;
  2331. }
  2332. static void wpas_p2p_go_update_common_freqs(struct wpa_supplicant *wpa_s)
  2333. {
  2334. unsigned int num = P2P_MAX_CHANNELS;
  2335. int *common_freqs;
  2336. int ret;
  2337. p2p_go_dump_common_freqs(wpa_s);
  2338. common_freqs = os_calloc(num, sizeof(int));
  2339. if (!common_freqs)
  2340. return;
  2341. ret = p2p_group_get_common_freqs(wpa_s->p2p_group, common_freqs, &num);
  2342. if (ret < 0) {
  2343. wpa_dbg(wpa_s, MSG_DEBUG,
  2344. "P2P: Failed to get group common freqs");
  2345. os_free(common_freqs);
  2346. return;
  2347. }
  2348. os_free(wpa_s->p2p_group_common_freqs);
  2349. wpa_s->p2p_group_common_freqs = common_freqs;
  2350. wpa_s->p2p_group_common_freqs_num = num;
  2351. p2p_go_dump_common_freqs(wpa_s);
  2352. }
  2353. /*
  2354. * Check if the given frequency is one of the possible operating frequencies
  2355. * set after the completion of the GO Negotiation.
  2356. */
  2357. static int wpas_p2p_go_is_peer_freq(struct wpa_supplicant *wpa_s, int freq)
  2358. {
  2359. unsigned int i;
  2360. p2p_go_dump_common_freqs(wpa_s);
  2361. /* assume no restrictions */
  2362. if (!wpa_s->p2p_group_common_freqs_num)
  2363. return 1;
  2364. for (i = 0; i < wpa_s->p2p_group_common_freqs_num; i++) {
  2365. if (wpa_s->p2p_group_common_freqs[i] == freq)
  2366. return 1;
  2367. }
  2368. return 0;
  2369. }
  2370. static int wpas_sta_check_ecsa(struct hostapd_data *hapd,
  2371. struct sta_info *sta, void *ctx)
  2372. {
  2373. int *ecsa_support = ctx;
  2374. *ecsa_support &= sta->ecsa_supported;
  2375. return 0;
  2376. }
  2377. /* Check if all the peers support eCSA */
  2378. static int wpas_p2p_go_clients_support_ecsa(struct wpa_supplicant *wpa_s)
  2379. {
  2380. int ecsa_support = 1;
  2381. ap_for_each_sta(wpa_s->ap_iface->bss[0], wpas_sta_check_ecsa,
  2382. &ecsa_support);
  2383. return ecsa_support;
  2384. }
  2385. /**
  2386. * Pick the best frequency to use from all the currently used frequencies.
  2387. */
  2388. static int wpas_p2p_pick_best_used_freq(struct wpa_supplicant *wpa_s,
  2389. struct wpa_used_freq_data *freqs,
  2390. unsigned int num)
  2391. {
  2392. unsigned int i, c;
  2393. /* find a candidate freq that is supported by P2P */
  2394. for (c = 0; c < num; c++)
  2395. if (p2p_supported_freq(wpa_s->global->p2p, freqs[c].freq))
  2396. break;
  2397. if (c == num)
  2398. return 0;
  2399. /* once we have a candidate, try to find a 'better' one */
  2400. for (i = c + 1; i < num; i++) {
  2401. if (!p2p_supported_freq(wpa_s->global->p2p, freqs[i].freq))
  2402. continue;
  2403. /*
  2404. * 1. Infrastructure station interfaces have higher preference.
  2405. * 2. P2P Clients have higher preference.
  2406. * 3. All others.
  2407. */
  2408. if (freqs[i].flags & WPA_FREQ_USED_BY_INFRA_STATION) {
  2409. c = i;
  2410. break;
  2411. }
  2412. if ((freqs[i].flags & WPA_FREQ_USED_BY_P2P_CLIENT))
  2413. c = i;
  2414. }
  2415. return freqs[c].freq;
  2416. }
  2417. static u8 wpas_invitation_process(void *ctx, const u8 *sa, const u8 *bssid,
  2418. const u8 *go_dev_addr, const u8 *ssid,
  2419. size_t ssid_len, int *go, u8 *group_bssid,
  2420. int *force_freq, int persistent_group,
  2421. const struct p2p_channels *channels,
  2422. int dev_pw_id)
  2423. {
  2424. struct wpa_supplicant *wpa_s = ctx;
  2425. struct wpa_ssid *s;
  2426. struct wpa_used_freq_data *freqs;
  2427. struct wpa_supplicant *grp;
  2428. int best_freq;
  2429. if (!persistent_group) {
  2430. wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
  2431. " to join an active group (SSID: %s)",
  2432. MAC2STR(sa), wpa_ssid_txt(ssid, ssid_len));
  2433. if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
  2434. (os_memcmp(go_dev_addr, wpa_s->p2p_auth_invite, ETH_ALEN)
  2435. == 0 ||
  2436. os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0)) {
  2437. wpa_printf(MSG_DEBUG, "P2P: Accept previously "
  2438. "authorized invitation");
  2439. goto accept_inv;
  2440. }
  2441. #ifdef CONFIG_WPS_NFC
  2442. if (dev_pw_id >= 0 && wpa_s->p2p_nfc_tag_enabled &&
  2443. dev_pw_id == wpa_s->p2p_oob_dev_pw_id) {
  2444. wpa_printf(MSG_DEBUG, "P2P: Accept invitation based on local enabled NFC Tag");
  2445. wpa_s->p2p_wps_method = WPS_NFC;
  2446. wpa_s->pending_join_wps_method = WPS_NFC;
  2447. os_memcpy(wpa_s->pending_join_dev_addr,
  2448. go_dev_addr, ETH_ALEN);
  2449. os_memcpy(wpa_s->pending_join_iface_addr,
  2450. bssid, ETH_ALEN);
  2451. goto accept_inv;
  2452. }
  2453. #endif /* CONFIG_WPS_NFC */
  2454. /*
  2455. * Do not accept the invitation automatically; notify user and
  2456. * request approval.
  2457. */
  2458. return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
  2459. }
  2460. grp = wpas_get_p2p_group(wpa_s, ssid, ssid_len, go);
  2461. if (grp) {
  2462. wpa_printf(MSG_DEBUG, "P2P: Accept invitation to already "
  2463. "running persistent group");
  2464. if (*go)
  2465. os_memcpy(group_bssid, grp->own_addr, ETH_ALEN);
  2466. goto accept_inv;
  2467. }
  2468. if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
  2469. os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0) {
  2470. wpa_printf(MSG_DEBUG, "P2P: Accept previously initiated "
  2471. "invitation to re-invoke a persistent group");
  2472. os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
  2473. } else if (!wpa_s->conf->persistent_reconnect)
  2474. return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
  2475. for (s = wpa_s->conf->ssid; s; s = s->next) {
  2476. if (s->disabled == 2 &&
  2477. os_memcmp(s->bssid, go_dev_addr, ETH_ALEN) == 0 &&
  2478. s->ssid_len == ssid_len &&
  2479. os_memcmp(ssid, s->ssid, ssid_len) == 0)
  2480. break;
  2481. }
  2482. if (!s) {
  2483. wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
  2484. " requested reinvocation of an unknown group",
  2485. MAC2STR(sa));
  2486. return P2P_SC_FAIL_UNKNOWN_GROUP;
  2487. }
  2488. if (s->mode == WPAS_MODE_P2P_GO && !wpas_p2p_create_iface(wpa_s)) {
  2489. *go = 1;
  2490. if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
  2491. wpa_printf(MSG_DEBUG, "P2P: The only available "
  2492. "interface is already in use - reject "
  2493. "invitation");
  2494. return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
  2495. }
  2496. if (wpa_s->p2p_mgmt)
  2497. os_memcpy(group_bssid, wpa_s->parent->own_addr,
  2498. ETH_ALEN);
  2499. else
  2500. os_memcpy(group_bssid, wpa_s->own_addr, ETH_ALEN);
  2501. } else if (s->mode == WPAS_MODE_P2P_GO) {
  2502. *go = 1;
  2503. if (wpas_p2p_add_group_interface(wpa_s, WPA_IF_P2P_GO) < 0)
  2504. {
  2505. wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
  2506. "interface address for the group");
  2507. return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
  2508. }
  2509. os_memcpy(group_bssid, wpa_s->pending_interface_addr,
  2510. ETH_ALEN);
  2511. }
  2512. accept_inv:
  2513. wpas_p2p_set_own_freq_preference(wpa_s, 0);
  2514. best_freq = 0;
  2515. freqs = os_calloc(wpa_s->num_multichan_concurrent,
  2516. sizeof(struct wpa_used_freq_data));
  2517. if (freqs) {
  2518. int num_channels = wpa_s->num_multichan_concurrent;
  2519. int num = wpas_p2p_valid_oper_freqs(wpa_s, freqs, num_channels);
  2520. best_freq = wpas_p2p_pick_best_used_freq(wpa_s, freqs, num);
  2521. os_free(freqs);
  2522. }
  2523. /* Get one of the frequencies currently in use */
  2524. if (best_freq > 0) {
  2525. wpa_printf(MSG_DEBUG, "P2P: Trying to prefer a channel already used by one of the interfaces");
  2526. wpas_p2p_set_own_freq_preference(wpa_s, best_freq);
  2527. if (wpa_s->num_multichan_concurrent < 2 ||
  2528. wpas_p2p_num_unused_channels(wpa_s) < 1) {
  2529. wpa_printf(MSG_DEBUG, "P2P: No extra channels available - trying to force channel to match a channel already used by one of the interfaces");
  2530. *force_freq = best_freq;
  2531. }
  2532. }
  2533. if (*force_freq > 0 && wpa_s->num_multichan_concurrent > 1 &&
  2534. wpas_p2p_num_unused_channels(wpa_s) > 0) {
  2535. if (*go == 0) {
  2536. /* We are the client */
  2537. wpa_printf(MSG_DEBUG, "P2P: Peer was found to be "
  2538. "running a GO but we are capable of MCC, "
  2539. "figure out the best channel to use");
  2540. *force_freq = 0;
  2541. } else if (!freq_included(wpa_s, channels, *force_freq)) {
  2542. /* We are the GO, and *force_freq is not in the
  2543. * intersection */
  2544. wpa_printf(MSG_DEBUG, "P2P: Forced GO freq %d MHz not "
  2545. "in intersection but we are capable of MCC, "
  2546. "figure out the best channel to use",
  2547. *force_freq);
  2548. *force_freq = 0;
  2549. }
  2550. }
  2551. return P2P_SC_SUCCESS;
  2552. }
  2553. static void wpas_invitation_received(void *ctx, const u8 *sa, const u8 *bssid,
  2554. const u8 *ssid, size_t ssid_len,
  2555. const u8 *go_dev_addr, u8 status,
  2556. int op_freq)
  2557. {
  2558. struct wpa_supplicant *wpa_s = ctx;
  2559. struct wpa_ssid *s;
  2560. for (s = wpa_s->conf->ssid; s; s = s->next) {
  2561. if (s->disabled == 2 &&
  2562. s->ssid_len == ssid_len &&
  2563. os_memcmp(ssid, s->ssid, ssid_len) == 0)
  2564. break;
  2565. }
  2566. if (status == P2P_SC_SUCCESS) {
  2567. wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
  2568. " was accepted; op_freq=%d MHz, SSID=%s",
  2569. MAC2STR(sa), op_freq, wpa_ssid_txt(ssid, ssid_len));
  2570. if (s) {
  2571. int go = s->mode == WPAS_MODE_P2P_GO;
  2572. if (go) {
  2573. wpa_msg_global(wpa_s, MSG_INFO,
  2574. P2P_EVENT_INVITATION_ACCEPTED
  2575. "sa=" MACSTR
  2576. " persistent=%d freq=%d",
  2577. MAC2STR(sa), s->id, op_freq);
  2578. } else {
  2579. wpa_msg_global(wpa_s, MSG_INFO,
  2580. P2P_EVENT_INVITATION_ACCEPTED
  2581. "sa=" MACSTR
  2582. " persistent=%d",
  2583. MAC2STR(sa), s->id);
  2584. }
  2585. wpas_p2p_group_add_persistent(
  2586. wpa_s, s, go, 0, op_freq, 0, 0, 0, 0, NULL,
  2587. go ? P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE : 0,
  2588. 1);
  2589. } else if (bssid) {
  2590. wpa_s->user_initiated_pd = 0;
  2591. wpa_msg_global(wpa_s, MSG_INFO,
  2592. P2P_EVENT_INVITATION_ACCEPTED
  2593. "sa=" MACSTR " go_dev_addr=" MACSTR
  2594. " bssid=" MACSTR " unknown-network",
  2595. MAC2STR(sa), MAC2STR(go_dev_addr),
  2596. MAC2STR(bssid));
  2597. wpas_p2p_join(wpa_s, bssid, go_dev_addr,
  2598. wpa_s->p2p_wps_method, 0, op_freq,
  2599. ssid, ssid_len);
  2600. }
  2601. return;
  2602. }
  2603. if (status != P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
  2604. wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
  2605. " was rejected (status %u)", MAC2STR(sa), status);
  2606. return;
  2607. }
  2608. if (!s) {
  2609. if (bssid) {
  2610. wpa_msg_global(wpa_s, MSG_INFO,
  2611. P2P_EVENT_INVITATION_RECEIVED
  2612. "sa=" MACSTR " go_dev_addr=" MACSTR
  2613. " bssid=" MACSTR " unknown-network",
  2614. MAC2STR(sa), MAC2STR(go_dev_addr),
  2615. MAC2STR(bssid));
  2616. } else {
  2617. wpa_msg_global(wpa_s, MSG_INFO,
  2618. P2P_EVENT_INVITATION_RECEIVED
  2619. "sa=" MACSTR " go_dev_addr=" MACSTR
  2620. " unknown-network",
  2621. MAC2STR(sa), MAC2STR(go_dev_addr));
  2622. }
  2623. wpas_notify_p2p_invitation_received(wpa_s, sa, go_dev_addr,
  2624. bssid, 0, op_freq);
  2625. return;
  2626. }
  2627. if (s->mode == WPAS_MODE_P2P_GO && op_freq) {
  2628. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
  2629. "sa=" MACSTR " persistent=%d freq=%d",
  2630. MAC2STR(sa), s->id, op_freq);
  2631. } else {
  2632. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
  2633. "sa=" MACSTR " persistent=%d",
  2634. MAC2STR(sa), s->id);
  2635. }
  2636. wpas_notify_p2p_invitation_received(wpa_s, sa, go_dev_addr, bssid,
  2637. s->id, op_freq);
  2638. }
  2639. static void wpas_remove_persistent_peer(struct wpa_supplicant *wpa_s,
  2640. struct wpa_ssid *ssid,
  2641. const u8 *peer, int inv)
  2642. {
  2643. size_t i;
  2644. struct wpa_supplicant *p2p_wpa_s = wpa_s->global->p2p_init_wpa_s;
  2645. if (ssid == NULL)
  2646. return;
  2647. for (i = 0; ssid->p2p_client_list && i < ssid->num_p2p_clients; i++) {
  2648. if (os_memcmp(ssid->p2p_client_list + i * 2 * ETH_ALEN, peer,
  2649. ETH_ALEN) == 0)
  2650. break;
  2651. }
  2652. if (i >= ssid->num_p2p_clients || !ssid->p2p_client_list) {
  2653. if (ssid->mode != WPAS_MODE_P2P_GO &&
  2654. os_memcmp(ssid->bssid, peer, ETH_ALEN) == 0) {
  2655. wpa_printf(MSG_DEBUG, "P2P: Remove persistent group %d "
  2656. "due to invitation result", ssid->id);
  2657. wpas_notify_network_removed(wpa_s, ssid);
  2658. wpa_config_remove_network(wpa_s->conf, ssid->id);
  2659. return;
  2660. }
  2661. return; /* Peer not found in client list */
  2662. }
  2663. wpa_printf(MSG_DEBUG, "P2P: Remove peer " MACSTR " from persistent "
  2664. "group %d client list%s",
  2665. MAC2STR(peer), ssid->id,
  2666. inv ? " due to invitation result" : "");
  2667. os_memmove(ssid->p2p_client_list + i * 2 * ETH_ALEN,
  2668. ssid->p2p_client_list + (i + 1) * 2 * ETH_ALEN,
  2669. (ssid->num_p2p_clients - i - 1) * 2 * ETH_ALEN);
  2670. ssid->num_p2p_clients--;
  2671. if (p2p_wpa_s->conf->update_config &&
  2672. wpa_config_write(p2p_wpa_s->confname, p2p_wpa_s->conf))
  2673. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  2674. }
  2675. static void wpas_remove_persistent_client(struct wpa_supplicant *wpa_s,
  2676. const u8 *peer)
  2677. {
  2678. struct wpa_ssid *ssid;
  2679. wpa_s = wpa_s->global->p2p_invite_group;
  2680. if (wpa_s == NULL)
  2681. return; /* No known invitation group */
  2682. ssid = wpa_s->current_ssid;
  2683. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
  2684. !ssid->p2p_persistent_group)
  2685. return; /* Not operating as a GO in persistent group */
  2686. ssid = wpas_p2p_get_persistent(wpa_s->p2pdev, peer,
  2687. ssid->ssid, ssid->ssid_len);
  2688. wpas_remove_persistent_peer(wpa_s, ssid, peer, 1);
  2689. }
  2690. static void wpas_invitation_result(void *ctx, int status, const u8 *bssid,
  2691. const struct p2p_channels *channels,
  2692. const u8 *peer, int neg_freq,
  2693. int peer_oper_freq)
  2694. {
  2695. struct wpa_supplicant *wpa_s = ctx;
  2696. struct wpa_ssid *ssid;
  2697. int freq;
  2698. if (bssid) {
  2699. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
  2700. "status=%d " MACSTR,
  2701. status, MAC2STR(bssid));
  2702. } else {
  2703. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
  2704. "status=%d ", status);
  2705. }
  2706. wpas_notify_p2p_invitation_result(wpa_s, status, bssid);
  2707. wpa_printf(MSG_DEBUG, "P2P: Invitation result - status=%d peer=" MACSTR,
  2708. status, MAC2STR(peer));
  2709. if (wpa_s->pending_invite_ssid_id == -1) {
  2710. struct wpa_supplicant *group_if =
  2711. wpa_s->global->p2p_invite_group;
  2712. if (status == P2P_SC_FAIL_UNKNOWN_GROUP)
  2713. wpas_remove_persistent_client(wpa_s, peer);
  2714. /*
  2715. * Invitation to an active group. If this is successful and we
  2716. * are the GO, set the client wait to postpone some concurrent
  2717. * operations and to allow provisioning and connection to happen
  2718. * more quickly.
  2719. */
  2720. if (status == P2P_SC_SUCCESS &&
  2721. group_if && group_if->current_ssid &&
  2722. group_if->current_ssid->mode == WPAS_MODE_P2P_GO) {
  2723. os_get_reltime(&wpa_s->global->p2p_go_wait_client);
  2724. #ifdef CONFIG_TESTING_OPTIONS
  2725. if (group_if->p2p_go_csa_on_inv) {
  2726. wpa_printf(MSG_DEBUG,
  2727. "Testing: force P2P GO CSA after invitation");
  2728. eloop_cancel_timeout(
  2729. wpas_p2p_reconsider_moving_go,
  2730. wpa_s, NULL);
  2731. eloop_register_timeout(
  2732. 0, 50000,
  2733. wpas_p2p_reconsider_moving_go,
  2734. wpa_s, NULL);
  2735. }
  2736. #endif /* CONFIG_TESTING_OPTIONS */
  2737. }
  2738. return;
  2739. }
  2740. if (status == P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
  2741. wpa_printf(MSG_DEBUG, "P2P: Waiting for peer to start another "
  2742. "invitation exchange to indicate readiness for "
  2743. "re-invocation");
  2744. }
  2745. if (status != P2P_SC_SUCCESS) {
  2746. if (status == P2P_SC_FAIL_UNKNOWN_GROUP) {
  2747. ssid = wpa_config_get_network(
  2748. wpa_s->conf, wpa_s->pending_invite_ssid_id);
  2749. wpas_remove_persistent_peer(wpa_s, ssid, peer, 1);
  2750. }
  2751. wpas_p2p_remove_pending_group_interface(wpa_s);
  2752. return;
  2753. }
  2754. ssid = wpa_config_get_network(wpa_s->conf,
  2755. wpa_s->pending_invite_ssid_id);
  2756. if (ssid == NULL) {
  2757. wpa_printf(MSG_ERROR, "P2P: Could not find persistent group "
  2758. "data matching with invitation");
  2759. return;
  2760. }
  2761. /*
  2762. * The peer could have missed our ctrl::ack frame for Invitation
  2763. * Response and continue retransmitting the frame. To reduce the
  2764. * likelihood of the peer not getting successful TX status for the
  2765. * Invitation Response frame, wait a short time here before starting
  2766. * the persistent group so that we will remain on the current channel to
  2767. * acknowledge any possible retransmission from the peer.
  2768. */
  2769. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: 50 ms wait on current channel before "
  2770. "starting persistent group");
  2771. os_sleep(0, 50000);
  2772. if (neg_freq > 0 && ssid->mode == WPAS_MODE_P2P_GO &&
  2773. freq_included(wpa_s, channels, neg_freq))
  2774. freq = neg_freq;
  2775. else if (peer_oper_freq > 0 && ssid->mode != WPAS_MODE_P2P_GO &&
  2776. freq_included(wpa_s, channels, peer_oper_freq))
  2777. freq = peer_oper_freq;
  2778. else
  2779. freq = 0;
  2780. wpa_printf(MSG_DEBUG, "P2P: Persistent group invitation success - op_freq=%d MHz SSID=%s",
  2781. freq, wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  2782. wpas_p2p_group_add_persistent(wpa_s, ssid,
  2783. ssid->mode == WPAS_MODE_P2P_GO,
  2784. wpa_s->p2p_persistent_go_freq,
  2785. freq,
  2786. wpa_s->p2p_go_vht_center_freq2,
  2787. wpa_s->p2p_go_ht40, wpa_s->p2p_go_vht,
  2788. wpa_s->p2p_go_max_oper_chwidth,
  2789. channels,
  2790. ssid->mode == WPAS_MODE_P2P_GO ?
  2791. P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE :
  2792. 0, 1);
  2793. }
  2794. static int wpas_p2p_disallowed_freq(struct wpa_global *global,
  2795. unsigned int freq)
  2796. {
  2797. if (freq_range_list_includes(&global->p2p_go_avoid_freq, freq))
  2798. return 1;
  2799. return freq_range_list_includes(&global->p2p_disallow_freq, freq);
  2800. }
  2801. static void wpas_p2p_add_chan(struct p2p_reg_class *reg, u8 chan)
  2802. {
  2803. reg->channel[reg->channels] = chan;
  2804. reg->channels++;
  2805. }
  2806. static int wpas_p2p_default_channels(struct wpa_supplicant *wpa_s,
  2807. struct p2p_channels *chan,
  2808. struct p2p_channels *cli_chan)
  2809. {
  2810. int i, cla = 0;
  2811. wpa_s->global->p2p_24ghz_social_channels = 1;
  2812. os_memset(cli_chan, 0, sizeof(*cli_chan));
  2813. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for 2.4 GHz "
  2814. "band");
  2815. /* Operating class 81 - 2.4 GHz band channels 1..13 */
  2816. chan->reg_class[cla].reg_class = 81;
  2817. chan->reg_class[cla].channels = 0;
  2818. for (i = 0; i < 11; i++) {
  2819. if (!wpas_p2p_disallowed_freq(wpa_s->global, 2412 + i * 5))
  2820. wpas_p2p_add_chan(&chan->reg_class[cla], i + 1);
  2821. }
  2822. if (chan->reg_class[cla].channels)
  2823. cla++;
  2824. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for lower 5 GHz "
  2825. "band");
  2826. /* Operating class 115 - 5 GHz, channels 36-48 */
  2827. chan->reg_class[cla].reg_class = 115;
  2828. chan->reg_class[cla].channels = 0;
  2829. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 36 * 5))
  2830. wpas_p2p_add_chan(&chan->reg_class[cla], 36);
  2831. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 40 * 5))
  2832. wpas_p2p_add_chan(&chan->reg_class[cla], 40);
  2833. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 44 * 5))
  2834. wpas_p2p_add_chan(&chan->reg_class[cla], 44);
  2835. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 48 * 5))
  2836. wpas_p2p_add_chan(&chan->reg_class[cla], 48);
  2837. if (chan->reg_class[cla].channels)
  2838. cla++;
  2839. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for higher 5 GHz "
  2840. "band");
  2841. /* Operating class 124 - 5 GHz, channels 149,153,157,161 */
  2842. chan->reg_class[cla].reg_class = 124;
  2843. chan->reg_class[cla].channels = 0;
  2844. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 149 * 5))
  2845. wpas_p2p_add_chan(&chan->reg_class[cla], 149);
  2846. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 153 * 5))
  2847. wpas_p2p_add_chan(&chan->reg_class[cla], 153);
  2848. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 156 * 5))
  2849. wpas_p2p_add_chan(&chan->reg_class[cla], 157);
  2850. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 161 * 5))
  2851. wpas_p2p_add_chan(&chan->reg_class[cla], 161);
  2852. if (chan->reg_class[cla].channels)
  2853. cla++;
  2854. chan->reg_classes = cla;
  2855. return 0;
  2856. }
  2857. enum chan_allowed {
  2858. NOT_ALLOWED, NO_IR, ALLOWED
  2859. };
  2860. static int has_channel(struct wpa_global *global,
  2861. struct hostapd_hw_modes *mode, u8 chan, int *flags)
  2862. {
  2863. int i;
  2864. unsigned int freq;
  2865. freq = (mode->mode == HOSTAPD_MODE_IEEE80211A ? 5000 : 2407) +
  2866. chan * 5;
  2867. if (wpas_p2p_disallowed_freq(global, freq))
  2868. return NOT_ALLOWED;
  2869. for (i = 0; i < mode->num_channels; i++) {
  2870. if (mode->channels[i].chan == chan) {
  2871. if (flags)
  2872. *flags = mode->channels[i].flag;
  2873. if (mode->channels[i].flag &
  2874. (HOSTAPD_CHAN_DISABLED |
  2875. HOSTAPD_CHAN_RADAR))
  2876. return NOT_ALLOWED;
  2877. if (mode->channels[i].flag & HOSTAPD_CHAN_NO_IR)
  2878. return NO_IR;
  2879. return ALLOWED;
  2880. }
  2881. }
  2882. return NOT_ALLOWED;
  2883. }
  2884. static int wpas_p2p_get_center_80mhz(struct wpa_supplicant *wpa_s,
  2885. struct hostapd_hw_modes *mode,
  2886. u8 channel)
  2887. {
  2888. u8 center_channels[] = { 42, 58, 106, 122, 138, 155 };
  2889. size_t i;
  2890. if (mode->mode != HOSTAPD_MODE_IEEE80211A)
  2891. return 0;
  2892. for (i = 0; i < ARRAY_SIZE(center_channels); i++)
  2893. /*
  2894. * In 80 MHz, the bandwidth "spans" 12 channels (e.g., 36-48),
  2895. * so the center channel is 6 channels away from the start/end.
  2896. */
  2897. if (channel >= center_channels[i] - 6 &&
  2898. channel <= center_channels[i] + 6)
  2899. return center_channels[i];
  2900. return 0;
  2901. }
  2902. static enum chan_allowed wpas_p2p_verify_80mhz(struct wpa_supplicant *wpa_s,
  2903. struct hostapd_hw_modes *mode,
  2904. u8 channel, u8 bw)
  2905. {
  2906. u8 center_chan;
  2907. int i, flags;
  2908. enum chan_allowed res, ret = ALLOWED;
  2909. center_chan = wpas_p2p_get_center_80mhz(wpa_s, mode, channel);
  2910. if (!center_chan)
  2911. return NOT_ALLOWED;
  2912. if (center_chan >= 58 && center_chan <= 138)
  2913. return NOT_ALLOWED; /* Do not allow DFS channels for P2P */
  2914. /* check all the channels are available */
  2915. for (i = 0; i < 4; i++) {
  2916. int adj_chan = center_chan - 6 + i * 4;
  2917. res = has_channel(wpa_s->global, mode, adj_chan, &flags);
  2918. if (res == NOT_ALLOWED)
  2919. return NOT_ALLOWED;
  2920. if (res == NO_IR)
  2921. ret = NO_IR;
  2922. if (i == 0 && !(flags & HOSTAPD_CHAN_VHT_10_70))
  2923. return NOT_ALLOWED;
  2924. if (i == 1 && !(flags & HOSTAPD_CHAN_VHT_30_50))
  2925. return NOT_ALLOWED;
  2926. if (i == 2 && !(flags & HOSTAPD_CHAN_VHT_50_30))
  2927. return NOT_ALLOWED;
  2928. if (i == 3 && !(flags & HOSTAPD_CHAN_VHT_70_10))
  2929. return NOT_ALLOWED;
  2930. }
  2931. return ret;
  2932. }
  2933. static int wpas_p2p_get_center_160mhz(struct wpa_supplicant *wpa_s,
  2934. struct hostapd_hw_modes *mode,
  2935. u8 channel)
  2936. {
  2937. u8 center_channels[] = { 50, 114 };
  2938. unsigned int i;
  2939. if (mode->mode != HOSTAPD_MODE_IEEE80211A)
  2940. return 0;
  2941. for (i = 0; i < ARRAY_SIZE(center_channels); i++)
  2942. /*
  2943. * In 160 MHz, the bandwidth "spans" 28 channels (e.g., 36-64),
  2944. * so the center channel is 14 channels away from the start/end.
  2945. */
  2946. if (channel >= center_channels[i] - 14 &&
  2947. channel <= center_channels[i] + 14)
  2948. return center_channels[i];
  2949. return 0;
  2950. }
  2951. static enum chan_allowed wpas_p2p_verify_160mhz(struct wpa_supplicant *wpa_s,
  2952. struct hostapd_hw_modes *mode,
  2953. u8 channel, u8 bw)
  2954. {
  2955. u8 center_chan;
  2956. int i, flags;
  2957. enum chan_allowed res, ret = ALLOWED;
  2958. center_chan = wpas_p2p_get_center_160mhz(wpa_s, mode, channel);
  2959. if (!center_chan)
  2960. return NOT_ALLOWED;
  2961. /* VHT 160 MHz uses DFS channels in most countries. */
  2962. /* Check all the channels are available */
  2963. for (i = 0; i < 8; i++) {
  2964. int adj_chan = center_chan - 14 + i * 4;
  2965. res = has_channel(wpa_s->global, mode, adj_chan, &flags);
  2966. if (res == NOT_ALLOWED)
  2967. return NOT_ALLOWED;
  2968. if (res == NO_IR)
  2969. ret = NO_IR;
  2970. if (i == 0 && !(flags & HOSTAPD_CHAN_VHT_10_150))
  2971. return NOT_ALLOWED;
  2972. if (i == 1 && !(flags & HOSTAPD_CHAN_VHT_30_130))
  2973. return NOT_ALLOWED;
  2974. if (i == 2 && !(flags & HOSTAPD_CHAN_VHT_50_110))
  2975. return NOT_ALLOWED;
  2976. if (i == 3 && !(flags & HOSTAPD_CHAN_VHT_70_90))
  2977. return NOT_ALLOWED;
  2978. if (i == 4 && !(flags & HOSTAPD_CHAN_VHT_90_70))
  2979. return NOT_ALLOWED;
  2980. if (i == 5 && !(flags & HOSTAPD_CHAN_VHT_110_50))
  2981. return NOT_ALLOWED;
  2982. if (i == 6 && !(flags & HOSTAPD_CHAN_VHT_130_30))
  2983. return NOT_ALLOWED;
  2984. if (i == 7 && !(flags & HOSTAPD_CHAN_VHT_150_10))
  2985. return NOT_ALLOWED;
  2986. }
  2987. return ret;
  2988. }
  2989. static enum chan_allowed wpas_p2p_verify_channel(struct wpa_supplicant *wpa_s,
  2990. struct hostapd_hw_modes *mode,
  2991. u8 channel, u8 bw)
  2992. {
  2993. int flag = 0;
  2994. enum chan_allowed res, res2;
  2995. res2 = res = has_channel(wpa_s->global, mode, channel, &flag);
  2996. if (bw == BW40MINUS) {
  2997. if (!(flag & HOSTAPD_CHAN_HT40MINUS))
  2998. return NOT_ALLOWED;
  2999. res2 = has_channel(wpa_s->global, mode, channel - 4, NULL);
  3000. } else if (bw == BW40PLUS) {
  3001. if (!(flag & HOSTAPD_CHAN_HT40PLUS))
  3002. return NOT_ALLOWED;
  3003. res2 = has_channel(wpa_s->global, mode, channel + 4, NULL);
  3004. } else if (bw == BW80) {
  3005. res2 = wpas_p2p_verify_80mhz(wpa_s, mode, channel, bw);
  3006. } else if (bw == BW160) {
  3007. res2 = wpas_p2p_verify_160mhz(wpa_s, mode, channel, bw);
  3008. }
  3009. if (res == NOT_ALLOWED || res2 == NOT_ALLOWED)
  3010. return NOT_ALLOWED;
  3011. if (res == NO_IR || res2 == NO_IR)
  3012. return NO_IR;
  3013. return res;
  3014. }
  3015. static int wpas_p2p_setup_channels(struct wpa_supplicant *wpa_s,
  3016. struct p2p_channels *chan,
  3017. struct p2p_channels *cli_chan)
  3018. {
  3019. struct hostapd_hw_modes *mode;
  3020. int cla, op, cli_cla;
  3021. if (wpa_s->hw.modes == NULL) {
  3022. wpa_printf(MSG_DEBUG, "P2P: Driver did not support fetching "
  3023. "of all supported channels; assume dualband "
  3024. "support");
  3025. return wpas_p2p_default_channels(wpa_s, chan, cli_chan);
  3026. }
  3027. cla = cli_cla = 0;
  3028. for (op = 0; global_op_class[op].op_class; op++) {
  3029. const struct oper_class_map *o = &global_op_class[op];
  3030. u8 ch;
  3031. struct p2p_reg_class *reg = NULL, *cli_reg = NULL;
  3032. if (o->p2p == NO_P2P_SUPP)
  3033. continue;
  3034. mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, o->mode);
  3035. if (mode == NULL)
  3036. continue;
  3037. if (mode->mode == HOSTAPD_MODE_IEEE80211G)
  3038. wpa_s->global->p2p_24ghz_social_channels = 1;
  3039. for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
  3040. enum chan_allowed res;
  3041. res = wpas_p2p_verify_channel(wpa_s, mode, ch, o->bw);
  3042. if (res == ALLOWED) {
  3043. if (reg == NULL) {
  3044. wpa_printf(MSG_DEBUG, "P2P: Add operating class %u",
  3045. o->op_class);
  3046. reg = &chan->reg_class[cla];
  3047. cla++;
  3048. reg->reg_class = o->op_class;
  3049. }
  3050. reg->channel[reg->channels] = ch;
  3051. reg->channels++;
  3052. } else if (res == NO_IR &&
  3053. wpa_s->conf->p2p_add_cli_chan) {
  3054. if (cli_reg == NULL) {
  3055. wpa_printf(MSG_DEBUG, "P2P: Add operating class %u (client only)",
  3056. o->op_class);
  3057. cli_reg = &cli_chan->reg_class[cli_cla];
  3058. cli_cla++;
  3059. cli_reg->reg_class = o->op_class;
  3060. }
  3061. cli_reg->channel[cli_reg->channels] = ch;
  3062. cli_reg->channels++;
  3063. }
  3064. }
  3065. if (reg) {
  3066. wpa_hexdump(MSG_DEBUG, "P2P: Channels",
  3067. reg->channel, reg->channels);
  3068. }
  3069. if (cli_reg) {
  3070. wpa_hexdump(MSG_DEBUG, "P2P: Channels (client only)",
  3071. cli_reg->channel, cli_reg->channels);
  3072. }
  3073. }
  3074. chan->reg_classes = cla;
  3075. cli_chan->reg_classes = cli_cla;
  3076. return 0;
  3077. }
  3078. int wpas_p2p_get_ht40_mode(struct wpa_supplicant *wpa_s,
  3079. struct hostapd_hw_modes *mode, u8 channel)
  3080. {
  3081. int op;
  3082. enum chan_allowed ret;
  3083. for (op = 0; global_op_class[op].op_class; op++) {
  3084. const struct oper_class_map *o = &global_op_class[op];
  3085. u8 ch;
  3086. if (o->p2p == NO_P2P_SUPP)
  3087. continue;
  3088. for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
  3089. if (o->mode != HOSTAPD_MODE_IEEE80211A ||
  3090. (o->bw != BW40PLUS && o->bw != BW40MINUS) ||
  3091. ch != channel)
  3092. continue;
  3093. ret = wpas_p2p_verify_channel(wpa_s, mode, ch, o->bw);
  3094. if (ret == ALLOWED)
  3095. return (o->bw == BW40MINUS) ? -1 : 1;
  3096. }
  3097. }
  3098. return 0;
  3099. }
  3100. int wpas_p2p_get_vht80_center(struct wpa_supplicant *wpa_s,
  3101. struct hostapd_hw_modes *mode, u8 channel)
  3102. {
  3103. if (!wpas_p2p_verify_channel(wpa_s, mode, channel, BW80))
  3104. return 0;
  3105. return wpas_p2p_get_center_80mhz(wpa_s, mode, channel);
  3106. }
  3107. int wpas_p2p_get_vht160_center(struct wpa_supplicant *wpa_s,
  3108. struct hostapd_hw_modes *mode, u8 channel)
  3109. {
  3110. if (!wpas_p2p_verify_channel(wpa_s, mode, channel, BW160))
  3111. return 0;
  3112. return wpas_p2p_get_center_160mhz(wpa_s, mode, channel);
  3113. }
  3114. static int wpas_get_noa(void *ctx, const u8 *interface_addr, u8 *buf,
  3115. size_t buf_len)
  3116. {
  3117. struct wpa_supplicant *wpa_s = ctx;
  3118. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  3119. if (os_memcmp(wpa_s->own_addr, interface_addr, ETH_ALEN) == 0)
  3120. break;
  3121. }
  3122. if (wpa_s == NULL)
  3123. return -1;
  3124. return wpa_drv_get_noa(wpa_s, buf, buf_len);
  3125. }
  3126. struct wpa_supplicant * wpas_get_p2p_go_iface(struct wpa_supplicant *wpa_s,
  3127. const u8 *ssid, size_t ssid_len)
  3128. {
  3129. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  3130. struct wpa_ssid *s = wpa_s->current_ssid;
  3131. if (s == NULL)
  3132. continue;
  3133. if (s->mode != WPAS_MODE_P2P_GO &&
  3134. s->mode != WPAS_MODE_AP &&
  3135. s->mode != WPAS_MODE_P2P_GROUP_FORMATION)
  3136. continue;
  3137. if (s->ssid_len != ssid_len ||
  3138. os_memcmp(ssid, s->ssid, ssid_len) != 0)
  3139. continue;
  3140. return wpa_s;
  3141. }
  3142. return NULL;
  3143. }
  3144. struct wpa_supplicant * wpas_get_p2p_client_iface(struct wpa_supplicant *wpa_s,
  3145. const u8 *peer_dev_addr)
  3146. {
  3147. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  3148. struct wpa_ssid *ssid = wpa_s->current_ssid;
  3149. if (ssid && (ssid->mode != WPAS_MODE_INFRA || !ssid->p2p_group))
  3150. continue;
  3151. if (os_memcmp(wpa_s->go_dev_addr, peer_dev_addr, ETH_ALEN) == 0)
  3152. return wpa_s;
  3153. }
  3154. return NULL;
  3155. }
  3156. static int wpas_go_connected(void *ctx, const u8 *dev_addr)
  3157. {
  3158. struct wpa_supplicant *wpa_s = ctx;
  3159. return wpas_get_p2p_client_iface(wpa_s, dev_addr) != NULL;
  3160. }
  3161. static int wpas_is_concurrent_session_active(void *ctx)
  3162. {
  3163. struct wpa_supplicant *wpa_s = ctx;
  3164. struct wpa_supplicant *ifs;
  3165. for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
  3166. if (ifs == wpa_s)
  3167. continue;
  3168. if (ifs->wpa_state > WPA_ASSOCIATED)
  3169. return 1;
  3170. }
  3171. return 0;
  3172. }
  3173. static void wpas_p2p_debug_print(void *ctx, int level, const char *msg)
  3174. {
  3175. struct wpa_supplicant *wpa_s = ctx;
  3176. wpa_msg_global(wpa_s, level, "P2P: %s", msg);
  3177. }
  3178. int wpas_p2p_add_p2pdev_interface(struct wpa_supplicant *wpa_s,
  3179. const char *conf_p2p_dev)
  3180. {
  3181. struct wpa_interface iface;
  3182. struct wpa_supplicant *p2pdev_wpa_s;
  3183. char ifname[100];
  3184. char force_name[100];
  3185. int ret;
  3186. ret = os_snprintf(ifname, sizeof(ifname), P2P_MGMT_DEVICE_PREFIX "%s",
  3187. wpa_s->ifname);
  3188. if (os_snprintf_error(sizeof(ifname), ret))
  3189. return -1;
  3190. force_name[0] = '\0';
  3191. wpa_s->pending_interface_type = WPA_IF_P2P_DEVICE;
  3192. ret = wpa_drv_if_add(wpa_s, WPA_IF_P2P_DEVICE, ifname, NULL, NULL,
  3193. force_name, wpa_s->pending_interface_addr, NULL);
  3194. if (ret < 0) {
  3195. wpa_printf(MSG_DEBUG, "P2P: Failed to create P2P Device interface");
  3196. return ret;
  3197. }
  3198. os_strlcpy(wpa_s->pending_interface_name, ifname,
  3199. sizeof(wpa_s->pending_interface_name));
  3200. os_memset(&iface, 0, sizeof(iface));
  3201. iface.p2p_mgmt = 1;
  3202. iface.ifname = wpa_s->pending_interface_name;
  3203. iface.driver = wpa_s->driver->name;
  3204. iface.driver_param = wpa_s->conf->driver_param;
  3205. /*
  3206. * If a P2P Device configuration file was given, use it as the interface
  3207. * configuration file (instead of using parent's configuration file.
  3208. */
  3209. if (conf_p2p_dev) {
  3210. iface.confname = conf_p2p_dev;
  3211. iface.ctrl_interface = NULL;
  3212. } else {
  3213. iface.confname = wpa_s->confname;
  3214. iface.ctrl_interface = wpa_s->conf->ctrl_interface;
  3215. }
  3216. p2pdev_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface, wpa_s);
  3217. if (!p2pdev_wpa_s) {
  3218. wpa_printf(MSG_DEBUG, "P2P: Failed to add P2P Device interface");
  3219. return -1;
  3220. }
  3221. p2pdev_wpa_s->p2pdev = p2pdev_wpa_s;
  3222. wpa_s->pending_interface_name[0] = '\0';
  3223. return 0;
  3224. }
  3225. static void wpas_presence_resp(void *ctx, const u8 *src, u8 status,
  3226. const u8 *noa, size_t noa_len)
  3227. {
  3228. struct wpa_supplicant *wpa_s, *intf = ctx;
  3229. char hex[100];
  3230. for (wpa_s = intf->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  3231. if (wpa_s->waiting_presence_resp)
  3232. break;
  3233. }
  3234. if (!wpa_s) {
  3235. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No group interface was waiting for presence response");
  3236. return;
  3237. }
  3238. wpa_s->waiting_presence_resp = 0;
  3239. wpa_snprintf_hex(hex, sizeof(hex), noa, noa_len);
  3240. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PRESENCE_RESPONSE "src=" MACSTR
  3241. " status=%u noa=%s", MAC2STR(src), status, hex);
  3242. }
  3243. static int wpas_get_persistent_group(void *ctx, const u8 *addr, const u8 *ssid,
  3244. size_t ssid_len, u8 *go_dev_addr,
  3245. u8 *ret_ssid, size_t *ret_ssid_len,
  3246. u8 *intended_iface_addr)
  3247. {
  3248. struct wpa_supplicant *wpa_s = ctx;
  3249. struct wpa_ssid *s;
  3250. s = wpas_p2p_get_persistent(wpa_s, addr, ssid, ssid_len);
  3251. if (s) {
  3252. os_memcpy(ret_ssid, s->ssid, s->ssid_len);
  3253. *ret_ssid_len = s->ssid_len;
  3254. os_memcpy(go_dev_addr, s->bssid, ETH_ALEN);
  3255. if (s->mode != WPAS_MODE_P2P_GO) {
  3256. os_memset(intended_iface_addr, 0, ETH_ALEN);
  3257. } else if (wpas_p2p_create_iface(wpa_s)) {
  3258. if (wpas_p2p_add_group_interface(wpa_s, WPA_IF_P2P_GO))
  3259. return 0;
  3260. os_memcpy(intended_iface_addr,
  3261. wpa_s->pending_interface_addr, ETH_ALEN);
  3262. } else {
  3263. os_memcpy(intended_iface_addr, wpa_s->own_addr,
  3264. ETH_ALEN);
  3265. }
  3266. return 1;
  3267. }
  3268. return 0;
  3269. }
  3270. static int wpas_get_go_info(void *ctx, u8 *intended_addr,
  3271. u8 *ssid, size_t *ssid_len, int *group_iface,
  3272. unsigned int *freq)
  3273. {
  3274. struct wpa_supplicant *wpa_s = ctx;
  3275. struct wpa_supplicant *go;
  3276. struct wpa_ssid *s;
  3277. /*
  3278. * group_iface will be set to 1 only if a dedicated interface for P2P
  3279. * role is required. First, we try to reuse an active GO. However,
  3280. * if it is not present, we will try to reactivate an existing
  3281. * persistent group and set group_iface to 1, so the caller will know
  3282. * that the pending interface should be used.
  3283. */
  3284. *group_iface = 0;
  3285. if (freq)
  3286. *freq = 0;
  3287. go = wpas_p2p_get_go_group(wpa_s);
  3288. if (!go) {
  3289. s = wpas_p2p_get_persistent_go(wpa_s);
  3290. *group_iface = wpas_p2p_create_iface(wpa_s);
  3291. if (s)
  3292. os_memcpy(intended_addr, s->bssid, ETH_ALEN);
  3293. else
  3294. return 0;
  3295. } else {
  3296. s = go->current_ssid;
  3297. os_memcpy(intended_addr, go->own_addr, ETH_ALEN);
  3298. if (freq)
  3299. *freq = go->assoc_freq;
  3300. }
  3301. os_memcpy(ssid, s->ssid, s->ssid_len);
  3302. *ssid_len = s->ssid_len;
  3303. return 1;
  3304. }
  3305. static int wpas_remove_stale_groups(void *ctx, const u8 *peer, const u8 *go,
  3306. const u8 *ssid, size_t ssid_len)
  3307. {
  3308. struct wpa_supplicant *wpa_s = ctx;
  3309. struct wpa_ssid *s;
  3310. int save_config = 0;
  3311. size_t i;
  3312. /* Start with our first choice of Persistent Groups */
  3313. while ((s = wpas_p2p_get_persistent(wpa_s, peer, NULL, 0))) {
  3314. if (go && ssid && ssid_len &&
  3315. s->ssid_len == ssid_len &&
  3316. os_memcmp(go, s->bssid, ETH_ALEN) == 0 &&
  3317. os_memcmp(ssid, s->ssid, ssid_len) == 0)
  3318. break;
  3319. /* Remove stale persistent group */
  3320. if (s->mode != WPAS_MODE_P2P_GO || s->num_p2p_clients <= 1) {
  3321. wpa_config_remove_network(wpa_s->conf, s->id);
  3322. save_config = 1;
  3323. continue;
  3324. }
  3325. for (i = 0; i < s->num_p2p_clients; i++) {
  3326. if (os_memcmp(s->p2p_client_list + i * 2 * ETH_ALEN,
  3327. peer, ETH_ALEN) != 0)
  3328. continue;
  3329. os_memmove(s->p2p_client_list + i * 2 * ETH_ALEN,
  3330. s->p2p_client_list + (i + 1) * 2 * ETH_ALEN,
  3331. (s->num_p2p_clients - i - 1) * 2 * ETH_ALEN);
  3332. break;
  3333. }
  3334. s->num_p2p_clients--;
  3335. save_config = 1;
  3336. }
  3337. if (save_config)
  3338. p2p_config_write(wpa_s);
  3339. /* Return TRUE if valid SSID remains */
  3340. return s != NULL;
  3341. }
  3342. static void wpas_p2ps_get_feat_cap_str(char *buf, size_t buf_len,
  3343. const u8 *feat_cap, size_t feat_cap_len)
  3344. {
  3345. static const char pref[] = " feature_cap=";
  3346. int ret;
  3347. buf[0] = '\0';
  3348. /*
  3349. * We expect a feature capability to contain at least one byte to be
  3350. * reported. The string buffer provided by the caller function is
  3351. * expected to be big enough to contain all bytes of the attribute for
  3352. * known specifications. This function truncates the reported bytes if
  3353. * the feature capability data exceeds the string buffer size.
  3354. */
  3355. if (!feat_cap || !feat_cap_len || buf_len < sizeof(pref) + 2)
  3356. return;
  3357. os_memcpy(buf, pref, sizeof(pref));
  3358. ret = wpa_snprintf_hex(&buf[sizeof(pref) - 1],
  3359. buf_len - sizeof(pref) + 1,
  3360. feat_cap, feat_cap_len);
  3361. if (ret != (2 * (int) feat_cap_len))
  3362. wpa_printf(MSG_WARNING, "P2PS feature_cap bytes truncated");
  3363. }
  3364. static void wpas_p2ps_prov_complete(void *ctx, u8 status, const u8 *dev,
  3365. const u8 *adv_mac, const u8 *ses_mac,
  3366. const u8 *grp_mac, u32 adv_id, u32 ses_id,
  3367. u8 conncap, int passwd_id,
  3368. const u8 *persist_ssid,
  3369. size_t persist_ssid_size, int response_done,
  3370. int prov_start, const char *session_info,
  3371. const u8 *feat_cap, size_t feat_cap_len,
  3372. unsigned int freq,
  3373. const u8 *group_ssid, size_t group_ssid_len)
  3374. {
  3375. struct wpa_supplicant *wpa_s = ctx;
  3376. u8 mac[ETH_ALEN];
  3377. struct wpa_ssid *persistent_go, *stale, *s = NULL;
  3378. int save_config = 0;
  3379. struct wpa_supplicant *go_wpa_s;
  3380. char feat_cap_str[256];
  3381. if (!dev)
  3382. return;
  3383. os_memset(mac, 0, ETH_ALEN);
  3384. if (!adv_mac)
  3385. adv_mac = mac;
  3386. if (!ses_mac)
  3387. ses_mac = mac;
  3388. if (!grp_mac)
  3389. grp_mac = mac;
  3390. wpas_p2ps_get_feat_cap_str(feat_cap_str, sizeof(feat_cap_str),
  3391. feat_cap, feat_cap_len);
  3392. if (prov_start) {
  3393. if (session_info == NULL) {
  3394. wpa_msg_global(wpa_s, MSG_INFO,
  3395. P2P_EVENT_P2PS_PROVISION_START MACSTR
  3396. " adv_id=%x conncap=%x"
  3397. " adv_mac=" MACSTR
  3398. " session=%x mac=" MACSTR
  3399. " dev_passwd_id=%d%s",
  3400. MAC2STR(dev), adv_id, conncap,
  3401. MAC2STR(adv_mac),
  3402. ses_id, MAC2STR(ses_mac),
  3403. passwd_id, feat_cap_str);
  3404. } else {
  3405. wpa_msg_global(wpa_s, MSG_INFO,
  3406. P2P_EVENT_P2PS_PROVISION_START MACSTR
  3407. " adv_id=%x conncap=%x"
  3408. " adv_mac=" MACSTR
  3409. " session=%x mac=" MACSTR
  3410. " dev_passwd_id=%d info='%s'%s",
  3411. MAC2STR(dev), adv_id, conncap,
  3412. MAC2STR(adv_mac),
  3413. ses_id, MAC2STR(ses_mac),
  3414. passwd_id, session_info, feat_cap_str);
  3415. }
  3416. return;
  3417. }
  3418. go_wpa_s = wpas_p2p_get_go_group(wpa_s);
  3419. persistent_go = wpas_p2p_get_persistent_go(wpa_s);
  3420. if (status && status != P2P_SC_SUCCESS_DEFERRED) {
  3421. if (go_wpa_s && !p2p_group_go_member_count(wpa_s))
  3422. wpas_p2p_group_remove(wpa_s, go_wpa_s->ifname);
  3423. if (persistent_go && !persistent_go->num_p2p_clients) {
  3424. /* remove empty persistent GO */
  3425. wpa_config_remove_network(wpa_s->conf,
  3426. persistent_go->id);
  3427. }
  3428. wpa_msg_global(wpa_s, MSG_INFO,
  3429. P2P_EVENT_P2PS_PROVISION_DONE MACSTR
  3430. " status=%d"
  3431. " adv_id=%x adv_mac=" MACSTR
  3432. " session=%x mac=" MACSTR "%s",
  3433. MAC2STR(dev), status,
  3434. adv_id, MAC2STR(adv_mac),
  3435. ses_id, MAC2STR(ses_mac), feat_cap_str);
  3436. return;
  3437. }
  3438. /* Clean up stale persistent groups with this device */
  3439. if (persist_ssid && persist_ssid_size)
  3440. s = wpas_p2p_get_persistent(wpa_s, dev, persist_ssid,
  3441. persist_ssid_size);
  3442. if (persist_ssid && s && s->mode != WPAS_MODE_P2P_GO &&
  3443. is_zero_ether_addr(grp_mac)) {
  3444. wpa_dbg(wpa_s, MSG_ERROR,
  3445. "P2P: Peer device is a GO in a persistent group, but it did not provide the intended MAC address");
  3446. return;
  3447. }
  3448. for (;;) {
  3449. stale = wpas_p2p_get_persistent(wpa_s, dev, NULL, 0);
  3450. if (!stale)
  3451. break;
  3452. if (s && s->ssid_len == stale->ssid_len &&
  3453. os_memcmp(stale->bssid, s->bssid, ETH_ALEN) == 0 &&
  3454. os_memcmp(stale->ssid, s->ssid, s->ssid_len) == 0)
  3455. break;
  3456. /* Remove stale persistent group */
  3457. if (stale->mode != WPAS_MODE_P2P_GO ||
  3458. stale->num_p2p_clients <= 1) {
  3459. wpa_config_remove_network(wpa_s->conf, stale->id);
  3460. } else {
  3461. size_t i;
  3462. for (i = 0; i < stale->num_p2p_clients; i++) {
  3463. if (os_memcmp(stale->p2p_client_list +
  3464. i * ETH_ALEN,
  3465. dev, ETH_ALEN) == 0) {
  3466. os_memmove(stale->p2p_client_list +
  3467. i * ETH_ALEN,
  3468. stale->p2p_client_list +
  3469. (i + 1) * ETH_ALEN,
  3470. (stale->num_p2p_clients -
  3471. i - 1) * ETH_ALEN);
  3472. break;
  3473. }
  3474. }
  3475. stale->num_p2p_clients--;
  3476. }
  3477. save_config = 1;
  3478. }
  3479. if (save_config)
  3480. p2p_config_write(wpa_s);
  3481. if (s) {
  3482. if (go_wpa_s && !p2p_group_go_member_count(wpa_s))
  3483. wpas_p2p_group_remove(wpa_s, go_wpa_s->ifname);
  3484. if (persistent_go && s != persistent_go &&
  3485. !persistent_go->num_p2p_clients) {
  3486. /* remove empty persistent GO */
  3487. wpa_config_remove_network(wpa_s->conf,
  3488. persistent_go->id);
  3489. /* Save config */
  3490. }
  3491. wpa_msg_global(wpa_s, MSG_INFO,
  3492. P2P_EVENT_P2PS_PROVISION_DONE MACSTR
  3493. " status=%d"
  3494. " adv_id=%x adv_mac=" MACSTR
  3495. " session=%x mac=" MACSTR
  3496. " persist=%d%s",
  3497. MAC2STR(dev), status,
  3498. adv_id, MAC2STR(adv_mac),
  3499. ses_id, MAC2STR(ses_mac), s->id, feat_cap_str);
  3500. return;
  3501. }
  3502. if (conncap == P2PS_SETUP_GROUP_OWNER) {
  3503. /*
  3504. * We need to copy the interface name. Simply saving a
  3505. * pointer isn't enough, since if we use pending_interface_name
  3506. * it will be overwritten when the group is added.
  3507. */
  3508. char go_ifname[100];
  3509. go_ifname[0] = '\0';
  3510. if (!go_wpa_s) {
  3511. wpa_s->global->pending_p2ps_group = 1;
  3512. wpa_s->global->pending_p2ps_group_freq = freq;
  3513. if (!wpas_p2p_create_iface(wpa_s))
  3514. os_memcpy(go_ifname, wpa_s->ifname,
  3515. sizeof(go_ifname));
  3516. else if (wpa_s->pending_interface_name[0])
  3517. os_memcpy(go_ifname,
  3518. wpa_s->pending_interface_name,
  3519. sizeof(go_ifname));
  3520. if (!go_ifname[0]) {
  3521. wpas_p2ps_prov_complete(
  3522. wpa_s, P2P_SC_FAIL_UNKNOWN_GROUP,
  3523. dev, adv_mac, ses_mac,
  3524. grp_mac, adv_id, ses_id, 0, 0,
  3525. NULL, 0, 0, 0, NULL, NULL, 0, 0,
  3526. NULL, 0);
  3527. return;
  3528. }
  3529. /* If PD Resp complete, start up the GO */
  3530. if (response_done && persistent_go) {
  3531. wpas_p2p_group_add_persistent(
  3532. wpa_s, persistent_go,
  3533. 0, 0, freq, 0, 0, 0, 0, NULL,
  3534. persistent_go->mode ==
  3535. WPAS_MODE_P2P_GO ?
  3536. P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE :
  3537. 0, 0);
  3538. } else if (response_done) {
  3539. wpas_p2p_group_add(wpa_s, 1, freq, 0, 0, 0, 0);
  3540. }
  3541. if (passwd_id == DEV_PW_P2PS_DEFAULT) {
  3542. os_memcpy(wpa_s->p2ps_join_addr, grp_mac,
  3543. ETH_ALEN);
  3544. wpa_s->p2ps_method_config_any = 1;
  3545. }
  3546. } else if (passwd_id == DEV_PW_P2PS_DEFAULT) {
  3547. os_memcpy(go_ifname, go_wpa_s->ifname,
  3548. sizeof(go_ifname));
  3549. if (is_zero_ether_addr(grp_mac)) {
  3550. wpa_dbg(go_wpa_s, MSG_DEBUG,
  3551. "P2P: Setting PIN-1 for ANY");
  3552. wpa_supplicant_ap_wps_pin(go_wpa_s, NULL,
  3553. "12345670", NULL, 0,
  3554. 0);
  3555. } else {
  3556. wpa_dbg(go_wpa_s, MSG_DEBUG,
  3557. "P2P: Setting PIN-1 for " MACSTR,
  3558. MAC2STR(grp_mac));
  3559. wpa_supplicant_ap_wps_pin(go_wpa_s, grp_mac,
  3560. "12345670", NULL, 0,
  3561. 0);
  3562. }
  3563. os_memcpy(wpa_s->p2ps_join_addr, grp_mac, ETH_ALEN);
  3564. wpa_s->p2ps_method_config_any = 1;
  3565. }
  3566. wpa_msg_global(wpa_s, MSG_INFO,
  3567. P2P_EVENT_P2PS_PROVISION_DONE MACSTR
  3568. " status=%d conncap=%x"
  3569. " adv_id=%x adv_mac=" MACSTR
  3570. " session=%x mac=" MACSTR
  3571. " dev_passwd_id=%d go=%s%s",
  3572. MAC2STR(dev), status, conncap,
  3573. adv_id, MAC2STR(adv_mac),
  3574. ses_id, MAC2STR(ses_mac),
  3575. passwd_id, go_ifname, feat_cap_str);
  3576. return;
  3577. }
  3578. if (go_wpa_s && !p2p_group_go_member_count(wpa_s))
  3579. wpas_p2p_group_remove(wpa_s, go_wpa_s->ifname);
  3580. if (persistent_go && !persistent_go->num_p2p_clients) {
  3581. /* remove empty persistent GO */
  3582. wpa_config_remove_network(wpa_s->conf, persistent_go->id);
  3583. }
  3584. if (conncap == P2PS_SETUP_CLIENT) {
  3585. char ssid_hex[32 * 2 + 1];
  3586. if (group_ssid)
  3587. wpa_snprintf_hex(ssid_hex, sizeof(ssid_hex),
  3588. group_ssid, group_ssid_len);
  3589. else
  3590. ssid_hex[0] = '\0';
  3591. wpa_msg_global(wpa_s, MSG_INFO,
  3592. P2P_EVENT_P2PS_PROVISION_DONE MACSTR
  3593. " status=%d conncap=%x"
  3594. " adv_id=%x adv_mac=" MACSTR
  3595. " session=%x mac=" MACSTR
  3596. " dev_passwd_id=%d join=" MACSTR "%s%s%s",
  3597. MAC2STR(dev), status, conncap,
  3598. adv_id, MAC2STR(adv_mac),
  3599. ses_id, MAC2STR(ses_mac),
  3600. passwd_id, MAC2STR(grp_mac), feat_cap_str,
  3601. group_ssid ? " group_ssid=" : "", ssid_hex);
  3602. } else {
  3603. wpa_msg_global(wpa_s, MSG_INFO,
  3604. P2P_EVENT_P2PS_PROVISION_DONE MACSTR
  3605. " status=%d conncap=%x"
  3606. " adv_id=%x adv_mac=" MACSTR
  3607. " session=%x mac=" MACSTR
  3608. " dev_passwd_id=%d%s",
  3609. MAC2STR(dev), status, conncap,
  3610. adv_id, MAC2STR(adv_mac),
  3611. ses_id, MAC2STR(ses_mac),
  3612. passwd_id, feat_cap_str);
  3613. }
  3614. }
  3615. static int _wpas_p2p_in_progress(void *ctx)
  3616. {
  3617. struct wpa_supplicant *wpa_s = ctx;
  3618. return wpas_p2p_in_progress(wpa_s);
  3619. }
  3620. static int wpas_prov_disc_resp_cb(void *ctx)
  3621. {
  3622. struct wpa_supplicant *wpa_s = ctx;
  3623. struct wpa_ssid *persistent_go;
  3624. unsigned int freq;
  3625. if (!wpa_s->global->pending_p2ps_group)
  3626. return 0;
  3627. freq = wpa_s->global->pending_p2ps_group_freq;
  3628. wpa_s->global->pending_p2ps_group_freq = 0;
  3629. wpa_s->global->pending_p2ps_group = 0;
  3630. if (wpas_p2p_get_go_group(wpa_s))
  3631. return 0;
  3632. persistent_go = wpas_p2p_get_persistent_go(wpa_s);
  3633. if (persistent_go) {
  3634. wpas_p2p_group_add_persistent(
  3635. wpa_s, persistent_go, 0, 0, 0, 0, 0, 0, 0, NULL,
  3636. persistent_go->mode == WPAS_MODE_P2P_GO ?
  3637. P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE : 0, 0);
  3638. } else {
  3639. wpas_p2p_group_add(wpa_s, 1, freq, 0, 0, 0, 0);
  3640. }
  3641. return 1;
  3642. }
  3643. static int wpas_p2p_get_pref_freq_list(void *ctx, int go,
  3644. unsigned int *len,
  3645. unsigned int *freq_list)
  3646. {
  3647. struct wpa_supplicant *wpa_s = ctx;
  3648. return wpa_drv_get_pref_freq_list(wpa_s, go ? WPA_IF_P2P_GO :
  3649. WPA_IF_P2P_CLIENT, len, freq_list);
  3650. }
  3651. /**
  3652. * wpas_p2p_init - Initialize P2P module for %wpa_supplicant
  3653. * @global: Pointer to global data from wpa_supplicant_init()
  3654. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3655. * Returns: 0 on success, -1 on failure
  3656. */
  3657. int wpas_p2p_init(struct wpa_global *global, struct wpa_supplicant *wpa_s)
  3658. {
  3659. struct p2p_config p2p;
  3660. int i;
  3661. if (wpa_s->conf->p2p_disabled)
  3662. return 0;
  3663. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
  3664. return 0;
  3665. if (global->p2p)
  3666. return 0;
  3667. os_memset(&p2p, 0, sizeof(p2p));
  3668. p2p.cb_ctx = wpa_s;
  3669. p2p.debug_print = wpas_p2p_debug_print;
  3670. p2p.p2p_scan = wpas_p2p_scan;
  3671. p2p.send_action = wpas_send_action;
  3672. p2p.send_action_done = wpas_send_action_done;
  3673. p2p.go_neg_completed = wpas_go_neg_completed;
  3674. p2p.go_neg_req_rx = wpas_go_neg_req_rx;
  3675. p2p.dev_found = wpas_dev_found;
  3676. p2p.dev_lost = wpas_dev_lost;
  3677. p2p.find_stopped = wpas_find_stopped;
  3678. p2p.start_listen = wpas_start_listen;
  3679. p2p.stop_listen = wpas_stop_listen;
  3680. p2p.send_probe_resp = wpas_send_probe_resp;
  3681. p2p.sd_request = wpas_sd_request;
  3682. p2p.sd_response = wpas_sd_response;
  3683. p2p.prov_disc_req = wpas_prov_disc_req;
  3684. p2p.prov_disc_resp = wpas_prov_disc_resp;
  3685. p2p.prov_disc_fail = wpas_prov_disc_fail;
  3686. p2p.invitation_process = wpas_invitation_process;
  3687. p2p.invitation_received = wpas_invitation_received;
  3688. p2p.invitation_result = wpas_invitation_result;
  3689. p2p.get_noa = wpas_get_noa;
  3690. p2p.go_connected = wpas_go_connected;
  3691. p2p.presence_resp = wpas_presence_resp;
  3692. p2p.is_concurrent_session_active = wpas_is_concurrent_session_active;
  3693. p2p.is_p2p_in_progress = _wpas_p2p_in_progress;
  3694. p2p.get_persistent_group = wpas_get_persistent_group;
  3695. p2p.get_go_info = wpas_get_go_info;
  3696. p2p.remove_stale_groups = wpas_remove_stale_groups;
  3697. p2p.p2ps_prov_complete = wpas_p2ps_prov_complete;
  3698. p2p.prov_disc_resp_cb = wpas_prov_disc_resp_cb;
  3699. p2p.p2ps_group_capability = p2ps_group_capability;
  3700. p2p.get_pref_freq_list = wpas_p2p_get_pref_freq_list;
  3701. os_memcpy(wpa_s->global->p2p_dev_addr, wpa_s->own_addr, ETH_ALEN);
  3702. os_memcpy(p2p.dev_addr, wpa_s->global->p2p_dev_addr, ETH_ALEN);
  3703. p2p.dev_name = wpa_s->conf->device_name;
  3704. p2p.manufacturer = wpa_s->conf->manufacturer;
  3705. p2p.model_name = wpa_s->conf->model_name;
  3706. p2p.model_number = wpa_s->conf->model_number;
  3707. p2p.serial_number = wpa_s->conf->serial_number;
  3708. if (wpa_s->wps) {
  3709. os_memcpy(p2p.uuid, wpa_s->wps->uuid, 16);
  3710. p2p.config_methods = wpa_s->wps->config_methods;
  3711. }
  3712. if (wpas_p2p_setup_channels(wpa_s, &p2p.channels, &p2p.cli_channels)) {
  3713. wpa_printf(MSG_ERROR,
  3714. "P2P: Failed to configure supported channel list");
  3715. return -1;
  3716. }
  3717. if (wpa_s->conf->p2p_listen_reg_class &&
  3718. wpa_s->conf->p2p_listen_channel) {
  3719. p2p.reg_class = wpa_s->conf->p2p_listen_reg_class;
  3720. p2p.channel = wpa_s->conf->p2p_listen_channel;
  3721. p2p.channel_forced = 1;
  3722. } else {
  3723. /*
  3724. * Pick one of the social channels randomly as the listen
  3725. * channel.
  3726. */
  3727. if (p2p_config_get_random_social(&p2p, &p2p.reg_class,
  3728. &p2p.channel) != 0) {
  3729. wpa_printf(MSG_INFO,
  3730. "P2P: No social channels supported by the driver - do not enable P2P");
  3731. return 0;
  3732. }
  3733. p2p.channel_forced = 0;
  3734. }
  3735. wpa_printf(MSG_DEBUG, "P2P: Own listen channel: %d:%d",
  3736. p2p.reg_class, p2p.channel);
  3737. if (wpa_s->conf->p2p_oper_reg_class &&
  3738. wpa_s->conf->p2p_oper_channel) {
  3739. p2p.op_reg_class = wpa_s->conf->p2p_oper_reg_class;
  3740. p2p.op_channel = wpa_s->conf->p2p_oper_channel;
  3741. p2p.cfg_op_channel = 1;
  3742. wpa_printf(MSG_DEBUG, "P2P: Configured operating channel: "
  3743. "%d:%d", p2p.op_reg_class, p2p.op_channel);
  3744. } else {
  3745. /*
  3746. * Use random operation channel from 2.4 GHz band social
  3747. * channels (1, 6, 11) or band 60 GHz social channel (2) if no
  3748. * other preference is indicated.
  3749. */
  3750. if (p2p_config_get_random_social(&p2p, &p2p.op_reg_class,
  3751. &p2p.op_channel) != 0) {
  3752. wpa_printf(MSG_ERROR,
  3753. "P2P: Failed to select random social channel as operation channel");
  3754. return -1;
  3755. }
  3756. p2p.cfg_op_channel = 0;
  3757. wpa_printf(MSG_DEBUG, "P2P: Random operating channel: "
  3758. "%d:%d", p2p.op_reg_class, p2p.op_channel);
  3759. }
  3760. if (wpa_s->conf->p2p_pref_chan && wpa_s->conf->num_p2p_pref_chan) {
  3761. p2p.pref_chan = wpa_s->conf->p2p_pref_chan;
  3762. p2p.num_pref_chan = wpa_s->conf->num_p2p_pref_chan;
  3763. }
  3764. if (wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
  3765. os_memcpy(p2p.country, wpa_s->conf->country, 2);
  3766. p2p.country[2] = 0x04;
  3767. } else
  3768. os_memcpy(p2p.country, "XX\x04", 3);
  3769. os_memcpy(p2p.pri_dev_type, wpa_s->conf->device_type,
  3770. WPS_DEV_TYPE_LEN);
  3771. p2p.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
  3772. os_memcpy(p2p.sec_dev_type, wpa_s->conf->sec_device_type,
  3773. p2p.num_sec_dev_types * WPS_DEV_TYPE_LEN);
  3774. p2p.concurrent_operations = !!(wpa_s->drv_flags &
  3775. WPA_DRIVER_FLAGS_P2P_CONCURRENT);
  3776. p2p.max_peers = 100;
  3777. if (wpa_s->conf->p2p_ssid_postfix) {
  3778. p2p.ssid_postfix_len =
  3779. os_strlen(wpa_s->conf->p2p_ssid_postfix);
  3780. if (p2p.ssid_postfix_len > sizeof(p2p.ssid_postfix))
  3781. p2p.ssid_postfix_len = sizeof(p2p.ssid_postfix);
  3782. os_memcpy(p2p.ssid_postfix, wpa_s->conf->p2p_ssid_postfix,
  3783. p2p.ssid_postfix_len);
  3784. }
  3785. p2p.p2p_intra_bss = wpa_s->conf->p2p_intra_bss;
  3786. p2p.max_listen = wpa_s->max_remain_on_chan;
  3787. if (wpa_s->conf->p2p_passphrase_len >= 8 &&
  3788. wpa_s->conf->p2p_passphrase_len <= 63)
  3789. p2p.passphrase_len = wpa_s->conf->p2p_passphrase_len;
  3790. else
  3791. p2p.passphrase_len = 8;
  3792. global->p2p = p2p_init(&p2p);
  3793. if (global->p2p == NULL)
  3794. return -1;
  3795. global->p2p_init_wpa_s = wpa_s;
  3796. for (i = 0; i < MAX_WPS_VENDOR_EXT; i++) {
  3797. if (wpa_s->conf->wps_vendor_ext[i] == NULL)
  3798. continue;
  3799. p2p_add_wps_vendor_extension(
  3800. global->p2p, wpa_s->conf->wps_vendor_ext[i]);
  3801. }
  3802. p2p_set_no_go_freq(global->p2p, &wpa_s->conf->p2p_no_go_freq);
  3803. return 0;
  3804. }
  3805. /**
  3806. * wpas_p2p_deinit - Deinitialize per-interface P2P data
  3807. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3808. *
  3809. * This function deinitialize per-interface P2P data.
  3810. */
  3811. void wpas_p2p_deinit(struct wpa_supplicant *wpa_s)
  3812. {
  3813. if (wpa_s->driver && wpa_s->drv_priv)
  3814. wpa_drv_probe_req_report(wpa_s, 0);
  3815. if (wpa_s->go_params) {
  3816. /* Clear any stored provisioning info */
  3817. p2p_clear_provisioning_info(
  3818. wpa_s->global->p2p,
  3819. wpa_s->go_params->peer_device_addr);
  3820. }
  3821. os_free(wpa_s->go_params);
  3822. wpa_s->go_params = NULL;
  3823. eloop_cancel_timeout(wpas_p2p_psk_failure_removal, wpa_s, NULL);
  3824. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  3825. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  3826. wpa_s->p2p_long_listen = 0;
  3827. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  3828. eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
  3829. wpas_p2p_remove_pending_group_interface(wpa_s);
  3830. eloop_cancel_timeout(wpas_p2p_group_freq_conflict, wpa_s, NULL);
  3831. wpas_p2p_listen_work_done(wpa_s);
  3832. if (wpa_s->p2p_send_action_work) {
  3833. os_free(wpa_s->p2p_send_action_work->ctx);
  3834. radio_work_done(wpa_s->p2p_send_action_work);
  3835. wpa_s->p2p_send_action_work = NULL;
  3836. }
  3837. eloop_cancel_timeout(wpas_p2p_send_action_work_timeout, wpa_s, NULL);
  3838. wpabuf_free(wpa_s->p2p_oob_dev_pw);
  3839. wpa_s->p2p_oob_dev_pw = NULL;
  3840. os_free(wpa_s->p2p_group_common_freqs);
  3841. wpa_s->p2p_group_common_freqs = NULL;
  3842. wpa_s->p2p_group_common_freqs_num = 0;
  3843. /* TODO: remove group interface from the driver if this wpa_s instance
  3844. * is on top of a P2P group interface */
  3845. }
  3846. /**
  3847. * wpas_p2p_deinit_global - Deinitialize global P2P module
  3848. * @global: Pointer to global data from wpa_supplicant_init()
  3849. *
  3850. * This function deinitializes the global (per device) P2P module.
  3851. */
  3852. static void wpas_p2p_deinit_global(struct wpa_global *global)
  3853. {
  3854. struct wpa_supplicant *wpa_s, *tmp;
  3855. wpa_s = global->ifaces;
  3856. wpas_p2p_service_flush(global->p2p_init_wpa_s);
  3857. /* Remove remaining P2P group interfaces */
  3858. while (wpa_s && wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE)
  3859. wpa_s = wpa_s->next;
  3860. while (wpa_s) {
  3861. tmp = global->ifaces;
  3862. while (tmp &&
  3863. (tmp == wpa_s ||
  3864. tmp->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)) {
  3865. tmp = tmp->next;
  3866. }
  3867. if (tmp == NULL)
  3868. break;
  3869. /* Disconnect from the P2P group and deinit the interface */
  3870. wpas_p2p_disconnect(tmp);
  3871. }
  3872. /*
  3873. * Deinit GO data on any possibly remaining interface (if main
  3874. * interface is used as GO).
  3875. */
  3876. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  3877. if (wpa_s->ap_iface)
  3878. wpas_p2p_group_deinit(wpa_s);
  3879. }
  3880. p2p_deinit(global->p2p);
  3881. global->p2p = NULL;
  3882. global->p2p_init_wpa_s = NULL;
  3883. }
  3884. static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s)
  3885. {
  3886. if (wpa_s->conf->p2p_no_group_iface)
  3887. return 0; /* separate interface disabled per configuration */
  3888. if (wpa_s->drv_flags &
  3889. (WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE |
  3890. WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P))
  3891. return 1; /* P2P group requires a new interface in every case
  3892. */
  3893. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CONCURRENT))
  3894. return 0; /* driver does not support concurrent operations */
  3895. if (wpa_s->global->ifaces->next)
  3896. return 1; /* more that one interface already in use */
  3897. if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
  3898. return 1; /* this interface is already in use */
  3899. return 0;
  3900. }
  3901. static int wpas_p2p_start_go_neg(struct wpa_supplicant *wpa_s,
  3902. const u8 *peer_addr,
  3903. enum p2p_wps_method wps_method,
  3904. int go_intent, const u8 *own_interface_addr,
  3905. unsigned int force_freq, int persistent_group,
  3906. struct wpa_ssid *ssid, unsigned int pref_freq)
  3907. {
  3908. if (persistent_group && wpa_s->conf->persistent_reconnect)
  3909. persistent_group = 2;
  3910. /*
  3911. * Increase GO config timeout if HT40 is used since it takes some time
  3912. * to scan channels for coex purposes before the BSS can be started.
  3913. */
  3914. p2p_set_config_timeout(wpa_s->global->p2p,
  3915. wpa_s->p2p_go_ht40 ? 255 : 100, 20);
  3916. return p2p_connect(wpa_s->global->p2p, peer_addr, wps_method,
  3917. go_intent, own_interface_addr, force_freq,
  3918. persistent_group, ssid ? ssid->ssid : NULL,
  3919. ssid ? ssid->ssid_len : 0,
  3920. wpa_s->p2p_pd_before_go_neg, pref_freq,
  3921. wps_method == WPS_NFC ? wpa_s->p2p_oob_dev_pw_id :
  3922. 0);
  3923. }
  3924. static int wpas_p2p_auth_go_neg(struct wpa_supplicant *wpa_s,
  3925. const u8 *peer_addr,
  3926. enum p2p_wps_method wps_method,
  3927. int go_intent, const u8 *own_interface_addr,
  3928. unsigned int force_freq, int persistent_group,
  3929. struct wpa_ssid *ssid, unsigned int pref_freq)
  3930. {
  3931. if (persistent_group && wpa_s->conf->persistent_reconnect)
  3932. persistent_group = 2;
  3933. return p2p_authorize(wpa_s->global->p2p, peer_addr, wps_method,
  3934. go_intent, own_interface_addr, force_freq,
  3935. persistent_group, ssid ? ssid->ssid : NULL,
  3936. ssid ? ssid->ssid_len : 0, pref_freq,
  3937. wps_method == WPS_NFC ? wpa_s->p2p_oob_dev_pw_id :
  3938. 0);
  3939. }
  3940. static void wpas_p2p_check_join_scan_limit(struct wpa_supplicant *wpa_s)
  3941. {
  3942. wpa_s->p2p_join_scan_count++;
  3943. wpa_printf(MSG_DEBUG, "P2P: Join scan attempt %d",
  3944. wpa_s->p2p_join_scan_count);
  3945. if (wpa_s->p2p_join_scan_count > P2P_MAX_JOIN_SCAN_ATTEMPTS) {
  3946. wpa_printf(MSG_DEBUG, "P2P: Failed to find GO " MACSTR
  3947. " for join operationg - stop join attempt",
  3948. MAC2STR(wpa_s->pending_join_iface_addr));
  3949. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  3950. if (wpa_s->p2p_auto_pd) {
  3951. wpa_s->p2p_auto_pd = 0;
  3952. wpa_msg_global(wpa_s, MSG_INFO,
  3953. P2P_EVENT_PROV_DISC_FAILURE
  3954. " p2p_dev_addr=" MACSTR " status=N/A",
  3955. MAC2STR(wpa_s->pending_join_dev_addr));
  3956. return;
  3957. }
  3958. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  3959. P2P_EVENT_GROUP_FORMATION_FAILURE);
  3960. wpas_notify_p2p_group_formation_failure(wpa_s, "");
  3961. }
  3962. }
  3963. static int wpas_check_freq_conflict(struct wpa_supplicant *wpa_s, int freq)
  3964. {
  3965. int res;
  3966. unsigned int num, i;
  3967. struct wpa_used_freq_data *freqs;
  3968. if (wpas_p2p_num_unused_channels(wpa_s) > 0) {
  3969. /* Multiple channels are supported and not all are in use */
  3970. return 0;
  3971. }
  3972. freqs = os_calloc(wpa_s->num_multichan_concurrent,
  3973. sizeof(struct wpa_used_freq_data));
  3974. if (!freqs)
  3975. return 1;
  3976. num = wpas_p2p_valid_oper_freqs(wpa_s, freqs,
  3977. wpa_s->num_multichan_concurrent);
  3978. for (i = 0; i < num; i++) {
  3979. if (freqs[i].freq == freq) {
  3980. wpa_printf(MSG_DEBUG, "P2P: Frequency %d MHz in use by another virtual interface and can be used",
  3981. freq);
  3982. res = 0;
  3983. goto exit_free;
  3984. }
  3985. }
  3986. wpa_printf(MSG_DEBUG, "P2P: No valid operating frequencies");
  3987. res = 1;
  3988. exit_free:
  3989. os_free(freqs);
  3990. return res;
  3991. }
  3992. static int wpas_p2p_peer_go(struct wpa_supplicant *wpa_s,
  3993. const u8 *peer_dev_addr)
  3994. {
  3995. struct wpa_bss *bss;
  3996. int updated;
  3997. bss = wpa_bss_get_p2p_dev_addr(wpa_s, peer_dev_addr);
  3998. if (bss == NULL)
  3999. return -1;
  4000. if (bss->last_update_idx < wpa_s->bss_update_idx) {
  4001. wpa_printf(MSG_DEBUG, "P2P: Peer BSS entry not updated in the "
  4002. "last scan");
  4003. return 0;
  4004. }
  4005. updated = os_reltime_before(&wpa_s->p2p_auto_started,
  4006. &bss->last_update);
  4007. wpa_printf(MSG_DEBUG, "P2P: Current BSS entry for peer updated at "
  4008. "%ld.%06ld (%supdated in last scan)",
  4009. bss->last_update.sec, bss->last_update.usec,
  4010. updated ? "": "not ");
  4011. return updated;
  4012. }
  4013. static void wpas_p2p_scan_res_join(struct wpa_supplicant *wpa_s,
  4014. struct wpa_scan_results *scan_res)
  4015. {
  4016. struct wpa_bss *bss = NULL;
  4017. int freq;
  4018. u8 iface_addr[ETH_ALEN];
  4019. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  4020. if (wpa_s->global->p2p_disabled)
  4021. return;
  4022. wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS) for %sjoin",
  4023. scan_res ? (int) scan_res->num : -1,
  4024. wpa_s->p2p_auto_join ? "auto_" : "");
  4025. if (scan_res)
  4026. wpas_p2p_scan_res_handler(wpa_s, scan_res);
  4027. if (wpa_s->p2p_auto_pd) {
  4028. int join = wpas_p2p_peer_go(wpa_s,
  4029. wpa_s->pending_join_dev_addr);
  4030. if (join == 0 &&
  4031. wpa_s->auto_pd_scan_retry < P2P_AUTO_PD_SCAN_ATTEMPTS) {
  4032. wpa_s->auto_pd_scan_retry++;
  4033. bss = wpa_bss_get_bssid_latest(
  4034. wpa_s, wpa_s->pending_join_dev_addr);
  4035. if (bss) {
  4036. freq = bss->freq;
  4037. wpa_printf(MSG_DEBUG, "P2P: Scan retry %d for "
  4038. "the peer " MACSTR " at %d MHz",
  4039. wpa_s->auto_pd_scan_retry,
  4040. MAC2STR(wpa_s->
  4041. pending_join_dev_addr),
  4042. freq);
  4043. wpas_p2p_join_scan_req(wpa_s, freq, NULL, 0);
  4044. return;
  4045. }
  4046. }
  4047. if (join < 0)
  4048. join = 0;
  4049. wpa_s->p2p_auto_pd = 0;
  4050. wpa_s->pending_pd_use = join ? AUTO_PD_JOIN : AUTO_PD_GO_NEG;
  4051. wpa_printf(MSG_DEBUG, "P2P: Auto PD with " MACSTR " join=%d",
  4052. MAC2STR(wpa_s->pending_join_dev_addr), join);
  4053. if (p2p_prov_disc_req(wpa_s->global->p2p,
  4054. wpa_s->pending_join_dev_addr, NULL,
  4055. wpa_s->pending_pd_config_methods, join,
  4056. 0, wpa_s->user_initiated_pd) < 0) {
  4057. wpa_s->p2p_auto_pd = 0;
  4058. wpa_msg_global(wpa_s, MSG_INFO,
  4059. P2P_EVENT_PROV_DISC_FAILURE
  4060. " p2p_dev_addr=" MACSTR " status=N/A",
  4061. MAC2STR(wpa_s->pending_join_dev_addr));
  4062. }
  4063. return;
  4064. }
  4065. if (wpa_s->p2p_auto_join) {
  4066. int join = wpas_p2p_peer_go(wpa_s,
  4067. wpa_s->pending_join_dev_addr);
  4068. if (join < 0) {
  4069. wpa_printf(MSG_DEBUG, "P2P: Peer was not found to be "
  4070. "running a GO -> use GO Negotiation");
  4071. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  4072. P2P_EVENT_FALLBACK_TO_GO_NEG
  4073. "reason=peer-not-running-GO");
  4074. wpas_p2p_connect(wpa_s, wpa_s->pending_join_dev_addr,
  4075. wpa_s->p2p_pin, wpa_s->p2p_wps_method,
  4076. wpa_s->p2p_persistent_group, 0, 0, 0,
  4077. wpa_s->p2p_go_intent,
  4078. wpa_s->p2p_connect_freq,
  4079. wpa_s->p2p_go_vht_center_freq2,
  4080. wpa_s->p2p_persistent_id,
  4081. wpa_s->p2p_pd_before_go_neg,
  4082. wpa_s->p2p_go_ht40,
  4083. wpa_s->p2p_go_vht,
  4084. wpa_s->p2p_go_max_oper_chwidth,
  4085. NULL, 0);
  4086. return;
  4087. }
  4088. wpa_printf(MSG_DEBUG, "P2P: Peer was found running GO%s -> "
  4089. "try to join the group", join ? "" :
  4090. " in older scan");
  4091. if (!join) {
  4092. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  4093. P2P_EVENT_FALLBACK_TO_GO_NEG_ENABLED);
  4094. wpa_s->p2p_fallback_to_go_neg = 1;
  4095. }
  4096. }
  4097. freq = p2p_get_oper_freq(wpa_s->global->p2p,
  4098. wpa_s->pending_join_iface_addr);
  4099. if (freq < 0 &&
  4100. p2p_get_interface_addr(wpa_s->global->p2p,
  4101. wpa_s->pending_join_dev_addr,
  4102. iface_addr) == 0 &&
  4103. os_memcmp(iface_addr, wpa_s->pending_join_dev_addr, ETH_ALEN) != 0
  4104. && !wpa_bss_get_bssid(wpa_s, wpa_s->pending_join_iface_addr)) {
  4105. wpa_printf(MSG_DEBUG, "P2P: Overwrite pending interface "
  4106. "address for join from " MACSTR " to " MACSTR
  4107. " based on newly discovered P2P peer entry",
  4108. MAC2STR(wpa_s->pending_join_iface_addr),
  4109. MAC2STR(iface_addr));
  4110. os_memcpy(wpa_s->pending_join_iface_addr, iface_addr,
  4111. ETH_ALEN);
  4112. freq = p2p_get_oper_freq(wpa_s->global->p2p,
  4113. wpa_s->pending_join_iface_addr);
  4114. }
  4115. if (freq >= 0) {
  4116. wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
  4117. "from P2P peer table: %d MHz", freq);
  4118. }
  4119. if (wpa_s->p2p_join_ssid_len) {
  4120. wpa_printf(MSG_DEBUG, "P2P: Trying to find target GO BSS entry based on BSSID "
  4121. MACSTR " and SSID %s",
  4122. MAC2STR(wpa_s->pending_join_iface_addr),
  4123. wpa_ssid_txt(wpa_s->p2p_join_ssid,
  4124. wpa_s->p2p_join_ssid_len));
  4125. bss = wpa_bss_get(wpa_s, wpa_s->pending_join_iface_addr,
  4126. wpa_s->p2p_join_ssid,
  4127. wpa_s->p2p_join_ssid_len);
  4128. } else if (!bss) {
  4129. wpa_printf(MSG_DEBUG, "P2P: Trying to find target GO BSS entry based on BSSID "
  4130. MACSTR, MAC2STR(wpa_s->pending_join_iface_addr));
  4131. bss = wpa_bss_get_bssid_latest(wpa_s,
  4132. wpa_s->pending_join_iface_addr);
  4133. }
  4134. if (bss) {
  4135. u8 dev_addr[ETH_ALEN];
  4136. freq = bss->freq;
  4137. wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
  4138. "from BSS table: %d MHz (SSID %s)", freq,
  4139. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  4140. if (p2p_parse_dev_addr((const u8 *) (bss + 1), bss->ie_len,
  4141. dev_addr) == 0 &&
  4142. os_memcmp(wpa_s->pending_join_dev_addr,
  4143. wpa_s->pending_join_iface_addr, ETH_ALEN) == 0 &&
  4144. os_memcmp(dev_addr, wpa_s->pending_join_dev_addr,
  4145. ETH_ALEN) != 0) {
  4146. wpa_printf(MSG_DEBUG,
  4147. "P2P: Update target GO device address based on BSS entry: " MACSTR " (was " MACSTR ")",
  4148. MAC2STR(dev_addr),
  4149. MAC2STR(wpa_s->pending_join_dev_addr));
  4150. os_memcpy(wpa_s->pending_join_dev_addr, dev_addr,
  4151. ETH_ALEN);
  4152. }
  4153. }
  4154. if (freq > 0) {
  4155. u16 method;
  4156. if (wpas_check_freq_conflict(wpa_s, freq) > 0) {
  4157. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  4158. P2P_EVENT_GROUP_FORMATION_FAILURE
  4159. "reason=FREQ_CONFLICT");
  4160. wpas_notify_p2p_group_formation_failure(
  4161. wpa_s, "FREQ_CONFLICT");
  4162. return;
  4163. }
  4164. wpa_printf(MSG_DEBUG, "P2P: Send Provision Discovery Request "
  4165. "prior to joining an existing group (GO " MACSTR
  4166. " freq=%u MHz)",
  4167. MAC2STR(wpa_s->pending_join_dev_addr), freq);
  4168. wpa_s->pending_pd_before_join = 1;
  4169. switch (wpa_s->pending_join_wps_method) {
  4170. case WPS_PIN_DISPLAY:
  4171. method = WPS_CONFIG_KEYPAD;
  4172. break;
  4173. case WPS_PIN_KEYPAD:
  4174. method = WPS_CONFIG_DISPLAY;
  4175. break;
  4176. case WPS_PBC:
  4177. method = WPS_CONFIG_PUSHBUTTON;
  4178. break;
  4179. case WPS_P2PS:
  4180. method = WPS_CONFIG_P2PS;
  4181. break;
  4182. default:
  4183. method = 0;
  4184. break;
  4185. }
  4186. if ((p2p_get_provisioning_info(wpa_s->global->p2p,
  4187. wpa_s->pending_join_dev_addr) ==
  4188. method)) {
  4189. /*
  4190. * We have already performed provision discovery for
  4191. * joining the group. Proceed directly to join
  4192. * operation without duplicated provision discovery. */
  4193. wpa_printf(MSG_DEBUG, "P2P: Provision discovery "
  4194. "with " MACSTR " already done - proceed to "
  4195. "join",
  4196. MAC2STR(wpa_s->pending_join_dev_addr));
  4197. wpa_s->pending_pd_before_join = 0;
  4198. goto start;
  4199. }
  4200. if (p2p_prov_disc_req(wpa_s->global->p2p,
  4201. wpa_s->pending_join_dev_addr,
  4202. NULL, method, 1,
  4203. freq, wpa_s->user_initiated_pd) < 0) {
  4204. wpa_printf(MSG_DEBUG, "P2P: Failed to send Provision "
  4205. "Discovery Request before joining an "
  4206. "existing group");
  4207. wpa_s->pending_pd_before_join = 0;
  4208. goto start;
  4209. }
  4210. return;
  4211. }
  4212. wpa_printf(MSG_DEBUG, "P2P: Failed to find BSS/GO - try again later");
  4213. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  4214. eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
  4215. wpas_p2p_check_join_scan_limit(wpa_s);
  4216. return;
  4217. start:
  4218. /* Start join operation immediately */
  4219. wpas_p2p_join_start(wpa_s, 0, wpa_s->p2p_join_ssid,
  4220. wpa_s->p2p_join_ssid_len);
  4221. }
  4222. static void wpas_p2p_join_scan_req(struct wpa_supplicant *wpa_s, int freq,
  4223. const u8 *ssid, size_t ssid_len)
  4224. {
  4225. int ret;
  4226. struct wpa_driver_scan_params params;
  4227. struct wpabuf *wps_ie, *ies;
  4228. size_t ielen;
  4229. int freqs[2] = { 0, 0 };
  4230. unsigned int bands;
  4231. os_memset(&params, 0, sizeof(params));
  4232. /* P2P Wildcard SSID */
  4233. params.num_ssids = 1;
  4234. if (ssid && ssid_len) {
  4235. params.ssids[0].ssid = ssid;
  4236. params.ssids[0].ssid_len = ssid_len;
  4237. os_memcpy(wpa_s->p2p_join_ssid, ssid, ssid_len);
  4238. wpa_s->p2p_join_ssid_len = ssid_len;
  4239. } else {
  4240. params.ssids[0].ssid = (u8 *) P2P_WILDCARD_SSID;
  4241. params.ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
  4242. wpa_s->p2p_join_ssid_len = 0;
  4243. }
  4244. wpa_s->wps->dev.p2p = 1;
  4245. wps_ie = wps_build_probe_req_ie(DEV_PW_DEFAULT, &wpa_s->wps->dev,
  4246. wpa_s->wps->uuid, WPS_REQ_ENROLLEE, 0,
  4247. NULL);
  4248. if (wps_ie == NULL) {
  4249. wpas_p2p_scan_res_join(wpa_s, NULL);
  4250. return;
  4251. }
  4252. if (!freq) {
  4253. int oper_freq;
  4254. /*
  4255. * If freq is not provided, check the operating freq of the GO
  4256. * and use a single channel scan on if possible.
  4257. */
  4258. oper_freq = p2p_get_oper_freq(wpa_s->global->p2p,
  4259. wpa_s->pending_join_iface_addr);
  4260. if (oper_freq > 0)
  4261. freq = oper_freq;
  4262. }
  4263. if (freq > 0) {
  4264. freqs[0] = freq;
  4265. params.freqs = freqs;
  4266. }
  4267. ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
  4268. ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
  4269. if (ies == NULL) {
  4270. wpabuf_free(wps_ie);
  4271. wpas_p2p_scan_res_join(wpa_s, NULL);
  4272. return;
  4273. }
  4274. wpabuf_put_buf(ies, wps_ie);
  4275. wpabuf_free(wps_ie);
  4276. bands = wpas_get_bands(wpa_s, freqs);
  4277. p2p_scan_ie(wpa_s->global->p2p, ies, NULL, bands);
  4278. params.p2p_probe = 1;
  4279. params.extra_ies = wpabuf_head(ies);
  4280. params.extra_ies_len = wpabuf_len(ies);
  4281. /*
  4282. * Run a scan to update BSS table and start Provision Discovery once
  4283. * the new scan results become available.
  4284. */
  4285. ret = wpa_drv_scan(wpa_s, &params);
  4286. if (!ret) {
  4287. os_get_reltime(&wpa_s->scan_trigger_time);
  4288. wpa_s->scan_res_handler = wpas_p2p_scan_res_join;
  4289. wpa_s->own_scan_requested = 1;
  4290. }
  4291. wpabuf_free(ies);
  4292. if (ret) {
  4293. wpa_printf(MSG_DEBUG, "P2P: Failed to start scan for join - "
  4294. "try again later");
  4295. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  4296. eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
  4297. wpas_p2p_check_join_scan_limit(wpa_s);
  4298. }
  4299. }
  4300. static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx)
  4301. {
  4302. struct wpa_supplicant *wpa_s = eloop_ctx;
  4303. wpas_p2p_join_scan_req(wpa_s, 0, NULL, 0);
  4304. }
  4305. static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
  4306. const u8 *dev_addr, enum p2p_wps_method wps_method,
  4307. int auto_join, int op_freq,
  4308. const u8 *ssid, size_t ssid_len)
  4309. {
  4310. wpa_printf(MSG_DEBUG, "P2P: Request to join existing group (iface "
  4311. MACSTR " dev " MACSTR " op_freq=%d)%s",
  4312. MAC2STR(iface_addr), MAC2STR(dev_addr), op_freq,
  4313. auto_join ? " (auto_join)" : "");
  4314. if (ssid && ssid_len) {
  4315. wpa_printf(MSG_DEBUG, "P2P: Group SSID specified: %s",
  4316. wpa_ssid_txt(ssid, ssid_len));
  4317. }
  4318. wpa_s->p2p_auto_pd = 0;
  4319. wpa_s->p2p_auto_join = !!auto_join;
  4320. os_memcpy(wpa_s->pending_join_iface_addr, iface_addr, ETH_ALEN);
  4321. os_memcpy(wpa_s->pending_join_dev_addr, dev_addr, ETH_ALEN);
  4322. wpa_s->pending_join_wps_method = wps_method;
  4323. /* Make sure we are not running find during connection establishment */
  4324. wpas_p2p_stop_find(wpa_s);
  4325. wpa_s->p2p_join_scan_count = 0;
  4326. wpas_p2p_join_scan_req(wpa_s, op_freq, ssid, ssid_len);
  4327. return 0;
  4328. }
  4329. static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s, int freq,
  4330. const u8 *ssid, size_t ssid_len)
  4331. {
  4332. struct wpa_supplicant *group;
  4333. struct p2p_go_neg_results res;
  4334. struct wpa_bss *bss;
  4335. group = wpas_p2p_get_group_iface(wpa_s, 0, 0);
  4336. if (group == NULL)
  4337. return -1;
  4338. if (group != wpa_s) {
  4339. os_memcpy(group->p2p_pin, wpa_s->p2p_pin,
  4340. sizeof(group->p2p_pin));
  4341. group->p2p_wps_method = wpa_s->p2p_wps_method;
  4342. } else {
  4343. /*
  4344. * Need to mark the current interface for p2p_group_formation
  4345. * when a separate group interface is not used. This is needed
  4346. * to allow p2p_cancel stop a pending p2p_connect-join.
  4347. * wpas_p2p_init_group_interface() addresses this for the case
  4348. * where a separate group interface is used.
  4349. */
  4350. wpa_s->global->p2p_group_formation = wpa_s;
  4351. }
  4352. group->p2p_in_provisioning = 1;
  4353. group->p2p_fallback_to_go_neg = wpa_s->p2p_fallback_to_go_neg;
  4354. os_memset(&res, 0, sizeof(res));
  4355. os_memcpy(res.peer_device_addr, wpa_s->pending_join_dev_addr, ETH_ALEN);
  4356. os_memcpy(res.peer_interface_addr, wpa_s->pending_join_iface_addr,
  4357. ETH_ALEN);
  4358. res.wps_method = wpa_s->pending_join_wps_method;
  4359. if (freq && ssid && ssid_len) {
  4360. res.freq = freq;
  4361. res.ssid_len = ssid_len;
  4362. os_memcpy(res.ssid, ssid, ssid_len);
  4363. } else {
  4364. if (ssid && ssid_len) {
  4365. bss = wpa_bss_get(wpa_s, wpa_s->pending_join_iface_addr,
  4366. ssid, ssid_len);
  4367. } else {
  4368. bss = wpa_bss_get_bssid_latest(
  4369. wpa_s, wpa_s->pending_join_iface_addr);
  4370. }
  4371. if (bss) {
  4372. res.freq = bss->freq;
  4373. res.ssid_len = bss->ssid_len;
  4374. os_memcpy(res.ssid, bss->ssid, bss->ssid_len);
  4375. wpa_printf(MSG_DEBUG, "P2P: Join target GO operating frequency from BSS table: %d MHz (SSID %s)",
  4376. bss->freq,
  4377. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  4378. } else if (ssid && ssid_len) {
  4379. res.ssid_len = ssid_len;
  4380. os_memcpy(res.ssid, ssid, ssid_len);
  4381. wpa_printf(MSG_DEBUG, "P2P: Join target GO (SSID %s)",
  4382. wpa_ssid_txt(ssid, ssid_len));
  4383. }
  4384. }
  4385. if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
  4386. wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel prior to "
  4387. "starting client");
  4388. wpa_drv_cancel_remain_on_channel(wpa_s);
  4389. wpa_s->off_channel_freq = 0;
  4390. wpa_s->roc_waiting_drv_freq = 0;
  4391. }
  4392. wpas_start_wps_enrollee(group, &res);
  4393. /*
  4394. * Allow a longer timeout for join-a-running-group than normal 15
  4395. * second group formation timeout since the GO may not have authorized
  4396. * our connection yet.
  4397. */
  4398. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  4399. eloop_register_timeout(60, 0, wpas_p2p_group_formation_timeout,
  4400. wpa_s, NULL);
  4401. return 0;
  4402. }
  4403. static int wpas_p2p_setup_freqs(struct wpa_supplicant *wpa_s, int freq,
  4404. int *force_freq, int *pref_freq, int go,
  4405. unsigned int *pref_freq_list,
  4406. unsigned int *num_pref_freq)
  4407. {
  4408. struct wpa_used_freq_data *freqs;
  4409. int res, best_freq, num_unused;
  4410. unsigned int freq_in_use = 0, num, i, max_pref_freq;
  4411. max_pref_freq = *num_pref_freq;
  4412. *num_pref_freq = 0;
  4413. freqs = os_calloc(wpa_s->num_multichan_concurrent,
  4414. sizeof(struct wpa_used_freq_data));
  4415. if (!freqs)
  4416. return -1;
  4417. num = wpas_p2p_valid_oper_freqs(wpa_s, freqs,
  4418. wpa_s->num_multichan_concurrent);
  4419. /*
  4420. * It is possible that the total number of used frequencies is bigger
  4421. * than the number of frequencies used for P2P, so get the system wide
  4422. * number of unused frequencies.
  4423. */
  4424. num_unused = wpas_p2p_num_unused_channels(wpa_s);
  4425. wpa_printf(MSG_DEBUG,
  4426. "P2P: Setup freqs: freq=%d num_MCC=%d shared_freqs=%u num_unused=%d",
  4427. freq, wpa_s->num_multichan_concurrent, num, num_unused);
  4428. if (freq > 0) {
  4429. int ret;
  4430. if (go)
  4431. ret = p2p_supported_freq(wpa_s->global->p2p, freq);
  4432. else
  4433. ret = p2p_supported_freq_cli(wpa_s->global->p2p, freq);
  4434. if (!ret) {
  4435. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) &&
  4436. ieee80211_is_dfs(freq)) {
  4437. /*
  4438. * If freq is a DFS channel and DFS is offloaded
  4439. * to the driver, allow P2P GO to use it.
  4440. */
  4441. wpa_printf(MSG_DEBUG,
  4442. "P2P: The forced channel for GO (%u MHz) is DFS, and DFS is offloaded to the driver",
  4443. freq);
  4444. } else {
  4445. wpa_printf(MSG_DEBUG,
  4446. "P2P: The forced channel (%u MHz) is not supported for P2P uses",
  4447. freq);
  4448. res = -3;
  4449. goto exit_free;
  4450. }
  4451. }
  4452. for (i = 0; i < num; i++) {
  4453. if (freqs[i].freq == freq)
  4454. freq_in_use = 1;
  4455. }
  4456. if (num_unused <= 0 && !freq_in_use) {
  4457. wpa_printf(MSG_DEBUG, "P2P: Cannot start P2P group on %u MHz as there are no available channels",
  4458. freq);
  4459. res = -2;
  4460. goto exit_free;
  4461. }
  4462. wpa_printf(MSG_DEBUG, "P2P: Trying to force us to use the "
  4463. "requested channel (%u MHz)", freq);
  4464. *force_freq = freq;
  4465. goto exit_ok;
  4466. }
  4467. best_freq = wpas_p2p_pick_best_used_freq(wpa_s, freqs, num);
  4468. if (!wpa_s->conf->num_p2p_pref_chan && *pref_freq == 0) {
  4469. enum wpa_driver_if_type iface_type;
  4470. if (go)
  4471. iface_type = WPA_IF_P2P_GO;
  4472. else
  4473. iface_type = WPA_IF_P2P_CLIENT;
  4474. wpa_printf(MSG_DEBUG, "P2P: best_freq=%d, go=%d",
  4475. best_freq, go);
  4476. res = wpa_drv_get_pref_freq_list(wpa_s, iface_type,
  4477. &max_pref_freq,
  4478. pref_freq_list);
  4479. if (!res && max_pref_freq > 0) {
  4480. *num_pref_freq = max_pref_freq;
  4481. i = 0;
  4482. while ((!p2p_supported_freq(wpa_s->global->p2p,
  4483. pref_freq_list[i]) ||
  4484. wpas_p2p_disallowed_freq(wpa_s->global,
  4485. pref_freq_list[i])) &&
  4486. i < *num_pref_freq) {
  4487. wpa_printf(MSG_DEBUG,
  4488. "P2P: preferred_freq_list[%d]=%d is disallowed",
  4489. i, pref_freq_list[i]);
  4490. i++;
  4491. }
  4492. if (i != *num_pref_freq) {
  4493. best_freq = pref_freq_list[i];
  4494. wpa_printf(MSG_DEBUG,
  4495. "P2P: Using preferred_freq_list[%d]=%d",
  4496. i, best_freq);
  4497. } else {
  4498. wpa_printf(MSG_DEBUG,
  4499. "P2P: All driver preferred frequencies are disallowed for P2P use");
  4500. *num_pref_freq = 0;
  4501. }
  4502. } else {
  4503. wpa_printf(MSG_DEBUG,
  4504. "P2P: No preferred frequency list available");
  4505. }
  4506. }
  4507. /* We have a candidate frequency to use */
  4508. if (best_freq > 0) {
  4509. if (*pref_freq == 0 && num_unused > 0) {
  4510. wpa_printf(MSG_DEBUG, "P2P: Try to prefer a frequency (%u MHz) we are already using",
  4511. best_freq);
  4512. *pref_freq = best_freq;
  4513. } else {
  4514. wpa_printf(MSG_DEBUG, "P2P: Try to force us to use frequency (%u MHz) which is already in use",
  4515. best_freq);
  4516. *force_freq = best_freq;
  4517. }
  4518. } else if (num_unused > 0) {
  4519. wpa_printf(MSG_DEBUG,
  4520. "P2P: Current operating channels are not available for P2P. Try to use another channel");
  4521. *force_freq = 0;
  4522. } else {
  4523. wpa_printf(MSG_DEBUG,
  4524. "P2P: All channels are in use and none of them are P2P enabled. Cannot start P2P group");
  4525. res = -2;
  4526. goto exit_free;
  4527. }
  4528. exit_ok:
  4529. res = 0;
  4530. exit_free:
  4531. os_free(freqs);
  4532. return res;
  4533. }
  4534. /**
  4535. * wpas_p2p_connect - Request P2P Group Formation to be started
  4536. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  4537. * @peer_addr: Address of the peer P2P Device
  4538. * @pin: PIN to use during provisioning or %NULL to indicate PBC mode
  4539. * @persistent_group: Whether to create a persistent group
  4540. * @auto_join: Whether to select join vs. GO Negotiation automatically
  4541. * @join: Whether to join an existing group (as a client) instead of starting
  4542. * Group Owner negotiation; @peer_addr is BSSID in that case
  4543. * @auth: Whether to only authorize the connection instead of doing that and
  4544. * initiating Group Owner negotiation
  4545. * @go_intent: GO Intent or -1 to use default
  4546. * @freq: Frequency for the group or 0 for auto-selection
  4547. * @freq2: Center frequency of segment 1 for the GO operating in VHT 80P80 mode
  4548. * @persistent_id: Persistent group credentials to use for forcing GO
  4549. * parameters or -1 to generate new values (SSID/passphrase)
  4550. * @pd: Whether to send Provision Discovery prior to GO Negotiation as an
  4551. * interoperability workaround when initiating group formation
  4552. * @ht40: Start GO with 40 MHz channel width
  4553. * @vht: Start GO with VHT support
  4554. * @vht_chwidth: Channel width supported by GO operating with VHT support
  4555. * (VHT_CHANWIDTH_*).
  4556. * @group_ssid: Specific Group SSID for join or %NULL if not set
  4557. * @group_ssid_len: Length of @group_ssid in octets
  4558. * Returns: 0 or new PIN (if pin was %NULL) on success, -1 on unspecified
  4559. * failure, -2 on failure due to channel not currently available,
  4560. * -3 if forced channel is not supported
  4561. */
  4562. int wpas_p2p_connect(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  4563. const char *pin, enum p2p_wps_method wps_method,
  4564. int persistent_group, int auto_join, int join, int auth,
  4565. int go_intent, int freq, unsigned int vht_center_freq2,
  4566. int persistent_id, int pd, int ht40, int vht,
  4567. unsigned int vht_chwidth, const u8 *group_ssid,
  4568. size_t group_ssid_len)
  4569. {
  4570. int force_freq = 0, pref_freq = 0;
  4571. int ret = 0, res;
  4572. enum wpa_driver_if_type iftype;
  4573. const u8 *if_addr;
  4574. struct wpa_ssid *ssid = NULL;
  4575. unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS], size;
  4576. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4577. return -1;
  4578. if (persistent_id >= 0) {
  4579. ssid = wpa_config_get_network(wpa_s->conf, persistent_id);
  4580. if (ssid == NULL || ssid->disabled != 2 ||
  4581. ssid->mode != WPAS_MODE_P2P_GO)
  4582. return -1;
  4583. }
  4584. os_free(wpa_s->global->add_psk);
  4585. wpa_s->global->add_psk = NULL;
  4586. wpa_s->global->p2p_fail_on_wps_complete = 0;
  4587. wpa_s->global->pending_p2ps_group = 0;
  4588. wpa_s->global->pending_p2ps_group_freq = 0;
  4589. wpa_s->p2ps_method_config_any = 0;
  4590. if (go_intent < 0)
  4591. go_intent = wpa_s->conf->p2p_go_intent;
  4592. if (!auth)
  4593. wpa_s->p2p_long_listen = 0;
  4594. wpa_s->p2p_wps_method = wps_method;
  4595. wpa_s->p2p_persistent_group = !!persistent_group;
  4596. wpa_s->p2p_persistent_id = persistent_id;
  4597. wpa_s->p2p_go_intent = go_intent;
  4598. wpa_s->p2p_connect_freq = freq;
  4599. wpa_s->p2p_fallback_to_go_neg = 0;
  4600. wpa_s->p2p_pd_before_go_neg = !!pd;
  4601. wpa_s->p2p_go_ht40 = !!ht40;
  4602. wpa_s->p2p_go_vht = !!vht;
  4603. wpa_s->p2p_go_vht_center_freq2 = vht_center_freq2;
  4604. wpa_s->p2p_go_max_oper_chwidth = vht_chwidth;
  4605. if (pin)
  4606. os_strlcpy(wpa_s->p2p_pin, pin, sizeof(wpa_s->p2p_pin));
  4607. else if (wps_method == WPS_PIN_DISPLAY) {
  4608. if (wps_generate_pin((unsigned int *) &ret) < 0)
  4609. return -1;
  4610. res = os_snprintf(wpa_s->p2p_pin, sizeof(wpa_s->p2p_pin),
  4611. "%08d", ret);
  4612. if (os_snprintf_error(sizeof(wpa_s->p2p_pin), res))
  4613. wpa_s->p2p_pin[sizeof(wpa_s->p2p_pin) - 1] = '\0';
  4614. wpa_printf(MSG_DEBUG, "P2P: Randomly generated PIN: %s",
  4615. wpa_s->p2p_pin);
  4616. } else if (wps_method == WPS_P2PS) {
  4617. /* Force the P2Ps default PIN to be used */
  4618. os_strlcpy(wpa_s->p2p_pin, "12345670", sizeof(wpa_s->p2p_pin));
  4619. } else
  4620. wpa_s->p2p_pin[0] = '\0';
  4621. if (join || auto_join) {
  4622. u8 iface_addr[ETH_ALEN], dev_addr[ETH_ALEN];
  4623. if (auth) {
  4624. wpa_printf(MSG_DEBUG, "P2P: Authorize invitation to "
  4625. "connect a running group from " MACSTR,
  4626. MAC2STR(peer_addr));
  4627. os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
  4628. return ret;
  4629. }
  4630. os_memcpy(dev_addr, peer_addr, ETH_ALEN);
  4631. if (p2p_get_interface_addr(wpa_s->global->p2p, peer_addr,
  4632. iface_addr) < 0) {
  4633. os_memcpy(iface_addr, peer_addr, ETH_ALEN);
  4634. p2p_get_dev_addr(wpa_s->global->p2p, peer_addr,
  4635. dev_addr);
  4636. }
  4637. if (auto_join) {
  4638. os_get_reltime(&wpa_s->p2p_auto_started);
  4639. wpa_printf(MSG_DEBUG, "P2P: Auto join started at "
  4640. "%ld.%06ld",
  4641. wpa_s->p2p_auto_started.sec,
  4642. wpa_s->p2p_auto_started.usec);
  4643. }
  4644. wpa_s->user_initiated_pd = 1;
  4645. if (wpas_p2p_join(wpa_s, iface_addr, dev_addr, wps_method,
  4646. auto_join, freq,
  4647. group_ssid, group_ssid_len) < 0)
  4648. return -1;
  4649. return ret;
  4650. }
  4651. size = P2P_MAX_PREF_CHANNELS;
  4652. res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
  4653. go_intent == 15, pref_freq_list, &size);
  4654. if (res)
  4655. return res;
  4656. wpas_p2p_set_own_freq_preference(wpa_s,
  4657. force_freq ? force_freq : pref_freq);
  4658. p2p_set_own_pref_freq_list(wpa_s->global->p2p, pref_freq_list, size);
  4659. wpa_s->create_p2p_iface = wpas_p2p_create_iface(wpa_s);
  4660. if (wpa_s->create_p2p_iface) {
  4661. /* Prepare to add a new interface for the group */
  4662. iftype = WPA_IF_P2P_GROUP;
  4663. if (go_intent == 15)
  4664. iftype = WPA_IF_P2P_GO;
  4665. if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
  4666. wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
  4667. "interface for the group");
  4668. return -1;
  4669. }
  4670. if_addr = wpa_s->pending_interface_addr;
  4671. } else {
  4672. if (wpa_s->p2p_mgmt)
  4673. if_addr = wpa_s->parent->own_addr;
  4674. else
  4675. if_addr = wpa_s->own_addr;
  4676. os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
  4677. }
  4678. if (auth) {
  4679. if (wpas_p2p_auth_go_neg(wpa_s, peer_addr, wps_method,
  4680. go_intent, if_addr,
  4681. force_freq, persistent_group, ssid,
  4682. pref_freq) < 0)
  4683. return -1;
  4684. return ret;
  4685. }
  4686. if (wpas_p2p_start_go_neg(wpa_s, peer_addr, wps_method,
  4687. go_intent, if_addr, force_freq,
  4688. persistent_group, ssid, pref_freq) < 0) {
  4689. if (wpa_s->create_p2p_iface)
  4690. wpas_p2p_remove_pending_group_interface(wpa_s);
  4691. return -1;
  4692. }
  4693. return ret;
  4694. }
  4695. /**
  4696. * wpas_p2p_remain_on_channel_cb - Indication of remain-on-channel start
  4697. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  4698. * @freq: Frequency of the channel in MHz
  4699. * @duration: Duration of the stay on the channel in milliseconds
  4700. *
  4701. * This callback is called when the driver indicates that it has started the
  4702. * requested remain-on-channel duration.
  4703. */
  4704. void wpas_p2p_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
  4705. unsigned int freq, unsigned int duration)
  4706. {
  4707. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4708. return;
  4709. wpa_printf(MSG_DEBUG, "P2P: remain-on-channel callback (off_channel_freq=%u pending_listen_freq=%d roc_waiting_drv_freq=%d freq=%u duration=%u)",
  4710. wpa_s->off_channel_freq, wpa_s->pending_listen_freq,
  4711. wpa_s->roc_waiting_drv_freq, freq, duration);
  4712. if (wpa_s->off_channel_freq &&
  4713. wpa_s->off_channel_freq == wpa_s->pending_listen_freq) {
  4714. p2p_listen_cb(wpa_s->global->p2p, wpa_s->pending_listen_freq,
  4715. wpa_s->pending_listen_duration);
  4716. wpa_s->pending_listen_freq = 0;
  4717. } else {
  4718. wpa_printf(MSG_DEBUG, "P2P: Ignore remain-on-channel callback (off_channel_freq=%u pending_listen_freq=%d freq=%u duration=%u)",
  4719. wpa_s->off_channel_freq, wpa_s->pending_listen_freq,
  4720. freq, duration);
  4721. }
  4722. }
  4723. int wpas_p2p_listen_start(struct wpa_supplicant *wpa_s, unsigned int timeout)
  4724. {
  4725. /* Limit maximum Listen state time based on driver limitation. */
  4726. if (timeout > wpa_s->max_remain_on_chan)
  4727. timeout = wpa_s->max_remain_on_chan;
  4728. return p2p_listen(wpa_s->global->p2p, timeout);
  4729. }
  4730. /**
  4731. * wpas_p2p_cancel_remain_on_channel_cb - Remain-on-channel timeout
  4732. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  4733. * @freq: Frequency of the channel in MHz
  4734. *
  4735. * This callback is called when the driver indicates that a remain-on-channel
  4736. * operation has been completed, i.e., the duration on the requested channel
  4737. * has timed out.
  4738. */
  4739. void wpas_p2p_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
  4740. unsigned int freq)
  4741. {
  4742. wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel callback "
  4743. "(p2p_long_listen=%d ms pending_action_tx=%p)",
  4744. wpa_s->p2p_long_listen, offchannel_pending_action_tx(wpa_s));
  4745. wpas_p2p_listen_work_done(wpa_s);
  4746. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4747. return;
  4748. if (wpa_s->p2p_long_listen > 0)
  4749. wpa_s->p2p_long_listen -= wpa_s->max_remain_on_chan;
  4750. if (p2p_listen_end(wpa_s->global->p2p, freq) > 0)
  4751. return; /* P2P module started a new operation */
  4752. if (offchannel_pending_action_tx(wpa_s))
  4753. return;
  4754. if (wpa_s->p2p_long_listen > 0) {
  4755. wpa_printf(MSG_DEBUG, "P2P: Continuing long Listen state");
  4756. wpas_p2p_listen_start(wpa_s, wpa_s->p2p_long_listen);
  4757. } else {
  4758. /*
  4759. * When listen duration is over, stop listen & update p2p_state
  4760. * to IDLE.
  4761. */
  4762. p2p_stop_listen(wpa_s->global->p2p);
  4763. }
  4764. }
  4765. /**
  4766. * wpas_p2p_group_remove - Remove a P2P group
  4767. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  4768. * @ifname: Network interface name of the group interface or "*" to remove all
  4769. * groups
  4770. * Returns: 0 on success, -1 on failure
  4771. *
  4772. * This function is used to remove a P2P group. This can be used to disconnect
  4773. * from a group in which the local end is a P2P Client or to end a P2P Group in
  4774. * case the local end is the Group Owner. If a virtual network interface was
  4775. * created for this group, that interface will be removed. Otherwise, only the
  4776. * configured P2P group network will be removed from the interface.
  4777. */
  4778. int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s, const char *ifname)
  4779. {
  4780. struct wpa_global *global = wpa_s->global;
  4781. struct wpa_supplicant *calling_wpa_s = wpa_s;
  4782. if (os_strcmp(ifname, "*") == 0) {
  4783. struct wpa_supplicant *prev;
  4784. wpa_s = global->ifaces;
  4785. while (wpa_s) {
  4786. prev = wpa_s;
  4787. wpa_s = wpa_s->next;
  4788. if (prev->p2p_group_interface !=
  4789. NOT_P2P_GROUP_INTERFACE ||
  4790. (prev->current_ssid &&
  4791. prev->current_ssid->p2p_group))
  4792. wpas_p2p_disconnect_safely(prev, calling_wpa_s);
  4793. }
  4794. return 0;
  4795. }
  4796. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  4797. if (os_strcmp(wpa_s->ifname, ifname) == 0)
  4798. break;
  4799. }
  4800. return wpas_p2p_disconnect_safely(wpa_s, calling_wpa_s);
  4801. }
  4802. static int wpas_p2p_select_go_freq(struct wpa_supplicant *wpa_s, int freq)
  4803. {
  4804. unsigned int r;
  4805. if (!wpa_s->conf->num_p2p_pref_chan && !freq) {
  4806. unsigned int i, size = P2P_MAX_PREF_CHANNELS;
  4807. unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS];
  4808. int res;
  4809. res = wpa_drv_get_pref_freq_list(wpa_s, WPA_IF_P2P_GO,
  4810. &size, pref_freq_list);
  4811. if (!res && size > 0) {
  4812. i = 0;
  4813. while (wpas_p2p_disallowed_freq(wpa_s->global,
  4814. pref_freq_list[i]) &&
  4815. i < size) {
  4816. wpa_printf(MSG_DEBUG,
  4817. "P2P: preferred_freq_list[%d]=%d is disallowed",
  4818. i, pref_freq_list[i]);
  4819. i++;
  4820. }
  4821. if (i != size) {
  4822. freq = pref_freq_list[i];
  4823. wpa_printf(MSG_DEBUG,
  4824. "P2P: Using preferred_freq_list[%d]=%d",
  4825. i, freq);
  4826. } else {
  4827. wpa_printf(MSG_DEBUG,
  4828. "P2P: All driver preferred frequencies are disallowed for P2P use");
  4829. }
  4830. } else {
  4831. wpa_printf(MSG_DEBUG,
  4832. "P2P: No preferred frequency list available");
  4833. }
  4834. }
  4835. if (freq == 2) {
  4836. wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 2.4 GHz "
  4837. "band");
  4838. if (wpa_s->best_24_freq > 0 &&
  4839. p2p_supported_freq_go(wpa_s->global->p2p,
  4840. wpa_s->best_24_freq)) {
  4841. freq = wpa_s->best_24_freq;
  4842. wpa_printf(MSG_DEBUG, "P2P: Use best 2.4 GHz band "
  4843. "channel: %d MHz", freq);
  4844. } else {
  4845. if (os_get_random((u8 *) &r, sizeof(r)) < 0)
  4846. return -1;
  4847. freq = 2412 + (r % 3) * 25;
  4848. wpa_printf(MSG_DEBUG, "P2P: Use random 2.4 GHz band "
  4849. "channel: %d MHz", freq);
  4850. }
  4851. }
  4852. if (freq == 5) {
  4853. wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 5 GHz "
  4854. "band");
  4855. if (wpa_s->best_5_freq > 0 &&
  4856. p2p_supported_freq_go(wpa_s->global->p2p,
  4857. wpa_s->best_5_freq)) {
  4858. freq = wpa_s->best_5_freq;
  4859. wpa_printf(MSG_DEBUG, "P2P: Use best 5 GHz band "
  4860. "channel: %d MHz", freq);
  4861. } else {
  4862. if (os_get_random((u8 *) &r, sizeof(r)) < 0)
  4863. return -1;
  4864. freq = 5180 + (r % 4) * 20;
  4865. if (!p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
  4866. wpa_printf(MSG_DEBUG, "P2P: Could not select "
  4867. "5 GHz channel for P2P group");
  4868. return -1;
  4869. }
  4870. wpa_printf(MSG_DEBUG, "P2P: Use random 5 GHz band "
  4871. "channel: %d MHz", freq);
  4872. }
  4873. }
  4874. if (freq > 0 && !p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
  4875. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) &&
  4876. ieee80211_is_dfs(freq)) {
  4877. /*
  4878. * If freq is a DFS channel and DFS is offloaded to the
  4879. * driver, allow P2P GO to use it.
  4880. */
  4881. wpa_printf(MSG_DEBUG, "P2P: "
  4882. "%s: The forced channel for GO (%u MHz) is DFS, and DFS is offloaded",
  4883. __func__, freq);
  4884. return freq;
  4885. }
  4886. wpa_printf(MSG_DEBUG, "P2P: The forced channel for GO "
  4887. "(%u MHz) is not supported for P2P uses",
  4888. freq);
  4889. return -1;
  4890. }
  4891. return freq;
  4892. }
  4893. static int wpas_p2p_supported_freq_go(struct wpa_supplicant *wpa_s,
  4894. const struct p2p_channels *channels,
  4895. int freq)
  4896. {
  4897. if (!wpas_p2p_disallowed_freq(wpa_s->global, freq) &&
  4898. p2p_supported_freq_go(wpa_s->global->p2p, freq) &&
  4899. freq_included(wpa_s, channels, freq))
  4900. return 1;
  4901. return 0;
  4902. }
  4903. static void wpas_p2p_select_go_freq_no_pref(struct wpa_supplicant *wpa_s,
  4904. struct p2p_go_neg_results *params,
  4905. const struct p2p_channels *channels)
  4906. {
  4907. unsigned int i, r;
  4908. /* first try some random selection of the social channels */
  4909. if (os_get_random((u8 *) &r, sizeof(r)) < 0)
  4910. return;
  4911. for (i = 0; i < 3; i++) {
  4912. params->freq = 2412 + ((r + i) % 3) * 25;
  4913. if (wpas_p2p_supported_freq_go(wpa_s, channels, params->freq))
  4914. goto out;
  4915. }
  4916. /* try all other channels in operating class 81 */
  4917. for (i = 0; i < 11; i++) {
  4918. params->freq = 2412 + i * 5;
  4919. /* skip social channels; covered in the previous loop */
  4920. if (params->freq == 2412 ||
  4921. params->freq == 2437 ||
  4922. params->freq == 2462)
  4923. continue;
  4924. if (wpas_p2p_supported_freq_go(wpa_s, channels, params->freq))
  4925. goto out;
  4926. }
  4927. /* try all channels in operating class 115 */
  4928. for (i = 0; i < 4; i++) {
  4929. params->freq = 5180 + i * 20;
  4930. if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
  4931. freq_included(wpa_s, channels, params->freq) &&
  4932. p2p_supported_freq(wpa_s->global->p2p, params->freq))
  4933. goto out;
  4934. }
  4935. /* try all channels in operating class 124 */
  4936. for (i = 0; i < 4; i++) {
  4937. params->freq = 5745 + i * 20;
  4938. if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
  4939. freq_included(wpa_s, channels, params->freq) &&
  4940. p2p_supported_freq(wpa_s->global->p2p, params->freq))
  4941. goto out;
  4942. }
  4943. /* try social channel class 180 channel 2 */
  4944. params->freq = 58320 + 1 * 2160;
  4945. if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
  4946. freq_included(wpa_s, channels, params->freq) &&
  4947. p2p_supported_freq(wpa_s->global->p2p, params->freq))
  4948. goto out;
  4949. /* try all channels in reg. class 180 */
  4950. for (i = 0; i < 4; i++) {
  4951. params->freq = 58320 + i * 2160;
  4952. if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
  4953. freq_included(wpa_s, channels, params->freq) &&
  4954. p2p_supported_freq(wpa_s->global->p2p, params->freq))
  4955. goto out;
  4956. }
  4957. params->freq = 0;
  4958. wpa_printf(MSG_DEBUG, "P2P: No 2.4, 5, or 60 GHz channel allowed");
  4959. return;
  4960. out:
  4961. wpa_printf(MSG_DEBUG, "P2P: Set GO freq %d MHz (no preference known)",
  4962. params->freq);
  4963. }
  4964. static int wpas_p2p_init_go_params(struct wpa_supplicant *wpa_s,
  4965. struct p2p_go_neg_results *params,
  4966. int freq, int vht_center_freq2, int ht40,
  4967. int vht, int max_oper_chwidth,
  4968. const struct p2p_channels *channels)
  4969. {
  4970. struct wpa_used_freq_data *freqs;
  4971. unsigned int cand;
  4972. unsigned int num, i;
  4973. int ignore_no_freqs = 0;
  4974. int unused_channels = wpas_p2p_num_unused_channels(wpa_s) > 0;
  4975. os_memset(params, 0, sizeof(*params));
  4976. params->role_go = 1;
  4977. params->ht40 = ht40;
  4978. params->vht = vht;
  4979. params->max_oper_chwidth = max_oper_chwidth;
  4980. params->vht_center_freq2 = vht_center_freq2;
  4981. freqs = os_calloc(wpa_s->num_multichan_concurrent,
  4982. sizeof(struct wpa_used_freq_data));
  4983. if (!freqs)
  4984. return -1;
  4985. num = get_shared_radio_freqs_data(wpa_s, freqs,
  4986. wpa_s->num_multichan_concurrent);
  4987. if (wpa_s->current_ssid &&
  4988. wpa_s->current_ssid->mode == WPAS_MODE_P2P_GO &&
  4989. wpa_s->wpa_state == WPA_COMPLETED) {
  4990. wpa_printf(MSG_DEBUG, "P2P: %s called for an active GO",
  4991. __func__);
  4992. /*
  4993. * If the frequency selection is done for an active P2P GO that
  4994. * is not sharing a frequency, allow to select a new frequency
  4995. * even if there are no unused frequencies as we are about to
  4996. * move the P2P GO so its frequency can be re-used.
  4997. */
  4998. for (i = 0; i < num; i++) {
  4999. if (freqs[i].freq == wpa_s->current_ssid->frequency &&
  5000. freqs[i].flags == 0) {
  5001. ignore_no_freqs = 1;
  5002. break;
  5003. }
  5004. }
  5005. }
  5006. /* try using the forced freq */
  5007. if (freq) {
  5008. if (!wpas_p2p_supported_freq_go(wpa_s, channels, freq)) {
  5009. wpa_printf(MSG_DEBUG,
  5010. "P2P: Forced GO freq %d MHz not accepted",
  5011. freq);
  5012. goto fail;
  5013. }
  5014. for (i = 0; i < num; i++) {
  5015. if (freqs[i].freq == freq) {
  5016. wpa_printf(MSG_DEBUG,
  5017. "P2P: forced freq (%d MHz) is also shared",
  5018. freq);
  5019. params->freq = freq;
  5020. goto success;
  5021. }
  5022. }
  5023. if (!ignore_no_freqs && !unused_channels) {
  5024. wpa_printf(MSG_DEBUG,
  5025. "P2P: Cannot force GO on freq (%d MHz) as all the channels are in use",
  5026. freq);
  5027. goto fail;
  5028. }
  5029. wpa_printf(MSG_DEBUG,
  5030. "P2P: force GO freq (%d MHz) on a free channel",
  5031. freq);
  5032. params->freq = freq;
  5033. goto success;
  5034. }
  5035. /* consider using one of the shared frequencies */
  5036. if (num &&
  5037. (!wpa_s->conf->p2p_ignore_shared_freq || !unused_channels)) {
  5038. cand = wpas_p2p_pick_best_used_freq(wpa_s, freqs, num);
  5039. if (wpas_p2p_supported_freq_go(wpa_s, channels, cand)) {
  5040. wpa_printf(MSG_DEBUG,
  5041. "P2P: Use shared freq (%d MHz) for GO",
  5042. cand);
  5043. params->freq = cand;
  5044. goto success;
  5045. }
  5046. /* try using one of the shared freqs */
  5047. for (i = 0; i < num; i++) {
  5048. if (wpas_p2p_supported_freq_go(wpa_s, channels,
  5049. freqs[i].freq)) {
  5050. wpa_printf(MSG_DEBUG,
  5051. "P2P: Use shared freq (%d MHz) for GO",
  5052. freqs[i].freq);
  5053. params->freq = freqs[i].freq;
  5054. goto success;
  5055. }
  5056. }
  5057. }
  5058. if (!ignore_no_freqs && !unused_channels) {
  5059. wpa_printf(MSG_DEBUG,
  5060. "P2P: Cannot force GO on any of the channels we are already using");
  5061. goto fail;
  5062. }
  5063. /* try using the setting from the configuration file */
  5064. if (wpa_s->conf->p2p_oper_reg_class == 81 &&
  5065. wpa_s->conf->p2p_oper_channel >= 1 &&
  5066. wpa_s->conf->p2p_oper_channel <= 11 &&
  5067. wpas_p2p_supported_freq_go(
  5068. wpa_s, channels,
  5069. 2407 + 5 * wpa_s->conf->p2p_oper_channel)) {
  5070. params->freq = 2407 + 5 * wpa_s->conf->p2p_oper_channel;
  5071. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on configured "
  5072. "frequency %d MHz", params->freq);
  5073. goto success;
  5074. }
  5075. if ((wpa_s->conf->p2p_oper_reg_class == 115 ||
  5076. wpa_s->conf->p2p_oper_reg_class == 116 ||
  5077. wpa_s->conf->p2p_oper_reg_class == 117 ||
  5078. wpa_s->conf->p2p_oper_reg_class == 124 ||
  5079. wpa_s->conf->p2p_oper_reg_class == 125 ||
  5080. wpa_s->conf->p2p_oper_reg_class == 126 ||
  5081. wpa_s->conf->p2p_oper_reg_class == 127) &&
  5082. wpas_p2p_supported_freq_go(wpa_s, channels,
  5083. 5000 +
  5084. 5 * wpa_s->conf->p2p_oper_channel)) {
  5085. params->freq = 5000 + 5 * wpa_s->conf->p2p_oper_channel;
  5086. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on configured "
  5087. "frequency %d MHz", params->freq);
  5088. goto success;
  5089. }
  5090. /* Try using best channels */
  5091. if (wpa_s->conf->p2p_oper_channel == 0 &&
  5092. wpa_s->best_overall_freq > 0 &&
  5093. wpas_p2p_supported_freq_go(wpa_s, channels,
  5094. wpa_s->best_overall_freq)) {
  5095. params->freq = wpa_s->best_overall_freq;
  5096. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best overall "
  5097. "channel %d MHz", params->freq);
  5098. goto success;
  5099. }
  5100. if (wpa_s->conf->p2p_oper_channel == 0 &&
  5101. wpa_s->best_24_freq > 0 &&
  5102. wpas_p2p_supported_freq_go(wpa_s, channels,
  5103. wpa_s->best_24_freq)) {
  5104. params->freq = wpa_s->best_24_freq;
  5105. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best 2.4 GHz "
  5106. "channel %d MHz", params->freq);
  5107. goto success;
  5108. }
  5109. if (wpa_s->conf->p2p_oper_channel == 0 &&
  5110. wpa_s->best_5_freq > 0 &&
  5111. wpas_p2p_supported_freq_go(wpa_s, channels,
  5112. wpa_s->best_5_freq)) {
  5113. params->freq = wpa_s->best_5_freq;
  5114. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best 5 GHz "
  5115. "channel %d MHz", params->freq);
  5116. goto success;
  5117. }
  5118. /* try using preferred channels */
  5119. cand = p2p_get_pref_freq(wpa_s->global->p2p, channels);
  5120. if (cand && wpas_p2p_supported_freq_go(wpa_s, channels, cand)) {
  5121. params->freq = cand;
  5122. wpa_printf(MSG_DEBUG, "P2P: Set GO freq %d MHz from preferred "
  5123. "channels", params->freq);
  5124. goto success;
  5125. }
  5126. /* Try using one of the group common freqs */
  5127. if (wpa_s->p2p_group_common_freqs) {
  5128. for (i = 0; i < wpa_s->p2p_group_common_freqs_num; i++) {
  5129. cand = wpa_s->p2p_group_common_freqs[i];
  5130. if (wpas_p2p_supported_freq_go(wpa_s, channels, cand)) {
  5131. params->freq = cand;
  5132. wpa_printf(MSG_DEBUG,
  5133. "P2P: Use freq %d MHz common with the peer",
  5134. params->freq);
  5135. goto success;
  5136. }
  5137. }
  5138. }
  5139. /* no preference, select some channel */
  5140. wpas_p2p_select_go_freq_no_pref(wpa_s, params, channels);
  5141. if (params->freq == 0) {
  5142. wpa_printf(MSG_DEBUG, "P2P: did not find a freq for GO use");
  5143. goto fail;
  5144. }
  5145. success:
  5146. os_free(freqs);
  5147. return 0;
  5148. fail:
  5149. os_free(freqs);
  5150. return -1;
  5151. }
  5152. static struct wpa_supplicant *
  5153. wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
  5154. int go)
  5155. {
  5156. struct wpa_supplicant *group_wpa_s;
  5157. if (!wpas_p2p_create_iface(wpa_s)) {
  5158. if (wpa_s->p2p_mgmt) {
  5159. /*
  5160. * We may be called on the p2p_dev interface which
  5161. * cannot be used for group operations, so always use
  5162. * the primary interface.
  5163. */
  5164. wpa_s->parent->p2pdev = wpa_s;
  5165. wpa_s = wpa_s->parent;
  5166. }
  5167. wpa_dbg(wpa_s, MSG_DEBUG,
  5168. "P2P: Use primary interface for group operations");
  5169. wpa_s->p2p_first_connection_timeout = 0;
  5170. if (wpa_s != wpa_s->p2pdev)
  5171. wpas_p2p_clone_config(wpa_s, wpa_s->p2pdev);
  5172. return wpa_s;
  5173. }
  5174. if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
  5175. WPA_IF_P2P_CLIENT) < 0) {
  5176. wpa_msg_global(wpa_s, MSG_ERROR,
  5177. "P2P: Failed to add group interface");
  5178. return NULL;
  5179. }
  5180. group_wpa_s = wpas_p2p_init_group_interface(wpa_s, go);
  5181. if (group_wpa_s == NULL) {
  5182. wpa_msg_global(wpa_s, MSG_ERROR,
  5183. "P2P: Failed to initialize group interface");
  5184. wpas_p2p_remove_pending_group_interface(wpa_s);
  5185. return NULL;
  5186. }
  5187. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use separate group interface %s",
  5188. group_wpa_s->ifname);
  5189. group_wpa_s->p2p_first_connection_timeout = 0;
  5190. return group_wpa_s;
  5191. }
  5192. /**
  5193. * wpas_p2p_group_add - Add a new P2P group with local end as Group Owner
  5194. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  5195. * @persistent_group: Whether to create a persistent group
  5196. * @freq: Frequency for the group or 0 to indicate no hardcoding
  5197. * @vht_center_freq2: segment_1 center frequency for GO operating in VHT 80P80
  5198. * @ht40: Start GO with 40 MHz channel width
  5199. * @vht: Start GO with VHT support
  5200. * @vht_chwidth: channel bandwidth for GO operating with VHT support
  5201. * Returns: 0 on success, -1 on failure
  5202. *
  5203. * This function creates a new P2P group with the local end as the Group Owner,
  5204. * i.e., without using Group Owner Negotiation.
  5205. */
  5206. int wpas_p2p_group_add(struct wpa_supplicant *wpa_s, int persistent_group,
  5207. int freq, int vht_center_freq2, int ht40, int vht,
  5208. int max_oper_chwidth)
  5209. {
  5210. struct p2p_go_neg_results params;
  5211. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5212. return -1;
  5213. os_free(wpa_s->global->add_psk);
  5214. wpa_s->global->add_psk = NULL;
  5215. /* Make sure we are not running find during connection establishment */
  5216. wpa_printf(MSG_DEBUG, "P2P: Stop any on-going P2P FIND");
  5217. wpas_p2p_stop_find_oper(wpa_s);
  5218. freq = wpas_p2p_select_go_freq(wpa_s, freq);
  5219. if (freq < 0)
  5220. return -1;
  5221. if (wpas_p2p_init_go_params(wpa_s, &params, freq, vht_center_freq2,
  5222. ht40, vht, max_oper_chwidth, NULL))
  5223. return -1;
  5224. if (params.freq &&
  5225. !p2p_supported_freq_go(wpa_s->global->p2p, params.freq)) {
  5226. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) &&
  5227. ieee80211_is_dfs(params.freq)) {
  5228. /*
  5229. * If freq is a DFS channel and DFS is offloaded to the
  5230. * driver, allow P2P GO to use it.
  5231. */
  5232. wpa_printf(MSG_DEBUG,
  5233. "P2P: %s: The forced channel for GO (%u MHz) is DFS, and DFS is offloaded to driver",
  5234. __func__, params.freq);
  5235. } else {
  5236. wpa_printf(MSG_DEBUG,
  5237. "P2P: The selected channel for GO (%u MHz) is not supported for P2P uses",
  5238. params.freq);
  5239. return -1;
  5240. }
  5241. }
  5242. p2p_go_params(wpa_s->global->p2p, &params);
  5243. params.persistent_group = persistent_group;
  5244. wpa_s = wpas_p2p_get_group_iface(wpa_s, 0, 1);
  5245. if (wpa_s == NULL)
  5246. return -1;
  5247. wpas_start_wps_go(wpa_s, &params, 0);
  5248. return 0;
  5249. }
  5250. static int wpas_start_p2p_client(struct wpa_supplicant *wpa_s,
  5251. struct wpa_ssid *params, int addr_allocated,
  5252. int freq, int force_scan)
  5253. {
  5254. struct wpa_ssid *ssid;
  5255. wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 0);
  5256. if (wpa_s == NULL)
  5257. return -1;
  5258. if (force_scan)
  5259. os_get_reltime(&wpa_s->scan_min_time);
  5260. wpa_s->p2p_last_4way_hs_fail = NULL;
  5261. wpa_supplicant_ap_deinit(wpa_s);
  5262. ssid = wpa_config_add_network(wpa_s->conf);
  5263. if (ssid == NULL)
  5264. return -1;
  5265. os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
  5266. wpa_config_set_network_defaults(ssid);
  5267. ssid->temporary = 1;
  5268. ssid->proto = WPA_PROTO_RSN;
  5269. ssid->pbss = params->pbss;
  5270. ssid->pairwise_cipher = params->pbss ? WPA_CIPHER_GCMP :
  5271. WPA_CIPHER_CCMP;
  5272. ssid->group_cipher = params->pbss ? WPA_CIPHER_GCMP : WPA_CIPHER_CCMP;
  5273. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  5274. ssid->ssid = os_malloc(params->ssid_len);
  5275. if (ssid->ssid == NULL) {
  5276. wpa_config_remove_network(wpa_s->conf, ssid->id);
  5277. return -1;
  5278. }
  5279. os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
  5280. ssid->ssid_len = params->ssid_len;
  5281. ssid->p2p_group = 1;
  5282. ssid->export_keys = 1;
  5283. if (params->psk_set) {
  5284. os_memcpy(ssid->psk, params->psk, 32);
  5285. ssid->psk_set = 1;
  5286. }
  5287. if (params->passphrase)
  5288. ssid->passphrase = os_strdup(params->passphrase);
  5289. wpa_s->show_group_started = 1;
  5290. wpa_s->p2p_in_invitation = 1;
  5291. wpa_s->p2p_invite_go_freq = freq;
  5292. wpa_s->p2p_go_group_formation_completed = 0;
  5293. wpa_s->global->p2p_group_formation = wpa_s;
  5294. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s->p2pdev,
  5295. NULL);
  5296. eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
  5297. wpas_p2p_group_formation_timeout,
  5298. wpa_s->p2pdev, NULL);
  5299. wpa_supplicant_select_network(wpa_s, ssid);
  5300. return 0;
  5301. }
  5302. int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
  5303. struct wpa_ssid *ssid, int addr_allocated,
  5304. int force_freq, int neg_freq,
  5305. int vht_center_freq2, int ht40,
  5306. int vht, int max_oper_chwidth,
  5307. const struct p2p_channels *channels,
  5308. int connection_timeout, int force_scan)
  5309. {
  5310. struct p2p_go_neg_results params;
  5311. int go = 0, freq;
  5312. if (ssid->disabled != 2 || ssid->ssid == NULL)
  5313. return -1;
  5314. if (wpas_get_p2p_group(wpa_s, ssid->ssid, ssid->ssid_len, &go) &&
  5315. go == (ssid->mode == WPAS_MODE_P2P_GO)) {
  5316. wpa_printf(MSG_DEBUG, "P2P: Requested persistent group is "
  5317. "already running");
  5318. if (go == 0 &&
  5319. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  5320. wpa_s->p2pdev, NULL)) {
  5321. /*
  5322. * This can happen if Invitation Response frame was lost
  5323. * and the peer (GO of a persistent group) tries to
  5324. * invite us again. Reschedule the timeout to avoid
  5325. * terminating the wait for the connection too early
  5326. * since we now know that the peer is still trying to
  5327. * invite us instead of having already started the GO.
  5328. */
  5329. wpa_printf(MSG_DEBUG,
  5330. "P2P: Reschedule group formation timeout since peer is still trying to invite us");
  5331. eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
  5332. wpas_p2p_group_formation_timeout,
  5333. wpa_s->p2pdev, NULL);
  5334. }
  5335. return 0;
  5336. }
  5337. os_free(wpa_s->global->add_psk);
  5338. wpa_s->global->add_psk = NULL;
  5339. /* Make sure we are not running find during connection establishment */
  5340. wpas_p2p_stop_find_oper(wpa_s);
  5341. wpa_s->p2p_fallback_to_go_neg = 0;
  5342. if (ssid->mode == WPAS_MODE_P2P_GO) {
  5343. if (force_freq > 0) {
  5344. freq = wpas_p2p_select_go_freq(wpa_s, force_freq);
  5345. if (freq < 0)
  5346. return -1;
  5347. } else {
  5348. freq = wpas_p2p_select_go_freq(wpa_s, neg_freq);
  5349. if (freq < 0 ||
  5350. (freq > 0 && !freq_included(wpa_s, channels, freq)))
  5351. freq = 0;
  5352. }
  5353. } else if (ssid->mode == WPAS_MODE_INFRA) {
  5354. freq = neg_freq;
  5355. if (freq <= 0 || !freq_included(wpa_s, channels, freq)) {
  5356. struct os_reltime now;
  5357. struct wpa_bss *bss =
  5358. wpa_bss_get_p2p_dev_addr(wpa_s, ssid->bssid);
  5359. os_get_reltime(&now);
  5360. if (bss &&
  5361. !os_reltime_expired(&now, &bss->last_update, 5) &&
  5362. freq_included(wpa_s, channels, bss->freq))
  5363. freq = bss->freq;
  5364. else
  5365. freq = 0;
  5366. }
  5367. return wpas_start_p2p_client(wpa_s, ssid, addr_allocated, freq,
  5368. force_scan);
  5369. } else {
  5370. return -1;
  5371. }
  5372. if (wpas_p2p_init_go_params(wpa_s, &params, freq, vht_center_freq2,
  5373. ht40, vht, max_oper_chwidth, channels))
  5374. return -1;
  5375. params.role_go = 1;
  5376. params.psk_set = ssid->psk_set;
  5377. if (params.psk_set)
  5378. os_memcpy(params.psk, ssid->psk, sizeof(params.psk));
  5379. if (ssid->passphrase) {
  5380. if (os_strlen(ssid->passphrase) >= sizeof(params.passphrase)) {
  5381. wpa_printf(MSG_ERROR, "P2P: Invalid passphrase in "
  5382. "persistent group");
  5383. return -1;
  5384. }
  5385. os_strlcpy(params.passphrase, ssid->passphrase,
  5386. sizeof(params.passphrase));
  5387. }
  5388. os_memcpy(params.ssid, ssid->ssid, ssid->ssid_len);
  5389. params.ssid_len = ssid->ssid_len;
  5390. params.persistent_group = 1;
  5391. wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 1);
  5392. if (wpa_s == NULL)
  5393. return -1;
  5394. p2p_channels_to_freqs(channels, params.freq_list, P2P_MAX_CHANNELS);
  5395. wpa_s->p2p_first_connection_timeout = connection_timeout;
  5396. wpas_start_wps_go(wpa_s, &params, 0);
  5397. return 0;
  5398. }
  5399. static void wpas_p2p_ie_update(void *ctx, struct wpabuf *beacon_ies,
  5400. struct wpabuf *proberesp_ies)
  5401. {
  5402. struct wpa_supplicant *wpa_s = ctx;
  5403. if (wpa_s->ap_iface) {
  5404. struct hostapd_data *hapd = wpa_s->ap_iface->bss[0];
  5405. if (!(hapd->conf->p2p & P2P_GROUP_OWNER)) {
  5406. wpabuf_free(beacon_ies);
  5407. wpabuf_free(proberesp_ies);
  5408. return;
  5409. }
  5410. if (beacon_ies) {
  5411. wpabuf_free(hapd->p2p_beacon_ie);
  5412. hapd->p2p_beacon_ie = beacon_ies;
  5413. }
  5414. wpabuf_free(hapd->p2p_probe_resp_ie);
  5415. hapd->p2p_probe_resp_ie = proberesp_ies;
  5416. } else {
  5417. wpabuf_free(beacon_ies);
  5418. wpabuf_free(proberesp_ies);
  5419. }
  5420. wpa_supplicant_ap_update_beacon(wpa_s);
  5421. }
  5422. static void wpas_p2p_idle_update(void *ctx, int idle)
  5423. {
  5424. struct wpa_supplicant *wpa_s = ctx;
  5425. if (!wpa_s->ap_iface)
  5426. return;
  5427. wpa_printf(MSG_DEBUG, "P2P: GO - group %sidle", idle ? "" : "not ");
  5428. if (idle) {
  5429. if (wpa_s->global->p2p_fail_on_wps_complete &&
  5430. wpa_s->p2p_in_provisioning) {
  5431. wpas_p2p_grpform_fail_after_wps(wpa_s);
  5432. return;
  5433. }
  5434. wpas_p2p_set_group_idle_timeout(wpa_s);
  5435. } else
  5436. eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
  5437. }
  5438. struct p2p_group * wpas_p2p_group_init(struct wpa_supplicant *wpa_s,
  5439. struct wpa_ssid *ssid)
  5440. {
  5441. struct p2p_group *group;
  5442. struct p2p_group_config *cfg;
  5443. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL ||
  5444. !ssid->p2p_group)
  5445. return NULL;
  5446. cfg = os_zalloc(sizeof(*cfg));
  5447. if (cfg == NULL)
  5448. return NULL;
  5449. if (ssid->p2p_persistent_group && wpa_s->conf->persistent_reconnect)
  5450. cfg->persistent_group = 2;
  5451. else if (ssid->p2p_persistent_group)
  5452. cfg->persistent_group = 1;
  5453. os_memcpy(cfg->interface_addr, wpa_s->own_addr, ETH_ALEN);
  5454. if (wpa_s->max_stations &&
  5455. wpa_s->max_stations < wpa_s->conf->max_num_sta)
  5456. cfg->max_clients = wpa_s->max_stations;
  5457. else
  5458. cfg->max_clients = wpa_s->conf->max_num_sta;
  5459. os_memcpy(cfg->ssid, ssid->ssid, ssid->ssid_len);
  5460. cfg->ssid_len = ssid->ssid_len;
  5461. cfg->freq = ssid->frequency;
  5462. cfg->cb_ctx = wpa_s;
  5463. cfg->ie_update = wpas_p2p_ie_update;
  5464. cfg->idle_update = wpas_p2p_idle_update;
  5465. cfg->ip_addr_alloc = WPA_GET_BE32(wpa_s->p2pdev->conf->ip_addr_start)
  5466. != 0;
  5467. group = p2p_group_init(wpa_s->global->p2p, cfg);
  5468. if (group == NULL)
  5469. os_free(cfg);
  5470. if (ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION)
  5471. p2p_group_notif_formation_done(group);
  5472. wpa_s->p2p_group = group;
  5473. return group;
  5474. }
  5475. void wpas_p2p_wps_success(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  5476. int registrar)
  5477. {
  5478. struct wpa_ssid *ssid = wpa_s->current_ssid;
  5479. if (!wpa_s->p2p_in_provisioning) {
  5480. wpa_printf(MSG_DEBUG, "P2P: Ignore WPS success event - P2P "
  5481. "provisioning not in progress");
  5482. return;
  5483. }
  5484. if (ssid && ssid->mode == WPAS_MODE_INFRA) {
  5485. u8 go_dev_addr[ETH_ALEN];
  5486. os_memcpy(go_dev_addr, wpa_s->bssid, ETH_ALEN);
  5487. wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
  5488. ssid->ssid_len);
  5489. /* Clear any stored provisioning info */
  5490. p2p_clear_provisioning_info(wpa_s->global->p2p, go_dev_addr);
  5491. }
  5492. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s->p2pdev,
  5493. NULL);
  5494. wpa_s->p2p_go_group_formation_completed = 1;
  5495. if (ssid && ssid->mode == WPAS_MODE_INFRA) {
  5496. /*
  5497. * Use a separate timeout for initial data connection to
  5498. * complete to allow the group to be removed automatically if
  5499. * something goes wrong in this step before the P2P group idle
  5500. * timeout mechanism is taken into use.
  5501. */
  5502. wpa_dbg(wpa_s, MSG_DEBUG,
  5503. "P2P: Re-start group formation timeout (%d seconds) as client for initial connection",
  5504. P2P_MAX_INITIAL_CONN_WAIT);
  5505. eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
  5506. wpas_p2p_group_formation_timeout,
  5507. wpa_s->p2pdev, NULL);
  5508. /* Complete group formation on successful data connection. */
  5509. wpa_s->p2p_go_group_formation_completed = 0;
  5510. } else if (ssid) {
  5511. /*
  5512. * Use a separate timeout for initial data connection to
  5513. * complete to allow the group to be removed automatically if
  5514. * the client does not complete data connection successfully.
  5515. */
  5516. wpa_dbg(wpa_s, MSG_DEBUG,
  5517. "P2P: Re-start group formation timeout (%d seconds) as GO for initial connection",
  5518. P2P_MAX_INITIAL_CONN_WAIT_GO);
  5519. eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT_GO, 0,
  5520. wpas_p2p_group_formation_timeout,
  5521. wpa_s->p2pdev, NULL);
  5522. /*
  5523. * Complete group formation on first successful data connection
  5524. */
  5525. wpa_s->p2p_go_group_formation_completed = 0;
  5526. }
  5527. if (wpa_s->global->p2p)
  5528. p2p_wps_success_cb(wpa_s->global->p2p, peer_addr);
  5529. wpas_group_formation_completed(wpa_s, 1, 0);
  5530. }
  5531. void wpas_p2p_wps_failed(struct wpa_supplicant *wpa_s,
  5532. struct wps_event_fail *fail)
  5533. {
  5534. if (!wpa_s->p2p_in_provisioning) {
  5535. wpa_printf(MSG_DEBUG, "P2P: Ignore WPS fail event - P2P "
  5536. "provisioning not in progress");
  5537. return;
  5538. }
  5539. if (wpa_s->go_params) {
  5540. p2p_clear_provisioning_info(
  5541. wpa_s->global->p2p,
  5542. wpa_s->go_params->peer_device_addr);
  5543. }
  5544. wpas_notify_p2p_wps_failed(wpa_s, fail);
  5545. if (wpa_s == wpa_s->global->p2p_group_formation) {
  5546. /*
  5547. * Allow some time for the failed WPS negotiation exchange to
  5548. * complete, but remove the group since group formation cannot
  5549. * succeed after provisioning failure.
  5550. */
  5551. wpa_printf(MSG_DEBUG, "P2P: WPS step failed during group formation - reject connection from timeout");
  5552. wpa_s->global->p2p_fail_on_wps_complete = 1;
  5553. eloop_deplete_timeout(0, 50000,
  5554. wpas_p2p_group_formation_timeout,
  5555. wpa_s->p2pdev, NULL);
  5556. }
  5557. }
  5558. int wpas_p2p_wps_eapol_cb(struct wpa_supplicant *wpa_s)
  5559. {
  5560. if (!wpa_s->global->p2p_fail_on_wps_complete ||
  5561. !wpa_s->p2p_in_provisioning)
  5562. return 0;
  5563. wpas_p2p_grpform_fail_after_wps(wpa_s);
  5564. return 1;
  5565. }
  5566. int wpas_p2p_prov_disc(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  5567. const char *config_method,
  5568. enum wpas_p2p_prov_disc_use use,
  5569. struct p2ps_provision *p2ps_prov)
  5570. {
  5571. u16 config_methods;
  5572. wpa_s->global->pending_p2ps_group = 0;
  5573. wpa_s->global->pending_p2ps_group_freq = 0;
  5574. wpa_s->p2p_fallback_to_go_neg = 0;
  5575. wpa_s->pending_pd_use = NORMAL_PD;
  5576. if (p2ps_prov && use == WPAS_P2P_PD_FOR_ASP) {
  5577. p2ps_prov->conncap = p2ps_group_capability(
  5578. wpa_s, P2PS_SETUP_NONE, p2ps_prov->role,
  5579. &p2ps_prov->force_freq, &p2ps_prov->pref_freq);
  5580. wpa_printf(MSG_DEBUG,
  5581. "P2P: %s conncap: %d - ASP parsed: %x %x %d %s",
  5582. __func__, p2ps_prov->conncap,
  5583. p2ps_prov->adv_id, p2ps_prov->conncap,
  5584. p2ps_prov->status, p2ps_prov->info);
  5585. config_methods = 0;
  5586. } else if (os_strncmp(config_method, "display", 7) == 0)
  5587. config_methods = WPS_CONFIG_DISPLAY;
  5588. else if (os_strncmp(config_method, "keypad", 6) == 0)
  5589. config_methods = WPS_CONFIG_KEYPAD;
  5590. else if (os_strncmp(config_method, "pbc", 3) == 0 ||
  5591. os_strncmp(config_method, "pushbutton", 10) == 0)
  5592. config_methods = WPS_CONFIG_PUSHBUTTON;
  5593. else {
  5594. wpa_printf(MSG_DEBUG, "P2P: Unknown config method");
  5595. os_free(p2ps_prov);
  5596. return -1;
  5597. }
  5598. if (use == WPAS_P2P_PD_AUTO) {
  5599. os_memcpy(wpa_s->pending_join_dev_addr, peer_addr, ETH_ALEN);
  5600. wpa_s->pending_pd_config_methods = config_methods;
  5601. wpa_s->p2p_auto_pd = 1;
  5602. wpa_s->p2p_auto_join = 0;
  5603. wpa_s->pending_pd_before_join = 0;
  5604. wpa_s->auto_pd_scan_retry = 0;
  5605. wpas_p2p_stop_find(wpa_s);
  5606. wpa_s->p2p_join_scan_count = 0;
  5607. os_get_reltime(&wpa_s->p2p_auto_started);
  5608. wpa_printf(MSG_DEBUG, "P2P: Auto PD started at %ld.%06ld",
  5609. wpa_s->p2p_auto_started.sec,
  5610. wpa_s->p2p_auto_started.usec);
  5611. wpas_p2p_join_scan(wpa_s, NULL);
  5612. return 0;
  5613. }
  5614. if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled) {
  5615. os_free(p2ps_prov);
  5616. return -1;
  5617. }
  5618. return p2p_prov_disc_req(wpa_s->global->p2p, peer_addr, p2ps_prov,
  5619. config_methods, use == WPAS_P2P_PD_FOR_JOIN,
  5620. 0, 1);
  5621. }
  5622. int wpas_p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
  5623. char *end)
  5624. {
  5625. return p2p_scan_result_text(ies, ies_len, buf, end);
  5626. }
  5627. static void wpas_p2p_clear_pending_action_tx(struct wpa_supplicant *wpa_s)
  5628. {
  5629. if (!offchannel_pending_action_tx(wpa_s))
  5630. return;
  5631. if (wpa_s->p2p_send_action_work) {
  5632. wpas_p2p_free_send_action_work(wpa_s);
  5633. eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
  5634. wpa_s, NULL);
  5635. offchannel_send_action_done(wpa_s);
  5636. }
  5637. wpa_printf(MSG_DEBUG, "P2P: Drop pending Action TX due to new "
  5638. "operation request");
  5639. offchannel_clear_pending_action_tx(wpa_s);
  5640. }
  5641. int wpas_p2p_find(struct wpa_supplicant *wpa_s, unsigned int timeout,
  5642. enum p2p_discovery_type type,
  5643. unsigned int num_req_dev_types, const u8 *req_dev_types,
  5644. const u8 *dev_id, unsigned int search_delay,
  5645. u8 seek_cnt, const char **seek_string, int freq)
  5646. {
  5647. wpas_p2p_clear_pending_action_tx(wpa_s);
  5648. wpa_s->p2p_long_listen = 0;
  5649. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL ||
  5650. wpa_s->p2p_in_provisioning)
  5651. return -1;
  5652. wpa_supplicant_cancel_sched_scan(wpa_s);
  5653. return p2p_find(wpa_s->global->p2p, timeout, type,
  5654. num_req_dev_types, req_dev_types, dev_id,
  5655. search_delay, seek_cnt, seek_string, freq);
  5656. }
  5657. static void wpas_p2p_scan_res_ignore_search(struct wpa_supplicant *wpa_s,
  5658. struct wpa_scan_results *scan_res)
  5659. {
  5660. wpa_printf(MSG_DEBUG, "P2P: Ignore scan results");
  5661. if (wpa_s->p2p_scan_work) {
  5662. struct wpa_radio_work *work = wpa_s->p2p_scan_work;
  5663. wpa_s->p2p_scan_work = NULL;
  5664. radio_work_done(work);
  5665. }
  5666. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5667. return;
  5668. /*
  5669. * Indicate that results have been processed so that the P2P module can
  5670. * continue pending tasks.
  5671. */
  5672. p2p_scan_res_handled(wpa_s->global->p2p);
  5673. }
  5674. static void wpas_p2p_stop_find_oper(struct wpa_supplicant *wpa_s)
  5675. {
  5676. wpas_p2p_clear_pending_action_tx(wpa_s);
  5677. wpa_s->p2p_long_listen = 0;
  5678. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  5679. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  5680. if (wpa_s->global->p2p)
  5681. p2p_stop_find(wpa_s->global->p2p);
  5682. if (wpa_s->scan_res_handler == wpas_p2p_scan_res_handler) {
  5683. wpa_printf(MSG_DEBUG,
  5684. "P2P: Do not consider the scan results after stop_find");
  5685. wpa_s->scan_res_handler = wpas_p2p_scan_res_ignore_search;
  5686. }
  5687. }
  5688. void wpas_p2p_stop_find(struct wpa_supplicant *wpa_s)
  5689. {
  5690. wpas_p2p_stop_find_oper(wpa_s);
  5691. if (!wpa_s->global->pending_group_iface_for_p2ps)
  5692. wpas_p2p_remove_pending_group_interface(wpa_s);
  5693. }
  5694. static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx)
  5695. {
  5696. struct wpa_supplicant *wpa_s = eloop_ctx;
  5697. wpa_s->p2p_long_listen = 0;
  5698. }
  5699. int wpas_p2p_listen(struct wpa_supplicant *wpa_s, unsigned int timeout)
  5700. {
  5701. int res;
  5702. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5703. return -1;
  5704. if (wpa_s->p2p_lo_started) {
  5705. wpa_printf(MSG_DEBUG,
  5706. "P2P: Cannot start P2P listen, it is offloaded");
  5707. return -1;
  5708. }
  5709. wpa_supplicant_cancel_sched_scan(wpa_s);
  5710. wpas_p2p_clear_pending_action_tx(wpa_s);
  5711. if (timeout == 0) {
  5712. /*
  5713. * This is a request for unlimited Listen state. However, at
  5714. * least for now, this is mapped to a Listen state for one
  5715. * hour.
  5716. */
  5717. timeout = 3600;
  5718. }
  5719. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  5720. wpa_s->p2p_long_listen = 0;
  5721. /*
  5722. * Stop previous find/listen operation to avoid trying to request a new
  5723. * remain-on-channel operation while the driver is still running the
  5724. * previous one.
  5725. */
  5726. if (wpa_s->global->p2p)
  5727. p2p_stop_find(wpa_s->global->p2p);
  5728. res = wpas_p2p_listen_start(wpa_s, timeout * 1000);
  5729. if (res == 0 && timeout * 1000 > wpa_s->max_remain_on_chan) {
  5730. wpa_s->p2p_long_listen = timeout * 1000;
  5731. eloop_register_timeout(timeout, 0,
  5732. wpas_p2p_long_listen_timeout,
  5733. wpa_s, NULL);
  5734. }
  5735. return res;
  5736. }
  5737. int wpas_p2p_assoc_req_ie(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
  5738. u8 *buf, size_t len, int p2p_group)
  5739. {
  5740. struct wpabuf *p2p_ie;
  5741. int ret;
  5742. if (wpa_s->global->p2p_disabled)
  5743. return -1;
  5744. /*
  5745. * Advertize mandatory cross connection capability even on
  5746. * p2p_disabled=1 interface when associating with a P2P Manager WLAN AP.
  5747. */
  5748. if (wpa_s->conf->p2p_disabled && p2p_group)
  5749. return -1;
  5750. if (wpa_s->global->p2p == NULL)
  5751. return -1;
  5752. if (bss == NULL)
  5753. return -1;
  5754. p2p_ie = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
  5755. ret = p2p_assoc_req_ie(wpa_s->global->p2p, bss->bssid, buf, len,
  5756. p2p_group, p2p_ie);
  5757. wpabuf_free(p2p_ie);
  5758. return ret;
  5759. }
  5760. int wpas_p2p_probe_req_rx(struct wpa_supplicant *wpa_s, const u8 *addr,
  5761. const u8 *dst, const u8 *bssid,
  5762. const u8 *ie, size_t ie_len,
  5763. unsigned int rx_freq, int ssi_signal)
  5764. {
  5765. if (wpa_s->global->p2p_disabled)
  5766. return 0;
  5767. if (wpa_s->global->p2p == NULL)
  5768. return 0;
  5769. switch (p2p_probe_req_rx(wpa_s->global->p2p, addr, dst, bssid,
  5770. ie, ie_len, rx_freq, wpa_s->p2p_lo_started)) {
  5771. case P2P_PREQ_NOT_P2P:
  5772. wpas_notify_preq(wpa_s, addr, dst, bssid, ie, ie_len,
  5773. ssi_signal);
  5774. /* fall through */
  5775. case P2P_PREQ_MALFORMED:
  5776. case P2P_PREQ_NOT_LISTEN:
  5777. case P2P_PREQ_NOT_PROCESSED:
  5778. default: /* make gcc happy */
  5779. return 0;
  5780. case P2P_PREQ_PROCESSED:
  5781. return 1;
  5782. }
  5783. }
  5784. void wpas_p2p_rx_action(struct wpa_supplicant *wpa_s, const u8 *da,
  5785. const u8 *sa, const u8 *bssid,
  5786. u8 category, const u8 *data, size_t len, int freq)
  5787. {
  5788. if (wpa_s->global->p2p_disabled)
  5789. return;
  5790. if (wpa_s->global->p2p == NULL)
  5791. return;
  5792. p2p_rx_action(wpa_s->global->p2p, da, sa, bssid, category, data, len,
  5793. freq);
  5794. }
  5795. void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies)
  5796. {
  5797. unsigned int bands;
  5798. if (wpa_s->global->p2p_disabled)
  5799. return;
  5800. if (wpa_s->global->p2p == NULL)
  5801. return;
  5802. bands = wpas_get_bands(wpa_s, NULL);
  5803. p2p_scan_ie(wpa_s->global->p2p, ies, NULL, bands);
  5804. }
  5805. static void wpas_p2p_group_deinit(struct wpa_supplicant *wpa_s)
  5806. {
  5807. p2p_group_deinit(wpa_s->p2p_group);
  5808. wpa_s->p2p_group = NULL;
  5809. wpa_s->ap_configured_cb = NULL;
  5810. wpa_s->ap_configured_cb_ctx = NULL;
  5811. wpa_s->ap_configured_cb_data = NULL;
  5812. wpa_s->connect_without_scan = NULL;
  5813. }
  5814. int wpas_p2p_reject(struct wpa_supplicant *wpa_s, const u8 *addr)
  5815. {
  5816. wpa_s->p2p_long_listen = 0;
  5817. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5818. return -1;
  5819. return p2p_reject(wpa_s->global->p2p, addr);
  5820. }
  5821. /* Invite to reinvoke a persistent group */
  5822. int wpas_p2p_invite(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  5823. struct wpa_ssid *ssid, const u8 *go_dev_addr, int freq,
  5824. int vht_center_freq2, int ht40, int vht, int max_chwidth,
  5825. int pref_freq)
  5826. {
  5827. enum p2p_invite_role role;
  5828. u8 *bssid = NULL;
  5829. int force_freq = 0;
  5830. int res;
  5831. int no_pref_freq_given = pref_freq == 0;
  5832. unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS], size;
  5833. wpa_s->global->p2p_invite_group = NULL;
  5834. if (peer_addr)
  5835. os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
  5836. else
  5837. os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
  5838. wpa_s->p2p_persistent_go_freq = freq;
  5839. wpa_s->p2p_go_ht40 = !!ht40;
  5840. wpa_s->p2p_go_vht = !!vht;
  5841. wpa_s->p2p_go_max_oper_chwidth = max_chwidth;
  5842. wpa_s->p2p_go_vht_center_freq2 = vht_center_freq2;
  5843. if (ssid->mode == WPAS_MODE_P2P_GO) {
  5844. role = P2P_INVITE_ROLE_GO;
  5845. if (peer_addr == NULL) {
  5846. wpa_printf(MSG_DEBUG, "P2P: Missing peer "
  5847. "address in invitation command");
  5848. return -1;
  5849. }
  5850. if (wpas_p2p_create_iface(wpa_s)) {
  5851. if (wpas_p2p_add_group_interface(wpa_s,
  5852. WPA_IF_P2P_GO) < 0) {
  5853. wpa_printf(MSG_ERROR, "P2P: Failed to "
  5854. "allocate a new interface for the "
  5855. "group");
  5856. return -1;
  5857. }
  5858. bssid = wpa_s->pending_interface_addr;
  5859. } else if (wpa_s->p2p_mgmt)
  5860. bssid = wpa_s->parent->own_addr;
  5861. else
  5862. bssid = wpa_s->own_addr;
  5863. } else {
  5864. role = P2P_INVITE_ROLE_CLIENT;
  5865. peer_addr = ssid->bssid;
  5866. }
  5867. wpa_s->pending_invite_ssid_id = ssid->id;
  5868. size = P2P_MAX_PREF_CHANNELS;
  5869. res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
  5870. role == P2P_INVITE_ROLE_GO,
  5871. pref_freq_list, &size);
  5872. if (res)
  5873. return res;
  5874. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5875. return -1;
  5876. p2p_set_own_pref_freq_list(wpa_s->global->p2p, pref_freq_list, size);
  5877. if (wpa_s->parent->conf->p2p_ignore_shared_freq &&
  5878. no_pref_freq_given && pref_freq > 0 &&
  5879. wpa_s->num_multichan_concurrent > 1 &&
  5880. wpas_p2p_num_unused_channels(wpa_s) > 0) {
  5881. wpa_printf(MSG_DEBUG, "P2P: Ignore own channel preference %d MHz for invitation due to p2p_ignore_shared_freq=1 configuration",
  5882. pref_freq);
  5883. pref_freq = 0;
  5884. }
  5885. /*
  5886. * Stop any find/listen operations before invitation and possibly
  5887. * connection establishment.
  5888. */
  5889. wpas_p2p_stop_find_oper(wpa_s);
  5890. return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
  5891. ssid->ssid, ssid->ssid_len, force_freq, go_dev_addr,
  5892. 1, pref_freq, -1);
  5893. }
  5894. /* Invite to join an active group */
  5895. int wpas_p2p_invite_group(struct wpa_supplicant *wpa_s, const char *ifname,
  5896. const u8 *peer_addr, const u8 *go_dev_addr)
  5897. {
  5898. struct wpa_global *global = wpa_s->global;
  5899. enum p2p_invite_role role;
  5900. u8 *bssid = NULL;
  5901. struct wpa_ssid *ssid;
  5902. int persistent;
  5903. int freq = 0, force_freq = 0, pref_freq = 0;
  5904. int res;
  5905. unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS], size;
  5906. wpa_s->p2p_persistent_go_freq = 0;
  5907. wpa_s->p2p_go_ht40 = 0;
  5908. wpa_s->p2p_go_vht = 0;
  5909. wpa_s->p2p_go_vht_center_freq2 = 0;
  5910. wpa_s->p2p_go_max_oper_chwidth = 0;
  5911. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  5912. if (os_strcmp(wpa_s->ifname, ifname) == 0)
  5913. break;
  5914. }
  5915. if (wpa_s == NULL) {
  5916. wpa_printf(MSG_DEBUG, "P2P: Interface '%s' not found", ifname);
  5917. return -1;
  5918. }
  5919. ssid = wpa_s->current_ssid;
  5920. if (ssid == NULL) {
  5921. wpa_printf(MSG_DEBUG, "P2P: No current SSID to use for "
  5922. "invitation");
  5923. return -1;
  5924. }
  5925. wpa_s->global->p2p_invite_group = wpa_s;
  5926. persistent = ssid->p2p_persistent_group &&
  5927. wpas_p2p_get_persistent(wpa_s->p2pdev, peer_addr,
  5928. ssid->ssid, ssid->ssid_len);
  5929. if (ssid->mode == WPAS_MODE_P2P_GO) {
  5930. role = P2P_INVITE_ROLE_ACTIVE_GO;
  5931. bssid = wpa_s->own_addr;
  5932. if (go_dev_addr == NULL)
  5933. go_dev_addr = wpa_s->global->p2p_dev_addr;
  5934. freq = ssid->frequency;
  5935. } else {
  5936. role = P2P_INVITE_ROLE_CLIENT;
  5937. if (wpa_s->wpa_state < WPA_ASSOCIATED) {
  5938. wpa_printf(MSG_DEBUG, "P2P: Not associated - cannot "
  5939. "invite to current group");
  5940. return -1;
  5941. }
  5942. bssid = wpa_s->bssid;
  5943. if (go_dev_addr == NULL &&
  5944. !is_zero_ether_addr(wpa_s->go_dev_addr))
  5945. go_dev_addr = wpa_s->go_dev_addr;
  5946. freq = wpa_s->current_bss ? wpa_s->current_bss->freq :
  5947. (int) wpa_s->assoc_freq;
  5948. }
  5949. wpa_s->p2pdev->pending_invite_ssid_id = -1;
  5950. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5951. return -1;
  5952. size = P2P_MAX_PREF_CHANNELS;
  5953. res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
  5954. role == P2P_INVITE_ROLE_ACTIVE_GO,
  5955. pref_freq_list, &size);
  5956. if (res)
  5957. return res;
  5958. wpas_p2p_set_own_freq_preference(wpa_s, force_freq);
  5959. return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
  5960. ssid->ssid, ssid->ssid_len, force_freq,
  5961. go_dev_addr, persistent, pref_freq, -1);
  5962. }
  5963. void wpas_p2p_completed(struct wpa_supplicant *wpa_s)
  5964. {
  5965. struct wpa_ssid *ssid = wpa_s->current_ssid;
  5966. u8 go_dev_addr[ETH_ALEN];
  5967. int persistent;
  5968. int freq;
  5969. u8 ip[3 * 4];
  5970. char ip_addr[100];
  5971. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION) {
  5972. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  5973. wpa_s->p2pdev, NULL);
  5974. }
  5975. if (!wpa_s->show_group_started || !ssid)
  5976. return;
  5977. wpa_s->show_group_started = 0;
  5978. if (!wpa_s->p2p_go_group_formation_completed &&
  5979. wpa_s->global->p2p_group_formation == wpa_s) {
  5980. wpa_dbg(wpa_s, MSG_DEBUG,
  5981. "P2P: Marking group formation completed on client on data connection");
  5982. wpa_s->p2p_go_group_formation_completed = 1;
  5983. wpa_s->global->p2p_group_formation = NULL;
  5984. wpa_s->p2p_in_provisioning = 0;
  5985. wpa_s->p2p_in_invitation = 0;
  5986. }
  5987. os_memset(go_dev_addr, 0, ETH_ALEN);
  5988. if (ssid->bssid_set)
  5989. os_memcpy(go_dev_addr, ssid->bssid, ETH_ALEN);
  5990. persistent = wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
  5991. ssid->ssid_len);
  5992. os_memcpy(wpa_s->go_dev_addr, go_dev_addr, ETH_ALEN);
  5993. if (wpa_s->global->p2p_group_formation == wpa_s)
  5994. wpa_s->global->p2p_group_formation = NULL;
  5995. freq = wpa_s->current_bss ? wpa_s->current_bss->freq :
  5996. (int) wpa_s->assoc_freq;
  5997. ip_addr[0] = '\0';
  5998. if (wpa_sm_get_p2p_ip_addr(wpa_s->wpa, ip) == 0) {
  5999. int res;
  6000. res = os_snprintf(ip_addr, sizeof(ip_addr),
  6001. " ip_addr=%u.%u.%u.%u "
  6002. "ip_mask=%u.%u.%u.%u go_ip_addr=%u.%u.%u.%u",
  6003. ip[0], ip[1], ip[2], ip[3],
  6004. ip[4], ip[5], ip[6], ip[7],
  6005. ip[8], ip[9], ip[10], ip[11]);
  6006. if (os_snprintf_error(sizeof(ip_addr), res))
  6007. ip_addr[0] = '\0';
  6008. }
  6009. wpas_p2p_group_started(wpa_s, 0, ssid, freq,
  6010. ssid->passphrase == NULL && ssid->psk_set ?
  6011. ssid->psk : NULL,
  6012. ssid->passphrase, go_dev_addr, persistent,
  6013. ip_addr);
  6014. if (persistent)
  6015. wpas_p2p_store_persistent_group(wpa_s->p2pdev,
  6016. ssid, go_dev_addr);
  6017. wpas_notify_p2p_group_started(wpa_s, ssid, persistent, 1, ip);
  6018. }
  6019. int wpas_p2p_presence_req(struct wpa_supplicant *wpa_s, u32 duration1,
  6020. u32 interval1, u32 duration2, u32 interval2)
  6021. {
  6022. int ret;
  6023. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  6024. return -1;
  6025. if (wpa_s->wpa_state < WPA_ASSOCIATED ||
  6026. wpa_s->current_ssid == NULL ||
  6027. wpa_s->current_ssid->mode != WPAS_MODE_INFRA)
  6028. return -1;
  6029. ret = p2p_presence_req(wpa_s->global->p2p, wpa_s->bssid,
  6030. wpa_s->own_addr, wpa_s->assoc_freq,
  6031. duration1, interval1, duration2, interval2);
  6032. if (ret == 0)
  6033. wpa_s->waiting_presence_resp = 1;
  6034. return ret;
  6035. }
  6036. int wpas_p2p_ext_listen(struct wpa_supplicant *wpa_s, unsigned int period,
  6037. unsigned int interval)
  6038. {
  6039. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  6040. return -1;
  6041. return p2p_ext_listen(wpa_s->global->p2p, period, interval);
  6042. }
  6043. static int wpas_p2p_is_client(struct wpa_supplicant *wpa_s)
  6044. {
  6045. if (wpa_s->current_ssid == NULL) {
  6046. /*
  6047. * current_ssid can be cleared when P2P client interface gets
  6048. * disconnected, so assume this interface was used as P2P
  6049. * client.
  6050. */
  6051. return 1;
  6052. }
  6053. return wpa_s->current_ssid->p2p_group &&
  6054. wpa_s->current_ssid->mode == WPAS_MODE_INFRA;
  6055. }
  6056. static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx)
  6057. {
  6058. struct wpa_supplicant *wpa_s = eloop_ctx;
  6059. if (wpa_s->conf->p2p_group_idle == 0 && !wpas_p2p_is_client(wpa_s)) {
  6060. wpa_printf(MSG_DEBUG, "P2P: Ignore group idle timeout - "
  6061. "disabled");
  6062. return;
  6063. }
  6064. wpa_printf(MSG_DEBUG, "P2P: Group idle timeout reached - terminate "
  6065. "group");
  6066. wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_IDLE_TIMEOUT);
  6067. }
  6068. static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s)
  6069. {
  6070. int timeout;
  6071. if (eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
  6072. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
  6073. if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
  6074. return;
  6075. timeout = wpa_s->conf->p2p_group_idle;
  6076. if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA &&
  6077. (timeout == 0 || timeout > P2P_MAX_CLIENT_IDLE))
  6078. timeout = P2P_MAX_CLIENT_IDLE;
  6079. if (timeout == 0)
  6080. return;
  6081. if (timeout < 0) {
  6082. if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA)
  6083. timeout = 0; /* special client mode no-timeout */
  6084. else
  6085. return;
  6086. }
  6087. if (wpa_s->p2p_in_provisioning) {
  6088. /*
  6089. * Use the normal group formation timeout during the
  6090. * provisioning phase to avoid terminating this process too
  6091. * early due to group idle timeout.
  6092. */
  6093. wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
  6094. "during provisioning");
  6095. return;
  6096. }
  6097. if (wpa_s->show_group_started) {
  6098. /*
  6099. * Use the normal group formation timeout between the end of
  6100. * the provisioning phase and completion of 4-way handshake to
  6101. * avoid terminating this process too early due to group idle
  6102. * timeout.
  6103. */
  6104. wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
  6105. "while waiting for initial 4-way handshake to "
  6106. "complete");
  6107. return;
  6108. }
  6109. wpa_printf(MSG_DEBUG, "P2P: Set P2P group idle timeout to %u seconds",
  6110. timeout);
  6111. eloop_register_timeout(timeout, 0, wpas_p2p_group_idle_timeout,
  6112. wpa_s, NULL);
  6113. }
  6114. /* Returns 1 if the interface was removed */
  6115. int wpas_p2p_deauth_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
  6116. u16 reason_code, const u8 *ie, size_t ie_len,
  6117. int locally_generated)
  6118. {
  6119. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  6120. return 0;
  6121. if (!locally_generated)
  6122. p2p_deauth_notif(wpa_s->global->p2p, bssid, reason_code, ie,
  6123. ie_len);
  6124. if (reason_code == WLAN_REASON_DEAUTH_LEAVING && !locally_generated &&
  6125. wpa_s->current_ssid &&
  6126. wpa_s->current_ssid->p2p_group &&
  6127. wpa_s->current_ssid->mode == WPAS_MODE_INFRA) {
  6128. wpa_printf(MSG_DEBUG, "P2P: GO indicated that the P2P Group "
  6129. "session is ending");
  6130. if (wpas_p2p_group_delete(wpa_s,
  6131. P2P_GROUP_REMOVAL_GO_ENDING_SESSION)
  6132. > 0)
  6133. return 1;
  6134. }
  6135. return 0;
  6136. }
  6137. void wpas_p2p_disassoc_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
  6138. u16 reason_code, const u8 *ie, size_t ie_len,
  6139. int locally_generated)
  6140. {
  6141. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  6142. return;
  6143. if (!locally_generated)
  6144. p2p_disassoc_notif(wpa_s->global->p2p, bssid, reason_code, ie,
  6145. ie_len);
  6146. }
  6147. void wpas_p2p_update_config(struct wpa_supplicant *wpa_s)
  6148. {
  6149. struct p2p_data *p2p = wpa_s->global->p2p;
  6150. if (p2p == NULL)
  6151. return;
  6152. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
  6153. return;
  6154. if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_NAME)
  6155. p2p_set_dev_name(p2p, wpa_s->conf->device_name);
  6156. if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_TYPE)
  6157. p2p_set_pri_dev_type(p2p, wpa_s->conf->device_type);
  6158. if (wpa_s->wps &&
  6159. (wpa_s->conf->changed_parameters & CFG_CHANGED_CONFIG_METHODS))
  6160. p2p_set_config_methods(p2p, wpa_s->wps->config_methods);
  6161. if (wpa_s->wps && (wpa_s->conf->changed_parameters & CFG_CHANGED_UUID))
  6162. p2p_set_uuid(p2p, wpa_s->wps->uuid);
  6163. if (wpa_s->conf->changed_parameters & CFG_CHANGED_WPS_STRING) {
  6164. p2p_set_manufacturer(p2p, wpa_s->conf->manufacturer);
  6165. p2p_set_model_name(p2p, wpa_s->conf->model_name);
  6166. p2p_set_model_number(p2p, wpa_s->conf->model_number);
  6167. p2p_set_serial_number(p2p, wpa_s->conf->serial_number);
  6168. }
  6169. if (wpa_s->conf->changed_parameters & CFG_CHANGED_SEC_DEVICE_TYPE)
  6170. p2p_set_sec_dev_types(p2p,
  6171. (void *) wpa_s->conf->sec_device_type,
  6172. wpa_s->conf->num_sec_device_types);
  6173. if (wpa_s->conf->changed_parameters & CFG_CHANGED_VENDOR_EXTENSION) {
  6174. int i;
  6175. p2p_remove_wps_vendor_extensions(p2p);
  6176. for (i = 0; i < MAX_WPS_VENDOR_EXT; i++) {
  6177. if (wpa_s->conf->wps_vendor_ext[i] == NULL)
  6178. continue;
  6179. p2p_add_wps_vendor_extension(
  6180. p2p, wpa_s->conf->wps_vendor_ext[i]);
  6181. }
  6182. }
  6183. if ((wpa_s->conf->changed_parameters & CFG_CHANGED_COUNTRY) &&
  6184. wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
  6185. char country[3];
  6186. country[0] = wpa_s->conf->country[0];
  6187. country[1] = wpa_s->conf->country[1];
  6188. country[2] = 0x04;
  6189. p2p_set_country(p2p, country);
  6190. }
  6191. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_SSID_POSTFIX) {
  6192. p2p_set_ssid_postfix(p2p, (u8 *) wpa_s->conf->p2p_ssid_postfix,
  6193. wpa_s->conf->p2p_ssid_postfix ?
  6194. os_strlen(wpa_s->conf->p2p_ssid_postfix) :
  6195. 0);
  6196. }
  6197. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_INTRA_BSS)
  6198. p2p_set_intra_bss_dist(p2p, wpa_s->conf->p2p_intra_bss);
  6199. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_LISTEN_CHANNEL) {
  6200. u8 reg_class, channel;
  6201. int ret;
  6202. unsigned int r;
  6203. u8 channel_forced;
  6204. if (wpa_s->conf->p2p_listen_reg_class &&
  6205. wpa_s->conf->p2p_listen_channel) {
  6206. reg_class = wpa_s->conf->p2p_listen_reg_class;
  6207. channel = wpa_s->conf->p2p_listen_channel;
  6208. channel_forced = 1;
  6209. } else {
  6210. reg_class = 81;
  6211. /*
  6212. * Pick one of the social channels randomly as the
  6213. * listen channel.
  6214. */
  6215. if (os_get_random((u8 *) &r, sizeof(r)) < 0)
  6216. channel = 1;
  6217. else
  6218. channel = 1 + (r % 3) * 5;
  6219. channel_forced = 0;
  6220. }
  6221. ret = p2p_set_listen_channel(p2p, reg_class, channel,
  6222. channel_forced);
  6223. if (ret)
  6224. wpa_printf(MSG_ERROR, "P2P: Own listen channel update "
  6225. "failed: %d", ret);
  6226. }
  6227. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_OPER_CHANNEL) {
  6228. u8 op_reg_class, op_channel, cfg_op_channel;
  6229. int ret = 0;
  6230. unsigned int r;
  6231. if (wpa_s->conf->p2p_oper_reg_class &&
  6232. wpa_s->conf->p2p_oper_channel) {
  6233. op_reg_class = wpa_s->conf->p2p_oper_reg_class;
  6234. op_channel = wpa_s->conf->p2p_oper_channel;
  6235. cfg_op_channel = 1;
  6236. } else {
  6237. op_reg_class = 81;
  6238. /*
  6239. * Use random operation channel from (1, 6, 11)
  6240. *if no other preference is indicated.
  6241. */
  6242. if (os_get_random((u8 *) &r, sizeof(r)) < 0)
  6243. op_channel = 1;
  6244. else
  6245. op_channel = 1 + (r % 3) * 5;
  6246. cfg_op_channel = 0;
  6247. }
  6248. ret = p2p_set_oper_channel(p2p, op_reg_class, op_channel,
  6249. cfg_op_channel);
  6250. if (ret)
  6251. wpa_printf(MSG_ERROR, "P2P: Own oper channel update "
  6252. "failed: %d", ret);
  6253. }
  6254. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_PREF_CHAN) {
  6255. if (p2p_set_pref_chan(p2p, wpa_s->conf->num_p2p_pref_chan,
  6256. wpa_s->conf->p2p_pref_chan) < 0) {
  6257. wpa_printf(MSG_ERROR, "P2P: Preferred channel list "
  6258. "update failed");
  6259. }
  6260. if (p2p_set_no_go_freq(p2p, &wpa_s->conf->p2p_no_go_freq) < 0) {
  6261. wpa_printf(MSG_ERROR, "P2P: No GO channel list "
  6262. "update failed");
  6263. }
  6264. }
  6265. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_PASSPHRASE_LEN)
  6266. p2p_set_passphrase_len(p2p, wpa_s->conf->p2p_passphrase_len);
  6267. }
  6268. int wpas_p2p_set_noa(struct wpa_supplicant *wpa_s, u8 count, int start,
  6269. int duration)
  6270. {
  6271. if (!wpa_s->ap_iface)
  6272. return -1;
  6273. return hostapd_p2p_set_noa(wpa_s->ap_iface->bss[0], count, start,
  6274. duration);
  6275. }
  6276. int wpas_p2p_set_cross_connect(struct wpa_supplicant *wpa_s, int enabled)
  6277. {
  6278. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  6279. return -1;
  6280. wpa_s->global->cross_connection = enabled;
  6281. p2p_set_cross_connect(wpa_s->global->p2p, enabled);
  6282. if (!enabled) {
  6283. struct wpa_supplicant *iface;
  6284. for (iface = wpa_s->global->ifaces; iface; iface = iface->next)
  6285. {
  6286. if (iface->cross_connect_enabled == 0)
  6287. continue;
  6288. iface->cross_connect_enabled = 0;
  6289. iface->cross_connect_in_use = 0;
  6290. wpa_msg_global(iface->p2pdev, MSG_INFO,
  6291. P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
  6292. iface->ifname,
  6293. iface->cross_connect_uplink);
  6294. }
  6295. }
  6296. return 0;
  6297. }
  6298. static void wpas_p2p_enable_cross_connect(struct wpa_supplicant *uplink)
  6299. {
  6300. struct wpa_supplicant *iface;
  6301. if (!uplink->global->cross_connection)
  6302. return;
  6303. for (iface = uplink->global->ifaces; iface; iface = iface->next) {
  6304. if (!iface->cross_connect_enabled)
  6305. continue;
  6306. if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
  6307. 0)
  6308. continue;
  6309. if (iface->ap_iface == NULL)
  6310. continue;
  6311. if (iface->cross_connect_in_use)
  6312. continue;
  6313. iface->cross_connect_in_use = 1;
  6314. wpa_msg_global(iface->p2pdev, MSG_INFO,
  6315. P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
  6316. iface->ifname, iface->cross_connect_uplink);
  6317. }
  6318. }
  6319. static void wpas_p2p_disable_cross_connect(struct wpa_supplicant *uplink)
  6320. {
  6321. struct wpa_supplicant *iface;
  6322. for (iface = uplink->global->ifaces; iface; iface = iface->next) {
  6323. if (!iface->cross_connect_enabled)
  6324. continue;
  6325. if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
  6326. 0)
  6327. continue;
  6328. if (!iface->cross_connect_in_use)
  6329. continue;
  6330. wpa_msg_global(iface->p2pdev, MSG_INFO,
  6331. P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
  6332. iface->ifname, iface->cross_connect_uplink);
  6333. iface->cross_connect_in_use = 0;
  6334. }
  6335. }
  6336. void wpas_p2p_notif_connected(struct wpa_supplicant *wpa_s)
  6337. {
  6338. if (wpa_s->ap_iface || wpa_s->current_ssid == NULL ||
  6339. wpa_s->current_ssid->mode != WPAS_MODE_INFRA ||
  6340. wpa_s->cross_connect_disallowed)
  6341. wpas_p2p_disable_cross_connect(wpa_s);
  6342. else
  6343. wpas_p2p_enable_cross_connect(wpa_s);
  6344. if (!wpa_s->ap_iface &&
  6345. eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
  6346. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
  6347. }
  6348. void wpas_p2p_notif_disconnected(struct wpa_supplicant *wpa_s)
  6349. {
  6350. wpas_p2p_disable_cross_connect(wpa_s);
  6351. if (!wpa_s->ap_iface &&
  6352. !eloop_is_timeout_registered(wpas_p2p_group_idle_timeout,
  6353. wpa_s, NULL))
  6354. wpas_p2p_set_group_idle_timeout(wpa_s);
  6355. }
  6356. static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s)
  6357. {
  6358. struct wpa_supplicant *iface;
  6359. if (!wpa_s->global->cross_connection)
  6360. return;
  6361. for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
  6362. if (iface == wpa_s)
  6363. continue;
  6364. if (iface->drv_flags &
  6365. WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE)
  6366. continue;
  6367. if ((iface->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE) &&
  6368. iface != wpa_s->parent)
  6369. continue;
  6370. wpa_s->cross_connect_enabled = 1;
  6371. os_strlcpy(wpa_s->cross_connect_uplink, iface->ifname,
  6372. sizeof(wpa_s->cross_connect_uplink));
  6373. wpa_printf(MSG_DEBUG, "P2P: Enable cross connection from "
  6374. "%s to %s whenever uplink is available",
  6375. wpa_s->ifname, wpa_s->cross_connect_uplink);
  6376. if (iface->ap_iface || iface->current_ssid == NULL ||
  6377. iface->current_ssid->mode != WPAS_MODE_INFRA ||
  6378. iface->cross_connect_disallowed ||
  6379. iface->wpa_state != WPA_COMPLETED)
  6380. break;
  6381. wpa_s->cross_connect_in_use = 1;
  6382. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  6383. P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
  6384. wpa_s->ifname, wpa_s->cross_connect_uplink);
  6385. break;
  6386. }
  6387. }
  6388. int wpas_p2p_notif_pbc_overlap(struct wpa_supplicant *wpa_s)
  6389. {
  6390. if (wpa_s->p2p_group_interface != P2P_GROUP_INTERFACE_CLIENT &&
  6391. !wpa_s->p2p_in_provisioning)
  6392. return 0; /* not P2P client operation */
  6393. wpa_printf(MSG_DEBUG, "P2P: Terminate connection due to WPS PBC "
  6394. "session overlap");
  6395. if (wpa_s != wpa_s->p2pdev)
  6396. wpa_msg_ctrl(wpa_s->p2pdev, MSG_INFO, WPS_EVENT_OVERLAP);
  6397. wpas_p2p_group_formation_failed(wpa_s, 0);
  6398. return 1;
  6399. }
  6400. void wpas_p2p_pbc_overlap_cb(void *eloop_ctx, void *timeout_ctx)
  6401. {
  6402. struct wpa_supplicant *wpa_s = eloop_ctx;
  6403. wpas_p2p_notif_pbc_overlap(wpa_s);
  6404. }
  6405. void wpas_p2p_update_channel_list(struct wpa_supplicant *wpa_s,
  6406. enum wpas_p2p_channel_update_trig trig)
  6407. {
  6408. struct p2p_channels chan, cli_chan;
  6409. struct wpa_used_freq_data *freqs = NULL;
  6410. unsigned int num = wpa_s->num_multichan_concurrent;
  6411. if (wpa_s->global == NULL || wpa_s->global->p2p == NULL)
  6412. return;
  6413. freqs = os_calloc(num, sizeof(struct wpa_used_freq_data));
  6414. if (!freqs)
  6415. return;
  6416. num = get_shared_radio_freqs_data(wpa_s, freqs, num);
  6417. os_memset(&chan, 0, sizeof(chan));
  6418. os_memset(&cli_chan, 0, sizeof(cli_chan));
  6419. if (wpas_p2p_setup_channels(wpa_s, &chan, &cli_chan)) {
  6420. wpa_printf(MSG_ERROR, "P2P: Failed to update supported "
  6421. "channel list");
  6422. return;
  6423. }
  6424. p2p_update_channel_list(wpa_s->global->p2p, &chan, &cli_chan);
  6425. wpas_p2p_optimize_listen_channel(wpa_s, freqs, num);
  6426. /*
  6427. * The used frequencies map changed, so it is possible that a GO is
  6428. * using a channel that is no longer valid for P2P use. It is also
  6429. * possible that due to policy consideration, it would be preferable to
  6430. * move it to a frequency already used by other station interfaces.
  6431. */
  6432. wpas_p2p_consider_moving_gos(wpa_s, freqs, num, trig);
  6433. os_free(freqs);
  6434. }
  6435. static void wpas_p2p_scan_res_ignore(struct wpa_supplicant *wpa_s,
  6436. struct wpa_scan_results *scan_res)
  6437. {
  6438. wpa_printf(MSG_DEBUG, "P2P: Ignore scan results");
  6439. }
  6440. int wpas_p2p_cancel(struct wpa_supplicant *wpa_s)
  6441. {
  6442. struct wpa_global *global = wpa_s->global;
  6443. int found = 0;
  6444. const u8 *peer;
  6445. if (global->p2p == NULL)
  6446. return -1;
  6447. wpa_printf(MSG_DEBUG, "P2P: Request to cancel group formation");
  6448. if (wpa_s->pending_interface_name[0] &&
  6449. !is_zero_ether_addr(wpa_s->pending_interface_addr))
  6450. found = 1;
  6451. peer = p2p_get_go_neg_peer(global->p2p);
  6452. if (peer) {
  6453. wpa_printf(MSG_DEBUG, "P2P: Unauthorize pending GO Neg peer "
  6454. MACSTR, MAC2STR(peer));
  6455. p2p_unauthorize(global->p2p, peer);
  6456. found = 1;
  6457. }
  6458. if (wpa_s->scan_res_handler == wpas_p2p_scan_res_join) {
  6459. wpa_printf(MSG_DEBUG, "P2P: Stop pending scan for join");
  6460. wpa_s->scan_res_handler = wpas_p2p_scan_res_ignore;
  6461. found = 1;
  6462. }
  6463. if (wpa_s->pending_pd_before_join) {
  6464. wpa_printf(MSG_DEBUG, "P2P: Stop pending PD before join");
  6465. wpa_s->pending_pd_before_join = 0;
  6466. found = 1;
  6467. }
  6468. wpas_p2p_stop_find(wpa_s);
  6469. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  6470. if (wpa_s == global->p2p_group_formation &&
  6471. (wpa_s->p2p_in_provisioning ||
  6472. wpa_s->parent->pending_interface_type ==
  6473. WPA_IF_P2P_CLIENT)) {
  6474. wpa_printf(MSG_DEBUG, "P2P: Interface %s in group "
  6475. "formation found - cancelling",
  6476. wpa_s->ifname);
  6477. found = 1;
  6478. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  6479. wpa_s->p2pdev, NULL);
  6480. if (wpa_s->p2p_in_provisioning) {
  6481. wpas_group_formation_completed(wpa_s, 0, 0);
  6482. break;
  6483. }
  6484. wpas_p2p_group_delete(wpa_s,
  6485. P2P_GROUP_REMOVAL_REQUESTED);
  6486. break;
  6487. } else if (wpa_s->p2p_in_invitation) {
  6488. wpa_printf(MSG_DEBUG, "P2P: Interface %s in invitation found - cancelling",
  6489. wpa_s->ifname);
  6490. found = 1;
  6491. wpas_p2p_group_formation_failed(wpa_s, 0);
  6492. break;
  6493. }
  6494. }
  6495. if (!found) {
  6496. wpa_printf(MSG_DEBUG, "P2P: No ongoing group formation found");
  6497. return -1;
  6498. }
  6499. return 0;
  6500. }
  6501. void wpas_p2p_interface_unavailable(struct wpa_supplicant *wpa_s)
  6502. {
  6503. if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
  6504. return;
  6505. wpa_printf(MSG_DEBUG, "P2P: Remove group due to driver resource not "
  6506. "being available anymore");
  6507. wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_UNAVAILABLE);
  6508. }
  6509. void wpas_p2p_update_best_channels(struct wpa_supplicant *wpa_s,
  6510. int freq_24, int freq_5, int freq_overall)
  6511. {
  6512. struct p2p_data *p2p = wpa_s->global->p2p;
  6513. if (p2p == NULL)
  6514. return;
  6515. p2p_set_best_channels(p2p, freq_24, freq_5, freq_overall);
  6516. }
  6517. int wpas_p2p_unauthorize(struct wpa_supplicant *wpa_s, const char *addr)
  6518. {
  6519. u8 peer[ETH_ALEN];
  6520. struct p2p_data *p2p = wpa_s->global->p2p;
  6521. if (p2p == NULL)
  6522. return -1;
  6523. if (hwaddr_aton(addr, peer))
  6524. return -1;
  6525. return p2p_unauthorize(p2p, peer);
  6526. }
  6527. /**
  6528. * wpas_p2p_disconnect - Disconnect from a P2P Group
  6529. * @wpa_s: Pointer to wpa_supplicant data
  6530. * Returns: 0 on success, -1 on failure
  6531. *
  6532. * This can be used to disconnect from a group in which the local end is a P2P
  6533. * Client or to end a P2P Group in case the local end is the Group Owner. If a
  6534. * virtual network interface was created for this group, that interface will be
  6535. * removed. Otherwise, only the configured P2P group network will be removed
  6536. * from the interface.
  6537. */
  6538. int wpas_p2p_disconnect(struct wpa_supplicant *wpa_s)
  6539. {
  6540. if (wpa_s == NULL)
  6541. return -1;
  6542. return wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_REQUESTED) < 0 ?
  6543. -1 : 0;
  6544. }
  6545. int wpas_p2p_in_progress(struct wpa_supplicant *wpa_s)
  6546. {
  6547. int ret;
  6548. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  6549. return 0;
  6550. ret = p2p_in_progress(wpa_s->global->p2p);
  6551. if (ret == 0) {
  6552. /*
  6553. * Check whether there is an ongoing WPS provisioning step (or
  6554. * other parts of group formation) on another interface since
  6555. * p2p_in_progress() does not report this to avoid issues for
  6556. * scans during such provisioning step.
  6557. */
  6558. if (wpa_s->global->p2p_group_formation &&
  6559. wpa_s->global->p2p_group_formation != wpa_s) {
  6560. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Another interface (%s) "
  6561. "in group formation",
  6562. wpa_s->global->p2p_group_formation->ifname);
  6563. ret = 1;
  6564. }
  6565. }
  6566. if (!ret && wpa_s->global->p2p_go_wait_client.sec) {
  6567. struct os_reltime now;
  6568. os_get_reltime(&now);
  6569. if (os_reltime_expired(&now, &wpa_s->global->p2p_go_wait_client,
  6570. P2P_MAX_INITIAL_CONN_WAIT_GO)) {
  6571. /* Wait for the first client has expired */
  6572. wpa_s->global->p2p_go_wait_client.sec = 0;
  6573. } else {
  6574. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Waiting for initial client connection during group formation");
  6575. ret = 1;
  6576. }
  6577. }
  6578. return ret;
  6579. }
  6580. void wpas_p2p_network_removed(struct wpa_supplicant *wpa_s,
  6581. struct wpa_ssid *ssid)
  6582. {
  6583. if (wpa_s->p2p_in_provisioning && ssid->p2p_group &&
  6584. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  6585. wpa_s->p2pdev, NULL) > 0) {
  6586. /**
  6587. * Remove the network by scheduling the group formation
  6588. * timeout to happen immediately. The teardown code
  6589. * needs to be scheduled to run asynch later so that we
  6590. * don't delete data from under ourselves unexpectedly.
  6591. * Calling wpas_p2p_group_formation_timeout directly
  6592. * causes a series of crashes in WPS failure scenarios.
  6593. */
  6594. wpa_printf(MSG_DEBUG, "P2P: Canceled group formation due to "
  6595. "P2P group network getting removed");
  6596. eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
  6597. wpa_s->p2pdev, NULL);
  6598. }
  6599. }
  6600. struct wpa_ssid * wpas_p2p_get_persistent(struct wpa_supplicant *wpa_s,
  6601. const u8 *addr, const u8 *ssid,
  6602. size_t ssid_len)
  6603. {
  6604. struct wpa_ssid *s;
  6605. size_t i;
  6606. for (s = wpa_s->conf->ssid; s; s = s->next) {
  6607. if (s->disabled != 2)
  6608. continue;
  6609. if (ssid &&
  6610. (ssid_len != s->ssid_len ||
  6611. os_memcmp(ssid, s->ssid, ssid_len) != 0))
  6612. continue;
  6613. if (addr == NULL) {
  6614. if (s->mode == WPAS_MODE_P2P_GO)
  6615. return s;
  6616. continue;
  6617. }
  6618. if (os_memcmp(s->bssid, addr, ETH_ALEN) == 0)
  6619. return s; /* peer is GO in the persistent group */
  6620. if (s->mode != WPAS_MODE_P2P_GO || s->p2p_client_list == NULL)
  6621. continue;
  6622. for (i = 0; i < s->num_p2p_clients; i++) {
  6623. if (os_memcmp(s->p2p_client_list + i * 2 * ETH_ALEN,
  6624. addr, ETH_ALEN) == 0)
  6625. return s; /* peer is P2P client in persistent
  6626. * group */
  6627. }
  6628. }
  6629. return NULL;
  6630. }
  6631. void wpas_p2p_notify_ap_sta_authorized(struct wpa_supplicant *wpa_s,
  6632. const u8 *addr)
  6633. {
  6634. if (eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  6635. wpa_s->p2pdev, NULL) > 0) {
  6636. /*
  6637. * This can happen if WPS provisioning step is not terminated
  6638. * cleanly (e.g., P2P Client does not send WSC_Done). Since the
  6639. * peer was able to connect, there is no need to time out group
  6640. * formation after this, though. In addition, this is used with
  6641. * the initial connection wait on the GO as a separate formation
  6642. * timeout and as such, expected to be hit after the initial WPS
  6643. * provisioning step.
  6644. */
  6645. wpa_printf(MSG_DEBUG, "P2P: Canceled P2P group formation timeout on data connection");
  6646. if (!wpa_s->p2p_go_group_formation_completed &&
  6647. !wpa_s->group_formation_reported) {
  6648. /*
  6649. * GO has not yet notified group formation success since
  6650. * the WPS step was not completed cleanly. Do that
  6651. * notification now since the P2P Client was able to
  6652. * connect and as such, must have received the
  6653. * credential from the WPS step.
  6654. */
  6655. if (wpa_s->global->p2p)
  6656. p2p_wps_success_cb(wpa_s->global->p2p, addr);
  6657. wpas_group_formation_completed(wpa_s, 1, 0);
  6658. }
  6659. }
  6660. if (!wpa_s->p2p_go_group_formation_completed) {
  6661. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Marking group formation completed on GO on first data connection");
  6662. wpa_s->p2p_go_group_formation_completed = 1;
  6663. wpa_s->global->p2p_group_formation = NULL;
  6664. wpa_s->p2p_in_provisioning = 0;
  6665. wpa_s->p2p_in_invitation = 0;
  6666. }
  6667. wpa_s->global->p2p_go_wait_client.sec = 0;
  6668. if (addr == NULL)
  6669. return;
  6670. wpas_p2p_add_persistent_group_client(wpa_s, addr);
  6671. }
  6672. static int wpas_p2p_fallback_to_go_neg(struct wpa_supplicant *wpa_s,
  6673. int group_added)
  6674. {
  6675. struct wpa_supplicant *group = wpa_s;
  6676. int ret = 0;
  6677. if (wpa_s->global->p2p_group_formation)
  6678. group = wpa_s->global->p2p_group_formation;
  6679. wpa_s = wpa_s->global->p2p_init_wpa_s;
  6680. offchannel_send_action_done(wpa_s);
  6681. if (group_added)
  6682. ret = wpas_p2p_group_delete(group, P2P_GROUP_REMOVAL_SILENT);
  6683. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Fall back to GO Negotiation");
  6684. wpas_p2p_connect(wpa_s, wpa_s->pending_join_dev_addr, wpa_s->p2p_pin,
  6685. wpa_s->p2p_wps_method, wpa_s->p2p_persistent_group, 0,
  6686. 0, 0, wpa_s->p2p_go_intent, wpa_s->p2p_connect_freq,
  6687. wpa_s->p2p_go_vht_center_freq2,
  6688. wpa_s->p2p_persistent_id,
  6689. wpa_s->p2p_pd_before_go_neg,
  6690. wpa_s->p2p_go_ht40,
  6691. wpa_s->p2p_go_vht,
  6692. wpa_s->p2p_go_max_oper_chwidth, NULL, 0);
  6693. return ret;
  6694. }
  6695. int wpas_p2p_scan_no_go_seen(struct wpa_supplicant *wpa_s)
  6696. {
  6697. int res;
  6698. if (!wpa_s->p2p_fallback_to_go_neg ||
  6699. wpa_s->p2p_in_provisioning <= 5)
  6700. return 0;
  6701. if (wpas_p2p_peer_go(wpa_s, wpa_s->pending_join_dev_addr) > 0)
  6702. return 0; /* peer operating as a GO */
  6703. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: GO not found for p2p_connect-auto - "
  6704. "fallback to GO Negotiation");
  6705. wpa_msg_global(wpa_s->p2pdev, MSG_INFO, P2P_EVENT_FALLBACK_TO_GO_NEG
  6706. "reason=GO-not-found");
  6707. res = wpas_p2p_fallback_to_go_neg(wpa_s, 1);
  6708. return res == 1 ? 2 : 1;
  6709. }
  6710. unsigned int wpas_p2p_search_delay(struct wpa_supplicant *wpa_s)
  6711. {
  6712. struct wpa_supplicant *ifs;
  6713. if (wpa_s->wpa_state > WPA_SCANNING) {
  6714. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use %u ms search delay due to "
  6715. "concurrent operation",
  6716. wpa_s->conf->p2p_search_delay);
  6717. return wpa_s->conf->p2p_search_delay;
  6718. }
  6719. dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
  6720. radio_list) {
  6721. if (ifs != wpa_s && ifs->wpa_state > WPA_SCANNING) {
  6722. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use %u ms search "
  6723. "delay due to concurrent operation on "
  6724. "interface %s",
  6725. wpa_s->conf->p2p_search_delay,
  6726. ifs->ifname);
  6727. return wpa_s->conf->p2p_search_delay;
  6728. }
  6729. }
  6730. return 0;
  6731. }
  6732. static int wpas_p2p_remove_psk_entry(struct wpa_supplicant *wpa_s,
  6733. struct wpa_ssid *s, const u8 *addr,
  6734. int iface_addr)
  6735. {
  6736. struct psk_list_entry *psk, *tmp;
  6737. int changed = 0;
  6738. dl_list_for_each_safe(psk, tmp, &s->psk_list, struct psk_list_entry,
  6739. list) {
  6740. if ((iface_addr && !psk->p2p &&
  6741. os_memcmp(addr, psk->addr, ETH_ALEN) == 0) ||
  6742. (!iface_addr && psk->p2p &&
  6743. os_memcmp(addr, psk->addr, ETH_ALEN) == 0)) {
  6744. wpa_dbg(wpa_s, MSG_DEBUG,
  6745. "P2P: Remove persistent group PSK list entry for "
  6746. MACSTR " p2p=%u",
  6747. MAC2STR(psk->addr), psk->p2p);
  6748. dl_list_del(&psk->list);
  6749. os_free(psk);
  6750. changed++;
  6751. }
  6752. }
  6753. return changed;
  6754. }
  6755. void wpas_p2p_new_psk_cb(struct wpa_supplicant *wpa_s, const u8 *mac_addr,
  6756. const u8 *p2p_dev_addr,
  6757. const u8 *psk, size_t psk_len)
  6758. {
  6759. struct wpa_ssid *ssid = wpa_s->current_ssid;
  6760. struct wpa_ssid *persistent;
  6761. struct psk_list_entry *p, *last;
  6762. if (psk_len != sizeof(p->psk))
  6763. return;
  6764. if (p2p_dev_addr) {
  6765. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New PSK for addr=" MACSTR
  6766. " p2p_dev_addr=" MACSTR,
  6767. MAC2STR(mac_addr), MAC2STR(p2p_dev_addr));
  6768. if (is_zero_ether_addr(p2p_dev_addr))
  6769. p2p_dev_addr = NULL;
  6770. } else {
  6771. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New PSK for addr=" MACSTR,
  6772. MAC2STR(mac_addr));
  6773. }
  6774. if (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
  6775. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: new_psk_cb during group formation");
  6776. /* To be added to persistent group once created */
  6777. if (wpa_s->global->add_psk == NULL) {
  6778. wpa_s->global->add_psk = os_zalloc(sizeof(*p));
  6779. if (wpa_s->global->add_psk == NULL)
  6780. return;
  6781. }
  6782. p = wpa_s->global->add_psk;
  6783. if (p2p_dev_addr) {
  6784. p->p2p = 1;
  6785. os_memcpy(p->addr, p2p_dev_addr, ETH_ALEN);
  6786. } else {
  6787. p->p2p = 0;
  6788. os_memcpy(p->addr, mac_addr, ETH_ALEN);
  6789. }
  6790. os_memcpy(p->psk, psk, psk_len);
  6791. return;
  6792. }
  6793. if (ssid->mode != WPAS_MODE_P2P_GO || !ssid->p2p_persistent_group) {
  6794. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Ignore new_psk_cb on not-persistent GO");
  6795. return;
  6796. }
  6797. persistent = wpas_p2p_get_persistent(wpa_s->p2pdev, NULL, ssid->ssid,
  6798. ssid->ssid_len);
  6799. if (!persistent) {
  6800. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not find persistent group information to store the new PSK");
  6801. return;
  6802. }
  6803. p = os_zalloc(sizeof(*p));
  6804. if (p == NULL)
  6805. return;
  6806. if (p2p_dev_addr) {
  6807. p->p2p = 1;
  6808. os_memcpy(p->addr, p2p_dev_addr, ETH_ALEN);
  6809. } else {
  6810. p->p2p = 0;
  6811. os_memcpy(p->addr, mac_addr, ETH_ALEN);
  6812. }
  6813. os_memcpy(p->psk, psk, psk_len);
  6814. if (dl_list_len(&persistent->psk_list) > P2P_MAX_STORED_CLIENTS &&
  6815. (last = dl_list_last(&persistent->psk_list,
  6816. struct psk_list_entry, list))) {
  6817. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove oldest PSK entry for "
  6818. MACSTR " (p2p=%u) to make room for a new one",
  6819. MAC2STR(last->addr), last->p2p);
  6820. dl_list_del(&last->list);
  6821. os_free(last);
  6822. }
  6823. wpas_p2p_remove_psk_entry(wpa_s->p2pdev, persistent,
  6824. p2p_dev_addr ? p2p_dev_addr : mac_addr,
  6825. p2p_dev_addr == NULL);
  6826. if (p2p_dev_addr) {
  6827. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add new PSK for p2p_dev_addr="
  6828. MACSTR, MAC2STR(p2p_dev_addr));
  6829. } else {
  6830. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add new PSK for addr=" MACSTR,
  6831. MAC2STR(mac_addr));
  6832. }
  6833. dl_list_add(&persistent->psk_list, &p->list);
  6834. if (wpa_s->p2pdev->conf->update_config &&
  6835. wpa_config_write(wpa_s->p2pdev->confname, wpa_s->p2pdev->conf))
  6836. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  6837. }
  6838. static void wpas_p2p_remove_psk(struct wpa_supplicant *wpa_s,
  6839. struct wpa_ssid *s, const u8 *addr,
  6840. int iface_addr)
  6841. {
  6842. int res;
  6843. res = wpas_p2p_remove_psk_entry(wpa_s, s, addr, iface_addr);
  6844. if (res > 0 && wpa_s->conf->update_config &&
  6845. wpa_config_write(wpa_s->confname, wpa_s->conf))
  6846. wpa_dbg(wpa_s, MSG_DEBUG,
  6847. "P2P: Failed to update configuration");
  6848. }
  6849. static void wpas_p2p_remove_client_go(struct wpa_supplicant *wpa_s,
  6850. const u8 *peer, int iface_addr)
  6851. {
  6852. struct hostapd_data *hapd;
  6853. struct hostapd_wpa_psk *psk, *prev, *rem;
  6854. struct sta_info *sta;
  6855. if (wpa_s->ap_iface == NULL || wpa_s->current_ssid == NULL ||
  6856. wpa_s->current_ssid->mode != WPAS_MODE_P2P_GO)
  6857. return;
  6858. /* Remove per-station PSK entry */
  6859. hapd = wpa_s->ap_iface->bss[0];
  6860. prev = NULL;
  6861. psk = hapd->conf->ssid.wpa_psk;
  6862. while (psk) {
  6863. if ((iface_addr && os_memcmp(peer, psk->addr, ETH_ALEN) == 0) ||
  6864. (!iface_addr &&
  6865. os_memcmp(peer, psk->p2p_dev_addr, ETH_ALEN) == 0)) {
  6866. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove operating group PSK entry for "
  6867. MACSTR " iface_addr=%d",
  6868. MAC2STR(peer), iface_addr);
  6869. if (prev)
  6870. prev->next = psk->next;
  6871. else
  6872. hapd->conf->ssid.wpa_psk = psk->next;
  6873. rem = psk;
  6874. psk = psk->next;
  6875. os_free(rem);
  6876. } else {
  6877. prev = psk;
  6878. psk = psk->next;
  6879. }
  6880. }
  6881. /* Disconnect from group */
  6882. if (iface_addr)
  6883. sta = ap_get_sta(hapd, peer);
  6884. else
  6885. sta = ap_get_sta_p2p(hapd, peer);
  6886. if (sta) {
  6887. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Disconnect peer " MACSTR
  6888. " (iface_addr=%d) from group",
  6889. MAC2STR(peer), iface_addr);
  6890. hostapd_drv_sta_deauth(hapd, sta->addr,
  6891. WLAN_REASON_DEAUTH_LEAVING);
  6892. ap_sta_deauthenticate(hapd, sta, WLAN_REASON_DEAUTH_LEAVING);
  6893. }
  6894. }
  6895. void wpas_p2p_remove_client(struct wpa_supplicant *wpa_s, const u8 *peer,
  6896. int iface_addr)
  6897. {
  6898. struct wpa_ssid *s;
  6899. struct wpa_supplicant *w;
  6900. struct wpa_supplicant *p2p_wpa_s = wpa_s->global->p2p_init_wpa_s;
  6901. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove client " MACSTR, MAC2STR(peer));
  6902. /* Remove from any persistent group */
  6903. for (s = p2p_wpa_s->conf->ssid; s; s = s->next) {
  6904. if (s->disabled != 2 || s->mode != WPAS_MODE_P2P_GO)
  6905. continue;
  6906. if (!iface_addr)
  6907. wpas_remove_persistent_peer(p2p_wpa_s, s, peer, 0);
  6908. wpas_p2p_remove_psk(p2p_wpa_s, s, peer, iface_addr);
  6909. }
  6910. /* Remove from any operating group */
  6911. for (w = wpa_s->global->ifaces; w; w = w->next)
  6912. wpas_p2p_remove_client_go(w, peer, iface_addr);
  6913. }
  6914. static void wpas_p2p_psk_failure_removal(void *eloop_ctx, void *timeout_ctx)
  6915. {
  6916. struct wpa_supplicant *wpa_s = eloop_ctx;
  6917. wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_PSK_FAILURE);
  6918. }
  6919. static void wpas_p2p_group_freq_conflict(void *eloop_ctx, void *timeout_ctx)
  6920. {
  6921. struct wpa_supplicant *wpa_s = eloop_ctx;
  6922. wpa_printf(MSG_DEBUG, "P2P: Frequency conflict - terminate group");
  6923. wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_FREQ_CONFLICT);
  6924. }
  6925. int wpas_p2p_handle_frequency_conflicts(struct wpa_supplicant *wpa_s, int freq,
  6926. struct wpa_ssid *ssid)
  6927. {
  6928. struct wpa_supplicant *iface;
  6929. for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
  6930. if (!iface->current_ssid ||
  6931. iface->current_ssid->frequency == freq ||
  6932. (iface->p2p_group_interface == NOT_P2P_GROUP_INTERFACE &&
  6933. !iface->current_ssid->p2p_group))
  6934. continue;
  6935. /* Remove the connection with least priority */
  6936. if (!wpas_is_p2p_prioritized(iface)) {
  6937. /* STA connection has priority over existing
  6938. * P2P connection, so remove the interface. */
  6939. wpa_printf(MSG_DEBUG, "P2P: Removing P2P connection due to single channel concurrent mode frequency conflict");
  6940. eloop_register_timeout(0, 0,
  6941. wpas_p2p_group_freq_conflict,
  6942. iface, NULL);
  6943. /* If connection in progress is P2P connection, do not
  6944. * proceed for the connection. */
  6945. if (wpa_s == iface)
  6946. return -1;
  6947. else
  6948. return 0;
  6949. } else {
  6950. /* P2P connection has priority, disable the STA network
  6951. */
  6952. wpa_supplicant_disable_network(wpa_s->global->ifaces,
  6953. ssid);
  6954. wpa_msg(wpa_s->global->ifaces, MSG_INFO,
  6955. WPA_EVENT_FREQ_CONFLICT " id=%d", ssid->id);
  6956. os_memset(wpa_s->global->ifaces->pending_bssid, 0,
  6957. ETH_ALEN);
  6958. /* If P2P connection is in progress, continue
  6959. * connecting...*/
  6960. if (wpa_s == iface)
  6961. return 0;
  6962. else
  6963. return -1;
  6964. }
  6965. }
  6966. return 0;
  6967. }
  6968. int wpas_p2p_4way_hs_failed(struct wpa_supplicant *wpa_s)
  6969. {
  6970. struct wpa_ssid *ssid = wpa_s->current_ssid;
  6971. if (ssid == NULL || !ssid->p2p_group)
  6972. return 0;
  6973. if (wpa_s->p2p_last_4way_hs_fail &&
  6974. wpa_s->p2p_last_4way_hs_fail == ssid) {
  6975. u8 go_dev_addr[ETH_ALEN];
  6976. struct wpa_ssid *persistent;
  6977. if (wpas_p2p_persistent_group(wpa_s, go_dev_addr,
  6978. ssid->ssid,
  6979. ssid->ssid_len) <= 0) {
  6980. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not determine whether 4-way handshake failures were for a persistent group");
  6981. goto disconnect;
  6982. }
  6983. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Two 4-way handshake failures for a P2P group - go_dev_addr="
  6984. MACSTR, MAC2STR(go_dev_addr));
  6985. persistent = wpas_p2p_get_persistent(wpa_s->p2pdev, go_dev_addr,
  6986. ssid->ssid,
  6987. ssid->ssid_len);
  6988. if (persistent == NULL || persistent->mode != WPAS_MODE_INFRA) {
  6989. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No matching persistent group stored");
  6990. goto disconnect;
  6991. }
  6992. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  6993. P2P_EVENT_PERSISTENT_PSK_FAIL "%d",
  6994. persistent->id);
  6995. disconnect:
  6996. wpa_s->p2p_last_4way_hs_fail = NULL;
  6997. /*
  6998. * Remove the group from a timeout to avoid issues with caller
  6999. * continuing to use the interface if this is on a P2P group
  7000. * interface.
  7001. */
  7002. eloop_register_timeout(0, 0, wpas_p2p_psk_failure_removal,
  7003. wpa_s, NULL);
  7004. return 1;
  7005. }
  7006. wpa_s->p2p_last_4way_hs_fail = ssid;
  7007. return 0;
  7008. }
  7009. #ifdef CONFIG_WPS_NFC
  7010. static struct wpabuf * wpas_p2p_nfc_handover(int ndef, struct wpabuf *wsc,
  7011. struct wpabuf *p2p)
  7012. {
  7013. struct wpabuf *ret;
  7014. size_t wsc_len;
  7015. if (p2p == NULL) {
  7016. wpabuf_free(wsc);
  7017. wpa_printf(MSG_DEBUG, "P2P: No p2p buffer for handover");
  7018. return NULL;
  7019. }
  7020. wsc_len = wsc ? wpabuf_len(wsc) : 0;
  7021. ret = wpabuf_alloc(2 + wsc_len + 2 + wpabuf_len(p2p));
  7022. if (ret == NULL) {
  7023. wpabuf_free(wsc);
  7024. wpabuf_free(p2p);
  7025. return NULL;
  7026. }
  7027. wpabuf_put_be16(ret, wsc_len);
  7028. if (wsc)
  7029. wpabuf_put_buf(ret, wsc);
  7030. wpabuf_put_be16(ret, wpabuf_len(p2p));
  7031. wpabuf_put_buf(ret, p2p);
  7032. wpabuf_free(wsc);
  7033. wpabuf_free(p2p);
  7034. wpa_hexdump_buf(MSG_DEBUG,
  7035. "P2P: Generated NFC connection handover message", ret);
  7036. if (ndef && ret) {
  7037. struct wpabuf *tmp;
  7038. tmp = ndef_build_p2p(ret);
  7039. wpabuf_free(ret);
  7040. if (tmp == NULL) {
  7041. wpa_printf(MSG_DEBUG, "P2P: Failed to NDEF encapsulate handover request");
  7042. return NULL;
  7043. }
  7044. ret = tmp;
  7045. }
  7046. return ret;
  7047. }
  7048. static int wpas_p2p_cli_freq(struct wpa_supplicant *wpa_s,
  7049. struct wpa_ssid **ssid, u8 *go_dev_addr)
  7050. {
  7051. struct wpa_supplicant *iface;
  7052. if (go_dev_addr)
  7053. os_memset(go_dev_addr, 0, ETH_ALEN);
  7054. if (ssid)
  7055. *ssid = NULL;
  7056. for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
  7057. if (iface->wpa_state < WPA_ASSOCIATING ||
  7058. iface->current_ssid == NULL || iface->assoc_freq == 0 ||
  7059. !iface->current_ssid->p2p_group ||
  7060. iface->current_ssid->mode != WPAS_MODE_INFRA)
  7061. continue;
  7062. if (ssid)
  7063. *ssid = iface->current_ssid;
  7064. if (go_dev_addr)
  7065. os_memcpy(go_dev_addr, iface->go_dev_addr, ETH_ALEN);
  7066. return iface->assoc_freq;
  7067. }
  7068. return 0;
  7069. }
  7070. struct wpabuf * wpas_p2p_nfc_handover_req(struct wpa_supplicant *wpa_s,
  7071. int ndef)
  7072. {
  7073. struct wpabuf *wsc, *p2p;
  7074. struct wpa_ssid *ssid;
  7075. u8 go_dev_addr[ETH_ALEN];
  7076. int cli_freq = wpas_p2p_cli_freq(wpa_s, &ssid, go_dev_addr);
  7077. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL) {
  7078. wpa_printf(MSG_DEBUG, "P2P: P2P disabled - cannot build handover request");
  7079. return NULL;
  7080. }
  7081. if (wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
  7082. wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
  7083. &wpa_s->conf->wps_nfc_dh_privkey) < 0) {
  7084. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No DH key available for handover request");
  7085. return NULL;
  7086. }
  7087. if (cli_freq == 0) {
  7088. wsc = wps_build_nfc_handover_req_p2p(
  7089. wpa_s->parent->wps, wpa_s->conf->wps_nfc_dh_pubkey);
  7090. } else
  7091. wsc = NULL;
  7092. p2p = p2p_build_nfc_handover_req(wpa_s->global->p2p, cli_freq,
  7093. go_dev_addr, ssid ? ssid->ssid : NULL,
  7094. ssid ? ssid->ssid_len : 0);
  7095. return wpas_p2p_nfc_handover(ndef, wsc, p2p);
  7096. }
  7097. struct wpabuf * wpas_p2p_nfc_handover_sel(struct wpa_supplicant *wpa_s,
  7098. int ndef, int tag)
  7099. {
  7100. struct wpabuf *wsc, *p2p;
  7101. struct wpa_ssid *ssid;
  7102. u8 go_dev_addr[ETH_ALEN];
  7103. int cli_freq = wpas_p2p_cli_freq(wpa_s, &ssid, go_dev_addr);
  7104. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  7105. return NULL;
  7106. if (!tag && wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
  7107. wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
  7108. &wpa_s->conf->wps_nfc_dh_privkey) < 0)
  7109. return NULL;
  7110. if (cli_freq == 0) {
  7111. wsc = wps_build_nfc_handover_sel_p2p(
  7112. wpa_s->parent->wps,
  7113. tag ? wpa_s->conf->wps_nfc_dev_pw_id :
  7114. DEV_PW_NFC_CONNECTION_HANDOVER,
  7115. wpa_s->conf->wps_nfc_dh_pubkey,
  7116. tag ? wpa_s->conf->wps_nfc_dev_pw : NULL);
  7117. } else
  7118. wsc = NULL;
  7119. p2p = p2p_build_nfc_handover_sel(wpa_s->global->p2p, cli_freq,
  7120. go_dev_addr, ssid ? ssid->ssid : NULL,
  7121. ssid ? ssid->ssid_len : 0);
  7122. return wpas_p2p_nfc_handover(ndef, wsc, p2p);
  7123. }
  7124. static int wpas_p2p_nfc_join_group(struct wpa_supplicant *wpa_s,
  7125. struct p2p_nfc_params *params)
  7126. {
  7127. wpa_printf(MSG_DEBUG, "P2P: Initiate join-group based on NFC "
  7128. "connection handover (freq=%d)",
  7129. params->go_freq);
  7130. if (params->go_freq && params->go_ssid_len) {
  7131. wpa_s->p2p_wps_method = WPS_NFC;
  7132. wpa_s->pending_join_wps_method = WPS_NFC;
  7133. os_memset(wpa_s->pending_join_iface_addr, 0, ETH_ALEN);
  7134. os_memcpy(wpa_s->pending_join_dev_addr, params->go_dev_addr,
  7135. ETH_ALEN);
  7136. return wpas_p2p_join_start(wpa_s, params->go_freq,
  7137. params->go_ssid,
  7138. params->go_ssid_len);
  7139. }
  7140. return wpas_p2p_connect(wpa_s, params->peer->p2p_device_addr, NULL,
  7141. WPS_NFC, 0, 0, 1, 0, wpa_s->conf->p2p_go_intent,
  7142. params->go_freq, wpa_s->p2p_go_vht_center_freq2,
  7143. -1, 0, 1, 1, wpa_s->p2p_go_max_oper_chwidth,
  7144. params->go_ssid_len ? params->go_ssid : NULL,
  7145. params->go_ssid_len);
  7146. }
  7147. static int wpas_p2p_nfc_auth_join(struct wpa_supplicant *wpa_s,
  7148. struct p2p_nfc_params *params, int tag)
  7149. {
  7150. int res, persistent;
  7151. struct wpa_ssid *ssid;
  7152. wpa_printf(MSG_DEBUG, "P2P: Authorize join-group based on NFC "
  7153. "connection handover");
  7154. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  7155. ssid = wpa_s->current_ssid;
  7156. if (ssid == NULL)
  7157. continue;
  7158. if (ssid->mode != WPAS_MODE_P2P_GO)
  7159. continue;
  7160. if (wpa_s->ap_iface == NULL)
  7161. continue;
  7162. break;
  7163. }
  7164. if (wpa_s == NULL) {
  7165. wpa_printf(MSG_DEBUG, "P2P: Could not find GO interface");
  7166. return -1;
  7167. }
  7168. if (wpa_s->p2pdev->p2p_oob_dev_pw_id !=
  7169. DEV_PW_NFC_CONNECTION_HANDOVER &&
  7170. !wpa_s->p2pdev->p2p_oob_dev_pw) {
  7171. wpa_printf(MSG_DEBUG, "P2P: No NFC Dev Pw known");
  7172. return -1;
  7173. }
  7174. res = wpas_ap_wps_add_nfc_pw(
  7175. wpa_s, wpa_s->p2pdev->p2p_oob_dev_pw_id,
  7176. wpa_s->p2pdev->p2p_oob_dev_pw,
  7177. wpa_s->p2pdev->p2p_peer_oob_pk_hash_known ?
  7178. wpa_s->p2pdev->p2p_peer_oob_pubkey_hash : NULL);
  7179. if (res)
  7180. return res;
  7181. if (!tag) {
  7182. wpa_printf(MSG_DEBUG, "P2P: Negotiated handover - wait for peer to join without invitation");
  7183. return 0;
  7184. }
  7185. if (!params->peer ||
  7186. !(params->peer->dev_capab & P2P_DEV_CAPAB_INVITATION_PROCEDURE))
  7187. return 0;
  7188. wpa_printf(MSG_DEBUG, "P2P: Static handover - invite peer " MACSTR
  7189. " to join", MAC2STR(params->peer->p2p_device_addr));
  7190. wpa_s->global->p2p_invite_group = wpa_s;
  7191. persistent = ssid->p2p_persistent_group &&
  7192. wpas_p2p_get_persistent(wpa_s->p2pdev,
  7193. params->peer->p2p_device_addr,
  7194. ssid->ssid, ssid->ssid_len);
  7195. wpa_s->p2pdev->pending_invite_ssid_id = -1;
  7196. return p2p_invite(wpa_s->global->p2p, params->peer->p2p_device_addr,
  7197. P2P_INVITE_ROLE_ACTIVE_GO, wpa_s->own_addr,
  7198. ssid->ssid, ssid->ssid_len, ssid->frequency,
  7199. wpa_s->global->p2p_dev_addr, persistent, 0,
  7200. wpa_s->p2pdev->p2p_oob_dev_pw_id);
  7201. }
  7202. static int wpas_p2p_nfc_init_go_neg(struct wpa_supplicant *wpa_s,
  7203. struct p2p_nfc_params *params,
  7204. int forced_freq)
  7205. {
  7206. wpa_printf(MSG_DEBUG, "P2P: Initiate GO Negotiation based on NFC "
  7207. "connection handover");
  7208. return wpas_p2p_connect(wpa_s, params->peer->p2p_device_addr, NULL,
  7209. WPS_NFC, 0, 0, 0, 0, wpa_s->conf->p2p_go_intent,
  7210. forced_freq, wpa_s->p2p_go_vht_center_freq2,
  7211. -1, 0, 1, 1, wpa_s->p2p_go_max_oper_chwidth,
  7212. NULL, 0);
  7213. }
  7214. static int wpas_p2p_nfc_resp_go_neg(struct wpa_supplicant *wpa_s,
  7215. struct p2p_nfc_params *params,
  7216. int forced_freq)
  7217. {
  7218. int res;
  7219. wpa_printf(MSG_DEBUG, "P2P: Authorize GO Negotiation based on NFC "
  7220. "connection handover");
  7221. res = wpas_p2p_connect(wpa_s, params->peer->p2p_device_addr, NULL,
  7222. WPS_NFC, 0, 0, 0, 1, wpa_s->conf->p2p_go_intent,
  7223. forced_freq, wpa_s->p2p_go_vht_center_freq2,
  7224. -1, 0, 1, 1, wpa_s->p2p_go_max_oper_chwidth,
  7225. NULL, 0);
  7226. if (res)
  7227. return res;
  7228. res = wpas_p2p_listen(wpa_s, 60);
  7229. if (res) {
  7230. p2p_unauthorize(wpa_s->global->p2p,
  7231. params->peer->p2p_device_addr);
  7232. }
  7233. return res;
  7234. }
  7235. static int wpas_p2p_nfc_connection_handover(struct wpa_supplicant *wpa_s,
  7236. const struct wpabuf *data,
  7237. int sel, int tag, int forced_freq)
  7238. {
  7239. const u8 *pos, *end;
  7240. u16 len, id;
  7241. struct p2p_nfc_params params;
  7242. int res;
  7243. os_memset(&params, 0, sizeof(params));
  7244. params.sel = sel;
  7245. wpa_hexdump_buf(MSG_DEBUG, "P2P: Received NFC tag payload", data);
  7246. pos = wpabuf_head(data);
  7247. end = pos + wpabuf_len(data);
  7248. if (end - pos < 2) {
  7249. wpa_printf(MSG_DEBUG, "P2P: Not enough data for Length of WSC "
  7250. "attributes");
  7251. return -1;
  7252. }
  7253. len = WPA_GET_BE16(pos);
  7254. pos += 2;
  7255. if (len > end - pos) {
  7256. wpa_printf(MSG_DEBUG, "P2P: Not enough data for WSC "
  7257. "attributes");
  7258. return -1;
  7259. }
  7260. params.wsc_attr = pos;
  7261. params.wsc_len = len;
  7262. pos += len;
  7263. if (end - pos < 2) {
  7264. wpa_printf(MSG_DEBUG, "P2P: Not enough data for Length of P2P "
  7265. "attributes");
  7266. return -1;
  7267. }
  7268. len = WPA_GET_BE16(pos);
  7269. pos += 2;
  7270. if (len > end - pos) {
  7271. wpa_printf(MSG_DEBUG, "P2P: Not enough data for P2P "
  7272. "attributes");
  7273. return -1;
  7274. }
  7275. params.p2p_attr = pos;
  7276. params.p2p_len = len;
  7277. pos += len;
  7278. wpa_hexdump(MSG_DEBUG, "P2P: WSC attributes",
  7279. params.wsc_attr, params.wsc_len);
  7280. wpa_hexdump(MSG_DEBUG, "P2P: P2P attributes",
  7281. params.p2p_attr, params.p2p_len);
  7282. if (pos < end) {
  7283. wpa_hexdump(MSG_DEBUG,
  7284. "P2P: Ignored extra data after P2P attributes",
  7285. pos, end - pos);
  7286. }
  7287. res = p2p_process_nfc_connection_handover(wpa_s->global->p2p, &params);
  7288. if (res)
  7289. return res;
  7290. if (params.next_step == NO_ACTION)
  7291. return 0;
  7292. if (params.next_step == BOTH_GO) {
  7293. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_BOTH_GO "peer=" MACSTR,
  7294. MAC2STR(params.peer->p2p_device_addr));
  7295. return 0;
  7296. }
  7297. if (params.next_step == PEER_CLIENT) {
  7298. if (!is_zero_ether_addr(params.go_dev_addr)) {
  7299. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_PEER_CLIENT
  7300. "peer=" MACSTR " freq=%d go_dev_addr=" MACSTR
  7301. " ssid=\"%s\"",
  7302. MAC2STR(params.peer->p2p_device_addr),
  7303. params.go_freq,
  7304. MAC2STR(params.go_dev_addr),
  7305. wpa_ssid_txt(params.go_ssid,
  7306. params.go_ssid_len));
  7307. } else {
  7308. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_PEER_CLIENT
  7309. "peer=" MACSTR " freq=%d",
  7310. MAC2STR(params.peer->p2p_device_addr),
  7311. params.go_freq);
  7312. }
  7313. return 0;
  7314. }
  7315. if (wpas_p2p_cli_freq(wpa_s, NULL, NULL)) {
  7316. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_WHILE_CLIENT "peer="
  7317. MACSTR, MAC2STR(params.peer->p2p_device_addr));
  7318. return 0;
  7319. }
  7320. wpabuf_free(wpa_s->p2p_oob_dev_pw);
  7321. wpa_s->p2p_oob_dev_pw = NULL;
  7322. if (params.oob_dev_pw_len < WPS_OOB_PUBKEY_HASH_LEN + 2) {
  7323. wpa_printf(MSG_DEBUG, "P2P: No peer OOB Dev Pw "
  7324. "received");
  7325. return -1;
  7326. }
  7327. id = WPA_GET_BE16(params.oob_dev_pw + WPS_OOB_PUBKEY_HASH_LEN);
  7328. wpa_printf(MSG_DEBUG, "P2P: Peer OOB Dev Pw %u", id);
  7329. wpa_hexdump(MSG_DEBUG, "P2P: Peer OOB Public Key hash",
  7330. params.oob_dev_pw, WPS_OOB_PUBKEY_HASH_LEN);
  7331. os_memcpy(wpa_s->p2p_peer_oob_pubkey_hash,
  7332. params.oob_dev_pw, WPS_OOB_PUBKEY_HASH_LEN);
  7333. wpa_s->p2p_peer_oob_pk_hash_known = 1;
  7334. if (tag) {
  7335. if (id < 0x10) {
  7336. wpa_printf(MSG_DEBUG, "P2P: Static handover - invalid "
  7337. "peer OOB Device Password Id %u", id);
  7338. return -1;
  7339. }
  7340. wpa_printf(MSG_DEBUG, "P2P: Static handover - use peer OOB "
  7341. "Device Password Id %u", id);
  7342. wpa_hexdump_key(MSG_DEBUG, "P2P: Peer OOB Device Password",
  7343. params.oob_dev_pw + WPS_OOB_PUBKEY_HASH_LEN + 2,
  7344. params.oob_dev_pw_len -
  7345. WPS_OOB_PUBKEY_HASH_LEN - 2);
  7346. wpa_s->p2p_oob_dev_pw_id = id;
  7347. wpa_s->p2p_oob_dev_pw = wpabuf_alloc_copy(
  7348. params.oob_dev_pw + WPS_OOB_PUBKEY_HASH_LEN + 2,
  7349. params.oob_dev_pw_len -
  7350. WPS_OOB_PUBKEY_HASH_LEN - 2);
  7351. if (wpa_s->p2p_oob_dev_pw == NULL)
  7352. return -1;
  7353. if (wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
  7354. wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
  7355. &wpa_s->conf->wps_nfc_dh_privkey) < 0)
  7356. return -1;
  7357. } else {
  7358. wpa_printf(MSG_DEBUG, "P2P: Using abbreviated WPS handshake "
  7359. "without Device Password");
  7360. wpa_s->p2p_oob_dev_pw_id = DEV_PW_NFC_CONNECTION_HANDOVER;
  7361. }
  7362. switch (params.next_step) {
  7363. case NO_ACTION:
  7364. case BOTH_GO:
  7365. case PEER_CLIENT:
  7366. /* already covered above */
  7367. return 0;
  7368. case JOIN_GROUP:
  7369. return wpas_p2p_nfc_join_group(wpa_s, &params);
  7370. case AUTH_JOIN:
  7371. return wpas_p2p_nfc_auth_join(wpa_s, &params, tag);
  7372. case INIT_GO_NEG:
  7373. return wpas_p2p_nfc_init_go_neg(wpa_s, &params, forced_freq);
  7374. case RESP_GO_NEG:
  7375. /* TODO: use own OOB Dev Pw */
  7376. return wpas_p2p_nfc_resp_go_neg(wpa_s, &params, forced_freq);
  7377. }
  7378. return -1;
  7379. }
  7380. int wpas_p2p_nfc_tag_process(struct wpa_supplicant *wpa_s,
  7381. const struct wpabuf *data, int forced_freq)
  7382. {
  7383. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  7384. return -1;
  7385. return wpas_p2p_nfc_connection_handover(wpa_s, data, 1, 1, forced_freq);
  7386. }
  7387. int wpas_p2p_nfc_report_handover(struct wpa_supplicant *wpa_s, int init,
  7388. const struct wpabuf *req,
  7389. const struct wpabuf *sel, int forced_freq)
  7390. {
  7391. struct wpabuf *tmp;
  7392. int ret;
  7393. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  7394. return -1;
  7395. wpa_printf(MSG_DEBUG, "NFC: P2P connection handover reported");
  7396. wpa_hexdump_ascii(MSG_DEBUG, "NFC: Req",
  7397. wpabuf_head(req), wpabuf_len(req));
  7398. wpa_hexdump_ascii(MSG_DEBUG, "NFC: Sel",
  7399. wpabuf_head(sel), wpabuf_len(sel));
  7400. if (forced_freq)
  7401. wpa_printf(MSG_DEBUG, "NFC: Forced freq %d", forced_freq);
  7402. tmp = ndef_parse_p2p(init ? sel : req);
  7403. if (tmp == NULL) {
  7404. wpa_printf(MSG_DEBUG, "P2P: Could not parse NDEF");
  7405. return -1;
  7406. }
  7407. ret = wpas_p2p_nfc_connection_handover(wpa_s, tmp, init, 0,
  7408. forced_freq);
  7409. wpabuf_free(tmp);
  7410. return ret;
  7411. }
  7412. int wpas_p2p_nfc_tag_enabled(struct wpa_supplicant *wpa_s, int enabled)
  7413. {
  7414. const u8 *if_addr;
  7415. int go_intent = wpa_s->conf->p2p_go_intent;
  7416. struct wpa_supplicant *iface;
  7417. if (wpa_s->global->p2p == NULL)
  7418. return -1;
  7419. if (!enabled) {
  7420. wpa_printf(MSG_DEBUG, "P2P: Disable use of own NFC Tag");
  7421. for (iface = wpa_s->global->ifaces; iface; iface = iface->next)
  7422. {
  7423. if (!iface->ap_iface)
  7424. continue;
  7425. hostapd_wps_nfc_token_disable(iface->ap_iface->bss[0]);
  7426. }
  7427. p2p_set_authorized_oob_dev_pw_id(wpa_s->global->p2p, 0,
  7428. 0, NULL);
  7429. if (wpa_s->p2p_nfc_tag_enabled)
  7430. wpas_p2p_remove_pending_group_interface(wpa_s);
  7431. wpa_s->p2p_nfc_tag_enabled = 0;
  7432. return 0;
  7433. }
  7434. if (wpa_s->global->p2p_disabled)
  7435. return -1;
  7436. if (wpa_s->conf->wps_nfc_dh_pubkey == NULL ||
  7437. wpa_s->conf->wps_nfc_dh_privkey == NULL ||
  7438. wpa_s->conf->wps_nfc_dev_pw == NULL ||
  7439. wpa_s->conf->wps_nfc_dev_pw_id < 0x10) {
  7440. wpa_printf(MSG_DEBUG, "P2P: NFC password token not configured "
  7441. "to allow static handover cases");
  7442. return -1;
  7443. }
  7444. wpa_printf(MSG_DEBUG, "P2P: Enable use of own NFC Tag");
  7445. wpa_s->p2p_oob_dev_pw_id = wpa_s->conf->wps_nfc_dev_pw_id;
  7446. wpabuf_free(wpa_s->p2p_oob_dev_pw);
  7447. wpa_s->p2p_oob_dev_pw = wpabuf_dup(wpa_s->conf->wps_nfc_dev_pw);
  7448. if (wpa_s->p2p_oob_dev_pw == NULL)
  7449. return -1;
  7450. wpa_s->p2p_peer_oob_pk_hash_known = 0;
  7451. if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO ||
  7452. wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT) {
  7453. /*
  7454. * P2P Group Interface present and the command came on group
  7455. * interface, so enable the token for the current interface.
  7456. */
  7457. wpa_s->create_p2p_iface = 0;
  7458. } else {
  7459. wpa_s->create_p2p_iface = wpas_p2p_create_iface(wpa_s);
  7460. }
  7461. if (wpa_s->create_p2p_iface) {
  7462. enum wpa_driver_if_type iftype;
  7463. /* Prepare to add a new interface for the group */
  7464. iftype = WPA_IF_P2P_GROUP;
  7465. if (go_intent == 15)
  7466. iftype = WPA_IF_P2P_GO;
  7467. if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
  7468. wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
  7469. "interface for the group");
  7470. return -1;
  7471. }
  7472. if_addr = wpa_s->pending_interface_addr;
  7473. } else if (wpa_s->p2p_mgmt)
  7474. if_addr = wpa_s->parent->own_addr;
  7475. else
  7476. if_addr = wpa_s->own_addr;
  7477. wpa_s->p2p_nfc_tag_enabled = enabled;
  7478. for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
  7479. struct hostapd_data *hapd;
  7480. if (iface->ap_iface == NULL)
  7481. continue;
  7482. hapd = iface->ap_iface->bss[0];
  7483. wpabuf_free(hapd->conf->wps_nfc_dh_pubkey);
  7484. hapd->conf->wps_nfc_dh_pubkey =
  7485. wpabuf_dup(wpa_s->conf->wps_nfc_dh_pubkey);
  7486. wpabuf_free(hapd->conf->wps_nfc_dh_privkey);
  7487. hapd->conf->wps_nfc_dh_privkey =
  7488. wpabuf_dup(wpa_s->conf->wps_nfc_dh_privkey);
  7489. wpabuf_free(hapd->conf->wps_nfc_dev_pw);
  7490. hapd->conf->wps_nfc_dev_pw =
  7491. wpabuf_dup(wpa_s->conf->wps_nfc_dev_pw);
  7492. hapd->conf->wps_nfc_dev_pw_id = wpa_s->conf->wps_nfc_dev_pw_id;
  7493. if (hostapd_wps_nfc_token_enable(iface->ap_iface->bss[0]) < 0) {
  7494. wpa_dbg(iface, MSG_DEBUG,
  7495. "P2P: Failed to enable NFC Tag for GO");
  7496. }
  7497. }
  7498. p2p_set_authorized_oob_dev_pw_id(
  7499. wpa_s->global->p2p, wpa_s->conf->wps_nfc_dev_pw_id, go_intent,
  7500. if_addr);
  7501. return 0;
  7502. }
  7503. #endif /* CONFIG_WPS_NFC */
  7504. static void wpas_p2p_optimize_listen_channel(struct wpa_supplicant *wpa_s,
  7505. struct wpa_used_freq_data *freqs,
  7506. unsigned int num)
  7507. {
  7508. u8 curr_chan, cand, chan;
  7509. unsigned int i;
  7510. /*
  7511. * If possible, optimize the Listen channel to be a channel that is
  7512. * already used by one of the other interfaces.
  7513. */
  7514. if (!wpa_s->conf->p2p_optimize_listen_chan)
  7515. return;
  7516. if (!wpa_s->current_ssid || wpa_s->wpa_state != WPA_COMPLETED)
  7517. return;
  7518. curr_chan = p2p_get_listen_channel(wpa_s->global->p2p);
  7519. for (i = 0, cand = 0; i < num; i++) {
  7520. ieee80211_freq_to_chan(freqs[i].freq, &chan);
  7521. if (curr_chan == chan) {
  7522. cand = 0;
  7523. break;
  7524. }
  7525. if (chan == 1 || chan == 6 || chan == 11)
  7526. cand = chan;
  7527. }
  7528. if (cand) {
  7529. wpa_dbg(wpa_s, MSG_DEBUG,
  7530. "P2P: Update Listen channel to %u based on operating channel",
  7531. cand);
  7532. p2p_set_listen_channel(wpa_s->global->p2p, 81, cand, 0);
  7533. }
  7534. }
  7535. static int wpas_p2p_move_go_csa(struct wpa_supplicant *wpa_s)
  7536. {
  7537. struct hostapd_config *conf;
  7538. struct p2p_go_neg_results params;
  7539. struct csa_settings csa_settings;
  7540. struct wpa_ssid *current_ssid = wpa_s->current_ssid;
  7541. int old_freq = current_ssid->frequency;
  7542. int ret;
  7543. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_AP_CSA)) {
  7544. wpa_dbg(wpa_s, MSG_DEBUG, "CSA is not enabled");
  7545. return -1;
  7546. }
  7547. /*
  7548. * TODO: This function may not always work correctly. For example,
  7549. * when we have a running GO and a BSS on a DFS channel.
  7550. */
  7551. if (wpas_p2p_init_go_params(wpa_s, &params, 0, 0, 0, 0, 0, NULL)) {
  7552. wpa_dbg(wpa_s, MSG_DEBUG,
  7553. "P2P CSA: Failed to select new frequency for GO");
  7554. return -1;
  7555. }
  7556. if (current_ssid->frequency == params.freq) {
  7557. wpa_dbg(wpa_s, MSG_DEBUG,
  7558. "P2P CSA: Selected same frequency - not moving GO");
  7559. return 0;
  7560. }
  7561. conf = hostapd_config_defaults();
  7562. if (!conf) {
  7563. wpa_dbg(wpa_s, MSG_DEBUG,
  7564. "P2P CSA: Failed to allocate default config");
  7565. return -1;
  7566. }
  7567. current_ssid->frequency = params.freq;
  7568. if (wpa_supplicant_conf_ap_ht(wpa_s, current_ssid, conf)) {
  7569. wpa_dbg(wpa_s, MSG_DEBUG,
  7570. "P2P CSA: Failed to create new GO config");
  7571. ret = -1;
  7572. goto out;
  7573. }
  7574. if (conf->hw_mode != wpa_s->ap_iface->current_mode->mode) {
  7575. wpa_dbg(wpa_s, MSG_DEBUG,
  7576. "P2P CSA: CSA to a different band is not supported");
  7577. ret = -1;
  7578. goto out;
  7579. }
  7580. os_memset(&csa_settings, 0, sizeof(csa_settings));
  7581. csa_settings.cs_count = P2P_GO_CSA_COUNT;
  7582. csa_settings.block_tx = P2P_GO_CSA_BLOCK_TX;
  7583. csa_settings.freq_params.freq = params.freq;
  7584. csa_settings.freq_params.sec_channel_offset = conf->secondary_channel;
  7585. csa_settings.freq_params.ht_enabled = conf->ieee80211n;
  7586. csa_settings.freq_params.bandwidth = conf->secondary_channel ? 40 : 20;
  7587. if (conf->ieee80211ac) {
  7588. int freq1 = 0, freq2 = 0;
  7589. u8 chan, opclass;
  7590. if (ieee80211_freq_to_channel_ext(params.freq,
  7591. conf->secondary_channel,
  7592. conf->vht_oper_chwidth,
  7593. &opclass, &chan) ==
  7594. NUM_HOSTAPD_MODES) {
  7595. wpa_printf(MSG_ERROR, "P2P CSA: Bad freq");
  7596. ret = -1;
  7597. goto out;
  7598. }
  7599. if (conf->vht_oper_centr_freq_seg0_idx)
  7600. freq1 = ieee80211_chan_to_freq(
  7601. NULL, opclass,
  7602. conf->vht_oper_centr_freq_seg0_idx);
  7603. if (conf->vht_oper_centr_freq_seg1_idx)
  7604. freq2 = ieee80211_chan_to_freq(
  7605. NULL, opclass,
  7606. conf->vht_oper_centr_freq_seg1_idx);
  7607. if (freq1 < 0 || freq2 < 0) {
  7608. wpa_dbg(wpa_s, MSG_DEBUG,
  7609. "P2P CSA: Selected invalid VHT center freqs");
  7610. ret = -1;
  7611. goto out;
  7612. }
  7613. csa_settings.freq_params.vht_enabled = conf->ieee80211ac;
  7614. csa_settings.freq_params.center_freq1 = freq1;
  7615. csa_settings.freq_params.center_freq2 = freq2;
  7616. switch (conf->vht_oper_chwidth) {
  7617. case VHT_CHANWIDTH_80MHZ:
  7618. case VHT_CHANWIDTH_80P80MHZ:
  7619. csa_settings.freq_params.bandwidth = 80;
  7620. break;
  7621. case VHT_CHANWIDTH_160MHZ:
  7622. csa_settings.freq_params.bandwidth = 160;
  7623. break;
  7624. }
  7625. }
  7626. ret = ap_switch_channel(wpa_s, &csa_settings);
  7627. out:
  7628. current_ssid->frequency = old_freq;
  7629. hostapd_config_free(conf);
  7630. return ret;
  7631. }
  7632. static void wpas_p2p_move_go_no_csa(struct wpa_supplicant *wpa_s)
  7633. {
  7634. struct p2p_go_neg_results params;
  7635. struct wpa_ssid *current_ssid = wpa_s->current_ssid;
  7636. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_REMOVE_AND_REFORM_GROUP);
  7637. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Move GO from freq=%d MHz",
  7638. current_ssid->frequency);
  7639. /* Stop the AP functionality */
  7640. /* TODO: Should do this in a way that does not indicated to possible
  7641. * P2P Clients in the group that the group is terminated. */
  7642. wpa_supplicant_ap_deinit(wpa_s);
  7643. /* Reselect the GO frequency */
  7644. if (wpas_p2p_init_go_params(wpa_s, &params, 0, 0, 0, 0, 0, NULL)) {
  7645. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Failed to reselect freq");
  7646. wpas_p2p_group_delete(wpa_s,
  7647. P2P_GROUP_REMOVAL_GO_LEAVE_CHANNEL);
  7648. return;
  7649. }
  7650. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New freq selected for the GO (%u MHz)",
  7651. params.freq);
  7652. if (params.freq &&
  7653. !p2p_supported_freq_go(wpa_s->global->p2p, params.freq)) {
  7654. wpa_printf(MSG_DEBUG,
  7655. "P2P: Selected freq (%u MHz) is not valid for P2P",
  7656. params.freq);
  7657. wpas_p2p_group_delete(wpa_s,
  7658. P2P_GROUP_REMOVAL_GO_LEAVE_CHANNEL);
  7659. return;
  7660. }
  7661. /* Update the frequency */
  7662. current_ssid->frequency = params.freq;
  7663. wpa_s->connect_without_scan = current_ssid;
  7664. wpa_s->reassociate = 1;
  7665. wpa_s->disconnected = 0;
  7666. wpa_supplicant_req_scan(wpa_s, 0, 0);
  7667. }
  7668. static void wpas_p2p_move_go(void *eloop_ctx, void *timeout_ctx)
  7669. {
  7670. struct wpa_supplicant *wpa_s = eloop_ctx;
  7671. if (!wpa_s->ap_iface || !wpa_s->current_ssid)
  7672. return;
  7673. wpas_p2p_go_update_common_freqs(wpa_s);
  7674. /* Do not move GO in the middle of a CSA */
  7675. if (hostapd_csa_in_progress(wpa_s->ap_iface)) {
  7676. wpa_printf(MSG_DEBUG,
  7677. "P2P: CSA is in progress - not moving GO");
  7678. return;
  7679. }
  7680. /*
  7681. * First, try a channel switch flow. If it is not supported or fails,
  7682. * take down the GO and bring it up again.
  7683. */
  7684. if (wpas_p2p_move_go_csa(wpa_s) < 0)
  7685. wpas_p2p_move_go_no_csa(wpa_s);
  7686. }
  7687. static void wpas_p2p_reconsider_moving_go(void *eloop_ctx, void *timeout_ctx)
  7688. {
  7689. struct wpa_supplicant *wpa_s = eloop_ctx;
  7690. struct wpa_used_freq_data *freqs = NULL;
  7691. unsigned int num = wpa_s->num_multichan_concurrent;
  7692. freqs = os_calloc(num, sizeof(struct wpa_used_freq_data));
  7693. if (!freqs)
  7694. return;
  7695. num = get_shared_radio_freqs_data(wpa_s, freqs, num);
  7696. /* Previous attempt to move a GO was not possible -- try again. */
  7697. wpas_p2p_consider_moving_gos(wpa_s, freqs, num,
  7698. WPAS_P2P_CHANNEL_UPDATE_ANY);
  7699. os_free(freqs);
  7700. }
  7701. /*
  7702. * Consider moving a GO from its currently used frequency:
  7703. * 1. It is possible that due to regulatory consideration the frequency
  7704. * can no longer be used and there is a need to evacuate the GO.
  7705. * 2. It is possible that due to MCC considerations, it would be preferable
  7706. * to move the GO to a channel that is currently used by some other
  7707. * station interface.
  7708. *
  7709. * In case a frequency that became invalid is once again valid, cancel a
  7710. * previously initiated GO frequency change.
  7711. */
  7712. static void wpas_p2p_consider_moving_one_go(struct wpa_supplicant *wpa_s,
  7713. struct wpa_used_freq_data *freqs,
  7714. unsigned int num)
  7715. {
  7716. unsigned int i, invalid_freq = 0, policy_move = 0, flags = 0;
  7717. unsigned int timeout;
  7718. int freq;
  7719. wpas_p2p_go_update_common_freqs(wpa_s);
  7720. freq = wpa_s->current_ssid->frequency;
  7721. for (i = 0, invalid_freq = 0; i < num; i++) {
  7722. if (freqs[i].freq == freq) {
  7723. flags = freqs[i].flags;
  7724. /* The channel is invalid, must change it */
  7725. if (!p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
  7726. wpa_dbg(wpa_s, MSG_DEBUG,
  7727. "P2P: Freq=%d MHz no longer valid for GO",
  7728. freq);
  7729. invalid_freq = 1;
  7730. }
  7731. } else if (freqs[i].flags == 0) {
  7732. /* Freq is not used by any other station interface */
  7733. continue;
  7734. } else if (!p2p_supported_freq(wpa_s->global->p2p,
  7735. freqs[i].freq)) {
  7736. /* Freq is not valid for P2P use cases */
  7737. continue;
  7738. } else if (wpa_s->conf->p2p_go_freq_change_policy ==
  7739. P2P_GO_FREQ_MOVE_SCM) {
  7740. policy_move = 1;
  7741. } else if (wpa_s->conf->p2p_go_freq_change_policy ==
  7742. P2P_GO_FREQ_MOVE_SCM_PEER_SUPPORTS &&
  7743. wpas_p2p_go_is_peer_freq(wpa_s, freqs[i].freq)) {
  7744. policy_move = 1;
  7745. } else if ((wpa_s->conf->p2p_go_freq_change_policy ==
  7746. P2P_GO_FREQ_MOVE_SCM_ECSA) &&
  7747. wpas_p2p_go_is_peer_freq(wpa_s, freqs[i].freq)) {
  7748. if (!p2p_get_group_num_members(wpa_s->p2p_group)) {
  7749. policy_move = 1;
  7750. } else if ((wpa_s->drv_flags &
  7751. WPA_DRIVER_FLAGS_AP_CSA) &&
  7752. wpas_p2p_go_clients_support_ecsa(wpa_s)) {
  7753. u8 chan;
  7754. /*
  7755. * We do not support CSA between bands, so move
  7756. * GO only within the same band.
  7757. */
  7758. if (wpa_s->ap_iface->current_mode->mode ==
  7759. ieee80211_freq_to_chan(freqs[i].freq,
  7760. &chan))
  7761. policy_move = 1;
  7762. }
  7763. }
  7764. }
  7765. wpa_dbg(wpa_s, MSG_DEBUG,
  7766. "P2P: GO move: invalid_freq=%u, policy_move=%u, flags=0x%X",
  7767. invalid_freq, policy_move, flags);
  7768. /*
  7769. * The channel is valid, or we are going to have a policy move, so
  7770. * cancel timeout.
  7771. */
  7772. if (!invalid_freq || policy_move) {
  7773. wpa_dbg(wpa_s, MSG_DEBUG,
  7774. "P2P: Cancel a GO move from freq=%d MHz", freq);
  7775. eloop_cancel_timeout(wpas_p2p_move_go, wpa_s, NULL);
  7776. if (wpas_p2p_in_progress(wpa_s)) {
  7777. wpa_dbg(wpa_s, MSG_DEBUG,
  7778. "P2P: GO move: policy CS is not allowed - setting timeout to re-consider GO move");
  7779. eloop_cancel_timeout(wpas_p2p_reconsider_moving_go,
  7780. wpa_s, NULL);
  7781. eloop_register_timeout(P2P_RECONSIDER_GO_MOVE_DELAY, 0,
  7782. wpas_p2p_reconsider_moving_go,
  7783. wpa_s, NULL);
  7784. return;
  7785. }
  7786. }
  7787. if (!invalid_freq && (!policy_move || flags != 0)) {
  7788. wpa_dbg(wpa_s, MSG_DEBUG,
  7789. "P2P: Not initiating a GO frequency change");
  7790. return;
  7791. }
  7792. /*
  7793. * Do not consider moving GO if it is in the middle of a CSA. When the
  7794. * CSA is finished this flow should be retriggered.
  7795. */
  7796. if (hostapd_csa_in_progress(wpa_s->ap_iface)) {
  7797. wpa_dbg(wpa_s, MSG_DEBUG,
  7798. "P2P: Not initiating a GO frequency change - CSA is in progress");
  7799. return;
  7800. }
  7801. if (invalid_freq && !wpas_p2p_disallowed_freq(wpa_s->global, freq))
  7802. timeout = P2P_GO_FREQ_CHANGE_TIME;
  7803. else
  7804. timeout = 0;
  7805. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Move GO from freq=%d MHz in %d secs",
  7806. freq, timeout);
  7807. eloop_cancel_timeout(wpas_p2p_move_go, wpa_s, NULL);
  7808. eloop_register_timeout(timeout, 0, wpas_p2p_move_go, wpa_s, NULL);
  7809. }
  7810. static void wpas_p2p_consider_moving_gos(struct wpa_supplicant *wpa_s,
  7811. struct wpa_used_freq_data *freqs,
  7812. unsigned int num,
  7813. enum wpas_p2p_channel_update_trig trig)
  7814. {
  7815. struct wpa_supplicant *ifs;
  7816. eloop_cancel_timeout(wpas_p2p_reconsider_moving_go, ELOOP_ALL_CTX,
  7817. NULL);
  7818. /*
  7819. * Travers all the radio interfaces, and for each GO interface, check
  7820. * if there is a need to move the GO from the frequency it is using,
  7821. * or in case the frequency is valid again, cancel the evacuation flow.
  7822. */
  7823. dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
  7824. radio_list) {
  7825. if (ifs->current_ssid == NULL ||
  7826. ifs->current_ssid->mode != WPAS_MODE_P2P_GO)
  7827. continue;
  7828. /*
  7829. * The GO was just started or completed channel switch, no need
  7830. * to move it.
  7831. */
  7832. if (wpa_s == ifs &&
  7833. (trig == WPAS_P2P_CHANNEL_UPDATE_STATE_CHANGE ||
  7834. trig == WPAS_P2P_CHANNEL_UPDATE_CS)) {
  7835. wpa_dbg(wpa_s, MSG_DEBUG,
  7836. "P2P: GO move - schedule re-consideration");
  7837. eloop_register_timeout(P2P_RECONSIDER_GO_MOVE_DELAY, 0,
  7838. wpas_p2p_reconsider_moving_go,
  7839. wpa_s, NULL);
  7840. continue;
  7841. }
  7842. wpas_p2p_consider_moving_one_go(ifs, freqs, num);
  7843. }
  7844. }
  7845. void wpas_p2p_indicate_state_change(struct wpa_supplicant *wpa_s)
  7846. {
  7847. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  7848. return;
  7849. wpas_p2p_update_channel_list(wpa_s,
  7850. WPAS_P2P_CHANNEL_UPDATE_STATE_CHANGE);
  7851. }
  7852. void wpas_p2p_deinit_iface(struct wpa_supplicant *wpa_s)
  7853. {
  7854. if (wpa_s == wpa_s->global->p2p_init_wpa_s && wpa_s->global->p2p) {
  7855. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Disable P2P since removing "
  7856. "the management interface is being removed");
  7857. wpas_p2p_deinit_global(wpa_s->global);
  7858. }
  7859. }
  7860. void wpas_p2p_ap_deinit(struct wpa_supplicant *wpa_s)
  7861. {
  7862. if (wpa_s->ap_iface->bss)
  7863. wpa_s->ap_iface->bss[0]->p2p_group = NULL;
  7864. wpas_p2p_group_deinit(wpa_s);
  7865. }
  7866. int wpas_p2p_lo_start(struct wpa_supplicant *wpa_s, unsigned int freq,
  7867. unsigned int period, unsigned int interval,
  7868. unsigned int count)
  7869. {
  7870. struct p2p_data *p2p = wpa_s->global->p2p;
  7871. u8 *device_types;
  7872. size_t dev_types_len;
  7873. struct wpabuf *buf;
  7874. int ret;
  7875. if (wpa_s->p2p_lo_started) {
  7876. wpa_dbg(wpa_s, MSG_DEBUG,
  7877. "P2P Listen offload is already started");
  7878. return 0;
  7879. }
  7880. if (wpa_s->global->p2p == NULL ||
  7881. !(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_LISTEN_OFFLOAD)) {
  7882. wpa_printf(MSG_DEBUG, "P2P: Listen offload not supported");
  7883. return -1;
  7884. }
  7885. if (!p2p_supported_freq(wpa_s->global->p2p, freq)) {
  7886. wpa_printf(MSG_ERROR, "P2P: Input channel not supported: %u",
  7887. freq);
  7888. return -1;
  7889. }
  7890. /* Get device type */
  7891. dev_types_len = (wpa_s->conf->num_sec_device_types + 1) *
  7892. WPS_DEV_TYPE_LEN;
  7893. device_types = os_malloc(dev_types_len);
  7894. if (!device_types)
  7895. return -1;
  7896. os_memcpy(device_types, wpa_s->conf->device_type, WPS_DEV_TYPE_LEN);
  7897. os_memcpy(&device_types[WPS_DEV_TYPE_LEN], wpa_s->conf->sec_device_type,
  7898. wpa_s->conf->num_sec_device_types * WPS_DEV_TYPE_LEN);
  7899. /* Get Probe Response IE(s) */
  7900. buf = p2p_build_probe_resp_template(p2p, freq);
  7901. if (!buf) {
  7902. os_free(device_types);
  7903. return -1;
  7904. }
  7905. ret = wpa_drv_p2p_lo_start(wpa_s, freq, period, interval, count,
  7906. device_types, dev_types_len,
  7907. wpabuf_mhead_u8(buf), wpabuf_len(buf));
  7908. if (ret < 0)
  7909. wpa_dbg(wpa_s, MSG_DEBUG,
  7910. "P2P: Failed to start P2P listen offload");
  7911. os_free(device_types);
  7912. wpabuf_free(buf);
  7913. if (ret == 0) {
  7914. wpa_s->p2p_lo_started = 1;
  7915. /* Stop current P2P listen if any */
  7916. wpas_stop_listen(wpa_s);
  7917. }
  7918. return ret;
  7919. }
  7920. int wpas_p2p_lo_stop(struct wpa_supplicant *wpa_s)
  7921. {
  7922. int ret;
  7923. if (!wpa_s->p2p_lo_started)
  7924. return 0;
  7925. ret = wpa_drv_p2p_lo_stop(wpa_s);
  7926. if (ret < 0)
  7927. wpa_dbg(wpa_s, MSG_DEBUG,
  7928. "P2P: Failed to stop P2P listen offload");
  7929. wpa_s->p2p_lo_started = 0;
  7930. return ret;
  7931. }