p2p_supplicant.c 218 KB

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