p2p_supplicant.c 183 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582
  1. /*
  2. * wpa_supplicant - P2P
  3. * Copyright (c) 2009-2010, Atheros Communications
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "common.h"
  10. #include "eloop.h"
  11. #include "common/ieee802_11_common.h"
  12. #include "common/ieee802_11_defs.h"
  13. #include "common/wpa_ctrl.h"
  14. #include "wps/wps_i.h"
  15. #include "p2p/p2p.h"
  16. #include "ap/hostapd.h"
  17. #include "ap/ap_config.h"
  18. #include "ap/sta_info.h"
  19. #include "ap/ap_drv_ops.h"
  20. #include "ap/p2p_hostapd.h"
  21. #include "eapol_supp/eapol_supp_sm.h"
  22. #include "rsn_supp/wpa.h"
  23. #include "wpa_supplicant_i.h"
  24. #include "driver_i.h"
  25. #include "ap.h"
  26. #include "config_ssid.h"
  27. #include "config.h"
  28. #include "notify.h"
  29. #include "scan.h"
  30. #include "bss.h"
  31. #include "offchannel.h"
  32. #include "wps_supplicant.h"
  33. #include "p2p_supplicant.h"
  34. /*
  35. * How many times to try to scan to find the GO before giving up on join
  36. * request.
  37. */
  38. #define P2P_MAX_JOIN_SCAN_ATTEMPTS 10
  39. #define P2P_AUTO_PD_SCAN_ATTEMPTS 5
  40. #ifndef P2P_MAX_CLIENT_IDLE
  41. /*
  42. * How many seconds to try to reconnect to the GO when connection in P2P client
  43. * role has been lost.
  44. */
  45. #define P2P_MAX_CLIENT_IDLE 10
  46. #endif /* P2P_MAX_CLIENT_IDLE */
  47. #ifndef P2P_MAX_INITIAL_CONN_WAIT
  48. /*
  49. * How many seconds to wait for initial 4-way handshake to get completed after
  50. * WPS provisioning step.
  51. */
  52. #define P2P_MAX_INITIAL_CONN_WAIT 10
  53. #endif /* P2P_MAX_INITIAL_CONN_WAIT */
  54. #ifndef P2P_MAX_INITIAL_CONN_WAIT_GO
  55. /*
  56. * How many seconds to wait for initial 4-way handshake to get completed after
  57. * WPS provisioning step on the GO. This controls the extra time the P2P
  58. * operation is considered to be in progress (e.g., to delay other scans) after
  59. * WPS provisioning has been completed on the GO during group formation.
  60. */
  61. #define P2P_MAX_INITIAL_CONN_WAIT_GO 10
  62. #endif /* P2P_MAX_INITIAL_CONN_WAIT_GO */
  63. #ifndef P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE
  64. /*
  65. * How many seconds to wait for initial 4-way handshake to get completed after
  66. * re-invocation of a persistent group on the GO when the client is expected
  67. * to connect automatically (no user interaction).
  68. */
  69. #define P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE 15
  70. #endif /* P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE */
  71. #ifndef P2P_CONCURRENT_SEARCH_DELAY
  72. #define P2P_CONCURRENT_SEARCH_DELAY 500
  73. #endif /* P2P_CONCURRENT_SEARCH_DELAY */
  74. #define P2P_MGMT_DEVICE_PREFIX "p2p-dev-"
  75. enum p2p_group_removal_reason {
  76. P2P_GROUP_REMOVAL_UNKNOWN,
  77. P2P_GROUP_REMOVAL_SILENT,
  78. P2P_GROUP_REMOVAL_FORMATION_FAILED,
  79. P2P_GROUP_REMOVAL_REQUESTED,
  80. P2P_GROUP_REMOVAL_IDLE_TIMEOUT,
  81. P2P_GROUP_REMOVAL_UNAVAILABLE,
  82. P2P_GROUP_REMOVAL_GO_ENDING_SESSION,
  83. P2P_GROUP_REMOVAL_PSK_FAILURE
  84. };
  85. static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx);
  86. static struct wpa_supplicant *
  87. wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
  88. int go);
  89. static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s);
  90. static void wpas_p2p_join_scan_req(struct wpa_supplicant *wpa_s, int freq);
  91. static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx);
  92. static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
  93. const u8 *dev_addr, enum p2p_wps_method wps_method,
  94. int auto_join);
  95. static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s);
  96. static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s);
  97. static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx);
  98. static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s);
  99. static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
  100. void *timeout_ctx);
  101. static void wpas_p2p_fallback_to_go_neg(struct wpa_supplicant *wpa_s,
  102. int group_added);
  103. static int wpas_p2p_stop_find_oper(struct wpa_supplicant *wpa_s);
  104. /*
  105. * Get the number of concurrent channels that the HW can operate, but that are
  106. * currently not in use by any of the wpa_supplicant interfaces.
  107. */
  108. static int wpas_p2p_num_unused_channels(struct wpa_supplicant *wpa_s)
  109. {
  110. int *freqs;
  111. int num, unused;
  112. freqs = os_calloc(wpa_s->num_multichan_concurrent, sizeof(int));
  113. if (!freqs)
  114. return -1;
  115. num = get_shared_radio_freqs(wpa_s, freqs,
  116. wpa_s->num_multichan_concurrent);
  117. os_free(freqs);
  118. unused = wpa_s->num_multichan_concurrent - num;
  119. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: num_unused_channels: %d", unused);
  120. return unused;
  121. }
  122. /*
  123. * Get the frequencies that are currently in use by one or more of the virtual
  124. * interfaces, and that are also valid for P2P operation.
  125. */
  126. static int wpas_p2p_valid_oper_freqs(struct wpa_supplicant *wpa_s,
  127. int *p2p_freqs, unsigned int len)
  128. {
  129. int *freqs;
  130. unsigned int num, i, j;
  131. freqs = os_calloc(wpa_s->num_multichan_concurrent, sizeof(int));
  132. if (!freqs)
  133. return -1;
  134. num = get_shared_radio_freqs(wpa_s, freqs,
  135. wpa_s->num_multichan_concurrent);
  136. os_memset(p2p_freqs, 0, sizeof(int) * len);
  137. for (i = 0, j = 0; i < num && j < len; i++) {
  138. if (p2p_supported_freq(wpa_s->global->p2p, freqs[i]))
  139. p2p_freqs[j++] = freqs[i];
  140. }
  141. os_free(freqs);
  142. dump_freq_array(wpa_s, "valid for P2P", p2p_freqs, j);
  143. return j;
  144. }
  145. static void wpas_p2p_set_own_freq_preference(struct wpa_supplicant *wpa_s,
  146. int freq)
  147. {
  148. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  149. return;
  150. if (freq > 0 && wpa_s->num_multichan_concurrent > 1 &&
  151. wpas_p2p_num_unused_channels(wpa_s) > 0 &&
  152. wpa_s->parent->conf->p2p_ignore_shared_freq)
  153. freq = 0;
  154. p2p_set_own_freq_preference(wpa_s->global->p2p, freq);
  155. }
  156. static void wpas_p2p_scan_res_handler(struct wpa_supplicant *wpa_s,
  157. struct wpa_scan_results *scan_res)
  158. {
  159. size_t i;
  160. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  161. return;
  162. wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS)",
  163. (int) scan_res->num);
  164. for (i = 0; i < scan_res->num; i++) {
  165. struct wpa_scan_res *bss = scan_res->res[i];
  166. struct os_time time_tmp_age, entry_ts;
  167. const u8 *ies;
  168. size_t ies_len;
  169. time_tmp_age.sec = bss->age / 1000;
  170. time_tmp_age.usec = (bss->age % 1000) * 1000;
  171. os_time_sub(&scan_res->fetch_time, &time_tmp_age, &entry_ts);
  172. ies = (const u8 *) (bss + 1);
  173. ies_len = bss->ie_len;
  174. if (bss->beacon_ie_len > 0 &&
  175. !wpa_scan_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE) &&
  176. wpa_scan_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE)) {
  177. wpa_printf(MSG_DEBUG, "P2P: Use P2P IE(s) from Beacon frame since no P2P IE(s) in Probe Response frames received for "
  178. MACSTR, MAC2STR(bss->bssid));
  179. ies = ies + ies_len;
  180. ies_len = bss->beacon_ie_len;
  181. }
  182. if (p2p_scan_res_handler(wpa_s->global->p2p, bss->bssid,
  183. bss->freq, &entry_ts, bss->level,
  184. ies, ies_len) > 0)
  185. break;
  186. }
  187. p2p_scan_res_handled(wpa_s->global->p2p);
  188. }
  189. static int wpas_p2p_scan(void *ctx, enum p2p_scan_type type, int freq,
  190. unsigned int num_req_dev_types,
  191. const u8 *req_dev_types, const u8 *dev_id, u16 pw_id)
  192. {
  193. struct wpa_supplicant *wpa_s = ctx;
  194. struct wpa_supplicant *ifs;
  195. struct wpa_driver_scan_params params;
  196. int ret;
  197. struct wpabuf *wps_ie, *ies;
  198. int social_channels[] = { 2412, 2437, 2462, 0, 0 };
  199. size_t ielen;
  200. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  201. return -1;
  202. for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
  203. if (ifs->sta_scan_pending &&
  204. (wpas_scan_scheduled(ifs) || ifs->scanning) &&
  205. wpas_p2p_in_progress(wpa_s) == 2) {
  206. wpa_printf(MSG_DEBUG, "Delaying P2P scan to allow "
  207. "pending station mode scan to be "
  208. "completed on interface %s", ifs->ifname);
  209. wpa_s->global->p2p_cb_on_scan_complete = 1;
  210. wpa_supplicant_req_scan(ifs, 0, 0);
  211. return 1;
  212. }
  213. }
  214. os_memset(&params, 0, sizeof(params));
  215. /* P2P Wildcard SSID */
  216. params.num_ssids = 1;
  217. params.ssids[0].ssid = (u8 *) P2P_WILDCARD_SSID;
  218. params.ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
  219. wpa_s->wps->dev.p2p = 1;
  220. wps_ie = wps_build_probe_req_ie(pw_id, &wpa_s->wps->dev,
  221. wpa_s->wps->uuid, WPS_REQ_ENROLLEE,
  222. num_req_dev_types, req_dev_types);
  223. if (wps_ie == NULL)
  224. return -1;
  225. ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
  226. ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
  227. if (ies == NULL) {
  228. wpabuf_free(wps_ie);
  229. return -1;
  230. }
  231. wpabuf_put_buf(ies, wps_ie);
  232. wpabuf_free(wps_ie);
  233. p2p_scan_ie(wpa_s->global->p2p, ies, dev_id);
  234. params.p2p_probe = 1;
  235. params.extra_ies = wpabuf_head(ies);
  236. params.extra_ies_len = wpabuf_len(ies);
  237. switch (type) {
  238. case P2P_SCAN_SOCIAL:
  239. params.freqs = social_channels;
  240. break;
  241. case P2P_SCAN_FULL:
  242. break;
  243. case P2P_SCAN_SOCIAL_PLUS_ONE:
  244. social_channels[3] = freq;
  245. params.freqs = social_channels;
  246. break;
  247. }
  248. ret = wpa_drv_scan(wpa_s, &params);
  249. wpabuf_free(ies);
  250. if (ret) {
  251. for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
  252. if (ifs->scanning ||
  253. ifs->scan_res_handler == wpas_p2p_scan_res_handler) {
  254. wpa_s->global->p2p_cb_on_scan_complete = 1;
  255. ret = 1;
  256. break;
  257. }
  258. }
  259. } else {
  260. os_get_time(&wpa_s->scan_trigger_time);
  261. wpa_s->scan_res_handler = wpas_p2p_scan_res_handler;
  262. }
  263. return ret;
  264. }
  265. static enum wpa_driver_if_type wpas_p2p_if_type(int p2p_group_interface)
  266. {
  267. switch (p2p_group_interface) {
  268. case P2P_GROUP_INTERFACE_PENDING:
  269. return WPA_IF_P2P_GROUP;
  270. case P2P_GROUP_INTERFACE_GO:
  271. return WPA_IF_P2P_GO;
  272. case P2P_GROUP_INTERFACE_CLIENT:
  273. return WPA_IF_P2P_CLIENT;
  274. }
  275. return WPA_IF_P2P_GROUP;
  276. }
  277. static struct wpa_supplicant * wpas_get_p2p_group(struct wpa_supplicant *wpa_s,
  278. const u8 *ssid,
  279. size_t ssid_len, int *go)
  280. {
  281. struct wpa_ssid *s;
  282. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  283. for (s = wpa_s->conf->ssid; s; s = s->next) {
  284. if (s->disabled != 0 || !s->p2p_group ||
  285. s->ssid_len != ssid_len ||
  286. os_memcmp(ssid, s->ssid, ssid_len) != 0)
  287. continue;
  288. if (s->mode == WPAS_MODE_P2P_GO &&
  289. s != wpa_s->current_ssid)
  290. continue;
  291. if (go)
  292. *go = s->mode == WPAS_MODE_P2P_GO;
  293. return wpa_s;
  294. }
  295. }
  296. return NULL;
  297. }
  298. static int wpas_p2p_group_delete(struct wpa_supplicant *wpa_s,
  299. enum p2p_group_removal_reason removal_reason)
  300. {
  301. struct wpa_ssid *ssid;
  302. char *gtype;
  303. const char *reason;
  304. ssid = wpa_s->current_ssid;
  305. if (ssid == NULL) {
  306. /*
  307. * The current SSID was not known, but there may still be a
  308. * pending P2P group interface waiting for provisioning or a
  309. * P2P group that is trying to reconnect.
  310. */
  311. ssid = wpa_s->conf->ssid;
  312. while (ssid) {
  313. if (ssid->p2p_group && ssid->disabled != 2)
  314. break;
  315. ssid = ssid->next;
  316. }
  317. if (ssid == NULL &&
  318. wpa_s->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)
  319. {
  320. wpa_printf(MSG_ERROR, "P2P: P2P group interface "
  321. "not found");
  322. return -1;
  323. }
  324. }
  325. if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO)
  326. gtype = "GO";
  327. else if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT ||
  328. (ssid && ssid->mode == WPAS_MODE_INFRA)) {
  329. wpa_s->reassociate = 0;
  330. wpa_s->disconnected = 1;
  331. wpa_supplicant_deauthenticate(wpa_s,
  332. WLAN_REASON_DEAUTH_LEAVING);
  333. gtype = "client";
  334. } else
  335. gtype = "GO";
  336. if (wpa_s->cross_connect_in_use) {
  337. wpa_s->cross_connect_in_use = 0;
  338. wpa_msg_global(wpa_s->parent, MSG_INFO,
  339. P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
  340. wpa_s->ifname, wpa_s->cross_connect_uplink);
  341. }
  342. switch (removal_reason) {
  343. case P2P_GROUP_REMOVAL_REQUESTED:
  344. reason = " reason=REQUESTED";
  345. break;
  346. case P2P_GROUP_REMOVAL_FORMATION_FAILED:
  347. reason = " reason=FORMATION_FAILED";
  348. break;
  349. case P2P_GROUP_REMOVAL_IDLE_TIMEOUT:
  350. reason = " reason=IDLE";
  351. break;
  352. case P2P_GROUP_REMOVAL_UNAVAILABLE:
  353. reason = " reason=UNAVAILABLE";
  354. break;
  355. case P2P_GROUP_REMOVAL_GO_ENDING_SESSION:
  356. reason = " reason=GO_ENDING_SESSION";
  357. break;
  358. case P2P_GROUP_REMOVAL_PSK_FAILURE:
  359. reason = " reason=PSK_FAILURE";
  360. break;
  361. default:
  362. reason = "";
  363. break;
  364. }
  365. if (removal_reason != P2P_GROUP_REMOVAL_SILENT) {
  366. wpa_msg_global(wpa_s->parent, MSG_INFO,
  367. P2P_EVENT_GROUP_REMOVED "%s %s%s",
  368. wpa_s->ifname, gtype, reason);
  369. }
  370. if (eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
  371. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
  372. if (eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  373. wpa_s->parent, NULL) > 0) {
  374. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group formation "
  375. "timeout");
  376. wpa_s->p2p_in_provisioning = 0;
  377. }
  378. /*
  379. * Make sure wait for the first client does not remain active after the
  380. * group has been removed.
  381. */
  382. wpa_s->global->p2p_go_wait_client.sec = 0;
  383. if (removal_reason != P2P_GROUP_REMOVAL_SILENT && ssid)
  384. wpas_notify_p2p_group_removed(wpa_s, ssid, gtype);
  385. if (wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE) {
  386. struct wpa_global *global;
  387. char *ifname;
  388. enum wpa_driver_if_type type;
  389. wpa_printf(MSG_DEBUG, "P2P: Remove group interface %s",
  390. wpa_s->ifname);
  391. global = wpa_s->global;
  392. ifname = os_strdup(wpa_s->ifname);
  393. type = wpas_p2p_if_type(wpa_s->p2p_group_interface);
  394. wpa_supplicant_remove_iface(wpa_s->global, wpa_s, 0);
  395. wpa_s = global->ifaces;
  396. if (wpa_s && ifname)
  397. wpa_drv_if_remove(wpa_s, type, ifname);
  398. os_free(ifname);
  399. return 1;
  400. }
  401. if (!wpa_s->p2p_go_group_formation_completed) {
  402. wpa_s->global->p2p_group_formation = NULL;
  403. wpa_s->p2p_in_provisioning = 0;
  404. }
  405. wpa_s->show_group_started = 0;
  406. os_free(wpa_s->go_params);
  407. wpa_s->go_params = NULL;
  408. wpa_printf(MSG_DEBUG, "P2P: Remove temporary group network");
  409. if (ssid && (ssid->p2p_group ||
  410. ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION ||
  411. (ssid->key_mgmt & WPA_KEY_MGMT_WPS))) {
  412. int id = ssid->id;
  413. if (ssid == wpa_s->current_ssid) {
  414. wpa_sm_set_config(wpa_s->wpa, NULL);
  415. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  416. wpa_s->current_ssid = NULL;
  417. }
  418. /*
  419. * Networks objects created during any P2P activities are not
  420. * exposed out as they might/will confuse certain non-P2P aware
  421. * applications since these network objects won't behave like
  422. * regular ones.
  423. *
  424. * Likewise, we don't send out network removed signals for such
  425. * network objects.
  426. */
  427. wpa_config_remove_network(wpa_s->conf, id);
  428. wpa_supplicant_clear_status(wpa_s);
  429. wpa_supplicant_cancel_sched_scan(wpa_s);
  430. wpa_s->sta_scan_pending = 0;
  431. } else {
  432. wpa_printf(MSG_DEBUG, "P2P: Temporary group network not "
  433. "found");
  434. }
  435. if (wpa_s->ap_iface)
  436. wpa_supplicant_ap_deinit(wpa_s);
  437. else
  438. wpa_drv_deinit_p2p_cli(wpa_s);
  439. return 0;
  440. }
  441. static int wpas_p2p_persistent_group(struct wpa_supplicant *wpa_s,
  442. u8 *go_dev_addr,
  443. const u8 *ssid, size_t ssid_len)
  444. {
  445. struct wpa_bss *bss;
  446. const u8 *bssid;
  447. struct wpabuf *p2p;
  448. u8 group_capab;
  449. const u8 *addr;
  450. if (wpa_s->go_params)
  451. bssid = wpa_s->go_params->peer_interface_addr;
  452. else
  453. bssid = wpa_s->bssid;
  454. bss = wpa_bss_get(wpa_s, bssid, ssid, ssid_len);
  455. if (bss == NULL) {
  456. u8 iface_addr[ETH_ALEN];
  457. if (p2p_get_interface_addr(wpa_s->global->p2p, bssid,
  458. iface_addr) == 0)
  459. bss = wpa_bss_get(wpa_s, iface_addr, ssid, ssid_len);
  460. }
  461. if (bss == NULL) {
  462. wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
  463. "group is persistent - BSS " MACSTR " not found",
  464. MAC2STR(bssid));
  465. return 0;
  466. }
  467. p2p = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
  468. if (p2p == NULL)
  469. p2p = wpa_bss_get_vendor_ie_multi_beacon(bss,
  470. P2P_IE_VENDOR_TYPE);
  471. if (p2p == NULL) {
  472. wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
  473. "group is persistent - BSS " MACSTR
  474. " did not include P2P IE", MAC2STR(bssid));
  475. wpa_hexdump(MSG_DEBUG, "P2P: Probe Response IEs",
  476. (u8 *) (bss + 1), bss->ie_len);
  477. wpa_hexdump(MSG_DEBUG, "P2P: Beacon IEs",
  478. ((u8 *) bss + 1) + bss->ie_len,
  479. bss->beacon_ie_len);
  480. return 0;
  481. }
  482. group_capab = p2p_get_group_capab(p2p);
  483. addr = p2p_get_go_dev_addr(p2p);
  484. wpa_printf(MSG_DEBUG, "P2P: Checking whether group is persistent: "
  485. "group_capab=0x%x", group_capab);
  486. if (addr) {
  487. os_memcpy(go_dev_addr, addr, ETH_ALEN);
  488. wpa_printf(MSG_DEBUG, "P2P: GO Device Address " MACSTR,
  489. MAC2STR(addr));
  490. } else
  491. os_memset(go_dev_addr, 0, ETH_ALEN);
  492. wpabuf_free(p2p);
  493. wpa_printf(MSG_DEBUG, "P2P: BSS " MACSTR " group_capab=0x%x "
  494. "go_dev_addr=" MACSTR,
  495. MAC2STR(bssid), group_capab, MAC2STR(go_dev_addr));
  496. return group_capab & P2P_GROUP_CAPAB_PERSISTENT_GROUP;
  497. }
  498. static int wpas_p2p_store_persistent_group(struct wpa_supplicant *wpa_s,
  499. struct wpa_ssid *ssid,
  500. const u8 *go_dev_addr)
  501. {
  502. struct wpa_ssid *s;
  503. int changed = 0;
  504. wpa_printf(MSG_DEBUG, "P2P: Storing credentials for a persistent "
  505. "group (GO Dev Addr " MACSTR ")", MAC2STR(go_dev_addr));
  506. for (s = wpa_s->conf->ssid; s; s = s->next) {
  507. if (s->disabled == 2 &&
  508. os_memcmp(go_dev_addr, s->bssid, ETH_ALEN) == 0 &&
  509. s->ssid_len == ssid->ssid_len &&
  510. os_memcmp(ssid->ssid, s->ssid, ssid->ssid_len) == 0)
  511. break;
  512. }
  513. if (s) {
  514. wpa_printf(MSG_DEBUG, "P2P: Update existing persistent group "
  515. "entry");
  516. if (ssid->passphrase && !s->passphrase)
  517. changed = 1;
  518. else if (ssid->passphrase && s->passphrase &&
  519. os_strcmp(ssid->passphrase, s->passphrase) != 0)
  520. changed = 1;
  521. } else {
  522. wpa_printf(MSG_DEBUG, "P2P: Create a new persistent group "
  523. "entry");
  524. changed = 1;
  525. s = wpa_config_add_network(wpa_s->conf);
  526. if (s == NULL)
  527. return -1;
  528. /*
  529. * Instead of network_added we emit persistent_group_added
  530. * notification. Also to keep the defense checks in
  531. * persistent_group obj registration method, we set the
  532. * relevant flags in s to designate it as a persistent group.
  533. */
  534. s->p2p_group = 1;
  535. s->p2p_persistent_group = 1;
  536. wpas_notify_persistent_group_added(wpa_s, s);
  537. wpa_config_set_network_defaults(s);
  538. }
  539. s->p2p_group = 1;
  540. s->p2p_persistent_group = 1;
  541. s->disabled = 2;
  542. s->bssid_set = 1;
  543. os_memcpy(s->bssid, go_dev_addr, ETH_ALEN);
  544. s->mode = ssid->mode;
  545. s->auth_alg = WPA_AUTH_ALG_OPEN;
  546. s->key_mgmt = WPA_KEY_MGMT_PSK;
  547. s->proto = WPA_PROTO_RSN;
  548. s->pairwise_cipher = WPA_CIPHER_CCMP;
  549. s->export_keys = 1;
  550. if (ssid->passphrase) {
  551. os_free(s->passphrase);
  552. s->passphrase = os_strdup(ssid->passphrase);
  553. }
  554. if (ssid->psk_set) {
  555. s->psk_set = 1;
  556. os_memcpy(s->psk, ssid->psk, 32);
  557. }
  558. if (s->passphrase && !s->psk_set)
  559. wpa_config_update_psk(s);
  560. if (s->ssid == NULL || s->ssid_len < ssid->ssid_len) {
  561. os_free(s->ssid);
  562. s->ssid = os_malloc(ssid->ssid_len);
  563. }
  564. if (s->ssid) {
  565. s->ssid_len = ssid->ssid_len;
  566. os_memcpy(s->ssid, ssid->ssid, s->ssid_len);
  567. }
  568. if (ssid->mode == WPAS_MODE_P2P_GO && wpa_s->global->add_psk) {
  569. dl_list_add(&s->psk_list, &wpa_s->global->add_psk->list);
  570. wpa_s->global->add_psk = NULL;
  571. changed = 1;
  572. }
  573. #ifndef CONFIG_NO_CONFIG_WRITE
  574. if (changed && wpa_s->conf->update_config &&
  575. wpa_config_write(wpa_s->confname, wpa_s->conf)) {
  576. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  577. }
  578. #endif /* CONFIG_NO_CONFIG_WRITE */
  579. return s->id;
  580. }
  581. static void wpas_p2p_add_persistent_group_client(struct wpa_supplicant *wpa_s,
  582. const u8 *addr)
  583. {
  584. struct wpa_ssid *ssid, *s;
  585. u8 *n;
  586. size_t i;
  587. int found = 0;
  588. ssid = wpa_s->current_ssid;
  589. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
  590. !ssid->p2p_persistent_group)
  591. return;
  592. for (s = wpa_s->parent->conf->ssid; s; s = s->next) {
  593. if (s->disabled != 2 || s->mode != WPAS_MODE_P2P_GO)
  594. continue;
  595. if (s->ssid_len == ssid->ssid_len &&
  596. os_memcmp(s->ssid, ssid->ssid, s->ssid_len) == 0)
  597. break;
  598. }
  599. if (s == NULL)
  600. return;
  601. for (i = 0; s->p2p_client_list && i < s->num_p2p_clients; i++) {
  602. if (os_memcmp(s->p2p_client_list + i * ETH_ALEN, addr,
  603. ETH_ALEN) != 0)
  604. continue;
  605. if (i == s->num_p2p_clients - 1)
  606. return; /* already the most recent entry */
  607. /* move the entry to mark it most recent */
  608. os_memmove(s->p2p_client_list + i * ETH_ALEN,
  609. s->p2p_client_list + (i + 1) * ETH_ALEN,
  610. (s->num_p2p_clients - i - 1) * ETH_ALEN);
  611. os_memcpy(s->p2p_client_list +
  612. (s->num_p2p_clients - 1) * ETH_ALEN, addr, ETH_ALEN);
  613. found = 1;
  614. break;
  615. }
  616. if (!found && s->num_p2p_clients < P2P_MAX_STORED_CLIENTS) {
  617. n = os_realloc_array(s->p2p_client_list,
  618. s->num_p2p_clients + 1, ETH_ALEN);
  619. if (n == NULL)
  620. return;
  621. os_memcpy(n + s->num_p2p_clients * ETH_ALEN, addr, ETH_ALEN);
  622. s->p2p_client_list = n;
  623. s->num_p2p_clients++;
  624. } else if (!found) {
  625. /* Not enough room for an additional entry - drop the oldest
  626. * entry */
  627. os_memmove(s->p2p_client_list,
  628. s->p2p_client_list + ETH_ALEN,
  629. (s->num_p2p_clients - 1) * ETH_ALEN);
  630. os_memcpy(s->p2p_client_list +
  631. (s->num_p2p_clients - 1) * ETH_ALEN,
  632. addr, ETH_ALEN);
  633. }
  634. #ifndef CONFIG_NO_CONFIG_WRITE
  635. if (wpa_s->parent->conf->update_config &&
  636. wpa_config_write(wpa_s->parent->confname, wpa_s->parent->conf))
  637. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  638. #endif /* CONFIG_NO_CONFIG_WRITE */
  639. }
  640. static void wpas_group_formation_completed(struct wpa_supplicant *wpa_s,
  641. int success)
  642. {
  643. struct wpa_ssid *ssid;
  644. const char *ssid_txt;
  645. int client;
  646. int persistent;
  647. u8 go_dev_addr[ETH_ALEN];
  648. int network_id = -1;
  649. /*
  650. * This callback is likely called for the main interface. Update wpa_s
  651. * to use the group interface if a new interface was created for the
  652. * group.
  653. */
  654. if (wpa_s->global->p2p_group_formation)
  655. wpa_s = wpa_s->global->p2p_group_formation;
  656. if (wpa_s->p2p_go_group_formation_completed) {
  657. wpa_s->global->p2p_group_formation = NULL;
  658. wpa_s->p2p_in_provisioning = 0;
  659. }
  660. if (!success) {
  661. wpa_msg_global(wpa_s->parent, MSG_INFO,
  662. P2P_EVENT_GROUP_FORMATION_FAILURE);
  663. wpas_p2p_group_delete(wpa_s,
  664. P2P_GROUP_REMOVAL_FORMATION_FAILED);
  665. return;
  666. }
  667. wpa_msg_global(wpa_s->parent, MSG_INFO,
  668. P2P_EVENT_GROUP_FORMATION_SUCCESS);
  669. ssid = wpa_s->current_ssid;
  670. if (ssid && ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
  671. ssid->mode = WPAS_MODE_P2P_GO;
  672. p2p_group_notif_formation_done(wpa_s->p2p_group);
  673. wpa_supplicant_ap_mac_addr_filter(wpa_s, NULL);
  674. }
  675. persistent = 0;
  676. if (ssid) {
  677. ssid_txt = wpa_ssid_txt(ssid->ssid, ssid->ssid_len);
  678. client = ssid->mode == WPAS_MODE_INFRA;
  679. if (ssid->mode == WPAS_MODE_P2P_GO) {
  680. persistent = ssid->p2p_persistent_group;
  681. os_memcpy(go_dev_addr, wpa_s->global->p2p_dev_addr,
  682. ETH_ALEN);
  683. } else
  684. persistent = wpas_p2p_persistent_group(wpa_s,
  685. go_dev_addr,
  686. ssid->ssid,
  687. ssid->ssid_len);
  688. } else {
  689. ssid_txt = "";
  690. client = wpa_s->p2p_group_interface ==
  691. P2P_GROUP_INTERFACE_CLIENT;
  692. os_memset(go_dev_addr, 0, ETH_ALEN);
  693. }
  694. wpa_s->show_group_started = 0;
  695. if (client) {
  696. /*
  697. * Indicate event only after successfully completed 4-way
  698. * handshake, i.e., when the interface is ready for data
  699. * packets.
  700. */
  701. wpa_s->show_group_started = 1;
  702. } else if (ssid && ssid->passphrase == NULL && ssid->psk_set) {
  703. char psk[65];
  704. wpa_snprintf_hex(psk, sizeof(psk), ssid->psk, 32);
  705. wpa_msg_global(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  706. "%s GO ssid=\"%s\" freq=%d psk=%s go_dev_addr="
  707. MACSTR "%s",
  708. wpa_s->ifname, ssid_txt, ssid->frequency, psk,
  709. MAC2STR(go_dev_addr),
  710. persistent ? " [PERSISTENT]" : "");
  711. wpas_p2p_cross_connect_setup(wpa_s);
  712. wpas_p2p_set_group_idle_timeout(wpa_s);
  713. } else {
  714. wpa_msg_global(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  715. "%s GO ssid=\"%s\" freq=%d passphrase=\"%s\" "
  716. "go_dev_addr=" MACSTR "%s",
  717. wpa_s->ifname, ssid_txt,
  718. ssid ? ssid->frequency : 0,
  719. ssid && ssid->passphrase ? ssid->passphrase : "",
  720. MAC2STR(go_dev_addr),
  721. persistent ? " [PERSISTENT]" : "");
  722. wpas_p2p_cross_connect_setup(wpa_s);
  723. wpas_p2p_set_group_idle_timeout(wpa_s);
  724. }
  725. if (persistent)
  726. network_id = wpas_p2p_store_persistent_group(wpa_s->parent,
  727. ssid, go_dev_addr);
  728. else {
  729. os_free(wpa_s->global->add_psk);
  730. wpa_s->global->add_psk = NULL;
  731. }
  732. if (network_id < 0 && ssid)
  733. network_id = ssid->id;
  734. if (!client) {
  735. wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 0);
  736. os_get_time(&wpa_s->global->p2p_go_wait_client);
  737. }
  738. }
  739. static void wpas_p2p_send_action_tx_status(struct wpa_supplicant *wpa_s,
  740. unsigned int freq,
  741. const u8 *dst, const u8 *src,
  742. const u8 *bssid,
  743. const u8 *data, size_t data_len,
  744. enum offchannel_send_action_result
  745. result)
  746. {
  747. enum p2p_send_action_result res = P2P_SEND_ACTION_SUCCESS;
  748. if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled)
  749. return;
  750. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  751. return;
  752. switch (result) {
  753. case OFFCHANNEL_SEND_ACTION_SUCCESS:
  754. res = P2P_SEND_ACTION_SUCCESS;
  755. break;
  756. case OFFCHANNEL_SEND_ACTION_NO_ACK:
  757. res = P2P_SEND_ACTION_NO_ACK;
  758. break;
  759. case OFFCHANNEL_SEND_ACTION_FAILED:
  760. res = P2P_SEND_ACTION_FAILED;
  761. break;
  762. }
  763. p2p_send_action_cb(wpa_s->global->p2p, freq, dst, src, bssid, res);
  764. if (result != OFFCHANNEL_SEND_ACTION_SUCCESS &&
  765. wpa_s->pending_pd_before_join &&
  766. (os_memcmp(dst, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
  767. os_memcmp(dst, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0) &&
  768. wpa_s->p2p_fallback_to_go_neg) {
  769. wpa_s->pending_pd_before_join = 0;
  770. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No ACK for PD Req "
  771. "during p2p_connect-auto");
  772. wpas_p2p_fallback_to_go_neg(wpa_s, 0);
  773. return;
  774. }
  775. }
  776. static int wpas_send_action(void *ctx, unsigned int freq, const u8 *dst,
  777. const u8 *src, const u8 *bssid, const u8 *buf,
  778. size_t len, unsigned int wait_time)
  779. {
  780. struct wpa_supplicant *wpa_s = ctx;
  781. return offchannel_send_action(wpa_s, freq, dst, src, bssid, buf, len,
  782. wait_time,
  783. wpas_p2p_send_action_tx_status, 1);
  784. }
  785. static void wpas_send_action_done(void *ctx)
  786. {
  787. struct wpa_supplicant *wpa_s = ctx;
  788. offchannel_send_action_done(wpa_s);
  789. }
  790. static int wpas_copy_go_neg_results(struct wpa_supplicant *wpa_s,
  791. struct p2p_go_neg_results *params)
  792. {
  793. if (wpa_s->go_params == NULL) {
  794. wpa_s->go_params = os_malloc(sizeof(*params));
  795. if (wpa_s->go_params == NULL)
  796. return -1;
  797. }
  798. os_memcpy(wpa_s->go_params, params, sizeof(*params));
  799. return 0;
  800. }
  801. static void wpas_start_wps_enrollee(struct wpa_supplicant *wpa_s,
  802. struct p2p_go_neg_results *res)
  803. {
  804. wpa_printf(MSG_DEBUG, "P2P: Start WPS Enrollee for peer " MACSTR,
  805. MAC2STR(res->peer_interface_addr));
  806. wpa_hexdump_ascii(MSG_DEBUG, "P2P: Start WPS Enrollee for SSID",
  807. res->ssid, res->ssid_len);
  808. wpa_supplicant_ap_deinit(wpa_s);
  809. wpas_copy_go_neg_results(wpa_s, res);
  810. if (res->wps_method == WPS_PBC)
  811. wpas_wps_start_pbc(wpa_s, res->peer_interface_addr, 1);
  812. else {
  813. u16 dev_pw_id = DEV_PW_DEFAULT;
  814. if (wpa_s->p2p_wps_method == WPS_PIN_KEYPAD)
  815. dev_pw_id = DEV_PW_REGISTRAR_SPECIFIED;
  816. wpas_wps_start_pin(wpa_s, res->peer_interface_addr,
  817. wpa_s->p2p_pin, 1, dev_pw_id);
  818. }
  819. }
  820. static void wpas_p2p_add_psk_list(struct wpa_supplicant *wpa_s,
  821. struct wpa_ssid *ssid)
  822. {
  823. struct wpa_ssid *persistent;
  824. struct psk_list_entry *psk;
  825. struct hostapd_data *hapd;
  826. if (!wpa_s->ap_iface)
  827. return;
  828. persistent = wpas_p2p_get_persistent(wpa_s->parent, NULL, ssid->ssid,
  829. ssid->ssid_len);
  830. if (persistent == NULL)
  831. return;
  832. hapd = wpa_s->ap_iface->bss[0];
  833. dl_list_for_each(psk, &persistent->psk_list, struct psk_list_entry,
  834. list) {
  835. struct hostapd_wpa_psk *hpsk;
  836. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add persistent group PSK entry for "
  837. MACSTR " psk=%d",
  838. MAC2STR(psk->addr), psk->p2p);
  839. hpsk = os_zalloc(sizeof(*hpsk));
  840. if (hpsk == NULL)
  841. break;
  842. os_memcpy(hpsk->psk, psk->psk, PMK_LEN);
  843. if (psk->p2p)
  844. os_memcpy(hpsk->p2p_dev_addr, psk->addr, ETH_ALEN);
  845. else
  846. os_memcpy(hpsk->addr, psk->addr, ETH_ALEN);
  847. hpsk->next = hapd->conf->ssid.wpa_psk;
  848. hapd->conf->ssid.wpa_psk = hpsk;
  849. }
  850. }
  851. static void p2p_go_configured(void *ctx, void *data)
  852. {
  853. struct wpa_supplicant *wpa_s = ctx;
  854. struct p2p_go_neg_results *params = data;
  855. struct wpa_ssid *ssid;
  856. int network_id = -1;
  857. ssid = wpa_s->current_ssid;
  858. if (ssid && ssid->mode == WPAS_MODE_P2P_GO) {
  859. wpa_printf(MSG_DEBUG, "P2P: Group setup without provisioning");
  860. if (wpa_s->global->p2p_group_formation == wpa_s)
  861. wpa_s->global->p2p_group_formation = NULL;
  862. if (os_strlen(params->passphrase) > 0) {
  863. wpa_msg_global(wpa_s->parent, MSG_INFO,
  864. P2P_EVENT_GROUP_STARTED
  865. "%s GO ssid=\"%s\" freq=%d "
  866. "passphrase=\"%s\" go_dev_addr=" MACSTR
  867. "%s", wpa_s->ifname,
  868. wpa_ssid_txt(ssid->ssid, ssid->ssid_len),
  869. ssid->frequency, params->passphrase,
  870. MAC2STR(wpa_s->global->p2p_dev_addr),
  871. params->persistent_group ?
  872. " [PERSISTENT]" : "");
  873. } else {
  874. char psk[65];
  875. wpa_snprintf_hex(psk, sizeof(psk), params->psk,
  876. sizeof(params->psk));
  877. wpa_msg_global(wpa_s->parent, MSG_INFO,
  878. P2P_EVENT_GROUP_STARTED
  879. "%s GO ssid=\"%s\" freq=%d psk=%s "
  880. "go_dev_addr=" MACSTR "%s",
  881. wpa_s->ifname,
  882. wpa_ssid_txt(ssid->ssid, ssid->ssid_len),
  883. ssid->frequency, psk,
  884. MAC2STR(wpa_s->global->p2p_dev_addr),
  885. params->persistent_group ?
  886. " [PERSISTENT]" : "");
  887. }
  888. os_get_time(&wpa_s->global->p2p_go_wait_client);
  889. if (params->persistent_group) {
  890. network_id = wpas_p2p_store_persistent_group(
  891. wpa_s->parent, ssid,
  892. wpa_s->global->p2p_dev_addr);
  893. wpas_p2p_add_psk_list(wpa_s, ssid);
  894. }
  895. if (network_id < 0)
  896. network_id = ssid->id;
  897. wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 0);
  898. wpas_p2p_cross_connect_setup(wpa_s);
  899. wpas_p2p_set_group_idle_timeout(wpa_s);
  900. if (wpa_s->p2p_first_connection_timeout) {
  901. wpa_dbg(wpa_s, MSG_DEBUG,
  902. "P2P: Start group formation timeout of %d seconds until first data connection on GO",
  903. wpa_s->p2p_first_connection_timeout);
  904. wpa_s->p2p_go_group_formation_completed = 0;
  905. wpa_s->global->p2p_group_formation = wpa_s;
  906. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  907. wpa_s->parent, NULL);
  908. eloop_register_timeout(
  909. wpa_s->p2p_first_connection_timeout, 0,
  910. wpas_p2p_group_formation_timeout,
  911. wpa_s->parent, NULL);
  912. }
  913. return;
  914. }
  915. wpa_printf(MSG_DEBUG, "P2P: Setting up WPS for GO provisioning");
  916. if (wpa_supplicant_ap_mac_addr_filter(wpa_s,
  917. params->peer_interface_addr)) {
  918. wpa_printf(MSG_DEBUG, "P2P: Failed to setup MAC address "
  919. "filtering");
  920. return;
  921. }
  922. if (params->wps_method == WPS_PBC)
  923. wpa_supplicant_ap_wps_pbc(wpa_s, params->peer_interface_addr,
  924. params->peer_device_addr);
  925. else if (wpa_s->p2p_pin[0])
  926. wpa_supplicant_ap_wps_pin(wpa_s, params->peer_interface_addr,
  927. wpa_s->p2p_pin, NULL, 0, 0);
  928. os_free(wpa_s->go_params);
  929. wpa_s->go_params = NULL;
  930. }
  931. static void wpas_start_wps_go(struct wpa_supplicant *wpa_s,
  932. struct p2p_go_neg_results *params,
  933. int group_formation)
  934. {
  935. struct wpa_ssid *ssid;
  936. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Starting GO");
  937. if (wpas_copy_go_neg_results(wpa_s, params) < 0) {
  938. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not copy GO Negotiation "
  939. "results");
  940. return;
  941. }
  942. ssid = wpa_config_add_network(wpa_s->conf);
  943. if (ssid == NULL) {
  944. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not add network for GO");
  945. return;
  946. }
  947. wpa_s->show_group_started = 0;
  948. wpa_config_set_network_defaults(ssid);
  949. ssid->temporary = 1;
  950. ssid->p2p_group = 1;
  951. ssid->p2p_persistent_group = params->persistent_group;
  952. ssid->mode = group_formation ? WPAS_MODE_P2P_GROUP_FORMATION :
  953. WPAS_MODE_P2P_GO;
  954. ssid->frequency = params->freq;
  955. ssid->ht40 = params->ht40;
  956. ssid->vht = params->vht;
  957. ssid->ssid = os_zalloc(params->ssid_len + 1);
  958. if (ssid->ssid) {
  959. os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
  960. ssid->ssid_len = params->ssid_len;
  961. }
  962. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  963. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  964. ssid->proto = WPA_PROTO_RSN;
  965. ssid->pairwise_cipher = WPA_CIPHER_CCMP;
  966. if (os_strlen(params->passphrase) > 0) {
  967. ssid->passphrase = os_strdup(params->passphrase);
  968. if (ssid->passphrase == NULL) {
  969. wpa_msg_global(wpa_s, MSG_ERROR,
  970. "P2P: Failed to copy passphrase for GO");
  971. wpa_config_remove_network(wpa_s->conf, ssid->id);
  972. return;
  973. }
  974. } else
  975. ssid->passphrase = NULL;
  976. ssid->psk_set = params->psk_set;
  977. if (ssid->psk_set)
  978. os_memcpy(ssid->psk, params->psk, sizeof(ssid->psk));
  979. else if (ssid->passphrase)
  980. wpa_config_update_psk(ssid);
  981. ssid->ap_max_inactivity = wpa_s->parent->conf->p2p_go_max_inactivity;
  982. wpa_s->ap_configured_cb = p2p_go_configured;
  983. wpa_s->ap_configured_cb_ctx = wpa_s;
  984. wpa_s->ap_configured_cb_data = wpa_s->go_params;
  985. wpa_s->connect_without_scan = ssid;
  986. wpa_s->reassociate = 1;
  987. wpa_s->disconnected = 0;
  988. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Request scan (that will be skipped) to "
  989. "start GO)");
  990. wpa_supplicant_req_scan(wpa_s, 0, 0);
  991. }
  992. static void wpas_p2p_clone_config(struct wpa_supplicant *dst,
  993. const struct wpa_supplicant *src)
  994. {
  995. struct wpa_config *d;
  996. const struct wpa_config *s;
  997. d = dst->conf;
  998. s = src->conf;
  999. #define C(n) if (s->n) d->n = os_strdup(s->n)
  1000. C(device_name);
  1001. C(manufacturer);
  1002. C(model_name);
  1003. C(model_number);
  1004. C(serial_number);
  1005. C(config_methods);
  1006. #undef C
  1007. os_memcpy(d->device_type, s->device_type, WPS_DEV_TYPE_LEN);
  1008. os_memcpy(d->sec_device_type, s->sec_device_type,
  1009. sizeof(d->sec_device_type));
  1010. d->num_sec_device_types = s->num_sec_device_types;
  1011. d->p2p_group_idle = s->p2p_group_idle;
  1012. d->p2p_intra_bss = s->p2p_intra_bss;
  1013. d->persistent_reconnect = s->persistent_reconnect;
  1014. d->max_num_sta = s->max_num_sta;
  1015. d->pbc_in_m1 = s->pbc_in_m1;
  1016. d->ignore_old_scan_res = s->ignore_old_scan_res;
  1017. d->beacon_int = s->beacon_int;
  1018. d->disassoc_low_ack = s->disassoc_low_ack;
  1019. d->disable_scan_offload = s->disable_scan_offload;
  1020. }
  1021. static void wpas_p2p_get_group_ifname(struct wpa_supplicant *wpa_s,
  1022. char *ifname, size_t len)
  1023. {
  1024. char *ifname_ptr = wpa_s->ifname;
  1025. if (os_strncmp(wpa_s->ifname, P2P_MGMT_DEVICE_PREFIX,
  1026. os_strlen(P2P_MGMT_DEVICE_PREFIX)) == 0) {
  1027. ifname_ptr = os_strrchr(wpa_s->ifname, '-') + 1;
  1028. }
  1029. os_snprintf(ifname, len, "p2p-%s-%d", ifname_ptr, wpa_s->p2p_group_idx);
  1030. if (os_strlen(ifname) >= IFNAMSIZ &&
  1031. os_strlen(wpa_s->ifname) < IFNAMSIZ) {
  1032. /* Try to avoid going over the IFNAMSIZ length limit */
  1033. os_snprintf(ifname, len, "p2p-%d", wpa_s->p2p_group_idx);
  1034. }
  1035. }
  1036. static int wpas_p2p_add_group_interface(struct wpa_supplicant *wpa_s,
  1037. enum wpa_driver_if_type type)
  1038. {
  1039. char ifname[120], force_ifname[120];
  1040. if (wpa_s->pending_interface_name[0]) {
  1041. wpa_printf(MSG_DEBUG, "P2P: Pending virtual interface exists "
  1042. "- skip creation of a new one");
  1043. if (is_zero_ether_addr(wpa_s->pending_interface_addr)) {
  1044. wpa_printf(MSG_DEBUG, "P2P: Pending virtual address "
  1045. "unknown?! ifname='%s'",
  1046. wpa_s->pending_interface_name);
  1047. return -1;
  1048. }
  1049. return 0;
  1050. }
  1051. wpas_p2p_get_group_ifname(wpa_s, ifname, sizeof(ifname));
  1052. force_ifname[0] = '\0';
  1053. wpa_printf(MSG_DEBUG, "P2P: Create a new interface %s for the group",
  1054. ifname);
  1055. wpa_s->p2p_group_idx++;
  1056. wpa_s->pending_interface_type = type;
  1057. if (wpa_drv_if_add(wpa_s, type, ifname, NULL, NULL, force_ifname,
  1058. wpa_s->pending_interface_addr, NULL) < 0) {
  1059. wpa_printf(MSG_ERROR, "P2P: Failed to create new group "
  1060. "interface");
  1061. return -1;
  1062. }
  1063. if (force_ifname[0]) {
  1064. wpa_printf(MSG_DEBUG, "P2P: Driver forced interface name %s",
  1065. force_ifname);
  1066. os_strlcpy(wpa_s->pending_interface_name, force_ifname,
  1067. sizeof(wpa_s->pending_interface_name));
  1068. } else
  1069. os_strlcpy(wpa_s->pending_interface_name, ifname,
  1070. sizeof(wpa_s->pending_interface_name));
  1071. wpa_printf(MSG_DEBUG, "P2P: Created pending virtual interface %s addr "
  1072. MACSTR, wpa_s->pending_interface_name,
  1073. MAC2STR(wpa_s->pending_interface_addr));
  1074. return 0;
  1075. }
  1076. static void wpas_p2p_remove_pending_group_interface(
  1077. struct wpa_supplicant *wpa_s)
  1078. {
  1079. if (!wpa_s->pending_interface_name[0] ||
  1080. is_zero_ether_addr(wpa_s->pending_interface_addr))
  1081. return; /* No pending virtual interface */
  1082. wpa_printf(MSG_DEBUG, "P2P: Removing pending group interface %s",
  1083. wpa_s->pending_interface_name);
  1084. wpa_drv_if_remove(wpa_s, wpa_s->pending_interface_type,
  1085. wpa_s->pending_interface_name);
  1086. os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
  1087. wpa_s->pending_interface_name[0] = '\0';
  1088. }
  1089. static struct wpa_supplicant *
  1090. wpas_p2p_init_group_interface(struct wpa_supplicant *wpa_s, int go)
  1091. {
  1092. struct wpa_interface iface;
  1093. struct wpa_supplicant *group_wpa_s;
  1094. if (!wpa_s->pending_interface_name[0]) {
  1095. wpa_printf(MSG_ERROR, "P2P: No pending group interface");
  1096. if (!wpas_p2p_create_iface(wpa_s))
  1097. return NULL;
  1098. /*
  1099. * Something has forced us to remove the pending interface; try
  1100. * to create a new one and hope for the best that we will get
  1101. * the same local address.
  1102. */
  1103. if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
  1104. WPA_IF_P2P_CLIENT) < 0)
  1105. return NULL;
  1106. }
  1107. os_memset(&iface, 0, sizeof(iface));
  1108. iface.ifname = wpa_s->pending_interface_name;
  1109. iface.driver = wpa_s->driver->name;
  1110. if (wpa_s->conf->ctrl_interface == NULL &&
  1111. wpa_s->parent != wpa_s &&
  1112. wpa_s->p2p_mgmt &&
  1113. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE))
  1114. iface.ctrl_interface = wpa_s->parent->conf->ctrl_interface;
  1115. else
  1116. iface.ctrl_interface = wpa_s->conf->ctrl_interface;
  1117. iface.driver_param = wpa_s->conf->driver_param;
  1118. group_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface);
  1119. if (group_wpa_s == NULL) {
  1120. wpa_printf(MSG_ERROR, "P2P: Failed to create new "
  1121. "wpa_supplicant interface");
  1122. return NULL;
  1123. }
  1124. wpa_s->pending_interface_name[0] = '\0';
  1125. group_wpa_s->parent = wpa_s;
  1126. group_wpa_s->p2p_group_interface = go ? P2P_GROUP_INTERFACE_GO :
  1127. P2P_GROUP_INTERFACE_CLIENT;
  1128. wpa_s->global->p2p_group_formation = group_wpa_s;
  1129. wpas_p2p_clone_config(group_wpa_s, wpa_s);
  1130. return group_wpa_s;
  1131. }
  1132. static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
  1133. void *timeout_ctx)
  1134. {
  1135. struct wpa_supplicant *wpa_s = eloop_ctx;
  1136. wpa_printf(MSG_DEBUG, "P2P: Group Formation timed out");
  1137. wpas_p2p_group_formation_failed(wpa_s);
  1138. }
  1139. void wpas_p2p_group_formation_failed(struct wpa_supplicant *wpa_s)
  1140. {
  1141. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  1142. wpa_s->parent, NULL);
  1143. if (wpa_s->global->p2p)
  1144. p2p_group_formation_failed(wpa_s->global->p2p);
  1145. else if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  1146. wpa_drv_p2p_group_formation_failed(wpa_s);
  1147. wpas_group_formation_completed(wpa_s, 0);
  1148. }
  1149. void wpas_p2p_ap_setup_failed(struct wpa_supplicant *wpa_s)
  1150. {
  1151. if (wpa_s->global->p2p_group_formation != wpa_s)
  1152. return;
  1153. /* Speed up group formation timeout since this cannot succeed */
  1154. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  1155. wpa_s->parent, NULL);
  1156. eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
  1157. wpa_s->parent, NULL);
  1158. }
  1159. void wpas_go_neg_completed(void *ctx, struct p2p_go_neg_results *res)
  1160. {
  1161. struct wpa_supplicant *wpa_s = ctx;
  1162. if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
  1163. wpa_drv_cancel_remain_on_channel(wpa_s);
  1164. wpa_s->off_channel_freq = 0;
  1165. wpa_s->roc_waiting_drv_freq = 0;
  1166. }
  1167. if (res->status) {
  1168. wpa_msg_global(wpa_s, MSG_INFO,
  1169. P2P_EVENT_GO_NEG_FAILURE "status=%d",
  1170. res->status);
  1171. wpas_notify_p2p_go_neg_completed(wpa_s, res);
  1172. wpas_p2p_remove_pending_group_interface(wpa_s);
  1173. return;
  1174. }
  1175. if (wpa_s->p2p_go_ht40)
  1176. res->ht40 = 1;
  1177. if (wpa_s->p2p_go_vht)
  1178. res->vht = 1;
  1179. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_SUCCESS "role=%s "
  1180. "freq=%d ht40=%d peer_dev=" MACSTR " peer_iface=" MACSTR
  1181. " wps_method=%s",
  1182. res->role_go ? "GO" : "client", res->freq, res->ht40,
  1183. MAC2STR(res->peer_device_addr),
  1184. MAC2STR(res->peer_interface_addr),
  1185. p2p_wps_method_text(res->wps_method));
  1186. wpas_notify_p2p_go_neg_completed(wpa_s, res);
  1187. if (res->role_go && wpa_s->p2p_persistent_id >= 0) {
  1188. struct wpa_ssid *ssid;
  1189. ssid = wpa_config_get_network(wpa_s->conf,
  1190. wpa_s->p2p_persistent_id);
  1191. if (ssid && ssid->disabled == 2 &&
  1192. ssid->mode == WPAS_MODE_P2P_GO && ssid->passphrase) {
  1193. size_t len = os_strlen(ssid->passphrase);
  1194. wpa_printf(MSG_DEBUG, "P2P: Override passphrase based "
  1195. "on requested persistent group");
  1196. os_memcpy(res->passphrase, ssid->passphrase, len);
  1197. res->passphrase[len] = '\0';
  1198. }
  1199. }
  1200. if (wpa_s->create_p2p_iface) {
  1201. struct wpa_supplicant *group_wpa_s =
  1202. wpas_p2p_init_group_interface(wpa_s, res->role_go);
  1203. if (group_wpa_s == NULL) {
  1204. wpas_p2p_remove_pending_group_interface(wpa_s);
  1205. return;
  1206. }
  1207. if (group_wpa_s != wpa_s) {
  1208. os_memcpy(group_wpa_s->p2p_pin, wpa_s->p2p_pin,
  1209. sizeof(group_wpa_s->p2p_pin));
  1210. group_wpa_s->p2p_wps_method = wpa_s->p2p_wps_method;
  1211. }
  1212. os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
  1213. wpa_s->pending_interface_name[0] = '\0';
  1214. group_wpa_s->p2p_in_provisioning = 1;
  1215. if (res->role_go)
  1216. wpas_start_wps_go(group_wpa_s, res, 1);
  1217. else
  1218. wpas_start_wps_enrollee(group_wpa_s, res);
  1219. } else {
  1220. wpa_s->p2p_in_provisioning = 1;
  1221. wpa_s->global->p2p_group_formation = wpa_s;
  1222. if (res->role_go)
  1223. wpas_start_wps_go(wpa_s, res, 1);
  1224. else
  1225. wpas_start_wps_enrollee(ctx, res);
  1226. }
  1227. wpa_s->p2p_long_listen = 0;
  1228. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  1229. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  1230. eloop_register_timeout(15 + res->peer_config_timeout / 100,
  1231. (res->peer_config_timeout % 100) * 10000,
  1232. wpas_p2p_group_formation_timeout, wpa_s, NULL);
  1233. }
  1234. void wpas_go_neg_req_rx(void *ctx, const u8 *src, u16 dev_passwd_id)
  1235. {
  1236. struct wpa_supplicant *wpa_s = ctx;
  1237. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_REQUEST MACSTR
  1238. " dev_passwd_id=%u", MAC2STR(src), dev_passwd_id);
  1239. wpas_notify_p2p_go_neg_req(wpa_s, src, dev_passwd_id);
  1240. }
  1241. void wpas_dev_found(void *ctx, const u8 *addr,
  1242. const struct p2p_peer_info *info,
  1243. int new_device)
  1244. {
  1245. #ifndef CONFIG_NO_STDOUT_DEBUG
  1246. struct wpa_supplicant *wpa_s = ctx;
  1247. char devtype[WPS_DEV_TYPE_BUFSIZE];
  1248. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_FOUND MACSTR
  1249. " p2p_dev_addr=" MACSTR
  1250. " pri_dev_type=%s name='%s' config_methods=0x%x "
  1251. "dev_capab=0x%x group_capab=0x%x",
  1252. MAC2STR(addr), MAC2STR(info->p2p_device_addr),
  1253. wps_dev_type_bin2str(info->pri_dev_type, devtype,
  1254. sizeof(devtype)),
  1255. info->device_name, info->config_methods,
  1256. info->dev_capab, info->group_capab);
  1257. #endif /* CONFIG_NO_STDOUT_DEBUG */
  1258. wpas_notify_p2p_device_found(ctx, info->p2p_device_addr, new_device);
  1259. }
  1260. static void wpas_dev_lost(void *ctx, const u8 *dev_addr)
  1261. {
  1262. struct wpa_supplicant *wpa_s = ctx;
  1263. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_LOST
  1264. "p2p_dev_addr=" MACSTR, MAC2STR(dev_addr));
  1265. wpas_notify_p2p_device_lost(wpa_s, dev_addr);
  1266. }
  1267. static void wpas_find_stopped(void *ctx)
  1268. {
  1269. struct wpa_supplicant *wpa_s = ctx;
  1270. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_FIND_STOPPED);
  1271. }
  1272. static int wpas_start_listen(void *ctx, unsigned int freq,
  1273. unsigned int duration,
  1274. const struct wpabuf *probe_resp_ie)
  1275. {
  1276. struct wpa_supplicant *wpa_s = ctx;
  1277. wpa_drv_set_ap_wps_ie(wpa_s, NULL, probe_resp_ie, NULL);
  1278. if (wpa_drv_probe_req_report(wpa_s, 1) < 0) {
  1279. wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver to "
  1280. "report received Probe Request frames");
  1281. return -1;
  1282. }
  1283. wpa_s->pending_listen_freq = freq;
  1284. wpa_s->pending_listen_duration = duration;
  1285. if (wpa_drv_remain_on_channel(wpa_s, freq, duration) < 0) {
  1286. wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver "
  1287. "to remain on channel (%u MHz) for Listen "
  1288. "state", freq);
  1289. wpa_s->pending_listen_freq = 0;
  1290. return -1;
  1291. }
  1292. wpa_s->off_channel_freq = 0;
  1293. wpa_s->roc_waiting_drv_freq = freq;
  1294. return 0;
  1295. }
  1296. static void wpas_stop_listen(void *ctx)
  1297. {
  1298. struct wpa_supplicant *wpa_s = ctx;
  1299. if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
  1300. wpa_drv_cancel_remain_on_channel(wpa_s);
  1301. wpa_s->off_channel_freq = 0;
  1302. wpa_s->roc_waiting_drv_freq = 0;
  1303. }
  1304. wpa_drv_set_ap_wps_ie(wpa_s, NULL, NULL, NULL);
  1305. wpa_drv_probe_req_report(wpa_s, 0);
  1306. }
  1307. static int wpas_send_probe_resp(void *ctx, const struct wpabuf *buf)
  1308. {
  1309. struct wpa_supplicant *wpa_s = ctx;
  1310. return wpa_drv_send_mlme(wpa_s, wpabuf_head(buf), wpabuf_len(buf), 1);
  1311. }
  1312. /*
  1313. * DNS Header section is used only to calculate compression pointers, so the
  1314. * contents of this data does not matter, but the length needs to be reserved
  1315. * in the virtual packet.
  1316. */
  1317. #define DNS_HEADER_LEN 12
  1318. /*
  1319. * 27-octet in-memory packet from P2P specification containing two implied
  1320. * queries for _tcp.lcoal. PTR IN and _udp.local. PTR IN
  1321. */
  1322. #define P2P_SD_IN_MEMORY_LEN 27
  1323. static int p2p_sd_dns_uncompress_label(char **upos, char *uend, u8 *start,
  1324. u8 **spos, const u8 *end)
  1325. {
  1326. while (*spos < end) {
  1327. u8 val = ((*spos)[0] & 0xc0) >> 6;
  1328. int len;
  1329. if (val == 1 || val == 2) {
  1330. /* These are reserved values in RFC 1035 */
  1331. wpa_printf(MSG_DEBUG, "P2P: Invalid domain name "
  1332. "sequence starting with 0x%x", val);
  1333. return -1;
  1334. }
  1335. if (val == 3) {
  1336. u16 offset;
  1337. u8 *spos_tmp;
  1338. /* Offset */
  1339. if (*spos + 2 > end) {
  1340. wpa_printf(MSG_DEBUG, "P2P: No room for full "
  1341. "DNS offset field");
  1342. return -1;
  1343. }
  1344. offset = (((*spos)[0] & 0x3f) << 8) | (*spos)[1];
  1345. if (offset >= *spos - start) {
  1346. wpa_printf(MSG_DEBUG, "P2P: Invalid DNS "
  1347. "pointer offset %u", offset);
  1348. return -1;
  1349. }
  1350. (*spos) += 2;
  1351. spos_tmp = start + offset;
  1352. return p2p_sd_dns_uncompress_label(upos, uend, start,
  1353. &spos_tmp,
  1354. *spos - 2);
  1355. }
  1356. /* Label */
  1357. len = (*spos)[0] & 0x3f;
  1358. if (len == 0)
  1359. return 0;
  1360. (*spos)++;
  1361. if (*spos + len > end) {
  1362. wpa_printf(MSG_DEBUG, "P2P: Invalid domain name "
  1363. "sequence - no room for label with length "
  1364. "%u", len);
  1365. return -1;
  1366. }
  1367. if (*upos + len + 2 > uend)
  1368. return -2;
  1369. os_memcpy(*upos, *spos, len);
  1370. *spos += len;
  1371. *upos += len;
  1372. (*upos)[0] = '.';
  1373. (*upos)++;
  1374. (*upos)[0] = '\0';
  1375. }
  1376. return 0;
  1377. }
  1378. /* Uncompress domain names per RFC 1035 using the P2P SD in-memory packet.
  1379. * Returns -1 on parsing error (invalid input sequence), -2 if output buffer is
  1380. * not large enough */
  1381. static int p2p_sd_dns_uncompress(char *buf, size_t buf_len, const u8 *msg,
  1382. size_t msg_len, size_t offset)
  1383. {
  1384. /* 27-octet in-memory packet from P2P specification */
  1385. const char *prefix = "\x04_tcp\x05local\x00\x00\x0C\x00\x01"
  1386. "\x04_udp\xC0\x11\x00\x0C\x00\x01";
  1387. u8 *tmp, *end, *spos;
  1388. char *upos, *uend;
  1389. int ret = 0;
  1390. if (buf_len < 2)
  1391. return -1;
  1392. if (offset > msg_len)
  1393. return -1;
  1394. tmp = os_malloc(DNS_HEADER_LEN + P2P_SD_IN_MEMORY_LEN + msg_len);
  1395. if (tmp == NULL)
  1396. return -1;
  1397. spos = tmp + DNS_HEADER_LEN + P2P_SD_IN_MEMORY_LEN;
  1398. end = spos + msg_len;
  1399. spos += offset;
  1400. os_memset(tmp, 0, DNS_HEADER_LEN);
  1401. os_memcpy(tmp + DNS_HEADER_LEN, prefix, P2P_SD_IN_MEMORY_LEN);
  1402. os_memcpy(tmp + DNS_HEADER_LEN + P2P_SD_IN_MEMORY_LEN, msg, msg_len);
  1403. upos = buf;
  1404. uend = buf + buf_len;
  1405. ret = p2p_sd_dns_uncompress_label(&upos, uend, tmp, &spos, end);
  1406. if (ret) {
  1407. os_free(tmp);
  1408. return ret;
  1409. }
  1410. if (upos == buf) {
  1411. upos[0] = '.';
  1412. upos[1] = '\0';
  1413. } else if (upos[-1] == '.')
  1414. upos[-1] = '\0';
  1415. os_free(tmp);
  1416. return 0;
  1417. }
  1418. static struct p2p_srv_bonjour *
  1419. wpas_p2p_service_get_bonjour(struct wpa_supplicant *wpa_s,
  1420. const struct wpabuf *query)
  1421. {
  1422. struct p2p_srv_bonjour *bsrv;
  1423. size_t len;
  1424. len = wpabuf_len(query);
  1425. dl_list_for_each(bsrv, &wpa_s->global->p2p_srv_bonjour,
  1426. struct p2p_srv_bonjour, list) {
  1427. if (len == wpabuf_len(bsrv->query) &&
  1428. os_memcmp(wpabuf_head(query), wpabuf_head(bsrv->query),
  1429. len) == 0)
  1430. return bsrv;
  1431. }
  1432. return NULL;
  1433. }
  1434. static struct p2p_srv_upnp *
  1435. wpas_p2p_service_get_upnp(struct wpa_supplicant *wpa_s, u8 version,
  1436. const char *service)
  1437. {
  1438. struct p2p_srv_upnp *usrv;
  1439. dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
  1440. struct p2p_srv_upnp, list) {
  1441. if (version == usrv->version &&
  1442. os_strcmp(service, usrv->service) == 0)
  1443. return usrv;
  1444. }
  1445. return NULL;
  1446. }
  1447. static void wpas_sd_add_proto_not_avail(struct wpabuf *resp, u8 srv_proto,
  1448. u8 srv_trans_id)
  1449. {
  1450. u8 *len_pos;
  1451. if (wpabuf_tailroom(resp) < 5)
  1452. return;
  1453. /* Length (to be filled) */
  1454. len_pos = wpabuf_put(resp, 2);
  1455. wpabuf_put_u8(resp, srv_proto);
  1456. wpabuf_put_u8(resp, srv_trans_id);
  1457. /* Status Code */
  1458. wpabuf_put_u8(resp, P2P_SD_PROTO_NOT_AVAILABLE);
  1459. /* Response Data: empty */
  1460. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
  1461. }
  1462. static void wpas_sd_all_bonjour(struct wpa_supplicant *wpa_s,
  1463. struct wpabuf *resp, u8 srv_trans_id)
  1464. {
  1465. struct p2p_srv_bonjour *bsrv;
  1466. u8 *len_pos;
  1467. wpa_printf(MSG_DEBUG, "P2P: SD Request for all Bonjour services");
  1468. if (dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
  1469. wpa_printf(MSG_DEBUG, "P2P: Bonjour protocol not available");
  1470. return;
  1471. }
  1472. dl_list_for_each(bsrv, &wpa_s->global->p2p_srv_bonjour,
  1473. struct p2p_srv_bonjour, list) {
  1474. if (wpabuf_tailroom(resp) <
  1475. 5 + wpabuf_len(bsrv->query) + wpabuf_len(bsrv->resp))
  1476. return;
  1477. /* Length (to be filled) */
  1478. len_pos = wpabuf_put(resp, 2);
  1479. wpabuf_put_u8(resp, P2P_SERV_BONJOUR);
  1480. wpabuf_put_u8(resp, srv_trans_id);
  1481. /* Status Code */
  1482. wpabuf_put_u8(resp, P2P_SD_SUCCESS);
  1483. wpa_hexdump_ascii(MSG_DEBUG, "P2P: Matching Bonjour service",
  1484. wpabuf_head(bsrv->resp),
  1485. wpabuf_len(bsrv->resp));
  1486. /* Response Data */
  1487. wpabuf_put_buf(resp, bsrv->query); /* Key */
  1488. wpabuf_put_buf(resp, bsrv->resp); /* Value */
  1489. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
  1490. 2);
  1491. }
  1492. }
  1493. static int match_bonjour_query(struct p2p_srv_bonjour *bsrv, const u8 *query,
  1494. size_t query_len)
  1495. {
  1496. char str_rx[256], str_srv[256];
  1497. if (query_len < 3 || wpabuf_len(bsrv->query) < 3)
  1498. return 0; /* Too short to include DNS Type and Version */
  1499. if (os_memcmp(query + query_len - 3,
  1500. wpabuf_head_u8(bsrv->query) + wpabuf_len(bsrv->query) - 3,
  1501. 3) != 0)
  1502. return 0; /* Mismatch in DNS Type or Version */
  1503. if (query_len == wpabuf_len(bsrv->query) &&
  1504. os_memcmp(query, wpabuf_head(bsrv->query), query_len - 3) == 0)
  1505. return 1; /* Binary match */
  1506. if (p2p_sd_dns_uncompress(str_rx, sizeof(str_rx), query, query_len - 3,
  1507. 0))
  1508. return 0; /* Failed to uncompress query */
  1509. if (p2p_sd_dns_uncompress(str_srv, sizeof(str_srv),
  1510. wpabuf_head(bsrv->query),
  1511. wpabuf_len(bsrv->query) - 3, 0))
  1512. return 0; /* Failed to uncompress service */
  1513. return os_strcmp(str_rx, str_srv) == 0;
  1514. }
  1515. static void wpas_sd_req_bonjour(struct wpa_supplicant *wpa_s,
  1516. struct wpabuf *resp, u8 srv_trans_id,
  1517. const u8 *query, size_t query_len)
  1518. {
  1519. struct p2p_srv_bonjour *bsrv;
  1520. u8 *len_pos;
  1521. int matches = 0;
  1522. wpa_hexdump_ascii(MSG_DEBUG, "P2P: SD Request for Bonjour",
  1523. query, query_len);
  1524. if (dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
  1525. wpa_printf(MSG_DEBUG, "P2P: Bonjour protocol not available");
  1526. wpas_sd_add_proto_not_avail(resp, P2P_SERV_BONJOUR,
  1527. srv_trans_id);
  1528. return;
  1529. }
  1530. if (query_len == 0) {
  1531. wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
  1532. return;
  1533. }
  1534. dl_list_for_each(bsrv, &wpa_s->global->p2p_srv_bonjour,
  1535. struct p2p_srv_bonjour, list) {
  1536. if (!match_bonjour_query(bsrv, query, query_len))
  1537. continue;
  1538. if (wpabuf_tailroom(resp) <
  1539. 5 + query_len + wpabuf_len(bsrv->resp))
  1540. return;
  1541. matches++;
  1542. /* Length (to be filled) */
  1543. len_pos = wpabuf_put(resp, 2);
  1544. wpabuf_put_u8(resp, P2P_SERV_BONJOUR);
  1545. wpabuf_put_u8(resp, srv_trans_id);
  1546. /* Status Code */
  1547. wpabuf_put_u8(resp, P2P_SD_SUCCESS);
  1548. wpa_hexdump_ascii(MSG_DEBUG, "P2P: Matching Bonjour service",
  1549. wpabuf_head(bsrv->resp),
  1550. wpabuf_len(bsrv->resp));
  1551. /* Response Data */
  1552. wpabuf_put_data(resp, query, query_len); /* Key */
  1553. wpabuf_put_buf(resp, bsrv->resp); /* Value */
  1554. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
  1555. }
  1556. if (matches == 0) {
  1557. wpa_printf(MSG_DEBUG, "P2P: Requested Bonjour service not "
  1558. "available");
  1559. if (wpabuf_tailroom(resp) < 5)
  1560. return;
  1561. /* Length (to be filled) */
  1562. len_pos = wpabuf_put(resp, 2);
  1563. wpabuf_put_u8(resp, P2P_SERV_BONJOUR);
  1564. wpabuf_put_u8(resp, srv_trans_id);
  1565. /* Status Code */
  1566. wpabuf_put_u8(resp, P2P_SD_REQUESTED_INFO_NOT_AVAILABLE);
  1567. /* Response Data: empty */
  1568. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
  1569. 2);
  1570. }
  1571. }
  1572. static void wpas_sd_all_upnp(struct wpa_supplicant *wpa_s,
  1573. struct wpabuf *resp, u8 srv_trans_id)
  1574. {
  1575. struct p2p_srv_upnp *usrv;
  1576. u8 *len_pos;
  1577. wpa_printf(MSG_DEBUG, "P2P: SD Request for all UPnP services");
  1578. if (dl_list_empty(&wpa_s->global->p2p_srv_upnp)) {
  1579. wpa_printf(MSG_DEBUG, "P2P: UPnP protocol not available");
  1580. return;
  1581. }
  1582. dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
  1583. struct p2p_srv_upnp, list) {
  1584. if (wpabuf_tailroom(resp) < 5 + 1 + os_strlen(usrv->service))
  1585. return;
  1586. /* Length (to be filled) */
  1587. len_pos = wpabuf_put(resp, 2);
  1588. wpabuf_put_u8(resp, P2P_SERV_UPNP);
  1589. wpabuf_put_u8(resp, srv_trans_id);
  1590. /* Status Code */
  1591. wpabuf_put_u8(resp, P2P_SD_SUCCESS);
  1592. /* Response Data */
  1593. wpabuf_put_u8(resp, usrv->version);
  1594. wpa_printf(MSG_DEBUG, "P2P: Matching UPnP Service: %s",
  1595. usrv->service);
  1596. wpabuf_put_str(resp, usrv->service);
  1597. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
  1598. 2);
  1599. }
  1600. }
  1601. static void wpas_sd_req_upnp(struct wpa_supplicant *wpa_s,
  1602. struct wpabuf *resp, u8 srv_trans_id,
  1603. const u8 *query, size_t query_len)
  1604. {
  1605. struct p2p_srv_upnp *usrv;
  1606. u8 *len_pos;
  1607. u8 version;
  1608. char *str;
  1609. int count = 0;
  1610. wpa_hexdump_ascii(MSG_DEBUG, "P2P: SD Request for UPnP",
  1611. query, query_len);
  1612. if (dl_list_empty(&wpa_s->global->p2p_srv_upnp)) {
  1613. wpa_printf(MSG_DEBUG, "P2P: UPnP protocol not available");
  1614. wpas_sd_add_proto_not_avail(resp, P2P_SERV_UPNP,
  1615. srv_trans_id);
  1616. return;
  1617. }
  1618. if (query_len == 0) {
  1619. wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
  1620. return;
  1621. }
  1622. if (wpabuf_tailroom(resp) < 5)
  1623. return;
  1624. /* Length (to be filled) */
  1625. len_pos = wpabuf_put(resp, 2);
  1626. wpabuf_put_u8(resp, P2P_SERV_UPNP);
  1627. wpabuf_put_u8(resp, srv_trans_id);
  1628. version = query[0];
  1629. str = os_malloc(query_len);
  1630. if (str == NULL)
  1631. return;
  1632. os_memcpy(str, query + 1, query_len - 1);
  1633. str[query_len - 1] = '\0';
  1634. dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
  1635. struct p2p_srv_upnp, list) {
  1636. if (version != usrv->version)
  1637. continue;
  1638. if (os_strcmp(str, "ssdp:all") != 0 &&
  1639. os_strstr(usrv->service, str) == NULL)
  1640. continue;
  1641. if (wpabuf_tailroom(resp) < 2)
  1642. break;
  1643. if (count == 0) {
  1644. /* Status Code */
  1645. wpabuf_put_u8(resp, P2P_SD_SUCCESS);
  1646. /* Response Data */
  1647. wpabuf_put_u8(resp, version);
  1648. } else
  1649. wpabuf_put_u8(resp, ',');
  1650. count++;
  1651. wpa_printf(MSG_DEBUG, "P2P: Matching UPnP Service: %s",
  1652. usrv->service);
  1653. if (wpabuf_tailroom(resp) < os_strlen(usrv->service))
  1654. break;
  1655. wpabuf_put_str(resp, usrv->service);
  1656. }
  1657. os_free(str);
  1658. if (count == 0) {
  1659. wpa_printf(MSG_DEBUG, "P2P: Requested UPnP service not "
  1660. "available");
  1661. /* Status Code */
  1662. wpabuf_put_u8(resp, P2P_SD_REQUESTED_INFO_NOT_AVAILABLE);
  1663. /* Response Data: empty */
  1664. }
  1665. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
  1666. }
  1667. #ifdef CONFIG_WIFI_DISPLAY
  1668. static void wpas_sd_req_wfd(struct wpa_supplicant *wpa_s,
  1669. struct wpabuf *resp, u8 srv_trans_id,
  1670. const u8 *query, size_t query_len)
  1671. {
  1672. const u8 *pos;
  1673. u8 role;
  1674. u8 *len_pos;
  1675. wpa_hexdump(MSG_DEBUG, "P2P: SD Request for WFD", query, query_len);
  1676. if (!wpa_s->global->wifi_display) {
  1677. wpa_printf(MSG_DEBUG, "P2P: WFD protocol not available");
  1678. wpas_sd_add_proto_not_avail(resp, P2P_SERV_WIFI_DISPLAY,
  1679. srv_trans_id);
  1680. return;
  1681. }
  1682. if (query_len < 1) {
  1683. wpa_printf(MSG_DEBUG, "P2P: Missing WFD Requested Device "
  1684. "Role");
  1685. return;
  1686. }
  1687. if (wpabuf_tailroom(resp) < 5)
  1688. return;
  1689. pos = query;
  1690. role = *pos++;
  1691. wpa_printf(MSG_DEBUG, "P2P: WSD for device role 0x%x", role);
  1692. /* TODO: role specific handling */
  1693. /* Length (to be filled) */
  1694. len_pos = wpabuf_put(resp, 2);
  1695. wpabuf_put_u8(resp, P2P_SERV_WIFI_DISPLAY);
  1696. wpabuf_put_u8(resp, srv_trans_id);
  1697. wpabuf_put_u8(resp, P2P_SD_SUCCESS); /* Status Code */
  1698. while (pos < query + query_len) {
  1699. if (*pos < MAX_WFD_SUBELEMS &&
  1700. wpa_s->global->wfd_subelem[*pos] &&
  1701. wpabuf_tailroom(resp) >=
  1702. wpabuf_len(wpa_s->global->wfd_subelem[*pos])) {
  1703. wpa_printf(MSG_DEBUG, "P2P: Add WSD response "
  1704. "subelement %u", *pos);
  1705. wpabuf_put_buf(resp, wpa_s->global->wfd_subelem[*pos]);
  1706. }
  1707. pos++;
  1708. }
  1709. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
  1710. }
  1711. #endif /* CONFIG_WIFI_DISPLAY */
  1712. void wpas_sd_request(void *ctx, int freq, const u8 *sa, u8 dialog_token,
  1713. u16 update_indic, const u8 *tlvs, size_t tlvs_len)
  1714. {
  1715. struct wpa_supplicant *wpa_s = ctx;
  1716. const u8 *pos = tlvs;
  1717. const u8 *end = tlvs + tlvs_len;
  1718. const u8 *tlv_end;
  1719. u16 slen;
  1720. struct wpabuf *resp;
  1721. u8 srv_proto, srv_trans_id;
  1722. size_t buf_len;
  1723. char *buf;
  1724. wpa_hexdump(MSG_MSGDUMP, "P2P: Service Discovery Request TLVs",
  1725. tlvs, tlvs_len);
  1726. buf_len = 2 * tlvs_len + 1;
  1727. buf = os_malloc(buf_len);
  1728. if (buf) {
  1729. wpa_snprintf_hex(buf, buf_len, tlvs, tlvs_len);
  1730. wpa_msg_ctrl(wpa_s, MSG_INFO, P2P_EVENT_SERV_DISC_REQ "%d "
  1731. MACSTR " %u %u %s",
  1732. freq, MAC2STR(sa), dialog_token, update_indic,
  1733. buf);
  1734. os_free(buf);
  1735. }
  1736. if (wpa_s->p2p_sd_over_ctrl_iface) {
  1737. wpas_notify_p2p_sd_request(wpa_s, freq, sa, dialog_token,
  1738. update_indic, tlvs, tlvs_len);
  1739. return; /* to be processed by an external program */
  1740. }
  1741. resp = wpabuf_alloc(10000);
  1742. if (resp == NULL)
  1743. return;
  1744. while (pos + 1 < end) {
  1745. wpa_printf(MSG_DEBUG, "P2P: Service Request TLV");
  1746. slen = WPA_GET_LE16(pos);
  1747. pos += 2;
  1748. if (pos + slen > end || slen < 2) {
  1749. wpa_printf(MSG_DEBUG, "P2P: Unexpected Query Data "
  1750. "length");
  1751. wpabuf_free(resp);
  1752. return;
  1753. }
  1754. tlv_end = pos + slen;
  1755. srv_proto = *pos++;
  1756. wpa_printf(MSG_DEBUG, "P2P: Service Protocol Type %u",
  1757. srv_proto);
  1758. srv_trans_id = *pos++;
  1759. wpa_printf(MSG_DEBUG, "P2P: Service Transaction ID %u",
  1760. srv_trans_id);
  1761. wpa_hexdump(MSG_MSGDUMP, "P2P: Query Data",
  1762. pos, tlv_end - pos);
  1763. if (wpa_s->force_long_sd) {
  1764. wpa_printf(MSG_DEBUG, "P2P: SD test - force long "
  1765. "response");
  1766. wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
  1767. wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
  1768. goto done;
  1769. }
  1770. switch (srv_proto) {
  1771. case P2P_SERV_ALL_SERVICES:
  1772. wpa_printf(MSG_DEBUG, "P2P: Service Discovery Request "
  1773. "for all services");
  1774. if (dl_list_empty(&wpa_s->global->p2p_srv_upnp) &&
  1775. dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
  1776. wpa_printf(MSG_DEBUG, "P2P: No service "
  1777. "discovery protocols available");
  1778. wpas_sd_add_proto_not_avail(
  1779. resp, P2P_SERV_ALL_SERVICES,
  1780. srv_trans_id);
  1781. break;
  1782. }
  1783. wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
  1784. wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
  1785. break;
  1786. case P2P_SERV_BONJOUR:
  1787. wpas_sd_req_bonjour(wpa_s, resp, srv_trans_id,
  1788. pos, tlv_end - pos);
  1789. break;
  1790. case P2P_SERV_UPNP:
  1791. wpas_sd_req_upnp(wpa_s, resp, srv_trans_id,
  1792. pos, tlv_end - pos);
  1793. break;
  1794. #ifdef CONFIG_WIFI_DISPLAY
  1795. case P2P_SERV_WIFI_DISPLAY:
  1796. wpas_sd_req_wfd(wpa_s, resp, srv_trans_id,
  1797. pos, tlv_end - pos);
  1798. break;
  1799. #endif /* CONFIG_WIFI_DISPLAY */
  1800. default:
  1801. wpa_printf(MSG_DEBUG, "P2P: Unavailable service "
  1802. "protocol %u", srv_proto);
  1803. wpas_sd_add_proto_not_avail(resp, srv_proto,
  1804. srv_trans_id);
  1805. break;
  1806. }
  1807. pos = tlv_end;
  1808. }
  1809. done:
  1810. wpas_notify_p2p_sd_request(wpa_s, freq, sa, dialog_token,
  1811. update_indic, tlvs, tlvs_len);
  1812. wpas_p2p_sd_response(wpa_s, freq, sa, dialog_token, resp);
  1813. wpabuf_free(resp);
  1814. }
  1815. void wpas_sd_response(void *ctx, const u8 *sa, u16 update_indic,
  1816. const u8 *tlvs, size_t tlvs_len)
  1817. {
  1818. struct wpa_supplicant *wpa_s = ctx;
  1819. const u8 *pos = tlvs;
  1820. const u8 *end = tlvs + tlvs_len;
  1821. const u8 *tlv_end;
  1822. u16 slen;
  1823. size_t buf_len;
  1824. char *buf;
  1825. wpa_hexdump(MSG_MSGDUMP, "P2P: Service Discovery Response TLVs",
  1826. tlvs, tlvs_len);
  1827. if (tlvs_len > 1500) {
  1828. /* TODO: better way for handling this */
  1829. wpa_msg_ctrl(wpa_s, MSG_INFO,
  1830. P2P_EVENT_SERV_DISC_RESP MACSTR
  1831. " %u <long response: %u bytes>",
  1832. MAC2STR(sa), update_indic,
  1833. (unsigned int) tlvs_len);
  1834. } else {
  1835. buf_len = 2 * tlvs_len + 1;
  1836. buf = os_malloc(buf_len);
  1837. if (buf) {
  1838. wpa_snprintf_hex(buf, buf_len, tlvs, tlvs_len);
  1839. wpa_msg_ctrl(wpa_s, MSG_INFO,
  1840. P2P_EVENT_SERV_DISC_RESP MACSTR " %u %s",
  1841. MAC2STR(sa), update_indic, buf);
  1842. os_free(buf);
  1843. }
  1844. }
  1845. while (pos < end) {
  1846. u8 srv_proto, srv_trans_id, status;
  1847. wpa_printf(MSG_DEBUG, "P2P: Service Response TLV");
  1848. slen = WPA_GET_LE16(pos);
  1849. pos += 2;
  1850. if (pos + slen > end || slen < 3) {
  1851. wpa_printf(MSG_DEBUG, "P2P: Unexpected Response Data "
  1852. "length");
  1853. return;
  1854. }
  1855. tlv_end = pos + slen;
  1856. srv_proto = *pos++;
  1857. wpa_printf(MSG_DEBUG, "P2P: Service Protocol Type %u",
  1858. srv_proto);
  1859. srv_trans_id = *pos++;
  1860. wpa_printf(MSG_DEBUG, "P2P: Service Transaction ID %u",
  1861. srv_trans_id);
  1862. status = *pos++;
  1863. wpa_printf(MSG_DEBUG, "P2P: Status Code ID %u",
  1864. status);
  1865. wpa_hexdump(MSG_MSGDUMP, "P2P: Response Data",
  1866. pos, tlv_end - pos);
  1867. pos = tlv_end;
  1868. }
  1869. wpas_notify_p2p_sd_response(wpa_s, sa, update_indic, tlvs, tlvs_len);
  1870. }
  1871. u64 wpas_p2p_sd_request(struct wpa_supplicant *wpa_s, const u8 *dst,
  1872. const struct wpabuf *tlvs)
  1873. {
  1874. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  1875. return wpa_drv_p2p_sd_request(wpa_s, dst, tlvs);
  1876. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  1877. return 0;
  1878. return (uintptr_t) p2p_sd_request(wpa_s->global->p2p, dst, tlvs);
  1879. }
  1880. u64 wpas_p2p_sd_request_upnp(struct wpa_supplicant *wpa_s, const u8 *dst,
  1881. u8 version, const char *query)
  1882. {
  1883. struct wpabuf *tlvs;
  1884. u64 ret;
  1885. tlvs = wpabuf_alloc(2 + 1 + 1 + 1 + os_strlen(query));
  1886. if (tlvs == NULL)
  1887. return 0;
  1888. wpabuf_put_le16(tlvs, 1 + 1 + 1 + os_strlen(query));
  1889. wpabuf_put_u8(tlvs, P2P_SERV_UPNP); /* Service Protocol Type */
  1890. wpabuf_put_u8(tlvs, 1); /* Service Transaction ID */
  1891. wpabuf_put_u8(tlvs, version);
  1892. wpabuf_put_str(tlvs, query);
  1893. ret = wpas_p2p_sd_request(wpa_s, dst, tlvs);
  1894. wpabuf_free(tlvs);
  1895. return ret;
  1896. }
  1897. #ifdef CONFIG_WIFI_DISPLAY
  1898. static u64 wpas_p2p_sd_request_wfd(struct wpa_supplicant *wpa_s, const u8 *dst,
  1899. const struct wpabuf *tlvs)
  1900. {
  1901. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  1902. return 0;
  1903. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  1904. return 0;
  1905. return (uintptr_t) p2p_sd_request_wfd(wpa_s->global->p2p, dst, tlvs);
  1906. }
  1907. #define MAX_WFD_SD_SUBELEMS 20
  1908. static void wfd_add_sd_req_role(struct wpabuf *tlvs, u8 id, u8 role,
  1909. const char *subelems)
  1910. {
  1911. u8 *len;
  1912. const char *pos;
  1913. int val;
  1914. int count = 0;
  1915. len = wpabuf_put(tlvs, 2);
  1916. wpabuf_put_u8(tlvs, P2P_SERV_WIFI_DISPLAY); /* Service Protocol Type */
  1917. wpabuf_put_u8(tlvs, id); /* Service Transaction ID */
  1918. wpabuf_put_u8(tlvs, role);
  1919. pos = subelems;
  1920. while (*pos) {
  1921. val = atoi(pos);
  1922. if (val >= 0 && val < 256) {
  1923. wpabuf_put_u8(tlvs, val);
  1924. count++;
  1925. if (count == MAX_WFD_SD_SUBELEMS)
  1926. break;
  1927. }
  1928. pos = os_strchr(pos + 1, ',');
  1929. if (pos == NULL)
  1930. break;
  1931. pos++;
  1932. }
  1933. WPA_PUT_LE16(len, (u8 *) wpabuf_put(tlvs, 0) - len - 2);
  1934. }
  1935. u64 wpas_p2p_sd_request_wifi_display(struct wpa_supplicant *wpa_s,
  1936. const u8 *dst, const char *role)
  1937. {
  1938. struct wpabuf *tlvs;
  1939. u64 ret;
  1940. const char *subelems;
  1941. u8 id = 1;
  1942. subelems = os_strchr(role, ' ');
  1943. if (subelems == NULL)
  1944. return 0;
  1945. subelems++;
  1946. tlvs = wpabuf_alloc(4 * (2 + 1 + 1 + 1 + MAX_WFD_SD_SUBELEMS));
  1947. if (tlvs == NULL)
  1948. return 0;
  1949. if (os_strstr(role, "[source]"))
  1950. wfd_add_sd_req_role(tlvs, id++, 0x00, subelems);
  1951. if (os_strstr(role, "[pri-sink]"))
  1952. wfd_add_sd_req_role(tlvs, id++, 0x01, subelems);
  1953. if (os_strstr(role, "[sec-sink]"))
  1954. wfd_add_sd_req_role(tlvs, id++, 0x02, subelems);
  1955. if (os_strstr(role, "[source+sink]"))
  1956. wfd_add_sd_req_role(tlvs, id++, 0x03, subelems);
  1957. ret = wpas_p2p_sd_request_wfd(wpa_s, dst, tlvs);
  1958. wpabuf_free(tlvs);
  1959. return ret;
  1960. }
  1961. #endif /* CONFIG_WIFI_DISPLAY */
  1962. int wpas_p2p_sd_cancel_request(struct wpa_supplicant *wpa_s, u64 req)
  1963. {
  1964. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  1965. return wpa_drv_p2p_sd_cancel_request(wpa_s, req);
  1966. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  1967. return -1;
  1968. return p2p_sd_cancel_request(wpa_s->global->p2p,
  1969. (void *) (uintptr_t) req);
  1970. }
  1971. void wpas_p2p_sd_response(struct wpa_supplicant *wpa_s, int freq,
  1972. const u8 *dst, u8 dialog_token,
  1973. const struct wpabuf *resp_tlvs)
  1974. {
  1975. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  1976. wpa_drv_p2p_sd_response(wpa_s, freq, dst, dialog_token,
  1977. resp_tlvs);
  1978. return;
  1979. }
  1980. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  1981. return;
  1982. p2p_sd_response(wpa_s->global->p2p, freq, dst, dialog_token,
  1983. resp_tlvs);
  1984. }
  1985. void wpas_p2p_sd_service_update(struct wpa_supplicant *wpa_s)
  1986. {
  1987. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  1988. wpa_drv_p2p_service_update(wpa_s);
  1989. return;
  1990. }
  1991. if (wpa_s->global->p2p)
  1992. p2p_sd_service_update(wpa_s->global->p2p);
  1993. }
  1994. static void wpas_p2p_srv_bonjour_free(struct p2p_srv_bonjour *bsrv)
  1995. {
  1996. dl_list_del(&bsrv->list);
  1997. wpabuf_free(bsrv->query);
  1998. wpabuf_free(bsrv->resp);
  1999. os_free(bsrv);
  2000. }
  2001. static void wpas_p2p_srv_upnp_free(struct p2p_srv_upnp *usrv)
  2002. {
  2003. dl_list_del(&usrv->list);
  2004. os_free(usrv->service);
  2005. os_free(usrv);
  2006. }
  2007. void wpas_p2p_service_flush(struct wpa_supplicant *wpa_s)
  2008. {
  2009. struct p2p_srv_bonjour *bsrv, *bn;
  2010. struct p2p_srv_upnp *usrv, *un;
  2011. dl_list_for_each_safe(bsrv, bn, &wpa_s->global->p2p_srv_bonjour,
  2012. struct p2p_srv_bonjour, list)
  2013. wpas_p2p_srv_bonjour_free(bsrv);
  2014. dl_list_for_each_safe(usrv, un, &wpa_s->global->p2p_srv_upnp,
  2015. struct p2p_srv_upnp, list)
  2016. wpas_p2p_srv_upnp_free(usrv);
  2017. wpas_p2p_sd_service_update(wpa_s);
  2018. }
  2019. int wpas_p2p_service_add_bonjour(struct wpa_supplicant *wpa_s,
  2020. struct wpabuf *query, struct wpabuf *resp)
  2021. {
  2022. struct p2p_srv_bonjour *bsrv;
  2023. bsrv = os_zalloc(sizeof(*bsrv));
  2024. if (bsrv == NULL)
  2025. return -1;
  2026. bsrv->query = query;
  2027. bsrv->resp = resp;
  2028. dl_list_add(&wpa_s->global->p2p_srv_bonjour, &bsrv->list);
  2029. wpas_p2p_sd_service_update(wpa_s);
  2030. return 0;
  2031. }
  2032. int wpas_p2p_service_del_bonjour(struct wpa_supplicant *wpa_s,
  2033. const struct wpabuf *query)
  2034. {
  2035. struct p2p_srv_bonjour *bsrv;
  2036. bsrv = wpas_p2p_service_get_bonjour(wpa_s, query);
  2037. if (bsrv == NULL)
  2038. return -1;
  2039. wpas_p2p_srv_bonjour_free(bsrv);
  2040. wpas_p2p_sd_service_update(wpa_s);
  2041. return 0;
  2042. }
  2043. int wpas_p2p_service_add_upnp(struct wpa_supplicant *wpa_s, u8 version,
  2044. const char *service)
  2045. {
  2046. struct p2p_srv_upnp *usrv;
  2047. if (wpas_p2p_service_get_upnp(wpa_s, version, service))
  2048. return 0; /* Already listed */
  2049. usrv = os_zalloc(sizeof(*usrv));
  2050. if (usrv == NULL)
  2051. return -1;
  2052. usrv->version = version;
  2053. usrv->service = os_strdup(service);
  2054. if (usrv->service == NULL) {
  2055. os_free(usrv);
  2056. return -1;
  2057. }
  2058. dl_list_add(&wpa_s->global->p2p_srv_upnp, &usrv->list);
  2059. wpas_p2p_sd_service_update(wpa_s);
  2060. return 0;
  2061. }
  2062. int wpas_p2p_service_del_upnp(struct wpa_supplicant *wpa_s, u8 version,
  2063. const char *service)
  2064. {
  2065. struct p2p_srv_upnp *usrv;
  2066. usrv = wpas_p2p_service_get_upnp(wpa_s, version, service);
  2067. if (usrv == NULL)
  2068. return -1;
  2069. wpas_p2p_srv_upnp_free(usrv);
  2070. wpas_p2p_sd_service_update(wpa_s);
  2071. return 0;
  2072. }
  2073. static void wpas_prov_disc_local_display(struct wpa_supplicant *wpa_s,
  2074. const u8 *peer, const char *params,
  2075. unsigned int generated_pin)
  2076. {
  2077. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_SHOW_PIN MACSTR
  2078. " %08d%s", MAC2STR(peer), generated_pin, params);
  2079. }
  2080. static void wpas_prov_disc_local_keypad(struct wpa_supplicant *wpa_s,
  2081. const u8 *peer, const char *params)
  2082. {
  2083. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_ENTER_PIN MACSTR
  2084. "%s", MAC2STR(peer), params);
  2085. }
  2086. void wpas_prov_disc_req(void *ctx, const u8 *peer, u16 config_methods,
  2087. const u8 *dev_addr, const u8 *pri_dev_type,
  2088. const char *dev_name, u16 supp_config_methods,
  2089. u8 dev_capab, u8 group_capab, const u8 *group_id,
  2090. size_t group_id_len)
  2091. {
  2092. struct wpa_supplicant *wpa_s = ctx;
  2093. char devtype[WPS_DEV_TYPE_BUFSIZE];
  2094. char params[300];
  2095. u8 empty_dev_type[8];
  2096. unsigned int generated_pin = 0;
  2097. struct wpa_supplicant *group = NULL;
  2098. if (group_id) {
  2099. for (group = wpa_s->global->ifaces; group; group = group->next)
  2100. {
  2101. struct wpa_ssid *s = group->current_ssid;
  2102. if (s != NULL &&
  2103. s->mode == WPAS_MODE_P2P_GO &&
  2104. group_id_len - ETH_ALEN == s->ssid_len &&
  2105. os_memcmp(group_id + ETH_ALEN, s->ssid,
  2106. s->ssid_len) == 0)
  2107. break;
  2108. }
  2109. }
  2110. if (pri_dev_type == NULL) {
  2111. os_memset(empty_dev_type, 0, sizeof(empty_dev_type));
  2112. pri_dev_type = empty_dev_type;
  2113. }
  2114. os_snprintf(params, sizeof(params), " p2p_dev_addr=" MACSTR
  2115. " pri_dev_type=%s name='%s' config_methods=0x%x "
  2116. "dev_capab=0x%x group_capab=0x%x%s%s",
  2117. MAC2STR(dev_addr),
  2118. wps_dev_type_bin2str(pri_dev_type, devtype,
  2119. sizeof(devtype)),
  2120. dev_name, supp_config_methods, dev_capab, group_capab,
  2121. group ? " group=" : "",
  2122. group ? group->ifname : "");
  2123. params[sizeof(params) - 1] = '\0';
  2124. if (config_methods & WPS_CONFIG_DISPLAY) {
  2125. generated_pin = wps_generate_pin();
  2126. wpas_prov_disc_local_display(wpa_s, peer, params,
  2127. generated_pin);
  2128. } else if (config_methods & WPS_CONFIG_KEYPAD)
  2129. wpas_prov_disc_local_keypad(wpa_s, peer, params);
  2130. else if (config_methods & WPS_CONFIG_PUSHBUTTON)
  2131. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_REQ
  2132. MACSTR "%s", MAC2STR(peer), params);
  2133. wpas_notify_p2p_provision_discovery(wpa_s, peer, 1 /* request */,
  2134. P2P_PROV_DISC_SUCCESS,
  2135. config_methods, generated_pin);
  2136. }
  2137. void wpas_prov_disc_resp(void *ctx, const u8 *peer, u16 config_methods)
  2138. {
  2139. struct wpa_supplicant *wpa_s = ctx;
  2140. unsigned int generated_pin = 0;
  2141. char params[20];
  2142. if (wpa_s->pending_pd_before_join &&
  2143. (os_memcmp(peer, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
  2144. os_memcmp(peer, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0)) {
  2145. wpa_s->pending_pd_before_join = 0;
  2146. wpa_printf(MSG_DEBUG, "P2P: Starting pending "
  2147. "join-existing-group operation");
  2148. wpas_p2p_join_start(wpa_s);
  2149. return;
  2150. }
  2151. if (wpa_s->pending_pd_use == AUTO_PD_JOIN ||
  2152. wpa_s->pending_pd_use == AUTO_PD_GO_NEG)
  2153. os_snprintf(params, sizeof(params), " peer_go=%d",
  2154. wpa_s->pending_pd_use == AUTO_PD_JOIN);
  2155. else
  2156. params[0] = '\0';
  2157. if (config_methods & WPS_CONFIG_DISPLAY)
  2158. wpas_prov_disc_local_keypad(wpa_s, peer, params);
  2159. else if (config_methods & WPS_CONFIG_KEYPAD) {
  2160. generated_pin = wps_generate_pin();
  2161. wpas_prov_disc_local_display(wpa_s, peer, params,
  2162. generated_pin);
  2163. } else if (config_methods & WPS_CONFIG_PUSHBUTTON)
  2164. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_RESP
  2165. MACSTR "%s", MAC2STR(peer), params);
  2166. wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
  2167. P2P_PROV_DISC_SUCCESS,
  2168. config_methods, generated_pin);
  2169. }
  2170. static void wpas_prov_disc_fail(void *ctx, const u8 *peer,
  2171. enum p2p_prov_disc_status status)
  2172. {
  2173. struct wpa_supplicant *wpa_s = ctx;
  2174. if (wpa_s->p2p_fallback_to_go_neg) {
  2175. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: PD for p2p_connect-auto "
  2176. "failed - fall back to GO Negotiation");
  2177. wpas_p2p_fallback_to_go_neg(wpa_s, 0);
  2178. return;
  2179. }
  2180. if (status == P2P_PROV_DISC_TIMEOUT_JOIN) {
  2181. wpa_s->pending_pd_before_join = 0;
  2182. wpa_printf(MSG_DEBUG, "P2P: Starting pending "
  2183. "join-existing-group operation (no ACK for PD "
  2184. "Req attempts)");
  2185. wpas_p2p_join_start(wpa_s);
  2186. return;
  2187. }
  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. wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
  2192. status, 0, 0);
  2193. }
  2194. static int freq_included(const struct p2p_channels *channels, unsigned int freq)
  2195. {
  2196. if (channels == NULL)
  2197. return 1; /* Assume no restrictions */
  2198. return p2p_channels_includes_freq(channels, freq);
  2199. }
  2200. static u8 wpas_invitation_process(void *ctx, const u8 *sa, const u8 *bssid,
  2201. const u8 *go_dev_addr, const u8 *ssid,
  2202. size_t ssid_len, int *go, u8 *group_bssid,
  2203. int *force_freq, int persistent_group,
  2204. const struct p2p_channels *channels)
  2205. {
  2206. struct wpa_supplicant *wpa_s = ctx;
  2207. struct wpa_ssid *s;
  2208. int res;
  2209. struct wpa_supplicant *grp;
  2210. if (!persistent_group) {
  2211. wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
  2212. " to join an active group", MAC2STR(sa));
  2213. if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
  2214. (os_memcmp(go_dev_addr, wpa_s->p2p_auth_invite, ETH_ALEN)
  2215. == 0 ||
  2216. os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0)) {
  2217. wpa_printf(MSG_DEBUG, "P2P: Accept previously "
  2218. "authorized invitation");
  2219. goto accept_inv;
  2220. }
  2221. /*
  2222. * Do not accept the invitation automatically; notify user and
  2223. * request approval.
  2224. */
  2225. return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
  2226. }
  2227. grp = wpas_get_p2p_group(wpa_s, ssid, ssid_len, go);
  2228. if (grp) {
  2229. wpa_printf(MSG_DEBUG, "P2P: Accept invitation to already "
  2230. "running persistent group");
  2231. if (*go)
  2232. os_memcpy(group_bssid, grp->own_addr, ETH_ALEN);
  2233. goto accept_inv;
  2234. }
  2235. if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
  2236. os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0) {
  2237. wpa_printf(MSG_DEBUG, "P2P: Accept previously initiated "
  2238. "invitation to re-invoke a persistent group");
  2239. } else if (!wpa_s->conf->persistent_reconnect)
  2240. return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
  2241. for (s = wpa_s->conf->ssid; s; s = s->next) {
  2242. if (s->disabled == 2 &&
  2243. os_memcmp(s->bssid, go_dev_addr, ETH_ALEN) == 0 &&
  2244. s->ssid_len == ssid_len &&
  2245. os_memcmp(ssid, s->ssid, ssid_len) == 0)
  2246. break;
  2247. }
  2248. if (!s) {
  2249. wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
  2250. " requested reinvocation of an unknown group",
  2251. MAC2STR(sa));
  2252. return P2P_SC_FAIL_UNKNOWN_GROUP;
  2253. }
  2254. if (s->mode == WPAS_MODE_P2P_GO && !wpas_p2p_create_iface(wpa_s)) {
  2255. *go = 1;
  2256. if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
  2257. wpa_printf(MSG_DEBUG, "P2P: The only available "
  2258. "interface is already in use - reject "
  2259. "invitation");
  2260. return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
  2261. }
  2262. os_memcpy(group_bssid, wpa_s->own_addr, ETH_ALEN);
  2263. } else if (s->mode == WPAS_MODE_P2P_GO) {
  2264. *go = 1;
  2265. if (wpas_p2p_add_group_interface(wpa_s, WPA_IF_P2P_GO) < 0)
  2266. {
  2267. wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
  2268. "interface address for the group");
  2269. return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
  2270. }
  2271. os_memcpy(group_bssid, wpa_s->pending_interface_addr,
  2272. ETH_ALEN);
  2273. }
  2274. accept_inv:
  2275. wpas_p2p_set_own_freq_preference(wpa_s, 0);
  2276. /* Get one of the frequencies currently in use */
  2277. if (wpas_p2p_valid_oper_freqs(wpa_s, &res, 1) > 0) {
  2278. wpa_printf(MSG_DEBUG, "P2P: Trying to force channel to match a channel already used by one of the interfaces");
  2279. *force_freq = res;
  2280. wpas_p2p_set_own_freq_preference(wpa_s, res);
  2281. }
  2282. if (*force_freq > 0 && wpa_s->num_multichan_concurrent > 1 &&
  2283. wpas_p2p_num_unused_channels(wpa_s) > 0) {
  2284. if (*go == 0) {
  2285. /* We are the client */
  2286. wpa_printf(MSG_DEBUG, "P2P: Peer was found to be "
  2287. "running a GO but we are capable of MCC, "
  2288. "figure out the best channel to use");
  2289. *force_freq = 0;
  2290. } else if (!freq_included(channels, *force_freq)) {
  2291. /* We are the GO, and *force_freq is not in the
  2292. * intersection */
  2293. wpa_printf(MSG_DEBUG, "P2P: Forced GO freq %d MHz not "
  2294. "in intersection but we are capable of MCC, "
  2295. "figure out the best channel to use",
  2296. *force_freq);
  2297. *force_freq = 0;
  2298. }
  2299. }
  2300. return P2P_SC_SUCCESS;
  2301. }
  2302. static void wpas_invitation_received(void *ctx, const u8 *sa, const u8 *bssid,
  2303. const u8 *ssid, size_t ssid_len,
  2304. const u8 *go_dev_addr, u8 status,
  2305. int op_freq)
  2306. {
  2307. struct wpa_supplicant *wpa_s = ctx;
  2308. struct wpa_ssid *s;
  2309. for (s = wpa_s->conf->ssid; s; s = s->next) {
  2310. if (s->disabled == 2 &&
  2311. s->ssid_len == ssid_len &&
  2312. os_memcmp(ssid, s->ssid, ssid_len) == 0)
  2313. break;
  2314. }
  2315. if (status == P2P_SC_SUCCESS) {
  2316. wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
  2317. " was accepted; op_freq=%d MHz",
  2318. MAC2STR(sa), op_freq);
  2319. if (s) {
  2320. int go = s->mode == WPAS_MODE_P2P_GO;
  2321. wpas_p2p_group_add_persistent(
  2322. wpa_s, s, go, go ? op_freq : 0, 0, 0, NULL,
  2323. go ? P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE : 0);
  2324. } else if (bssid) {
  2325. wpa_s->user_initiated_pd = 0;
  2326. wpas_p2p_join(wpa_s, bssid, go_dev_addr,
  2327. wpa_s->p2p_wps_method, 0);
  2328. }
  2329. return;
  2330. }
  2331. if (status != P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
  2332. wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
  2333. " was rejected (status %u)", MAC2STR(sa), status);
  2334. return;
  2335. }
  2336. if (!s) {
  2337. if (bssid) {
  2338. wpa_msg_global(wpa_s, MSG_INFO,
  2339. P2P_EVENT_INVITATION_RECEIVED
  2340. "sa=" MACSTR " go_dev_addr=" MACSTR
  2341. " bssid=" MACSTR " unknown-network",
  2342. MAC2STR(sa), MAC2STR(go_dev_addr),
  2343. MAC2STR(bssid));
  2344. } else {
  2345. wpa_msg_global(wpa_s, MSG_INFO,
  2346. P2P_EVENT_INVITATION_RECEIVED
  2347. "sa=" MACSTR " go_dev_addr=" MACSTR
  2348. " unknown-network",
  2349. MAC2STR(sa), MAC2STR(go_dev_addr));
  2350. }
  2351. return;
  2352. }
  2353. if (s->mode == WPAS_MODE_P2P_GO && op_freq) {
  2354. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
  2355. "sa=" MACSTR " persistent=%d freq=%d",
  2356. MAC2STR(sa), s->id, op_freq);
  2357. } else {
  2358. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
  2359. "sa=" MACSTR " persistent=%d",
  2360. MAC2STR(sa), s->id);
  2361. }
  2362. }
  2363. static void wpas_remove_persistent_peer(struct wpa_supplicant *wpa_s,
  2364. struct wpa_ssid *ssid,
  2365. const u8 *peer, int inv)
  2366. {
  2367. size_t i;
  2368. if (ssid == NULL)
  2369. return;
  2370. for (i = 0; ssid->p2p_client_list && i < ssid->num_p2p_clients; i++) {
  2371. if (os_memcmp(ssid->p2p_client_list + i * ETH_ALEN, peer,
  2372. ETH_ALEN) == 0)
  2373. break;
  2374. }
  2375. if (i >= ssid->num_p2p_clients) {
  2376. if (ssid->mode != WPAS_MODE_P2P_GO &&
  2377. os_memcmp(ssid->bssid, peer, ETH_ALEN) == 0) {
  2378. wpa_printf(MSG_DEBUG, "P2P: Remove persistent group %d "
  2379. "due to invitation result", ssid->id);
  2380. wpas_notify_network_removed(wpa_s, ssid);
  2381. wpa_config_remove_network(wpa_s->conf, ssid->id);
  2382. return;
  2383. }
  2384. return; /* Peer not found in client list */
  2385. }
  2386. wpa_printf(MSG_DEBUG, "P2P: Remove peer " MACSTR " from persistent "
  2387. "group %d client list%s",
  2388. MAC2STR(peer), ssid->id,
  2389. inv ? " due to invitation result" : "");
  2390. os_memmove(ssid->p2p_client_list + i * ETH_ALEN,
  2391. ssid->p2p_client_list + (i + 1) * ETH_ALEN,
  2392. (ssid->num_p2p_clients - i - 1) * ETH_ALEN);
  2393. ssid->num_p2p_clients--;
  2394. #ifndef CONFIG_NO_CONFIG_WRITE
  2395. if (wpa_s->parent->conf->update_config &&
  2396. wpa_config_write(wpa_s->parent->confname, wpa_s->parent->conf))
  2397. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  2398. #endif /* CONFIG_NO_CONFIG_WRITE */
  2399. }
  2400. static void wpas_remove_persistent_client(struct wpa_supplicant *wpa_s,
  2401. const u8 *peer)
  2402. {
  2403. struct wpa_ssid *ssid;
  2404. wpa_s = wpa_s->global->p2p_invite_group;
  2405. if (wpa_s == NULL)
  2406. return; /* No known invitation group */
  2407. ssid = wpa_s->current_ssid;
  2408. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
  2409. !ssid->p2p_persistent_group)
  2410. return; /* Not operating as a GO in persistent group */
  2411. ssid = wpas_p2p_get_persistent(wpa_s->parent, peer,
  2412. ssid->ssid, ssid->ssid_len);
  2413. wpas_remove_persistent_peer(wpa_s, ssid, peer, 1);
  2414. }
  2415. static void wpas_invitation_result(void *ctx, int status, const u8 *bssid,
  2416. const struct p2p_channels *channels,
  2417. const u8 *peer, int neg_freq)
  2418. {
  2419. struct wpa_supplicant *wpa_s = ctx;
  2420. struct wpa_ssid *ssid;
  2421. int freq;
  2422. if (bssid) {
  2423. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
  2424. "status=%d " MACSTR,
  2425. status, MAC2STR(bssid));
  2426. } else {
  2427. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
  2428. "status=%d ", status);
  2429. }
  2430. wpas_notify_p2p_invitation_result(wpa_s, status, bssid);
  2431. wpa_printf(MSG_DEBUG, "P2P: Invitation result - status=%d peer=" MACSTR,
  2432. status, MAC2STR(peer));
  2433. if (wpa_s->pending_invite_ssid_id == -1) {
  2434. if (status == P2P_SC_FAIL_UNKNOWN_GROUP)
  2435. wpas_remove_persistent_client(wpa_s, peer);
  2436. return; /* Invitation to active group */
  2437. }
  2438. if (status == P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
  2439. wpa_printf(MSG_DEBUG, "P2P: Waiting for peer to start another "
  2440. "invitation exchange to indicate readiness for "
  2441. "re-invocation");
  2442. }
  2443. if (status != P2P_SC_SUCCESS) {
  2444. if (status == P2P_SC_FAIL_UNKNOWN_GROUP) {
  2445. ssid = wpa_config_get_network(
  2446. wpa_s->conf, wpa_s->pending_invite_ssid_id);
  2447. wpas_remove_persistent_peer(wpa_s, ssid, peer, 1);
  2448. }
  2449. wpas_p2p_remove_pending_group_interface(wpa_s);
  2450. return;
  2451. }
  2452. ssid = wpa_config_get_network(wpa_s->conf,
  2453. wpa_s->pending_invite_ssid_id);
  2454. if (ssid == NULL) {
  2455. wpa_printf(MSG_ERROR, "P2P: Could not find persistent group "
  2456. "data matching with invitation");
  2457. return;
  2458. }
  2459. /*
  2460. * The peer could have missed our ctrl::ack frame for Invitation
  2461. * Response and continue retransmitting the frame. To reduce the
  2462. * likelihood of the peer not getting successful TX status for the
  2463. * Invitation Response frame, wait a short time here before starting
  2464. * the persistent group so that we will remain on the current channel to
  2465. * acknowledge any possible retransmission from the peer.
  2466. */
  2467. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: 50 ms wait on current channel before "
  2468. "starting persistent group");
  2469. os_sleep(0, 50000);
  2470. freq = wpa_s->p2p_persistent_go_freq;
  2471. if (neg_freq > 0 && ssid->mode == WPAS_MODE_P2P_GO &&
  2472. freq_included(channels, neg_freq)) {
  2473. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use frequence %d MHz from invitation for GO mode",
  2474. neg_freq);
  2475. freq = neg_freq;
  2476. }
  2477. wpas_p2p_group_add_persistent(wpa_s, ssid,
  2478. ssid->mode == WPAS_MODE_P2P_GO,
  2479. freq,
  2480. wpa_s->p2p_go_ht40, wpa_s->p2p_go_vht,
  2481. channels,
  2482. ssid->mode == WPAS_MODE_P2P_GO ?
  2483. P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE :
  2484. 0);
  2485. }
  2486. static int wpas_p2p_disallowed_freq(struct wpa_global *global,
  2487. unsigned int freq)
  2488. {
  2489. return freq_range_list_includes(&global->p2p_disallow_freq, freq);
  2490. }
  2491. static void wpas_p2p_add_chan(struct p2p_reg_class *reg, u8 chan)
  2492. {
  2493. reg->channel[reg->channels] = chan;
  2494. reg->channels++;
  2495. }
  2496. static int wpas_p2p_default_channels(struct wpa_supplicant *wpa_s,
  2497. struct p2p_channels *chan,
  2498. struct p2p_channels *cli_chan)
  2499. {
  2500. int i, cla = 0;
  2501. os_memset(cli_chan, 0, sizeof(*cli_chan));
  2502. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for 2.4 GHz "
  2503. "band");
  2504. /* Operating class 81 - 2.4 GHz band channels 1..13 */
  2505. chan->reg_class[cla].reg_class = 81;
  2506. chan->reg_class[cla].channels = 0;
  2507. for (i = 0; i < 11; i++) {
  2508. if (!wpas_p2p_disallowed_freq(wpa_s->global, 2412 + i * 5))
  2509. wpas_p2p_add_chan(&chan->reg_class[cla], i + 1);
  2510. }
  2511. if (chan->reg_class[cla].channels)
  2512. cla++;
  2513. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for lower 5 GHz "
  2514. "band");
  2515. /* Operating class 115 - 5 GHz, channels 36-48 */
  2516. chan->reg_class[cla].reg_class = 115;
  2517. chan->reg_class[cla].channels = 0;
  2518. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 36 * 5))
  2519. wpas_p2p_add_chan(&chan->reg_class[cla], 36);
  2520. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 40 * 5))
  2521. wpas_p2p_add_chan(&chan->reg_class[cla], 40);
  2522. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 44 * 5))
  2523. wpas_p2p_add_chan(&chan->reg_class[cla], 44);
  2524. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 48 * 5))
  2525. wpas_p2p_add_chan(&chan->reg_class[cla], 48);
  2526. if (chan->reg_class[cla].channels)
  2527. cla++;
  2528. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for higher 5 GHz "
  2529. "band");
  2530. /* Operating class 124 - 5 GHz, channels 149,153,157,161 */
  2531. chan->reg_class[cla].reg_class = 124;
  2532. chan->reg_class[cla].channels = 0;
  2533. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 149 * 5))
  2534. wpas_p2p_add_chan(&chan->reg_class[cla], 149);
  2535. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 153 * 5))
  2536. wpas_p2p_add_chan(&chan->reg_class[cla], 153);
  2537. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 156 * 5))
  2538. wpas_p2p_add_chan(&chan->reg_class[cla], 157);
  2539. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 161 * 5))
  2540. wpas_p2p_add_chan(&chan->reg_class[cla], 161);
  2541. if (chan->reg_class[cla].channels)
  2542. cla++;
  2543. chan->reg_classes = cla;
  2544. return 0;
  2545. }
  2546. static struct hostapd_hw_modes * get_mode(struct hostapd_hw_modes *modes,
  2547. u16 num_modes,
  2548. enum hostapd_hw_mode mode)
  2549. {
  2550. u16 i;
  2551. for (i = 0; i < num_modes; i++) {
  2552. if (modes[i].mode == mode)
  2553. return &modes[i];
  2554. }
  2555. return NULL;
  2556. }
  2557. enum chan_allowed {
  2558. NOT_ALLOWED, PASSIVE_ONLY, ALLOWED
  2559. };
  2560. static int has_channel(struct wpa_global *global,
  2561. struct hostapd_hw_modes *mode, u8 chan, int *flags)
  2562. {
  2563. int i;
  2564. unsigned int freq;
  2565. freq = (mode->mode == HOSTAPD_MODE_IEEE80211A ? 5000 : 2407) +
  2566. chan * 5;
  2567. if (wpas_p2p_disallowed_freq(global, freq))
  2568. return NOT_ALLOWED;
  2569. for (i = 0; i < mode->num_channels; i++) {
  2570. if (mode->channels[i].chan == chan) {
  2571. if (flags)
  2572. *flags = mode->channels[i].flag;
  2573. if (mode->channels[i].flag &
  2574. (HOSTAPD_CHAN_DISABLED |
  2575. HOSTAPD_CHAN_RADAR))
  2576. return NOT_ALLOWED;
  2577. if (mode->channels[i].flag &
  2578. (HOSTAPD_CHAN_PASSIVE_SCAN |
  2579. HOSTAPD_CHAN_NO_IBSS))
  2580. return PASSIVE_ONLY;
  2581. return ALLOWED;
  2582. }
  2583. }
  2584. return NOT_ALLOWED;
  2585. }
  2586. struct p2p_oper_class_map {
  2587. enum hostapd_hw_mode mode;
  2588. u8 op_class;
  2589. u8 min_chan;
  2590. u8 max_chan;
  2591. u8 inc;
  2592. enum { BW20, BW40PLUS, BW40MINUS, BW80 } bw;
  2593. };
  2594. static struct p2p_oper_class_map op_class[] = {
  2595. { HOSTAPD_MODE_IEEE80211G, 81, 1, 13, 1, BW20 },
  2596. #if 0 /* Do not enable HT40 on 2 GHz for now */
  2597. { HOSTAPD_MODE_IEEE80211G, 83, 1, 9, 1, BW40PLUS },
  2598. { HOSTAPD_MODE_IEEE80211G, 84, 5, 13, 1, BW40MINUS },
  2599. #endif
  2600. { HOSTAPD_MODE_IEEE80211A, 115, 36, 48, 4, BW20 },
  2601. { HOSTAPD_MODE_IEEE80211A, 124, 149, 161, 4, BW20 },
  2602. { HOSTAPD_MODE_IEEE80211A, 116, 36, 44, 8, BW40PLUS },
  2603. { HOSTAPD_MODE_IEEE80211A, 117, 40, 48, 8, BW40MINUS },
  2604. { HOSTAPD_MODE_IEEE80211A, 126, 149, 157, 8, BW40PLUS },
  2605. { HOSTAPD_MODE_IEEE80211A, 127, 153, 161, 8, BW40MINUS },
  2606. /*
  2607. * IEEE P802.11ac/D7.0 Table E-4 actually talks about channel center
  2608. * frequency index 42, 58, 106, 122, 138, 155 with channel spacing of
  2609. * 80 MHz, but currently use the following definition for simplicity
  2610. * (these center frequencies are not actual channels, which makes
  2611. * has_channel() fail). wpas_p2p_verify_80mhz() should take care of
  2612. * removing invalid channels.
  2613. */
  2614. { HOSTAPD_MODE_IEEE80211A, 128, 36, 161, 4, BW80 },
  2615. { -1, 0, 0, 0, 0, BW20 }
  2616. };
  2617. static int wpas_p2p_get_center_80mhz(struct wpa_supplicant *wpa_s,
  2618. struct hostapd_hw_modes *mode,
  2619. u8 channel)
  2620. {
  2621. u8 center_channels[] = { 42, 58, 106, 122, 138, 155 };
  2622. unsigned int i;
  2623. if (mode->mode != HOSTAPD_MODE_IEEE80211A)
  2624. return 0;
  2625. for (i = 0; i < ARRAY_SIZE(center_channels); i++)
  2626. /*
  2627. * In 80 MHz, the bandwidth "spans" 12 channels (e.g., 36-48),
  2628. * so the center channel is 6 channels away from the start/end.
  2629. */
  2630. if (channel >= center_channels[i] - 6 &&
  2631. channel <= center_channels[i] + 6)
  2632. return center_channels[i];
  2633. return 0;
  2634. }
  2635. static enum chan_allowed wpas_p2p_verify_80mhz(struct wpa_supplicant *wpa_s,
  2636. struct hostapd_hw_modes *mode,
  2637. u8 channel, u8 bw)
  2638. {
  2639. u8 center_chan;
  2640. int i, flags;
  2641. enum chan_allowed res, ret = ALLOWED;
  2642. center_chan = wpas_p2p_get_center_80mhz(wpa_s, mode, channel);
  2643. if (!center_chan)
  2644. return NOT_ALLOWED;
  2645. if (center_chan >= 58 && center_chan <= 138)
  2646. return NOT_ALLOWED; /* Do not allow DFS channels for P2P */
  2647. /* check all the channels are available */
  2648. for (i = 0; i < 4; i++) {
  2649. int adj_chan = center_chan - 6 + i * 4;
  2650. res = has_channel(wpa_s->global, mode, adj_chan, &flags);
  2651. if (res == NOT_ALLOWED)
  2652. return NOT_ALLOWED;
  2653. if (res == PASSIVE_ONLY)
  2654. ret = PASSIVE_ONLY;
  2655. if (i == 0 && !(flags & HOSTAPD_CHAN_VHT_10_70))
  2656. return NOT_ALLOWED;
  2657. if (i == 1 && !(flags & HOSTAPD_CHAN_VHT_30_50))
  2658. return NOT_ALLOWED;
  2659. if (i == 2 && !(flags & HOSTAPD_CHAN_VHT_50_30))
  2660. return NOT_ALLOWED;
  2661. if (i == 3 && !(flags & HOSTAPD_CHAN_VHT_70_10))
  2662. return NOT_ALLOWED;
  2663. }
  2664. return ret;
  2665. }
  2666. static enum chan_allowed wpas_p2p_verify_channel(struct wpa_supplicant *wpa_s,
  2667. struct hostapd_hw_modes *mode,
  2668. u8 channel, u8 bw)
  2669. {
  2670. int flag;
  2671. enum chan_allowed res, res2;
  2672. res2 = res = has_channel(wpa_s->global, mode, channel, &flag);
  2673. if (bw == BW40MINUS) {
  2674. if (!(flag & HOSTAPD_CHAN_HT40MINUS))
  2675. return NOT_ALLOWED;
  2676. res2 = has_channel(wpa_s->global, mode, channel - 4, NULL);
  2677. } else if (bw == BW40PLUS) {
  2678. if (!(flag & HOSTAPD_CHAN_HT40PLUS))
  2679. return NOT_ALLOWED;
  2680. res2 = has_channel(wpa_s->global, mode, channel + 4, NULL);
  2681. } else if (bw == BW80) {
  2682. res2 = wpas_p2p_verify_80mhz(wpa_s, mode, channel, bw);
  2683. }
  2684. if (res == NOT_ALLOWED || res2 == NOT_ALLOWED)
  2685. return NOT_ALLOWED;
  2686. if (res == PASSIVE_ONLY || res2 == PASSIVE_ONLY)
  2687. return PASSIVE_ONLY;
  2688. return res;
  2689. }
  2690. static int wpas_p2p_setup_channels(struct wpa_supplicant *wpa_s,
  2691. struct p2p_channels *chan,
  2692. struct p2p_channels *cli_chan)
  2693. {
  2694. struct hostapd_hw_modes *mode;
  2695. int cla, op, cli_cla;
  2696. if (wpa_s->hw.modes == NULL) {
  2697. wpa_printf(MSG_DEBUG, "P2P: Driver did not support fetching "
  2698. "of all supported channels; assume dualband "
  2699. "support");
  2700. return wpas_p2p_default_channels(wpa_s, chan, cli_chan);
  2701. }
  2702. cla = cli_cla = 0;
  2703. for (op = 0; op_class[op].op_class; op++) {
  2704. struct p2p_oper_class_map *o = &op_class[op];
  2705. u8 ch;
  2706. struct p2p_reg_class *reg = NULL, *cli_reg = NULL;
  2707. mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, o->mode);
  2708. if (mode == NULL)
  2709. continue;
  2710. for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
  2711. enum chan_allowed res;
  2712. res = wpas_p2p_verify_channel(wpa_s, mode, ch, o->bw);
  2713. if (res == ALLOWED) {
  2714. if (reg == NULL) {
  2715. wpa_printf(MSG_DEBUG, "P2P: Add operating class %u",
  2716. o->op_class);
  2717. reg = &chan->reg_class[cla];
  2718. cla++;
  2719. reg->reg_class = o->op_class;
  2720. }
  2721. reg->channel[reg->channels] = ch;
  2722. reg->channels++;
  2723. } else if (res == PASSIVE_ONLY &&
  2724. wpa_s->conf->p2p_add_cli_chan) {
  2725. if (cli_reg == NULL) {
  2726. wpa_printf(MSG_DEBUG, "P2P: Add operating class %u (client only)",
  2727. o->op_class);
  2728. cli_reg = &cli_chan->reg_class[cli_cla];
  2729. cli_cla++;
  2730. cli_reg->reg_class = o->op_class;
  2731. }
  2732. cli_reg->channel[cli_reg->channels] = ch;
  2733. cli_reg->channels++;
  2734. }
  2735. }
  2736. if (reg) {
  2737. wpa_hexdump(MSG_DEBUG, "P2P: Channels",
  2738. reg->channel, reg->channels);
  2739. }
  2740. if (cli_reg) {
  2741. wpa_hexdump(MSG_DEBUG, "P2P: Channels (client only)",
  2742. cli_reg->channel, cli_reg->channels);
  2743. }
  2744. }
  2745. chan->reg_classes = cla;
  2746. cli_chan->reg_classes = cli_cla;
  2747. return 0;
  2748. }
  2749. int wpas_p2p_get_ht40_mode(struct wpa_supplicant *wpa_s,
  2750. struct hostapd_hw_modes *mode, u8 channel)
  2751. {
  2752. int op;
  2753. enum chan_allowed ret;
  2754. for (op = 0; op_class[op].op_class; op++) {
  2755. struct p2p_oper_class_map *o = &op_class[op];
  2756. u8 ch;
  2757. for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
  2758. if (o->mode != HOSTAPD_MODE_IEEE80211A ||
  2759. o->bw == BW20 || ch != channel)
  2760. continue;
  2761. ret = wpas_p2p_verify_channel(wpa_s, mode, ch, o->bw);
  2762. if (ret == ALLOWED)
  2763. return (o->bw == BW40MINUS) ? -1 : 1;
  2764. }
  2765. }
  2766. return 0;
  2767. }
  2768. int wpas_p2p_get_vht80_center(struct wpa_supplicant *wpa_s,
  2769. struct hostapd_hw_modes *mode, u8 channel)
  2770. {
  2771. if (!wpas_p2p_verify_channel(wpa_s, mode, channel, BW80))
  2772. return 0;
  2773. return wpas_p2p_get_center_80mhz(wpa_s, mode, channel);
  2774. }
  2775. static int wpas_get_noa(void *ctx, const u8 *interface_addr, u8 *buf,
  2776. size_t buf_len)
  2777. {
  2778. struct wpa_supplicant *wpa_s = ctx;
  2779. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  2780. if (os_memcmp(wpa_s->own_addr, interface_addr, ETH_ALEN) == 0)
  2781. break;
  2782. }
  2783. if (wpa_s == NULL)
  2784. return -1;
  2785. return wpa_drv_get_noa(wpa_s, buf, buf_len);
  2786. }
  2787. static int wpas_go_connected(void *ctx, const u8 *dev_addr)
  2788. {
  2789. struct wpa_supplicant *wpa_s = ctx;
  2790. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  2791. struct wpa_ssid *ssid = wpa_s->current_ssid;
  2792. if (ssid == NULL)
  2793. continue;
  2794. if (ssid->mode != WPAS_MODE_INFRA)
  2795. continue;
  2796. if (wpa_s->wpa_state != WPA_COMPLETED &&
  2797. wpa_s->wpa_state != WPA_GROUP_HANDSHAKE)
  2798. continue;
  2799. if (os_memcmp(wpa_s->go_dev_addr, dev_addr, ETH_ALEN) == 0)
  2800. return 1;
  2801. }
  2802. return 0;
  2803. }
  2804. static void wpas_p2p_debug_print(void *ctx, int level, const char *msg)
  2805. {
  2806. struct wpa_supplicant *wpa_s = ctx;
  2807. wpa_msg_global(wpa_s, level, "P2P: %s", msg);
  2808. }
  2809. int wpas_p2p_add_p2pdev_interface(struct wpa_supplicant *wpa_s)
  2810. {
  2811. struct wpa_interface iface;
  2812. struct wpa_supplicant *p2pdev_wpa_s;
  2813. char ifname[100];
  2814. char force_name[100];
  2815. int ret;
  2816. os_snprintf(ifname, sizeof(ifname), P2P_MGMT_DEVICE_PREFIX "%s",
  2817. wpa_s->ifname);
  2818. force_name[0] = '\0';
  2819. wpa_s->pending_interface_type = WPA_IF_P2P_DEVICE;
  2820. ret = wpa_drv_if_add(wpa_s, WPA_IF_P2P_DEVICE, ifname, NULL, NULL,
  2821. force_name, wpa_s->pending_interface_addr, NULL);
  2822. if (ret < 0) {
  2823. wpa_printf(MSG_DEBUG, "P2P: Failed to create P2P Device interface");
  2824. return ret;
  2825. }
  2826. os_strlcpy(wpa_s->pending_interface_name, ifname,
  2827. sizeof(wpa_s->pending_interface_name));
  2828. os_memset(&iface, 0, sizeof(iface));
  2829. iface.p2p_mgmt = 1;
  2830. iface.ifname = wpa_s->pending_interface_name;
  2831. iface.driver = wpa_s->driver->name;
  2832. iface.driver_param = wpa_s->conf->driver_param;
  2833. iface.confname = wpa_s->confname;
  2834. p2pdev_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface);
  2835. if (!p2pdev_wpa_s) {
  2836. wpa_printf(MSG_DEBUG, "P2P: Failed to add P2P Device interface");
  2837. return -1;
  2838. }
  2839. p2pdev_wpa_s->parent = wpa_s;
  2840. wpa_s->pending_interface_name[0] = '\0';
  2841. return 0;
  2842. }
  2843. /**
  2844. * wpas_p2p_init - Initialize P2P module for %wpa_supplicant
  2845. * @global: Pointer to global data from wpa_supplicant_init()
  2846. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  2847. * Returns: 0 on success, -1 on failure
  2848. */
  2849. int wpas_p2p_init(struct wpa_global *global, struct wpa_supplicant *wpa_s)
  2850. {
  2851. struct p2p_config p2p;
  2852. unsigned int r;
  2853. int i;
  2854. if (wpa_s->conf->p2p_disabled)
  2855. return 0;
  2856. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
  2857. return 0;
  2858. if (global->p2p)
  2859. return 0;
  2860. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  2861. struct p2p_params params;
  2862. wpa_printf(MSG_DEBUG, "P2P: Use driver-based P2P management");
  2863. os_memset(&params, 0, sizeof(params));
  2864. params.dev_name = wpa_s->conf->device_name;
  2865. os_memcpy(params.pri_dev_type, wpa_s->conf->device_type,
  2866. WPS_DEV_TYPE_LEN);
  2867. params.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
  2868. os_memcpy(params.sec_dev_type,
  2869. wpa_s->conf->sec_device_type,
  2870. params.num_sec_dev_types * WPS_DEV_TYPE_LEN);
  2871. if (wpa_drv_p2p_set_params(wpa_s, &params) < 0)
  2872. return -1;
  2873. return 0;
  2874. }
  2875. os_memset(&p2p, 0, sizeof(p2p));
  2876. p2p.cb_ctx = wpa_s;
  2877. p2p.debug_print = wpas_p2p_debug_print;
  2878. p2p.p2p_scan = wpas_p2p_scan;
  2879. p2p.send_action = wpas_send_action;
  2880. p2p.send_action_done = wpas_send_action_done;
  2881. p2p.go_neg_completed = wpas_go_neg_completed;
  2882. p2p.go_neg_req_rx = wpas_go_neg_req_rx;
  2883. p2p.dev_found = wpas_dev_found;
  2884. p2p.dev_lost = wpas_dev_lost;
  2885. p2p.find_stopped = wpas_find_stopped;
  2886. p2p.start_listen = wpas_start_listen;
  2887. p2p.stop_listen = wpas_stop_listen;
  2888. p2p.send_probe_resp = wpas_send_probe_resp;
  2889. p2p.sd_request = wpas_sd_request;
  2890. p2p.sd_response = wpas_sd_response;
  2891. p2p.prov_disc_req = wpas_prov_disc_req;
  2892. p2p.prov_disc_resp = wpas_prov_disc_resp;
  2893. p2p.prov_disc_fail = wpas_prov_disc_fail;
  2894. p2p.invitation_process = wpas_invitation_process;
  2895. p2p.invitation_received = wpas_invitation_received;
  2896. p2p.invitation_result = wpas_invitation_result;
  2897. p2p.get_noa = wpas_get_noa;
  2898. p2p.go_connected = wpas_go_connected;
  2899. os_memcpy(wpa_s->global->p2p_dev_addr, wpa_s->own_addr, ETH_ALEN);
  2900. os_memcpy(p2p.dev_addr, wpa_s->global->p2p_dev_addr, ETH_ALEN);
  2901. p2p.dev_name = wpa_s->conf->device_name;
  2902. p2p.manufacturer = wpa_s->conf->manufacturer;
  2903. p2p.model_name = wpa_s->conf->model_name;
  2904. p2p.model_number = wpa_s->conf->model_number;
  2905. p2p.serial_number = wpa_s->conf->serial_number;
  2906. if (wpa_s->wps) {
  2907. os_memcpy(p2p.uuid, wpa_s->wps->uuid, 16);
  2908. p2p.config_methods = wpa_s->wps->config_methods;
  2909. }
  2910. if (wpa_s->conf->p2p_listen_reg_class &&
  2911. wpa_s->conf->p2p_listen_channel) {
  2912. p2p.reg_class = wpa_s->conf->p2p_listen_reg_class;
  2913. p2p.channel = wpa_s->conf->p2p_listen_channel;
  2914. } else {
  2915. p2p.reg_class = 81;
  2916. /*
  2917. * Pick one of the social channels randomly as the listen
  2918. * channel.
  2919. */
  2920. os_get_random((u8 *) &r, sizeof(r));
  2921. p2p.channel = 1 + (r % 3) * 5;
  2922. }
  2923. wpa_printf(MSG_DEBUG, "P2P: Own listen channel: %d", p2p.channel);
  2924. if (wpa_s->conf->p2p_oper_reg_class &&
  2925. wpa_s->conf->p2p_oper_channel) {
  2926. p2p.op_reg_class = wpa_s->conf->p2p_oper_reg_class;
  2927. p2p.op_channel = wpa_s->conf->p2p_oper_channel;
  2928. p2p.cfg_op_channel = 1;
  2929. wpa_printf(MSG_DEBUG, "P2P: Configured operating channel: "
  2930. "%d:%d", p2p.op_reg_class, p2p.op_channel);
  2931. } else {
  2932. p2p.op_reg_class = 81;
  2933. /*
  2934. * Use random operation channel from (1, 6, 11) if no other
  2935. * preference is indicated.
  2936. */
  2937. os_get_random((u8 *) &r, sizeof(r));
  2938. p2p.op_channel = 1 + (r % 3) * 5;
  2939. p2p.cfg_op_channel = 0;
  2940. wpa_printf(MSG_DEBUG, "P2P: Random operating channel: "
  2941. "%d:%d", p2p.op_reg_class, p2p.op_channel);
  2942. }
  2943. if (wpa_s->conf->p2p_pref_chan && wpa_s->conf->num_p2p_pref_chan) {
  2944. p2p.pref_chan = wpa_s->conf->p2p_pref_chan;
  2945. p2p.num_pref_chan = wpa_s->conf->num_p2p_pref_chan;
  2946. }
  2947. if (wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
  2948. os_memcpy(p2p.country, wpa_s->conf->country, 2);
  2949. p2p.country[2] = 0x04;
  2950. } else
  2951. os_memcpy(p2p.country, "XX\x04", 3);
  2952. if (wpas_p2p_setup_channels(wpa_s, &p2p.channels, &p2p.cli_channels)) {
  2953. wpa_printf(MSG_ERROR, "P2P: Failed to configure supported "
  2954. "channel list");
  2955. return -1;
  2956. }
  2957. os_memcpy(p2p.pri_dev_type, wpa_s->conf->device_type,
  2958. WPS_DEV_TYPE_LEN);
  2959. p2p.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
  2960. os_memcpy(p2p.sec_dev_type, wpa_s->conf->sec_device_type,
  2961. p2p.num_sec_dev_types * WPS_DEV_TYPE_LEN);
  2962. p2p.concurrent_operations = !!(wpa_s->drv_flags &
  2963. WPA_DRIVER_FLAGS_P2P_CONCURRENT);
  2964. p2p.max_peers = 100;
  2965. if (wpa_s->conf->p2p_ssid_postfix) {
  2966. p2p.ssid_postfix_len =
  2967. os_strlen(wpa_s->conf->p2p_ssid_postfix);
  2968. if (p2p.ssid_postfix_len > sizeof(p2p.ssid_postfix))
  2969. p2p.ssid_postfix_len = sizeof(p2p.ssid_postfix);
  2970. os_memcpy(p2p.ssid_postfix, wpa_s->conf->p2p_ssid_postfix,
  2971. p2p.ssid_postfix_len);
  2972. }
  2973. p2p.p2p_intra_bss = wpa_s->conf->p2p_intra_bss;
  2974. p2p.max_listen = wpa_s->max_remain_on_chan;
  2975. global->p2p = p2p_init(&p2p);
  2976. if (global->p2p == NULL)
  2977. return -1;
  2978. global->p2p_init_wpa_s = wpa_s;
  2979. for (i = 0; i < MAX_WPS_VENDOR_EXT; i++) {
  2980. if (wpa_s->conf->wps_vendor_ext[i] == NULL)
  2981. continue;
  2982. p2p_add_wps_vendor_extension(
  2983. global->p2p, wpa_s->conf->wps_vendor_ext[i]);
  2984. }
  2985. p2p_set_no_go_freq(global->p2p, &wpa_s->conf->p2p_no_go_freq);
  2986. return 0;
  2987. }
  2988. /**
  2989. * wpas_p2p_deinit - Deinitialize per-interface P2P data
  2990. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  2991. *
  2992. * This function deinitialize per-interface P2P data.
  2993. */
  2994. void wpas_p2p_deinit(struct wpa_supplicant *wpa_s)
  2995. {
  2996. if (wpa_s->driver && wpa_s->drv_priv)
  2997. wpa_drv_probe_req_report(wpa_s, 0);
  2998. if (wpa_s->go_params) {
  2999. /* Clear any stored provisioning info */
  3000. p2p_clear_provisioning_info(
  3001. wpa_s->global->p2p,
  3002. wpa_s->go_params->peer_device_addr);
  3003. }
  3004. os_free(wpa_s->go_params);
  3005. wpa_s->go_params = NULL;
  3006. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  3007. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  3008. wpa_s->p2p_long_listen = 0;
  3009. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  3010. eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
  3011. wpas_p2p_remove_pending_group_interface(wpa_s);
  3012. /* TODO: remove group interface from the driver if this wpa_s instance
  3013. * is on top of a P2P group interface */
  3014. }
  3015. /**
  3016. * wpas_p2p_deinit_global - Deinitialize global P2P module
  3017. * @global: Pointer to global data from wpa_supplicant_init()
  3018. *
  3019. * This function deinitializes the global (per device) P2P module.
  3020. */
  3021. void wpas_p2p_deinit_global(struct wpa_global *global)
  3022. {
  3023. struct wpa_supplicant *wpa_s, *tmp;
  3024. wpa_s = global->ifaces;
  3025. if (wpa_s)
  3026. wpas_p2p_service_flush(wpa_s);
  3027. if (global->p2p == NULL)
  3028. return;
  3029. /* Remove remaining P2P group interfaces */
  3030. while (wpa_s && wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE)
  3031. wpa_s = wpa_s->next;
  3032. while (wpa_s) {
  3033. tmp = global->ifaces;
  3034. while (tmp &&
  3035. (tmp == wpa_s ||
  3036. tmp->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)) {
  3037. tmp = tmp->next;
  3038. }
  3039. if (tmp == NULL)
  3040. break;
  3041. /* Disconnect from the P2P group and deinit the interface */
  3042. wpas_p2p_disconnect(tmp);
  3043. }
  3044. /*
  3045. * Deinit GO data on any possibly remaining interface (if main
  3046. * interface is used as GO).
  3047. */
  3048. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  3049. if (wpa_s->ap_iface)
  3050. wpas_p2p_group_deinit(wpa_s);
  3051. }
  3052. p2p_deinit(global->p2p);
  3053. global->p2p = NULL;
  3054. global->p2p_init_wpa_s = NULL;
  3055. }
  3056. static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s)
  3057. {
  3058. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE) &&
  3059. wpa_s->conf->p2p_no_group_iface)
  3060. return 0; /* separate interface disabled per configuration */
  3061. if (wpa_s->drv_flags &
  3062. (WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE |
  3063. WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P))
  3064. return 1; /* P2P group requires a new interface in every case
  3065. */
  3066. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CONCURRENT))
  3067. return 0; /* driver does not support concurrent operations */
  3068. if (wpa_s->global->ifaces->next)
  3069. return 1; /* more that one interface already in use */
  3070. if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
  3071. return 1; /* this interface is already in use */
  3072. return 0;
  3073. }
  3074. static int wpas_p2p_start_go_neg(struct wpa_supplicant *wpa_s,
  3075. const u8 *peer_addr,
  3076. enum p2p_wps_method wps_method,
  3077. int go_intent, const u8 *own_interface_addr,
  3078. unsigned int force_freq, int persistent_group,
  3079. struct wpa_ssid *ssid, unsigned int pref_freq)
  3080. {
  3081. if (persistent_group && wpa_s->conf->persistent_reconnect)
  3082. persistent_group = 2;
  3083. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  3084. return wpa_drv_p2p_connect(wpa_s, peer_addr, wps_method,
  3085. go_intent, own_interface_addr,
  3086. force_freq, persistent_group);
  3087. }
  3088. /*
  3089. * Increase GO config timeout if HT40 is used since it takes some time
  3090. * to scan channels for coex purposes before the BSS can be started.
  3091. */
  3092. p2p_set_config_timeout(wpa_s->global->p2p,
  3093. wpa_s->p2p_go_ht40 ? 255 : 100, 20);
  3094. return p2p_connect(wpa_s->global->p2p, peer_addr, wps_method,
  3095. go_intent, own_interface_addr, force_freq,
  3096. persistent_group, ssid ? ssid->ssid : NULL,
  3097. ssid ? ssid->ssid_len : 0,
  3098. wpa_s->p2p_pd_before_go_neg, pref_freq);
  3099. }
  3100. static int wpas_p2p_auth_go_neg(struct wpa_supplicant *wpa_s,
  3101. const u8 *peer_addr,
  3102. enum p2p_wps_method wps_method,
  3103. int go_intent, const u8 *own_interface_addr,
  3104. unsigned int force_freq, int persistent_group,
  3105. struct wpa_ssid *ssid, unsigned int pref_freq)
  3106. {
  3107. if (persistent_group && wpa_s->conf->persistent_reconnect)
  3108. persistent_group = 2;
  3109. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  3110. return -1;
  3111. return p2p_authorize(wpa_s->global->p2p, peer_addr, wps_method,
  3112. go_intent, own_interface_addr, force_freq,
  3113. persistent_group, ssid ? ssid->ssid : NULL,
  3114. ssid ? ssid->ssid_len : 0, pref_freq);
  3115. }
  3116. static void wpas_p2p_check_join_scan_limit(struct wpa_supplicant *wpa_s)
  3117. {
  3118. wpa_s->p2p_join_scan_count++;
  3119. wpa_printf(MSG_DEBUG, "P2P: Join scan attempt %d",
  3120. wpa_s->p2p_join_scan_count);
  3121. if (wpa_s->p2p_join_scan_count > P2P_MAX_JOIN_SCAN_ATTEMPTS) {
  3122. wpa_printf(MSG_DEBUG, "P2P: Failed to find GO " MACSTR
  3123. " for join operationg - stop join attempt",
  3124. MAC2STR(wpa_s->pending_join_iface_addr));
  3125. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  3126. if (wpa_s->p2p_auto_pd) {
  3127. wpa_s->p2p_auto_pd = 0;
  3128. wpa_msg_global(wpa_s, MSG_INFO,
  3129. P2P_EVENT_PROV_DISC_FAILURE
  3130. " p2p_dev_addr=" MACSTR " status=N/A",
  3131. MAC2STR(wpa_s->pending_join_dev_addr));
  3132. return;
  3133. }
  3134. wpa_msg_global(wpa_s->parent, MSG_INFO,
  3135. P2P_EVENT_GROUP_FORMATION_FAILURE);
  3136. }
  3137. }
  3138. static int wpas_check_freq_conflict(struct wpa_supplicant *wpa_s, int freq)
  3139. {
  3140. int *freqs, res, num, i;
  3141. if (wpas_p2p_num_unused_channels(wpa_s) > 0) {
  3142. /* Multiple channels are supported and not all are in use */
  3143. return 0;
  3144. }
  3145. freqs = os_calloc(wpa_s->num_multichan_concurrent, sizeof(int));
  3146. if (!freqs)
  3147. return 1;
  3148. num = wpas_p2p_valid_oper_freqs(wpa_s, freqs,
  3149. wpa_s->num_multichan_concurrent);
  3150. if (num < 0) {
  3151. res = 1;
  3152. goto exit_free;
  3153. }
  3154. for (i = 0; i < num; i++) {
  3155. if (freqs[i] == freq) {
  3156. wpa_printf(MSG_DEBUG, "P2P: Frequency %d MHz in use by another virtual interface and can be used",
  3157. freq);
  3158. res = 0;
  3159. goto exit_free;
  3160. }
  3161. }
  3162. res = 1;
  3163. exit_free:
  3164. os_free(freqs);
  3165. return res;
  3166. }
  3167. static int wpas_p2p_peer_go(struct wpa_supplicant *wpa_s,
  3168. const u8 *peer_dev_addr)
  3169. {
  3170. struct wpa_bss *bss;
  3171. int updated;
  3172. bss = wpa_bss_get_p2p_dev_addr(wpa_s, peer_dev_addr);
  3173. if (bss == NULL)
  3174. return -1;
  3175. if (bss->last_update_idx < wpa_s->bss_update_idx) {
  3176. wpa_printf(MSG_DEBUG, "P2P: Peer BSS entry not updated in the "
  3177. "last scan");
  3178. return 0;
  3179. }
  3180. updated = os_time_before(&wpa_s->p2p_auto_started, &bss->last_update);
  3181. wpa_printf(MSG_DEBUG, "P2P: Current BSS entry for peer updated at "
  3182. "%ld.%06ld (%supdated in last scan)",
  3183. bss->last_update.sec, bss->last_update.usec,
  3184. updated ? "": "not ");
  3185. return updated;
  3186. }
  3187. static void wpas_p2p_scan_res_join(struct wpa_supplicant *wpa_s,
  3188. struct wpa_scan_results *scan_res)
  3189. {
  3190. struct wpa_bss *bss;
  3191. int freq;
  3192. u8 iface_addr[ETH_ALEN];
  3193. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  3194. if (wpa_s->global->p2p_disabled)
  3195. return;
  3196. wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS) for %sjoin",
  3197. scan_res ? (int) scan_res->num : -1,
  3198. wpa_s->p2p_auto_join ? "auto_" : "");
  3199. if (scan_res)
  3200. wpas_p2p_scan_res_handler(wpa_s, scan_res);
  3201. if (wpa_s->p2p_auto_pd) {
  3202. int join = wpas_p2p_peer_go(wpa_s,
  3203. wpa_s->pending_join_dev_addr);
  3204. if (join == 0 &&
  3205. wpa_s->auto_pd_scan_retry < P2P_AUTO_PD_SCAN_ATTEMPTS) {
  3206. wpa_s->auto_pd_scan_retry++;
  3207. bss = wpa_bss_get_bssid_latest(
  3208. wpa_s, wpa_s->pending_join_dev_addr);
  3209. if (bss) {
  3210. freq = bss->freq;
  3211. wpa_printf(MSG_DEBUG, "P2P: Scan retry %d for "
  3212. "the peer " MACSTR " at %d MHz",
  3213. wpa_s->auto_pd_scan_retry,
  3214. MAC2STR(wpa_s->
  3215. pending_join_dev_addr),
  3216. freq);
  3217. wpas_p2p_join_scan_req(wpa_s, freq);
  3218. return;
  3219. }
  3220. }
  3221. if (join < 0)
  3222. join = 0;
  3223. wpa_s->p2p_auto_pd = 0;
  3224. wpa_s->pending_pd_use = join ? AUTO_PD_JOIN : AUTO_PD_GO_NEG;
  3225. wpa_printf(MSG_DEBUG, "P2P: Auto PD with " MACSTR " join=%d",
  3226. MAC2STR(wpa_s->pending_join_dev_addr), join);
  3227. if (p2p_prov_disc_req(wpa_s->global->p2p,
  3228. wpa_s->pending_join_dev_addr,
  3229. wpa_s->pending_pd_config_methods, join,
  3230. 0, wpa_s->user_initiated_pd) < 0) {
  3231. wpa_s->p2p_auto_pd = 0;
  3232. wpa_msg_global(wpa_s, MSG_INFO,
  3233. P2P_EVENT_PROV_DISC_FAILURE
  3234. " p2p_dev_addr=" MACSTR " status=N/A",
  3235. MAC2STR(wpa_s->pending_join_dev_addr));
  3236. }
  3237. return;
  3238. }
  3239. if (wpa_s->p2p_auto_join) {
  3240. int join = wpas_p2p_peer_go(wpa_s,
  3241. wpa_s->pending_join_dev_addr);
  3242. if (join < 0) {
  3243. wpa_printf(MSG_DEBUG, "P2P: Peer was not found to be "
  3244. "running a GO -> use GO Negotiation");
  3245. wpas_p2p_connect(wpa_s, wpa_s->pending_join_dev_addr,
  3246. wpa_s->p2p_pin, wpa_s->p2p_wps_method,
  3247. wpa_s->p2p_persistent_group, 0, 0, 0,
  3248. wpa_s->p2p_go_intent,
  3249. wpa_s->p2p_connect_freq,
  3250. wpa_s->p2p_persistent_id,
  3251. wpa_s->p2p_pd_before_go_neg,
  3252. wpa_s->p2p_go_ht40,
  3253. wpa_s->p2p_go_vht);
  3254. return;
  3255. }
  3256. wpa_printf(MSG_DEBUG, "P2P: Peer was found running GO%s -> "
  3257. "try to join the group", join ? "" :
  3258. " in older scan");
  3259. if (!join)
  3260. wpa_s->p2p_fallback_to_go_neg = 1;
  3261. }
  3262. freq = p2p_get_oper_freq(wpa_s->global->p2p,
  3263. wpa_s->pending_join_iface_addr);
  3264. if (freq < 0 &&
  3265. p2p_get_interface_addr(wpa_s->global->p2p,
  3266. wpa_s->pending_join_dev_addr,
  3267. iface_addr) == 0 &&
  3268. os_memcmp(iface_addr, wpa_s->pending_join_dev_addr, ETH_ALEN) != 0)
  3269. {
  3270. wpa_printf(MSG_DEBUG, "P2P: Overwrite pending interface "
  3271. "address for join from " MACSTR " to " MACSTR
  3272. " based on newly discovered P2P peer entry",
  3273. MAC2STR(wpa_s->pending_join_iface_addr),
  3274. MAC2STR(iface_addr));
  3275. os_memcpy(wpa_s->pending_join_iface_addr, iface_addr,
  3276. ETH_ALEN);
  3277. freq = p2p_get_oper_freq(wpa_s->global->p2p,
  3278. wpa_s->pending_join_iface_addr);
  3279. }
  3280. if (freq >= 0) {
  3281. wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
  3282. "from P2P peer table: %d MHz", freq);
  3283. }
  3284. bss = wpa_bss_get_bssid_latest(wpa_s, wpa_s->pending_join_iface_addr);
  3285. if (bss) {
  3286. freq = bss->freq;
  3287. wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
  3288. "from BSS table: %d MHz (SSID %s)", freq,
  3289. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  3290. }
  3291. if (freq > 0) {
  3292. u16 method;
  3293. if (wpas_check_freq_conflict(wpa_s, freq) > 0) {
  3294. wpa_msg_global(wpa_s->parent, MSG_INFO,
  3295. P2P_EVENT_GROUP_FORMATION_FAILURE
  3296. "reason=FREQ_CONFLICT");
  3297. return;
  3298. }
  3299. wpa_printf(MSG_DEBUG, "P2P: Send Provision Discovery Request "
  3300. "prior to joining an existing group (GO " MACSTR
  3301. " freq=%u MHz)",
  3302. MAC2STR(wpa_s->pending_join_dev_addr), freq);
  3303. wpa_s->pending_pd_before_join = 1;
  3304. switch (wpa_s->pending_join_wps_method) {
  3305. case WPS_PIN_DISPLAY:
  3306. method = WPS_CONFIG_KEYPAD;
  3307. break;
  3308. case WPS_PIN_KEYPAD:
  3309. method = WPS_CONFIG_DISPLAY;
  3310. break;
  3311. case WPS_PBC:
  3312. method = WPS_CONFIG_PUSHBUTTON;
  3313. break;
  3314. default:
  3315. method = 0;
  3316. break;
  3317. }
  3318. if ((p2p_get_provisioning_info(wpa_s->global->p2p,
  3319. wpa_s->pending_join_dev_addr) ==
  3320. method)) {
  3321. /*
  3322. * We have already performed provision discovery for
  3323. * joining the group. Proceed directly to join
  3324. * operation without duplicated provision discovery. */
  3325. wpa_printf(MSG_DEBUG, "P2P: Provision discovery "
  3326. "with " MACSTR " already done - proceed to "
  3327. "join",
  3328. MAC2STR(wpa_s->pending_join_dev_addr));
  3329. wpa_s->pending_pd_before_join = 0;
  3330. goto start;
  3331. }
  3332. if (p2p_prov_disc_req(wpa_s->global->p2p,
  3333. wpa_s->pending_join_dev_addr, method, 1,
  3334. freq, wpa_s->user_initiated_pd) < 0) {
  3335. wpa_printf(MSG_DEBUG, "P2P: Failed to send Provision "
  3336. "Discovery Request before joining an "
  3337. "existing group");
  3338. wpa_s->pending_pd_before_join = 0;
  3339. goto start;
  3340. }
  3341. return;
  3342. }
  3343. wpa_printf(MSG_DEBUG, "P2P: Failed to find BSS/GO - try again later");
  3344. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  3345. eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
  3346. wpas_p2p_check_join_scan_limit(wpa_s);
  3347. return;
  3348. start:
  3349. /* Start join operation immediately */
  3350. wpas_p2p_join_start(wpa_s);
  3351. }
  3352. static void wpas_p2p_join_scan_req(struct wpa_supplicant *wpa_s, int freq)
  3353. {
  3354. int ret;
  3355. struct wpa_driver_scan_params params;
  3356. struct wpabuf *wps_ie, *ies;
  3357. size_t ielen;
  3358. int freqs[2] = { 0, 0 };
  3359. os_memset(&params, 0, sizeof(params));
  3360. /* P2P Wildcard SSID */
  3361. params.num_ssids = 1;
  3362. params.ssids[0].ssid = (u8 *) P2P_WILDCARD_SSID;
  3363. params.ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
  3364. wpa_s->wps->dev.p2p = 1;
  3365. wps_ie = wps_build_probe_req_ie(DEV_PW_DEFAULT, &wpa_s->wps->dev,
  3366. wpa_s->wps->uuid, WPS_REQ_ENROLLEE, 0,
  3367. NULL);
  3368. if (wps_ie == NULL) {
  3369. wpas_p2p_scan_res_join(wpa_s, NULL);
  3370. return;
  3371. }
  3372. ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
  3373. ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
  3374. if (ies == NULL) {
  3375. wpabuf_free(wps_ie);
  3376. wpas_p2p_scan_res_join(wpa_s, NULL);
  3377. return;
  3378. }
  3379. wpabuf_put_buf(ies, wps_ie);
  3380. wpabuf_free(wps_ie);
  3381. p2p_scan_ie(wpa_s->global->p2p, ies, NULL);
  3382. params.p2p_probe = 1;
  3383. params.extra_ies = wpabuf_head(ies);
  3384. params.extra_ies_len = wpabuf_len(ies);
  3385. if (freq > 0) {
  3386. freqs[0] = freq;
  3387. params.freqs = freqs;
  3388. }
  3389. /*
  3390. * Run a scan to update BSS table and start Provision Discovery once
  3391. * the new scan results become available.
  3392. */
  3393. ret = wpa_drv_scan(wpa_s, &params);
  3394. if (!ret) {
  3395. os_get_time(&wpa_s->scan_trigger_time);
  3396. wpa_s->scan_res_handler = wpas_p2p_scan_res_join;
  3397. }
  3398. wpabuf_free(ies);
  3399. if (ret) {
  3400. wpa_printf(MSG_DEBUG, "P2P: Failed to start scan for join - "
  3401. "try again later");
  3402. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  3403. eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
  3404. wpas_p2p_check_join_scan_limit(wpa_s);
  3405. }
  3406. }
  3407. static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx)
  3408. {
  3409. struct wpa_supplicant *wpa_s = eloop_ctx;
  3410. wpas_p2p_join_scan_req(wpa_s, 0);
  3411. }
  3412. static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
  3413. const u8 *dev_addr, enum p2p_wps_method wps_method,
  3414. int auto_join)
  3415. {
  3416. wpa_printf(MSG_DEBUG, "P2P: Request to join existing group (iface "
  3417. MACSTR " dev " MACSTR ")%s",
  3418. MAC2STR(iface_addr), MAC2STR(dev_addr),
  3419. auto_join ? " (auto_join)" : "");
  3420. wpa_s->p2p_auto_pd = 0;
  3421. wpa_s->p2p_auto_join = !!auto_join;
  3422. os_memcpy(wpa_s->pending_join_iface_addr, iface_addr, ETH_ALEN);
  3423. os_memcpy(wpa_s->pending_join_dev_addr, dev_addr, ETH_ALEN);
  3424. wpa_s->pending_join_wps_method = wps_method;
  3425. /* Make sure we are not running find during connection establishment */
  3426. wpas_p2p_stop_find(wpa_s);
  3427. wpa_s->p2p_join_scan_count = 0;
  3428. wpas_p2p_join_scan(wpa_s, NULL);
  3429. return 0;
  3430. }
  3431. static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s)
  3432. {
  3433. struct wpa_supplicant *group;
  3434. struct p2p_go_neg_results res;
  3435. struct wpa_bss *bss;
  3436. group = wpas_p2p_get_group_iface(wpa_s, 0, 0);
  3437. if (group == NULL)
  3438. return -1;
  3439. if (group != wpa_s) {
  3440. os_memcpy(group->p2p_pin, wpa_s->p2p_pin,
  3441. sizeof(group->p2p_pin));
  3442. group->p2p_wps_method = wpa_s->p2p_wps_method;
  3443. } else {
  3444. /*
  3445. * Need to mark the current interface for p2p_group_formation
  3446. * when a separate group interface is not used. This is needed
  3447. * to allow p2p_cancel stop a pending p2p_connect-join.
  3448. * wpas_p2p_init_group_interface() addresses this for the case
  3449. * where a separate group interface is used.
  3450. */
  3451. wpa_s->global->p2p_group_formation = wpa_s;
  3452. }
  3453. group->p2p_in_provisioning = 1;
  3454. group->p2p_fallback_to_go_neg = wpa_s->p2p_fallback_to_go_neg;
  3455. os_memset(&res, 0, sizeof(res));
  3456. os_memcpy(res.peer_interface_addr, wpa_s->pending_join_iface_addr,
  3457. ETH_ALEN);
  3458. res.wps_method = wpa_s->pending_join_wps_method;
  3459. bss = wpa_bss_get_bssid_latest(wpa_s, wpa_s->pending_join_iface_addr);
  3460. if (bss) {
  3461. res.freq = bss->freq;
  3462. res.ssid_len = bss->ssid_len;
  3463. os_memcpy(res.ssid, bss->ssid, bss->ssid_len);
  3464. wpa_printf(MSG_DEBUG, "P2P: Join target GO operating frequency "
  3465. "from BSS table: %d MHz (SSID %s)", bss->freq,
  3466. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  3467. }
  3468. if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
  3469. wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel prior to "
  3470. "starting client");
  3471. wpa_drv_cancel_remain_on_channel(wpa_s);
  3472. wpa_s->off_channel_freq = 0;
  3473. wpa_s->roc_waiting_drv_freq = 0;
  3474. }
  3475. wpas_start_wps_enrollee(group, &res);
  3476. /*
  3477. * Allow a longer timeout for join-a-running-group than normal 15
  3478. * second group formation timeout since the GO may not have authorized
  3479. * our connection yet.
  3480. */
  3481. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  3482. eloop_register_timeout(60, 0, wpas_p2p_group_formation_timeout,
  3483. wpa_s, NULL);
  3484. return 0;
  3485. }
  3486. static int wpas_p2p_setup_freqs(struct wpa_supplicant *wpa_s, int freq,
  3487. int *force_freq, int *pref_freq, int go)
  3488. {
  3489. int *freqs, res;
  3490. unsigned int freq_in_use = 0, num, i;
  3491. freqs = os_calloc(wpa_s->num_multichan_concurrent, sizeof(int));
  3492. if (!freqs)
  3493. return -1;
  3494. num = get_shared_radio_freqs(wpa_s, freqs,
  3495. wpa_s->num_multichan_concurrent);
  3496. wpa_printf(MSG_DEBUG,
  3497. "P2P: Setup freqs: freq=%d num_MCC=%d shared_freqs=%u",
  3498. freq, wpa_s->num_multichan_concurrent, num);
  3499. if (freq > 0) {
  3500. int ret;
  3501. if (go)
  3502. ret = p2p_supported_freq(wpa_s->global->p2p, freq);
  3503. else
  3504. ret = p2p_supported_freq_cli(wpa_s->global->p2p, freq);
  3505. if (!ret) {
  3506. wpa_printf(MSG_DEBUG, "P2P: The forced channel "
  3507. "(%u MHz) is not supported for P2P uses",
  3508. freq);
  3509. res = -3;
  3510. goto exit_free;
  3511. }
  3512. for (i = 0; i < num; i++) {
  3513. if (freqs[i] == freq)
  3514. freq_in_use = 1;
  3515. }
  3516. if (num == wpa_s->num_multichan_concurrent && !freq_in_use) {
  3517. wpa_printf(MSG_DEBUG, "P2P: Cannot start P2P group on %u MHz as there are no available channels",
  3518. freq);
  3519. res = -2;
  3520. goto exit_free;
  3521. }
  3522. wpa_printf(MSG_DEBUG, "P2P: Trying to force us to use the "
  3523. "requested channel (%u MHz)", freq);
  3524. *force_freq = freq;
  3525. goto exit_ok;
  3526. }
  3527. for (i = 0; i < num; i++) {
  3528. if (!p2p_supported_freq(wpa_s->global->p2p, freqs[i]))
  3529. continue;
  3530. wpa_printf(MSG_DEBUG, "P2P: Try to force us to use frequency (%u MHz) which is already in use",
  3531. *force_freq);
  3532. *force_freq = freqs[i];
  3533. if (*pref_freq == 0 && num < wpa_s->num_multichan_concurrent) {
  3534. wpa_printf(MSG_DEBUG, "P2P: Try to prefer a frequency we are already using");
  3535. *pref_freq = *force_freq;
  3536. }
  3537. break;
  3538. }
  3539. if (i == num) {
  3540. if (num < wpa_s->num_multichan_concurrent) {
  3541. wpa_printf(MSG_DEBUG, "P2P: Current operating channels are not available for P2P. Try to use another channel");
  3542. *force_freq = 0;
  3543. } else {
  3544. wpa_printf(MSG_DEBUG, "P2P: All channels are in use and none of them are P2P enabled. Cannot start P2P group");
  3545. res = -2;
  3546. goto exit_free;
  3547. }
  3548. }
  3549. exit_ok:
  3550. res = 0;
  3551. exit_free:
  3552. os_free(freqs);
  3553. return res;
  3554. }
  3555. /**
  3556. * wpas_p2p_connect - Request P2P Group Formation to be started
  3557. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3558. * @peer_addr: Address of the peer P2P Device
  3559. * @pin: PIN to use during provisioning or %NULL to indicate PBC mode
  3560. * @persistent_group: Whether to create a persistent group
  3561. * @auto_join: Whether to select join vs. GO Negotiation automatically
  3562. * @join: Whether to join an existing group (as a client) instead of starting
  3563. * Group Owner negotiation; @peer_addr is BSSID in that case
  3564. * @auth: Whether to only authorize the connection instead of doing that and
  3565. * initiating Group Owner negotiation
  3566. * @go_intent: GO Intent or -1 to use default
  3567. * @freq: Frequency for the group or 0 for auto-selection
  3568. * @persistent_id: Persistent group credentials to use for forcing GO
  3569. * parameters or -1 to generate new values (SSID/passphrase)
  3570. * @pd: Whether to send Provision Discovery prior to GO Negotiation as an
  3571. * interoperability workaround when initiating group formation
  3572. * @ht40: Start GO with 40 MHz channel width
  3573. * @vht: Start GO with VHT support
  3574. * Returns: 0 or new PIN (if pin was %NULL) on success, -1 on unspecified
  3575. * failure, -2 on failure due to channel not currently available,
  3576. * -3 if forced channel is not supported
  3577. */
  3578. int wpas_p2p_connect(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  3579. const char *pin, enum p2p_wps_method wps_method,
  3580. int persistent_group, int auto_join, int join, int auth,
  3581. int go_intent, int freq, int persistent_id, int pd,
  3582. int ht40, int vht)
  3583. {
  3584. int force_freq = 0, pref_freq = 0;
  3585. int ret = 0, res;
  3586. enum wpa_driver_if_type iftype;
  3587. const u8 *if_addr;
  3588. struct wpa_ssid *ssid = NULL;
  3589. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  3590. return -1;
  3591. if (persistent_id >= 0) {
  3592. ssid = wpa_config_get_network(wpa_s->conf, persistent_id);
  3593. if (ssid == NULL || ssid->disabled != 2 ||
  3594. ssid->mode != WPAS_MODE_P2P_GO)
  3595. return -1;
  3596. }
  3597. os_free(wpa_s->global->add_psk);
  3598. wpa_s->global->add_psk = NULL;
  3599. if (go_intent < 0)
  3600. go_intent = wpa_s->conf->p2p_go_intent;
  3601. if (!auth)
  3602. wpa_s->p2p_long_listen = 0;
  3603. wpa_s->p2p_wps_method = wps_method;
  3604. wpa_s->p2p_persistent_group = !!persistent_group;
  3605. wpa_s->p2p_persistent_id = persistent_id;
  3606. wpa_s->p2p_go_intent = go_intent;
  3607. wpa_s->p2p_connect_freq = freq;
  3608. wpa_s->p2p_fallback_to_go_neg = 0;
  3609. wpa_s->p2p_pd_before_go_neg = !!pd;
  3610. wpa_s->p2p_go_ht40 = !!ht40;
  3611. wpa_s->p2p_go_vht = !!vht;
  3612. if (pin)
  3613. os_strlcpy(wpa_s->p2p_pin, pin, sizeof(wpa_s->p2p_pin));
  3614. else if (wps_method == WPS_PIN_DISPLAY) {
  3615. ret = wps_generate_pin();
  3616. os_snprintf(wpa_s->p2p_pin, sizeof(wpa_s->p2p_pin), "%08d",
  3617. ret);
  3618. wpa_printf(MSG_DEBUG, "P2P: Randomly generated PIN: %s",
  3619. wpa_s->p2p_pin);
  3620. } else
  3621. wpa_s->p2p_pin[0] = '\0';
  3622. if (join || auto_join) {
  3623. u8 iface_addr[ETH_ALEN], dev_addr[ETH_ALEN];
  3624. if (auth) {
  3625. wpa_printf(MSG_DEBUG, "P2P: Authorize invitation to "
  3626. "connect a running group from " MACSTR,
  3627. MAC2STR(peer_addr));
  3628. os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
  3629. return ret;
  3630. }
  3631. os_memcpy(dev_addr, peer_addr, ETH_ALEN);
  3632. if (p2p_get_interface_addr(wpa_s->global->p2p, peer_addr,
  3633. iface_addr) < 0) {
  3634. os_memcpy(iface_addr, peer_addr, ETH_ALEN);
  3635. p2p_get_dev_addr(wpa_s->global->p2p, peer_addr,
  3636. dev_addr);
  3637. }
  3638. if (auto_join) {
  3639. os_get_time(&wpa_s->p2p_auto_started);
  3640. wpa_printf(MSG_DEBUG, "P2P: Auto join started at "
  3641. "%ld.%06ld",
  3642. wpa_s->p2p_auto_started.sec,
  3643. wpa_s->p2p_auto_started.usec);
  3644. }
  3645. wpa_s->user_initiated_pd = 1;
  3646. if (wpas_p2p_join(wpa_s, iface_addr, dev_addr, wps_method,
  3647. auto_join) < 0)
  3648. return -1;
  3649. return ret;
  3650. }
  3651. res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
  3652. go_intent == 15);
  3653. if (res)
  3654. return res;
  3655. wpas_p2p_set_own_freq_preference(wpa_s, force_freq);
  3656. wpa_s->create_p2p_iface = wpas_p2p_create_iface(wpa_s);
  3657. if (wpa_s->create_p2p_iface) {
  3658. /* Prepare to add a new interface for the group */
  3659. iftype = WPA_IF_P2P_GROUP;
  3660. if (go_intent == 15)
  3661. iftype = WPA_IF_P2P_GO;
  3662. if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
  3663. wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
  3664. "interface for the group");
  3665. return -1;
  3666. }
  3667. if_addr = wpa_s->pending_interface_addr;
  3668. } else
  3669. if_addr = wpa_s->own_addr;
  3670. if (auth) {
  3671. if (wpas_p2p_auth_go_neg(wpa_s, peer_addr, wps_method,
  3672. go_intent, if_addr,
  3673. force_freq, persistent_group, ssid,
  3674. pref_freq) < 0)
  3675. return -1;
  3676. return ret;
  3677. }
  3678. if (wpas_p2p_start_go_neg(wpa_s, peer_addr, wps_method,
  3679. go_intent, if_addr, force_freq,
  3680. persistent_group, ssid, pref_freq) < 0) {
  3681. if (wpa_s->create_p2p_iface)
  3682. wpas_p2p_remove_pending_group_interface(wpa_s);
  3683. return -1;
  3684. }
  3685. return ret;
  3686. }
  3687. /**
  3688. * wpas_p2p_remain_on_channel_cb - Indication of remain-on-channel start
  3689. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3690. * @freq: Frequency of the channel in MHz
  3691. * @duration: Duration of the stay on the channel in milliseconds
  3692. *
  3693. * This callback is called when the driver indicates that it has started the
  3694. * requested remain-on-channel duration.
  3695. */
  3696. void wpas_p2p_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
  3697. unsigned int freq, unsigned int duration)
  3698. {
  3699. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  3700. return;
  3701. if (wpa_s->off_channel_freq == wpa_s->pending_listen_freq) {
  3702. p2p_listen_cb(wpa_s->global->p2p, wpa_s->pending_listen_freq,
  3703. wpa_s->pending_listen_duration);
  3704. wpa_s->pending_listen_freq = 0;
  3705. }
  3706. }
  3707. static int wpas_p2p_listen_start(struct wpa_supplicant *wpa_s,
  3708. unsigned int timeout)
  3709. {
  3710. /* Limit maximum Listen state time based on driver limitation. */
  3711. if (timeout > wpa_s->max_remain_on_chan)
  3712. timeout = wpa_s->max_remain_on_chan;
  3713. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  3714. return wpa_drv_p2p_listen(wpa_s, timeout);
  3715. return p2p_listen(wpa_s->global->p2p, timeout);
  3716. }
  3717. /**
  3718. * wpas_p2p_cancel_remain_on_channel_cb - Remain-on-channel timeout
  3719. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3720. * @freq: Frequency of the channel in MHz
  3721. *
  3722. * This callback is called when the driver indicates that a remain-on-channel
  3723. * operation has been completed, i.e., the duration on the requested channel
  3724. * has timed out.
  3725. */
  3726. void wpas_p2p_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
  3727. unsigned int freq)
  3728. {
  3729. wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel callback "
  3730. "(p2p_long_listen=%d ms pending_action_tx=%p)",
  3731. wpa_s->p2p_long_listen, offchannel_pending_action_tx(wpa_s));
  3732. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  3733. return;
  3734. if (p2p_listen_end(wpa_s->global->p2p, freq) > 0)
  3735. return; /* P2P module started a new operation */
  3736. if (offchannel_pending_action_tx(wpa_s))
  3737. return;
  3738. if (wpa_s->p2p_long_listen > 0)
  3739. wpa_s->p2p_long_listen -= wpa_s->max_remain_on_chan;
  3740. if (wpa_s->p2p_long_listen > 0) {
  3741. wpa_printf(MSG_DEBUG, "P2P: Continuing long Listen state");
  3742. wpas_p2p_listen_start(wpa_s, wpa_s->p2p_long_listen);
  3743. } else {
  3744. /*
  3745. * When listen duration is over, stop listen & update p2p_state
  3746. * to IDLE.
  3747. */
  3748. p2p_stop_listen(wpa_s->global->p2p);
  3749. }
  3750. }
  3751. /**
  3752. * wpas_p2p_group_remove - Remove a P2P group
  3753. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3754. * @ifname: Network interface name of the group interface or "*" to remove all
  3755. * groups
  3756. * Returns: 0 on success, -1 on failure
  3757. *
  3758. * This function is used to remove a P2P group. This can be used to disconnect
  3759. * from a group in which the local end is a P2P Client or to end a P2P Group in
  3760. * case the local end is the Group Owner. If a virtual network interface was
  3761. * created for this group, that interface will be removed. Otherwise, only the
  3762. * configured P2P group network will be removed from the interface.
  3763. */
  3764. int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s, const char *ifname)
  3765. {
  3766. struct wpa_global *global = wpa_s->global;
  3767. if (os_strcmp(ifname, "*") == 0) {
  3768. struct wpa_supplicant *prev;
  3769. wpa_s = global->ifaces;
  3770. while (wpa_s) {
  3771. prev = wpa_s;
  3772. wpa_s = wpa_s->next;
  3773. if (prev->p2p_group_interface !=
  3774. NOT_P2P_GROUP_INTERFACE ||
  3775. (prev->current_ssid &&
  3776. prev->current_ssid->p2p_group))
  3777. wpas_p2p_disconnect(prev);
  3778. }
  3779. return 0;
  3780. }
  3781. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  3782. if (os_strcmp(wpa_s->ifname, ifname) == 0)
  3783. break;
  3784. }
  3785. return wpas_p2p_disconnect(wpa_s);
  3786. }
  3787. static int wpas_p2p_select_go_freq(struct wpa_supplicant *wpa_s, int freq)
  3788. {
  3789. unsigned int r;
  3790. if (freq == 2) {
  3791. wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 2.4 GHz "
  3792. "band");
  3793. if (wpa_s->best_24_freq > 0 &&
  3794. p2p_supported_freq_go(wpa_s->global->p2p,
  3795. wpa_s->best_24_freq)) {
  3796. freq = wpa_s->best_24_freq;
  3797. wpa_printf(MSG_DEBUG, "P2P: Use best 2.4 GHz band "
  3798. "channel: %d MHz", freq);
  3799. } else {
  3800. os_get_random((u8 *) &r, sizeof(r));
  3801. freq = 2412 + (r % 3) * 25;
  3802. wpa_printf(MSG_DEBUG, "P2P: Use random 2.4 GHz band "
  3803. "channel: %d MHz", freq);
  3804. }
  3805. }
  3806. if (freq == 5) {
  3807. wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 5 GHz "
  3808. "band");
  3809. if (wpa_s->best_5_freq > 0 &&
  3810. p2p_supported_freq_go(wpa_s->global->p2p,
  3811. wpa_s->best_5_freq)) {
  3812. freq = wpa_s->best_5_freq;
  3813. wpa_printf(MSG_DEBUG, "P2P: Use best 5 GHz band "
  3814. "channel: %d MHz", freq);
  3815. } else {
  3816. os_get_random((u8 *) &r, sizeof(r));
  3817. freq = 5180 + (r % 4) * 20;
  3818. if (!p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
  3819. wpa_printf(MSG_DEBUG, "P2P: Could not select "
  3820. "5 GHz channel for P2P group");
  3821. return -1;
  3822. }
  3823. wpa_printf(MSG_DEBUG, "P2P: Use random 5 GHz band "
  3824. "channel: %d MHz", freq);
  3825. }
  3826. }
  3827. if (freq > 0 && !p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
  3828. wpa_printf(MSG_DEBUG, "P2P: The forced channel for GO "
  3829. "(%u MHz) is not supported for P2P uses",
  3830. freq);
  3831. return -1;
  3832. }
  3833. return freq;
  3834. }
  3835. static int wpas_p2p_init_go_params(struct wpa_supplicant *wpa_s,
  3836. struct p2p_go_neg_results *params,
  3837. int freq, int ht40, int vht,
  3838. const struct p2p_channels *channels)
  3839. {
  3840. int res, *freqs;
  3841. unsigned int pref_freq;
  3842. unsigned int num, i;
  3843. os_memset(params, 0, sizeof(*params));
  3844. params->role_go = 1;
  3845. params->ht40 = ht40;
  3846. params->vht = vht;
  3847. if (freq) {
  3848. if (!freq_included(channels, freq)) {
  3849. wpa_printf(MSG_DEBUG, "P2P: Forced GO freq %d MHz not "
  3850. "accepted", freq);
  3851. return -1;
  3852. }
  3853. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on forced "
  3854. "frequency %d MHz", freq);
  3855. params->freq = freq;
  3856. } else if (wpa_s->conf->p2p_oper_reg_class == 81 &&
  3857. wpa_s->conf->p2p_oper_channel >= 1 &&
  3858. wpa_s->conf->p2p_oper_channel <= 11 &&
  3859. freq_included(channels,
  3860. 2407 + 5 * wpa_s->conf->p2p_oper_channel)) {
  3861. params->freq = 2407 + 5 * wpa_s->conf->p2p_oper_channel;
  3862. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on configured "
  3863. "frequency %d MHz", params->freq);
  3864. } else if ((wpa_s->conf->p2p_oper_reg_class == 115 ||
  3865. wpa_s->conf->p2p_oper_reg_class == 116 ||
  3866. wpa_s->conf->p2p_oper_reg_class == 117 ||
  3867. wpa_s->conf->p2p_oper_reg_class == 124 ||
  3868. wpa_s->conf->p2p_oper_reg_class == 126 ||
  3869. wpa_s->conf->p2p_oper_reg_class == 127) &&
  3870. freq_included(channels,
  3871. 5000 + 5 * wpa_s->conf->p2p_oper_channel)) {
  3872. params->freq = 5000 + 5 * wpa_s->conf->p2p_oper_channel;
  3873. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on configured "
  3874. "frequency %d MHz", params->freq);
  3875. } else if (wpa_s->conf->p2p_oper_channel == 0 &&
  3876. wpa_s->best_overall_freq > 0 &&
  3877. p2p_supported_freq_go(wpa_s->global->p2p,
  3878. wpa_s->best_overall_freq) &&
  3879. freq_included(channels, wpa_s->best_overall_freq)) {
  3880. params->freq = wpa_s->best_overall_freq;
  3881. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best overall "
  3882. "channel %d MHz", params->freq);
  3883. } else if (wpa_s->conf->p2p_oper_channel == 0 &&
  3884. wpa_s->best_24_freq > 0 &&
  3885. p2p_supported_freq_go(wpa_s->global->p2p,
  3886. wpa_s->best_24_freq) &&
  3887. freq_included(channels, wpa_s->best_24_freq)) {
  3888. params->freq = wpa_s->best_24_freq;
  3889. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best 2.4 GHz "
  3890. "channel %d MHz", params->freq);
  3891. } else if (wpa_s->conf->p2p_oper_channel == 0 &&
  3892. wpa_s->best_5_freq > 0 &&
  3893. p2p_supported_freq_go(wpa_s->global->p2p,
  3894. wpa_s->best_5_freq) &&
  3895. freq_included(channels, wpa_s->best_5_freq)) {
  3896. params->freq = wpa_s->best_5_freq;
  3897. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best 5 GHz "
  3898. "channel %d MHz", params->freq);
  3899. } else if ((pref_freq = p2p_get_pref_freq(wpa_s->global->p2p,
  3900. channels))) {
  3901. params->freq = pref_freq;
  3902. wpa_printf(MSG_DEBUG, "P2P: Set GO freq %d MHz from preferred "
  3903. "channels", params->freq);
  3904. } else {
  3905. int chan;
  3906. for (chan = 0; chan < 11; chan++) {
  3907. params->freq = 2412 + chan * 5;
  3908. if (!wpas_p2p_disallowed_freq(wpa_s->global,
  3909. params->freq) &&
  3910. freq_included(channels, params->freq))
  3911. break;
  3912. }
  3913. if (chan == 11) {
  3914. wpa_printf(MSG_DEBUG, "P2P: No 2.4 GHz channel "
  3915. "allowed");
  3916. return -1;
  3917. }
  3918. wpa_printf(MSG_DEBUG, "P2P: Set GO freq %d MHz (no preference "
  3919. "known)", params->freq);
  3920. }
  3921. freqs = os_calloc(wpa_s->num_multichan_concurrent, sizeof(int));
  3922. if (!freqs)
  3923. return -1;
  3924. res = wpas_p2p_valid_oper_freqs(wpa_s, freqs,
  3925. wpa_s->num_multichan_concurrent);
  3926. if (res < 0) {
  3927. os_free(freqs);
  3928. return -1;
  3929. }
  3930. num = res;
  3931. if (!freq) {
  3932. for (i = 0; i < num; i++) {
  3933. if (freq_included(channels, freqs[i])) {
  3934. wpa_printf(MSG_DEBUG, "P2P: Force GO on a channel we are already using (%u MHz)",
  3935. freqs[i]);
  3936. params->freq = freqs[i];
  3937. break;
  3938. }
  3939. }
  3940. if (i == num) {
  3941. if (wpas_p2p_num_unused_channels(wpa_s) <= 0) {
  3942. wpa_printf(MSG_DEBUG, "P2P: Cannot force GO on any of the channels we are already using");
  3943. os_free(freqs);
  3944. return -1;
  3945. } else {
  3946. wpa_printf(MSG_DEBUG, "P2P: Cannot force GO on any of the channels we are already using. Use one of the free channels");
  3947. }
  3948. }
  3949. } else {
  3950. for (i = 0; i < num; i++) {
  3951. if (freqs[i] == freq)
  3952. break;
  3953. }
  3954. if (i == num) {
  3955. if (wpas_p2p_num_unused_channels(wpa_s) <= 0) {
  3956. wpa_printf(MSG_DEBUG, "P2P: Cannot force GO on freq (%u MHz) as all the channels are in use", freq);
  3957. os_free(freqs);
  3958. return -1;
  3959. } else {
  3960. wpa_printf(MSG_DEBUG, "P2P: Cannot force GO on any of the channels we are already using. Use one of the free channels");
  3961. }
  3962. }
  3963. }
  3964. os_free(freqs);
  3965. return 0;
  3966. }
  3967. static struct wpa_supplicant *
  3968. wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
  3969. int go)
  3970. {
  3971. struct wpa_supplicant *group_wpa_s;
  3972. if (!wpas_p2p_create_iface(wpa_s)) {
  3973. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use same interface for group "
  3974. "operations");
  3975. wpa_s->p2p_first_connection_timeout = 0;
  3976. return wpa_s;
  3977. }
  3978. if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
  3979. WPA_IF_P2P_CLIENT) < 0) {
  3980. wpa_msg_global(wpa_s, MSG_ERROR,
  3981. "P2P: Failed to add group interface");
  3982. return NULL;
  3983. }
  3984. group_wpa_s = wpas_p2p_init_group_interface(wpa_s, go);
  3985. if (group_wpa_s == NULL) {
  3986. wpa_msg_global(wpa_s, MSG_ERROR,
  3987. "P2P: Failed to initialize group interface");
  3988. wpas_p2p_remove_pending_group_interface(wpa_s);
  3989. return NULL;
  3990. }
  3991. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use separate group interface %s",
  3992. group_wpa_s->ifname);
  3993. group_wpa_s->p2p_first_connection_timeout = 0;
  3994. return group_wpa_s;
  3995. }
  3996. /**
  3997. * wpas_p2p_group_add - Add a new P2P group with local end as Group Owner
  3998. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3999. * @persistent_group: Whether to create a persistent group
  4000. * @freq: Frequency for the group or 0 to indicate no hardcoding
  4001. * @ht40: Start GO with 40 MHz channel width
  4002. * @vht: Start GO with VHT support
  4003. * Returns: 0 on success, -1 on failure
  4004. *
  4005. * This function creates a new P2P group with the local end as the Group Owner,
  4006. * i.e., without using Group Owner Negotiation.
  4007. */
  4008. int wpas_p2p_group_add(struct wpa_supplicant *wpa_s, int persistent_group,
  4009. int freq, int ht40, int vht)
  4010. {
  4011. struct p2p_go_neg_results params;
  4012. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4013. return -1;
  4014. os_free(wpa_s->global->add_psk);
  4015. wpa_s->global->add_psk = NULL;
  4016. /* Make sure we are not running find during connection establishment */
  4017. wpa_printf(MSG_DEBUG, "P2P: Stop any on-going P2P FIND");
  4018. wpas_p2p_stop_find_oper(wpa_s);
  4019. freq = wpas_p2p_select_go_freq(wpa_s, freq);
  4020. if (freq < 0)
  4021. return -1;
  4022. if (wpas_p2p_init_go_params(wpa_s, &params, freq, ht40, vht, NULL))
  4023. return -1;
  4024. if (params.freq &&
  4025. !p2p_supported_freq_go(wpa_s->global->p2p, params.freq)) {
  4026. wpa_printf(MSG_DEBUG, "P2P: The selected channel for GO "
  4027. "(%u MHz) is not supported for P2P uses",
  4028. params.freq);
  4029. return -1;
  4030. }
  4031. p2p_go_params(wpa_s->global->p2p, &params);
  4032. params.persistent_group = persistent_group;
  4033. wpa_s = wpas_p2p_get_group_iface(wpa_s, 0, 1);
  4034. if (wpa_s == NULL)
  4035. return -1;
  4036. wpas_start_wps_go(wpa_s, &params, 0);
  4037. return 0;
  4038. }
  4039. static int wpas_start_p2p_client(struct wpa_supplicant *wpa_s,
  4040. struct wpa_ssid *params, int addr_allocated)
  4041. {
  4042. struct wpa_ssid *ssid;
  4043. wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 0);
  4044. if (wpa_s == NULL)
  4045. return -1;
  4046. wpa_s->p2p_last_4way_hs_fail = NULL;
  4047. wpa_supplicant_ap_deinit(wpa_s);
  4048. ssid = wpa_config_add_network(wpa_s->conf);
  4049. if (ssid == NULL)
  4050. return -1;
  4051. wpa_config_set_network_defaults(ssid);
  4052. ssid->temporary = 1;
  4053. ssid->proto = WPA_PROTO_RSN;
  4054. ssid->pairwise_cipher = WPA_CIPHER_CCMP;
  4055. ssid->group_cipher = WPA_CIPHER_CCMP;
  4056. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  4057. ssid->ssid = os_malloc(params->ssid_len);
  4058. if (ssid->ssid == NULL) {
  4059. wpa_config_remove_network(wpa_s->conf, ssid->id);
  4060. return -1;
  4061. }
  4062. os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
  4063. ssid->ssid_len = params->ssid_len;
  4064. ssid->p2p_group = 1;
  4065. ssid->export_keys = 1;
  4066. if (params->psk_set) {
  4067. os_memcpy(ssid->psk, params->psk, 32);
  4068. ssid->psk_set = 1;
  4069. }
  4070. if (params->passphrase)
  4071. ssid->passphrase = os_strdup(params->passphrase);
  4072. wpa_supplicant_select_network(wpa_s, ssid);
  4073. wpa_s->show_group_started = 1;
  4074. return 0;
  4075. }
  4076. int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
  4077. struct wpa_ssid *ssid, int addr_allocated,
  4078. int freq, int ht40, int vht,
  4079. const struct p2p_channels *channels,
  4080. int connection_timeout)
  4081. {
  4082. struct p2p_go_neg_results params;
  4083. int go = 0;
  4084. if (ssid->disabled != 2 || ssid->ssid == NULL)
  4085. return -1;
  4086. if (wpas_get_p2p_group(wpa_s, ssid->ssid, ssid->ssid_len, &go) &&
  4087. go == (ssid->mode == WPAS_MODE_P2P_GO)) {
  4088. wpa_printf(MSG_DEBUG, "P2P: Requested persistent group is "
  4089. "already running");
  4090. return 0;
  4091. }
  4092. os_free(wpa_s->global->add_psk);
  4093. wpa_s->global->add_psk = NULL;
  4094. /* Make sure we are not running find during connection establishment */
  4095. wpas_p2p_stop_find_oper(wpa_s);
  4096. wpa_s->p2p_fallback_to_go_neg = 0;
  4097. if (ssid->mode == WPAS_MODE_INFRA)
  4098. return wpas_start_p2p_client(wpa_s, ssid, addr_allocated);
  4099. if (ssid->mode != WPAS_MODE_P2P_GO)
  4100. return -1;
  4101. freq = wpas_p2p_select_go_freq(wpa_s, freq);
  4102. if (freq < 0)
  4103. return -1;
  4104. if (wpas_p2p_init_go_params(wpa_s, &params, freq, ht40, vht, channels))
  4105. return -1;
  4106. params.role_go = 1;
  4107. params.psk_set = ssid->psk_set;
  4108. if (params.psk_set)
  4109. os_memcpy(params.psk, ssid->psk, sizeof(params.psk));
  4110. if (ssid->passphrase) {
  4111. if (os_strlen(ssid->passphrase) >= sizeof(params.passphrase)) {
  4112. wpa_printf(MSG_ERROR, "P2P: Invalid passphrase in "
  4113. "persistent group");
  4114. return -1;
  4115. }
  4116. os_strlcpy(params.passphrase, ssid->passphrase,
  4117. sizeof(params.passphrase));
  4118. }
  4119. os_memcpy(params.ssid, ssid->ssid, ssid->ssid_len);
  4120. params.ssid_len = ssid->ssid_len;
  4121. params.persistent_group = 1;
  4122. wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 1);
  4123. if (wpa_s == NULL)
  4124. return -1;
  4125. wpa_s->p2p_first_connection_timeout = connection_timeout;
  4126. wpas_start_wps_go(wpa_s, &params, 0);
  4127. return 0;
  4128. }
  4129. static void wpas_p2p_ie_update(void *ctx, struct wpabuf *beacon_ies,
  4130. struct wpabuf *proberesp_ies)
  4131. {
  4132. struct wpa_supplicant *wpa_s = ctx;
  4133. if (wpa_s->ap_iface) {
  4134. struct hostapd_data *hapd = wpa_s->ap_iface->bss[0];
  4135. if (!(hapd->conf->p2p & P2P_GROUP_OWNER)) {
  4136. wpabuf_free(beacon_ies);
  4137. wpabuf_free(proberesp_ies);
  4138. return;
  4139. }
  4140. if (beacon_ies) {
  4141. wpabuf_free(hapd->p2p_beacon_ie);
  4142. hapd->p2p_beacon_ie = beacon_ies;
  4143. }
  4144. wpabuf_free(hapd->p2p_probe_resp_ie);
  4145. hapd->p2p_probe_resp_ie = proberesp_ies;
  4146. } else {
  4147. wpabuf_free(beacon_ies);
  4148. wpabuf_free(proberesp_ies);
  4149. }
  4150. wpa_supplicant_ap_update_beacon(wpa_s);
  4151. }
  4152. static void wpas_p2p_idle_update(void *ctx, int idle)
  4153. {
  4154. struct wpa_supplicant *wpa_s = ctx;
  4155. if (!wpa_s->ap_iface)
  4156. return;
  4157. wpa_printf(MSG_DEBUG, "P2P: GO - group %sidle", idle ? "" : "not ");
  4158. if (idle)
  4159. wpas_p2p_set_group_idle_timeout(wpa_s);
  4160. else
  4161. eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
  4162. }
  4163. struct p2p_group * wpas_p2p_group_init(struct wpa_supplicant *wpa_s,
  4164. struct wpa_ssid *ssid)
  4165. {
  4166. struct p2p_group *group;
  4167. struct p2p_group_config *cfg;
  4168. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4169. return NULL;
  4170. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4171. return NULL;
  4172. cfg = os_zalloc(sizeof(*cfg));
  4173. if (cfg == NULL)
  4174. return NULL;
  4175. if (ssid->p2p_persistent_group && wpa_s->conf->persistent_reconnect)
  4176. cfg->persistent_group = 2;
  4177. else if (ssid->p2p_persistent_group)
  4178. cfg->persistent_group = 1;
  4179. os_memcpy(cfg->interface_addr, wpa_s->own_addr, ETH_ALEN);
  4180. if (wpa_s->max_stations &&
  4181. wpa_s->max_stations < wpa_s->conf->max_num_sta)
  4182. cfg->max_clients = wpa_s->max_stations;
  4183. else
  4184. cfg->max_clients = wpa_s->conf->max_num_sta;
  4185. os_memcpy(cfg->ssid, ssid->ssid, ssid->ssid_len);
  4186. cfg->ssid_len = ssid->ssid_len;
  4187. cfg->cb_ctx = wpa_s;
  4188. cfg->ie_update = wpas_p2p_ie_update;
  4189. cfg->idle_update = wpas_p2p_idle_update;
  4190. group = p2p_group_init(wpa_s->global->p2p, cfg);
  4191. if (group == NULL)
  4192. os_free(cfg);
  4193. if (ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION)
  4194. p2p_group_notif_formation_done(group);
  4195. wpa_s->p2p_group = group;
  4196. return group;
  4197. }
  4198. void wpas_p2p_wps_success(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  4199. int registrar)
  4200. {
  4201. struct wpa_ssid *ssid = wpa_s->current_ssid;
  4202. if (!wpa_s->p2p_in_provisioning) {
  4203. wpa_printf(MSG_DEBUG, "P2P: Ignore WPS success event - P2P "
  4204. "provisioning not in progress");
  4205. return;
  4206. }
  4207. if (ssid && ssid->mode == WPAS_MODE_INFRA) {
  4208. u8 go_dev_addr[ETH_ALEN];
  4209. os_memcpy(go_dev_addr, wpa_s->bssid, ETH_ALEN);
  4210. wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
  4211. ssid->ssid_len);
  4212. /* Clear any stored provisioning info */
  4213. p2p_clear_provisioning_info(wpa_s->global->p2p, go_dev_addr);
  4214. }
  4215. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s->parent,
  4216. NULL);
  4217. wpa_s->p2p_go_group_formation_completed = 1;
  4218. if (ssid && ssid->mode == WPAS_MODE_INFRA) {
  4219. /*
  4220. * Use a separate timeout for initial data connection to
  4221. * complete to allow the group to be removed automatically if
  4222. * something goes wrong in this step before the P2P group idle
  4223. * timeout mechanism is taken into use.
  4224. */
  4225. wpa_dbg(wpa_s, MSG_DEBUG,
  4226. "P2P: Re-start group formation timeout (%d seconds) as client for initial connection",
  4227. P2P_MAX_INITIAL_CONN_WAIT);
  4228. eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
  4229. wpas_p2p_group_formation_timeout,
  4230. wpa_s->parent, NULL);
  4231. } else if (ssid) {
  4232. /*
  4233. * Use a separate timeout for initial data connection to
  4234. * complete to allow the group to be removed automatically if
  4235. * the client does not complete data connection successfully.
  4236. */
  4237. wpa_dbg(wpa_s, MSG_DEBUG,
  4238. "P2P: Re-start group formation timeout (%d seconds) as GO for initial connection",
  4239. P2P_MAX_INITIAL_CONN_WAIT_GO);
  4240. eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT_GO, 0,
  4241. wpas_p2p_group_formation_timeout,
  4242. wpa_s->parent, NULL);
  4243. /*
  4244. * Complete group formation on first successful data connection
  4245. */
  4246. wpa_s->p2p_go_group_formation_completed = 0;
  4247. }
  4248. if (wpa_s->global->p2p)
  4249. p2p_wps_success_cb(wpa_s->global->p2p, peer_addr);
  4250. else if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4251. wpa_drv_wps_success_cb(wpa_s, peer_addr);
  4252. wpas_group_formation_completed(wpa_s, 1);
  4253. }
  4254. void wpas_p2p_wps_failed(struct wpa_supplicant *wpa_s,
  4255. struct wps_event_fail *fail)
  4256. {
  4257. if (!wpa_s->p2p_in_provisioning) {
  4258. wpa_printf(MSG_DEBUG, "P2P: Ignore WPS fail event - P2P "
  4259. "provisioning not in progress");
  4260. return;
  4261. }
  4262. if (wpa_s->go_params) {
  4263. p2p_clear_provisioning_info(
  4264. wpa_s->global->p2p,
  4265. wpa_s->go_params->peer_device_addr);
  4266. }
  4267. wpas_notify_p2p_wps_failed(wpa_s, fail);
  4268. }
  4269. int wpas_p2p_prov_disc(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  4270. const char *config_method,
  4271. enum wpas_p2p_prov_disc_use use)
  4272. {
  4273. u16 config_methods;
  4274. wpa_s->p2p_fallback_to_go_neg = 0;
  4275. wpa_s->pending_pd_use = NORMAL_PD;
  4276. if (os_strncmp(config_method, "display", 7) == 0)
  4277. config_methods = WPS_CONFIG_DISPLAY;
  4278. else if (os_strncmp(config_method, "keypad", 6) == 0)
  4279. config_methods = WPS_CONFIG_KEYPAD;
  4280. else if (os_strncmp(config_method, "pbc", 3) == 0 ||
  4281. os_strncmp(config_method, "pushbutton", 10) == 0)
  4282. config_methods = WPS_CONFIG_PUSHBUTTON;
  4283. else {
  4284. wpa_printf(MSG_DEBUG, "P2P: Unknown config method");
  4285. return -1;
  4286. }
  4287. if (use == WPAS_P2P_PD_AUTO) {
  4288. os_memcpy(wpa_s->pending_join_dev_addr, peer_addr, ETH_ALEN);
  4289. wpa_s->pending_pd_config_methods = config_methods;
  4290. wpa_s->p2p_auto_pd = 1;
  4291. wpa_s->p2p_auto_join = 0;
  4292. wpa_s->pending_pd_before_join = 0;
  4293. wpa_s->auto_pd_scan_retry = 0;
  4294. wpas_p2p_stop_find(wpa_s);
  4295. wpa_s->p2p_join_scan_count = 0;
  4296. os_get_time(&wpa_s->p2p_auto_started);
  4297. wpa_printf(MSG_DEBUG, "P2P: Auto PD started at %ld.%06ld",
  4298. wpa_s->p2p_auto_started.sec,
  4299. wpa_s->p2p_auto_started.usec);
  4300. wpas_p2p_join_scan(wpa_s, NULL);
  4301. return 0;
  4302. }
  4303. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  4304. return wpa_drv_p2p_prov_disc_req(wpa_s, peer_addr,
  4305. config_methods,
  4306. use == WPAS_P2P_PD_FOR_JOIN);
  4307. }
  4308. if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled)
  4309. return -1;
  4310. return p2p_prov_disc_req(wpa_s->global->p2p, peer_addr,
  4311. config_methods, use == WPAS_P2P_PD_FOR_JOIN,
  4312. 0, 1);
  4313. }
  4314. int wpas_p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
  4315. char *end)
  4316. {
  4317. return p2p_scan_result_text(ies, ies_len, buf, end);
  4318. }
  4319. static void wpas_p2p_clear_pending_action_tx(struct wpa_supplicant *wpa_s)
  4320. {
  4321. if (!offchannel_pending_action_tx(wpa_s))
  4322. return;
  4323. wpa_printf(MSG_DEBUG, "P2P: Drop pending Action TX due to new "
  4324. "operation request");
  4325. offchannel_clear_pending_action_tx(wpa_s);
  4326. }
  4327. int wpas_p2p_find(struct wpa_supplicant *wpa_s, unsigned int timeout,
  4328. enum p2p_discovery_type type,
  4329. unsigned int num_req_dev_types, const u8 *req_dev_types,
  4330. const u8 *dev_id, unsigned int search_delay)
  4331. {
  4332. wpas_p2p_clear_pending_action_tx(wpa_s);
  4333. wpa_s->p2p_long_listen = 0;
  4334. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4335. return wpa_drv_p2p_find(wpa_s, timeout, type);
  4336. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL ||
  4337. wpa_s->p2p_in_provisioning)
  4338. return -1;
  4339. wpa_supplicant_cancel_sched_scan(wpa_s);
  4340. return p2p_find(wpa_s->global->p2p, timeout, type,
  4341. num_req_dev_types, req_dev_types, dev_id,
  4342. search_delay);
  4343. }
  4344. static int wpas_p2p_stop_find_oper(struct wpa_supplicant *wpa_s)
  4345. {
  4346. wpas_p2p_clear_pending_action_tx(wpa_s);
  4347. wpa_s->p2p_long_listen = 0;
  4348. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  4349. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  4350. wpa_s->global->p2p_cb_on_scan_complete = 0;
  4351. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  4352. wpa_drv_p2p_stop_find(wpa_s);
  4353. return 1;
  4354. }
  4355. if (wpa_s->global->p2p)
  4356. p2p_stop_find(wpa_s->global->p2p);
  4357. return 0;
  4358. }
  4359. void wpas_p2p_stop_find(struct wpa_supplicant *wpa_s)
  4360. {
  4361. if (wpas_p2p_stop_find_oper(wpa_s) > 0)
  4362. return;
  4363. wpas_p2p_remove_pending_group_interface(wpa_s);
  4364. }
  4365. static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx)
  4366. {
  4367. struct wpa_supplicant *wpa_s = eloop_ctx;
  4368. wpa_s->p2p_long_listen = 0;
  4369. }
  4370. int wpas_p2p_listen(struct wpa_supplicant *wpa_s, unsigned int timeout)
  4371. {
  4372. int res;
  4373. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4374. return -1;
  4375. wpa_supplicant_cancel_sched_scan(wpa_s);
  4376. wpas_p2p_clear_pending_action_tx(wpa_s);
  4377. if (timeout == 0) {
  4378. /*
  4379. * This is a request for unlimited Listen state. However, at
  4380. * least for now, this is mapped to a Listen state for one
  4381. * hour.
  4382. */
  4383. timeout = 3600;
  4384. }
  4385. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  4386. wpa_s->p2p_long_listen = 0;
  4387. /*
  4388. * Stop previous find/listen operation to avoid trying to request a new
  4389. * remain-on-channel operation while the driver is still running the
  4390. * previous one.
  4391. */
  4392. if (wpa_s->global->p2p)
  4393. p2p_stop_find(wpa_s->global->p2p);
  4394. res = wpas_p2p_listen_start(wpa_s, timeout * 1000);
  4395. if (res == 0 && timeout * 1000 > wpa_s->max_remain_on_chan) {
  4396. wpa_s->p2p_long_listen = timeout * 1000;
  4397. eloop_register_timeout(timeout, 0,
  4398. wpas_p2p_long_listen_timeout,
  4399. wpa_s, NULL);
  4400. }
  4401. return res;
  4402. }
  4403. int wpas_p2p_assoc_req_ie(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
  4404. u8 *buf, size_t len, int p2p_group)
  4405. {
  4406. struct wpabuf *p2p_ie;
  4407. int ret;
  4408. if (wpa_s->global->p2p_disabled)
  4409. return -1;
  4410. if (wpa_s->global->p2p == NULL)
  4411. return -1;
  4412. if (bss == NULL)
  4413. return -1;
  4414. p2p_ie = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
  4415. ret = p2p_assoc_req_ie(wpa_s->global->p2p, bss->bssid, buf, len,
  4416. p2p_group, p2p_ie);
  4417. wpabuf_free(p2p_ie);
  4418. return ret;
  4419. }
  4420. int wpas_p2p_probe_req_rx(struct wpa_supplicant *wpa_s, const u8 *addr,
  4421. const u8 *dst, const u8 *bssid,
  4422. const u8 *ie, size_t ie_len, int ssi_signal)
  4423. {
  4424. if (wpa_s->global->p2p_disabled)
  4425. return 0;
  4426. if (wpa_s->global->p2p == NULL)
  4427. return 0;
  4428. switch (p2p_probe_req_rx(wpa_s->global->p2p, addr, dst, bssid,
  4429. ie, ie_len)) {
  4430. case P2P_PREQ_NOT_P2P:
  4431. wpas_notify_preq(wpa_s, addr, dst, bssid, ie, ie_len,
  4432. ssi_signal);
  4433. /* fall through */
  4434. case P2P_PREQ_MALFORMED:
  4435. case P2P_PREQ_NOT_LISTEN:
  4436. case P2P_PREQ_NOT_PROCESSED:
  4437. default: /* make gcc happy */
  4438. return 0;
  4439. case P2P_PREQ_PROCESSED:
  4440. return 1;
  4441. }
  4442. }
  4443. void wpas_p2p_rx_action(struct wpa_supplicant *wpa_s, const u8 *da,
  4444. const u8 *sa, const u8 *bssid,
  4445. u8 category, const u8 *data, size_t len, int freq)
  4446. {
  4447. if (wpa_s->global->p2p_disabled)
  4448. return;
  4449. if (wpa_s->global->p2p == NULL)
  4450. return;
  4451. p2p_rx_action(wpa_s->global->p2p, da, sa, bssid, category, data, len,
  4452. freq);
  4453. }
  4454. void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies)
  4455. {
  4456. if (wpa_s->global->p2p_disabled)
  4457. return;
  4458. if (wpa_s->global->p2p == NULL)
  4459. return;
  4460. p2p_scan_ie(wpa_s->global->p2p, ies, NULL);
  4461. }
  4462. void wpas_p2p_group_deinit(struct wpa_supplicant *wpa_s)
  4463. {
  4464. p2p_group_deinit(wpa_s->p2p_group);
  4465. wpa_s->p2p_group = NULL;
  4466. wpa_s->ap_configured_cb = NULL;
  4467. wpa_s->ap_configured_cb_ctx = NULL;
  4468. wpa_s->ap_configured_cb_data = NULL;
  4469. wpa_s->connect_without_scan = NULL;
  4470. }
  4471. int wpas_p2p_reject(struct wpa_supplicant *wpa_s, const u8 *addr)
  4472. {
  4473. wpa_s->p2p_long_listen = 0;
  4474. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4475. return wpa_drv_p2p_reject(wpa_s, addr);
  4476. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4477. return -1;
  4478. return p2p_reject(wpa_s->global->p2p, addr);
  4479. }
  4480. /* Invite to reinvoke a persistent group */
  4481. int wpas_p2p_invite(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  4482. struct wpa_ssid *ssid, const u8 *go_dev_addr, int freq,
  4483. int ht40, int vht, int pref_freq)
  4484. {
  4485. enum p2p_invite_role role;
  4486. u8 *bssid = NULL;
  4487. int force_freq = 0;
  4488. int res;
  4489. wpa_s->global->p2p_invite_group = NULL;
  4490. if (peer_addr)
  4491. os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
  4492. else
  4493. os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
  4494. wpa_s->p2p_persistent_go_freq = freq;
  4495. wpa_s->p2p_go_ht40 = !!ht40;
  4496. if (ssid->mode == WPAS_MODE_P2P_GO) {
  4497. role = P2P_INVITE_ROLE_GO;
  4498. if (peer_addr == NULL) {
  4499. wpa_printf(MSG_DEBUG, "P2P: Missing peer "
  4500. "address in invitation command");
  4501. return -1;
  4502. }
  4503. if (wpas_p2p_create_iface(wpa_s)) {
  4504. if (wpas_p2p_add_group_interface(wpa_s,
  4505. WPA_IF_P2P_GO) < 0) {
  4506. wpa_printf(MSG_ERROR, "P2P: Failed to "
  4507. "allocate a new interface for the "
  4508. "group");
  4509. return -1;
  4510. }
  4511. bssid = wpa_s->pending_interface_addr;
  4512. } else
  4513. bssid = wpa_s->own_addr;
  4514. } else {
  4515. role = P2P_INVITE_ROLE_CLIENT;
  4516. peer_addr = ssid->bssid;
  4517. }
  4518. wpa_s->pending_invite_ssid_id = ssid->id;
  4519. res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
  4520. role == P2P_INVITE_ROLE_GO);
  4521. if (res)
  4522. return res;
  4523. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4524. return wpa_drv_p2p_invite(wpa_s, peer_addr, role, bssid,
  4525. ssid->ssid, ssid->ssid_len,
  4526. go_dev_addr, 1);
  4527. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4528. return -1;
  4529. return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
  4530. ssid->ssid, ssid->ssid_len, force_freq, go_dev_addr,
  4531. 1, pref_freq);
  4532. }
  4533. /* Invite to join an active group */
  4534. int wpas_p2p_invite_group(struct wpa_supplicant *wpa_s, const char *ifname,
  4535. const u8 *peer_addr, const u8 *go_dev_addr)
  4536. {
  4537. struct wpa_global *global = wpa_s->global;
  4538. enum p2p_invite_role role;
  4539. u8 *bssid = NULL;
  4540. struct wpa_ssid *ssid;
  4541. int persistent;
  4542. int freq = 0, force_freq = 0, pref_freq = 0;
  4543. int res;
  4544. wpa_s->p2p_persistent_go_freq = 0;
  4545. wpa_s->p2p_go_ht40 = 0;
  4546. wpa_s->p2p_go_vht = 0;
  4547. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  4548. if (os_strcmp(wpa_s->ifname, ifname) == 0)
  4549. break;
  4550. }
  4551. if (wpa_s == NULL) {
  4552. wpa_printf(MSG_DEBUG, "P2P: Interface '%s' not found", ifname);
  4553. return -1;
  4554. }
  4555. ssid = wpa_s->current_ssid;
  4556. if (ssid == NULL) {
  4557. wpa_printf(MSG_DEBUG, "P2P: No current SSID to use for "
  4558. "invitation");
  4559. return -1;
  4560. }
  4561. wpa_s->global->p2p_invite_group = wpa_s;
  4562. persistent = ssid->p2p_persistent_group &&
  4563. wpas_p2p_get_persistent(wpa_s->parent, peer_addr,
  4564. ssid->ssid, ssid->ssid_len);
  4565. if (ssid->mode == WPAS_MODE_P2P_GO) {
  4566. role = P2P_INVITE_ROLE_ACTIVE_GO;
  4567. bssid = wpa_s->own_addr;
  4568. if (go_dev_addr == NULL)
  4569. go_dev_addr = wpa_s->global->p2p_dev_addr;
  4570. freq = ssid->frequency;
  4571. } else {
  4572. role = P2P_INVITE_ROLE_CLIENT;
  4573. if (wpa_s->wpa_state < WPA_ASSOCIATED) {
  4574. wpa_printf(MSG_DEBUG, "P2P: Not associated - cannot "
  4575. "invite to current group");
  4576. return -1;
  4577. }
  4578. bssid = wpa_s->bssid;
  4579. if (go_dev_addr == NULL &&
  4580. !is_zero_ether_addr(wpa_s->go_dev_addr))
  4581. go_dev_addr = wpa_s->go_dev_addr;
  4582. freq = wpa_s->current_bss ? wpa_s->current_bss->freq :
  4583. (int) wpa_s->assoc_freq;
  4584. }
  4585. wpa_s->parent->pending_invite_ssid_id = -1;
  4586. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4587. return wpa_drv_p2p_invite(wpa_s, peer_addr, role, bssid,
  4588. ssid->ssid, ssid->ssid_len,
  4589. go_dev_addr, persistent);
  4590. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4591. return -1;
  4592. res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
  4593. role == P2P_INVITE_ROLE_ACTIVE_GO);
  4594. if (res)
  4595. return res;
  4596. wpas_p2p_set_own_freq_preference(wpa_s, force_freq);
  4597. return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
  4598. ssid->ssid, ssid->ssid_len, force_freq,
  4599. go_dev_addr, persistent, pref_freq);
  4600. }
  4601. void wpas_p2p_completed(struct wpa_supplicant *wpa_s)
  4602. {
  4603. struct wpa_ssid *ssid = wpa_s->current_ssid;
  4604. const char *ssid_txt;
  4605. u8 go_dev_addr[ETH_ALEN];
  4606. int network_id = -1;
  4607. int persistent;
  4608. int freq;
  4609. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION) {
  4610. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  4611. wpa_s->parent, NULL);
  4612. }
  4613. if (!wpa_s->show_group_started || !ssid)
  4614. goto done;
  4615. wpa_s->show_group_started = 0;
  4616. ssid_txt = wpa_ssid_txt(ssid->ssid, ssid->ssid_len);
  4617. os_memset(go_dev_addr, 0, ETH_ALEN);
  4618. if (ssid->bssid_set)
  4619. os_memcpy(go_dev_addr, ssid->bssid, ETH_ALEN);
  4620. persistent = wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
  4621. ssid->ssid_len);
  4622. os_memcpy(wpa_s->go_dev_addr, go_dev_addr, ETH_ALEN);
  4623. if (wpa_s->global->p2p_group_formation == wpa_s)
  4624. wpa_s->global->p2p_group_formation = NULL;
  4625. freq = wpa_s->current_bss ? wpa_s->current_bss->freq :
  4626. (int) wpa_s->assoc_freq;
  4627. if (ssid->passphrase == NULL && ssid->psk_set) {
  4628. char psk[65];
  4629. wpa_snprintf_hex(psk, sizeof(psk), ssid->psk, 32);
  4630. wpa_msg_global(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  4631. "%s client ssid=\"%s\" freq=%d psk=%s "
  4632. "go_dev_addr=" MACSTR "%s",
  4633. wpa_s->ifname, ssid_txt, freq, psk,
  4634. MAC2STR(go_dev_addr),
  4635. persistent ? " [PERSISTENT]" : "");
  4636. } else {
  4637. wpa_msg_global(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  4638. "%s client ssid=\"%s\" freq=%d "
  4639. "passphrase=\"%s\" go_dev_addr=" MACSTR "%s",
  4640. wpa_s->ifname, ssid_txt, freq,
  4641. ssid->passphrase ? ssid->passphrase : "",
  4642. MAC2STR(go_dev_addr),
  4643. persistent ? " [PERSISTENT]" : "");
  4644. }
  4645. if (persistent)
  4646. network_id = wpas_p2p_store_persistent_group(wpa_s->parent,
  4647. ssid, go_dev_addr);
  4648. if (network_id < 0)
  4649. network_id = ssid->id;
  4650. wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 1);
  4651. done:
  4652. wpas_p2p_continue_after_scan(wpa_s);
  4653. }
  4654. int wpas_p2p_presence_req(struct wpa_supplicant *wpa_s, u32 duration1,
  4655. u32 interval1, u32 duration2, u32 interval2)
  4656. {
  4657. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4658. return -1;
  4659. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4660. return -1;
  4661. if (wpa_s->wpa_state < WPA_ASSOCIATED ||
  4662. wpa_s->current_ssid == NULL ||
  4663. wpa_s->current_ssid->mode != WPAS_MODE_INFRA)
  4664. return -1;
  4665. return p2p_presence_req(wpa_s->global->p2p, wpa_s->bssid,
  4666. wpa_s->own_addr, wpa_s->assoc_freq,
  4667. duration1, interval1, duration2, interval2);
  4668. }
  4669. int wpas_p2p_ext_listen(struct wpa_supplicant *wpa_s, unsigned int period,
  4670. unsigned int interval)
  4671. {
  4672. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4673. return -1;
  4674. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4675. return -1;
  4676. return p2p_ext_listen(wpa_s->global->p2p, period, interval);
  4677. }
  4678. static int wpas_p2p_is_client(struct wpa_supplicant *wpa_s)
  4679. {
  4680. if (wpa_s->current_ssid == NULL) {
  4681. /*
  4682. * current_ssid can be cleared when P2P client interface gets
  4683. * disconnected, so assume this interface was used as P2P
  4684. * client.
  4685. */
  4686. return 1;
  4687. }
  4688. return wpa_s->current_ssid->p2p_group &&
  4689. wpa_s->current_ssid->mode == WPAS_MODE_INFRA;
  4690. }
  4691. static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx)
  4692. {
  4693. struct wpa_supplicant *wpa_s = eloop_ctx;
  4694. if (wpa_s->conf->p2p_group_idle == 0 && !wpas_p2p_is_client(wpa_s)) {
  4695. wpa_printf(MSG_DEBUG, "P2P: Ignore group idle timeout - "
  4696. "disabled");
  4697. return;
  4698. }
  4699. wpa_printf(MSG_DEBUG, "P2P: Group idle timeout reached - terminate "
  4700. "group");
  4701. wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_IDLE_TIMEOUT);
  4702. }
  4703. static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s)
  4704. {
  4705. int timeout;
  4706. if (eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
  4707. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
  4708. if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
  4709. return;
  4710. timeout = wpa_s->conf->p2p_group_idle;
  4711. if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA &&
  4712. (timeout == 0 || timeout > P2P_MAX_CLIENT_IDLE))
  4713. timeout = P2P_MAX_CLIENT_IDLE;
  4714. if (timeout == 0)
  4715. return;
  4716. if (timeout < 0) {
  4717. if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA)
  4718. timeout = 0; /* special client mode no-timeout */
  4719. else
  4720. return;
  4721. }
  4722. if (wpa_s->p2p_in_provisioning) {
  4723. /*
  4724. * Use the normal group formation timeout during the
  4725. * provisioning phase to avoid terminating this process too
  4726. * early due to group idle timeout.
  4727. */
  4728. wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
  4729. "during provisioning");
  4730. return;
  4731. }
  4732. if (wpa_s->show_group_started) {
  4733. /*
  4734. * Use the normal group formation timeout between the end of
  4735. * the provisioning phase and completion of 4-way handshake to
  4736. * avoid terminating this process too early due to group idle
  4737. * timeout.
  4738. */
  4739. wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
  4740. "while waiting for initial 4-way handshake to "
  4741. "complete");
  4742. return;
  4743. }
  4744. wpa_printf(MSG_DEBUG, "P2P: Set P2P group idle timeout to %u seconds",
  4745. timeout);
  4746. eloop_register_timeout(timeout, 0, wpas_p2p_group_idle_timeout,
  4747. wpa_s, NULL);
  4748. }
  4749. /* Returns 1 if the interface was removed */
  4750. int wpas_p2p_deauth_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
  4751. u16 reason_code, const u8 *ie, size_t ie_len,
  4752. int locally_generated)
  4753. {
  4754. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4755. return 0;
  4756. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4757. return 0;
  4758. if (!locally_generated)
  4759. p2p_deauth_notif(wpa_s->global->p2p, bssid, reason_code, ie,
  4760. ie_len);
  4761. if (reason_code == WLAN_REASON_DEAUTH_LEAVING && !locally_generated &&
  4762. wpa_s->current_ssid &&
  4763. wpa_s->current_ssid->p2p_group &&
  4764. wpa_s->current_ssid->mode == WPAS_MODE_INFRA) {
  4765. wpa_printf(MSG_DEBUG, "P2P: GO indicated that the P2P Group "
  4766. "session is ending");
  4767. if (wpas_p2p_group_delete(wpa_s,
  4768. P2P_GROUP_REMOVAL_GO_ENDING_SESSION)
  4769. > 0)
  4770. return 1;
  4771. }
  4772. return 0;
  4773. }
  4774. void wpas_p2p_disassoc_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
  4775. u16 reason_code, const u8 *ie, size_t ie_len,
  4776. int locally_generated)
  4777. {
  4778. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4779. return;
  4780. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4781. return;
  4782. if (!locally_generated)
  4783. p2p_disassoc_notif(wpa_s->global->p2p, bssid, reason_code, ie,
  4784. ie_len);
  4785. }
  4786. void wpas_p2p_update_config(struct wpa_supplicant *wpa_s)
  4787. {
  4788. struct p2p_data *p2p = wpa_s->global->p2p;
  4789. if (p2p == NULL)
  4790. return;
  4791. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
  4792. return;
  4793. if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_NAME)
  4794. p2p_set_dev_name(p2p, wpa_s->conf->device_name);
  4795. if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_TYPE)
  4796. p2p_set_pri_dev_type(p2p, wpa_s->conf->device_type);
  4797. if (wpa_s->wps &&
  4798. (wpa_s->conf->changed_parameters & CFG_CHANGED_CONFIG_METHODS))
  4799. p2p_set_config_methods(p2p, wpa_s->wps->config_methods);
  4800. if (wpa_s->wps && (wpa_s->conf->changed_parameters & CFG_CHANGED_UUID))
  4801. p2p_set_uuid(p2p, wpa_s->wps->uuid);
  4802. if (wpa_s->conf->changed_parameters & CFG_CHANGED_WPS_STRING) {
  4803. p2p_set_manufacturer(p2p, wpa_s->conf->manufacturer);
  4804. p2p_set_model_name(p2p, wpa_s->conf->model_name);
  4805. p2p_set_model_number(p2p, wpa_s->conf->model_number);
  4806. p2p_set_serial_number(p2p, wpa_s->conf->serial_number);
  4807. }
  4808. if (wpa_s->conf->changed_parameters & CFG_CHANGED_SEC_DEVICE_TYPE)
  4809. p2p_set_sec_dev_types(p2p,
  4810. (void *) wpa_s->conf->sec_device_type,
  4811. wpa_s->conf->num_sec_device_types);
  4812. if (wpa_s->conf->changed_parameters & CFG_CHANGED_VENDOR_EXTENSION) {
  4813. int i;
  4814. p2p_remove_wps_vendor_extensions(p2p);
  4815. for (i = 0; i < MAX_WPS_VENDOR_EXT; i++) {
  4816. if (wpa_s->conf->wps_vendor_ext[i] == NULL)
  4817. continue;
  4818. p2p_add_wps_vendor_extension(
  4819. p2p, wpa_s->conf->wps_vendor_ext[i]);
  4820. }
  4821. }
  4822. if ((wpa_s->conf->changed_parameters & CFG_CHANGED_COUNTRY) &&
  4823. wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
  4824. char country[3];
  4825. country[0] = wpa_s->conf->country[0];
  4826. country[1] = wpa_s->conf->country[1];
  4827. country[2] = 0x04;
  4828. p2p_set_country(p2p, country);
  4829. }
  4830. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_SSID_POSTFIX) {
  4831. p2p_set_ssid_postfix(p2p, (u8 *) wpa_s->conf->p2p_ssid_postfix,
  4832. wpa_s->conf->p2p_ssid_postfix ?
  4833. os_strlen(wpa_s->conf->p2p_ssid_postfix) :
  4834. 0);
  4835. }
  4836. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_INTRA_BSS)
  4837. p2p_set_intra_bss_dist(p2p, wpa_s->conf->p2p_intra_bss);
  4838. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_LISTEN_CHANNEL) {
  4839. u8 reg_class, channel;
  4840. int ret;
  4841. unsigned int r;
  4842. if (wpa_s->conf->p2p_listen_reg_class &&
  4843. wpa_s->conf->p2p_listen_channel) {
  4844. reg_class = wpa_s->conf->p2p_listen_reg_class;
  4845. channel = wpa_s->conf->p2p_listen_channel;
  4846. } else {
  4847. reg_class = 81;
  4848. /*
  4849. * Pick one of the social channels randomly as the
  4850. * listen channel.
  4851. */
  4852. os_get_random((u8 *) &r, sizeof(r));
  4853. channel = 1 + (r % 3) * 5;
  4854. }
  4855. ret = p2p_set_listen_channel(p2p, reg_class, channel);
  4856. if (ret)
  4857. wpa_printf(MSG_ERROR, "P2P: Own listen channel update "
  4858. "failed: %d", ret);
  4859. }
  4860. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_OPER_CHANNEL) {
  4861. u8 op_reg_class, op_channel, cfg_op_channel;
  4862. int ret = 0;
  4863. unsigned int r;
  4864. if (wpa_s->conf->p2p_oper_reg_class &&
  4865. wpa_s->conf->p2p_oper_channel) {
  4866. op_reg_class = wpa_s->conf->p2p_oper_reg_class;
  4867. op_channel = wpa_s->conf->p2p_oper_channel;
  4868. cfg_op_channel = 1;
  4869. } else {
  4870. op_reg_class = 81;
  4871. /*
  4872. * Use random operation channel from (1, 6, 11)
  4873. *if no other preference is indicated.
  4874. */
  4875. os_get_random((u8 *) &r, sizeof(r));
  4876. op_channel = 1 + (r % 3) * 5;
  4877. cfg_op_channel = 0;
  4878. }
  4879. ret = p2p_set_oper_channel(p2p, op_reg_class, op_channel,
  4880. cfg_op_channel);
  4881. if (ret)
  4882. wpa_printf(MSG_ERROR, "P2P: Own oper channel update "
  4883. "failed: %d", ret);
  4884. }
  4885. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_PREF_CHAN) {
  4886. if (p2p_set_pref_chan(p2p, wpa_s->conf->num_p2p_pref_chan,
  4887. wpa_s->conf->p2p_pref_chan) < 0) {
  4888. wpa_printf(MSG_ERROR, "P2P: Preferred channel list "
  4889. "update failed");
  4890. }
  4891. if (p2p_set_no_go_freq(p2p, &wpa_s->conf->p2p_no_go_freq) < 0) {
  4892. wpa_printf(MSG_ERROR, "P2P: No GO channel list "
  4893. "update failed");
  4894. }
  4895. }
  4896. }
  4897. int wpas_p2p_set_noa(struct wpa_supplicant *wpa_s, u8 count, int start,
  4898. int duration)
  4899. {
  4900. if (!wpa_s->ap_iface)
  4901. return -1;
  4902. return hostapd_p2p_set_noa(wpa_s->ap_iface->bss[0], count, start,
  4903. duration);
  4904. }
  4905. int wpas_p2p_set_cross_connect(struct wpa_supplicant *wpa_s, int enabled)
  4906. {
  4907. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4908. return -1;
  4909. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4910. return -1;
  4911. wpa_s->global->cross_connection = enabled;
  4912. p2p_set_cross_connect(wpa_s->global->p2p, enabled);
  4913. if (!enabled) {
  4914. struct wpa_supplicant *iface;
  4915. for (iface = wpa_s->global->ifaces; iface; iface = iface->next)
  4916. {
  4917. if (iface->cross_connect_enabled == 0)
  4918. continue;
  4919. iface->cross_connect_enabled = 0;
  4920. iface->cross_connect_in_use = 0;
  4921. wpa_msg_global(iface->parent, MSG_INFO,
  4922. P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
  4923. iface->ifname,
  4924. iface->cross_connect_uplink);
  4925. }
  4926. }
  4927. return 0;
  4928. }
  4929. static void wpas_p2p_enable_cross_connect(struct wpa_supplicant *uplink)
  4930. {
  4931. struct wpa_supplicant *iface;
  4932. if (!uplink->global->cross_connection)
  4933. return;
  4934. for (iface = uplink->global->ifaces; iface; iface = iface->next) {
  4935. if (!iface->cross_connect_enabled)
  4936. continue;
  4937. if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
  4938. 0)
  4939. continue;
  4940. if (iface->ap_iface == NULL)
  4941. continue;
  4942. if (iface->cross_connect_in_use)
  4943. continue;
  4944. iface->cross_connect_in_use = 1;
  4945. wpa_msg_global(iface->parent, MSG_INFO,
  4946. P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
  4947. iface->ifname, iface->cross_connect_uplink);
  4948. }
  4949. }
  4950. static void wpas_p2p_disable_cross_connect(struct wpa_supplicant *uplink)
  4951. {
  4952. struct wpa_supplicant *iface;
  4953. for (iface = uplink->global->ifaces; iface; iface = iface->next) {
  4954. if (!iface->cross_connect_enabled)
  4955. continue;
  4956. if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
  4957. 0)
  4958. continue;
  4959. if (!iface->cross_connect_in_use)
  4960. continue;
  4961. wpa_msg_global(iface->parent, MSG_INFO,
  4962. P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
  4963. iface->ifname, iface->cross_connect_uplink);
  4964. iface->cross_connect_in_use = 0;
  4965. }
  4966. }
  4967. void wpas_p2p_notif_connected(struct wpa_supplicant *wpa_s)
  4968. {
  4969. if (wpa_s->ap_iface || wpa_s->current_ssid == NULL ||
  4970. wpa_s->current_ssid->mode != WPAS_MODE_INFRA ||
  4971. wpa_s->cross_connect_disallowed)
  4972. wpas_p2p_disable_cross_connect(wpa_s);
  4973. else
  4974. wpas_p2p_enable_cross_connect(wpa_s);
  4975. if (!wpa_s->ap_iface &&
  4976. eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
  4977. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
  4978. }
  4979. void wpas_p2p_notif_disconnected(struct wpa_supplicant *wpa_s)
  4980. {
  4981. wpas_p2p_disable_cross_connect(wpa_s);
  4982. if (!wpa_s->ap_iface &&
  4983. !eloop_is_timeout_registered(wpas_p2p_group_idle_timeout,
  4984. wpa_s, NULL))
  4985. wpas_p2p_set_group_idle_timeout(wpa_s);
  4986. }
  4987. static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s)
  4988. {
  4989. struct wpa_supplicant *iface;
  4990. if (!wpa_s->global->cross_connection)
  4991. return;
  4992. for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
  4993. if (iface == wpa_s)
  4994. continue;
  4995. if (iface->drv_flags &
  4996. WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE)
  4997. continue;
  4998. if (iface->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE)
  4999. continue;
  5000. wpa_s->cross_connect_enabled = 1;
  5001. os_strlcpy(wpa_s->cross_connect_uplink, iface->ifname,
  5002. sizeof(wpa_s->cross_connect_uplink));
  5003. wpa_printf(MSG_DEBUG, "P2P: Enable cross connection from "
  5004. "%s to %s whenever uplink is available",
  5005. wpa_s->ifname, wpa_s->cross_connect_uplink);
  5006. if (iface->ap_iface || iface->current_ssid == NULL ||
  5007. iface->current_ssid->mode != WPAS_MODE_INFRA ||
  5008. iface->cross_connect_disallowed ||
  5009. iface->wpa_state != WPA_COMPLETED)
  5010. break;
  5011. wpa_s->cross_connect_in_use = 1;
  5012. wpa_msg_global(wpa_s->parent, MSG_INFO,
  5013. P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
  5014. wpa_s->ifname, wpa_s->cross_connect_uplink);
  5015. break;
  5016. }
  5017. }
  5018. int wpas_p2p_notif_pbc_overlap(struct wpa_supplicant *wpa_s)
  5019. {
  5020. if (wpa_s->p2p_group_interface != P2P_GROUP_INTERFACE_CLIENT &&
  5021. !wpa_s->p2p_in_provisioning)
  5022. return 0; /* not P2P client operation */
  5023. wpa_printf(MSG_DEBUG, "P2P: Terminate connection due to WPS PBC "
  5024. "session overlap");
  5025. if (wpa_s != wpa_s->parent)
  5026. wpa_msg_ctrl(wpa_s->parent, MSG_INFO, WPS_EVENT_OVERLAP);
  5027. wpas_p2p_group_formation_failed(wpa_s);
  5028. return 1;
  5029. }
  5030. void wpas_p2p_update_channel_list(struct wpa_supplicant *wpa_s)
  5031. {
  5032. struct p2p_channels chan, cli_chan;
  5033. if (wpa_s->global == NULL || wpa_s->global->p2p == NULL)
  5034. return;
  5035. os_memset(&chan, 0, sizeof(chan));
  5036. os_memset(&cli_chan, 0, sizeof(cli_chan));
  5037. if (wpas_p2p_setup_channels(wpa_s, &chan, &cli_chan)) {
  5038. wpa_printf(MSG_ERROR, "P2P: Failed to update supported "
  5039. "channel list");
  5040. return;
  5041. }
  5042. p2p_update_channel_list(wpa_s->global->p2p, &chan, &cli_chan);
  5043. }
  5044. static void wpas_p2p_scan_res_ignore(struct wpa_supplicant *wpa_s,
  5045. struct wpa_scan_results *scan_res)
  5046. {
  5047. wpa_printf(MSG_DEBUG, "P2P: Ignore scan results");
  5048. }
  5049. int wpas_p2p_cancel(struct wpa_supplicant *wpa_s)
  5050. {
  5051. struct wpa_global *global = wpa_s->global;
  5052. int found = 0;
  5053. const u8 *peer;
  5054. if (global->p2p == NULL)
  5055. return -1;
  5056. wpa_printf(MSG_DEBUG, "P2P: Request to cancel group formation");
  5057. if (wpa_s->pending_interface_name[0] &&
  5058. !is_zero_ether_addr(wpa_s->pending_interface_addr))
  5059. found = 1;
  5060. peer = p2p_get_go_neg_peer(global->p2p);
  5061. if (peer) {
  5062. wpa_printf(MSG_DEBUG, "P2P: Unauthorize pending GO Neg peer "
  5063. MACSTR, MAC2STR(peer));
  5064. p2p_unauthorize(global->p2p, peer);
  5065. found = 1;
  5066. }
  5067. if (wpa_s->scan_res_handler == wpas_p2p_scan_res_join) {
  5068. wpa_printf(MSG_DEBUG, "P2P: Stop pending scan for join");
  5069. wpa_s->scan_res_handler = wpas_p2p_scan_res_ignore;
  5070. found = 1;
  5071. }
  5072. if (wpa_s->pending_pd_before_join) {
  5073. wpa_printf(MSG_DEBUG, "P2P: Stop pending PD before join");
  5074. wpa_s->pending_pd_before_join = 0;
  5075. found = 1;
  5076. }
  5077. wpas_p2p_stop_find(wpa_s);
  5078. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  5079. if (wpa_s == global->p2p_group_formation &&
  5080. (wpa_s->p2p_in_provisioning ||
  5081. wpa_s->parent->pending_interface_type ==
  5082. WPA_IF_P2P_CLIENT)) {
  5083. wpa_printf(MSG_DEBUG, "P2P: Interface %s in group "
  5084. "formation found - cancelling",
  5085. wpa_s->ifname);
  5086. found = 1;
  5087. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  5088. wpa_s->parent, NULL);
  5089. if (wpa_s->p2p_in_provisioning) {
  5090. wpas_group_formation_completed(wpa_s, 0);
  5091. break;
  5092. }
  5093. wpas_p2p_group_delete(wpa_s,
  5094. P2P_GROUP_REMOVAL_REQUESTED);
  5095. break;
  5096. }
  5097. }
  5098. if (!found) {
  5099. wpa_printf(MSG_DEBUG, "P2P: No ongoing group formation found");
  5100. return -1;
  5101. }
  5102. return 0;
  5103. }
  5104. void wpas_p2p_interface_unavailable(struct wpa_supplicant *wpa_s)
  5105. {
  5106. if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
  5107. return;
  5108. wpa_printf(MSG_DEBUG, "P2P: Remove group due to driver resource not "
  5109. "being available anymore");
  5110. wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_UNAVAILABLE);
  5111. }
  5112. void wpas_p2p_update_best_channels(struct wpa_supplicant *wpa_s,
  5113. int freq_24, int freq_5, int freq_overall)
  5114. {
  5115. struct p2p_data *p2p = wpa_s->global->p2p;
  5116. if (p2p == NULL || (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT))
  5117. return;
  5118. p2p_set_best_channels(p2p, freq_24, freq_5, freq_overall);
  5119. }
  5120. int wpas_p2p_unauthorize(struct wpa_supplicant *wpa_s, const char *addr)
  5121. {
  5122. u8 peer[ETH_ALEN];
  5123. struct p2p_data *p2p = wpa_s->global->p2p;
  5124. if (p2p == NULL || (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT))
  5125. return -1;
  5126. if (hwaddr_aton(addr, peer))
  5127. return -1;
  5128. return p2p_unauthorize(p2p, peer);
  5129. }
  5130. /**
  5131. * wpas_p2p_disconnect - Disconnect from a P2P Group
  5132. * @wpa_s: Pointer to wpa_supplicant data
  5133. * Returns: 0 on success, -1 on failure
  5134. *
  5135. * This can be used to disconnect from a group in which the local end is a P2P
  5136. * Client or to end a P2P Group in case the local end is the Group Owner. If a
  5137. * virtual network interface was created for this group, that interface will be
  5138. * removed. Otherwise, only the configured P2P group network will be removed
  5139. * from the interface.
  5140. */
  5141. int wpas_p2p_disconnect(struct wpa_supplicant *wpa_s)
  5142. {
  5143. if (wpa_s == NULL)
  5144. return -1;
  5145. return wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_REQUESTED) < 0 ?
  5146. -1 : 0;
  5147. }
  5148. int wpas_p2p_in_progress(struct wpa_supplicant *wpa_s)
  5149. {
  5150. int ret;
  5151. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5152. return 0;
  5153. ret = p2p_in_progress(wpa_s->global->p2p);
  5154. if (ret == 0) {
  5155. /*
  5156. * Check whether there is an ongoing WPS provisioning step (or
  5157. * other parts of group formation) on another interface since
  5158. * p2p_in_progress() does not report this to avoid issues for
  5159. * scans during such provisioning step.
  5160. */
  5161. if (wpa_s->global->p2p_group_formation &&
  5162. wpa_s->global->p2p_group_formation != wpa_s) {
  5163. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Another interface (%s) "
  5164. "in group formation",
  5165. wpa_s->global->p2p_group_formation->ifname);
  5166. ret = 1;
  5167. }
  5168. }
  5169. if (!ret && wpa_s->global->p2p_go_wait_client.sec) {
  5170. struct os_time now;
  5171. os_get_time(&now);
  5172. if (now.sec > wpa_s->global->p2p_go_wait_client.sec +
  5173. P2P_MAX_INITIAL_CONN_WAIT_GO) {
  5174. /* Wait for the first client has expired */
  5175. wpa_s->global->p2p_go_wait_client.sec = 0;
  5176. } else {
  5177. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Waiting for initial client connection during group formation");
  5178. ret = 1;
  5179. }
  5180. }
  5181. return ret;
  5182. }
  5183. void wpas_p2p_network_removed(struct wpa_supplicant *wpa_s,
  5184. struct wpa_ssid *ssid)
  5185. {
  5186. if (wpa_s->p2p_in_provisioning && ssid->p2p_group &&
  5187. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  5188. wpa_s->parent, NULL) > 0) {
  5189. /**
  5190. * Remove the network by scheduling the group formation
  5191. * timeout to happen immediately. The teardown code
  5192. * needs to be scheduled to run asynch later so that we
  5193. * don't delete data from under ourselves unexpectedly.
  5194. * Calling wpas_p2p_group_formation_timeout directly
  5195. * causes a series of crashes in WPS failure scenarios.
  5196. */
  5197. wpa_printf(MSG_DEBUG, "P2P: Canceled group formation due to "
  5198. "P2P group network getting removed");
  5199. eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
  5200. wpa_s->parent, NULL);
  5201. }
  5202. }
  5203. struct wpa_ssid * wpas_p2p_get_persistent(struct wpa_supplicant *wpa_s,
  5204. const u8 *addr, const u8 *ssid,
  5205. size_t ssid_len)
  5206. {
  5207. struct wpa_ssid *s;
  5208. size_t i;
  5209. for (s = wpa_s->conf->ssid; s; s = s->next) {
  5210. if (s->disabled != 2)
  5211. continue;
  5212. if (ssid &&
  5213. (ssid_len != s->ssid_len ||
  5214. os_memcmp(ssid, s->ssid, ssid_len) != 0))
  5215. continue;
  5216. if (addr == NULL) {
  5217. if (s->mode == WPAS_MODE_P2P_GO)
  5218. return s;
  5219. continue;
  5220. }
  5221. if (os_memcmp(s->bssid, addr, ETH_ALEN) == 0)
  5222. return s; /* peer is GO in the persistent group */
  5223. if (s->mode != WPAS_MODE_P2P_GO || s->p2p_client_list == NULL)
  5224. continue;
  5225. for (i = 0; i < s->num_p2p_clients; i++) {
  5226. if (os_memcmp(s->p2p_client_list + i * ETH_ALEN,
  5227. addr, ETH_ALEN) == 0)
  5228. return s; /* peer is P2P client in persistent
  5229. * group */
  5230. }
  5231. }
  5232. return NULL;
  5233. }
  5234. void wpas_p2p_notify_ap_sta_authorized(struct wpa_supplicant *wpa_s,
  5235. const u8 *addr)
  5236. {
  5237. if (eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  5238. wpa_s->parent, NULL) > 0) {
  5239. /*
  5240. * This can happen if WPS provisioning step is not terminated
  5241. * cleanly (e.g., P2P Client does not send WSC_Done). Since the
  5242. * peer was able to connect, there is no need to time out group
  5243. * formation after this, though. In addition, this is used with
  5244. * the initial connection wait on the GO as a separate formation
  5245. * timeout and as such, expected to be hit after the initial WPS
  5246. * provisioning step.
  5247. */
  5248. wpa_printf(MSG_DEBUG, "P2P: Canceled P2P group formation timeout on data connection");
  5249. }
  5250. if (!wpa_s->p2p_go_group_formation_completed) {
  5251. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Marking group formation completed on GO on first data connection");
  5252. wpa_s->p2p_go_group_formation_completed = 1;
  5253. wpa_s->global->p2p_group_formation = NULL;
  5254. wpa_s->p2p_in_provisioning = 0;
  5255. }
  5256. wpa_s->global->p2p_go_wait_client.sec = 0;
  5257. if (addr == NULL)
  5258. return;
  5259. wpas_p2p_add_persistent_group_client(wpa_s, addr);
  5260. }
  5261. static void wpas_p2p_fallback_to_go_neg(struct wpa_supplicant *wpa_s,
  5262. int group_added)
  5263. {
  5264. struct wpa_supplicant *group = wpa_s;
  5265. if (wpa_s->global->p2p_group_formation)
  5266. group = wpa_s->global->p2p_group_formation;
  5267. wpa_s = wpa_s->parent;
  5268. offchannel_send_action_done(wpa_s);
  5269. if (group_added)
  5270. wpas_p2p_group_delete(group, P2P_GROUP_REMOVAL_SILENT);
  5271. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Fall back to GO Negotiation");
  5272. wpas_p2p_connect(wpa_s, wpa_s->pending_join_dev_addr, wpa_s->p2p_pin,
  5273. wpa_s->p2p_wps_method, wpa_s->p2p_persistent_group, 0,
  5274. 0, 0, wpa_s->p2p_go_intent, wpa_s->p2p_connect_freq,
  5275. wpa_s->p2p_persistent_id,
  5276. wpa_s->p2p_pd_before_go_neg,
  5277. wpa_s->p2p_go_ht40,
  5278. wpa_s->p2p_go_vht);
  5279. }
  5280. int wpas_p2p_scan_no_go_seen(struct wpa_supplicant *wpa_s)
  5281. {
  5282. if (!wpa_s->p2p_fallback_to_go_neg ||
  5283. wpa_s->p2p_in_provisioning <= 5)
  5284. return 0;
  5285. if (wpas_p2p_peer_go(wpa_s, wpa_s->pending_join_dev_addr) > 0)
  5286. return 0; /* peer operating as a GO */
  5287. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: GO not found for p2p_connect-auto - "
  5288. "fallback to GO Negotiation");
  5289. wpas_p2p_fallback_to_go_neg(wpa_s, 1);
  5290. return 1;
  5291. }
  5292. unsigned int wpas_p2p_search_delay(struct wpa_supplicant *wpa_s)
  5293. {
  5294. const char *rn, *rn2;
  5295. struct wpa_supplicant *ifs;
  5296. if (wpa_s->wpa_state > WPA_SCANNING) {
  5297. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use %u ms search delay due to "
  5298. "concurrent operation",
  5299. P2P_CONCURRENT_SEARCH_DELAY);
  5300. return P2P_CONCURRENT_SEARCH_DELAY;
  5301. }
  5302. if (!wpa_s->driver->get_radio_name)
  5303. return 0;
  5304. rn = wpa_s->driver->get_radio_name(wpa_s->drv_priv);
  5305. if (rn == NULL || rn[0] == '\0')
  5306. return 0;
  5307. for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
  5308. if (ifs == wpa_s || !ifs->driver->get_radio_name)
  5309. continue;
  5310. rn2 = ifs->driver->get_radio_name(ifs->drv_priv);
  5311. if (!rn2 || os_strcmp(rn, rn2) != 0)
  5312. continue;
  5313. if (ifs->wpa_state > WPA_SCANNING) {
  5314. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use %u ms search "
  5315. "delay due to concurrent operation on "
  5316. "interface %s",
  5317. P2P_CONCURRENT_SEARCH_DELAY, ifs->ifname);
  5318. return P2P_CONCURRENT_SEARCH_DELAY;
  5319. }
  5320. }
  5321. return 0;
  5322. }
  5323. void wpas_p2p_continue_after_scan(struct wpa_supplicant *wpa_s)
  5324. {
  5325. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Station mode scan operation not "
  5326. "pending anymore (sta_scan_pending=%d "
  5327. "p2p_cb_on_scan_complete=%d)", wpa_s->sta_scan_pending,
  5328. wpa_s->global->p2p_cb_on_scan_complete);
  5329. wpa_s->sta_scan_pending = 0;
  5330. if (!wpa_s->global->p2p_cb_on_scan_complete)
  5331. return;
  5332. wpa_s->global->p2p_cb_on_scan_complete = 0;
  5333. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5334. return;
  5335. if (p2p_other_scan_completed(wpa_s->global->p2p) == 1) {
  5336. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Pending P2P operation "
  5337. "continued after successful connection");
  5338. p2p_increase_search_delay(wpa_s->global->p2p,
  5339. wpas_p2p_search_delay(wpa_s));
  5340. }
  5341. }
  5342. static int wpas_p2p_remove_psk_entry(struct wpa_supplicant *wpa_s,
  5343. struct wpa_ssid *s, const u8 *addr,
  5344. int iface_addr)
  5345. {
  5346. struct psk_list_entry *psk, *tmp;
  5347. int changed = 0;
  5348. dl_list_for_each_safe(psk, tmp, &s->psk_list, struct psk_list_entry,
  5349. list) {
  5350. if ((iface_addr && !psk->p2p &&
  5351. os_memcmp(addr, psk->addr, ETH_ALEN) == 0) ||
  5352. (!iface_addr && psk->p2p &&
  5353. os_memcmp(addr, psk->addr, ETH_ALEN) == 0)) {
  5354. wpa_dbg(wpa_s, MSG_DEBUG,
  5355. "P2P: Remove persistent group PSK list entry for "
  5356. MACSTR " p2p=%u",
  5357. MAC2STR(psk->addr), psk->p2p);
  5358. dl_list_del(&psk->list);
  5359. os_free(psk);
  5360. changed++;
  5361. }
  5362. }
  5363. return changed;
  5364. }
  5365. void wpas_p2p_new_psk_cb(struct wpa_supplicant *wpa_s, const u8 *mac_addr,
  5366. const u8 *p2p_dev_addr,
  5367. const u8 *psk, size_t psk_len)
  5368. {
  5369. struct wpa_ssid *ssid = wpa_s->current_ssid;
  5370. struct wpa_ssid *persistent;
  5371. struct psk_list_entry *p;
  5372. if (psk_len != sizeof(p->psk))
  5373. return;
  5374. if (p2p_dev_addr) {
  5375. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New PSK for addr=" MACSTR
  5376. " p2p_dev_addr=" MACSTR,
  5377. MAC2STR(mac_addr), MAC2STR(p2p_dev_addr));
  5378. if (is_zero_ether_addr(p2p_dev_addr))
  5379. p2p_dev_addr = NULL;
  5380. } else {
  5381. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New PSK for addr=" MACSTR,
  5382. MAC2STR(mac_addr));
  5383. }
  5384. if (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
  5385. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: new_psk_cb during group formation");
  5386. /* To be added to persistent group once created */
  5387. if (wpa_s->global->add_psk == NULL) {
  5388. wpa_s->global->add_psk = os_zalloc(sizeof(*p));
  5389. if (wpa_s->global->add_psk == NULL)
  5390. return;
  5391. }
  5392. p = wpa_s->global->add_psk;
  5393. if (p2p_dev_addr) {
  5394. p->p2p = 1;
  5395. os_memcpy(p->addr, p2p_dev_addr, ETH_ALEN);
  5396. } else {
  5397. p->p2p = 0;
  5398. os_memcpy(p->addr, mac_addr, ETH_ALEN);
  5399. }
  5400. os_memcpy(p->psk, psk, psk_len);
  5401. return;
  5402. }
  5403. if (ssid->mode != WPAS_MODE_P2P_GO || !ssid->p2p_persistent_group) {
  5404. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Ignore new_psk_cb on not-persistent GO");
  5405. return;
  5406. }
  5407. persistent = wpas_p2p_get_persistent(wpa_s->parent, NULL, ssid->ssid,
  5408. ssid->ssid_len);
  5409. if (!persistent) {
  5410. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not find persistent group information to store the new PSK");
  5411. return;
  5412. }
  5413. p = os_zalloc(sizeof(*p));
  5414. if (p == NULL)
  5415. return;
  5416. if (p2p_dev_addr) {
  5417. p->p2p = 1;
  5418. os_memcpy(p->addr, p2p_dev_addr, ETH_ALEN);
  5419. } else {
  5420. p->p2p = 0;
  5421. os_memcpy(p->addr, mac_addr, ETH_ALEN);
  5422. }
  5423. os_memcpy(p->psk, psk, psk_len);
  5424. if (dl_list_len(&persistent->psk_list) > P2P_MAX_STORED_CLIENTS) {
  5425. struct psk_list_entry *last;
  5426. last = dl_list_last(&persistent->psk_list,
  5427. struct psk_list_entry, list);
  5428. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove oldest PSK entry for "
  5429. MACSTR " (p2p=%u) to make room for a new one",
  5430. MAC2STR(last->addr), last->p2p);
  5431. dl_list_del(&last->list);
  5432. os_free(last);
  5433. }
  5434. wpas_p2p_remove_psk_entry(wpa_s->parent, persistent,
  5435. p2p_dev_addr ? p2p_dev_addr : mac_addr,
  5436. p2p_dev_addr == NULL);
  5437. if (p2p_dev_addr) {
  5438. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add new PSK for p2p_dev_addr="
  5439. MACSTR, MAC2STR(p2p_dev_addr));
  5440. } else {
  5441. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add new PSK for addr=" MACSTR,
  5442. MAC2STR(mac_addr));
  5443. }
  5444. dl_list_add(&persistent->psk_list, &p->list);
  5445. #ifndef CONFIG_NO_CONFIG_WRITE
  5446. if (wpa_s->parent->conf->update_config &&
  5447. wpa_config_write(wpa_s->parent->confname, wpa_s->parent->conf))
  5448. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  5449. #endif /* CONFIG_NO_CONFIG_WRITE */
  5450. }
  5451. static void wpas_p2p_remove_psk(struct wpa_supplicant *wpa_s,
  5452. struct wpa_ssid *s, const u8 *addr,
  5453. int iface_addr)
  5454. {
  5455. int res;
  5456. res = wpas_p2p_remove_psk_entry(wpa_s, s, addr, iface_addr);
  5457. if (res > 0) {
  5458. #ifndef CONFIG_NO_CONFIG_WRITE
  5459. if (wpa_s->conf->update_config &&
  5460. wpa_config_write(wpa_s->confname, wpa_s->conf))
  5461. wpa_dbg(wpa_s, MSG_DEBUG,
  5462. "P2P: Failed to update configuration");
  5463. #endif /* CONFIG_NO_CONFIG_WRITE */
  5464. }
  5465. }
  5466. static void wpas_p2p_remove_client_go(struct wpa_supplicant *wpa_s,
  5467. const u8 *peer, int iface_addr)
  5468. {
  5469. struct hostapd_data *hapd;
  5470. struct hostapd_wpa_psk *psk, *prev, *rem;
  5471. struct sta_info *sta;
  5472. if (wpa_s->ap_iface == NULL || wpa_s->current_ssid == NULL ||
  5473. wpa_s->current_ssid->mode != WPAS_MODE_P2P_GO)
  5474. return;
  5475. /* Remove per-station PSK entry */
  5476. hapd = wpa_s->ap_iface->bss[0];
  5477. prev = NULL;
  5478. psk = hapd->conf->ssid.wpa_psk;
  5479. while (psk) {
  5480. if ((iface_addr && os_memcmp(peer, psk->addr, ETH_ALEN) == 0) ||
  5481. (!iface_addr &&
  5482. os_memcmp(peer, psk->p2p_dev_addr, ETH_ALEN) == 0)) {
  5483. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove operating group PSK entry for "
  5484. MACSTR " iface_addr=%d",
  5485. MAC2STR(peer), iface_addr);
  5486. if (prev)
  5487. prev->next = psk->next;
  5488. else
  5489. hapd->conf->ssid.wpa_psk = psk->next;
  5490. rem = psk;
  5491. psk = psk->next;
  5492. os_free(rem);
  5493. } else {
  5494. prev = psk;
  5495. psk = psk->next;
  5496. }
  5497. }
  5498. /* Disconnect from group */
  5499. if (iface_addr)
  5500. sta = ap_get_sta(hapd, peer);
  5501. else
  5502. sta = ap_get_sta_p2p(hapd, peer);
  5503. if (sta) {
  5504. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Disconnect peer " MACSTR
  5505. " (iface_addr=%d) from group",
  5506. MAC2STR(peer), iface_addr);
  5507. hostapd_drv_sta_deauth(hapd, sta->addr,
  5508. WLAN_REASON_DEAUTH_LEAVING);
  5509. ap_sta_deauthenticate(hapd, sta, WLAN_REASON_DEAUTH_LEAVING);
  5510. }
  5511. }
  5512. void wpas_p2p_remove_client(struct wpa_supplicant *wpa_s, const u8 *peer,
  5513. int iface_addr)
  5514. {
  5515. struct wpa_ssid *s;
  5516. struct wpa_supplicant *w;
  5517. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove client " MACSTR, MAC2STR(peer));
  5518. /* Remove from any persistent group */
  5519. for (s = wpa_s->parent->conf->ssid; s; s = s->next) {
  5520. if (s->disabled != 2 || s->mode != WPAS_MODE_P2P_GO)
  5521. continue;
  5522. if (!iface_addr)
  5523. wpas_remove_persistent_peer(wpa_s, s, peer, 0);
  5524. wpas_p2p_remove_psk(wpa_s->parent, s, peer, iface_addr);
  5525. }
  5526. /* Remove from any operating group */
  5527. for (w = wpa_s->global->ifaces; w; w = w->next)
  5528. wpas_p2p_remove_client_go(w, peer, iface_addr);
  5529. }
  5530. static void wpas_p2p_psk_failure_removal(void *eloop_ctx, void *timeout_ctx)
  5531. {
  5532. struct wpa_supplicant *wpa_s = eloop_ctx;
  5533. wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_PSK_FAILURE);
  5534. }
  5535. int wpas_p2p_4way_hs_failed(struct wpa_supplicant *wpa_s)
  5536. {
  5537. struct wpa_ssid *ssid = wpa_s->current_ssid;
  5538. if (ssid == NULL || !ssid->p2p_group)
  5539. return 0;
  5540. if (wpa_s->p2p_last_4way_hs_fail &&
  5541. wpa_s->p2p_last_4way_hs_fail == ssid) {
  5542. u8 go_dev_addr[ETH_ALEN];
  5543. struct wpa_ssid *persistent;
  5544. if (wpas_p2p_persistent_group(wpa_s, go_dev_addr,
  5545. ssid->ssid,
  5546. ssid->ssid_len) <= 0) {
  5547. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not determine whether 4-way handshake failures were for a persistent group");
  5548. goto disconnect;
  5549. }
  5550. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Two 4-way handshake failures for a P2P group - go_dev_addr="
  5551. MACSTR, MAC2STR(go_dev_addr));
  5552. persistent = wpas_p2p_get_persistent(wpa_s->parent, go_dev_addr,
  5553. ssid->ssid,
  5554. ssid->ssid_len);
  5555. if (persistent == NULL || persistent->mode != WPAS_MODE_INFRA) {
  5556. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No matching persistent group stored");
  5557. goto disconnect;
  5558. }
  5559. wpa_msg_global(wpa_s->parent, MSG_INFO,
  5560. P2P_EVENT_PERSISTENT_PSK_FAIL "%d",
  5561. persistent->id);
  5562. disconnect:
  5563. wpa_s->p2p_last_4way_hs_fail = NULL;
  5564. /*
  5565. * Remove the group from a timeout to avoid issues with caller
  5566. * continuing to use the interface if this is on a P2P group
  5567. * interface.
  5568. */
  5569. eloop_register_timeout(0, 0, wpas_p2p_psk_failure_removal,
  5570. wpa_s, NULL);
  5571. return 1;
  5572. }
  5573. wpa_s->p2p_last_4way_hs_fail = ssid;
  5574. return 0;
  5575. }