p2p_supplicant.c 226 KB

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