p2p_supplicant.c 212 KB

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