ctrl_iface.c 75 KB

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