p2p_supplicant.c 256 KB

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