p2p_supplicant.c 210 KB

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