ctrl_iface.c 119 KB

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