p2p_supplicant.c 255 KB

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