p2p_supplicant.c 186 KB

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