p2p_supplicant.c 150 KB

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