p2p_supplicant.c 228 KB

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