p2p_supplicant.c 202 KB

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