p2p_supplicant.c 245 KB

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