p2p_supplicant.c 184 KB

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