p2p_supplicant.c 163 KB

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