p2p_supplicant.c 227 KB

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