ctrl_iface.c 80 KB

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