ctrl_iface.c 113 KB

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