ctrl_iface.c 64 KB

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