ctrl_iface.c 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220
  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 "notify.h"
  33. #include "bss.h"
  34. #include "scan.h"
  35. #include "ctrl_iface.h"
  36. extern struct wpa_driver_ops *wpa_drivers[];
  37. static int wpa_supplicant_global_iface_list(struct wpa_global *global,
  38. char *buf, int len);
  39. static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
  40. char *buf, int len);
  41. static int wpa_supplicant_ctrl_iface_set(struct wpa_supplicant *wpa_s,
  42. char *cmd)
  43. {
  44. char *value;
  45. int ret = 0;
  46. value = os_strchr(cmd, ' ');
  47. if (value == NULL)
  48. return -1;
  49. *value++ = '\0';
  50. wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
  51. if (os_strcasecmp(cmd, "EAPOL::heldPeriod") == 0) {
  52. eapol_sm_configure(wpa_s->eapol,
  53. atoi(value), -1, -1, -1);
  54. } else if (os_strcasecmp(cmd, "EAPOL::authPeriod") == 0) {
  55. eapol_sm_configure(wpa_s->eapol,
  56. -1, atoi(value), -1, -1);
  57. } else if (os_strcasecmp(cmd, "EAPOL::startPeriod") == 0) {
  58. eapol_sm_configure(wpa_s->eapol,
  59. -1, -1, atoi(value), -1);
  60. } else if (os_strcasecmp(cmd, "EAPOL::maxStart") == 0) {
  61. eapol_sm_configure(wpa_s->eapol,
  62. -1, -1, -1, atoi(value));
  63. } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKLifetime") == 0) {
  64. if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME,
  65. atoi(value)))
  66. ret = -1;
  67. } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKReauthThreshold") ==
  68. 0) {
  69. if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD,
  70. atoi(value)))
  71. ret = -1;
  72. } else if (os_strcasecmp(cmd, "dot11RSNAConfigSATimeout") == 0) {
  73. if (wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT, atoi(value)))
  74. ret = -1;
  75. } else if (os_strcasecmp(cmd, "wps_fragment_size") == 0) {
  76. wpa_s->wps_fragment_size = atoi(value);
  77. } else
  78. ret = -1;
  79. return ret;
  80. }
  81. #ifdef IEEE8021X_EAPOL
  82. static int wpa_supplicant_ctrl_iface_preauth(struct wpa_supplicant *wpa_s,
  83. char *addr)
  84. {
  85. u8 bssid[ETH_ALEN];
  86. struct wpa_ssid *ssid = wpa_s->current_ssid;
  87. if (hwaddr_aton(addr, bssid)) {
  88. wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH: invalid address "
  89. "'%s'", addr);
  90. return -1;
  91. }
  92. wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH " MACSTR, MAC2STR(bssid));
  93. rsn_preauth_deinit(wpa_s->wpa);
  94. if (rsn_preauth_init(wpa_s->wpa, bssid, ssid ? &ssid->eap : NULL))
  95. return -1;
  96. return 0;
  97. }
  98. #endif /* IEEE8021X_EAPOL */
  99. #ifdef CONFIG_PEERKEY
  100. /* MLME-STKSTART.request(peer) */
  101. static int wpa_supplicant_ctrl_iface_stkstart(
  102. struct wpa_supplicant *wpa_s, char *addr)
  103. {
  104. u8 peer[ETH_ALEN];
  105. if (hwaddr_aton(addr, peer)) {
  106. wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART: invalid "
  107. "address '%s'", addr);
  108. return -1;
  109. }
  110. wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART " MACSTR,
  111. MAC2STR(peer));
  112. return wpa_sm_stkstart(wpa_s->wpa, peer);
  113. }
  114. #endif /* CONFIG_PEERKEY */
  115. #ifdef CONFIG_IEEE80211R
  116. static int wpa_supplicant_ctrl_iface_ft_ds(
  117. struct wpa_supplicant *wpa_s, char *addr)
  118. {
  119. u8 target_ap[ETH_ALEN];
  120. struct wpa_bss *bss;
  121. const u8 *mdie;
  122. if (hwaddr_aton(addr, target_ap)) {
  123. wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS: invalid "
  124. "address '%s'", addr);
  125. return -1;
  126. }
  127. wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS " MACSTR, MAC2STR(target_ap));
  128. bss = wpa_bss_get_bssid(wpa_s, target_ap);
  129. if (bss)
  130. mdie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
  131. else
  132. mdie = NULL;
  133. return wpa_ft_start_over_ds(wpa_s->wpa, target_ap, mdie);
  134. }
  135. #endif /* CONFIG_IEEE80211R */
  136. #ifdef CONFIG_WPS
  137. static int wpa_supplicant_ctrl_iface_wps_pbc(struct wpa_supplicant *wpa_s,
  138. char *cmd)
  139. {
  140. u8 bssid[ETH_ALEN], *_bssid = bssid;
  141. if (cmd == NULL || os_strcmp(cmd, "any") == 0)
  142. _bssid = NULL;
  143. else if (hwaddr_aton(cmd, bssid)) {
  144. wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid BSSID '%s'",
  145. cmd);
  146. return -1;
  147. }
  148. #ifdef CONFIG_AP
  149. if (wpa_s->ap_iface)
  150. return wpa_supplicant_ap_wps_pbc(wpa_s, _bssid);
  151. #endif /* CONFIG_AP */
  152. return wpas_wps_start_pbc(wpa_s, _bssid);
  153. }
  154. static int wpa_supplicant_ctrl_iface_wps_pin(struct wpa_supplicant *wpa_s,
  155. char *cmd, char *buf,
  156. size_t buflen)
  157. {
  158. u8 bssid[ETH_ALEN], *_bssid = bssid;
  159. char *pin;
  160. int ret;
  161. pin = os_strchr(cmd, ' ');
  162. if (pin)
  163. *pin++ = '\0';
  164. if (os_strcmp(cmd, "any") == 0)
  165. _bssid = NULL;
  166. else if (hwaddr_aton(cmd, bssid)) {
  167. wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PIN: invalid BSSID '%s'",
  168. cmd);
  169. return -1;
  170. }
  171. #ifdef CONFIG_AP
  172. if (wpa_s->ap_iface)
  173. return wpa_supplicant_ap_wps_pin(wpa_s, _bssid, pin,
  174. buf, buflen);
  175. #endif /* CONFIG_AP */
  176. if (pin) {
  177. ret = wpas_wps_start_pin(wpa_s, _bssid, pin);
  178. if (ret < 0)
  179. return -1;
  180. ret = os_snprintf(buf, buflen, "%s", pin);
  181. if (ret < 0 || (size_t) ret >= buflen)
  182. return -1;
  183. return ret;
  184. }
  185. ret = wpas_wps_start_pin(wpa_s, _bssid, NULL);
  186. if (ret < 0)
  187. return -1;
  188. /* Return the generated PIN */
  189. ret = os_snprintf(buf, buflen, "%08d", ret);
  190. if (ret < 0 || (size_t) ret >= buflen)
  191. return -1;
  192. return ret;
  193. }
  194. #ifdef CONFIG_WPS_OOB
  195. static int wpa_supplicant_ctrl_iface_wps_oob(struct wpa_supplicant *wpa_s,
  196. char *cmd)
  197. {
  198. char *path, *method, *name;
  199. path = os_strchr(cmd, ' ');
  200. if (path == NULL)
  201. return -1;
  202. *path++ = '\0';
  203. method = os_strchr(path, ' ');
  204. if (method == NULL)
  205. return -1;
  206. *method++ = '\0';
  207. name = os_strchr(method, ' ');
  208. if (name != NULL)
  209. *name++ = '\0';
  210. return wpas_wps_start_oob(wpa_s, cmd, path, method, name);
  211. }
  212. #endif /* CONFIG_WPS_OOB */
  213. static int wpa_supplicant_ctrl_iface_wps_reg(struct wpa_supplicant *wpa_s,
  214. char *cmd)
  215. {
  216. u8 bssid[ETH_ALEN], *_bssid = bssid;
  217. char *pin;
  218. char *new_ssid;
  219. char *new_auth;
  220. char *new_encr;
  221. char *new_key;
  222. struct wps_new_ap_settings ap;
  223. pin = os_strchr(cmd, ' ');
  224. if (pin == NULL)
  225. return -1;
  226. *pin++ = '\0';
  227. if (os_strcmp(cmd, "any") == 0)
  228. _bssid = NULL;
  229. else if (hwaddr_aton(cmd, bssid)) {
  230. wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_REG: invalid BSSID '%s'",
  231. cmd);
  232. return -1;
  233. }
  234. new_ssid = os_strchr(pin, ' ');
  235. if (new_ssid == NULL)
  236. return wpas_wps_start_reg(wpa_s, _bssid, pin, NULL);
  237. *new_ssid++ = '\0';
  238. new_auth = os_strchr(new_ssid, ' ');
  239. if (new_auth == NULL)
  240. return -1;
  241. *new_auth++ = '\0';
  242. new_encr = os_strchr(new_auth, ' ');
  243. if (new_encr == NULL)
  244. return -1;
  245. *new_encr++ = '\0';
  246. new_key = os_strchr(new_encr, ' ');
  247. if (new_key == NULL)
  248. return -1;
  249. *new_key++ = '\0';
  250. os_memset(&ap, 0, sizeof(ap));
  251. ap.ssid_hex = new_ssid;
  252. ap.auth = new_auth;
  253. ap.encr = new_encr;
  254. ap.key_hex = new_key;
  255. return wpas_wps_start_reg(wpa_s, _bssid, pin, &ap);
  256. }
  257. #ifdef CONFIG_WPS_ER
  258. static int wpa_supplicant_ctrl_iface_wps_er_pin(struct wpa_supplicant *wpa_s,
  259. char *cmd)
  260. {
  261. char *uuid = cmd, *pin, *pos;
  262. u8 addr_buf[ETH_ALEN], *addr = NULL;
  263. pin = os_strchr(uuid, ' ');
  264. if (pin == NULL)
  265. return -1;
  266. *pin++ = '\0';
  267. pos = os_strchr(pin, ' ');
  268. if (pos) {
  269. *pos++ = '\0';
  270. if (hwaddr_aton(pos, addr_buf) == 0)
  271. addr = addr_buf;
  272. }
  273. return wpas_wps_er_add_pin(wpa_s, addr, uuid, pin);
  274. }
  275. static int wpa_supplicant_ctrl_iface_wps_er_learn(struct wpa_supplicant *wpa_s,
  276. char *cmd)
  277. {
  278. char *uuid = cmd, *pin;
  279. pin = os_strchr(uuid, ' ');
  280. if (pin == NULL)
  281. return -1;
  282. *pin++ = '\0';
  283. return wpas_wps_er_learn(wpa_s, uuid, pin);
  284. }
  285. static int wpa_supplicant_ctrl_iface_wps_er_config(
  286. struct wpa_supplicant *wpa_s, char *cmd)
  287. {
  288. char *pin;
  289. char *new_ssid;
  290. char *new_auth;
  291. char *new_encr;
  292. char *new_key;
  293. struct wps_new_ap_settings ap;
  294. pin = os_strchr(cmd, ' ');
  295. if (pin == NULL)
  296. return -1;
  297. *pin++ = '\0';
  298. new_ssid = os_strchr(pin, ' ');
  299. if (new_ssid == NULL)
  300. return -1;
  301. *new_ssid++ = '\0';
  302. new_auth = os_strchr(new_ssid, ' ');
  303. if (new_auth == NULL)
  304. return -1;
  305. *new_auth++ = '\0';
  306. new_encr = os_strchr(new_auth, ' ');
  307. if (new_encr == NULL)
  308. return -1;
  309. *new_encr++ = '\0';
  310. new_key = os_strchr(new_encr, ' ');
  311. if (new_key == NULL)
  312. return -1;
  313. *new_key++ = '\0';
  314. os_memset(&ap, 0, sizeof(ap));
  315. ap.ssid_hex = new_ssid;
  316. ap.auth = new_auth;
  317. ap.encr = new_encr;
  318. ap.key_hex = new_key;
  319. return wpas_wps_er_config(wpa_s, cmd, pin, &ap);
  320. }
  321. #endif /* CONFIG_WPS_ER */
  322. #endif /* CONFIG_WPS */
  323. #ifdef CONFIG_IBSS_RSN
  324. static int wpa_supplicant_ctrl_iface_ibss_rsn(
  325. struct wpa_supplicant *wpa_s, char *addr)
  326. {
  327. u8 peer[ETH_ALEN];
  328. if (hwaddr_aton(addr, peer)) {
  329. wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN: invalid "
  330. "address '%s'", addr);
  331. return -1;
  332. }
  333. wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN " MACSTR,
  334. MAC2STR(peer));
  335. return ibss_rsn_start(wpa_s->ibss_rsn, peer);
  336. }
  337. #endif /* CONFIG_IBSS_RSN */
  338. static int wpa_supplicant_ctrl_iface_ctrl_rsp(struct wpa_supplicant *wpa_s,
  339. char *rsp)
  340. {
  341. #ifdef IEEE8021X_EAPOL
  342. char *pos, *id_pos;
  343. int id;
  344. struct wpa_ssid *ssid;
  345. struct eap_peer_config *eap;
  346. pos = os_strchr(rsp, '-');
  347. if (pos == NULL)
  348. return -1;
  349. *pos++ = '\0';
  350. id_pos = pos;
  351. pos = os_strchr(pos, ':');
  352. if (pos == NULL)
  353. return -1;
  354. *pos++ = '\0';
  355. id = atoi(id_pos);
  356. wpa_printf(MSG_DEBUG, "CTRL_IFACE: field=%s id=%d", rsp, id);
  357. wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
  358. (u8 *) pos, os_strlen(pos));
  359. ssid = wpa_config_get_network(wpa_s->conf, id);
  360. if (ssid == NULL) {
  361. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
  362. "to update", id);
  363. return -1;
  364. }
  365. eap = &ssid->eap;
  366. if (os_strcmp(rsp, "IDENTITY") == 0) {
  367. os_free(eap->identity);
  368. eap->identity = (u8 *) os_strdup(pos);
  369. eap->identity_len = os_strlen(pos);
  370. eap->pending_req_identity = 0;
  371. if (ssid == wpa_s->current_ssid)
  372. wpa_s->reassociate = 1;
  373. } else if (os_strcmp(rsp, "PASSWORD") == 0) {
  374. os_free(eap->password);
  375. eap->password = (u8 *) os_strdup(pos);
  376. eap->password_len = os_strlen(pos);
  377. eap->pending_req_password = 0;
  378. if (ssid == wpa_s->current_ssid)
  379. wpa_s->reassociate = 1;
  380. } else if (os_strcmp(rsp, "NEW_PASSWORD") == 0) {
  381. os_free(eap->new_password);
  382. eap->new_password = (u8 *) os_strdup(pos);
  383. eap->new_password_len = os_strlen(pos);
  384. eap->pending_req_new_password = 0;
  385. if (ssid == wpa_s->current_ssid)
  386. wpa_s->reassociate = 1;
  387. } else if (os_strcmp(rsp, "PIN") == 0) {
  388. os_free(eap->pin);
  389. eap->pin = os_strdup(pos);
  390. eap->pending_req_pin = 0;
  391. if (ssid == wpa_s->current_ssid)
  392. wpa_s->reassociate = 1;
  393. } else if (os_strcmp(rsp, "OTP") == 0) {
  394. os_free(eap->otp);
  395. eap->otp = (u8 *) os_strdup(pos);
  396. eap->otp_len = os_strlen(pos);
  397. os_free(eap->pending_req_otp);
  398. eap->pending_req_otp = NULL;
  399. eap->pending_req_otp_len = 0;
  400. } else if (os_strcmp(rsp, "PASSPHRASE") == 0) {
  401. os_free(eap->private_key_passwd);
  402. eap->private_key_passwd = (u8 *) os_strdup(pos);
  403. eap->pending_req_passphrase = 0;
  404. if (ssid == wpa_s->current_ssid)
  405. wpa_s->reassociate = 1;
  406. } else {
  407. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown field '%s'", rsp);
  408. return -1;
  409. }
  410. return 0;
  411. #else /* IEEE8021X_EAPOL */
  412. wpa_printf(MSG_DEBUG, "CTRL_IFACE: 802.1X not included");
  413. return -1;
  414. #endif /* IEEE8021X_EAPOL */
  415. }
  416. static int wpa_supplicant_ctrl_iface_status(struct wpa_supplicant *wpa_s,
  417. const char *params,
  418. char *buf, size_t buflen)
  419. {
  420. char *pos, *end, tmp[30];
  421. int res, verbose, ret;
  422. verbose = os_strcmp(params, "-VERBOSE") == 0;
  423. pos = buf;
  424. end = buf + buflen;
  425. if (wpa_s->wpa_state >= WPA_ASSOCIATED) {
  426. struct wpa_ssid *ssid = wpa_s->current_ssid;
  427. ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
  428. MAC2STR(wpa_s->bssid));
  429. if (ret < 0 || ret >= end - pos)
  430. return pos - buf;
  431. pos += ret;
  432. if (ssid) {
  433. u8 *_ssid = ssid->ssid;
  434. size_t ssid_len = ssid->ssid_len;
  435. u8 ssid_buf[MAX_SSID_LEN];
  436. if (ssid_len == 0) {
  437. int _res = wpa_drv_get_ssid(wpa_s, ssid_buf);
  438. if (_res < 0)
  439. ssid_len = 0;
  440. else
  441. ssid_len = _res;
  442. _ssid = ssid_buf;
  443. }
  444. ret = os_snprintf(pos, end - pos, "ssid=%s\nid=%d\n",
  445. wpa_ssid_txt(_ssid, ssid_len),
  446. ssid->id);
  447. if (ret < 0 || ret >= end - pos)
  448. return pos - buf;
  449. pos += ret;
  450. if (ssid->id_str) {
  451. ret = os_snprintf(pos, end - pos,
  452. "id_str=%s\n",
  453. ssid->id_str);
  454. if (ret < 0 || ret >= end - pos)
  455. return pos - buf;
  456. pos += ret;
  457. }
  458. switch (ssid->mode) {
  459. case WPAS_MODE_INFRA:
  460. ret = os_snprintf(pos, end - pos,
  461. "mode=station\n");
  462. break;
  463. case WPAS_MODE_IBSS:
  464. ret = os_snprintf(pos, end - pos,
  465. "mode=IBSS\n");
  466. break;
  467. case WPAS_MODE_AP:
  468. ret = os_snprintf(pos, end - pos,
  469. "mode=AP\n");
  470. break;
  471. default:
  472. ret = 0;
  473. break;
  474. }
  475. if (ret < 0 || ret >= end - pos)
  476. return pos - buf;
  477. pos += ret;
  478. }
  479. #ifdef CONFIG_AP
  480. if (wpa_s->ap_iface) {
  481. pos += ap_ctrl_iface_wpa_get_status(wpa_s, pos,
  482. end - pos,
  483. verbose);
  484. } else
  485. #endif /* CONFIG_AP */
  486. pos += wpa_sm_get_status(wpa_s->wpa, pos, end - pos, verbose);
  487. }
  488. ret = os_snprintf(pos, end - pos, "wpa_state=%s\n",
  489. wpa_supplicant_state_txt(wpa_s->wpa_state));
  490. if (ret < 0 || ret >= end - pos)
  491. return pos - buf;
  492. pos += ret;
  493. if (wpa_s->l2 &&
  494. l2_packet_get_ip_addr(wpa_s->l2, tmp, sizeof(tmp)) >= 0) {
  495. ret = os_snprintf(pos, end - pos, "ip_address=%s\n", tmp);
  496. if (ret < 0 || ret >= end - pos)
  497. return pos - buf;
  498. pos += ret;
  499. }
  500. if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
  501. wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  502. res = eapol_sm_get_status(wpa_s->eapol, pos, end - pos,
  503. verbose);
  504. if (res >= 0)
  505. pos += res;
  506. }
  507. res = rsn_preauth_get_status(wpa_s->wpa, pos, end - pos, verbose);
  508. if (res >= 0)
  509. pos += res;
  510. return pos - buf;
  511. }
  512. static int wpa_supplicant_ctrl_iface_bssid(struct wpa_supplicant *wpa_s,
  513. char *cmd)
  514. {
  515. char *pos;
  516. int id;
  517. struct wpa_ssid *ssid;
  518. u8 bssid[ETH_ALEN];
  519. /* cmd: "<network id> <BSSID>" */
  520. pos = os_strchr(cmd, ' ');
  521. if (pos == NULL)
  522. return -1;
  523. *pos++ = '\0';
  524. id = atoi(cmd);
  525. wpa_printf(MSG_DEBUG, "CTRL_IFACE: id=%d bssid='%s'", id, pos);
  526. if (hwaddr_aton(pos, bssid)) {
  527. wpa_printf(MSG_DEBUG ,"CTRL_IFACE: invalid BSSID '%s'", pos);
  528. return -1;
  529. }
  530. ssid = wpa_config_get_network(wpa_s->conf, id);
  531. if (ssid == NULL) {
  532. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
  533. "to update", id);
  534. return -1;
  535. }
  536. os_memcpy(ssid->bssid, bssid, ETH_ALEN);
  537. ssid->bssid_set = !is_zero_ether_addr(bssid);
  538. return 0;
  539. }
  540. static int wpa_supplicant_ctrl_iface_list_networks(
  541. struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
  542. {
  543. char *pos, *end;
  544. struct wpa_ssid *ssid;
  545. int ret;
  546. pos = buf;
  547. end = buf + buflen;
  548. ret = os_snprintf(pos, end - pos,
  549. "network id / ssid / bssid / flags\n");
  550. if (ret < 0 || ret >= end - pos)
  551. return pos - buf;
  552. pos += ret;
  553. ssid = wpa_s->conf->ssid;
  554. while (ssid) {
  555. ret = os_snprintf(pos, end - pos, "%d\t%s",
  556. ssid->id,
  557. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  558. if (ret < 0 || ret >= end - pos)
  559. return pos - buf;
  560. pos += ret;
  561. if (ssid->bssid_set) {
  562. ret = os_snprintf(pos, end - pos, "\t" MACSTR,
  563. MAC2STR(ssid->bssid));
  564. } else {
  565. ret = os_snprintf(pos, end - pos, "\tany");
  566. }
  567. if (ret < 0 || ret >= end - pos)
  568. return pos - buf;
  569. pos += ret;
  570. ret = os_snprintf(pos, end - pos, "\t%s%s",
  571. ssid == wpa_s->current_ssid ?
  572. "[CURRENT]" : "",
  573. ssid->disabled ? "[DISABLED]" : "");
  574. if (ret < 0 || ret >= end - pos)
  575. return pos - buf;
  576. pos += ret;
  577. ret = os_snprintf(pos, end - pos, "\n");
  578. if (ret < 0 || ret >= end - pos)
  579. return pos - buf;
  580. pos += ret;
  581. ssid = ssid->next;
  582. }
  583. return pos - buf;
  584. }
  585. static char * wpa_supplicant_cipher_txt(char *pos, char *end, int cipher)
  586. {
  587. int first = 1, ret;
  588. ret = os_snprintf(pos, end - pos, "-");
  589. if (ret < 0 || ret >= end - pos)
  590. return pos;
  591. pos += ret;
  592. if (cipher & WPA_CIPHER_NONE) {
  593. ret = os_snprintf(pos, end - pos, "%sNONE", first ? "" : "+");
  594. if (ret < 0 || ret >= end - pos)
  595. return pos;
  596. pos += ret;
  597. first = 0;
  598. }
  599. if (cipher & WPA_CIPHER_WEP40) {
  600. ret = os_snprintf(pos, end - pos, "%sWEP40", first ? "" : "+");
  601. if (ret < 0 || ret >= end - pos)
  602. return pos;
  603. pos += ret;
  604. first = 0;
  605. }
  606. if (cipher & WPA_CIPHER_WEP104) {
  607. ret = os_snprintf(pos, end - pos, "%sWEP104",
  608. first ? "" : "+");
  609. if (ret < 0 || ret >= end - pos)
  610. return pos;
  611. pos += ret;
  612. first = 0;
  613. }
  614. if (cipher & WPA_CIPHER_TKIP) {
  615. ret = os_snprintf(pos, end - pos, "%sTKIP", first ? "" : "+");
  616. if (ret < 0 || ret >= end - pos)
  617. return pos;
  618. pos += ret;
  619. first = 0;
  620. }
  621. if (cipher & WPA_CIPHER_CCMP) {
  622. ret = os_snprintf(pos, end - pos, "%sCCMP", first ? "" : "+");
  623. if (ret < 0 || ret >= end - pos)
  624. return pos;
  625. pos += ret;
  626. first = 0;
  627. }
  628. return pos;
  629. }
  630. static char * wpa_supplicant_ie_txt(char *pos, char *end, const char *proto,
  631. const u8 *ie, size_t ie_len)
  632. {
  633. struct wpa_ie_data data;
  634. int first, ret;
  635. ret = os_snprintf(pos, end - pos, "[%s-", proto);
  636. if (ret < 0 || ret >= end - pos)
  637. return pos;
  638. pos += ret;
  639. if (wpa_parse_wpa_ie(ie, ie_len, &data) < 0) {
  640. ret = os_snprintf(pos, end - pos, "?]");
  641. if (ret < 0 || ret >= end - pos)
  642. return pos;
  643. pos += ret;
  644. return pos;
  645. }
  646. first = 1;
  647. if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
  648. ret = os_snprintf(pos, end - pos, "%sEAP", first ? "" : "+");
  649. if (ret < 0 || ret >= end - pos)
  650. return pos;
  651. pos += ret;
  652. first = 0;
  653. }
  654. if (data.key_mgmt & WPA_KEY_MGMT_PSK) {
  655. ret = os_snprintf(pos, end - pos, "%sPSK", first ? "" : "+");
  656. if (ret < 0 || ret >= end - pos)
  657. return pos;
  658. pos += ret;
  659. first = 0;
  660. }
  661. if (data.key_mgmt & WPA_KEY_MGMT_WPA_NONE) {
  662. ret = os_snprintf(pos, end - pos, "%sNone", first ? "" : "+");
  663. if (ret < 0 || ret >= end - pos)
  664. return pos;
  665. pos += ret;
  666. first = 0;
  667. }
  668. #ifdef CONFIG_IEEE80211R
  669. if (data.key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
  670. ret = os_snprintf(pos, end - pos, "%sFT/EAP",
  671. first ? "" : "+");
  672. if (ret < 0 || ret >= end - pos)
  673. return pos;
  674. pos += ret;
  675. first = 0;
  676. }
  677. if (data.key_mgmt & WPA_KEY_MGMT_FT_PSK) {
  678. ret = os_snprintf(pos, end - pos, "%sFT/PSK",
  679. first ? "" : "+");
  680. if (ret < 0 || ret >= end - pos)
  681. return pos;
  682. pos += ret;
  683. first = 0;
  684. }
  685. #endif /* CONFIG_IEEE80211R */
  686. #ifdef CONFIG_IEEE80211W
  687. if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
  688. ret = os_snprintf(pos, end - pos, "%sEAP-SHA256",
  689. first ? "" : "+");
  690. if (ret < 0 || ret >= end - pos)
  691. return pos;
  692. pos += ret;
  693. first = 0;
  694. }
  695. if (data.key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
  696. ret = os_snprintf(pos, end - pos, "%sPSK-SHA256",
  697. first ? "" : "+");
  698. if (ret < 0 || ret >= end - pos)
  699. return pos;
  700. pos += ret;
  701. first = 0;
  702. }
  703. #endif /* CONFIG_IEEE80211W */
  704. pos = wpa_supplicant_cipher_txt(pos, end, data.pairwise_cipher);
  705. if (data.capabilities & WPA_CAPABILITY_PREAUTH) {
  706. ret = os_snprintf(pos, end - pos, "-preauth");
  707. if (ret < 0 || ret >= end - pos)
  708. return pos;
  709. pos += ret;
  710. }
  711. ret = os_snprintf(pos, end - pos, "]");
  712. if (ret < 0 || ret >= end - pos)
  713. return pos;
  714. pos += ret;
  715. return pos;
  716. }
  717. #ifdef CONFIG_WPS
  718. static char * wpa_supplicant_wps_ie_txt_buf(struct wpa_supplicant *wpa_s,
  719. char *pos, char *end,
  720. struct wpabuf *wps_ie)
  721. {
  722. int ret;
  723. const char *txt;
  724. if (wps_ie == NULL)
  725. return pos;
  726. if (wps_is_selected_pbc_registrar(wps_ie))
  727. txt = "[WPS-PBC]";
  728. #ifdef CONFIG_WPS2
  729. else if (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 0))
  730. txt = "[WPS-AUTH]";
  731. #endif /* CONFIG_WPS2 */
  732. else if (wps_is_selected_pin_registrar(wps_ie))
  733. txt = "[WPS-PIN]";
  734. else
  735. txt = "[WPS]";
  736. ret = os_snprintf(pos, end - pos, "%s", txt);
  737. if (ret >= 0 && ret < end - pos)
  738. pos += ret;
  739. wpabuf_free(wps_ie);
  740. return pos;
  741. }
  742. #endif /* CONFIG_WPS */
  743. static char * wpa_supplicant_wps_ie_txt(struct wpa_supplicant *wpa_s,
  744. char *pos, char *end,
  745. const struct wpa_bss *bss)
  746. {
  747. #ifdef CONFIG_WPS
  748. struct wpabuf *wps_ie;
  749. wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  750. return wpa_supplicant_wps_ie_txt_buf(wpa_s, pos, end, wps_ie);
  751. #else /* CONFIG_WPS */
  752. return pos;
  753. #endif /* CONFIG_WPS */
  754. }
  755. /* Format one result on one text line into a buffer. */
  756. static int wpa_supplicant_ctrl_iface_scan_result(
  757. struct wpa_supplicant *wpa_s,
  758. const struct wpa_bss *bss, char *buf, size_t buflen)
  759. {
  760. char *pos, *end;
  761. int ret;
  762. const u8 *ie, *ie2;
  763. pos = buf;
  764. end = buf + buflen;
  765. ret = os_snprintf(pos, end - pos, MACSTR "\t%d\t%d\t",
  766. MAC2STR(bss->bssid), bss->freq, bss->level);
  767. if (ret < 0 || ret >= end - pos)
  768. return pos - buf;
  769. pos += ret;
  770. ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  771. if (ie)
  772. pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie, 2 + ie[1]);
  773. ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  774. if (ie2)
  775. pos = wpa_supplicant_ie_txt(pos, end, "WPA2", ie2, 2 + ie2[1]);
  776. pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
  777. if (!ie && !ie2 && bss->caps & IEEE80211_CAP_PRIVACY) {
  778. ret = os_snprintf(pos, end - pos, "[WEP]");
  779. if (ret < 0 || ret >= end - pos)
  780. return pos - buf;
  781. pos += ret;
  782. }
  783. if (bss->caps & IEEE80211_CAP_IBSS) {
  784. ret = os_snprintf(pos, end - pos, "[IBSS]");
  785. if (ret < 0 || ret >= end - pos)
  786. return pos - buf;
  787. pos += ret;
  788. }
  789. if (bss->caps & IEEE80211_CAP_ESS) {
  790. ret = os_snprintf(pos, end - pos, "[ESS]");
  791. if (ret < 0 || ret >= end - pos)
  792. return pos - buf;
  793. pos += ret;
  794. }
  795. ret = os_snprintf(pos, end - pos, "\t%s",
  796. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  797. if (ret < 0 || ret >= end - pos)
  798. return pos - buf;
  799. pos += ret;
  800. ret = os_snprintf(pos, end - pos, "\n");
  801. if (ret < 0 || ret >= end - pos)
  802. return pos - buf;
  803. pos += ret;
  804. return pos - buf;
  805. }
  806. static int wpa_supplicant_ctrl_iface_scan_results(
  807. struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
  808. {
  809. char *pos, *end;
  810. struct wpa_bss *bss;
  811. int ret;
  812. pos = buf;
  813. end = buf + buflen;
  814. ret = os_snprintf(pos, end - pos, "bssid / frequency / signal level / "
  815. "flags / ssid\n");
  816. if (ret < 0 || ret >= end - pos)
  817. return pos - buf;
  818. pos += ret;
  819. dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
  820. ret = wpa_supplicant_ctrl_iface_scan_result(wpa_s, bss, pos,
  821. end - pos);
  822. if (ret < 0 || ret >= end - pos)
  823. return pos - buf;
  824. pos += ret;
  825. }
  826. return pos - buf;
  827. }
  828. static int wpa_supplicant_ctrl_iface_select_network(
  829. struct wpa_supplicant *wpa_s, char *cmd)
  830. {
  831. int id;
  832. struct wpa_ssid *ssid;
  833. /* cmd: "<network id>" or "any" */
  834. if (os_strcmp(cmd, "any") == 0) {
  835. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK any");
  836. ssid = NULL;
  837. } else {
  838. id = atoi(cmd);
  839. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK id=%d", id);
  840. ssid = wpa_config_get_network(wpa_s->conf, id);
  841. if (ssid == NULL) {
  842. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
  843. "network id=%d", id);
  844. return -1;
  845. }
  846. }
  847. wpa_supplicant_select_network(wpa_s, ssid);
  848. return 0;
  849. }
  850. static int wpa_supplicant_ctrl_iface_enable_network(
  851. struct wpa_supplicant *wpa_s, char *cmd)
  852. {
  853. int id;
  854. struct wpa_ssid *ssid;
  855. /* cmd: "<network id>" or "all" */
  856. if (os_strcmp(cmd, "all") == 0) {
  857. wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK all");
  858. ssid = NULL;
  859. } else {
  860. id = atoi(cmd);
  861. wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK id=%d", id);
  862. ssid = wpa_config_get_network(wpa_s->conf, id);
  863. if (ssid == NULL) {
  864. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
  865. "network id=%d", id);
  866. return -1;
  867. }
  868. }
  869. wpa_supplicant_enable_network(wpa_s, ssid);
  870. return 0;
  871. }
  872. static int wpa_supplicant_ctrl_iface_disable_network(
  873. struct wpa_supplicant *wpa_s, char *cmd)
  874. {
  875. int id;
  876. struct wpa_ssid *ssid;
  877. /* cmd: "<network id>" or "all" */
  878. if (os_strcmp(cmd, "all") == 0) {
  879. wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK all");
  880. ssid = NULL;
  881. } else {
  882. id = atoi(cmd);
  883. wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK id=%d", id);
  884. ssid = wpa_config_get_network(wpa_s->conf, id);
  885. if (ssid == NULL) {
  886. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
  887. "network id=%d", id);
  888. return -1;
  889. }
  890. }
  891. wpa_supplicant_disable_network(wpa_s, ssid);
  892. return 0;
  893. }
  894. static int wpa_supplicant_ctrl_iface_add_network(
  895. struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
  896. {
  897. struct wpa_ssid *ssid;
  898. int ret;
  899. wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_NETWORK");
  900. ssid = wpa_config_add_network(wpa_s->conf);
  901. if (ssid == NULL)
  902. return -1;
  903. wpas_notify_network_added(wpa_s, ssid);
  904. ssid->disabled = 1;
  905. wpa_config_set_network_defaults(ssid);
  906. ret = os_snprintf(buf, buflen, "%d\n", ssid->id);
  907. if (ret < 0 || (size_t) ret >= buflen)
  908. return -1;
  909. return ret;
  910. }
  911. static int wpa_supplicant_ctrl_iface_remove_network(
  912. struct wpa_supplicant *wpa_s, char *cmd)
  913. {
  914. int id;
  915. struct wpa_ssid *ssid;
  916. /* cmd: "<network id>" or "all" */
  917. if (os_strcmp(cmd, "all") == 0) {
  918. wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK all");
  919. ssid = wpa_s->conf->ssid;
  920. while (ssid) {
  921. struct wpa_ssid *remove_ssid = ssid;
  922. id = ssid->id;
  923. ssid = ssid->next;
  924. wpas_notify_network_removed(wpa_s, remove_ssid);
  925. wpa_config_remove_network(wpa_s->conf, id);
  926. }
  927. if (wpa_s->current_ssid) {
  928. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  929. wpa_supplicant_disassociate(wpa_s,
  930. WLAN_REASON_DEAUTH_LEAVING);
  931. }
  932. return 0;
  933. }
  934. id = atoi(cmd);
  935. wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK id=%d", id);
  936. ssid = wpa_config_get_network(wpa_s->conf, id);
  937. if (ssid == NULL ||
  938. wpa_config_remove_network(wpa_s->conf, id) < 0) {
  939. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
  940. "id=%d", id);
  941. return -1;
  942. }
  943. if (ssid == wpa_s->current_ssid) {
  944. /*
  945. * Invalidate the EAP session cache if the current network is
  946. * removed.
  947. */
  948. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  949. wpa_supplicant_disassociate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  950. }
  951. return 0;
  952. }
  953. static int wpa_supplicant_ctrl_iface_set_network(
  954. struct wpa_supplicant *wpa_s, char *cmd)
  955. {
  956. int id;
  957. struct wpa_ssid *ssid;
  958. char *name, *value;
  959. /* cmd: "<network id> <variable name> <value>" */
  960. name = os_strchr(cmd, ' ');
  961. if (name == NULL)
  962. return -1;
  963. *name++ = '\0';
  964. value = os_strchr(name, ' ');
  965. if (value == NULL)
  966. return -1;
  967. *value++ = '\0';
  968. id = atoi(cmd);
  969. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_NETWORK id=%d name='%s'",
  970. id, name);
  971. wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
  972. (u8 *) value, os_strlen(value));
  973. ssid = wpa_config_get_network(wpa_s->conf, id);
  974. if (ssid == NULL) {
  975. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
  976. "id=%d", id);
  977. return -1;
  978. }
  979. if (wpa_config_set(ssid, name, value, 0) < 0) {
  980. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set network "
  981. "variable '%s'", name);
  982. return -1;
  983. }
  984. if (wpa_s->current_ssid == ssid) {
  985. /*
  986. * Invalidate the EAP session cache if anything in the current
  987. * configuration changes.
  988. */
  989. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  990. }
  991. if ((os_strcmp(name, "psk") == 0 &&
  992. value[0] == '"' && ssid->ssid_len) ||
  993. (os_strcmp(name, "ssid") == 0 && ssid->passphrase))
  994. wpa_config_update_psk(ssid);
  995. else if (os_strcmp(name, "priority") == 0)
  996. wpa_config_update_prio_list(wpa_s->conf);
  997. return 0;
  998. }
  999. static int wpa_supplicant_ctrl_iface_get_network(
  1000. struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
  1001. {
  1002. int id;
  1003. size_t res;
  1004. struct wpa_ssid *ssid;
  1005. char *name, *value;
  1006. /* cmd: "<network id> <variable name>" */
  1007. name = os_strchr(cmd, ' ');
  1008. if (name == NULL || buflen == 0)
  1009. return -1;
  1010. *name++ = '\0';
  1011. id = atoi(cmd);
  1012. wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_NETWORK id=%d name='%s'",
  1013. id, name);
  1014. ssid = wpa_config_get_network(wpa_s->conf, id);
  1015. if (ssid == NULL) {
  1016. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
  1017. "id=%d", id);
  1018. return -1;
  1019. }
  1020. value = wpa_config_get_no_key(ssid, name);
  1021. if (value == NULL) {
  1022. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to get network "
  1023. "variable '%s'", name);
  1024. return -1;
  1025. }
  1026. res = os_strlcpy(buf, value, buflen);
  1027. if (res >= buflen) {
  1028. os_free(value);
  1029. return -1;
  1030. }
  1031. os_free(value);
  1032. return res;
  1033. }
  1034. #ifndef CONFIG_NO_CONFIG_WRITE
  1035. static int wpa_supplicant_ctrl_iface_save_config(struct wpa_supplicant *wpa_s)
  1036. {
  1037. int ret;
  1038. if (!wpa_s->conf->update_config) {
  1039. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Not allowed "
  1040. "to update configuration (update_config=0)");
  1041. return -1;
  1042. }
  1043. ret = wpa_config_write(wpa_s->confname, wpa_s->conf);
  1044. if (ret) {
  1045. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Failed to "
  1046. "update configuration");
  1047. } else {
  1048. wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Configuration"
  1049. " updated");
  1050. }
  1051. return ret;
  1052. }
  1053. #endif /* CONFIG_NO_CONFIG_WRITE */
  1054. static int ctrl_iface_get_capability_pairwise(int res, char *strict,
  1055. struct wpa_driver_capa *capa,
  1056. char *buf, size_t buflen)
  1057. {
  1058. int ret, first = 1;
  1059. char *pos, *end;
  1060. size_t len;
  1061. pos = buf;
  1062. end = pos + buflen;
  1063. if (res < 0) {
  1064. if (strict)
  1065. return 0;
  1066. len = os_strlcpy(buf, "CCMP TKIP NONE", buflen);
  1067. if (len >= buflen)
  1068. return -1;
  1069. return len;
  1070. }
  1071. if (capa->enc & WPA_DRIVER_CAPA_ENC_CCMP) {
  1072. ret = os_snprintf(pos, end - pos, "%sCCMP", first ? "" : " ");
  1073. if (ret < 0 || ret >= end - pos)
  1074. return pos - buf;
  1075. pos += ret;
  1076. first = 0;
  1077. }
  1078. if (capa->enc & WPA_DRIVER_CAPA_ENC_TKIP) {
  1079. ret = os_snprintf(pos, end - pos, "%sTKIP", first ? "" : " ");
  1080. if (ret < 0 || ret >= end - pos)
  1081. return pos - buf;
  1082. pos += ret;
  1083. first = 0;
  1084. }
  1085. if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
  1086. ret = os_snprintf(pos, end - pos, "%sNONE", first ? "" : " ");
  1087. if (ret < 0 || ret >= end - pos)
  1088. return pos - buf;
  1089. pos += ret;
  1090. first = 0;
  1091. }
  1092. return pos - buf;
  1093. }
  1094. static int ctrl_iface_get_capability_group(int res, char *strict,
  1095. struct wpa_driver_capa *capa,
  1096. char *buf, size_t buflen)
  1097. {
  1098. int ret, first = 1;
  1099. char *pos, *end;
  1100. size_t len;
  1101. pos = buf;
  1102. end = pos + buflen;
  1103. if (res < 0) {
  1104. if (strict)
  1105. return 0;
  1106. len = os_strlcpy(buf, "CCMP TKIP WEP104 WEP40", buflen);
  1107. if (len >= buflen)
  1108. return -1;
  1109. return len;
  1110. }
  1111. if (capa->enc & WPA_DRIVER_CAPA_ENC_CCMP) {
  1112. ret = os_snprintf(pos, end - pos, "%sCCMP", first ? "" : " ");
  1113. if (ret < 0 || ret >= end - pos)
  1114. return pos - buf;
  1115. pos += ret;
  1116. first = 0;
  1117. }
  1118. if (capa->enc & WPA_DRIVER_CAPA_ENC_TKIP) {
  1119. ret = os_snprintf(pos, end - pos, "%sTKIP", first ? "" : " ");
  1120. if (ret < 0 || ret >= end - pos)
  1121. return pos - buf;
  1122. pos += ret;
  1123. first = 0;
  1124. }
  1125. if (capa->enc & WPA_DRIVER_CAPA_ENC_WEP104) {
  1126. ret = os_snprintf(pos, end - pos, "%sWEP104",
  1127. first ? "" : " ");
  1128. if (ret < 0 || ret >= end - pos)
  1129. return pos - buf;
  1130. pos += ret;
  1131. first = 0;
  1132. }
  1133. if (capa->enc & WPA_DRIVER_CAPA_ENC_WEP40) {
  1134. ret = os_snprintf(pos, end - pos, "%sWEP40", first ? "" : " ");
  1135. if (ret < 0 || ret >= end - pos)
  1136. return pos - buf;
  1137. pos += ret;
  1138. first = 0;
  1139. }
  1140. return pos - buf;
  1141. }
  1142. static int ctrl_iface_get_capability_key_mgmt(int res, char *strict,
  1143. struct wpa_driver_capa *capa,
  1144. char *buf, size_t buflen)
  1145. {
  1146. int ret;
  1147. char *pos, *end;
  1148. size_t len;
  1149. pos = buf;
  1150. end = pos + buflen;
  1151. if (res < 0) {
  1152. if (strict)
  1153. return 0;
  1154. len = os_strlcpy(buf, "WPA-PSK WPA-EAP IEEE8021X WPA-NONE "
  1155. "NONE", buflen);
  1156. if (len >= buflen)
  1157. return -1;
  1158. return len;
  1159. }
  1160. ret = os_snprintf(pos, end - pos, "NONE IEEE8021X");
  1161. if (ret < 0 || ret >= end - pos)
  1162. return pos - buf;
  1163. pos += ret;
  1164. if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
  1165. WPA_DRIVER_CAPA_KEY_MGMT_WPA2)) {
  1166. ret = os_snprintf(pos, end - pos, " WPA-EAP");
  1167. if (ret < 0 || ret >= end - pos)
  1168. return pos - buf;
  1169. pos += ret;
  1170. }
  1171. if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
  1172. WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
  1173. ret = os_snprintf(pos, end - pos, " WPA-PSK");
  1174. if (ret < 0 || ret >= end - pos)
  1175. return pos - buf;
  1176. pos += ret;
  1177. }
  1178. if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
  1179. ret = os_snprintf(pos, end - pos, " WPA-NONE");
  1180. if (ret < 0 || ret >= end - pos)
  1181. return pos - buf;
  1182. pos += ret;
  1183. }
  1184. return pos - buf;
  1185. }
  1186. static int ctrl_iface_get_capability_proto(int res, char *strict,
  1187. struct wpa_driver_capa *capa,
  1188. char *buf, size_t buflen)
  1189. {
  1190. int ret, first = 1;
  1191. char *pos, *end;
  1192. size_t len;
  1193. pos = buf;
  1194. end = pos + buflen;
  1195. if (res < 0) {
  1196. if (strict)
  1197. return 0;
  1198. len = os_strlcpy(buf, "RSN WPA", buflen);
  1199. if (len >= buflen)
  1200. return -1;
  1201. return len;
  1202. }
  1203. if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
  1204. WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
  1205. ret = os_snprintf(pos, end - pos, "%sRSN", first ? "" : " ");
  1206. if (ret < 0 || ret >= end - pos)
  1207. return pos - buf;
  1208. pos += ret;
  1209. first = 0;
  1210. }
  1211. if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
  1212. WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK)) {
  1213. ret = os_snprintf(pos, end - pos, "%sWPA", first ? "" : " ");
  1214. if (ret < 0 || ret >= end - pos)
  1215. return pos - buf;
  1216. pos += ret;
  1217. first = 0;
  1218. }
  1219. return pos - buf;
  1220. }
  1221. static int ctrl_iface_get_capability_auth_alg(int res, char *strict,
  1222. struct wpa_driver_capa *capa,
  1223. char *buf, size_t buflen)
  1224. {
  1225. int ret, first = 1;
  1226. char *pos, *end;
  1227. size_t len;
  1228. pos = buf;
  1229. end = pos + buflen;
  1230. if (res < 0) {
  1231. if (strict)
  1232. return 0;
  1233. len = os_strlcpy(buf, "OPEN SHARED LEAP", buflen);
  1234. if (len >= buflen)
  1235. return -1;
  1236. return len;
  1237. }
  1238. if (capa->auth & (WPA_DRIVER_AUTH_OPEN)) {
  1239. ret = os_snprintf(pos, end - pos, "%sOPEN", first ? "" : " ");
  1240. if (ret < 0 || ret >= end - pos)
  1241. return pos - buf;
  1242. pos += ret;
  1243. first = 0;
  1244. }
  1245. if (capa->auth & (WPA_DRIVER_AUTH_SHARED)) {
  1246. ret = os_snprintf(pos, end - pos, "%sSHARED",
  1247. first ? "" : " ");
  1248. if (ret < 0 || ret >= end - pos)
  1249. return pos - buf;
  1250. pos += ret;
  1251. first = 0;
  1252. }
  1253. if (capa->auth & (WPA_DRIVER_AUTH_LEAP)) {
  1254. ret = os_snprintf(pos, end - pos, "%sLEAP", first ? "" : " ");
  1255. if (ret < 0 || ret >= end - pos)
  1256. return pos - buf;
  1257. pos += ret;
  1258. first = 0;
  1259. }
  1260. return pos - buf;
  1261. }
  1262. static int wpa_supplicant_ctrl_iface_get_capability(
  1263. struct wpa_supplicant *wpa_s, const char *_field, char *buf,
  1264. size_t buflen)
  1265. {
  1266. struct wpa_driver_capa capa;
  1267. int res;
  1268. char *strict;
  1269. char field[30];
  1270. size_t len;
  1271. /* Determine whether or not strict checking was requested */
  1272. len = os_strlcpy(field, _field, sizeof(field));
  1273. if (len >= sizeof(field))
  1274. return -1;
  1275. strict = os_strchr(field, ' ');
  1276. if (strict != NULL) {
  1277. *strict++ = '\0';
  1278. if (os_strcmp(strict, "strict") != 0)
  1279. return -1;
  1280. }
  1281. wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_CAPABILITY '%s' %s",
  1282. field, strict ? strict : "");
  1283. if (os_strcmp(field, "eap") == 0) {
  1284. return eap_get_names(buf, buflen);
  1285. }
  1286. res = wpa_drv_get_capa(wpa_s, &capa);
  1287. if (os_strcmp(field, "pairwise") == 0)
  1288. return ctrl_iface_get_capability_pairwise(res, strict, &capa,
  1289. buf, buflen);
  1290. if (os_strcmp(field, "group") == 0)
  1291. return ctrl_iface_get_capability_group(res, strict, &capa,
  1292. buf, buflen);
  1293. if (os_strcmp(field, "key_mgmt") == 0)
  1294. return ctrl_iface_get_capability_key_mgmt(res, strict, &capa,
  1295. buf, buflen);
  1296. if (os_strcmp(field, "proto") == 0)
  1297. return ctrl_iface_get_capability_proto(res, strict, &capa,
  1298. buf, buflen);
  1299. if (os_strcmp(field, "auth_alg") == 0)
  1300. return ctrl_iface_get_capability_auth_alg(res, strict, &capa,
  1301. buf, buflen);
  1302. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown GET_CAPABILITY field '%s'",
  1303. field);
  1304. return -1;
  1305. }
  1306. static int wpa_supplicant_ctrl_iface_bss(struct wpa_supplicant *wpa_s,
  1307. const char *cmd, char *buf,
  1308. size_t buflen)
  1309. {
  1310. u8 bssid[ETH_ALEN];
  1311. size_t i;
  1312. struct wpa_bss *bss;
  1313. int ret;
  1314. char *pos, *end;
  1315. const u8 *ie, *ie2;
  1316. if (os_strcmp(cmd, "FIRST") == 0)
  1317. bss = dl_list_first(&wpa_s->bss, struct wpa_bss, list);
  1318. else if (os_strncmp(cmd, "ID-", 3) == 0) {
  1319. i = atoi(cmd + 3);
  1320. bss = wpa_bss_get_id(wpa_s, i);
  1321. } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
  1322. i = atoi(cmd + 5);
  1323. bss = wpa_bss_get_id(wpa_s, i);
  1324. if (bss) {
  1325. struct dl_list *next = bss->list_id.next;
  1326. if (next == &wpa_s->bss_id)
  1327. bss = NULL;
  1328. else
  1329. bss = dl_list_entry(next, struct wpa_bss,
  1330. list_id);
  1331. }
  1332. } else if (hwaddr_aton(cmd, bssid) == 0)
  1333. bss = wpa_bss_get_bssid(wpa_s, bssid);
  1334. else {
  1335. struct wpa_bss *tmp;
  1336. i = atoi(cmd);
  1337. bss = NULL;
  1338. dl_list_for_each(tmp, &wpa_s->bss_id, struct wpa_bss, list_id)
  1339. {
  1340. if (i-- == 0) {
  1341. bss = tmp;
  1342. break;
  1343. }
  1344. }
  1345. }
  1346. if (bss == NULL)
  1347. return 0;
  1348. pos = buf;
  1349. end = buf + buflen;
  1350. ret = os_snprintf(pos, end - pos,
  1351. "id=%u\n"
  1352. "bssid=" MACSTR "\n"
  1353. "freq=%d\n"
  1354. "beacon_int=%d\n"
  1355. "capabilities=0x%04x\n"
  1356. "qual=%d\n"
  1357. "noise=%d\n"
  1358. "level=%d\n"
  1359. "tsf=%016llu\n"
  1360. "ie=",
  1361. bss->id,
  1362. MAC2STR(bss->bssid), bss->freq, bss->beacon_int,
  1363. bss->caps, bss->qual, bss->noise, bss->level,
  1364. (unsigned long long) bss->tsf);
  1365. if (ret < 0 || ret >= end - pos)
  1366. return pos - buf;
  1367. pos += ret;
  1368. ie = (const u8 *) (bss + 1);
  1369. for (i = 0; i < bss->ie_len; i++) {
  1370. ret = os_snprintf(pos, end - pos, "%02x", *ie++);
  1371. if (ret < 0 || ret >= end - pos)
  1372. return pos - buf;
  1373. pos += ret;
  1374. }
  1375. ret = os_snprintf(pos, end - pos, "\n");
  1376. if (ret < 0 || ret >= end - pos)
  1377. return pos - buf;
  1378. pos += ret;
  1379. ret = os_snprintf(pos, end - pos, "flags=");
  1380. if (ret < 0 || ret >= end - pos)
  1381. return pos - buf;
  1382. pos += ret;
  1383. ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  1384. if (ie)
  1385. pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie, 2 + ie[1]);
  1386. ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  1387. if (ie2)
  1388. pos = wpa_supplicant_ie_txt(pos, end, "WPA2", ie2, 2 + ie2[1]);
  1389. pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
  1390. if (!ie && !ie2 && bss->caps & IEEE80211_CAP_PRIVACY) {
  1391. ret = os_snprintf(pos, end - pos, "[WEP]");
  1392. if (ret < 0 || ret >= end - pos)
  1393. return pos - buf;
  1394. pos += ret;
  1395. }
  1396. if (bss->caps & IEEE80211_CAP_IBSS) {
  1397. ret = os_snprintf(pos, end - pos, "[IBSS]");
  1398. if (ret < 0 || ret >= end - pos)
  1399. return pos - buf;
  1400. pos += ret;
  1401. }
  1402. if (bss->caps & IEEE80211_CAP_ESS) {
  1403. ret = os_snprintf(pos, end - pos, "[ESS]");
  1404. if (ret < 0 || ret >= end - pos)
  1405. return pos - buf;
  1406. pos += ret;
  1407. }
  1408. ret = os_snprintf(pos, end - pos, "\n");
  1409. if (ret < 0 || ret >= end - pos)
  1410. return pos - buf;
  1411. pos += ret;
  1412. ret = os_snprintf(pos, end - pos, "ssid=%s\n",
  1413. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  1414. if (ret < 0 || ret >= end - pos)
  1415. return pos - buf;
  1416. pos += ret;
  1417. #ifdef CONFIG_WPS
  1418. ie = (const u8 *) (bss + 1);
  1419. ret = wpas_wps_scan_result_text(ie, bss->ie_len, pos, end);
  1420. if (ret < 0 || ret >= end - pos)
  1421. return pos - buf;
  1422. pos += ret;
  1423. #endif /* CONFIG_WPS */
  1424. return pos - buf;
  1425. }
  1426. static int wpa_supplicant_ctrl_iface_ap_scan(
  1427. struct wpa_supplicant *wpa_s, char *cmd)
  1428. {
  1429. int ap_scan = atoi(cmd);
  1430. return wpa_supplicant_set_ap_scan(wpa_s, ap_scan);
  1431. }
  1432. static void wpa_supplicant_ctrl_iface_drop_sa(struct wpa_supplicant *wpa_s)
  1433. {
  1434. u8 *bcast = (u8 *) "\xff\xff\xff\xff\xff\xff";
  1435. wpa_printf(MSG_DEBUG, "Dropping SA without deauthentication");
  1436. /* MLME-DELETEKEYS.request */
  1437. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, bcast, 0, 0, NULL, 0, NULL, 0);
  1438. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, bcast, 1, 0, NULL, 0, NULL, 0);
  1439. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, bcast, 2, 0, NULL, 0, NULL, 0);
  1440. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, bcast, 3, 0, NULL, 0, NULL, 0);
  1441. #ifdef CONFIG_IEEE80211W
  1442. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, bcast, 4, 0, NULL, 0, NULL, 0);
  1443. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, bcast, 5, 0, NULL, 0, NULL, 0);
  1444. #endif /* CONFIG_IEEE80211W */
  1445. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, wpa_s->bssid, 0, 0, NULL, 0, NULL,
  1446. 0);
  1447. /* MLME-SETPROTECTION.request(None) */
  1448. wpa_drv_mlme_setprotection(wpa_s, wpa_s->bssid,
  1449. MLME_SETPROTECTION_PROTECT_TYPE_NONE,
  1450. MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
  1451. wpa_sm_drop_sa(wpa_s->wpa);
  1452. }
  1453. static int wpa_supplicant_ctrl_iface_roam(struct wpa_supplicant *wpa_s,
  1454. char *addr)
  1455. {
  1456. u8 bssid[ETH_ALEN];
  1457. struct wpa_bss *bss;
  1458. struct wpa_ssid *ssid = wpa_s->current_ssid;
  1459. if (hwaddr_aton(addr, bssid)) {
  1460. wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: invalid "
  1461. "address '%s'", addr);
  1462. return -1;
  1463. }
  1464. wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM " MACSTR, MAC2STR(bssid));
  1465. bss = wpa_bss_get_bssid(wpa_s, bssid);
  1466. if (!bss) {
  1467. wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: Target AP not found "
  1468. "from BSS table");
  1469. return -1;
  1470. }
  1471. /*
  1472. * TODO: Find best network configuration block from configuration to
  1473. * allow roaming to other networks
  1474. */
  1475. if (!ssid) {
  1476. wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: No network "
  1477. "configuration known for the target AP");
  1478. return -1;
  1479. }
  1480. wpa_s->reassociate = 1;
  1481. wpa_supplicant_connect(wpa_s, bss, ssid);
  1482. return 0;
  1483. }
  1484. char * wpa_supplicant_ctrl_iface_process(struct wpa_supplicant *wpa_s,
  1485. char *buf, size_t *resp_len)
  1486. {
  1487. char *reply;
  1488. const int reply_size = 2048;
  1489. int ctrl_rsp = 0;
  1490. int reply_len;
  1491. if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0 ||
  1492. os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
  1493. wpa_hexdump_ascii_key(MSG_DEBUG, "RX ctrl_iface",
  1494. (const u8 *) buf, os_strlen(buf));
  1495. } else {
  1496. wpa_hexdump_ascii(MSG_DEBUG, "RX ctrl_iface",
  1497. (const u8 *) buf, os_strlen(buf));
  1498. }
  1499. reply = os_malloc(reply_size);
  1500. if (reply == NULL) {
  1501. *resp_len = 1;
  1502. return NULL;
  1503. }
  1504. os_memcpy(reply, "OK\n", 3);
  1505. reply_len = 3;
  1506. if (os_strcmp(buf, "PING") == 0) {
  1507. os_memcpy(reply, "PONG\n", 5);
  1508. reply_len = 5;
  1509. } else if (os_strncmp(buf, "NOTE ", 5) == 0) {
  1510. wpa_printf(MSG_INFO, "NOTE: %s", buf + 5);
  1511. } else if (os_strcmp(buf, "MIB") == 0) {
  1512. reply_len = wpa_sm_get_mib(wpa_s->wpa, reply, reply_size);
  1513. if (reply_len >= 0) {
  1514. int res;
  1515. res = eapol_sm_get_mib(wpa_s->eapol, reply + reply_len,
  1516. reply_size - reply_len);
  1517. if (res < 0)
  1518. reply_len = -1;
  1519. else
  1520. reply_len += res;
  1521. }
  1522. } else if (os_strncmp(buf, "STATUS", 6) == 0) {
  1523. reply_len = wpa_supplicant_ctrl_iface_status(
  1524. wpa_s, buf + 6, reply, reply_size);
  1525. } else if (os_strcmp(buf, "PMKSA") == 0) {
  1526. reply_len = wpa_sm_pmksa_cache_list(wpa_s->wpa, reply,
  1527. reply_size);
  1528. } else if (os_strncmp(buf, "SET ", 4) == 0) {
  1529. if (wpa_supplicant_ctrl_iface_set(wpa_s, buf + 4))
  1530. reply_len = -1;
  1531. } else if (os_strcmp(buf, "LOGON") == 0) {
  1532. eapol_sm_notify_logoff(wpa_s->eapol, FALSE);
  1533. } else if (os_strcmp(buf, "LOGOFF") == 0) {
  1534. eapol_sm_notify_logoff(wpa_s->eapol, TRUE);
  1535. } else if (os_strcmp(buf, "REASSOCIATE") == 0) {
  1536. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
  1537. reply_len = -1;
  1538. else {
  1539. wpa_s->disconnected = 0;
  1540. wpa_s->reassociate = 1;
  1541. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1542. }
  1543. } else if (os_strcmp(buf, "RECONNECT") == 0) {
  1544. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
  1545. reply_len = -1;
  1546. else if (wpa_s->disconnected) {
  1547. wpa_s->disconnected = 0;
  1548. wpa_s->reassociate = 1;
  1549. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1550. }
  1551. #ifdef IEEE8021X_EAPOL
  1552. } else if (os_strncmp(buf, "PREAUTH ", 8) == 0) {
  1553. if (wpa_supplicant_ctrl_iface_preauth(wpa_s, buf + 8))
  1554. reply_len = -1;
  1555. #endif /* IEEE8021X_EAPOL */
  1556. #ifdef CONFIG_PEERKEY
  1557. } else if (os_strncmp(buf, "STKSTART ", 9) == 0) {
  1558. if (wpa_supplicant_ctrl_iface_stkstart(wpa_s, buf + 9))
  1559. reply_len = -1;
  1560. #endif /* CONFIG_PEERKEY */
  1561. #ifdef CONFIG_IEEE80211R
  1562. } else if (os_strncmp(buf, "FT_DS ", 6) == 0) {
  1563. if (wpa_supplicant_ctrl_iface_ft_ds(wpa_s, buf + 6))
  1564. reply_len = -1;
  1565. #endif /* CONFIG_IEEE80211R */
  1566. #ifdef CONFIG_WPS
  1567. } else if (os_strcmp(buf, "WPS_PBC") == 0) {
  1568. if (wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, NULL))
  1569. reply_len = -1;
  1570. } else if (os_strncmp(buf, "WPS_PBC ", 8) == 0) {
  1571. if (wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, buf + 8))
  1572. reply_len = -1;
  1573. } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
  1574. reply_len = wpa_supplicant_ctrl_iface_wps_pin(wpa_s, buf + 8,
  1575. reply,
  1576. reply_size);
  1577. #ifdef CONFIG_WPS_OOB
  1578. } else if (os_strncmp(buf, "WPS_OOB ", 8) == 0) {
  1579. if (wpa_supplicant_ctrl_iface_wps_oob(wpa_s, buf + 8))
  1580. reply_len = -1;
  1581. #endif /* CONFIG_WPS_OOB */
  1582. } else if (os_strncmp(buf, "WPS_REG ", 8) == 0) {
  1583. if (wpa_supplicant_ctrl_iface_wps_reg(wpa_s, buf + 8))
  1584. reply_len = -1;
  1585. #ifdef CONFIG_WPS_ER
  1586. } else if (os_strcmp(buf, "WPS_ER_START") == 0) {
  1587. if (wpas_wps_er_start(wpa_s, NULL))
  1588. reply_len = -1;
  1589. } else if (os_strncmp(buf, "WPS_ER_START ", 13) == 0) {
  1590. if (wpas_wps_er_start(wpa_s, buf + 13))
  1591. reply_len = -1;
  1592. } else if (os_strcmp(buf, "WPS_ER_STOP") == 0) {
  1593. if (wpas_wps_er_stop(wpa_s))
  1594. reply_len = -1;
  1595. } else if (os_strncmp(buf, "WPS_ER_PIN ", 11) == 0) {
  1596. if (wpa_supplicant_ctrl_iface_wps_er_pin(wpa_s, buf + 11))
  1597. reply_len = -1;
  1598. } else if (os_strncmp(buf, "WPS_ER_PBC ", 11) == 0) {
  1599. if (wpas_wps_er_pbc(wpa_s, buf + 11))
  1600. reply_len = -1;
  1601. } else if (os_strncmp(buf, "WPS_ER_LEARN ", 13) == 0) {
  1602. if (wpa_supplicant_ctrl_iface_wps_er_learn(wpa_s, buf + 13))
  1603. reply_len = -1;
  1604. } else if (os_strncmp(buf, "WPS_ER_CONFIG ", 14) == 0) {
  1605. if (wpa_supplicant_ctrl_iface_wps_er_config(wpa_s, buf + 14))
  1606. reply_len = -1;
  1607. #endif /* CONFIG_WPS_ER */
  1608. #endif /* CONFIG_WPS */
  1609. #ifdef CONFIG_IBSS_RSN
  1610. } else if (os_strncmp(buf, "IBSS_RSN ", 9) == 0) {
  1611. if (wpa_supplicant_ctrl_iface_ibss_rsn(wpa_s, buf + 9))
  1612. reply_len = -1;
  1613. #endif /* CONFIG_IBSS_RSN */
  1614. } else if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0)
  1615. {
  1616. if (wpa_supplicant_ctrl_iface_ctrl_rsp(
  1617. wpa_s, buf + os_strlen(WPA_CTRL_RSP)))
  1618. reply_len = -1;
  1619. else
  1620. ctrl_rsp = 1;
  1621. } else if (os_strcmp(buf, "RECONFIGURE") == 0) {
  1622. if (wpa_supplicant_reload_configuration(wpa_s))
  1623. reply_len = -1;
  1624. } else if (os_strcmp(buf, "TERMINATE") == 0) {
  1625. wpa_supplicant_terminate_proc(wpa_s->global);
  1626. } else if (os_strncmp(buf, "BSSID ", 6) == 0) {
  1627. if (wpa_supplicant_ctrl_iface_bssid(wpa_s, buf + 6))
  1628. reply_len = -1;
  1629. } else if (os_strcmp(buf, "LIST_NETWORKS") == 0) {
  1630. reply_len = wpa_supplicant_ctrl_iface_list_networks(
  1631. wpa_s, reply, reply_size);
  1632. } else if (os_strcmp(buf, "DISCONNECT") == 0) {
  1633. wpa_s->reassociate = 0;
  1634. wpa_s->disconnected = 1;
  1635. wpa_supplicant_deauthenticate(wpa_s,
  1636. WLAN_REASON_DEAUTH_LEAVING);
  1637. } else if (os_strcmp(buf, "SCAN") == 0) {
  1638. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
  1639. reply_len = -1;
  1640. else {
  1641. wpa_s->scan_req = 2;
  1642. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1643. }
  1644. } else if (os_strcmp(buf, "SCAN_RESULTS") == 0) {
  1645. reply_len = wpa_supplicant_ctrl_iface_scan_results(
  1646. wpa_s, reply, reply_size);
  1647. } else if (os_strncmp(buf, "SELECT_NETWORK ", 15) == 0) {
  1648. if (wpa_supplicant_ctrl_iface_select_network(wpa_s, buf + 15))
  1649. reply_len = -1;
  1650. } else if (os_strncmp(buf, "ENABLE_NETWORK ", 15) == 0) {
  1651. if (wpa_supplicant_ctrl_iface_enable_network(wpa_s, buf + 15))
  1652. reply_len = -1;
  1653. } else if (os_strncmp(buf, "DISABLE_NETWORK ", 16) == 0) {
  1654. if (wpa_supplicant_ctrl_iface_disable_network(wpa_s, buf + 16))
  1655. reply_len = -1;
  1656. } else if (os_strcmp(buf, "ADD_NETWORK") == 0) {
  1657. reply_len = wpa_supplicant_ctrl_iface_add_network(
  1658. wpa_s, reply, reply_size);
  1659. } else if (os_strncmp(buf, "REMOVE_NETWORK ", 15) == 0) {
  1660. if (wpa_supplicant_ctrl_iface_remove_network(wpa_s, buf + 15))
  1661. reply_len = -1;
  1662. } else if (os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
  1663. if (wpa_supplicant_ctrl_iface_set_network(wpa_s, buf + 12))
  1664. reply_len = -1;
  1665. } else if (os_strncmp(buf, "GET_NETWORK ", 12) == 0) {
  1666. reply_len = wpa_supplicant_ctrl_iface_get_network(
  1667. wpa_s, buf + 12, reply, reply_size);
  1668. #ifndef CONFIG_NO_CONFIG_WRITE
  1669. } else if (os_strcmp(buf, "SAVE_CONFIG") == 0) {
  1670. if (wpa_supplicant_ctrl_iface_save_config(wpa_s))
  1671. reply_len = -1;
  1672. #endif /* CONFIG_NO_CONFIG_WRITE */
  1673. } else if (os_strncmp(buf, "GET_CAPABILITY ", 15) == 0) {
  1674. reply_len = wpa_supplicant_ctrl_iface_get_capability(
  1675. wpa_s, buf + 15, reply, reply_size);
  1676. } else if (os_strncmp(buf, "AP_SCAN ", 8) == 0) {
  1677. if (wpa_supplicant_ctrl_iface_ap_scan(wpa_s, buf + 8))
  1678. reply_len = -1;
  1679. } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
  1680. reply_len = wpa_supplicant_global_iface_list(
  1681. wpa_s->global, reply, reply_size);
  1682. } else if (os_strcmp(buf, "INTERFACES") == 0) {
  1683. reply_len = wpa_supplicant_global_iface_interfaces(
  1684. wpa_s->global, reply, reply_size);
  1685. } else if (os_strncmp(buf, "BSS ", 4) == 0) {
  1686. reply_len = wpa_supplicant_ctrl_iface_bss(
  1687. wpa_s, buf + 4, reply, reply_size);
  1688. #ifdef CONFIG_AP
  1689. } else if (os_strcmp(buf, "STA-FIRST") == 0) {
  1690. reply_len = ap_ctrl_iface_sta_first(wpa_s, reply, reply_size);
  1691. } else if (os_strncmp(buf, "STA ", 4) == 0) {
  1692. reply_len = ap_ctrl_iface_sta(wpa_s, buf + 4, reply,
  1693. reply_size);
  1694. } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
  1695. reply_len = ap_ctrl_iface_sta_next(wpa_s, buf + 9, reply,
  1696. reply_size);
  1697. #endif /* CONFIG_AP */
  1698. } else if (os_strcmp(buf, "SUSPEND") == 0) {
  1699. wpas_notify_suspend(wpa_s->global);
  1700. } else if (os_strcmp(buf, "RESUME") == 0) {
  1701. wpas_notify_resume(wpa_s->global);
  1702. } else if (os_strcmp(buf, "DROP_SA") == 0) {
  1703. wpa_supplicant_ctrl_iface_drop_sa(wpa_s);
  1704. } else if (os_strncmp(buf, "ROAM ", 5) == 0) {
  1705. if (wpa_supplicant_ctrl_iface_roam(wpa_s, buf + 5))
  1706. reply_len = -1;
  1707. } else {
  1708. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  1709. reply_len = 16;
  1710. }
  1711. if (reply_len < 0) {
  1712. os_memcpy(reply, "FAIL\n", 5);
  1713. reply_len = 5;
  1714. }
  1715. if (ctrl_rsp)
  1716. eapol_sm_notify_ctrl_response(wpa_s->eapol);
  1717. *resp_len = reply_len;
  1718. return reply;
  1719. }
  1720. static int wpa_supplicant_global_iface_add(struct wpa_global *global,
  1721. char *cmd)
  1722. {
  1723. struct wpa_interface iface;
  1724. char *pos;
  1725. /*
  1726. * <ifname>TAB<confname>TAB<driver>TAB<ctrl_interface>TAB<driver_param>
  1727. * TAB<bridge_ifname>
  1728. */
  1729. wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_ADD '%s'", cmd);
  1730. os_memset(&iface, 0, sizeof(iface));
  1731. do {
  1732. iface.ifname = pos = cmd;
  1733. pos = os_strchr(pos, '\t');
  1734. if (pos)
  1735. *pos++ = '\0';
  1736. if (iface.ifname[0] == '\0')
  1737. return -1;
  1738. if (pos == NULL)
  1739. break;
  1740. iface.confname = pos;
  1741. pos = os_strchr(pos, '\t');
  1742. if (pos)
  1743. *pos++ = '\0';
  1744. if (iface.confname[0] == '\0')
  1745. iface.confname = NULL;
  1746. if (pos == NULL)
  1747. break;
  1748. iface.driver = pos;
  1749. pos = os_strchr(pos, '\t');
  1750. if (pos)
  1751. *pos++ = '\0';
  1752. if (iface.driver[0] == '\0')
  1753. iface.driver = NULL;
  1754. if (pos == NULL)
  1755. break;
  1756. iface.ctrl_interface = pos;
  1757. pos = os_strchr(pos, '\t');
  1758. if (pos)
  1759. *pos++ = '\0';
  1760. if (iface.ctrl_interface[0] == '\0')
  1761. iface.ctrl_interface = NULL;
  1762. if (pos == NULL)
  1763. break;
  1764. iface.driver_param = pos;
  1765. pos = os_strchr(pos, '\t');
  1766. if (pos)
  1767. *pos++ = '\0';
  1768. if (iface.driver_param[0] == '\0')
  1769. iface.driver_param = NULL;
  1770. if (pos == NULL)
  1771. break;
  1772. iface.bridge_ifname = pos;
  1773. pos = os_strchr(pos, '\t');
  1774. if (pos)
  1775. *pos++ = '\0';
  1776. if (iface.bridge_ifname[0] == '\0')
  1777. iface.bridge_ifname = NULL;
  1778. if (pos == NULL)
  1779. break;
  1780. } while (0);
  1781. if (wpa_supplicant_get_iface(global, iface.ifname))
  1782. return -1;
  1783. return wpa_supplicant_add_iface(global, &iface) ? 0 : -1;
  1784. }
  1785. static int wpa_supplicant_global_iface_remove(struct wpa_global *global,
  1786. char *cmd)
  1787. {
  1788. struct wpa_supplicant *wpa_s;
  1789. wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_REMOVE '%s'", cmd);
  1790. wpa_s = wpa_supplicant_get_iface(global, cmd);
  1791. if (wpa_s == NULL)
  1792. return -1;
  1793. return wpa_supplicant_remove_iface(global, wpa_s);
  1794. }
  1795. static void wpa_free_iface_info(struct wpa_interface_info *iface)
  1796. {
  1797. struct wpa_interface_info *prev;
  1798. while (iface) {
  1799. prev = iface;
  1800. iface = iface->next;
  1801. os_free(prev->ifname);
  1802. os_free(prev->desc);
  1803. os_free(prev);
  1804. }
  1805. }
  1806. static int wpa_supplicant_global_iface_list(struct wpa_global *global,
  1807. char *buf, int len)
  1808. {
  1809. int i, res;
  1810. struct wpa_interface_info *iface = NULL, *last = NULL, *tmp;
  1811. char *pos, *end;
  1812. for (i = 0; wpa_drivers[i]; i++) {
  1813. struct wpa_driver_ops *drv = wpa_drivers[i];
  1814. if (drv->get_interfaces == NULL)
  1815. continue;
  1816. tmp = drv->get_interfaces(global->drv_priv[i]);
  1817. if (tmp == NULL)
  1818. continue;
  1819. if (last == NULL)
  1820. iface = last = tmp;
  1821. else
  1822. last->next = tmp;
  1823. while (last->next)
  1824. last = last->next;
  1825. }
  1826. pos = buf;
  1827. end = buf + len;
  1828. for (tmp = iface; tmp; tmp = tmp->next) {
  1829. res = os_snprintf(pos, end - pos, "%s\t%s\t%s\n",
  1830. tmp->drv_name, tmp->ifname,
  1831. tmp->desc ? tmp->desc : "");
  1832. if (res < 0 || res >= end - pos) {
  1833. *pos = '\0';
  1834. break;
  1835. }
  1836. pos += res;
  1837. }
  1838. wpa_free_iface_info(iface);
  1839. return pos - buf;
  1840. }
  1841. static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
  1842. char *buf, int len)
  1843. {
  1844. int res;
  1845. char *pos, *end;
  1846. struct wpa_supplicant *wpa_s;
  1847. wpa_s = global->ifaces;
  1848. pos = buf;
  1849. end = buf + len;
  1850. while (wpa_s) {
  1851. res = os_snprintf(pos, end - pos, "%s\n", wpa_s->ifname);
  1852. if (res < 0 || res >= end - pos) {
  1853. *pos = '\0';
  1854. break;
  1855. }
  1856. pos += res;
  1857. wpa_s = wpa_s->next;
  1858. }
  1859. return pos - buf;
  1860. }
  1861. char * wpa_supplicant_global_ctrl_iface_process(struct wpa_global *global,
  1862. char *buf, size_t *resp_len)
  1863. {
  1864. char *reply;
  1865. const int reply_size = 2048;
  1866. int reply_len;
  1867. wpa_hexdump_ascii(MSG_DEBUG, "RX global ctrl_iface",
  1868. (const u8 *) buf, os_strlen(buf));
  1869. reply = os_malloc(reply_size);
  1870. if (reply == NULL) {
  1871. *resp_len = 1;
  1872. return NULL;
  1873. }
  1874. os_memcpy(reply, "OK\n", 3);
  1875. reply_len = 3;
  1876. if (os_strcmp(buf, "PING") == 0) {
  1877. os_memcpy(reply, "PONG\n", 5);
  1878. reply_len = 5;
  1879. } else if (os_strncmp(buf, "INTERFACE_ADD ", 14) == 0) {
  1880. if (wpa_supplicant_global_iface_add(global, buf + 14))
  1881. reply_len = -1;
  1882. } else if (os_strncmp(buf, "INTERFACE_REMOVE ", 17) == 0) {
  1883. if (wpa_supplicant_global_iface_remove(global, buf + 17))
  1884. reply_len = -1;
  1885. } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
  1886. reply_len = wpa_supplicant_global_iface_list(
  1887. global, reply, reply_size);
  1888. } else if (os_strcmp(buf, "INTERFACES") == 0) {
  1889. reply_len = wpa_supplicant_global_iface_interfaces(
  1890. global, reply, reply_size);
  1891. } else if (os_strcmp(buf, "TERMINATE") == 0) {
  1892. wpa_supplicant_terminate_proc(global);
  1893. } else if (os_strcmp(buf, "SUSPEND") == 0) {
  1894. wpas_notify_suspend(global);
  1895. } else if (os_strcmp(buf, "RESUME") == 0) {
  1896. wpas_notify_resume(global);
  1897. } else {
  1898. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  1899. reply_len = 16;
  1900. }
  1901. if (reply_len < 0) {
  1902. os_memcpy(reply, "FAIL\n", 5);
  1903. reply_len = 5;
  1904. }
  1905. *resp_len = reply_len;
  1906. return reply;
  1907. }