p2p_supplicant.c 245 KB

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