ctrl_iface.c 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546
  1. /*
  2. * WPA Supplicant / Control interface (shared code for all backends)
  3. * Copyright (c) 2004-2010, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "utils/includes.h"
  15. #include "utils/common.h"
  16. #include "utils/eloop.h"
  17. #include "common/version.h"
  18. #include "common/ieee802_11_defs.h"
  19. #include "common/wpa_ctrl.h"
  20. #include "eap_peer/eap.h"
  21. #include "eapol_supp/eapol_supp_sm.h"
  22. #include "rsn_supp/wpa.h"
  23. #include "rsn_supp/preauth.h"
  24. #include "rsn_supp/pmksa_cache.h"
  25. #include "l2_packet/l2_packet.h"
  26. #include "wps/wps.h"
  27. #include "config.h"
  28. #include "wpa_supplicant_i.h"
  29. #include "driver_i.h"
  30. #include "wps_supplicant.h"
  31. #include "ibss_rsn.h"
  32. #include "ap.h"
  33. #include "p2p_supplicant.h"
  34. #include "p2p/p2p.h"
  35. #include "notify.h"
  36. #include "bss.h"
  37. #include "scan.h"
  38. #include "ctrl_iface.h"
  39. extern struct wpa_driver_ops *wpa_drivers[];
  40. static int wpa_supplicant_global_iface_list(struct wpa_global *global,
  41. char *buf, int len);
  42. static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
  43. char *buf, int len);
  44. static int wpa_supplicant_ctrl_iface_set(struct wpa_supplicant *wpa_s,
  45. char *cmd)
  46. {
  47. char *value;
  48. int ret = 0;
  49. value = os_strchr(cmd, ' ');
  50. if (value == NULL)
  51. return -1;
  52. *value++ = '\0';
  53. wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
  54. if (os_strcasecmp(cmd, "EAPOL::heldPeriod") == 0) {
  55. eapol_sm_configure(wpa_s->eapol,
  56. atoi(value), -1, -1, -1);
  57. } else if (os_strcasecmp(cmd, "EAPOL::authPeriod") == 0) {
  58. eapol_sm_configure(wpa_s->eapol,
  59. -1, atoi(value), -1, -1);
  60. } else if (os_strcasecmp(cmd, "EAPOL::startPeriod") == 0) {
  61. eapol_sm_configure(wpa_s->eapol,
  62. -1, -1, atoi(value), -1);
  63. } else if (os_strcasecmp(cmd, "EAPOL::maxStart") == 0) {
  64. eapol_sm_configure(wpa_s->eapol,
  65. -1, -1, -1, atoi(value));
  66. } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKLifetime") == 0) {
  67. if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME,
  68. atoi(value)))
  69. ret = -1;
  70. } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKReauthThreshold") ==
  71. 0) {
  72. if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD,
  73. atoi(value)))
  74. ret = -1;
  75. } else if (os_strcasecmp(cmd, "dot11RSNAConfigSATimeout") == 0) {
  76. if (wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT, atoi(value)))
  77. ret = -1;
  78. } else if (os_strcasecmp(cmd, "wps_fragment_size") == 0) {
  79. wpa_s->wps_fragment_size = atoi(value);
  80. #ifdef CONFIG_WPS_TESTING
  81. } else if (os_strcasecmp(cmd, "wps_version_number") == 0) {
  82. long int val;
  83. val = strtol(value, NULL, 0);
  84. if (val < 0 || val > 0xff) {
  85. ret = -1;
  86. wpa_printf(MSG_DEBUG, "WPS: Invalid "
  87. "wps_version_number %ld", val);
  88. } else {
  89. wps_version_number = val;
  90. wpa_printf(MSG_DEBUG, "WPS: Testing - force WPS "
  91. "version %u.%u",
  92. (wps_version_number & 0xf0) >> 4,
  93. wps_version_number & 0x0f);
  94. }
  95. } else if (os_strcasecmp(cmd, "wps_testing_dummy_cred") == 0) {
  96. wps_testing_dummy_cred = atoi(value);
  97. wpa_printf(MSG_DEBUG, "WPS: Testing - dummy_cred=%d",
  98. wps_testing_dummy_cred);
  99. #endif /* CONFIG_WPS_TESTING */
  100. } else if (os_strcasecmp(cmd, "ampdu") == 0) {
  101. if (wpa_drv_ampdu(wpa_s, atoi(value)) < 0)
  102. ret = -1;
  103. #ifdef CONFIG_TDLS_TESTING
  104. } else if (os_strcasecmp(cmd, "tdls_testing") == 0) {
  105. extern unsigned int tdls_testing;
  106. tdls_testing = strtol(value, NULL, 0);
  107. wpa_printf(MSG_DEBUG, "TDLS: tdls_testing=0x%x", tdls_testing);
  108. #endif /* CONFIG_TDLS_TESTING */
  109. #ifdef CONFIG_TDLS
  110. } else if (os_strcasecmp(cmd, "tdls_disabled") == 0) {
  111. int disabled = atoi(value);
  112. wpa_printf(MSG_DEBUG, "TDLS: tdls_disabled=%d", disabled);
  113. if (disabled) {
  114. if (wpa_drv_tdls_oper(wpa_s, TDLS_DISABLE, NULL) < 0)
  115. ret = -1;
  116. } else if (wpa_drv_tdls_oper(wpa_s, TDLS_ENABLE, NULL) < 0)
  117. ret = -1;
  118. wpa_tdls_enable(wpa_s->wpa, !disabled);
  119. #endif /* CONFIG_TDLS */
  120. } else {
  121. value[-1] = '=';
  122. ret = wpa_config_process_global(wpa_s->conf, cmd, -1);
  123. if (ret == 0)
  124. wpa_supplicant_update_config(wpa_s);
  125. }
  126. return ret;
  127. }
  128. static int wpa_supplicant_ctrl_iface_get(struct wpa_supplicant *wpa_s,
  129. char *cmd, char *buf, size_t buflen)
  130. {
  131. int res;
  132. wpa_printf(MSG_DEBUG, "CTRL_IFACE GET '%s'", cmd);
  133. if (os_strcmp(cmd, "version") == 0) {
  134. res = os_snprintf(buf, buflen, "%s", VERSION_STR);
  135. if (res < 0 || (unsigned int) res >= buflen)
  136. return -1;
  137. return res;
  138. }
  139. return -1;
  140. }
  141. #ifdef IEEE8021X_EAPOL
  142. static int wpa_supplicant_ctrl_iface_preauth(struct wpa_supplicant *wpa_s,
  143. char *addr)
  144. {
  145. u8 bssid[ETH_ALEN];
  146. struct wpa_ssid *ssid = wpa_s->current_ssid;
  147. if (hwaddr_aton(addr, bssid)) {
  148. wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH: invalid address "
  149. "'%s'", addr);
  150. return -1;
  151. }
  152. wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH " MACSTR, MAC2STR(bssid));
  153. rsn_preauth_deinit(wpa_s->wpa);
  154. if (rsn_preauth_init(wpa_s->wpa, bssid, ssid ? &ssid->eap : NULL))
  155. return -1;
  156. return 0;
  157. }
  158. #endif /* IEEE8021X_EAPOL */
  159. #ifdef CONFIG_PEERKEY
  160. /* MLME-STKSTART.request(peer) */
  161. static int wpa_supplicant_ctrl_iface_stkstart(
  162. struct wpa_supplicant *wpa_s, char *addr)
  163. {
  164. u8 peer[ETH_ALEN];
  165. if (hwaddr_aton(addr, peer)) {
  166. wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART: invalid "
  167. "address '%s'", addr);
  168. return -1;
  169. }
  170. wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART " MACSTR,
  171. MAC2STR(peer));
  172. return wpa_sm_stkstart(wpa_s->wpa, peer);
  173. }
  174. #endif /* CONFIG_PEERKEY */
  175. #ifdef CONFIG_TDLS
  176. static int wpa_supplicant_ctrl_iface_tdls_discover(
  177. struct wpa_supplicant *wpa_s, char *addr)
  178. {
  179. u8 peer[ETH_ALEN];
  180. if (hwaddr_aton(addr, peer)) {
  181. wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_DISCOVER: invalid "
  182. "address '%s'", addr);
  183. return -1;
  184. }
  185. wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_DISCOVER " MACSTR,
  186. MAC2STR(peer));
  187. return wpa_drv_tdls_oper(wpa_s, TDLS_DISCOVERY_REQ, peer);
  188. }
  189. static int wpa_supplicant_ctrl_iface_tdls_setup(
  190. struct wpa_supplicant *wpa_s, char *addr)
  191. {
  192. u8 peer[ETH_ALEN];
  193. int ret;
  194. if (hwaddr_aton(addr, peer)) {
  195. wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_SETUP: invalid "
  196. "address '%s'", addr);
  197. return -1;
  198. }
  199. wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_SETUP " MACSTR,
  200. MAC2STR(peer));
  201. ret = wpa_tdls_reneg(wpa_s->wpa, peer);
  202. if (ret)
  203. ret = wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, peer);
  204. return ret;
  205. }
  206. static int wpa_supplicant_ctrl_iface_tdls_teardown(
  207. struct wpa_supplicant *wpa_s, char *addr)
  208. {
  209. u8 peer[ETH_ALEN];
  210. if (hwaddr_aton(addr, peer)) {
  211. wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN: invalid "
  212. "address '%s'", addr);
  213. return -1;
  214. }
  215. wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN " MACSTR,
  216. MAC2STR(peer));
  217. return wpa_drv_tdls_oper(wpa_s, TDLS_TEARDOWN, peer);
  218. }
  219. #endif /* CONFIG_TDLS */
  220. #ifdef CONFIG_IEEE80211R
  221. static int wpa_supplicant_ctrl_iface_ft_ds(
  222. struct wpa_supplicant *wpa_s, char *addr)
  223. {
  224. u8 target_ap[ETH_ALEN];
  225. struct wpa_bss *bss;
  226. const u8 *mdie;
  227. if (hwaddr_aton(addr, target_ap)) {
  228. wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS: invalid "
  229. "address '%s'", addr);
  230. return -1;
  231. }
  232. wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS " MACSTR, MAC2STR(target_ap));
  233. bss = wpa_bss_get_bssid(wpa_s, target_ap);
  234. if (bss)
  235. mdie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
  236. else
  237. mdie = NULL;
  238. return wpa_ft_start_over_ds(wpa_s->wpa, target_ap, mdie);
  239. }
  240. #endif /* CONFIG_IEEE80211R */
  241. #ifdef CONFIG_WPS
  242. static int wpa_supplicant_ctrl_iface_wps_pbc(struct wpa_supplicant *wpa_s,
  243. char *cmd)
  244. {
  245. u8 bssid[ETH_ALEN], *_bssid = bssid;
  246. #ifdef CONFIG_P2P
  247. u8 p2p_dev_addr[ETH_ALEN];
  248. #endif /* CONFIG_P2P */
  249. #ifdef CONFIG_AP
  250. u8 *_p2p_dev_addr = NULL;
  251. #endif /* CONFIG_AP */
  252. if (cmd == NULL || os_strcmp(cmd, "any") == 0) {
  253. _bssid = NULL;
  254. #ifdef CONFIG_P2P
  255. } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
  256. if (hwaddr_aton(cmd + 13, p2p_dev_addr)) {
  257. wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid "
  258. "P2P Device Address '%s'",
  259. cmd + 13);
  260. return -1;
  261. }
  262. _p2p_dev_addr = p2p_dev_addr;
  263. #endif /* CONFIG_P2P */
  264. } else if (hwaddr_aton(cmd, bssid)) {
  265. wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid BSSID '%s'",
  266. cmd);
  267. return -1;
  268. }
  269. #ifdef CONFIG_AP
  270. if (wpa_s->ap_iface)
  271. return wpa_supplicant_ap_wps_pbc(wpa_s, _bssid, _p2p_dev_addr);
  272. #endif /* CONFIG_AP */
  273. return wpas_wps_start_pbc(wpa_s, _bssid, 0);
  274. }
  275. static int wpa_supplicant_ctrl_iface_wps_pin(struct wpa_supplicant *wpa_s,
  276. char *cmd, char *buf,
  277. size_t buflen)
  278. {
  279. u8 bssid[ETH_ALEN], *_bssid = bssid;
  280. char *pin;
  281. int ret;
  282. pin = os_strchr(cmd, ' ');
  283. if (pin)
  284. *pin++ = '\0';
  285. if (os_strcmp(cmd, "any") == 0)
  286. _bssid = NULL;
  287. else if (os_strcmp(cmd, "get") == 0) {
  288. ret = wps_generate_pin();
  289. goto done;
  290. } else if (hwaddr_aton(cmd, bssid)) {
  291. wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PIN: invalid BSSID '%s'",
  292. cmd);
  293. return -1;
  294. }
  295. #ifdef CONFIG_AP
  296. if (wpa_s->ap_iface)
  297. return wpa_supplicant_ap_wps_pin(wpa_s, _bssid, pin,
  298. buf, buflen);
  299. #endif /* CONFIG_AP */
  300. if (pin) {
  301. ret = wpas_wps_start_pin(wpa_s, _bssid, pin, 0,
  302. DEV_PW_DEFAULT);
  303. if (ret < 0)
  304. return -1;
  305. ret = os_snprintf(buf, buflen, "%s", pin);
  306. if (ret < 0 || (size_t) ret >= buflen)
  307. return -1;
  308. return ret;
  309. }
  310. ret = wpas_wps_start_pin(wpa_s, _bssid, NULL, 0, DEV_PW_DEFAULT);
  311. if (ret < 0)
  312. return -1;
  313. done:
  314. /* Return the generated PIN */
  315. ret = os_snprintf(buf, buflen, "%08d", ret);
  316. if (ret < 0 || (size_t) ret >= buflen)
  317. return -1;
  318. return ret;
  319. }
  320. static int wpa_supplicant_ctrl_iface_wps_check_pin(
  321. struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
  322. {
  323. char pin[9];
  324. size_t len;
  325. char *pos;
  326. int ret;
  327. wpa_hexdump_ascii_key(MSG_DEBUG, "WPS_CHECK_PIN",
  328. (u8 *) cmd, os_strlen(cmd));
  329. for (pos = cmd, len = 0; *pos != '\0'; pos++) {
  330. if (*pos < '0' || *pos > '9')
  331. continue;
  332. pin[len++] = *pos;
  333. if (len == 9) {
  334. wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
  335. return -1;
  336. }
  337. }
  338. if (len != 4 && len != 8) {
  339. wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
  340. return -1;
  341. }
  342. pin[len] = '\0';
  343. if (len == 8) {
  344. unsigned int pin_val;
  345. pin_val = atoi(pin);
  346. if (!wps_pin_valid(pin_val)) {
  347. wpa_printf(MSG_DEBUG, "WPS: Invalid checksum digit");
  348. ret = os_snprintf(buf, buflen, "FAIL-CHECKSUM\n");
  349. if (ret < 0 || (size_t) ret >= buflen)
  350. return -1;
  351. return ret;
  352. }
  353. }
  354. ret = os_snprintf(buf, buflen, "%s", pin);
  355. if (ret < 0 || (size_t) ret >= buflen)
  356. return -1;
  357. return ret;
  358. }
  359. #ifdef CONFIG_WPS_OOB
  360. static int wpa_supplicant_ctrl_iface_wps_oob(struct wpa_supplicant *wpa_s,
  361. char *cmd)
  362. {
  363. char *path, *method, *name;
  364. path = os_strchr(cmd, ' ');
  365. if (path == NULL)
  366. return -1;
  367. *path++ = '\0';
  368. method = os_strchr(path, ' ');
  369. if (method == NULL)
  370. return -1;
  371. *method++ = '\0';
  372. name = os_strchr(method, ' ');
  373. if (name != NULL)
  374. *name++ = '\0';
  375. return wpas_wps_start_oob(wpa_s, cmd, path, method, name);
  376. }
  377. #endif /* CONFIG_WPS_OOB */
  378. static int wpa_supplicant_ctrl_iface_wps_reg(struct wpa_supplicant *wpa_s,
  379. char *cmd)
  380. {
  381. u8 bssid[ETH_ALEN];
  382. char *pin;
  383. char *new_ssid;
  384. char *new_auth;
  385. char *new_encr;
  386. char *new_key;
  387. struct wps_new_ap_settings ap;
  388. pin = os_strchr(cmd, ' ');
  389. if (pin == NULL)
  390. return -1;
  391. *pin++ = '\0';
  392. if (hwaddr_aton(cmd, bssid)) {
  393. wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_REG: invalid BSSID '%s'",
  394. cmd);
  395. return -1;
  396. }
  397. new_ssid = os_strchr(pin, ' ');
  398. if (new_ssid == NULL)
  399. return wpas_wps_start_reg(wpa_s, bssid, pin, NULL);
  400. *new_ssid++ = '\0';
  401. new_auth = os_strchr(new_ssid, ' ');
  402. if (new_auth == NULL)
  403. return -1;
  404. *new_auth++ = '\0';
  405. new_encr = os_strchr(new_auth, ' ');
  406. if (new_encr == NULL)
  407. return -1;
  408. *new_encr++ = '\0';
  409. new_key = os_strchr(new_encr, ' ');
  410. if (new_key == NULL)
  411. return -1;
  412. *new_key++ = '\0';
  413. os_memset(&ap, 0, sizeof(ap));
  414. ap.ssid_hex = new_ssid;
  415. ap.auth = new_auth;
  416. ap.encr = new_encr;
  417. ap.key_hex = new_key;
  418. return wpas_wps_start_reg(wpa_s, bssid, pin, &ap);
  419. }
  420. #ifdef CONFIG_AP
  421. static int wpa_supplicant_ctrl_iface_wps_ap_pin(struct wpa_supplicant *wpa_s,
  422. char *cmd, char *buf,
  423. size_t buflen)
  424. {
  425. int timeout = 300;
  426. char *pos;
  427. const char *pin_txt;
  428. if (!wpa_s->ap_iface)
  429. return -1;
  430. pos = os_strchr(cmd, ' ');
  431. if (pos)
  432. *pos++ = '\0';
  433. if (os_strcmp(cmd, "disable") == 0) {
  434. wpas_wps_ap_pin_disable(wpa_s);
  435. return os_snprintf(buf, buflen, "OK\n");
  436. }
  437. if (os_strcmp(cmd, "random") == 0) {
  438. if (pos)
  439. timeout = atoi(pos);
  440. pin_txt = wpas_wps_ap_pin_random(wpa_s, timeout);
  441. if (pin_txt == NULL)
  442. return -1;
  443. return os_snprintf(buf, buflen, "%s", pin_txt);
  444. }
  445. if (os_strcmp(cmd, "get") == 0) {
  446. pin_txt = wpas_wps_ap_pin_get(wpa_s);
  447. if (pin_txt == NULL)
  448. return -1;
  449. return os_snprintf(buf, buflen, "%s", pin_txt);
  450. }
  451. if (os_strcmp(cmd, "set") == 0) {
  452. char *pin;
  453. if (pos == NULL)
  454. return -1;
  455. pin = pos;
  456. pos = os_strchr(pos, ' ');
  457. if (pos) {
  458. *pos++ = '\0';
  459. timeout = atoi(pos);
  460. }
  461. if (os_strlen(pin) > buflen)
  462. return -1;
  463. if (wpas_wps_ap_pin_set(wpa_s, pin, timeout) < 0)
  464. return -1;
  465. return os_snprintf(buf, buflen, "%s", pin);
  466. }
  467. return -1;
  468. }
  469. #endif /* CONFIG_AP */
  470. #ifdef CONFIG_WPS_ER
  471. static int wpa_supplicant_ctrl_iface_wps_er_pin(struct wpa_supplicant *wpa_s,
  472. char *cmd)
  473. {
  474. char *uuid = cmd, *pin, *pos;
  475. u8 addr_buf[ETH_ALEN], *addr = NULL;
  476. pin = os_strchr(uuid, ' ');
  477. if (pin == NULL)
  478. return -1;
  479. *pin++ = '\0';
  480. pos = os_strchr(pin, ' ');
  481. if (pos) {
  482. *pos++ = '\0';
  483. if (hwaddr_aton(pos, addr_buf) == 0)
  484. addr = addr_buf;
  485. }
  486. return wpas_wps_er_add_pin(wpa_s, addr, uuid, pin);
  487. }
  488. static int wpa_supplicant_ctrl_iface_wps_er_learn(struct wpa_supplicant *wpa_s,
  489. char *cmd)
  490. {
  491. char *uuid = cmd, *pin;
  492. pin = os_strchr(uuid, ' ');
  493. if (pin == NULL)
  494. return -1;
  495. *pin++ = '\0';
  496. return wpas_wps_er_learn(wpa_s, uuid, pin);
  497. }
  498. static int wpa_supplicant_ctrl_iface_wps_er_set_config(
  499. struct wpa_supplicant *wpa_s, char *cmd)
  500. {
  501. char *uuid = cmd, *id;
  502. id = os_strchr(uuid, ' ');
  503. if (id == NULL)
  504. return -1;
  505. *id++ = '\0';
  506. return wpas_wps_er_set_config(wpa_s, uuid, atoi(id));
  507. }
  508. static int wpa_supplicant_ctrl_iface_wps_er_config(
  509. struct wpa_supplicant *wpa_s, char *cmd)
  510. {
  511. char *pin;
  512. char *new_ssid;
  513. char *new_auth;
  514. char *new_encr;
  515. char *new_key;
  516. struct wps_new_ap_settings ap;
  517. pin = os_strchr(cmd, ' ');
  518. if (pin == NULL)
  519. return -1;
  520. *pin++ = '\0';
  521. new_ssid = os_strchr(pin, ' ');
  522. if (new_ssid == NULL)
  523. return -1;
  524. *new_ssid++ = '\0';
  525. new_auth = os_strchr(new_ssid, ' ');
  526. if (new_auth == NULL)
  527. return -1;
  528. *new_auth++ = '\0';
  529. new_encr = os_strchr(new_auth, ' ');
  530. if (new_encr == NULL)
  531. return -1;
  532. *new_encr++ = '\0';
  533. new_key = os_strchr(new_encr, ' ');
  534. if (new_key == NULL)
  535. return -1;
  536. *new_key++ = '\0';
  537. os_memset(&ap, 0, sizeof(ap));
  538. ap.ssid_hex = new_ssid;
  539. ap.auth = new_auth;
  540. ap.encr = new_encr;
  541. ap.key_hex = new_key;
  542. return wpas_wps_er_config(wpa_s, cmd, pin, &ap);
  543. }
  544. #endif /* CONFIG_WPS_ER */
  545. #endif /* CONFIG_WPS */
  546. #ifdef CONFIG_IBSS_RSN
  547. static int wpa_supplicant_ctrl_iface_ibss_rsn(
  548. struct wpa_supplicant *wpa_s, char *addr)
  549. {
  550. u8 peer[ETH_ALEN];
  551. if (hwaddr_aton(addr, peer)) {
  552. wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN: invalid "
  553. "address '%s'", addr);
  554. return -1;
  555. }
  556. wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN " MACSTR,
  557. MAC2STR(peer));
  558. return ibss_rsn_start(wpa_s->ibss_rsn, peer);
  559. }
  560. #endif /* CONFIG_IBSS_RSN */
  561. static int wpa_supplicant_ctrl_iface_ctrl_rsp(struct wpa_supplicant *wpa_s,
  562. char *rsp)
  563. {
  564. #ifdef IEEE8021X_EAPOL
  565. char *pos, *id_pos;
  566. int id;
  567. struct wpa_ssid *ssid;
  568. struct eap_peer_config *eap;
  569. pos = os_strchr(rsp, '-');
  570. if (pos == NULL)
  571. return -1;
  572. *pos++ = '\0';
  573. id_pos = pos;
  574. pos = os_strchr(pos, ':');
  575. if (pos == NULL)
  576. return -1;
  577. *pos++ = '\0';
  578. id = atoi(id_pos);
  579. wpa_printf(MSG_DEBUG, "CTRL_IFACE: field=%s id=%d", rsp, id);
  580. wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
  581. (u8 *) pos, os_strlen(pos));
  582. ssid = wpa_config_get_network(wpa_s->conf, id);
  583. if (ssid == NULL) {
  584. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
  585. "to update", id);
  586. return -1;
  587. }
  588. eap = &ssid->eap;
  589. if (os_strcmp(rsp, "IDENTITY") == 0) {
  590. os_free(eap->identity);
  591. eap->identity = (u8 *) os_strdup(pos);
  592. eap->identity_len = os_strlen(pos);
  593. eap->pending_req_identity = 0;
  594. if (ssid == wpa_s->current_ssid)
  595. wpa_s->reassociate = 1;
  596. } else if (os_strcmp(rsp, "PASSWORD") == 0) {
  597. os_free(eap->password);
  598. eap->password = (u8 *) os_strdup(pos);
  599. eap->password_len = os_strlen(pos);
  600. eap->pending_req_password = 0;
  601. if (ssid == wpa_s->current_ssid)
  602. wpa_s->reassociate = 1;
  603. } else if (os_strcmp(rsp, "NEW_PASSWORD") == 0) {
  604. os_free(eap->new_password);
  605. eap->new_password = (u8 *) os_strdup(pos);
  606. eap->new_password_len = os_strlen(pos);
  607. eap->pending_req_new_password = 0;
  608. if (ssid == wpa_s->current_ssid)
  609. wpa_s->reassociate = 1;
  610. } else if (os_strcmp(rsp, "PIN") == 0) {
  611. os_free(eap->pin);
  612. eap->pin = os_strdup(pos);
  613. eap->pending_req_pin = 0;
  614. if (ssid == wpa_s->current_ssid)
  615. wpa_s->reassociate = 1;
  616. } else if (os_strcmp(rsp, "OTP") == 0) {
  617. os_free(eap->otp);
  618. eap->otp = (u8 *) os_strdup(pos);
  619. eap->otp_len = os_strlen(pos);
  620. os_free(eap->pending_req_otp);
  621. eap->pending_req_otp = NULL;
  622. eap->pending_req_otp_len = 0;
  623. } else if (os_strcmp(rsp, "PASSPHRASE") == 0) {
  624. os_free(eap->private_key_passwd);
  625. eap->private_key_passwd = (u8 *) os_strdup(pos);
  626. eap->pending_req_passphrase = 0;
  627. if (ssid == wpa_s->current_ssid)
  628. wpa_s->reassociate = 1;
  629. } else {
  630. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown field '%s'", rsp);
  631. return -1;
  632. }
  633. return 0;
  634. #else /* IEEE8021X_EAPOL */
  635. wpa_printf(MSG_DEBUG, "CTRL_IFACE: 802.1X not included");
  636. return -1;
  637. #endif /* IEEE8021X_EAPOL */
  638. }
  639. static int wpa_supplicant_ctrl_iface_status(struct wpa_supplicant *wpa_s,
  640. const char *params,
  641. char *buf, size_t buflen)
  642. {
  643. char *pos, *end, tmp[30];
  644. int res, verbose, ret;
  645. verbose = os_strcmp(params, "-VERBOSE") == 0;
  646. pos = buf;
  647. end = buf + buflen;
  648. if (wpa_s->wpa_state >= WPA_ASSOCIATED) {
  649. struct wpa_ssid *ssid = wpa_s->current_ssid;
  650. ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
  651. MAC2STR(wpa_s->bssid));
  652. if (ret < 0 || ret >= end - pos)
  653. return pos - buf;
  654. pos += ret;
  655. if (ssid) {
  656. u8 *_ssid = ssid->ssid;
  657. size_t ssid_len = ssid->ssid_len;
  658. u8 ssid_buf[MAX_SSID_LEN];
  659. if (ssid_len == 0) {
  660. int _res = wpa_drv_get_ssid(wpa_s, ssid_buf);
  661. if (_res < 0)
  662. ssid_len = 0;
  663. else
  664. ssid_len = _res;
  665. _ssid = ssid_buf;
  666. }
  667. ret = os_snprintf(pos, end - pos, "ssid=%s\nid=%d\n",
  668. wpa_ssid_txt(_ssid, ssid_len),
  669. ssid->id);
  670. if (ret < 0 || ret >= end - pos)
  671. return pos - buf;
  672. pos += ret;
  673. if (ssid->id_str) {
  674. ret = os_snprintf(pos, end - pos,
  675. "id_str=%s\n",
  676. ssid->id_str);
  677. if (ret < 0 || ret >= end - pos)
  678. return pos - buf;
  679. pos += ret;
  680. }
  681. switch (ssid->mode) {
  682. case WPAS_MODE_INFRA:
  683. ret = os_snprintf(pos, end - pos,
  684. "mode=station\n");
  685. break;
  686. case WPAS_MODE_IBSS:
  687. ret = os_snprintf(pos, end - pos,
  688. "mode=IBSS\n");
  689. break;
  690. case WPAS_MODE_AP:
  691. ret = os_snprintf(pos, end - pos,
  692. "mode=AP\n");
  693. break;
  694. case WPAS_MODE_P2P_GO:
  695. ret = os_snprintf(pos, end - pos,
  696. "mode=P2P GO\n");
  697. break;
  698. case WPAS_MODE_P2P_GROUP_FORMATION:
  699. ret = os_snprintf(pos, end - pos,
  700. "mode=P2P GO - group "
  701. "formation\n");
  702. break;
  703. default:
  704. ret = 0;
  705. break;
  706. }
  707. if (ret < 0 || ret >= end - pos)
  708. return pos - buf;
  709. pos += ret;
  710. }
  711. #ifdef CONFIG_AP
  712. if (wpa_s->ap_iface) {
  713. pos += ap_ctrl_iface_wpa_get_status(wpa_s, pos,
  714. end - pos,
  715. verbose);
  716. } else
  717. #endif /* CONFIG_AP */
  718. pos += wpa_sm_get_status(wpa_s->wpa, pos, end - pos, verbose);
  719. }
  720. ret = os_snprintf(pos, end - pos, "wpa_state=%s\n",
  721. wpa_supplicant_state_txt(wpa_s->wpa_state));
  722. if (ret < 0 || ret >= end - pos)
  723. return pos - buf;
  724. pos += ret;
  725. if (wpa_s->l2 &&
  726. l2_packet_get_ip_addr(wpa_s->l2, tmp, sizeof(tmp)) >= 0) {
  727. ret = os_snprintf(pos, end - pos, "ip_address=%s\n", tmp);
  728. if (ret < 0 || ret >= end - pos)
  729. return pos - buf;
  730. pos += ret;
  731. }
  732. #ifdef CONFIG_P2P
  733. if (wpa_s->global->p2p) {
  734. ret = os_snprintf(pos, end - pos, "p2p_device_address=" MACSTR
  735. "\n", MAC2STR(wpa_s->global->p2p_dev_addr));
  736. if (ret < 0 || ret >= end - pos)
  737. return pos - buf;
  738. pos += ret;
  739. }
  740. #endif /* CONFIG_P2P */
  741. ret = os_snprintf(pos, end - pos, "address=" MACSTR "\n",
  742. MAC2STR(wpa_s->own_addr));
  743. if (ret < 0 || ret >= end - pos)
  744. return pos - buf;
  745. pos += ret;
  746. if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
  747. wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  748. res = eapol_sm_get_status(wpa_s->eapol, pos, end - pos,
  749. verbose);
  750. if (res >= 0)
  751. pos += res;
  752. }
  753. res = rsn_preauth_get_status(wpa_s->wpa, pos, end - pos, verbose);
  754. if (res >= 0)
  755. pos += res;
  756. return pos - buf;
  757. }
  758. static int wpa_supplicant_ctrl_iface_bssid(struct wpa_supplicant *wpa_s,
  759. char *cmd)
  760. {
  761. char *pos;
  762. int id;
  763. struct wpa_ssid *ssid;
  764. u8 bssid[ETH_ALEN];
  765. /* cmd: "<network id> <BSSID>" */
  766. pos = os_strchr(cmd, ' ');
  767. if (pos == NULL)
  768. return -1;
  769. *pos++ = '\0';
  770. id = atoi(cmd);
  771. wpa_printf(MSG_DEBUG, "CTRL_IFACE: id=%d bssid='%s'", id, pos);
  772. if (hwaddr_aton(pos, bssid)) {
  773. wpa_printf(MSG_DEBUG ,"CTRL_IFACE: invalid BSSID '%s'", pos);
  774. return -1;
  775. }
  776. ssid = wpa_config_get_network(wpa_s->conf, id);
  777. if (ssid == NULL) {
  778. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
  779. "to update", id);
  780. return -1;
  781. }
  782. os_memcpy(ssid->bssid, bssid, ETH_ALEN);
  783. ssid->bssid_set = !is_zero_ether_addr(bssid);
  784. return 0;
  785. }
  786. static int wpa_supplicant_ctrl_iface_list_networks(
  787. struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
  788. {
  789. char *pos, *end;
  790. struct wpa_ssid *ssid;
  791. int ret;
  792. pos = buf;
  793. end = buf + buflen;
  794. ret = os_snprintf(pos, end - pos,
  795. "network id / ssid / bssid / flags\n");
  796. if (ret < 0 || ret >= end - pos)
  797. return pos - buf;
  798. pos += ret;
  799. ssid = wpa_s->conf->ssid;
  800. while (ssid) {
  801. ret = os_snprintf(pos, end - pos, "%d\t%s",
  802. ssid->id,
  803. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  804. if (ret < 0 || ret >= end - pos)
  805. return pos - buf;
  806. pos += ret;
  807. if (ssid->bssid_set) {
  808. ret = os_snprintf(pos, end - pos, "\t" MACSTR,
  809. MAC2STR(ssid->bssid));
  810. } else {
  811. ret = os_snprintf(pos, end - pos, "\tany");
  812. }
  813. if (ret < 0 || ret >= end - pos)
  814. return pos - buf;
  815. pos += ret;
  816. ret = os_snprintf(pos, end - pos, "\t%s%s%s",
  817. ssid == wpa_s->current_ssid ?
  818. "[CURRENT]" : "",
  819. ssid->disabled ? "[DISABLED]" : "",
  820. ssid->disabled == 2 ? "[P2P-PERSISTENT]" :
  821. "");
  822. if (ret < 0 || ret >= end - pos)
  823. return pos - buf;
  824. pos += ret;
  825. ret = os_snprintf(pos, end - pos, "\n");
  826. if (ret < 0 || ret >= end - pos)
  827. return pos - buf;
  828. pos += ret;
  829. ssid = ssid->next;
  830. }
  831. return pos - buf;
  832. }
  833. static char * wpa_supplicant_cipher_txt(char *pos, char *end, int cipher)
  834. {
  835. int first = 1, ret;
  836. ret = os_snprintf(pos, end - pos, "-");
  837. if (ret < 0 || ret >= end - pos)
  838. return pos;
  839. pos += ret;
  840. if (cipher & WPA_CIPHER_NONE) {
  841. ret = os_snprintf(pos, end - pos, "%sNONE", first ? "" : "+");
  842. if (ret < 0 || ret >= end - pos)
  843. return pos;
  844. pos += ret;
  845. first = 0;
  846. }
  847. if (cipher & WPA_CIPHER_WEP40) {
  848. ret = os_snprintf(pos, end - pos, "%sWEP40", first ? "" : "+");
  849. if (ret < 0 || ret >= end - pos)
  850. return pos;
  851. pos += ret;
  852. first = 0;
  853. }
  854. if (cipher & WPA_CIPHER_WEP104) {
  855. ret = os_snprintf(pos, end - pos, "%sWEP104",
  856. first ? "" : "+");
  857. if (ret < 0 || ret >= end - pos)
  858. return pos;
  859. pos += ret;
  860. first = 0;
  861. }
  862. if (cipher & WPA_CIPHER_TKIP) {
  863. ret = os_snprintf(pos, end - pos, "%sTKIP", first ? "" : "+");
  864. if (ret < 0 || ret >= end - pos)
  865. return pos;
  866. pos += ret;
  867. first = 0;
  868. }
  869. if (cipher & WPA_CIPHER_CCMP) {
  870. ret = os_snprintf(pos, end - pos, "%sCCMP", first ? "" : "+");
  871. if (ret < 0 || ret >= end - pos)
  872. return pos;
  873. pos += ret;
  874. first = 0;
  875. }
  876. return pos;
  877. }
  878. static char * wpa_supplicant_ie_txt(char *pos, char *end, const char *proto,
  879. const u8 *ie, size_t ie_len)
  880. {
  881. struct wpa_ie_data data;
  882. int first, ret;
  883. ret = os_snprintf(pos, end - pos, "[%s-", proto);
  884. if (ret < 0 || ret >= end - pos)
  885. return pos;
  886. pos += ret;
  887. if (wpa_parse_wpa_ie(ie, ie_len, &data) < 0) {
  888. ret = os_snprintf(pos, end - pos, "?]");
  889. if (ret < 0 || ret >= end - pos)
  890. return pos;
  891. pos += ret;
  892. return pos;
  893. }
  894. first = 1;
  895. if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
  896. ret = os_snprintf(pos, end - pos, "%sEAP", first ? "" : "+");
  897. if (ret < 0 || ret >= end - pos)
  898. return pos;
  899. pos += ret;
  900. first = 0;
  901. }
  902. if (data.key_mgmt & WPA_KEY_MGMT_PSK) {
  903. ret = os_snprintf(pos, end - pos, "%sPSK", first ? "" : "+");
  904. if (ret < 0 || ret >= end - pos)
  905. return pos;
  906. pos += ret;
  907. first = 0;
  908. }
  909. if (data.key_mgmt & WPA_KEY_MGMT_WPA_NONE) {
  910. ret = os_snprintf(pos, end - pos, "%sNone", first ? "" : "+");
  911. if (ret < 0 || ret >= end - pos)
  912. return pos;
  913. pos += ret;
  914. first = 0;
  915. }
  916. #ifdef CONFIG_IEEE80211R
  917. if (data.key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
  918. ret = os_snprintf(pos, end - pos, "%sFT/EAP",
  919. first ? "" : "+");
  920. if (ret < 0 || ret >= end - pos)
  921. return pos;
  922. pos += ret;
  923. first = 0;
  924. }
  925. if (data.key_mgmt & WPA_KEY_MGMT_FT_PSK) {
  926. ret = os_snprintf(pos, end - pos, "%sFT/PSK",
  927. first ? "" : "+");
  928. if (ret < 0 || ret >= end - pos)
  929. return pos;
  930. pos += ret;
  931. first = 0;
  932. }
  933. #endif /* CONFIG_IEEE80211R */
  934. #ifdef CONFIG_IEEE80211W
  935. if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
  936. ret = os_snprintf(pos, end - pos, "%sEAP-SHA256",
  937. first ? "" : "+");
  938. if (ret < 0 || ret >= end - pos)
  939. return pos;
  940. pos += ret;
  941. first = 0;
  942. }
  943. if (data.key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
  944. ret = os_snprintf(pos, end - pos, "%sPSK-SHA256",
  945. first ? "" : "+");
  946. if (ret < 0 || ret >= end - pos)
  947. return pos;
  948. pos += ret;
  949. first = 0;
  950. }
  951. #endif /* CONFIG_IEEE80211W */
  952. pos = wpa_supplicant_cipher_txt(pos, end, data.pairwise_cipher);
  953. if (data.capabilities & WPA_CAPABILITY_PREAUTH) {
  954. ret = os_snprintf(pos, end - pos, "-preauth");
  955. if (ret < 0 || ret >= end - pos)
  956. return pos;
  957. pos += ret;
  958. }
  959. ret = os_snprintf(pos, end - pos, "]");
  960. if (ret < 0 || ret >= end - pos)
  961. return pos;
  962. pos += ret;
  963. return pos;
  964. }
  965. #ifdef CONFIG_WPS
  966. static char * wpa_supplicant_wps_ie_txt_buf(struct wpa_supplicant *wpa_s,
  967. char *pos, char *end,
  968. struct wpabuf *wps_ie)
  969. {
  970. int ret;
  971. const char *txt;
  972. if (wps_ie == NULL)
  973. return pos;
  974. if (wps_is_selected_pbc_registrar(wps_ie))
  975. txt = "[WPS-PBC]";
  976. #ifdef CONFIG_WPS2
  977. else if (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 0))
  978. txt = "[WPS-AUTH]";
  979. #endif /* CONFIG_WPS2 */
  980. else if (wps_is_selected_pin_registrar(wps_ie))
  981. txt = "[WPS-PIN]";
  982. else
  983. txt = "[WPS]";
  984. ret = os_snprintf(pos, end - pos, "%s", txt);
  985. if (ret >= 0 && ret < end - pos)
  986. pos += ret;
  987. wpabuf_free(wps_ie);
  988. return pos;
  989. }
  990. #endif /* CONFIG_WPS */
  991. static char * wpa_supplicant_wps_ie_txt(struct wpa_supplicant *wpa_s,
  992. char *pos, char *end,
  993. const struct wpa_bss *bss)
  994. {
  995. #ifdef CONFIG_WPS
  996. struct wpabuf *wps_ie;
  997. wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  998. return wpa_supplicant_wps_ie_txt_buf(wpa_s, pos, end, wps_ie);
  999. #else /* CONFIG_WPS */
  1000. return pos;
  1001. #endif /* CONFIG_WPS */
  1002. }
  1003. /* Format one result on one text line into a buffer. */
  1004. static int wpa_supplicant_ctrl_iface_scan_result(
  1005. struct wpa_supplicant *wpa_s,
  1006. const struct wpa_bss *bss, char *buf, size_t buflen)
  1007. {
  1008. char *pos, *end;
  1009. int ret;
  1010. const u8 *ie, *ie2, *p2p;
  1011. p2p = wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE);
  1012. if (p2p && bss->ssid_len == P2P_WILDCARD_SSID_LEN &&
  1013. os_memcmp(bss->ssid, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN) ==
  1014. 0)
  1015. return 0; /* Do not show P2P listen discovery results here */
  1016. pos = buf;
  1017. end = buf + buflen;
  1018. ret = os_snprintf(pos, end - pos, MACSTR "\t%d\t%d\t",
  1019. MAC2STR(bss->bssid), bss->freq, bss->level);
  1020. if (ret < 0 || ret >= end - pos)
  1021. return -1;
  1022. pos += ret;
  1023. ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  1024. if (ie)
  1025. pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie, 2 + ie[1]);
  1026. ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  1027. if (ie2)
  1028. pos = wpa_supplicant_ie_txt(pos, end, "WPA2", ie2, 2 + ie2[1]);
  1029. pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
  1030. if (!ie && !ie2 && bss->caps & IEEE80211_CAP_PRIVACY) {
  1031. ret = os_snprintf(pos, end - pos, "[WEP]");
  1032. if (ret < 0 || ret >= end - pos)
  1033. return -1;
  1034. pos += ret;
  1035. }
  1036. if (bss->caps & IEEE80211_CAP_IBSS) {
  1037. ret = os_snprintf(pos, end - pos, "[IBSS]");
  1038. if (ret < 0 || ret >= end - pos)
  1039. return -1;
  1040. pos += ret;
  1041. }
  1042. if (bss->caps & IEEE80211_CAP_ESS) {
  1043. ret = os_snprintf(pos, end - pos, "[ESS]");
  1044. if (ret < 0 || ret >= end - pos)
  1045. return -1;
  1046. pos += ret;
  1047. }
  1048. if (p2p) {
  1049. ret = os_snprintf(pos, end - pos, "[P2P]");
  1050. if (ret < 0 || ret >= end - pos)
  1051. return -1;
  1052. pos += ret;
  1053. }
  1054. ret = os_snprintf(pos, end - pos, "\t%s",
  1055. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  1056. if (ret < 0 || ret >= end - pos)
  1057. return -1;
  1058. pos += ret;
  1059. ret = os_snprintf(pos, end - pos, "\n");
  1060. if (ret < 0 || ret >= end - pos)
  1061. return -1;
  1062. pos += ret;
  1063. return pos - buf;
  1064. }
  1065. static int wpa_supplicant_ctrl_iface_scan_results(
  1066. struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
  1067. {
  1068. char *pos, *end;
  1069. struct wpa_bss *bss;
  1070. int ret;
  1071. pos = buf;
  1072. end = buf + buflen;
  1073. ret = os_snprintf(pos, end - pos, "bssid / frequency / signal level / "
  1074. "flags / ssid\n");
  1075. if (ret < 0 || ret >= end - pos)
  1076. return pos - buf;
  1077. pos += ret;
  1078. dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
  1079. ret = wpa_supplicant_ctrl_iface_scan_result(wpa_s, bss, pos,
  1080. end - pos);
  1081. if (ret < 0 || ret >= end - pos)
  1082. return pos - buf;
  1083. pos += ret;
  1084. }
  1085. return pos - buf;
  1086. }
  1087. static int wpa_supplicant_ctrl_iface_select_network(
  1088. struct wpa_supplicant *wpa_s, char *cmd)
  1089. {
  1090. int id;
  1091. struct wpa_ssid *ssid;
  1092. /* cmd: "<network id>" or "any" */
  1093. if (os_strcmp(cmd, "any") == 0) {
  1094. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK any");
  1095. ssid = NULL;
  1096. } else {
  1097. id = atoi(cmd);
  1098. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK id=%d", id);
  1099. ssid = wpa_config_get_network(wpa_s->conf, id);
  1100. if (ssid == NULL) {
  1101. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
  1102. "network id=%d", id);
  1103. return -1;
  1104. }
  1105. if (ssid->disabled == 2) {
  1106. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
  1107. "SELECT_NETWORK with persistent P2P group");
  1108. return -1;
  1109. }
  1110. }
  1111. wpa_supplicant_select_network(wpa_s, ssid);
  1112. return 0;
  1113. }
  1114. static int wpa_supplicant_ctrl_iface_enable_network(
  1115. struct wpa_supplicant *wpa_s, char *cmd)
  1116. {
  1117. int id;
  1118. struct wpa_ssid *ssid;
  1119. /* cmd: "<network id>" or "all" */
  1120. if (os_strcmp(cmd, "all") == 0) {
  1121. wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK all");
  1122. ssid = NULL;
  1123. } else {
  1124. id = atoi(cmd);
  1125. wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK id=%d", id);
  1126. ssid = wpa_config_get_network(wpa_s->conf, id);
  1127. if (ssid == NULL) {
  1128. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
  1129. "network id=%d", id);
  1130. return -1;
  1131. }
  1132. if (ssid->disabled == 2) {
  1133. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
  1134. "ENABLE_NETWORK with persistent P2P group");
  1135. return -1;
  1136. }
  1137. }
  1138. wpa_supplicant_enable_network(wpa_s, ssid);
  1139. return 0;
  1140. }
  1141. static int wpa_supplicant_ctrl_iface_disable_network(
  1142. struct wpa_supplicant *wpa_s, char *cmd)
  1143. {
  1144. int id;
  1145. struct wpa_ssid *ssid;
  1146. /* cmd: "<network id>" or "all" */
  1147. if (os_strcmp(cmd, "all") == 0) {
  1148. wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK all");
  1149. ssid = NULL;
  1150. } else {
  1151. id = atoi(cmd);
  1152. wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK id=%d", id);
  1153. ssid = wpa_config_get_network(wpa_s->conf, id);
  1154. if (ssid == NULL) {
  1155. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
  1156. "network id=%d", id);
  1157. return -1;
  1158. }
  1159. if (ssid->disabled == 2) {
  1160. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
  1161. "DISABLE_NETWORK with persistent P2P "
  1162. "group");
  1163. return -1;
  1164. }
  1165. }
  1166. wpa_supplicant_disable_network(wpa_s, ssid);
  1167. return 0;
  1168. }
  1169. static int wpa_supplicant_ctrl_iface_add_network(
  1170. struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
  1171. {
  1172. struct wpa_ssid *ssid;
  1173. int ret;
  1174. wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_NETWORK");
  1175. ssid = wpa_config_add_network(wpa_s->conf);
  1176. if (ssid == NULL)
  1177. return -1;
  1178. wpas_notify_network_added(wpa_s, ssid);
  1179. ssid->disabled = 1;
  1180. wpa_config_set_network_defaults(ssid);
  1181. ret = os_snprintf(buf, buflen, "%d\n", ssid->id);
  1182. if (ret < 0 || (size_t) ret >= buflen)
  1183. return -1;
  1184. return ret;
  1185. }
  1186. static int wpa_supplicant_ctrl_iface_remove_network(
  1187. struct wpa_supplicant *wpa_s, char *cmd)
  1188. {
  1189. int id;
  1190. struct wpa_ssid *ssid;
  1191. /* cmd: "<network id>" or "all" */
  1192. if (os_strcmp(cmd, "all") == 0) {
  1193. wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK all");
  1194. ssid = wpa_s->conf->ssid;
  1195. while (ssid) {
  1196. struct wpa_ssid *remove_ssid = ssid;
  1197. id = ssid->id;
  1198. ssid = ssid->next;
  1199. wpas_notify_network_removed(wpa_s, remove_ssid);
  1200. wpa_config_remove_network(wpa_s->conf, id);
  1201. }
  1202. if (wpa_s->current_ssid) {
  1203. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  1204. wpa_sm_set_config(wpa_s->wpa, NULL);
  1205. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  1206. wpa_supplicant_disassociate(wpa_s,
  1207. WLAN_REASON_DEAUTH_LEAVING);
  1208. }
  1209. return 0;
  1210. }
  1211. id = atoi(cmd);
  1212. wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK id=%d", id);
  1213. ssid = wpa_config_get_network(wpa_s->conf, id);
  1214. if (ssid == NULL ||
  1215. wpa_config_remove_network(wpa_s->conf, id) < 0) {
  1216. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
  1217. "id=%d", id);
  1218. return -1;
  1219. }
  1220. if (ssid == wpa_s->current_ssid) {
  1221. /*
  1222. * Invalidate the EAP session cache if the current network is
  1223. * removed.
  1224. */
  1225. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  1226. wpa_sm_set_config(wpa_s->wpa, NULL);
  1227. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  1228. wpa_supplicant_disassociate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1229. }
  1230. return 0;
  1231. }
  1232. static int wpa_supplicant_ctrl_iface_set_network(
  1233. struct wpa_supplicant *wpa_s, char *cmd)
  1234. {
  1235. int id;
  1236. struct wpa_ssid *ssid;
  1237. char *name, *value;
  1238. /* cmd: "<network id> <variable name> <value>" */
  1239. name = os_strchr(cmd, ' ');
  1240. if (name == NULL)
  1241. return -1;
  1242. *name++ = '\0';
  1243. value = os_strchr(name, ' ');
  1244. if (value == NULL)
  1245. return -1;
  1246. *value++ = '\0';
  1247. id = atoi(cmd);
  1248. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_NETWORK id=%d name='%s'",
  1249. id, name);
  1250. wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
  1251. (u8 *) value, os_strlen(value));
  1252. ssid = wpa_config_get_network(wpa_s->conf, id);
  1253. if (ssid == NULL) {
  1254. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
  1255. "id=%d", id);
  1256. return -1;
  1257. }
  1258. if (wpa_config_set(ssid, name, value, 0) < 0) {
  1259. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set network "
  1260. "variable '%s'", name);
  1261. return -1;
  1262. }
  1263. if (wpa_s->current_ssid == ssid) {
  1264. /*
  1265. * Invalidate the EAP session cache if anything in the current
  1266. * configuration changes.
  1267. */
  1268. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  1269. }
  1270. if ((os_strcmp(name, "psk") == 0 &&
  1271. value[0] == '"' && ssid->ssid_len) ||
  1272. (os_strcmp(name, "ssid") == 0 && ssid->passphrase))
  1273. wpa_config_update_psk(ssid);
  1274. else if (os_strcmp(name, "priority") == 0)
  1275. wpa_config_update_prio_list(wpa_s->conf);
  1276. return 0;
  1277. }
  1278. static int wpa_supplicant_ctrl_iface_get_network(
  1279. struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
  1280. {
  1281. int id;
  1282. size_t res;
  1283. struct wpa_ssid *ssid;
  1284. char *name, *value;
  1285. /* cmd: "<network id> <variable name>" */
  1286. name = os_strchr(cmd, ' ');
  1287. if (name == NULL || buflen == 0)
  1288. return -1;
  1289. *name++ = '\0';
  1290. id = atoi(cmd);
  1291. wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_NETWORK id=%d name='%s'",
  1292. id, name);
  1293. ssid = wpa_config_get_network(wpa_s->conf, id);
  1294. if (ssid == NULL) {
  1295. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
  1296. "id=%d", id);
  1297. return -1;
  1298. }
  1299. value = wpa_config_get_no_key(ssid, name);
  1300. if (value == NULL) {
  1301. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to get network "
  1302. "variable '%s'", name);
  1303. return -1;
  1304. }
  1305. res = os_strlcpy(buf, value, buflen);
  1306. if (res >= buflen) {
  1307. os_free(value);
  1308. return -1;
  1309. }
  1310. os_free(value);
  1311. return res;
  1312. }
  1313. #ifndef CONFIG_NO_CONFIG_WRITE
  1314. static int wpa_supplicant_ctrl_iface_save_config(struct wpa_supplicant *wpa_s)
  1315. {
  1316. int ret;
  1317. if (!wpa_s->conf->update_config) {
  1318. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Not allowed "
  1319. "to update configuration (update_config=0)");
  1320. return -1;
  1321. }
  1322. ret = wpa_config_write(wpa_s->confname, wpa_s->conf);
  1323. if (ret) {
  1324. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Failed to "
  1325. "update configuration");
  1326. } else {
  1327. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Configuration"
  1328. " updated");
  1329. }
  1330. return ret;
  1331. }
  1332. #endif /* CONFIG_NO_CONFIG_WRITE */
  1333. static int ctrl_iface_get_capability_pairwise(int res, char *strict,
  1334. struct wpa_driver_capa *capa,
  1335. char *buf, size_t buflen)
  1336. {
  1337. int ret, first = 1;
  1338. char *pos, *end;
  1339. size_t len;
  1340. pos = buf;
  1341. end = pos + buflen;
  1342. if (res < 0) {
  1343. if (strict)
  1344. return 0;
  1345. len = os_strlcpy(buf, "CCMP TKIP NONE", buflen);
  1346. if (len >= buflen)
  1347. return -1;
  1348. return len;
  1349. }
  1350. if (capa->enc & WPA_DRIVER_CAPA_ENC_CCMP) {
  1351. ret = os_snprintf(pos, end - pos, "%sCCMP", first ? "" : " ");
  1352. if (ret < 0 || ret >= end - pos)
  1353. return pos - buf;
  1354. pos += ret;
  1355. first = 0;
  1356. }
  1357. if (capa->enc & WPA_DRIVER_CAPA_ENC_TKIP) {
  1358. ret = os_snprintf(pos, end - pos, "%sTKIP", first ? "" : " ");
  1359. if (ret < 0 || ret >= end - pos)
  1360. return pos - buf;
  1361. pos += ret;
  1362. first = 0;
  1363. }
  1364. if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
  1365. ret = os_snprintf(pos, end - pos, "%sNONE", first ? "" : " ");
  1366. if (ret < 0 || ret >= end - pos)
  1367. return pos - buf;
  1368. pos += ret;
  1369. first = 0;
  1370. }
  1371. return pos - buf;
  1372. }
  1373. static int ctrl_iface_get_capability_group(int res, char *strict,
  1374. struct wpa_driver_capa *capa,
  1375. char *buf, size_t buflen)
  1376. {
  1377. int ret, first = 1;
  1378. char *pos, *end;
  1379. size_t len;
  1380. pos = buf;
  1381. end = pos + buflen;
  1382. if (res < 0) {
  1383. if (strict)
  1384. return 0;
  1385. len = os_strlcpy(buf, "CCMP TKIP WEP104 WEP40", buflen);
  1386. if (len >= buflen)
  1387. return -1;
  1388. return len;
  1389. }
  1390. if (capa->enc & WPA_DRIVER_CAPA_ENC_CCMP) {
  1391. ret = os_snprintf(pos, end - pos, "%sCCMP", first ? "" : " ");
  1392. if (ret < 0 || ret >= end - pos)
  1393. return pos - buf;
  1394. pos += ret;
  1395. first = 0;
  1396. }
  1397. if (capa->enc & WPA_DRIVER_CAPA_ENC_TKIP) {
  1398. ret = os_snprintf(pos, end - pos, "%sTKIP", first ? "" : " ");
  1399. if (ret < 0 || ret >= end - pos)
  1400. return pos - buf;
  1401. pos += ret;
  1402. first = 0;
  1403. }
  1404. if (capa->enc & WPA_DRIVER_CAPA_ENC_WEP104) {
  1405. ret = os_snprintf(pos, end - pos, "%sWEP104",
  1406. first ? "" : " ");
  1407. if (ret < 0 || ret >= end - pos)
  1408. return pos - buf;
  1409. pos += ret;
  1410. first = 0;
  1411. }
  1412. if (capa->enc & WPA_DRIVER_CAPA_ENC_WEP40) {
  1413. ret = os_snprintf(pos, end - pos, "%sWEP40", first ? "" : " ");
  1414. if (ret < 0 || ret >= end - pos)
  1415. return pos - buf;
  1416. pos += ret;
  1417. first = 0;
  1418. }
  1419. return pos - buf;
  1420. }
  1421. static int ctrl_iface_get_capability_key_mgmt(int res, char *strict,
  1422. struct wpa_driver_capa *capa,
  1423. char *buf, size_t buflen)
  1424. {
  1425. int ret;
  1426. char *pos, *end;
  1427. size_t len;
  1428. pos = buf;
  1429. end = pos + buflen;
  1430. if (res < 0) {
  1431. if (strict)
  1432. return 0;
  1433. len = os_strlcpy(buf, "WPA-PSK WPA-EAP IEEE8021X WPA-NONE "
  1434. "NONE", buflen);
  1435. if (len >= buflen)
  1436. return -1;
  1437. return len;
  1438. }
  1439. ret = os_snprintf(pos, end - pos, "NONE IEEE8021X");
  1440. if (ret < 0 || ret >= end - pos)
  1441. return pos - buf;
  1442. pos += ret;
  1443. if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
  1444. WPA_DRIVER_CAPA_KEY_MGMT_WPA2)) {
  1445. ret = os_snprintf(pos, end - pos, " WPA-EAP");
  1446. if (ret < 0 || ret >= end - pos)
  1447. return pos - buf;
  1448. pos += ret;
  1449. }
  1450. if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
  1451. WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
  1452. ret = os_snprintf(pos, end - pos, " WPA-PSK");
  1453. if (ret < 0 || ret >= end - pos)
  1454. return pos - buf;
  1455. pos += ret;
  1456. }
  1457. if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
  1458. ret = os_snprintf(pos, end - pos, " WPA-NONE");
  1459. if (ret < 0 || ret >= end - pos)
  1460. return pos - buf;
  1461. pos += ret;
  1462. }
  1463. return pos - buf;
  1464. }
  1465. static int ctrl_iface_get_capability_proto(int res, char *strict,
  1466. struct wpa_driver_capa *capa,
  1467. char *buf, size_t buflen)
  1468. {
  1469. int ret, first = 1;
  1470. char *pos, *end;
  1471. size_t len;
  1472. pos = buf;
  1473. end = pos + buflen;
  1474. if (res < 0) {
  1475. if (strict)
  1476. return 0;
  1477. len = os_strlcpy(buf, "RSN WPA", buflen);
  1478. if (len >= buflen)
  1479. return -1;
  1480. return len;
  1481. }
  1482. if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
  1483. WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
  1484. ret = os_snprintf(pos, end - pos, "%sRSN", first ? "" : " ");
  1485. if (ret < 0 || ret >= end - pos)
  1486. return pos - buf;
  1487. pos += ret;
  1488. first = 0;
  1489. }
  1490. if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
  1491. WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK)) {
  1492. ret = os_snprintf(pos, end - pos, "%sWPA", first ? "" : " ");
  1493. if (ret < 0 || ret >= end - pos)
  1494. return pos - buf;
  1495. pos += ret;
  1496. first = 0;
  1497. }
  1498. return pos - buf;
  1499. }
  1500. static int ctrl_iface_get_capability_auth_alg(int res, char *strict,
  1501. struct wpa_driver_capa *capa,
  1502. char *buf, size_t buflen)
  1503. {
  1504. int ret, first = 1;
  1505. char *pos, *end;
  1506. size_t len;
  1507. pos = buf;
  1508. end = pos + buflen;
  1509. if (res < 0) {
  1510. if (strict)
  1511. return 0;
  1512. len = os_strlcpy(buf, "OPEN SHARED LEAP", buflen);
  1513. if (len >= buflen)
  1514. return -1;
  1515. return len;
  1516. }
  1517. if (capa->auth & (WPA_DRIVER_AUTH_OPEN)) {
  1518. ret = os_snprintf(pos, end - pos, "%sOPEN", first ? "" : " ");
  1519. if (ret < 0 || ret >= end - pos)
  1520. return pos - buf;
  1521. pos += ret;
  1522. first = 0;
  1523. }
  1524. if (capa->auth & (WPA_DRIVER_AUTH_SHARED)) {
  1525. ret = os_snprintf(pos, end - pos, "%sSHARED",
  1526. first ? "" : " ");
  1527. if (ret < 0 || ret >= end - pos)
  1528. return pos - buf;
  1529. pos += ret;
  1530. first = 0;
  1531. }
  1532. if (capa->auth & (WPA_DRIVER_AUTH_LEAP)) {
  1533. ret = os_snprintf(pos, end - pos, "%sLEAP", first ? "" : " ");
  1534. if (ret < 0 || ret >= end - pos)
  1535. return pos - buf;
  1536. pos += ret;
  1537. first = 0;
  1538. }
  1539. return pos - buf;
  1540. }
  1541. static int wpa_supplicant_ctrl_iface_get_capability(
  1542. struct wpa_supplicant *wpa_s, const char *_field, char *buf,
  1543. size_t buflen)
  1544. {
  1545. struct wpa_driver_capa capa;
  1546. int res;
  1547. char *strict;
  1548. char field[30];
  1549. size_t len;
  1550. /* Determine whether or not strict checking was requested */
  1551. len = os_strlcpy(field, _field, sizeof(field));
  1552. if (len >= sizeof(field))
  1553. return -1;
  1554. strict = os_strchr(field, ' ');
  1555. if (strict != NULL) {
  1556. *strict++ = '\0';
  1557. if (os_strcmp(strict, "strict") != 0)
  1558. return -1;
  1559. }
  1560. wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_CAPABILITY '%s' %s",
  1561. field, strict ? strict : "");
  1562. if (os_strcmp(field, "eap") == 0) {
  1563. return eap_get_names(buf, buflen);
  1564. }
  1565. res = wpa_drv_get_capa(wpa_s, &capa);
  1566. if (os_strcmp(field, "pairwise") == 0)
  1567. return ctrl_iface_get_capability_pairwise(res, strict, &capa,
  1568. buf, buflen);
  1569. if (os_strcmp(field, "group") == 0)
  1570. return ctrl_iface_get_capability_group(res, strict, &capa,
  1571. buf, buflen);
  1572. if (os_strcmp(field, "key_mgmt") == 0)
  1573. return ctrl_iface_get_capability_key_mgmt(res, strict, &capa,
  1574. buf, buflen);
  1575. if (os_strcmp(field, "proto") == 0)
  1576. return ctrl_iface_get_capability_proto(res, strict, &capa,
  1577. buf, buflen);
  1578. if (os_strcmp(field, "auth_alg") == 0)
  1579. return ctrl_iface_get_capability_auth_alg(res, strict, &capa,
  1580. buf, buflen);
  1581. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown GET_CAPABILITY field '%s'",
  1582. field);
  1583. return -1;
  1584. }
  1585. static int wpa_supplicant_ctrl_iface_bss(struct wpa_supplicant *wpa_s,
  1586. const char *cmd, char *buf,
  1587. size_t buflen)
  1588. {
  1589. u8 bssid[ETH_ALEN];
  1590. size_t i;
  1591. struct wpa_bss *bss;
  1592. int ret;
  1593. char *pos, *end;
  1594. const u8 *ie, *ie2;
  1595. if (os_strcmp(cmd, "FIRST") == 0)
  1596. bss = dl_list_first(&wpa_s->bss, struct wpa_bss, list);
  1597. else if (os_strncmp(cmd, "ID-", 3) == 0) {
  1598. i = atoi(cmd + 3);
  1599. bss = wpa_bss_get_id(wpa_s, i);
  1600. } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
  1601. i = atoi(cmd + 5);
  1602. bss = wpa_bss_get_id(wpa_s, i);
  1603. if (bss) {
  1604. struct dl_list *next = bss->list_id.next;
  1605. if (next == &wpa_s->bss_id)
  1606. bss = NULL;
  1607. else
  1608. bss = dl_list_entry(next, struct wpa_bss,
  1609. list_id);
  1610. }
  1611. } else if (hwaddr_aton(cmd, bssid) == 0)
  1612. bss = wpa_bss_get_bssid(wpa_s, bssid);
  1613. else {
  1614. struct wpa_bss *tmp;
  1615. i = atoi(cmd);
  1616. bss = NULL;
  1617. dl_list_for_each(tmp, &wpa_s->bss_id, struct wpa_bss, list_id)
  1618. {
  1619. if (i-- == 0) {
  1620. bss = tmp;
  1621. break;
  1622. }
  1623. }
  1624. }
  1625. if (bss == NULL)
  1626. return 0;
  1627. pos = buf;
  1628. end = buf + buflen;
  1629. ret = os_snprintf(pos, end - pos,
  1630. "id=%u\n"
  1631. "bssid=" MACSTR "\n"
  1632. "freq=%d\n"
  1633. "beacon_int=%d\n"
  1634. "capabilities=0x%04x\n"
  1635. "qual=%d\n"
  1636. "noise=%d\n"
  1637. "level=%d\n"
  1638. "tsf=%016llu\n"
  1639. "ie=",
  1640. bss->id,
  1641. MAC2STR(bss->bssid), bss->freq, bss->beacon_int,
  1642. bss->caps, bss->qual, bss->noise, bss->level,
  1643. (unsigned long long) bss->tsf);
  1644. if (ret < 0 || ret >= end - pos)
  1645. return pos - buf;
  1646. pos += ret;
  1647. ie = (const u8 *) (bss + 1);
  1648. for (i = 0; i < bss->ie_len; i++) {
  1649. ret = os_snprintf(pos, end - pos, "%02x", *ie++);
  1650. if (ret < 0 || ret >= end - pos)
  1651. return pos - buf;
  1652. pos += ret;
  1653. }
  1654. if (wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE)) {
  1655. ret = os_snprintf(pos, end - pos, "[P2P]");
  1656. if (ret < 0 || ret >= end - pos)
  1657. return pos - buf;
  1658. pos += ret;
  1659. }
  1660. ret = os_snprintf(pos, end - pos, "\n");
  1661. if (ret < 0 || ret >= end - pos)
  1662. return pos - buf;
  1663. pos += ret;
  1664. ret = os_snprintf(pos, end - pos, "flags=");
  1665. if (ret < 0 || ret >= end - pos)
  1666. return pos - buf;
  1667. pos += ret;
  1668. ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  1669. if (ie)
  1670. pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie, 2 + ie[1]);
  1671. ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  1672. if (ie2)
  1673. pos = wpa_supplicant_ie_txt(pos, end, "WPA2", ie2, 2 + ie2[1]);
  1674. pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
  1675. if (!ie && !ie2 && bss->caps & IEEE80211_CAP_PRIVACY) {
  1676. ret = os_snprintf(pos, end - pos, "[WEP]");
  1677. if (ret < 0 || ret >= end - pos)
  1678. return pos - buf;
  1679. pos += ret;
  1680. }
  1681. if (bss->caps & IEEE80211_CAP_IBSS) {
  1682. ret = os_snprintf(pos, end - pos, "[IBSS]");
  1683. if (ret < 0 || ret >= end - pos)
  1684. return pos - buf;
  1685. pos += ret;
  1686. }
  1687. if (bss->caps & IEEE80211_CAP_ESS) {
  1688. ret = os_snprintf(pos, end - pos, "[ESS]");
  1689. if (ret < 0 || ret >= end - pos)
  1690. return pos - buf;
  1691. pos += ret;
  1692. }
  1693. ret = os_snprintf(pos, end - pos, "\n");
  1694. if (ret < 0 || ret >= end - pos)
  1695. return pos - buf;
  1696. pos += ret;
  1697. ret = os_snprintf(pos, end - pos, "ssid=%s\n",
  1698. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  1699. if (ret < 0 || ret >= end - pos)
  1700. return pos - buf;
  1701. pos += ret;
  1702. #ifdef CONFIG_WPS
  1703. ie = (const u8 *) (bss + 1);
  1704. ret = wpas_wps_scan_result_text(ie, bss->ie_len, pos, end);
  1705. if (ret < 0 || ret >= end - pos)
  1706. return pos - buf;
  1707. pos += ret;
  1708. #endif /* CONFIG_WPS */
  1709. #ifdef CONFIG_P2P
  1710. ie = (const u8 *) (bss + 1);
  1711. ret = wpas_p2p_scan_result_text(ie, bss->ie_len, pos, end);
  1712. if (ret < 0 || ret >= end - pos)
  1713. return pos - buf;
  1714. pos += ret;
  1715. #endif /* CONFIG_P2P */
  1716. return pos - buf;
  1717. }
  1718. static int wpa_supplicant_ctrl_iface_ap_scan(
  1719. struct wpa_supplicant *wpa_s, char *cmd)
  1720. {
  1721. int ap_scan = atoi(cmd);
  1722. return wpa_supplicant_set_ap_scan(wpa_s, ap_scan);
  1723. }
  1724. static int wpa_supplicant_ctrl_iface_scan_interval(
  1725. struct wpa_supplicant *wpa_s, char *cmd)
  1726. {
  1727. int scan_int = atoi(cmd);
  1728. if (scan_int < 0)
  1729. return -1;
  1730. wpa_s->scan_interval = scan_int;
  1731. return 0;
  1732. }
  1733. static int wpa_supplicant_ctrl_iface_bss_expire_age(
  1734. struct wpa_supplicant *wpa_s, char *cmd)
  1735. {
  1736. int expire_age = atoi(cmd);
  1737. return wpa_supplicant_set_bss_expiration_age(wpa_s, expire_age);
  1738. }
  1739. static int wpa_supplicant_ctrl_iface_bss_expire_count(
  1740. struct wpa_supplicant *wpa_s, char *cmd)
  1741. {
  1742. int expire_count = atoi(cmd);
  1743. return wpa_supplicant_set_bss_expiration_count(wpa_s, expire_count);
  1744. }
  1745. static void wpa_supplicant_ctrl_iface_drop_sa(struct wpa_supplicant *wpa_s)
  1746. {
  1747. wpa_printf(MSG_DEBUG, "Dropping SA without deauthentication");
  1748. /* MLME-DELETEKEYS.request */
  1749. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 0, 0, NULL, 0, NULL, 0);
  1750. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 1, 0, NULL, 0, NULL, 0);
  1751. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 2, 0, NULL, 0, NULL, 0);
  1752. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 3, 0, NULL, 0, NULL, 0);
  1753. #ifdef CONFIG_IEEE80211W
  1754. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 4, 0, NULL, 0, NULL, 0);
  1755. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 5, 0, NULL, 0, NULL, 0);
  1756. #endif /* CONFIG_IEEE80211W */
  1757. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, wpa_s->bssid, 0, 0, NULL, 0, NULL,
  1758. 0);
  1759. /* MLME-SETPROTECTION.request(None) */
  1760. wpa_drv_mlme_setprotection(wpa_s, wpa_s->bssid,
  1761. MLME_SETPROTECTION_PROTECT_TYPE_NONE,
  1762. MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
  1763. wpa_sm_drop_sa(wpa_s->wpa);
  1764. }
  1765. static int wpa_supplicant_ctrl_iface_roam(struct wpa_supplicant *wpa_s,
  1766. char *addr)
  1767. {
  1768. u8 bssid[ETH_ALEN];
  1769. struct wpa_bss *bss;
  1770. struct wpa_ssid *ssid = wpa_s->current_ssid;
  1771. if (hwaddr_aton(addr, bssid)) {
  1772. wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: invalid "
  1773. "address '%s'", addr);
  1774. return -1;
  1775. }
  1776. wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM " MACSTR, MAC2STR(bssid));
  1777. bss = wpa_bss_get_bssid(wpa_s, bssid);
  1778. if (!bss) {
  1779. wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: Target AP not found "
  1780. "from BSS table");
  1781. return -1;
  1782. }
  1783. /*
  1784. * TODO: Find best network configuration block from configuration to
  1785. * allow roaming to other networks
  1786. */
  1787. if (!ssid) {
  1788. wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: No network "
  1789. "configuration known for the target AP");
  1790. return -1;
  1791. }
  1792. wpa_s->reassociate = 1;
  1793. wpa_supplicant_connect(wpa_s, bss, ssid);
  1794. return 0;
  1795. }
  1796. #ifdef CONFIG_P2P
  1797. static int p2p_ctrl_find(struct wpa_supplicant *wpa_s, char *cmd)
  1798. {
  1799. unsigned int timeout = atoi(cmd);
  1800. enum p2p_discovery_type type = P2P_FIND_START_WITH_FULL;
  1801. if (os_strstr(cmd, "type=social"))
  1802. type = P2P_FIND_ONLY_SOCIAL;
  1803. else if (os_strstr(cmd, "type=progressive"))
  1804. type = P2P_FIND_PROGRESSIVE;
  1805. return wpas_p2p_find(wpa_s, timeout, type, 0, NULL);
  1806. }
  1807. static int p2p_ctrl_connect(struct wpa_supplicant *wpa_s, char *cmd,
  1808. char *buf, size_t buflen)
  1809. {
  1810. u8 addr[ETH_ALEN];
  1811. char *pos, *pos2;
  1812. char *pin = NULL;
  1813. enum p2p_wps_method wps_method;
  1814. int new_pin;
  1815. int ret;
  1816. int persistent_group;
  1817. int join;
  1818. int auth;
  1819. int go_intent = -1;
  1820. int freq = 0;
  1821. /* <addr> <"pbc" | "pin" | PIN> [label|display|keypad] [persistent]
  1822. * [join] [auth] [go_intent=<0..15>] [freq=<in MHz>] */
  1823. if (hwaddr_aton(cmd, addr))
  1824. return -1;
  1825. pos = cmd + 17;
  1826. if (*pos != ' ')
  1827. return -1;
  1828. pos++;
  1829. persistent_group = os_strstr(pos, " persistent") != NULL;
  1830. join = os_strstr(pos, " join") != NULL;
  1831. auth = os_strstr(pos, " auth") != NULL;
  1832. pos2 = os_strstr(pos, " go_intent=");
  1833. if (pos2) {
  1834. pos2 += 11;
  1835. go_intent = atoi(pos2);
  1836. if (go_intent < 0 || go_intent > 15)
  1837. return -1;
  1838. }
  1839. pos2 = os_strstr(pos, " freq=");
  1840. if (pos2) {
  1841. pos2 += 6;
  1842. freq = atoi(pos2);
  1843. if (freq <= 0)
  1844. return -1;
  1845. }
  1846. if (os_strncmp(pos, "pin", 3) == 0) {
  1847. /* Request random PIN (to be displayed) and enable the PIN */
  1848. wps_method = WPS_PIN_DISPLAY;
  1849. } else if (os_strncmp(pos, "pbc", 3) == 0) {
  1850. wps_method = WPS_PBC;
  1851. } else {
  1852. pin = pos;
  1853. pos = os_strchr(pin, ' ');
  1854. wps_method = WPS_PIN_KEYPAD;
  1855. if (pos) {
  1856. *pos++ = '\0';
  1857. if (os_strncmp(pos, "label", 5) == 0)
  1858. wps_method = WPS_PIN_LABEL;
  1859. else if (os_strncmp(pos, "display", 7) == 0)
  1860. wps_method = WPS_PIN_DISPLAY;
  1861. }
  1862. }
  1863. new_pin = wpas_p2p_connect(wpa_s, addr, pin, wps_method,
  1864. persistent_group, join, auth, go_intent,
  1865. freq);
  1866. if (new_pin == -2) {
  1867. os_memcpy(buf, "FAIL-CHANNEL-UNAVAILABLE\n", 25);
  1868. return 25;
  1869. }
  1870. if (new_pin == -3) {
  1871. os_memcpy(buf, "FAIL-CHANNEL-UNSUPPORTED\n", 25);
  1872. return 25;
  1873. }
  1874. if (new_pin < 0)
  1875. return -1;
  1876. if (wps_method == WPS_PIN_DISPLAY && pin == NULL) {
  1877. ret = os_snprintf(buf, buflen, "%08d", new_pin);
  1878. if (ret < 0 || (size_t) ret >= buflen)
  1879. return -1;
  1880. return ret;
  1881. }
  1882. os_memcpy(buf, "OK\n", 3);
  1883. return 3;
  1884. }
  1885. static int p2p_ctrl_listen(struct wpa_supplicant *wpa_s, char *cmd)
  1886. {
  1887. unsigned int timeout = atoi(cmd);
  1888. return wpas_p2p_listen(wpa_s, timeout);
  1889. }
  1890. static int p2p_ctrl_prov_disc(struct wpa_supplicant *wpa_s, char *cmd)
  1891. {
  1892. u8 addr[ETH_ALEN];
  1893. char *pos;
  1894. /* <addr> <config method> */
  1895. if (hwaddr_aton(cmd, addr))
  1896. return -1;
  1897. pos = cmd + 17;
  1898. if (*pos != ' ')
  1899. return -1;
  1900. pos++;
  1901. return wpas_p2p_prov_disc(wpa_s, addr, pos);
  1902. }
  1903. static int p2p_get_passphrase(struct wpa_supplicant *wpa_s, char *buf,
  1904. size_t buflen)
  1905. {
  1906. struct wpa_ssid *ssid = wpa_s->current_ssid;
  1907. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
  1908. ssid->passphrase == NULL)
  1909. return -1;
  1910. os_strlcpy(buf, ssid->passphrase, buflen);
  1911. return os_strlen(buf);
  1912. }
  1913. static int p2p_ctrl_serv_disc_req(struct wpa_supplicant *wpa_s, char *cmd,
  1914. char *buf, size_t buflen)
  1915. {
  1916. u64 ref;
  1917. int res;
  1918. u8 dst_buf[ETH_ALEN], *dst;
  1919. struct wpabuf *tlvs;
  1920. char *pos;
  1921. size_t len;
  1922. if (hwaddr_aton(cmd, dst_buf))
  1923. return -1;
  1924. dst = dst_buf;
  1925. if (dst[0] == 0 && dst[1] == 0 && dst[2] == 0 &&
  1926. dst[3] == 0 && dst[4] == 0 && dst[5] == 0)
  1927. dst = NULL;
  1928. pos = cmd + 17;
  1929. if (*pos != ' ')
  1930. return -1;
  1931. pos++;
  1932. if (os_strncmp(pos, "upnp ", 5) == 0) {
  1933. u8 version;
  1934. pos += 5;
  1935. if (hexstr2bin(pos, &version, 1) < 0)
  1936. return -1;
  1937. pos += 2;
  1938. if (*pos != ' ')
  1939. return -1;
  1940. pos++;
  1941. ref = (unsigned long) wpas_p2p_sd_request_upnp(wpa_s, dst,
  1942. version, pos);
  1943. } else {
  1944. len = os_strlen(pos);
  1945. if (len & 1)
  1946. return -1;
  1947. len /= 2;
  1948. tlvs = wpabuf_alloc(len);
  1949. if (tlvs == NULL)
  1950. return -1;
  1951. if (hexstr2bin(pos, wpabuf_put(tlvs, len), len) < 0) {
  1952. wpabuf_free(tlvs);
  1953. return -1;
  1954. }
  1955. ref = (unsigned long) wpas_p2p_sd_request(wpa_s, dst, tlvs);
  1956. wpabuf_free(tlvs);
  1957. }
  1958. res = os_snprintf(buf, buflen, "%llx", (long long unsigned) ref);
  1959. if (res < 0 || (unsigned) res >= buflen)
  1960. return -1;
  1961. return res;
  1962. }
  1963. static int p2p_ctrl_serv_disc_cancel_req(struct wpa_supplicant *wpa_s,
  1964. char *cmd)
  1965. {
  1966. long long unsigned val;
  1967. u64 req;
  1968. if (sscanf(cmd, "%llx", &val) != 1)
  1969. return -1;
  1970. req = val;
  1971. return wpas_p2p_sd_cancel_request(wpa_s, (void *) (unsigned long) req);
  1972. }
  1973. static int p2p_ctrl_serv_disc_resp(struct wpa_supplicant *wpa_s, char *cmd)
  1974. {
  1975. int freq;
  1976. u8 dst[ETH_ALEN];
  1977. u8 dialog_token;
  1978. struct wpabuf *resp_tlvs;
  1979. char *pos, *pos2;
  1980. size_t len;
  1981. pos = os_strchr(cmd, ' ');
  1982. if (pos == NULL)
  1983. return -1;
  1984. *pos++ = '\0';
  1985. freq = atoi(cmd);
  1986. if (freq == 0)
  1987. return -1;
  1988. if (hwaddr_aton(pos, dst))
  1989. return -1;
  1990. pos += 17;
  1991. if (*pos != ' ')
  1992. return -1;
  1993. pos++;
  1994. pos2 = os_strchr(pos, ' ');
  1995. if (pos2 == NULL)
  1996. return -1;
  1997. *pos2++ = '\0';
  1998. dialog_token = atoi(pos);
  1999. len = os_strlen(pos2);
  2000. if (len & 1)
  2001. return -1;
  2002. len /= 2;
  2003. resp_tlvs = wpabuf_alloc(len);
  2004. if (resp_tlvs == NULL)
  2005. return -1;
  2006. if (hexstr2bin(pos2, wpabuf_put(resp_tlvs, len), len) < 0) {
  2007. wpabuf_free(resp_tlvs);
  2008. return -1;
  2009. }
  2010. wpas_p2p_sd_response(wpa_s, freq, dst, dialog_token, resp_tlvs);
  2011. wpabuf_free(resp_tlvs);
  2012. return 0;
  2013. }
  2014. static int p2p_ctrl_serv_disc_external(struct wpa_supplicant *wpa_s,
  2015. char *cmd)
  2016. {
  2017. wpa_s->p2p_sd_over_ctrl_iface = atoi(cmd);
  2018. return 0;
  2019. }
  2020. static int p2p_ctrl_service_add_bonjour(struct wpa_supplicant *wpa_s,
  2021. char *cmd)
  2022. {
  2023. char *pos;
  2024. size_t len;
  2025. struct wpabuf *query, *resp;
  2026. pos = os_strchr(cmd, ' ');
  2027. if (pos == NULL)
  2028. return -1;
  2029. *pos++ = '\0';
  2030. len = os_strlen(cmd);
  2031. if (len & 1)
  2032. return -1;
  2033. len /= 2;
  2034. query = wpabuf_alloc(len);
  2035. if (query == NULL)
  2036. return -1;
  2037. if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
  2038. wpabuf_free(query);
  2039. return -1;
  2040. }
  2041. len = os_strlen(pos);
  2042. if (len & 1) {
  2043. wpabuf_free(query);
  2044. return -1;
  2045. }
  2046. len /= 2;
  2047. resp = wpabuf_alloc(len);
  2048. if (resp == NULL) {
  2049. wpabuf_free(query);
  2050. return -1;
  2051. }
  2052. if (hexstr2bin(pos, wpabuf_put(resp, len), len) < 0) {
  2053. wpabuf_free(query);
  2054. wpabuf_free(resp);
  2055. return -1;
  2056. }
  2057. if (wpas_p2p_service_add_bonjour(wpa_s, query, resp) < 0) {
  2058. wpabuf_free(query);
  2059. wpabuf_free(resp);
  2060. return -1;
  2061. }
  2062. return 0;
  2063. }
  2064. static int p2p_ctrl_service_add_upnp(struct wpa_supplicant *wpa_s, char *cmd)
  2065. {
  2066. char *pos;
  2067. u8 version;
  2068. pos = os_strchr(cmd, ' ');
  2069. if (pos == NULL)
  2070. return -1;
  2071. *pos++ = '\0';
  2072. if (hexstr2bin(cmd, &version, 1) < 0)
  2073. return -1;
  2074. return wpas_p2p_service_add_upnp(wpa_s, version, pos);
  2075. }
  2076. static int p2p_ctrl_service_add(struct wpa_supplicant *wpa_s, char *cmd)
  2077. {
  2078. char *pos;
  2079. pos = os_strchr(cmd, ' ');
  2080. if (pos == NULL)
  2081. return -1;
  2082. *pos++ = '\0';
  2083. if (os_strcmp(cmd, "bonjour") == 0)
  2084. return p2p_ctrl_service_add_bonjour(wpa_s, pos);
  2085. if (os_strcmp(cmd, "upnp") == 0)
  2086. return p2p_ctrl_service_add_upnp(wpa_s, pos);
  2087. wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
  2088. return -1;
  2089. }
  2090. static int p2p_ctrl_service_del_bonjour(struct wpa_supplicant *wpa_s,
  2091. char *cmd)
  2092. {
  2093. size_t len;
  2094. struct wpabuf *query;
  2095. int ret;
  2096. len = os_strlen(cmd);
  2097. if (len & 1)
  2098. return -1;
  2099. len /= 2;
  2100. query = wpabuf_alloc(len);
  2101. if (query == NULL)
  2102. return -1;
  2103. if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
  2104. wpabuf_free(query);
  2105. return -1;
  2106. }
  2107. ret = wpas_p2p_service_del_bonjour(wpa_s, query);
  2108. wpabuf_free(query);
  2109. return ret;
  2110. }
  2111. static int p2p_ctrl_service_del_upnp(struct wpa_supplicant *wpa_s, char *cmd)
  2112. {
  2113. char *pos;
  2114. u8 version;
  2115. pos = os_strchr(cmd, ' ');
  2116. if (pos == NULL)
  2117. return -1;
  2118. *pos++ = '\0';
  2119. if (hexstr2bin(cmd, &version, 1) < 0)
  2120. return -1;
  2121. return wpas_p2p_service_del_upnp(wpa_s, version, pos);
  2122. }
  2123. static int p2p_ctrl_service_del(struct wpa_supplicant *wpa_s, char *cmd)
  2124. {
  2125. char *pos;
  2126. pos = os_strchr(cmd, ' ');
  2127. if (pos == NULL)
  2128. return -1;
  2129. *pos++ = '\0';
  2130. if (os_strcmp(cmd, "bonjour") == 0)
  2131. return p2p_ctrl_service_del_bonjour(wpa_s, pos);
  2132. if (os_strcmp(cmd, "upnp") == 0)
  2133. return p2p_ctrl_service_del_upnp(wpa_s, pos);
  2134. wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
  2135. return -1;
  2136. }
  2137. static int p2p_ctrl_reject(struct wpa_supplicant *wpa_s, char *cmd)
  2138. {
  2139. u8 addr[ETH_ALEN];
  2140. /* <addr> */
  2141. if (hwaddr_aton(cmd, addr))
  2142. return -1;
  2143. return wpas_p2p_reject(wpa_s, addr);
  2144. }
  2145. static int p2p_ctrl_invite_persistent(struct wpa_supplicant *wpa_s, char *cmd)
  2146. {
  2147. char *pos;
  2148. int id;
  2149. struct wpa_ssid *ssid;
  2150. u8 peer[ETH_ALEN];
  2151. id = atoi(cmd);
  2152. pos = os_strstr(cmd, " peer=");
  2153. if (pos) {
  2154. pos += 6;
  2155. if (hwaddr_aton(pos, peer))
  2156. return -1;
  2157. }
  2158. ssid = wpa_config_get_network(wpa_s->conf, id);
  2159. if (ssid == NULL || ssid->disabled != 2) {
  2160. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
  2161. "for persistent P2P group",
  2162. id);
  2163. return -1;
  2164. }
  2165. return wpas_p2p_invite(wpa_s, pos ? peer : NULL, ssid, NULL);
  2166. }
  2167. static int p2p_ctrl_invite_group(struct wpa_supplicant *wpa_s, char *cmd)
  2168. {
  2169. char *pos;
  2170. u8 peer[ETH_ALEN], go_dev_addr[ETH_ALEN], *go_dev = NULL;
  2171. pos = os_strstr(cmd, " peer=");
  2172. if (!pos)
  2173. return -1;
  2174. *pos = '\0';
  2175. pos += 6;
  2176. if (hwaddr_aton(pos, peer)) {
  2177. wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'", pos);
  2178. return -1;
  2179. }
  2180. pos = os_strstr(pos, " go_dev_addr=");
  2181. if (pos) {
  2182. pos += 13;
  2183. if (hwaddr_aton(pos, go_dev_addr)) {
  2184. wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'",
  2185. pos);
  2186. return -1;
  2187. }
  2188. go_dev = go_dev_addr;
  2189. }
  2190. return wpas_p2p_invite_group(wpa_s, cmd, peer, go_dev);
  2191. }
  2192. static int p2p_ctrl_invite(struct wpa_supplicant *wpa_s, char *cmd)
  2193. {
  2194. if (os_strncmp(cmd, "persistent=", 11) == 0)
  2195. return p2p_ctrl_invite_persistent(wpa_s, cmd + 11);
  2196. if (os_strncmp(cmd, "group=", 6) == 0)
  2197. return p2p_ctrl_invite_group(wpa_s, cmd + 6);
  2198. return -1;
  2199. }
  2200. static int p2p_ctrl_group_add_persistent(struct wpa_supplicant *wpa_s,
  2201. char *cmd, int freq)
  2202. {
  2203. int id;
  2204. struct wpa_ssid *ssid;
  2205. id = atoi(cmd);
  2206. ssid = wpa_config_get_network(wpa_s->conf, id);
  2207. if (ssid == NULL || ssid->disabled != 2) {
  2208. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
  2209. "for persistent P2P group",
  2210. id);
  2211. return -1;
  2212. }
  2213. return wpas_p2p_group_add_persistent(wpa_s, ssid, 0, freq);
  2214. }
  2215. static int p2p_ctrl_group_add(struct wpa_supplicant *wpa_s, char *cmd)
  2216. {
  2217. int freq = 0;
  2218. char *pos;
  2219. pos = os_strstr(cmd, "freq=");
  2220. if (pos)
  2221. freq = atoi(pos + 5);
  2222. if (os_strncmp(cmd, "persistent=", 11) == 0)
  2223. return p2p_ctrl_group_add_persistent(wpa_s, cmd + 11, freq);
  2224. if (os_strcmp(cmd, "persistent") == 0 ||
  2225. os_strncmp(cmd, "persistent ", 11) == 0)
  2226. return wpas_p2p_group_add(wpa_s, 1, freq);
  2227. if (os_strncmp(cmd, "freq=", 5) == 0)
  2228. return wpas_p2p_group_add(wpa_s, 0, freq);
  2229. wpa_printf(MSG_DEBUG, "CTRL: Invalid P2P_GROUP_ADD parameters '%s'",
  2230. cmd);
  2231. return -1;
  2232. }
  2233. static int p2p_ctrl_peer(struct wpa_supplicant *wpa_s, char *cmd,
  2234. char *buf, size_t buflen)
  2235. {
  2236. u8 addr[ETH_ALEN], *addr_ptr;
  2237. int next;
  2238. if (!wpa_s->global->p2p)
  2239. return -1;
  2240. if (os_strcmp(cmd, "FIRST") == 0) {
  2241. addr_ptr = NULL;
  2242. next = 0;
  2243. } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
  2244. if (hwaddr_aton(cmd + 5, addr) < 0)
  2245. return -1;
  2246. addr_ptr = addr;
  2247. next = 1;
  2248. } else {
  2249. if (hwaddr_aton(cmd, addr) < 0)
  2250. return -1;
  2251. addr_ptr = addr;
  2252. next = 0;
  2253. }
  2254. return p2p_get_peer_info(wpa_s->global->p2p, addr_ptr, next,
  2255. buf, buflen);
  2256. }
  2257. static int p2p_ctrl_set(struct wpa_supplicant *wpa_s, char *cmd)
  2258. {
  2259. char *param;
  2260. if (wpa_s->global->p2p == NULL)
  2261. return -1;
  2262. param = os_strchr(cmd, ' ');
  2263. if (param == NULL)
  2264. return -1;
  2265. *param++ = '\0';
  2266. if (os_strcmp(cmd, "discoverability") == 0) {
  2267. p2p_set_client_discoverability(wpa_s->global->p2p,
  2268. atoi(param));
  2269. return 0;
  2270. }
  2271. if (os_strcmp(cmd, "managed") == 0) {
  2272. p2p_set_managed_oper(wpa_s->global->p2p, atoi(param));
  2273. return 0;
  2274. }
  2275. if (os_strcmp(cmd, "listen_channel") == 0) {
  2276. return p2p_set_listen_channel(wpa_s->global->p2p, 81,
  2277. atoi(param));
  2278. }
  2279. if (os_strcmp(cmd, "ssid_postfix") == 0) {
  2280. return p2p_set_ssid_postfix(wpa_s->global->p2p, (u8 *) param,
  2281. os_strlen(param));
  2282. }
  2283. if (os_strcmp(cmd, "noa") == 0) {
  2284. char *pos;
  2285. int count, start, duration;
  2286. /* GO NoA parameters: count,start_offset(ms),duration(ms) */
  2287. count = atoi(param);
  2288. pos = os_strchr(param, ',');
  2289. if (pos == NULL)
  2290. return -1;
  2291. pos++;
  2292. start = atoi(pos);
  2293. pos = os_strchr(pos, ',');
  2294. if (pos == NULL)
  2295. return -1;
  2296. pos++;
  2297. duration = atoi(pos);
  2298. if (count < 0 || count > 255 || start < 0 || duration < 0)
  2299. return -1;
  2300. if (count == 0 && duration > 0)
  2301. return -1;
  2302. wpa_printf(MSG_DEBUG, "CTRL_IFACE: P2P_SET GO NoA: count=%d "
  2303. "start=%d duration=%d", count, start, duration);
  2304. return wpas_p2p_set_noa(wpa_s, count, start, duration);
  2305. }
  2306. if (os_strcmp(cmd, "ps") == 0)
  2307. return wpa_drv_set_p2p_powersave(wpa_s, atoi(param), -1, -1);
  2308. if (os_strcmp(cmd, "oppps") == 0)
  2309. return wpa_drv_set_p2p_powersave(wpa_s, -1, atoi(param), -1);
  2310. if (os_strcmp(cmd, "ctwindow") == 0)
  2311. return wpa_drv_set_p2p_powersave(wpa_s, -1, -1, atoi(param));
  2312. if (os_strcmp(cmd, "disabled") == 0) {
  2313. wpa_s->global->p2p_disabled = atoi(param);
  2314. wpa_printf(MSG_DEBUG, "P2P functionality %s",
  2315. wpa_s->global->p2p_disabled ?
  2316. "disabled" : "enabled");
  2317. if (wpa_s->global->p2p_disabled) {
  2318. wpas_p2p_stop_find(wpa_s);
  2319. os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
  2320. p2p_flush(wpa_s->global->p2p);
  2321. }
  2322. return 0;
  2323. }
  2324. if (os_strcmp(cmd, "force_long_sd") == 0) {
  2325. wpa_s->force_long_sd = atoi(param);
  2326. return 0;
  2327. }
  2328. if (os_strcmp(cmd, "peer_filter") == 0) {
  2329. u8 addr[ETH_ALEN];
  2330. if (hwaddr_aton(param, addr))
  2331. return -1;
  2332. p2p_set_peer_filter(wpa_s->global->p2p, addr);
  2333. return 0;
  2334. }
  2335. if (os_strcmp(cmd, "cross_connect") == 0)
  2336. return wpas_p2p_set_cross_connect(wpa_s, atoi(param));
  2337. if (os_strcmp(cmd, "go_apsd") == 0) {
  2338. if (os_strcmp(param, "disable") == 0)
  2339. wpa_s->set_ap_uapsd = 0;
  2340. else {
  2341. wpa_s->set_ap_uapsd = 1;
  2342. wpa_s->ap_uapsd = atoi(param);
  2343. }
  2344. return 0;
  2345. }
  2346. if (os_strcmp(cmd, "client_apsd") == 0) {
  2347. if (os_strcmp(param, "disable") == 0)
  2348. wpa_s->set_sta_uapsd = 0;
  2349. else {
  2350. int be, bk, vi, vo;
  2351. char *pos;
  2352. /* format: BE,BK,VI,VO;max SP Length */
  2353. be = atoi(param);
  2354. pos = os_strchr(param, ',');
  2355. if (pos == NULL)
  2356. return -1;
  2357. pos++;
  2358. bk = atoi(pos);
  2359. pos = os_strchr(pos, ',');
  2360. if (pos == NULL)
  2361. return -1;
  2362. pos++;
  2363. vi = atoi(pos);
  2364. pos = os_strchr(pos, ',');
  2365. if (pos == NULL)
  2366. return -1;
  2367. pos++;
  2368. vo = atoi(pos);
  2369. /* ignore max SP Length for now */
  2370. wpa_s->set_sta_uapsd = 1;
  2371. wpa_s->sta_uapsd = 0;
  2372. if (be)
  2373. wpa_s->sta_uapsd |= BIT(0);
  2374. if (bk)
  2375. wpa_s->sta_uapsd |= BIT(1);
  2376. if (vi)
  2377. wpa_s->sta_uapsd |= BIT(2);
  2378. if (vo)
  2379. wpa_s->sta_uapsd |= BIT(3);
  2380. }
  2381. return 0;
  2382. }
  2383. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown P2P_SET field value '%s'",
  2384. cmd);
  2385. return -1;
  2386. }
  2387. static int p2p_ctrl_presence_req(struct wpa_supplicant *wpa_s, char *cmd)
  2388. {
  2389. char *pos, *pos2;
  2390. unsigned int dur1 = 0, int1 = 0, dur2 = 0, int2 = 0;
  2391. if (cmd[0]) {
  2392. pos = os_strchr(cmd, ' ');
  2393. if (pos == NULL)
  2394. return -1;
  2395. *pos++ = '\0';
  2396. dur1 = atoi(cmd);
  2397. pos2 = os_strchr(pos, ' ');
  2398. if (pos2)
  2399. *pos2++ = '\0';
  2400. int1 = atoi(pos);
  2401. } else
  2402. pos2 = NULL;
  2403. if (pos2) {
  2404. pos = os_strchr(pos2, ' ');
  2405. if (pos == NULL)
  2406. return -1;
  2407. *pos++ = '\0';
  2408. dur2 = atoi(pos2);
  2409. int2 = atoi(pos);
  2410. }
  2411. return wpas_p2p_presence_req(wpa_s, dur1, int1, dur2, int2);
  2412. }
  2413. static int p2p_ctrl_ext_listen(struct wpa_supplicant *wpa_s, char *cmd)
  2414. {
  2415. char *pos;
  2416. unsigned int period = 0, interval = 0;
  2417. if (cmd[0]) {
  2418. pos = os_strchr(cmd, ' ');
  2419. if (pos == NULL)
  2420. return -1;
  2421. *pos++ = '\0';
  2422. period = atoi(cmd);
  2423. interval = atoi(pos);
  2424. }
  2425. return wpas_p2p_ext_listen(wpa_s, period, interval);
  2426. }
  2427. #endif /* CONFIG_P2P */
  2428. static int wpa_supplicant_ctrl_iface_sta_autoconnect(
  2429. struct wpa_supplicant *wpa_s, char *cmd)
  2430. {
  2431. wpa_s->auto_reconnect_disabled = atoi(cmd) == 0 ? 1 : 0;
  2432. return 0;
  2433. }
  2434. static int wpa_supplicant_signal_poll(struct wpa_supplicant *wpa_s, char *buf,
  2435. size_t buflen)
  2436. {
  2437. struct wpa_signal_info si;
  2438. int ret;
  2439. ret = wpa_drv_signal_poll(wpa_s, &si);
  2440. if (ret)
  2441. return -1;
  2442. ret = os_snprintf(buf, buflen, "RSSI=%d\nLINKSPEED=%d\n"
  2443. "NOISE=%d\nFREQUENCY=%u\n",
  2444. si.current_signal, si.current_txrate / 1000,
  2445. si.current_noise, si.frequency);
  2446. if (ret < 0 || (unsigned int) ret > buflen)
  2447. return -1;
  2448. return ret;
  2449. }
  2450. char * wpa_supplicant_ctrl_iface_process(struct wpa_supplicant *wpa_s,
  2451. char *buf, size_t *resp_len)
  2452. {
  2453. char *reply;
  2454. const int reply_size = 4096;
  2455. int ctrl_rsp = 0;
  2456. int reply_len;
  2457. if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0 ||
  2458. os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
  2459. wpa_hexdump_ascii_key(MSG_DEBUG, "RX ctrl_iface",
  2460. (const u8 *) buf, os_strlen(buf));
  2461. } else {
  2462. int level = MSG_DEBUG;
  2463. if (os_strcmp(buf, "PING") == 0)
  2464. level = MSG_EXCESSIVE;
  2465. wpa_hexdump_ascii(level, "RX ctrl_iface",
  2466. (const u8 *) buf, os_strlen(buf));
  2467. }
  2468. reply = os_malloc(reply_size);
  2469. if (reply == NULL) {
  2470. *resp_len = 1;
  2471. return NULL;
  2472. }
  2473. os_memcpy(reply, "OK\n", 3);
  2474. reply_len = 3;
  2475. if (os_strcmp(buf, "PING") == 0) {
  2476. os_memcpy(reply, "PONG\n", 5);
  2477. reply_len = 5;
  2478. } else if (os_strncmp(buf, "RELOG", 5) == 0) {
  2479. if (wpa_debug_reopen_file() < 0)
  2480. reply_len = -1;
  2481. } else if (os_strncmp(buf, "NOTE ", 5) == 0) {
  2482. wpa_printf(MSG_INFO, "NOTE: %s", buf + 5);
  2483. } else if (os_strcmp(buf, "MIB") == 0) {
  2484. reply_len = wpa_sm_get_mib(wpa_s->wpa, reply, reply_size);
  2485. if (reply_len >= 0) {
  2486. int res;
  2487. res = eapol_sm_get_mib(wpa_s->eapol, reply + reply_len,
  2488. reply_size - reply_len);
  2489. if (res < 0)
  2490. reply_len = -1;
  2491. else
  2492. reply_len += res;
  2493. }
  2494. } else if (os_strncmp(buf, "STATUS", 6) == 0) {
  2495. reply_len = wpa_supplicant_ctrl_iface_status(
  2496. wpa_s, buf + 6, reply, reply_size);
  2497. } else if (os_strcmp(buf, "PMKSA") == 0) {
  2498. reply_len = wpa_sm_pmksa_cache_list(wpa_s->wpa, reply,
  2499. reply_size);
  2500. } else if (os_strncmp(buf, "SET ", 4) == 0) {
  2501. if (wpa_supplicant_ctrl_iface_set(wpa_s, buf + 4))
  2502. reply_len = -1;
  2503. } else if (os_strncmp(buf, "GET ", 4) == 0) {
  2504. reply_len = wpa_supplicant_ctrl_iface_get(wpa_s, buf + 4,
  2505. reply, reply_size);
  2506. } else if (os_strcmp(buf, "LOGON") == 0) {
  2507. eapol_sm_notify_logoff(wpa_s->eapol, FALSE);
  2508. } else if (os_strcmp(buf, "LOGOFF") == 0) {
  2509. eapol_sm_notify_logoff(wpa_s->eapol, TRUE);
  2510. } else if (os_strcmp(buf, "REASSOCIATE") == 0) {
  2511. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
  2512. reply_len = -1;
  2513. else {
  2514. wpa_s->disconnected = 0;
  2515. wpa_s->reassociate = 1;
  2516. wpa_supplicant_req_scan(wpa_s, 0, 0);
  2517. }
  2518. } else if (os_strcmp(buf, "RECONNECT") == 0) {
  2519. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
  2520. reply_len = -1;
  2521. else if (wpa_s->disconnected) {
  2522. wpa_s->disconnected = 0;
  2523. wpa_s->reassociate = 1;
  2524. wpa_supplicant_req_scan(wpa_s, 0, 0);
  2525. }
  2526. #ifdef IEEE8021X_EAPOL
  2527. } else if (os_strncmp(buf, "PREAUTH ", 8) == 0) {
  2528. if (wpa_supplicant_ctrl_iface_preauth(wpa_s, buf + 8))
  2529. reply_len = -1;
  2530. #endif /* IEEE8021X_EAPOL */
  2531. #ifdef CONFIG_PEERKEY
  2532. } else if (os_strncmp(buf, "STKSTART ", 9) == 0) {
  2533. if (wpa_supplicant_ctrl_iface_stkstart(wpa_s, buf + 9))
  2534. reply_len = -1;
  2535. #endif /* CONFIG_PEERKEY */
  2536. #ifdef CONFIG_IEEE80211R
  2537. } else if (os_strncmp(buf, "FT_DS ", 6) == 0) {
  2538. if (wpa_supplicant_ctrl_iface_ft_ds(wpa_s, buf + 6))
  2539. reply_len = -1;
  2540. #endif /* CONFIG_IEEE80211R */
  2541. #ifdef CONFIG_WPS
  2542. } else if (os_strcmp(buf, "WPS_PBC") == 0) {
  2543. int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, NULL);
  2544. if (res == -2) {
  2545. os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
  2546. reply_len = 17;
  2547. } else if (res)
  2548. reply_len = -1;
  2549. } else if (os_strncmp(buf, "WPS_PBC ", 8) == 0) {
  2550. int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, buf + 8);
  2551. if (res == -2) {
  2552. os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
  2553. reply_len = 17;
  2554. } else if (res)
  2555. reply_len = -1;
  2556. } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
  2557. reply_len = wpa_supplicant_ctrl_iface_wps_pin(wpa_s, buf + 8,
  2558. reply,
  2559. reply_size);
  2560. } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
  2561. reply_len = wpa_supplicant_ctrl_iface_wps_check_pin(
  2562. wpa_s, buf + 14, reply, reply_size);
  2563. } else if (os_strcmp(buf, "WPS_CANCEL") == 0) {
  2564. if (wpas_wps_cancel(wpa_s))
  2565. reply_len = -1;
  2566. #ifdef CONFIG_WPS_OOB
  2567. } else if (os_strncmp(buf, "WPS_OOB ", 8) == 0) {
  2568. if (wpa_supplicant_ctrl_iface_wps_oob(wpa_s, buf + 8))
  2569. reply_len = -1;
  2570. #endif /* CONFIG_WPS_OOB */
  2571. } else if (os_strncmp(buf, "WPS_REG ", 8) == 0) {
  2572. if (wpa_supplicant_ctrl_iface_wps_reg(wpa_s, buf + 8))
  2573. reply_len = -1;
  2574. #ifdef CONFIG_AP
  2575. } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
  2576. reply_len = wpa_supplicant_ctrl_iface_wps_ap_pin(
  2577. wpa_s, buf + 11, reply, reply_size);
  2578. #endif /* CONFIG_AP */
  2579. #ifdef CONFIG_WPS_ER
  2580. } else if (os_strcmp(buf, "WPS_ER_START") == 0) {
  2581. if (wpas_wps_er_start(wpa_s, NULL))
  2582. reply_len = -1;
  2583. } else if (os_strncmp(buf, "WPS_ER_START ", 13) == 0) {
  2584. if (wpas_wps_er_start(wpa_s, buf + 13))
  2585. reply_len = -1;
  2586. } else if (os_strcmp(buf, "WPS_ER_STOP") == 0) {
  2587. if (wpas_wps_er_stop(wpa_s))
  2588. reply_len = -1;
  2589. } else if (os_strncmp(buf, "WPS_ER_PIN ", 11) == 0) {
  2590. if (wpa_supplicant_ctrl_iface_wps_er_pin(wpa_s, buf + 11))
  2591. reply_len = -1;
  2592. } else if (os_strncmp(buf, "WPS_ER_PBC ", 11) == 0) {
  2593. int ret = wpas_wps_er_pbc(wpa_s, buf + 11);
  2594. if (ret == -2) {
  2595. os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
  2596. reply_len = 17;
  2597. } else if (ret == -3) {
  2598. os_memcpy(reply, "FAIL-UNKNOWN-UUID\n", 18);
  2599. reply_len = 18;
  2600. } else if (ret == -4) {
  2601. os_memcpy(reply, "FAIL-NO-AP-SETTINGS\n", 20);
  2602. reply_len = 20;
  2603. } else if (ret)
  2604. reply_len = -1;
  2605. } else if (os_strncmp(buf, "WPS_ER_LEARN ", 13) == 0) {
  2606. if (wpa_supplicant_ctrl_iface_wps_er_learn(wpa_s, buf + 13))
  2607. reply_len = -1;
  2608. } else if (os_strncmp(buf, "WPS_ER_SET_CONFIG ", 18) == 0) {
  2609. if (wpa_supplicant_ctrl_iface_wps_er_set_config(wpa_s,
  2610. buf + 18))
  2611. reply_len = -1;
  2612. } else if (os_strncmp(buf, "WPS_ER_CONFIG ", 14) == 0) {
  2613. if (wpa_supplicant_ctrl_iface_wps_er_config(wpa_s, buf + 14))
  2614. reply_len = -1;
  2615. #endif /* CONFIG_WPS_ER */
  2616. #endif /* CONFIG_WPS */
  2617. #ifdef CONFIG_IBSS_RSN
  2618. } else if (os_strncmp(buf, "IBSS_RSN ", 9) == 0) {
  2619. if (wpa_supplicant_ctrl_iface_ibss_rsn(wpa_s, buf + 9))
  2620. reply_len = -1;
  2621. #endif /* CONFIG_IBSS_RSN */
  2622. #ifdef CONFIG_P2P
  2623. } else if (os_strncmp(buf, "P2P_FIND ", 9) == 0) {
  2624. if (p2p_ctrl_find(wpa_s, buf + 9))
  2625. reply_len = -1;
  2626. } else if (os_strcmp(buf, "P2P_FIND") == 0) {
  2627. if (p2p_ctrl_find(wpa_s, ""))
  2628. reply_len = -1;
  2629. } else if (os_strcmp(buf, "P2P_STOP_FIND") == 0) {
  2630. wpas_p2p_stop_find(wpa_s);
  2631. } else if (os_strncmp(buf, "P2P_CONNECT ", 12) == 0) {
  2632. reply_len = p2p_ctrl_connect(wpa_s, buf + 12, reply,
  2633. reply_size);
  2634. } else if (os_strncmp(buf, "P2P_LISTEN ", 11) == 0) {
  2635. if (p2p_ctrl_listen(wpa_s, buf + 11))
  2636. reply_len = -1;
  2637. } else if (os_strcmp(buf, "P2P_LISTEN") == 0) {
  2638. if (p2p_ctrl_listen(wpa_s, ""))
  2639. reply_len = -1;
  2640. } else if (os_strncmp(buf, "P2P_GROUP_REMOVE ", 17) == 0) {
  2641. if (wpas_p2p_group_remove(wpa_s, buf + 17))
  2642. reply_len = -1;
  2643. } else if (os_strcmp(buf, "P2P_GROUP_ADD") == 0) {
  2644. if (wpas_p2p_group_add(wpa_s, 0, 0))
  2645. reply_len = -1;
  2646. } else if (os_strncmp(buf, "P2P_GROUP_ADD ", 14) == 0) {
  2647. if (p2p_ctrl_group_add(wpa_s, buf + 14))
  2648. reply_len = -1;
  2649. } else if (os_strncmp(buf, "P2P_PROV_DISC ", 14) == 0) {
  2650. if (p2p_ctrl_prov_disc(wpa_s, buf + 14))
  2651. reply_len = -1;
  2652. } else if (os_strcmp(buf, "P2P_GET_PASSPHRASE") == 0) {
  2653. reply_len = p2p_get_passphrase(wpa_s, reply, reply_size);
  2654. } else if (os_strncmp(buf, "P2P_SERV_DISC_REQ ", 18) == 0) {
  2655. reply_len = p2p_ctrl_serv_disc_req(wpa_s, buf + 18, reply,
  2656. reply_size);
  2657. } else if (os_strncmp(buf, "P2P_SERV_DISC_CANCEL_REQ ", 25) == 0) {
  2658. if (p2p_ctrl_serv_disc_cancel_req(wpa_s, buf + 25) < 0)
  2659. reply_len = -1;
  2660. } else if (os_strncmp(buf, "P2P_SERV_DISC_RESP ", 19) == 0) {
  2661. if (p2p_ctrl_serv_disc_resp(wpa_s, buf + 19) < 0)
  2662. reply_len = -1;
  2663. } else if (os_strcmp(buf, "P2P_SERVICE_UPDATE") == 0) {
  2664. wpas_p2p_sd_service_update(wpa_s);
  2665. } else if (os_strncmp(buf, "P2P_SERV_DISC_EXTERNAL ", 23) == 0) {
  2666. if (p2p_ctrl_serv_disc_external(wpa_s, buf + 23) < 0)
  2667. reply_len = -1;
  2668. } else if (os_strcmp(buf, "P2P_SERVICE_FLUSH") == 0) {
  2669. wpas_p2p_service_flush(wpa_s);
  2670. } else if (os_strncmp(buf, "P2P_SERVICE_ADD ", 16) == 0) {
  2671. if (p2p_ctrl_service_add(wpa_s, buf + 16) < 0)
  2672. reply_len = -1;
  2673. } else if (os_strncmp(buf, "P2P_SERVICE_DEL ", 16) == 0) {
  2674. if (p2p_ctrl_service_del(wpa_s, buf + 16) < 0)
  2675. reply_len = -1;
  2676. } else if (os_strncmp(buf, "P2P_REJECT ", 11) == 0) {
  2677. if (p2p_ctrl_reject(wpa_s, buf + 11) < 0)
  2678. reply_len = -1;
  2679. } else if (os_strncmp(buf, "P2P_INVITE ", 11) == 0) {
  2680. if (p2p_ctrl_invite(wpa_s, buf + 11) < 0)
  2681. reply_len = -1;
  2682. } else if (os_strncmp(buf, "P2P_PEER ", 9) == 0) {
  2683. reply_len = p2p_ctrl_peer(wpa_s, buf + 9, reply,
  2684. reply_size);
  2685. } else if (os_strncmp(buf, "P2P_SET ", 8) == 0) {
  2686. if (p2p_ctrl_set(wpa_s, buf + 8) < 0)
  2687. reply_len = -1;
  2688. } else if (os_strcmp(buf, "P2P_FLUSH") == 0) {
  2689. os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
  2690. wpa_s->force_long_sd = 0;
  2691. if (wpa_s->global->p2p)
  2692. p2p_flush(wpa_s->global->p2p);
  2693. } else if (os_strncmp(buf, "P2P_UNAUTHORIZE ", 16) == 0) {
  2694. if (wpas_p2p_unauthorize(wpa_s, buf + 16) < 0)
  2695. reply_len = -1;
  2696. } else if (os_strcmp(buf, "P2P_CANCEL") == 0) {
  2697. if (wpas_p2p_cancel(wpa_s))
  2698. reply_len = -1;
  2699. } else if (os_strncmp(buf, "P2P_PRESENCE_REQ ", 17) == 0) {
  2700. if (p2p_ctrl_presence_req(wpa_s, buf + 17) < 0)
  2701. reply_len = -1;
  2702. } else if (os_strcmp(buf, "P2P_PRESENCE_REQ") == 0) {
  2703. if (p2p_ctrl_presence_req(wpa_s, "") < 0)
  2704. reply_len = -1;
  2705. } else if (os_strncmp(buf, "P2P_EXT_LISTEN ", 15) == 0) {
  2706. if (p2p_ctrl_ext_listen(wpa_s, buf + 15) < 0)
  2707. reply_len = -1;
  2708. } else if (os_strcmp(buf, "P2P_EXT_LISTEN") == 0) {
  2709. if (p2p_ctrl_ext_listen(wpa_s, "") < 0)
  2710. reply_len = -1;
  2711. #endif /* CONFIG_P2P */
  2712. } else if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0)
  2713. {
  2714. if (wpa_supplicant_ctrl_iface_ctrl_rsp(
  2715. wpa_s, buf + os_strlen(WPA_CTRL_RSP)))
  2716. reply_len = -1;
  2717. else
  2718. ctrl_rsp = 1;
  2719. } else if (os_strcmp(buf, "RECONFIGURE") == 0) {
  2720. if (wpa_supplicant_reload_configuration(wpa_s))
  2721. reply_len = -1;
  2722. } else if (os_strcmp(buf, "TERMINATE") == 0) {
  2723. wpa_supplicant_terminate_proc(wpa_s->global);
  2724. } else if (os_strncmp(buf, "BSSID ", 6) == 0) {
  2725. if (wpa_supplicant_ctrl_iface_bssid(wpa_s, buf + 6))
  2726. reply_len = -1;
  2727. } else if (os_strcmp(buf, "LIST_NETWORKS") == 0) {
  2728. reply_len = wpa_supplicant_ctrl_iface_list_networks(
  2729. wpa_s, reply, reply_size);
  2730. } else if (os_strcmp(buf, "DISCONNECT") == 0) {
  2731. wpa_s->reassociate = 0;
  2732. wpa_s->disconnected = 1;
  2733. wpa_supplicant_deauthenticate(wpa_s,
  2734. WLAN_REASON_DEAUTH_LEAVING);
  2735. } else if (os_strcmp(buf, "SCAN") == 0) {
  2736. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
  2737. reply_len = -1;
  2738. else {
  2739. if (!wpa_s->scanning &&
  2740. ((wpa_s->wpa_state <= WPA_SCANNING) ||
  2741. (wpa_s->wpa_state == WPA_COMPLETED))) {
  2742. wpa_s->scan_req = 2;
  2743. wpa_supplicant_req_scan(wpa_s, 0, 0);
  2744. } else {
  2745. wpa_printf(MSG_DEBUG, "Ongoing scan action - "
  2746. "reject new request");
  2747. reply_len = os_snprintf(reply, reply_size,
  2748. "FAIL-BUSY\n");
  2749. }
  2750. }
  2751. } else if (os_strcmp(buf, "SCAN_RESULTS") == 0) {
  2752. reply_len = wpa_supplicant_ctrl_iface_scan_results(
  2753. wpa_s, reply, reply_size);
  2754. } else if (os_strncmp(buf, "SELECT_NETWORK ", 15) == 0) {
  2755. if (wpa_supplicant_ctrl_iface_select_network(wpa_s, buf + 15))
  2756. reply_len = -1;
  2757. } else if (os_strncmp(buf, "ENABLE_NETWORK ", 15) == 0) {
  2758. if (wpa_supplicant_ctrl_iface_enable_network(wpa_s, buf + 15))
  2759. reply_len = -1;
  2760. } else if (os_strncmp(buf, "DISABLE_NETWORK ", 16) == 0) {
  2761. if (wpa_supplicant_ctrl_iface_disable_network(wpa_s, buf + 16))
  2762. reply_len = -1;
  2763. } else if (os_strcmp(buf, "ADD_NETWORK") == 0) {
  2764. reply_len = wpa_supplicant_ctrl_iface_add_network(
  2765. wpa_s, reply, reply_size);
  2766. } else if (os_strncmp(buf, "REMOVE_NETWORK ", 15) == 0) {
  2767. if (wpa_supplicant_ctrl_iface_remove_network(wpa_s, buf + 15))
  2768. reply_len = -1;
  2769. } else if (os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
  2770. if (wpa_supplicant_ctrl_iface_set_network(wpa_s, buf + 12))
  2771. reply_len = -1;
  2772. } else if (os_strncmp(buf, "GET_NETWORK ", 12) == 0) {
  2773. reply_len = wpa_supplicant_ctrl_iface_get_network(
  2774. wpa_s, buf + 12, reply, reply_size);
  2775. #ifndef CONFIG_NO_CONFIG_WRITE
  2776. } else if (os_strcmp(buf, "SAVE_CONFIG") == 0) {
  2777. if (wpa_supplicant_ctrl_iface_save_config(wpa_s))
  2778. reply_len = -1;
  2779. #endif /* CONFIG_NO_CONFIG_WRITE */
  2780. } else if (os_strncmp(buf, "GET_CAPABILITY ", 15) == 0) {
  2781. reply_len = wpa_supplicant_ctrl_iface_get_capability(
  2782. wpa_s, buf + 15, reply, reply_size);
  2783. } else if (os_strncmp(buf, "AP_SCAN ", 8) == 0) {
  2784. if (wpa_supplicant_ctrl_iface_ap_scan(wpa_s, buf + 8))
  2785. reply_len = -1;
  2786. } else if (os_strncmp(buf, "SCAN_INTERVAL ", 14) == 0) {
  2787. if (wpa_supplicant_ctrl_iface_scan_interval(wpa_s, buf + 14))
  2788. reply_len = -1;
  2789. } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
  2790. reply_len = wpa_supplicant_global_iface_list(
  2791. wpa_s->global, reply, reply_size);
  2792. } else if (os_strcmp(buf, "INTERFACES") == 0) {
  2793. reply_len = wpa_supplicant_global_iface_interfaces(
  2794. wpa_s->global, reply, reply_size);
  2795. } else if (os_strncmp(buf, "BSS ", 4) == 0) {
  2796. reply_len = wpa_supplicant_ctrl_iface_bss(
  2797. wpa_s, buf + 4, reply, reply_size);
  2798. #ifdef CONFIG_AP
  2799. } else if (os_strcmp(buf, "STA-FIRST") == 0) {
  2800. reply_len = ap_ctrl_iface_sta_first(wpa_s, reply, reply_size);
  2801. } else if (os_strncmp(buf, "STA ", 4) == 0) {
  2802. reply_len = ap_ctrl_iface_sta(wpa_s, buf + 4, reply,
  2803. reply_size);
  2804. } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
  2805. reply_len = ap_ctrl_iface_sta_next(wpa_s, buf + 9, reply,
  2806. reply_size);
  2807. #endif /* CONFIG_AP */
  2808. } else if (os_strcmp(buf, "SUSPEND") == 0) {
  2809. wpas_notify_suspend(wpa_s->global);
  2810. } else if (os_strcmp(buf, "RESUME") == 0) {
  2811. wpas_notify_resume(wpa_s->global);
  2812. } else if (os_strcmp(buf, "DROP_SA") == 0) {
  2813. wpa_supplicant_ctrl_iface_drop_sa(wpa_s);
  2814. } else if (os_strncmp(buf, "ROAM ", 5) == 0) {
  2815. if (wpa_supplicant_ctrl_iface_roam(wpa_s, buf + 5))
  2816. reply_len = -1;
  2817. } else if (os_strncmp(buf, "STA_AUTOCONNECT ", 16) == 0) {
  2818. if (wpa_supplicant_ctrl_iface_sta_autoconnect(wpa_s, buf + 16))
  2819. reply_len = -1;
  2820. } else if (os_strncmp(buf, "BSS_EXPIRE_AGE ", 15) == 0) {
  2821. if (wpa_supplicant_ctrl_iface_bss_expire_age(wpa_s, buf + 15))
  2822. reply_len = -1;
  2823. } else if (os_strncmp(buf, "BSS_EXPIRE_COUNT ", 17) == 0) {
  2824. if (wpa_supplicant_ctrl_iface_bss_expire_count(wpa_s,
  2825. buf + 17))
  2826. reply_len = -1;
  2827. #ifdef CONFIG_TDLS
  2828. } else if (os_strncmp(buf, "TDLS_DISCOVER ", 14) == 0) {
  2829. if (wpa_supplicant_ctrl_iface_tdls_discover(wpa_s, buf + 14))
  2830. reply_len = -1;
  2831. } else if (os_strncmp(buf, "TDLS_SETUP ", 11) == 0) {
  2832. if (wpa_supplicant_ctrl_iface_tdls_setup(wpa_s, buf + 11))
  2833. reply_len = -1;
  2834. } else if (os_strncmp(buf, "TDLS_TEARDOWN ", 14) == 0) {
  2835. if (wpa_supplicant_ctrl_iface_tdls_teardown(wpa_s, buf + 14))
  2836. reply_len = -1;
  2837. #endif /* CONFIG_TDLS */
  2838. } else if (os_strncmp(buf, "SIGNAL_POLL", 11) == 0) {
  2839. reply_len = wpa_supplicant_signal_poll(wpa_s, reply,
  2840. reply_size);
  2841. } else {
  2842. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  2843. reply_len = 16;
  2844. }
  2845. if (reply_len < 0) {
  2846. os_memcpy(reply, "FAIL\n", 5);
  2847. reply_len = 5;
  2848. }
  2849. if (ctrl_rsp)
  2850. eapol_sm_notify_ctrl_response(wpa_s->eapol);
  2851. *resp_len = reply_len;
  2852. return reply;
  2853. }
  2854. static int wpa_supplicant_global_iface_add(struct wpa_global *global,
  2855. char *cmd)
  2856. {
  2857. struct wpa_interface iface;
  2858. char *pos;
  2859. /*
  2860. * <ifname>TAB<confname>TAB<driver>TAB<ctrl_interface>TAB<driver_param>
  2861. * TAB<bridge_ifname>
  2862. */
  2863. wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_ADD '%s'", cmd);
  2864. os_memset(&iface, 0, sizeof(iface));
  2865. do {
  2866. iface.ifname = pos = cmd;
  2867. pos = os_strchr(pos, '\t');
  2868. if (pos)
  2869. *pos++ = '\0';
  2870. if (iface.ifname[0] == '\0')
  2871. return -1;
  2872. if (pos == NULL)
  2873. break;
  2874. iface.confname = pos;
  2875. pos = os_strchr(pos, '\t');
  2876. if (pos)
  2877. *pos++ = '\0';
  2878. if (iface.confname[0] == '\0')
  2879. iface.confname = NULL;
  2880. if (pos == NULL)
  2881. break;
  2882. iface.driver = pos;
  2883. pos = os_strchr(pos, '\t');
  2884. if (pos)
  2885. *pos++ = '\0';
  2886. if (iface.driver[0] == '\0')
  2887. iface.driver = NULL;
  2888. if (pos == NULL)
  2889. break;
  2890. iface.ctrl_interface = pos;
  2891. pos = os_strchr(pos, '\t');
  2892. if (pos)
  2893. *pos++ = '\0';
  2894. if (iface.ctrl_interface[0] == '\0')
  2895. iface.ctrl_interface = NULL;
  2896. if (pos == NULL)
  2897. break;
  2898. iface.driver_param = pos;
  2899. pos = os_strchr(pos, '\t');
  2900. if (pos)
  2901. *pos++ = '\0';
  2902. if (iface.driver_param[0] == '\0')
  2903. iface.driver_param = NULL;
  2904. if (pos == NULL)
  2905. break;
  2906. iface.bridge_ifname = pos;
  2907. pos = os_strchr(pos, '\t');
  2908. if (pos)
  2909. *pos++ = '\0';
  2910. if (iface.bridge_ifname[0] == '\0')
  2911. iface.bridge_ifname = NULL;
  2912. if (pos == NULL)
  2913. break;
  2914. } while (0);
  2915. if (wpa_supplicant_get_iface(global, iface.ifname))
  2916. return -1;
  2917. return wpa_supplicant_add_iface(global, &iface) ? 0 : -1;
  2918. }
  2919. static int wpa_supplicant_global_iface_remove(struct wpa_global *global,
  2920. char *cmd)
  2921. {
  2922. struct wpa_supplicant *wpa_s;
  2923. wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_REMOVE '%s'", cmd);
  2924. wpa_s = wpa_supplicant_get_iface(global, cmd);
  2925. if (wpa_s == NULL)
  2926. return -1;
  2927. return wpa_supplicant_remove_iface(global, wpa_s);
  2928. }
  2929. static void wpa_free_iface_info(struct wpa_interface_info *iface)
  2930. {
  2931. struct wpa_interface_info *prev;
  2932. while (iface) {
  2933. prev = iface;
  2934. iface = iface->next;
  2935. os_free(prev->ifname);
  2936. os_free(prev->desc);
  2937. os_free(prev);
  2938. }
  2939. }
  2940. static int wpa_supplicant_global_iface_list(struct wpa_global *global,
  2941. char *buf, int len)
  2942. {
  2943. int i, res;
  2944. struct wpa_interface_info *iface = NULL, *last = NULL, *tmp;
  2945. char *pos, *end;
  2946. for (i = 0; wpa_drivers[i]; i++) {
  2947. struct wpa_driver_ops *drv = wpa_drivers[i];
  2948. if (drv->get_interfaces == NULL)
  2949. continue;
  2950. tmp = drv->get_interfaces(global->drv_priv[i]);
  2951. if (tmp == NULL)
  2952. continue;
  2953. if (last == NULL)
  2954. iface = last = tmp;
  2955. else
  2956. last->next = tmp;
  2957. while (last->next)
  2958. last = last->next;
  2959. }
  2960. pos = buf;
  2961. end = buf + len;
  2962. for (tmp = iface; tmp; tmp = tmp->next) {
  2963. res = os_snprintf(pos, end - pos, "%s\t%s\t%s\n",
  2964. tmp->drv_name, tmp->ifname,
  2965. tmp->desc ? tmp->desc : "");
  2966. if (res < 0 || res >= end - pos) {
  2967. *pos = '\0';
  2968. break;
  2969. }
  2970. pos += res;
  2971. }
  2972. wpa_free_iface_info(iface);
  2973. return pos - buf;
  2974. }
  2975. static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
  2976. char *buf, int len)
  2977. {
  2978. int res;
  2979. char *pos, *end;
  2980. struct wpa_supplicant *wpa_s;
  2981. wpa_s = global->ifaces;
  2982. pos = buf;
  2983. end = buf + len;
  2984. while (wpa_s) {
  2985. res = os_snprintf(pos, end - pos, "%s\n", wpa_s->ifname);
  2986. if (res < 0 || res >= end - pos) {
  2987. *pos = '\0';
  2988. break;
  2989. }
  2990. pos += res;
  2991. wpa_s = wpa_s->next;
  2992. }
  2993. return pos - buf;
  2994. }
  2995. char * wpa_supplicant_global_ctrl_iface_process(struct wpa_global *global,
  2996. char *buf, size_t *resp_len)
  2997. {
  2998. char *reply;
  2999. const int reply_size = 2048;
  3000. int reply_len;
  3001. int level = MSG_DEBUG;
  3002. if (os_strcmp(buf, "PING") == 0)
  3003. level = MSG_EXCESSIVE;
  3004. wpa_hexdump_ascii(level, "RX global ctrl_iface",
  3005. (const u8 *) buf, os_strlen(buf));
  3006. reply = os_malloc(reply_size);
  3007. if (reply == NULL) {
  3008. *resp_len = 1;
  3009. return NULL;
  3010. }
  3011. os_memcpy(reply, "OK\n", 3);
  3012. reply_len = 3;
  3013. if (os_strcmp(buf, "PING") == 0) {
  3014. os_memcpy(reply, "PONG\n", 5);
  3015. reply_len = 5;
  3016. } else if (os_strncmp(buf, "INTERFACE_ADD ", 14) == 0) {
  3017. if (wpa_supplicant_global_iface_add(global, buf + 14))
  3018. reply_len = -1;
  3019. } else if (os_strncmp(buf, "INTERFACE_REMOVE ", 17) == 0) {
  3020. if (wpa_supplicant_global_iface_remove(global, buf + 17))
  3021. reply_len = -1;
  3022. } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
  3023. reply_len = wpa_supplicant_global_iface_list(
  3024. global, reply, reply_size);
  3025. } else if (os_strcmp(buf, "INTERFACES") == 0) {
  3026. reply_len = wpa_supplicant_global_iface_interfaces(
  3027. global, reply, reply_size);
  3028. } else if (os_strcmp(buf, "TERMINATE") == 0) {
  3029. wpa_supplicant_terminate_proc(global);
  3030. } else if (os_strcmp(buf, "SUSPEND") == 0) {
  3031. wpas_notify_suspend(global);
  3032. } else if (os_strcmp(buf, "RESUME") == 0) {
  3033. wpas_notify_resume(global);
  3034. } else {
  3035. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  3036. reply_len = 16;
  3037. }
  3038. if (reply_len < 0) {
  3039. os_memcpy(reply, "FAIL\n", 5);
  3040. reply_len = 5;
  3041. }
  3042. *resp_len = reply_len;
  3043. return reply;
  3044. }