p2p_supplicant.c 135 KB

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