p2p_supplicant.c 212 KB

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