p2p_supplicant.c 172 KB

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