p2p_supplicant.c 212 KB

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