p2p_supplicant.c 225 KB

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