p2p_supplicant.c 186 KB

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