ctrl_iface.c 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491
  1. /*
  2. * WPA Supplicant / Control interface (shared code for all backends)
  3. * Copyright (c) 2004-2010, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "utils/eloop.h"
  11. #include "common/version.h"
  12. #include "common/ieee802_11_defs.h"
  13. #include "common/wpa_ctrl.h"
  14. #include "eap_peer/eap.h"
  15. #include "eapol_supp/eapol_supp_sm.h"
  16. #include "rsn_supp/wpa.h"
  17. #include "rsn_supp/preauth.h"
  18. #include "rsn_supp/pmksa_cache.h"
  19. #include "l2_packet/l2_packet.h"
  20. #include "wps/wps.h"
  21. #include "config.h"
  22. #include "wpa_supplicant_i.h"
  23. #include "driver_i.h"
  24. #include "wps_supplicant.h"
  25. #include "ibss_rsn.h"
  26. #include "ap.h"
  27. #include "p2p_supplicant.h"
  28. #include "p2p/p2p.h"
  29. #include "notify.h"
  30. #include "bss.h"
  31. #include "scan.h"
  32. #include "ctrl_iface.h"
  33. #include "interworking.h"
  34. #include "blacklist.h"
  35. #include "wpas_glue.h"
  36. extern struct wpa_driver_ops *wpa_drivers[];
  37. static int wpa_supplicant_global_iface_list(struct wpa_global *global,
  38. char *buf, int len);
  39. static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
  40. char *buf, int len);
  41. static int pno_start(struct wpa_supplicant *wpa_s)
  42. {
  43. int ret;
  44. size_t i, num_ssid;
  45. struct wpa_ssid *ssid;
  46. struct wpa_driver_scan_params params;
  47. if (wpa_s->pno)
  48. return 0;
  49. os_memset(&params, 0, sizeof(params));
  50. num_ssid = 0;
  51. ssid = wpa_s->conf->ssid;
  52. while (ssid) {
  53. if (!ssid->disabled)
  54. num_ssid++;
  55. ssid = ssid->next;
  56. }
  57. if (num_ssid > WPAS_MAX_SCAN_SSIDS) {
  58. wpa_printf(MSG_DEBUG, "PNO: Use only the first %u SSIDs from "
  59. "%u", WPAS_MAX_SCAN_SSIDS, (unsigned int) num_ssid);
  60. num_ssid = WPAS_MAX_SCAN_SSIDS;
  61. }
  62. if (num_ssid == 0) {
  63. wpa_printf(MSG_DEBUG, "PNO: No configured SSIDs");
  64. return -1;
  65. }
  66. params.filter_ssids = os_malloc(sizeof(struct wpa_driver_scan_filter) *
  67. num_ssid);
  68. if (params.filter_ssids == NULL)
  69. return -1;
  70. i = 0;
  71. ssid = wpa_s->conf->ssid;
  72. while (ssid) {
  73. if (!ssid->disabled) {
  74. params.ssids[i].ssid = ssid->ssid;
  75. params.ssids[i].ssid_len = ssid->ssid_len;
  76. params.num_ssids++;
  77. os_memcpy(params.filter_ssids[i].ssid, ssid->ssid,
  78. ssid->ssid_len);
  79. params.filter_ssids[i].ssid_len = ssid->ssid_len;
  80. params.num_filter_ssids++;
  81. i++;
  82. if (i == num_ssid)
  83. break;
  84. }
  85. ssid = ssid->next;
  86. }
  87. ret = wpa_drv_sched_scan(wpa_s, &params, 10 * 1000);
  88. os_free(params.filter_ssids);
  89. if (ret == 0)
  90. wpa_s->pno = 1;
  91. return ret;
  92. }
  93. static int pno_stop(struct wpa_supplicant *wpa_s)
  94. {
  95. if (wpa_s->pno) {
  96. wpa_s->pno = 0;
  97. return wpa_drv_stop_sched_scan(wpa_s);
  98. }
  99. return 0;
  100. }
  101. static int set_bssid_filter(struct wpa_supplicant *wpa_s, char *val)
  102. {
  103. char *pos;
  104. u8 addr[ETH_ALEN], *filter = NULL, *n;
  105. size_t count = 0;
  106. pos = val;
  107. while (pos) {
  108. if (*pos == '\0')
  109. break;
  110. if (hwaddr_aton(pos, addr)) {
  111. os_free(filter);
  112. return -1;
  113. }
  114. n = os_realloc(filter, (count + 1) * ETH_ALEN);
  115. if (n == NULL) {
  116. os_free(filter);
  117. return -1;
  118. }
  119. filter = n;
  120. os_memcpy(filter + count * ETH_ALEN, addr, ETH_ALEN);
  121. count++;
  122. pos = os_strchr(pos, ' ');
  123. if (pos)
  124. pos++;
  125. }
  126. wpa_hexdump(MSG_DEBUG, "bssid_filter", filter, count * ETH_ALEN);
  127. os_free(wpa_s->bssid_filter);
  128. wpa_s->bssid_filter = filter;
  129. wpa_s->bssid_filter_count = count;
  130. return 0;
  131. }
  132. static int wpa_supplicant_ctrl_iface_set(struct wpa_supplicant *wpa_s,
  133. char *cmd)
  134. {
  135. char *value;
  136. int ret = 0;
  137. value = os_strchr(cmd, ' ');
  138. if (value == NULL)
  139. return -1;
  140. *value++ = '\0';
  141. wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
  142. if (os_strcasecmp(cmd, "EAPOL::heldPeriod") == 0) {
  143. eapol_sm_configure(wpa_s->eapol,
  144. atoi(value), -1, -1, -1);
  145. } else if (os_strcasecmp(cmd, "EAPOL::authPeriod") == 0) {
  146. eapol_sm_configure(wpa_s->eapol,
  147. -1, atoi(value), -1, -1);
  148. } else if (os_strcasecmp(cmd, "EAPOL::startPeriod") == 0) {
  149. eapol_sm_configure(wpa_s->eapol,
  150. -1, -1, atoi(value), -1);
  151. } else if (os_strcasecmp(cmd, "EAPOL::maxStart") == 0) {
  152. eapol_sm_configure(wpa_s->eapol,
  153. -1, -1, -1, atoi(value));
  154. } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKLifetime") == 0) {
  155. if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME,
  156. atoi(value)))
  157. ret = -1;
  158. } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKReauthThreshold") ==
  159. 0) {
  160. if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD,
  161. atoi(value)))
  162. ret = -1;
  163. } else if (os_strcasecmp(cmd, "dot11RSNAConfigSATimeout") == 0) {
  164. if (wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT, atoi(value)))
  165. ret = -1;
  166. } else if (os_strcasecmp(cmd, "wps_fragment_size") == 0) {
  167. wpa_s->wps_fragment_size = atoi(value);
  168. #ifdef CONFIG_WPS_TESTING
  169. } else if (os_strcasecmp(cmd, "wps_version_number") == 0) {
  170. long int val;
  171. val = strtol(value, NULL, 0);
  172. if (val < 0 || val > 0xff) {
  173. ret = -1;
  174. wpa_printf(MSG_DEBUG, "WPS: Invalid "
  175. "wps_version_number %ld", val);
  176. } else {
  177. wps_version_number = val;
  178. wpa_printf(MSG_DEBUG, "WPS: Testing - force WPS "
  179. "version %u.%u",
  180. (wps_version_number & 0xf0) >> 4,
  181. wps_version_number & 0x0f);
  182. }
  183. } else if (os_strcasecmp(cmd, "wps_testing_dummy_cred") == 0) {
  184. wps_testing_dummy_cred = atoi(value);
  185. wpa_printf(MSG_DEBUG, "WPS: Testing - dummy_cred=%d",
  186. wps_testing_dummy_cred);
  187. #endif /* CONFIG_WPS_TESTING */
  188. } else if (os_strcasecmp(cmd, "ampdu") == 0) {
  189. if (wpa_drv_ampdu(wpa_s, atoi(value)) < 0)
  190. ret = -1;
  191. #ifdef CONFIG_TDLS_TESTING
  192. } else if (os_strcasecmp(cmd, "tdls_testing") == 0) {
  193. extern unsigned int tdls_testing;
  194. tdls_testing = strtol(value, NULL, 0);
  195. wpa_printf(MSG_DEBUG, "TDLS: tdls_testing=0x%x", tdls_testing);
  196. #endif /* CONFIG_TDLS_TESTING */
  197. #ifdef CONFIG_TDLS
  198. } else if (os_strcasecmp(cmd, "tdls_disabled") == 0) {
  199. int disabled = atoi(value);
  200. wpa_printf(MSG_DEBUG, "TDLS: tdls_disabled=%d", disabled);
  201. if (disabled) {
  202. if (wpa_drv_tdls_oper(wpa_s, TDLS_DISABLE, NULL) < 0)
  203. ret = -1;
  204. } else if (wpa_drv_tdls_oper(wpa_s, TDLS_ENABLE, NULL) < 0)
  205. ret = -1;
  206. wpa_tdls_enable(wpa_s->wpa, !disabled);
  207. #endif /* CONFIG_TDLS */
  208. } else if (os_strcasecmp(cmd, "pno") == 0) {
  209. if (atoi(value))
  210. ret = pno_start(wpa_s);
  211. else
  212. ret = pno_stop(wpa_s);
  213. } else if (os_strcasecmp(cmd, "radio_disabled") == 0) {
  214. int disabled = atoi(value);
  215. if (wpa_drv_radio_disable(wpa_s, disabled) < 0)
  216. ret = -1;
  217. else if (disabled)
  218. wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
  219. } else if (os_strcasecmp(cmd, "uapsd") == 0) {
  220. if (os_strcmp(value, "disable") == 0)
  221. wpa_s->set_sta_uapsd = 0;
  222. else {
  223. int be, bk, vi, vo;
  224. char *pos;
  225. /* format: BE,BK,VI,VO;max SP Length */
  226. be = atoi(value);
  227. pos = os_strchr(value, ',');
  228. if (pos == NULL)
  229. return -1;
  230. pos++;
  231. bk = atoi(pos);
  232. pos = os_strchr(pos, ',');
  233. if (pos == NULL)
  234. return -1;
  235. pos++;
  236. vi = atoi(pos);
  237. pos = os_strchr(pos, ',');
  238. if (pos == NULL)
  239. return -1;
  240. pos++;
  241. vo = atoi(pos);
  242. /* ignore max SP Length for now */
  243. wpa_s->set_sta_uapsd = 1;
  244. wpa_s->sta_uapsd = 0;
  245. if (be)
  246. wpa_s->sta_uapsd |= BIT(0);
  247. if (bk)
  248. wpa_s->sta_uapsd |= BIT(1);
  249. if (vi)
  250. wpa_s->sta_uapsd |= BIT(2);
  251. if (vo)
  252. wpa_s->sta_uapsd |= BIT(3);
  253. }
  254. } else if (os_strcasecmp(cmd, "ps") == 0) {
  255. ret = wpa_drv_set_p2p_powersave(wpa_s, atoi(value), -1, -1);
  256. } else if (os_strcasecmp(cmd, "bssid_filter") == 0) {
  257. ret = set_bssid_filter(wpa_s, value);
  258. } else {
  259. value[-1] = '=';
  260. ret = wpa_config_process_global(wpa_s->conf, cmd, -1);
  261. if (ret == 0)
  262. wpa_supplicant_update_config(wpa_s);
  263. }
  264. return ret;
  265. }
  266. static int wpa_supplicant_ctrl_iface_get(struct wpa_supplicant *wpa_s,
  267. char *cmd, char *buf, size_t buflen)
  268. {
  269. int res = -1;
  270. wpa_printf(MSG_DEBUG, "CTRL_IFACE GET '%s'", cmd);
  271. if (os_strcmp(cmd, "version") == 0) {
  272. res = os_snprintf(buf, buflen, "%s", VERSION_STR);
  273. } else if (os_strcasecmp(cmd, "country") == 0) {
  274. if (wpa_s->conf->country[0] && wpa_s->conf->country[1])
  275. res = os_snprintf(buf, buflen, "%c%c",
  276. wpa_s->conf->country[0],
  277. wpa_s->conf->country[1]);
  278. }
  279. if (res < 0 || (unsigned int) res >= buflen)
  280. return -1;
  281. return res;
  282. }
  283. #ifdef IEEE8021X_EAPOL
  284. static int wpa_supplicant_ctrl_iface_preauth(struct wpa_supplicant *wpa_s,
  285. char *addr)
  286. {
  287. u8 bssid[ETH_ALEN];
  288. struct wpa_ssid *ssid = wpa_s->current_ssid;
  289. if (hwaddr_aton(addr, bssid)) {
  290. wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH: invalid address "
  291. "'%s'", addr);
  292. return -1;
  293. }
  294. wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH " MACSTR, MAC2STR(bssid));
  295. rsn_preauth_deinit(wpa_s->wpa);
  296. if (rsn_preauth_init(wpa_s->wpa, bssid, ssid ? &ssid->eap : NULL))
  297. return -1;
  298. return 0;
  299. }
  300. #endif /* IEEE8021X_EAPOL */
  301. #ifdef CONFIG_PEERKEY
  302. /* MLME-STKSTART.request(peer) */
  303. static int wpa_supplicant_ctrl_iface_stkstart(
  304. struct wpa_supplicant *wpa_s, char *addr)
  305. {
  306. u8 peer[ETH_ALEN];
  307. if (hwaddr_aton(addr, peer)) {
  308. wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART: invalid "
  309. "address '%s'", addr);
  310. return -1;
  311. }
  312. wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART " MACSTR,
  313. MAC2STR(peer));
  314. return wpa_sm_stkstart(wpa_s->wpa, peer);
  315. }
  316. #endif /* CONFIG_PEERKEY */
  317. #ifdef CONFIG_TDLS
  318. static int wpa_supplicant_ctrl_iface_tdls_discover(
  319. struct wpa_supplicant *wpa_s, char *addr)
  320. {
  321. u8 peer[ETH_ALEN];
  322. int ret;
  323. if (hwaddr_aton(addr, peer)) {
  324. wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_DISCOVER: invalid "
  325. "address '%s'", addr);
  326. return -1;
  327. }
  328. wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_DISCOVER " MACSTR,
  329. MAC2STR(peer));
  330. if (wpa_tdls_is_external_setup(wpa_s->wpa))
  331. ret = wpa_tdls_send_discovery_request(wpa_s->wpa, peer);
  332. else
  333. ret = wpa_drv_tdls_oper(wpa_s, TDLS_DISCOVERY_REQ, peer);
  334. return ret;
  335. }
  336. static int wpa_supplicant_ctrl_iface_tdls_setup(
  337. struct wpa_supplicant *wpa_s, char *addr)
  338. {
  339. u8 peer[ETH_ALEN];
  340. int ret;
  341. if (hwaddr_aton(addr, peer)) {
  342. wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_SETUP: invalid "
  343. "address '%s'", addr);
  344. return -1;
  345. }
  346. wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_SETUP " MACSTR,
  347. MAC2STR(peer));
  348. ret = wpa_tdls_reneg(wpa_s->wpa, peer);
  349. if (ret) {
  350. if (wpa_tdls_is_external_setup(wpa_s->wpa))
  351. ret = wpa_tdls_start(wpa_s->wpa, peer);
  352. else
  353. ret = wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, peer);
  354. }
  355. return ret;
  356. }
  357. static int wpa_supplicant_ctrl_iface_tdls_teardown(
  358. struct wpa_supplicant *wpa_s, char *addr)
  359. {
  360. u8 peer[ETH_ALEN];
  361. if (hwaddr_aton(addr, peer)) {
  362. wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN: invalid "
  363. "address '%s'", addr);
  364. return -1;
  365. }
  366. wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN " MACSTR,
  367. MAC2STR(peer));
  368. return wpa_tdls_teardown_link(wpa_s->wpa, peer,
  369. WLAN_REASON_TDLS_TEARDOWN_UNSPECIFIED);
  370. }
  371. #endif /* CONFIG_TDLS */
  372. #ifdef CONFIG_IEEE80211R
  373. static int wpa_supplicant_ctrl_iface_ft_ds(
  374. struct wpa_supplicant *wpa_s, char *addr)
  375. {
  376. u8 target_ap[ETH_ALEN];
  377. struct wpa_bss *bss;
  378. const u8 *mdie;
  379. if (hwaddr_aton(addr, target_ap)) {
  380. wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS: invalid "
  381. "address '%s'", addr);
  382. return -1;
  383. }
  384. wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS " MACSTR, MAC2STR(target_ap));
  385. bss = wpa_bss_get_bssid(wpa_s, target_ap);
  386. if (bss)
  387. mdie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
  388. else
  389. mdie = NULL;
  390. return wpa_ft_start_over_ds(wpa_s->wpa, target_ap, mdie);
  391. }
  392. #endif /* CONFIG_IEEE80211R */
  393. #ifdef CONFIG_WPS
  394. static int wpa_supplicant_ctrl_iface_wps_pbc(struct wpa_supplicant *wpa_s,
  395. char *cmd)
  396. {
  397. u8 bssid[ETH_ALEN], *_bssid = bssid;
  398. #ifdef CONFIG_P2P
  399. u8 p2p_dev_addr[ETH_ALEN];
  400. #endif /* CONFIG_P2P */
  401. #ifdef CONFIG_AP
  402. u8 *_p2p_dev_addr = NULL;
  403. #endif /* CONFIG_AP */
  404. if (cmd == NULL || os_strcmp(cmd, "any") == 0) {
  405. _bssid = NULL;
  406. #ifdef CONFIG_P2P
  407. } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
  408. if (hwaddr_aton(cmd + 13, p2p_dev_addr)) {
  409. wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid "
  410. "P2P Device Address '%s'",
  411. cmd + 13);
  412. return -1;
  413. }
  414. _p2p_dev_addr = p2p_dev_addr;
  415. #endif /* CONFIG_P2P */
  416. } else if (hwaddr_aton(cmd, bssid)) {
  417. wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid BSSID '%s'",
  418. cmd);
  419. return -1;
  420. }
  421. #ifdef CONFIG_AP
  422. if (wpa_s->ap_iface)
  423. return wpa_supplicant_ap_wps_pbc(wpa_s, _bssid, _p2p_dev_addr);
  424. #endif /* CONFIG_AP */
  425. return wpas_wps_start_pbc(wpa_s, _bssid, 0);
  426. }
  427. static int wpa_supplicant_ctrl_iface_wps_pin(struct wpa_supplicant *wpa_s,
  428. char *cmd, char *buf,
  429. size_t buflen)
  430. {
  431. u8 bssid[ETH_ALEN], *_bssid = bssid;
  432. char *pin;
  433. int ret;
  434. pin = os_strchr(cmd, ' ');
  435. if (pin)
  436. *pin++ = '\0';
  437. if (os_strcmp(cmd, "any") == 0)
  438. _bssid = NULL;
  439. else if (os_strcmp(cmd, "get") == 0) {
  440. ret = wps_generate_pin();
  441. goto done;
  442. } else if (hwaddr_aton(cmd, bssid)) {
  443. wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PIN: invalid BSSID '%s'",
  444. cmd);
  445. return -1;
  446. }
  447. #ifdef CONFIG_AP
  448. if (wpa_s->ap_iface)
  449. return wpa_supplicant_ap_wps_pin(wpa_s, _bssid, pin,
  450. buf, buflen);
  451. #endif /* CONFIG_AP */
  452. if (pin) {
  453. ret = wpas_wps_start_pin(wpa_s, _bssid, pin, 0,
  454. DEV_PW_DEFAULT);
  455. if (ret < 0)
  456. return -1;
  457. ret = os_snprintf(buf, buflen, "%s", pin);
  458. if (ret < 0 || (size_t) ret >= buflen)
  459. return -1;
  460. return ret;
  461. }
  462. ret = wpas_wps_start_pin(wpa_s, _bssid, NULL, 0, DEV_PW_DEFAULT);
  463. if (ret < 0)
  464. return -1;
  465. done:
  466. /* Return the generated PIN */
  467. ret = os_snprintf(buf, buflen, "%08d", ret);
  468. if (ret < 0 || (size_t) ret >= buflen)
  469. return -1;
  470. return ret;
  471. }
  472. static int wpa_supplicant_ctrl_iface_wps_check_pin(
  473. struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
  474. {
  475. char pin[9];
  476. size_t len;
  477. char *pos;
  478. int ret;
  479. wpa_hexdump_ascii_key(MSG_DEBUG, "WPS_CHECK_PIN",
  480. (u8 *) cmd, os_strlen(cmd));
  481. for (pos = cmd, len = 0; *pos != '\0'; pos++) {
  482. if (*pos < '0' || *pos > '9')
  483. continue;
  484. pin[len++] = *pos;
  485. if (len == 9) {
  486. wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
  487. return -1;
  488. }
  489. }
  490. if (len != 4 && len != 8) {
  491. wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
  492. return -1;
  493. }
  494. pin[len] = '\0';
  495. if (len == 8) {
  496. unsigned int pin_val;
  497. pin_val = atoi(pin);
  498. if (!wps_pin_valid(pin_val)) {
  499. wpa_printf(MSG_DEBUG, "WPS: Invalid checksum digit");
  500. ret = os_snprintf(buf, buflen, "FAIL-CHECKSUM\n");
  501. if (ret < 0 || (size_t) ret >= buflen)
  502. return -1;
  503. return ret;
  504. }
  505. }
  506. ret = os_snprintf(buf, buflen, "%s", pin);
  507. if (ret < 0 || (size_t) ret >= buflen)
  508. return -1;
  509. return ret;
  510. }
  511. #ifdef CONFIG_WPS_OOB
  512. static int wpa_supplicant_ctrl_iface_wps_oob(struct wpa_supplicant *wpa_s,
  513. char *cmd)
  514. {
  515. char *path, *method, *name;
  516. path = os_strchr(cmd, ' ');
  517. if (path == NULL)
  518. return -1;
  519. *path++ = '\0';
  520. method = os_strchr(path, ' ');
  521. if (method == NULL)
  522. return -1;
  523. *method++ = '\0';
  524. name = os_strchr(method, ' ');
  525. if (name != NULL)
  526. *name++ = '\0';
  527. return wpas_wps_start_oob(wpa_s, cmd, path, method, name);
  528. }
  529. #endif /* CONFIG_WPS_OOB */
  530. static int wpa_supplicant_ctrl_iface_wps_reg(struct wpa_supplicant *wpa_s,
  531. char *cmd)
  532. {
  533. u8 bssid[ETH_ALEN];
  534. char *pin;
  535. char *new_ssid;
  536. char *new_auth;
  537. char *new_encr;
  538. char *new_key;
  539. struct wps_new_ap_settings ap;
  540. pin = os_strchr(cmd, ' ');
  541. if (pin == NULL)
  542. return -1;
  543. *pin++ = '\0';
  544. if (hwaddr_aton(cmd, bssid)) {
  545. wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_REG: invalid BSSID '%s'",
  546. cmd);
  547. return -1;
  548. }
  549. new_ssid = os_strchr(pin, ' ');
  550. if (new_ssid == NULL)
  551. return wpas_wps_start_reg(wpa_s, bssid, pin, NULL);
  552. *new_ssid++ = '\0';
  553. new_auth = os_strchr(new_ssid, ' ');
  554. if (new_auth == NULL)
  555. return -1;
  556. *new_auth++ = '\0';
  557. new_encr = os_strchr(new_auth, ' ');
  558. if (new_encr == NULL)
  559. return -1;
  560. *new_encr++ = '\0';
  561. new_key = os_strchr(new_encr, ' ');
  562. if (new_key == NULL)
  563. return -1;
  564. *new_key++ = '\0';
  565. os_memset(&ap, 0, sizeof(ap));
  566. ap.ssid_hex = new_ssid;
  567. ap.auth = new_auth;
  568. ap.encr = new_encr;
  569. ap.key_hex = new_key;
  570. return wpas_wps_start_reg(wpa_s, bssid, pin, &ap);
  571. }
  572. #ifdef CONFIG_AP
  573. static int wpa_supplicant_ctrl_iface_wps_ap_pin(struct wpa_supplicant *wpa_s,
  574. char *cmd, char *buf,
  575. size_t buflen)
  576. {
  577. int timeout = 300;
  578. char *pos;
  579. const char *pin_txt;
  580. if (!wpa_s->ap_iface)
  581. return -1;
  582. pos = os_strchr(cmd, ' ');
  583. if (pos)
  584. *pos++ = '\0';
  585. if (os_strcmp(cmd, "disable") == 0) {
  586. wpas_wps_ap_pin_disable(wpa_s);
  587. return os_snprintf(buf, buflen, "OK\n");
  588. }
  589. if (os_strcmp(cmd, "random") == 0) {
  590. if (pos)
  591. timeout = atoi(pos);
  592. pin_txt = wpas_wps_ap_pin_random(wpa_s, timeout);
  593. if (pin_txt == NULL)
  594. return -1;
  595. return os_snprintf(buf, buflen, "%s", pin_txt);
  596. }
  597. if (os_strcmp(cmd, "get") == 0) {
  598. pin_txt = wpas_wps_ap_pin_get(wpa_s);
  599. if (pin_txt == NULL)
  600. return -1;
  601. return os_snprintf(buf, buflen, "%s", pin_txt);
  602. }
  603. if (os_strcmp(cmd, "set") == 0) {
  604. char *pin;
  605. if (pos == NULL)
  606. return -1;
  607. pin = pos;
  608. pos = os_strchr(pos, ' ');
  609. if (pos) {
  610. *pos++ = '\0';
  611. timeout = atoi(pos);
  612. }
  613. if (os_strlen(pin) > buflen)
  614. return -1;
  615. if (wpas_wps_ap_pin_set(wpa_s, pin, timeout) < 0)
  616. return -1;
  617. return os_snprintf(buf, buflen, "%s", pin);
  618. }
  619. return -1;
  620. }
  621. #endif /* CONFIG_AP */
  622. #ifdef CONFIG_WPS_ER
  623. static int wpa_supplicant_ctrl_iface_wps_er_pin(struct wpa_supplicant *wpa_s,
  624. char *cmd)
  625. {
  626. char *uuid = cmd, *pin, *pos;
  627. u8 addr_buf[ETH_ALEN], *addr = NULL;
  628. pin = os_strchr(uuid, ' ');
  629. if (pin == NULL)
  630. return -1;
  631. *pin++ = '\0';
  632. pos = os_strchr(pin, ' ');
  633. if (pos) {
  634. *pos++ = '\0';
  635. if (hwaddr_aton(pos, addr_buf) == 0)
  636. addr = addr_buf;
  637. }
  638. return wpas_wps_er_add_pin(wpa_s, addr, uuid, pin);
  639. }
  640. static int wpa_supplicant_ctrl_iface_wps_er_learn(struct wpa_supplicant *wpa_s,
  641. char *cmd)
  642. {
  643. char *uuid = cmd, *pin;
  644. pin = os_strchr(uuid, ' ');
  645. if (pin == NULL)
  646. return -1;
  647. *pin++ = '\0';
  648. return wpas_wps_er_learn(wpa_s, uuid, pin);
  649. }
  650. static int wpa_supplicant_ctrl_iface_wps_er_set_config(
  651. struct wpa_supplicant *wpa_s, char *cmd)
  652. {
  653. char *uuid = cmd, *id;
  654. id = os_strchr(uuid, ' ');
  655. if (id == NULL)
  656. return -1;
  657. *id++ = '\0';
  658. return wpas_wps_er_set_config(wpa_s, uuid, atoi(id));
  659. }
  660. static int wpa_supplicant_ctrl_iface_wps_er_config(
  661. struct wpa_supplicant *wpa_s, char *cmd)
  662. {
  663. char *pin;
  664. char *new_ssid;
  665. char *new_auth;
  666. char *new_encr;
  667. char *new_key;
  668. struct wps_new_ap_settings ap;
  669. pin = os_strchr(cmd, ' ');
  670. if (pin == NULL)
  671. return -1;
  672. *pin++ = '\0';
  673. new_ssid = os_strchr(pin, ' ');
  674. if (new_ssid == NULL)
  675. return -1;
  676. *new_ssid++ = '\0';
  677. new_auth = os_strchr(new_ssid, ' ');
  678. if (new_auth == NULL)
  679. return -1;
  680. *new_auth++ = '\0';
  681. new_encr = os_strchr(new_auth, ' ');
  682. if (new_encr == NULL)
  683. return -1;
  684. *new_encr++ = '\0';
  685. new_key = os_strchr(new_encr, ' ');
  686. if (new_key == NULL)
  687. return -1;
  688. *new_key++ = '\0';
  689. os_memset(&ap, 0, sizeof(ap));
  690. ap.ssid_hex = new_ssid;
  691. ap.auth = new_auth;
  692. ap.encr = new_encr;
  693. ap.key_hex = new_key;
  694. return wpas_wps_er_config(wpa_s, cmd, pin, &ap);
  695. }
  696. #endif /* CONFIG_WPS_ER */
  697. #endif /* CONFIG_WPS */
  698. #ifdef CONFIG_IBSS_RSN
  699. static int wpa_supplicant_ctrl_iface_ibss_rsn(
  700. struct wpa_supplicant *wpa_s, char *addr)
  701. {
  702. u8 peer[ETH_ALEN];
  703. if (hwaddr_aton(addr, peer)) {
  704. wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN: invalid "
  705. "address '%s'", addr);
  706. return -1;
  707. }
  708. wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN " MACSTR,
  709. MAC2STR(peer));
  710. return ibss_rsn_start(wpa_s->ibss_rsn, peer);
  711. }
  712. #endif /* CONFIG_IBSS_RSN */
  713. int wpa_supplicant_ctrl_iface_ctrl_rsp_handle(struct wpa_supplicant *wpa_s,
  714. struct wpa_ssid *ssid,
  715. const char *field,
  716. const char *value)
  717. {
  718. #ifdef IEEE8021X_EAPOL
  719. struct eap_peer_config *eap = &ssid->eap;
  720. wpa_printf(MSG_DEBUG, "CTRL_IFACE: response handle field=%s", field);
  721. wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: response value",
  722. (const u8 *) value, os_strlen(value));
  723. switch (wpa_supplicant_ctrl_req_from_string(field)) {
  724. case WPA_CTRL_REQ_EAP_IDENTITY:
  725. os_free(eap->identity);
  726. eap->identity = (u8 *) os_strdup(value);
  727. eap->identity_len = os_strlen(value);
  728. eap->pending_req_identity = 0;
  729. if (ssid == wpa_s->current_ssid)
  730. wpa_s->reassociate = 1;
  731. break;
  732. case WPA_CTRL_REQ_EAP_PASSWORD:
  733. os_free(eap->password);
  734. eap->password = (u8 *) os_strdup(value);
  735. eap->password_len = os_strlen(value);
  736. eap->pending_req_password = 0;
  737. if (ssid == wpa_s->current_ssid)
  738. wpa_s->reassociate = 1;
  739. break;
  740. case WPA_CTRL_REQ_EAP_NEW_PASSWORD:
  741. os_free(eap->new_password);
  742. eap->new_password = (u8 *) os_strdup(value);
  743. eap->new_password_len = os_strlen(value);
  744. eap->pending_req_new_password = 0;
  745. if (ssid == wpa_s->current_ssid)
  746. wpa_s->reassociate = 1;
  747. break;
  748. case WPA_CTRL_REQ_EAP_PIN:
  749. os_free(eap->pin);
  750. eap->pin = os_strdup(value);
  751. eap->pending_req_pin = 0;
  752. if (ssid == wpa_s->current_ssid)
  753. wpa_s->reassociate = 1;
  754. break;
  755. case WPA_CTRL_REQ_EAP_OTP:
  756. os_free(eap->otp);
  757. eap->otp = (u8 *) os_strdup(value);
  758. eap->otp_len = os_strlen(value);
  759. os_free(eap->pending_req_otp);
  760. eap->pending_req_otp = NULL;
  761. eap->pending_req_otp_len = 0;
  762. break;
  763. case WPA_CTRL_REQ_EAP_PASSPHRASE:
  764. os_free(eap->private_key_passwd);
  765. eap->private_key_passwd = (u8 *) os_strdup(value);
  766. eap->pending_req_passphrase = 0;
  767. if (ssid == wpa_s->current_ssid)
  768. wpa_s->reassociate = 1;
  769. break;
  770. default:
  771. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown field '%s'", field);
  772. return -1;
  773. }
  774. return 0;
  775. #else /* IEEE8021X_EAPOL */
  776. wpa_printf(MSG_DEBUG, "CTRL_IFACE: IEEE 802.1X not included");
  777. return -1;
  778. #endif /* IEEE8021X_EAPOL */
  779. }
  780. static int wpa_supplicant_ctrl_iface_ctrl_rsp(struct wpa_supplicant *wpa_s,
  781. char *rsp)
  782. {
  783. #ifdef IEEE8021X_EAPOL
  784. char *pos, *id_pos;
  785. int id;
  786. struct wpa_ssid *ssid;
  787. pos = os_strchr(rsp, '-');
  788. if (pos == NULL)
  789. return -1;
  790. *pos++ = '\0';
  791. id_pos = pos;
  792. pos = os_strchr(pos, ':');
  793. if (pos == NULL)
  794. return -1;
  795. *pos++ = '\0';
  796. id = atoi(id_pos);
  797. wpa_printf(MSG_DEBUG, "CTRL_IFACE: field=%s id=%d", rsp, id);
  798. wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
  799. (u8 *) pos, os_strlen(pos));
  800. ssid = wpa_config_get_network(wpa_s->conf, id);
  801. if (ssid == NULL) {
  802. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
  803. "to update", id);
  804. return -1;
  805. }
  806. return wpa_supplicant_ctrl_iface_ctrl_rsp_handle(wpa_s, ssid, rsp,
  807. pos);
  808. #else /* IEEE8021X_EAPOL */
  809. wpa_printf(MSG_DEBUG, "CTRL_IFACE: 802.1X not included");
  810. return -1;
  811. #endif /* IEEE8021X_EAPOL */
  812. }
  813. static int wpa_supplicant_ctrl_iface_status(struct wpa_supplicant *wpa_s,
  814. const char *params,
  815. char *buf, size_t buflen)
  816. {
  817. char *pos, *end, tmp[30];
  818. int res, verbose, wps, ret;
  819. verbose = os_strcmp(params, "-VERBOSE") == 0;
  820. wps = os_strcmp(params, "-WPS") == 0;
  821. pos = buf;
  822. end = buf + buflen;
  823. if (wpa_s->wpa_state >= WPA_ASSOCIATED) {
  824. struct wpa_ssid *ssid = wpa_s->current_ssid;
  825. ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
  826. MAC2STR(wpa_s->bssid));
  827. if (ret < 0 || ret >= end - pos)
  828. return pos - buf;
  829. pos += ret;
  830. if (ssid) {
  831. u8 *_ssid = ssid->ssid;
  832. size_t ssid_len = ssid->ssid_len;
  833. u8 ssid_buf[MAX_SSID_LEN];
  834. if (ssid_len == 0) {
  835. int _res = wpa_drv_get_ssid(wpa_s, ssid_buf);
  836. if (_res < 0)
  837. ssid_len = 0;
  838. else
  839. ssid_len = _res;
  840. _ssid = ssid_buf;
  841. }
  842. ret = os_snprintf(pos, end - pos, "ssid=%s\nid=%d\n",
  843. wpa_ssid_txt(_ssid, ssid_len),
  844. ssid->id);
  845. if (ret < 0 || ret >= end - pos)
  846. return pos - buf;
  847. pos += ret;
  848. if (wps && ssid->passphrase &&
  849. wpa_key_mgmt_wpa_psk(ssid->key_mgmt) &&
  850. (ssid->mode == WPAS_MODE_AP ||
  851. ssid->mode == WPAS_MODE_P2P_GO)) {
  852. ret = os_snprintf(pos, end - pos,
  853. "passphrase=%s\n",
  854. ssid->passphrase);
  855. if (ret < 0 || ret >= end - pos)
  856. return pos - buf;
  857. pos += ret;
  858. }
  859. if (ssid->id_str) {
  860. ret = os_snprintf(pos, end - pos,
  861. "id_str=%s\n",
  862. ssid->id_str);
  863. if (ret < 0 || ret >= end - pos)
  864. return pos - buf;
  865. pos += ret;
  866. }
  867. switch (ssid->mode) {
  868. case WPAS_MODE_INFRA:
  869. ret = os_snprintf(pos, end - pos,
  870. "mode=station\n");
  871. break;
  872. case WPAS_MODE_IBSS:
  873. ret = os_snprintf(pos, end - pos,
  874. "mode=IBSS\n");
  875. break;
  876. case WPAS_MODE_AP:
  877. ret = os_snprintf(pos, end - pos,
  878. "mode=AP\n");
  879. break;
  880. case WPAS_MODE_P2P_GO:
  881. ret = os_snprintf(pos, end - pos,
  882. "mode=P2P GO\n");
  883. break;
  884. case WPAS_MODE_P2P_GROUP_FORMATION:
  885. ret = os_snprintf(pos, end - pos,
  886. "mode=P2P GO - group "
  887. "formation\n");
  888. break;
  889. default:
  890. ret = 0;
  891. break;
  892. }
  893. if (ret < 0 || ret >= end - pos)
  894. return pos - buf;
  895. pos += ret;
  896. }
  897. #ifdef CONFIG_AP
  898. if (wpa_s->ap_iface) {
  899. pos += ap_ctrl_iface_wpa_get_status(wpa_s, pos,
  900. end - pos,
  901. verbose);
  902. } else
  903. #endif /* CONFIG_AP */
  904. pos += wpa_sm_get_status(wpa_s->wpa, pos, end - pos, verbose);
  905. }
  906. ret = os_snprintf(pos, end - pos, "wpa_state=%s\n",
  907. wpa_supplicant_state_txt(wpa_s->wpa_state));
  908. if (ret < 0 || ret >= end - pos)
  909. return pos - buf;
  910. pos += ret;
  911. if (wpa_s->l2 &&
  912. l2_packet_get_ip_addr(wpa_s->l2, tmp, sizeof(tmp)) >= 0) {
  913. ret = os_snprintf(pos, end - pos, "ip_address=%s\n", tmp);
  914. if (ret < 0 || ret >= end - pos)
  915. return pos - buf;
  916. pos += ret;
  917. }
  918. #ifdef CONFIG_P2P
  919. if (wpa_s->global->p2p) {
  920. ret = os_snprintf(pos, end - pos, "p2p_device_address=" MACSTR
  921. "\n", MAC2STR(wpa_s->global->p2p_dev_addr));
  922. if (ret < 0 || ret >= end - pos)
  923. return pos - buf;
  924. pos += ret;
  925. }
  926. #endif /* CONFIG_P2P */
  927. ret = os_snprintf(pos, end - pos, "address=" MACSTR "\n",
  928. MAC2STR(wpa_s->own_addr));
  929. if (ret < 0 || ret >= end - pos)
  930. return pos - buf;
  931. pos += ret;
  932. if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
  933. wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  934. res = eapol_sm_get_status(wpa_s->eapol, pos, end - pos,
  935. verbose);
  936. if (res >= 0)
  937. pos += res;
  938. }
  939. res = rsn_preauth_get_status(wpa_s->wpa, pos, end - pos, verbose);
  940. if (res >= 0)
  941. pos += res;
  942. return pos - buf;
  943. }
  944. static int wpa_supplicant_ctrl_iface_bssid(struct wpa_supplicant *wpa_s,
  945. char *cmd)
  946. {
  947. char *pos;
  948. int id;
  949. struct wpa_ssid *ssid;
  950. u8 bssid[ETH_ALEN];
  951. /* cmd: "<network id> <BSSID>" */
  952. pos = os_strchr(cmd, ' ');
  953. if (pos == NULL)
  954. return -1;
  955. *pos++ = '\0';
  956. id = atoi(cmd);
  957. wpa_printf(MSG_DEBUG, "CTRL_IFACE: id=%d bssid='%s'", id, pos);
  958. if (hwaddr_aton(pos, bssid)) {
  959. wpa_printf(MSG_DEBUG ,"CTRL_IFACE: invalid BSSID '%s'", pos);
  960. return -1;
  961. }
  962. ssid = wpa_config_get_network(wpa_s->conf, id);
  963. if (ssid == NULL) {
  964. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
  965. "to update", id);
  966. return -1;
  967. }
  968. os_memcpy(ssid->bssid, bssid, ETH_ALEN);
  969. ssid->bssid_set = !is_zero_ether_addr(bssid);
  970. return 0;
  971. }
  972. static int wpa_supplicant_ctrl_iface_blacklist(struct wpa_supplicant *wpa_s,
  973. char *cmd, char *buf,
  974. size_t buflen)
  975. {
  976. u8 bssid[ETH_ALEN];
  977. struct wpa_blacklist *e;
  978. char *pos, *end;
  979. int ret;
  980. /* cmd: "BLACKLIST [<BSSID>]" */
  981. if (*cmd == '\0') {
  982. pos = buf;
  983. end = buf + buflen;
  984. e = wpa_s->blacklist;
  985. while (e) {
  986. ret = os_snprintf(pos, end - pos, MACSTR "\n",
  987. MAC2STR(e->bssid));
  988. if (ret < 0 || ret >= end - pos)
  989. return pos - buf;
  990. pos += ret;
  991. e = e->next;
  992. }
  993. return pos - buf;
  994. }
  995. cmd++;
  996. if (os_strncmp(cmd, "clear", 5) == 0) {
  997. wpa_blacklist_clear(wpa_s);
  998. os_memcpy(buf, "OK\n", 3);
  999. return 3;
  1000. }
  1001. wpa_printf(MSG_DEBUG, "CTRL_IFACE: BLACKLIST bssid='%s'", cmd);
  1002. if (hwaddr_aton(cmd, bssid)) {
  1003. wpa_printf(MSG_DEBUG, "CTRL_IFACE: invalid BSSID '%s'", cmd);
  1004. return -1;
  1005. }
  1006. /*
  1007. * Add the BSSID twice, so its count will be 2, causing it to be
  1008. * skipped when processing scan results.
  1009. */
  1010. ret = wpa_blacklist_add(wpa_s, bssid);
  1011. if (ret != 0)
  1012. return -1;
  1013. ret = wpa_blacklist_add(wpa_s, bssid);
  1014. if (ret != 0)
  1015. return -1;
  1016. os_memcpy(buf, "OK\n", 3);
  1017. return 3;
  1018. }
  1019. extern int wpa_debug_level;
  1020. extern int wpa_debug_timestamp;
  1021. static const char * debug_level_str(int level)
  1022. {
  1023. switch (level) {
  1024. case MSG_EXCESSIVE:
  1025. return "EXCESSIVE";
  1026. case MSG_MSGDUMP:
  1027. return "MSGDUMP";
  1028. case MSG_DEBUG:
  1029. return "DEBUG";
  1030. case MSG_INFO:
  1031. return "INFO";
  1032. case MSG_WARNING:
  1033. return "WARNING";
  1034. case MSG_ERROR:
  1035. return "ERROR";
  1036. default:
  1037. return "?";
  1038. }
  1039. }
  1040. static int str_to_debug_level(const char *s)
  1041. {
  1042. if (os_strcasecmp(s, "EXCESSIVE") == 0)
  1043. return MSG_EXCESSIVE;
  1044. if (os_strcasecmp(s, "MSGDUMP") == 0)
  1045. return MSG_MSGDUMP;
  1046. if (os_strcasecmp(s, "DEBUG") == 0)
  1047. return MSG_DEBUG;
  1048. if (os_strcasecmp(s, "INFO") == 0)
  1049. return MSG_INFO;
  1050. if (os_strcasecmp(s, "WARNING") == 0)
  1051. return MSG_WARNING;
  1052. if (os_strcasecmp(s, "ERROR") == 0)
  1053. return MSG_ERROR;
  1054. return -1;
  1055. }
  1056. static int wpa_supplicant_ctrl_iface_log_level(struct wpa_supplicant *wpa_s,
  1057. char *cmd, char *buf,
  1058. size_t buflen)
  1059. {
  1060. char *pos, *end, *stamp;
  1061. int ret;
  1062. if (cmd == NULL) {
  1063. return -1;
  1064. }
  1065. /* cmd: "LOG_LEVEL [<level>]" */
  1066. if (*cmd == '\0') {
  1067. pos = buf;
  1068. end = buf + buflen;
  1069. ret = os_snprintf(pos, end - pos, "Current level: %s\n"
  1070. "Timestamp: %d\n",
  1071. debug_level_str(wpa_debug_level),
  1072. wpa_debug_timestamp);
  1073. if (ret < 0 || ret >= end - pos)
  1074. ret = 0;
  1075. return ret;
  1076. }
  1077. while (*cmd == ' ')
  1078. cmd++;
  1079. stamp = os_strchr(cmd, ' ');
  1080. if (stamp) {
  1081. *stamp++ = '\0';
  1082. while (*stamp == ' ') {
  1083. stamp++;
  1084. }
  1085. }
  1086. if (cmd && os_strlen(cmd)) {
  1087. int level = str_to_debug_level(cmd);
  1088. if (level < 0)
  1089. return -1;
  1090. wpa_debug_level = level;
  1091. }
  1092. if (stamp && os_strlen(stamp))
  1093. wpa_debug_timestamp = atoi(stamp);
  1094. os_memcpy(buf, "OK\n", 3);
  1095. return 3;
  1096. }
  1097. static int wpa_supplicant_ctrl_iface_list_networks(
  1098. struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
  1099. {
  1100. char *pos, *end;
  1101. struct wpa_ssid *ssid;
  1102. int ret;
  1103. pos = buf;
  1104. end = buf + buflen;
  1105. ret = os_snprintf(pos, end - pos,
  1106. "network id / ssid / bssid / flags\n");
  1107. if (ret < 0 || ret >= end - pos)
  1108. return pos - buf;
  1109. pos += ret;
  1110. ssid = wpa_s->conf->ssid;
  1111. while (ssid) {
  1112. ret = os_snprintf(pos, end - pos, "%d\t%s",
  1113. ssid->id,
  1114. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  1115. if (ret < 0 || ret >= end - pos)
  1116. return pos - buf;
  1117. pos += ret;
  1118. if (ssid->bssid_set) {
  1119. ret = os_snprintf(pos, end - pos, "\t" MACSTR,
  1120. MAC2STR(ssid->bssid));
  1121. } else {
  1122. ret = os_snprintf(pos, end - pos, "\tany");
  1123. }
  1124. if (ret < 0 || ret >= end - pos)
  1125. return pos - buf;
  1126. pos += ret;
  1127. ret = os_snprintf(pos, end - pos, "\t%s%s%s",
  1128. ssid == wpa_s->current_ssid ?
  1129. "[CURRENT]" : "",
  1130. ssid->disabled ? "[DISABLED]" : "",
  1131. ssid->disabled == 2 ? "[P2P-PERSISTENT]" :
  1132. "");
  1133. if (ret < 0 || ret >= end - pos)
  1134. return pos - buf;
  1135. pos += ret;
  1136. ret = os_snprintf(pos, end - pos, "\n");
  1137. if (ret < 0 || ret >= end - pos)
  1138. return pos - buf;
  1139. pos += ret;
  1140. ssid = ssid->next;
  1141. }
  1142. return pos - buf;
  1143. }
  1144. static char * wpa_supplicant_cipher_txt(char *pos, char *end, int cipher)
  1145. {
  1146. int first = 1, ret;
  1147. ret = os_snprintf(pos, end - pos, "-");
  1148. if (ret < 0 || ret >= end - pos)
  1149. return pos;
  1150. pos += ret;
  1151. if (cipher & WPA_CIPHER_NONE) {
  1152. ret = os_snprintf(pos, end - pos, "%sNONE", first ? "" : "+");
  1153. if (ret < 0 || ret >= end - pos)
  1154. return pos;
  1155. pos += ret;
  1156. first = 0;
  1157. }
  1158. if (cipher & WPA_CIPHER_WEP40) {
  1159. ret = os_snprintf(pos, end - pos, "%sWEP40", first ? "" : "+");
  1160. if (ret < 0 || ret >= end - pos)
  1161. return pos;
  1162. pos += ret;
  1163. first = 0;
  1164. }
  1165. if (cipher & WPA_CIPHER_WEP104) {
  1166. ret = os_snprintf(pos, end - pos, "%sWEP104",
  1167. first ? "" : "+");
  1168. if (ret < 0 || ret >= end - pos)
  1169. return pos;
  1170. pos += ret;
  1171. first = 0;
  1172. }
  1173. if (cipher & WPA_CIPHER_TKIP) {
  1174. ret = os_snprintf(pos, end - pos, "%sTKIP", first ? "" : "+");
  1175. if (ret < 0 || ret >= end - pos)
  1176. return pos;
  1177. pos += ret;
  1178. first = 0;
  1179. }
  1180. if (cipher & WPA_CIPHER_CCMP) {
  1181. ret = os_snprintf(pos, end - pos, "%sCCMP", first ? "" : "+");
  1182. if (ret < 0 || ret >= end - pos)
  1183. return pos;
  1184. pos += ret;
  1185. first = 0;
  1186. }
  1187. return pos;
  1188. }
  1189. static char * wpa_supplicant_ie_txt(char *pos, char *end, const char *proto,
  1190. const u8 *ie, size_t ie_len)
  1191. {
  1192. struct wpa_ie_data data;
  1193. int first, ret;
  1194. ret = os_snprintf(pos, end - pos, "[%s-", proto);
  1195. if (ret < 0 || ret >= end - pos)
  1196. return pos;
  1197. pos += ret;
  1198. if (wpa_parse_wpa_ie(ie, ie_len, &data) < 0) {
  1199. ret = os_snprintf(pos, end - pos, "?]");
  1200. if (ret < 0 || ret >= end - pos)
  1201. return pos;
  1202. pos += ret;
  1203. return pos;
  1204. }
  1205. first = 1;
  1206. if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
  1207. ret = os_snprintf(pos, end - pos, "%sEAP", first ? "" : "+");
  1208. if (ret < 0 || ret >= end - pos)
  1209. return pos;
  1210. pos += ret;
  1211. first = 0;
  1212. }
  1213. if (data.key_mgmt & WPA_KEY_MGMT_PSK) {
  1214. ret = os_snprintf(pos, end - pos, "%sPSK", first ? "" : "+");
  1215. if (ret < 0 || ret >= end - pos)
  1216. return pos;
  1217. pos += ret;
  1218. first = 0;
  1219. }
  1220. if (data.key_mgmt & WPA_KEY_MGMT_WPA_NONE) {
  1221. ret = os_snprintf(pos, end - pos, "%sNone", first ? "" : "+");
  1222. if (ret < 0 || ret >= end - pos)
  1223. return pos;
  1224. pos += ret;
  1225. first = 0;
  1226. }
  1227. #ifdef CONFIG_IEEE80211R
  1228. if (data.key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
  1229. ret = os_snprintf(pos, end - pos, "%sFT/EAP",
  1230. first ? "" : "+");
  1231. if (ret < 0 || ret >= end - pos)
  1232. return pos;
  1233. pos += ret;
  1234. first = 0;
  1235. }
  1236. if (data.key_mgmt & WPA_KEY_MGMT_FT_PSK) {
  1237. ret = os_snprintf(pos, end - pos, "%sFT/PSK",
  1238. first ? "" : "+");
  1239. if (ret < 0 || ret >= end - pos)
  1240. return pos;
  1241. pos += ret;
  1242. first = 0;
  1243. }
  1244. #endif /* CONFIG_IEEE80211R */
  1245. #ifdef CONFIG_IEEE80211W
  1246. if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
  1247. ret = os_snprintf(pos, end - pos, "%sEAP-SHA256",
  1248. first ? "" : "+");
  1249. if (ret < 0 || ret >= end - pos)
  1250. return pos;
  1251. pos += ret;
  1252. first = 0;
  1253. }
  1254. if (data.key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
  1255. ret = os_snprintf(pos, end - pos, "%sPSK-SHA256",
  1256. first ? "" : "+");
  1257. if (ret < 0 || ret >= end - pos)
  1258. return pos;
  1259. pos += ret;
  1260. first = 0;
  1261. }
  1262. #endif /* CONFIG_IEEE80211W */
  1263. pos = wpa_supplicant_cipher_txt(pos, end, data.pairwise_cipher);
  1264. if (data.capabilities & WPA_CAPABILITY_PREAUTH) {
  1265. ret = os_snprintf(pos, end - pos, "-preauth");
  1266. if (ret < 0 || ret >= end - pos)
  1267. return pos;
  1268. pos += ret;
  1269. }
  1270. ret = os_snprintf(pos, end - pos, "]");
  1271. if (ret < 0 || ret >= end - pos)
  1272. return pos;
  1273. pos += ret;
  1274. return pos;
  1275. }
  1276. #ifdef CONFIG_WPS
  1277. static char * wpa_supplicant_wps_ie_txt_buf(struct wpa_supplicant *wpa_s,
  1278. char *pos, char *end,
  1279. struct wpabuf *wps_ie)
  1280. {
  1281. int ret;
  1282. const char *txt;
  1283. if (wps_ie == NULL)
  1284. return pos;
  1285. if (wps_is_selected_pbc_registrar(wps_ie))
  1286. txt = "[WPS-PBC]";
  1287. #ifdef CONFIG_WPS2
  1288. else if (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 0))
  1289. txt = "[WPS-AUTH]";
  1290. #endif /* CONFIG_WPS2 */
  1291. else if (wps_is_selected_pin_registrar(wps_ie))
  1292. txt = "[WPS-PIN]";
  1293. else
  1294. txt = "[WPS]";
  1295. ret = os_snprintf(pos, end - pos, "%s", txt);
  1296. if (ret >= 0 && ret < end - pos)
  1297. pos += ret;
  1298. wpabuf_free(wps_ie);
  1299. return pos;
  1300. }
  1301. #endif /* CONFIG_WPS */
  1302. static char * wpa_supplicant_wps_ie_txt(struct wpa_supplicant *wpa_s,
  1303. char *pos, char *end,
  1304. const struct wpa_bss *bss)
  1305. {
  1306. #ifdef CONFIG_WPS
  1307. struct wpabuf *wps_ie;
  1308. wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  1309. return wpa_supplicant_wps_ie_txt_buf(wpa_s, pos, end, wps_ie);
  1310. #else /* CONFIG_WPS */
  1311. return pos;
  1312. #endif /* CONFIG_WPS */
  1313. }
  1314. /* Format one result on one text line into a buffer. */
  1315. static int wpa_supplicant_ctrl_iface_scan_result(
  1316. struct wpa_supplicant *wpa_s,
  1317. const struct wpa_bss *bss, char *buf, size_t buflen)
  1318. {
  1319. char *pos, *end;
  1320. int ret;
  1321. const u8 *ie, *ie2, *p2p;
  1322. p2p = wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE);
  1323. if (p2p && bss->ssid_len == P2P_WILDCARD_SSID_LEN &&
  1324. os_memcmp(bss->ssid, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN) ==
  1325. 0)
  1326. return 0; /* Do not show P2P listen discovery results here */
  1327. pos = buf;
  1328. end = buf + buflen;
  1329. ret = os_snprintf(pos, end - pos, MACSTR "\t%d\t%d\t",
  1330. MAC2STR(bss->bssid), bss->freq, bss->level);
  1331. if (ret < 0 || ret >= end - pos)
  1332. return -1;
  1333. pos += ret;
  1334. ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  1335. if (ie)
  1336. pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie, 2 + ie[1]);
  1337. ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  1338. if (ie2)
  1339. pos = wpa_supplicant_ie_txt(pos, end, "WPA2", ie2, 2 + ie2[1]);
  1340. pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
  1341. if (!ie && !ie2 && bss->caps & IEEE80211_CAP_PRIVACY) {
  1342. ret = os_snprintf(pos, end - pos, "[WEP]");
  1343. if (ret < 0 || ret >= end - pos)
  1344. return -1;
  1345. pos += ret;
  1346. }
  1347. if (bss->caps & IEEE80211_CAP_IBSS) {
  1348. ret = os_snprintf(pos, end - pos, "[IBSS]");
  1349. if (ret < 0 || ret >= end - pos)
  1350. return -1;
  1351. pos += ret;
  1352. }
  1353. if (bss->caps & IEEE80211_CAP_ESS) {
  1354. ret = os_snprintf(pos, end - pos, "[ESS]");
  1355. if (ret < 0 || ret >= end - pos)
  1356. return -1;
  1357. pos += ret;
  1358. }
  1359. if (p2p) {
  1360. ret = os_snprintf(pos, end - pos, "[P2P]");
  1361. if (ret < 0 || ret >= end - pos)
  1362. return -1;
  1363. pos += ret;
  1364. }
  1365. ret = os_snprintf(pos, end - pos, "\t%s",
  1366. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  1367. if (ret < 0 || ret >= end - pos)
  1368. return -1;
  1369. pos += ret;
  1370. ret = os_snprintf(pos, end - pos, "\n");
  1371. if (ret < 0 || ret >= end - pos)
  1372. return -1;
  1373. pos += ret;
  1374. return pos - buf;
  1375. }
  1376. static int wpa_supplicant_ctrl_iface_scan_results(
  1377. struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
  1378. {
  1379. char *pos, *end;
  1380. struct wpa_bss *bss;
  1381. int ret;
  1382. pos = buf;
  1383. end = buf + buflen;
  1384. ret = os_snprintf(pos, end - pos, "bssid / frequency / signal level / "
  1385. "flags / ssid\n");
  1386. if (ret < 0 || ret >= end - pos)
  1387. return pos - buf;
  1388. pos += ret;
  1389. dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
  1390. ret = wpa_supplicant_ctrl_iface_scan_result(wpa_s, bss, pos,
  1391. end - pos);
  1392. if (ret < 0 || ret >= end - pos)
  1393. return pos - buf;
  1394. pos += ret;
  1395. }
  1396. return pos - buf;
  1397. }
  1398. static int wpa_supplicant_ctrl_iface_select_network(
  1399. struct wpa_supplicant *wpa_s, char *cmd)
  1400. {
  1401. int id;
  1402. struct wpa_ssid *ssid;
  1403. /* cmd: "<network id>" or "any" */
  1404. if (os_strcmp(cmd, "any") == 0) {
  1405. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK any");
  1406. ssid = NULL;
  1407. } else {
  1408. id = atoi(cmd);
  1409. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK id=%d", id);
  1410. ssid = wpa_config_get_network(wpa_s->conf, id);
  1411. if (ssid == NULL) {
  1412. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
  1413. "network id=%d", id);
  1414. return -1;
  1415. }
  1416. if (ssid->disabled == 2) {
  1417. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
  1418. "SELECT_NETWORK with persistent P2P group");
  1419. return -1;
  1420. }
  1421. }
  1422. wpa_supplicant_select_network(wpa_s, ssid);
  1423. return 0;
  1424. }
  1425. static int wpa_supplicant_ctrl_iface_enable_network(
  1426. struct wpa_supplicant *wpa_s, char *cmd)
  1427. {
  1428. int id;
  1429. struct wpa_ssid *ssid;
  1430. /* cmd: "<network id>" or "all" */
  1431. if (os_strcmp(cmd, "all") == 0) {
  1432. wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK all");
  1433. ssid = NULL;
  1434. } else {
  1435. id = atoi(cmd);
  1436. wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK id=%d", id);
  1437. ssid = wpa_config_get_network(wpa_s->conf, id);
  1438. if (ssid == NULL) {
  1439. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
  1440. "network id=%d", id);
  1441. return -1;
  1442. }
  1443. if (ssid->disabled == 2) {
  1444. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
  1445. "ENABLE_NETWORK with persistent P2P group");
  1446. return -1;
  1447. }
  1448. if (os_strstr(cmd, " no-connect")) {
  1449. ssid->disabled = 0;
  1450. return 0;
  1451. }
  1452. }
  1453. wpa_supplicant_enable_network(wpa_s, ssid);
  1454. return 0;
  1455. }
  1456. static int wpa_supplicant_ctrl_iface_disable_network(
  1457. struct wpa_supplicant *wpa_s, char *cmd)
  1458. {
  1459. int id;
  1460. struct wpa_ssid *ssid;
  1461. /* cmd: "<network id>" or "all" */
  1462. if (os_strcmp(cmd, "all") == 0) {
  1463. wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK all");
  1464. ssid = NULL;
  1465. } else {
  1466. id = atoi(cmd);
  1467. wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK id=%d", id);
  1468. ssid = wpa_config_get_network(wpa_s->conf, id);
  1469. if (ssid == NULL) {
  1470. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
  1471. "network id=%d", id);
  1472. return -1;
  1473. }
  1474. if (ssid->disabled == 2) {
  1475. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
  1476. "DISABLE_NETWORK with persistent P2P "
  1477. "group");
  1478. return -1;
  1479. }
  1480. }
  1481. wpa_supplicant_disable_network(wpa_s, ssid);
  1482. return 0;
  1483. }
  1484. static int wpa_supplicant_ctrl_iface_add_network(
  1485. struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
  1486. {
  1487. struct wpa_ssid *ssid;
  1488. int ret;
  1489. wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_NETWORK");
  1490. ssid = wpa_config_add_network(wpa_s->conf);
  1491. if (ssid == NULL)
  1492. return -1;
  1493. wpas_notify_network_added(wpa_s, ssid);
  1494. ssid->disabled = 1;
  1495. wpa_config_set_network_defaults(ssid);
  1496. ret = os_snprintf(buf, buflen, "%d\n", ssid->id);
  1497. if (ret < 0 || (size_t) ret >= buflen)
  1498. return -1;
  1499. return ret;
  1500. }
  1501. static int wpa_supplicant_ctrl_iface_remove_network(
  1502. struct wpa_supplicant *wpa_s, char *cmd)
  1503. {
  1504. int id;
  1505. struct wpa_ssid *ssid;
  1506. /* cmd: "<network id>" or "all" */
  1507. if (os_strcmp(cmd, "all") == 0) {
  1508. wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK all");
  1509. ssid = wpa_s->conf->ssid;
  1510. while (ssid) {
  1511. struct wpa_ssid *remove_ssid = ssid;
  1512. id = ssid->id;
  1513. ssid = ssid->next;
  1514. wpas_notify_network_removed(wpa_s, remove_ssid);
  1515. wpa_config_remove_network(wpa_s->conf, id);
  1516. }
  1517. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  1518. if (wpa_s->current_ssid) {
  1519. #ifdef CONFIG_SME
  1520. wpa_s->sme.prev_bssid_set = 0;
  1521. #endif /* CONFIG_SME */
  1522. wpa_sm_set_config(wpa_s->wpa, NULL);
  1523. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  1524. wpa_supplicant_disassociate(wpa_s,
  1525. WLAN_REASON_DEAUTH_LEAVING);
  1526. }
  1527. return 0;
  1528. }
  1529. id = atoi(cmd);
  1530. wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK id=%d", id);
  1531. ssid = wpa_config_get_network(wpa_s->conf, id);
  1532. if (ssid)
  1533. wpas_notify_network_removed(wpa_s, ssid);
  1534. if (ssid == NULL ||
  1535. wpa_config_remove_network(wpa_s->conf, id) < 0) {
  1536. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
  1537. "id=%d", id);
  1538. return -1;
  1539. }
  1540. if (ssid == wpa_s->current_ssid || wpa_s->current_ssid == NULL) {
  1541. #ifdef CONFIG_SME
  1542. wpa_s->sme.prev_bssid_set = 0;
  1543. #endif /* CONFIG_SME */
  1544. /*
  1545. * Invalidate the EAP session cache if the current or
  1546. * previously used network is removed.
  1547. */
  1548. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  1549. }
  1550. if (ssid == wpa_s->current_ssid) {
  1551. wpa_sm_set_config(wpa_s->wpa, NULL);
  1552. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  1553. wpa_supplicant_disassociate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1554. }
  1555. return 0;
  1556. }
  1557. static int wpa_supplicant_ctrl_iface_set_network(
  1558. struct wpa_supplicant *wpa_s, char *cmd)
  1559. {
  1560. int id;
  1561. struct wpa_ssid *ssid;
  1562. char *name, *value;
  1563. /* cmd: "<network id> <variable name> <value>" */
  1564. name = os_strchr(cmd, ' ');
  1565. if (name == NULL)
  1566. return -1;
  1567. *name++ = '\0';
  1568. value = os_strchr(name, ' ');
  1569. if (value == NULL)
  1570. return -1;
  1571. *value++ = '\0';
  1572. id = atoi(cmd);
  1573. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_NETWORK id=%d name='%s'",
  1574. id, name);
  1575. wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
  1576. (u8 *) value, os_strlen(value));
  1577. ssid = wpa_config_get_network(wpa_s->conf, id);
  1578. if (ssid == NULL) {
  1579. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
  1580. "id=%d", id);
  1581. return -1;
  1582. }
  1583. if (wpa_config_set(ssid, name, value, 0) < 0) {
  1584. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set network "
  1585. "variable '%s'", name);
  1586. return -1;
  1587. }
  1588. wpa_sm_pmksa_cache_flush(wpa_s->wpa, ssid);
  1589. if (wpa_s->current_ssid == ssid || wpa_s->current_ssid == NULL) {
  1590. /*
  1591. * Invalidate the EAP session cache if anything in the current
  1592. * or previously used configuration changes.
  1593. */
  1594. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  1595. }
  1596. if ((os_strcmp(name, "psk") == 0 &&
  1597. value[0] == '"' && ssid->ssid_len) ||
  1598. (os_strcmp(name, "ssid") == 0 && ssid->passphrase))
  1599. wpa_config_update_psk(ssid);
  1600. else if (os_strcmp(name, "priority") == 0)
  1601. wpa_config_update_prio_list(wpa_s->conf);
  1602. return 0;
  1603. }
  1604. static int wpa_supplicant_ctrl_iface_get_network(
  1605. struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
  1606. {
  1607. int id;
  1608. size_t res;
  1609. struct wpa_ssid *ssid;
  1610. char *name, *value;
  1611. /* cmd: "<network id> <variable name>" */
  1612. name = os_strchr(cmd, ' ');
  1613. if (name == NULL || buflen == 0)
  1614. return -1;
  1615. *name++ = '\0';
  1616. id = atoi(cmd);
  1617. wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_NETWORK id=%d name='%s'",
  1618. id, name);
  1619. ssid = wpa_config_get_network(wpa_s->conf, id);
  1620. if (ssid == NULL) {
  1621. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
  1622. "id=%d", id);
  1623. return -1;
  1624. }
  1625. value = wpa_config_get_no_key(ssid, name);
  1626. if (value == NULL) {
  1627. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to get network "
  1628. "variable '%s'", name);
  1629. return -1;
  1630. }
  1631. res = os_strlcpy(buf, value, buflen);
  1632. if (res >= buflen) {
  1633. os_free(value);
  1634. return -1;
  1635. }
  1636. os_free(value);
  1637. return res;
  1638. }
  1639. static int wpa_supplicant_ctrl_iface_list_creds(struct wpa_supplicant *wpa_s,
  1640. char *buf, size_t buflen)
  1641. {
  1642. char *pos, *end;
  1643. struct wpa_cred *cred;
  1644. int ret;
  1645. pos = buf;
  1646. end = buf + buflen;
  1647. ret = os_snprintf(pos, end - pos,
  1648. "cred id / realm / username / domain / imsi\n");
  1649. if (ret < 0 || ret >= end - pos)
  1650. return pos - buf;
  1651. pos += ret;
  1652. cred = wpa_s->conf->cred;
  1653. while (cred) {
  1654. ret = os_snprintf(pos, end - pos, "%d\t%s\t%s\t%s\t%s\n",
  1655. cred->id, cred->realm ? cred->realm : "",
  1656. cred->username ? cred->username : "",
  1657. cred->domain ? cred->domain : "",
  1658. cred->imsi ? cred->imsi : "");
  1659. if (ret < 0 || ret >= end - pos)
  1660. return pos - buf;
  1661. pos += ret;
  1662. cred = cred->next;
  1663. }
  1664. return pos - buf;
  1665. }
  1666. static int wpa_supplicant_ctrl_iface_add_cred(struct wpa_supplicant *wpa_s,
  1667. char *buf, size_t buflen)
  1668. {
  1669. struct wpa_cred *cred;
  1670. int ret;
  1671. wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_CRED");
  1672. cred = wpa_config_add_cred(wpa_s->conf);
  1673. if (cred == NULL)
  1674. return -1;
  1675. ret = os_snprintf(buf, buflen, "%d\n", cred->id);
  1676. if (ret < 0 || (size_t) ret >= buflen)
  1677. return -1;
  1678. return ret;
  1679. }
  1680. static int wpa_supplicant_ctrl_iface_remove_cred(struct wpa_supplicant *wpa_s,
  1681. char *cmd)
  1682. {
  1683. int id;
  1684. struct wpa_cred *cred;
  1685. /* cmd: "<cred id>" or "all" */
  1686. if (os_strcmp(cmd, "all") == 0) {
  1687. wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED all");
  1688. cred = wpa_s->conf->cred;
  1689. while (cred) {
  1690. id = cred->id;
  1691. cred = cred->next;
  1692. wpa_config_remove_cred(wpa_s->conf, id);
  1693. }
  1694. return 0;
  1695. }
  1696. id = atoi(cmd);
  1697. wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED id=%d", id);
  1698. cred = wpa_config_get_cred(wpa_s->conf, id);
  1699. if (cred == NULL ||
  1700. wpa_config_remove_cred(wpa_s->conf, id) < 0) {
  1701. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred id=%d",
  1702. id);
  1703. return -1;
  1704. }
  1705. return 0;
  1706. }
  1707. static int wpa_supplicant_ctrl_iface_set_cred(struct wpa_supplicant *wpa_s,
  1708. char *cmd)
  1709. {
  1710. int id;
  1711. struct wpa_cred *cred;
  1712. char *name, *value;
  1713. /* cmd: "<cred id> <variable name> <value>" */
  1714. name = os_strchr(cmd, ' ');
  1715. if (name == NULL)
  1716. return -1;
  1717. *name++ = '\0';
  1718. value = os_strchr(name, ' ');
  1719. if (value == NULL)
  1720. return -1;
  1721. *value++ = '\0';
  1722. id = atoi(cmd);
  1723. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_CRED id=%d name='%s'",
  1724. id, name);
  1725. wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
  1726. (u8 *) value, os_strlen(value));
  1727. cred = wpa_config_get_cred(wpa_s->conf, id);
  1728. if (cred == NULL) {
  1729. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred id=%d",
  1730. id);
  1731. return -1;
  1732. }
  1733. if (wpa_config_set_cred(cred, name, value, 0) < 0) {
  1734. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set cred "
  1735. "variable '%s'", name);
  1736. return -1;
  1737. }
  1738. return 0;
  1739. }
  1740. #ifndef CONFIG_NO_CONFIG_WRITE
  1741. static int wpa_supplicant_ctrl_iface_save_config(struct wpa_supplicant *wpa_s)
  1742. {
  1743. int ret;
  1744. if (!wpa_s->conf->update_config) {
  1745. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Not allowed "
  1746. "to update configuration (update_config=0)");
  1747. return -1;
  1748. }
  1749. ret = wpa_config_write(wpa_s->confname, wpa_s->conf);
  1750. if (ret) {
  1751. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Failed to "
  1752. "update configuration");
  1753. } else {
  1754. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Configuration"
  1755. " updated");
  1756. }
  1757. return ret;
  1758. }
  1759. #endif /* CONFIG_NO_CONFIG_WRITE */
  1760. static int ctrl_iface_get_capability_pairwise(int res, char *strict,
  1761. struct wpa_driver_capa *capa,
  1762. char *buf, size_t buflen)
  1763. {
  1764. int ret, first = 1;
  1765. char *pos, *end;
  1766. size_t len;
  1767. pos = buf;
  1768. end = pos + buflen;
  1769. if (res < 0) {
  1770. if (strict)
  1771. return 0;
  1772. len = os_strlcpy(buf, "CCMP TKIP NONE", buflen);
  1773. if (len >= buflen)
  1774. return -1;
  1775. return len;
  1776. }
  1777. if (capa->enc & WPA_DRIVER_CAPA_ENC_CCMP) {
  1778. ret = os_snprintf(pos, end - pos, "%sCCMP", first ? "" : " ");
  1779. if (ret < 0 || ret >= end - pos)
  1780. return pos - buf;
  1781. pos += ret;
  1782. first = 0;
  1783. }
  1784. if (capa->enc & WPA_DRIVER_CAPA_ENC_TKIP) {
  1785. ret = os_snprintf(pos, end - pos, "%sTKIP", first ? "" : " ");
  1786. if (ret < 0 || ret >= end - pos)
  1787. return pos - buf;
  1788. pos += ret;
  1789. first = 0;
  1790. }
  1791. if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
  1792. ret = os_snprintf(pos, end - pos, "%sNONE", first ? "" : " ");
  1793. if (ret < 0 || ret >= end - pos)
  1794. return pos - buf;
  1795. pos += ret;
  1796. first = 0;
  1797. }
  1798. return pos - buf;
  1799. }
  1800. static int ctrl_iface_get_capability_group(int res, char *strict,
  1801. struct wpa_driver_capa *capa,
  1802. char *buf, size_t buflen)
  1803. {
  1804. int ret, first = 1;
  1805. char *pos, *end;
  1806. size_t len;
  1807. pos = buf;
  1808. end = pos + buflen;
  1809. if (res < 0) {
  1810. if (strict)
  1811. return 0;
  1812. len = os_strlcpy(buf, "CCMP TKIP WEP104 WEP40", buflen);
  1813. if (len >= buflen)
  1814. return -1;
  1815. return len;
  1816. }
  1817. if (capa->enc & WPA_DRIVER_CAPA_ENC_CCMP) {
  1818. ret = os_snprintf(pos, end - pos, "%sCCMP", first ? "" : " ");
  1819. if (ret < 0 || ret >= end - pos)
  1820. return pos - buf;
  1821. pos += ret;
  1822. first = 0;
  1823. }
  1824. if (capa->enc & WPA_DRIVER_CAPA_ENC_TKIP) {
  1825. ret = os_snprintf(pos, end - pos, "%sTKIP", first ? "" : " ");
  1826. if (ret < 0 || ret >= end - pos)
  1827. return pos - buf;
  1828. pos += ret;
  1829. first = 0;
  1830. }
  1831. if (capa->enc & WPA_DRIVER_CAPA_ENC_WEP104) {
  1832. ret = os_snprintf(pos, end - pos, "%sWEP104",
  1833. first ? "" : " ");
  1834. if (ret < 0 || ret >= end - pos)
  1835. return pos - buf;
  1836. pos += ret;
  1837. first = 0;
  1838. }
  1839. if (capa->enc & WPA_DRIVER_CAPA_ENC_WEP40) {
  1840. ret = os_snprintf(pos, end - pos, "%sWEP40", first ? "" : " ");
  1841. if (ret < 0 || ret >= end - pos)
  1842. return pos - buf;
  1843. pos += ret;
  1844. first = 0;
  1845. }
  1846. return pos - buf;
  1847. }
  1848. static int ctrl_iface_get_capability_key_mgmt(int res, char *strict,
  1849. struct wpa_driver_capa *capa,
  1850. char *buf, size_t buflen)
  1851. {
  1852. int ret;
  1853. char *pos, *end;
  1854. size_t len;
  1855. pos = buf;
  1856. end = pos + buflen;
  1857. if (res < 0) {
  1858. if (strict)
  1859. return 0;
  1860. len = os_strlcpy(buf, "WPA-PSK WPA-EAP IEEE8021X WPA-NONE "
  1861. "NONE", buflen);
  1862. if (len >= buflen)
  1863. return -1;
  1864. return len;
  1865. }
  1866. ret = os_snprintf(pos, end - pos, "NONE IEEE8021X");
  1867. if (ret < 0 || ret >= end - pos)
  1868. return pos - buf;
  1869. pos += ret;
  1870. if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
  1871. WPA_DRIVER_CAPA_KEY_MGMT_WPA2)) {
  1872. ret = os_snprintf(pos, end - pos, " WPA-EAP");
  1873. if (ret < 0 || ret >= end - pos)
  1874. return pos - buf;
  1875. pos += ret;
  1876. }
  1877. if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
  1878. WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
  1879. ret = os_snprintf(pos, end - pos, " WPA-PSK");
  1880. if (ret < 0 || ret >= end - pos)
  1881. return pos - buf;
  1882. pos += ret;
  1883. }
  1884. if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
  1885. ret = os_snprintf(pos, end - pos, " WPA-NONE");
  1886. if (ret < 0 || ret >= end - pos)
  1887. return pos - buf;
  1888. pos += ret;
  1889. }
  1890. return pos - buf;
  1891. }
  1892. static int ctrl_iface_get_capability_proto(int res, char *strict,
  1893. struct wpa_driver_capa *capa,
  1894. char *buf, size_t buflen)
  1895. {
  1896. int ret, first = 1;
  1897. char *pos, *end;
  1898. size_t len;
  1899. pos = buf;
  1900. end = pos + buflen;
  1901. if (res < 0) {
  1902. if (strict)
  1903. return 0;
  1904. len = os_strlcpy(buf, "RSN WPA", buflen);
  1905. if (len >= buflen)
  1906. return -1;
  1907. return len;
  1908. }
  1909. if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
  1910. WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
  1911. ret = os_snprintf(pos, end - pos, "%sRSN", first ? "" : " ");
  1912. if (ret < 0 || ret >= end - pos)
  1913. return pos - buf;
  1914. pos += ret;
  1915. first = 0;
  1916. }
  1917. if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
  1918. WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK)) {
  1919. ret = os_snprintf(pos, end - pos, "%sWPA", first ? "" : " ");
  1920. if (ret < 0 || ret >= end - pos)
  1921. return pos - buf;
  1922. pos += ret;
  1923. first = 0;
  1924. }
  1925. return pos - buf;
  1926. }
  1927. static int ctrl_iface_get_capability_auth_alg(int res, char *strict,
  1928. struct wpa_driver_capa *capa,
  1929. char *buf, size_t buflen)
  1930. {
  1931. int ret, first = 1;
  1932. char *pos, *end;
  1933. size_t len;
  1934. pos = buf;
  1935. end = pos + buflen;
  1936. if (res < 0) {
  1937. if (strict)
  1938. return 0;
  1939. len = os_strlcpy(buf, "OPEN SHARED LEAP", buflen);
  1940. if (len >= buflen)
  1941. return -1;
  1942. return len;
  1943. }
  1944. if (capa->auth & (WPA_DRIVER_AUTH_OPEN)) {
  1945. ret = os_snprintf(pos, end - pos, "%sOPEN", first ? "" : " ");
  1946. if (ret < 0 || ret >= end - pos)
  1947. return pos - buf;
  1948. pos += ret;
  1949. first = 0;
  1950. }
  1951. if (capa->auth & (WPA_DRIVER_AUTH_SHARED)) {
  1952. ret = os_snprintf(pos, end - pos, "%sSHARED",
  1953. first ? "" : " ");
  1954. if (ret < 0 || ret >= end - pos)
  1955. return pos - buf;
  1956. pos += ret;
  1957. first = 0;
  1958. }
  1959. if (capa->auth & (WPA_DRIVER_AUTH_LEAP)) {
  1960. ret = os_snprintf(pos, end - pos, "%sLEAP", first ? "" : " ");
  1961. if (ret < 0 || ret >= end - pos)
  1962. return pos - buf;
  1963. pos += ret;
  1964. first = 0;
  1965. }
  1966. return pos - buf;
  1967. }
  1968. static int wpa_supplicant_ctrl_iface_get_capability(
  1969. struct wpa_supplicant *wpa_s, const char *_field, char *buf,
  1970. size_t buflen)
  1971. {
  1972. struct wpa_driver_capa capa;
  1973. int res;
  1974. char *strict;
  1975. char field[30];
  1976. size_t len;
  1977. /* Determine whether or not strict checking was requested */
  1978. len = os_strlcpy(field, _field, sizeof(field));
  1979. if (len >= sizeof(field))
  1980. return -1;
  1981. strict = os_strchr(field, ' ');
  1982. if (strict != NULL) {
  1983. *strict++ = '\0';
  1984. if (os_strcmp(strict, "strict") != 0)
  1985. return -1;
  1986. }
  1987. wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_CAPABILITY '%s' %s",
  1988. field, strict ? strict : "");
  1989. if (os_strcmp(field, "eap") == 0) {
  1990. return eap_get_names(buf, buflen);
  1991. }
  1992. res = wpa_drv_get_capa(wpa_s, &capa);
  1993. if (os_strcmp(field, "pairwise") == 0)
  1994. return ctrl_iface_get_capability_pairwise(res, strict, &capa,
  1995. buf, buflen);
  1996. if (os_strcmp(field, "group") == 0)
  1997. return ctrl_iface_get_capability_group(res, strict, &capa,
  1998. buf, buflen);
  1999. if (os_strcmp(field, "key_mgmt") == 0)
  2000. return ctrl_iface_get_capability_key_mgmt(res, strict, &capa,
  2001. buf, buflen);
  2002. if (os_strcmp(field, "proto") == 0)
  2003. return ctrl_iface_get_capability_proto(res, strict, &capa,
  2004. buf, buflen);
  2005. if (os_strcmp(field, "auth_alg") == 0)
  2006. return ctrl_iface_get_capability_auth_alg(res, strict, &capa,
  2007. buf, buflen);
  2008. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown GET_CAPABILITY field '%s'",
  2009. field);
  2010. return -1;
  2011. }
  2012. #ifdef CONFIG_INTERWORKING
  2013. static char * anqp_add_hex(char *pos, char *end, const char *title,
  2014. struct wpabuf *data)
  2015. {
  2016. char *start = pos;
  2017. size_t i;
  2018. int ret;
  2019. const u8 *d;
  2020. if (data == NULL)
  2021. return start;
  2022. ret = os_snprintf(pos, end - pos, "%s=", title);
  2023. if (ret < 0 || ret >= end - pos)
  2024. return start;
  2025. pos += ret;
  2026. d = wpabuf_head_u8(data);
  2027. for (i = 0; i < wpabuf_len(data); i++) {
  2028. ret = os_snprintf(pos, end - pos, "%02x", *d++);
  2029. if (ret < 0 || ret >= end - pos)
  2030. return start;
  2031. pos += ret;
  2032. }
  2033. ret = os_snprintf(pos, end - pos, "\n");
  2034. if (ret < 0 || ret >= end - pos)
  2035. return start;
  2036. pos += ret;
  2037. return pos;
  2038. }
  2039. #endif /* CONFIG_INTERWORKING */
  2040. static int print_bss_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
  2041. unsigned long mask, char *buf, size_t buflen)
  2042. {
  2043. size_t i;
  2044. int ret;
  2045. char *pos, *end;
  2046. const u8 *ie, *ie2;
  2047. pos = buf;
  2048. end = buf + buflen;
  2049. if (mask & WPA_BSS_MASK_ID) {
  2050. ret = os_snprintf(pos, end - pos, "id=%u\n", bss->id);
  2051. if (ret < 0 || ret >= end - pos)
  2052. return 0;
  2053. pos += ret;
  2054. }
  2055. if (mask & WPA_BSS_MASK_BSSID) {
  2056. ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
  2057. MAC2STR(bss->bssid));
  2058. if (ret < 0 || ret >= end - pos)
  2059. return 0;
  2060. pos += ret;
  2061. }
  2062. if (mask & WPA_BSS_MASK_FREQ) {
  2063. ret = os_snprintf(pos, end - pos, "freq=%d\n", bss->freq);
  2064. if (ret < 0 || ret >= end - pos)
  2065. return 0;
  2066. pos += ret;
  2067. }
  2068. if (mask & WPA_BSS_MASK_BEACON_INT) {
  2069. ret = os_snprintf(pos, end - pos, "beacon_int=%d\n",
  2070. bss->beacon_int);
  2071. if (ret < 0 || ret >= end - pos)
  2072. return 0;
  2073. pos += ret;
  2074. }
  2075. if (mask & WPA_BSS_MASK_CAPABILITIES) {
  2076. ret = os_snprintf(pos, end - pos, "capabilities=0x%04x\n",
  2077. bss->caps);
  2078. if (ret < 0 || ret >= end - pos)
  2079. return 0;
  2080. pos += ret;
  2081. }
  2082. if (mask & WPA_BSS_MASK_QUAL) {
  2083. ret = os_snprintf(pos, end - pos, "qual=%d\n", bss->qual);
  2084. if (ret < 0 || ret >= end - pos)
  2085. return 0;
  2086. pos += ret;
  2087. }
  2088. if (mask & WPA_BSS_MASK_NOISE) {
  2089. ret = os_snprintf(pos, end - pos, "noise=%d\n", bss->noise);
  2090. if (ret < 0 || ret >= end - pos)
  2091. return 0;
  2092. pos += ret;
  2093. }
  2094. if (mask & WPA_BSS_MASK_LEVEL) {
  2095. ret = os_snprintf(pos, end - pos, "level=%d\n", bss->level);
  2096. if (ret < 0 || ret >= end - pos)
  2097. return 0;
  2098. pos += ret;
  2099. }
  2100. if (mask & WPA_BSS_MASK_TSF) {
  2101. ret = os_snprintf(pos, end - pos, "tsf=%016llu\n",
  2102. (unsigned long long) bss->tsf);
  2103. if (ret < 0 || ret >= end - pos)
  2104. return 0;
  2105. pos += ret;
  2106. }
  2107. if (mask & WPA_BSS_MASK_AGE) {
  2108. struct os_time now;
  2109. os_get_time(&now);
  2110. ret = os_snprintf(pos, end - pos, "age=%d\n",
  2111. (int) (now.sec - bss->last_update.sec));
  2112. if (ret < 0 || ret >= end - pos)
  2113. return 0;
  2114. pos += ret;
  2115. }
  2116. if (mask & WPA_BSS_MASK_IE) {
  2117. ret = os_snprintf(pos, end - pos, "ie=");
  2118. if (ret < 0 || ret >= end - pos)
  2119. return 0;
  2120. pos += ret;
  2121. ie = (const u8 *) (bss + 1);
  2122. for (i = 0; i < bss->ie_len; i++) {
  2123. ret = os_snprintf(pos, end - pos, "%02x", *ie++);
  2124. if (ret < 0 || ret >= end - pos)
  2125. return 0;
  2126. pos += ret;
  2127. }
  2128. ret = os_snprintf(pos, end - pos, "\n");
  2129. if (ret < 0 || ret >= end - pos)
  2130. return 0;
  2131. pos += ret;
  2132. }
  2133. if (mask & WPA_BSS_MASK_FLAGS) {
  2134. ret = os_snprintf(pos, end - pos, "flags=");
  2135. if (ret < 0 || ret >= end - pos)
  2136. return 0;
  2137. pos += ret;
  2138. ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  2139. if (ie)
  2140. pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie,
  2141. 2 + ie[1]);
  2142. ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  2143. if (ie2)
  2144. pos = wpa_supplicant_ie_txt(pos, end, "WPA2", ie2,
  2145. 2 + ie2[1]);
  2146. pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
  2147. if (!ie && !ie2 && bss->caps & IEEE80211_CAP_PRIVACY) {
  2148. ret = os_snprintf(pos, end - pos, "[WEP]");
  2149. if (ret < 0 || ret >= end - pos)
  2150. return 0;
  2151. pos += ret;
  2152. }
  2153. if (bss->caps & IEEE80211_CAP_IBSS) {
  2154. ret = os_snprintf(pos, end - pos, "[IBSS]");
  2155. if (ret < 0 || ret >= end - pos)
  2156. return 0;
  2157. pos += ret;
  2158. }
  2159. if (bss->caps & IEEE80211_CAP_ESS) {
  2160. ret = os_snprintf(pos, end - pos, "[ESS]");
  2161. if (ret < 0 || ret >= end - pos)
  2162. return 0;
  2163. pos += ret;
  2164. }
  2165. if (wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE)) {
  2166. ret = os_snprintf(pos, end - pos, "[P2P]");
  2167. if (ret < 0 || ret >= end - pos)
  2168. return 0;
  2169. pos += ret;
  2170. }
  2171. ret = os_snprintf(pos, end - pos, "\n");
  2172. if (ret < 0 || ret >= end - pos)
  2173. return 0;
  2174. pos += ret;
  2175. }
  2176. if (mask & WPA_BSS_MASK_SSID) {
  2177. ret = os_snprintf(pos, end - pos, "ssid=%s\n",
  2178. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  2179. if (ret < 0 || ret >= end - pos)
  2180. return 0;
  2181. pos += ret;
  2182. }
  2183. #ifdef CONFIG_WPS
  2184. if (mask & WPA_BSS_MASK_WPS_SCAN) {
  2185. ie = (const u8 *) (bss + 1);
  2186. ret = wpas_wps_scan_result_text(ie, bss->ie_len, pos, end);
  2187. if (ret < 0 || ret >= end - pos)
  2188. return 0;
  2189. pos += ret;
  2190. }
  2191. #endif /* CONFIG_WPS */
  2192. #ifdef CONFIG_P2P
  2193. if (mask & WPA_BSS_MASK_P2P_SCAN) {
  2194. ie = (const u8 *) (bss + 1);
  2195. ret = wpas_p2p_scan_result_text(ie, bss->ie_len, pos, end);
  2196. if (ret < 0 || ret >= end - pos)
  2197. return 0;
  2198. pos += ret;
  2199. }
  2200. #endif /* CONFIG_P2P */
  2201. #ifdef CONFIG_INTERWORKING
  2202. if (mask & WPA_BSS_MASK_INTERNETW) {
  2203. pos = anqp_add_hex(pos, end, "anqp_venue_name",
  2204. bss->anqp_venue_name);
  2205. pos = anqp_add_hex(pos, end, "anqp_network_auth_type",
  2206. bss->anqp_network_auth_type);
  2207. pos = anqp_add_hex(pos, end, "anqp_roaming_consortium",
  2208. bss->anqp_roaming_consortium);
  2209. pos = anqp_add_hex(pos, end, "anqp_ip_addr_type_availability",
  2210. bss->anqp_ip_addr_type_availability);
  2211. pos = anqp_add_hex(pos, end, "anqp_nai_realm",
  2212. bss->anqp_nai_realm);
  2213. pos = anqp_add_hex(pos, end, "anqp_3gpp", bss->anqp_3gpp);
  2214. pos = anqp_add_hex(pos, end, "anqp_domain_name",
  2215. bss->anqp_domain_name);
  2216. }
  2217. #endif /* CONFIG_INTERWORKING */
  2218. return pos - buf;
  2219. }
  2220. static int wpa_supplicant_ctrl_iface_bss(struct wpa_supplicant *wpa_s,
  2221. const char *cmd, char *buf,
  2222. size_t buflen)
  2223. {
  2224. u8 bssid[ETH_ALEN];
  2225. size_t i;
  2226. struct wpa_bss *bss;
  2227. struct wpa_bss *bsslast = NULL;
  2228. struct dl_list *next;
  2229. int ret = 0;
  2230. int len;
  2231. char *ctmp;
  2232. unsigned long mask = WPA_BSS_MASK_ALL;
  2233. if (os_strncmp(cmd, "RANGE=", 6) == 0) {
  2234. if (os_strncmp(cmd + 6, "ALL", 3) == 0) {
  2235. bss = dl_list_first(&wpa_s->bss_id, struct wpa_bss,
  2236. list_id);
  2237. bsslast = dl_list_last(&wpa_s->bss_id, struct wpa_bss,
  2238. list_id);
  2239. } else { /* N1-N2 */
  2240. unsigned int id1, id2;
  2241. if ((ctmp = os_strchr(cmd + 6, '-')) == NULL) {
  2242. wpa_printf(MSG_INFO, "Wrong BSS range "
  2243. "format");
  2244. return 0;
  2245. }
  2246. id1 = atoi(cmd + 6);
  2247. bss = wpa_bss_get_id(wpa_s, id1);
  2248. id2 = atoi(ctmp + 1);
  2249. if (id2 == 0)
  2250. bsslast = dl_list_last(&wpa_s->bss_id,
  2251. struct wpa_bss,
  2252. list_id);
  2253. else {
  2254. bsslast = wpa_bss_get_id(wpa_s, id2);
  2255. if (bsslast == NULL && bss && id2 > id1) {
  2256. struct wpa_bss *tmp = bss;
  2257. for (;;) {
  2258. next = tmp->list_id.next;
  2259. if (next == &wpa_s->bss_id)
  2260. break;
  2261. tmp = dl_list_entry(
  2262. next, struct wpa_bss,
  2263. list_id);
  2264. if (tmp->id > id2)
  2265. break;
  2266. bsslast = tmp;
  2267. }
  2268. }
  2269. }
  2270. }
  2271. } else if (os_strcmp(cmd, "FIRST") == 0)
  2272. bss = dl_list_first(&wpa_s->bss_id, struct wpa_bss, list_id);
  2273. else if (os_strncmp(cmd, "ID-", 3) == 0) {
  2274. i = atoi(cmd + 3);
  2275. bss = wpa_bss_get_id(wpa_s, i);
  2276. } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
  2277. i = atoi(cmd + 5);
  2278. bss = wpa_bss_get_id(wpa_s, i);
  2279. if (bss) {
  2280. next = bss->list_id.next;
  2281. if (next == &wpa_s->bss_id)
  2282. bss = NULL;
  2283. else
  2284. bss = dl_list_entry(next, struct wpa_bss,
  2285. list_id);
  2286. }
  2287. #ifdef CONFIG_P2P
  2288. } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
  2289. if (hwaddr_aton(cmd + 13, bssid) == 0)
  2290. bss = wpa_bss_get_p2p_dev_addr(wpa_s, bssid);
  2291. else
  2292. bss = NULL;
  2293. #endif /* CONFIG_P2P */
  2294. } else if (hwaddr_aton(cmd, bssid) == 0)
  2295. bss = wpa_bss_get_bssid(wpa_s, bssid);
  2296. else {
  2297. struct wpa_bss *tmp;
  2298. i = atoi(cmd);
  2299. bss = NULL;
  2300. dl_list_for_each(tmp, &wpa_s->bss_id, struct wpa_bss, list_id)
  2301. {
  2302. if (i-- == 0) {
  2303. bss = tmp;
  2304. break;
  2305. }
  2306. }
  2307. }
  2308. if ((ctmp = os_strstr(cmd, "MASK=")) != NULL) {
  2309. mask = strtoul(ctmp + 5, NULL, 0x10);
  2310. if (mask == 0)
  2311. mask = WPA_BSS_MASK_ALL;
  2312. }
  2313. if (bss == NULL)
  2314. return 0;
  2315. if (bsslast == NULL)
  2316. bsslast = bss;
  2317. do {
  2318. len = print_bss_info(wpa_s, bss, mask, buf, buflen);
  2319. ret += len;
  2320. buf += len;
  2321. buflen -= len;
  2322. if (bss == bsslast)
  2323. break;
  2324. next = bss->list_id.next;
  2325. if (next == &wpa_s->bss_id)
  2326. break;
  2327. bss = dl_list_entry(next, struct wpa_bss, list_id);
  2328. } while (bss && len);
  2329. return ret;
  2330. }
  2331. static int wpa_supplicant_ctrl_iface_ap_scan(
  2332. struct wpa_supplicant *wpa_s, char *cmd)
  2333. {
  2334. int ap_scan = atoi(cmd);
  2335. return wpa_supplicant_set_ap_scan(wpa_s, ap_scan);
  2336. }
  2337. static int wpa_supplicant_ctrl_iface_scan_interval(
  2338. struct wpa_supplicant *wpa_s, char *cmd)
  2339. {
  2340. int scan_int = atoi(cmd);
  2341. return wpa_supplicant_set_scan_interval(wpa_s, scan_int);
  2342. }
  2343. static int wpa_supplicant_ctrl_iface_bss_expire_age(
  2344. struct wpa_supplicant *wpa_s, char *cmd)
  2345. {
  2346. int expire_age = atoi(cmd);
  2347. return wpa_supplicant_set_bss_expiration_age(wpa_s, expire_age);
  2348. }
  2349. static int wpa_supplicant_ctrl_iface_bss_expire_count(
  2350. struct wpa_supplicant *wpa_s, char *cmd)
  2351. {
  2352. int expire_count = atoi(cmd);
  2353. return wpa_supplicant_set_bss_expiration_count(wpa_s, expire_count);
  2354. }
  2355. static void wpa_supplicant_ctrl_iface_drop_sa(struct wpa_supplicant *wpa_s)
  2356. {
  2357. wpa_printf(MSG_DEBUG, "Dropping SA without deauthentication");
  2358. /* MLME-DELETEKEYS.request */
  2359. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 0, 0, NULL, 0, NULL, 0);
  2360. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 1, 0, NULL, 0, NULL, 0);
  2361. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 2, 0, NULL, 0, NULL, 0);
  2362. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 3, 0, NULL, 0, NULL, 0);
  2363. #ifdef CONFIG_IEEE80211W
  2364. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 4, 0, NULL, 0, NULL, 0);
  2365. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 5, 0, NULL, 0, NULL, 0);
  2366. #endif /* CONFIG_IEEE80211W */
  2367. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, wpa_s->bssid, 0, 0, NULL, 0, NULL,
  2368. 0);
  2369. /* MLME-SETPROTECTION.request(None) */
  2370. wpa_drv_mlme_setprotection(wpa_s, wpa_s->bssid,
  2371. MLME_SETPROTECTION_PROTECT_TYPE_NONE,
  2372. MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
  2373. wpa_sm_drop_sa(wpa_s->wpa);
  2374. }
  2375. static int wpa_supplicant_ctrl_iface_roam(struct wpa_supplicant *wpa_s,
  2376. char *addr)
  2377. {
  2378. #ifdef CONFIG_NO_SCAN_PROCESSING
  2379. return -1;
  2380. #else /* CONFIG_NO_SCAN_PROCESSING */
  2381. u8 bssid[ETH_ALEN];
  2382. struct wpa_bss *bss;
  2383. struct wpa_ssid *ssid = wpa_s->current_ssid;
  2384. if (hwaddr_aton(addr, bssid)) {
  2385. wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: invalid "
  2386. "address '%s'", addr);
  2387. return -1;
  2388. }
  2389. wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM " MACSTR, MAC2STR(bssid));
  2390. bss = wpa_bss_get_bssid(wpa_s, bssid);
  2391. if (!bss) {
  2392. wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: Target AP not found "
  2393. "from BSS table");
  2394. return -1;
  2395. }
  2396. /*
  2397. * TODO: Find best network configuration block from configuration to
  2398. * allow roaming to other networks
  2399. */
  2400. if (!ssid) {
  2401. wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: No network "
  2402. "configuration known for the target AP");
  2403. return -1;
  2404. }
  2405. wpa_s->reassociate = 1;
  2406. wpa_supplicant_connect(wpa_s, bss, ssid);
  2407. return 0;
  2408. #endif /* CONFIG_NO_SCAN_PROCESSING */
  2409. }
  2410. #ifdef CONFIG_P2P
  2411. static int p2p_ctrl_find(struct wpa_supplicant *wpa_s, char *cmd)
  2412. {
  2413. unsigned int timeout = atoi(cmd);
  2414. enum p2p_discovery_type type = P2P_FIND_START_WITH_FULL;
  2415. u8 dev_id[ETH_ALEN], *_dev_id = NULL;
  2416. char *pos;
  2417. if (os_strstr(cmd, "type=social"))
  2418. type = P2P_FIND_ONLY_SOCIAL;
  2419. else if (os_strstr(cmd, "type=progressive"))
  2420. type = P2P_FIND_PROGRESSIVE;
  2421. pos = os_strstr(cmd, "dev_id=");
  2422. if (pos) {
  2423. pos += 7;
  2424. if (hwaddr_aton(pos, dev_id))
  2425. return -1;
  2426. _dev_id = dev_id;
  2427. }
  2428. return wpas_p2p_find(wpa_s, timeout, type, 0, NULL, _dev_id);
  2429. }
  2430. static int p2p_ctrl_connect(struct wpa_supplicant *wpa_s, char *cmd,
  2431. char *buf, size_t buflen)
  2432. {
  2433. u8 addr[ETH_ALEN];
  2434. char *pos, *pos2;
  2435. char *pin = NULL;
  2436. enum p2p_wps_method wps_method;
  2437. int new_pin;
  2438. int ret;
  2439. int persistent_group;
  2440. int join;
  2441. int auth;
  2442. int automatic;
  2443. int go_intent = -1;
  2444. int freq = 0;
  2445. /* <addr> <"pbc" | "pin" | PIN> [label|display|keypad] [persistent]
  2446. * [join] [auth] [go_intent=<0..15>] [freq=<in MHz>] */
  2447. if (hwaddr_aton(cmd, addr))
  2448. return -1;
  2449. pos = cmd + 17;
  2450. if (*pos != ' ')
  2451. return -1;
  2452. pos++;
  2453. persistent_group = os_strstr(pos, " persistent") != NULL;
  2454. join = os_strstr(pos, " join") != NULL;
  2455. auth = os_strstr(pos, " auth") != NULL;
  2456. automatic = os_strstr(pos, " auto") != NULL;
  2457. pos2 = os_strstr(pos, " go_intent=");
  2458. if (pos2) {
  2459. pos2 += 11;
  2460. go_intent = atoi(pos2);
  2461. if (go_intent < 0 || go_intent > 15)
  2462. return -1;
  2463. }
  2464. pos2 = os_strstr(pos, " freq=");
  2465. if (pos2) {
  2466. pos2 += 6;
  2467. freq = atoi(pos2);
  2468. if (freq <= 0)
  2469. return -1;
  2470. }
  2471. if (os_strncmp(pos, "pin", 3) == 0) {
  2472. /* Request random PIN (to be displayed) and enable the PIN */
  2473. wps_method = WPS_PIN_DISPLAY;
  2474. } else if (os_strncmp(pos, "pbc", 3) == 0) {
  2475. wps_method = WPS_PBC;
  2476. } else {
  2477. pin = pos;
  2478. pos = os_strchr(pin, ' ');
  2479. wps_method = WPS_PIN_KEYPAD;
  2480. if (pos) {
  2481. *pos++ = '\0';
  2482. if (os_strncmp(pos, "display", 7) == 0)
  2483. wps_method = WPS_PIN_DISPLAY;
  2484. }
  2485. }
  2486. new_pin = wpas_p2p_connect(wpa_s, addr, pin, wps_method,
  2487. persistent_group, automatic, join,
  2488. auth, go_intent, freq);
  2489. if (new_pin == -2) {
  2490. os_memcpy(buf, "FAIL-CHANNEL-UNAVAILABLE\n", 25);
  2491. return 25;
  2492. }
  2493. if (new_pin == -3) {
  2494. os_memcpy(buf, "FAIL-CHANNEL-UNSUPPORTED\n", 25);
  2495. return 25;
  2496. }
  2497. if (new_pin < 0)
  2498. return -1;
  2499. if (wps_method == WPS_PIN_DISPLAY && pin == NULL) {
  2500. ret = os_snprintf(buf, buflen, "%08d", new_pin);
  2501. if (ret < 0 || (size_t) ret >= buflen)
  2502. return -1;
  2503. return ret;
  2504. }
  2505. os_memcpy(buf, "OK\n", 3);
  2506. return 3;
  2507. }
  2508. static int p2p_ctrl_listen(struct wpa_supplicant *wpa_s, char *cmd)
  2509. {
  2510. unsigned int timeout = atoi(cmd);
  2511. return wpas_p2p_listen(wpa_s, timeout);
  2512. }
  2513. static int p2p_ctrl_prov_disc(struct wpa_supplicant *wpa_s, char *cmd)
  2514. {
  2515. u8 addr[ETH_ALEN];
  2516. char *pos;
  2517. enum wpas_p2p_prov_disc_use use = WPAS_P2P_PD_FOR_GO_NEG;
  2518. /* <addr> <config method> [join|auto] */
  2519. if (hwaddr_aton(cmd, addr))
  2520. return -1;
  2521. pos = cmd + 17;
  2522. if (*pos != ' ')
  2523. return -1;
  2524. pos++;
  2525. if (os_strstr(pos, " join") != NULL)
  2526. use = WPAS_P2P_PD_FOR_JOIN;
  2527. else if (os_strstr(pos, " auto") != NULL)
  2528. use = WPAS_P2P_PD_AUTO;
  2529. return wpas_p2p_prov_disc(wpa_s, addr, pos, use);
  2530. }
  2531. static int p2p_get_passphrase(struct wpa_supplicant *wpa_s, char *buf,
  2532. size_t buflen)
  2533. {
  2534. struct wpa_ssid *ssid = wpa_s->current_ssid;
  2535. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
  2536. ssid->passphrase == NULL)
  2537. return -1;
  2538. os_strlcpy(buf, ssid->passphrase, buflen);
  2539. return os_strlen(buf);
  2540. }
  2541. static int p2p_ctrl_serv_disc_req(struct wpa_supplicant *wpa_s, char *cmd,
  2542. char *buf, size_t buflen)
  2543. {
  2544. u64 ref;
  2545. int res;
  2546. u8 dst_buf[ETH_ALEN], *dst;
  2547. struct wpabuf *tlvs;
  2548. char *pos;
  2549. size_t len;
  2550. if (hwaddr_aton(cmd, dst_buf))
  2551. return -1;
  2552. dst = dst_buf;
  2553. if (dst[0] == 0 && dst[1] == 0 && dst[2] == 0 &&
  2554. dst[3] == 0 && dst[4] == 0 && dst[5] == 0)
  2555. dst = NULL;
  2556. pos = cmd + 17;
  2557. if (*pos != ' ')
  2558. return -1;
  2559. pos++;
  2560. if (os_strncmp(pos, "upnp ", 5) == 0) {
  2561. u8 version;
  2562. pos += 5;
  2563. if (hexstr2bin(pos, &version, 1) < 0)
  2564. return -1;
  2565. pos += 2;
  2566. if (*pos != ' ')
  2567. return -1;
  2568. pos++;
  2569. ref = wpas_p2p_sd_request_upnp(wpa_s, dst, version, pos);
  2570. } else {
  2571. len = os_strlen(pos);
  2572. if (len & 1)
  2573. return -1;
  2574. len /= 2;
  2575. tlvs = wpabuf_alloc(len);
  2576. if (tlvs == NULL)
  2577. return -1;
  2578. if (hexstr2bin(pos, wpabuf_put(tlvs, len), len) < 0) {
  2579. wpabuf_free(tlvs);
  2580. return -1;
  2581. }
  2582. ref = wpas_p2p_sd_request(wpa_s, dst, tlvs);
  2583. wpabuf_free(tlvs);
  2584. }
  2585. if (ref == 0)
  2586. return -1;
  2587. res = os_snprintf(buf, buflen, "%llx", (long long unsigned) ref);
  2588. if (res < 0 || (unsigned) res >= buflen)
  2589. return -1;
  2590. return res;
  2591. }
  2592. static int p2p_ctrl_serv_disc_cancel_req(struct wpa_supplicant *wpa_s,
  2593. char *cmd)
  2594. {
  2595. long long unsigned val;
  2596. u64 req;
  2597. if (sscanf(cmd, "%llx", &val) != 1)
  2598. return -1;
  2599. req = val;
  2600. return wpas_p2p_sd_cancel_request(wpa_s, req);
  2601. }
  2602. static int p2p_ctrl_serv_disc_resp(struct wpa_supplicant *wpa_s, char *cmd)
  2603. {
  2604. int freq;
  2605. u8 dst[ETH_ALEN];
  2606. u8 dialog_token;
  2607. struct wpabuf *resp_tlvs;
  2608. char *pos, *pos2;
  2609. size_t len;
  2610. pos = os_strchr(cmd, ' ');
  2611. if (pos == NULL)
  2612. return -1;
  2613. *pos++ = '\0';
  2614. freq = atoi(cmd);
  2615. if (freq == 0)
  2616. return -1;
  2617. if (hwaddr_aton(pos, dst))
  2618. return -1;
  2619. pos += 17;
  2620. if (*pos != ' ')
  2621. return -1;
  2622. pos++;
  2623. pos2 = os_strchr(pos, ' ');
  2624. if (pos2 == NULL)
  2625. return -1;
  2626. *pos2++ = '\0';
  2627. dialog_token = atoi(pos);
  2628. len = os_strlen(pos2);
  2629. if (len & 1)
  2630. return -1;
  2631. len /= 2;
  2632. resp_tlvs = wpabuf_alloc(len);
  2633. if (resp_tlvs == NULL)
  2634. return -1;
  2635. if (hexstr2bin(pos2, wpabuf_put(resp_tlvs, len), len) < 0) {
  2636. wpabuf_free(resp_tlvs);
  2637. return -1;
  2638. }
  2639. wpas_p2p_sd_response(wpa_s, freq, dst, dialog_token, resp_tlvs);
  2640. wpabuf_free(resp_tlvs);
  2641. return 0;
  2642. }
  2643. static int p2p_ctrl_serv_disc_external(struct wpa_supplicant *wpa_s,
  2644. char *cmd)
  2645. {
  2646. if (os_strcmp(cmd, "0") && os_strcmp(cmd, "1"))
  2647. return -1;
  2648. wpa_s->p2p_sd_over_ctrl_iface = atoi(cmd);
  2649. return 0;
  2650. }
  2651. static int p2p_ctrl_service_add_bonjour(struct wpa_supplicant *wpa_s,
  2652. char *cmd)
  2653. {
  2654. char *pos;
  2655. size_t len;
  2656. struct wpabuf *query, *resp;
  2657. pos = os_strchr(cmd, ' ');
  2658. if (pos == NULL)
  2659. return -1;
  2660. *pos++ = '\0';
  2661. len = os_strlen(cmd);
  2662. if (len & 1)
  2663. return -1;
  2664. len /= 2;
  2665. query = wpabuf_alloc(len);
  2666. if (query == NULL)
  2667. return -1;
  2668. if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
  2669. wpabuf_free(query);
  2670. return -1;
  2671. }
  2672. len = os_strlen(pos);
  2673. if (len & 1) {
  2674. wpabuf_free(query);
  2675. return -1;
  2676. }
  2677. len /= 2;
  2678. resp = wpabuf_alloc(len);
  2679. if (resp == NULL) {
  2680. wpabuf_free(query);
  2681. return -1;
  2682. }
  2683. if (hexstr2bin(pos, wpabuf_put(resp, len), len) < 0) {
  2684. wpabuf_free(query);
  2685. wpabuf_free(resp);
  2686. return -1;
  2687. }
  2688. if (wpas_p2p_service_add_bonjour(wpa_s, query, resp) < 0) {
  2689. wpabuf_free(query);
  2690. wpabuf_free(resp);
  2691. return -1;
  2692. }
  2693. return 0;
  2694. }
  2695. static int p2p_ctrl_service_add_upnp(struct wpa_supplicant *wpa_s, char *cmd)
  2696. {
  2697. char *pos;
  2698. u8 version;
  2699. pos = os_strchr(cmd, ' ');
  2700. if (pos == NULL)
  2701. return -1;
  2702. *pos++ = '\0';
  2703. if (hexstr2bin(cmd, &version, 1) < 0)
  2704. return -1;
  2705. return wpas_p2p_service_add_upnp(wpa_s, version, pos);
  2706. }
  2707. static int p2p_ctrl_service_add(struct wpa_supplicant *wpa_s, char *cmd)
  2708. {
  2709. char *pos;
  2710. pos = os_strchr(cmd, ' ');
  2711. if (pos == NULL)
  2712. return -1;
  2713. *pos++ = '\0';
  2714. if (os_strcmp(cmd, "bonjour") == 0)
  2715. return p2p_ctrl_service_add_bonjour(wpa_s, pos);
  2716. if (os_strcmp(cmd, "upnp") == 0)
  2717. return p2p_ctrl_service_add_upnp(wpa_s, pos);
  2718. wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
  2719. return -1;
  2720. }
  2721. static int p2p_ctrl_service_del_bonjour(struct wpa_supplicant *wpa_s,
  2722. char *cmd)
  2723. {
  2724. size_t len;
  2725. struct wpabuf *query;
  2726. int ret;
  2727. len = os_strlen(cmd);
  2728. if (len & 1)
  2729. return -1;
  2730. len /= 2;
  2731. query = wpabuf_alloc(len);
  2732. if (query == NULL)
  2733. return -1;
  2734. if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
  2735. wpabuf_free(query);
  2736. return -1;
  2737. }
  2738. ret = wpas_p2p_service_del_bonjour(wpa_s, query);
  2739. wpabuf_free(query);
  2740. return ret;
  2741. }
  2742. static int p2p_ctrl_service_del_upnp(struct wpa_supplicant *wpa_s, char *cmd)
  2743. {
  2744. char *pos;
  2745. u8 version;
  2746. pos = os_strchr(cmd, ' ');
  2747. if (pos == NULL)
  2748. return -1;
  2749. *pos++ = '\0';
  2750. if (hexstr2bin(cmd, &version, 1) < 0)
  2751. return -1;
  2752. return wpas_p2p_service_del_upnp(wpa_s, version, pos);
  2753. }
  2754. static int p2p_ctrl_service_del(struct wpa_supplicant *wpa_s, char *cmd)
  2755. {
  2756. char *pos;
  2757. pos = os_strchr(cmd, ' ');
  2758. if (pos == NULL)
  2759. return -1;
  2760. *pos++ = '\0';
  2761. if (os_strcmp(cmd, "bonjour") == 0)
  2762. return p2p_ctrl_service_del_bonjour(wpa_s, pos);
  2763. if (os_strcmp(cmd, "upnp") == 0)
  2764. return p2p_ctrl_service_del_upnp(wpa_s, pos);
  2765. wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
  2766. return -1;
  2767. }
  2768. static int p2p_ctrl_reject(struct wpa_supplicant *wpa_s, char *cmd)
  2769. {
  2770. u8 addr[ETH_ALEN];
  2771. /* <addr> */
  2772. if (hwaddr_aton(cmd, addr))
  2773. return -1;
  2774. return wpas_p2p_reject(wpa_s, addr);
  2775. }
  2776. static int p2p_ctrl_invite_persistent(struct wpa_supplicant *wpa_s, char *cmd)
  2777. {
  2778. char *pos;
  2779. int id;
  2780. struct wpa_ssid *ssid;
  2781. u8 peer[ETH_ALEN];
  2782. id = atoi(cmd);
  2783. pos = os_strstr(cmd, " peer=");
  2784. if (pos) {
  2785. pos += 6;
  2786. if (hwaddr_aton(pos, peer))
  2787. return -1;
  2788. }
  2789. ssid = wpa_config_get_network(wpa_s->conf, id);
  2790. if (ssid == NULL || ssid->disabled != 2) {
  2791. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
  2792. "for persistent P2P group",
  2793. id);
  2794. return -1;
  2795. }
  2796. return wpas_p2p_invite(wpa_s, pos ? peer : NULL, ssid, NULL);
  2797. }
  2798. static int p2p_ctrl_invite_group(struct wpa_supplicant *wpa_s, char *cmd)
  2799. {
  2800. char *pos;
  2801. u8 peer[ETH_ALEN], go_dev_addr[ETH_ALEN], *go_dev = NULL;
  2802. pos = os_strstr(cmd, " peer=");
  2803. if (!pos)
  2804. return -1;
  2805. *pos = '\0';
  2806. pos += 6;
  2807. if (hwaddr_aton(pos, peer)) {
  2808. wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'", pos);
  2809. return -1;
  2810. }
  2811. pos = os_strstr(pos, " go_dev_addr=");
  2812. if (pos) {
  2813. pos += 13;
  2814. if (hwaddr_aton(pos, go_dev_addr)) {
  2815. wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'",
  2816. pos);
  2817. return -1;
  2818. }
  2819. go_dev = go_dev_addr;
  2820. }
  2821. return wpas_p2p_invite_group(wpa_s, cmd, peer, go_dev);
  2822. }
  2823. static int p2p_ctrl_invite(struct wpa_supplicant *wpa_s, char *cmd)
  2824. {
  2825. if (os_strncmp(cmd, "persistent=", 11) == 0)
  2826. return p2p_ctrl_invite_persistent(wpa_s, cmd + 11);
  2827. if (os_strncmp(cmd, "group=", 6) == 0)
  2828. return p2p_ctrl_invite_group(wpa_s, cmd + 6);
  2829. return -1;
  2830. }
  2831. static int p2p_ctrl_group_add_persistent(struct wpa_supplicant *wpa_s,
  2832. char *cmd, int freq)
  2833. {
  2834. int id;
  2835. struct wpa_ssid *ssid;
  2836. id = atoi(cmd);
  2837. ssid = wpa_config_get_network(wpa_s->conf, id);
  2838. if (ssid == NULL || ssid->disabled != 2) {
  2839. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
  2840. "for persistent P2P group",
  2841. id);
  2842. return -1;
  2843. }
  2844. return wpas_p2p_group_add_persistent(wpa_s, ssid, 0, freq);
  2845. }
  2846. static int p2p_ctrl_group_add(struct wpa_supplicant *wpa_s, char *cmd)
  2847. {
  2848. int freq = 0;
  2849. char *pos;
  2850. pos = os_strstr(cmd, "freq=");
  2851. if (pos)
  2852. freq = atoi(pos + 5);
  2853. if (os_strncmp(cmd, "persistent=", 11) == 0)
  2854. return p2p_ctrl_group_add_persistent(wpa_s, cmd + 11, freq);
  2855. if (os_strcmp(cmd, "persistent") == 0 ||
  2856. os_strncmp(cmd, "persistent ", 11) == 0)
  2857. return wpas_p2p_group_add(wpa_s, 1, freq);
  2858. if (os_strncmp(cmd, "freq=", 5) == 0)
  2859. return wpas_p2p_group_add(wpa_s, 0, freq);
  2860. wpa_printf(MSG_DEBUG, "CTRL: Invalid P2P_GROUP_ADD parameters '%s'",
  2861. cmd);
  2862. return -1;
  2863. }
  2864. static int p2p_ctrl_peer(struct wpa_supplicant *wpa_s, char *cmd,
  2865. char *buf, size_t buflen)
  2866. {
  2867. u8 addr[ETH_ALEN], *addr_ptr;
  2868. int next, res;
  2869. const struct p2p_peer_info *info;
  2870. char *pos, *end;
  2871. char devtype[WPS_DEV_TYPE_BUFSIZE];
  2872. struct wpa_ssid *ssid;
  2873. if (!wpa_s->global->p2p)
  2874. return -1;
  2875. if (os_strcmp(cmd, "FIRST") == 0) {
  2876. addr_ptr = NULL;
  2877. next = 0;
  2878. } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
  2879. if (hwaddr_aton(cmd + 5, addr) < 0)
  2880. return -1;
  2881. addr_ptr = addr;
  2882. next = 1;
  2883. } else {
  2884. if (hwaddr_aton(cmd, addr) < 0)
  2885. return -1;
  2886. addr_ptr = addr;
  2887. next = 0;
  2888. }
  2889. info = p2p_get_peer_info(wpa_s->global->p2p, addr_ptr, next);
  2890. if (info == NULL)
  2891. return -1;
  2892. pos = buf;
  2893. end = buf + buflen;
  2894. res = os_snprintf(pos, end - pos, MACSTR "\n"
  2895. "pri_dev_type=%s\n"
  2896. "device_name=%s\n"
  2897. "manufacturer=%s\n"
  2898. "model_name=%s\n"
  2899. "model_number=%s\n"
  2900. "serial_number=%s\n"
  2901. "config_methods=0x%x\n"
  2902. "dev_capab=0x%x\n"
  2903. "group_capab=0x%x\n"
  2904. "level=%d\n",
  2905. MAC2STR(info->p2p_device_addr),
  2906. wps_dev_type_bin2str(info->pri_dev_type,
  2907. devtype, sizeof(devtype)),
  2908. info->device_name,
  2909. info->manufacturer,
  2910. info->model_name,
  2911. info->model_number,
  2912. info->serial_number,
  2913. info->config_methods,
  2914. info->dev_capab,
  2915. info->group_capab,
  2916. info->level);
  2917. if (res < 0 || res >= end - pos)
  2918. return pos - buf;
  2919. pos += res;
  2920. ssid = wpas_p2p_get_persistent(wpa_s, info->p2p_device_addr, NULL, 0);
  2921. if (ssid) {
  2922. res = os_snprintf(pos, end - pos, "persistent=%d\n", ssid->id);
  2923. if (res < 0 || res >= end - pos)
  2924. return pos - buf;
  2925. pos += res;
  2926. }
  2927. res = p2p_get_peer_info_txt(info, pos, end - pos);
  2928. if (res < 0)
  2929. return pos - buf;
  2930. pos += res;
  2931. return pos - buf;
  2932. }
  2933. static int p2p_ctrl_disallow_freq(struct wpa_supplicant *wpa_s,
  2934. const char *param)
  2935. {
  2936. struct wpa_freq_range *freq = NULL, *n;
  2937. unsigned int count = 0, i;
  2938. const char *pos, *pos2, *pos3;
  2939. if (wpa_s->global->p2p == NULL)
  2940. return -1;
  2941. /*
  2942. * param includes comma separated frequency range.
  2943. * For example: 2412-2432,2462,5000-6000
  2944. */
  2945. pos = param;
  2946. while (pos && pos[0]) {
  2947. n = os_realloc(freq,
  2948. (count + 1) * sizeof(struct wpa_freq_range));
  2949. if (n == NULL) {
  2950. os_free(freq);
  2951. return -1;
  2952. }
  2953. freq = n;
  2954. freq[count].min = atoi(pos);
  2955. pos2 = os_strchr(pos, '-');
  2956. pos3 = os_strchr(pos, ',');
  2957. if (pos2 && (!pos3 || pos2 < pos3)) {
  2958. pos2++;
  2959. freq[count].max = atoi(pos2);
  2960. } else
  2961. freq[count].max = freq[count].min;
  2962. pos = pos3;
  2963. if (pos)
  2964. pos++;
  2965. count++;
  2966. }
  2967. for (i = 0; i < count; i++) {
  2968. wpa_printf(MSG_DEBUG, "P2P: Disallowed frequency range %u-%u",
  2969. freq[i].min, freq[i].max);
  2970. }
  2971. os_free(wpa_s->global->p2p_disallow_freq);
  2972. wpa_s->global->p2p_disallow_freq = freq;
  2973. wpa_s->global->num_p2p_disallow_freq = count;
  2974. wpas_p2p_update_channel_list(wpa_s);
  2975. return 0;
  2976. }
  2977. static int p2p_ctrl_set(struct wpa_supplicant *wpa_s, char *cmd)
  2978. {
  2979. char *param;
  2980. if (wpa_s->global->p2p == NULL)
  2981. return -1;
  2982. param = os_strchr(cmd, ' ');
  2983. if (param == NULL)
  2984. return -1;
  2985. *param++ = '\0';
  2986. if (os_strcmp(cmd, "discoverability") == 0) {
  2987. p2p_set_client_discoverability(wpa_s->global->p2p,
  2988. atoi(param));
  2989. return 0;
  2990. }
  2991. if (os_strcmp(cmd, "managed") == 0) {
  2992. p2p_set_managed_oper(wpa_s->global->p2p, atoi(param));
  2993. return 0;
  2994. }
  2995. if (os_strcmp(cmd, "listen_channel") == 0) {
  2996. return p2p_set_listen_channel(wpa_s->global->p2p, 81,
  2997. atoi(param));
  2998. }
  2999. if (os_strcmp(cmd, "ssid_postfix") == 0) {
  3000. return p2p_set_ssid_postfix(wpa_s->global->p2p, (u8 *) param,
  3001. os_strlen(param));
  3002. }
  3003. if (os_strcmp(cmd, "noa") == 0) {
  3004. char *pos;
  3005. int count, start, duration;
  3006. /* GO NoA parameters: count,start_offset(ms),duration(ms) */
  3007. count = atoi(param);
  3008. pos = os_strchr(param, ',');
  3009. if (pos == NULL)
  3010. return -1;
  3011. pos++;
  3012. start = atoi(pos);
  3013. pos = os_strchr(pos, ',');
  3014. if (pos == NULL)
  3015. return -1;
  3016. pos++;
  3017. duration = atoi(pos);
  3018. if (count < 0 || count > 255 || start < 0 || duration < 0)
  3019. return -1;
  3020. if (count == 0 && duration > 0)
  3021. return -1;
  3022. wpa_printf(MSG_DEBUG, "CTRL_IFACE: P2P_SET GO NoA: count=%d "
  3023. "start=%d duration=%d", count, start, duration);
  3024. return wpas_p2p_set_noa(wpa_s, count, start, duration);
  3025. }
  3026. if (os_strcmp(cmd, "ps") == 0)
  3027. return wpa_drv_set_p2p_powersave(wpa_s, atoi(param), -1, -1);
  3028. if (os_strcmp(cmd, "oppps") == 0)
  3029. return wpa_drv_set_p2p_powersave(wpa_s, -1, atoi(param), -1);
  3030. if (os_strcmp(cmd, "ctwindow") == 0)
  3031. return wpa_drv_set_p2p_powersave(wpa_s, -1, -1, atoi(param));
  3032. if (os_strcmp(cmd, "disabled") == 0) {
  3033. wpa_s->global->p2p_disabled = atoi(param);
  3034. wpa_printf(MSG_DEBUG, "P2P functionality %s",
  3035. wpa_s->global->p2p_disabled ?
  3036. "disabled" : "enabled");
  3037. if (wpa_s->global->p2p_disabled) {
  3038. wpas_p2p_stop_find(wpa_s);
  3039. os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
  3040. p2p_flush(wpa_s->global->p2p);
  3041. }
  3042. return 0;
  3043. }
  3044. if (os_strcmp(cmd, "force_long_sd") == 0) {
  3045. wpa_s->force_long_sd = atoi(param);
  3046. return 0;
  3047. }
  3048. if (os_strcmp(cmd, "peer_filter") == 0) {
  3049. u8 addr[ETH_ALEN];
  3050. if (hwaddr_aton(param, addr))
  3051. return -1;
  3052. p2p_set_peer_filter(wpa_s->global->p2p, addr);
  3053. return 0;
  3054. }
  3055. if (os_strcmp(cmd, "cross_connect") == 0)
  3056. return wpas_p2p_set_cross_connect(wpa_s, atoi(param));
  3057. if (os_strcmp(cmd, "go_apsd") == 0) {
  3058. if (os_strcmp(param, "disable") == 0)
  3059. wpa_s->set_ap_uapsd = 0;
  3060. else {
  3061. wpa_s->set_ap_uapsd = 1;
  3062. wpa_s->ap_uapsd = atoi(param);
  3063. }
  3064. return 0;
  3065. }
  3066. if (os_strcmp(cmd, "client_apsd") == 0) {
  3067. if (os_strcmp(param, "disable") == 0)
  3068. wpa_s->set_sta_uapsd = 0;
  3069. else {
  3070. int be, bk, vi, vo;
  3071. char *pos;
  3072. /* format: BE,BK,VI,VO;max SP Length */
  3073. be = atoi(param);
  3074. pos = os_strchr(param, ',');
  3075. if (pos == NULL)
  3076. return -1;
  3077. pos++;
  3078. bk = atoi(pos);
  3079. pos = os_strchr(pos, ',');
  3080. if (pos == NULL)
  3081. return -1;
  3082. pos++;
  3083. vi = atoi(pos);
  3084. pos = os_strchr(pos, ',');
  3085. if (pos == NULL)
  3086. return -1;
  3087. pos++;
  3088. vo = atoi(pos);
  3089. /* ignore max SP Length for now */
  3090. wpa_s->set_sta_uapsd = 1;
  3091. wpa_s->sta_uapsd = 0;
  3092. if (be)
  3093. wpa_s->sta_uapsd |= BIT(0);
  3094. if (bk)
  3095. wpa_s->sta_uapsd |= BIT(1);
  3096. if (vi)
  3097. wpa_s->sta_uapsd |= BIT(2);
  3098. if (vo)
  3099. wpa_s->sta_uapsd |= BIT(3);
  3100. }
  3101. return 0;
  3102. }
  3103. if (os_strcmp(cmd, "disallow_freq") == 0)
  3104. return p2p_ctrl_disallow_freq(wpa_s, param);
  3105. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown P2P_SET field value '%s'",
  3106. cmd);
  3107. return -1;
  3108. }
  3109. static int p2p_ctrl_presence_req(struct wpa_supplicant *wpa_s, char *cmd)
  3110. {
  3111. char *pos, *pos2;
  3112. unsigned int dur1 = 0, int1 = 0, dur2 = 0, int2 = 0;
  3113. if (cmd[0]) {
  3114. pos = os_strchr(cmd, ' ');
  3115. if (pos == NULL)
  3116. return -1;
  3117. *pos++ = '\0';
  3118. dur1 = atoi(cmd);
  3119. pos2 = os_strchr(pos, ' ');
  3120. if (pos2)
  3121. *pos2++ = '\0';
  3122. int1 = atoi(pos);
  3123. } else
  3124. pos2 = NULL;
  3125. if (pos2) {
  3126. pos = os_strchr(pos2, ' ');
  3127. if (pos == NULL)
  3128. return -1;
  3129. *pos++ = '\0';
  3130. dur2 = atoi(pos2);
  3131. int2 = atoi(pos);
  3132. }
  3133. return wpas_p2p_presence_req(wpa_s, dur1, int1, dur2, int2);
  3134. }
  3135. static int p2p_ctrl_ext_listen(struct wpa_supplicant *wpa_s, char *cmd)
  3136. {
  3137. char *pos;
  3138. unsigned int period = 0, interval = 0;
  3139. if (cmd[0]) {
  3140. pos = os_strchr(cmd, ' ');
  3141. if (pos == NULL)
  3142. return -1;
  3143. *pos++ = '\0';
  3144. period = atoi(cmd);
  3145. interval = atoi(pos);
  3146. }
  3147. return wpas_p2p_ext_listen(wpa_s, period, interval);
  3148. }
  3149. #endif /* CONFIG_P2P */
  3150. #ifdef CONFIG_INTERWORKING
  3151. static int ctrl_interworking_connect(struct wpa_supplicant *wpa_s, char *dst)
  3152. {
  3153. u8 bssid[ETH_ALEN];
  3154. struct wpa_bss *bss;
  3155. if (hwaddr_aton(dst, bssid)) {
  3156. wpa_printf(MSG_DEBUG, "Invalid BSSID '%s'", dst);
  3157. return -1;
  3158. }
  3159. bss = wpa_bss_get_bssid(wpa_s, bssid);
  3160. if (bss == NULL) {
  3161. wpa_printf(MSG_DEBUG, "Could not find BSS " MACSTR,
  3162. MAC2STR(bssid));
  3163. return -1;
  3164. }
  3165. return interworking_connect(wpa_s, bss);
  3166. }
  3167. static int get_anqp(struct wpa_supplicant *wpa_s, char *dst)
  3168. {
  3169. u8 dst_addr[ETH_ALEN];
  3170. int used;
  3171. char *pos;
  3172. #define MAX_ANQP_INFO_ID 100
  3173. u16 id[MAX_ANQP_INFO_ID];
  3174. size_t num_id = 0;
  3175. used = hwaddr_aton2(dst, dst_addr);
  3176. if (used < 0)
  3177. return -1;
  3178. pos = dst + used;
  3179. while (num_id < MAX_ANQP_INFO_ID) {
  3180. id[num_id] = atoi(pos);
  3181. if (id[num_id])
  3182. num_id++;
  3183. pos = os_strchr(pos + 1, ',');
  3184. if (pos == NULL)
  3185. break;
  3186. pos++;
  3187. }
  3188. if (num_id == 0)
  3189. return -1;
  3190. return anqp_send_req(wpa_s, dst_addr, id, num_id);
  3191. }
  3192. #endif /* CONFIG_INTERWORKING */
  3193. static int wpa_supplicant_ctrl_iface_sta_autoconnect(
  3194. struct wpa_supplicant *wpa_s, char *cmd)
  3195. {
  3196. wpa_s->auto_reconnect_disabled = atoi(cmd) == 0 ? 1 : 0;
  3197. return 0;
  3198. }
  3199. static int wpa_supplicant_signal_poll(struct wpa_supplicant *wpa_s, char *buf,
  3200. size_t buflen)
  3201. {
  3202. struct wpa_signal_info si;
  3203. int ret;
  3204. ret = wpa_drv_signal_poll(wpa_s, &si);
  3205. if (ret)
  3206. return -1;
  3207. ret = os_snprintf(buf, buflen, "RSSI=%d\nLINKSPEED=%d\n"
  3208. "NOISE=%d\nFREQUENCY=%u\n",
  3209. si.current_signal, si.current_txrate / 1000,
  3210. si.current_noise, si.frequency);
  3211. if (ret < 0 || (unsigned int) ret > buflen)
  3212. return -1;
  3213. return ret;
  3214. }
  3215. char * wpa_supplicant_ctrl_iface_process(struct wpa_supplicant *wpa_s,
  3216. char *buf, size_t *resp_len)
  3217. {
  3218. char *reply;
  3219. const int reply_size = 4096;
  3220. int ctrl_rsp = 0;
  3221. int reply_len;
  3222. if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0 ||
  3223. os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
  3224. wpa_hexdump_ascii_key(MSG_DEBUG, "RX ctrl_iface",
  3225. (const u8 *) buf, os_strlen(buf));
  3226. } else {
  3227. int level = MSG_DEBUG;
  3228. if (os_strcmp(buf, "PING") == 0)
  3229. level = MSG_EXCESSIVE;
  3230. wpa_hexdump_ascii(level, "RX ctrl_iface",
  3231. (const u8 *) buf, os_strlen(buf));
  3232. }
  3233. reply = os_malloc(reply_size);
  3234. if (reply == NULL) {
  3235. *resp_len = 1;
  3236. return NULL;
  3237. }
  3238. os_memcpy(reply, "OK\n", 3);
  3239. reply_len = 3;
  3240. if (os_strcmp(buf, "PING") == 0) {
  3241. os_memcpy(reply, "PONG\n", 5);
  3242. reply_len = 5;
  3243. } else if (os_strncmp(buf, "RELOG", 5) == 0) {
  3244. if (wpa_debug_reopen_file() < 0)
  3245. reply_len = -1;
  3246. } else if (os_strncmp(buf, "NOTE ", 5) == 0) {
  3247. wpa_printf(MSG_INFO, "NOTE: %s", buf + 5);
  3248. } else if (os_strcmp(buf, "MIB") == 0) {
  3249. reply_len = wpa_sm_get_mib(wpa_s->wpa, reply, reply_size);
  3250. if (reply_len >= 0) {
  3251. int res;
  3252. res = eapol_sm_get_mib(wpa_s->eapol, reply + reply_len,
  3253. reply_size - reply_len);
  3254. if (res < 0)
  3255. reply_len = -1;
  3256. else
  3257. reply_len += res;
  3258. }
  3259. } else if (os_strncmp(buf, "STATUS", 6) == 0) {
  3260. reply_len = wpa_supplicant_ctrl_iface_status(
  3261. wpa_s, buf + 6, reply, reply_size);
  3262. } else if (os_strcmp(buf, "PMKSA") == 0) {
  3263. reply_len = wpa_sm_pmksa_cache_list(wpa_s->wpa, reply,
  3264. reply_size);
  3265. } else if (os_strncmp(buf, "SET ", 4) == 0) {
  3266. if (wpa_supplicant_ctrl_iface_set(wpa_s, buf + 4))
  3267. reply_len = -1;
  3268. } else if (os_strncmp(buf, "GET ", 4) == 0) {
  3269. reply_len = wpa_supplicant_ctrl_iface_get(wpa_s, buf + 4,
  3270. reply, reply_size);
  3271. } else if (os_strcmp(buf, "LOGON") == 0) {
  3272. eapol_sm_notify_logoff(wpa_s->eapol, FALSE);
  3273. } else if (os_strcmp(buf, "LOGOFF") == 0) {
  3274. eapol_sm_notify_logoff(wpa_s->eapol, TRUE);
  3275. } else if (os_strcmp(buf, "REASSOCIATE") == 0) {
  3276. wpa_s->normal_scans = 0;
  3277. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
  3278. reply_len = -1;
  3279. else {
  3280. wpa_s->disconnected = 0;
  3281. wpa_s->reassociate = 1;
  3282. wpa_supplicant_req_scan(wpa_s, 0, 0);
  3283. }
  3284. } else if (os_strcmp(buf, "RECONNECT") == 0) {
  3285. wpa_s->normal_scans = 0;
  3286. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
  3287. reply_len = -1;
  3288. else if (wpa_s->disconnected) {
  3289. wpa_s->disconnected = 0;
  3290. wpa_s->reassociate = 1;
  3291. wpa_supplicant_req_scan(wpa_s, 0, 0);
  3292. }
  3293. #ifdef IEEE8021X_EAPOL
  3294. } else if (os_strncmp(buf, "PREAUTH ", 8) == 0) {
  3295. if (wpa_supplicant_ctrl_iface_preauth(wpa_s, buf + 8))
  3296. reply_len = -1;
  3297. #endif /* IEEE8021X_EAPOL */
  3298. #ifdef CONFIG_PEERKEY
  3299. } else if (os_strncmp(buf, "STKSTART ", 9) == 0) {
  3300. if (wpa_supplicant_ctrl_iface_stkstart(wpa_s, buf + 9))
  3301. reply_len = -1;
  3302. #endif /* CONFIG_PEERKEY */
  3303. #ifdef CONFIG_IEEE80211R
  3304. } else if (os_strncmp(buf, "FT_DS ", 6) == 0) {
  3305. if (wpa_supplicant_ctrl_iface_ft_ds(wpa_s, buf + 6))
  3306. reply_len = -1;
  3307. #endif /* CONFIG_IEEE80211R */
  3308. #ifdef CONFIG_WPS
  3309. } else if (os_strcmp(buf, "WPS_PBC") == 0) {
  3310. int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, NULL);
  3311. if (res == -2) {
  3312. os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
  3313. reply_len = 17;
  3314. } else if (res)
  3315. reply_len = -1;
  3316. } else if (os_strncmp(buf, "WPS_PBC ", 8) == 0) {
  3317. int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, buf + 8);
  3318. if (res == -2) {
  3319. os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
  3320. reply_len = 17;
  3321. } else if (res)
  3322. reply_len = -1;
  3323. } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
  3324. reply_len = wpa_supplicant_ctrl_iface_wps_pin(wpa_s, buf + 8,
  3325. reply,
  3326. reply_size);
  3327. } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
  3328. reply_len = wpa_supplicant_ctrl_iface_wps_check_pin(
  3329. wpa_s, buf + 14, reply, reply_size);
  3330. } else if (os_strcmp(buf, "WPS_CANCEL") == 0) {
  3331. if (wpas_wps_cancel(wpa_s))
  3332. reply_len = -1;
  3333. #ifdef CONFIG_WPS_OOB
  3334. } else if (os_strncmp(buf, "WPS_OOB ", 8) == 0) {
  3335. if (wpa_supplicant_ctrl_iface_wps_oob(wpa_s, buf + 8))
  3336. reply_len = -1;
  3337. #endif /* CONFIG_WPS_OOB */
  3338. } else if (os_strncmp(buf, "WPS_REG ", 8) == 0) {
  3339. if (wpa_supplicant_ctrl_iface_wps_reg(wpa_s, buf + 8))
  3340. reply_len = -1;
  3341. #ifdef CONFIG_AP
  3342. } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
  3343. reply_len = wpa_supplicant_ctrl_iface_wps_ap_pin(
  3344. wpa_s, buf + 11, reply, reply_size);
  3345. #endif /* CONFIG_AP */
  3346. #ifdef CONFIG_WPS_ER
  3347. } else if (os_strcmp(buf, "WPS_ER_START") == 0) {
  3348. if (wpas_wps_er_start(wpa_s, NULL))
  3349. reply_len = -1;
  3350. } else if (os_strncmp(buf, "WPS_ER_START ", 13) == 0) {
  3351. if (wpas_wps_er_start(wpa_s, buf + 13))
  3352. reply_len = -1;
  3353. } else if (os_strcmp(buf, "WPS_ER_STOP") == 0) {
  3354. if (wpas_wps_er_stop(wpa_s))
  3355. reply_len = -1;
  3356. } else if (os_strncmp(buf, "WPS_ER_PIN ", 11) == 0) {
  3357. if (wpa_supplicant_ctrl_iface_wps_er_pin(wpa_s, buf + 11))
  3358. reply_len = -1;
  3359. } else if (os_strncmp(buf, "WPS_ER_PBC ", 11) == 0) {
  3360. int ret = wpas_wps_er_pbc(wpa_s, buf + 11);
  3361. if (ret == -2) {
  3362. os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
  3363. reply_len = 17;
  3364. } else if (ret == -3) {
  3365. os_memcpy(reply, "FAIL-UNKNOWN-UUID\n", 18);
  3366. reply_len = 18;
  3367. } else if (ret == -4) {
  3368. os_memcpy(reply, "FAIL-NO-AP-SETTINGS\n", 20);
  3369. reply_len = 20;
  3370. } else if (ret)
  3371. reply_len = -1;
  3372. } else if (os_strncmp(buf, "WPS_ER_LEARN ", 13) == 0) {
  3373. if (wpa_supplicant_ctrl_iface_wps_er_learn(wpa_s, buf + 13))
  3374. reply_len = -1;
  3375. } else if (os_strncmp(buf, "WPS_ER_SET_CONFIG ", 18) == 0) {
  3376. if (wpa_supplicant_ctrl_iface_wps_er_set_config(wpa_s,
  3377. buf + 18))
  3378. reply_len = -1;
  3379. } else if (os_strncmp(buf, "WPS_ER_CONFIG ", 14) == 0) {
  3380. if (wpa_supplicant_ctrl_iface_wps_er_config(wpa_s, buf + 14))
  3381. reply_len = -1;
  3382. #endif /* CONFIG_WPS_ER */
  3383. #endif /* CONFIG_WPS */
  3384. #ifdef CONFIG_IBSS_RSN
  3385. } else if (os_strncmp(buf, "IBSS_RSN ", 9) == 0) {
  3386. if (wpa_supplicant_ctrl_iface_ibss_rsn(wpa_s, buf + 9))
  3387. reply_len = -1;
  3388. #endif /* CONFIG_IBSS_RSN */
  3389. #ifdef CONFIG_P2P
  3390. } else if (os_strncmp(buf, "P2P_FIND ", 9) == 0) {
  3391. if (p2p_ctrl_find(wpa_s, buf + 9))
  3392. reply_len = -1;
  3393. } else if (os_strcmp(buf, "P2P_FIND") == 0) {
  3394. if (p2p_ctrl_find(wpa_s, ""))
  3395. reply_len = -1;
  3396. } else if (os_strcmp(buf, "P2P_STOP_FIND") == 0) {
  3397. wpas_p2p_stop_find(wpa_s);
  3398. } else if (os_strncmp(buf, "P2P_CONNECT ", 12) == 0) {
  3399. reply_len = p2p_ctrl_connect(wpa_s, buf + 12, reply,
  3400. reply_size);
  3401. } else if (os_strncmp(buf, "P2P_LISTEN ", 11) == 0) {
  3402. if (p2p_ctrl_listen(wpa_s, buf + 11))
  3403. reply_len = -1;
  3404. } else if (os_strcmp(buf, "P2P_LISTEN") == 0) {
  3405. if (p2p_ctrl_listen(wpa_s, ""))
  3406. reply_len = -1;
  3407. } else if (os_strncmp(buf, "P2P_GROUP_REMOVE ", 17) == 0) {
  3408. if (wpas_p2p_group_remove(wpa_s, buf + 17))
  3409. reply_len = -1;
  3410. } else if (os_strcmp(buf, "P2P_GROUP_ADD") == 0) {
  3411. if (wpas_p2p_group_add(wpa_s, 0, 0))
  3412. reply_len = -1;
  3413. } else if (os_strncmp(buf, "P2P_GROUP_ADD ", 14) == 0) {
  3414. if (p2p_ctrl_group_add(wpa_s, buf + 14))
  3415. reply_len = -1;
  3416. } else if (os_strncmp(buf, "P2P_PROV_DISC ", 14) == 0) {
  3417. if (p2p_ctrl_prov_disc(wpa_s, buf + 14))
  3418. reply_len = -1;
  3419. } else if (os_strcmp(buf, "P2P_GET_PASSPHRASE") == 0) {
  3420. reply_len = p2p_get_passphrase(wpa_s, reply, reply_size);
  3421. } else if (os_strncmp(buf, "P2P_SERV_DISC_REQ ", 18) == 0) {
  3422. reply_len = p2p_ctrl_serv_disc_req(wpa_s, buf + 18, reply,
  3423. reply_size);
  3424. } else if (os_strncmp(buf, "P2P_SERV_DISC_CANCEL_REQ ", 25) == 0) {
  3425. if (p2p_ctrl_serv_disc_cancel_req(wpa_s, buf + 25) < 0)
  3426. reply_len = -1;
  3427. } else if (os_strncmp(buf, "P2P_SERV_DISC_RESP ", 19) == 0) {
  3428. if (p2p_ctrl_serv_disc_resp(wpa_s, buf + 19) < 0)
  3429. reply_len = -1;
  3430. } else if (os_strcmp(buf, "P2P_SERVICE_UPDATE") == 0) {
  3431. wpas_p2p_sd_service_update(wpa_s);
  3432. } else if (os_strncmp(buf, "P2P_SERV_DISC_EXTERNAL ", 23) == 0) {
  3433. if (p2p_ctrl_serv_disc_external(wpa_s, buf + 23) < 0)
  3434. reply_len = -1;
  3435. } else if (os_strcmp(buf, "P2P_SERVICE_FLUSH") == 0) {
  3436. wpas_p2p_service_flush(wpa_s);
  3437. } else if (os_strncmp(buf, "P2P_SERVICE_ADD ", 16) == 0) {
  3438. if (p2p_ctrl_service_add(wpa_s, buf + 16) < 0)
  3439. reply_len = -1;
  3440. } else if (os_strncmp(buf, "P2P_SERVICE_DEL ", 16) == 0) {
  3441. if (p2p_ctrl_service_del(wpa_s, buf + 16) < 0)
  3442. reply_len = -1;
  3443. } else if (os_strncmp(buf, "P2P_REJECT ", 11) == 0) {
  3444. if (p2p_ctrl_reject(wpa_s, buf + 11) < 0)
  3445. reply_len = -1;
  3446. } else if (os_strncmp(buf, "P2P_INVITE ", 11) == 0) {
  3447. if (p2p_ctrl_invite(wpa_s, buf + 11) < 0)
  3448. reply_len = -1;
  3449. } else if (os_strncmp(buf, "P2P_PEER ", 9) == 0) {
  3450. reply_len = p2p_ctrl_peer(wpa_s, buf + 9, reply,
  3451. reply_size);
  3452. } else if (os_strncmp(buf, "P2P_SET ", 8) == 0) {
  3453. if (p2p_ctrl_set(wpa_s, buf + 8) < 0)
  3454. reply_len = -1;
  3455. } else if (os_strcmp(buf, "P2P_FLUSH") == 0) {
  3456. os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
  3457. wpa_s->force_long_sd = 0;
  3458. if (wpa_s->global->p2p)
  3459. p2p_flush(wpa_s->global->p2p);
  3460. } else if (os_strncmp(buf, "P2P_UNAUTHORIZE ", 16) == 0) {
  3461. if (wpas_p2p_unauthorize(wpa_s, buf + 16) < 0)
  3462. reply_len = -1;
  3463. } else if (os_strcmp(buf, "P2P_CANCEL") == 0) {
  3464. if (wpas_p2p_cancel(wpa_s))
  3465. reply_len = -1;
  3466. } else if (os_strncmp(buf, "P2P_PRESENCE_REQ ", 17) == 0) {
  3467. if (p2p_ctrl_presence_req(wpa_s, buf + 17) < 0)
  3468. reply_len = -1;
  3469. } else if (os_strcmp(buf, "P2P_PRESENCE_REQ") == 0) {
  3470. if (p2p_ctrl_presence_req(wpa_s, "") < 0)
  3471. reply_len = -1;
  3472. } else if (os_strncmp(buf, "P2P_EXT_LISTEN ", 15) == 0) {
  3473. if (p2p_ctrl_ext_listen(wpa_s, buf + 15) < 0)
  3474. reply_len = -1;
  3475. } else if (os_strcmp(buf, "P2P_EXT_LISTEN") == 0) {
  3476. if (p2p_ctrl_ext_listen(wpa_s, "") < 0)
  3477. reply_len = -1;
  3478. #endif /* CONFIG_P2P */
  3479. #ifdef CONFIG_INTERWORKING
  3480. } else if (os_strcmp(buf, "FETCH_ANQP") == 0) {
  3481. if (interworking_fetch_anqp(wpa_s) < 0)
  3482. reply_len = -1;
  3483. } else if (os_strcmp(buf, "STOP_FETCH_ANQP") == 0) {
  3484. interworking_stop_fetch_anqp(wpa_s);
  3485. } else if (os_strncmp(buf, "INTERWORKING_SELECT", 19) == 0) {
  3486. if (interworking_select(wpa_s, os_strstr(buf + 19, "auto") !=
  3487. NULL) < 0)
  3488. reply_len = -1;
  3489. } else if (os_strncmp(buf, "INTERWORKING_CONNECT ", 21) == 0) {
  3490. if (ctrl_interworking_connect(wpa_s, buf + 21) < 0)
  3491. reply_len = -1;
  3492. } else if (os_strncmp(buf, "ANQP_GET ", 9) == 0) {
  3493. if (get_anqp(wpa_s, buf + 9) < 0)
  3494. reply_len = -1;
  3495. #endif /* CONFIG_INTERWORKING */
  3496. } else if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0)
  3497. {
  3498. if (wpa_supplicant_ctrl_iface_ctrl_rsp(
  3499. wpa_s, buf + os_strlen(WPA_CTRL_RSP)))
  3500. reply_len = -1;
  3501. else
  3502. ctrl_rsp = 1;
  3503. } else if (os_strcmp(buf, "RECONFIGURE") == 0) {
  3504. if (wpa_supplicant_reload_configuration(wpa_s))
  3505. reply_len = -1;
  3506. } else if (os_strcmp(buf, "TERMINATE") == 0) {
  3507. wpa_supplicant_terminate_proc(wpa_s->global);
  3508. } else if (os_strncmp(buf, "BSSID ", 6) == 0) {
  3509. if (wpa_supplicant_ctrl_iface_bssid(wpa_s, buf + 6))
  3510. reply_len = -1;
  3511. } else if (os_strncmp(buf, "BLACKLIST", 9) == 0) {
  3512. reply_len = wpa_supplicant_ctrl_iface_blacklist(
  3513. wpa_s, buf + 9, reply, reply_size);
  3514. } else if (os_strncmp(buf, "LOG_LEVEL", 9) == 0) {
  3515. reply_len = wpa_supplicant_ctrl_iface_log_level(
  3516. wpa_s, buf + 9, reply, reply_size);
  3517. } else if (os_strcmp(buf, "LIST_NETWORKS") == 0) {
  3518. reply_len = wpa_supplicant_ctrl_iface_list_networks(
  3519. wpa_s, reply, reply_size);
  3520. } else if (os_strcmp(buf, "DISCONNECT") == 0) {
  3521. #ifdef CONFIG_SME
  3522. wpa_s->sme.prev_bssid_set = 0;
  3523. #endif /* CONFIG_SME */
  3524. wpa_s->reassociate = 0;
  3525. wpa_s->disconnected = 1;
  3526. wpa_supplicant_cancel_sched_scan(wpa_s);
  3527. wpa_supplicant_deauthenticate(wpa_s,
  3528. WLAN_REASON_DEAUTH_LEAVING);
  3529. } else if (os_strcmp(buf, "SCAN") == 0) {
  3530. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
  3531. reply_len = -1;
  3532. else {
  3533. if (!wpa_s->scanning &&
  3534. ((wpa_s->wpa_state <= WPA_SCANNING) ||
  3535. (wpa_s->wpa_state == WPA_COMPLETED))) {
  3536. wpa_s->normal_scans = 0;
  3537. wpa_s->scan_req = 2;
  3538. wpa_supplicant_req_scan(wpa_s, 0, 0);
  3539. } else if (wpa_s->sched_scanning) {
  3540. wpa_printf(MSG_DEBUG, "Stop ongoing "
  3541. "sched_scan to allow requested "
  3542. "full scan to proceed");
  3543. wpa_supplicant_cancel_sched_scan(wpa_s);
  3544. wpa_s->scan_req = 2;
  3545. wpa_supplicant_req_scan(wpa_s, 0, 0);
  3546. } else {
  3547. wpa_printf(MSG_DEBUG, "Ongoing scan action - "
  3548. "reject new request");
  3549. reply_len = os_snprintf(reply, reply_size,
  3550. "FAIL-BUSY\n");
  3551. }
  3552. }
  3553. } else if (os_strcmp(buf, "SCAN_RESULTS") == 0) {
  3554. reply_len = wpa_supplicant_ctrl_iface_scan_results(
  3555. wpa_s, reply, reply_size);
  3556. } else if (os_strncmp(buf, "SELECT_NETWORK ", 15) == 0) {
  3557. if (wpa_supplicant_ctrl_iface_select_network(wpa_s, buf + 15))
  3558. reply_len = -1;
  3559. } else if (os_strncmp(buf, "ENABLE_NETWORK ", 15) == 0) {
  3560. if (wpa_supplicant_ctrl_iface_enable_network(wpa_s, buf + 15))
  3561. reply_len = -1;
  3562. } else if (os_strncmp(buf, "DISABLE_NETWORK ", 16) == 0) {
  3563. if (wpa_supplicant_ctrl_iface_disable_network(wpa_s, buf + 16))
  3564. reply_len = -1;
  3565. } else if (os_strcmp(buf, "ADD_NETWORK") == 0) {
  3566. reply_len = wpa_supplicant_ctrl_iface_add_network(
  3567. wpa_s, reply, reply_size);
  3568. } else if (os_strncmp(buf, "REMOVE_NETWORK ", 15) == 0) {
  3569. if (wpa_supplicant_ctrl_iface_remove_network(wpa_s, buf + 15))
  3570. reply_len = -1;
  3571. } else if (os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
  3572. if (wpa_supplicant_ctrl_iface_set_network(wpa_s, buf + 12))
  3573. reply_len = -1;
  3574. } else if (os_strncmp(buf, "GET_NETWORK ", 12) == 0) {
  3575. reply_len = wpa_supplicant_ctrl_iface_get_network(
  3576. wpa_s, buf + 12, reply, reply_size);
  3577. } else if (os_strcmp(buf, "LIST_CREDS") == 0) {
  3578. reply_len = wpa_supplicant_ctrl_iface_list_creds(
  3579. wpa_s, reply, reply_size);
  3580. } else if (os_strcmp(buf, "ADD_CRED") == 0) {
  3581. reply_len = wpa_supplicant_ctrl_iface_add_cred(
  3582. wpa_s, reply, reply_size);
  3583. } else if (os_strncmp(buf, "REMOVE_CRED ", 12) == 0) {
  3584. if (wpa_supplicant_ctrl_iface_remove_cred(wpa_s, buf + 12))
  3585. reply_len = -1;
  3586. } else if (os_strncmp(buf, "SET_CRED ", 9) == 0) {
  3587. if (wpa_supplicant_ctrl_iface_set_cred(wpa_s, buf + 9))
  3588. reply_len = -1;
  3589. #ifndef CONFIG_NO_CONFIG_WRITE
  3590. } else if (os_strcmp(buf, "SAVE_CONFIG") == 0) {
  3591. if (wpa_supplicant_ctrl_iface_save_config(wpa_s))
  3592. reply_len = -1;
  3593. #endif /* CONFIG_NO_CONFIG_WRITE */
  3594. } else if (os_strncmp(buf, "GET_CAPABILITY ", 15) == 0) {
  3595. reply_len = wpa_supplicant_ctrl_iface_get_capability(
  3596. wpa_s, buf + 15, reply, reply_size);
  3597. } else if (os_strncmp(buf, "AP_SCAN ", 8) == 0) {
  3598. if (wpa_supplicant_ctrl_iface_ap_scan(wpa_s, buf + 8))
  3599. reply_len = -1;
  3600. } else if (os_strncmp(buf, "SCAN_INTERVAL ", 14) == 0) {
  3601. if (wpa_supplicant_ctrl_iface_scan_interval(wpa_s, buf + 14))
  3602. reply_len = -1;
  3603. } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
  3604. reply_len = wpa_supplicant_global_iface_list(
  3605. wpa_s->global, reply, reply_size);
  3606. } else if (os_strcmp(buf, "INTERFACES") == 0) {
  3607. reply_len = wpa_supplicant_global_iface_interfaces(
  3608. wpa_s->global, reply, reply_size);
  3609. } else if (os_strncmp(buf, "BSS ", 4) == 0) {
  3610. reply_len = wpa_supplicant_ctrl_iface_bss(
  3611. wpa_s, buf + 4, reply, reply_size);
  3612. #ifdef CONFIG_AP
  3613. } else if (os_strcmp(buf, "STA-FIRST") == 0) {
  3614. reply_len = ap_ctrl_iface_sta_first(wpa_s, reply, reply_size);
  3615. } else if (os_strncmp(buf, "STA ", 4) == 0) {
  3616. reply_len = ap_ctrl_iface_sta(wpa_s, buf + 4, reply,
  3617. reply_size);
  3618. } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
  3619. reply_len = ap_ctrl_iface_sta_next(wpa_s, buf + 9, reply,
  3620. reply_size);
  3621. } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
  3622. if (ap_ctrl_iface_sta_deauthenticate(wpa_s, buf + 15))
  3623. reply_len = -1;
  3624. } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
  3625. if (ap_ctrl_iface_sta_disassociate(wpa_s, buf + 13))
  3626. reply_len = -1;
  3627. #endif /* CONFIG_AP */
  3628. } else if (os_strcmp(buf, "SUSPEND") == 0) {
  3629. wpas_notify_suspend(wpa_s->global);
  3630. } else if (os_strcmp(buf, "RESUME") == 0) {
  3631. wpas_notify_resume(wpa_s->global);
  3632. } else if (os_strcmp(buf, "DROP_SA") == 0) {
  3633. wpa_supplicant_ctrl_iface_drop_sa(wpa_s);
  3634. } else if (os_strncmp(buf, "ROAM ", 5) == 0) {
  3635. if (wpa_supplicant_ctrl_iface_roam(wpa_s, buf + 5))
  3636. reply_len = -1;
  3637. } else if (os_strncmp(buf, "STA_AUTOCONNECT ", 16) == 0) {
  3638. if (wpa_supplicant_ctrl_iface_sta_autoconnect(wpa_s, buf + 16))
  3639. reply_len = -1;
  3640. } else if (os_strncmp(buf, "BSS_EXPIRE_AGE ", 15) == 0) {
  3641. if (wpa_supplicant_ctrl_iface_bss_expire_age(wpa_s, buf + 15))
  3642. reply_len = -1;
  3643. } else if (os_strncmp(buf, "BSS_EXPIRE_COUNT ", 17) == 0) {
  3644. if (wpa_supplicant_ctrl_iface_bss_expire_count(wpa_s,
  3645. buf + 17))
  3646. reply_len = -1;
  3647. #ifdef CONFIG_TDLS
  3648. } else if (os_strncmp(buf, "TDLS_DISCOVER ", 14) == 0) {
  3649. if (wpa_supplicant_ctrl_iface_tdls_discover(wpa_s, buf + 14))
  3650. reply_len = -1;
  3651. } else if (os_strncmp(buf, "TDLS_SETUP ", 11) == 0) {
  3652. if (wpa_supplicant_ctrl_iface_tdls_setup(wpa_s, buf + 11))
  3653. reply_len = -1;
  3654. } else if (os_strncmp(buf, "TDLS_TEARDOWN ", 14) == 0) {
  3655. if (wpa_supplicant_ctrl_iface_tdls_teardown(wpa_s, buf + 14))
  3656. reply_len = -1;
  3657. #endif /* CONFIG_TDLS */
  3658. } else if (os_strncmp(buf, "SIGNAL_POLL", 11) == 0) {
  3659. reply_len = wpa_supplicant_signal_poll(wpa_s, reply,
  3660. reply_size);
  3661. } else if (os_strcmp(buf, "REAUTHENTICATE") == 0) {
  3662. eapol_sm_request_reauth(wpa_s->eapol);
  3663. } else {
  3664. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  3665. reply_len = 16;
  3666. }
  3667. if (reply_len < 0) {
  3668. os_memcpy(reply, "FAIL\n", 5);
  3669. reply_len = 5;
  3670. }
  3671. if (ctrl_rsp)
  3672. eapol_sm_notify_ctrl_response(wpa_s->eapol);
  3673. *resp_len = reply_len;
  3674. return reply;
  3675. }
  3676. static int wpa_supplicant_global_iface_add(struct wpa_global *global,
  3677. char *cmd)
  3678. {
  3679. struct wpa_interface iface;
  3680. char *pos;
  3681. /*
  3682. * <ifname>TAB<confname>TAB<driver>TAB<ctrl_interface>TAB<driver_param>
  3683. * TAB<bridge_ifname>
  3684. */
  3685. wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_ADD '%s'", cmd);
  3686. os_memset(&iface, 0, sizeof(iface));
  3687. do {
  3688. iface.ifname = pos = cmd;
  3689. pos = os_strchr(pos, '\t');
  3690. if (pos)
  3691. *pos++ = '\0';
  3692. if (iface.ifname[0] == '\0')
  3693. return -1;
  3694. if (pos == NULL)
  3695. break;
  3696. iface.confname = pos;
  3697. pos = os_strchr(pos, '\t');
  3698. if (pos)
  3699. *pos++ = '\0';
  3700. if (iface.confname[0] == '\0')
  3701. iface.confname = NULL;
  3702. if (pos == NULL)
  3703. break;
  3704. iface.driver = pos;
  3705. pos = os_strchr(pos, '\t');
  3706. if (pos)
  3707. *pos++ = '\0';
  3708. if (iface.driver[0] == '\0')
  3709. iface.driver = NULL;
  3710. if (pos == NULL)
  3711. break;
  3712. iface.ctrl_interface = pos;
  3713. pos = os_strchr(pos, '\t');
  3714. if (pos)
  3715. *pos++ = '\0';
  3716. if (iface.ctrl_interface[0] == '\0')
  3717. iface.ctrl_interface = NULL;
  3718. if (pos == NULL)
  3719. break;
  3720. iface.driver_param = pos;
  3721. pos = os_strchr(pos, '\t');
  3722. if (pos)
  3723. *pos++ = '\0';
  3724. if (iface.driver_param[0] == '\0')
  3725. iface.driver_param = NULL;
  3726. if (pos == NULL)
  3727. break;
  3728. iface.bridge_ifname = pos;
  3729. pos = os_strchr(pos, '\t');
  3730. if (pos)
  3731. *pos++ = '\0';
  3732. if (iface.bridge_ifname[0] == '\0')
  3733. iface.bridge_ifname = NULL;
  3734. if (pos == NULL)
  3735. break;
  3736. } while (0);
  3737. if (wpa_supplicant_get_iface(global, iface.ifname))
  3738. return -1;
  3739. return wpa_supplicant_add_iface(global, &iface) ? 0 : -1;
  3740. }
  3741. static int wpa_supplicant_global_iface_remove(struct wpa_global *global,
  3742. char *cmd)
  3743. {
  3744. struct wpa_supplicant *wpa_s;
  3745. wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_REMOVE '%s'", cmd);
  3746. wpa_s = wpa_supplicant_get_iface(global, cmd);
  3747. if (wpa_s == NULL)
  3748. return -1;
  3749. return wpa_supplicant_remove_iface(global, wpa_s, 0);
  3750. }
  3751. static void wpa_free_iface_info(struct wpa_interface_info *iface)
  3752. {
  3753. struct wpa_interface_info *prev;
  3754. while (iface) {
  3755. prev = iface;
  3756. iface = iface->next;
  3757. os_free(prev->ifname);
  3758. os_free(prev->desc);
  3759. os_free(prev);
  3760. }
  3761. }
  3762. static int wpa_supplicant_global_iface_list(struct wpa_global *global,
  3763. char *buf, int len)
  3764. {
  3765. int i, res;
  3766. struct wpa_interface_info *iface = NULL, *last = NULL, *tmp;
  3767. char *pos, *end;
  3768. for (i = 0; wpa_drivers[i]; i++) {
  3769. struct wpa_driver_ops *drv = wpa_drivers[i];
  3770. if (drv->get_interfaces == NULL)
  3771. continue;
  3772. tmp = drv->get_interfaces(global->drv_priv[i]);
  3773. if (tmp == NULL)
  3774. continue;
  3775. if (last == NULL)
  3776. iface = last = tmp;
  3777. else
  3778. last->next = tmp;
  3779. while (last->next)
  3780. last = last->next;
  3781. }
  3782. pos = buf;
  3783. end = buf + len;
  3784. for (tmp = iface; tmp; tmp = tmp->next) {
  3785. res = os_snprintf(pos, end - pos, "%s\t%s\t%s\n",
  3786. tmp->drv_name, tmp->ifname,
  3787. tmp->desc ? tmp->desc : "");
  3788. if (res < 0 || res >= end - pos) {
  3789. *pos = '\0';
  3790. break;
  3791. }
  3792. pos += res;
  3793. }
  3794. wpa_free_iface_info(iface);
  3795. return pos - buf;
  3796. }
  3797. static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
  3798. char *buf, int len)
  3799. {
  3800. int res;
  3801. char *pos, *end;
  3802. struct wpa_supplicant *wpa_s;
  3803. wpa_s = global->ifaces;
  3804. pos = buf;
  3805. end = buf + len;
  3806. while (wpa_s) {
  3807. res = os_snprintf(pos, end - pos, "%s\n", wpa_s->ifname);
  3808. if (res < 0 || res >= end - pos) {
  3809. *pos = '\0';
  3810. break;
  3811. }
  3812. pos += res;
  3813. wpa_s = wpa_s->next;
  3814. }
  3815. return pos - buf;
  3816. }
  3817. char * wpa_supplicant_global_ctrl_iface_process(struct wpa_global *global,
  3818. char *buf, size_t *resp_len)
  3819. {
  3820. char *reply;
  3821. const int reply_size = 2048;
  3822. int reply_len;
  3823. int level = MSG_DEBUG;
  3824. if (os_strcmp(buf, "PING") == 0)
  3825. level = MSG_EXCESSIVE;
  3826. wpa_hexdump_ascii(level, "RX global ctrl_iface",
  3827. (const u8 *) buf, os_strlen(buf));
  3828. reply = os_malloc(reply_size);
  3829. if (reply == NULL) {
  3830. *resp_len = 1;
  3831. return NULL;
  3832. }
  3833. os_memcpy(reply, "OK\n", 3);
  3834. reply_len = 3;
  3835. if (os_strcmp(buf, "PING") == 0) {
  3836. os_memcpy(reply, "PONG\n", 5);
  3837. reply_len = 5;
  3838. } else if (os_strncmp(buf, "INTERFACE_ADD ", 14) == 0) {
  3839. if (wpa_supplicant_global_iface_add(global, buf + 14))
  3840. reply_len = -1;
  3841. } else if (os_strncmp(buf, "INTERFACE_REMOVE ", 17) == 0) {
  3842. if (wpa_supplicant_global_iface_remove(global, buf + 17))
  3843. reply_len = -1;
  3844. } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
  3845. reply_len = wpa_supplicant_global_iface_list(
  3846. global, reply, reply_size);
  3847. } else if (os_strcmp(buf, "INTERFACES") == 0) {
  3848. reply_len = wpa_supplicant_global_iface_interfaces(
  3849. global, reply, reply_size);
  3850. } else if (os_strcmp(buf, "TERMINATE") == 0) {
  3851. wpa_supplicant_terminate_proc(global);
  3852. } else if (os_strcmp(buf, "SUSPEND") == 0) {
  3853. wpas_notify_suspend(global);
  3854. } else if (os_strcmp(buf, "RESUME") == 0) {
  3855. wpas_notify_resume(global);
  3856. } else {
  3857. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  3858. reply_len = 16;
  3859. }
  3860. if (reply_len < 0) {
  3861. os_memcpy(reply, "FAIL\n", 5);
  3862. reply_len = 5;
  3863. }
  3864. *resp_len = reply_len;
  3865. return reply;
  3866. }