p2p_supplicant.c 260 KB

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