ctrl_iface.c 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988
  1. /*
  2. * hostapd / UNIX domain socket -based control interface
  3. * Copyright (c) 2004-2015, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #ifndef CONFIG_NATIVE_WINDOWS
  10. #ifdef CONFIG_TESTING_OPTIONS
  11. #include <net/ethernet.h>
  12. #include <netinet/ip.h>
  13. #endif /* CONFIG_TESTING_OPTIONS */
  14. #include <sys/un.h>
  15. #include <sys/stat.h>
  16. #include <stddef.h>
  17. #include "utils/common.h"
  18. #include "utils/eloop.h"
  19. #include "common/version.h"
  20. #include "common/ieee802_11_defs.h"
  21. #include "crypto/tls.h"
  22. #include "drivers/driver.h"
  23. #include "eapol_auth/eapol_auth_sm.h"
  24. #include "radius/radius_client.h"
  25. #include "radius/radius_server.h"
  26. #include "l2_packet/l2_packet.h"
  27. #include "ap/hostapd.h"
  28. #include "ap/ap_config.h"
  29. #include "ap/ieee802_1x.h"
  30. #include "ap/wpa_auth.h"
  31. #include "ap/ieee802_11.h"
  32. #include "ap/sta_info.h"
  33. #include "ap/wps_hostapd.h"
  34. #include "ap/ctrl_iface_ap.h"
  35. #include "ap/ap_drv_ops.h"
  36. #include "ap/hs20.h"
  37. #include "ap/wnm_ap.h"
  38. #include "ap/wpa_auth.h"
  39. #include "ap/beacon.h"
  40. #include "wps/wps_defs.h"
  41. #include "wps/wps.h"
  42. #include "fst/fst_ctrl_iface.h"
  43. #include "config_file.h"
  44. #include "ctrl_iface.h"
  45. struct wpa_ctrl_dst {
  46. struct wpa_ctrl_dst *next;
  47. struct sockaddr_un addr;
  48. socklen_t addrlen;
  49. int debug_level;
  50. int errors;
  51. };
  52. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  53. enum wpa_msg_type type,
  54. const char *buf, size_t len);
  55. static int hostapd_ctrl_iface_attach(struct hostapd_data *hapd,
  56. struct sockaddr_un *from,
  57. socklen_t fromlen)
  58. {
  59. struct wpa_ctrl_dst *dst;
  60. dst = os_zalloc(sizeof(*dst));
  61. if (dst == NULL)
  62. return -1;
  63. os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un));
  64. dst->addrlen = fromlen;
  65. dst->debug_level = MSG_INFO;
  66. dst->next = hapd->ctrl_dst;
  67. hapd->ctrl_dst = dst;
  68. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor attached",
  69. (u8 *) from->sun_path,
  70. fromlen - offsetof(struct sockaddr_un, sun_path));
  71. return 0;
  72. }
  73. static int hostapd_ctrl_iface_detach(struct hostapd_data *hapd,
  74. struct sockaddr_un *from,
  75. socklen_t fromlen)
  76. {
  77. struct wpa_ctrl_dst *dst, *prev = NULL;
  78. dst = hapd->ctrl_dst;
  79. while (dst) {
  80. if (fromlen == dst->addrlen &&
  81. os_memcmp(from->sun_path, dst->addr.sun_path,
  82. fromlen - offsetof(struct sockaddr_un, sun_path))
  83. == 0) {
  84. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor detached",
  85. (u8 *) from->sun_path,
  86. fromlen -
  87. offsetof(struct sockaddr_un, sun_path));
  88. if (prev == NULL)
  89. hapd->ctrl_dst = dst->next;
  90. else
  91. prev->next = dst->next;
  92. os_free(dst);
  93. return 0;
  94. }
  95. prev = dst;
  96. dst = dst->next;
  97. }
  98. return -1;
  99. }
  100. static int hostapd_ctrl_iface_level(struct hostapd_data *hapd,
  101. struct sockaddr_un *from,
  102. socklen_t fromlen,
  103. char *level)
  104. {
  105. struct wpa_ctrl_dst *dst;
  106. wpa_printf(MSG_DEBUG, "CTRL_IFACE LEVEL %s", level);
  107. dst = hapd->ctrl_dst;
  108. while (dst) {
  109. if (fromlen == dst->addrlen &&
  110. os_memcmp(from->sun_path, dst->addr.sun_path,
  111. fromlen - offsetof(struct sockaddr_un, sun_path))
  112. == 0) {
  113. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE changed monitor "
  114. "level", (u8 *) from->sun_path, fromlen -
  115. offsetof(struct sockaddr_un, sun_path));
  116. dst->debug_level = atoi(level);
  117. return 0;
  118. }
  119. dst = dst->next;
  120. }
  121. return -1;
  122. }
  123. static int hostapd_ctrl_iface_new_sta(struct hostapd_data *hapd,
  124. const char *txtaddr)
  125. {
  126. u8 addr[ETH_ALEN];
  127. struct sta_info *sta;
  128. wpa_printf(MSG_DEBUG, "CTRL_IFACE NEW_STA %s", txtaddr);
  129. if (hwaddr_aton(txtaddr, addr))
  130. return -1;
  131. sta = ap_get_sta(hapd, addr);
  132. if (sta)
  133. return 0;
  134. wpa_printf(MSG_DEBUG, "Add new STA " MACSTR " based on ctrl_iface "
  135. "notification", MAC2STR(addr));
  136. sta = ap_sta_add(hapd, addr);
  137. if (sta == NULL)
  138. return -1;
  139. hostapd_new_assoc_sta(hapd, sta, 0);
  140. return 0;
  141. }
  142. #ifdef CONFIG_IEEE80211W
  143. #ifdef NEED_AP_MLME
  144. static int hostapd_ctrl_iface_sa_query(struct hostapd_data *hapd,
  145. const char *txtaddr)
  146. {
  147. u8 addr[ETH_ALEN];
  148. u8 trans_id[WLAN_SA_QUERY_TR_ID_LEN];
  149. wpa_printf(MSG_DEBUG, "CTRL_IFACE SA_QUERY %s", txtaddr);
  150. if (hwaddr_aton(txtaddr, addr) ||
  151. os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN) < 0)
  152. return -1;
  153. ieee802_11_send_sa_query_req(hapd, addr, trans_id);
  154. return 0;
  155. }
  156. #endif /* NEED_AP_MLME */
  157. #endif /* CONFIG_IEEE80211W */
  158. #ifdef CONFIG_WPS
  159. static int hostapd_ctrl_iface_wps_pin(struct hostapd_data *hapd, char *txt)
  160. {
  161. char *pin = os_strchr(txt, ' ');
  162. char *timeout_txt;
  163. int timeout;
  164. u8 addr_buf[ETH_ALEN], *addr = NULL;
  165. char *pos;
  166. if (pin == NULL)
  167. return -1;
  168. *pin++ = '\0';
  169. timeout_txt = os_strchr(pin, ' ');
  170. if (timeout_txt) {
  171. *timeout_txt++ = '\0';
  172. timeout = atoi(timeout_txt);
  173. pos = os_strchr(timeout_txt, ' ');
  174. if (pos) {
  175. *pos++ = '\0';
  176. if (hwaddr_aton(pos, addr_buf) == 0)
  177. addr = addr_buf;
  178. }
  179. } else
  180. timeout = 0;
  181. return hostapd_wps_add_pin(hapd, addr, txt, pin, timeout);
  182. }
  183. static int hostapd_ctrl_iface_wps_check_pin(
  184. struct hostapd_data *hapd, char *cmd, char *buf, size_t buflen)
  185. {
  186. char pin[9];
  187. size_t len;
  188. char *pos;
  189. int ret;
  190. wpa_hexdump_ascii_key(MSG_DEBUG, "WPS_CHECK_PIN",
  191. (u8 *) cmd, os_strlen(cmd));
  192. for (pos = cmd, len = 0; *pos != '\0'; pos++) {
  193. if (*pos < '0' || *pos > '9')
  194. continue;
  195. pin[len++] = *pos;
  196. if (len == 9) {
  197. wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
  198. return -1;
  199. }
  200. }
  201. if (len != 4 && len != 8) {
  202. wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
  203. return -1;
  204. }
  205. pin[len] = '\0';
  206. if (len == 8) {
  207. unsigned int pin_val;
  208. pin_val = atoi(pin);
  209. if (!wps_pin_valid(pin_val)) {
  210. wpa_printf(MSG_DEBUG, "WPS: Invalid checksum digit");
  211. ret = os_snprintf(buf, buflen, "FAIL-CHECKSUM\n");
  212. if (os_snprintf_error(buflen, ret))
  213. return -1;
  214. return ret;
  215. }
  216. }
  217. ret = os_snprintf(buf, buflen, "%s", pin);
  218. if (os_snprintf_error(buflen, ret))
  219. return -1;
  220. return ret;
  221. }
  222. #ifdef CONFIG_WPS_NFC
  223. static int hostapd_ctrl_iface_wps_nfc_tag_read(struct hostapd_data *hapd,
  224. char *pos)
  225. {
  226. size_t len;
  227. struct wpabuf *buf;
  228. int ret;
  229. len = os_strlen(pos);
  230. if (len & 0x01)
  231. return -1;
  232. len /= 2;
  233. buf = wpabuf_alloc(len);
  234. if (buf == NULL)
  235. return -1;
  236. if (hexstr2bin(pos, wpabuf_put(buf, len), len) < 0) {
  237. wpabuf_free(buf);
  238. return -1;
  239. }
  240. ret = hostapd_wps_nfc_tag_read(hapd, buf);
  241. wpabuf_free(buf);
  242. return ret;
  243. }
  244. static int hostapd_ctrl_iface_wps_nfc_config_token(struct hostapd_data *hapd,
  245. char *cmd, char *reply,
  246. size_t max_len)
  247. {
  248. int ndef;
  249. struct wpabuf *buf;
  250. int res;
  251. if (os_strcmp(cmd, "WPS") == 0)
  252. ndef = 0;
  253. else if (os_strcmp(cmd, "NDEF") == 0)
  254. ndef = 1;
  255. else
  256. return -1;
  257. buf = hostapd_wps_nfc_config_token(hapd, ndef);
  258. if (buf == NULL)
  259. return -1;
  260. res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
  261. wpabuf_len(buf));
  262. reply[res++] = '\n';
  263. reply[res] = '\0';
  264. wpabuf_free(buf);
  265. return res;
  266. }
  267. static int hostapd_ctrl_iface_wps_nfc_token_gen(struct hostapd_data *hapd,
  268. char *reply, size_t max_len,
  269. int ndef)
  270. {
  271. struct wpabuf *buf;
  272. int res;
  273. buf = hostapd_wps_nfc_token_gen(hapd, ndef);
  274. if (buf == NULL)
  275. return -1;
  276. res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
  277. wpabuf_len(buf));
  278. reply[res++] = '\n';
  279. reply[res] = '\0';
  280. wpabuf_free(buf);
  281. return res;
  282. }
  283. static int hostapd_ctrl_iface_wps_nfc_token(struct hostapd_data *hapd,
  284. char *cmd, char *reply,
  285. size_t max_len)
  286. {
  287. if (os_strcmp(cmd, "WPS") == 0)
  288. return hostapd_ctrl_iface_wps_nfc_token_gen(hapd, reply,
  289. max_len, 0);
  290. if (os_strcmp(cmd, "NDEF") == 0)
  291. return hostapd_ctrl_iface_wps_nfc_token_gen(hapd, reply,
  292. max_len, 1);
  293. if (os_strcmp(cmd, "enable") == 0)
  294. return hostapd_wps_nfc_token_enable(hapd);
  295. if (os_strcmp(cmd, "disable") == 0) {
  296. hostapd_wps_nfc_token_disable(hapd);
  297. return 0;
  298. }
  299. return -1;
  300. }
  301. static int hostapd_ctrl_iface_nfc_get_handover_sel(struct hostapd_data *hapd,
  302. char *cmd, char *reply,
  303. size_t max_len)
  304. {
  305. struct wpabuf *buf;
  306. int res;
  307. char *pos;
  308. int ndef;
  309. pos = os_strchr(cmd, ' ');
  310. if (pos == NULL)
  311. return -1;
  312. *pos++ = '\0';
  313. if (os_strcmp(cmd, "WPS") == 0)
  314. ndef = 0;
  315. else if (os_strcmp(cmd, "NDEF") == 0)
  316. ndef = 1;
  317. else
  318. return -1;
  319. if (os_strcmp(pos, "WPS-CR") == 0)
  320. buf = hostapd_wps_nfc_hs_cr(hapd, ndef);
  321. else
  322. buf = NULL;
  323. if (buf == NULL)
  324. return -1;
  325. res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
  326. wpabuf_len(buf));
  327. reply[res++] = '\n';
  328. reply[res] = '\0';
  329. wpabuf_free(buf);
  330. return res;
  331. }
  332. static int hostapd_ctrl_iface_nfc_report_handover(struct hostapd_data *hapd,
  333. char *cmd)
  334. {
  335. size_t len;
  336. struct wpabuf *req, *sel;
  337. int ret;
  338. char *pos, *role, *type, *pos2;
  339. role = cmd;
  340. pos = os_strchr(role, ' ');
  341. if (pos == NULL)
  342. return -1;
  343. *pos++ = '\0';
  344. type = pos;
  345. pos = os_strchr(type, ' ');
  346. if (pos == NULL)
  347. return -1;
  348. *pos++ = '\0';
  349. pos2 = os_strchr(pos, ' ');
  350. if (pos2 == NULL)
  351. return -1;
  352. *pos2++ = '\0';
  353. len = os_strlen(pos);
  354. if (len & 0x01)
  355. return -1;
  356. len /= 2;
  357. req = wpabuf_alloc(len);
  358. if (req == NULL)
  359. return -1;
  360. if (hexstr2bin(pos, wpabuf_put(req, len), len) < 0) {
  361. wpabuf_free(req);
  362. return -1;
  363. }
  364. len = os_strlen(pos2);
  365. if (len & 0x01) {
  366. wpabuf_free(req);
  367. return -1;
  368. }
  369. len /= 2;
  370. sel = wpabuf_alloc(len);
  371. if (sel == NULL) {
  372. wpabuf_free(req);
  373. return -1;
  374. }
  375. if (hexstr2bin(pos2, wpabuf_put(sel, len), len) < 0) {
  376. wpabuf_free(req);
  377. wpabuf_free(sel);
  378. return -1;
  379. }
  380. if (os_strcmp(role, "RESP") == 0 && os_strcmp(type, "WPS") == 0) {
  381. ret = hostapd_wps_nfc_report_handover(hapd, req, sel);
  382. } else {
  383. wpa_printf(MSG_DEBUG, "NFC: Unsupported connection handover "
  384. "reported: role=%s type=%s", role, type);
  385. ret = -1;
  386. }
  387. wpabuf_free(req);
  388. wpabuf_free(sel);
  389. return ret;
  390. }
  391. #endif /* CONFIG_WPS_NFC */
  392. static int hostapd_ctrl_iface_wps_ap_pin(struct hostapd_data *hapd, char *txt,
  393. char *buf, size_t buflen)
  394. {
  395. int timeout = 300;
  396. char *pos;
  397. const char *pin_txt;
  398. pos = os_strchr(txt, ' ');
  399. if (pos)
  400. *pos++ = '\0';
  401. if (os_strcmp(txt, "disable") == 0) {
  402. hostapd_wps_ap_pin_disable(hapd);
  403. return os_snprintf(buf, buflen, "OK\n");
  404. }
  405. if (os_strcmp(txt, "random") == 0) {
  406. if (pos)
  407. timeout = atoi(pos);
  408. pin_txt = hostapd_wps_ap_pin_random(hapd, timeout);
  409. if (pin_txt == NULL)
  410. return -1;
  411. return os_snprintf(buf, buflen, "%s", pin_txt);
  412. }
  413. if (os_strcmp(txt, "get") == 0) {
  414. pin_txt = hostapd_wps_ap_pin_get(hapd);
  415. if (pin_txt == NULL)
  416. return -1;
  417. return os_snprintf(buf, buflen, "%s", pin_txt);
  418. }
  419. if (os_strcmp(txt, "set") == 0) {
  420. char *pin;
  421. if (pos == NULL)
  422. return -1;
  423. pin = pos;
  424. pos = os_strchr(pos, ' ');
  425. if (pos) {
  426. *pos++ = '\0';
  427. timeout = atoi(pos);
  428. }
  429. if (os_strlen(pin) > buflen)
  430. return -1;
  431. if (hostapd_wps_ap_pin_set(hapd, pin, timeout) < 0)
  432. return -1;
  433. return os_snprintf(buf, buflen, "%s", pin);
  434. }
  435. return -1;
  436. }
  437. static int hostapd_ctrl_iface_wps_config(struct hostapd_data *hapd, char *txt)
  438. {
  439. char *pos;
  440. char *ssid, *auth, *encr = NULL, *key = NULL;
  441. ssid = txt;
  442. pos = os_strchr(txt, ' ');
  443. if (!pos)
  444. return -1;
  445. *pos++ = '\0';
  446. auth = pos;
  447. pos = os_strchr(pos, ' ');
  448. if (pos) {
  449. *pos++ = '\0';
  450. encr = pos;
  451. pos = os_strchr(pos, ' ');
  452. if (pos) {
  453. *pos++ = '\0';
  454. key = pos;
  455. }
  456. }
  457. return hostapd_wps_config_ap(hapd, ssid, auth, encr, key);
  458. }
  459. static const char * pbc_status_str(enum pbc_status status)
  460. {
  461. switch (status) {
  462. case WPS_PBC_STATUS_DISABLE:
  463. return "Disabled";
  464. case WPS_PBC_STATUS_ACTIVE:
  465. return "Active";
  466. case WPS_PBC_STATUS_TIMEOUT:
  467. return "Timed-out";
  468. case WPS_PBC_STATUS_OVERLAP:
  469. return "Overlap";
  470. default:
  471. return "Unknown";
  472. }
  473. }
  474. static int hostapd_ctrl_iface_wps_get_status(struct hostapd_data *hapd,
  475. char *buf, size_t buflen)
  476. {
  477. int ret;
  478. char *pos, *end;
  479. pos = buf;
  480. end = buf + buflen;
  481. ret = os_snprintf(pos, end - pos, "PBC Status: %s\n",
  482. pbc_status_str(hapd->wps_stats.pbc_status));
  483. if (os_snprintf_error(end - pos, ret))
  484. return pos - buf;
  485. pos += ret;
  486. ret = os_snprintf(pos, end - pos, "Last WPS result: %s\n",
  487. (hapd->wps_stats.status == WPS_STATUS_SUCCESS ?
  488. "Success":
  489. (hapd->wps_stats.status == WPS_STATUS_FAILURE ?
  490. "Failed" : "None")));
  491. if (os_snprintf_error(end - pos, ret))
  492. return pos - buf;
  493. pos += ret;
  494. /* If status == Failure - Add possible Reasons */
  495. if(hapd->wps_stats.status == WPS_STATUS_FAILURE &&
  496. hapd->wps_stats.failure_reason > 0) {
  497. ret = os_snprintf(pos, end - pos,
  498. "Failure Reason: %s\n",
  499. wps_ei_str(hapd->wps_stats.failure_reason));
  500. if (os_snprintf_error(end - pos, ret))
  501. return pos - buf;
  502. pos += ret;
  503. }
  504. if (hapd->wps_stats.status) {
  505. ret = os_snprintf(pos, end - pos, "Peer Address: " MACSTR "\n",
  506. MAC2STR(hapd->wps_stats.peer_addr));
  507. if (os_snprintf_error(end - pos, ret))
  508. return pos - buf;
  509. pos += ret;
  510. }
  511. return pos - buf;
  512. }
  513. #endif /* CONFIG_WPS */
  514. #ifdef CONFIG_HS20
  515. static int hostapd_ctrl_iface_hs20_wnm_notif(struct hostapd_data *hapd,
  516. const char *cmd)
  517. {
  518. u8 addr[ETH_ALEN];
  519. const char *url;
  520. if (hwaddr_aton(cmd, addr))
  521. return -1;
  522. url = cmd + 17;
  523. if (*url == '\0') {
  524. url = NULL;
  525. } else {
  526. if (*url != ' ')
  527. return -1;
  528. url++;
  529. if (*url == '\0')
  530. url = NULL;
  531. }
  532. return hs20_send_wnm_notification(hapd, addr, 1, url);
  533. }
  534. static int hostapd_ctrl_iface_hs20_deauth_req(struct hostapd_data *hapd,
  535. const char *cmd)
  536. {
  537. u8 addr[ETH_ALEN];
  538. int code, reauth_delay, ret;
  539. const char *pos;
  540. size_t url_len;
  541. struct wpabuf *req;
  542. /* <STA MAC Addr> <Code(0/1)> <Re-auth-Delay(sec)> [URL] */
  543. if (hwaddr_aton(cmd, addr))
  544. return -1;
  545. pos = os_strchr(cmd, ' ');
  546. if (pos == NULL)
  547. return -1;
  548. pos++;
  549. code = atoi(pos);
  550. pos = os_strchr(pos, ' ');
  551. if (pos == NULL)
  552. return -1;
  553. pos++;
  554. reauth_delay = atoi(pos);
  555. url_len = 0;
  556. pos = os_strchr(pos, ' ');
  557. if (pos) {
  558. pos++;
  559. url_len = os_strlen(pos);
  560. }
  561. req = wpabuf_alloc(4 + url_len);
  562. if (req == NULL)
  563. return -1;
  564. wpabuf_put_u8(req, code);
  565. wpabuf_put_le16(req, reauth_delay);
  566. wpabuf_put_u8(req, url_len);
  567. if (pos)
  568. wpabuf_put_data(req, pos, url_len);
  569. wpa_printf(MSG_DEBUG, "HS 2.0: Send WNM-Notification to " MACSTR
  570. " to indicate imminent deauthentication (code=%d "
  571. "reauth_delay=%d)", MAC2STR(addr), code, reauth_delay);
  572. ret = hs20_send_wnm_notification_deauth_req(hapd, addr, req);
  573. wpabuf_free(req);
  574. return ret;
  575. }
  576. #endif /* CONFIG_HS20 */
  577. #ifdef CONFIG_INTERWORKING
  578. static int hostapd_ctrl_iface_set_qos_map_set(struct hostapd_data *hapd,
  579. const char *cmd)
  580. {
  581. u8 qos_map_set[16 + 2 * 21], count = 0;
  582. const char *pos = cmd;
  583. int val, ret;
  584. for (;;) {
  585. if (count == sizeof(qos_map_set)) {
  586. wpa_printf(MSG_ERROR, "Too many qos_map_set parameters");
  587. return -1;
  588. }
  589. val = atoi(pos);
  590. if (val < 0 || val > 255) {
  591. wpa_printf(MSG_INFO, "Invalid QoS Map Set");
  592. return -1;
  593. }
  594. qos_map_set[count++] = val;
  595. pos = os_strchr(pos, ',');
  596. if (!pos)
  597. break;
  598. pos++;
  599. }
  600. if (count < 16 || count & 1) {
  601. wpa_printf(MSG_INFO, "Invalid QoS Map Set");
  602. return -1;
  603. }
  604. ret = hostapd_drv_set_qos_map(hapd, qos_map_set, count);
  605. if (ret) {
  606. wpa_printf(MSG_INFO, "Failed to set QoS Map Set");
  607. return -1;
  608. }
  609. os_memcpy(hapd->conf->qos_map_set, qos_map_set, count);
  610. hapd->conf->qos_map_set_len = count;
  611. return 0;
  612. }
  613. static int hostapd_ctrl_iface_send_qos_map_conf(struct hostapd_data *hapd,
  614. const char *cmd)
  615. {
  616. u8 addr[ETH_ALEN];
  617. struct sta_info *sta;
  618. struct wpabuf *buf;
  619. u8 *qos_map_set = hapd->conf->qos_map_set;
  620. u8 qos_map_set_len = hapd->conf->qos_map_set_len;
  621. int ret;
  622. if (!qos_map_set_len) {
  623. wpa_printf(MSG_INFO, "QoS Map Set is not set");
  624. return -1;
  625. }
  626. if (hwaddr_aton(cmd, addr))
  627. return -1;
  628. sta = ap_get_sta(hapd, addr);
  629. if (sta == NULL) {
  630. wpa_printf(MSG_DEBUG, "Station " MACSTR " not found "
  631. "for QoS Map Configuration message",
  632. MAC2STR(addr));
  633. return -1;
  634. }
  635. if (!sta->qos_map_enabled) {
  636. wpa_printf(MSG_DEBUG, "Station " MACSTR " did not indicate "
  637. "support for QoS Map", MAC2STR(addr));
  638. return -1;
  639. }
  640. buf = wpabuf_alloc(2 + 2 + qos_map_set_len);
  641. if (buf == NULL)
  642. return -1;
  643. wpabuf_put_u8(buf, WLAN_ACTION_QOS);
  644. wpabuf_put_u8(buf, QOS_QOS_MAP_CONFIG);
  645. /* QoS Map Set Element */
  646. wpabuf_put_u8(buf, WLAN_EID_QOS_MAP_SET);
  647. wpabuf_put_u8(buf, qos_map_set_len);
  648. wpabuf_put_data(buf, qos_map_set, qos_map_set_len);
  649. ret = hostapd_drv_send_action(hapd, hapd->iface->freq, 0, addr,
  650. wpabuf_head(buf), wpabuf_len(buf));
  651. wpabuf_free(buf);
  652. return ret;
  653. }
  654. #endif /* CONFIG_INTERWORKING */
  655. #ifdef CONFIG_WNM
  656. static int hostapd_ctrl_iface_disassoc_imminent(struct hostapd_data *hapd,
  657. const char *cmd)
  658. {
  659. u8 addr[ETH_ALEN];
  660. int disassoc_timer;
  661. struct sta_info *sta;
  662. if (hwaddr_aton(cmd, addr))
  663. return -1;
  664. if (cmd[17] != ' ')
  665. return -1;
  666. disassoc_timer = atoi(cmd + 17);
  667. sta = ap_get_sta(hapd, addr);
  668. if (sta == NULL) {
  669. wpa_printf(MSG_DEBUG, "Station " MACSTR
  670. " not found for disassociation imminent message",
  671. MAC2STR(addr));
  672. return -1;
  673. }
  674. return wnm_send_disassoc_imminent(hapd, sta, disassoc_timer);
  675. }
  676. static int hostapd_ctrl_iface_ess_disassoc(struct hostapd_data *hapd,
  677. const char *cmd)
  678. {
  679. u8 addr[ETH_ALEN];
  680. const char *url, *timerstr;
  681. int disassoc_timer;
  682. struct sta_info *sta;
  683. if (hwaddr_aton(cmd, addr))
  684. return -1;
  685. sta = ap_get_sta(hapd, addr);
  686. if (sta == NULL) {
  687. wpa_printf(MSG_DEBUG, "Station " MACSTR
  688. " not found for ESS disassociation imminent message",
  689. MAC2STR(addr));
  690. return -1;
  691. }
  692. timerstr = cmd + 17;
  693. if (*timerstr != ' ')
  694. return -1;
  695. timerstr++;
  696. disassoc_timer = atoi(timerstr);
  697. if (disassoc_timer < 0 || disassoc_timer > 65535)
  698. return -1;
  699. url = os_strchr(timerstr, ' ');
  700. if (url == NULL)
  701. return -1;
  702. url++;
  703. return wnm_send_ess_disassoc_imminent(hapd, sta, url, disassoc_timer);
  704. }
  705. static int hostapd_ctrl_iface_bss_tm_req(struct hostapd_data *hapd,
  706. const char *cmd)
  707. {
  708. u8 addr[ETH_ALEN];
  709. const char *pos, *end;
  710. int disassoc_timer = 0;
  711. struct sta_info *sta;
  712. u8 req_mode = 0, valid_int = 0x01;
  713. u8 bss_term_dur[12];
  714. char *url = NULL;
  715. int ret;
  716. u8 nei_rep[1000];
  717. u8 *nei_pos = nei_rep;
  718. if (hwaddr_aton(cmd, addr)) {
  719. wpa_printf(MSG_DEBUG, "Invalid STA MAC address");
  720. return -1;
  721. }
  722. sta = ap_get_sta(hapd, addr);
  723. if (sta == NULL) {
  724. wpa_printf(MSG_DEBUG, "Station " MACSTR
  725. " not found for BSS TM Request message",
  726. MAC2STR(addr));
  727. return -1;
  728. }
  729. pos = os_strstr(cmd, " disassoc_timer=");
  730. if (pos) {
  731. pos += 16;
  732. disassoc_timer = atoi(pos);
  733. if (disassoc_timer < 0 || disassoc_timer > 65535) {
  734. wpa_printf(MSG_DEBUG, "Invalid disassoc_timer");
  735. return -1;
  736. }
  737. }
  738. pos = os_strstr(cmd, " valid_int=");
  739. if (pos) {
  740. pos += 11;
  741. valid_int = atoi(pos);
  742. }
  743. pos = os_strstr(cmd, " bss_term=");
  744. if (pos) {
  745. pos += 10;
  746. req_mode |= WNM_BSS_TM_REQ_BSS_TERMINATION_INCLUDED;
  747. /* TODO: TSF configurable/learnable */
  748. bss_term_dur[0] = 4; /* Subelement ID */
  749. bss_term_dur[1] = 10; /* Length */
  750. os_memset(bss_term_dur, 2, 8);
  751. end = os_strchr(pos, ',');
  752. if (end == NULL) {
  753. wpa_printf(MSG_DEBUG, "Invalid bss_term data");
  754. return -1;
  755. }
  756. end++;
  757. WPA_PUT_LE16(&bss_term_dur[10], atoi(end));
  758. }
  759. /*
  760. * BSS Transition Candidate List Entries - Neighbor Report elements
  761. * neighbor=<BSSID>,<BSSID Information>,<Operating Class>,
  762. * <Channel Number>,<PHY Type>[,<hexdump of Optional Subelements>]
  763. */
  764. pos = cmd;
  765. while (pos) {
  766. u8 *nei_start;
  767. long int val;
  768. char *endptr, *tmp;
  769. pos = os_strstr(pos, " neighbor=");
  770. if (!pos)
  771. break;
  772. if (nei_pos + 15 > nei_rep + sizeof(nei_rep)) {
  773. wpa_printf(MSG_DEBUG,
  774. "Not enough room for additional neighbor");
  775. return -1;
  776. }
  777. pos += 10;
  778. nei_start = nei_pos;
  779. *nei_pos++ = WLAN_EID_NEIGHBOR_REPORT;
  780. nei_pos++; /* length to be filled in */
  781. if (hwaddr_aton(pos, nei_pos)) {
  782. wpa_printf(MSG_DEBUG, "Invalid BSSID");
  783. return -1;
  784. }
  785. nei_pos += ETH_ALEN;
  786. pos += 17;
  787. if (*pos != ',') {
  788. wpa_printf(MSG_DEBUG, "Missing BSSID Information");
  789. return -1;
  790. }
  791. pos++;
  792. val = strtol(pos, &endptr, 0);
  793. WPA_PUT_LE32(nei_pos, val);
  794. nei_pos += 4;
  795. if (*endptr != ',') {
  796. wpa_printf(MSG_DEBUG, "Missing Operating Class");
  797. return -1;
  798. }
  799. pos = endptr + 1;
  800. *nei_pos++ = atoi(pos); /* Operating Class */
  801. pos = os_strchr(pos, ',');
  802. if (pos == NULL) {
  803. wpa_printf(MSG_DEBUG, "Missing Channel Number");
  804. return -1;
  805. }
  806. pos++;
  807. *nei_pos++ = atoi(pos); /* Channel Number */
  808. pos = os_strchr(pos, ',');
  809. if (pos == NULL) {
  810. wpa_printf(MSG_DEBUG, "Missing PHY Type");
  811. return -1;
  812. }
  813. pos++;
  814. *nei_pos++ = atoi(pos); /* PHY Type */
  815. end = os_strchr(pos, ' ');
  816. tmp = os_strchr(pos, ',');
  817. if (tmp && (!end || tmp < end)) {
  818. /* Optional Subelements (hexdump) */
  819. size_t len;
  820. pos = tmp + 1;
  821. end = os_strchr(pos, ' ');
  822. if (end)
  823. len = end - pos;
  824. else
  825. len = os_strlen(pos);
  826. if (nei_pos + len / 2 > nei_rep + sizeof(nei_rep)) {
  827. wpa_printf(MSG_DEBUG,
  828. "Not enough room for neighbor subelements");
  829. return -1;
  830. }
  831. if (len & 0x01 ||
  832. hexstr2bin(pos, nei_pos, len / 2) < 0) {
  833. wpa_printf(MSG_DEBUG,
  834. "Invalid neighbor subelement info");
  835. return -1;
  836. }
  837. nei_pos += len / 2;
  838. pos = end;
  839. }
  840. nei_start[1] = nei_pos - nei_start - 2;
  841. }
  842. pos = os_strstr(cmd, " url=");
  843. if (pos) {
  844. size_t len;
  845. pos += 5;
  846. end = os_strchr(pos, ' ');
  847. if (end)
  848. len = end - pos;
  849. else
  850. len = os_strlen(pos);
  851. url = os_malloc(len + 1);
  852. if (url == NULL)
  853. return -1;
  854. os_memcpy(url, pos, len);
  855. url[len] = '\0';
  856. req_mode |= WNM_BSS_TM_REQ_ESS_DISASSOC_IMMINENT;
  857. }
  858. if (os_strstr(cmd, " pref=1"))
  859. req_mode |= WNM_BSS_TM_REQ_PREF_CAND_LIST_INCLUDED;
  860. if (os_strstr(cmd, " abridged=1"))
  861. req_mode |= WNM_BSS_TM_REQ_ABRIDGED;
  862. if (os_strstr(cmd, " disassoc_imminent=1"))
  863. req_mode |= WNM_BSS_TM_REQ_DISASSOC_IMMINENT;
  864. ret = wnm_send_bss_tm_req(hapd, sta, req_mode, disassoc_timer,
  865. valid_int, bss_term_dur, url,
  866. nei_pos > nei_rep ? nei_rep : NULL,
  867. nei_pos - nei_rep);
  868. os_free(url);
  869. return ret;
  870. }
  871. #endif /* CONFIG_WNM */
  872. static int hostapd_ctrl_iface_get_config(struct hostapd_data *hapd,
  873. char *buf, size_t buflen)
  874. {
  875. int ret;
  876. char *pos, *end;
  877. pos = buf;
  878. end = buf + buflen;
  879. ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n"
  880. "ssid=%s\n",
  881. MAC2STR(hapd->own_addr),
  882. wpa_ssid_txt(hapd->conf->ssid.ssid,
  883. hapd->conf->ssid.ssid_len));
  884. if (os_snprintf_error(end - pos, ret))
  885. return pos - buf;
  886. pos += ret;
  887. #ifdef CONFIG_WPS
  888. ret = os_snprintf(pos, end - pos, "wps_state=%s\n",
  889. hapd->conf->wps_state == 0 ? "disabled" :
  890. (hapd->conf->wps_state == 1 ? "not configured" :
  891. "configured"));
  892. if (os_snprintf_error(end - pos, ret))
  893. return pos - buf;
  894. pos += ret;
  895. if (hapd->conf->wps_state && hapd->conf->wpa &&
  896. hapd->conf->ssid.wpa_passphrase) {
  897. ret = os_snprintf(pos, end - pos, "passphrase=%s\n",
  898. hapd->conf->ssid.wpa_passphrase);
  899. if (os_snprintf_error(end - pos, ret))
  900. return pos - buf;
  901. pos += ret;
  902. }
  903. if (hapd->conf->wps_state && hapd->conf->wpa &&
  904. hapd->conf->ssid.wpa_psk &&
  905. hapd->conf->ssid.wpa_psk->group) {
  906. char hex[PMK_LEN * 2 + 1];
  907. wpa_snprintf_hex(hex, sizeof(hex),
  908. hapd->conf->ssid.wpa_psk->psk, PMK_LEN);
  909. ret = os_snprintf(pos, end - pos, "psk=%s\n", hex);
  910. if (os_snprintf_error(end - pos, ret))
  911. return pos - buf;
  912. pos += ret;
  913. }
  914. #endif /* CONFIG_WPS */
  915. if (hapd->conf->wpa) {
  916. ret = os_snprintf(pos, end - pos, "wpa=%d\n", hapd->conf->wpa);
  917. if (os_snprintf_error(end - pos, ret))
  918. return pos - buf;
  919. pos += ret;
  920. }
  921. if (hapd->conf->wpa && hapd->conf->wpa_key_mgmt) {
  922. ret = os_snprintf(pos, end - pos, "key_mgmt=");
  923. if (os_snprintf_error(end - pos, ret))
  924. return pos - buf;
  925. pos += ret;
  926. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK) {
  927. ret = os_snprintf(pos, end - pos, "WPA-PSK ");
  928. if (os_snprintf_error(end - pos, ret))
  929. return pos - buf;
  930. pos += ret;
  931. }
  932. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
  933. ret = os_snprintf(pos, end - pos, "WPA-EAP ");
  934. if (os_snprintf_error(end - pos, ret))
  935. return pos - buf;
  936. pos += ret;
  937. }
  938. #ifdef CONFIG_IEEE80211R
  939. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_PSK) {
  940. ret = os_snprintf(pos, end - pos, "FT-PSK ");
  941. if (os_snprintf_error(end - pos, ret))
  942. return pos - buf;
  943. pos += ret;
  944. }
  945. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
  946. ret = os_snprintf(pos, end - pos, "FT-EAP ");
  947. if (os_snprintf_error(end - pos, ret))
  948. return pos - buf;
  949. pos += ret;
  950. }
  951. #ifdef CONFIG_SAE
  952. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_SAE) {
  953. ret = os_snprintf(pos, end - pos, "FT-SAE ");
  954. if (os_snprintf_error(end - pos, ret))
  955. return pos - buf;
  956. pos += ret;
  957. }
  958. #endif /* CONFIG_SAE */
  959. #endif /* CONFIG_IEEE80211R */
  960. #ifdef CONFIG_IEEE80211W
  961. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
  962. ret = os_snprintf(pos, end - pos, "WPA-PSK-SHA256 ");
  963. if (os_snprintf_error(end - pos, ret))
  964. return pos - buf;
  965. pos += ret;
  966. }
  967. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
  968. ret = os_snprintf(pos, end - pos, "WPA-EAP-SHA256 ");
  969. if (os_snprintf_error(end - pos, ret))
  970. return pos - buf;
  971. pos += ret;
  972. }
  973. #endif /* CONFIG_IEEE80211W */
  974. #ifdef CONFIG_SAE
  975. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_SAE) {
  976. ret = os_snprintf(pos, end - pos, "SAE ");
  977. if (os_snprintf_error(end - pos, ret))
  978. return pos - buf;
  979. pos += ret;
  980. }
  981. #endif /* CONFIG_SAE */
  982. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B) {
  983. ret = os_snprintf(pos, end - pos, "WPA-EAP-SUITE-B ");
  984. if (os_snprintf_error(end - pos, ret))
  985. return pos - buf;
  986. pos += ret;
  987. }
  988. if (hapd->conf->wpa_key_mgmt &
  989. WPA_KEY_MGMT_IEEE8021X_SUITE_B_192) {
  990. ret = os_snprintf(pos, end - pos,
  991. "WPA-EAP-SUITE-B-192 ");
  992. if (os_snprintf_error(end - pos, ret))
  993. return pos - buf;
  994. pos += ret;
  995. }
  996. ret = os_snprintf(pos, end - pos, "\n");
  997. if (os_snprintf_error(end - pos, ret))
  998. return pos - buf;
  999. pos += ret;
  1000. }
  1001. if (hapd->conf->wpa) {
  1002. ret = os_snprintf(pos, end - pos, "group_cipher=%s\n",
  1003. wpa_cipher_txt(hapd->conf->wpa_group));
  1004. if (os_snprintf_error(end - pos, ret))
  1005. return pos - buf;
  1006. pos += ret;
  1007. }
  1008. if ((hapd->conf->wpa & WPA_PROTO_RSN) && hapd->conf->rsn_pairwise) {
  1009. ret = os_snprintf(pos, end - pos, "rsn_pairwise_cipher=");
  1010. if (os_snprintf_error(end - pos, ret))
  1011. return pos - buf;
  1012. pos += ret;
  1013. ret = wpa_write_ciphers(pos, end, hapd->conf->rsn_pairwise,
  1014. " ");
  1015. if (ret < 0)
  1016. return pos - buf;
  1017. pos += ret;
  1018. ret = os_snprintf(pos, end - pos, "\n");
  1019. if (os_snprintf_error(end - pos, ret))
  1020. return pos - buf;
  1021. pos += ret;
  1022. }
  1023. if ((hapd->conf->wpa & WPA_PROTO_WPA) && hapd->conf->wpa_pairwise) {
  1024. ret = os_snprintf(pos, end - pos, "wpa_pairwise_cipher=");
  1025. if (os_snprintf_error(end - pos, ret))
  1026. return pos - buf;
  1027. pos += ret;
  1028. ret = wpa_write_ciphers(pos, end, hapd->conf->wpa_pairwise,
  1029. " ");
  1030. if (ret < 0)
  1031. return pos - buf;
  1032. pos += ret;
  1033. ret = os_snprintf(pos, end - pos, "\n");
  1034. if (os_snprintf_error(end - pos, ret))
  1035. return pos - buf;
  1036. pos += ret;
  1037. }
  1038. return pos - buf;
  1039. }
  1040. static int hostapd_ctrl_iface_set(struct hostapd_data *hapd, char *cmd)
  1041. {
  1042. char *value;
  1043. int ret = 0;
  1044. value = os_strchr(cmd, ' ');
  1045. if (value == NULL)
  1046. return -1;
  1047. *value++ = '\0';
  1048. wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
  1049. if (0) {
  1050. #ifdef CONFIG_WPS_TESTING
  1051. } else if (os_strcasecmp(cmd, "wps_version_number") == 0) {
  1052. long int val;
  1053. val = strtol(value, NULL, 0);
  1054. if (val < 0 || val > 0xff) {
  1055. ret = -1;
  1056. wpa_printf(MSG_DEBUG, "WPS: Invalid "
  1057. "wps_version_number %ld", val);
  1058. } else {
  1059. wps_version_number = val;
  1060. wpa_printf(MSG_DEBUG, "WPS: Testing - force WPS "
  1061. "version %u.%u",
  1062. (wps_version_number & 0xf0) >> 4,
  1063. wps_version_number & 0x0f);
  1064. hostapd_wps_update_ie(hapd);
  1065. }
  1066. } else if (os_strcasecmp(cmd, "wps_testing_dummy_cred") == 0) {
  1067. wps_testing_dummy_cred = atoi(value);
  1068. wpa_printf(MSG_DEBUG, "WPS: Testing - dummy_cred=%d",
  1069. wps_testing_dummy_cred);
  1070. } else if (os_strcasecmp(cmd, "wps_corrupt_pkhash") == 0) {
  1071. wps_corrupt_pkhash = atoi(value);
  1072. wpa_printf(MSG_DEBUG, "WPS: Testing - wps_corrupt_pkhash=%d",
  1073. wps_corrupt_pkhash);
  1074. #endif /* CONFIG_WPS_TESTING */
  1075. #ifdef CONFIG_INTERWORKING
  1076. } else if (os_strcasecmp(cmd, "gas_frag_limit") == 0) {
  1077. int val = atoi(value);
  1078. if (val <= 0)
  1079. ret = -1;
  1080. else
  1081. hapd->gas_frag_limit = val;
  1082. #endif /* CONFIG_INTERWORKING */
  1083. #ifdef CONFIG_TESTING_OPTIONS
  1084. } else if (os_strcasecmp(cmd, "ext_mgmt_frame_handling") == 0) {
  1085. hapd->ext_mgmt_frame_handling = atoi(value);
  1086. } else if (os_strcasecmp(cmd, "ext_eapol_frame_io") == 0) {
  1087. hapd->ext_eapol_frame_io = atoi(value);
  1088. #endif /* CONFIG_TESTING_OPTIONS */
  1089. } else {
  1090. struct sta_info *sta;
  1091. int vlan_id;
  1092. ret = hostapd_set_iface(hapd->iconf, hapd->conf, cmd, value);
  1093. if (ret)
  1094. return ret;
  1095. if (os_strcasecmp(cmd, "deny_mac_file") == 0) {
  1096. for (sta = hapd->sta_list; sta; sta = sta->next) {
  1097. if (hostapd_maclist_found(
  1098. hapd->conf->deny_mac,
  1099. hapd->conf->num_deny_mac, sta->addr,
  1100. &vlan_id) &&
  1101. (!vlan_id || vlan_id == sta->vlan_id))
  1102. ap_sta_disconnect(
  1103. hapd, sta, sta->addr,
  1104. WLAN_REASON_UNSPECIFIED);
  1105. }
  1106. } else if (hapd->conf->macaddr_acl == DENY_UNLESS_ACCEPTED &&
  1107. os_strcasecmp(cmd, "accept_mac_file") == 0) {
  1108. for (sta = hapd->sta_list; sta; sta = sta->next) {
  1109. if (!hostapd_maclist_found(
  1110. hapd->conf->accept_mac,
  1111. hapd->conf->num_accept_mac,
  1112. sta->addr, &vlan_id) ||
  1113. (vlan_id && vlan_id != sta->vlan_id))
  1114. ap_sta_disconnect(
  1115. hapd, sta, sta->addr,
  1116. WLAN_REASON_UNSPECIFIED);
  1117. }
  1118. }
  1119. }
  1120. return ret;
  1121. }
  1122. static int hostapd_ctrl_iface_get(struct hostapd_data *hapd, char *cmd,
  1123. char *buf, size_t buflen)
  1124. {
  1125. int res;
  1126. wpa_printf(MSG_DEBUG, "CTRL_IFACE GET '%s'", cmd);
  1127. if (os_strcmp(cmd, "version") == 0) {
  1128. res = os_snprintf(buf, buflen, "%s", VERSION_STR);
  1129. if (os_snprintf_error(buflen, res))
  1130. return -1;
  1131. return res;
  1132. } else if (os_strcmp(cmd, "tls_library") == 0) {
  1133. res = tls_get_library_version(buf, buflen);
  1134. if (os_snprintf_error(buflen, res))
  1135. return -1;
  1136. return res;
  1137. }
  1138. return -1;
  1139. }
  1140. static int hostapd_ctrl_iface_enable(struct hostapd_iface *iface)
  1141. {
  1142. if (hostapd_enable_iface(iface) < 0) {
  1143. wpa_printf(MSG_ERROR, "Enabling of interface failed");
  1144. return -1;
  1145. }
  1146. return 0;
  1147. }
  1148. static int hostapd_ctrl_iface_reload(struct hostapd_iface *iface)
  1149. {
  1150. if (hostapd_reload_iface(iface) < 0) {
  1151. wpa_printf(MSG_ERROR, "Reloading of interface failed");
  1152. return -1;
  1153. }
  1154. return 0;
  1155. }
  1156. static int hostapd_ctrl_iface_disable(struct hostapd_iface *iface)
  1157. {
  1158. if (hostapd_disable_iface(iface) < 0) {
  1159. wpa_printf(MSG_ERROR, "Disabling of interface failed");
  1160. return -1;
  1161. }
  1162. return 0;
  1163. }
  1164. #ifdef CONFIG_TESTING_OPTIONS
  1165. static int hostapd_ctrl_iface_radar(struct hostapd_data *hapd, char *cmd)
  1166. {
  1167. union wpa_event_data data;
  1168. char *pos, *param;
  1169. enum wpa_event_type event;
  1170. wpa_printf(MSG_DEBUG, "RADAR TEST: %s", cmd);
  1171. os_memset(&data, 0, sizeof(data));
  1172. param = os_strchr(cmd, ' ');
  1173. if (param == NULL)
  1174. return -1;
  1175. *param++ = '\0';
  1176. if (os_strcmp(cmd, "DETECTED") == 0)
  1177. event = EVENT_DFS_RADAR_DETECTED;
  1178. else if (os_strcmp(cmd, "CAC-FINISHED") == 0)
  1179. event = EVENT_DFS_CAC_FINISHED;
  1180. else if (os_strcmp(cmd, "CAC-ABORTED") == 0)
  1181. event = EVENT_DFS_CAC_ABORTED;
  1182. else if (os_strcmp(cmd, "NOP-FINISHED") == 0)
  1183. event = EVENT_DFS_NOP_FINISHED;
  1184. else {
  1185. wpa_printf(MSG_DEBUG, "Unsupported RADAR test command: %s",
  1186. cmd);
  1187. return -1;
  1188. }
  1189. pos = os_strstr(param, "freq=");
  1190. if (pos)
  1191. data.dfs_event.freq = atoi(pos + 5);
  1192. pos = os_strstr(param, "ht_enabled=1");
  1193. if (pos)
  1194. data.dfs_event.ht_enabled = 1;
  1195. pos = os_strstr(param, "chan_offset=");
  1196. if (pos)
  1197. data.dfs_event.chan_offset = atoi(pos + 12);
  1198. pos = os_strstr(param, "chan_width=");
  1199. if (pos)
  1200. data.dfs_event.chan_width = atoi(pos + 11);
  1201. pos = os_strstr(param, "cf1=");
  1202. if (pos)
  1203. data.dfs_event.cf1 = atoi(pos + 4);
  1204. pos = os_strstr(param, "cf2=");
  1205. if (pos)
  1206. data.dfs_event.cf2 = atoi(pos + 4);
  1207. wpa_supplicant_event(hapd, event, &data);
  1208. return 0;
  1209. }
  1210. static int hostapd_ctrl_iface_mgmt_tx(struct hostapd_data *hapd, char *cmd)
  1211. {
  1212. size_t len;
  1213. u8 *buf;
  1214. int res;
  1215. wpa_printf(MSG_DEBUG, "External MGMT TX: %s", cmd);
  1216. len = os_strlen(cmd);
  1217. if (len & 1)
  1218. return -1;
  1219. len /= 2;
  1220. buf = os_malloc(len);
  1221. if (buf == NULL)
  1222. return -1;
  1223. if (hexstr2bin(cmd, buf, len) < 0) {
  1224. os_free(buf);
  1225. return -1;
  1226. }
  1227. res = hostapd_drv_send_mlme(hapd, buf, len, 0);
  1228. os_free(buf);
  1229. return res;
  1230. }
  1231. static int hostapd_ctrl_iface_eapol_rx(struct hostapd_data *hapd, char *cmd)
  1232. {
  1233. char *pos;
  1234. u8 src[ETH_ALEN], *buf;
  1235. int used;
  1236. size_t len;
  1237. wpa_printf(MSG_DEBUG, "External EAPOL RX: %s", cmd);
  1238. pos = cmd;
  1239. used = hwaddr_aton2(pos, src);
  1240. if (used < 0)
  1241. return -1;
  1242. pos += used;
  1243. while (*pos == ' ')
  1244. pos++;
  1245. len = os_strlen(pos);
  1246. if (len & 1)
  1247. return -1;
  1248. len /= 2;
  1249. buf = os_malloc(len);
  1250. if (buf == NULL)
  1251. return -1;
  1252. if (hexstr2bin(pos, buf, len) < 0) {
  1253. os_free(buf);
  1254. return -1;
  1255. }
  1256. ieee802_1x_receive(hapd, src, buf, len);
  1257. os_free(buf);
  1258. return 0;
  1259. }
  1260. static u16 ipv4_hdr_checksum(const void *buf, size_t len)
  1261. {
  1262. size_t i;
  1263. u32 sum = 0;
  1264. const u16 *pos = buf;
  1265. for (i = 0; i < len / 2; i++)
  1266. sum += *pos++;
  1267. while (sum >> 16)
  1268. sum = (sum & 0xffff) + (sum >> 16);
  1269. return sum ^ 0xffff;
  1270. }
  1271. #define HWSIM_PACKETLEN 1500
  1272. #define HWSIM_IP_LEN (HWSIM_PACKETLEN - sizeof(struct ether_header))
  1273. void hostapd_data_test_rx(void *ctx, const u8 *src_addr, const u8 *buf,
  1274. size_t len)
  1275. {
  1276. struct hostapd_data *hapd = ctx;
  1277. const struct ether_header *eth;
  1278. struct iphdr ip;
  1279. const u8 *pos;
  1280. unsigned int i;
  1281. if (len != HWSIM_PACKETLEN)
  1282. return;
  1283. eth = (const struct ether_header *) buf;
  1284. os_memcpy(&ip, eth + 1, sizeof(ip));
  1285. pos = &buf[sizeof(*eth) + sizeof(ip)];
  1286. if (ip.ihl != 5 || ip.version != 4 ||
  1287. ntohs(ip.tot_len) != HWSIM_IP_LEN)
  1288. return;
  1289. for (i = 0; i < HWSIM_IP_LEN - sizeof(ip); i++) {
  1290. if (*pos != (u8) i)
  1291. return;
  1292. pos++;
  1293. }
  1294. wpa_msg(hapd->msg_ctx, MSG_INFO, "DATA-TEST-RX " MACSTR " " MACSTR,
  1295. MAC2STR(eth->ether_dhost), MAC2STR(eth->ether_shost));
  1296. }
  1297. static int hostapd_ctrl_iface_data_test_config(struct hostapd_data *hapd,
  1298. char *cmd)
  1299. {
  1300. int enabled = atoi(cmd);
  1301. char *pos;
  1302. const char *ifname;
  1303. if (!enabled) {
  1304. if (hapd->l2_test) {
  1305. l2_packet_deinit(hapd->l2_test);
  1306. hapd->l2_test = NULL;
  1307. wpa_dbg(hapd->msg_ctx, MSG_DEBUG,
  1308. "test data: Disabled");
  1309. }
  1310. return 0;
  1311. }
  1312. if (hapd->l2_test)
  1313. return 0;
  1314. pos = os_strstr(cmd, " ifname=");
  1315. if (pos)
  1316. ifname = pos + 8;
  1317. else
  1318. ifname = hapd->conf->iface;
  1319. hapd->l2_test = l2_packet_init(ifname, hapd->own_addr,
  1320. ETHERTYPE_IP, hostapd_data_test_rx,
  1321. hapd, 1);
  1322. if (hapd->l2_test == NULL)
  1323. return -1;
  1324. wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "test data: Enabled");
  1325. return 0;
  1326. }
  1327. static int hostapd_ctrl_iface_data_test_tx(struct hostapd_data *hapd, char *cmd)
  1328. {
  1329. u8 dst[ETH_ALEN], src[ETH_ALEN];
  1330. char *pos;
  1331. int used;
  1332. long int val;
  1333. u8 tos;
  1334. u8 buf[2 + HWSIM_PACKETLEN];
  1335. struct ether_header *eth;
  1336. struct iphdr *ip;
  1337. u8 *dpos;
  1338. unsigned int i;
  1339. if (hapd->l2_test == NULL)
  1340. return -1;
  1341. /* format: <dst> <src> <tos> */
  1342. pos = cmd;
  1343. used = hwaddr_aton2(pos, dst);
  1344. if (used < 0)
  1345. return -1;
  1346. pos += used;
  1347. while (*pos == ' ')
  1348. pos++;
  1349. used = hwaddr_aton2(pos, src);
  1350. if (used < 0)
  1351. return -1;
  1352. pos += used;
  1353. val = strtol(pos, NULL, 0);
  1354. if (val < 0 || val > 0xff)
  1355. return -1;
  1356. tos = val;
  1357. eth = (struct ether_header *) &buf[2];
  1358. os_memcpy(eth->ether_dhost, dst, ETH_ALEN);
  1359. os_memcpy(eth->ether_shost, src, ETH_ALEN);
  1360. eth->ether_type = htons(ETHERTYPE_IP);
  1361. ip = (struct iphdr *) (eth + 1);
  1362. os_memset(ip, 0, sizeof(*ip));
  1363. ip->ihl = 5;
  1364. ip->version = 4;
  1365. ip->ttl = 64;
  1366. ip->tos = tos;
  1367. ip->tot_len = htons(HWSIM_IP_LEN);
  1368. ip->protocol = 1;
  1369. ip->saddr = htonl(192U << 24 | 168 << 16 | 1 << 8 | 1);
  1370. ip->daddr = htonl(192U << 24 | 168 << 16 | 1 << 8 | 2);
  1371. ip->check = ipv4_hdr_checksum(ip, sizeof(*ip));
  1372. dpos = (u8 *) (ip + 1);
  1373. for (i = 0; i < HWSIM_IP_LEN - sizeof(*ip); i++)
  1374. *dpos++ = i;
  1375. if (l2_packet_send(hapd->l2_test, dst, ETHERTYPE_IP, &buf[2],
  1376. HWSIM_PACKETLEN) < 0)
  1377. return -1;
  1378. wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "test data: TX dst=" MACSTR
  1379. " src=" MACSTR " tos=0x%x", MAC2STR(dst), MAC2STR(src), tos);
  1380. return 0;
  1381. }
  1382. static int hostapd_ctrl_iface_data_test_frame(struct hostapd_data *hapd,
  1383. char *cmd)
  1384. {
  1385. u8 *buf;
  1386. struct ether_header *eth;
  1387. struct l2_packet_data *l2 = NULL;
  1388. size_t len;
  1389. u16 ethertype;
  1390. int res = -1;
  1391. const char *ifname = hapd->conf->iface;
  1392. if (os_strncmp(cmd, "ifname=", 7) == 0) {
  1393. cmd += 7;
  1394. ifname = cmd;
  1395. cmd = os_strchr(cmd, ' ');
  1396. if (cmd == NULL)
  1397. return -1;
  1398. *cmd++ = '\0';
  1399. }
  1400. len = os_strlen(cmd);
  1401. if (len & 1 || len < ETH_HLEN * 2)
  1402. return -1;
  1403. len /= 2;
  1404. buf = os_malloc(len);
  1405. if (buf == NULL)
  1406. return -1;
  1407. if (hexstr2bin(cmd, buf, len) < 0)
  1408. goto done;
  1409. eth = (struct ether_header *) buf;
  1410. ethertype = ntohs(eth->ether_type);
  1411. l2 = l2_packet_init(ifname, hapd->own_addr, ethertype,
  1412. hostapd_data_test_rx, hapd, 1);
  1413. if (l2 == NULL)
  1414. goto done;
  1415. res = l2_packet_send(l2, eth->ether_dhost, ethertype, buf, len);
  1416. wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "test data: TX frame res=%d", res);
  1417. done:
  1418. if (l2)
  1419. l2_packet_deinit(l2);
  1420. os_free(buf);
  1421. return res < 0 ? -1 : 0;
  1422. }
  1423. static int hostapd_ctrl_test_alloc_fail(struct hostapd_data *hapd, char *cmd)
  1424. {
  1425. #ifdef WPA_TRACE_BFD
  1426. extern char wpa_trace_fail_func[256];
  1427. extern unsigned int wpa_trace_fail_after;
  1428. char *pos;
  1429. wpa_trace_fail_after = atoi(cmd);
  1430. pos = os_strchr(cmd, ':');
  1431. if (pos) {
  1432. pos++;
  1433. os_strlcpy(wpa_trace_fail_func, pos,
  1434. sizeof(wpa_trace_fail_func));
  1435. } else {
  1436. wpa_trace_fail_after = 0;
  1437. }
  1438. return 0;
  1439. #else /* WPA_TRACE_BFD */
  1440. return -1;
  1441. #endif /* WPA_TRACE_BFD */
  1442. }
  1443. static int hostapd_ctrl_get_alloc_fail(struct hostapd_data *hapd,
  1444. char *buf, size_t buflen)
  1445. {
  1446. #ifdef WPA_TRACE_BFD
  1447. extern char wpa_trace_fail_func[256];
  1448. extern unsigned int wpa_trace_fail_after;
  1449. return os_snprintf(buf, buflen, "%u:%s", wpa_trace_fail_after,
  1450. wpa_trace_fail_func);
  1451. #else /* WPA_TRACE_BFD */
  1452. return -1;
  1453. #endif /* WPA_TRACE_BFD */
  1454. }
  1455. static int hostapd_ctrl_test_fail(struct hostapd_data *hapd, char *cmd)
  1456. {
  1457. #ifdef WPA_TRACE_BFD
  1458. extern char wpa_trace_test_fail_func[256];
  1459. extern unsigned int wpa_trace_test_fail_after;
  1460. char *pos;
  1461. wpa_trace_test_fail_after = atoi(cmd);
  1462. pos = os_strchr(cmd, ':');
  1463. if (pos) {
  1464. pos++;
  1465. os_strlcpy(wpa_trace_test_fail_func, pos,
  1466. sizeof(wpa_trace_test_fail_func));
  1467. } else {
  1468. wpa_trace_test_fail_after = 0;
  1469. }
  1470. return 0;
  1471. #else /* WPA_TRACE_BFD */
  1472. return -1;
  1473. #endif /* WPA_TRACE_BFD */
  1474. }
  1475. static int hostapd_ctrl_get_fail(struct hostapd_data *hapd,
  1476. char *buf, size_t buflen)
  1477. {
  1478. #ifdef WPA_TRACE_BFD
  1479. extern char wpa_trace_test_fail_func[256];
  1480. extern unsigned int wpa_trace_test_fail_after;
  1481. return os_snprintf(buf, buflen, "%u:%s", wpa_trace_test_fail_after,
  1482. wpa_trace_test_fail_func);
  1483. #else /* WPA_TRACE_BFD */
  1484. return -1;
  1485. #endif /* WPA_TRACE_BFD */
  1486. }
  1487. #endif /* CONFIG_TESTING_OPTIONS */
  1488. static int hostapd_ctrl_iface_chan_switch(struct hostapd_iface *iface,
  1489. char *pos)
  1490. {
  1491. #ifdef NEED_AP_MLME
  1492. struct csa_settings settings;
  1493. int ret;
  1494. unsigned int i;
  1495. ret = hostapd_parse_csa_settings(pos, &settings);
  1496. if (ret)
  1497. return ret;
  1498. for (i = 0; i < iface->num_bss; i++) {
  1499. ret = hostapd_switch_channel(iface->bss[i], &settings);
  1500. if (ret) {
  1501. /* FIX: What do we do if CSA fails in the middle of
  1502. * submitting multi-BSS CSA requests? */
  1503. return ret;
  1504. }
  1505. }
  1506. return 0;
  1507. #else /* NEED_AP_MLME */
  1508. return -1;
  1509. #endif /* NEED_AP_MLME */
  1510. }
  1511. static int hostapd_ctrl_iface_mib(struct hostapd_data *hapd, char *reply,
  1512. int reply_size, const char *param)
  1513. {
  1514. #ifdef RADIUS_SERVER
  1515. if (os_strcmp(param, "radius_server") == 0) {
  1516. return radius_server_get_mib(hapd->radius_srv, reply,
  1517. reply_size);
  1518. }
  1519. #endif /* RADIUS_SERVER */
  1520. return -1;
  1521. }
  1522. static int hostapd_ctrl_iface_vendor(struct hostapd_data *hapd, char *cmd,
  1523. char *buf, size_t buflen)
  1524. {
  1525. int ret;
  1526. char *pos;
  1527. u8 *data = NULL;
  1528. unsigned int vendor_id, subcmd;
  1529. struct wpabuf *reply;
  1530. size_t data_len = 0;
  1531. /* cmd: <vendor id> <subcommand id> [<hex formatted data>] */
  1532. vendor_id = strtoul(cmd, &pos, 16);
  1533. if (!isblank(*pos))
  1534. return -EINVAL;
  1535. subcmd = strtoul(pos, &pos, 10);
  1536. if (*pos != '\0') {
  1537. if (!isblank(*pos++))
  1538. return -EINVAL;
  1539. data_len = os_strlen(pos);
  1540. }
  1541. if (data_len) {
  1542. data_len /= 2;
  1543. data = os_malloc(data_len);
  1544. if (!data)
  1545. return -ENOBUFS;
  1546. if (hexstr2bin(pos, data, data_len)) {
  1547. wpa_printf(MSG_DEBUG,
  1548. "Vendor command: wrong parameter format");
  1549. os_free(data);
  1550. return -EINVAL;
  1551. }
  1552. }
  1553. reply = wpabuf_alloc((buflen - 1) / 2);
  1554. if (!reply) {
  1555. os_free(data);
  1556. return -ENOBUFS;
  1557. }
  1558. ret = hostapd_drv_vendor_cmd(hapd, vendor_id, subcmd, data, data_len,
  1559. reply);
  1560. if (ret == 0)
  1561. ret = wpa_snprintf_hex(buf, buflen, wpabuf_head_u8(reply),
  1562. wpabuf_len(reply));
  1563. wpabuf_free(reply);
  1564. os_free(data);
  1565. return ret;
  1566. }
  1567. static int hostapd_ctrl_iface_eapol_reauth(struct hostapd_data *hapd,
  1568. const char *cmd)
  1569. {
  1570. u8 addr[ETH_ALEN];
  1571. struct sta_info *sta;
  1572. if (hwaddr_aton(cmd, addr))
  1573. return -1;
  1574. sta = ap_get_sta(hapd, addr);
  1575. if (!sta || !sta->eapol_sm)
  1576. return -1;
  1577. eapol_auth_reauthenticate(sta->eapol_sm);
  1578. return 0;
  1579. }
  1580. static int hostapd_ctrl_iface_eapol_set(struct hostapd_data *hapd, char *cmd)
  1581. {
  1582. u8 addr[ETH_ALEN];
  1583. struct sta_info *sta;
  1584. char *pos = cmd, *param;
  1585. if (hwaddr_aton(pos, addr) || pos[17] != ' ')
  1586. return -1;
  1587. pos += 18;
  1588. param = pos;
  1589. pos = os_strchr(pos, ' ');
  1590. if (!pos)
  1591. return -1;
  1592. *pos++ = '\0';
  1593. sta = ap_get_sta(hapd, addr);
  1594. if (!sta || !sta->eapol_sm)
  1595. return -1;
  1596. return eapol_auth_set_conf(sta->eapol_sm, param, pos);
  1597. }
  1598. static int hostapd_ctrl_iface_receive_process(struct hostapd_data *hapd,
  1599. char *buf, char *reply,
  1600. int reply_size,
  1601. struct sockaddr_un *from,
  1602. socklen_t fromlen)
  1603. {
  1604. int reply_len, res;
  1605. os_memcpy(reply, "OK\n", 3);
  1606. reply_len = 3;
  1607. if (os_strcmp(buf, "PING") == 0) {
  1608. os_memcpy(reply, "PONG\n", 5);
  1609. reply_len = 5;
  1610. } else if (os_strncmp(buf, "RELOG", 5) == 0) {
  1611. if (wpa_debug_reopen_file() < 0)
  1612. reply_len = -1;
  1613. } else if (os_strcmp(buf, "STATUS") == 0) {
  1614. reply_len = hostapd_ctrl_iface_status(hapd, reply,
  1615. reply_size);
  1616. } else if (os_strcmp(buf, "STATUS-DRIVER") == 0) {
  1617. reply_len = hostapd_drv_status(hapd, reply, reply_size);
  1618. } else if (os_strcmp(buf, "MIB") == 0) {
  1619. reply_len = ieee802_11_get_mib(hapd, reply, reply_size);
  1620. if (reply_len >= 0) {
  1621. res = wpa_get_mib(hapd->wpa_auth, reply + reply_len,
  1622. reply_size - reply_len);
  1623. if (res < 0)
  1624. reply_len = -1;
  1625. else
  1626. reply_len += res;
  1627. }
  1628. if (reply_len >= 0) {
  1629. res = ieee802_1x_get_mib(hapd, reply + reply_len,
  1630. reply_size - reply_len);
  1631. if (res < 0)
  1632. reply_len = -1;
  1633. else
  1634. reply_len += res;
  1635. }
  1636. #ifndef CONFIG_NO_RADIUS
  1637. if (reply_len >= 0) {
  1638. res = radius_client_get_mib(hapd->radius,
  1639. reply + reply_len,
  1640. reply_size - reply_len);
  1641. if (res < 0)
  1642. reply_len = -1;
  1643. else
  1644. reply_len += res;
  1645. }
  1646. #endif /* CONFIG_NO_RADIUS */
  1647. } else if (os_strncmp(buf, "MIB ", 4) == 0) {
  1648. reply_len = hostapd_ctrl_iface_mib(hapd, reply, reply_size,
  1649. buf + 4);
  1650. } else if (os_strcmp(buf, "STA-FIRST") == 0) {
  1651. reply_len = hostapd_ctrl_iface_sta_first(hapd, reply,
  1652. reply_size);
  1653. } else if (os_strncmp(buf, "STA ", 4) == 0) {
  1654. reply_len = hostapd_ctrl_iface_sta(hapd, buf + 4, reply,
  1655. reply_size);
  1656. } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
  1657. reply_len = hostapd_ctrl_iface_sta_next(hapd, buf + 9, reply,
  1658. reply_size);
  1659. } else if (os_strcmp(buf, "ATTACH") == 0) {
  1660. if (hostapd_ctrl_iface_attach(hapd, from, fromlen))
  1661. reply_len = -1;
  1662. } else if (os_strcmp(buf, "DETACH") == 0) {
  1663. if (hostapd_ctrl_iface_detach(hapd, from, fromlen))
  1664. reply_len = -1;
  1665. } else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
  1666. if (hostapd_ctrl_iface_level(hapd, from, fromlen,
  1667. buf + 6))
  1668. reply_len = -1;
  1669. } else if (os_strncmp(buf, "NEW_STA ", 8) == 0) {
  1670. if (hostapd_ctrl_iface_new_sta(hapd, buf + 8))
  1671. reply_len = -1;
  1672. } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
  1673. if (hostapd_ctrl_iface_deauthenticate(hapd, buf + 15))
  1674. reply_len = -1;
  1675. } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
  1676. if (hostapd_ctrl_iface_disassociate(hapd, buf + 13))
  1677. reply_len = -1;
  1678. } else if (os_strcmp(buf, "STOP_AP") == 0) {
  1679. if (hostapd_ctrl_iface_stop_ap(hapd))
  1680. reply_len = -1;
  1681. #ifdef CONFIG_IEEE80211W
  1682. #ifdef NEED_AP_MLME
  1683. } else if (os_strncmp(buf, "SA_QUERY ", 9) == 0) {
  1684. if (hostapd_ctrl_iface_sa_query(hapd, buf + 9))
  1685. reply_len = -1;
  1686. #endif /* NEED_AP_MLME */
  1687. #endif /* CONFIG_IEEE80211W */
  1688. #ifdef CONFIG_WPS
  1689. } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
  1690. if (hostapd_ctrl_iface_wps_pin(hapd, buf + 8))
  1691. reply_len = -1;
  1692. } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
  1693. reply_len = hostapd_ctrl_iface_wps_check_pin(
  1694. hapd, buf + 14, reply, reply_size);
  1695. } else if (os_strcmp(buf, "WPS_PBC") == 0) {
  1696. if (hostapd_wps_button_pushed(hapd, NULL))
  1697. reply_len = -1;
  1698. } else if (os_strcmp(buf, "WPS_CANCEL") == 0) {
  1699. if (hostapd_wps_cancel(hapd))
  1700. reply_len = -1;
  1701. } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
  1702. reply_len = hostapd_ctrl_iface_wps_ap_pin(hapd, buf + 11,
  1703. reply, reply_size);
  1704. } else if (os_strncmp(buf, "WPS_CONFIG ", 11) == 0) {
  1705. if (hostapd_ctrl_iface_wps_config(hapd, buf + 11) < 0)
  1706. reply_len = -1;
  1707. } else if (os_strncmp(buf, "WPS_GET_STATUS", 13) == 0) {
  1708. reply_len = hostapd_ctrl_iface_wps_get_status(hapd, reply,
  1709. reply_size);
  1710. #ifdef CONFIG_WPS_NFC
  1711. } else if (os_strncmp(buf, "WPS_NFC_TAG_READ ", 17) == 0) {
  1712. if (hostapd_ctrl_iface_wps_nfc_tag_read(hapd, buf + 17))
  1713. reply_len = -1;
  1714. } else if (os_strncmp(buf, "WPS_NFC_CONFIG_TOKEN ", 21) == 0) {
  1715. reply_len = hostapd_ctrl_iface_wps_nfc_config_token(
  1716. hapd, buf + 21, reply, reply_size);
  1717. } else if (os_strncmp(buf, "WPS_NFC_TOKEN ", 14) == 0) {
  1718. reply_len = hostapd_ctrl_iface_wps_nfc_token(
  1719. hapd, buf + 14, reply, reply_size);
  1720. } else if (os_strncmp(buf, "NFC_GET_HANDOVER_SEL ", 21) == 0) {
  1721. reply_len = hostapd_ctrl_iface_nfc_get_handover_sel(
  1722. hapd, buf + 21, reply, reply_size);
  1723. } else if (os_strncmp(buf, "NFC_REPORT_HANDOVER ", 20) == 0) {
  1724. if (hostapd_ctrl_iface_nfc_report_handover(hapd, buf + 20))
  1725. reply_len = -1;
  1726. #endif /* CONFIG_WPS_NFC */
  1727. #endif /* CONFIG_WPS */
  1728. #ifdef CONFIG_INTERWORKING
  1729. } else if (os_strncmp(buf, "SET_QOS_MAP_SET ", 16) == 0) {
  1730. if (hostapd_ctrl_iface_set_qos_map_set(hapd, buf + 16))
  1731. reply_len = -1;
  1732. } else if (os_strncmp(buf, "SEND_QOS_MAP_CONF ", 18) == 0) {
  1733. if (hostapd_ctrl_iface_send_qos_map_conf(hapd, buf + 18))
  1734. reply_len = -1;
  1735. #endif /* CONFIG_INTERWORKING */
  1736. #ifdef CONFIG_HS20
  1737. } else if (os_strncmp(buf, "HS20_WNM_NOTIF ", 15) == 0) {
  1738. if (hostapd_ctrl_iface_hs20_wnm_notif(hapd, buf + 15))
  1739. reply_len = -1;
  1740. } else if (os_strncmp(buf, "HS20_DEAUTH_REQ ", 16) == 0) {
  1741. if (hostapd_ctrl_iface_hs20_deauth_req(hapd, buf + 16))
  1742. reply_len = -1;
  1743. #endif /* CONFIG_HS20 */
  1744. #ifdef CONFIG_WNM
  1745. } else if (os_strncmp(buf, "DISASSOC_IMMINENT ", 18) == 0) {
  1746. if (hostapd_ctrl_iface_disassoc_imminent(hapd, buf + 18))
  1747. reply_len = -1;
  1748. } else if (os_strncmp(buf, "ESS_DISASSOC ", 13) == 0) {
  1749. if (hostapd_ctrl_iface_ess_disassoc(hapd, buf + 13))
  1750. reply_len = -1;
  1751. } else if (os_strncmp(buf, "BSS_TM_REQ ", 11) == 0) {
  1752. if (hostapd_ctrl_iface_bss_tm_req(hapd, buf + 11))
  1753. reply_len = -1;
  1754. #endif /* CONFIG_WNM */
  1755. } else if (os_strcmp(buf, "GET_CONFIG") == 0) {
  1756. reply_len = hostapd_ctrl_iface_get_config(hapd, reply,
  1757. reply_size);
  1758. } else if (os_strncmp(buf, "SET ", 4) == 0) {
  1759. if (hostapd_ctrl_iface_set(hapd, buf + 4))
  1760. reply_len = -1;
  1761. } else if (os_strncmp(buf, "GET ", 4) == 0) {
  1762. reply_len = hostapd_ctrl_iface_get(hapd, buf + 4, reply,
  1763. reply_size);
  1764. } else if (os_strncmp(buf, "ENABLE", 6) == 0) {
  1765. if (hostapd_ctrl_iface_enable(hapd->iface))
  1766. reply_len = -1;
  1767. } else if (os_strncmp(buf, "RELOAD", 6) == 0) {
  1768. if (hostapd_ctrl_iface_reload(hapd->iface))
  1769. reply_len = -1;
  1770. } else if (os_strncmp(buf, "DISABLE", 7) == 0) {
  1771. if (hostapd_ctrl_iface_disable(hapd->iface))
  1772. reply_len = -1;
  1773. } else if (os_strcmp(buf, "UPDATE_BEACON") == 0) {
  1774. if (ieee802_11_set_beacon(hapd))
  1775. reply_len = -1;
  1776. #ifdef CONFIG_TESTING_OPTIONS
  1777. } else if (os_strncmp(buf, "RADAR ", 6) == 0) {
  1778. if (hostapd_ctrl_iface_radar(hapd, buf + 6))
  1779. reply_len = -1;
  1780. } else if (os_strncmp(buf, "MGMT_TX ", 8) == 0) {
  1781. if (hostapd_ctrl_iface_mgmt_tx(hapd, buf + 8))
  1782. reply_len = -1;
  1783. } else if (os_strncmp(buf, "EAPOL_RX ", 9) == 0) {
  1784. if (hostapd_ctrl_iface_eapol_rx(hapd, buf + 9) < 0)
  1785. reply_len = -1;
  1786. } else if (os_strncmp(buf, "DATA_TEST_CONFIG ", 17) == 0) {
  1787. if (hostapd_ctrl_iface_data_test_config(hapd, buf + 17) < 0)
  1788. reply_len = -1;
  1789. } else if (os_strncmp(buf, "DATA_TEST_TX ", 13) == 0) {
  1790. if (hostapd_ctrl_iface_data_test_tx(hapd, buf + 13) < 0)
  1791. reply_len = -1;
  1792. } else if (os_strncmp(buf, "DATA_TEST_FRAME ", 16) == 0) {
  1793. if (hostapd_ctrl_iface_data_test_frame(hapd, buf + 16) < 0)
  1794. reply_len = -1;
  1795. } else if (os_strncmp(buf, "TEST_ALLOC_FAIL ", 16) == 0) {
  1796. if (hostapd_ctrl_test_alloc_fail(hapd, buf + 16) < 0)
  1797. reply_len = -1;
  1798. } else if (os_strcmp(buf, "GET_ALLOC_FAIL") == 0) {
  1799. reply_len = hostapd_ctrl_get_alloc_fail(hapd, reply,
  1800. reply_size);
  1801. } else if (os_strncmp(buf, "TEST_FAIL ", 10) == 0) {
  1802. if (hostapd_ctrl_test_fail(hapd, buf + 10) < 0)
  1803. reply_len = -1;
  1804. } else if (os_strcmp(buf, "GET_FAIL") == 0) {
  1805. reply_len = hostapd_ctrl_get_fail(hapd, reply, reply_size);
  1806. #endif /* CONFIG_TESTING_OPTIONS */
  1807. } else if (os_strncmp(buf, "CHAN_SWITCH ", 12) == 0) {
  1808. if (hostapd_ctrl_iface_chan_switch(hapd->iface, buf + 12))
  1809. reply_len = -1;
  1810. } else if (os_strncmp(buf, "VENDOR ", 7) == 0) {
  1811. reply_len = hostapd_ctrl_iface_vendor(hapd, buf + 7, reply,
  1812. reply_size);
  1813. } else if (os_strcmp(buf, "ERP_FLUSH") == 0) {
  1814. ieee802_1x_erp_flush(hapd);
  1815. #ifdef RADIUS_SERVER
  1816. radius_server_erp_flush(hapd->radius_srv);
  1817. #endif /* RADIUS_SERVER */
  1818. } else if (os_strncmp(buf, "EAPOL_REAUTH ", 13) == 0) {
  1819. if (hostapd_ctrl_iface_eapol_reauth(hapd, buf + 13))
  1820. reply_len = -1;
  1821. } else if (os_strncmp(buf, "EAPOL_SET ", 10) == 0) {
  1822. if (hostapd_ctrl_iface_eapol_set(hapd, buf + 10))
  1823. reply_len = -1;
  1824. } else {
  1825. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  1826. reply_len = 16;
  1827. }
  1828. if (reply_len < 0) {
  1829. os_memcpy(reply, "FAIL\n", 5);
  1830. reply_len = 5;
  1831. }
  1832. return reply_len;
  1833. }
  1834. static void hostapd_ctrl_iface_receive(int sock, void *eloop_ctx,
  1835. void *sock_ctx)
  1836. {
  1837. struct hostapd_data *hapd = eloop_ctx;
  1838. char buf[4096];
  1839. int res;
  1840. struct sockaddr_un from;
  1841. socklen_t fromlen = sizeof(from);
  1842. char *reply;
  1843. const int reply_size = 4096;
  1844. int reply_len;
  1845. int level = MSG_DEBUG;
  1846. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  1847. (struct sockaddr *) &from, &fromlen);
  1848. if (res < 0) {
  1849. wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
  1850. strerror(errno));
  1851. return;
  1852. }
  1853. buf[res] = '\0';
  1854. if (os_strcmp(buf, "PING") == 0)
  1855. level = MSG_EXCESSIVE;
  1856. wpa_hexdump_ascii(level, "RX ctrl_iface", (u8 *) buf, res);
  1857. reply = os_malloc(reply_size);
  1858. if (reply == NULL) {
  1859. if (sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
  1860. fromlen) < 0) {
  1861. wpa_printf(MSG_DEBUG, "CTRL: sendto failed: %s",
  1862. strerror(errno));
  1863. }
  1864. return;
  1865. }
  1866. reply_len = hostapd_ctrl_iface_receive_process(hapd, buf,
  1867. reply, reply_size,
  1868. &from, fromlen);
  1869. if (sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from,
  1870. fromlen) < 0) {
  1871. wpa_printf(MSG_DEBUG, "CTRL: sendto failed: %s",
  1872. strerror(errno));
  1873. }
  1874. os_free(reply);
  1875. }
  1876. static char * hostapd_ctrl_iface_path(struct hostapd_data *hapd)
  1877. {
  1878. char *buf;
  1879. size_t len;
  1880. if (hapd->conf->ctrl_interface == NULL)
  1881. return NULL;
  1882. len = os_strlen(hapd->conf->ctrl_interface) +
  1883. os_strlen(hapd->conf->iface) + 2;
  1884. buf = os_malloc(len);
  1885. if (buf == NULL)
  1886. return NULL;
  1887. os_snprintf(buf, len, "%s/%s",
  1888. hapd->conf->ctrl_interface, hapd->conf->iface);
  1889. buf[len - 1] = '\0';
  1890. return buf;
  1891. }
  1892. static void hostapd_ctrl_iface_msg_cb(void *ctx, int level,
  1893. enum wpa_msg_type type,
  1894. const char *txt, size_t len)
  1895. {
  1896. struct hostapd_data *hapd = ctx;
  1897. if (hapd == NULL)
  1898. return;
  1899. hostapd_ctrl_iface_send(hapd, level, type, txt, len);
  1900. }
  1901. int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
  1902. {
  1903. struct sockaddr_un addr;
  1904. int s = -1;
  1905. char *fname = NULL;
  1906. if (hapd->ctrl_sock > -1) {
  1907. wpa_printf(MSG_DEBUG, "ctrl_iface already exists!");
  1908. return 0;
  1909. }
  1910. if (hapd->conf->ctrl_interface == NULL)
  1911. return 0;
  1912. if (mkdir(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
  1913. if (errno == EEXIST) {
  1914. wpa_printf(MSG_DEBUG, "Using existing control "
  1915. "interface directory.");
  1916. } else {
  1917. wpa_printf(MSG_ERROR, "mkdir[ctrl_interface]: %s",
  1918. strerror(errno));
  1919. goto fail;
  1920. }
  1921. }
  1922. if (hapd->conf->ctrl_interface_gid_set &&
  1923. chown(hapd->conf->ctrl_interface, -1,
  1924. hapd->conf->ctrl_interface_gid) < 0) {
  1925. wpa_printf(MSG_ERROR, "chown[ctrl_interface]: %s",
  1926. strerror(errno));
  1927. return -1;
  1928. }
  1929. if (!hapd->conf->ctrl_interface_gid_set &&
  1930. hapd->iface->interfaces->ctrl_iface_group &&
  1931. chown(hapd->conf->ctrl_interface, -1,
  1932. hapd->iface->interfaces->ctrl_iface_group) < 0) {
  1933. wpa_printf(MSG_ERROR, "chown[ctrl_interface]: %s",
  1934. strerror(errno));
  1935. return -1;
  1936. }
  1937. #ifdef ANDROID
  1938. /*
  1939. * Android is using umask 0077 which would leave the control interface
  1940. * directory without group access. This breaks things since Wi-Fi
  1941. * framework assumes that this directory can be accessed by other
  1942. * applications in the wifi group. Fix this by adding group access even
  1943. * if umask value would prevent this.
  1944. */
  1945. if (chmod(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
  1946. wpa_printf(MSG_ERROR, "CTRL: Could not chmod directory: %s",
  1947. strerror(errno));
  1948. /* Try to continue anyway */
  1949. }
  1950. #endif /* ANDROID */
  1951. if (os_strlen(hapd->conf->ctrl_interface) + 1 +
  1952. os_strlen(hapd->conf->iface) >= sizeof(addr.sun_path))
  1953. goto fail;
  1954. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  1955. if (s < 0) {
  1956. wpa_printf(MSG_ERROR, "socket(PF_UNIX): %s", strerror(errno));
  1957. goto fail;
  1958. }
  1959. os_memset(&addr, 0, sizeof(addr));
  1960. #ifdef __FreeBSD__
  1961. addr.sun_len = sizeof(addr);
  1962. #endif /* __FreeBSD__ */
  1963. addr.sun_family = AF_UNIX;
  1964. fname = hostapd_ctrl_iface_path(hapd);
  1965. if (fname == NULL)
  1966. goto fail;
  1967. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  1968. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  1969. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  1970. strerror(errno));
  1971. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  1972. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  1973. " allow connections - assuming it was left"
  1974. "over from forced program termination");
  1975. if (unlink(fname) < 0) {
  1976. wpa_printf(MSG_ERROR,
  1977. "Could not unlink existing ctrl_iface socket '%s': %s",
  1978. fname, strerror(errno));
  1979. goto fail;
  1980. }
  1981. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
  1982. 0) {
  1983. wpa_printf(MSG_ERROR,
  1984. "hostapd-ctrl-iface: bind(PF_UNIX): %s",
  1985. strerror(errno));
  1986. goto fail;
  1987. }
  1988. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  1989. "ctrl_iface socket '%s'", fname);
  1990. } else {
  1991. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  1992. "be in use - cannot override it");
  1993. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  1994. "not used anymore", fname);
  1995. os_free(fname);
  1996. fname = NULL;
  1997. goto fail;
  1998. }
  1999. }
  2000. if (hapd->conf->ctrl_interface_gid_set &&
  2001. chown(fname, -1, hapd->conf->ctrl_interface_gid) < 0) {
  2002. wpa_printf(MSG_ERROR, "chown[ctrl_interface/ifname]: %s",
  2003. strerror(errno));
  2004. goto fail;
  2005. }
  2006. if (!hapd->conf->ctrl_interface_gid_set &&
  2007. hapd->iface->interfaces->ctrl_iface_group &&
  2008. chown(fname, -1, hapd->iface->interfaces->ctrl_iface_group) < 0) {
  2009. wpa_printf(MSG_ERROR, "chown[ctrl_interface/ifname]: %s",
  2010. strerror(errno));
  2011. goto fail;
  2012. }
  2013. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  2014. wpa_printf(MSG_ERROR, "chmod[ctrl_interface/ifname]: %s",
  2015. strerror(errno));
  2016. goto fail;
  2017. }
  2018. os_free(fname);
  2019. hapd->ctrl_sock = s;
  2020. if (eloop_register_read_sock(s, hostapd_ctrl_iface_receive, hapd,
  2021. NULL) < 0) {
  2022. hostapd_ctrl_iface_deinit(hapd);
  2023. return -1;
  2024. }
  2025. hapd->msg_ctx = hapd;
  2026. wpa_msg_register_cb(hostapd_ctrl_iface_msg_cb);
  2027. return 0;
  2028. fail:
  2029. if (s >= 0)
  2030. close(s);
  2031. if (fname) {
  2032. unlink(fname);
  2033. os_free(fname);
  2034. }
  2035. return -1;
  2036. }
  2037. void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd)
  2038. {
  2039. struct wpa_ctrl_dst *dst, *prev;
  2040. if (hapd->ctrl_sock > -1) {
  2041. char *fname;
  2042. eloop_unregister_read_sock(hapd->ctrl_sock);
  2043. close(hapd->ctrl_sock);
  2044. hapd->ctrl_sock = -1;
  2045. fname = hostapd_ctrl_iface_path(hapd);
  2046. if (fname)
  2047. unlink(fname);
  2048. os_free(fname);
  2049. if (hapd->conf->ctrl_interface &&
  2050. rmdir(hapd->conf->ctrl_interface) < 0) {
  2051. if (errno == ENOTEMPTY) {
  2052. wpa_printf(MSG_DEBUG, "Control interface "
  2053. "directory not empty - leaving it "
  2054. "behind");
  2055. } else {
  2056. wpa_printf(MSG_ERROR,
  2057. "rmdir[ctrl_interface=%s]: %s",
  2058. hapd->conf->ctrl_interface,
  2059. strerror(errno));
  2060. }
  2061. }
  2062. }
  2063. dst = hapd->ctrl_dst;
  2064. hapd->ctrl_dst = NULL;
  2065. while (dst) {
  2066. prev = dst;
  2067. dst = dst->next;
  2068. os_free(prev);
  2069. }
  2070. #ifdef CONFIG_TESTING_OPTIONS
  2071. l2_packet_deinit(hapd->l2_test);
  2072. hapd->l2_test = NULL;
  2073. #endif /* CONFIG_TESTING_OPTIONS */
  2074. }
  2075. static int hostapd_ctrl_iface_add(struct hapd_interfaces *interfaces,
  2076. char *buf)
  2077. {
  2078. if (hostapd_add_iface(interfaces, buf) < 0) {
  2079. wpa_printf(MSG_ERROR, "Adding interface %s failed", buf);
  2080. return -1;
  2081. }
  2082. return 0;
  2083. }
  2084. static int hostapd_ctrl_iface_remove(struct hapd_interfaces *interfaces,
  2085. char *buf)
  2086. {
  2087. if (hostapd_remove_iface(interfaces, buf) < 0) {
  2088. wpa_printf(MSG_ERROR, "Removing interface %s failed", buf);
  2089. return -1;
  2090. }
  2091. return 0;
  2092. }
  2093. static int hostapd_global_ctrl_iface_attach(struct hapd_interfaces *interfaces,
  2094. struct sockaddr_un *from,
  2095. socklen_t fromlen)
  2096. {
  2097. struct wpa_ctrl_dst *dst;
  2098. dst = os_zalloc(sizeof(*dst));
  2099. if (dst == NULL)
  2100. return -1;
  2101. os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un));
  2102. dst->addrlen = fromlen;
  2103. dst->debug_level = MSG_INFO;
  2104. dst->next = interfaces->global_ctrl_dst;
  2105. interfaces->global_ctrl_dst = dst;
  2106. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor attached (global)",
  2107. from->sun_path,
  2108. fromlen - offsetof(struct sockaddr_un, sun_path));
  2109. return 0;
  2110. }
  2111. static int hostapd_global_ctrl_iface_detach(struct hapd_interfaces *interfaces,
  2112. struct sockaddr_un *from,
  2113. socklen_t fromlen)
  2114. {
  2115. struct wpa_ctrl_dst *dst, *prev = NULL;
  2116. dst = interfaces->global_ctrl_dst;
  2117. while (dst) {
  2118. if (fromlen == dst->addrlen &&
  2119. os_memcmp(from->sun_path, dst->addr.sun_path,
  2120. fromlen - offsetof(struct sockaddr_un, sun_path))
  2121. == 0) {
  2122. wpa_hexdump(MSG_DEBUG,
  2123. "CTRL_IFACE monitor detached (global)",
  2124. from->sun_path,
  2125. fromlen -
  2126. offsetof(struct sockaddr_un, sun_path));
  2127. if (prev == NULL)
  2128. interfaces->global_ctrl_dst = dst->next;
  2129. else
  2130. prev->next = dst->next;
  2131. os_free(dst);
  2132. return 0;
  2133. }
  2134. prev = dst;
  2135. dst = dst->next;
  2136. }
  2137. return -1;
  2138. }
  2139. static void hostapd_ctrl_iface_flush(struct hapd_interfaces *interfaces)
  2140. {
  2141. #ifdef CONFIG_WPS_TESTING
  2142. wps_version_number = 0x20;
  2143. wps_testing_dummy_cred = 0;
  2144. wps_corrupt_pkhash = 0;
  2145. #endif /* CONFIG_WPS_TESTING */
  2146. }
  2147. #ifdef CONFIG_FST
  2148. static int
  2149. hostapd_global_ctrl_iface_fst_attach(struct hapd_interfaces *interfaces,
  2150. const char *cmd)
  2151. {
  2152. char ifname[IFNAMSIZ + 1];
  2153. struct fst_iface_cfg cfg;
  2154. struct hostapd_data *hapd;
  2155. struct fst_wpa_obj iface_obj;
  2156. if (!fst_parse_attach_command(cmd, ifname, sizeof(ifname), &cfg)) {
  2157. hapd = hostapd_get_iface(interfaces, ifname);
  2158. if (hapd) {
  2159. fst_hostapd_fill_iface_obj(hapd, &iface_obj);
  2160. hapd->iface->fst = fst_attach(ifname, hapd->own_addr,
  2161. &iface_obj, &cfg);
  2162. if (hapd->iface->fst)
  2163. return 0;
  2164. }
  2165. }
  2166. return EINVAL;
  2167. }
  2168. static int
  2169. hostapd_global_ctrl_iface_fst_detach(struct hapd_interfaces *interfaces,
  2170. const char *cmd)
  2171. {
  2172. char ifname[IFNAMSIZ + 1];
  2173. struct hostapd_data * hapd;
  2174. if (!fst_parse_detach_command(cmd, ifname, sizeof(ifname))) {
  2175. hapd = hostapd_get_iface(interfaces, ifname);
  2176. if (hapd) {
  2177. if (!fst_iface_detach(ifname)) {
  2178. hapd->iface->fst = NULL;
  2179. hapd->iface->fst_ies = NULL;
  2180. return 0;
  2181. }
  2182. }
  2183. }
  2184. return EINVAL;
  2185. }
  2186. #endif /* CONFIG_FST */
  2187. static struct hostapd_data *
  2188. hostapd_interfaces_get_hapd(struct hapd_interfaces *interfaces,
  2189. const char *ifname)
  2190. {
  2191. size_t i, j;
  2192. for (i = 0; i < interfaces->count; i++) {
  2193. struct hostapd_iface *iface = interfaces->iface[i];
  2194. for (j = 0; j < iface->num_bss; j++) {
  2195. struct hostapd_data *hapd;
  2196. hapd = iface->bss[j];
  2197. if (os_strcmp(ifname, hapd->conf->iface) == 0)
  2198. return hapd;
  2199. }
  2200. }
  2201. return NULL;
  2202. }
  2203. static int hostapd_global_ctrl_iface_ifname(struct hapd_interfaces *interfaces,
  2204. const char *ifname,
  2205. char *buf, char *reply,
  2206. int reply_size,
  2207. struct sockaddr_un *from,
  2208. socklen_t fromlen)
  2209. {
  2210. struct hostapd_data *hapd;
  2211. hapd = hostapd_interfaces_get_hapd(interfaces, ifname);
  2212. if (hapd == NULL) {
  2213. int res;
  2214. res = os_snprintf(reply, reply_size, "FAIL-NO-IFNAME-MATCH\n");
  2215. if (os_snprintf_error(reply_size, res))
  2216. return -1;
  2217. return res;
  2218. }
  2219. return hostapd_ctrl_iface_receive_process(hapd, buf, reply,reply_size,
  2220. from, fromlen);
  2221. }
  2222. static void hostapd_global_ctrl_iface_receive(int sock, void *eloop_ctx,
  2223. void *sock_ctx)
  2224. {
  2225. void *interfaces = eloop_ctx;
  2226. char buf[256];
  2227. int res;
  2228. struct sockaddr_un from;
  2229. socklen_t fromlen = sizeof(from);
  2230. char *reply;
  2231. int reply_len;
  2232. const int reply_size = 4096;
  2233. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  2234. (struct sockaddr *) &from, &fromlen);
  2235. if (res < 0) {
  2236. wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
  2237. strerror(errno));
  2238. return;
  2239. }
  2240. buf[res] = '\0';
  2241. wpa_printf(MSG_DEBUG, "Global ctrl_iface command: %s", buf);
  2242. reply = os_malloc(reply_size);
  2243. if (reply == NULL) {
  2244. if (sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
  2245. fromlen) < 0) {
  2246. wpa_printf(MSG_DEBUG, "CTRL: sendto failed: %s",
  2247. strerror(errno));
  2248. }
  2249. return;
  2250. }
  2251. os_memcpy(reply, "OK\n", 3);
  2252. reply_len = 3;
  2253. if (os_strncmp(buf, "IFNAME=", 7) == 0) {
  2254. char *pos = os_strchr(buf + 7, ' ');
  2255. if (pos) {
  2256. *pos++ = '\0';
  2257. reply_len = hostapd_global_ctrl_iface_ifname(
  2258. interfaces, buf + 7, pos, reply, reply_size,
  2259. &from, fromlen);
  2260. goto send_reply;
  2261. }
  2262. }
  2263. if (os_strcmp(buf, "PING") == 0) {
  2264. os_memcpy(reply, "PONG\n", 5);
  2265. reply_len = 5;
  2266. } else if (os_strncmp(buf, "RELOG", 5) == 0) {
  2267. if (wpa_debug_reopen_file() < 0)
  2268. reply_len = -1;
  2269. } else if (os_strcmp(buf, "FLUSH") == 0) {
  2270. hostapd_ctrl_iface_flush(interfaces);
  2271. } else if (os_strncmp(buf, "ADD ", 4) == 0) {
  2272. if (hostapd_ctrl_iface_add(interfaces, buf + 4) < 0)
  2273. reply_len = -1;
  2274. } else if (os_strncmp(buf, "REMOVE ", 7) == 0) {
  2275. if (hostapd_ctrl_iface_remove(interfaces, buf + 7) < 0)
  2276. reply_len = -1;
  2277. } else if (os_strcmp(buf, "ATTACH") == 0) {
  2278. if (hostapd_global_ctrl_iface_attach(interfaces, &from,
  2279. fromlen))
  2280. reply_len = -1;
  2281. } else if (os_strcmp(buf, "DETACH") == 0) {
  2282. if (hostapd_global_ctrl_iface_detach(interfaces, &from,
  2283. fromlen))
  2284. reply_len = -1;
  2285. #ifdef CONFIG_MODULE_TESTS
  2286. } else if (os_strcmp(buf, "MODULE_TESTS") == 0) {
  2287. int hapd_module_tests(void);
  2288. if (hapd_module_tests() < 0)
  2289. reply_len = -1;
  2290. #endif /* CONFIG_MODULE_TESTS */
  2291. #ifdef CONFIG_FST
  2292. } else if (os_strncmp(buf, "FST-ATTACH ", 11) == 0) {
  2293. if (!hostapd_global_ctrl_iface_fst_attach(interfaces, buf + 11))
  2294. reply_len = os_snprintf(reply, reply_size, "OK\n");
  2295. else
  2296. reply_len = -1;
  2297. } else if (os_strncmp(buf, "FST-DETACH ", 11) == 0) {
  2298. if (!hostapd_global_ctrl_iface_fst_detach(interfaces, buf + 11))
  2299. reply_len = os_snprintf(reply, reply_size, "OK\n");
  2300. else
  2301. reply_len = -1;
  2302. } else if (os_strncmp(buf, "FST-MANAGER ", 12) == 0) {
  2303. reply_len = fst_ctrl_iface_receive(buf + 12, reply, reply_size);
  2304. #endif /* CONFIG_FST */
  2305. } else {
  2306. wpa_printf(MSG_DEBUG, "Unrecognized global ctrl_iface command "
  2307. "ignored");
  2308. reply_len = -1;
  2309. }
  2310. send_reply:
  2311. if (reply_len < 0) {
  2312. os_memcpy(reply, "FAIL\n", 5);
  2313. reply_len = 5;
  2314. }
  2315. if (sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from,
  2316. fromlen) < 0) {
  2317. wpa_printf(MSG_DEBUG, "CTRL: sendto failed: %s",
  2318. strerror(errno));
  2319. }
  2320. os_free(reply);
  2321. }
  2322. static char * hostapd_global_ctrl_iface_path(struct hapd_interfaces *interface)
  2323. {
  2324. char *buf;
  2325. size_t len;
  2326. if (interface->global_iface_path == NULL)
  2327. return NULL;
  2328. len = os_strlen(interface->global_iface_path) +
  2329. os_strlen(interface->global_iface_name) + 2;
  2330. buf = os_malloc(len);
  2331. if (buf == NULL)
  2332. return NULL;
  2333. os_snprintf(buf, len, "%s/%s", interface->global_iface_path,
  2334. interface->global_iface_name);
  2335. buf[len - 1] = '\0';
  2336. return buf;
  2337. }
  2338. int hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface)
  2339. {
  2340. struct sockaddr_un addr;
  2341. int s = -1;
  2342. char *fname = NULL;
  2343. if (interface->global_iface_path == NULL) {
  2344. wpa_printf(MSG_DEBUG, "ctrl_iface not configured!");
  2345. return 0;
  2346. }
  2347. if (mkdir(interface->global_iface_path, S_IRWXU | S_IRWXG) < 0) {
  2348. if (errno == EEXIST) {
  2349. wpa_printf(MSG_DEBUG, "Using existing control "
  2350. "interface directory.");
  2351. } else {
  2352. wpa_printf(MSG_ERROR, "mkdir[ctrl_interface]: %s",
  2353. strerror(errno));
  2354. goto fail;
  2355. }
  2356. } else if (interface->ctrl_iface_group &&
  2357. chown(interface->global_iface_path, -1,
  2358. interface->ctrl_iface_group) < 0) {
  2359. wpa_printf(MSG_ERROR, "chown[ctrl_interface]: %s",
  2360. strerror(errno));
  2361. goto fail;
  2362. }
  2363. if (os_strlen(interface->global_iface_path) + 1 +
  2364. os_strlen(interface->global_iface_name) >= sizeof(addr.sun_path))
  2365. goto fail;
  2366. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  2367. if (s < 0) {
  2368. wpa_printf(MSG_ERROR, "socket(PF_UNIX): %s", strerror(errno));
  2369. goto fail;
  2370. }
  2371. os_memset(&addr, 0, sizeof(addr));
  2372. #ifdef __FreeBSD__
  2373. addr.sun_len = sizeof(addr);
  2374. #endif /* __FreeBSD__ */
  2375. addr.sun_family = AF_UNIX;
  2376. fname = hostapd_global_ctrl_iface_path(interface);
  2377. if (fname == NULL)
  2378. goto fail;
  2379. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  2380. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  2381. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  2382. strerror(errno));
  2383. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  2384. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  2385. " allow connections - assuming it was left"
  2386. "over from forced program termination");
  2387. if (unlink(fname) < 0) {
  2388. wpa_printf(MSG_ERROR,
  2389. "Could not unlink existing ctrl_iface socket '%s': %s",
  2390. fname, strerror(errno));
  2391. goto fail;
  2392. }
  2393. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
  2394. 0) {
  2395. wpa_printf(MSG_ERROR, "bind(PF_UNIX): %s",
  2396. strerror(errno));
  2397. goto fail;
  2398. }
  2399. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  2400. "ctrl_iface socket '%s'", fname);
  2401. } else {
  2402. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  2403. "be in use - cannot override it");
  2404. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  2405. "not used anymore", fname);
  2406. os_free(fname);
  2407. fname = NULL;
  2408. goto fail;
  2409. }
  2410. }
  2411. if (interface->ctrl_iface_group &&
  2412. chown(fname, -1, interface->ctrl_iface_group) < 0) {
  2413. wpa_printf(MSG_ERROR, "chown[ctrl_interface]: %s",
  2414. strerror(errno));
  2415. goto fail;
  2416. }
  2417. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  2418. wpa_printf(MSG_ERROR, "chmod[ctrl_interface/ifname]: %s",
  2419. strerror(errno));
  2420. goto fail;
  2421. }
  2422. os_free(fname);
  2423. interface->global_ctrl_sock = s;
  2424. eloop_register_read_sock(s, hostapd_global_ctrl_iface_receive,
  2425. interface, NULL);
  2426. return 0;
  2427. fail:
  2428. if (s >= 0)
  2429. close(s);
  2430. if (fname) {
  2431. unlink(fname);
  2432. os_free(fname);
  2433. }
  2434. return -1;
  2435. }
  2436. void hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interfaces)
  2437. {
  2438. char *fname = NULL;
  2439. struct wpa_ctrl_dst *dst, *prev;
  2440. if (interfaces->global_ctrl_sock > -1) {
  2441. eloop_unregister_read_sock(interfaces->global_ctrl_sock);
  2442. close(interfaces->global_ctrl_sock);
  2443. interfaces->global_ctrl_sock = -1;
  2444. fname = hostapd_global_ctrl_iface_path(interfaces);
  2445. if (fname) {
  2446. unlink(fname);
  2447. os_free(fname);
  2448. }
  2449. if (interfaces->global_iface_path &&
  2450. rmdir(interfaces->global_iface_path) < 0) {
  2451. if (errno == ENOTEMPTY) {
  2452. wpa_printf(MSG_DEBUG, "Control interface "
  2453. "directory not empty - leaving it "
  2454. "behind");
  2455. } else {
  2456. wpa_printf(MSG_ERROR,
  2457. "rmdir[ctrl_interface=%s]: %s",
  2458. interfaces->global_iface_path,
  2459. strerror(errno));
  2460. }
  2461. }
  2462. }
  2463. os_free(interfaces->global_iface_path);
  2464. interfaces->global_iface_path = NULL;
  2465. dst = interfaces->global_ctrl_dst;
  2466. interfaces->global_ctrl_dst = NULL;
  2467. while (dst) {
  2468. prev = dst;
  2469. dst = dst->next;
  2470. os_free(prev);
  2471. }
  2472. }
  2473. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  2474. enum wpa_msg_type type,
  2475. const char *buf, size_t len)
  2476. {
  2477. struct wpa_ctrl_dst *dst, *next;
  2478. struct msghdr msg;
  2479. int idx;
  2480. struct iovec io[2];
  2481. char levelstr[10];
  2482. int s;
  2483. if (type != WPA_MSG_ONLY_GLOBAL) {
  2484. s = hapd->ctrl_sock;
  2485. dst = hapd->ctrl_dst;
  2486. } else {
  2487. s = hapd->iface->interfaces->global_ctrl_sock;
  2488. dst = hapd->iface->interfaces->global_ctrl_dst;
  2489. }
  2490. if (s < 0 || dst == NULL)
  2491. return;
  2492. os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
  2493. io[0].iov_base = levelstr;
  2494. io[0].iov_len = os_strlen(levelstr);
  2495. io[1].iov_base = (char *) buf;
  2496. io[1].iov_len = len;
  2497. os_memset(&msg, 0, sizeof(msg));
  2498. msg.msg_iov = io;
  2499. msg.msg_iovlen = 2;
  2500. idx = 0;
  2501. while (dst) {
  2502. next = dst->next;
  2503. if (level >= dst->debug_level) {
  2504. wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor send",
  2505. (u8 *) dst->addr.sun_path, dst->addrlen -
  2506. offsetof(struct sockaddr_un, sun_path));
  2507. msg.msg_name = &dst->addr;
  2508. msg.msg_namelen = dst->addrlen;
  2509. if (sendmsg(s, &msg, 0) < 0) {
  2510. int _errno = errno;
  2511. wpa_printf(MSG_INFO, "CTRL_IFACE monitor[%d]: "
  2512. "%d - %s",
  2513. idx, errno, strerror(errno));
  2514. dst->errors++;
  2515. if (dst->errors > 10 || _errno == ENOENT) {
  2516. if (type != WPA_MSG_ONLY_GLOBAL)
  2517. hostapd_ctrl_iface_detach(
  2518. hapd, &dst->addr,
  2519. dst->addrlen);
  2520. else
  2521. hostapd_global_ctrl_iface_detach(
  2522. hapd->iface->interfaces,
  2523. &dst->addr,
  2524. dst->addrlen);
  2525. }
  2526. } else
  2527. dst->errors = 0;
  2528. }
  2529. idx++;
  2530. dst = next;
  2531. }
  2532. }
  2533. #endif /* CONFIG_NATIVE_WINDOWS */