p2p_supplicant.c 210 KB

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