p2p_supplicant.c 249 KB

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