p2p_supplicant.c 184 KB

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