p2p_supplicant.c 137 KB

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