p2p_supplicant.c 217 KB

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