ctrl_iface.c 63 KB

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