p2p_supplicant.c 260 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209
  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 "ap/dfs.h"
  24. #include "eapol_supp/eapol_supp_sm.h"
  25. #include "rsn_supp/wpa.h"
  26. #include "wpa_supplicant_i.h"
  27. #include "driver_i.h"
  28. #include "ap.h"
  29. #include "config_ssid.h"
  30. #include "config.h"
  31. #include "notify.h"
  32. #include "scan.h"
  33. #include "bss.h"
  34. #include "offchannel.h"
  35. #include "wps_supplicant.h"
  36. #include "p2p_supplicant.h"
  37. #include "wifi_display.h"
  38. /*
  39. * How many times to try to scan to find the GO before giving up on join
  40. * request.
  41. */
  42. #define P2P_MAX_JOIN_SCAN_ATTEMPTS 10
  43. #define P2P_AUTO_PD_SCAN_ATTEMPTS 5
  44. /**
  45. * Defines time interval in seconds when a GO needs to evacuate a frequency that
  46. * it is currently using, but is no longer valid for P2P use cases.
  47. */
  48. #define P2P_GO_FREQ_CHANGE_TIME 5
  49. /**
  50. * Defines CSA parameters which are used when GO evacuates the no longer valid
  51. * channel (and if the driver supports channel switch).
  52. */
  53. #define P2P_GO_CSA_COUNT 7
  54. #define P2P_GO_CSA_BLOCK_TX 0
  55. #ifndef P2P_MAX_CLIENT_IDLE
  56. /*
  57. * How many seconds to try to reconnect to the GO when connection in P2P client
  58. * role has been lost.
  59. */
  60. #define P2P_MAX_CLIENT_IDLE 10
  61. #endif /* P2P_MAX_CLIENT_IDLE */
  62. #ifndef P2P_MAX_INITIAL_CONN_WAIT
  63. /*
  64. * How many seconds to wait for initial 4-way handshake to get completed after
  65. * WPS provisioning step or after the re-invocation of a persistent group on a
  66. * P2P Client.
  67. */
  68. #define P2P_MAX_INITIAL_CONN_WAIT 10
  69. #endif /* P2P_MAX_INITIAL_CONN_WAIT */
  70. #ifndef P2P_MAX_INITIAL_CONN_WAIT_GO
  71. /*
  72. * How many seconds to wait for initial 4-way handshake to get completed after
  73. * WPS provisioning step on the GO. This controls the extra time the P2P
  74. * operation is considered to be in progress (e.g., to delay other scans) after
  75. * WPS provisioning has been completed on the GO during group formation.
  76. */
  77. #define P2P_MAX_INITIAL_CONN_WAIT_GO 10
  78. #endif /* P2P_MAX_INITIAL_CONN_WAIT_GO */
  79. #ifndef P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE
  80. /*
  81. * How many seconds to wait for initial 4-way handshake to get completed after
  82. * re-invocation of a persistent group on the GO when the client is expected
  83. * to connect automatically (no user interaction).
  84. */
  85. #define P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE 15
  86. #endif /* P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE */
  87. #define P2P_MGMT_DEVICE_PREFIX "p2p-dev-"
  88. /*
  89. * How many seconds to wait to re-attempt to move GOs, in case previous attempt
  90. * was not possible.
  91. */
  92. #define P2P_RECONSIDER_GO_MOVE_DELAY 30
  93. enum p2p_group_removal_reason {
  94. P2P_GROUP_REMOVAL_UNKNOWN,
  95. P2P_GROUP_REMOVAL_SILENT,
  96. P2P_GROUP_REMOVAL_FORMATION_FAILED,
  97. P2P_GROUP_REMOVAL_REQUESTED,
  98. P2P_GROUP_REMOVAL_IDLE_TIMEOUT,
  99. P2P_GROUP_REMOVAL_UNAVAILABLE,
  100. P2P_GROUP_REMOVAL_GO_ENDING_SESSION,
  101. P2P_GROUP_REMOVAL_PSK_FAILURE,
  102. P2P_GROUP_REMOVAL_FREQ_CONFLICT,
  103. P2P_GROUP_REMOVAL_GO_LEAVE_CHANNEL
  104. };
  105. static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx);
  106. static struct wpa_supplicant *
  107. wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
  108. int go);
  109. static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s, int freq,
  110. const u8 *ssid, size_t ssid_len);
  111. static int wpas_p2p_setup_freqs(struct wpa_supplicant *wpa_s, int freq,
  112. int *force_freq, int *pref_freq, int go,
  113. unsigned int *pref_freq_list,
  114. unsigned int *num_pref_freq);
  115. static void wpas_p2p_join_scan_req(struct wpa_supplicant *wpa_s, int freq,
  116. const u8 *ssid, size_t ssid_len);
  117. static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx);
  118. static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
  119. const u8 *dev_addr, enum p2p_wps_method wps_method,
  120. int auto_join, int freq,
  121. const u8 *ssid, size_t ssid_len);
  122. static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s);
  123. static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s);
  124. static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx);
  125. static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s);
  126. static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
  127. void *timeout_ctx);
  128. static void wpas_p2p_group_freq_conflict(void *eloop_ctx, void *timeout_ctx);
  129. static int wpas_p2p_fallback_to_go_neg(struct wpa_supplicant *wpa_s,
  130. int group_added);
  131. static void wpas_p2p_stop_find_oper(struct wpa_supplicant *wpa_s);
  132. static void wpas_stop_listen(void *ctx);
  133. static void wpas_p2p_psk_failure_removal(void *eloop_ctx, void *timeout_ctx);
  134. static void wpas_p2p_group_deinit(struct wpa_supplicant *wpa_s);
  135. static int wpas_p2p_add_group_interface(struct wpa_supplicant *wpa_s,
  136. enum wpa_driver_if_type type);
  137. static void wpas_p2p_group_formation_failed(struct wpa_supplicant *wpa_s,
  138. int already_deleted);
  139. static void wpas_p2p_optimize_listen_channel(struct wpa_supplicant *wpa_s,
  140. struct wpa_used_freq_data *freqs,
  141. unsigned int num);
  142. static void wpas_p2p_move_go(void *eloop_ctx, void *timeout_ctx);
  143. static int wpas_p2p_go_is_peer_freq(struct wpa_supplicant *wpa_s, int freq);
  144. static void
  145. wpas_p2p_consider_moving_gos(struct wpa_supplicant *wpa_s,
  146. struct wpa_used_freq_data *freqs, unsigned int num,
  147. enum wpas_p2p_channel_update_trig trig);
  148. static void wpas_p2p_reconsider_moving_go(void *eloop_ctx, void *timeout_ctx);
  149. /*
  150. * Get the number of concurrent channels that the HW can operate, but that are
  151. * currently not in use by any of the wpa_supplicant interfaces.
  152. */
  153. static int wpas_p2p_num_unused_channels(struct wpa_supplicant *wpa_s)
  154. {
  155. int *freqs;
  156. int num, unused;
  157. freqs = os_calloc(wpa_s->num_multichan_concurrent, sizeof(int));
  158. if (!freqs)
  159. return -1;
  160. num = get_shared_radio_freqs(wpa_s, freqs,
  161. wpa_s->num_multichan_concurrent);
  162. os_free(freqs);
  163. unused = wpa_s->num_multichan_concurrent - num;
  164. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: num_unused_channels: %d", unused);
  165. return unused;
  166. }
  167. /*
  168. * Get the frequencies that are currently in use by one or more of the virtual
  169. * interfaces, and that are also valid for P2P operation.
  170. */
  171. static unsigned int
  172. wpas_p2p_valid_oper_freqs(struct wpa_supplicant *wpa_s,
  173. struct wpa_used_freq_data *p2p_freqs,
  174. unsigned int len)
  175. {
  176. struct wpa_used_freq_data *freqs;
  177. unsigned int num, i, j;
  178. freqs = os_calloc(wpa_s->num_multichan_concurrent,
  179. sizeof(struct wpa_used_freq_data));
  180. if (!freqs)
  181. return 0;
  182. num = get_shared_radio_freqs_data(wpa_s, freqs,
  183. wpa_s->num_multichan_concurrent);
  184. os_memset(p2p_freqs, 0, sizeof(struct wpa_used_freq_data) * len);
  185. for (i = 0, j = 0; i < num && j < len; i++) {
  186. if (p2p_supported_freq(wpa_s->global->p2p, freqs[i].freq))
  187. p2p_freqs[j++] = freqs[i];
  188. }
  189. os_free(freqs);
  190. dump_freq_data(wpa_s, "valid for P2P", p2p_freqs, j);
  191. return j;
  192. }
  193. static void wpas_p2p_set_own_freq_preference(struct wpa_supplicant *wpa_s,
  194. int freq)
  195. {
  196. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  197. return;
  198. /* Use the wpa_s used to control the P2P Device operation */
  199. wpa_s = wpa_s->global->p2p_init_wpa_s;
  200. if (wpa_s->conf->p2p_ignore_shared_freq &&
  201. freq > 0 && wpa_s->num_multichan_concurrent > 1 &&
  202. wpas_p2p_num_unused_channels(wpa_s) > 0) {
  203. wpa_printf(MSG_DEBUG, "P2P: Ignore own channel preference %d MHz due to p2p_ignore_shared_freq=1 configuration",
  204. freq);
  205. freq = 0;
  206. }
  207. p2p_set_own_freq_preference(wpa_s->global->p2p, freq);
  208. }
  209. static void wpas_p2p_scan_res_handler(struct wpa_supplicant *wpa_s,
  210. struct wpa_scan_results *scan_res)
  211. {
  212. size_t i;
  213. if (wpa_s->p2p_scan_work) {
  214. struct wpa_radio_work *work = wpa_s->p2p_scan_work;
  215. wpa_s->p2p_scan_work = NULL;
  216. radio_work_done(work);
  217. }
  218. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  219. return;
  220. wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS)",
  221. (int) scan_res->num);
  222. for (i = 0; i < scan_res->num; i++) {
  223. struct wpa_scan_res *bss = scan_res->res[i];
  224. struct os_reltime time_tmp_age, entry_ts;
  225. const u8 *ies;
  226. size_t ies_len;
  227. time_tmp_age.sec = bss->age / 1000;
  228. time_tmp_age.usec = (bss->age % 1000) * 1000;
  229. os_reltime_sub(&scan_res->fetch_time, &time_tmp_age, &entry_ts);
  230. ies = (const u8 *) (bss + 1);
  231. ies_len = bss->ie_len;
  232. if (bss->beacon_ie_len > 0 &&
  233. !wpa_scan_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE) &&
  234. wpa_scan_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE)) {
  235. wpa_printf(MSG_DEBUG, "P2P: Use P2P IE(s) from Beacon frame since no P2P IE(s) in Probe Response frames received for "
  236. MACSTR, MAC2STR(bss->bssid));
  237. ies = ies + ies_len;
  238. ies_len = bss->beacon_ie_len;
  239. }
  240. if (p2p_scan_res_handler(wpa_s->global->p2p, bss->bssid,
  241. bss->freq, &entry_ts, bss->level,
  242. ies, ies_len) > 0)
  243. break;
  244. }
  245. p2p_scan_res_handled(wpa_s->global->p2p);
  246. }
  247. static void wpas_p2p_trigger_scan_cb(struct wpa_radio_work *work, int deinit)
  248. {
  249. struct wpa_supplicant *wpa_s = work->wpa_s;
  250. struct wpa_driver_scan_params *params = work->ctx;
  251. int ret;
  252. if (deinit) {
  253. if (!work->started) {
  254. wpa_scan_free_params(params);
  255. return;
  256. }
  257. wpa_s->p2p_scan_work = NULL;
  258. return;
  259. }
  260. ret = wpa_drv_scan(wpa_s, params);
  261. wpa_scan_free_params(params);
  262. work->ctx = NULL;
  263. if (ret) {
  264. radio_work_done(work);
  265. p2p_notify_scan_trigger_status(wpa_s->global->p2p, ret);
  266. return;
  267. }
  268. p2p_notify_scan_trigger_status(wpa_s->global->p2p, ret);
  269. os_get_reltime(&wpa_s->scan_trigger_time);
  270. wpa_s->scan_res_handler = wpas_p2p_scan_res_handler;
  271. wpa_s->own_scan_requested = 1;
  272. wpa_s->p2p_scan_work = work;
  273. }
  274. static int wpas_p2p_search_social_channel(struct wpa_supplicant *wpa_s,
  275. int freq)
  276. {
  277. if (wpa_s->global->p2p_24ghz_social_channels &&
  278. (freq == 2412 || freq == 2437 || freq == 2462)) {
  279. /*
  280. * Search all social channels regardless of whether these have
  281. * been disabled for P2P operating channel use to avoid missing
  282. * peers.
  283. */
  284. return 1;
  285. }
  286. return p2p_supported_freq(wpa_s->global->p2p, freq);
  287. }
  288. static int wpas_p2p_scan(void *ctx, enum p2p_scan_type type, int freq,
  289. unsigned int num_req_dev_types,
  290. const u8 *req_dev_types, const u8 *dev_id, u16 pw_id)
  291. {
  292. struct wpa_supplicant *wpa_s = ctx;
  293. struct wpa_driver_scan_params *params = NULL;
  294. struct wpabuf *wps_ie, *ies;
  295. unsigned int num_channels = 0;
  296. int social_channels_freq[] = { 2412, 2437, 2462, 60480 };
  297. size_t ielen;
  298. u8 *n, i;
  299. unsigned int bands;
  300. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  301. return -1;
  302. if (wpa_s->p2p_scan_work) {
  303. wpa_dbg(wpa_s, MSG_INFO, "P2P: Reject scan trigger since one is already pending");
  304. return -1;
  305. }
  306. params = os_zalloc(sizeof(*params));
  307. if (params == NULL)
  308. return -1;
  309. /* P2P Wildcard SSID */
  310. params->num_ssids = 1;
  311. n = os_malloc(P2P_WILDCARD_SSID_LEN);
  312. if (n == NULL)
  313. goto fail;
  314. os_memcpy(n, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN);
  315. params->ssids[0].ssid = n;
  316. params->ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
  317. wpa_s->wps->dev.p2p = 1;
  318. wps_ie = wps_build_probe_req_ie(pw_id, &wpa_s->wps->dev,
  319. wpa_s->wps->uuid, WPS_REQ_ENROLLEE,
  320. num_req_dev_types, req_dev_types);
  321. if (wps_ie == NULL)
  322. goto fail;
  323. switch (type) {
  324. case P2P_SCAN_SOCIAL:
  325. params->freqs = os_calloc(ARRAY_SIZE(social_channels_freq) + 1,
  326. sizeof(int));
  327. if (params->freqs == NULL)
  328. goto fail;
  329. for (i = 0; i < ARRAY_SIZE(social_channels_freq); i++) {
  330. if (wpas_p2p_search_social_channel(
  331. wpa_s, social_channels_freq[i]))
  332. params->freqs[num_channels++] =
  333. social_channels_freq[i];
  334. }
  335. params->freqs[num_channels++] = 0;
  336. break;
  337. case P2P_SCAN_FULL:
  338. break;
  339. case P2P_SCAN_SPECIFIC:
  340. params->freqs = os_calloc(2, sizeof(int));
  341. if (params->freqs == NULL)
  342. goto fail;
  343. params->freqs[0] = freq;
  344. params->freqs[1] = 0;
  345. break;
  346. case P2P_SCAN_SOCIAL_PLUS_ONE:
  347. params->freqs = os_calloc(ARRAY_SIZE(social_channels_freq) + 2,
  348. sizeof(int));
  349. if (params->freqs == NULL)
  350. goto fail;
  351. for (i = 0; i < ARRAY_SIZE(social_channels_freq); i++) {
  352. if (wpas_p2p_search_social_channel(
  353. wpa_s, social_channels_freq[i]))
  354. params->freqs[num_channels++] =
  355. social_channels_freq[i];
  356. }
  357. if (p2p_supported_freq(wpa_s->global->p2p, freq))
  358. params->freqs[num_channels++] = freq;
  359. params->freqs[num_channels++] = 0;
  360. break;
  361. }
  362. ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
  363. ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
  364. if (ies == NULL) {
  365. wpabuf_free(wps_ie);
  366. goto fail;
  367. }
  368. wpabuf_put_buf(ies, wps_ie);
  369. wpabuf_free(wps_ie);
  370. bands = wpas_get_bands(wpa_s, params->freqs);
  371. p2p_scan_ie(wpa_s->global->p2p, ies, dev_id, bands);
  372. params->p2p_probe = 1;
  373. n = os_malloc(wpabuf_len(ies));
  374. if (n == NULL) {
  375. wpabuf_free(ies);
  376. goto fail;
  377. }
  378. os_memcpy(n, wpabuf_head(ies), wpabuf_len(ies));
  379. params->extra_ies = n;
  380. params->extra_ies_len = wpabuf_len(ies);
  381. wpabuf_free(ies);
  382. radio_remove_works(wpa_s, "p2p-scan", 0);
  383. if (radio_add_work(wpa_s, 0, "p2p-scan", 0, wpas_p2p_trigger_scan_cb,
  384. params) < 0)
  385. goto fail;
  386. return 0;
  387. fail:
  388. wpa_scan_free_params(params);
  389. return -1;
  390. }
  391. static enum wpa_driver_if_type wpas_p2p_if_type(int p2p_group_interface)
  392. {
  393. switch (p2p_group_interface) {
  394. case P2P_GROUP_INTERFACE_PENDING:
  395. return WPA_IF_P2P_GROUP;
  396. case P2P_GROUP_INTERFACE_GO:
  397. return WPA_IF_P2P_GO;
  398. case P2P_GROUP_INTERFACE_CLIENT:
  399. return WPA_IF_P2P_CLIENT;
  400. }
  401. return WPA_IF_P2P_GROUP;
  402. }
  403. static struct wpa_supplicant * wpas_get_p2p_group(struct wpa_supplicant *wpa_s,
  404. const u8 *ssid,
  405. size_t ssid_len, int *go)
  406. {
  407. struct wpa_ssid *s;
  408. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  409. for (s = wpa_s->conf->ssid; s; s = s->next) {
  410. if (s->disabled != 0 || !s->p2p_group ||
  411. s->ssid_len != ssid_len ||
  412. os_memcmp(ssid, s->ssid, ssid_len) != 0)
  413. continue;
  414. if (s->mode == WPAS_MODE_P2P_GO &&
  415. s != wpa_s->current_ssid)
  416. continue;
  417. if (go)
  418. *go = s->mode == WPAS_MODE_P2P_GO;
  419. return wpa_s;
  420. }
  421. }
  422. return NULL;
  423. }
  424. static void run_wpas_p2p_disconnect(void *eloop_ctx, void *timeout_ctx)
  425. {
  426. struct wpa_supplicant *wpa_s = eloop_ctx;
  427. wpa_printf(MSG_DEBUG,
  428. "P2P: Complete previously requested removal of %s",
  429. wpa_s->ifname);
  430. wpas_p2p_disconnect(wpa_s);
  431. }
  432. static int wpas_p2p_disconnect_safely(struct wpa_supplicant *wpa_s,
  433. struct wpa_supplicant *calling_wpa_s)
  434. {
  435. if (calling_wpa_s == wpa_s && wpa_s &&
  436. wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE) {
  437. /*
  438. * The calling wpa_s instance is going to be removed. Do that
  439. * from an eloop callback to keep the instance available until
  440. * the caller has returned. This my be needed, e.g., to provide
  441. * control interface responses on the per-interface socket.
  442. */
  443. if (eloop_register_timeout(0, 0, run_wpas_p2p_disconnect,
  444. wpa_s, NULL) < 0)
  445. return -1;
  446. return 0;
  447. }
  448. return wpas_p2p_disconnect(wpa_s);
  449. }
  450. /* Determine total number of clients in active groups where we are the GO */
  451. static unsigned int p2p_group_go_member_count(struct wpa_supplicant *wpa_s)
  452. {
  453. unsigned int count = 0;
  454. struct wpa_ssid *s;
  455. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  456. for (s = wpa_s->conf->ssid; s; s = s->next) {
  457. wpa_printf(MSG_DEBUG,
  458. "P2P: sup:%p ssid:%p disabled:%d p2p:%d mode:%d",
  459. wpa_s, s, s->disabled, s->p2p_group,
  460. s->mode);
  461. if (!s->disabled && s->p2p_group &&
  462. s->mode == WPAS_MODE_P2P_GO) {
  463. count += p2p_get_group_num_members(
  464. wpa_s->p2p_group);
  465. }
  466. }
  467. }
  468. return count;
  469. }
  470. static unsigned int p2p_is_active_persistent_group(struct wpa_supplicant *wpa_s)
  471. {
  472. return !wpa_s->p2p_mgmt && wpa_s->current_ssid &&
  473. !wpa_s->current_ssid->disabled &&
  474. wpa_s->current_ssid->p2p_group &&
  475. wpa_s->current_ssid->p2p_persistent_group;
  476. }
  477. static unsigned int p2p_is_active_persistent_go(struct wpa_supplicant *wpa_s)
  478. {
  479. return p2p_is_active_persistent_group(wpa_s) &&
  480. wpa_s->current_ssid->mode == WPAS_MODE_P2P_GO;
  481. }
  482. /* Find an interface for a P2P group where we are the GO */
  483. static struct wpa_supplicant *
  484. wpas_p2p_get_go_group(struct wpa_supplicant *wpa_s)
  485. {
  486. struct wpa_supplicant *save = NULL;
  487. if (!wpa_s)
  488. return NULL;
  489. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  490. if (!p2p_is_active_persistent_go(wpa_s))
  491. continue;
  492. /* Prefer a group with connected clients */
  493. if (p2p_get_group_num_members(wpa_s->p2p_group))
  494. return wpa_s;
  495. save = wpa_s;
  496. }
  497. /* No group with connected clients, so pick the one without (if any) */
  498. return save;
  499. }
  500. static unsigned int p2p_is_active_persistent_cli(struct wpa_supplicant *wpa_s)
  501. {
  502. return p2p_is_active_persistent_group(wpa_s) &&
  503. wpa_s->current_ssid->mode == WPAS_MODE_INFRA;
  504. }
  505. /* Find an interface for a P2P group where we are the P2P Client */
  506. static struct wpa_supplicant *
  507. wpas_p2p_get_cli_group(struct wpa_supplicant *wpa_s)
  508. {
  509. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  510. if (p2p_is_active_persistent_cli(wpa_s))
  511. return wpa_s;
  512. }
  513. return NULL;
  514. }
  515. /* Find a persistent group where we are the GO */
  516. static struct wpa_ssid *
  517. wpas_p2p_get_persistent_go(struct wpa_supplicant *wpa_s)
  518. {
  519. struct wpa_ssid *s;
  520. for (s = wpa_s->conf->ssid; s; s = s->next) {
  521. if (s->disabled == 2 && s->mode == WPAS_MODE_P2P_GO)
  522. return s;
  523. }
  524. return NULL;
  525. }
  526. static u8 p2ps_group_capability(void *ctx, u8 incoming, u8 role,
  527. unsigned int *force_freq,
  528. unsigned int *pref_freq)
  529. {
  530. struct wpa_supplicant *wpa_s = ctx;
  531. struct wpa_ssid *s;
  532. u8 conncap = P2PS_SETUP_NONE;
  533. unsigned int owned_members = 0;
  534. struct wpa_supplicant *go_wpa_s, *cli_wpa_s;
  535. struct wpa_ssid *persistent_go;
  536. int p2p_no_group_iface;
  537. unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS], size;
  538. wpa_printf(MSG_DEBUG, "P2P: Conncap - in:%d role:%d", incoming, role);
  539. if (force_freq)
  540. *force_freq = 0;
  541. if (pref_freq)
  542. *pref_freq = 0;
  543. size = P2P_MAX_PREF_CHANNELS;
  544. if (force_freq && pref_freq &&
  545. !wpas_p2p_setup_freqs(wpa_s, 0, (int *) force_freq,
  546. (int *) pref_freq, 0, pref_freq_list, &size))
  547. wpas_p2p_set_own_freq_preference(wpa_s,
  548. *force_freq ? *force_freq :
  549. *pref_freq);
  550. /*
  551. * For non-concurrent capable devices:
  552. * If persistent_go, then no new.
  553. * If GO, then no client.
  554. * If client, then no GO.
  555. */
  556. go_wpa_s = wpas_p2p_get_go_group(wpa_s);
  557. if (go_wpa_s)
  558. owned_members = p2p_get_group_num_members(go_wpa_s->p2p_group);
  559. persistent_go = wpas_p2p_get_persistent_go(wpa_s);
  560. p2p_no_group_iface = !wpas_p2p_create_iface(wpa_s);
  561. cli_wpa_s = wpas_p2p_get_cli_group(wpa_s);
  562. wpa_printf(MSG_DEBUG,
  563. "P2P: GO(iface)=%p members=%u CLI(iface)=%p persistent(ssid)=%p",
  564. go_wpa_s, owned_members, cli_wpa_s, persistent_go);
  565. /* If not concurrent, restrict our choices */
  566. if (p2p_no_group_iface) {
  567. wpa_printf(MSG_DEBUG, "P2P: p2p_no_group_iface");
  568. if (cli_wpa_s)
  569. return P2PS_SETUP_NONE;
  570. if (go_wpa_s) {
  571. if (role == P2PS_SETUP_CLIENT ||
  572. incoming == P2PS_SETUP_GROUP_OWNER ||
  573. p2p_client_limit_reached(go_wpa_s->p2p_group))
  574. return P2PS_SETUP_NONE;
  575. return P2PS_SETUP_GROUP_OWNER;
  576. }
  577. if (persistent_go) {
  578. if (role == P2PS_SETUP_NONE || role == P2PS_SETUP_NEW) {
  579. if (!incoming)
  580. return P2PS_SETUP_GROUP_OWNER |
  581. P2PS_SETUP_CLIENT;
  582. if (incoming == P2PS_SETUP_NEW) {
  583. u8 r;
  584. if (os_get_random(&r, sizeof(r)) < 0 ||
  585. (r & 1))
  586. return P2PS_SETUP_CLIENT;
  587. return P2PS_SETUP_GROUP_OWNER;
  588. }
  589. }
  590. }
  591. }
  592. /* If a required role has been specified, handle it here */
  593. if (role && role != P2PS_SETUP_NEW) {
  594. switch (incoming) {
  595. case P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_NEW:
  596. case P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_CLIENT:
  597. /*
  598. * Peer has an active GO, so if the role allows it and
  599. * we do not have any active roles, become client.
  600. */
  601. if ((role & P2PS_SETUP_CLIENT) && !go_wpa_s &&
  602. !cli_wpa_s)
  603. return P2PS_SETUP_CLIENT;
  604. /* fall through */
  605. case P2PS_SETUP_NONE:
  606. case P2PS_SETUP_NEW:
  607. conncap = role;
  608. goto grp_owner;
  609. case P2PS_SETUP_GROUP_OWNER:
  610. /*
  611. * Must be a complimentary role - cannot be a client to
  612. * more than one peer.
  613. */
  614. if (incoming == role || cli_wpa_s)
  615. return P2PS_SETUP_NONE;
  616. return P2PS_SETUP_CLIENT;
  617. case P2PS_SETUP_CLIENT:
  618. /* Must be a complimentary role */
  619. if (incoming != role) {
  620. conncap = P2PS_SETUP_GROUP_OWNER;
  621. goto grp_owner;
  622. }
  623. default:
  624. return P2PS_SETUP_NONE;
  625. }
  626. }
  627. /*
  628. * For now, we only will support ownership of one group, and being a
  629. * client of one group. Therefore, if we have either an existing GO
  630. * group, or an existing client group, we will not do a new GO
  631. * negotiation, but rather try to re-use the existing groups.
  632. */
  633. switch (incoming) {
  634. case P2PS_SETUP_NONE:
  635. case P2PS_SETUP_NEW:
  636. if (cli_wpa_s)
  637. conncap = P2PS_SETUP_GROUP_OWNER;
  638. else if (!owned_members)
  639. conncap = P2PS_SETUP_NEW;
  640. else if (incoming == P2PS_SETUP_NONE)
  641. conncap = P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_CLIENT;
  642. else
  643. conncap = P2PS_SETUP_CLIENT;
  644. break;
  645. case P2PS_SETUP_CLIENT:
  646. conncap = P2PS_SETUP_GROUP_OWNER;
  647. break;
  648. case P2PS_SETUP_GROUP_OWNER:
  649. if (!cli_wpa_s)
  650. conncap = P2PS_SETUP_CLIENT;
  651. break;
  652. case P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_NEW:
  653. case P2PS_SETUP_GROUP_OWNER | P2PS_SETUP_CLIENT:
  654. if (cli_wpa_s)
  655. conncap = P2PS_SETUP_GROUP_OWNER;
  656. else {
  657. u8 r;
  658. if (os_get_random(&r, sizeof(r)) < 0 ||
  659. (r & 1))
  660. conncap = P2PS_SETUP_CLIENT;
  661. else
  662. conncap = P2PS_SETUP_GROUP_OWNER;
  663. }
  664. break;
  665. default:
  666. return P2PS_SETUP_NONE;
  667. }
  668. grp_owner:
  669. if ((conncap & P2PS_SETUP_GROUP_OWNER) ||
  670. (!incoming && (conncap & P2PS_SETUP_NEW))) {
  671. if (go_wpa_s && p2p_client_limit_reached(go_wpa_s->p2p_group))
  672. conncap &= ~P2PS_SETUP_GROUP_OWNER;
  673. s = wpas_p2p_get_persistent_go(wpa_s);
  674. if (!s && !go_wpa_s && p2p_no_group_iface) {
  675. p2p_set_intended_addr(wpa_s->global->p2p,
  676. wpa_s->p2p_mgmt ?
  677. wpa_s->parent->own_addr :
  678. wpa_s->own_addr);
  679. } else if (!s && !go_wpa_s) {
  680. if (wpas_p2p_add_group_interface(wpa_s,
  681. WPA_IF_P2P_GO) < 0) {
  682. wpa_printf(MSG_ERROR,
  683. "P2P: Failed to allocate a new interface for the group");
  684. return P2PS_SETUP_NONE;
  685. }
  686. wpa_s->global->pending_group_iface_for_p2ps = 1;
  687. p2p_set_intended_addr(wpa_s->global->p2p,
  688. wpa_s->pending_interface_addr);
  689. }
  690. }
  691. return conncap;
  692. }
  693. static int wpas_p2p_group_delete(struct wpa_supplicant *wpa_s,
  694. enum p2p_group_removal_reason removal_reason)
  695. {
  696. struct wpa_ssid *ssid;
  697. char *gtype;
  698. const char *reason;
  699. ssid = wpa_s->current_ssid;
  700. if (ssid == NULL) {
  701. /*
  702. * The current SSID was not known, but there may still be a
  703. * pending P2P group interface waiting for provisioning or a
  704. * P2P group that is trying to reconnect.
  705. */
  706. ssid = wpa_s->conf->ssid;
  707. while (ssid) {
  708. if (ssid->p2p_group && ssid->disabled != 2)
  709. break;
  710. ssid = ssid->next;
  711. }
  712. if (ssid == NULL &&
  713. wpa_s->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)
  714. {
  715. wpa_printf(MSG_ERROR, "P2P: P2P group interface "
  716. "not found");
  717. return -1;
  718. }
  719. }
  720. if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO)
  721. gtype = "GO";
  722. else if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT ||
  723. (ssid && ssid->mode == WPAS_MODE_INFRA)) {
  724. wpa_s->reassociate = 0;
  725. wpa_s->disconnected = 1;
  726. gtype = "client";
  727. } else
  728. gtype = "GO";
  729. if (removal_reason != P2P_GROUP_REMOVAL_SILENT && ssid)
  730. wpas_notify_p2p_group_removed(wpa_s, ssid, gtype);
  731. if (os_strcmp(gtype, "client") == 0) {
  732. wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  733. if (eloop_is_timeout_registered(wpas_p2p_psk_failure_removal,
  734. wpa_s, NULL)) {
  735. wpa_printf(MSG_DEBUG,
  736. "P2P: PSK failure removal was scheduled, so use PSK failure as reason for group removal");
  737. removal_reason = P2P_GROUP_REMOVAL_PSK_FAILURE;
  738. eloop_cancel_timeout(wpas_p2p_psk_failure_removal,
  739. wpa_s, NULL);
  740. }
  741. }
  742. if (wpa_s->cross_connect_in_use) {
  743. wpa_s->cross_connect_in_use = 0;
  744. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  745. P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
  746. wpa_s->ifname, wpa_s->cross_connect_uplink);
  747. }
  748. switch (removal_reason) {
  749. case P2P_GROUP_REMOVAL_REQUESTED:
  750. reason = " reason=REQUESTED";
  751. break;
  752. case P2P_GROUP_REMOVAL_FORMATION_FAILED:
  753. reason = " reason=FORMATION_FAILED";
  754. break;
  755. case P2P_GROUP_REMOVAL_IDLE_TIMEOUT:
  756. reason = " reason=IDLE";
  757. break;
  758. case P2P_GROUP_REMOVAL_UNAVAILABLE:
  759. reason = " reason=UNAVAILABLE";
  760. break;
  761. case P2P_GROUP_REMOVAL_GO_ENDING_SESSION:
  762. reason = " reason=GO_ENDING_SESSION";
  763. break;
  764. case P2P_GROUP_REMOVAL_PSK_FAILURE:
  765. reason = " reason=PSK_FAILURE";
  766. break;
  767. case P2P_GROUP_REMOVAL_FREQ_CONFLICT:
  768. reason = " reason=FREQ_CONFLICT";
  769. break;
  770. default:
  771. reason = "";
  772. break;
  773. }
  774. if (removal_reason != P2P_GROUP_REMOVAL_SILENT) {
  775. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  776. P2P_EVENT_GROUP_REMOVED "%s %s%s",
  777. wpa_s->ifname, gtype, reason);
  778. }
  779. if (eloop_cancel_timeout(wpas_p2p_group_freq_conflict, wpa_s, NULL) > 0)
  780. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group freq_conflict timeout");
  781. if (eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
  782. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
  783. if (eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  784. wpa_s->p2pdev, NULL) > 0) {
  785. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group formation "
  786. "timeout");
  787. wpa_s->p2p_in_provisioning = 0;
  788. wpas_p2p_group_formation_failed(wpa_s, 1);
  789. }
  790. wpa_s->p2p_in_invitation = 0;
  791. eloop_cancel_timeout(wpas_p2p_move_go, wpa_s, NULL);
  792. eloop_cancel_timeout(wpas_p2p_reconsider_moving_go, wpa_s, NULL);
  793. /*
  794. * Make sure wait for the first client does not remain active after the
  795. * group has been removed.
  796. */
  797. wpa_s->global->p2p_go_wait_client.sec = 0;
  798. if (wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE) {
  799. struct wpa_global *global;
  800. char *ifname;
  801. enum wpa_driver_if_type type;
  802. wpa_printf(MSG_DEBUG, "P2P: Remove group interface %s",
  803. wpa_s->ifname);
  804. global = wpa_s->global;
  805. ifname = os_strdup(wpa_s->ifname);
  806. type = wpas_p2p_if_type(wpa_s->p2p_group_interface);
  807. eloop_cancel_timeout(run_wpas_p2p_disconnect, wpa_s, NULL);
  808. wpa_supplicant_remove_iface(wpa_s->global, wpa_s, 0);
  809. wpa_s = global->ifaces;
  810. if (wpa_s && ifname)
  811. wpa_drv_if_remove(wpa_s, type, ifname);
  812. os_free(ifname);
  813. return 1;
  814. }
  815. /*
  816. * The primary interface was used for P2P group operations, so
  817. * need to reset its p2pdev.
  818. */
  819. wpa_s->p2pdev = wpa_s->parent;
  820. if (!wpa_s->p2p_go_group_formation_completed) {
  821. wpa_s->global->p2p_group_formation = NULL;
  822. wpa_s->p2p_in_provisioning = 0;
  823. }
  824. wpa_s->show_group_started = 0;
  825. os_free(wpa_s->go_params);
  826. wpa_s->go_params = NULL;
  827. os_free(wpa_s->p2p_group_common_freqs);
  828. wpa_s->p2p_group_common_freqs = NULL;
  829. wpa_s->p2p_group_common_freqs_num = 0;
  830. wpa_s->waiting_presence_resp = 0;
  831. wpa_printf(MSG_DEBUG, "P2P: Remove temporary group network");
  832. if (ssid && (ssid->p2p_group ||
  833. ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION ||
  834. (ssid->key_mgmt & WPA_KEY_MGMT_WPS))) {
  835. int id = ssid->id;
  836. if (ssid == wpa_s->current_ssid) {
  837. wpa_sm_set_config(wpa_s->wpa, NULL);
  838. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  839. wpa_s->current_ssid = NULL;
  840. }
  841. /*
  842. * Networks objects created during any P2P activities are not
  843. * exposed out as they might/will confuse certain non-P2P aware
  844. * applications since these network objects won't behave like
  845. * regular ones.
  846. *
  847. * Likewise, we don't send out network removed signals for such
  848. * network objects.
  849. */
  850. wpa_config_remove_network(wpa_s->conf, id);
  851. wpa_supplicant_clear_status(wpa_s);
  852. wpa_supplicant_cancel_sched_scan(wpa_s);
  853. } else {
  854. wpa_printf(MSG_DEBUG, "P2P: Temporary group network not "
  855. "found");
  856. }
  857. if (wpa_s->ap_iface)
  858. wpa_supplicant_ap_deinit(wpa_s);
  859. else
  860. wpa_drv_deinit_p2p_cli(wpa_s);
  861. os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
  862. return 0;
  863. }
  864. static int wpas_p2p_persistent_group(struct wpa_supplicant *wpa_s,
  865. u8 *go_dev_addr,
  866. const u8 *ssid, size_t ssid_len)
  867. {
  868. struct wpa_bss *bss;
  869. const u8 *bssid;
  870. struct wpabuf *p2p;
  871. u8 group_capab;
  872. const u8 *addr;
  873. if (wpa_s->go_params)
  874. bssid = wpa_s->go_params->peer_interface_addr;
  875. else
  876. bssid = wpa_s->bssid;
  877. bss = wpa_bss_get(wpa_s, bssid, ssid, ssid_len);
  878. if (bss == NULL && wpa_s->go_params &&
  879. !is_zero_ether_addr(wpa_s->go_params->peer_device_addr))
  880. bss = wpa_bss_get_p2p_dev_addr(
  881. wpa_s, wpa_s->go_params->peer_device_addr);
  882. if (bss == NULL) {
  883. u8 iface_addr[ETH_ALEN];
  884. if (p2p_get_interface_addr(wpa_s->global->p2p, bssid,
  885. iface_addr) == 0)
  886. bss = wpa_bss_get(wpa_s, iface_addr, ssid, ssid_len);
  887. }
  888. if (bss == NULL) {
  889. wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
  890. "group is persistent - BSS " MACSTR " not found",
  891. MAC2STR(bssid));
  892. return 0;
  893. }
  894. p2p = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
  895. if (p2p == NULL)
  896. p2p = wpa_bss_get_vendor_ie_multi_beacon(bss,
  897. P2P_IE_VENDOR_TYPE);
  898. if (p2p == NULL) {
  899. wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
  900. "group is persistent - BSS " MACSTR
  901. " did not include P2P IE", MAC2STR(bssid));
  902. wpa_hexdump(MSG_DEBUG, "P2P: Probe Response IEs",
  903. (u8 *) (bss + 1), bss->ie_len);
  904. wpa_hexdump(MSG_DEBUG, "P2P: Beacon IEs",
  905. ((u8 *) bss + 1) + bss->ie_len,
  906. bss->beacon_ie_len);
  907. return 0;
  908. }
  909. group_capab = p2p_get_group_capab(p2p);
  910. addr = p2p_get_go_dev_addr(p2p);
  911. wpa_printf(MSG_DEBUG, "P2P: Checking whether group is persistent: "
  912. "group_capab=0x%x", group_capab);
  913. if (addr) {
  914. os_memcpy(go_dev_addr, addr, ETH_ALEN);
  915. wpa_printf(MSG_DEBUG, "P2P: GO Device Address " MACSTR,
  916. MAC2STR(addr));
  917. } else
  918. os_memset(go_dev_addr, 0, ETH_ALEN);
  919. wpabuf_free(p2p);
  920. wpa_printf(MSG_DEBUG, "P2P: BSS " MACSTR " group_capab=0x%x "
  921. "go_dev_addr=" MACSTR,
  922. MAC2STR(bssid), group_capab, MAC2STR(go_dev_addr));
  923. return group_capab & P2P_GROUP_CAPAB_PERSISTENT_GROUP;
  924. }
  925. static int wpas_p2p_store_persistent_group(struct wpa_supplicant *wpa_s,
  926. struct wpa_ssid *ssid,
  927. const u8 *go_dev_addr)
  928. {
  929. struct wpa_ssid *s;
  930. int changed = 0;
  931. wpa_printf(MSG_DEBUG, "P2P: Storing credentials for a persistent "
  932. "group (GO Dev Addr " MACSTR ")", MAC2STR(go_dev_addr));
  933. for (s = wpa_s->conf->ssid; s; s = s->next) {
  934. if (s->disabled == 2 &&
  935. os_memcmp(go_dev_addr, s->bssid, ETH_ALEN) == 0 &&
  936. s->ssid_len == ssid->ssid_len &&
  937. os_memcmp(ssid->ssid, s->ssid, ssid->ssid_len) == 0)
  938. break;
  939. }
  940. if (s) {
  941. wpa_printf(MSG_DEBUG, "P2P: Update existing persistent group "
  942. "entry");
  943. if (ssid->passphrase && !s->passphrase)
  944. changed = 1;
  945. else if (ssid->passphrase && s->passphrase &&
  946. os_strcmp(ssid->passphrase, s->passphrase) != 0)
  947. changed = 1;
  948. } else {
  949. wpa_printf(MSG_DEBUG, "P2P: Create a new persistent group "
  950. "entry");
  951. changed = 1;
  952. s = wpa_config_add_network(wpa_s->conf);
  953. if (s == NULL)
  954. return -1;
  955. /*
  956. * Instead of network_added we emit persistent_group_added
  957. * notification. Also to keep the defense checks in
  958. * persistent_group obj registration method, we set the
  959. * relevant flags in s to designate it as a persistent group.
  960. */
  961. s->p2p_group = 1;
  962. s->p2p_persistent_group = 1;
  963. wpas_notify_persistent_group_added(wpa_s, s);
  964. wpa_config_set_network_defaults(s);
  965. }
  966. s->p2p_group = 1;
  967. s->p2p_persistent_group = 1;
  968. s->disabled = 2;
  969. s->bssid_set = 1;
  970. os_memcpy(s->bssid, go_dev_addr, ETH_ALEN);
  971. s->mode = ssid->mode;
  972. s->auth_alg = WPA_AUTH_ALG_OPEN;
  973. s->key_mgmt = WPA_KEY_MGMT_PSK;
  974. s->proto = WPA_PROTO_RSN;
  975. s->pbss = ssid->pbss;
  976. s->pairwise_cipher = ssid->pbss ? WPA_CIPHER_GCMP : WPA_CIPHER_CCMP;
  977. s->export_keys = 1;
  978. if (ssid->passphrase) {
  979. os_free(s->passphrase);
  980. s->passphrase = os_strdup(ssid->passphrase);
  981. }
  982. if (ssid->psk_set) {
  983. s->psk_set = 1;
  984. os_memcpy(s->psk, ssid->psk, 32);
  985. }
  986. if (s->passphrase && !s->psk_set)
  987. wpa_config_update_psk(s);
  988. if (s->ssid == NULL || s->ssid_len < ssid->ssid_len) {
  989. os_free(s->ssid);
  990. s->ssid = os_malloc(ssid->ssid_len);
  991. }
  992. if (s->ssid) {
  993. s->ssid_len = ssid->ssid_len;
  994. os_memcpy(s->ssid, ssid->ssid, s->ssid_len);
  995. }
  996. if (ssid->mode == WPAS_MODE_P2P_GO && wpa_s->global->add_psk) {
  997. dl_list_add(&s->psk_list, &wpa_s->global->add_psk->list);
  998. wpa_s->global->add_psk = NULL;
  999. changed = 1;
  1000. }
  1001. if (changed && wpa_s->conf->update_config &&
  1002. wpa_config_write(wpa_s->confname, wpa_s->conf)) {
  1003. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  1004. }
  1005. return s->id;
  1006. }
  1007. static void wpas_p2p_add_persistent_group_client(struct wpa_supplicant *wpa_s,
  1008. const u8 *addr)
  1009. {
  1010. struct wpa_ssid *ssid, *s;
  1011. u8 *n;
  1012. size_t i;
  1013. int found = 0;
  1014. struct wpa_supplicant *p2p_wpa_s = wpa_s->global->p2p_init_wpa_s;
  1015. ssid = wpa_s->current_ssid;
  1016. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
  1017. !ssid->p2p_persistent_group)
  1018. return;
  1019. for (s = p2p_wpa_s->conf->ssid; s; s = s->next) {
  1020. if (s->disabled != 2 || s->mode != WPAS_MODE_P2P_GO)
  1021. continue;
  1022. if (s->ssid_len == ssid->ssid_len &&
  1023. os_memcmp(s->ssid, ssid->ssid, s->ssid_len) == 0)
  1024. break;
  1025. }
  1026. if (s == NULL)
  1027. return;
  1028. for (i = 0; s->p2p_client_list && i < s->num_p2p_clients; i++) {
  1029. if (os_memcmp(s->p2p_client_list + i * 2 * ETH_ALEN, addr,
  1030. ETH_ALEN) != 0)
  1031. continue;
  1032. if (i == s->num_p2p_clients - 1)
  1033. return; /* already the most recent entry */
  1034. /* move the entry to mark it most recent */
  1035. os_memmove(s->p2p_client_list + i * 2 * ETH_ALEN,
  1036. s->p2p_client_list + (i + 1) * 2 * ETH_ALEN,
  1037. (s->num_p2p_clients - i - 1) * 2 * ETH_ALEN);
  1038. os_memcpy(s->p2p_client_list +
  1039. (s->num_p2p_clients - 1) * 2 * ETH_ALEN, addr,
  1040. ETH_ALEN);
  1041. os_memset(s->p2p_client_list +
  1042. (s->num_p2p_clients - 1) * 2 * ETH_ALEN + ETH_ALEN,
  1043. 0xff, ETH_ALEN);
  1044. found = 1;
  1045. break;
  1046. }
  1047. if (!found && s->num_p2p_clients < P2P_MAX_STORED_CLIENTS) {
  1048. n = os_realloc_array(s->p2p_client_list,
  1049. s->num_p2p_clients + 1, 2 * ETH_ALEN);
  1050. if (n == NULL)
  1051. return;
  1052. os_memcpy(n + s->num_p2p_clients * 2 * ETH_ALEN, addr,
  1053. ETH_ALEN);
  1054. os_memset(n + s->num_p2p_clients * 2 * ETH_ALEN + ETH_ALEN,
  1055. 0xff, ETH_ALEN);
  1056. s->p2p_client_list = n;
  1057. s->num_p2p_clients++;
  1058. } else if (!found && s->p2p_client_list) {
  1059. /* Not enough room for an additional entry - drop the oldest
  1060. * entry */
  1061. os_memmove(s->p2p_client_list,
  1062. s->p2p_client_list + 2 * ETH_ALEN,
  1063. (s->num_p2p_clients - 1) * 2 * ETH_ALEN);
  1064. os_memcpy(s->p2p_client_list +
  1065. (s->num_p2p_clients - 1) * 2 * ETH_ALEN,
  1066. addr, ETH_ALEN);
  1067. os_memset(s->p2p_client_list +
  1068. (s->num_p2p_clients - 1) * 2 * ETH_ALEN + ETH_ALEN,
  1069. 0xff, ETH_ALEN);
  1070. }
  1071. if (p2p_wpa_s->conf->update_config &&
  1072. wpa_config_write(p2p_wpa_s->confname, p2p_wpa_s->conf))
  1073. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  1074. }
  1075. static void wpas_p2p_group_started(struct wpa_supplicant *wpa_s,
  1076. int go, struct wpa_ssid *ssid, int freq,
  1077. const u8 *psk, const char *passphrase,
  1078. const u8 *go_dev_addr, int persistent,
  1079. const char *extra)
  1080. {
  1081. const char *ssid_txt;
  1082. char psk_txt[65];
  1083. if (psk)
  1084. wpa_snprintf_hex(psk_txt, sizeof(psk_txt), psk, 32);
  1085. else
  1086. psk_txt[0] = '\0';
  1087. if (ssid)
  1088. ssid_txt = wpa_ssid_txt(ssid->ssid, ssid->ssid_len);
  1089. else
  1090. ssid_txt = "";
  1091. if (passphrase && passphrase[0] == '\0')
  1092. passphrase = NULL;
  1093. /*
  1094. * Include PSK/passphrase only in the control interface message and
  1095. * leave it out from the debug log entry.
  1096. */
  1097. wpa_msg_global_ctrl(wpa_s->p2pdev, MSG_INFO,
  1098. P2P_EVENT_GROUP_STARTED
  1099. "%s %s ssid=\"%s\" freq=%d%s%s%s%s%s go_dev_addr="
  1100. MACSTR "%s%s",
  1101. wpa_s->ifname, go ? "GO" : "client", ssid_txt, freq,
  1102. psk ? " psk=" : "", psk_txt,
  1103. passphrase ? " passphrase=\"" : "",
  1104. passphrase ? passphrase : "",
  1105. passphrase ? "\"" : "",
  1106. MAC2STR(go_dev_addr),
  1107. persistent ? " [PERSISTENT]" : "", extra);
  1108. wpa_printf(MSG_INFO, P2P_EVENT_GROUP_STARTED
  1109. "%s %s ssid=\"%s\" freq=%d go_dev_addr=" MACSTR "%s%s",
  1110. wpa_s->ifname, go ? "GO" : "client", ssid_txt, freq,
  1111. MAC2STR(go_dev_addr), persistent ? " [PERSISTENT]" : "",
  1112. extra);
  1113. }
  1114. static void wpas_group_formation_completed(struct wpa_supplicant *wpa_s,
  1115. int success, int already_deleted)
  1116. {
  1117. struct wpa_ssid *ssid;
  1118. int client;
  1119. int persistent;
  1120. u8 go_dev_addr[ETH_ALEN];
  1121. int network_id = -1;
  1122. /*
  1123. * This callback is likely called for the main interface. Update wpa_s
  1124. * to use the group interface if a new interface was created for the
  1125. * group.
  1126. */
  1127. if (wpa_s->global->p2p_group_formation)
  1128. wpa_s = wpa_s->global->p2p_group_formation;
  1129. if (wpa_s->p2p_go_group_formation_completed) {
  1130. wpa_s->global->p2p_group_formation = NULL;
  1131. wpa_s->p2p_in_provisioning = 0;
  1132. }
  1133. wpa_s->p2p_in_invitation = 0;
  1134. wpa_s->group_formation_reported = 1;
  1135. if (!success) {
  1136. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  1137. P2P_EVENT_GROUP_FORMATION_FAILURE);
  1138. wpas_notify_p2p_group_formation_failure(wpa_s, "");
  1139. if (already_deleted)
  1140. return;
  1141. wpas_p2p_group_delete(wpa_s,
  1142. P2P_GROUP_REMOVAL_FORMATION_FAILED);
  1143. return;
  1144. }
  1145. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  1146. P2P_EVENT_GROUP_FORMATION_SUCCESS);
  1147. ssid = wpa_s->current_ssid;
  1148. if (ssid && ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
  1149. ssid->mode = WPAS_MODE_P2P_GO;
  1150. p2p_group_notif_formation_done(wpa_s->p2p_group);
  1151. wpa_supplicant_ap_mac_addr_filter(wpa_s, NULL);
  1152. }
  1153. persistent = 0;
  1154. if (ssid) {
  1155. client = ssid->mode == WPAS_MODE_INFRA;
  1156. if (ssid->mode == WPAS_MODE_P2P_GO) {
  1157. persistent = ssid->p2p_persistent_group;
  1158. os_memcpy(go_dev_addr, wpa_s->global->p2p_dev_addr,
  1159. ETH_ALEN);
  1160. } else
  1161. persistent = wpas_p2p_persistent_group(wpa_s,
  1162. go_dev_addr,
  1163. ssid->ssid,
  1164. ssid->ssid_len);
  1165. } else {
  1166. client = wpa_s->p2p_group_interface ==
  1167. P2P_GROUP_INTERFACE_CLIENT;
  1168. os_memset(go_dev_addr, 0, ETH_ALEN);
  1169. }
  1170. wpa_s->show_group_started = 0;
  1171. if (client) {
  1172. /*
  1173. * Indicate event only after successfully completed 4-way
  1174. * handshake, i.e., when the interface is ready for data
  1175. * packets.
  1176. */
  1177. wpa_s->show_group_started = 1;
  1178. } else {
  1179. wpas_p2p_group_started(wpa_s, 1, ssid,
  1180. ssid ? ssid->frequency : 0,
  1181. ssid && ssid->passphrase == NULL &&
  1182. ssid->psk_set ? ssid->psk : NULL,
  1183. ssid ? ssid->passphrase : NULL,
  1184. go_dev_addr, persistent, "");
  1185. wpas_p2p_cross_connect_setup(wpa_s);
  1186. wpas_p2p_set_group_idle_timeout(wpa_s);
  1187. }
  1188. if (persistent)
  1189. network_id = wpas_p2p_store_persistent_group(wpa_s->p2pdev,
  1190. ssid, go_dev_addr);
  1191. else {
  1192. os_free(wpa_s->global->add_psk);
  1193. wpa_s->global->add_psk = NULL;
  1194. }
  1195. if (network_id < 0 && ssid)
  1196. network_id = ssid->id;
  1197. if (!client) {
  1198. wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 0);
  1199. os_get_reltime(&wpa_s->global->p2p_go_wait_client);
  1200. }
  1201. }
  1202. struct send_action_work {
  1203. unsigned int freq;
  1204. u8 dst[ETH_ALEN];
  1205. u8 src[ETH_ALEN];
  1206. u8 bssid[ETH_ALEN];
  1207. size_t len;
  1208. unsigned int wait_time;
  1209. u8 buf[0];
  1210. };
  1211. static void wpas_p2p_free_send_action_work(struct wpa_supplicant *wpa_s)
  1212. {
  1213. struct send_action_work *awork = wpa_s->p2p_send_action_work->ctx;
  1214. wpa_printf(MSG_DEBUG,
  1215. "P2P: Free Action frame radio work @%p (freq=%u dst="
  1216. MACSTR " src=" MACSTR " bssid=" MACSTR " wait_time=%u)",
  1217. wpa_s->p2p_send_action_work, awork->freq,
  1218. MAC2STR(awork->dst), MAC2STR(awork->src),
  1219. MAC2STR(awork->bssid), awork->wait_time);
  1220. wpa_hexdump(MSG_DEBUG, "P2P: Freeing pending Action frame",
  1221. awork->buf, awork->len);
  1222. os_free(awork);
  1223. wpa_s->p2p_send_action_work->ctx = NULL;
  1224. radio_work_done(wpa_s->p2p_send_action_work);
  1225. wpa_s->p2p_send_action_work = NULL;
  1226. }
  1227. static void wpas_p2p_send_action_work_timeout(void *eloop_ctx,
  1228. void *timeout_ctx)
  1229. {
  1230. struct wpa_supplicant *wpa_s = eloop_ctx;
  1231. if (!wpa_s->p2p_send_action_work)
  1232. return;
  1233. wpa_printf(MSG_DEBUG, "P2P: Send Action frame radio work timed out");
  1234. wpas_p2p_free_send_action_work(wpa_s);
  1235. }
  1236. static void wpas_p2p_action_tx_clear(struct wpa_supplicant *wpa_s)
  1237. {
  1238. if (wpa_s->p2p_send_action_work) {
  1239. struct send_action_work *awork;
  1240. awork = wpa_s->p2p_send_action_work->ctx;
  1241. wpa_printf(MSG_DEBUG,
  1242. "P2P: Clear Action TX work @%p (wait_time=%u)",
  1243. wpa_s->p2p_send_action_work, awork->wait_time);
  1244. if (awork->wait_time == 0) {
  1245. wpas_p2p_free_send_action_work(wpa_s);
  1246. } else {
  1247. /*
  1248. * In theory, this should not be needed, but number of
  1249. * places in the P2P code is still using non-zero wait
  1250. * time for the last Action frame in the sequence and
  1251. * some of these do not call send_action_done().
  1252. */
  1253. eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
  1254. wpa_s, NULL);
  1255. eloop_register_timeout(
  1256. 0, awork->wait_time * 1000,
  1257. wpas_p2p_send_action_work_timeout,
  1258. wpa_s, NULL);
  1259. }
  1260. }
  1261. }
  1262. static void wpas_p2p_send_action_tx_status(struct wpa_supplicant *wpa_s,
  1263. unsigned int freq,
  1264. const u8 *dst, const u8 *src,
  1265. const u8 *bssid,
  1266. const u8 *data, size_t data_len,
  1267. enum offchannel_send_action_result
  1268. result)
  1269. {
  1270. enum p2p_send_action_result res = P2P_SEND_ACTION_SUCCESS;
  1271. wpas_p2p_action_tx_clear(wpa_s);
  1272. if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled)
  1273. return;
  1274. switch (result) {
  1275. case OFFCHANNEL_SEND_ACTION_SUCCESS:
  1276. res = P2P_SEND_ACTION_SUCCESS;
  1277. break;
  1278. case OFFCHANNEL_SEND_ACTION_NO_ACK:
  1279. res = P2P_SEND_ACTION_NO_ACK;
  1280. break;
  1281. case OFFCHANNEL_SEND_ACTION_FAILED:
  1282. res = P2P_SEND_ACTION_FAILED;
  1283. break;
  1284. }
  1285. p2p_send_action_cb(wpa_s->global->p2p, freq, dst, src, bssid, res);
  1286. if (result != OFFCHANNEL_SEND_ACTION_SUCCESS &&
  1287. wpa_s->pending_pd_before_join &&
  1288. (os_memcmp(dst, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
  1289. os_memcmp(dst, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0) &&
  1290. wpa_s->p2p_fallback_to_go_neg) {
  1291. wpa_s->pending_pd_before_join = 0;
  1292. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No ACK for PD Req "
  1293. "during p2p_connect-auto");
  1294. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  1295. P2P_EVENT_FALLBACK_TO_GO_NEG
  1296. "reason=no-ACK-to-PD-Req");
  1297. wpas_p2p_fallback_to_go_neg(wpa_s, 0);
  1298. return;
  1299. }
  1300. }
  1301. static void wpas_send_action_cb(struct wpa_radio_work *work, int deinit)
  1302. {
  1303. struct wpa_supplicant *wpa_s = work->wpa_s;
  1304. struct send_action_work *awork = work->ctx;
  1305. if (deinit) {
  1306. if (work->started) {
  1307. eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
  1308. wpa_s, NULL);
  1309. wpa_s->p2p_send_action_work = NULL;
  1310. offchannel_send_action_done(wpa_s);
  1311. }
  1312. os_free(awork);
  1313. return;
  1314. }
  1315. if (offchannel_send_action(wpa_s, awork->freq, awork->dst, awork->src,
  1316. awork->bssid, awork->buf, awork->len,
  1317. awork->wait_time,
  1318. wpas_p2p_send_action_tx_status, 1) < 0) {
  1319. os_free(awork);
  1320. radio_work_done(work);
  1321. return;
  1322. }
  1323. wpa_s->p2p_send_action_work = work;
  1324. }
  1325. static int wpas_send_action_work(struct wpa_supplicant *wpa_s,
  1326. unsigned int freq, const u8 *dst,
  1327. const u8 *src, const u8 *bssid, const u8 *buf,
  1328. size_t len, unsigned int wait_time)
  1329. {
  1330. struct send_action_work *awork;
  1331. if (wpa_s->p2p_send_action_work) {
  1332. wpa_printf(MSG_DEBUG, "P2P: Cannot schedule new p2p-send-action work since one is already pending");
  1333. return -1;
  1334. }
  1335. awork = os_zalloc(sizeof(*awork) + len);
  1336. if (awork == NULL)
  1337. return -1;
  1338. awork->freq = freq;
  1339. os_memcpy(awork->dst, dst, ETH_ALEN);
  1340. os_memcpy(awork->src, src, ETH_ALEN);
  1341. os_memcpy(awork->bssid, bssid, ETH_ALEN);
  1342. awork->len = len;
  1343. awork->wait_time = wait_time;
  1344. os_memcpy(awork->buf, buf, len);
  1345. if (radio_add_work(wpa_s, freq, "p2p-send-action", 0,
  1346. wpas_send_action_cb, awork) < 0) {
  1347. os_free(awork);
  1348. return -1;
  1349. }
  1350. return 0;
  1351. }
  1352. static int wpas_send_action(void *ctx, unsigned int freq, const u8 *dst,
  1353. const u8 *src, const u8 *bssid, const u8 *buf,
  1354. size_t len, unsigned int wait_time)
  1355. {
  1356. struct wpa_supplicant *wpa_s = ctx;
  1357. int listen_freq = -1, send_freq = -1;
  1358. if (wpa_s->p2p_listen_work)
  1359. listen_freq = wpa_s->p2p_listen_work->freq;
  1360. if (wpa_s->p2p_send_action_work)
  1361. send_freq = wpa_s->p2p_send_action_work->freq;
  1362. if (listen_freq != (int) freq && send_freq != (int) freq) {
  1363. wpa_printf(MSG_DEBUG, "P2P: Schedule new radio work for Action frame TX (listen_freq=%d send_freq=%d)",
  1364. listen_freq, send_freq);
  1365. return wpas_send_action_work(wpa_s, freq, dst, src, bssid, buf,
  1366. len, wait_time);
  1367. }
  1368. wpa_printf(MSG_DEBUG, "P2P: Use ongoing radio work for Action frame TX");
  1369. return offchannel_send_action(wpa_s, freq, dst, src, bssid, buf, len,
  1370. wait_time,
  1371. wpas_p2p_send_action_tx_status, 1);
  1372. }
  1373. static void wpas_send_action_done(void *ctx)
  1374. {
  1375. struct wpa_supplicant *wpa_s = ctx;
  1376. if (wpa_s->p2p_send_action_work) {
  1377. eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
  1378. wpa_s, NULL);
  1379. os_free(wpa_s->p2p_send_action_work->ctx);
  1380. radio_work_done(wpa_s->p2p_send_action_work);
  1381. wpa_s->p2p_send_action_work = NULL;
  1382. }
  1383. offchannel_send_action_done(wpa_s);
  1384. }
  1385. static int wpas_copy_go_neg_results(struct wpa_supplicant *wpa_s,
  1386. struct p2p_go_neg_results *params)
  1387. {
  1388. if (wpa_s->go_params == NULL) {
  1389. wpa_s->go_params = os_malloc(sizeof(*params));
  1390. if (wpa_s->go_params == NULL)
  1391. return -1;
  1392. }
  1393. os_memcpy(wpa_s->go_params, params, sizeof(*params));
  1394. return 0;
  1395. }
  1396. static void wpas_start_wps_enrollee(struct wpa_supplicant *wpa_s,
  1397. struct p2p_go_neg_results *res)
  1398. {
  1399. wpa_s->group_formation_reported = 0;
  1400. wpa_printf(MSG_DEBUG, "P2P: Start WPS Enrollee for peer " MACSTR
  1401. " dev_addr " MACSTR " wps_method %d",
  1402. MAC2STR(res->peer_interface_addr),
  1403. MAC2STR(res->peer_device_addr), res->wps_method);
  1404. wpa_hexdump_ascii(MSG_DEBUG, "P2P: Start WPS Enrollee for SSID",
  1405. res->ssid, res->ssid_len);
  1406. wpa_supplicant_ap_deinit(wpa_s);
  1407. wpas_copy_go_neg_results(wpa_s, res);
  1408. if (res->wps_method == WPS_PBC) {
  1409. wpas_wps_start_pbc(wpa_s, res->peer_interface_addr, 1);
  1410. #ifdef CONFIG_WPS_NFC
  1411. } else if (res->wps_method == WPS_NFC) {
  1412. wpas_wps_start_nfc(wpa_s, res->peer_device_addr,
  1413. res->peer_interface_addr,
  1414. wpa_s->p2pdev->p2p_oob_dev_pw,
  1415. wpa_s->p2pdev->p2p_oob_dev_pw_id, 1,
  1416. wpa_s->p2pdev->p2p_oob_dev_pw_id ==
  1417. DEV_PW_NFC_CONNECTION_HANDOVER ?
  1418. wpa_s->p2pdev->p2p_peer_oob_pubkey_hash :
  1419. NULL,
  1420. NULL, 0, 0);
  1421. #endif /* CONFIG_WPS_NFC */
  1422. } else {
  1423. u16 dev_pw_id = DEV_PW_DEFAULT;
  1424. if (wpa_s->p2p_wps_method == WPS_P2PS)
  1425. dev_pw_id = DEV_PW_P2PS_DEFAULT;
  1426. if (wpa_s->p2p_wps_method == WPS_PIN_KEYPAD)
  1427. dev_pw_id = DEV_PW_REGISTRAR_SPECIFIED;
  1428. wpas_wps_start_pin(wpa_s, res->peer_interface_addr,
  1429. wpa_s->p2p_pin, 1, dev_pw_id);
  1430. }
  1431. }
  1432. static void wpas_p2p_add_psk_list(struct wpa_supplicant *wpa_s,
  1433. struct wpa_ssid *ssid)
  1434. {
  1435. struct wpa_ssid *persistent;
  1436. struct psk_list_entry *psk;
  1437. struct hostapd_data *hapd;
  1438. if (!wpa_s->ap_iface)
  1439. return;
  1440. persistent = wpas_p2p_get_persistent(wpa_s->p2pdev, NULL, ssid->ssid,
  1441. ssid->ssid_len);
  1442. if (persistent == NULL)
  1443. return;
  1444. hapd = wpa_s->ap_iface->bss[0];
  1445. dl_list_for_each(psk, &persistent->psk_list, struct psk_list_entry,
  1446. list) {
  1447. struct hostapd_wpa_psk *hpsk;
  1448. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add persistent group PSK entry for "
  1449. MACSTR " psk=%d",
  1450. MAC2STR(psk->addr), psk->p2p);
  1451. hpsk = os_zalloc(sizeof(*hpsk));
  1452. if (hpsk == NULL)
  1453. break;
  1454. os_memcpy(hpsk->psk, psk->psk, PMK_LEN);
  1455. if (psk->p2p)
  1456. os_memcpy(hpsk->p2p_dev_addr, psk->addr, ETH_ALEN);
  1457. else
  1458. os_memcpy(hpsk->addr, psk->addr, ETH_ALEN);
  1459. hpsk->next = hapd->conf->ssid.wpa_psk;
  1460. hapd->conf->ssid.wpa_psk = hpsk;
  1461. }
  1462. }
  1463. static void p2p_go_dump_common_freqs(struct wpa_supplicant *wpa_s)
  1464. {
  1465. unsigned int i;
  1466. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Common group frequencies (len=%u):",
  1467. wpa_s->p2p_group_common_freqs_num);
  1468. for (i = 0; i < wpa_s->p2p_group_common_freqs_num; i++)
  1469. wpa_dbg(wpa_s, MSG_DEBUG, "freq[%u]: %d",
  1470. i, wpa_s->p2p_group_common_freqs[i]);
  1471. }
  1472. static void p2p_go_save_group_common_freqs(struct wpa_supplicant *wpa_s,
  1473. struct p2p_go_neg_results *params)
  1474. {
  1475. unsigned int i, len = int_array_len(wpa_s->go_params->freq_list);
  1476. wpa_s->p2p_group_common_freqs_num = 0;
  1477. os_free(wpa_s->p2p_group_common_freqs);
  1478. wpa_s->p2p_group_common_freqs = os_calloc(len, sizeof(int));
  1479. if (!wpa_s->p2p_group_common_freqs)
  1480. return;
  1481. for (i = 0; i < len; i++) {
  1482. if (!wpa_s->go_params->freq_list[i])
  1483. break;
  1484. wpa_s->p2p_group_common_freqs[i] =
  1485. wpa_s->go_params->freq_list[i];
  1486. }
  1487. wpa_s->p2p_group_common_freqs_num = i;
  1488. }
  1489. static void p2p_config_write(struct wpa_supplicant *wpa_s)
  1490. {
  1491. #ifndef CONFIG_NO_CONFIG_WRITE
  1492. if (wpa_s->p2pdev->conf->update_config &&
  1493. wpa_config_write(wpa_s->p2pdev->confname, wpa_s->p2pdev->conf))
  1494. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  1495. #endif /* CONFIG_NO_CONFIG_WRITE */
  1496. }
  1497. static void p2p_go_configured(void *ctx, void *data)
  1498. {
  1499. struct wpa_supplicant *wpa_s = ctx;
  1500. struct p2p_go_neg_results *params = data;
  1501. struct wpa_ssid *ssid;
  1502. int network_id = -1;
  1503. wpa_s->ap_configured_cb = NULL;
  1504. wpa_s->ap_configured_cb_ctx = NULL;
  1505. wpa_s->ap_configured_cb_data = NULL;
  1506. if (!wpa_s->go_params) {
  1507. wpa_printf(MSG_ERROR,
  1508. "P2P: p2p_go_configured() called with wpa_s->go_params == NULL");
  1509. return;
  1510. }
  1511. p2p_go_save_group_common_freqs(wpa_s, params);
  1512. p2p_go_dump_common_freqs(wpa_s);
  1513. ssid = wpa_s->current_ssid;
  1514. if (ssid && ssid->mode == WPAS_MODE_P2P_GO) {
  1515. wpa_printf(MSG_DEBUG, "P2P: Group setup without provisioning");
  1516. if (wpa_s->global->p2p_group_formation == wpa_s)
  1517. wpa_s->global->p2p_group_formation = NULL;
  1518. wpas_p2p_group_started(wpa_s, 1, ssid, ssid->frequency,
  1519. params->passphrase[0] == '\0' ?
  1520. params->psk : NULL,
  1521. params->passphrase,
  1522. wpa_s->global->p2p_dev_addr,
  1523. params->persistent_group, "");
  1524. wpa_s->group_formation_reported = 1;
  1525. if (wpa_s->p2pdev->p2ps_method_config_any) {
  1526. if (is_zero_ether_addr(wpa_s->p2pdev->p2ps_join_addr)) {
  1527. wpa_dbg(wpa_s, MSG_DEBUG,
  1528. "P2PS: Setting default PIN for ANY");
  1529. wpa_supplicant_ap_wps_pin(wpa_s, NULL,
  1530. "12345670", NULL, 0,
  1531. 0);
  1532. } else {
  1533. wpa_dbg(wpa_s, MSG_DEBUG,
  1534. "P2PS: Setting default PIN for " MACSTR,
  1535. MAC2STR(wpa_s->p2pdev->p2ps_join_addr));
  1536. wpa_supplicant_ap_wps_pin(
  1537. wpa_s, wpa_s->p2pdev->p2ps_join_addr,
  1538. "12345670", NULL, 0, 0);
  1539. }
  1540. wpa_s->p2pdev->p2ps_method_config_any = 0;
  1541. }
  1542. os_get_reltime(&wpa_s->global->p2p_go_wait_client);
  1543. if (params->persistent_group) {
  1544. network_id = wpas_p2p_store_persistent_group(
  1545. wpa_s->p2pdev, ssid,
  1546. wpa_s->global->p2p_dev_addr);
  1547. wpas_p2p_add_psk_list(wpa_s, ssid);
  1548. }
  1549. if (network_id < 0)
  1550. network_id = ssid->id;
  1551. wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 0);
  1552. wpas_p2p_cross_connect_setup(wpa_s);
  1553. wpas_p2p_set_group_idle_timeout(wpa_s);
  1554. if (wpa_s->p2p_first_connection_timeout) {
  1555. wpa_dbg(wpa_s, MSG_DEBUG,
  1556. "P2P: Start group formation timeout of %d seconds until first data connection on GO",
  1557. wpa_s->p2p_first_connection_timeout);
  1558. wpa_s->p2p_go_group_formation_completed = 0;
  1559. wpa_s->global->p2p_group_formation = wpa_s;
  1560. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  1561. wpa_s->p2pdev, NULL);
  1562. eloop_register_timeout(
  1563. wpa_s->p2p_first_connection_timeout, 0,
  1564. wpas_p2p_group_formation_timeout,
  1565. wpa_s->p2pdev, NULL);
  1566. }
  1567. return;
  1568. }
  1569. wpa_printf(MSG_DEBUG, "P2P: Setting up WPS for GO provisioning");
  1570. if (wpa_supplicant_ap_mac_addr_filter(wpa_s,
  1571. params->peer_interface_addr)) {
  1572. wpa_printf(MSG_DEBUG, "P2P: Failed to setup MAC address "
  1573. "filtering");
  1574. return;
  1575. }
  1576. if (params->wps_method == WPS_PBC) {
  1577. wpa_supplicant_ap_wps_pbc(wpa_s, params->peer_interface_addr,
  1578. params->peer_device_addr);
  1579. #ifdef CONFIG_WPS_NFC
  1580. } else if (params->wps_method == WPS_NFC) {
  1581. if (wpa_s->p2pdev->p2p_oob_dev_pw_id !=
  1582. DEV_PW_NFC_CONNECTION_HANDOVER &&
  1583. !wpa_s->p2pdev->p2p_oob_dev_pw) {
  1584. wpa_printf(MSG_DEBUG, "P2P: No NFC Dev Pw known");
  1585. return;
  1586. }
  1587. wpas_ap_wps_add_nfc_pw(
  1588. wpa_s, wpa_s->p2pdev->p2p_oob_dev_pw_id,
  1589. wpa_s->p2pdev->p2p_oob_dev_pw,
  1590. wpa_s->p2pdev->p2p_peer_oob_pk_hash_known ?
  1591. wpa_s->p2pdev->p2p_peer_oob_pubkey_hash : NULL);
  1592. #endif /* CONFIG_WPS_NFC */
  1593. } else if (wpa_s->p2p_pin[0])
  1594. wpa_supplicant_ap_wps_pin(wpa_s, params->peer_interface_addr,
  1595. wpa_s->p2p_pin, NULL, 0, 0);
  1596. os_free(wpa_s->go_params);
  1597. wpa_s->go_params = NULL;
  1598. }
  1599. static void wpas_start_wps_go(struct wpa_supplicant *wpa_s,
  1600. struct p2p_go_neg_results *params,
  1601. int group_formation)
  1602. {
  1603. struct wpa_ssid *ssid;
  1604. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Starting GO");
  1605. if (wpas_copy_go_neg_results(wpa_s, params) < 0) {
  1606. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not copy GO Negotiation "
  1607. "results");
  1608. return;
  1609. }
  1610. ssid = wpa_config_add_network(wpa_s->conf);
  1611. if (ssid == NULL) {
  1612. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not add network for GO");
  1613. return;
  1614. }
  1615. wpa_s->show_group_started = 0;
  1616. wpa_s->p2p_go_group_formation_completed = 0;
  1617. wpa_s->group_formation_reported = 0;
  1618. os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
  1619. wpa_config_set_network_defaults(ssid);
  1620. ssid->temporary = 1;
  1621. ssid->p2p_group = 1;
  1622. ssid->p2p_persistent_group = params->persistent_group;
  1623. ssid->mode = group_formation ? WPAS_MODE_P2P_GROUP_FORMATION :
  1624. WPAS_MODE_P2P_GO;
  1625. ssid->frequency = params->freq;
  1626. ssid->ht40 = params->ht40;
  1627. ssid->vht = params->vht;
  1628. ssid->max_oper_chwidth = params->max_oper_chwidth;
  1629. ssid->vht_center_freq2 = params->vht_center_freq2;
  1630. ssid->ssid = os_zalloc(params->ssid_len + 1);
  1631. if (ssid->ssid) {
  1632. os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
  1633. ssid->ssid_len = params->ssid_len;
  1634. }
  1635. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  1636. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  1637. ssid->proto = WPA_PROTO_RSN;
  1638. ssid->pairwise_cipher = WPA_CIPHER_CCMP;
  1639. ssid->group_cipher = WPA_CIPHER_CCMP;
  1640. if (params->freq > 56160) {
  1641. /*
  1642. * Enable GCMP instead of CCMP as pairwise_cipher and
  1643. * group_cipher in 60 GHz.
  1644. */
  1645. ssid->pairwise_cipher = WPA_CIPHER_GCMP;
  1646. ssid->group_cipher = WPA_CIPHER_GCMP;
  1647. /* P2P GO in 60 GHz is always a PCP (PBSS) */
  1648. ssid->pbss = 1;
  1649. }
  1650. if (os_strlen(params->passphrase) > 0) {
  1651. ssid->passphrase = os_strdup(params->passphrase);
  1652. if (ssid->passphrase == NULL) {
  1653. wpa_msg_global(wpa_s, MSG_ERROR,
  1654. "P2P: Failed to copy passphrase for GO");
  1655. wpa_config_remove_network(wpa_s->conf, ssid->id);
  1656. return;
  1657. }
  1658. } else
  1659. ssid->passphrase = NULL;
  1660. ssid->psk_set = params->psk_set;
  1661. if (ssid->psk_set)
  1662. os_memcpy(ssid->psk, params->psk, sizeof(ssid->psk));
  1663. else if (ssid->passphrase)
  1664. wpa_config_update_psk(ssid);
  1665. ssid->ap_max_inactivity = wpa_s->p2pdev->conf->p2p_go_max_inactivity;
  1666. wpa_s->ap_configured_cb = p2p_go_configured;
  1667. wpa_s->ap_configured_cb_ctx = wpa_s;
  1668. wpa_s->ap_configured_cb_data = wpa_s->go_params;
  1669. wpa_s->scan_req = NORMAL_SCAN_REQ;
  1670. wpa_s->connect_without_scan = ssid;
  1671. wpa_s->reassociate = 1;
  1672. wpa_s->disconnected = 0;
  1673. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Request scan (that will be skipped) to "
  1674. "start GO)");
  1675. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1676. }
  1677. static void wpas_p2p_clone_config(struct wpa_supplicant *dst,
  1678. const struct wpa_supplicant *src)
  1679. {
  1680. struct wpa_config *d;
  1681. const struct wpa_config *s;
  1682. d = dst->conf;
  1683. s = src->conf;
  1684. #define C(n) \
  1685. do { \
  1686. if (s->n && !d->n) \
  1687. d->n = os_strdup(s->n); \
  1688. } while (0)
  1689. C(device_name);
  1690. C(manufacturer);
  1691. C(model_name);
  1692. C(model_number);
  1693. C(serial_number);
  1694. C(config_methods);
  1695. #undef C
  1696. os_memcpy(d->device_type, s->device_type, WPS_DEV_TYPE_LEN);
  1697. os_memcpy(d->sec_device_type, s->sec_device_type,
  1698. sizeof(d->sec_device_type));
  1699. d->num_sec_device_types = s->num_sec_device_types;
  1700. d->p2p_group_idle = s->p2p_group_idle;
  1701. d->p2p_go_freq_change_policy = s->p2p_go_freq_change_policy;
  1702. d->p2p_intra_bss = s->p2p_intra_bss;
  1703. d->persistent_reconnect = s->persistent_reconnect;
  1704. d->max_num_sta = s->max_num_sta;
  1705. d->pbc_in_m1 = s->pbc_in_m1;
  1706. d->ignore_old_scan_res = s->ignore_old_scan_res;
  1707. d->beacon_int = s->beacon_int;
  1708. d->dtim_period = s->dtim_period;
  1709. d->p2p_go_ctwindow = s->p2p_go_ctwindow;
  1710. d->disassoc_low_ack = s->disassoc_low_ack;
  1711. d->disable_scan_offload = s->disable_scan_offload;
  1712. d->passive_scan = s->passive_scan;
  1713. if (s->wps_nfc_dh_privkey && s->wps_nfc_dh_pubkey &&
  1714. !d->wps_nfc_pw_from_config) {
  1715. wpabuf_free(d->wps_nfc_dh_privkey);
  1716. wpabuf_free(d->wps_nfc_dh_pubkey);
  1717. d->wps_nfc_dh_privkey = wpabuf_dup(s->wps_nfc_dh_privkey);
  1718. d->wps_nfc_dh_pubkey = wpabuf_dup(s->wps_nfc_dh_pubkey);
  1719. }
  1720. d->p2p_cli_probe = s->p2p_cli_probe;
  1721. }
  1722. static void wpas_p2p_get_group_ifname(struct wpa_supplicant *wpa_s,
  1723. char *ifname, size_t len)
  1724. {
  1725. char *ifname_ptr = wpa_s->ifname;
  1726. if (os_strncmp(wpa_s->ifname, P2P_MGMT_DEVICE_PREFIX,
  1727. os_strlen(P2P_MGMT_DEVICE_PREFIX)) == 0) {
  1728. ifname_ptr = os_strrchr(wpa_s->ifname, '-') + 1;
  1729. }
  1730. os_snprintf(ifname, len, "p2p-%s-%d", ifname_ptr, wpa_s->p2p_group_idx);
  1731. if (os_strlen(ifname) >= IFNAMSIZ &&
  1732. os_strlen(wpa_s->ifname) < IFNAMSIZ) {
  1733. int res;
  1734. /* Try to avoid going over the IFNAMSIZ length limit */
  1735. res = os_snprintf(ifname, len, "p2p-%d", wpa_s->p2p_group_idx);
  1736. if (os_snprintf_error(len, res) && len)
  1737. ifname[len - 1] = '\0';
  1738. }
  1739. }
  1740. static int wpas_p2p_add_group_interface(struct wpa_supplicant *wpa_s,
  1741. enum wpa_driver_if_type type)
  1742. {
  1743. char ifname[120], force_ifname[120];
  1744. if (wpa_s->pending_interface_name[0]) {
  1745. wpa_printf(MSG_DEBUG, "P2P: Pending virtual interface exists "
  1746. "- skip creation of a new one");
  1747. if (is_zero_ether_addr(wpa_s->pending_interface_addr)) {
  1748. wpa_printf(MSG_DEBUG, "P2P: Pending virtual address "
  1749. "unknown?! ifname='%s'",
  1750. wpa_s->pending_interface_name);
  1751. return -1;
  1752. }
  1753. return 0;
  1754. }
  1755. wpas_p2p_get_group_ifname(wpa_s, ifname, sizeof(ifname));
  1756. force_ifname[0] = '\0';
  1757. wpa_printf(MSG_DEBUG, "P2P: Create a new interface %s for the group",
  1758. ifname);
  1759. wpa_s->p2p_group_idx++;
  1760. wpa_s->pending_interface_type = type;
  1761. if (wpa_drv_if_add(wpa_s, type, ifname, NULL, NULL, force_ifname,
  1762. wpa_s->pending_interface_addr, NULL) < 0) {
  1763. wpa_printf(MSG_ERROR, "P2P: Failed to create new group "
  1764. "interface");
  1765. return -1;
  1766. }
  1767. if (force_ifname[0]) {
  1768. wpa_printf(MSG_DEBUG, "P2P: Driver forced interface name %s",
  1769. force_ifname);
  1770. os_strlcpy(wpa_s->pending_interface_name, force_ifname,
  1771. sizeof(wpa_s->pending_interface_name));
  1772. } else
  1773. os_strlcpy(wpa_s->pending_interface_name, ifname,
  1774. sizeof(wpa_s->pending_interface_name));
  1775. wpa_printf(MSG_DEBUG, "P2P: Created pending virtual interface %s addr "
  1776. MACSTR, wpa_s->pending_interface_name,
  1777. MAC2STR(wpa_s->pending_interface_addr));
  1778. return 0;
  1779. }
  1780. static void wpas_p2p_remove_pending_group_interface(
  1781. struct wpa_supplicant *wpa_s)
  1782. {
  1783. if (!wpa_s->pending_interface_name[0] ||
  1784. is_zero_ether_addr(wpa_s->pending_interface_addr))
  1785. return; /* No pending virtual interface */
  1786. wpa_printf(MSG_DEBUG, "P2P: Removing pending group interface %s",
  1787. wpa_s->pending_interface_name);
  1788. wpa_drv_if_remove(wpa_s, wpa_s->pending_interface_type,
  1789. wpa_s->pending_interface_name);
  1790. os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
  1791. wpa_s->pending_interface_name[0] = '\0';
  1792. wpa_s->global->pending_group_iface_for_p2ps = 0;
  1793. }
  1794. static struct wpa_supplicant *
  1795. wpas_p2p_init_group_interface(struct wpa_supplicant *wpa_s, int go)
  1796. {
  1797. struct wpa_interface iface;
  1798. struct wpa_supplicant *group_wpa_s;
  1799. if (!wpa_s->pending_interface_name[0]) {
  1800. wpa_printf(MSG_ERROR, "P2P: No pending group interface");
  1801. if (!wpas_p2p_create_iface(wpa_s))
  1802. return NULL;
  1803. /*
  1804. * Something has forced us to remove the pending interface; try
  1805. * to create a new one and hope for the best that we will get
  1806. * the same local address.
  1807. */
  1808. if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
  1809. WPA_IF_P2P_CLIENT) < 0)
  1810. return NULL;
  1811. }
  1812. os_memset(&iface, 0, sizeof(iface));
  1813. iface.ifname = wpa_s->pending_interface_name;
  1814. iface.driver = wpa_s->driver->name;
  1815. if (wpa_s->conf->ctrl_interface == NULL &&
  1816. wpa_s->parent != wpa_s &&
  1817. wpa_s->p2p_mgmt &&
  1818. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE))
  1819. iface.ctrl_interface = wpa_s->parent->conf->ctrl_interface;
  1820. else
  1821. iface.ctrl_interface = wpa_s->conf->ctrl_interface;
  1822. iface.driver_param = wpa_s->conf->driver_param;
  1823. group_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface, wpa_s);
  1824. if (group_wpa_s == NULL) {
  1825. wpa_printf(MSG_ERROR, "P2P: Failed to create new "
  1826. "wpa_supplicant interface");
  1827. return NULL;
  1828. }
  1829. wpa_s->pending_interface_name[0] = '\0';
  1830. group_wpa_s->p2p_group_interface = go ? P2P_GROUP_INTERFACE_GO :
  1831. P2P_GROUP_INTERFACE_CLIENT;
  1832. wpa_s->global->p2p_group_formation = group_wpa_s;
  1833. wpa_s->global->pending_group_iface_for_p2ps = 0;
  1834. wpas_p2p_clone_config(group_wpa_s, wpa_s);
  1835. return group_wpa_s;
  1836. }
  1837. static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
  1838. void *timeout_ctx)
  1839. {
  1840. struct wpa_supplicant *wpa_s = eloop_ctx;
  1841. wpa_printf(MSG_DEBUG, "P2P: Group Formation timed out");
  1842. wpas_p2p_group_formation_failed(wpa_s, 0);
  1843. }
  1844. static void wpas_p2p_group_formation_failed(struct wpa_supplicant *wpa_s,
  1845. int already_deleted)
  1846. {
  1847. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  1848. wpa_s->p2pdev, NULL);
  1849. if (wpa_s->global->p2p)
  1850. p2p_group_formation_failed(wpa_s->global->p2p);
  1851. wpas_group_formation_completed(wpa_s, 0, already_deleted);
  1852. }
  1853. static void wpas_p2p_grpform_fail_after_wps(struct wpa_supplicant *wpa_s)
  1854. {
  1855. wpa_printf(MSG_DEBUG, "P2P: Reject group formation due to WPS provisioning failure");
  1856. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  1857. wpa_s->p2pdev, NULL);
  1858. eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
  1859. wpa_s->p2pdev, NULL);
  1860. wpa_s->global->p2p_fail_on_wps_complete = 0;
  1861. }
  1862. void wpas_p2p_ap_setup_failed(struct wpa_supplicant *wpa_s)
  1863. {
  1864. if (wpa_s->global->p2p_group_formation != wpa_s)
  1865. return;
  1866. /* Speed up group formation timeout since this cannot succeed */
  1867. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  1868. wpa_s->p2pdev, NULL);
  1869. eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
  1870. wpa_s->p2pdev, NULL);
  1871. }
  1872. static void wpas_go_neg_completed(void *ctx, struct p2p_go_neg_results *res)
  1873. {
  1874. struct wpa_supplicant *wpa_s = ctx;
  1875. struct wpa_supplicant *group_wpa_s;
  1876. if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
  1877. wpa_drv_cancel_remain_on_channel(wpa_s);
  1878. wpa_s->off_channel_freq = 0;
  1879. wpa_s->roc_waiting_drv_freq = 0;
  1880. }
  1881. if (res->status) {
  1882. wpa_msg_global(wpa_s, MSG_INFO,
  1883. P2P_EVENT_GO_NEG_FAILURE "status=%d",
  1884. res->status);
  1885. wpas_notify_p2p_go_neg_completed(wpa_s, res);
  1886. wpas_p2p_remove_pending_group_interface(wpa_s);
  1887. return;
  1888. }
  1889. if (!res->role_go) {
  1890. /* Inform driver of the operating channel of GO. */
  1891. wpa_drv_set_prob_oper_freq(wpa_s, res->freq);
  1892. }
  1893. if (wpa_s->p2p_go_ht40)
  1894. res->ht40 = 1;
  1895. if (wpa_s->p2p_go_vht)
  1896. res->vht = 1;
  1897. res->max_oper_chwidth = wpa_s->p2p_go_max_oper_chwidth;
  1898. res->vht_center_freq2 = wpa_s->p2p_go_vht_center_freq2;
  1899. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_SUCCESS "role=%s "
  1900. "freq=%d ht40=%d peer_dev=" MACSTR " peer_iface=" MACSTR
  1901. " wps_method=%s",
  1902. res->role_go ? "GO" : "client", res->freq, res->ht40,
  1903. MAC2STR(res->peer_device_addr),
  1904. MAC2STR(res->peer_interface_addr),
  1905. p2p_wps_method_text(res->wps_method));
  1906. wpas_notify_p2p_go_neg_completed(wpa_s, res);
  1907. if (res->role_go && wpa_s->p2p_persistent_id >= 0) {
  1908. struct wpa_ssid *ssid;
  1909. ssid = wpa_config_get_network(wpa_s->conf,
  1910. wpa_s->p2p_persistent_id);
  1911. if (ssid && ssid->disabled == 2 &&
  1912. ssid->mode == WPAS_MODE_P2P_GO && ssid->passphrase) {
  1913. size_t len = os_strlen(ssid->passphrase);
  1914. wpa_printf(MSG_DEBUG, "P2P: Override passphrase based "
  1915. "on requested persistent group");
  1916. os_memcpy(res->passphrase, ssid->passphrase, len);
  1917. res->passphrase[len] = '\0';
  1918. }
  1919. }
  1920. if (wpa_s->create_p2p_iface) {
  1921. group_wpa_s =
  1922. wpas_p2p_init_group_interface(wpa_s, res->role_go);
  1923. if (group_wpa_s == NULL) {
  1924. wpas_p2p_remove_pending_group_interface(wpa_s);
  1925. eloop_cancel_timeout(wpas_p2p_long_listen_timeout,
  1926. wpa_s, NULL);
  1927. wpas_p2p_group_formation_failed(wpa_s, 1);
  1928. return;
  1929. }
  1930. os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
  1931. wpa_s->pending_interface_name[0] = '\0';
  1932. } else {
  1933. group_wpa_s = wpa_s->parent;
  1934. wpa_s->global->p2p_group_formation = group_wpa_s;
  1935. if (group_wpa_s != wpa_s)
  1936. wpas_p2p_clone_config(group_wpa_s, wpa_s);
  1937. }
  1938. group_wpa_s->p2p_in_provisioning = 1;
  1939. group_wpa_s->p2pdev = wpa_s;
  1940. if (group_wpa_s != wpa_s) {
  1941. os_memcpy(group_wpa_s->p2p_pin, wpa_s->p2p_pin,
  1942. sizeof(group_wpa_s->p2p_pin));
  1943. group_wpa_s->p2p_wps_method = wpa_s->p2p_wps_method;
  1944. }
  1945. if (res->role_go) {
  1946. wpas_start_wps_go(group_wpa_s, res, 1);
  1947. } else {
  1948. os_get_reltime(&group_wpa_s->scan_min_time);
  1949. wpas_start_wps_enrollee(group_wpa_s, res);
  1950. }
  1951. wpa_s->p2p_long_listen = 0;
  1952. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  1953. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  1954. eloop_register_timeout(15 + res->peer_config_timeout / 100,
  1955. (res->peer_config_timeout % 100) * 10000,
  1956. wpas_p2p_group_formation_timeout, wpa_s, NULL);
  1957. }
  1958. static void wpas_go_neg_req_rx(void *ctx, const u8 *src, u16 dev_passwd_id,
  1959. u8 go_intent)
  1960. {
  1961. struct wpa_supplicant *wpa_s = ctx;
  1962. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_REQUEST MACSTR
  1963. " dev_passwd_id=%u go_intent=%u", MAC2STR(src),
  1964. dev_passwd_id, go_intent);
  1965. wpas_notify_p2p_go_neg_req(wpa_s, src, dev_passwd_id, go_intent);
  1966. }
  1967. static void wpas_dev_found(void *ctx, const u8 *addr,
  1968. const struct p2p_peer_info *info,
  1969. int new_device)
  1970. {
  1971. #ifndef CONFIG_NO_STDOUT_DEBUG
  1972. struct wpa_supplicant *wpa_s = ctx;
  1973. char devtype[WPS_DEV_TYPE_BUFSIZE];
  1974. char *wfd_dev_info_hex = NULL;
  1975. #ifdef CONFIG_WIFI_DISPLAY
  1976. wfd_dev_info_hex = wifi_display_subelem_hex(info->wfd_subelems,
  1977. WFD_SUBELEM_DEVICE_INFO);
  1978. #endif /* CONFIG_WIFI_DISPLAY */
  1979. if (info->p2ps_instance) {
  1980. char str[256];
  1981. const u8 *buf = wpabuf_head(info->p2ps_instance);
  1982. size_t len = wpabuf_len(info->p2ps_instance);
  1983. while (len) {
  1984. u32 id;
  1985. u16 methods;
  1986. u8 str_len;
  1987. if (len < 4 + 2 + 1)
  1988. break;
  1989. id = WPA_GET_LE32(buf);
  1990. buf += sizeof(u32);
  1991. methods = WPA_GET_BE16(buf);
  1992. buf += sizeof(u16);
  1993. str_len = *buf++;
  1994. if (str_len > len - 4 - 2 - 1)
  1995. break;
  1996. os_memcpy(str, buf, str_len);
  1997. str[str_len] = '\0';
  1998. buf += str_len;
  1999. len -= str_len + sizeof(u32) + sizeof(u16) + sizeof(u8);
  2000. wpa_msg_global(wpa_s, MSG_INFO,
  2001. P2P_EVENT_DEVICE_FOUND MACSTR
  2002. " p2p_dev_addr=" MACSTR
  2003. " pri_dev_type=%s name='%s'"
  2004. " config_methods=0x%x"
  2005. " dev_capab=0x%x"
  2006. " group_capab=0x%x"
  2007. " adv_id=%x asp_svc=%s%s",
  2008. MAC2STR(addr),
  2009. MAC2STR(info->p2p_device_addr),
  2010. wps_dev_type_bin2str(
  2011. info->pri_dev_type,
  2012. devtype, sizeof(devtype)),
  2013. info->device_name, methods,
  2014. info->dev_capab, info->group_capab,
  2015. id, str,
  2016. info->vendor_elems ?
  2017. " vendor_elems=1" : "");
  2018. }
  2019. goto done;
  2020. }
  2021. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_FOUND MACSTR
  2022. " p2p_dev_addr=" MACSTR
  2023. " pri_dev_type=%s name='%s' config_methods=0x%x "
  2024. "dev_capab=0x%x group_capab=0x%x%s%s%s new=%d",
  2025. MAC2STR(addr), MAC2STR(info->p2p_device_addr),
  2026. wps_dev_type_bin2str(info->pri_dev_type, devtype,
  2027. sizeof(devtype)),
  2028. info->device_name, info->config_methods,
  2029. info->dev_capab, info->group_capab,
  2030. wfd_dev_info_hex ? " wfd_dev_info=0x" : "",
  2031. wfd_dev_info_hex ? wfd_dev_info_hex : "",
  2032. info->vendor_elems ? " vendor_elems=1" : "",
  2033. new_device);
  2034. done:
  2035. os_free(wfd_dev_info_hex);
  2036. #endif /* CONFIG_NO_STDOUT_DEBUG */
  2037. wpas_notify_p2p_device_found(ctx, info->p2p_device_addr, new_device);
  2038. }
  2039. static void wpas_dev_lost(void *ctx, const u8 *dev_addr)
  2040. {
  2041. struct wpa_supplicant *wpa_s = ctx;
  2042. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_LOST
  2043. "p2p_dev_addr=" MACSTR, MAC2STR(dev_addr));
  2044. wpas_notify_p2p_device_lost(wpa_s, dev_addr);
  2045. }
  2046. static void wpas_find_stopped(void *ctx)
  2047. {
  2048. struct wpa_supplicant *wpa_s = ctx;
  2049. if (wpa_s->p2p_scan_work && wpas_abort_ongoing_scan(wpa_s) < 0)
  2050. wpa_printf(MSG_DEBUG, "P2P: Abort ongoing scan failed");
  2051. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_FIND_STOPPED);
  2052. wpas_notify_p2p_find_stopped(wpa_s);
  2053. }
  2054. struct wpas_p2p_listen_work {
  2055. unsigned int freq;
  2056. unsigned int duration;
  2057. struct wpabuf *probe_resp_ie;
  2058. };
  2059. static void wpas_p2p_listen_work_free(struct wpas_p2p_listen_work *lwork)
  2060. {
  2061. if (lwork == NULL)
  2062. return;
  2063. wpabuf_free(lwork->probe_resp_ie);
  2064. os_free(lwork);
  2065. }
  2066. static void wpas_p2p_listen_work_done(struct wpa_supplicant *wpa_s)
  2067. {
  2068. struct wpas_p2p_listen_work *lwork;
  2069. if (!wpa_s->p2p_listen_work)
  2070. return;
  2071. lwork = wpa_s->p2p_listen_work->ctx;
  2072. wpas_p2p_listen_work_free(lwork);
  2073. radio_work_done(wpa_s->p2p_listen_work);
  2074. wpa_s->p2p_listen_work = NULL;
  2075. }
  2076. static void wpas_start_listen_cb(struct wpa_radio_work *work, int deinit)
  2077. {
  2078. struct wpa_supplicant *wpa_s = work->wpa_s;
  2079. struct wpas_p2p_listen_work *lwork = work->ctx;
  2080. unsigned int duration;
  2081. if (deinit) {
  2082. if (work->started) {
  2083. wpa_s->p2p_listen_work = NULL;
  2084. wpas_stop_listen(wpa_s);
  2085. }
  2086. wpas_p2p_listen_work_free(lwork);
  2087. return;
  2088. }
  2089. wpa_s->p2p_listen_work = work;
  2090. wpa_drv_set_ap_wps_ie(wpa_s, NULL, lwork->probe_resp_ie, NULL);
  2091. if (wpa_drv_probe_req_report(wpa_s, 1) < 0) {
  2092. wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver to "
  2093. "report received Probe Request frames");
  2094. wpas_p2p_listen_work_done(wpa_s);
  2095. return;
  2096. }
  2097. wpa_s->pending_listen_freq = lwork->freq;
  2098. wpa_s->pending_listen_duration = lwork->duration;
  2099. duration = lwork->duration;
  2100. #ifdef CONFIG_TESTING_OPTIONS
  2101. if (wpa_s->extra_roc_dur) {
  2102. wpa_printf(MSG_DEBUG, "TESTING: Increase ROC duration %u -> %u",
  2103. duration, duration + wpa_s->extra_roc_dur);
  2104. duration += wpa_s->extra_roc_dur;
  2105. }
  2106. #endif /* CONFIG_TESTING_OPTIONS */
  2107. if (wpa_drv_remain_on_channel(wpa_s, lwork->freq, duration) < 0) {
  2108. wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver "
  2109. "to remain on channel (%u MHz) for Listen "
  2110. "state", lwork->freq);
  2111. wpas_p2p_listen_work_done(wpa_s);
  2112. wpa_s->pending_listen_freq = 0;
  2113. return;
  2114. }
  2115. wpa_s->off_channel_freq = 0;
  2116. wpa_s->roc_waiting_drv_freq = lwork->freq;
  2117. }
  2118. static int wpas_start_listen(void *ctx, unsigned int freq,
  2119. unsigned int duration,
  2120. const struct wpabuf *probe_resp_ie)
  2121. {
  2122. struct wpa_supplicant *wpa_s = ctx;
  2123. struct wpas_p2p_listen_work *lwork;
  2124. if (wpa_s->p2p_listen_work) {
  2125. wpa_printf(MSG_DEBUG, "P2P: Reject start_listen since p2p_listen_work already exists");
  2126. return -1;
  2127. }
  2128. lwork = os_zalloc(sizeof(*lwork));
  2129. if (lwork == NULL)
  2130. return -1;
  2131. lwork->freq = freq;
  2132. lwork->duration = duration;
  2133. if (probe_resp_ie) {
  2134. lwork->probe_resp_ie = wpabuf_dup(probe_resp_ie);
  2135. if (lwork->probe_resp_ie == NULL) {
  2136. wpas_p2p_listen_work_free(lwork);
  2137. return -1;
  2138. }
  2139. }
  2140. if (radio_add_work(wpa_s, freq, "p2p-listen", 0, wpas_start_listen_cb,
  2141. lwork) < 0) {
  2142. wpas_p2p_listen_work_free(lwork);
  2143. return -1;
  2144. }
  2145. return 0;
  2146. }
  2147. static void wpas_stop_listen(void *ctx)
  2148. {
  2149. struct wpa_supplicant *wpa_s = ctx;
  2150. if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
  2151. wpa_drv_cancel_remain_on_channel(wpa_s);
  2152. wpa_s->off_channel_freq = 0;
  2153. wpa_s->roc_waiting_drv_freq = 0;
  2154. }
  2155. wpa_drv_set_ap_wps_ie(wpa_s, NULL, NULL, NULL);
  2156. /*
  2157. * Don't cancel Probe Request RX reporting for a connected P2P Client
  2158. * handling Probe Request frames.
  2159. */
  2160. if (!wpa_s->p2p_cli_probe)
  2161. wpa_drv_probe_req_report(wpa_s, 0);
  2162. wpas_p2p_listen_work_done(wpa_s);
  2163. }
  2164. static int wpas_send_probe_resp(void *ctx, const struct wpabuf *buf,
  2165. unsigned int freq)
  2166. {
  2167. struct wpa_supplicant *wpa_s = ctx;
  2168. return wpa_drv_send_mlme(wpa_s, wpabuf_head(buf), wpabuf_len(buf), 1,
  2169. freq);
  2170. }
  2171. static void wpas_prov_disc_local_display(struct wpa_supplicant *wpa_s,
  2172. const u8 *peer, const char *params,
  2173. unsigned int generated_pin)
  2174. {
  2175. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_SHOW_PIN MACSTR
  2176. " %08d%s", MAC2STR(peer), generated_pin, params);
  2177. }
  2178. static void wpas_prov_disc_local_keypad(struct wpa_supplicant *wpa_s,
  2179. const u8 *peer, const char *params)
  2180. {
  2181. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_ENTER_PIN MACSTR
  2182. "%s", MAC2STR(peer), params);
  2183. }
  2184. static void wpas_prov_disc_req(void *ctx, const u8 *peer, u16 config_methods,
  2185. const u8 *dev_addr, const u8 *pri_dev_type,
  2186. const char *dev_name, u16 supp_config_methods,
  2187. u8 dev_capab, u8 group_capab, const u8 *group_id,
  2188. size_t group_id_len)
  2189. {
  2190. struct wpa_supplicant *wpa_s = ctx;
  2191. char devtype[WPS_DEV_TYPE_BUFSIZE];
  2192. char params[300];
  2193. u8 empty_dev_type[8];
  2194. unsigned int generated_pin = 0;
  2195. struct wpa_supplicant *group = NULL;
  2196. int res;
  2197. if (group_id) {
  2198. for (group = wpa_s->global->ifaces; group; group = group->next)
  2199. {
  2200. struct wpa_ssid *s = group->current_ssid;
  2201. if (s != NULL &&
  2202. s->mode == WPAS_MODE_P2P_GO &&
  2203. group_id_len - ETH_ALEN == s->ssid_len &&
  2204. os_memcmp(group_id + ETH_ALEN, s->ssid,
  2205. s->ssid_len) == 0)
  2206. break;
  2207. }
  2208. }
  2209. if (pri_dev_type == NULL) {
  2210. os_memset(empty_dev_type, 0, sizeof(empty_dev_type));
  2211. pri_dev_type = empty_dev_type;
  2212. }
  2213. res = os_snprintf(params, sizeof(params), " p2p_dev_addr=" MACSTR
  2214. " pri_dev_type=%s name='%s' config_methods=0x%x "
  2215. "dev_capab=0x%x group_capab=0x%x%s%s",
  2216. MAC2STR(dev_addr),
  2217. wps_dev_type_bin2str(pri_dev_type, devtype,
  2218. sizeof(devtype)),
  2219. dev_name, supp_config_methods, dev_capab, group_capab,
  2220. group ? " group=" : "",
  2221. group ? group->ifname : "");
  2222. if (os_snprintf_error(sizeof(params), res))
  2223. wpa_printf(MSG_DEBUG, "P2P: PD Request event truncated");
  2224. params[sizeof(params) - 1] = '\0';
  2225. if (config_methods & WPS_CONFIG_DISPLAY) {
  2226. if (wps_generate_pin(&generated_pin) < 0) {
  2227. wpa_printf(MSG_DEBUG, "P2P: Could not generate PIN");
  2228. wpas_notify_p2p_provision_discovery(
  2229. wpa_s, peer, 0 /* response */,
  2230. P2P_PROV_DISC_INFO_UNAVAILABLE, 0, 0);
  2231. return;
  2232. }
  2233. wpas_prov_disc_local_display(wpa_s, peer, params,
  2234. generated_pin);
  2235. } else if (config_methods & WPS_CONFIG_KEYPAD)
  2236. wpas_prov_disc_local_keypad(wpa_s, peer, params);
  2237. else if (config_methods & WPS_CONFIG_PUSHBUTTON)
  2238. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_REQ
  2239. MACSTR "%s", MAC2STR(peer), params);
  2240. wpas_notify_p2p_provision_discovery(wpa_s, peer, 1 /* request */,
  2241. P2P_PROV_DISC_SUCCESS,
  2242. config_methods, generated_pin);
  2243. }
  2244. static void wpas_prov_disc_resp(void *ctx, const u8 *peer, u16 config_methods)
  2245. {
  2246. struct wpa_supplicant *wpa_s = ctx;
  2247. unsigned int generated_pin = 0;
  2248. char params[20];
  2249. if (wpa_s->pending_pd_before_join &&
  2250. (os_memcmp(peer, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
  2251. os_memcmp(peer, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0)) {
  2252. wpa_s->pending_pd_before_join = 0;
  2253. wpa_printf(MSG_DEBUG, "P2P: Starting pending "
  2254. "join-existing-group operation");
  2255. wpas_p2p_join_start(wpa_s, 0, NULL, 0);
  2256. return;
  2257. }
  2258. if (wpa_s->pending_pd_use == AUTO_PD_JOIN ||
  2259. wpa_s->pending_pd_use == AUTO_PD_GO_NEG) {
  2260. int res;
  2261. res = os_snprintf(params, sizeof(params), " peer_go=%d",
  2262. wpa_s->pending_pd_use == AUTO_PD_JOIN);
  2263. if (os_snprintf_error(sizeof(params), res))
  2264. params[sizeof(params) - 1] = '\0';
  2265. } else
  2266. params[0] = '\0';
  2267. if (config_methods & WPS_CONFIG_DISPLAY)
  2268. wpas_prov_disc_local_keypad(wpa_s, peer, params);
  2269. else if (config_methods & WPS_CONFIG_KEYPAD) {
  2270. if (wps_generate_pin(&generated_pin) < 0) {
  2271. wpa_printf(MSG_DEBUG, "P2P: Could not generate PIN");
  2272. wpas_notify_p2p_provision_discovery(
  2273. wpa_s, peer, 0 /* response */,
  2274. P2P_PROV_DISC_INFO_UNAVAILABLE, 0, 0);
  2275. return;
  2276. }
  2277. wpas_prov_disc_local_display(wpa_s, peer, params,
  2278. generated_pin);
  2279. } else if (config_methods & WPS_CONFIG_PUSHBUTTON)
  2280. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_RESP
  2281. MACSTR "%s", MAC2STR(peer), params);
  2282. wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
  2283. P2P_PROV_DISC_SUCCESS,
  2284. config_methods, generated_pin);
  2285. }
  2286. static void wpas_prov_disc_fail(void *ctx, const u8 *peer,
  2287. enum p2p_prov_disc_status status,
  2288. u32 adv_id, const u8 *adv_mac,
  2289. const char *deferred_session_resp)
  2290. {
  2291. struct wpa_supplicant *wpa_s = ctx;
  2292. if (wpa_s->p2p_fallback_to_go_neg) {
  2293. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: PD for p2p_connect-auto "
  2294. "failed - fall back to GO Negotiation");
  2295. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  2296. P2P_EVENT_FALLBACK_TO_GO_NEG
  2297. "reason=PD-failed");
  2298. wpas_p2p_fallback_to_go_neg(wpa_s, 0);
  2299. return;
  2300. }
  2301. if (status == P2P_PROV_DISC_TIMEOUT_JOIN) {
  2302. wpa_s->pending_pd_before_join = 0;
  2303. wpa_printf(MSG_DEBUG, "P2P: Starting pending "
  2304. "join-existing-group operation (no ACK for PD "
  2305. "Req attempts)");
  2306. wpas_p2p_join_start(wpa_s, 0, NULL, 0);
  2307. return;
  2308. }
  2309. if (adv_id && adv_mac && deferred_session_resp) {
  2310. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
  2311. " p2p_dev_addr=" MACSTR " status=%d adv_id=%x"
  2312. " deferred_session_resp='%s'",
  2313. MAC2STR(peer), status, adv_id,
  2314. deferred_session_resp);
  2315. } else if (adv_id && adv_mac) {
  2316. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
  2317. " p2p_dev_addr=" MACSTR " status=%d adv_id=%x",
  2318. MAC2STR(peer), status, adv_id);
  2319. } else {
  2320. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
  2321. " p2p_dev_addr=" MACSTR " status=%d",
  2322. MAC2STR(peer), status);
  2323. }
  2324. wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
  2325. status, 0, 0);
  2326. }
  2327. static int freq_included(struct wpa_supplicant *wpa_s,
  2328. const struct p2p_channels *channels,
  2329. unsigned int freq)
  2330. {
  2331. if ((channels == NULL || p2p_channels_includes_freq(channels, freq)) &&
  2332. wpas_p2p_go_is_peer_freq(wpa_s, freq))
  2333. return 1;
  2334. return 0;
  2335. }
  2336. static void wpas_p2p_go_update_common_freqs(struct wpa_supplicant *wpa_s)
  2337. {
  2338. unsigned int num = P2P_MAX_CHANNELS;
  2339. int *common_freqs;
  2340. int ret;
  2341. p2p_go_dump_common_freqs(wpa_s);
  2342. common_freqs = os_calloc(num, sizeof(int));
  2343. if (!common_freqs)
  2344. return;
  2345. ret = p2p_group_get_common_freqs(wpa_s->p2p_group, common_freqs, &num);
  2346. if (ret < 0) {
  2347. wpa_dbg(wpa_s, MSG_DEBUG,
  2348. "P2P: Failed to get group common freqs");
  2349. os_free(common_freqs);
  2350. return;
  2351. }
  2352. os_free(wpa_s->p2p_group_common_freqs);
  2353. wpa_s->p2p_group_common_freqs = common_freqs;
  2354. wpa_s->p2p_group_common_freqs_num = num;
  2355. p2p_go_dump_common_freqs(wpa_s);
  2356. }
  2357. /*
  2358. * Check if the given frequency is one of the possible operating frequencies
  2359. * set after the completion of the GO Negotiation.
  2360. */
  2361. static int wpas_p2p_go_is_peer_freq(struct wpa_supplicant *wpa_s, int freq)
  2362. {
  2363. unsigned int i;
  2364. p2p_go_dump_common_freqs(wpa_s);
  2365. /* assume no restrictions */
  2366. if (!wpa_s->p2p_group_common_freqs_num)
  2367. return 1;
  2368. for (i = 0; i < wpa_s->p2p_group_common_freqs_num; i++) {
  2369. if (wpa_s->p2p_group_common_freqs[i] == freq)
  2370. return 1;
  2371. }
  2372. return 0;
  2373. }
  2374. static int wpas_sta_check_ecsa(struct hostapd_data *hapd,
  2375. struct sta_info *sta, void *ctx)
  2376. {
  2377. int *ecsa_support = ctx;
  2378. *ecsa_support &= sta->ecsa_supported;
  2379. return 0;
  2380. }
  2381. /* Check if all the peers support eCSA */
  2382. static int wpas_p2p_go_clients_support_ecsa(struct wpa_supplicant *wpa_s)
  2383. {
  2384. int ecsa_support = 1;
  2385. ap_for_each_sta(wpa_s->ap_iface->bss[0], wpas_sta_check_ecsa,
  2386. &ecsa_support);
  2387. return ecsa_support;
  2388. }
  2389. /**
  2390. * Pick the best frequency to use from all the currently used frequencies.
  2391. */
  2392. static int wpas_p2p_pick_best_used_freq(struct wpa_supplicant *wpa_s,
  2393. struct wpa_used_freq_data *freqs,
  2394. unsigned int num)
  2395. {
  2396. unsigned int i, c;
  2397. /* find a candidate freq that is supported by P2P */
  2398. for (c = 0; c < num; c++)
  2399. if (p2p_supported_freq(wpa_s->global->p2p, freqs[c].freq))
  2400. break;
  2401. if (c == num)
  2402. return 0;
  2403. /* once we have a candidate, try to find a 'better' one */
  2404. for (i = c + 1; i < num; i++) {
  2405. if (!p2p_supported_freq(wpa_s->global->p2p, freqs[i].freq))
  2406. continue;
  2407. /*
  2408. * 1. Infrastructure station interfaces have higher preference.
  2409. * 2. P2P Clients have higher preference.
  2410. * 3. All others.
  2411. */
  2412. if (freqs[i].flags & WPA_FREQ_USED_BY_INFRA_STATION) {
  2413. c = i;
  2414. break;
  2415. }
  2416. if ((freqs[i].flags & WPA_FREQ_USED_BY_P2P_CLIENT))
  2417. c = i;
  2418. }
  2419. return freqs[c].freq;
  2420. }
  2421. static u8 wpas_invitation_process(void *ctx, const u8 *sa, const u8 *bssid,
  2422. const u8 *go_dev_addr, const u8 *ssid,
  2423. size_t ssid_len, int *go, u8 *group_bssid,
  2424. int *force_freq, int persistent_group,
  2425. const struct p2p_channels *channels,
  2426. int dev_pw_id)
  2427. {
  2428. struct wpa_supplicant *wpa_s = ctx;
  2429. struct wpa_ssid *s;
  2430. struct wpa_used_freq_data *freqs;
  2431. struct wpa_supplicant *grp;
  2432. int best_freq;
  2433. if (!persistent_group) {
  2434. wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
  2435. " to join an active group (SSID: %s)",
  2436. MAC2STR(sa), wpa_ssid_txt(ssid, ssid_len));
  2437. if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
  2438. (os_memcmp(go_dev_addr, wpa_s->p2p_auth_invite, ETH_ALEN)
  2439. == 0 ||
  2440. os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0)) {
  2441. wpa_printf(MSG_DEBUG, "P2P: Accept previously "
  2442. "authorized invitation");
  2443. goto accept_inv;
  2444. }
  2445. #ifdef CONFIG_WPS_NFC
  2446. if (dev_pw_id >= 0 && wpa_s->p2p_nfc_tag_enabled &&
  2447. dev_pw_id == wpa_s->p2p_oob_dev_pw_id) {
  2448. wpa_printf(MSG_DEBUG, "P2P: Accept invitation based on local enabled NFC Tag");
  2449. wpa_s->p2p_wps_method = WPS_NFC;
  2450. wpa_s->pending_join_wps_method = WPS_NFC;
  2451. os_memcpy(wpa_s->pending_join_dev_addr,
  2452. go_dev_addr, ETH_ALEN);
  2453. os_memcpy(wpa_s->pending_join_iface_addr,
  2454. bssid, ETH_ALEN);
  2455. goto accept_inv;
  2456. }
  2457. #endif /* CONFIG_WPS_NFC */
  2458. /*
  2459. * Do not accept the invitation automatically; notify user and
  2460. * request approval.
  2461. */
  2462. return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
  2463. }
  2464. grp = wpas_get_p2p_group(wpa_s, ssid, ssid_len, go);
  2465. if (grp) {
  2466. wpa_printf(MSG_DEBUG, "P2P: Accept invitation to already "
  2467. "running persistent group");
  2468. if (*go)
  2469. os_memcpy(group_bssid, grp->own_addr, ETH_ALEN);
  2470. goto accept_inv;
  2471. }
  2472. if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
  2473. os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0) {
  2474. wpa_printf(MSG_DEBUG, "P2P: Accept previously initiated "
  2475. "invitation to re-invoke a persistent group");
  2476. os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
  2477. } else if (!wpa_s->conf->persistent_reconnect)
  2478. return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
  2479. for (s = wpa_s->conf->ssid; s; s = s->next) {
  2480. if (s->disabled == 2 &&
  2481. os_memcmp(s->bssid, go_dev_addr, ETH_ALEN) == 0 &&
  2482. s->ssid_len == ssid_len &&
  2483. os_memcmp(ssid, s->ssid, ssid_len) == 0)
  2484. break;
  2485. }
  2486. if (!s) {
  2487. wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
  2488. " requested reinvocation of an unknown group",
  2489. MAC2STR(sa));
  2490. return P2P_SC_FAIL_UNKNOWN_GROUP;
  2491. }
  2492. if (s->mode == WPAS_MODE_P2P_GO && !wpas_p2p_create_iface(wpa_s)) {
  2493. *go = 1;
  2494. if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
  2495. wpa_printf(MSG_DEBUG, "P2P: The only available "
  2496. "interface is already in use - reject "
  2497. "invitation");
  2498. return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
  2499. }
  2500. if (wpa_s->p2p_mgmt)
  2501. os_memcpy(group_bssid, wpa_s->parent->own_addr,
  2502. ETH_ALEN);
  2503. else
  2504. os_memcpy(group_bssid, wpa_s->own_addr, ETH_ALEN);
  2505. } else if (s->mode == WPAS_MODE_P2P_GO) {
  2506. *go = 1;
  2507. if (wpas_p2p_add_group_interface(wpa_s, WPA_IF_P2P_GO) < 0)
  2508. {
  2509. wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
  2510. "interface address for the group");
  2511. return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
  2512. }
  2513. os_memcpy(group_bssid, wpa_s->pending_interface_addr,
  2514. ETH_ALEN);
  2515. }
  2516. accept_inv:
  2517. wpas_p2p_set_own_freq_preference(wpa_s, 0);
  2518. best_freq = 0;
  2519. freqs = os_calloc(wpa_s->num_multichan_concurrent,
  2520. sizeof(struct wpa_used_freq_data));
  2521. if (freqs) {
  2522. int num_channels = wpa_s->num_multichan_concurrent;
  2523. int num = wpas_p2p_valid_oper_freqs(wpa_s, freqs, num_channels);
  2524. best_freq = wpas_p2p_pick_best_used_freq(wpa_s, freqs, num);
  2525. os_free(freqs);
  2526. }
  2527. /* Get one of the frequencies currently in use */
  2528. if (best_freq > 0) {
  2529. wpa_printf(MSG_DEBUG, "P2P: Trying to prefer a channel already used by one of the interfaces");
  2530. wpas_p2p_set_own_freq_preference(wpa_s, best_freq);
  2531. if (wpa_s->num_multichan_concurrent < 2 ||
  2532. wpas_p2p_num_unused_channels(wpa_s) < 1) {
  2533. wpa_printf(MSG_DEBUG, "P2P: No extra channels available - trying to force channel to match a channel already used by one of the interfaces");
  2534. *force_freq = best_freq;
  2535. }
  2536. }
  2537. if (*force_freq > 0 && wpa_s->num_multichan_concurrent > 1 &&
  2538. wpas_p2p_num_unused_channels(wpa_s) > 0) {
  2539. if (*go == 0) {
  2540. /* We are the client */
  2541. wpa_printf(MSG_DEBUG, "P2P: Peer was found to be "
  2542. "running a GO but we are capable of MCC, "
  2543. "figure out the best channel to use");
  2544. *force_freq = 0;
  2545. } else if (!freq_included(wpa_s, channels, *force_freq)) {
  2546. /* We are the GO, and *force_freq is not in the
  2547. * intersection */
  2548. wpa_printf(MSG_DEBUG, "P2P: Forced GO freq %d MHz not "
  2549. "in intersection but we are capable of MCC, "
  2550. "figure out the best channel to use",
  2551. *force_freq);
  2552. *force_freq = 0;
  2553. }
  2554. }
  2555. return P2P_SC_SUCCESS;
  2556. }
  2557. static void wpas_invitation_received(void *ctx, const u8 *sa, const u8 *bssid,
  2558. const u8 *ssid, size_t ssid_len,
  2559. const u8 *go_dev_addr, u8 status,
  2560. int op_freq)
  2561. {
  2562. struct wpa_supplicant *wpa_s = ctx;
  2563. struct wpa_ssid *s;
  2564. for (s = wpa_s->conf->ssid; s; s = s->next) {
  2565. if (s->disabled == 2 &&
  2566. s->ssid_len == ssid_len &&
  2567. os_memcmp(ssid, s->ssid, ssid_len) == 0)
  2568. break;
  2569. }
  2570. if (status == P2P_SC_SUCCESS) {
  2571. wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
  2572. " was accepted; op_freq=%d MHz, SSID=%s",
  2573. MAC2STR(sa), op_freq, wpa_ssid_txt(ssid, ssid_len));
  2574. if (s) {
  2575. int go = s->mode == WPAS_MODE_P2P_GO;
  2576. if (go) {
  2577. wpa_msg_global(wpa_s, MSG_INFO,
  2578. P2P_EVENT_INVITATION_ACCEPTED
  2579. "sa=" MACSTR
  2580. " persistent=%d freq=%d",
  2581. MAC2STR(sa), s->id, op_freq);
  2582. } else {
  2583. wpa_msg_global(wpa_s, MSG_INFO,
  2584. P2P_EVENT_INVITATION_ACCEPTED
  2585. "sa=" MACSTR
  2586. " persistent=%d",
  2587. MAC2STR(sa), s->id);
  2588. }
  2589. wpas_p2p_group_add_persistent(
  2590. wpa_s, s, go, 0, op_freq, 0, 0, 0, 0, NULL,
  2591. go ? P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE : 0,
  2592. 1);
  2593. } else if (bssid) {
  2594. wpa_s->user_initiated_pd = 0;
  2595. wpa_msg_global(wpa_s, MSG_INFO,
  2596. P2P_EVENT_INVITATION_ACCEPTED
  2597. "sa=" MACSTR " go_dev_addr=" MACSTR
  2598. " bssid=" MACSTR " unknown-network",
  2599. MAC2STR(sa), MAC2STR(go_dev_addr),
  2600. MAC2STR(bssid));
  2601. wpas_p2p_join(wpa_s, bssid, go_dev_addr,
  2602. wpa_s->p2p_wps_method, 0, op_freq,
  2603. ssid, ssid_len);
  2604. }
  2605. return;
  2606. }
  2607. if (status != P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
  2608. wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
  2609. " was rejected (status %u)", MAC2STR(sa), status);
  2610. return;
  2611. }
  2612. if (!s) {
  2613. if (bssid) {
  2614. wpa_msg_global(wpa_s, MSG_INFO,
  2615. P2P_EVENT_INVITATION_RECEIVED
  2616. "sa=" MACSTR " go_dev_addr=" MACSTR
  2617. " bssid=" MACSTR " unknown-network",
  2618. MAC2STR(sa), MAC2STR(go_dev_addr),
  2619. MAC2STR(bssid));
  2620. } else {
  2621. wpa_msg_global(wpa_s, MSG_INFO,
  2622. P2P_EVENT_INVITATION_RECEIVED
  2623. "sa=" MACSTR " go_dev_addr=" MACSTR
  2624. " unknown-network",
  2625. MAC2STR(sa), MAC2STR(go_dev_addr));
  2626. }
  2627. wpas_notify_p2p_invitation_received(wpa_s, sa, go_dev_addr,
  2628. bssid, 0, op_freq);
  2629. return;
  2630. }
  2631. if (s->mode == WPAS_MODE_P2P_GO && op_freq) {
  2632. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
  2633. "sa=" MACSTR " persistent=%d freq=%d",
  2634. MAC2STR(sa), s->id, op_freq);
  2635. } else {
  2636. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
  2637. "sa=" MACSTR " persistent=%d",
  2638. MAC2STR(sa), s->id);
  2639. }
  2640. wpas_notify_p2p_invitation_received(wpa_s, sa, go_dev_addr, bssid,
  2641. s->id, op_freq);
  2642. }
  2643. static void wpas_remove_persistent_peer(struct wpa_supplicant *wpa_s,
  2644. struct wpa_ssid *ssid,
  2645. const u8 *peer, int inv)
  2646. {
  2647. size_t i;
  2648. struct wpa_supplicant *p2p_wpa_s = wpa_s->global->p2p_init_wpa_s;
  2649. if (ssid == NULL)
  2650. return;
  2651. for (i = 0; ssid->p2p_client_list && i < ssid->num_p2p_clients; i++) {
  2652. if (os_memcmp(ssid->p2p_client_list + i * 2 * ETH_ALEN, peer,
  2653. ETH_ALEN) == 0)
  2654. break;
  2655. }
  2656. if (i >= ssid->num_p2p_clients || !ssid->p2p_client_list) {
  2657. if (ssid->mode != WPAS_MODE_P2P_GO &&
  2658. os_memcmp(ssid->bssid, peer, ETH_ALEN) == 0) {
  2659. wpa_printf(MSG_DEBUG, "P2P: Remove persistent group %d "
  2660. "due to invitation result", ssid->id);
  2661. wpas_notify_network_removed(wpa_s, ssid);
  2662. wpa_config_remove_network(wpa_s->conf, ssid->id);
  2663. return;
  2664. }
  2665. return; /* Peer not found in client list */
  2666. }
  2667. wpa_printf(MSG_DEBUG, "P2P: Remove peer " MACSTR " from persistent "
  2668. "group %d client list%s",
  2669. MAC2STR(peer), ssid->id,
  2670. inv ? " due to invitation result" : "");
  2671. os_memmove(ssid->p2p_client_list + i * 2 * ETH_ALEN,
  2672. ssid->p2p_client_list + (i + 1) * 2 * ETH_ALEN,
  2673. (ssid->num_p2p_clients - i - 1) * 2 * ETH_ALEN);
  2674. ssid->num_p2p_clients--;
  2675. if (p2p_wpa_s->conf->update_config &&
  2676. wpa_config_write(p2p_wpa_s->confname, p2p_wpa_s->conf))
  2677. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  2678. }
  2679. static void wpas_remove_persistent_client(struct wpa_supplicant *wpa_s,
  2680. const u8 *peer)
  2681. {
  2682. struct wpa_ssid *ssid;
  2683. wpa_s = wpa_s->global->p2p_invite_group;
  2684. if (wpa_s == NULL)
  2685. return; /* No known invitation group */
  2686. ssid = wpa_s->current_ssid;
  2687. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
  2688. !ssid->p2p_persistent_group)
  2689. return; /* Not operating as a GO in persistent group */
  2690. ssid = wpas_p2p_get_persistent(wpa_s->p2pdev, peer,
  2691. ssid->ssid, ssid->ssid_len);
  2692. wpas_remove_persistent_peer(wpa_s, ssid, peer, 1);
  2693. }
  2694. static void wpas_invitation_result(void *ctx, int status, const u8 *bssid,
  2695. const struct p2p_channels *channels,
  2696. const u8 *peer, int neg_freq,
  2697. int peer_oper_freq)
  2698. {
  2699. struct wpa_supplicant *wpa_s = ctx;
  2700. struct wpa_ssid *ssid;
  2701. int freq;
  2702. if (bssid) {
  2703. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
  2704. "status=%d " MACSTR,
  2705. status, MAC2STR(bssid));
  2706. } else {
  2707. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
  2708. "status=%d ", status);
  2709. }
  2710. wpas_notify_p2p_invitation_result(wpa_s, status, bssid);
  2711. wpa_printf(MSG_DEBUG, "P2P: Invitation result - status=%d peer=" MACSTR,
  2712. status, MAC2STR(peer));
  2713. if (wpa_s->pending_invite_ssid_id == -1) {
  2714. struct wpa_supplicant *group_if =
  2715. wpa_s->global->p2p_invite_group;
  2716. if (status == P2P_SC_FAIL_UNKNOWN_GROUP)
  2717. wpas_remove_persistent_client(wpa_s, peer);
  2718. /*
  2719. * Invitation to an active group. If this is successful and we
  2720. * are the GO, set the client wait to postpone some concurrent
  2721. * operations and to allow provisioning and connection to happen
  2722. * more quickly.
  2723. */
  2724. if (status == P2P_SC_SUCCESS &&
  2725. group_if && group_if->current_ssid &&
  2726. group_if->current_ssid->mode == WPAS_MODE_P2P_GO) {
  2727. os_get_reltime(&wpa_s->global->p2p_go_wait_client);
  2728. #ifdef CONFIG_TESTING_OPTIONS
  2729. if (group_if->p2p_go_csa_on_inv) {
  2730. wpa_printf(MSG_DEBUG,
  2731. "Testing: force P2P GO CSA after invitation");
  2732. eloop_cancel_timeout(
  2733. wpas_p2p_reconsider_moving_go,
  2734. wpa_s, NULL);
  2735. eloop_register_timeout(
  2736. 0, 50000,
  2737. wpas_p2p_reconsider_moving_go,
  2738. wpa_s, NULL);
  2739. }
  2740. #endif /* CONFIG_TESTING_OPTIONS */
  2741. }
  2742. return;
  2743. }
  2744. if (status == P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
  2745. wpa_printf(MSG_DEBUG, "P2P: Waiting for peer to start another "
  2746. "invitation exchange to indicate readiness for "
  2747. "re-invocation");
  2748. }
  2749. if (status != P2P_SC_SUCCESS) {
  2750. if (status == P2P_SC_FAIL_UNKNOWN_GROUP) {
  2751. ssid = wpa_config_get_network(
  2752. wpa_s->conf, wpa_s->pending_invite_ssid_id);
  2753. wpas_remove_persistent_peer(wpa_s, ssid, peer, 1);
  2754. }
  2755. wpas_p2p_remove_pending_group_interface(wpa_s);
  2756. return;
  2757. }
  2758. ssid = wpa_config_get_network(wpa_s->conf,
  2759. wpa_s->pending_invite_ssid_id);
  2760. if (ssid == NULL) {
  2761. wpa_printf(MSG_ERROR, "P2P: Could not find persistent group "
  2762. "data matching with invitation");
  2763. return;
  2764. }
  2765. /*
  2766. * The peer could have missed our ctrl::ack frame for Invitation
  2767. * Response and continue retransmitting the frame. To reduce the
  2768. * likelihood of the peer not getting successful TX status for the
  2769. * Invitation Response frame, wait a short time here before starting
  2770. * the persistent group so that we will remain on the current channel to
  2771. * acknowledge any possible retransmission from the peer.
  2772. */
  2773. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: 50 ms wait on current channel before "
  2774. "starting persistent group");
  2775. os_sleep(0, 50000);
  2776. if (neg_freq > 0 && ssid->mode == WPAS_MODE_P2P_GO &&
  2777. freq_included(wpa_s, channels, neg_freq))
  2778. freq = neg_freq;
  2779. else if (peer_oper_freq > 0 && ssid->mode != WPAS_MODE_P2P_GO &&
  2780. freq_included(wpa_s, channels, peer_oper_freq))
  2781. freq = peer_oper_freq;
  2782. else
  2783. freq = 0;
  2784. wpa_printf(MSG_DEBUG, "P2P: Persistent group invitation success - op_freq=%d MHz SSID=%s",
  2785. freq, wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  2786. wpas_p2p_group_add_persistent(wpa_s, ssid,
  2787. ssid->mode == WPAS_MODE_P2P_GO,
  2788. wpa_s->p2p_persistent_go_freq,
  2789. freq,
  2790. wpa_s->p2p_go_vht_center_freq2,
  2791. wpa_s->p2p_go_ht40, wpa_s->p2p_go_vht,
  2792. wpa_s->p2p_go_max_oper_chwidth,
  2793. channels,
  2794. ssid->mode == WPAS_MODE_P2P_GO ?
  2795. P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE :
  2796. 0, 1);
  2797. }
  2798. static int wpas_p2p_disallowed_freq(struct wpa_global *global,
  2799. unsigned int freq)
  2800. {
  2801. if (freq_range_list_includes(&global->p2p_go_avoid_freq, freq))
  2802. return 1;
  2803. return freq_range_list_includes(&global->p2p_disallow_freq, freq);
  2804. }
  2805. static void wpas_p2p_add_chan(struct p2p_reg_class *reg, u8 chan)
  2806. {
  2807. reg->channel[reg->channels] = chan;
  2808. reg->channels++;
  2809. }
  2810. static int wpas_p2p_default_channels(struct wpa_supplicant *wpa_s,
  2811. struct p2p_channels *chan,
  2812. struct p2p_channels *cli_chan)
  2813. {
  2814. int i, cla = 0;
  2815. wpa_s->global->p2p_24ghz_social_channels = 1;
  2816. os_memset(cli_chan, 0, sizeof(*cli_chan));
  2817. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for 2.4 GHz "
  2818. "band");
  2819. /* Operating class 81 - 2.4 GHz band channels 1..13 */
  2820. chan->reg_class[cla].reg_class = 81;
  2821. chan->reg_class[cla].channels = 0;
  2822. for (i = 0; i < 11; i++) {
  2823. if (!wpas_p2p_disallowed_freq(wpa_s->global, 2412 + i * 5))
  2824. wpas_p2p_add_chan(&chan->reg_class[cla], i + 1);
  2825. }
  2826. if (chan->reg_class[cla].channels)
  2827. cla++;
  2828. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for lower 5 GHz "
  2829. "band");
  2830. /* Operating class 115 - 5 GHz, channels 36-48 */
  2831. chan->reg_class[cla].reg_class = 115;
  2832. chan->reg_class[cla].channels = 0;
  2833. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 36 * 5))
  2834. wpas_p2p_add_chan(&chan->reg_class[cla], 36);
  2835. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 40 * 5))
  2836. wpas_p2p_add_chan(&chan->reg_class[cla], 40);
  2837. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 44 * 5))
  2838. wpas_p2p_add_chan(&chan->reg_class[cla], 44);
  2839. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 48 * 5))
  2840. wpas_p2p_add_chan(&chan->reg_class[cla], 48);
  2841. if (chan->reg_class[cla].channels)
  2842. cla++;
  2843. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for higher 5 GHz "
  2844. "band");
  2845. /* Operating class 124 - 5 GHz, channels 149,153,157,161 */
  2846. chan->reg_class[cla].reg_class = 124;
  2847. chan->reg_class[cla].channels = 0;
  2848. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 149 * 5))
  2849. wpas_p2p_add_chan(&chan->reg_class[cla], 149);
  2850. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 153 * 5))
  2851. wpas_p2p_add_chan(&chan->reg_class[cla], 153);
  2852. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 156 * 5))
  2853. wpas_p2p_add_chan(&chan->reg_class[cla], 157);
  2854. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 161 * 5))
  2855. wpas_p2p_add_chan(&chan->reg_class[cla], 161);
  2856. if (chan->reg_class[cla].channels)
  2857. cla++;
  2858. chan->reg_classes = cla;
  2859. return 0;
  2860. }
  2861. enum chan_allowed {
  2862. NOT_ALLOWED, NO_IR, ALLOWED
  2863. };
  2864. static int has_channel(struct wpa_global *global,
  2865. struct hostapd_hw_modes *mode, u8 chan, int *flags)
  2866. {
  2867. int i;
  2868. unsigned int freq;
  2869. freq = (mode->mode == HOSTAPD_MODE_IEEE80211A ? 5000 : 2407) +
  2870. chan * 5;
  2871. if (wpas_p2p_disallowed_freq(global, freq))
  2872. return NOT_ALLOWED;
  2873. for (i = 0; i < mode->num_channels; i++) {
  2874. if (mode->channels[i].chan == chan) {
  2875. if (flags)
  2876. *flags = mode->channels[i].flag;
  2877. if (mode->channels[i].flag &
  2878. (HOSTAPD_CHAN_DISABLED |
  2879. HOSTAPD_CHAN_RADAR))
  2880. return NOT_ALLOWED;
  2881. if (mode->channels[i].flag & HOSTAPD_CHAN_NO_IR)
  2882. return NO_IR;
  2883. return ALLOWED;
  2884. }
  2885. }
  2886. return NOT_ALLOWED;
  2887. }
  2888. static int wpas_p2p_get_center_80mhz(struct wpa_supplicant *wpa_s,
  2889. struct hostapd_hw_modes *mode,
  2890. u8 channel)
  2891. {
  2892. u8 center_channels[] = { 42, 58, 106, 122, 138, 155 };
  2893. unsigned int i;
  2894. if (mode->mode != HOSTAPD_MODE_IEEE80211A)
  2895. return 0;
  2896. for (i = 0; i < ARRAY_SIZE(center_channels); i++)
  2897. /*
  2898. * In 80 MHz, the bandwidth "spans" 12 channels (e.g., 36-48),
  2899. * so the center channel is 6 channels away from the start/end.
  2900. */
  2901. if (channel >= center_channels[i] - 6 &&
  2902. channel <= center_channels[i] + 6)
  2903. return center_channels[i];
  2904. return 0;
  2905. }
  2906. static enum chan_allowed wpas_p2p_verify_80mhz(struct wpa_supplicant *wpa_s,
  2907. struct hostapd_hw_modes *mode,
  2908. u8 channel, u8 bw)
  2909. {
  2910. u8 center_chan;
  2911. int i, flags;
  2912. enum chan_allowed res, ret = ALLOWED;
  2913. center_chan = wpas_p2p_get_center_80mhz(wpa_s, mode, channel);
  2914. if (!center_chan)
  2915. return NOT_ALLOWED;
  2916. if (center_chan >= 58 && center_chan <= 138)
  2917. return NOT_ALLOWED; /* Do not allow DFS channels for P2P */
  2918. /* check all the channels are available */
  2919. for (i = 0; i < 4; i++) {
  2920. int adj_chan = center_chan - 6 + i * 4;
  2921. res = has_channel(wpa_s->global, mode, adj_chan, &flags);
  2922. if (res == NOT_ALLOWED)
  2923. return NOT_ALLOWED;
  2924. if (res == NO_IR)
  2925. ret = NO_IR;
  2926. if (i == 0 && !(flags & HOSTAPD_CHAN_VHT_10_70))
  2927. return NOT_ALLOWED;
  2928. if (i == 1 && !(flags & HOSTAPD_CHAN_VHT_30_50))
  2929. return NOT_ALLOWED;
  2930. if (i == 2 && !(flags & HOSTAPD_CHAN_VHT_50_30))
  2931. return NOT_ALLOWED;
  2932. if (i == 3 && !(flags & HOSTAPD_CHAN_VHT_70_10))
  2933. return NOT_ALLOWED;
  2934. }
  2935. return ret;
  2936. }
  2937. static int wpas_p2p_get_center_160mhz(struct wpa_supplicant *wpa_s,
  2938. struct hostapd_hw_modes *mode,
  2939. u8 channel)
  2940. {
  2941. u8 center_channels[] = { 50, 114 };
  2942. unsigned int i;
  2943. if (mode->mode != HOSTAPD_MODE_IEEE80211A)
  2944. return 0;
  2945. for (i = 0; i < ARRAY_SIZE(center_channels); i++)
  2946. /*
  2947. * In 160 MHz, the bandwidth "spans" 28 channels (e.g., 36-64),
  2948. * so the center channel is 14 channels away from the start/end.
  2949. */
  2950. if (channel >= center_channels[i] - 14 &&
  2951. channel <= center_channels[i] + 14)
  2952. return center_channels[i];
  2953. return 0;
  2954. }
  2955. static enum chan_allowed wpas_p2p_verify_160mhz(struct wpa_supplicant *wpa_s,
  2956. struct hostapd_hw_modes *mode,
  2957. u8 channel, u8 bw)
  2958. {
  2959. u8 center_chan;
  2960. int i, flags;
  2961. enum chan_allowed res, ret = ALLOWED;
  2962. center_chan = wpas_p2p_get_center_160mhz(wpa_s, mode, channel);
  2963. if (!center_chan)
  2964. return NOT_ALLOWED;
  2965. /* VHT 160 MHz uses DFS channels in most countries. */
  2966. /* Check all the channels are available */
  2967. for (i = 0; i < 8; i++) {
  2968. int adj_chan = center_chan - 14 + i * 4;
  2969. res = has_channel(wpa_s->global, mode, adj_chan, &flags);
  2970. if (res == NOT_ALLOWED)
  2971. return NOT_ALLOWED;
  2972. if (res == NO_IR)
  2973. ret = NO_IR;
  2974. if (i == 0 && !(flags & HOSTAPD_CHAN_VHT_10_150))
  2975. return NOT_ALLOWED;
  2976. if (i == 1 && !(flags & HOSTAPD_CHAN_VHT_30_130))
  2977. return NOT_ALLOWED;
  2978. if (i == 2 && !(flags & HOSTAPD_CHAN_VHT_50_110))
  2979. return NOT_ALLOWED;
  2980. if (i == 3 && !(flags & HOSTAPD_CHAN_VHT_70_90))
  2981. return NOT_ALLOWED;
  2982. if (i == 4 && !(flags & HOSTAPD_CHAN_VHT_90_70))
  2983. return NOT_ALLOWED;
  2984. if (i == 5 && !(flags & HOSTAPD_CHAN_VHT_110_50))
  2985. return NOT_ALLOWED;
  2986. if (i == 6 && !(flags & HOSTAPD_CHAN_VHT_130_30))
  2987. return NOT_ALLOWED;
  2988. if (i == 7 && !(flags & HOSTAPD_CHAN_VHT_150_10))
  2989. return NOT_ALLOWED;
  2990. }
  2991. return ret;
  2992. }
  2993. static enum chan_allowed wpas_p2p_verify_channel(struct wpa_supplicant *wpa_s,
  2994. struct hostapd_hw_modes *mode,
  2995. u8 channel, u8 bw)
  2996. {
  2997. int flag = 0;
  2998. enum chan_allowed res, res2;
  2999. res2 = res = has_channel(wpa_s->global, mode, channel, &flag);
  3000. if (bw == BW40MINUS) {
  3001. if (!(flag & HOSTAPD_CHAN_HT40MINUS))
  3002. return NOT_ALLOWED;
  3003. res2 = has_channel(wpa_s->global, mode, channel - 4, NULL);
  3004. } else if (bw == BW40PLUS) {
  3005. if (!(flag & HOSTAPD_CHAN_HT40PLUS))
  3006. return NOT_ALLOWED;
  3007. res2 = has_channel(wpa_s->global, mode, channel + 4, NULL);
  3008. } else if (bw == BW80) {
  3009. res2 = wpas_p2p_verify_80mhz(wpa_s, mode, channel, bw);
  3010. } else if (bw == BW160) {
  3011. res2 = wpas_p2p_verify_160mhz(wpa_s, mode, channel, bw);
  3012. }
  3013. if (res == NOT_ALLOWED || res2 == NOT_ALLOWED)
  3014. return NOT_ALLOWED;
  3015. if (res == NO_IR || res2 == NO_IR)
  3016. return NO_IR;
  3017. return res;
  3018. }
  3019. static int wpas_p2p_setup_channels(struct wpa_supplicant *wpa_s,
  3020. struct p2p_channels *chan,
  3021. struct p2p_channels *cli_chan)
  3022. {
  3023. struct hostapd_hw_modes *mode;
  3024. int cla, op, cli_cla;
  3025. if (wpa_s->hw.modes == NULL) {
  3026. wpa_printf(MSG_DEBUG, "P2P: Driver did not support fetching "
  3027. "of all supported channels; assume dualband "
  3028. "support");
  3029. return wpas_p2p_default_channels(wpa_s, chan, cli_chan);
  3030. }
  3031. cla = cli_cla = 0;
  3032. for (op = 0; global_op_class[op].op_class; op++) {
  3033. const struct oper_class_map *o = &global_op_class[op];
  3034. u8 ch;
  3035. struct p2p_reg_class *reg = NULL, *cli_reg = NULL;
  3036. if (o->p2p == NO_P2P_SUPP)
  3037. continue;
  3038. mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, o->mode);
  3039. if (mode == NULL)
  3040. continue;
  3041. if (mode->mode == HOSTAPD_MODE_IEEE80211G)
  3042. wpa_s->global->p2p_24ghz_social_channels = 1;
  3043. for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
  3044. enum chan_allowed res;
  3045. res = wpas_p2p_verify_channel(wpa_s, mode, ch, o->bw);
  3046. if (res == ALLOWED) {
  3047. if (reg == NULL) {
  3048. wpa_printf(MSG_DEBUG, "P2P: Add operating class %u",
  3049. o->op_class);
  3050. reg = &chan->reg_class[cla];
  3051. cla++;
  3052. reg->reg_class = o->op_class;
  3053. }
  3054. reg->channel[reg->channels] = ch;
  3055. reg->channels++;
  3056. } else if (res == NO_IR &&
  3057. wpa_s->conf->p2p_add_cli_chan) {
  3058. if (cli_reg == NULL) {
  3059. wpa_printf(MSG_DEBUG, "P2P: Add operating class %u (client only)",
  3060. o->op_class);
  3061. cli_reg = &cli_chan->reg_class[cli_cla];
  3062. cli_cla++;
  3063. cli_reg->reg_class = o->op_class;
  3064. }
  3065. cli_reg->channel[cli_reg->channels] = ch;
  3066. cli_reg->channels++;
  3067. }
  3068. }
  3069. if (reg) {
  3070. wpa_hexdump(MSG_DEBUG, "P2P: Channels",
  3071. reg->channel, reg->channels);
  3072. }
  3073. if (cli_reg) {
  3074. wpa_hexdump(MSG_DEBUG, "P2P: Channels (client only)",
  3075. cli_reg->channel, cli_reg->channels);
  3076. }
  3077. }
  3078. chan->reg_classes = cla;
  3079. cli_chan->reg_classes = cli_cla;
  3080. return 0;
  3081. }
  3082. int wpas_p2p_get_ht40_mode(struct wpa_supplicant *wpa_s,
  3083. struct hostapd_hw_modes *mode, u8 channel)
  3084. {
  3085. int op;
  3086. enum chan_allowed ret;
  3087. for (op = 0; global_op_class[op].op_class; op++) {
  3088. const struct oper_class_map *o = &global_op_class[op];
  3089. u8 ch;
  3090. if (o->p2p == NO_P2P_SUPP)
  3091. continue;
  3092. for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
  3093. if (o->mode != HOSTAPD_MODE_IEEE80211A ||
  3094. (o->bw != BW40PLUS && o->bw != BW40MINUS) ||
  3095. ch != channel)
  3096. continue;
  3097. ret = wpas_p2p_verify_channel(wpa_s, mode, ch, o->bw);
  3098. if (ret == ALLOWED)
  3099. return (o->bw == BW40MINUS) ? -1 : 1;
  3100. }
  3101. }
  3102. return 0;
  3103. }
  3104. int wpas_p2p_get_vht80_center(struct wpa_supplicant *wpa_s,
  3105. struct hostapd_hw_modes *mode, u8 channel)
  3106. {
  3107. if (!wpas_p2p_verify_channel(wpa_s, mode, channel, BW80))
  3108. return 0;
  3109. return wpas_p2p_get_center_80mhz(wpa_s, mode, channel);
  3110. }
  3111. int wpas_p2p_get_vht160_center(struct wpa_supplicant *wpa_s,
  3112. struct hostapd_hw_modes *mode, u8 channel)
  3113. {
  3114. if (!wpas_p2p_verify_channel(wpa_s, mode, channel, BW160))
  3115. return 0;
  3116. return wpas_p2p_get_center_160mhz(wpa_s, mode, channel);
  3117. }
  3118. static int wpas_get_noa(void *ctx, const u8 *interface_addr, u8 *buf,
  3119. size_t buf_len)
  3120. {
  3121. struct wpa_supplicant *wpa_s = ctx;
  3122. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  3123. if (os_memcmp(wpa_s->own_addr, interface_addr, ETH_ALEN) == 0)
  3124. break;
  3125. }
  3126. if (wpa_s == NULL)
  3127. return -1;
  3128. return wpa_drv_get_noa(wpa_s, buf, buf_len);
  3129. }
  3130. struct wpa_supplicant * wpas_get_p2p_go_iface(struct wpa_supplicant *wpa_s,
  3131. const u8 *ssid, size_t ssid_len)
  3132. {
  3133. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  3134. struct wpa_ssid *s = wpa_s->current_ssid;
  3135. if (s == NULL)
  3136. continue;
  3137. if (s->mode != WPAS_MODE_P2P_GO &&
  3138. s->mode != WPAS_MODE_AP &&
  3139. s->mode != WPAS_MODE_P2P_GROUP_FORMATION)
  3140. continue;
  3141. if (s->ssid_len != ssid_len ||
  3142. os_memcmp(ssid, s->ssid, ssid_len) != 0)
  3143. continue;
  3144. return wpa_s;
  3145. }
  3146. return NULL;
  3147. }
  3148. struct wpa_supplicant * wpas_get_p2p_client_iface(struct wpa_supplicant *wpa_s,
  3149. const u8 *peer_dev_addr)
  3150. {
  3151. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  3152. struct wpa_ssid *ssid = wpa_s->current_ssid;
  3153. if (ssid && (ssid->mode != WPAS_MODE_INFRA || !ssid->p2p_group))
  3154. continue;
  3155. if (os_memcmp(wpa_s->go_dev_addr, peer_dev_addr, ETH_ALEN) == 0)
  3156. return wpa_s;
  3157. }
  3158. return NULL;
  3159. }
  3160. static int wpas_go_connected(void *ctx, const u8 *dev_addr)
  3161. {
  3162. struct wpa_supplicant *wpa_s = ctx;
  3163. return wpas_get_p2p_client_iface(wpa_s, dev_addr) != NULL;
  3164. }
  3165. static int wpas_is_concurrent_session_active(void *ctx)
  3166. {
  3167. struct wpa_supplicant *wpa_s = ctx;
  3168. struct wpa_supplicant *ifs;
  3169. for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
  3170. if (ifs == wpa_s)
  3171. continue;
  3172. if (ifs->wpa_state > WPA_ASSOCIATED)
  3173. return 1;
  3174. }
  3175. return 0;
  3176. }
  3177. static void wpas_p2p_debug_print(void *ctx, int level, const char *msg)
  3178. {
  3179. struct wpa_supplicant *wpa_s = ctx;
  3180. wpa_msg_global(wpa_s, level, "P2P: %s", msg);
  3181. }
  3182. int wpas_p2p_add_p2pdev_interface(struct wpa_supplicant *wpa_s,
  3183. const char *conf_p2p_dev)
  3184. {
  3185. struct wpa_interface iface;
  3186. struct wpa_supplicant *p2pdev_wpa_s;
  3187. char ifname[100];
  3188. char force_name[100];
  3189. int ret;
  3190. ret = os_snprintf(ifname, sizeof(ifname), P2P_MGMT_DEVICE_PREFIX "%s",
  3191. wpa_s->ifname);
  3192. if (os_snprintf_error(sizeof(ifname), ret))
  3193. return -1;
  3194. force_name[0] = '\0';
  3195. wpa_s->pending_interface_type = WPA_IF_P2P_DEVICE;
  3196. ret = wpa_drv_if_add(wpa_s, WPA_IF_P2P_DEVICE, ifname, NULL, NULL,
  3197. force_name, wpa_s->pending_interface_addr, NULL);
  3198. if (ret < 0) {
  3199. wpa_printf(MSG_DEBUG, "P2P: Failed to create P2P Device interface");
  3200. return ret;
  3201. }
  3202. os_strlcpy(wpa_s->pending_interface_name, ifname,
  3203. sizeof(wpa_s->pending_interface_name));
  3204. os_memset(&iface, 0, sizeof(iface));
  3205. iface.p2p_mgmt = 1;
  3206. iface.ifname = wpa_s->pending_interface_name;
  3207. iface.driver = wpa_s->driver->name;
  3208. iface.driver_param = wpa_s->conf->driver_param;
  3209. /*
  3210. * If a P2P Device configuration file was given, use it as the interface
  3211. * configuration file (instead of using parent's configuration file.
  3212. */
  3213. if (conf_p2p_dev) {
  3214. iface.confname = conf_p2p_dev;
  3215. iface.ctrl_interface = NULL;
  3216. } else {
  3217. iface.confname = wpa_s->confname;
  3218. iface.ctrl_interface = wpa_s->conf->ctrl_interface;
  3219. }
  3220. p2pdev_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface, wpa_s);
  3221. if (!p2pdev_wpa_s) {
  3222. wpa_printf(MSG_DEBUG, "P2P: Failed to add P2P Device interface");
  3223. return -1;
  3224. }
  3225. p2pdev_wpa_s->p2pdev = p2pdev_wpa_s;
  3226. wpa_s->pending_interface_name[0] = '\0';
  3227. return 0;
  3228. }
  3229. static void wpas_presence_resp(void *ctx, const u8 *src, u8 status,
  3230. const u8 *noa, size_t noa_len)
  3231. {
  3232. struct wpa_supplicant *wpa_s, *intf = ctx;
  3233. char hex[100];
  3234. for (wpa_s = intf->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  3235. if (wpa_s->waiting_presence_resp)
  3236. break;
  3237. }
  3238. if (!wpa_s) {
  3239. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No group interface was waiting for presence response");
  3240. return;
  3241. }
  3242. wpa_s->waiting_presence_resp = 0;
  3243. wpa_snprintf_hex(hex, sizeof(hex), noa, noa_len);
  3244. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PRESENCE_RESPONSE "src=" MACSTR
  3245. " status=%u noa=%s", MAC2STR(src), status, hex);
  3246. }
  3247. static int wpas_get_persistent_group(void *ctx, const u8 *addr, const u8 *ssid,
  3248. size_t ssid_len, u8 *go_dev_addr,
  3249. u8 *ret_ssid, size_t *ret_ssid_len,
  3250. u8 *intended_iface_addr)
  3251. {
  3252. struct wpa_supplicant *wpa_s = ctx;
  3253. struct wpa_ssid *s;
  3254. s = wpas_p2p_get_persistent(wpa_s, addr, ssid, ssid_len);
  3255. if (s) {
  3256. os_memcpy(ret_ssid, s->ssid, s->ssid_len);
  3257. *ret_ssid_len = s->ssid_len;
  3258. os_memcpy(go_dev_addr, s->bssid, ETH_ALEN);
  3259. if (s->mode != WPAS_MODE_P2P_GO) {
  3260. os_memset(intended_iface_addr, 0, ETH_ALEN);
  3261. } else if (wpas_p2p_create_iface(wpa_s)) {
  3262. if (wpas_p2p_add_group_interface(wpa_s, WPA_IF_P2P_GO))
  3263. return 0;
  3264. os_memcpy(intended_iface_addr,
  3265. wpa_s->pending_interface_addr, ETH_ALEN);
  3266. } else {
  3267. os_memcpy(intended_iface_addr, wpa_s->own_addr,
  3268. ETH_ALEN);
  3269. }
  3270. return 1;
  3271. }
  3272. return 0;
  3273. }
  3274. static int wpas_get_go_info(void *ctx, u8 *intended_addr,
  3275. u8 *ssid, size_t *ssid_len, int *group_iface,
  3276. unsigned int *freq)
  3277. {
  3278. struct wpa_supplicant *wpa_s = ctx;
  3279. struct wpa_supplicant *go;
  3280. struct wpa_ssid *s;
  3281. /*
  3282. * group_iface will be set to 1 only if a dedicated interface for P2P
  3283. * role is required. First, we try to reuse an active GO. However,
  3284. * if it is not present, we will try to reactivate an existing
  3285. * persistent group and set group_iface to 1, so the caller will know
  3286. * that the pending interface should be used.
  3287. */
  3288. *group_iface = 0;
  3289. if (freq)
  3290. *freq = 0;
  3291. go = wpas_p2p_get_go_group(wpa_s);
  3292. if (!go) {
  3293. s = wpas_p2p_get_persistent_go(wpa_s);
  3294. *group_iface = wpas_p2p_create_iface(wpa_s);
  3295. if (s)
  3296. os_memcpy(intended_addr, s->bssid, ETH_ALEN);
  3297. else
  3298. return 0;
  3299. } else {
  3300. s = go->current_ssid;
  3301. os_memcpy(intended_addr, go->own_addr, ETH_ALEN);
  3302. if (freq)
  3303. *freq = go->assoc_freq;
  3304. }
  3305. os_memcpy(ssid, s->ssid, s->ssid_len);
  3306. *ssid_len = s->ssid_len;
  3307. return 1;
  3308. }
  3309. static int wpas_remove_stale_groups(void *ctx, const u8 *peer, const u8 *go,
  3310. const u8 *ssid, size_t ssid_len)
  3311. {
  3312. struct wpa_supplicant *wpa_s = ctx;
  3313. struct wpa_ssid *s;
  3314. int save_config = 0;
  3315. size_t i;
  3316. /* Start with our first choice of Persistent Groups */
  3317. while ((s = wpas_p2p_get_persistent(wpa_s, peer, NULL, 0))) {
  3318. if (go && ssid && ssid_len &&
  3319. s->ssid_len == ssid_len &&
  3320. os_memcmp(go, s->bssid, ETH_ALEN) == 0 &&
  3321. os_memcmp(ssid, s->ssid, ssid_len) == 0)
  3322. break;
  3323. /* Remove stale persistent group */
  3324. if (s->mode != WPAS_MODE_P2P_GO || s->num_p2p_clients <= 1) {
  3325. wpa_config_remove_network(wpa_s->conf, s->id);
  3326. save_config = 1;
  3327. continue;
  3328. }
  3329. for (i = 0; i < s->num_p2p_clients; i++) {
  3330. if (os_memcmp(s->p2p_client_list + i * 2 * ETH_ALEN,
  3331. peer, ETH_ALEN) != 0)
  3332. continue;
  3333. os_memmove(s->p2p_client_list + i * 2 * ETH_ALEN,
  3334. s->p2p_client_list + (i + 1) * 2 * ETH_ALEN,
  3335. (s->num_p2p_clients - i - 1) * 2 * ETH_ALEN);
  3336. break;
  3337. }
  3338. s->num_p2p_clients--;
  3339. save_config = 1;
  3340. }
  3341. if (save_config)
  3342. p2p_config_write(wpa_s);
  3343. /* Return TRUE if valid SSID remains */
  3344. return s != NULL;
  3345. }
  3346. static void wpas_p2ps_get_feat_cap_str(char *buf, size_t buf_len,
  3347. const u8 *feat_cap, size_t feat_cap_len)
  3348. {
  3349. static const char pref[] = " feature_cap=";
  3350. int ret;
  3351. buf[0] = '\0';
  3352. /*
  3353. * We expect a feature capability to contain at least one byte to be
  3354. * reported. The string buffer provided by the caller function is
  3355. * expected to be big enough to contain all bytes of the attribute for
  3356. * known specifications. This function truncates the reported bytes if
  3357. * the feature capability data exceeds the string buffer size.
  3358. */
  3359. if (!feat_cap || !feat_cap_len || buf_len < sizeof(pref) + 2)
  3360. return;
  3361. os_memcpy(buf, pref, sizeof(pref));
  3362. ret = wpa_snprintf_hex(&buf[sizeof(pref) - 1],
  3363. buf_len - sizeof(pref) + 1,
  3364. feat_cap, feat_cap_len);
  3365. if (ret != (2 * (int) feat_cap_len))
  3366. wpa_printf(MSG_WARNING, "P2PS feature_cap bytes truncated");
  3367. }
  3368. static void wpas_p2ps_prov_complete(void *ctx, u8 status, const u8 *dev,
  3369. const u8 *adv_mac, const u8 *ses_mac,
  3370. const u8 *grp_mac, u32 adv_id, u32 ses_id,
  3371. u8 conncap, int passwd_id,
  3372. const u8 *persist_ssid,
  3373. size_t persist_ssid_size, int response_done,
  3374. int prov_start, const char *session_info,
  3375. const u8 *feat_cap, size_t feat_cap_len,
  3376. unsigned int freq,
  3377. const u8 *group_ssid, size_t group_ssid_len)
  3378. {
  3379. struct wpa_supplicant *wpa_s = ctx;
  3380. u8 mac[ETH_ALEN];
  3381. struct wpa_ssid *persistent_go, *stale, *s = NULL;
  3382. int save_config = 0;
  3383. struct wpa_supplicant *go_wpa_s;
  3384. char feat_cap_str[256];
  3385. if (!dev)
  3386. return;
  3387. os_memset(mac, 0, ETH_ALEN);
  3388. if (!adv_mac)
  3389. adv_mac = mac;
  3390. if (!ses_mac)
  3391. ses_mac = mac;
  3392. if (!grp_mac)
  3393. grp_mac = mac;
  3394. wpas_p2ps_get_feat_cap_str(feat_cap_str, sizeof(feat_cap_str),
  3395. feat_cap, feat_cap_len);
  3396. if (prov_start) {
  3397. if (session_info == NULL) {
  3398. wpa_msg_global(wpa_s, MSG_INFO,
  3399. P2P_EVENT_P2PS_PROVISION_START MACSTR
  3400. " adv_id=%x conncap=%x"
  3401. " adv_mac=" MACSTR
  3402. " session=%x mac=" MACSTR
  3403. " dev_passwd_id=%d%s",
  3404. MAC2STR(dev), adv_id, conncap,
  3405. MAC2STR(adv_mac),
  3406. ses_id, MAC2STR(ses_mac),
  3407. passwd_id, feat_cap_str);
  3408. } else {
  3409. wpa_msg_global(wpa_s, MSG_INFO,
  3410. P2P_EVENT_P2PS_PROVISION_START MACSTR
  3411. " adv_id=%x conncap=%x"
  3412. " adv_mac=" MACSTR
  3413. " session=%x mac=" MACSTR
  3414. " dev_passwd_id=%d info='%s'%s",
  3415. MAC2STR(dev), adv_id, conncap,
  3416. MAC2STR(adv_mac),
  3417. ses_id, MAC2STR(ses_mac),
  3418. passwd_id, session_info, feat_cap_str);
  3419. }
  3420. return;
  3421. }
  3422. go_wpa_s = wpas_p2p_get_go_group(wpa_s);
  3423. persistent_go = wpas_p2p_get_persistent_go(wpa_s);
  3424. if (status && status != P2P_SC_SUCCESS_DEFERRED) {
  3425. if (go_wpa_s && !p2p_group_go_member_count(wpa_s))
  3426. wpas_p2p_group_remove(wpa_s, go_wpa_s->ifname);
  3427. if (persistent_go && !persistent_go->num_p2p_clients) {
  3428. /* remove empty persistent GO */
  3429. wpa_config_remove_network(wpa_s->conf,
  3430. persistent_go->id);
  3431. }
  3432. wpa_msg_global(wpa_s, MSG_INFO,
  3433. P2P_EVENT_P2PS_PROVISION_DONE MACSTR
  3434. " status=%d"
  3435. " adv_id=%x adv_mac=" MACSTR
  3436. " session=%x mac=" MACSTR "%s",
  3437. MAC2STR(dev), status,
  3438. adv_id, MAC2STR(adv_mac),
  3439. ses_id, MAC2STR(ses_mac), feat_cap_str);
  3440. return;
  3441. }
  3442. /* Clean up stale persistent groups with this device */
  3443. if (persist_ssid && persist_ssid_size)
  3444. s = wpas_p2p_get_persistent(wpa_s, dev, persist_ssid,
  3445. persist_ssid_size);
  3446. if (persist_ssid && s && s->mode != WPAS_MODE_P2P_GO &&
  3447. is_zero_ether_addr(grp_mac)) {
  3448. wpa_dbg(wpa_s, MSG_ERROR,
  3449. "P2P: Peer device is a GO in a persistent group, but it did not provide the intended MAC address");
  3450. return;
  3451. }
  3452. for (;;) {
  3453. stale = wpas_p2p_get_persistent(wpa_s, dev, NULL, 0);
  3454. if (!stale)
  3455. break;
  3456. if (s && s->ssid_len == stale->ssid_len &&
  3457. os_memcmp(stale->bssid, s->bssid, ETH_ALEN) == 0 &&
  3458. os_memcmp(stale->ssid, s->ssid, s->ssid_len) == 0)
  3459. break;
  3460. /* Remove stale persistent group */
  3461. if (stale->mode != WPAS_MODE_P2P_GO ||
  3462. stale->num_p2p_clients <= 1) {
  3463. wpa_config_remove_network(wpa_s->conf, stale->id);
  3464. } else {
  3465. size_t i;
  3466. for (i = 0; i < stale->num_p2p_clients; i++) {
  3467. if (os_memcmp(stale->p2p_client_list +
  3468. i * ETH_ALEN,
  3469. dev, ETH_ALEN) == 0) {
  3470. os_memmove(stale->p2p_client_list +
  3471. i * ETH_ALEN,
  3472. stale->p2p_client_list +
  3473. (i + 1) * ETH_ALEN,
  3474. (stale->num_p2p_clients -
  3475. i - 1) * ETH_ALEN);
  3476. break;
  3477. }
  3478. }
  3479. stale->num_p2p_clients--;
  3480. }
  3481. save_config = 1;
  3482. }
  3483. if (save_config)
  3484. p2p_config_write(wpa_s);
  3485. if (s) {
  3486. if (go_wpa_s && !p2p_group_go_member_count(wpa_s))
  3487. wpas_p2p_group_remove(wpa_s, go_wpa_s->ifname);
  3488. if (persistent_go && s != persistent_go &&
  3489. !persistent_go->num_p2p_clients) {
  3490. /* remove empty persistent GO */
  3491. wpa_config_remove_network(wpa_s->conf,
  3492. persistent_go->id);
  3493. /* Save config */
  3494. }
  3495. wpa_msg_global(wpa_s, MSG_INFO,
  3496. P2P_EVENT_P2PS_PROVISION_DONE MACSTR
  3497. " status=%d"
  3498. " adv_id=%x adv_mac=" MACSTR
  3499. " session=%x mac=" MACSTR
  3500. " persist=%d%s",
  3501. MAC2STR(dev), status,
  3502. adv_id, MAC2STR(adv_mac),
  3503. ses_id, MAC2STR(ses_mac), s->id, feat_cap_str);
  3504. return;
  3505. }
  3506. if (conncap == P2PS_SETUP_GROUP_OWNER) {
  3507. /*
  3508. * We need to copy the interface name. Simply saving a
  3509. * pointer isn't enough, since if we use pending_interface_name
  3510. * it will be overwritten when the group is added.
  3511. */
  3512. char go_ifname[100];
  3513. go_ifname[0] = '\0';
  3514. if (!go_wpa_s) {
  3515. wpa_s->global->pending_p2ps_group = 1;
  3516. wpa_s->global->pending_p2ps_group_freq = freq;
  3517. if (!wpas_p2p_create_iface(wpa_s))
  3518. os_memcpy(go_ifname, wpa_s->ifname,
  3519. sizeof(go_ifname));
  3520. else if (wpa_s->pending_interface_name[0])
  3521. os_memcpy(go_ifname,
  3522. wpa_s->pending_interface_name,
  3523. sizeof(go_ifname));
  3524. if (!go_ifname[0]) {
  3525. wpas_p2ps_prov_complete(
  3526. wpa_s, P2P_SC_FAIL_UNKNOWN_GROUP,
  3527. dev, adv_mac, ses_mac,
  3528. grp_mac, adv_id, ses_id, 0, 0,
  3529. NULL, 0, 0, 0, NULL, NULL, 0, 0,
  3530. NULL, 0);
  3531. return;
  3532. }
  3533. /* If PD Resp complete, start up the GO */
  3534. if (response_done && persistent_go) {
  3535. wpas_p2p_group_add_persistent(
  3536. wpa_s, persistent_go,
  3537. 0, 0, freq, 0, 0, 0, 0, NULL,
  3538. persistent_go->mode ==
  3539. WPAS_MODE_P2P_GO ?
  3540. P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE :
  3541. 0, 0);
  3542. } else if (response_done) {
  3543. wpas_p2p_group_add(wpa_s, 1, freq, 0, 0, 0, 0);
  3544. }
  3545. if (passwd_id == DEV_PW_P2PS_DEFAULT) {
  3546. os_memcpy(wpa_s->p2ps_join_addr, grp_mac,
  3547. ETH_ALEN);
  3548. wpa_s->p2ps_method_config_any = 1;
  3549. }
  3550. } else if (passwd_id == DEV_PW_P2PS_DEFAULT) {
  3551. os_memcpy(go_ifname, go_wpa_s->ifname,
  3552. sizeof(go_ifname));
  3553. if (is_zero_ether_addr(grp_mac)) {
  3554. wpa_dbg(go_wpa_s, MSG_DEBUG,
  3555. "P2P: Setting PIN-1 for ANY");
  3556. wpa_supplicant_ap_wps_pin(go_wpa_s, NULL,
  3557. "12345670", NULL, 0,
  3558. 0);
  3559. } else {
  3560. wpa_dbg(go_wpa_s, MSG_DEBUG,
  3561. "P2P: Setting PIN-1 for " MACSTR,
  3562. MAC2STR(grp_mac));
  3563. wpa_supplicant_ap_wps_pin(go_wpa_s, grp_mac,
  3564. "12345670", NULL, 0,
  3565. 0);
  3566. }
  3567. os_memcpy(wpa_s->p2ps_join_addr, grp_mac, ETH_ALEN);
  3568. wpa_s->p2ps_method_config_any = 1;
  3569. }
  3570. wpa_msg_global(wpa_s, MSG_INFO,
  3571. P2P_EVENT_P2PS_PROVISION_DONE MACSTR
  3572. " status=%d conncap=%x"
  3573. " adv_id=%x adv_mac=" MACSTR
  3574. " session=%x mac=" MACSTR
  3575. " dev_passwd_id=%d go=%s%s",
  3576. MAC2STR(dev), status, conncap,
  3577. adv_id, MAC2STR(adv_mac),
  3578. ses_id, MAC2STR(ses_mac),
  3579. passwd_id, go_ifname, feat_cap_str);
  3580. return;
  3581. }
  3582. if (go_wpa_s && !p2p_group_go_member_count(wpa_s))
  3583. wpas_p2p_group_remove(wpa_s, go_wpa_s->ifname);
  3584. if (persistent_go && !persistent_go->num_p2p_clients) {
  3585. /* remove empty persistent GO */
  3586. wpa_config_remove_network(wpa_s->conf, persistent_go->id);
  3587. }
  3588. if (conncap == P2PS_SETUP_CLIENT) {
  3589. char ssid_hex[32 * 2 + 1];
  3590. if (group_ssid)
  3591. wpa_snprintf_hex(ssid_hex, sizeof(ssid_hex),
  3592. group_ssid, group_ssid_len);
  3593. else
  3594. ssid_hex[0] = '\0';
  3595. wpa_msg_global(wpa_s, MSG_INFO,
  3596. P2P_EVENT_P2PS_PROVISION_DONE MACSTR
  3597. " status=%d conncap=%x"
  3598. " adv_id=%x adv_mac=" MACSTR
  3599. " session=%x mac=" MACSTR
  3600. " dev_passwd_id=%d join=" MACSTR "%s%s%s",
  3601. MAC2STR(dev), status, conncap,
  3602. adv_id, MAC2STR(adv_mac),
  3603. ses_id, MAC2STR(ses_mac),
  3604. passwd_id, MAC2STR(grp_mac), feat_cap_str,
  3605. group_ssid ? " group_ssid=" : "", ssid_hex);
  3606. } else {
  3607. wpa_msg_global(wpa_s, MSG_INFO,
  3608. P2P_EVENT_P2PS_PROVISION_DONE MACSTR
  3609. " status=%d conncap=%x"
  3610. " adv_id=%x adv_mac=" MACSTR
  3611. " session=%x mac=" MACSTR
  3612. " dev_passwd_id=%d%s",
  3613. MAC2STR(dev), status, conncap,
  3614. adv_id, MAC2STR(adv_mac),
  3615. ses_id, MAC2STR(ses_mac),
  3616. passwd_id, feat_cap_str);
  3617. }
  3618. }
  3619. static int _wpas_p2p_in_progress(void *ctx)
  3620. {
  3621. struct wpa_supplicant *wpa_s = ctx;
  3622. return wpas_p2p_in_progress(wpa_s);
  3623. }
  3624. static int wpas_prov_disc_resp_cb(void *ctx)
  3625. {
  3626. struct wpa_supplicant *wpa_s = ctx;
  3627. struct wpa_ssid *persistent_go;
  3628. unsigned int freq;
  3629. if (!wpa_s->global->pending_p2ps_group)
  3630. return 0;
  3631. freq = wpa_s->global->pending_p2ps_group_freq;
  3632. wpa_s->global->pending_p2ps_group_freq = 0;
  3633. wpa_s->global->pending_p2ps_group = 0;
  3634. if (wpas_p2p_get_go_group(wpa_s))
  3635. return 0;
  3636. persistent_go = wpas_p2p_get_persistent_go(wpa_s);
  3637. if (persistent_go) {
  3638. wpas_p2p_group_add_persistent(
  3639. wpa_s, persistent_go, 0, 0, 0, 0, 0, 0, 0, NULL,
  3640. persistent_go->mode == WPAS_MODE_P2P_GO ?
  3641. P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE : 0, 0);
  3642. } else {
  3643. wpas_p2p_group_add(wpa_s, 1, freq, 0, 0, 0, 0);
  3644. }
  3645. return 1;
  3646. }
  3647. static int wpas_p2p_get_pref_freq_list(void *ctx, int go,
  3648. unsigned int *len,
  3649. unsigned int *freq_list)
  3650. {
  3651. struct wpa_supplicant *wpa_s = ctx;
  3652. return wpa_drv_get_pref_freq_list(wpa_s, go ? WPA_IF_P2P_GO :
  3653. WPA_IF_P2P_CLIENT, len, freq_list);
  3654. }
  3655. /**
  3656. * wpas_p2p_init - Initialize P2P module for %wpa_supplicant
  3657. * @global: Pointer to global data from wpa_supplicant_init()
  3658. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3659. * Returns: 0 on success, -1 on failure
  3660. */
  3661. int wpas_p2p_init(struct wpa_global *global, struct wpa_supplicant *wpa_s)
  3662. {
  3663. struct p2p_config p2p;
  3664. int i;
  3665. if (wpa_s->conf->p2p_disabled)
  3666. return 0;
  3667. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
  3668. return 0;
  3669. if (global->p2p)
  3670. return 0;
  3671. os_memset(&p2p, 0, sizeof(p2p));
  3672. p2p.cb_ctx = wpa_s;
  3673. p2p.debug_print = wpas_p2p_debug_print;
  3674. p2p.p2p_scan = wpas_p2p_scan;
  3675. p2p.send_action = wpas_send_action;
  3676. p2p.send_action_done = wpas_send_action_done;
  3677. p2p.go_neg_completed = wpas_go_neg_completed;
  3678. p2p.go_neg_req_rx = wpas_go_neg_req_rx;
  3679. p2p.dev_found = wpas_dev_found;
  3680. p2p.dev_lost = wpas_dev_lost;
  3681. p2p.find_stopped = wpas_find_stopped;
  3682. p2p.start_listen = wpas_start_listen;
  3683. p2p.stop_listen = wpas_stop_listen;
  3684. p2p.send_probe_resp = wpas_send_probe_resp;
  3685. p2p.sd_request = wpas_sd_request;
  3686. p2p.sd_response = wpas_sd_response;
  3687. p2p.prov_disc_req = wpas_prov_disc_req;
  3688. p2p.prov_disc_resp = wpas_prov_disc_resp;
  3689. p2p.prov_disc_fail = wpas_prov_disc_fail;
  3690. p2p.invitation_process = wpas_invitation_process;
  3691. p2p.invitation_received = wpas_invitation_received;
  3692. p2p.invitation_result = wpas_invitation_result;
  3693. p2p.get_noa = wpas_get_noa;
  3694. p2p.go_connected = wpas_go_connected;
  3695. p2p.presence_resp = wpas_presence_resp;
  3696. p2p.is_concurrent_session_active = wpas_is_concurrent_session_active;
  3697. p2p.is_p2p_in_progress = _wpas_p2p_in_progress;
  3698. p2p.get_persistent_group = wpas_get_persistent_group;
  3699. p2p.get_go_info = wpas_get_go_info;
  3700. p2p.remove_stale_groups = wpas_remove_stale_groups;
  3701. p2p.p2ps_prov_complete = wpas_p2ps_prov_complete;
  3702. p2p.prov_disc_resp_cb = wpas_prov_disc_resp_cb;
  3703. p2p.p2ps_group_capability = p2ps_group_capability;
  3704. p2p.get_pref_freq_list = wpas_p2p_get_pref_freq_list;
  3705. os_memcpy(wpa_s->global->p2p_dev_addr, wpa_s->own_addr, ETH_ALEN);
  3706. os_memcpy(p2p.dev_addr, wpa_s->global->p2p_dev_addr, ETH_ALEN);
  3707. p2p.dev_name = wpa_s->conf->device_name;
  3708. p2p.manufacturer = wpa_s->conf->manufacturer;
  3709. p2p.model_name = wpa_s->conf->model_name;
  3710. p2p.model_number = wpa_s->conf->model_number;
  3711. p2p.serial_number = wpa_s->conf->serial_number;
  3712. if (wpa_s->wps) {
  3713. os_memcpy(p2p.uuid, wpa_s->wps->uuid, 16);
  3714. p2p.config_methods = wpa_s->wps->config_methods;
  3715. }
  3716. if (wpas_p2p_setup_channels(wpa_s, &p2p.channels, &p2p.cli_channels)) {
  3717. wpa_printf(MSG_ERROR,
  3718. "P2P: Failed to configure supported channel list");
  3719. return -1;
  3720. }
  3721. if (wpa_s->conf->p2p_listen_reg_class &&
  3722. wpa_s->conf->p2p_listen_channel) {
  3723. p2p.reg_class = wpa_s->conf->p2p_listen_reg_class;
  3724. p2p.channel = wpa_s->conf->p2p_listen_channel;
  3725. p2p.channel_forced = 1;
  3726. } else {
  3727. /*
  3728. * Pick one of the social channels randomly as the listen
  3729. * channel.
  3730. */
  3731. if (p2p_config_get_random_social(&p2p, &p2p.reg_class,
  3732. &p2p.channel) != 0) {
  3733. wpa_printf(MSG_INFO,
  3734. "P2P: No social channels supported by the driver - do not enable P2P");
  3735. return 0;
  3736. }
  3737. p2p.channel_forced = 0;
  3738. }
  3739. wpa_printf(MSG_DEBUG, "P2P: Own listen channel: %d:%d",
  3740. p2p.reg_class, p2p.channel);
  3741. if (wpa_s->conf->p2p_oper_reg_class &&
  3742. wpa_s->conf->p2p_oper_channel) {
  3743. p2p.op_reg_class = wpa_s->conf->p2p_oper_reg_class;
  3744. p2p.op_channel = wpa_s->conf->p2p_oper_channel;
  3745. p2p.cfg_op_channel = 1;
  3746. wpa_printf(MSG_DEBUG, "P2P: Configured operating channel: "
  3747. "%d:%d", p2p.op_reg_class, p2p.op_channel);
  3748. } else {
  3749. /*
  3750. * Use random operation channel from 2.4 GHz band social
  3751. * channels (1, 6, 11) or band 60 GHz social channel (2) if no
  3752. * other preference is indicated.
  3753. */
  3754. if (p2p_config_get_random_social(&p2p, &p2p.op_reg_class,
  3755. &p2p.op_channel) != 0) {
  3756. wpa_printf(MSG_ERROR,
  3757. "P2P: Failed to select random social channel as operation channel");
  3758. return -1;
  3759. }
  3760. p2p.cfg_op_channel = 0;
  3761. wpa_printf(MSG_DEBUG, "P2P: Random operating channel: "
  3762. "%d:%d", p2p.op_reg_class, p2p.op_channel);
  3763. }
  3764. if (wpa_s->conf->p2p_pref_chan && wpa_s->conf->num_p2p_pref_chan) {
  3765. p2p.pref_chan = wpa_s->conf->p2p_pref_chan;
  3766. p2p.num_pref_chan = wpa_s->conf->num_p2p_pref_chan;
  3767. }
  3768. if (wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
  3769. os_memcpy(p2p.country, wpa_s->conf->country, 2);
  3770. p2p.country[2] = 0x04;
  3771. } else
  3772. os_memcpy(p2p.country, "XX\x04", 3);
  3773. os_memcpy(p2p.pri_dev_type, wpa_s->conf->device_type,
  3774. WPS_DEV_TYPE_LEN);
  3775. p2p.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
  3776. os_memcpy(p2p.sec_dev_type, wpa_s->conf->sec_device_type,
  3777. p2p.num_sec_dev_types * WPS_DEV_TYPE_LEN);
  3778. p2p.concurrent_operations = !!(wpa_s->drv_flags &
  3779. WPA_DRIVER_FLAGS_P2P_CONCURRENT);
  3780. p2p.max_peers = 100;
  3781. if (wpa_s->conf->p2p_ssid_postfix) {
  3782. p2p.ssid_postfix_len =
  3783. os_strlen(wpa_s->conf->p2p_ssid_postfix);
  3784. if (p2p.ssid_postfix_len > sizeof(p2p.ssid_postfix))
  3785. p2p.ssid_postfix_len = sizeof(p2p.ssid_postfix);
  3786. os_memcpy(p2p.ssid_postfix, wpa_s->conf->p2p_ssid_postfix,
  3787. p2p.ssid_postfix_len);
  3788. }
  3789. p2p.p2p_intra_bss = wpa_s->conf->p2p_intra_bss;
  3790. p2p.max_listen = wpa_s->max_remain_on_chan;
  3791. if (wpa_s->conf->p2p_passphrase_len >= 8 &&
  3792. wpa_s->conf->p2p_passphrase_len <= 63)
  3793. p2p.passphrase_len = wpa_s->conf->p2p_passphrase_len;
  3794. else
  3795. p2p.passphrase_len = 8;
  3796. global->p2p = p2p_init(&p2p);
  3797. if (global->p2p == NULL)
  3798. return -1;
  3799. global->p2p_init_wpa_s = wpa_s;
  3800. for (i = 0; i < MAX_WPS_VENDOR_EXT; i++) {
  3801. if (wpa_s->conf->wps_vendor_ext[i] == NULL)
  3802. continue;
  3803. p2p_add_wps_vendor_extension(
  3804. global->p2p, wpa_s->conf->wps_vendor_ext[i]);
  3805. }
  3806. p2p_set_no_go_freq(global->p2p, &wpa_s->conf->p2p_no_go_freq);
  3807. return 0;
  3808. }
  3809. /**
  3810. * wpas_p2p_deinit - Deinitialize per-interface P2P data
  3811. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3812. *
  3813. * This function deinitialize per-interface P2P data.
  3814. */
  3815. void wpas_p2p_deinit(struct wpa_supplicant *wpa_s)
  3816. {
  3817. if (wpa_s->driver && wpa_s->drv_priv)
  3818. wpa_drv_probe_req_report(wpa_s, 0);
  3819. if (wpa_s->go_params) {
  3820. /* Clear any stored provisioning info */
  3821. p2p_clear_provisioning_info(
  3822. wpa_s->global->p2p,
  3823. wpa_s->go_params->peer_device_addr);
  3824. }
  3825. os_free(wpa_s->go_params);
  3826. wpa_s->go_params = NULL;
  3827. eloop_cancel_timeout(wpas_p2p_psk_failure_removal, wpa_s, NULL);
  3828. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  3829. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  3830. wpa_s->p2p_long_listen = 0;
  3831. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  3832. eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
  3833. wpas_p2p_remove_pending_group_interface(wpa_s);
  3834. eloop_cancel_timeout(wpas_p2p_group_freq_conflict, wpa_s, NULL);
  3835. wpas_p2p_listen_work_done(wpa_s);
  3836. if (wpa_s->p2p_send_action_work) {
  3837. os_free(wpa_s->p2p_send_action_work->ctx);
  3838. radio_work_done(wpa_s->p2p_send_action_work);
  3839. wpa_s->p2p_send_action_work = NULL;
  3840. }
  3841. eloop_cancel_timeout(wpas_p2p_send_action_work_timeout, wpa_s, NULL);
  3842. wpabuf_free(wpa_s->p2p_oob_dev_pw);
  3843. wpa_s->p2p_oob_dev_pw = NULL;
  3844. os_free(wpa_s->p2p_group_common_freqs);
  3845. wpa_s->p2p_group_common_freqs = NULL;
  3846. wpa_s->p2p_group_common_freqs_num = 0;
  3847. /* TODO: remove group interface from the driver if this wpa_s instance
  3848. * is on top of a P2P group interface */
  3849. }
  3850. /**
  3851. * wpas_p2p_deinit_global - Deinitialize global P2P module
  3852. * @global: Pointer to global data from wpa_supplicant_init()
  3853. *
  3854. * This function deinitializes the global (per device) P2P module.
  3855. */
  3856. static void wpas_p2p_deinit_global(struct wpa_global *global)
  3857. {
  3858. struct wpa_supplicant *wpa_s, *tmp;
  3859. wpa_s = global->ifaces;
  3860. wpas_p2p_service_flush(global->p2p_init_wpa_s);
  3861. /* Remove remaining P2P group interfaces */
  3862. while (wpa_s && wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE)
  3863. wpa_s = wpa_s->next;
  3864. while (wpa_s) {
  3865. tmp = global->ifaces;
  3866. while (tmp &&
  3867. (tmp == wpa_s ||
  3868. tmp->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)) {
  3869. tmp = tmp->next;
  3870. }
  3871. if (tmp == NULL)
  3872. break;
  3873. /* Disconnect from the P2P group and deinit the interface */
  3874. wpas_p2p_disconnect(tmp);
  3875. }
  3876. /*
  3877. * Deinit GO data on any possibly remaining interface (if main
  3878. * interface is used as GO).
  3879. */
  3880. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  3881. if (wpa_s->ap_iface)
  3882. wpas_p2p_group_deinit(wpa_s);
  3883. }
  3884. p2p_deinit(global->p2p);
  3885. global->p2p = NULL;
  3886. global->p2p_init_wpa_s = NULL;
  3887. }
  3888. static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s)
  3889. {
  3890. if (wpa_s->conf->p2p_no_group_iface)
  3891. return 0; /* separate interface disabled per configuration */
  3892. if (wpa_s->drv_flags &
  3893. (WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE |
  3894. WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P))
  3895. return 1; /* P2P group requires a new interface in every case
  3896. */
  3897. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CONCURRENT))
  3898. return 0; /* driver does not support concurrent operations */
  3899. if (wpa_s->global->ifaces->next)
  3900. return 1; /* more that one interface already in use */
  3901. if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
  3902. return 1; /* this interface is already in use */
  3903. return 0;
  3904. }
  3905. static int wpas_p2p_start_go_neg(struct wpa_supplicant *wpa_s,
  3906. const u8 *peer_addr,
  3907. enum p2p_wps_method wps_method,
  3908. int go_intent, const u8 *own_interface_addr,
  3909. unsigned int force_freq, int persistent_group,
  3910. struct wpa_ssid *ssid, unsigned int pref_freq)
  3911. {
  3912. if (persistent_group && wpa_s->conf->persistent_reconnect)
  3913. persistent_group = 2;
  3914. /*
  3915. * Increase GO config timeout if HT40 is used since it takes some time
  3916. * to scan channels for coex purposes before the BSS can be started.
  3917. */
  3918. p2p_set_config_timeout(wpa_s->global->p2p,
  3919. wpa_s->p2p_go_ht40 ? 255 : 100, 20);
  3920. return p2p_connect(wpa_s->global->p2p, peer_addr, wps_method,
  3921. go_intent, own_interface_addr, force_freq,
  3922. persistent_group, ssid ? ssid->ssid : NULL,
  3923. ssid ? ssid->ssid_len : 0,
  3924. wpa_s->p2p_pd_before_go_neg, pref_freq,
  3925. wps_method == WPS_NFC ? wpa_s->p2p_oob_dev_pw_id :
  3926. 0);
  3927. }
  3928. static int wpas_p2p_auth_go_neg(struct wpa_supplicant *wpa_s,
  3929. const u8 *peer_addr,
  3930. enum p2p_wps_method wps_method,
  3931. int go_intent, const u8 *own_interface_addr,
  3932. unsigned int force_freq, int persistent_group,
  3933. struct wpa_ssid *ssid, unsigned int pref_freq)
  3934. {
  3935. if (persistent_group && wpa_s->conf->persistent_reconnect)
  3936. persistent_group = 2;
  3937. return p2p_authorize(wpa_s->global->p2p, peer_addr, wps_method,
  3938. go_intent, own_interface_addr, force_freq,
  3939. persistent_group, ssid ? ssid->ssid : NULL,
  3940. ssid ? ssid->ssid_len : 0, pref_freq,
  3941. wps_method == WPS_NFC ? wpa_s->p2p_oob_dev_pw_id :
  3942. 0);
  3943. }
  3944. static void wpas_p2p_check_join_scan_limit(struct wpa_supplicant *wpa_s)
  3945. {
  3946. wpa_s->p2p_join_scan_count++;
  3947. wpa_printf(MSG_DEBUG, "P2P: Join scan attempt %d",
  3948. wpa_s->p2p_join_scan_count);
  3949. if (wpa_s->p2p_join_scan_count > P2P_MAX_JOIN_SCAN_ATTEMPTS) {
  3950. wpa_printf(MSG_DEBUG, "P2P: Failed to find GO " MACSTR
  3951. " for join operationg - stop join attempt",
  3952. MAC2STR(wpa_s->pending_join_iface_addr));
  3953. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  3954. if (wpa_s->p2p_auto_pd) {
  3955. wpa_s->p2p_auto_pd = 0;
  3956. wpa_msg_global(wpa_s, MSG_INFO,
  3957. P2P_EVENT_PROV_DISC_FAILURE
  3958. " p2p_dev_addr=" MACSTR " status=N/A",
  3959. MAC2STR(wpa_s->pending_join_dev_addr));
  3960. return;
  3961. }
  3962. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  3963. P2P_EVENT_GROUP_FORMATION_FAILURE);
  3964. wpas_notify_p2p_group_formation_failure(wpa_s, "");
  3965. }
  3966. }
  3967. static int wpas_check_freq_conflict(struct wpa_supplicant *wpa_s, int freq)
  3968. {
  3969. int res;
  3970. unsigned int num, i;
  3971. struct wpa_used_freq_data *freqs;
  3972. if (wpas_p2p_num_unused_channels(wpa_s) > 0) {
  3973. /* Multiple channels are supported and not all are in use */
  3974. return 0;
  3975. }
  3976. freqs = os_calloc(wpa_s->num_multichan_concurrent,
  3977. sizeof(struct wpa_used_freq_data));
  3978. if (!freqs)
  3979. return 1;
  3980. num = wpas_p2p_valid_oper_freqs(wpa_s, freqs,
  3981. wpa_s->num_multichan_concurrent);
  3982. for (i = 0; i < num; i++) {
  3983. if (freqs[i].freq == freq) {
  3984. wpa_printf(MSG_DEBUG, "P2P: Frequency %d MHz in use by another virtual interface and can be used",
  3985. freq);
  3986. res = 0;
  3987. goto exit_free;
  3988. }
  3989. }
  3990. wpa_printf(MSG_DEBUG, "P2P: No valid operating frequencies");
  3991. res = 1;
  3992. exit_free:
  3993. os_free(freqs);
  3994. return res;
  3995. }
  3996. static int wpas_p2p_peer_go(struct wpa_supplicant *wpa_s,
  3997. const u8 *peer_dev_addr)
  3998. {
  3999. struct wpa_bss *bss;
  4000. int updated;
  4001. bss = wpa_bss_get_p2p_dev_addr(wpa_s, peer_dev_addr);
  4002. if (bss == NULL)
  4003. return -1;
  4004. if (bss->last_update_idx < wpa_s->bss_update_idx) {
  4005. wpa_printf(MSG_DEBUG, "P2P: Peer BSS entry not updated in the "
  4006. "last scan");
  4007. return 0;
  4008. }
  4009. updated = os_reltime_before(&wpa_s->p2p_auto_started,
  4010. &bss->last_update);
  4011. wpa_printf(MSG_DEBUG, "P2P: Current BSS entry for peer updated at "
  4012. "%ld.%06ld (%supdated in last scan)",
  4013. bss->last_update.sec, bss->last_update.usec,
  4014. updated ? "": "not ");
  4015. return updated;
  4016. }
  4017. static void wpas_p2p_scan_res_join(struct wpa_supplicant *wpa_s,
  4018. struct wpa_scan_results *scan_res)
  4019. {
  4020. struct wpa_bss *bss = NULL;
  4021. int freq;
  4022. u8 iface_addr[ETH_ALEN];
  4023. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  4024. if (wpa_s->global->p2p_disabled)
  4025. return;
  4026. wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS) for %sjoin",
  4027. scan_res ? (int) scan_res->num : -1,
  4028. wpa_s->p2p_auto_join ? "auto_" : "");
  4029. if (scan_res)
  4030. wpas_p2p_scan_res_handler(wpa_s, scan_res);
  4031. if (wpa_s->p2p_auto_pd) {
  4032. int join = wpas_p2p_peer_go(wpa_s,
  4033. wpa_s->pending_join_dev_addr);
  4034. if (join == 0 &&
  4035. wpa_s->auto_pd_scan_retry < P2P_AUTO_PD_SCAN_ATTEMPTS) {
  4036. wpa_s->auto_pd_scan_retry++;
  4037. bss = wpa_bss_get_bssid_latest(
  4038. wpa_s, wpa_s->pending_join_dev_addr);
  4039. if (bss) {
  4040. freq = bss->freq;
  4041. wpa_printf(MSG_DEBUG, "P2P: Scan retry %d for "
  4042. "the peer " MACSTR " at %d MHz",
  4043. wpa_s->auto_pd_scan_retry,
  4044. MAC2STR(wpa_s->
  4045. pending_join_dev_addr),
  4046. freq);
  4047. wpas_p2p_join_scan_req(wpa_s, freq, NULL, 0);
  4048. return;
  4049. }
  4050. }
  4051. if (join < 0)
  4052. join = 0;
  4053. wpa_s->p2p_auto_pd = 0;
  4054. wpa_s->pending_pd_use = join ? AUTO_PD_JOIN : AUTO_PD_GO_NEG;
  4055. wpa_printf(MSG_DEBUG, "P2P: Auto PD with " MACSTR " join=%d",
  4056. MAC2STR(wpa_s->pending_join_dev_addr), join);
  4057. if (p2p_prov_disc_req(wpa_s->global->p2p,
  4058. wpa_s->pending_join_dev_addr, NULL,
  4059. wpa_s->pending_pd_config_methods, join,
  4060. 0, wpa_s->user_initiated_pd) < 0) {
  4061. wpa_s->p2p_auto_pd = 0;
  4062. wpa_msg_global(wpa_s, MSG_INFO,
  4063. P2P_EVENT_PROV_DISC_FAILURE
  4064. " p2p_dev_addr=" MACSTR " status=N/A",
  4065. MAC2STR(wpa_s->pending_join_dev_addr));
  4066. }
  4067. return;
  4068. }
  4069. if (wpa_s->p2p_auto_join) {
  4070. int join = wpas_p2p_peer_go(wpa_s,
  4071. wpa_s->pending_join_dev_addr);
  4072. if (join < 0) {
  4073. wpa_printf(MSG_DEBUG, "P2P: Peer was not found to be "
  4074. "running a GO -> use GO Negotiation");
  4075. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  4076. P2P_EVENT_FALLBACK_TO_GO_NEG
  4077. "reason=peer-not-running-GO");
  4078. wpas_p2p_connect(wpa_s, wpa_s->pending_join_dev_addr,
  4079. wpa_s->p2p_pin, wpa_s->p2p_wps_method,
  4080. wpa_s->p2p_persistent_group, 0, 0, 0,
  4081. wpa_s->p2p_go_intent,
  4082. wpa_s->p2p_connect_freq,
  4083. wpa_s->p2p_go_vht_center_freq2,
  4084. wpa_s->p2p_persistent_id,
  4085. wpa_s->p2p_pd_before_go_neg,
  4086. wpa_s->p2p_go_ht40,
  4087. wpa_s->p2p_go_vht,
  4088. wpa_s->p2p_go_max_oper_chwidth,
  4089. NULL, 0);
  4090. return;
  4091. }
  4092. wpa_printf(MSG_DEBUG, "P2P: Peer was found running GO%s -> "
  4093. "try to join the group", join ? "" :
  4094. " in older scan");
  4095. if (!join) {
  4096. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  4097. P2P_EVENT_FALLBACK_TO_GO_NEG_ENABLED);
  4098. wpa_s->p2p_fallback_to_go_neg = 1;
  4099. }
  4100. }
  4101. freq = p2p_get_oper_freq(wpa_s->global->p2p,
  4102. wpa_s->pending_join_iface_addr);
  4103. if (freq < 0 &&
  4104. p2p_get_interface_addr(wpa_s->global->p2p,
  4105. wpa_s->pending_join_dev_addr,
  4106. iface_addr) == 0 &&
  4107. os_memcmp(iface_addr, wpa_s->pending_join_dev_addr, ETH_ALEN) != 0
  4108. && !wpa_bss_get_bssid(wpa_s, wpa_s->pending_join_iface_addr)) {
  4109. wpa_printf(MSG_DEBUG, "P2P: Overwrite pending interface "
  4110. "address for join from " MACSTR " to " MACSTR
  4111. " based on newly discovered P2P peer entry",
  4112. MAC2STR(wpa_s->pending_join_iface_addr),
  4113. MAC2STR(iface_addr));
  4114. os_memcpy(wpa_s->pending_join_iface_addr, iface_addr,
  4115. ETH_ALEN);
  4116. freq = p2p_get_oper_freq(wpa_s->global->p2p,
  4117. wpa_s->pending_join_iface_addr);
  4118. }
  4119. if (freq >= 0) {
  4120. wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
  4121. "from P2P peer table: %d MHz", freq);
  4122. }
  4123. if (wpa_s->p2p_join_ssid_len) {
  4124. wpa_printf(MSG_DEBUG, "P2P: Trying to find target GO BSS entry based on BSSID "
  4125. MACSTR " and SSID %s",
  4126. MAC2STR(wpa_s->pending_join_iface_addr),
  4127. wpa_ssid_txt(wpa_s->p2p_join_ssid,
  4128. wpa_s->p2p_join_ssid_len));
  4129. bss = wpa_bss_get(wpa_s, wpa_s->pending_join_iface_addr,
  4130. wpa_s->p2p_join_ssid,
  4131. wpa_s->p2p_join_ssid_len);
  4132. } else if (!bss) {
  4133. wpa_printf(MSG_DEBUG, "P2P: Trying to find target GO BSS entry based on BSSID "
  4134. MACSTR, MAC2STR(wpa_s->pending_join_iface_addr));
  4135. bss = wpa_bss_get_bssid_latest(wpa_s,
  4136. wpa_s->pending_join_iface_addr);
  4137. }
  4138. if (bss) {
  4139. u8 dev_addr[ETH_ALEN];
  4140. freq = bss->freq;
  4141. wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
  4142. "from BSS table: %d MHz (SSID %s)", freq,
  4143. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  4144. if (p2p_parse_dev_addr((const u8 *) (bss + 1), bss->ie_len,
  4145. dev_addr) == 0 &&
  4146. os_memcmp(wpa_s->pending_join_dev_addr,
  4147. wpa_s->pending_join_iface_addr, ETH_ALEN) == 0 &&
  4148. os_memcmp(dev_addr, wpa_s->pending_join_dev_addr,
  4149. ETH_ALEN) != 0) {
  4150. wpa_printf(MSG_DEBUG,
  4151. "P2P: Update target GO device address based on BSS entry: " MACSTR " (was " MACSTR ")",
  4152. MAC2STR(dev_addr),
  4153. MAC2STR(wpa_s->pending_join_dev_addr));
  4154. os_memcpy(wpa_s->pending_join_dev_addr, dev_addr,
  4155. ETH_ALEN);
  4156. }
  4157. }
  4158. if (freq > 0) {
  4159. u16 method;
  4160. if (wpas_check_freq_conflict(wpa_s, freq) > 0) {
  4161. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  4162. P2P_EVENT_GROUP_FORMATION_FAILURE
  4163. "reason=FREQ_CONFLICT");
  4164. wpas_notify_p2p_group_formation_failure(
  4165. wpa_s, "FREQ_CONFLICT");
  4166. return;
  4167. }
  4168. wpa_printf(MSG_DEBUG, "P2P: Send Provision Discovery Request "
  4169. "prior to joining an existing group (GO " MACSTR
  4170. " freq=%u MHz)",
  4171. MAC2STR(wpa_s->pending_join_dev_addr), freq);
  4172. wpa_s->pending_pd_before_join = 1;
  4173. switch (wpa_s->pending_join_wps_method) {
  4174. case WPS_PIN_DISPLAY:
  4175. method = WPS_CONFIG_KEYPAD;
  4176. break;
  4177. case WPS_PIN_KEYPAD:
  4178. method = WPS_CONFIG_DISPLAY;
  4179. break;
  4180. case WPS_PBC:
  4181. method = WPS_CONFIG_PUSHBUTTON;
  4182. break;
  4183. case WPS_P2PS:
  4184. method = WPS_CONFIG_P2PS;
  4185. break;
  4186. default:
  4187. method = 0;
  4188. break;
  4189. }
  4190. if ((p2p_get_provisioning_info(wpa_s->global->p2p,
  4191. wpa_s->pending_join_dev_addr) ==
  4192. method)) {
  4193. /*
  4194. * We have already performed provision discovery for
  4195. * joining the group. Proceed directly to join
  4196. * operation without duplicated provision discovery. */
  4197. wpa_printf(MSG_DEBUG, "P2P: Provision discovery "
  4198. "with " MACSTR " already done - proceed to "
  4199. "join",
  4200. MAC2STR(wpa_s->pending_join_dev_addr));
  4201. wpa_s->pending_pd_before_join = 0;
  4202. goto start;
  4203. }
  4204. if (p2p_prov_disc_req(wpa_s->global->p2p,
  4205. wpa_s->pending_join_dev_addr,
  4206. NULL, method, 1,
  4207. freq, wpa_s->user_initiated_pd) < 0) {
  4208. wpa_printf(MSG_DEBUG, "P2P: Failed to send Provision "
  4209. "Discovery Request before joining an "
  4210. "existing group");
  4211. wpa_s->pending_pd_before_join = 0;
  4212. goto start;
  4213. }
  4214. return;
  4215. }
  4216. wpa_printf(MSG_DEBUG, "P2P: Failed to find BSS/GO - try again later");
  4217. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  4218. eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
  4219. wpas_p2p_check_join_scan_limit(wpa_s);
  4220. return;
  4221. start:
  4222. /* Start join operation immediately */
  4223. wpas_p2p_join_start(wpa_s, 0, wpa_s->p2p_join_ssid,
  4224. wpa_s->p2p_join_ssid_len);
  4225. }
  4226. static void wpas_p2p_join_scan_req(struct wpa_supplicant *wpa_s, int freq,
  4227. const u8 *ssid, size_t ssid_len)
  4228. {
  4229. int ret;
  4230. struct wpa_driver_scan_params params;
  4231. struct wpabuf *wps_ie, *ies;
  4232. size_t ielen;
  4233. int freqs[2] = { 0, 0 };
  4234. unsigned int bands;
  4235. os_memset(&params, 0, sizeof(params));
  4236. /* P2P Wildcard SSID */
  4237. params.num_ssids = 1;
  4238. if (ssid && ssid_len) {
  4239. params.ssids[0].ssid = ssid;
  4240. params.ssids[0].ssid_len = ssid_len;
  4241. os_memcpy(wpa_s->p2p_join_ssid, ssid, ssid_len);
  4242. wpa_s->p2p_join_ssid_len = ssid_len;
  4243. } else {
  4244. params.ssids[0].ssid = (u8 *) P2P_WILDCARD_SSID;
  4245. params.ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
  4246. wpa_s->p2p_join_ssid_len = 0;
  4247. }
  4248. wpa_s->wps->dev.p2p = 1;
  4249. wps_ie = wps_build_probe_req_ie(DEV_PW_DEFAULT, &wpa_s->wps->dev,
  4250. wpa_s->wps->uuid, WPS_REQ_ENROLLEE, 0,
  4251. NULL);
  4252. if (wps_ie == NULL) {
  4253. wpas_p2p_scan_res_join(wpa_s, NULL);
  4254. return;
  4255. }
  4256. if (!freq) {
  4257. int oper_freq;
  4258. /*
  4259. * If freq is not provided, check the operating freq of the GO
  4260. * and use a single channel scan on if possible.
  4261. */
  4262. oper_freq = p2p_get_oper_freq(wpa_s->global->p2p,
  4263. wpa_s->pending_join_iface_addr);
  4264. if (oper_freq > 0)
  4265. freq = oper_freq;
  4266. }
  4267. if (freq > 0) {
  4268. freqs[0] = freq;
  4269. params.freqs = freqs;
  4270. }
  4271. ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
  4272. ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
  4273. if (ies == NULL) {
  4274. wpabuf_free(wps_ie);
  4275. wpas_p2p_scan_res_join(wpa_s, NULL);
  4276. return;
  4277. }
  4278. wpabuf_put_buf(ies, wps_ie);
  4279. wpabuf_free(wps_ie);
  4280. bands = wpas_get_bands(wpa_s, freqs);
  4281. p2p_scan_ie(wpa_s->global->p2p, ies, NULL, bands);
  4282. params.p2p_probe = 1;
  4283. params.extra_ies = wpabuf_head(ies);
  4284. params.extra_ies_len = wpabuf_len(ies);
  4285. /*
  4286. * Run a scan to update BSS table and start Provision Discovery once
  4287. * the new scan results become available.
  4288. */
  4289. ret = wpa_drv_scan(wpa_s, &params);
  4290. if (!ret) {
  4291. os_get_reltime(&wpa_s->scan_trigger_time);
  4292. wpa_s->scan_res_handler = wpas_p2p_scan_res_join;
  4293. wpa_s->own_scan_requested = 1;
  4294. }
  4295. wpabuf_free(ies);
  4296. if (ret) {
  4297. wpa_printf(MSG_DEBUG, "P2P: Failed to start scan for join - "
  4298. "try again later");
  4299. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  4300. eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
  4301. wpas_p2p_check_join_scan_limit(wpa_s);
  4302. }
  4303. }
  4304. static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx)
  4305. {
  4306. struct wpa_supplicant *wpa_s = eloop_ctx;
  4307. wpas_p2p_join_scan_req(wpa_s, 0, NULL, 0);
  4308. }
  4309. static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
  4310. const u8 *dev_addr, enum p2p_wps_method wps_method,
  4311. int auto_join, int op_freq,
  4312. const u8 *ssid, size_t ssid_len)
  4313. {
  4314. wpa_printf(MSG_DEBUG, "P2P: Request to join existing group (iface "
  4315. MACSTR " dev " MACSTR " op_freq=%d)%s",
  4316. MAC2STR(iface_addr), MAC2STR(dev_addr), op_freq,
  4317. auto_join ? " (auto_join)" : "");
  4318. if (ssid && ssid_len) {
  4319. wpa_printf(MSG_DEBUG, "P2P: Group SSID specified: %s",
  4320. wpa_ssid_txt(ssid, ssid_len));
  4321. }
  4322. wpa_s->p2p_auto_pd = 0;
  4323. wpa_s->p2p_auto_join = !!auto_join;
  4324. os_memcpy(wpa_s->pending_join_iface_addr, iface_addr, ETH_ALEN);
  4325. os_memcpy(wpa_s->pending_join_dev_addr, dev_addr, ETH_ALEN);
  4326. wpa_s->pending_join_wps_method = wps_method;
  4327. /* Make sure we are not running find during connection establishment */
  4328. wpas_p2p_stop_find(wpa_s);
  4329. wpa_s->p2p_join_scan_count = 0;
  4330. wpas_p2p_join_scan_req(wpa_s, op_freq, ssid, ssid_len);
  4331. return 0;
  4332. }
  4333. static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s, int freq,
  4334. const u8 *ssid, size_t ssid_len)
  4335. {
  4336. struct wpa_supplicant *group;
  4337. struct p2p_go_neg_results res;
  4338. struct wpa_bss *bss;
  4339. group = wpas_p2p_get_group_iface(wpa_s, 0, 0);
  4340. if (group == NULL)
  4341. return -1;
  4342. if (group != wpa_s) {
  4343. os_memcpy(group->p2p_pin, wpa_s->p2p_pin,
  4344. sizeof(group->p2p_pin));
  4345. group->p2p_wps_method = wpa_s->p2p_wps_method;
  4346. } else {
  4347. /*
  4348. * Need to mark the current interface for p2p_group_formation
  4349. * when a separate group interface is not used. This is needed
  4350. * to allow p2p_cancel stop a pending p2p_connect-join.
  4351. * wpas_p2p_init_group_interface() addresses this for the case
  4352. * where a separate group interface is used.
  4353. */
  4354. wpa_s->global->p2p_group_formation = wpa_s;
  4355. }
  4356. group->p2p_in_provisioning = 1;
  4357. group->p2p_fallback_to_go_neg = wpa_s->p2p_fallback_to_go_neg;
  4358. os_memset(&res, 0, sizeof(res));
  4359. os_memcpy(res.peer_device_addr, wpa_s->pending_join_dev_addr, ETH_ALEN);
  4360. os_memcpy(res.peer_interface_addr, wpa_s->pending_join_iface_addr,
  4361. ETH_ALEN);
  4362. res.wps_method = wpa_s->pending_join_wps_method;
  4363. if (freq && ssid && ssid_len) {
  4364. res.freq = freq;
  4365. res.ssid_len = ssid_len;
  4366. os_memcpy(res.ssid, ssid, ssid_len);
  4367. } else {
  4368. if (ssid && ssid_len) {
  4369. bss = wpa_bss_get(wpa_s, wpa_s->pending_join_iface_addr,
  4370. ssid, ssid_len);
  4371. } else {
  4372. bss = wpa_bss_get_bssid_latest(
  4373. wpa_s, wpa_s->pending_join_iface_addr);
  4374. }
  4375. if (bss) {
  4376. res.freq = bss->freq;
  4377. res.ssid_len = bss->ssid_len;
  4378. os_memcpy(res.ssid, bss->ssid, bss->ssid_len);
  4379. wpa_printf(MSG_DEBUG, "P2P: Join target GO operating frequency from BSS table: %d MHz (SSID %s)",
  4380. bss->freq,
  4381. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  4382. } else if (ssid && ssid_len) {
  4383. res.ssid_len = ssid_len;
  4384. os_memcpy(res.ssid, ssid, ssid_len);
  4385. wpa_printf(MSG_DEBUG, "P2P: Join target GO (SSID %s)",
  4386. wpa_ssid_txt(ssid, ssid_len));
  4387. }
  4388. }
  4389. if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
  4390. wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel prior to "
  4391. "starting client");
  4392. wpa_drv_cancel_remain_on_channel(wpa_s);
  4393. wpa_s->off_channel_freq = 0;
  4394. wpa_s->roc_waiting_drv_freq = 0;
  4395. }
  4396. wpas_start_wps_enrollee(group, &res);
  4397. /*
  4398. * Allow a longer timeout for join-a-running-group than normal 15
  4399. * second group formation timeout since the GO may not have authorized
  4400. * our connection yet.
  4401. */
  4402. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  4403. eloop_register_timeout(60, 0, wpas_p2p_group_formation_timeout,
  4404. wpa_s, NULL);
  4405. return 0;
  4406. }
  4407. static int wpas_p2p_setup_freqs(struct wpa_supplicant *wpa_s, int freq,
  4408. int *force_freq, int *pref_freq, int go,
  4409. unsigned int *pref_freq_list,
  4410. unsigned int *num_pref_freq)
  4411. {
  4412. struct wpa_used_freq_data *freqs;
  4413. int res, best_freq, num_unused;
  4414. unsigned int freq_in_use = 0, num, i, max_pref_freq;
  4415. max_pref_freq = *num_pref_freq;
  4416. *num_pref_freq = 0;
  4417. freqs = os_calloc(wpa_s->num_multichan_concurrent,
  4418. sizeof(struct wpa_used_freq_data));
  4419. if (!freqs)
  4420. return -1;
  4421. num = wpas_p2p_valid_oper_freqs(wpa_s, freqs,
  4422. wpa_s->num_multichan_concurrent);
  4423. /*
  4424. * It is possible that the total number of used frequencies is bigger
  4425. * than the number of frequencies used for P2P, so get the system wide
  4426. * number of unused frequencies.
  4427. */
  4428. num_unused = wpas_p2p_num_unused_channels(wpa_s);
  4429. wpa_printf(MSG_DEBUG,
  4430. "P2P: Setup freqs: freq=%d num_MCC=%d shared_freqs=%u num_unused=%d",
  4431. freq, wpa_s->num_multichan_concurrent, num, num_unused);
  4432. if (freq > 0) {
  4433. int ret;
  4434. if (go)
  4435. ret = p2p_supported_freq(wpa_s->global->p2p, freq);
  4436. else
  4437. ret = p2p_supported_freq_cli(wpa_s->global->p2p, freq);
  4438. if (!ret) {
  4439. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) &&
  4440. ieee80211_is_dfs(freq)) {
  4441. /*
  4442. * If freq is a DFS channel and DFS is offloaded
  4443. * to the driver, allow P2P GO to use it.
  4444. */
  4445. wpa_printf(MSG_DEBUG,
  4446. "P2P: The forced channel for GO (%u MHz) is DFS, and DFS is offloaded to the driver",
  4447. freq);
  4448. } else {
  4449. wpa_printf(MSG_DEBUG,
  4450. "P2P: The forced channel (%u MHz) is not supported for P2P uses",
  4451. freq);
  4452. res = -3;
  4453. goto exit_free;
  4454. }
  4455. }
  4456. for (i = 0; i < num; i++) {
  4457. if (freqs[i].freq == freq)
  4458. freq_in_use = 1;
  4459. }
  4460. if (num_unused <= 0 && !freq_in_use) {
  4461. wpa_printf(MSG_DEBUG, "P2P: Cannot start P2P group on %u MHz as there are no available channels",
  4462. freq);
  4463. res = -2;
  4464. goto exit_free;
  4465. }
  4466. wpa_printf(MSG_DEBUG, "P2P: Trying to force us to use the "
  4467. "requested channel (%u MHz)", freq);
  4468. *force_freq = freq;
  4469. goto exit_ok;
  4470. }
  4471. best_freq = wpas_p2p_pick_best_used_freq(wpa_s, freqs, num);
  4472. if (!wpa_s->conf->num_p2p_pref_chan && *pref_freq == 0) {
  4473. enum wpa_driver_if_type iface_type;
  4474. if (go)
  4475. iface_type = WPA_IF_P2P_GO;
  4476. else
  4477. iface_type = WPA_IF_P2P_CLIENT;
  4478. wpa_printf(MSG_DEBUG, "P2P: best_freq=%d, go=%d",
  4479. best_freq, go);
  4480. res = wpa_drv_get_pref_freq_list(wpa_s, iface_type,
  4481. &max_pref_freq,
  4482. pref_freq_list);
  4483. if (!res && max_pref_freq > 0) {
  4484. *num_pref_freq = max_pref_freq;
  4485. i = 0;
  4486. while (wpas_p2p_disallowed_freq(wpa_s->global,
  4487. pref_freq_list[i]) &&
  4488. i < *num_pref_freq) {
  4489. wpa_printf(MSG_DEBUG,
  4490. "P2P: preferred_freq_list[%d]=%d is disallowed",
  4491. i, pref_freq_list[i]);
  4492. i++;
  4493. }
  4494. if (i != *num_pref_freq) {
  4495. best_freq = pref_freq_list[i];
  4496. wpa_printf(MSG_DEBUG,
  4497. "P2P: Using preferred_freq_list[%d]=%d",
  4498. i, best_freq);
  4499. } else {
  4500. wpa_printf(MSG_DEBUG,
  4501. "P2P: All driver preferred frequencies are disallowed for P2P use");
  4502. *num_pref_freq = 0;
  4503. }
  4504. } else {
  4505. wpa_printf(MSG_DEBUG,
  4506. "P2P: No preferred frequency list available");
  4507. }
  4508. }
  4509. /* We have a candidate frequency to use */
  4510. if (best_freq > 0) {
  4511. if (*pref_freq == 0 && num_unused > 0) {
  4512. wpa_printf(MSG_DEBUG, "P2P: Try to prefer a frequency (%u MHz) we are already using",
  4513. best_freq);
  4514. *pref_freq = best_freq;
  4515. } else {
  4516. wpa_printf(MSG_DEBUG, "P2P: Try to force us to use frequency (%u MHz) which is already in use",
  4517. best_freq);
  4518. *force_freq = best_freq;
  4519. }
  4520. } else if (num_unused > 0) {
  4521. wpa_printf(MSG_DEBUG,
  4522. "P2P: Current operating channels are not available for P2P. Try to use another channel");
  4523. *force_freq = 0;
  4524. } else {
  4525. wpa_printf(MSG_DEBUG,
  4526. "P2P: All channels are in use and none of them are P2P enabled. Cannot start P2P group");
  4527. res = -2;
  4528. goto exit_free;
  4529. }
  4530. exit_ok:
  4531. res = 0;
  4532. exit_free:
  4533. os_free(freqs);
  4534. return res;
  4535. }
  4536. /**
  4537. * wpas_p2p_connect - Request P2P Group Formation to be started
  4538. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  4539. * @peer_addr: Address of the peer P2P Device
  4540. * @pin: PIN to use during provisioning or %NULL to indicate PBC mode
  4541. * @persistent_group: Whether to create a persistent group
  4542. * @auto_join: Whether to select join vs. GO Negotiation automatically
  4543. * @join: Whether to join an existing group (as a client) instead of starting
  4544. * Group Owner negotiation; @peer_addr is BSSID in that case
  4545. * @auth: Whether to only authorize the connection instead of doing that and
  4546. * initiating Group Owner negotiation
  4547. * @go_intent: GO Intent or -1 to use default
  4548. * @freq: Frequency for the group or 0 for auto-selection
  4549. * @freq2: Center frequency of segment 1 for the GO operating in VHT 80P80 mode
  4550. * @persistent_id: Persistent group credentials to use for forcing GO
  4551. * parameters or -1 to generate new values (SSID/passphrase)
  4552. * @pd: Whether to send Provision Discovery prior to GO Negotiation as an
  4553. * interoperability workaround when initiating group formation
  4554. * @ht40: Start GO with 40 MHz channel width
  4555. * @vht: Start GO with VHT support
  4556. * @vht_chwidth: Channel width supported by GO operating with VHT support
  4557. * (VHT_CHANWIDTH_*).
  4558. * @group_ssid: Specific Group SSID for join or %NULL if not set
  4559. * @group_ssid_len: Length of @group_ssid in octets
  4560. * Returns: 0 or new PIN (if pin was %NULL) on success, -1 on unspecified
  4561. * failure, -2 on failure due to channel not currently available,
  4562. * -3 if forced channel is not supported
  4563. */
  4564. int wpas_p2p_connect(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  4565. const char *pin, enum p2p_wps_method wps_method,
  4566. int persistent_group, int auto_join, int join, int auth,
  4567. int go_intent, int freq, unsigned int vht_center_freq2,
  4568. int persistent_id, int pd, int ht40, int vht,
  4569. unsigned int vht_chwidth, const u8 *group_ssid,
  4570. size_t group_ssid_len)
  4571. {
  4572. int force_freq = 0, pref_freq = 0;
  4573. int ret = 0, res;
  4574. enum wpa_driver_if_type iftype;
  4575. const u8 *if_addr;
  4576. struct wpa_ssid *ssid = NULL;
  4577. unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS], size;
  4578. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4579. return -1;
  4580. if (persistent_id >= 0) {
  4581. ssid = wpa_config_get_network(wpa_s->conf, persistent_id);
  4582. if (ssid == NULL || ssid->disabled != 2 ||
  4583. ssid->mode != WPAS_MODE_P2P_GO)
  4584. return -1;
  4585. }
  4586. os_free(wpa_s->global->add_psk);
  4587. wpa_s->global->add_psk = NULL;
  4588. wpa_s->global->p2p_fail_on_wps_complete = 0;
  4589. wpa_s->global->pending_p2ps_group = 0;
  4590. wpa_s->global->pending_p2ps_group_freq = 0;
  4591. wpa_s->p2ps_method_config_any = 0;
  4592. if (go_intent < 0)
  4593. go_intent = wpa_s->conf->p2p_go_intent;
  4594. if (!auth)
  4595. wpa_s->p2p_long_listen = 0;
  4596. wpa_s->p2p_wps_method = wps_method;
  4597. wpa_s->p2p_persistent_group = !!persistent_group;
  4598. wpa_s->p2p_persistent_id = persistent_id;
  4599. wpa_s->p2p_go_intent = go_intent;
  4600. wpa_s->p2p_connect_freq = freq;
  4601. wpa_s->p2p_fallback_to_go_neg = 0;
  4602. wpa_s->p2p_pd_before_go_neg = !!pd;
  4603. wpa_s->p2p_go_ht40 = !!ht40;
  4604. wpa_s->p2p_go_vht = !!vht;
  4605. wpa_s->p2p_go_vht_center_freq2 = vht_center_freq2;
  4606. wpa_s->p2p_go_max_oper_chwidth = vht_chwidth;
  4607. if (pin)
  4608. os_strlcpy(wpa_s->p2p_pin, pin, sizeof(wpa_s->p2p_pin));
  4609. else if (wps_method == WPS_PIN_DISPLAY) {
  4610. if (wps_generate_pin((unsigned int *) &ret) < 0)
  4611. return -1;
  4612. res = os_snprintf(wpa_s->p2p_pin, sizeof(wpa_s->p2p_pin),
  4613. "%08d", ret);
  4614. if (os_snprintf_error(sizeof(wpa_s->p2p_pin), res))
  4615. wpa_s->p2p_pin[sizeof(wpa_s->p2p_pin) - 1] = '\0';
  4616. wpa_printf(MSG_DEBUG, "P2P: Randomly generated PIN: %s",
  4617. wpa_s->p2p_pin);
  4618. } else
  4619. wpa_s->p2p_pin[0] = '\0';
  4620. if (join || auto_join) {
  4621. u8 iface_addr[ETH_ALEN], dev_addr[ETH_ALEN];
  4622. if (auth) {
  4623. wpa_printf(MSG_DEBUG, "P2P: Authorize invitation to "
  4624. "connect a running group from " MACSTR,
  4625. MAC2STR(peer_addr));
  4626. os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
  4627. return ret;
  4628. }
  4629. os_memcpy(dev_addr, peer_addr, ETH_ALEN);
  4630. if (p2p_get_interface_addr(wpa_s->global->p2p, peer_addr,
  4631. iface_addr) < 0) {
  4632. os_memcpy(iface_addr, peer_addr, ETH_ALEN);
  4633. p2p_get_dev_addr(wpa_s->global->p2p, peer_addr,
  4634. dev_addr);
  4635. }
  4636. if (auto_join) {
  4637. os_get_reltime(&wpa_s->p2p_auto_started);
  4638. wpa_printf(MSG_DEBUG, "P2P: Auto join started at "
  4639. "%ld.%06ld",
  4640. wpa_s->p2p_auto_started.sec,
  4641. wpa_s->p2p_auto_started.usec);
  4642. }
  4643. wpa_s->user_initiated_pd = 1;
  4644. if (wpas_p2p_join(wpa_s, iface_addr, dev_addr, wps_method,
  4645. auto_join, freq,
  4646. group_ssid, group_ssid_len) < 0)
  4647. return -1;
  4648. return ret;
  4649. }
  4650. size = P2P_MAX_PREF_CHANNELS;
  4651. res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
  4652. go_intent == 15, pref_freq_list, &size);
  4653. if (res)
  4654. return res;
  4655. wpas_p2p_set_own_freq_preference(wpa_s,
  4656. force_freq ? force_freq : pref_freq);
  4657. p2p_set_own_pref_freq_list(wpa_s->global->p2p, pref_freq_list, size);
  4658. wpa_s->create_p2p_iface = wpas_p2p_create_iface(wpa_s);
  4659. if (wpa_s->create_p2p_iface) {
  4660. /* Prepare to add a new interface for the group */
  4661. iftype = WPA_IF_P2P_GROUP;
  4662. if (go_intent == 15)
  4663. iftype = WPA_IF_P2P_GO;
  4664. if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
  4665. wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
  4666. "interface for the group");
  4667. return -1;
  4668. }
  4669. if_addr = wpa_s->pending_interface_addr;
  4670. } else {
  4671. if (wpa_s->p2p_mgmt)
  4672. if_addr = wpa_s->parent->own_addr;
  4673. else
  4674. if_addr = wpa_s->own_addr;
  4675. os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
  4676. }
  4677. if (auth) {
  4678. if (wpas_p2p_auth_go_neg(wpa_s, peer_addr, wps_method,
  4679. go_intent, if_addr,
  4680. force_freq, persistent_group, ssid,
  4681. pref_freq) < 0)
  4682. return -1;
  4683. return ret;
  4684. }
  4685. if (wpas_p2p_start_go_neg(wpa_s, peer_addr, wps_method,
  4686. go_intent, if_addr, force_freq,
  4687. persistent_group, ssid, pref_freq) < 0) {
  4688. if (wpa_s->create_p2p_iface)
  4689. wpas_p2p_remove_pending_group_interface(wpa_s);
  4690. return -1;
  4691. }
  4692. return ret;
  4693. }
  4694. /**
  4695. * wpas_p2p_remain_on_channel_cb - Indication of remain-on-channel start
  4696. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  4697. * @freq: Frequency of the channel in MHz
  4698. * @duration: Duration of the stay on the channel in milliseconds
  4699. *
  4700. * This callback is called when the driver indicates that it has started the
  4701. * requested remain-on-channel duration.
  4702. */
  4703. void wpas_p2p_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
  4704. unsigned int freq, unsigned int duration)
  4705. {
  4706. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4707. return;
  4708. wpa_printf(MSG_DEBUG, "P2P: remain-on-channel callback (off_channel_freq=%u pending_listen_freq=%d roc_waiting_drv_freq=%d freq=%u duration=%u)",
  4709. wpa_s->off_channel_freq, wpa_s->pending_listen_freq,
  4710. wpa_s->roc_waiting_drv_freq, freq, duration);
  4711. if (wpa_s->off_channel_freq &&
  4712. wpa_s->off_channel_freq == wpa_s->pending_listen_freq) {
  4713. p2p_listen_cb(wpa_s->global->p2p, wpa_s->pending_listen_freq,
  4714. wpa_s->pending_listen_duration);
  4715. wpa_s->pending_listen_freq = 0;
  4716. } else {
  4717. wpa_printf(MSG_DEBUG, "P2P: Ignore remain-on-channel callback (off_channel_freq=%u pending_listen_freq=%d freq=%u duration=%u)",
  4718. wpa_s->off_channel_freq, wpa_s->pending_listen_freq,
  4719. freq, duration);
  4720. }
  4721. }
  4722. int wpas_p2p_listen_start(struct wpa_supplicant *wpa_s, unsigned int timeout)
  4723. {
  4724. /* Limit maximum Listen state time based on driver limitation. */
  4725. if (timeout > wpa_s->max_remain_on_chan)
  4726. timeout = wpa_s->max_remain_on_chan;
  4727. return p2p_listen(wpa_s->global->p2p, timeout);
  4728. }
  4729. /**
  4730. * wpas_p2p_cancel_remain_on_channel_cb - Remain-on-channel timeout
  4731. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  4732. * @freq: Frequency of the channel in MHz
  4733. *
  4734. * This callback is called when the driver indicates that a remain-on-channel
  4735. * operation has been completed, i.e., the duration on the requested channel
  4736. * has timed out.
  4737. */
  4738. void wpas_p2p_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
  4739. unsigned int freq)
  4740. {
  4741. wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel callback "
  4742. "(p2p_long_listen=%d ms pending_action_tx=%p)",
  4743. wpa_s->p2p_long_listen, offchannel_pending_action_tx(wpa_s));
  4744. wpas_p2p_listen_work_done(wpa_s);
  4745. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4746. return;
  4747. if (wpa_s->p2p_long_listen > 0)
  4748. wpa_s->p2p_long_listen -= wpa_s->max_remain_on_chan;
  4749. if (p2p_listen_end(wpa_s->global->p2p, freq) > 0)
  4750. return; /* P2P module started a new operation */
  4751. if (offchannel_pending_action_tx(wpa_s))
  4752. return;
  4753. if (wpa_s->p2p_long_listen > 0) {
  4754. wpa_printf(MSG_DEBUG, "P2P: Continuing long Listen state");
  4755. wpas_p2p_listen_start(wpa_s, wpa_s->p2p_long_listen);
  4756. } else {
  4757. /*
  4758. * When listen duration is over, stop listen & update p2p_state
  4759. * to IDLE.
  4760. */
  4761. p2p_stop_listen(wpa_s->global->p2p);
  4762. }
  4763. }
  4764. /**
  4765. * wpas_p2p_group_remove - Remove a P2P group
  4766. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  4767. * @ifname: Network interface name of the group interface or "*" to remove all
  4768. * groups
  4769. * Returns: 0 on success, -1 on failure
  4770. *
  4771. * This function is used to remove a P2P group. This can be used to disconnect
  4772. * from a group in which the local end is a P2P Client or to end a P2P Group in
  4773. * case the local end is the Group Owner. If a virtual network interface was
  4774. * created for this group, that interface will be removed. Otherwise, only the
  4775. * configured P2P group network will be removed from the interface.
  4776. */
  4777. int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s, const char *ifname)
  4778. {
  4779. struct wpa_global *global = wpa_s->global;
  4780. struct wpa_supplicant *calling_wpa_s = wpa_s;
  4781. if (os_strcmp(ifname, "*") == 0) {
  4782. struct wpa_supplicant *prev;
  4783. wpa_s = global->ifaces;
  4784. while (wpa_s) {
  4785. prev = wpa_s;
  4786. wpa_s = wpa_s->next;
  4787. if (prev->p2p_group_interface !=
  4788. NOT_P2P_GROUP_INTERFACE ||
  4789. (prev->current_ssid &&
  4790. prev->current_ssid->p2p_group))
  4791. wpas_p2p_disconnect_safely(prev, calling_wpa_s);
  4792. }
  4793. return 0;
  4794. }
  4795. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  4796. if (os_strcmp(wpa_s->ifname, ifname) == 0)
  4797. break;
  4798. }
  4799. return wpas_p2p_disconnect_safely(wpa_s, calling_wpa_s);
  4800. }
  4801. static int wpas_p2p_select_go_freq(struct wpa_supplicant *wpa_s, int freq)
  4802. {
  4803. unsigned int r;
  4804. if (!wpa_s->conf->num_p2p_pref_chan && !freq) {
  4805. unsigned int i, size = P2P_MAX_PREF_CHANNELS;
  4806. unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS];
  4807. int res;
  4808. res = wpa_drv_get_pref_freq_list(wpa_s, WPA_IF_P2P_GO,
  4809. &size, pref_freq_list);
  4810. if (!res && size > 0) {
  4811. i = 0;
  4812. while (wpas_p2p_disallowed_freq(wpa_s->global,
  4813. pref_freq_list[i]) &&
  4814. i < size) {
  4815. wpa_printf(MSG_DEBUG,
  4816. "P2P: preferred_freq_list[%d]=%d is disallowed",
  4817. i, pref_freq_list[i]);
  4818. i++;
  4819. }
  4820. if (i != size) {
  4821. freq = pref_freq_list[i];
  4822. wpa_printf(MSG_DEBUG,
  4823. "P2P: Using preferred_freq_list[%d]=%d",
  4824. i, freq);
  4825. } else {
  4826. wpa_printf(MSG_DEBUG,
  4827. "P2P: All driver preferred frequencies are disallowed for P2P use");
  4828. }
  4829. } else {
  4830. wpa_printf(MSG_DEBUG,
  4831. "P2P: No preferred frequency list available");
  4832. }
  4833. }
  4834. if (freq == 2) {
  4835. wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 2.4 GHz "
  4836. "band");
  4837. if (wpa_s->best_24_freq > 0 &&
  4838. p2p_supported_freq_go(wpa_s->global->p2p,
  4839. wpa_s->best_24_freq)) {
  4840. freq = wpa_s->best_24_freq;
  4841. wpa_printf(MSG_DEBUG, "P2P: Use best 2.4 GHz band "
  4842. "channel: %d MHz", freq);
  4843. } else {
  4844. if (os_get_random((u8 *) &r, sizeof(r)) < 0)
  4845. return -1;
  4846. freq = 2412 + (r % 3) * 25;
  4847. wpa_printf(MSG_DEBUG, "P2P: Use random 2.4 GHz band "
  4848. "channel: %d MHz", freq);
  4849. }
  4850. }
  4851. if (freq == 5) {
  4852. wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 5 GHz "
  4853. "band");
  4854. if (wpa_s->best_5_freq > 0 &&
  4855. p2p_supported_freq_go(wpa_s->global->p2p,
  4856. wpa_s->best_5_freq)) {
  4857. freq = wpa_s->best_5_freq;
  4858. wpa_printf(MSG_DEBUG, "P2P: Use best 5 GHz band "
  4859. "channel: %d MHz", freq);
  4860. } else {
  4861. if (os_get_random((u8 *) &r, sizeof(r)) < 0)
  4862. return -1;
  4863. freq = 5180 + (r % 4) * 20;
  4864. if (!p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
  4865. wpa_printf(MSG_DEBUG, "P2P: Could not select "
  4866. "5 GHz channel for P2P group");
  4867. return -1;
  4868. }
  4869. wpa_printf(MSG_DEBUG, "P2P: Use random 5 GHz band "
  4870. "channel: %d MHz", freq);
  4871. }
  4872. }
  4873. if (freq > 0 && !p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
  4874. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) &&
  4875. ieee80211_is_dfs(freq)) {
  4876. /*
  4877. * If freq is a DFS channel and DFS is offloaded to the
  4878. * driver, allow P2P GO to use it.
  4879. */
  4880. wpa_printf(MSG_DEBUG, "P2P: "
  4881. "%s: The forced channel for GO (%u MHz) is DFS, and DFS is offloaded",
  4882. __func__, freq);
  4883. return freq;
  4884. }
  4885. wpa_printf(MSG_DEBUG, "P2P: The forced channel for GO "
  4886. "(%u MHz) is not supported for P2P uses",
  4887. freq);
  4888. return -1;
  4889. }
  4890. return freq;
  4891. }
  4892. static int wpas_p2p_supported_freq_go(struct wpa_supplicant *wpa_s,
  4893. const struct p2p_channels *channels,
  4894. int freq)
  4895. {
  4896. if (!wpas_p2p_disallowed_freq(wpa_s->global, freq) &&
  4897. p2p_supported_freq_go(wpa_s->global->p2p, freq) &&
  4898. freq_included(wpa_s, channels, freq))
  4899. return 1;
  4900. return 0;
  4901. }
  4902. static void wpas_p2p_select_go_freq_no_pref(struct wpa_supplicant *wpa_s,
  4903. struct p2p_go_neg_results *params,
  4904. const struct p2p_channels *channels)
  4905. {
  4906. unsigned int i, r;
  4907. /* first try some random selection of the social channels */
  4908. if (os_get_random((u8 *) &r, sizeof(r)) < 0)
  4909. return;
  4910. for (i = 0; i < 3; i++) {
  4911. params->freq = 2412 + ((r + i) % 3) * 25;
  4912. if (wpas_p2p_supported_freq_go(wpa_s, channels, params->freq))
  4913. goto out;
  4914. }
  4915. /* try all other channels in operating class 81 */
  4916. for (i = 0; i < 11; i++) {
  4917. params->freq = 2412 + i * 5;
  4918. /* skip social channels; covered in the previous loop */
  4919. if (params->freq == 2412 ||
  4920. params->freq == 2437 ||
  4921. params->freq == 2462)
  4922. continue;
  4923. if (wpas_p2p_supported_freq_go(wpa_s, channels, params->freq))
  4924. goto out;
  4925. }
  4926. /* try all channels in operating class 115 */
  4927. for (i = 0; i < 4; i++) {
  4928. params->freq = 5180 + i * 20;
  4929. if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
  4930. freq_included(wpa_s, channels, params->freq) &&
  4931. p2p_supported_freq(wpa_s->global->p2p, params->freq))
  4932. goto out;
  4933. }
  4934. /* try all channels in operating class 124 */
  4935. for (i = 0; i < 4; i++) {
  4936. params->freq = 5745 + i * 20;
  4937. if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
  4938. freq_included(wpa_s, channels, params->freq) &&
  4939. p2p_supported_freq(wpa_s->global->p2p, params->freq))
  4940. goto out;
  4941. }
  4942. /* try social channel class 180 channel 2 */
  4943. params->freq = 58320 + 1 * 2160;
  4944. if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
  4945. freq_included(wpa_s, channels, params->freq) &&
  4946. p2p_supported_freq(wpa_s->global->p2p, params->freq))
  4947. goto out;
  4948. /* try all channels in reg. class 180 */
  4949. for (i = 0; i < 4; i++) {
  4950. params->freq = 58320 + i * 2160;
  4951. if (!wpas_p2p_disallowed_freq(wpa_s->global, params->freq) &&
  4952. freq_included(wpa_s, channels, params->freq) &&
  4953. p2p_supported_freq(wpa_s->global->p2p, params->freq))
  4954. goto out;
  4955. }
  4956. params->freq = 0;
  4957. wpa_printf(MSG_DEBUG, "P2P: No 2.4, 5, or 60 GHz channel allowed");
  4958. return;
  4959. out:
  4960. wpa_printf(MSG_DEBUG, "P2P: Set GO freq %d MHz (no preference known)",
  4961. params->freq);
  4962. }
  4963. static int wpas_p2p_init_go_params(struct wpa_supplicant *wpa_s,
  4964. struct p2p_go_neg_results *params,
  4965. int freq, int vht_center_freq2, int ht40,
  4966. int vht, int max_oper_chwidth,
  4967. const struct p2p_channels *channels)
  4968. {
  4969. struct wpa_used_freq_data *freqs;
  4970. unsigned int cand;
  4971. unsigned int num, i;
  4972. int ignore_no_freqs = 0;
  4973. int unused_channels = wpas_p2p_num_unused_channels(wpa_s) > 0;
  4974. os_memset(params, 0, sizeof(*params));
  4975. params->role_go = 1;
  4976. params->ht40 = ht40;
  4977. params->vht = vht;
  4978. params->max_oper_chwidth = max_oper_chwidth;
  4979. params->vht_center_freq2 = vht_center_freq2;
  4980. freqs = os_calloc(wpa_s->num_multichan_concurrent,
  4981. sizeof(struct wpa_used_freq_data));
  4982. if (!freqs)
  4983. return -1;
  4984. num = get_shared_radio_freqs_data(wpa_s, freqs,
  4985. wpa_s->num_multichan_concurrent);
  4986. if (wpa_s->current_ssid &&
  4987. wpa_s->current_ssid->mode == WPAS_MODE_P2P_GO &&
  4988. wpa_s->wpa_state == WPA_COMPLETED) {
  4989. wpa_printf(MSG_DEBUG, "P2P: %s called for an active GO",
  4990. __func__);
  4991. /*
  4992. * If the frequency selection is done for an active P2P GO that
  4993. * is not sharing a frequency, allow to select a new frequency
  4994. * even if there are no unused frequencies as we are about to
  4995. * move the P2P GO so its frequency can be re-used.
  4996. */
  4997. for (i = 0; i < num; i++) {
  4998. if (freqs[i].freq == wpa_s->current_ssid->frequency &&
  4999. freqs[i].flags == 0) {
  5000. ignore_no_freqs = 1;
  5001. break;
  5002. }
  5003. }
  5004. }
  5005. /* try using the forced freq */
  5006. if (freq) {
  5007. if (!wpas_p2p_supported_freq_go(wpa_s, channels, freq)) {
  5008. wpa_printf(MSG_DEBUG,
  5009. "P2P: Forced GO freq %d MHz not accepted",
  5010. freq);
  5011. goto fail;
  5012. }
  5013. for (i = 0; i < num; i++) {
  5014. if (freqs[i].freq == freq) {
  5015. wpa_printf(MSG_DEBUG,
  5016. "P2P: forced freq (%d MHz) is also shared",
  5017. freq);
  5018. params->freq = freq;
  5019. goto success;
  5020. }
  5021. }
  5022. if (!ignore_no_freqs && !unused_channels) {
  5023. wpa_printf(MSG_DEBUG,
  5024. "P2P: Cannot force GO on freq (%d MHz) as all the channels are in use",
  5025. freq);
  5026. goto fail;
  5027. }
  5028. wpa_printf(MSG_DEBUG,
  5029. "P2P: force GO freq (%d MHz) on a free channel",
  5030. freq);
  5031. params->freq = freq;
  5032. goto success;
  5033. }
  5034. /* consider using one of the shared frequencies */
  5035. if (num &&
  5036. (!wpa_s->conf->p2p_ignore_shared_freq || !unused_channels)) {
  5037. cand = wpas_p2p_pick_best_used_freq(wpa_s, freqs, num);
  5038. if (wpas_p2p_supported_freq_go(wpa_s, channels, cand)) {
  5039. wpa_printf(MSG_DEBUG,
  5040. "P2P: Use shared freq (%d MHz) for GO",
  5041. cand);
  5042. params->freq = cand;
  5043. goto success;
  5044. }
  5045. /* try using one of the shared freqs */
  5046. for (i = 0; i < num; i++) {
  5047. if (wpas_p2p_supported_freq_go(wpa_s, channels,
  5048. freqs[i].freq)) {
  5049. wpa_printf(MSG_DEBUG,
  5050. "P2P: Use shared freq (%d MHz) for GO",
  5051. freqs[i].freq);
  5052. params->freq = freqs[i].freq;
  5053. goto success;
  5054. }
  5055. }
  5056. }
  5057. if (!ignore_no_freqs && !unused_channels) {
  5058. wpa_printf(MSG_DEBUG,
  5059. "P2P: Cannot force GO on any of the channels we are already using");
  5060. goto fail;
  5061. }
  5062. /* try using the setting from the configuration file */
  5063. if (wpa_s->conf->p2p_oper_reg_class == 81 &&
  5064. wpa_s->conf->p2p_oper_channel >= 1 &&
  5065. wpa_s->conf->p2p_oper_channel <= 11 &&
  5066. wpas_p2p_supported_freq_go(
  5067. wpa_s, channels,
  5068. 2407 + 5 * wpa_s->conf->p2p_oper_channel)) {
  5069. params->freq = 2407 + 5 * wpa_s->conf->p2p_oper_channel;
  5070. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on configured "
  5071. "frequency %d MHz", params->freq);
  5072. goto success;
  5073. }
  5074. if ((wpa_s->conf->p2p_oper_reg_class == 115 ||
  5075. wpa_s->conf->p2p_oper_reg_class == 116 ||
  5076. wpa_s->conf->p2p_oper_reg_class == 117 ||
  5077. wpa_s->conf->p2p_oper_reg_class == 124 ||
  5078. wpa_s->conf->p2p_oper_reg_class == 125 ||
  5079. wpa_s->conf->p2p_oper_reg_class == 126 ||
  5080. wpa_s->conf->p2p_oper_reg_class == 127) &&
  5081. wpas_p2p_supported_freq_go(wpa_s, channels,
  5082. 5000 +
  5083. 5 * wpa_s->conf->p2p_oper_channel)) {
  5084. params->freq = 5000 + 5 * wpa_s->conf->p2p_oper_channel;
  5085. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on configured "
  5086. "frequency %d MHz", params->freq);
  5087. goto success;
  5088. }
  5089. /* Try using best channels */
  5090. if (wpa_s->conf->p2p_oper_channel == 0 &&
  5091. wpa_s->best_overall_freq > 0 &&
  5092. wpas_p2p_supported_freq_go(wpa_s, channels,
  5093. wpa_s->best_overall_freq)) {
  5094. params->freq = wpa_s->best_overall_freq;
  5095. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best overall "
  5096. "channel %d MHz", params->freq);
  5097. goto success;
  5098. }
  5099. if (wpa_s->conf->p2p_oper_channel == 0 &&
  5100. wpa_s->best_24_freq > 0 &&
  5101. wpas_p2p_supported_freq_go(wpa_s, channels,
  5102. wpa_s->best_24_freq)) {
  5103. params->freq = wpa_s->best_24_freq;
  5104. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best 2.4 GHz "
  5105. "channel %d MHz", params->freq);
  5106. goto success;
  5107. }
  5108. if (wpa_s->conf->p2p_oper_channel == 0 &&
  5109. wpa_s->best_5_freq > 0 &&
  5110. wpas_p2p_supported_freq_go(wpa_s, channels,
  5111. wpa_s->best_5_freq)) {
  5112. params->freq = wpa_s->best_5_freq;
  5113. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best 5 GHz "
  5114. "channel %d MHz", params->freq);
  5115. goto success;
  5116. }
  5117. /* try using preferred channels */
  5118. cand = p2p_get_pref_freq(wpa_s->global->p2p, channels);
  5119. if (cand && wpas_p2p_supported_freq_go(wpa_s, channels, cand)) {
  5120. params->freq = cand;
  5121. wpa_printf(MSG_DEBUG, "P2P: Set GO freq %d MHz from preferred "
  5122. "channels", params->freq);
  5123. goto success;
  5124. }
  5125. /* Try using one of the group common freqs */
  5126. if (wpa_s->p2p_group_common_freqs) {
  5127. for (i = 0; i < wpa_s->p2p_group_common_freqs_num; i++) {
  5128. cand = wpa_s->p2p_group_common_freqs[i];
  5129. if (wpas_p2p_supported_freq_go(wpa_s, channels, cand)) {
  5130. params->freq = cand;
  5131. wpa_printf(MSG_DEBUG,
  5132. "P2P: Use freq %d MHz common with the peer",
  5133. params->freq);
  5134. goto success;
  5135. }
  5136. }
  5137. }
  5138. /* no preference, select some channel */
  5139. wpas_p2p_select_go_freq_no_pref(wpa_s, params, channels);
  5140. if (params->freq == 0) {
  5141. wpa_printf(MSG_DEBUG, "P2P: did not find a freq for GO use");
  5142. goto fail;
  5143. }
  5144. success:
  5145. os_free(freqs);
  5146. return 0;
  5147. fail:
  5148. os_free(freqs);
  5149. return -1;
  5150. }
  5151. static struct wpa_supplicant *
  5152. wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
  5153. int go)
  5154. {
  5155. struct wpa_supplicant *group_wpa_s;
  5156. if (!wpas_p2p_create_iface(wpa_s)) {
  5157. if (wpa_s->p2p_mgmt) {
  5158. /*
  5159. * We may be called on the p2p_dev interface which
  5160. * cannot be used for group operations, so always use
  5161. * the primary interface.
  5162. */
  5163. wpa_s->parent->p2pdev = wpa_s;
  5164. wpa_s = wpa_s->parent;
  5165. }
  5166. wpa_dbg(wpa_s, MSG_DEBUG,
  5167. "P2P: Use primary interface for group operations");
  5168. wpa_s->p2p_first_connection_timeout = 0;
  5169. if (wpa_s != wpa_s->p2pdev)
  5170. wpas_p2p_clone_config(wpa_s, wpa_s->p2pdev);
  5171. return wpa_s;
  5172. }
  5173. if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
  5174. WPA_IF_P2P_CLIENT) < 0) {
  5175. wpa_msg_global(wpa_s, MSG_ERROR,
  5176. "P2P: Failed to add group interface");
  5177. return NULL;
  5178. }
  5179. group_wpa_s = wpas_p2p_init_group_interface(wpa_s, go);
  5180. if (group_wpa_s == NULL) {
  5181. wpa_msg_global(wpa_s, MSG_ERROR,
  5182. "P2P: Failed to initialize group interface");
  5183. wpas_p2p_remove_pending_group_interface(wpa_s);
  5184. return NULL;
  5185. }
  5186. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use separate group interface %s",
  5187. group_wpa_s->ifname);
  5188. group_wpa_s->p2p_first_connection_timeout = 0;
  5189. return group_wpa_s;
  5190. }
  5191. /**
  5192. * wpas_p2p_group_add - Add a new P2P group with local end as Group Owner
  5193. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  5194. * @persistent_group: Whether to create a persistent group
  5195. * @freq: Frequency for the group or 0 to indicate no hardcoding
  5196. * @vht_center_freq2: segment_1 center frequency for GO operating in VHT 80P80
  5197. * @ht40: Start GO with 40 MHz channel width
  5198. * @vht: Start GO with VHT support
  5199. * @vht_chwidth: channel bandwidth for GO operating with VHT support
  5200. * Returns: 0 on success, -1 on failure
  5201. *
  5202. * This function creates a new P2P group with the local end as the Group Owner,
  5203. * i.e., without using Group Owner Negotiation.
  5204. */
  5205. int wpas_p2p_group_add(struct wpa_supplicant *wpa_s, int persistent_group,
  5206. int freq, int vht_center_freq2, int ht40, int vht,
  5207. int max_oper_chwidth)
  5208. {
  5209. struct p2p_go_neg_results params;
  5210. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5211. return -1;
  5212. os_free(wpa_s->global->add_psk);
  5213. wpa_s->global->add_psk = NULL;
  5214. /* Make sure we are not running find during connection establishment */
  5215. wpa_printf(MSG_DEBUG, "P2P: Stop any on-going P2P FIND");
  5216. wpas_p2p_stop_find_oper(wpa_s);
  5217. freq = wpas_p2p_select_go_freq(wpa_s, freq);
  5218. if (freq < 0)
  5219. return -1;
  5220. if (wpas_p2p_init_go_params(wpa_s, &params, freq, vht_center_freq2,
  5221. ht40, vht, max_oper_chwidth, NULL))
  5222. return -1;
  5223. if (params.freq &&
  5224. !p2p_supported_freq_go(wpa_s->global->p2p, params.freq)) {
  5225. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) &&
  5226. ieee80211_is_dfs(params.freq)) {
  5227. /*
  5228. * If freq is a DFS channel and DFS is offloaded to the
  5229. * driver, allow P2P GO to use it.
  5230. */
  5231. wpa_printf(MSG_DEBUG,
  5232. "P2P: %s: The forced channel for GO (%u MHz) is DFS, and DFS is offloaded to driver",
  5233. __func__, params.freq);
  5234. } else {
  5235. wpa_printf(MSG_DEBUG,
  5236. "P2P: The selected channel for GO (%u MHz) is not supported for P2P uses",
  5237. params.freq);
  5238. return -1;
  5239. }
  5240. }
  5241. p2p_go_params(wpa_s->global->p2p, &params);
  5242. params.persistent_group = persistent_group;
  5243. wpa_s = wpas_p2p_get_group_iface(wpa_s, 0, 1);
  5244. if (wpa_s == NULL)
  5245. return -1;
  5246. wpas_start_wps_go(wpa_s, &params, 0);
  5247. return 0;
  5248. }
  5249. static int wpas_start_p2p_client(struct wpa_supplicant *wpa_s,
  5250. struct wpa_ssid *params, int addr_allocated,
  5251. int freq, int force_scan)
  5252. {
  5253. struct wpa_ssid *ssid;
  5254. wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 0);
  5255. if (wpa_s == NULL)
  5256. return -1;
  5257. if (force_scan)
  5258. os_get_reltime(&wpa_s->scan_min_time);
  5259. wpa_s->p2p_last_4way_hs_fail = NULL;
  5260. wpa_supplicant_ap_deinit(wpa_s);
  5261. ssid = wpa_config_add_network(wpa_s->conf);
  5262. if (ssid == NULL)
  5263. return -1;
  5264. os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
  5265. wpa_config_set_network_defaults(ssid);
  5266. ssid->temporary = 1;
  5267. ssid->proto = WPA_PROTO_RSN;
  5268. ssid->pbss = params->pbss;
  5269. ssid->pairwise_cipher = params->pbss ? WPA_CIPHER_GCMP :
  5270. WPA_CIPHER_CCMP;
  5271. ssid->group_cipher = params->pbss ? WPA_CIPHER_GCMP : WPA_CIPHER_CCMP;
  5272. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  5273. ssid->ssid = os_malloc(params->ssid_len);
  5274. if (ssid->ssid == NULL) {
  5275. wpa_config_remove_network(wpa_s->conf, ssid->id);
  5276. return -1;
  5277. }
  5278. os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
  5279. ssid->ssid_len = params->ssid_len;
  5280. ssid->p2p_group = 1;
  5281. ssid->export_keys = 1;
  5282. if (params->psk_set) {
  5283. os_memcpy(ssid->psk, params->psk, 32);
  5284. ssid->psk_set = 1;
  5285. }
  5286. if (params->passphrase)
  5287. ssid->passphrase = os_strdup(params->passphrase);
  5288. wpa_s->show_group_started = 1;
  5289. wpa_s->p2p_in_invitation = 1;
  5290. wpa_s->p2p_invite_go_freq = freq;
  5291. wpa_s->p2p_go_group_formation_completed = 0;
  5292. wpa_s->global->p2p_group_formation = wpa_s;
  5293. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s->p2pdev,
  5294. NULL);
  5295. eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
  5296. wpas_p2p_group_formation_timeout,
  5297. wpa_s->p2pdev, NULL);
  5298. wpa_supplicant_select_network(wpa_s, ssid);
  5299. return 0;
  5300. }
  5301. int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
  5302. struct wpa_ssid *ssid, int addr_allocated,
  5303. int force_freq, int neg_freq,
  5304. int vht_center_freq2, int ht40,
  5305. int vht, int max_oper_chwidth,
  5306. const struct p2p_channels *channels,
  5307. int connection_timeout, int force_scan)
  5308. {
  5309. struct p2p_go_neg_results params;
  5310. int go = 0, freq;
  5311. if (ssid->disabled != 2 || ssid->ssid == NULL)
  5312. return -1;
  5313. if (wpas_get_p2p_group(wpa_s, ssid->ssid, ssid->ssid_len, &go) &&
  5314. go == (ssid->mode == WPAS_MODE_P2P_GO)) {
  5315. wpa_printf(MSG_DEBUG, "P2P: Requested persistent group is "
  5316. "already running");
  5317. if (go == 0 &&
  5318. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  5319. wpa_s->p2pdev, NULL)) {
  5320. /*
  5321. * This can happen if Invitation Response frame was lost
  5322. * and the peer (GO of a persistent group) tries to
  5323. * invite us again. Reschedule the timeout to avoid
  5324. * terminating the wait for the connection too early
  5325. * since we now know that the peer is still trying to
  5326. * invite us instead of having already started the GO.
  5327. */
  5328. wpa_printf(MSG_DEBUG,
  5329. "P2P: Reschedule group formation timeout since peer is still trying to invite us");
  5330. eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
  5331. wpas_p2p_group_formation_timeout,
  5332. wpa_s->p2pdev, NULL);
  5333. }
  5334. return 0;
  5335. }
  5336. os_free(wpa_s->global->add_psk);
  5337. wpa_s->global->add_psk = NULL;
  5338. /* Make sure we are not running find during connection establishment */
  5339. wpas_p2p_stop_find_oper(wpa_s);
  5340. wpa_s->p2p_fallback_to_go_neg = 0;
  5341. if (ssid->mode == WPAS_MODE_P2P_GO) {
  5342. if (force_freq > 0) {
  5343. freq = wpas_p2p_select_go_freq(wpa_s, force_freq);
  5344. if (freq < 0)
  5345. return -1;
  5346. } else {
  5347. freq = wpas_p2p_select_go_freq(wpa_s, neg_freq);
  5348. if (freq < 0 ||
  5349. (freq > 0 && !freq_included(wpa_s, channels, freq)))
  5350. freq = 0;
  5351. }
  5352. } else if (ssid->mode == WPAS_MODE_INFRA) {
  5353. freq = neg_freq;
  5354. if (freq <= 0 || !freq_included(wpa_s, channels, freq)) {
  5355. struct os_reltime now;
  5356. struct wpa_bss *bss =
  5357. wpa_bss_get_p2p_dev_addr(wpa_s, ssid->bssid);
  5358. os_get_reltime(&now);
  5359. if (bss &&
  5360. !os_reltime_expired(&now, &bss->last_update, 5) &&
  5361. freq_included(wpa_s, channels, bss->freq))
  5362. freq = bss->freq;
  5363. else
  5364. freq = 0;
  5365. }
  5366. return wpas_start_p2p_client(wpa_s, ssid, addr_allocated, freq,
  5367. force_scan);
  5368. } else {
  5369. return -1;
  5370. }
  5371. if (wpas_p2p_init_go_params(wpa_s, &params, freq, vht_center_freq2,
  5372. ht40, vht, max_oper_chwidth, channels))
  5373. return -1;
  5374. params.role_go = 1;
  5375. params.psk_set = ssid->psk_set;
  5376. if (params.psk_set)
  5377. os_memcpy(params.psk, ssid->psk, sizeof(params.psk));
  5378. if (ssid->passphrase) {
  5379. if (os_strlen(ssid->passphrase) >= sizeof(params.passphrase)) {
  5380. wpa_printf(MSG_ERROR, "P2P: Invalid passphrase in "
  5381. "persistent group");
  5382. return -1;
  5383. }
  5384. os_strlcpy(params.passphrase, ssid->passphrase,
  5385. sizeof(params.passphrase));
  5386. }
  5387. os_memcpy(params.ssid, ssid->ssid, ssid->ssid_len);
  5388. params.ssid_len = ssid->ssid_len;
  5389. params.persistent_group = 1;
  5390. wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 1);
  5391. if (wpa_s == NULL)
  5392. return -1;
  5393. p2p_channels_to_freqs(channels, params.freq_list, P2P_MAX_CHANNELS);
  5394. wpa_s->p2p_first_connection_timeout = connection_timeout;
  5395. wpas_start_wps_go(wpa_s, &params, 0);
  5396. return 0;
  5397. }
  5398. static void wpas_p2p_ie_update(void *ctx, struct wpabuf *beacon_ies,
  5399. struct wpabuf *proberesp_ies)
  5400. {
  5401. struct wpa_supplicant *wpa_s = ctx;
  5402. if (wpa_s->ap_iface) {
  5403. struct hostapd_data *hapd = wpa_s->ap_iface->bss[0];
  5404. if (!(hapd->conf->p2p & P2P_GROUP_OWNER)) {
  5405. wpabuf_free(beacon_ies);
  5406. wpabuf_free(proberesp_ies);
  5407. return;
  5408. }
  5409. if (beacon_ies) {
  5410. wpabuf_free(hapd->p2p_beacon_ie);
  5411. hapd->p2p_beacon_ie = beacon_ies;
  5412. }
  5413. wpabuf_free(hapd->p2p_probe_resp_ie);
  5414. hapd->p2p_probe_resp_ie = proberesp_ies;
  5415. } else {
  5416. wpabuf_free(beacon_ies);
  5417. wpabuf_free(proberesp_ies);
  5418. }
  5419. wpa_supplicant_ap_update_beacon(wpa_s);
  5420. }
  5421. static void wpas_p2p_idle_update(void *ctx, int idle)
  5422. {
  5423. struct wpa_supplicant *wpa_s = ctx;
  5424. if (!wpa_s->ap_iface)
  5425. return;
  5426. wpa_printf(MSG_DEBUG, "P2P: GO - group %sidle", idle ? "" : "not ");
  5427. if (idle) {
  5428. if (wpa_s->global->p2p_fail_on_wps_complete &&
  5429. wpa_s->p2p_in_provisioning) {
  5430. wpas_p2p_grpform_fail_after_wps(wpa_s);
  5431. return;
  5432. }
  5433. wpas_p2p_set_group_idle_timeout(wpa_s);
  5434. } else
  5435. eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
  5436. }
  5437. struct p2p_group * wpas_p2p_group_init(struct wpa_supplicant *wpa_s,
  5438. struct wpa_ssid *ssid)
  5439. {
  5440. struct p2p_group *group;
  5441. struct p2p_group_config *cfg;
  5442. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5443. return NULL;
  5444. cfg = os_zalloc(sizeof(*cfg));
  5445. if (cfg == NULL)
  5446. return NULL;
  5447. if (ssid->p2p_persistent_group && wpa_s->conf->persistent_reconnect)
  5448. cfg->persistent_group = 2;
  5449. else if (ssid->p2p_persistent_group)
  5450. cfg->persistent_group = 1;
  5451. os_memcpy(cfg->interface_addr, wpa_s->own_addr, ETH_ALEN);
  5452. if (wpa_s->max_stations &&
  5453. wpa_s->max_stations < wpa_s->conf->max_num_sta)
  5454. cfg->max_clients = wpa_s->max_stations;
  5455. else
  5456. cfg->max_clients = wpa_s->conf->max_num_sta;
  5457. os_memcpy(cfg->ssid, ssid->ssid, ssid->ssid_len);
  5458. cfg->ssid_len = ssid->ssid_len;
  5459. cfg->freq = ssid->frequency;
  5460. cfg->cb_ctx = wpa_s;
  5461. cfg->ie_update = wpas_p2p_ie_update;
  5462. cfg->idle_update = wpas_p2p_idle_update;
  5463. cfg->ip_addr_alloc = WPA_GET_BE32(wpa_s->p2pdev->conf->ip_addr_start)
  5464. != 0;
  5465. group = p2p_group_init(wpa_s->global->p2p, cfg);
  5466. if (group == NULL)
  5467. os_free(cfg);
  5468. if (ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION)
  5469. p2p_group_notif_formation_done(group);
  5470. wpa_s->p2p_group = group;
  5471. return group;
  5472. }
  5473. void wpas_p2p_wps_success(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  5474. int registrar)
  5475. {
  5476. struct wpa_ssid *ssid = wpa_s->current_ssid;
  5477. if (!wpa_s->p2p_in_provisioning) {
  5478. wpa_printf(MSG_DEBUG, "P2P: Ignore WPS success event - P2P "
  5479. "provisioning not in progress");
  5480. return;
  5481. }
  5482. if (ssid && ssid->mode == WPAS_MODE_INFRA) {
  5483. u8 go_dev_addr[ETH_ALEN];
  5484. os_memcpy(go_dev_addr, wpa_s->bssid, ETH_ALEN);
  5485. wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
  5486. ssid->ssid_len);
  5487. /* Clear any stored provisioning info */
  5488. p2p_clear_provisioning_info(wpa_s->global->p2p, go_dev_addr);
  5489. }
  5490. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s->p2pdev,
  5491. NULL);
  5492. wpa_s->p2p_go_group_formation_completed = 1;
  5493. if (ssid && ssid->mode == WPAS_MODE_INFRA) {
  5494. /*
  5495. * Use a separate timeout for initial data connection to
  5496. * complete to allow the group to be removed automatically if
  5497. * something goes wrong in this step before the P2P group idle
  5498. * timeout mechanism is taken into use.
  5499. */
  5500. wpa_dbg(wpa_s, MSG_DEBUG,
  5501. "P2P: Re-start group formation timeout (%d seconds) as client for initial connection",
  5502. P2P_MAX_INITIAL_CONN_WAIT);
  5503. eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
  5504. wpas_p2p_group_formation_timeout,
  5505. wpa_s->p2pdev, NULL);
  5506. /* Complete group formation on successful data connection. */
  5507. wpa_s->p2p_go_group_formation_completed = 0;
  5508. } else if (ssid) {
  5509. /*
  5510. * Use a separate timeout for initial data connection to
  5511. * complete to allow the group to be removed automatically if
  5512. * the client does not complete data connection successfully.
  5513. */
  5514. wpa_dbg(wpa_s, MSG_DEBUG,
  5515. "P2P: Re-start group formation timeout (%d seconds) as GO for initial connection",
  5516. P2P_MAX_INITIAL_CONN_WAIT_GO);
  5517. eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT_GO, 0,
  5518. wpas_p2p_group_formation_timeout,
  5519. wpa_s->p2pdev, NULL);
  5520. /*
  5521. * Complete group formation on first successful data connection
  5522. */
  5523. wpa_s->p2p_go_group_formation_completed = 0;
  5524. }
  5525. if (wpa_s->global->p2p)
  5526. p2p_wps_success_cb(wpa_s->global->p2p, peer_addr);
  5527. wpas_group_formation_completed(wpa_s, 1, 0);
  5528. }
  5529. void wpas_p2p_wps_failed(struct wpa_supplicant *wpa_s,
  5530. struct wps_event_fail *fail)
  5531. {
  5532. if (!wpa_s->p2p_in_provisioning) {
  5533. wpa_printf(MSG_DEBUG, "P2P: Ignore WPS fail event - P2P "
  5534. "provisioning not in progress");
  5535. return;
  5536. }
  5537. if (wpa_s->go_params) {
  5538. p2p_clear_provisioning_info(
  5539. wpa_s->global->p2p,
  5540. wpa_s->go_params->peer_device_addr);
  5541. }
  5542. wpas_notify_p2p_wps_failed(wpa_s, fail);
  5543. if (wpa_s == wpa_s->global->p2p_group_formation) {
  5544. /*
  5545. * Allow some time for the failed WPS negotiation exchange to
  5546. * complete, but remove the group since group formation cannot
  5547. * succeed after provisioning failure.
  5548. */
  5549. wpa_printf(MSG_DEBUG, "P2P: WPS step failed during group formation - reject connection from timeout");
  5550. wpa_s->global->p2p_fail_on_wps_complete = 1;
  5551. eloop_deplete_timeout(0, 50000,
  5552. wpas_p2p_group_formation_timeout,
  5553. wpa_s->p2pdev, NULL);
  5554. }
  5555. }
  5556. int wpas_p2p_wps_eapol_cb(struct wpa_supplicant *wpa_s)
  5557. {
  5558. if (!wpa_s->global->p2p_fail_on_wps_complete ||
  5559. !wpa_s->p2p_in_provisioning)
  5560. return 0;
  5561. wpas_p2p_grpform_fail_after_wps(wpa_s);
  5562. return 1;
  5563. }
  5564. int wpas_p2p_prov_disc(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  5565. const char *config_method,
  5566. enum wpas_p2p_prov_disc_use use,
  5567. struct p2ps_provision *p2ps_prov)
  5568. {
  5569. u16 config_methods;
  5570. wpa_s->global->pending_p2ps_group = 0;
  5571. wpa_s->global->pending_p2ps_group_freq = 0;
  5572. wpa_s->p2p_fallback_to_go_neg = 0;
  5573. wpa_s->pending_pd_use = NORMAL_PD;
  5574. if (p2ps_prov && use == WPAS_P2P_PD_FOR_ASP) {
  5575. p2ps_prov->conncap = p2ps_group_capability(
  5576. wpa_s, P2PS_SETUP_NONE, p2ps_prov->role,
  5577. &p2ps_prov->force_freq, &p2ps_prov->pref_freq);
  5578. wpa_printf(MSG_DEBUG,
  5579. "P2P: %s conncap: %d - ASP parsed: %x %x %d %s",
  5580. __func__, p2ps_prov->conncap,
  5581. p2ps_prov->adv_id, p2ps_prov->conncap,
  5582. p2ps_prov->status, p2ps_prov->info);
  5583. config_methods = 0;
  5584. } else if (os_strncmp(config_method, "display", 7) == 0)
  5585. config_methods = WPS_CONFIG_DISPLAY;
  5586. else if (os_strncmp(config_method, "keypad", 6) == 0)
  5587. config_methods = WPS_CONFIG_KEYPAD;
  5588. else if (os_strncmp(config_method, "pbc", 3) == 0 ||
  5589. os_strncmp(config_method, "pushbutton", 10) == 0)
  5590. config_methods = WPS_CONFIG_PUSHBUTTON;
  5591. else {
  5592. wpa_printf(MSG_DEBUG, "P2P: Unknown config method");
  5593. os_free(p2ps_prov);
  5594. return -1;
  5595. }
  5596. if (use == WPAS_P2P_PD_AUTO) {
  5597. os_memcpy(wpa_s->pending_join_dev_addr, peer_addr, ETH_ALEN);
  5598. wpa_s->pending_pd_config_methods = config_methods;
  5599. wpa_s->p2p_auto_pd = 1;
  5600. wpa_s->p2p_auto_join = 0;
  5601. wpa_s->pending_pd_before_join = 0;
  5602. wpa_s->auto_pd_scan_retry = 0;
  5603. wpas_p2p_stop_find(wpa_s);
  5604. wpa_s->p2p_join_scan_count = 0;
  5605. os_get_reltime(&wpa_s->p2p_auto_started);
  5606. wpa_printf(MSG_DEBUG, "P2P: Auto PD started at %ld.%06ld",
  5607. wpa_s->p2p_auto_started.sec,
  5608. wpa_s->p2p_auto_started.usec);
  5609. wpas_p2p_join_scan(wpa_s, NULL);
  5610. return 0;
  5611. }
  5612. if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled) {
  5613. os_free(p2ps_prov);
  5614. return -1;
  5615. }
  5616. return p2p_prov_disc_req(wpa_s->global->p2p, peer_addr, p2ps_prov,
  5617. config_methods, use == WPAS_P2P_PD_FOR_JOIN,
  5618. 0, 1);
  5619. }
  5620. int wpas_p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
  5621. char *end)
  5622. {
  5623. return p2p_scan_result_text(ies, ies_len, buf, end);
  5624. }
  5625. static void wpas_p2p_clear_pending_action_tx(struct wpa_supplicant *wpa_s)
  5626. {
  5627. if (!offchannel_pending_action_tx(wpa_s))
  5628. return;
  5629. if (wpa_s->p2p_send_action_work) {
  5630. wpas_p2p_free_send_action_work(wpa_s);
  5631. eloop_cancel_timeout(wpas_p2p_send_action_work_timeout,
  5632. wpa_s, NULL);
  5633. offchannel_send_action_done(wpa_s);
  5634. }
  5635. wpa_printf(MSG_DEBUG, "P2P: Drop pending Action TX due to new "
  5636. "operation request");
  5637. offchannel_clear_pending_action_tx(wpa_s);
  5638. }
  5639. int wpas_p2p_find(struct wpa_supplicant *wpa_s, unsigned int timeout,
  5640. enum p2p_discovery_type type,
  5641. unsigned int num_req_dev_types, const u8 *req_dev_types,
  5642. const u8 *dev_id, unsigned int search_delay,
  5643. u8 seek_cnt, const char **seek_string, int freq)
  5644. {
  5645. wpas_p2p_clear_pending_action_tx(wpa_s);
  5646. wpa_s->p2p_long_listen = 0;
  5647. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL ||
  5648. wpa_s->p2p_in_provisioning)
  5649. return -1;
  5650. wpa_supplicant_cancel_sched_scan(wpa_s);
  5651. return p2p_find(wpa_s->global->p2p, timeout, type,
  5652. num_req_dev_types, req_dev_types, dev_id,
  5653. search_delay, seek_cnt, seek_string, freq);
  5654. }
  5655. static void wpas_p2p_scan_res_ignore_search(struct wpa_supplicant *wpa_s,
  5656. struct wpa_scan_results *scan_res)
  5657. {
  5658. wpa_printf(MSG_DEBUG, "P2P: Ignore scan results");
  5659. if (wpa_s->p2p_scan_work) {
  5660. struct wpa_radio_work *work = wpa_s->p2p_scan_work;
  5661. wpa_s->p2p_scan_work = NULL;
  5662. radio_work_done(work);
  5663. }
  5664. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5665. return;
  5666. /*
  5667. * Indicate that results have been processed so that the P2P module can
  5668. * continue pending tasks.
  5669. */
  5670. p2p_scan_res_handled(wpa_s->global->p2p);
  5671. }
  5672. static void wpas_p2p_stop_find_oper(struct wpa_supplicant *wpa_s)
  5673. {
  5674. wpas_p2p_clear_pending_action_tx(wpa_s);
  5675. wpa_s->p2p_long_listen = 0;
  5676. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  5677. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  5678. if (wpa_s->global->p2p)
  5679. p2p_stop_find(wpa_s->global->p2p);
  5680. if (wpa_s->scan_res_handler == wpas_p2p_scan_res_handler) {
  5681. wpa_printf(MSG_DEBUG,
  5682. "P2P: Do not consider the scan results after stop_find");
  5683. wpa_s->scan_res_handler = wpas_p2p_scan_res_ignore_search;
  5684. }
  5685. }
  5686. void wpas_p2p_stop_find(struct wpa_supplicant *wpa_s)
  5687. {
  5688. wpas_p2p_stop_find_oper(wpa_s);
  5689. if (!wpa_s->global->pending_group_iface_for_p2ps)
  5690. wpas_p2p_remove_pending_group_interface(wpa_s);
  5691. }
  5692. static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx)
  5693. {
  5694. struct wpa_supplicant *wpa_s = eloop_ctx;
  5695. wpa_s->p2p_long_listen = 0;
  5696. }
  5697. int wpas_p2p_listen(struct wpa_supplicant *wpa_s, unsigned int timeout)
  5698. {
  5699. int res;
  5700. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5701. return -1;
  5702. wpa_supplicant_cancel_sched_scan(wpa_s);
  5703. wpas_p2p_clear_pending_action_tx(wpa_s);
  5704. if (timeout == 0) {
  5705. /*
  5706. * This is a request for unlimited Listen state. However, at
  5707. * least for now, this is mapped to a Listen state for one
  5708. * hour.
  5709. */
  5710. timeout = 3600;
  5711. }
  5712. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  5713. wpa_s->p2p_long_listen = 0;
  5714. /*
  5715. * Stop previous find/listen operation to avoid trying to request a new
  5716. * remain-on-channel operation while the driver is still running the
  5717. * previous one.
  5718. */
  5719. if (wpa_s->global->p2p)
  5720. p2p_stop_find(wpa_s->global->p2p);
  5721. res = wpas_p2p_listen_start(wpa_s, timeout * 1000);
  5722. if (res == 0 && timeout * 1000 > wpa_s->max_remain_on_chan) {
  5723. wpa_s->p2p_long_listen = timeout * 1000;
  5724. eloop_register_timeout(timeout, 0,
  5725. wpas_p2p_long_listen_timeout,
  5726. wpa_s, NULL);
  5727. }
  5728. return res;
  5729. }
  5730. int wpas_p2p_assoc_req_ie(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
  5731. u8 *buf, size_t len, int p2p_group)
  5732. {
  5733. struct wpabuf *p2p_ie;
  5734. int ret;
  5735. if (wpa_s->global->p2p_disabled)
  5736. return -1;
  5737. /*
  5738. * Advertize mandatory cross connection capability even on
  5739. * p2p_disabled=1 interface when associating with a P2P Manager WLAN AP.
  5740. */
  5741. if (wpa_s->conf->p2p_disabled && p2p_group)
  5742. return -1;
  5743. if (wpa_s->global->p2p == NULL)
  5744. return -1;
  5745. if (bss == NULL)
  5746. return -1;
  5747. p2p_ie = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
  5748. ret = p2p_assoc_req_ie(wpa_s->global->p2p, bss->bssid, buf, len,
  5749. p2p_group, p2p_ie);
  5750. wpabuf_free(p2p_ie);
  5751. return ret;
  5752. }
  5753. int wpas_p2p_probe_req_rx(struct wpa_supplicant *wpa_s, const u8 *addr,
  5754. const u8 *dst, const u8 *bssid,
  5755. const u8 *ie, size_t ie_len,
  5756. unsigned int rx_freq, int ssi_signal)
  5757. {
  5758. if (wpa_s->global->p2p_disabled)
  5759. return 0;
  5760. if (wpa_s->global->p2p == NULL)
  5761. return 0;
  5762. switch (p2p_probe_req_rx(wpa_s->global->p2p, addr, dst, bssid,
  5763. ie, ie_len, rx_freq)) {
  5764. case P2P_PREQ_NOT_P2P:
  5765. wpas_notify_preq(wpa_s, addr, dst, bssid, ie, ie_len,
  5766. ssi_signal);
  5767. /* fall through */
  5768. case P2P_PREQ_MALFORMED:
  5769. case P2P_PREQ_NOT_LISTEN:
  5770. case P2P_PREQ_NOT_PROCESSED:
  5771. default: /* make gcc happy */
  5772. return 0;
  5773. case P2P_PREQ_PROCESSED:
  5774. return 1;
  5775. }
  5776. }
  5777. void wpas_p2p_rx_action(struct wpa_supplicant *wpa_s, const u8 *da,
  5778. const u8 *sa, const u8 *bssid,
  5779. u8 category, const u8 *data, size_t len, int freq)
  5780. {
  5781. if (wpa_s->global->p2p_disabled)
  5782. return;
  5783. if (wpa_s->global->p2p == NULL)
  5784. return;
  5785. p2p_rx_action(wpa_s->global->p2p, da, sa, bssid, category, data, len,
  5786. freq);
  5787. }
  5788. void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies)
  5789. {
  5790. unsigned int bands;
  5791. if (wpa_s->global->p2p_disabled)
  5792. return;
  5793. if (wpa_s->global->p2p == NULL)
  5794. return;
  5795. bands = wpas_get_bands(wpa_s, NULL);
  5796. p2p_scan_ie(wpa_s->global->p2p, ies, NULL, bands);
  5797. }
  5798. static void wpas_p2p_group_deinit(struct wpa_supplicant *wpa_s)
  5799. {
  5800. p2p_group_deinit(wpa_s->p2p_group);
  5801. wpa_s->p2p_group = NULL;
  5802. wpa_s->ap_configured_cb = NULL;
  5803. wpa_s->ap_configured_cb_ctx = NULL;
  5804. wpa_s->ap_configured_cb_data = NULL;
  5805. wpa_s->connect_without_scan = NULL;
  5806. }
  5807. int wpas_p2p_reject(struct wpa_supplicant *wpa_s, const u8 *addr)
  5808. {
  5809. wpa_s->p2p_long_listen = 0;
  5810. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5811. return -1;
  5812. return p2p_reject(wpa_s->global->p2p, addr);
  5813. }
  5814. /* Invite to reinvoke a persistent group */
  5815. int wpas_p2p_invite(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  5816. struct wpa_ssid *ssid, const u8 *go_dev_addr, int freq,
  5817. int vht_center_freq2, int ht40, int vht, int max_chwidth,
  5818. int pref_freq)
  5819. {
  5820. enum p2p_invite_role role;
  5821. u8 *bssid = NULL;
  5822. int force_freq = 0;
  5823. int res;
  5824. int no_pref_freq_given = pref_freq == 0;
  5825. unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS], size;
  5826. wpa_s->global->p2p_invite_group = NULL;
  5827. if (peer_addr)
  5828. os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
  5829. else
  5830. os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
  5831. wpa_s->p2p_persistent_go_freq = freq;
  5832. wpa_s->p2p_go_ht40 = !!ht40;
  5833. wpa_s->p2p_go_vht = !!vht;
  5834. wpa_s->p2p_go_max_oper_chwidth = max_chwidth;
  5835. wpa_s->p2p_go_vht_center_freq2 = vht_center_freq2;
  5836. if (ssid->mode == WPAS_MODE_P2P_GO) {
  5837. role = P2P_INVITE_ROLE_GO;
  5838. if (peer_addr == NULL) {
  5839. wpa_printf(MSG_DEBUG, "P2P: Missing peer "
  5840. "address in invitation command");
  5841. return -1;
  5842. }
  5843. if (wpas_p2p_create_iface(wpa_s)) {
  5844. if (wpas_p2p_add_group_interface(wpa_s,
  5845. WPA_IF_P2P_GO) < 0) {
  5846. wpa_printf(MSG_ERROR, "P2P: Failed to "
  5847. "allocate a new interface for the "
  5848. "group");
  5849. return -1;
  5850. }
  5851. bssid = wpa_s->pending_interface_addr;
  5852. } else if (wpa_s->p2p_mgmt)
  5853. bssid = wpa_s->parent->own_addr;
  5854. else
  5855. bssid = wpa_s->own_addr;
  5856. } else {
  5857. role = P2P_INVITE_ROLE_CLIENT;
  5858. peer_addr = ssid->bssid;
  5859. }
  5860. wpa_s->pending_invite_ssid_id = ssid->id;
  5861. size = P2P_MAX_PREF_CHANNELS;
  5862. res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
  5863. role == P2P_INVITE_ROLE_GO,
  5864. pref_freq_list, &size);
  5865. if (res)
  5866. return res;
  5867. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5868. return -1;
  5869. p2p_set_own_pref_freq_list(wpa_s->global->p2p, pref_freq_list, size);
  5870. if (wpa_s->parent->conf->p2p_ignore_shared_freq &&
  5871. no_pref_freq_given && pref_freq > 0 &&
  5872. wpa_s->num_multichan_concurrent > 1 &&
  5873. wpas_p2p_num_unused_channels(wpa_s) > 0) {
  5874. wpa_printf(MSG_DEBUG, "P2P: Ignore own channel preference %d MHz for invitation due to p2p_ignore_shared_freq=1 configuration",
  5875. pref_freq);
  5876. pref_freq = 0;
  5877. }
  5878. /*
  5879. * Stop any find/listen operations before invitation and possibly
  5880. * connection establishment.
  5881. */
  5882. wpas_p2p_stop_find_oper(wpa_s);
  5883. return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
  5884. ssid->ssid, ssid->ssid_len, force_freq, go_dev_addr,
  5885. 1, pref_freq, -1);
  5886. }
  5887. /* Invite to join an active group */
  5888. int wpas_p2p_invite_group(struct wpa_supplicant *wpa_s, const char *ifname,
  5889. const u8 *peer_addr, const u8 *go_dev_addr)
  5890. {
  5891. struct wpa_global *global = wpa_s->global;
  5892. enum p2p_invite_role role;
  5893. u8 *bssid = NULL;
  5894. struct wpa_ssid *ssid;
  5895. int persistent;
  5896. int freq = 0, force_freq = 0, pref_freq = 0;
  5897. int res;
  5898. unsigned int pref_freq_list[P2P_MAX_PREF_CHANNELS], size;
  5899. wpa_s->p2p_persistent_go_freq = 0;
  5900. wpa_s->p2p_go_ht40 = 0;
  5901. wpa_s->p2p_go_vht = 0;
  5902. wpa_s->p2p_go_vht_center_freq2 = 0;
  5903. wpa_s->p2p_go_max_oper_chwidth = 0;
  5904. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  5905. if (os_strcmp(wpa_s->ifname, ifname) == 0)
  5906. break;
  5907. }
  5908. if (wpa_s == NULL) {
  5909. wpa_printf(MSG_DEBUG, "P2P: Interface '%s' not found", ifname);
  5910. return -1;
  5911. }
  5912. ssid = wpa_s->current_ssid;
  5913. if (ssid == NULL) {
  5914. wpa_printf(MSG_DEBUG, "P2P: No current SSID to use for "
  5915. "invitation");
  5916. return -1;
  5917. }
  5918. wpa_s->global->p2p_invite_group = wpa_s;
  5919. persistent = ssid->p2p_persistent_group &&
  5920. wpas_p2p_get_persistent(wpa_s->p2pdev, peer_addr,
  5921. ssid->ssid, ssid->ssid_len);
  5922. if (ssid->mode == WPAS_MODE_P2P_GO) {
  5923. role = P2P_INVITE_ROLE_ACTIVE_GO;
  5924. bssid = wpa_s->own_addr;
  5925. if (go_dev_addr == NULL)
  5926. go_dev_addr = wpa_s->global->p2p_dev_addr;
  5927. freq = ssid->frequency;
  5928. } else {
  5929. role = P2P_INVITE_ROLE_CLIENT;
  5930. if (wpa_s->wpa_state < WPA_ASSOCIATED) {
  5931. wpa_printf(MSG_DEBUG, "P2P: Not associated - cannot "
  5932. "invite to current group");
  5933. return -1;
  5934. }
  5935. bssid = wpa_s->bssid;
  5936. if (go_dev_addr == NULL &&
  5937. !is_zero_ether_addr(wpa_s->go_dev_addr))
  5938. go_dev_addr = wpa_s->go_dev_addr;
  5939. freq = wpa_s->current_bss ? wpa_s->current_bss->freq :
  5940. (int) wpa_s->assoc_freq;
  5941. }
  5942. wpa_s->p2pdev->pending_invite_ssid_id = -1;
  5943. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  5944. return -1;
  5945. size = P2P_MAX_PREF_CHANNELS;
  5946. res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
  5947. role == P2P_INVITE_ROLE_ACTIVE_GO,
  5948. pref_freq_list, &size);
  5949. if (res)
  5950. return res;
  5951. wpas_p2p_set_own_freq_preference(wpa_s, force_freq);
  5952. return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
  5953. ssid->ssid, ssid->ssid_len, force_freq,
  5954. go_dev_addr, persistent, pref_freq, -1);
  5955. }
  5956. void wpas_p2p_completed(struct wpa_supplicant *wpa_s)
  5957. {
  5958. struct wpa_ssid *ssid = wpa_s->current_ssid;
  5959. u8 go_dev_addr[ETH_ALEN];
  5960. int network_id = -1;
  5961. int persistent;
  5962. int freq;
  5963. u8 ip[3 * 4];
  5964. char ip_addr[100];
  5965. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION) {
  5966. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  5967. wpa_s->p2pdev, NULL);
  5968. }
  5969. if (!wpa_s->show_group_started || !ssid)
  5970. return;
  5971. wpa_s->show_group_started = 0;
  5972. if (!wpa_s->p2p_go_group_formation_completed &&
  5973. wpa_s->global->p2p_group_formation == wpa_s) {
  5974. wpa_dbg(wpa_s, MSG_DEBUG,
  5975. "P2P: Marking group formation completed on client on data connection");
  5976. wpa_s->p2p_go_group_formation_completed = 1;
  5977. wpa_s->global->p2p_group_formation = NULL;
  5978. wpa_s->p2p_in_provisioning = 0;
  5979. wpa_s->p2p_in_invitation = 0;
  5980. }
  5981. os_memset(go_dev_addr, 0, ETH_ALEN);
  5982. if (ssid->bssid_set)
  5983. os_memcpy(go_dev_addr, ssid->bssid, ETH_ALEN);
  5984. persistent = wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
  5985. ssid->ssid_len);
  5986. os_memcpy(wpa_s->go_dev_addr, go_dev_addr, ETH_ALEN);
  5987. if (wpa_s->global->p2p_group_formation == wpa_s)
  5988. wpa_s->global->p2p_group_formation = NULL;
  5989. freq = wpa_s->current_bss ? wpa_s->current_bss->freq :
  5990. (int) wpa_s->assoc_freq;
  5991. ip_addr[0] = '\0';
  5992. if (wpa_sm_get_p2p_ip_addr(wpa_s->wpa, ip) == 0) {
  5993. int res;
  5994. res = os_snprintf(ip_addr, sizeof(ip_addr),
  5995. " ip_addr=%u.%u.%u.%u "
  5996. "ip_mask=%u.%u.%u.%u go_ip_addr=%u.%u.%u.%u",
  5997. ip[0], ip[1], ip[2], ip[3],
  5998. ip[4], ip[5], ip[6], ip[7],
  5999. ip[8], ip[9], ip[10], ip[11]);
  6000. if (os_snprintf_error(sizeof(ip_addr), res))
  6001. ip_addr[0] = '\0';
  6002. }
  6003. wpas_p2p_group_started(wpa_s, 0, ssid, freq,
  6004. ssid->passphrase == NULL && ssid->psk_set ?
  6005. ssid->psk : NULL,
  6006. ssid->passphrase, go_dev_addr, persistent,
  6007. ip_addr);
  6008. if (persistent)
  6009. network_id = wpas_p2p_store_persistent_group(wpa_s->p2pdev,
  6010. ssid, go_dev_addr);
  6011. if (network_id < 0)
  6012. network_id = ssid->id;
  6013. wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 1);
  6014. }
  6015. int wpas_p2p_presence_req(struct wpa_supplicant *wpa_s, u32 duration1,
  6016. u32 interval1, u32 duration2, u32 interval2)
  6017. {
  6018. int ret;
  6019. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  6020. return -1;
  6021. if (wpa_s->wpa_state < WPA_ASSOCIATED ||
  6022. wpa_s->current_ssid == NULL ||
  6023. wpa_s->current_ssid->mode != WPAS_MODE_INFRA)
  6024. return -1;
  6025. ret = p2p_presence_req(wpa_s->global->p2p, wpa_s->bssid,
  6026. wpa_s->own_addr, wpa_s->assoc_freq,
  6027. duration1, interval1, duration2, interval2);
  6028. if (ret == 0)
  6029. wpa_s->waiting_presence_resp = 1;
  6030. return ret;
  6031. }
  6032. int wpas_p2p_ext_listen(struct wpa_supplicant *wpa_s, unsigned int period,
  6033. unsigned int interval)
  6034. {
  6035. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  6036. return -1;
  6037. return p2p_ext_listen(wpa_s->global->p2p, period, interval);
  6038. }
  6039. static int wpas_p2p_is_client(struct wpa_supplicant *wpa_s)
  6040. {
  6041. if (wpa_s->current_ssid == NULL) {
  6042. /*
  6043. * current_ssid can be cleared when P2P client interface gets
  6044. * disconnected, so assume this interface was used as P2P
  6045. * client.
  6046. */
  6047. return 1;
  6048. }
  6049. return wpa_s->current_ssid->p2p_group &&
  6050. wpa_s->current_ssid->mode == WPAS_MODE_INFRA;
  6051. }
  6052. static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx)
  6053. {
  6054. struct wpa_supplicant *wpa_s = eloop_ctx;
  6055. if (wpa_s->conf->p2p_group_idle == 0 && !wpas_p2p_is_client(wpa_s)) {
  6056. wpa_printf(MSG_DEBUG, "P2P: Ignore group idle timeout - "
  6057. "disabled");
  6058. return;
  6059. }
  6060. wpa_printf(MSG_DEBUG, "P2P: Group idle timeout reached - terminate "
  6061. "group");
  6062. wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_IDLE_TIMEOUT);
  6063. }
  6064. static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s)
  6065. {
  6066. int timeout;
  6067. if (eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
  6068. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
  6069. if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
  6070. return;
  6071. timeout = wpa_s->conf->p2p_group_idle;
  6072. if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA &&
  6073. (timeout == 0 || timeout > P2P_MAX_CLIENT_IDLE))
  6074. timeout = P2P_MAX_CLIENT_IDLE;
  6075. if (timeout == 0)
  6076. return;
  6077. if (timeout < 0) {
  6078. if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA)
  6079. timeout = 0; /* special client mode no-timeout */
  6080. else
  6081. return;
  6082. }
  6083. if (wpa_s->p2p_in_provisioning) {
  6084. /*
  6085. * Use the normal group formation timeout during the
  6086. * provisioning phase to avoid terminating this process too
  6087. * early due to group idle timeout.
  6088. */
  6089. wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
  6090. "during provisioning");
  6091. return;
  6092. }
  6093. if (wpa_s->show_group_started) {
  6094. /*
  6095. * Use the normal group formation timeout between the end of
  6096. * the provisioning phase and completion of 4-way handshake to
  6097. * avoid terminating this process too early due to group idle
  6098. * timeout.
  6099. */
  6100. wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
  6101. "while waiting for initial 4-way handshake to "
  6102. "complete");
  6103. return;
  6104. }
  6105. wpa_printf(MSG_DEBUG, "P2P: Set P2P group idle timeout to %u seconds",
  6106. timeout);
  6107. eloop_register_timeout(timeout, 0, wpas_p2p_group_idle_timeout,
  6108. wpa_s, NULL);
  6109. }
  6110. /* Returns 1 if the interface was removed */
  6111. int wpas_p2p_deauth_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
  6112. u16 reason_code, const u8 *ie, size_t ie_len,
  6113. int locally_generated)
  6114. {
  6115. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  6116. return 0;
  6117. if (!locally_generated)
  6118. p2p_deauth_notif(wpa_s->global->p2p, bssid, reason_code, ie,
  6119. ie_len);
  6120. if (reason_code == WLAN_REASON_DEAUTH_LEAVING && !locally_generated &&
  6121. wpa_s->current_ssid &&
  6122. wpa_s->current_ssid->p2p_group &&
  6123. wpa_s->current_ssid->mode == WPAS_MODE_INFRA) {
  6124. wpa_printf(MSG_DEBUG, "P2P: GO indicated that the P2P Group "
  6125. "session is ending");
  6126. if (wpas_p2p_group_delete(wpa_s,
  6127. P2P_GROUP_REMOVAL_GO_ENDING_SESSION)
  6128. > 0)
  6129. return 1;
  6130. }
  6131. return 0;
  6132. }
  6133. void wpas_p2p_disassoc_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
  6134. u16 reason_code, const u8 *ie, size_t ie_len,
  6135. int locally_generated)
  6136. {
  6137. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  6138. return;
  6139. if (!locally_generated)
  6140. p2p_disassoc_notif(wpa_s->global->p2p, bssid, reason_code, ie,
  6141. ie_len);
  6142. }
  6143. void wpas_p2p_update_config(struct wpa_supplicant *wpa_s)
  6144. {
  6145. struct p2p_data *p2p = wpa_s->global->p2p;
  6146. if (p2p == NULL)
  6147. return;
  6148. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
  6149. return;
  6150. if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_NAME)
  6151. p2p_set_dev_name(p2p, wpa_s->conf->device_name);
  6152. if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_TYPE)
  6153. p2p_set_pri_dev_type(p2p, wpa_s->conf->device_type);
  6154. if (wpa_s->wps &&
  6155. (wpa_s->conf->changed_parameters & CFG_CHANGED_CONFIG_METHODS))
  6156. p2p_set_config_methods(p2p, wpa_s->wps->config_methods);
  6157. if (wpa_s->wps && (wpa_s->conf->changed_parameters & CFG_CHANGED_UUID))
  6158. p2p_set_uuid(p2p, wpa_s->wps->uuid);
  6159. if (wpa_s->conf->changed_parameters & CFG_CHANGED_WPS_STRING) {
  6160. p2p_set_manufacturer(p2p, wpa_s->conf->manufacturer);
  6161. p2p_set_model_name(p2p, wpa_s->conf->model_name);
  6162. p2p_set_model_number(p2p, wpa_s->conf->model_number);
  6163. p2p_set_serial_number(p2p, wpa_s->conf->serial_number);
  6164. }
  6165. if (wpa_s->conf->changed_parameters & CFG_CHANGED_SEC_DEVICE_TYPE)
  6166. p2p_set_sec_dev_types(p2p,
  6167. (void *) wpa_s->conf->sec_device_type,
  6168. wpa_s->conf->num_sec_device_types);
  6169. if (wpa_s->conf->changed_parameters & CFG_CHANGED_VENDOR_EXTENSION) {
  6170. int i;
  6171. p2p_remove_wps_vendor_extensions(p2p);
  6172. for (i = 0; i < MAX_WPS_VENDOR_EXT; i++) {
  6173. if (wpa_s->conf->wps_vendor_ext[i] == NULL)
  6174. continue;
  6175. p2p_add_wps_vendor_extension(
  6176. p2p, wpa_s->conf->wps_vendor_ext[i]);
  6177. }
  6178. }
  6179. if ((wpa_s->conf->changed_parameters & CFG_CHANGED_COUNTRY) &&
  6180. wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
  6181. char country[3];
  6182. country[0] = wpa_s->conf->country[0];
  6183. country[1] = wpa_s->conf->country[1];
  6184. country[2] = 0x04;
  6185. p2p_set_country(p2p, country);
  6186. }
  6187. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_SSID_POSTFIX) {
  6188. p2p_set_ssid_postfix(p2p, (u8 *) wpa_s->conf->p2p_ssid_postfix,
  6189. wpa_s->conf->p2p_ssid_postfix ?
  6190. os_strlen(wpa_s->conf->p2p_ssid_postfix) :
  6191. 0);
  6192. }
  6193. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_INTRA_BSS)
  6194. p2p_set_intra_bss_dist(p2p, wpa_s->conf->p2p_intra_bss);
  6195. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_LISTEN_CHANNEL) {
  6196. u8 reg_class, channel;
  6197. int ret;
  6198. unsigned int r;
  6199. u8 channel_forced;
  6200. if (wpa_s->conf->p2p_listen_reg_class &&
  6201. wpa_s->conf->p2p_listen_channel) {
  6202. reg_class = wpa_s->conf->p2p_listen_reg_class;
  6203. channel = wpa_s->conf->p2p_listen_channel;
  6204. channel_forced = 1;
  6205. } else {
  6206. reg_class = 81;
  6207. /*
  6208. * Pick one of the social channels randomly as the
  6209. * listen channel.
  6210. */
  6211. if (os_get_random((u8 *) &r, sizeof(r)) < 0)
  6212. channel = 1;
  6213. else
  6214. channel = 1 + (r % 3) * 5;
  6215. channel_forced = 0;
  6216. }
  6217. ret = p2p_set_listen_channel(p2p, reg_class, channel,
  6218. channel_forced);
  6219. if (ret)
  6220. wpa_printf(MSG_ERROR, "P2P: Own listen channel update "
  6221. "failed: %d", ret);
  6222. }
  6223. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_OPER_CHANNEL) {
  6224. u8 op_reg_class, op_channel, cfg_op_channel;
  6225. int ret = 0;
  6226. unsigned int r;
  6227. if (wpa_s->conf->p2p_oper_reg_class &&
  6228. wpa_s->conf->p2p_oper_channel) {
  6229. op_reg_class = wpa_s->conf->p2p_oper_reg_class;
  6230. op_channel = wpa_s->conf->p2p_oper_channel;
  6231. cfg_op_channel = 1;
  6232. } else {
  6233. op_reg_class = 81;
  6234. /*
  6235. * Use random operation channel from (1, 6, 11)
  6236. *if no other preference is indicated.
  6237. */
  6238. if (os_get_random((u8 *) &r, sizeof(r)) < 0)
  6239. op_channel = 1;
  6240. else
  6241. op_channel = 1 + (r % 3) * 5;
  6242. cfg_op_channel = 0;
  6243. }
  6244. ret = p2p_set_oper_channel(p2p, op_reg_class, op_channel,
  6245. cfg_op_channel);
  6246. if (ret)
  6247. wpa_printf(MSG_ERROR, "P2P: Own oper channel update "
  6248. "failed: %d", ret);
  6249. }
  6250. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_PREF_CHAN) {
  6251. if (p2p_set_pref_chan(p2p, wpa_s->conf->num_p2p_pref_chan,
  6252. wpa_s->conf->p2p_pref_chan) < 0) {
  6253. wpa_printf(MSG_ERROR, "P2P: Preferred channel list "
  6254. "update failed");
  6255. }
  6256. if (p2p_set_no_go_freq(p2p, &wpa_s->conf->p2p_no_go_freq) < 0) {
  6257. wpa_printf(MSG_ERROR, "P2P: No GO channel list "
  6258. "update failed");
  6259. }
  6260. }
  6261. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_PASSPHRASE_LEN)
  6262. p2p_set_passphrase_len(p2p, wpa_s->conf->p2p_passphrase_len);
  6263. }
  6264. int wpas_p2p_set_noa(struct wpa_supplicant *wpa_s, u8 count, int start,
  6265. int duration)
  6266. {
  6267. if (!wpa_s->ap_iface)
  6268. return -1;
  6269. return hostapd_p2p_set_noa(wpa_s->ap_iface->bss[0], count, start,
  6270. duration);
  6271. }
  6272. int wpas_p2p_set_cross_connect(struct wpa_supplicant *wpa_s, int enabled)
  6273. {
  6274. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  6275. return -1;
  6276. wpa_s->global->cross_connection = enabled;
  6277. p2p_set_cross_connect(wpa_s->global->p2p, enabled);
  6278. if (!enabled) {
  6279. struct wpa_supplicant *iface;
  6280. for (iface = wpa_s->global->ifaces; iface; iface = iface->next)
  6281. {
  6282. if (iface->cross_connect_enabled == 0)
  6283. continue;
  6284. iface->cross_connect_enabled = 0;
  6285. iface->cross_connect_in_use = 0;
  6286. wpa_msg_global(iface->p2pdev, MSG_INFO,
  6287. P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
  6288. iface->ifname,
  6289. iface->cross_connect_uplink);
  6290. }
  6291. }
  6292. return 0;
  6293. }
  6294. static void wpas_p2p_enable_cross_connect(struct wpa_supplicant *uplink)
  6295. {
  6296. struct wpa_supplicant *iface;
  6297. if (!uplink->global->cross_connection)
  6298. return;
  6299. for (iface = uplink->global->ifaces; iface; iface = iface->next) {
  6300. if (!iface->cross_connect_enabled)
  6301. continue;
  6302. if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
  6303. 0)
  6304. continue;
  6305. if (iface->ap_iface == NULL)
  6306. continue;
  6307. if (iface->cross_connect_in_use)
  6308. continue;
  6309. iface->cross_connect_in_use = 1;
  6310. wpa_msg_global(iface->p2pdev, MSG_INFO,
  6311. P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
  6312. iface->ifname, iface->cross_connect_uplink);
  6313. }
  6314. }
  6315. static void wpas_p2p_disable_cross_connect(struct wpa_supplicant *uplink)
  6316. {
  6317. struct wpa_supplicant *iface;
  6318. for (iface = uplink->global->ifaces; iface; iface = iface->next) {
  6319. if (!iface->cross_connect_enabled)
  6320. continue;
  6321. if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
  6322. 0)
  6323. continue;
  6324. if (!iface->cross_connect_in_use)
  6325. continue;
  6326. wpa_msg_global(iface->p2pdev, MSG_INFO,
  6327. P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
  6328. iface->ifname, iface->cross_connect_uplink);
  6329. iface->cross_connect_in_use = 0;
  6330. }
  6331. }
  6332. void wpas_p2p_notif_connected(struct wpa_supplicant *wpa_s)
  6333. {
  6334. if (wpa_s->ap_iface || wpa_s->current_ssid == NULL ||
  6335. wpa_s->current_ssid->mode != WPAS_MODE_INFRA ||
  6336. wpa_s->cross_connect_disallowed)
  6337. wpas_p2p_disable_cross_connect(wpa_s);
  6338. else
  6339. wpas_p2p_enable_cross_connect(wpa_s);
  6340. if (!wpa_s->ap_iface &&
  6341. eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
  6342. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
  6343. }
  6344. void wpas_p2p_notif_disconnected(struct wpa_supplicant *wpa_s)
  6345. {
  6346. wpas_p2p_disable_cross_connect(wpa_s);
  6347. if (!wpa_s->ap_iface &&
  6348. !eloop_is_timeout_registered(wpas_p2p_group_idle_timeout,
  6349. wpa_s, NULL))
  6350. wpas_p2p_set_group_idle_timeout(wpa_s);
  6351. }
  6352. static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s)
  6353. {
  6354. struct wpa_supplicant *iface;
  6355. if (!wpa_s->global->cross_connection)
  6356. return;
  6357. for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
  6358. if (iface == wpa_s)
  6359. continue;
  6360. if (iface->drv_flags &
  6361. WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE)
  6362. continue;
  6363. if ((iface->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE) &&
  6364. iface != wpa_s->parent)
  6365. continue;
  6366. wpa_s->cross_connect_enabled = 1;
  6367. os_strlcpy(wpa_s->cross_connect_uplink, iface->ifname,
  6368. sizeof(wpa_s->cross_connect_uplink));
  6369. wpa_printf(MSG_DEBUG, "P2P: Enable cross connection from "
  6370. "%s to %s whenever uplink is available",
  6371. wpa_s->ifname, wpa_s->cross_connect_uplink);
  6372. if (iface->ap_iface || iface->current_ssid == NULL ||
  6373. iface->current_ssid->mode != WPAS_MODE_INFRA ||
  6374. iface->cross_connect_disallowed ||
  6375. iface->wpa_state != WPA_COMPLETED)
  6376. break;
  6377. wpa_s->cross_connect_in_use = 1;
  6378. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  6379. P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
  6380. wpa_s->ifname, wpa_s->cross_connect_uplink);
  6381. break;
  6382. }
  6383. }
  6384. int wpas_p2p_notif_pbc_overlap(struct wpa_supplicant *wpa_s)
  6385. {
  6386. if (wpa_s->p2p_group_interface != P2P_GROUP_INTERFACE_CLIENT &&
  6387. !wpa_s->p2p_in_provisioning)
  6388. return 0; /* not P2P client operation */
  6389. wpa_printf(MSG_DEBUG, "P2P: Terminate connection due to WPS PBC "
  6390. "session overlap");
  6391. if (wpa_s != wpa_s->p2pdev)
  6392. wpa_msg_ctrl(wpa_s->p2pdev, MSG_INFO, WPS_EVENT_OVERLAP);
  6393. wpas_p2p_group_formation_failed(wpa_s, 0);
  6394. return 1;
  6395. }
  6396. void wpas_p2p_pbc_overlap_cb(void *eloop_ctx, void *timeout_ctx)
  6397. {
  6398. struct wpa_supplicant *wpa_s = eloop_ctx;
  6399. wpas_p2p_notif_pbc_overlap(wpa_s);
  6400. }
  6401. void wpas_p2p_update_channel_list(struct wpa_supplicant *wpa_s,
  6402. enum wpas_p2p_channel_update_trig trig)
  6403. {
  6404. struct p2p_channels chan, cli_chan;
  6405. struct wpa_used_freq_data *freqs = NULL;
  6406. unsigned int num = wpa_s->num_multichan_concurrent;
  6407. if (wpa_s->global == NULL || wpa_s->global->p2p == NULL)
  6408. return;
  6409. freqs = os_calloc(num, sizeof(struct wpa_used_freq_data));
  6410. if (!freqs)
  6411. return;
  6412. num = get_shared_radio_freqs_data(wpa_s, freqs, num);
  6413. os_memset(&chan, 0, sizeof(chan));
  6414. os_memset(&cli_chan, 0, sizeof(cli_chan));
  6415. if (wpas_p2p_setup_channels(wpa_s, &chan, &cli_chan)) {
  6416. wpa_printf(MSG_ERROR, "P2P: Failed to update supported "
  6417. "channel list");
  6418. return;
  6419. }
  6420. p2p_update_channel_list(wpa_s->global->p2p, &chan, &cli_chan);
  6421. wpas_p2p_optimize_listen_channel(wpa_s, freqs, num);
  6422. /*
  6423. * The used frequencies map changed, so it is possible that a GO is
  6424. * using a channel that is no longer valid for P2P use. It is also
  6425. * possible that due to policy consideration, it would be preferable to
  6426. * move it to a frequency already used by other station interfaces.
  6427. */
  6428. wpas_p2p_consider_moving_gos(wpa_s, freqs, num, trig);
  6429. os_free(freqs);
  6430. }
  6431. static void wpas_p2p_scan_res_ignore(struct wpa_supplicant *wpa_s,
  6432. struct wpa_scan_results *scan_res)
  6433. {
  6434. wpa_printf(MSG_DEBUG, "P2P: Ignore scan results");
  6435. }
  6436. int wpas_p2p_cancel(struct wpa_supplicant *wpa_s)
  6437. {
  6438. struct wpa_global *global = wpa_s->global;
  6439. int found = 0;
  6440. const u8 *peer;
  6441. if (global->p2p == NULL)
  6442. return -1;
  6443. wpa_printf(MSG_DEBUG, "P2P: Request to cancel group formation");
  6444. if (wpa_s->pending_interface_name[0] &&
  6445. !is_zero_ether_addr(wpa_s->pending_interface_addr))
  6446. found = 1;
  6447. peer = p2p_get_go_neg_peer(global->p2p);
  6448. if (peer) {
  6449. wpa_printf(MSG_DEBUG, "P2P: Unauthorize pending GO Neg peer "
  6450. MACSTR, MAC2STR(peer));
  6451. p2p_unauthorize(global->p2p, peer);
  6452. found = 1;
  6453. }
  6454. if (wpa_s->scan_res_handler == wpas_p2p_scan_res_join) {
  6455. wpa_printf(MSG_DEBUG, "P2P: Stop pending scan for join");
  6456. wpa_s->scan_res_handler = wpas_p2p_scan_res_ignore;
  6457. found = 1;
  6458. }
  6459. if (wpa_s->pending_pd_before_join) {
  6460. wpa_printf(MSG_DEBUG, "P2P: Stop pending PD before join");
  6461. wpa_s->pending_pd_before_join = 0;
  6462. found = 1;
  6463. }
  6464. wpas_p2p_stop_find(wpa_s);
  6465. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  6466. if (wpa_s == global->p2p_group_formation &&
  6467. (wpa_s->p2p_in_provisioning ||
  6468. wpa_s->parent->pending_interface_type ==
  6469. WPA_IF_P2P_CLIENT)) {
  6470. wpa_printf(MSG_DEBUG, "P2P: Interface %s in group "
  6471. "formation found - cancelling",
  6472. wpa_s->ifname);
  6473. found = 1;
  6474. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  6475. wpa_s->p2pdev, NULL);
  6476. if (wpa_s->p2p_in_provisioning) {
  6477. wpas_group_formation_completed(wpa_s, 0, 0);
  6478. break;
  6479. }
  6480. wpas_p2p_group_delete(wpa_s,
  6481. P2P_GROUP_REMOVAL_REQUESTED);
  6482. break;
  6483. } else if (wpa_s->p2p_in_invitation) {
  6484. wpa_printf(MSG_DEBUG, "P2P: Interface %s in invitation found - cancelling",
  6485. wpa_s->ifname);
  6486. found = 1;
  6487. wpas_p2p_group_formation_failed(wpa_s, 0);
  6488. break;
  6489. }
  6490. }
  6491. if (!found) {
  6492. wpa_printf(MSG_DEBUG, "P2P: No ongoing group formation found");
  6493. return -1;
  6494. }
  6495. return 0;
  6496. }
  6497. void wpas_p2p_interface_unavailable(struct wpa_supplicant *wpa_s)
  6498. {
  6499. if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
  6500. return;
  6501. wpa_printf(MSG_DEBUG, "P2P: Remove group due to driver resource not "
  6502. "being available anymore");
  6503. wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_UNAVAILABLE);
  6504. }
  6505. void wpas_p2p_update_best_channels(struct wpa_supplicant *wpa_s,
  6506. int freq_24, int freq_5, int freq_overall)
  6507. {
  6508. struct p2p_data *p2p = wpa_s->global->p2p;
  6509. if (p2p == NULL)
  6510. return;
  6511. p2p_set_best_channels(p2p, freq_24, freq_5, freq_overall);
  6512. }
  6513. int wpas_p2p_unauthorize(struct wpa_supplicant *wpa_s, const char *addr)
  6514. {
  6515. u8 peer[ETH_ALEN];
  6516. struct p2p_data *p2p = wpa_s->global->p2p;
  6517. if (p2p == NULL)
  6518. return -1;
  6519. if (hwaddr_aton(addr, peer))
  6520. return -1;
  6521. return p2p_unauthorize(p2p, peer);
  6522. }
  6523. /**
  6524. * wpas_p2p_disconnect - Disconnect from a P2P Group
  6525. * @wpa_s: Pointer to wpa_supplicant data
  6526. * Returns: 0 on success, -1 on failure
  6527. *
  6528. * This can be used to disconnect from a group in which the local end is a P2P
  6529. * Client or to end a P2P Group in case the local end is the Group Owner. If a
  6530. * virtual network interface was created for this group, that interface will be
  6531. * removed. Otherwise, only the configured P2P group network will be removed
  6532. * from the interface.
  6533. */
  6534. int wpas_p2p_disconnect(struct wpa_supplicant *wpa_s)
  6535. {
  6536. if (wpa_s == NULL)
  6537. return -1;
  6538. return wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_REQUESTED) < 0 ?
  6539. -1 : 0;
  6540. }
  6541. int wpas_p2p_in_progress(struct wpa_supplicant *wpa_s)
  6542. {
  6543. int ret;
  6544. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  6545. return 0;
  6546. ret = p2p_in_progress(wpa_s->global->p2p);
  6547. if (ret == 0) {
  6548. /*
  6549. * Check whether there is an ongoing WPS provisioning step (or
  6550. * other parts of group formation) on another interface since
  6551. * p2p_in_progress() does not report this to avoid issues for
  6552. * scans during such provisioning step.
  6553. */
  6554. if (wpa_s->global->p2p_group_formation &&
  6555. wpa_s->global->p2p_group_formation != wpa_s) {
  6556. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Another interface (%s) "
  6557. "in group formation",
  6558. wpa_s->global->p2p_group_formation->ifname);
  6559. ret = 1;
  6560. }
  6561. }
  6562. if (!ret && wpa_s->global->p2p_go_wait_client.sec) {
  6563. struct os_reltime now;
  6564. os_get_reltime(&now);
  6565. if (os_reltime_expired(&now, &wpa_s->global->p2p_go_wait_client,
  6566. P2P_MAX_INITIAL_CONN_WAIT_GO)) {
  6567. /* Wait for the first client has expired */
  6568. wpa_s->global->p2p_go_wait_client.sec = 0;
  6569. } else {
  6570. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Waiting for initial client connection during group formation");
  6571. ret = 1;
  6572. }
  6573. }
  6574. return ret;
  6575. }
  6576. void wpas_p2p_network_removed(struct wpa_supplicant *wpa_s,
  6577. struct wpa_ssid *ssid)
  6578. {
  6579. if (wpa_s->p2p_in_provisioning && ssid->p2p_group &&
  6580. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  6581. wpa_s->p2pdev, NULL) > 0) {
  6582. /**
  6583. * Remove the network by scheduling the group formation
  6584. * timeout to happen immediately. The teardown code
  6585. * needs to be scheduled to run asynch later so that we
  6586. * don't delete data from under ourselves unexpectedly.
  6587. * Calling wpas_p2p_group_formation_timeout directly
  6588. * causes a series of crashes in WPS failure scenarios.
  6589. */
  6590. wpa_printf(MSG_DEBUG, "P2P: Canceled group formation due to "
  6591. "P2P group network getting removed");
  6592. eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
  6593. wpa_s->p2pdev, NULL);
  6594. }
  6595. }
  6596. struct wpa_ssid * wpas_p2p_get_persistent(struct wpa_supplicant *wpa_s,
  6597. const u8 *addr, const u8 *ssid,
  6598. size_t ssid_len)
  6599. {
  6600. struct wpa_ssid *s;
  6601. size_t i;
  6602. for (s = wpa_s->conf->ssid; s; s = s->next) {
  6603. if (s->disabled != 2)
  6604. continue;
  6605. if (ssid &&
  6606. (ssid_len != s->ssid_len ||
  6607. os_memcmp(ssid, s->ssid, ssid_len) != 0))
  6608. continue;
  6609. if (addr == NULL) {
  6610. if (s->mode == WPAS_MODE_P2P_GO)
  6611. return s;
  6612. continue;
  6613. }
  6614. if (os_memcmp(s->bssid, addr, ETH_ALEN) == 0)
  6615. return s; /* peer is GO in the persistent group */
  6616. if (s->mode != WPAS_MODE_P2P_GO || s->p2p_client_list == NULL)
  6617. continue;
  6618. for (i = 0; i < s->num_p2p_clients; i++) {
  6619. if (os_memcmp(s->p2p_client_list + i * 2 * ETH_ALEN,
  6620. addr, ETH_ALEN) == 0)
  6621. return s; /* peer is P2P client in persistent
  6622. * group */
  6623. }
  6624. }
  6625. return NULL;
  6626. }
  6627. void wpas_p2p_notify_ap_sta_authorized(struct wpa_supplicant *wpa_s,
  6628. const u8 *addr)
  6629. {
  6630. if (eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  6631. wpa_s->p2pdev, NULL) > 0) {
  6632. /*
  6633. * This can happen if WPS provisioning step is not terminated
  6634. * cleanly (e.g., P2P Client does not send WSC_Done). Since the
  6635. * peer was able to connect, there is no need to time out group
  6636. * formation after this, though. In addition, this is used with
  6637. * the initial connection wait on the GO as a separate formation
  6638. * timeout and as such, expected to be hit after the initial WPS
  6639. * provisioning step.
  6640. */
  6641. wpa_printf(MSG_DEBUG, "P2P: Canceled P2P group formation timeout on data connection");
  6642. if (!wpa_s->p2p_go_group_formation_completed &&
  6643. !wpa_s->group_formation_reported) {
  6644. /*
  6645. * GO has not yet notified group formation success since
  6646. * the WPS step was not completed cleanly. Do that
  6647. * notification now since the P2P Client was able to
  6648. * connect and as such, must have received the
  6649. * credential from the WPS step.
  6650. */
  6651. if (wpa_s->global->p2p)
  6652. p2p_wps_success_cb(wpa_s->global->p2p, addr);
  6653. wpas_group_formation_completed(wpa_s, 1, 0);
  6654. }
  6655. }
  6656. if (!wpa_s->p2p_go_group_formation_completed) {
  6657. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Marking group formation completed on GO on first data connection");
  6658. wpa_s->p2p_go_group_formation_completed = 1;
  6659. wpa_s->global->p2p_group_formation = NULL;
  6660. wpa_s->p2p_in_provisioning = 0;
  6661. wpa_s->p2p_in_invitation = 0;
  6662. }
  6663. wpa_s->global->p2p_go_wait_client.sec = 0;
  6664. if (addr == NULL)
  6665. return;
  6666. wpas_p2p_add_persistent_group_client(wpa_s, addr);
  6667. }
  6668. static int wpas_p2p_fallback_to_go_neg(struct wpa_supplicant *wpa_s,
  6669. int group_added)
  6670. {
  6671. struct wpa_supplicant *group = wpa_s;
  6672. int ret = 0;
  6673. if (wpa_s->global->p2p_group_formation)
  6674. group = wpa_s->global->p2p_group_formation;
  6675. wpa_s = wpa_s->global->p2p_init_wpa_s;
  6676. offchannel_send_action_done(wpa_s);
  6677. if (group_added)
  6678. ret = wpas_p2p_group_delete(group, P2P_GROUP_REMOVAL_SILENT);
  6679. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Fall back to GO Negotiation");
  6680. wpas_p2p_connect(wpa_s, wpa_s->pending_join_dev_addr, wpa_s->p2p_pin,
  6681. wpa_s->p2p_wps_method, wpa_s->p2p_persistent_group, 0,
  6682. 0, 0, wpa_s->p2p_go_intent, wpa_s->p2p_connect_freq,
  6683. wpa_s->p2p_go_vht_center_freq2,
  6684. wpa_s->p2p_persistent_id,
  6685. wpa_s->p2p_pd_before_go_neg,
  6686. wpa_s->p2p_go_ht40,
  6687. wpa_s->p2p_go_vht,
  6688. wpa_s->p2p_go_max_oper_chwidth, NULL, 0);
  6689. return ret;
  6690. }
  6691. int wpas_p2p_scan_no_go_seen(struct wpa_supplicant *wpa_s)
  6692. {
  6693. int res;
  6694. if (!wpa_s->p2p_fallback_to_go_neg ||
  6695. wpa_s->p2p_in_provisioning <= 5)
  6696. return 0;
  6697. if (wpas_p2p_peer_go(wpa_s, wpa_s->pending_join_dev_addr) > 0)
  6698. return 0; /* peer operating as a GO */
  6699. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: GO not found for p2p_connect-auto - "
  6700. "fallback to GO Negotiation");
  6701. wpa_msg_global(wpa_s->p2pdev, MSG_INFO, P2P_EVENT_FALLBACK_TO_GO_NEG
  6702. "reason=GO-not-found");
  6703. res = wpas_p2p_fallback_to_go_neg(wpa_s, 1);
  6704. return res == 1 ? 2 : 1;
  6705. }
  6706. unsigned int wpas_p2p_search_delay(struct wpa_supplicant *wpa_s)
  6707. {
  6708. struct wpa_supplicant *ifs;
  6709. if (wpa_s->wpa_state > WPA_SCANNING) {
  6710. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use %u ms search delay due to "
  6711. "concurrent operation",
  6712. wpa_s->conf->p2p_search_delay);
  6713. return wpa_s->conf->p2p_search_delay;
  6714. }
  6715. dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
  6716. radio_list) {
  6717. if (ifs != wpa_s && ifs->wpa_state > WPA_SCANNING) {
  6718. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use %u ms search "
  6719. "delay due to concurrent operation on "
  6720. "interface %s",
  6721. wpa_s->conf->p2p_search_delay,
  6722. ifs->ifname);
  6723. return wpa_s->conf->p2p_search_delay;
  6724. }
  6725. }
  6726. return 0;
  6727. }
  6728. static int wpas_p2p_remove_psk_entry(struct wpa_supplicant *wpa_s,
  6729. struct wpa_ssid *s, const u8 *addr,
  6730. int iface_addr)
  6731. {
  6732. struct psk_list_entry *psk, *tmp;
  6733. int changed = 0;
  6734. dl_list_for_each_safe(psk, tmp, &s->psk_list, struct psk_list_entry,
  6735. list) {
  6736. if ((iface_addr && !psk->p2p &&
  6737. os_memcmp(addr, psk->addr, ETH_ALEN) == 0) ||
  6738. (!iface_addr && psk->p2p &&
  6739. os_memcmp(addr, psk->addr, ETH_ALEN) == 0)) {
  6740. wpa_dbg(wpa_s, MSG_DEBUG,
  6741. "P2P: Remove persistent group PSK list entry for "
  6742. MACSTR " p2p=%u",
  6743. MAC2STR(psk->addr), psk->p2p);
  6744. dl_list_del(&psk->list);
  6745. os_free(psk);
  6746. changed++;
  6747. }
  6748. }
  6749. return changed;
  6750. }
  6751. void wpas_p2p_new_psk_cb(struct wpa_supplicant *wpa_s, const u8 *mac_addr,
  6752. const u8 *p2p_dev_addr,
  6753. const u8 *psk, size_t psk_len)
  6754. {
  6755. struct wpa_ssid *ssid = wpa_s->current_ssid;
  6756. struct wpa_ssid *persistent;
  6757. struct psk_list_entry *p, *last;
  6758. if (psk_len != sizeof(p->psk))
  6759. return;
  6760. if (p2p_dev_addr) {
  6761. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New PSK for addr=" MACSTR
  6762. " p2p_dev_addr=" MACSTR,
  6763. MAC2STR(mac_addr), MAC2STR(p2p_dev_addr));
  6764. if (is_zero_ether_addr(p2p_dev_addr))
  6765. p2p_dev_addr = NULL;
  6766. } else {
  6767. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New PSK for addr=" MACSTR,
  6768. MAC2STR(mac_addr));
  6769. }
  6770. if (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
  6771. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: new_psk_cb during group formation");
  6772. /* To be added to persistent group once created */
  6773. if (wpa_s->global->add_psk == NULL) {
  6774. wpa_s->global->add_psk = os_zalloc(sizeof(*p));
  6775. if (wpa_s->global->add_psk == NULL)
  6776. return;
  6777. }
  6778. p = wpa_s->global->add_psk;
  6779. if (p2p_dev_addr) {
  6780. p->p2p = 1;
  6781. os_memcpy(p->addr, p2p_dev_addr, ETH_ALEN);
  6782. } else {
  6783. p->p2p = 0;
  6784. os_memcpy(p->addr, mac_addr, ETH_ALEN);
  6785. }
  6786. os_memcpy(p->psk, psk, psk_len);
  6787. return;
  6788. }
  6789. if (ssid->mode != WPAS_MODE_P2P_GO || !ssid->p2p_persistent_group) {
  6790. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Ignore new_psk_cb on not-persistent GO");
  6791. return;
  6792. }
  6793. persistent = wpas_p2p_get_persistent(wpa_s->p2pdev, NULL, ssid->ssid,
  6794. ssid->ssid_len);
  6795. if (!persistent) {
  6796. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not find persistent group information to store the new PSK");
  6797. return;
  6798. }
  6799. p = os_zalloc(sizeof(*p));
  6800. if (p == NULL)
  6801. return;
  6802. if (p2p_dev_addr) {
  6803. p->p2p = 1;
  6804. os_memcpy(p->addr, p2p_dev_addr, ETH_ALEN);
  6805. } else {
  6806. p->p2p = 0;
  6807. os_memcpy(p->addr, mac_addr, ETH_ALEN);
  6808. }
  6809. os_memcpy(p->psk, psk, psk_len);
  6810. if (dl_list_len(&persistent->psk_list) > P2P_MAX_STORED_CLIENTS &&
  6811. (last = dl_list_last(&persistent->psk_list,
  6812. struct psk_list_entry, list))) {
  6813. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove oldest PSK entry for "
  6814. MACSTR " (p2p=%u) to make room for a new one",
  6815. MAC2STR(last->addr), last->p2p);
  6816. dl_list_del(&last->list);
  6817. os_free(last);
  6818. }
  6819. wpas_p2p_remove_psk_entry(wpa_s->p2pdev, persistent,
  6820. p2p_dev_addr ? p2p_dev_addr : mac_addr,
  6821. p2p_dev_addr == NULL);
  6822. if (p2p_dev_addr) {
  6823. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add new PSK for p2p_dev_addr="
  6824. MACSTR, MAC2STR(p2p_dev_addr));
  6825. } else {
  6826. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Add new PSK for addr=" MACSTR,
  6827. MAC2STR(mac_addr));
  6828. }
  6829. dl_list_add(&persistent->psk_list, &p->list);
  6830. if (wpa_s->p2pdev->conf->update_config &&
  6831. wpa_config_write(wpa_s->p2pdev->confname, wpa_s->p2pdev->conf))
  6832. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  6833. }
  6834. static void wpas_p2p_remove_psk(struct wpa_supplicant *wpa_s,
  6835. struct wpa_ssid *s, const u8 *addr,
  6836. int iface_addr)
  6837. {
  6838. int res;
  6839. res = wpas_p2p_remove_psk_entry(wpa_s, s, addr, iface_addr);
  6840. if (res > 0 && wpa_s->conf->update_config &&
  6841. wpa_config_write(wpa_s->confname, wpa_s->conf))
  6842. wpa_dbg(wpa_s, MSG_DEBUG,
  6843. "P2P: Failed to update configuration");
  6844. }
  6845. static void wpas_p2p_remove_client_go(struct wpa_supplicant *wpa_s,
  6846. const u8 *peer, int iface_addr)
  6847. {
  6848. struct hostapd_data *hapd;
  6849. struct hostapd_wpa_psk *psk, *prev, *rem;
  6850. struct sta_info *sta;
  6851. if (wpa_s->ap_iface == NULL || wpa_s->current_ssid == NULL ||
  6852. wpa_s->current_ssid->mode != WPAS_MODE_P2P_GO)
  6853. return;
  6854. /* Remove per-station PSK entry */
  6855. hapd = wpa_s->ap_iface->bss[0];
  6856. prev = NULL;
  6857. psk = hapd->conf->ssid.wpa_psk;
  6858. while (psk) {
  6859. if ((iface_addr && os_memcmp(peer, psk->addr, ETH_ALEN) == 0) ||
  6860. (!iface_addr &&
  6861. os_memcmp(peer, psk->p2p_dev_addr, ETH_ALEN) == 0)) {
  6862. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove operating group PSK entry for "
  6863. MACSTR " iface_addr=%d",
  6864. MAC2STR(peer), iface_addr);
  6865. if (prev)
  6866. prev->next = psk->next;
  6867. else
  6868. hapd->conf->ssid.wpa_psk = psk->next;
  6869. rem = psk;
  6870. psk = psk->next;
  6871. os_free(rem);
  6872. } else {
  6873. prev = psk;
  6874. psk = psk->next;
  6875. }
  6876. }
  6877. /* Disconnect from group */
  6878. if (iface_addr)
  6879. sta = ap_get_sta(hapd, peer);
  6880. else
  6881. sta = ap_get_sta_p2p(hapd, peer);
  6882. if (sta) {
  6883. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Disconnect peer " MACSTR
  6884. " (iface_addr=%d) from group",
  6885. MAC2STR(peer), iface_addr);
  6886. hostapd_drv_sta_deauth(hapd, sta->addr,
  6887. WLAN_REASON_DEAUTH_LEAVING);
  6888. ap_sta_deauthenticate(hapd, sta, WLAN_REASON_DEAUTH_LEAVING);
  6889. }
  6890. }
  6891. void wpas_p2p_remove_client(struct wpa_supplicant *wpa_s, const u8 *peer,
  6892. int iface_addr)
  6893. {
  6894. struct wpa_ssid *s;
  6895. struct wpa_supplicant *w;
  6896. struct wpa_supplicant *p2p_wpa_s = wpa_s->global->p2p_init_wpa_s;
  6897. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Remove client " MACSTR, MAC2STR(peer));
  6898. /* Remove from any persistent group */
  6899. for (s = p2p_wpa_s->conf->ssid; s; s = s->next) {
  6900. if (s->disabled != 2 || s->mode != WPAS_MODE_P2P_GO)
  6901. continue;
  6902. if (!iface_addr)
  6903. wpas_remove_persistent_peer(p2p_wpa_s, s, peer, 0);
  6904. wpas_p2p_remove_psk(p2p_wpa_s, s, peer, iface_addr);
  6905. }
  6906. /* Remove from any operating group */
  6907. for (w = wpa_s->global->ifaces; w; w = w->next)
  6908. wpas_p2p_remove_client_go(w, peer, iface_addr);
  6909. }
  6910. static void wpas_p2p_psk_failure_removal(void *eloop_ctx, void *timeout_ctx)
  6911. {
  6912. struct wpa_supplicant *wpa_s = eloop_ctx;
  6913. wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_PSK_FAILURE);
  6914. }
  6915. static void wpas_p2p_group_freq_conflict(void *eloop_ctx, void *timeout_ctx)
  6916. {
  6917. struct wpa_supplicant *wpa_s = eloop_ctx;
  6918. wpa_printf(MSG_DEBUG, "P2P: Frequency conflict - terminate group");
  6919. wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_FREQ_CONFLICT);
  6920. }
  6921. int wpas_p2p_handle_frequency_conflicts(struct wpa_supplicant *wpa_s, int freq,
  6922. struct wpa_ssid *ssid)
  6923. {
  6924. struct wpa_supplicant *iface;
  6925. for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
  6926. if (!iface->current_ssid ||
  6927. iface->current_ssid->frequency == freq ||
  6928. (iface->p2p_group_interface == NOT_P2P_GROUP_INTERFACE &&
  6929. !iface->current_ssid->p2p_group))
  6930. continue;
  6931. /* Remove the connection with least priority */
  6932. if (!wpas_is_p2p_prioritized(iface)) {
  6933. /* STA connection has priority over existing
  6934. * P2P connection, so remove the interface. */
  6935. wpa_printf(MSG_DEBUG, "P2P: Removing P2P connection due to single channel concurrent mode frequency conflict");
  6936. eloop_register_timeout(0, 0,
  6937. wpas_p2p_group_freq_conflict,
  6938. iface, NULL);
  6939. /* If connection in progress is P2P connection, do not
  6940. * proceed for the connection. */
  6941. if (wpa_s == iface)
  6942. return -1;
  6943. else
  6944. return 0;
  6945. } else {
  6946. /* P2P connection has priority, disable the STA network
  6947. */
  6948. wpa_supplicant_disable_network(wpa_s->global->ifaces,
  6949. ssid);
  6950. wpa_msg(wpa_s->global->ifaces, MSG_INFO,
  6951. WPA_EVENT_FREQ_CONFLICT " id=%d", ssid->id);
  6952. os_memset(wpa_s->global->ifaces->pending_bssid, 0,
  6953. ETH_ALEN);
  6954. /* If P2P connection is in progress, continue
  6955. * connecting...*/
  6956. if (wpa_s == iface)
  6957. return 0;
  6958. else
  6959. return -1;
  6960. }
  6961. }
  6962. return 0;
  6963. }
  6964. int wpas_p2p_4way_hs_failed(struct wpa_supplicant *wpa_s)
  6965. {
  6966. struct wpa_ssid *ssid = wpa_s->current_ssid;
  6967. if (ssid == NULL || !ssid->p2p_group)
  6968. return 0;
  6969. if (wpa_s->p2p_last_4way_hs_fail &&
  6970. wpa_s->p2p_last_4way_hs_fail == ssid) {
  6971. u8 go_dev_addr[ETH_ALEN];
  6972. struct wpa_ssid *persistent;
  6973. if (wpas_p2p_persistent_group(wpa_s, go_dev_addr,
  6974. ssid->ssid,
  6975. ssid->ssid_len) <= 0) {
  6976. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not determine whether 4-way handshake failures were for a persistent group");
  6977. goto disconnect;
  6978. }
  6979. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Two 4-way handshake failures for a P2P group - go_dev_addr="
  6980. MACSTR, MAC2STR(go_dev_addr));
  6981. persistent = wpas_p2p_get_persistent(wpa_s->p2pdev, go_dev_addr,
  6982. ssid->ssid,
  6983. ssid->ssid_len);
  6984. if (persistent == NULL || persistent->mode != WPAS_MODE_INFRA) {
  6985. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No matching persistent group stored");
  6986. goto disconnect;
  6987. }
  6988. wpa_msg_global(wpa_s->p2pdev, MSG_INFO,
  6989. P2P_EVENT_PERSISTENT_PSK_FAIL "%d",
  6990. persistent->id);
  6991. disconnect:
  6992. wpa_s->p2p_last_4way_hs_fail = NULL;
  6993. /*
  6994. * Remove the group from a timeout to avoid issues with caller
  6995. * continuing to use the interface if this is on a P2P group
  6996. * interface.
  6997. */
  6998. eloop_register_timeout(0, 0, wpas_p2p_psk_failure_removal,
  6999. wpa_s, NULL);
  7000. return 1;
  7001. }
  7002. wpa_s->p2p_last_4way_hs_fail = ssid;
  7003. return 0;
  7004. }
  7005. #ifdef CONFIG_WPS_NFC
  7006. static struct wpabuf * wpas_p2p_nfc_handover(int ndef, struct wpabuf *wsc,
  7007. struct wpabuf *p2p)
  7008. {
  7009. struct wpabuf *ret;
  7010. size_t wsc_len;
  7011. if (p2p == NULL) {
  7012. wpabuf_free(wsc);
  7013. wpa_printf(MSG_DEBUG, "P2P: No p2p buffer for handover");
  7014. return NULL;
  7015. }
  7016. wsc_len = wsc ? wpabuf_len(wsc) : 0;
  7017. ret = wpabuf_alloc(2 + wsc_len + 2 + wpabuf_len(p2p));
  7018. if (ret == NULL) {
  7019. wpabuf_free(wsc);
  7020. wpabuf_free(p2p);
  7021. return NULL;
  7022. }
  7023. wpabuf_put_be16(ret, wsc_len);
  7024. if (wsc)
  7025. wpabuf_put_buf(ret, wsc);
  7026. wpabuf_put_be16(ret, wpabuf_len(p2p));
  7027. wpabuf_put_buf(ret, p2p);
  7028. wpabuf_free(wsc);
  7029. wpabuf_free(p2p);
  7030. wpa_hexdump_buf(MSG_DEBUG,
  7031. "P2P: Generated NFC connection handover message", ret);
  7032. if (ndef && ret) {
  7033. struct wpabuf *tmp;
  7034. tmp = ndef_build_p2p(ret);
  7035. wpabuf_free(ret);
  7036. if (tmp == NULL) {
  7037. wpa_printf(MSG_DEBUG, "P2P: Failed to NDEF encapsulate handover request");
  7038. return NULL;
  7039. }
  7040. ret = tmp;
  7041. }
  7042. return ret;
  7043. }
  7044. static int wpas_p2p_cli_freq(struct wpa_supplicant *wpa_s,
  7045. struct wpa_ssid **ssid, u8 *go_dev_addr)
  7046. {
  7047. struct wpa_supplicant *iface;
  7048. if (go_dev_addr)
  7049. os_memset(go_dev_addr, 0, ETH_ALEN);
  7050. if (ssid)
  7051. *ssid = NULL;
  7052. for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
  7053. if (iface->wpa_state < WPA_ASSOCIATING ||
  7054. iface->current_ssid == NULL || iface->assoc_freq == 0 ||
  7055. !iface->current_ssid->p2p_group ||
  7056. iface->current_ssid->mode != WPAS_MODE_INFRA)
  7057. continue;
  7058. if (ssid)
  7059. *ssid = iface->current_ssid;
  7060. if (go_dev_addr)
  7061. os_memcpy(go_dev_addr, iface->go_dev_addr, ETH_ALEN);
  7062. return iface->assoc_freq;
  7063. }
  7064. return 0;
  7065. }
  7066. struct wpabuf * wpas_p2p_nfc_handover_req(struct wpa_supplicant *wpa_s,
  7067. int ndef)
  7068. {
  7069. struct wpabuf *wsc, *p2p;
  7070. struct wpa_ssid *ssid;
  7071. u8 go_dev_addr[ETH_ALEN];
  7072. int cli_freq = wpas_p2p_cli_freq(wpa_s, &ssid, go_dev_addr);
  7073. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL) {
  7074. wpa_printf(MSG_DEBUG, "P2P: P2P disabled - cannot build handover request");
  7075. return NULL;
  7076. }
  7077. if (wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
  7078. wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
  7079. &wpa_s->conf->wps_nfc_dh_privkey) < 0) {
  7080. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No DH key available for handover request");
  7081. return NULL;
  7082. }
  7083. if (cli_freq == 0) {
  7084. wsc = wps_build_nfc_handover_req_p2p(
  7085. wpa_s->parent->wps, wpa_s->conf->wps_nfc_dh_pubkey);
  7086. } else
  7087. wsc = NULL;
  7088. p2p = p2p_build_nfc_handover_req(wpa_s->global->p2p, cli_freq,
  7089. go_dev_addr, ssid ? ssid->ssid : NULL,
  7090. ssid ? ssid->ssid_len : 0);
  7091. return wpas_p2p_nfc_handover(ndef, wsc, p2p);
  7092. }
  7093. struct wpabuf * wpas_p2p_nfc_handover_sel(struct wpa_supplicant *wpa_s,
  7094. int ndef, int tag)
  7095. {
  7096. struct wpabuf *wsc, *p2p;
  7097. struct wpa_ssid *ssid;
  7098. u8 go_dev_addr[ETH_ALEN];
  7099. int cli_freq = wpas_p2p_cli_freq(wpa_s, &ssid, go_dev_addr);
  7100. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  7101. return NULL;
  7102. if (!tag && wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
  7103. wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
  7104. &wpa_s->conf->wps_nfc_dh_privkey) < 0)
  7105. return NULL;
  7106. if (cli_freq == 0) {
  7107. wsc = wps_build_nfc_handover_sel_p2p(
  7108. wpa_s->parent->wps,
  7109. tag ? wpa_s->conf->wps_nfc_dev_pw_id :
  7110. DEV_PW_NFC_CONNECTION_HANDOVER,
  7111. wpa_s->conf->wps_nfc_dh_pubkey,
  7112. tag ? wpa_s->conf->wps_nfc_dev_pw : NULL);
  7113. } else
  7114. wsc = NULL;
  7115. p2p = p2p_build_nfc_handover_sel(wpa_s->global->p2p, cli_freq,
  7116. go_dev_addr, ssid ? ssid->ssid : NULL,
  7117. ssid ? ssid->ssid_len : 0);
  7118. return wpas_p2p_nfc_handover(ndef, wsc, p2p);
  7119. }
  7120. static int wpas_p2p_nfc_join_group(struct wpa_supplicant *wpa_s,
  7121. struct p2p_nfc_params *params)
  7122. {
  7123. wpa_printf(MSG_DEBUG, "P2P: Initiate join-group based on NFC "
  7124. "connection handover (freq=%d)",
  7125. params->go_freq);
  7126. if (params->go_freq && params->go_ssid_len) {
  7127. wpa_s->p2p_wps_method = WPS_NFC;
  7128. wpa_s->pending_join_wps_method = WPS_NFC;
  7129. os_memset(wpa_s->pending_join_iface_addr, 0, ETH_ALEN);
  7130. os_memcpy(wpa_s->pending_join_dev_addr, params->go_dev_addr,
  7131. ETH_ALEN);
  7132. return wpas_p2p_join_start(wpa_s, params->go_freq,
  7133. params->go_ssid,
  7134. params->go_ssid_len);
  7135. }
  7136. return wpas_p2p_connect(wpa_s, params->peer->p2p_device_addr, NULL,
  7137. WPS_NFC, 0, 0, 1, 0, wpa_s->conf->p2p_go_intent,
  7138. params->go_freq, wpa_s->p2p_go_vht_center_freq2,
  7139. -1, 0, 1, 1, wpa_s->p2p_go_max_oper_chwidth,
  7140. params->go_ssid_len ? params->go_ssid : NULL,
  7141. params->go_ssid_len);
  7142. }
  7143. static int wpas_p2p_nfc_auth_join(struct wpa_supplicant *wpa_s,
  7144. struct p2p_nfc_params *params, int tag)
  7145. {
  7146. int res, persistent;
  7147. struct wpa_ssid *ssid;
  7148. wpa_printf(MSG_DEBUG, "P2P: Authorize join-group based on NFC "
  7149. "connection handover");
  7150. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  7151. ssid = wpa_s->current_ssid;
  7152. if (ssid == NULL)
  7153. continue;
  7154. if (ssid->mode != WPAS_MODE_P2P_GO)
  7155. continue;
  7156. if (wpa_s->ap_iface == NULL)
  7157. continue;
  7158. break;
  7159. }
  7160. if (wpa_s == NULL) {
  7161. wpa_printf(MSG_DEBUG, "P2P: Could not find GO interface");
  7162. return -1;
  7163. }
  7164. if (wpa_s->p2pdev->p2p_oob_dev_pw_id !=
  7165. DEV_PW_NFC_CONNECTION_HANDOVER &&
  7166. !wpa_s->p2pdev->p2p_oob_dev_pw) {
  7167. wpa_printf(MSG_DEBUG, "P2P: No NFC Dev Pw known");
  7168. return -1;
  7169. }
  7170. res = wpas_ap_wps_add_nfc_pw(
  7171. wpa_s, wpa_s->p2pdev->p2p_oob_dev_pw_id,
  7172. wpa_s->p2pdev->p2p_oob_dev_pw,
  7173. wpa_s->p2pdev->p2p_peer_oob_pk_hash_known ?
  7174. wpa_s->p2pdev->p2p_peer_oob_pubkey_hash : NULL);
  7175. if (res)
  7176. return res;
  7177. if (!tag) {
  7178. wpa_printf(MSG_DEBUG, "P2P: Negotiated handover - wait for peer to join without invitation");
  7179. return 0;
  7180. }
  7181. if (!params->peer ||
  7182. !(params->peer->dev_capab & P2P_DEV_CAPAB_INVITATION_PROCEDURE))
  7183. return 0;
  7184. wpa_printf(MSG_DEBUG, "P2P: Static handover - invite peer " MACSTR
  7185. " to join", MAC2STR(params->peer->p2p_device_addr));
  7186. wpa_s->global->p2p_invite_group = wpa_s;
  7187. persistent = ssid->p2p_persistent_group &&
  7188. wpas_p2p_get_persistent(wpa_s->p2pdev,
  7189. params->peer->p2p_device_addr,
  7190. ssid->ssid, ssid->ssid_len);
  7191. wpa_s->p2pdev->pending_invite_ssid_id = -1;
  7192. return p2p_invite(wpa_s->global->p2p, params->peer->p2p_device_addr,
  7193. P2P_INVITE_ROLE_ACTIVE_GO, wpa_s->own_addr,
  7194. ssid->ssid, ssid->ssid_len, ssid->frequency,
  7195. wpa_s->global->p2p_dev_addr, persistent, 0,
  7196. wpa_s->p2pdev->p2p_oob_dev_pw_id);
  7197. }
  7198. static int wpas_p2p_nfc_init_go_neg(struct wpa_supplicant *wpa_s,
  7199. struct p2p_nfc_params *params,
  7200. int forced_freq)
  7201. {
  7202. wpa_printf(MSG_DEBUG, "P2P: Initiate GO Negotiation based on NFC "
  7203. "connection handover");
  7204. return wpas_p2p_connect(wpa_s, params->peer->p2p_device_addr, NULL,
  7205. WPS_NFC, 0, 0, 0, 0, wpa_s->conf->p2p_go_intent,
  7206. forced_freq, wpa_s->p2p_go_vht_center_freq2,
  7207. -1, 0, 1, 1, wpa_s->p2p_go_max_oper_chwidth,
  7208. NULL, 0);
  7209. }
  7210. static int wpas_p2p_nfc_resp_go_neg(struct wpa_supplicant *wpa_s,
  7211. struct p2p_nfc_params *params,
  7212. int forced_freq)
  7213. {
  7214. int res;
  7215. wpa_printf(MSG_DEBUG, "P2P: Authorize GO Negotiation based on NFC "
  7216. "connection handover");
  7217. res = wpas_p2p_connect(wpa_s, params->peer->p2p_device_addr, NULL,
  7218. WPS_NFC, 0, 0, 0, 1, wpa_s->conf->p2p_go_intent,
  7219. forced_freq, wpa_s->p2p_go_vht_center_freq2,
  7220. -1, 0, 1, 1, wpa_s->p2p_go_max_oper_chwidth,
  7221. NULL, 0);
  7222. if (res)
  7223. return res;
  7224. res = wpas_p2p_listen(wpa_s, 60);
  7225. if (res) {
  7226. p2p_unauthorize(wpa_s->global->p2p,
  7227. params->peer->p2p_device_addr);
  7228. }
  7229. return res;
  7230. }
  7231. static int wpas_p2p_nfc_connection_handover(struct wpa_supplicant *wpa_s,
  7232. const struct wpabuf *data,
  7233. int sel, int tag, int forced_freq)
  7234. {
  7235. const u8 *pos, *end;
  7236. u16 len, id;
  7237. struct p2p_nfc_params params;
  7238. int res;
  7239. os_memset(&params, 0, sizeof(params));
  7240. params.sel = sel;
  7241. wpa_hexdump_buf(MSG_DEBUG, "P2P: Received NFC tag payload", data);
  7242. pos = wpabuf_head(data);
  7243. end = pos + wpabuf_len(data);
  7244. if (end - pos < 2) {
  7245. wpa_printf(MSG_DEBUG, "P2P: Not enough data for Length of WSC "
  7246. "attributes");
  7247. return -1;
  7248. }
  7249. len = WPA_GET_BE16(pos);
  7250. pos += 2;
  7251. if (len > end - pos) {
  7252. wpa_printf(MSG_DEBUG, "P2P: Not enough data for WSC "
  7253. "attributes");
  7254. return -1;
  7255. }
  7256. params.wsc_attr = pos;
  7257. params.wsc_len = len;
  7258. pos += len;
  7259. if (end - pos < 2) {
  7260. wpa_printf(MSG_DEBUG, "P2P: Not enough data for Length of P2P "
  7261. "attributes");
  7262. return -1;
  7263. }
  7264. len = WPA_GET_BE16(pos);
  7265. pos += 2;
  7266. if (len > end - pos) {
  7267. wpa_printf(MSG_DEBUG, "P2P: Not enough data for P2P "
  7268. "attributes");
  7269. return -1;
  7270. }
  7271. params.p2p_attr = pos;
  7272. params.p2p_len = len;
  7273. pos += len;
  7274. wpa_hexdump(MSG_DEBUG, "P2P: WSC attributes",
  7275. params.wsc_attr, params.wsc_len);
  7276. wpa_hexdump(MSG_DEBUG, "P2P: P2P attributes",
  7277. params.p2p_attr, params.p2p_len);
  7278. if (pos < end) {
  7279. wpa_hexdump(MSG_DEBUG,
  7280. "P2P: Ignored extra data after P2P attributes",
  7281. pos, end - pos);
  7282. }
  7283. res = p2p_process_nfc_connection_handover(wpa_s->global->p2p, &params);
  7284. if (res)
  7285. return res;
  7286. if (params.next_step == NO_ACTION)
  7287. return 0;
  7288. if (params.next_step == BOTH_GO) {
  7289. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_BOTH_GO "peer=" MACSTR,
  7290. MAC2STR(params.peer->p2p_device_addr));
  7291. return 0;
  7292. }
  7293. if (params.next_step == PEER_CLIENT) {
  7294. if (!is_zero_ether_addr(params.go_dev_addr)) {
  7295. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_PEER_CLIENT
  7296. "peer=" MACSTR " freq=%d go_dev_addr=" MACSTR
  7297. " ssid=\"%s\"",
  7298. MAC2STR(params.peer->p2p_device_addr),
  7299. params.go_freq,
  7300. MAC2STR(params.go_dev_addr),
  7301. wpa_ssid_txt(params.go_ssid,
  7302. params.go_ssid_len));
  7303. } else {
  7304. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_PEER_CLIENT
  7305. "peer=" MACSTR " freq=%d",
  7306. MAC2STR(params.peer->p2p_device_addr),
  7307. params.go_freq);
  7308. }
  7309. return 0;
  7310. }
  7311. if (wpas_p2p_cli_freq(wpa_s, NULL, NULL)) {
  7312. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_NFC_WHILE_CLIENT "peer="
  7313. MACSTR, MAC2STR(params.peer->p2p_device_addr));
  7314. return 0;
  7315. }
  7316. wpabuf_free(wpa_s->p2p_oob_dev_pw);
  7317. wpa_s->p2p_oob_dev_pw = NULL;
  7318. if (params.oob_dev_pw_len < WPS_OOB_PUBKEY_HASH_LEN + 2) {
  7319. wpa_printf(MSG_DEBUG, "P2P: No peer OOB Dev Pw "
  7320. "received");
  7321. return -1;
  7322. }
  7323. id = WPA_GET_BE16(params.oob_dev_pw + WPS_OOB_PUBKEY_HASH_LEN);
  7324. wpa_printf(MSG_DEBUG, "P2P: Peer OOB Dev Pw %u", id);
  7325. wpa_hexdump(MSG_DEBUG, "P2P: Peer OOB Public Key hash",
  7326. params.oob_dev_pw, WPS_OOB_PUBKEY_HASH_LEN);
  7327. os_memcpy(wpa_s->p2p_peer_oob_pubkey_hash,
  7328. params.oob_dev_pw, WPS_OOB_PUBKEY_HASH_LEN);
  7329. wpa_s->p2p_peer_oob_pk_hash_known = 1;
  7330. if (tag) {
  7331. if (id < 0x10) {
  7332. wpa_printf(MSG_DEBUG, "P2P: Static handover - invalid "
  7333. "peer OOB Device Password Id %u", id);
  7334. return -1;
  7335. }
  7336. wpa_printf(MSG_DEBUG, "P2P: Static handover - use peer OOB "
  7337. "Device Password Id %u", id);
  7338. wpa_hexdump_key(MSG_DEBUG, "P2P: Peer OOB Device Password",
  7339. params.oob_dev_pw + WPS_OOB_PUBKEY_HASH_LEN + 2,
  7340. params.oob_dev_pw_len -
  7341. WPS_OOB_PUBKEY_HASH_LEN - 2);
  7342. wpa_s->p2p_oob_dev_pw_id = id;
  7343. wpa_s->p2p_oob_dev_pw = wpabuf_alloc_copy(
  7344. params.oob_dev_pw + WPS_OOB_PUBKEY_HASH_LEN + 2,
  7345. params.oob_dev_pw_len -
  7346. WPS_OOB_PUBKEY_HASH_LEN - 2);
  7347. if (wpa_s->p2p_oob_dev_pw == NULL)
  7348. return -1;
  7349. if (wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
  7350. wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
  7351. &wpa_s->conf->wps_nfc_dh_privkey) < 0)
  7352. return -1;
  7353. } else {
  7354. wpa_printf(MSG_DEBUG, "P2P: Using abbreviated WPS handshake "
  7355. "without Device Password");
  7356. wpa_s->p2p_oob_dev_pw_id = DEV_PW_NFC_CONNECTION_HANDOVER;
  7357. }
  7358. switch (params.next_step) {
  7359. case NO_ACTION:
  7360. case BOTH_GO:
  7361. case PEER_CLIENT:
  7362. /* already covered above */
  7363. return 0;
  7364. case JOIN_GROUP:
  7365. return wpas_p2p_nfc_join_group(wpa_s, &params);
  7366. case AUTH_JOIN:
  7367. return wpas_p2p_nfc_auth_join(wpa_s, &params, tag);
  7368. case INIT_GO_NEG:
  7369. return wpas_p2p_nfc_init_go_neg(wpa_s, &params, forced_freq);
  7370. case RESP_GO_NEG:
  7371. /* TODO: use own OOB Dev Pw */
  7372. return wpas_p2p_nfc_resp_go_neg(wpa_s, &params, forced_freq);
  7373. }
  7374. return -1;
  7375. }
  7376. int wpas_p2p_nfc_tag_process(struct wpa_supplicant *wpa_s,
  7377. const struct wpabuf *data, int forced_freq)
  7378. {
  7379. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  7380. return -1;
  7381. return wpas_p2p_nfc_connection_handover(wpa_s, data, 1, 1, forced_freq);
  7382. }
  7383. int wpas_p2p_nfc_report_handover(struct wpa_supplicant *wpa_s, int init,
  7384. const struct wpabuf *req,
  7385. const struct wpabuf *sel, int forced_freq)
  7386. {
  7387. struct wpabuf *tmp;
  7388. int ret;
  7389. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  7390. return -1;
  7391. wpa_printf(MSG_DEBUG, "NFC: P2P connection handover reported");
  7392. wpa_hexdump_ascii(MSG_DEBUG, "NFC: Req",
  7393. wpabuf_head(req), wpabuf_len(req));
  7394. wpa_hexdump_ascii(MSG_DEBUG, "NFC: Sel",
  7395. wpabuf_head(sel), wpabuf_len(sel));
  7396. if (forced_freq)
  7397. wpa_printf(MSG_DEBUG, "NFC: Forced freq %d", forced_freq);
  7398. tmp = ndef_parse_p2p(init ? sel : req);
  7399. if (tmp == NULL) {
  7400. wpa_printf(MSG_DEBUG, "P2P: Could not parse NDEF");
  7401. return -1;
  7402. }
  7403. ret = wpas_p2p_nfc_connection_handover(wpa_s, tmp, init, 0,
  7404. forced_freq);
  7405. wpabuf_free(tmp);
  7406. return ret;
  7407. }
  7408. int wpas_p2p_nfc_tag_enabled(struct wpa_supplicant *wpa_s, int enabled)
  7409. {
  7410. const u8 *if_addr;
  7411. int go_intent = wpa_s->conf->p2p_go_intent;
  7412. struct wpa_supplicant *iface;
  7413. if (wpa_s->global->p2p == NULL)
  7414. return -1;
  7415. if (!enabled) {
  7416. wpa_printf(MSG_DEBUG, "P2P: Disable use of own NFC Tag");
  7417. for (iface = wpa_s->global->ifaces; iface; iface = iface->next)
  7418. {
  7419. if (!iface->ap_iface)
  7420. continue;
  7421. hostapd_wps_nfc_token_disable(iface->ap_iface->bss[0]);
  7422. }
  7423. p2p_set_authorized_oob_dev_pw_id(wpa_s->global->p2p, 0,
  7424. 0, NULL);
  7425. if (wpa_s->p2p_nfc_tag_enabled)
  7426. wpas_p2p_remove_pending_group_interface(wpa_s);
  7427. wpa_s->p2p_nfc_tag_enabled = 0;
  7428. return 0;
  7429. }
  7430. if (wpa_s->global->p2p_disabled)
  7431. return -1;
  7432. if (wpa_s->conf->wps_nfc_dh_pubkey == NULL ||
  7433. wpa_s->conf->wps_nfc_dh_privkey == NULL ||
  7434. wpa_s->conf->wps_nfc_dev_pw == NULL ||
  7435. wpa_s->conf->wps_nfc_dev_pw_id < 0x10) {
  7436. wpa_printf(MSG_DEBUG, "P2P: NFC password token not configured "
  7437. "to allow static handover cases");
  7438. return -1;
  7439. }
  7440. wpa_printf(MSG_DEBUG, "P2P: Enable use of own NFC Tag");
  7441. wpa_s->p2p_oob_dev_pw_id = wpa_s->conf->wps_nfc_dev_pw_id;
  7442. wpabuf_free(wpa_s->p2p_oob_dev_pw);
  7443. wpa_s->p2p_oob_dev_pw = wpabuf_dup(wpa_s->conf->wps_nfc_dev_pw);
  7444. if (wpa_s->p2p_oob_dev_pw == NULL)
  7445. return -1;
  7446. wpa_s->p2p_peer_oob_pk_hash_known = 0;
  7447. if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO ||
  7448. wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT) {
  7449. /*
  7450. * P2P Group Interface present and the command came on group
  7451. * interface, so enable the token for the current interface.
  7452. */
  7453. wpa_s->create_p2p_iface = 0;
  7454. } else {
  7455. wpa_s->create_p2p_iface = wpas_p2p_create_iface(wpa_s);
  7456. }
  7457. if (wpa_s->create_p2p_iface) {
  7458. enum wpa_driver_if_type iftype;
  7459. /* Prepare to add a new interface for the group */
  7460. iftype = WPA_IF_P2P_GROUP;
  7461. if (go_intent == 15)
  7462. iftype = WPA_IF_P2P_GO;
  7463. if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
  7464. wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
  7465. "interface for the group");
  7466. return -1;
  7467. }
  7468. if_addr = wpa_s->pending_interface_addr;
  7469. } else if (wpa_s->p2p_mgmt)
  7470. if_addr = wpa_s->parent->own_addr;
  7471. else
  7472. if_addr = wpa_s->own_addr;
  7473. wpa_s->p2p_nfc_tag_enabled = enabled;
  7474. for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
  7475. struct hostapd_data *hapd;
  7476. if (iface->ap_iface == NULL)
  7477. continue;
  7478. hapd = iface->ap_iface->bss[0];
  7479. wpabuf_free(hapd->conf->wps_nfc_dh_pubkey);
  7480. hapd->conf->wps_nfc_dh_pubkey =
  7481. wpabuf_dup(wpa_s->conf->wps_nfc_dh_pubkey);
  7482. wpabuf_free(hapd->conf->wps_nfc_dh_privkey);
  7483. hapd->conf->wps_nfc_dh_privkey =
  7484. wpabuf_dup(wpa_s->conf->wps_nfc_dh_privkey);
  7485. wpabuf_free(hapd->conf->wps_nfc_dev_pw);
  7486. hapd->conf->wps_nfc_dev_pw =
  7487. wpabuf_dup(wpa_s->conf->wps_nfc_dev_pw);
  7488. hapd->conf->wps_nfc_dev_pw_id = wpa_s->conf->wps_nfc_dev_pw_id;
  7489. if (hostapd_wps_nfc_token_enable(iface->ap_iface->bss[0]) < 0) {
  7490. wpa_dbg(iface, MSG_DEBUG,
  7491. "P2P: Failed to enable NFC Tag for GO");
  7492. }
  7493. }
  7494. p2p_set_authorized_oob_dev_pw_id(
  7495. wpa_s->global->p2p, wpa_s->conf->wps_nfc_dev_pw_id, go_intent,
  7496. if_addr);
  7497. return 0;
  7498. }
  7499. #endif /* CONFIG_WPS_NFC */
  7500. static void wpas_p2p_optimize_listen_channel(struct wpa_supplicant *wpa_s,
  7501. struct wpa_used_freq_data *freqs,
  7502. unsigned int num)
  7503. {
  7504. u8 curr_chan, cand, chan;
  7505. unsigned int i;
  7506. /*
  7507. * If possible, optimize the Listen channel to be a channel that is
  7508. * already used by one of the other interfaces.
  7509. */
  7510. if (!wpa_s->conf->p2p_optimize_listen_chan)
  7511. return;
  7512. if (!wpa_s->current_ssid || wpa_s->wpa_state != WPA_COMPLETED)
  7513. return;
  7514. curr_chan = p2p_get_listen_channel(wpa_s->global->p2p);
  7515. for (i = 0, cand = 0; i < num; i++) {
  7516. ieee80211_freq_to_chan(freqs[i].freq, &chan);
  7517. if (curr_chan == chan) {
  7518. cand = 0;
  7519. break;
  7520. }
  7521. if (chan == 1 || chan == 6 || chan == 11)
  7522. cand = chan;
  7523. }
  7524. if (cand) {
  7525. wpa_dbg(wpa_s, MSG_DEBUG,
  7526. "P2P: Update Listen channel to %u based on operating channel",
  7527. cand);
  7528. p2p_set_listen_channel(wpa_s->global->p2p, 81, cand, 0);
  7529. }
  7530. }
  7531. static int wpas_p2p_move_go_csa(struct wpa_supplicant *wpa_s)
  7532. {
  7533. struct hostapd_config *conf;
  7534. struct p2p_go_neg_results params;
  7535. struct csa_settings csa_settings;
  7536. struct wpa_ssid *current_ssid = wpa_s->current_ssid;
  7537. int old_freq = current_ssid->frequency;
  7538. int ret;
  7539. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_AP_CSA)) {
  7540. wpa_dbg(wpa_s, MSG_DEBUG, "CSA is not enabled");
  7541. return -1;
  7542. }
  7543. /*
  7544. * TODO: This function may not always work correctly. For example,
  7545. * when we have a running GO and a BSS on a DFS channel.
  7546. */
  7547. if (wpas_p2p_init_go_params(wpa_s, &params, 0, 0, 0, 0, 0, NULL)) {
  7548. wpa_dbg(wpa_s, MSG_DEBUG,
  7549. "P2P CSA: Failed to select new frequency for GO");
  7550. return -1;
  7551. }
  7552. if (current_ssid->frequency == params.freq) {
  7553. wpa_dbg(wpa_s, MSG_DEBUG,
  7554. "P2P CSA: Selected same frequency - not moving GO");
  7555. return 0;
  7556. }
  7557. conf = hostapd_config_defaults();
  7558. if (!conf) {
  7559. wpa_dbg(wpa_s, MSG_DEBUG,
  7560. "P2P CSA: Failed to allocate default config");
  7561. return -1;
  7562. }
  7563. current_ssid->frequency = params.freq;
  7564. if (wpa_supplicant_conf_ap_ht(wpa_s, current_ssid, conf)) {
  7565. wpa_dbg(wpa_s, MSG_DEBUG,
  7566. "P2P CSA: Failed to create new GO config");
  7567. ret = -1;
  7568. goto out;
  7569. }
  7570. if (conf->hw_mode != wpa_s->ap_iface->current_mode->mode) {
  7571. wpa_dbg(wpa_s, MSG_DEBUG,
  7572. "P2P CSA: CSA to a different band is not supported");
  7573. ret = -1;
  7574. goto out;
  7575. }
  7576. os_memset(&csa_settings, 0, sizeof(csa_settings));
  7577. csa_settings.cs_count = P2P_GO_CSA_COUNT;
  7578. csa_settings.block_tx = P2P_GO_CSA_BLOCK_TX;
  7579. csa_settings.freq_params.freq = params.freq;
  7580. csa_settings.freq_params.sec_channel_offset = conf->secondary_channel;
  7581. csa_settings.freq_params.ht_enabled = conf->ieee80211n;
  7582. csa_settings.freq_params.bandwidth = conf->secondary_channel ? 40 : 20;
  7583. if (conf->ieee80211ac) {
  7584. int freq1 = 0, freq2 = 0;
  7585. u8 chan, opclass;
  7586. if (ieee80211_freq_to_channel_ext(params.freq,
  7587. conf->secondary_channel,
  7588. conf->vht_oper_chwidth,
  7589. &opclass, &chan) ==
  7590. NUM_HOSTAPD_MODES) {
  7591. wpa_printf(MSG_ERROR, "P2P CSA: Bad freq");
  7592. ret = -1;
  7593. goto out;
  7594. }
  7595. if (conf->vht_oper_centr_freq_seg0_idx)
  7596. freq1 = ieee80211_chan_to_freq(
  7597. NULL, opclass,
  7598. conf->vht_oper_centr_freq_seg0_idx);
  7599. if (conf->vht_oper_centr_freq_seg1_idx)
  7600. freq2 = ieee80211_chan_to_freq(
  7601. NULL, opclass,
  7602. conf->vht_oper_centr_freq_seg1_idx);
  7603. if (freq1 < 0 || freq2 < 0) {
  7604. wpa_dbg(wpa_s, MSG_DEBUG,
  7605. "P2P CSA: Selected invalid VHT center freqs");
  7606. ret = -1;
  7607. goto out;
  7608. }
  7609. csa_settings.freq_params.vht_enabled = conf->ieee80211ac;
  7610. csa_settings.freq_params.center_freq1 = freq1;
  7611. csa_settings.freq_params.center_freq2 = freq2;
  7612. switch (conf->vht_oper_chwidth) {
  7613. case VHT_CHANWIDTH_80MHZ:
  7614. case VHT_CHANWIDTH_80P80MHZ:
  7615. csa_settings.freq_params.bandwidth = 80;
  7616. break;
  7617. case VHT_CHANWIDTH_160MHZ:
  7618. csa_settings.freq_params.bandwidth = 160;
  7619. break;
  7620. }
  7621. }
  7622. ret = ap_switch_channel(wpa_s, &csa_settings);
  7623. out:
  7624. current_ssid->frequency = old_freq;
  7625. hostapd_config_free(conf);
  7626. return ret;
  7627. }
  7628. static void wpas_p2p_move_go_no_csa(struct wpa_supplicant *wpa_s)
  7629. {
  7630. struct p2p_go_neg_results params;
  7631. struct wpa_ssid *current_ssid = wpa_s->current_ssid;
  7632. wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_REMOVE_AND_REFORM_GROUP);
  7633. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Move GO from freq=%d MHz",
  7634. current_ssid->frequency);
  7635. /* Stop the AP functionality */
  7636. /* TODO: Should do this in a way that does not indicated to possible
  7637. * P2P Clients in the group that the group is terminated. */
  7638. wpa_supplicant_ap_deinit(wpa_s);
  7639. /* Reselect the GO frequency */
  7640. if (wpas_p2p_init_go_params(wpa_s, &params, 0, 0, 0, 0, 0, NULL)) {
  7641. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Failed to reselect freq");
  7642. wpas_p2p_group_delete(wpa_s,
  7643. P2P_GROUP_REMOVAL_GO_LEAVE_CHANNEL);
  7644. return;
  7645. }
  7646. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: New freq selected for the GO (%u MHz)",
  7647. params.freq);
  7648. if (params.freq &&
  7649. !p2p_supported_freq_go(wpa_s->global->p2p, params.freq)) {
  7650. wpa_printf(MSG_DEBUG,
  7651. "P2P: Selected freq (%u MHz) is not valid for P2P",
  7652. params.freq);
  7653. wpas_p2p_group_delete(wpa_s,
  7654. P2P_GROUP_REMOVAL_GO_LEAVE_CHANNEL);
  7655. return;
  7656. }
  7657. /* Update the frequency */
  7658. current_ssid->frequency = params.freq;
  7659. wpa_s->connect_without_scan = current_ssid;
  7660. wpa_s->reassociate = 1;
  7661. wpa_s->disconnected = 0;
  7662. wpa_supplicant_req_scan(wpa_s, 0, 0);
  7663. }
  7664. static void wpas_p2p_move_go(void *eloop_ctx, void *timeout_ctx)
  7665. {
  7666. struct wpa_supplicant *wpa_s = eloop_ctx;
  7667. if (!wpa_s->ap_iface || !wpa_s->current_ssid)
  7668. return;
  7669. wpas_p2p_go_update_common_freqs(wpa_s);
  7670. /* Do not move GO in the middle of a CSA */
  7671. if (hostapd_csa_in_progress(wpa_s->ap_iface)) {
  7672. wpa_printf(MSG_DEBUG,
  7673. "P2P: CSA is in progress - not moving GO");
  7674. return;
  7675. }
  7676. /*
  7677. * First, try a channel switch flow. If it is not supported or fails,
  7678. * take down the GO and bring it up again.
  7679. */
  7680. if (wpas_p2p_move_go_csa(wpa_s) < 0)
  7681. wpas_p2p_move_go_no_csa(wpa_s);
  7682. }
  7683. static void wpas_p2p_reconsider_moving_go(void *eloop_ctx, void *timeout_ctx)
  7684. {
  7685. struct wpa_supplicant *wpa_s = eloop_ctx;
  7686. struct wpa_used_freq_data *freqs = NULL;
  7687. unsigned int num = wpa_s->num_multichan_concurrent;
  7688. freqs = os_calloc(num, sizeof(struct wpa_used_freq_data));
  7689. if (!freqs)
  7690. return;
  7691. num = get_shared_radio_freqs_data(wpa_s, freqs, num);
  7692. /* Previous attempt to move a GO was not possible -- try again. */
  7693. wpas_p2p_consider_moving_gos(wpa_s, freqs, num,
  7694. WPAS_P2P_CHANNEL_UPDATE_ANY);
  7695. os_free(freqs);
  7696. }
  7697. /*
  7698. * Consider moving a GO from its currently used frequency:
  7699. * 1. It is possible that due to regulatory consideration the frequency
  7700. * can no longer be used and there is a need to evacuate the GO.
  7701. * 2. It is possible that due to MCC considerations, it would be preferable
  7702. * to move the GO to a channel that is currently used by some other
  7703. * station interface.
  7704. *
  7705. * In case a frequency that became invalid is once again valid, cancel a
  7706. * previously initiated GO frequency change.
  7707. */
  7708. static void wpas_p2p_consider_moving_one_go(struct wpa_supplicant *wpa_s,
  7709. struct wpa_used_freq_data *freqs,
  7710. unsigned int num)
  7711. {
  7712. unsigned int i, invalid_freq = 0, policy_move = 0, flags = 0;
  7713. unsigned int timeout;
  7714. int freq;
  7715. wpas_p2p_go_update_common_freqs(wpa_s);
  7716. freq = wpa_s->current_ssid->frequency;
  7717. for (i = 0, invalid_freq = 0; i < num; i++) {
  7718. if (freqs[i].freq == freq) {
  7719. flags = freqs[i].flags;
  7720. /* The channel is invalid, must change it */
  7721. if (!p2p_supported_freq_go(wpa_s->global->p2p, freq)) {
  7722. wpa_dbg(wpa_s, MSG_DEBUG,
  7723. "P2P: Freq=%d MHz no longer valid for GO",
  7724. freq);
  7725. invalid_freq = 1;
  7726. }
  7727. } else if (freqs[i].flags == 0) {
  7728. /* Freq is not used by any other station interface */
  7729. continue;
  7730. } else if (!p2p_supported_freq(wpa_s->global->p2p,
  7731. freqs[i].freq)) {
  7732. /* Freq is not valid for P2P use cases */
  7733. continue;
  7734. } else if (wpa_s->conf->p2p_go_freq_change_policy ==
  7735. P2P_GO_FREQ_MOVE_SCM) {
  7736. policy_move = 1;
  7737. } else if (wpa_s->conf->p2p_go_freq_change_policy ==
  7738. P2P_GO_FREQ_MOVE_SCM_PEER_SUPPORTS &&
  7739. wpas_p2p_go_is_peer_freq(wpa_s, freqs[i].freq)) {
  7740. policy_move = 1;
  7741. } else if ((wpa_s->conf->p2p_go_freq_change_policy ==
  7742. P2P_GO_FREQ_MOVE_SCM_ECSA) &&
  7743. wpas_p2p_go_is_peer_freq(wpa_s, freqs[i].freq)) {
  7744. if (!p2p_get_group_num_members(wpa_s->p2p_group)) {
  7745. policy_move = 1;
  7746. } else if ((wpa_s->drv_flags &
  7747. WPA_DRIVER_FLAGS_AP_CSA) &&
  7748. wpas_p2p_go_clients_support_ecsa(wpa_s)) {
  7749. u8 chan;
  7750. /*
  7751. * We do not support CSA between bands, so move
  7752. * GO only within the same band.
  7753. */
  7754. if (wpa_s->ap_iface->current_mode->mode ==
  7755. ieee80211_freq_to_chan(freqs[i].freq,
  7756. &chan))
  7757. policy_move = 1;
  7758. }
  7759. }
  7760. }
  7761. wpa_dbg(wpa_s, MSG_DEBUG,
  7762. "P2P: GO move: invalid_freq=%u, policy_move=%u, flags=0x%X",
  7763. invalid_freq, policy_move, flags);
  7764. /*
  7765. * The channel is valid, or we are going to have a policy move, so
  7766. * cancel timeout.
  7767. */
  7768. if (!invalid_freq || policy_move) {
  7769. wpa_dbg(wpa_s, MSG_DEBUG,
  7770. "P2P: Cancel a GO move from freq=%d MHz", freq);
  7771. eloop_cancel_timeout(wpas_p2p_move_go, wpa_s, NULL);
  7772. if (wpas_p2p_in_progress(wpa_s)) {
  7773. wpa_dbg(wpa_s, MSG_DEBUG,
  7774. "P2P: GO move: policy CS is not allowed - setting timeout to re-consider GO move");
  7775. eloop_cancel_timeout(wpas_p2p_reconsider_moving_go,
  7776. wpa_s, NULL);
  7777. eloop_register_timeout(P2P_RECONSIDER_GO_MOVE_DELAY, 0,
  7778. wpas_p2p_reconsider_moving_go,
  7779. wpa_s, NULL);
  7780. return;
  7781. }
  7782. }
  7783. if (!invalid_freq && (!policy_move || flags != 0)) {
  7784. wpa_dbg(wpa_s, MSG_DEBUG,
  7785. "P2P: Not initiating a GO frequency change");
  7786. return;
  7787. }
  7788. /*
  7789. * Do not consider moving GO if it is in the middle of a CSA. When the
  7790. * CSA is finished this flow should be retriggered.
  7791. */
  7792. if (hostapd_csa_in_progress(wpa_s->ap_iface)) {
  7793. wpa_dbg(wpa_s, MSG_DEBUG,
  7794. "P2P: Not initiating a GO frequency change - CSA is in progress");
  7795. return;
  7796. }
  7797. if (invalid_freq && !wpas_p2p_disallowed_freq(wpa_s->global, freq))
  7798. timeout = P2P_GO_FREQ_CHANGE_TIME;
  7799. else
  7800. timeout = 0;
  7801. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Move GO from freq=%d MHz in %d secs",
  7802. freq, timeout);
  7803. eloop_cancel_timeout(wpas_p2p_move_go, wpa_s, NULL);
  7804. eloop_register_timeout(timeout, 0, wpas_p2p_move_go, wpa_s, NULL);
  7805. }
  7806. static void wpas_p2p_consider_moving_gos(struct wpa_supplicant *wpa_s,
  7807. struct wpa_used_freq_data *freqs,
  7808. unsigned int num,
  7809. enum wpas_p2p_channel_update_trig trig)
  7810. {
  7811. struct wpa_supplicant *ifs;
  7812. eloop_cancel_timeout(wpas_p2p_reconsider_moving_go, ELOOP_ALL_CTX,
  7813. NULL);
  7814. /*
  7815. * Travers all the radio interfaces, and for each GO interface, check
  7816. * if there is a need to move the GO from the frequency it is using,
  7817. * or in case the frequency is valid again, cancel the evacuation flow.
  7818. */
  7819. dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
  7820. radio_list) {
  7821. if (ifs->current_ssid == NULL ||
  7822. ifs->current_ssid->mode != WPAS_MODE_P2P_GO)
  7823. continue;
  7824. /*
  7825. * The GO was just started or completed channel switch, no need
  7826. * to move it.
  7827. */
  7828. if (wpa_s == ifs &&
  7829. (trig == WPAS_P2P_CHANNEL_UPDATE_STATE_CHANGE ||
  7830. trig == WPAS_P2P_CHANNEL_UPDATE_CS)) {
  7831. wpa_dbg(wpa_s, MSG_DEBUG,
  7832. "P2P: GO move - schedule re-consideration");
  7833. eloop_register_timeout(P2P_RECONSIDER_GO_MOVE_DELAY, 0,
  7834. wpas_p2p_reconsider_moving_go,
  7835. wpa_s, NULL);
  7836. continue;
  7837. }
  7838. wpas_p2p_consider_moving_one_go(ifs, freqs, num);
  7839. }
  7840. }
  7841. void wpas_p2p_indicate_state_change(struct wpa_supplicant *wpa_s)
  7842. {
  7843. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  7844. return;
  7845. wpas_p2p_update_channel_list(wpa_s,
  7846. WPAS_P2P_CHANNEL_UPDATE_STATE_CHANGE);
  7847. }
  7848. void wpas_p2p_deinit_iface(struct wpa_supplicant *wpa_s)
  7849. {
  7850. if (wpa_s == wpa_s->global->p2p_init_wpa_s && wpa_s->global->p2p) {
  7851. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Disable P2P since removing "
  7852. "the management interface is being removed");
  7853. wpas_p2p_deinit_global(wpa_s->global);
  7854. }
  7855. }
  7856. void wpas_p2p_ap_deinit(struct wpa_supplicant *wpa_s)
  7857. {
  7858. if (wpa_s->ap_iface->bss)
  7859. wpa_s->ap_iface->bss[0]->p2p_group = NULL;
  7860. wpas_p2p_group_deinit(wpa_s);
  7861. }