p2p_supplicant.c 244 KB

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