ctrl_iface.c 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747
  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. #ifdef CONFIG_CTRL_IFACE_UDP
  18. #include <netdb.h>
  19. #endif /* CONFIG_CTRL_IFACE_UDP */
  20. #include "utils/common.h"
  21. #include "utils/eloop.h"
  22. #include "utils/module_tests.h"
  23. #include "common/version.h"
  24. #include "common/ieee802_11_defs.h"
  25. #include "common/ctrl_iface_common.h"
  26. #include "crypto/tls.h"
  27. #include "drivers/driver.h"
  28. #include "eapol_auth/eapol_auth_sm.h"
  29. #include "radius/radius_client.h"
  30. #include "radius/radius_server.h"
  31. #include "l2_packet/l2_packet.h"
  32. #include "ap/hostapd.h"
  33. #include "ap/ap_config.h"
  34. #include "ap/ieee802_1x.h"
  35. #include "ap/wpa_auth.h"
  36. #include "ap/ieee802_11.h"
  37. #include "ap/sta_info.h"
  38. #include "ap/wps_hostapd.h"
  39. #include "ap/ctrl_iface_ap.h"
  40. #include "ap/ap_drv_ops.h"
  41. #include "ap/hs20.h"
  42. #include "ap/wnm_ap.h"
  43. #include "ap/wpa_auth.h"
  44. #include "ap/beacon.h"
  45. #include "ap/neighbor_db.h"
  46. #include "ap/rrm.h"
  47. #include "wps/wps_defs.h"
  48. #include "wps/wps.h"
  49. #include "fst/fst_ctrl_iface.h"
  50. #include "config_file.h"
  51. #include "ctrl_iface.h"
  52. #define HOSTAPD_CLI_DUP_VALUE_MAX_LEN 256
  53. #ifdef CONFIG_CTRL_IFACE_UDP
  54. #define COOKIE_LEN 8
  55. static unsigned char cookie[COOKIE_LEN];
  56. static unsigned char gcookie[COOKIE_LEN];
  57. #define HOSTAPD_CTRL_IFACE_PORT 8877
  58. #define HOSTAPD_CTRL_IFACE_PORT_LIMIT 50
  59. #define HOSTAPD_GLOBAL_CTRL_IFACE_PORT 8878
  60. #define HOSTAPD_GLOBAL_CTRL_IFACE_PORT_LIMIT 50
  61. #endif /* CONFIG_CTRL_IFACE_UDP */
  62. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  63. enum wpa_msg_type type,
  64. const char *buf, size_t len);
  65. static int hostapd_ctrl_iface_attach(struct hostapd_data *hapd,
  66. struct sockaddr_storage *from,
  67. socklen_t fromlen)
  68. {
  69. return ctrl_iface_attach(&hapd->ctrl_dst, from, fromlen);
  70. }
  71. static int hostapd_ctrl_iface_detach(struct hostapd_data *hapd,
  72. struct sockaddr_storage *from,
  73. socklen_t fromlen)
  74. {
  75. return ctrl_iface_detach(&hapd->ctrl_dst, from, fromlen);
  76. }
  77. static int hostapd_ctrl_iface_level(struct hostapd_data *hapd,
  78. struct sockaddr_storage *from,
  79. socklen_t fromlen,
  80. char *level)
  81. {
  82. return ctrl_iface_level(&hapd->ctrl_dst, from, fromlen, level);
  83. }
  84. static int hostapd_ctrl_iface_new_sta(struct hostapd_data *hapd,
  85. const char *txtaddr)
  86. {
  87. u8 addr[ETH_ALEN];
  88. struct sta_info *sta;
  89. wpa_printf(MSG_DEBUG, "CTRL_IFACE NEW_STA %s", txtaddr);
  90. if (hwaddr_aton(txtaddr, addr))
  91. return -1;
  92. sta = ap_get_sta(hapd, addr);
  93. if (sta)
  94. return 0;
  95. wpa_printf(MSG_DEBUG, "Add new STA " MACSTR " based on ctrl_iface "
  96. "notification", MAC2STR(addr));
  97. sta = ap_sta_add(hapd, addr);
  98. if (sta == NULL)
  99. return -1;
  100. hostapd_new_assoc_sta(hapd, sta, 0);
  101. return 0;
  102. }
  103. #ifdef CONFIG_IEEE80211W
  104. #ifdef NEED_AP_MLME
  105. static int hostapd_ctrl_iface_sa_query(struct hostapd_data *hapd,
  106. const char *txtaddr)
  107. {
  108. u8 addr[ETH_ALEN];
  109. u8 trans_id[WLAN_SA_QUERY_TR_ID_LEN];
  110. wpa_printf(MSG_DEBUG, "CTRL_IFACE SA_QUERY %s", txtaddr);
  111. if (hwaddr_aton(txtaddr, addr) ||
  112. os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN) < 0)
  113. return -1;
  114. ieee802_11_send_sa_query_req(hapd, addr, trans_id);
  115. return 0;
  116. }
  117. #endif /* NEED_AP_MLME */
  118. #endif /* CONFIG_IEEE80211W */
  119. #ifdef CONFIG_WPS
  120. static int hostapd_ctrl_iface_wps_pin(struct hostapd_data *hapd, char *txt)
  121. {
  122. char *pin = os_strchr(txt, ' ');
  123. char *timeout_txt;
  124. int timeout;
  125. u8 addr_buf[ETH_ALEN], *addr = NULL;
  126. char *pos;
  127. if (pin == NULL)
  128. return -1;
  129. *pin++ = '\0';
  130. timeout_txt = os_strchr(pin, ' ');
  131. if (timeout_txt) {
  132. *timeout_txt++ = '\0';
  133. timeout = atoi(timeout_txt);
  134. pos = os_strchr(timeout_txt, ' ');
  135. if (pos) {
  136. *pos++ = '\0';
  137. if (hwaddr_aton(pos, addr_buf) == 0)
  138. addr = addr_buf;
  139. }
  140. } else
  141. timeout = 0;
  142. return hostapd_wps_add_pin(hapd, addr, txt, pin, timeout);
  143. }
  144. static int hostapd_ctrl_iface_wps_check_pin(
  145. struct hostapd_data *hapd, char *cmd, char *buf, size_t buflen)
  146. {
  147. char pin[9];
  148. size_t len;
  149. char *pos;
  150. int ret;
  151. wpa_hexdump_ascii_key(MSG_DEBUG, "WPS_CHECK_PIN",
  152. (u8 *) cmd, os_strlen(cmd));
  153. for (pos = cmd, len = 0; *pos != '\0'; pos++) {
  154. if (*pos < '0' || *pos > '9')
  155. continue;
  156. pin[len++] = *pos;
  157. if (len == 9) {
  158. wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
  159. return -1;
  160. }
  161. }
  162. if (len != 4 && len != 8) {
  163. wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
  164. return -1;
  165. }
  166. pin[len] = '\0';
  167. if (len == 8) {
  168. unsigned int pin_val;
  169. pin_val = atoi(pin);
  170. if (!wps_pin_valid(pin_val)) {
  171. wpa_printf(MSG_DEBUG, "WPS: Invalid checksum digit");
  172. ret = os_snprintf(buf, buflen, "FAIL-CHECKSUM\n");
  173. if (os_snprintf_error(buflen, ret))
  174. return -1;
  175. return ret;
  176. }
  177. }
  178. ret = os_snprintf(buf, buflen, "%s", pin);
  179. if (os_snprintf_error(buflen, ret))
  180. return -1;
  181. return ret;
  182. }
  183. #ifdef CONFIG_WPS_NFC
  184. static int hostapd_ctrl_iface_wps_nfc_tag_read(struct hostapd_data *hapd,
  185. char *pos)
  186. {
  187. size_t len;
  188. struct wpabuf *buf;
  189. int ret;
  190. len = os_strlen(pos);
  191. if (len & 0x01)
  192. return -1;
  193. len /= 2;
  194. buf = wpabuf_alloc(len);
  195. if (buf == NULL)
  196. return -1;
  197. if (hexstr2bin(pos, wpabuf_put(buf, len), len) < 0) {
  198. wpabuf_free(buf);
  199. return -1;
  200. }
  201. ret = hostapd_wps_nfc_tag_read(hapd, buf);
  202. wpabuf_free(buf);
  203. return ret;
  204. }
  205. static int hostapd_ctrl_iface_wps_nfc_config_token(struct hostapd_data *hapd,
  206. char *cmd, char *reply,
  207. size_t max_len)
  208. {
  209. int ndef;
  210. struct wpabuf *buf;
  211. int res;
  212. if (os_strcmp(cmd, "WPS") == 0)
  213. ndef = 0;
  214. else if (os_strcmp(cmd, "NDEF") == 0)
  215. ndef = 1;
  216. else
  217. return -1;
  218. buf = hostapd_wps_nfc_config_token(hapd, ndef);
  219. if (buf == NULL)
  220. return -1;
  221. res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
  222. wpabuf_len(buf));
  223. reply[res++] = '\n';
  224. reply[res] = '\0';
  225. wpabuf_free(buf);
  226. return res;
  227. }
  228. static int hostapd_ctrl_iface_wps_nfc_token_gen(struct hostapd_data *hapd,
  229. char *reply, size_t max_len,
  230. int ndef)
  231. {
  232. struct wpabuf *buf;
  233. int res;
  234. buf = hostapd_wps_nfc_token_gen(hapd, ndef);
  235. if (buf == NULL)
  236. return -1;
  237. res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
  238. wpabuf_len(buf));
  239. reply[res++] = '\n';
  240. reply[res] = '\0';
  241. wpabuf_free(buf);
  242. return res;
  243. }
  244. static int hostapd_ctrl_iface_wps_nfc_token(struct hostapd_data *hapd,
  245. char *cmd, char *reply,
  246. size_t max_len)
  247. {
  248. if (os_strcmp(cmd, "WPS") == 0)
  249. return hostapd_ctrl_iface_wps_nfc_token_gen(hapd, reply,
  250. max_len, 0);
  251. if (os_strcmp(cmd, "NDEF") == 0)
  252. return hostapd_ctrl_iface_wps_nfc_token_gen(hapd, reply,
  253. max_len, 1);
  254. if (os_strcmp(cmd, "enable") == 0)
  255. return hostapd_wps_nfc_token_enable(hapd);
  256. if (os_strcmp(cmd, "disable") == 0) {
  257. hostapd_wps_nfc_token_disable(hapd);
  258. return 0;
  259. }
  260. return -1;
  261. }
  262. static int hostapd_ctrl_iface_nfc_get_handover_sel(struct hostapd_data *hapd,
  263. char *cmd, char *reply,
  264. size_t max_len)
  265. {
  266. struct wpabuf *buf;
  267. int res;
  268. char *pos;
  269. int ndef;
  270. pos = os_strchr(cmd, ' ');
  271. if (pos == NULL)
  272. return -1;
  273. *pos++ = '\0';
  274. if (os_strcmp(cmd, "WPS") == 0)
  275. ndef = 0;
  276. else if (os_strcmp(cmd, "NDEF") == 0)
  277. ndef = 1;
  278. else
  279. return -1;
  280. if (os_strcmp(pos, "WPS-CR") == 0)
  281. buf = hostapd_wps_nfc_hs_cr(hapd, ndef);
  282. else
  283. buf = NULL;
  284. if (buf == NULL)
  285. return -1;
  286. res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
  287. wpabuf_len(buf));
  288. reply[res++] = '\n';
  289. reply[res] = '\0';
  290. wpabuf_free(buf);
  291. return res;
  292. }
  293. static int hostapd_ctrl_iface_nfc_report_handover(struct hostapd_data *hapd,
  294. char *cmd)
  295. {
  296. size_t len;
  297. struct wpabuf *req, *sel;
  298. int ret;
  299. char *pos, *role, *type, *pos2;
  300. role = cmd;
  301. pos = os_strchr(role, ' ');
  302. if (pos == NULL)
  303. return -1;
  304. *pos++ = '\0';
  305. type = pos;
  306. pos = os_strchr(type, ' ');
  307. if (pos == NULL)
  308. return -1;
  309. *pos++ = '\0';
  310. pos2 = os_strchr(pos, ' ');
  311. if (pos2 == NULL)
  312. return -1;
  313. *pos2++ = '\0';
  314. len = os_strlen(pos);
  315. if (len & 0x01)
  316. return -1;
  317. len /= 2;
  318. req = wpabuf_alloc(len);
  319. if (req == NULL)
  320. return -1;
  321. if (hexstr2bin(pos, wpabuf_put(req, len), len) < 0) {
  322. wpabuf_free(req);
  323. return -1;
  324. }
  325. len = os_strlen(pos2);
  326. if (len & 0x01) {
  327. wpabuf_free(req);
  328. return -1;
  329. }
  330. len /= 2;
  331. sel = wpabuf_alloc(len);
  332. if (sel == NULL) {
  333. wpabuf_free(req);
  334. return -1;
  335. }
  336. if (hexstr2bin(pos2, wpabuf_put(sel, len), len) < 0) {
  337. wpabuf_free(req);
  338. wpabuf_free(sel);
  339. return -1;
  340. }
  341. if (os_strcmp(role, "RESP") == 0 && os_strcmp(type, "WPS") == 0) {
  342. ret = hostapd_wps_nfc_report_handover(hapd, req, sel);
  343. } else {
  344. wpa_printf(MSG_DEBUG, "NFC: Unsupported connection handover "
  345. "reported: role=%s type=%s", role, type);
  346. ret = -1;
  347. }
  348. wpabuf_free(req);
  349. wpabuf_free(sel);
  350. return ret;
  351. }
  352. #endif /* CONFIG_WPS_NFC */
  353. static int hostapd_ctrl_iface_wps_ap_pin(struct hostapd_data *hapd, char *txt,
  354. char *buf, size_t buflen)
  355. {
  356. int timeout = 300;
  357. char *pos;
  358. const char *pin_txt;
  359. pos = os_strchr(txt, ' ');
  360. if (pos)
  361. *pos++ = '\0';
  362. if (os_strcmp(txt, "disable") == 0) {
  363. hostapd_wps_ap_pin_disable(hapd);
  364. return os_snprintf(buf, buflen, "OK\n");
  365. }
  366. if (os_strcmp(txt, "random") == 0) {
  367. if (pos)
  368. timeout = atoi(pos);
  369. pin_txt = hostapd_wps_ap_pin_random(hapd, timeout);
  370. if (pin_txt == NULL)
  371. return -1;
  372. return os_snprintf(buf, buflen, "%s", pin_txt);
  373. }
  374. if (os_strcmp(txt, "get") == 0) {
  375. pin_txt = hostapd_wps_ap_pin_get(hapd);
  376. if (pin_txt == NULL)
  377. return -1;
  378. return os_snprintf(buf, buflen, "%s", pin_txt);
  379. }
  380. if (os_strcmp(txt, "set") == 0) {
  381. char *pin;
  382. if (pos == NULL)
  383. return -1;
  384. pin = pos;
  385. pos = os_strchr(pos, ' ');
  386. if (pos) {
  387. *pos++ = '\0';
  388. timeout = atoi(pos);
  389. }
  390. if (os_strlen(pin) > buflen)
  391. return -1;
  392. if (hostapd_wps_ap_pin_set(hapd, pin, timeout) < 0)
  393. return -1;
  394. return os_snprintf(buf, buflen, "%s", pin);
  395. }
  396. return -1;
  397. }
  398. static int hostapd_ctrl_iface_wps_config(struct hostapd_data *hapd, char *txt)
  399. {
  400. char *pos;
  401. char *ssid, *auth, *encr = NULL, *key = NULL;
  402. ssid = txt;
  403. pos = os_strchr(txt, ' ');
  404. if (!pos)
  405. return -1;
  406. *pos++ = '\0';
  407. auth = pos;
  408. pos = os_strchr(pos, ' ');
  409. if (pos) {
  410. *pos++ = '\0';
  411. encr = pos;
  412. pos = os_strchr(pos, ' ');
  413. if (pos) {
  414. *pos++ = '\0';
  415. key = pos;
  416. }
  417. }
  418. return hostapd_wps_config_ap(hapd, ssid, auth, encr, key);
  419. }
  420. static const char * pbc_status_str(enum pbc_status status)
  421. {
  422. switch (status) {
  423. case WPS_PBC_STATUS_DISABLE:
  424. return "Disabled";
  425. case WPS_PBC_STATUS_ACTIVE:
  426. return "Active";
  427. case WPS_PBC_STATUS_TIMEOUT:
  428. return "Timed-out";
  429. case WPS_PBC_STATUS_OVERLAP:
  430. return "Overlap";
  431. default:
  432. return "Unknown";
  433. }
  434. }
  435. static int hostapd_ctrl_iface_wps_get_status(struct hostapd_data *hapd,
  436. char *buf, size_t buflen)
  437. {
  438. int ret;
  439. char *pos, *end;
  440. pos = buf;
  441. end = buf + buflen;
  442. ret = os_snprintf(pos, end - pos, "PBC Status: %s\n",
  443. pbc_status_str(hapd->wps_stats.pbc_status));
  444. if (os_snprintf_error(end - pos, ret))
  445. return pos - buf;
  446. pos += ret;
  447. ret = os_snprintf(pos, end - pos, "Last WPS result: %s\n",
  448. (hapd->wps_stats.status == WPS_STATUS_SUCCESS ?
  449. "Success":
  450. (hapd->wps_stats.status == WPS_STATUS_FAILURE ?
  451. "Failed" : "None")));
  452. if (os_snprintf_error(end - pos, ret))
  453. return pos - buf;
  454. pos += ret;
  455. /* If status == Failure - Add possible Reasons */
  456. if(hapd->wps_stats.status == WPS_STATUS_FAILURE &&
  457. hapd->wps_stats.failure_reason > 0) {
  458. ret = os_snprintf(pos, end - pos,
  459. "Failure Reason: %s\n",
  460. wps_ei_str(hapd->wps_stats.failure_reason));
  461. if (os_snprintf_error(end - pos, ret))
  462. return pos - buf;
  463. pos += ret;
  464. }
  465. if (hapd->wps_stats.status) {
  466. ret = os_snprintf(pos, end - pos, "Peer Address: " MACSTR "\n",
  467. MAC2STR(hapd->wps_stats.peer_addr));
  468. if (os_snprintf_error(end - pos, ret))
  469. return pos - buf;
  470. pos += ret;
  471. }
  472. return pos - buf;
  473. }
  474. #endif /* CONFIG_WPS */
  475. #ifdef CONFIG_HS20
  476. static int hostapd_ctrl_iface_hs20_wnm_notif(struct hostapd_data *hapd,
  477. const char *cmd)
  478. {
  479. u8 addr[ETH_ALEN];
  480. const char *url;
  481. if (hwaddr_aton(cmd, addr))
  482. return -1;
  483. url = cmd + 17;
  484. if (*url == '\0') {
  485. url = NULL;
  486. } else {
  487. if (*url != ' ')
  488. return -1;
  489. url++;
  490. if (*url == '\0')
  491. url = NULL;
  492. }
  493. return hs20_send_wnm_notification(hapd, addr, 1, url);
  494. }
  495. static int hostapd_ctrl_iface_hs20_deauth_req(struct hostapd_data *hapd,
  496. const char *cmd)
  497. {
  498. u8 addr[ETH_ALEN];
  499. int code, reauth_delay, ret;
  500. const char *pos;
  501. size_t url_len;
  502. struct wpabuf *req;
  503. /* <STA MAC Addr> <Code(0/1)> <Re-auth-Delay(sec)> [URL] */
  504. if (hwaddr_aton(cmd, addr))
  505. return -1;
  506. pos = os_strchr(cmd, ' ');
  507. if (pos == NULL)
  508. return -1;
  509. pos++;
  510. code = atoi(pos);
  511. pos = os_strchr(pos, ' ');
  512. if (pos == NULL)
  513. return -1;
  514. pos++;
  515. reauth_delay = atoi(pos);
  516. url_len = 0;
  517. pos = os_strchr(pos, ' ');
  518. if (pos) {
  519. pos++;
  520. url_len = os_strlen(pos);
  521. }
  522. req = wpabuf_alloc(4 + url_len);
  523. if (req == NULL)
  524. return -1;
  525. wpabuf_put_u8(req, code);
  526. wpabuf_put_le16(req, reauth_delay);
  527. wpabuf_put_u8(req, url_len);
  528. if (pos)
  529. wpabuf_put_data(req, pos, url_len);
  530. wpa_printf(MSG_DEBUG, "HS 2.0: Send WNM-Notification to " MACSTR
  531. " to indicate imminent deauthentication (code=%d "
  532. "reauth_delay=%d)", MAC2STR(addr), code, reauth_delay);
  533. ret = hs20_send_wnm_notification_deauth_req(hapd, addr, req);
  534. wpabuf_free(req);
  535. return ret;
  536. }
  537. #endif /* CONFIG_HS20 */
  538. #ifdef CONFIG_INTERWORKING
  539. static int hostapd_ctrl_iface_set_qos_map_set(struct hostapd_data *hapd,
  540. const char *cmd)
  541. {
  542. u8 qos_map_set[16 + 2 * 21], count = 0;
  543. const char *pos = cmd;
  544. int val, ret;
  545. for (;;) {
  546. if (count == sizeof(qos_map_set)) {
  547. wpa_printf(MSG_ERROR, "Too many qos_map_set parameters");
  548. return -1;
  549. }
  550. val = atoi(pos);
  551. if (val < 0 || val > 255) {
  552. wpa_printf(MSG_INFO, "Invalid QoS Map Set");
  553. return -1;
  554. }
  555. qos_map_set[count++] = val;
  556. pos = os_strchr(pos, ',');
  557. if (!pos)
  558. break;
  559. pos++;
  560. }
  561. if (count < 16 || count & 1) {
  562. wpa_printf(MSG_INFO, "Invalid QoS Map Set");
  563. return -1;
  564. }
  565. ret = hostapd_drv_set_qos_map(hapd, qos_map_set, count);
  566. if (ret) {
  567. wpa_printf(MSG_INFO, "Failed to set QoS Map Set");
  568. return -1;
  569. }
  570. os_memcpy(hapd->conf->qos_map_set, qos_map_set, count);
  571. hapd->conf->qos_map_set_len = count;
  572. return 0;
  573. }
  574. static int hostapd_ctrl_iface_send_qos_map_conf(struct hostapd_data *hapd,
  575. const char *cmd)
  576. {
  577. u8 addr[ETH_ALEN];
  578. struct sta_info *sta;
  579. struct wpabuf *buf;
  580. u8 *qos_map_set = hapd->conf->qos_map_set;
  581. u8 qos_map_set_len = hapd->conf->qos_map_set_len;
  582. int ret;
  583. if (!qos_map_set_len) {
  584. wpa_printf(MSG_INFO, "QoS Map Set is not set");
  585. return -1;
  586. }
  587. if (hwaddr_aton(cmd, addr))
  588. return -1;
  589. sta = ap_get_sta(hapd, addr);
  590. if (sta == NULL) {
  591. wpa_printf(MSG_DEBUG, "Station " MACSTR " not found "
  592. "for QoS Map Configuration message",
  593. MAC2STR(addr));
  594. return -1;
  595. }
  596. if (!sta->qos_map_enabled) {
  597. wpa_printf(MSG_DEBUG, "Station " MACSTR " did not indicate "
  598. "support for QoS Map", MAC2STR(addr));
  599. return -1;
  600. }
  601. buf = wpabuf_alloc(2 + 2 + qos_map_set_len);
  602. if (buf == NULL)
  603. return -1;
  604. wpabuf_put_u8(buf, WLAN_ACTION_QOS);
  605. wpabuf_put_u8(buf, QOS_QOS_MAP_CONFIG);
  606. /* QoS Map Set Element */
  607. wpabuf_put_u8(buf, WLAN_EID_QOS_MAP_SET);
  608. wpabuf_put_u8(buf, qos_map_set_len);
  609. wpabuf_put_data(buf, qos_map_set, qos_map_set_len);
  610. ret = hostapd_drv_send_action(hapd, hapd->iface->freq, 0, addr,
  611. wpabuf_head(buf), wpabuf_len(buf));
  612. wpabuf_free(buf);
  613. return ret;
  614. }
  615. #endif /* CONFIG_INTERWORKING */
  616. #ifdef CONFIG_WNM
  617. static int hostapd_ctrl_iface_disassoc_imminent(struct hostapd_data *hapd,
  618. const char *cmd)
  619. {
  620. u8 addr[ETH_ALEN];
  621. int disassoc_timer;
  622. struct sta_info *sta;
  623. if (hwaddr_aton(cmd, addr))
  624. return -1;
  625. if (cmd[17] != ' ')
  626. return -1;
  627. disassoc_timer = atoi(cmd + 17);
  628. sta = ap_get_sta(hapd, addr);
  629. if (sta == NULL) {
  630. wpa_printf(MSG_DEBUG, "Station " MACSTR
  631. " not found for disassociation imminent message",
  632. MAC2STR(addr));
  633. return -1;
  634. }
  635. return wnm_send_disassoc_imminent(hapd, sta, disassoc_timer);
  636. }
  637. static int hostapd_ctrl_iface_ess_disassoc(struct hostapd_data *hapd,
  638. const char *cmd)
  639. {
  640. u8 addr[ETH_ALEN];
  641. const char *url, *timerstr;
  642. int disassoc_timer;
  643. struct sta_info *sta;
  644. if (hwaddr_aton(cmd, addr))
  645. return -1;
  646. sta = ap_get_sta(hapd, addr);
  647. if (sta == NULL) {
  648. wpa_printf(MSG_DEBUG, "Station " MACSTR
  649. " not found for ESS disassociation imminent message",
  650. MAC2STR(addr));
  651. return -1;
  652. }
  653. timerstr = cmd + 17;
  654. if (*timerstr != ' ')
  655. return -1;
  656. timerstr++;
  657. disassoc_timer = atoi(timerstr);
  658. if (disassoc_timer < 0 || disassoc_timer > 65535)
  659. return -1;
  660. url = os_strchr(timerstr, ' ');
  661. if (url == NULL)
  662. return -1;
  663. url++;
  664. return wnm_send_ess_disassoc_imminent(hapd, sta, url, disassoc_timer);
  665. }
  666. static int hostapd_ctrl_iface_bss_tm_req(struct hostapd_data *hapd,
  667. const char *cmd)
  668. {
  669. u8 addr[ETH_ALEN];
  670. const char *pos, *end;
  671. int disassoc_timer = 0;
  672. struct sta_info *sta;
  673. u8 req_mode = 0, valid_int = 0x01;
  674. u8 bss_term_dur[12];
  675. char *url = NULL;
  676. int ret;
  677. u8 nei_rep[1000];
  678. u8 *nei_pos = nei_rep;
  679. u8 mbo[10];
  680. size_t mbo_len = 0;
  681. if (hwaddr_aton(cmd, addr)) {
  682. wpa_printf(MSG_DEBUG, "Invalid STA MAC address");
  683. return -1;
  684. }
  685. sta = ap_get_sta(hapd, addr);
  686. if (sta == NULL) {
  687. wpa_printf(MSG_DEBUG, "Station " MACSTR
  688. " not found for BSS TM Request message",
  689. MAC2STR(addr));
  690. return -1;
  691. }
  692. pos = os_strstr(cmd, " disassoc_timer=");
  693. if (pos) {
  694. pos += 16;
  695. disassoc_timer = atoi(pos);
  696. if (disassoc_timer < 0 || disassoc_timer > 65535) {
  697. wpa_printf(MSG_DEBUG, "Invalid disassoc_timer");
  698. return -1;
  699. }
  700. }
  701. pos = os_strstr(cmd, " valid_int=");
  702. if (pos) {
  703. pos += 11;
  704. valid_int = atoi(pos);
  705. }
  706. pos = os_strstr(cmd, " bss_term=");
  707. if (pos) {
  708. pos += 10;
  709. req_mode |= WNM_BSS_TM_REQ_BSS_TERMINATION_INCLUDED;
  710. /* TODO: TSF configurable/learnable */
  711. bss_term_dur[0] = 4; /* Subelement ID */
  712. bss_term_dur[1] = 10; /* Length */
  713. os_memset(bss_term_dur, 2, 8);
  714. end = os_strchr(pos, ',');
  715. if (end == NULL) {
  716. wpa_printf(MSG_DEBUG, "Invalid bss_term data");
  717. return -1;
  718. }
  719. end++;
  720. WPA_PUT_LE16(&bss_term_dur[10], atoi(end));
  721. }
  722. /*
  723. * BSS Transition Candidate List Entries - Neighbor Report elements
  724. * neighbor=<BSSID>,<BSSID Information>,<Operating Class>,
  725. * <Channel Number>,<PHY Type>[,<hexdump of Optional Subelements>]
  726. */
  727. pos = cmd;
  728. while (pos) {
  729. u8 *nei_start;
  730. long int val;
  731. char *endptr, *tmp;
  732. pos = os_strstr(pos, " neighbor=");
  733. if (!pos)
  734. break;
  735. if (nei_pos + 15 > nei_rep + sizeof(nei_rep)) {
  736. wpa_printf(MSG_DEBUG,
  737. "Not enough room for additional neighbor");
  738. return -1;
  739. }
  740. pos += 10;
  741. nei_start = nei_pos;
  742. *nei_pos++ = WLAN_EID_NEIGHBOR_REPORT;
  743. nei_pos++; /* length to be filled in */
  744. if (hwaddr_aton(pos, nei_pos)) {
  745. wpa_printf(MSG_DEBUG, "Invalid BSSID");
  746. return -1;
  747. }
  748. nei_pos += ETH_ALEN;
  749. pos += 17;
  750. if (*pos != ',') {
  751. wpa_printf(MSG_DEBUG, "Missing BSSID Information");
  752. return -1;
  753. }
  754. pos++;
  755. val = strtol(pos, &endptr, 0);
  756. WPA_PUT_LE32(nei_pos, val);
  757. nei_pos += 4;
  758. if (*endptr != ',') {
  759. wpa_printf(MSG_DEBUG, "Missing Operating Class");
  760. return -1;
  761. }
  762. pos = endptr + 1;
  763. *nei_pos++ = atoi(pos); /* Operating Class */
  764. pos = os_strchr(pos, ',');
  765. if (pos == NULL) {
  766. wpa_printf(MSG_DEBUG, "Missing Channel Number");
  767. return -1;
  768. }
  769. pos++;
  770. *nei_pos++ = atoi(pos); /* Channel Number */
  771. pos = os_strchr(pos, ',');
  772. if (pos == NULL) {
  773. wpa_printf(MSG_DEBUG, "Missing PHY Type");
  774. return -1;
  775. }
  776. pos++;
  777. *nei_pos++ = atoi(pos); /* PHY Type */
  778. end = os_strchr(pos, ' ');
  779. tmp = os_strchr(pos, ',');
  780. if (tmp && (!end || tmp < end)) {
  781. /* Optional Subelements (hexdump) */
  782. size_t len;
  783. pos = tmp + 1;
  784. end = os_strchr(pos, ' ');
  785. if (end)
  786. len = end - pos;
  787. else
  788. len = os_strlen(pos);
  789. if (nei_pos + len / 2 > nei_rep + sizeof(nei_rep)) {
  790. wpa_printf(MSG_DEBUG,
  791. "Not enough room for neighbor subelements");
  792. return -1;
  793. }
  794. if (len & 0x01 ||
  795. hexstr2bin(pos, nei_pos, len / 2) < 0) {
  796. wpa_printf(MSG_DEBUG,
  797. "Invalid neighbor subelement info");
  798. return -1;
  799. }
  800. nei_pos += len / 2;
  801. pos = end;
  802. }
  803. nei_start[1] = nei_pos - nei_start - 2;
  804. }
  805. pos = os_strstr(cmd, " url=");
  806. if (pos) {
  807. size_t len;
  808. pos += 5;
  809. end = os_strchr(pos, ' ');
  810. if (end)
  811. len = end - pos;
  812. else
  813. len = os_strlen(pos);
  814. url = os_malloc(len + 1);
  815. if (url == NULL)
  816. return -1;
  817. os_memcpy(url, pos, len);
  818. url[len] = '\0';
  819. req_mode |= WNM_BSS_TM_REQ_ESS_DISASSOC_IMMINENT;
  820. }
  821. if (os_strstr(cmd, " pref=1"))
  822. req_mode |= WNM_BSS_TM_REQ_PREF_CAND_LIST_INCLUDED;
  823. if (os_strstr(cmd, " abridged=1"))
  824. req_mode |= WNM_BSS_TM_REQ_ABRIDGED;
  825. if (os_strstr(cmd, " disassoc_imminent=1"))
  826. req_mode |= WNM_BSS_TM_REQ_DISASSOC_IMMINENT;
  827. #ifdef CONFIG_MBO
  828. pos = os_strstr(cmd, "mbo=");
  829. if (pos) {
  830. unsigned int mbo_reason, cell_pref, reassoc_delay;
  831. u8 *mbo_pos = mbo;
  832. ret = sscanf(pos, "mbo=%u:%u:%u", &mbo_reason,
  833. &reassoc_delay, &cell_pref);
  834. if (ret != 3) {
  835. wpa_printf(MSG_DEBUG,
  836. "MBO requires three arguments: mbo=<reason>:<reassoc_delay>:<cell_pref>");
  837. return -1;
  838. }
  839. if (mbo_reason > MBO_TRANSITION_REASON_PREMIUM_AP) {
  840. wpa_printf(MSG_DEBUG,
  841. "Invalid MBO transition reason code %u",
  842. mbo_reason);
  843. return -1;
  844. }
  845. /* Valid values for Cellular preference are: 0, 1, 255 */
  846. if (cell_pref != 0 && cell_pref != 1 && cell_pref != 255) {
  847. wpa_printf(MSG_DEBUG,
  848. "Invalid MBO cellular capability %u",
  849. cell_pref);
  850. return -1;
  851. }
  852. if (reassoc_delay > 65535 ||
  853. (reassoc_delay &&
  854. !(req_mode & WNM_BSS_TM_REQ_DISASSOC_IMMINENT))) {
  855. wpa_printf(MSG_DEBUG,
  856. "MBO: Assoc retry delay is only valid in disassoc imminent mode");
  857. return -1;
  858. }
  859. *mbo_pos++ = MBO_ATTR_ID_TRANSITION_REASON;
  860. *mbo_pos++ = 1;
  861. *mbo_pos++ = mbo_reason;
  862. *mbo_pos++ = MBO_ATTR_ID_CELL_DATA_PREF;
  863. *mbo_pos++ = 1;
  864. *mbo_pos++ = cell_pref;
  865. if (reassoc_delay) {
  866. *mbo_pos++ = MBO_ATTR_ID_ASSOC_RETRY_DELAY;
  867. *mbo_pos++ = 2;
  868. WPA_PUT_LE16(mbo_pos, reassoc_delay);
  869. mbo_pos += 2;
  870. }
  871. mbo_len = mbo_pos - mbo;
  872. }
  873. #endif /* CONFIG_MBO */
  874. ret = wnm_send_bss_tm_req(hapd, sta, req_mode, disassoc_timer,
  875. valid_int, bss_term_dur, url,
  876. nei_pos > nei_rep ? nei_rep : NULL,
  877. nei_pos - nei_rep, mbo_len ? mbo : NULL,
  878. mbo_len);
  879. os_free(url);
  880. return ret;
  881. }
  882. #endif /* CONFIG_WNM */
  883. static int hostapd_ctrl_iface_get_key_mgmt(struct hostapd_data *hapd,
  884. char *buf, size_t buflen)
  885. {
  886. int ret = 0;
  887. char *pos, *end;
  888. pos = buf;
  889. end = buf + buflen;
  890. WPA_ASSERT(hapd->conf->wpa_key_mgmt);
  891. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK) {
  892. ret = os_snprintf(pos, end - pos, "WPA-PSK ");
  893. if (os_snprintf_error(end - pos, ret))
  894. return pos - buf;
  895. pos += ret;
  896. }
  897. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
  898. ret = os_snprintf(pos, end - pos, "WPA-EAP ");
  899. if (os_snprintf_error(end - pos, ret))
  900. return pos - buf;
  901. pos += ret;
  902. }
  903. #ifdef CONFIG_IEEE80211R
  904. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_PSK) {
  905. ret = os_snprintf(pos, end - pos, "FT-PSK ");
  906. if (os_snprintf_error(end - pos, ret))
  907. return pos - buf;
  908. pos += ret;
  909. }
  910. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
  911. ret = os_snprintf(pos, end - pos, "FT-EAP ");
  912. if (os_snprintf_error(end - pos, ret))
  913. return pos - buf;
  914. pos += ret;
  915. }
  916. #ifdef CONFIG_SAE
  917. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_SAE) {
  918. ret = os_snprintf(pos, end - pos, "FT-SAE ");
  919. if (os_snprintf_error(end - pos, ret))
  920. return pos - buf;
  921. pos += ret;
  922. }
  923. #endif /* CONFIG_SAE */
  924. #endif /* CONFIG_IEEE80211R */
  925. #ifdef CONFIG_IEEE80211W
  926. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
  927. ret = os_snprintf(pos, end - pos, "WPA-PSK-SHA256 ");
  928. if (os_snprintf_error(end - pos, ret))
  929. return pos - buf;
  930. pos += ret;
  931. }
  932. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
  933. ret = os_snprintf(pos, end - pos, "WPA-EAP-SHA256 ");
  934. if (os_snprintf_error(end - pos, ret))
  935. return pos - buf;
  936. pos += ret;
  937. }
  938. #endif /* CONFIG_IEEE80211W */
  939. #ifdef CONFIG_SAE
  940. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_SAE) {
  941. ret = os_snprintf(pos, end - pos, "SAE ");
  942. if (os_snprintf_error(end - pos, ret))
  943. return pos - buf;
  944. pos += ret;
  945. }
  946. #endif /* CONFIG_SAE */
  947. if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B) {
  948. ret = os_snprintf(pos, end - pos, "WPA-EAP-SUITE-B ");
  949. if (os_snprintf_error(end - pos, ret))
  950. return pos - buf;
  951. pos += ret;
  952. }
  953. if (hapd->conf->wpa_key_mgmt &
  954. WPA_KEY_MGMT_IEEE8021X_SUITE_B_192) {
  955. ret = os_snprintf(pos, end - pos,
  956. "WPA-EAP-SUITE-B-192 ");
  957. if (os_snprintf_error(end - pos, ret))
  958. return pos - buf;
  959. pos += ret;
  960. }
  961. if (pos > buf && *(pos - 1) == ' ') {
  962. *(pos - 1) = '\0';
  963. pos--;
  964. }
  965. return pos - buf;
  966. }
  967. static int hostapd_ctrl_iface_get_config(struct hostapd_data *hapd,
  968. char *buf, size_t buflen)
  969. {
  970. int ret;
  971. char *pos, *end;
  972. pos = buf;
  973. end = buf + buflen;
  974. ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n"
  975. "ssid=%s\n",
  976. MAC2STR(hapd->own_addr),
  977. wpa_ssid_txt(hapd->conf->ssid.ssid,
  978. hapd->conf->ssid.ssid_len));
  979. if (os_snprintf_error(end - pos, ret))
  980. return pos - buf;
  981. pos += ret;
  982. #ifdef CONFIG_WPS
  983. ret = os_snprintf(pos, end - pos, "wps_state=%s\n",
  984. hapd->conf->wps_state == 0 ? "disabled" :
  985. (hapd->conf->wps_state == 1 ? "not configured" :
  986. "configured"));
  987. if (os_snprintf_error(end - pos, ret))
  988. return pos - buf;
  989. pos += ret;
  990. if (hapd->conf->wps_state && hapd->conf->wpa &&
  991. hapd->conf->ssid.wpa_passphrase) {
  992. ret = os_snprintf(pos, end - pos, "passphrase=%s\n",
  993. hapd->conf->ssid.wpa_passphrase);
  994. if (os_snprintf_error(end - pos, ret))
  995. return pos - buf;
  996. pos += ret;
  997. }
  998. if (hapd->conf->wps_state && hapd->conf->wpa &&
  999. hapd->conf->ssid.wpa_psk &&
  1000. hapd->conf->ssid.wpa_psk->group) {
  1001. char hex[PMK_LEN * 2 + 1];
  1002. wpa_snprintf_hex(hex, sizeof(hex),
  1003. hapd->conf->ssid.wpa_psk->psk, PMK_LEN);
  1004. ret = os_snprintf(pos, end - pos, "psk=%s\n", hex);
  1005. if (os_snprintf_error(end - pos, ret))
  1006. return pos - buf;
  1007. pos += ret;
  1008. }
  1009. #endif /* CONFIG_WPS */
  1010. if (hapd->conf->wpa) {
  1011. ret = os_snprintf(pos, end - pos, "wpa=%d\n", hapd->conf->wpa);
  1012. if (os_snprintf_error(end - pos, ret))
  1013. return pos - buf;
  1014. pos += ret;
  1015. }
  1016. if (hapd->conf->wpa && hapd->conf->wpa_key_mgmt) {
  1017. ret = os_snprintf(pos, end - pos, "key_mgmt=");
  1018. if (os_snprintf_error(end - pos, ret))
  1019. return pos - buf;
  1020. pos += ret;
  1021. pos += hostapd_ctrl_iface_get_key_mgmt(hapd, pos, end - pos);
  1022. ret = os_snprintf(pos, end - pos, "\n");
  1023. if (os_snprintf_error(end - pos, ret))
  1024. return pos - buf;
  1025. pos += ret;
  1026. }
  1027. if (hapd->conf->wpa) {
  1028. ret = os_snprintf(pos, end - pos, "group_cipher=%s\n",
  1029. wpa_cipher_txt(hapd->conf->wpa_group));
  1030. if (os_snprintf_error(end - pos, ret))
  1031. return pos - buf;
  1032. pos += ret;
  1033. }
  1034. if ((hapd->conf->wpa & WPA_PROTO_RSN) && hapd->conf->rsn_pairwise) {
  1035. ret = os_snprintf(pos, end - pos, "rsn_pairwise_cipher=");
  1036. if (os_snprintf_error(end - pos, ret))
  1037. return pos - buf;
  1038. pos += ret;
  1039. ret = wpa_write_ciphers(pos, end, hapd->conf->rsn_pairwise,
  1040. " ");
  1041. if (ret < 0)
  1042. return pos - buf;
  1043. pos += ret;
  1044. ret = os_snprintf(pos, end - pos, "\n");
  1045. if (os_snprintf_error(end - pos, ret))
  1046. return pos - buf;
  1047. pos += ret;
  1048. }
  1049. if ((hapd->conf->wpa & WPA_PROTO_WPA) && hapd->conf->wpa_pairwise) {
  1050. ret = os_snprintf(pos, end - pos, "wpa_pairwise_cipher=");
  1051. if (os_snprintf_error(end - pos, ret))
  1052. return pos - buf;
  1053. pos += ret;
  1054. ret = wpa_write_ciphers(pos, end, hapd->conf->wpa_pairwise,
  1055. " ");
  1056. if (ret < 0)
  1057. return pos - buf;
  1058. pos += ret;
  1059. ret = os_snprintf(pos, end - pos, "\n");
  1060. if (os_snprintf_error(end - pos, ret))
  1061. return pos - buf;
  1062. pos += ret;
  1063. }
  1064. return pos - buf;
  1065. }
  1066. static int hostapd_ctrl_iface_set(struct hostapd_data *hapd, char *cmd)
  1067. {
  1068. char *value;
  1069. int ret = 0;
  1070. value = os_strchr(cmd, ' ');
  1071. if (value == NULL)
  1072. return -1;
  1073. *value++ = '\0';
  1074. wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
  1075. if (0) {
  1076. #ifdef CONFIG_WPS_TESTING
  1077. } else if (os_strcasecmp(cmd, "wps_version_number") == 0) {
  1078. long int val;
  1079. val = strtol(value, NULL, 0);
  1080. if (val < 0 || val > 0xff) {
  1081. ret = -1;
  1082. wpa_printf(MSG_DEBUG, "WPS: Invalid "
  1083. "wps_version_number %ld", val);
  1084. } else {
  1085. wps_version_number = val;
  1086. wpa_printf(MSG_DEBUG, "WPS: Testing - force WPS "
  1087. "version %u.%u",
  1088. (wps_version_number & 0xf0) >> 4,
  1089. wps_version_number & 0x0f);
  1090. hostapd_wps_update_ie(hapd);
  1091. }
  1092. } else if (os_strcasecmp(cmd, "wps_testing_dummy_cred") == 0) {
  1093. wps_testing_dummy_cred = atoi(value);
  1094. wpa_printf(MSG_DEBUG, "WPS: Testing - dummy_cred=%d",
  1095. wps_testing_dummy_cred);
  1096. } else if (os_strcasecmp(cmd, "wps_corrupt_pkhash") == 0) {
  1097. wps_corrupt_pkhash = atoi(value);
  1098. wpa_printf(MSG_DEBUG, "WPS: Testing - wps_corrupt_pkhash=%d",
  1099. wps_corrupt_pkhash);
  1100. #endif /* CONFIG_WPS_TESTING */
  1101. #ifdef CONFIG_INTERWORKING
  1102. } else if (os_strcasecmp(cmd, "gas_frag_limit") == 0) {
  1103. int val = atoi(value);
  1104. if (val <= 0)
  1105. ret = -1;
  1106. else
  1107. hapd->gas_frag_limit = val;
  1108. #endif /* CONFIG_INTERWORKING */
  1109. #ifdef CONFIG_TESTING_OPTIONS
  1110. } else if (os_strcasecmp(cmd, "ext_mgmt_frame_handling") == 0) {
  1111. hapd->ext_mgmt_frame_handling = atoi(value);
  1112. } else if (os_strcasecmp(cmd, "ext_eapol_frame_io") == 0) {
  1113. hapd->ext_eapol_frame_io = atoi(value);
  1114. #endif /* CONFIG_TESTING_OPTIONS */
  1115. #ifdef CONFIG_MBO
  1116. } else if (os_strcasecmp(cmd, "mbo_assoc_disallow") == 0) {
  1117. int val;
  1118. if (!hapd->conf->mbo_enabled)
  1119. return -1;
  1120. val = atoi(value);
  1121. if (val < 0 || val > 1)
  1122. return -1;
  1123. hapd->mbo_assoc_disallow = val;
  1124. ieee802_11_update_beacons(hapd->iface);
  1125. /*
  1126. * TODO: Need to configure drivers that do AP MLME offload with
  1127. * disallowing station logic.
  1128. */
  1129. #endif /* CONFIG_MBO */
  1130. } else {
  1131. struct sta_info *sta;
  1132. struct vlan_description vlan_id;
  1133. ret = hostapd_set_iface(hapd->iconf, hapd->conf, cmd, value);
  1134. if (ret)
  1135. return ret;
  1136. if (os_strcasecmp(cmd, "deny_mac_file") == 0) {
  1137. for (sta = hapd->sta_list; sta; sta = sta->next) {
  1138. if (hostapd_maclist_found(
  1139. hapd->conf->deny_mac,
  1140. hapd->conf->num_deny_mac, sta->addr,
  1141. &vlan_id) &&
  1142. (!vlan_id.notempty ||
  1143. !vlan_compare(&vlan_id, sta->vlan_desc)))
  1144. ap_sta_disconnect(
  1145. hapd, sta, sta->addr,
  1146. WLAN_REASON_UNSPECIFIED);
  1147. }
  1148. } else if (hapd->conf->macaddr_acl == DENY_UNLESS_ACCEPTED &&
  1149. os_strcasecmp(cmd, "accept_mac_file") == 0) {
  1150. for (sta = hapd->sta_list; sta; sta = sta->next) {
  1151. if (!hostapd_maclist_found(
  1152. hapd->conf->accept_mac,
  1153. hapd->conf->num_accept_mac,
  1154. sta->addr, &vlan_id) ||
  1155. (vlan_id.notempty &&
  1156. vlan_compare(&vlan_id, sta->vlan_desc)))
  1157. ap_sta_disconnect(
  1158. hapd, sta, sta->addr,
  1159. WLAN_REASON_UNSPECIFIED);
  1160. }
  1161. }
  1162. }
  1163. return ret;
  1164. }
  1165. static int hostapd_ctrl_iface_get(struct hostapd_data *hapd, char *cmd,
  1166. char *buf, size_t buflen)
  1167. {
  1168. int res;
  1169. wpa_printf(MSG_DEBUG, "CTRL_IFACE GET '%s'", cmd);
  1170. if (os_strcmp(cmd, "version") == 0) {
  1171. res = os_snprintf(buf, buflen, "%s", VERSION_STR);
  1172. if (os_snprintf_error(buflen, res))
  1173. return -1;
  1174. return res;
  1175. } else if (os_strcmp(cmd, "tls_library") == 0) {
  1176. res = tls_get_library_version(buf, buflen);
  1177. if (os_snprintf_error(buflen, res))
  1178. return -1;
  1179. return res;
  1180. }
  1181. return -1;
  1182. }
  1183. static int hostapd_ctrl_iface_enable(struct hostapd_iface *iface)
  1184. {
  1185. if (hostapd_enable_iface(iface) < 0) {
  1186. wpa_printf(MSG_ERROR, "Enabling of interface failed");
  1187. return -1;
  1188. }
  1189. return 0;
  1190. }
  1191. static int hostapd_ctrl_iface_reload(struct hostapd_iface *iface)
  1192. {
  1193. if (hostapd_reload_iface(iface) < 0) {
  1194. wpa_printf(MSG_ERROR, "Reloading of interface failed");
  1195. return -1;
  1196. }
  1197. return 0;
  1198. }
  1199. static int hostapd_ctrl_iface_disable(struct hostapd_iface *iface)
  1200. {
  1201. if (hostapd_disable_iface(iface) < 0) {
  1202. wpa_printf(MSG_ERROR, "Disabling of interface failed");
  1203. return -1;
  1204. }
  1205. return 0;
  1206. }
  1207. #ifdef CONFIG_TESTING_OPTIONS
  1208. static int hostapd_ctrl_iface_radar(struct hostapd_data *hapd, char *cmd)
  1209. {
  1210. union wpa_event_data data;
  1211. char *pos, *param;
  1212. enum wpa_event_type event;
  1213. wpa_printf(MSG_DEBUG, "RADAR TEST: %s", cmd);
  1214. os_memset(&data, 0, sizeof(data));
  1215. param = os_strchr(cmd, ' ');
  1216. if (param == NULL)
  1217. return -1;
  1218. *param++ = '\0';
  1219. if (os_strcmp(cmd, "DETECTED") == 0)
  1220. event = EVENT_DFS_RADAR_DETECTED;
  1221. else if (os_strcmp(cmd, "CAC-FINISHED") == 0)
  1222. event = EVENT_DFS_CAC_FINISHED;
  1223. else if (os_strcmp(cmd, "CAC-ABORTED") == 0)
  1224. event = EVENT_DFS_CAC_ABORTED;
  1225. else if (os_strcmp(cmd, "NOP-FINISHED") == 0)
  1226. event = EVENT_DFS_NOP_FINISHED;
  1227. else {
  1228. wpa_printf(MSG_DEBUG, "Unsupported RADAR test command: %s",
  1229. cmd);
  1230. return -1;
  1231. }
  1232. pos = os_strstr(param, "freq=");
  1233. if (pos)
  1234. data.dfs_event.freq = atoi(pos + 5);
  1235. pos = os_strstr(param, "ht_enabled=1");
  1236. if (pos)
  1237. data.dfs_event.ht_enabled = 1;
  1238. pos = os_strstr(param, "chan_offset=");
  1239. if (pos)
  1240. data.dfs_event.chan_offset = atoi(pos + 12);
  1241. pos = os_strstr(param, "chan_width=");
  1242. if (pos)
  1243. data.dfs_event.chan_width = atoi(pos + 11);
  1244. pos = os_strstr(param, "cf1=");
  1245. if (pos)
  1246. data.dfs_event.cf1 = atoi(pos + 4);
  1247. pos = os_strstr(param, "cf2=");
  1248. if (pos)
  1249. data.dfs_event.cf2 = atoi(pos + 4);
  1250. wpa_supplicant_event(hapd, event, &data);
  1251. return 0;
  1252. }
  1253. static int hostapd_ctrl_iface_mgmt_tx(struct hostapd_data *hapd, char *cmd)
  1254. {
  1255. size_t len;
  1256. u8 *buf;
  1257. int res;
  1258. wpa_printf(MSG_DEBUG, "External MGMT TX: %s", cmd);
  1259. len = os_strlen(cmd);
  1260. if (len & 1)
  1261. return -1;
  1262. len /= 2;
  1263. buf = os_malloc(len);
  1264. if (buf == NULL)
  1265. return -1;
  1266. if (hexstr2bin(cmd, buf, len) < 0) {
  1267. os_free(buf);
  1268. return -1;
  1269. }
  1270. res = hostapd_drv_send_mlme(hapd, buf, len, 0);
  1271. os_free(buf);
  1272. return res;
  1273. }
  1274. static int hostapd_ctrl_iface_eapol_rx(struct hostapd_data *hapd, char *cmd)
  1275. {
  1276. char *pos;
  1277. u8 src[ETH_ALEN], *buf;
  1278. int used;
  1279. size_t len;
  1280. wpa_printf(MSG_DEBUG, "External EAPOL RX: %s", cmd);
  1281. pos = cmd;
  1282. used = hwaddr_aton2(pos, src);
  1283. if (used < 0)
  1284. return -1;
  1285. pos += used;
  1286. while (*pos == ' ')
  1287. pos++;
  1288. len = os_strlen(pos);
  1289. if (len & 1)
  1290. return -1;
  1291. len /= 2;
  1292. buf = os_malloc(len);
  1293. if (buf == NULL)
  1294. return -1;
  1295. if (hexstr2bin(pos, buf, len) < 0) {
  1296. os_free(buf);
  1297. return -1;
  1298. }
  1299. ieee802_1x_receive(hapd, src, buf, len);
  1300. os_free(buf);
  1301. return 0;
  1302. }
  1303. static u16 ipv4_hdr_checksum(const void *buf, size_t len)
  1304. {
  1305. size_t i;
  1306. u32 sum = 0;
  1307. const u16 *pos = buf;
  1308. for (i = 0; i < len / 2; i++)
  1309. sum += *pos++;
  1310. while (sum >> 16)
  1311. sum = (sum & 0xffff) + (sum >> 16);
  1312. return sum ^ 0xffff;
  1313. }
  1314. #define HWSIM_PACKETLEN 1500
  1315. #define HWSIM_IP_LEN (HWSIM_PACKETLEN - sizeof(struct ether_header))
  1316. static void hostapd_data_test_rx(void *ctx, const u8 *src_addr, const u8 *buf,
  1317. size_t len)
  1318. {
  1319. struct hostapd_data *hapd = ctx;
  1320. const struct ether_header *eth;
  1321. struct iphdr ip;
  1322. const u8 *pos;
  1323. unsigned int i;
  1324. if (len != HWSIM_PACKETLEN)
  1325. return;
  1326. eth = (const struct ether_header *) buf;
  1327. os_memcpy(&ip, eth + 1, sizeof(ip));
  1328. pos = &buf[sizeof(*eth) + sizeof(ip)];
  1329. if (ip.ihl != 5 || ip.version != 4 ||
  1330. ntohs(ip.tot_len) != HWSIM_IP_LEN)
  1331. return;
  1332. for (i = 0; i < HWSIM_IP_LEN - sizeof(ip); i++) {
  1333. if (*pos != (u8) i)
  1334. return;
  1335. pos++;
  1336. }
  1337. wpa_msg(hapd->msg_ctx, MSG_INFO, "DATA-TEST-RX " MACSTR " " MACSTR,
  1338. MAC2STR(eth->ether_dhost), MAC2STR(eth->ether_shost));
  1339. }
  1340. static int hostapd_ctrl_iface_data_test_config(struct hostapd_data *hapd,
  1341. char *cmd)
  1342. {
  1343. int enabled = atoi(cmd);
  1344. char *pos;
  1345. const char *ifname;
  1346. if (!enabled) {
  1347. if (hapd->l2_test) {
  1348. l2_packet_deinit(hapd->l2_test);
  1349. hapd->l2_test = NULL;
  1350. wpa_dbg(hapd->msg_ctx, MSG_DEBUG,
  1351. "test data: Disabled");
  1352. }
  1353. return 0;
  1354. }
  1355. if (hapd->l2_test)
  1356. return 0;
  1357. pos = os_strstr(cmd, " ifname=");
  1358. if (pos)
  1359. ifname = pos + 8;
  1360. else
  1361. ifname = hapd->conf->iface;
  1362. hapd->l2_test = l2_packet_init(ifname, hapd->own_addr,
  1363. ETHERTYPE_IP, hostapd_data_test_rx,
  1364. hapd, 1);
  1365. if (hapd->l2_test == NULL)
  1366. return -1;
  1367. wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "test data: Enabled");
  1368. return 0;
  1369. }
  1370. static int hostapd_ctrl_iface_data_test_tx(struct hostapd_data *hapd, char *cmd)
  1371. {
  1372. u8 dst[ETH_ALEN], src[ETH_ALEN];
  1373. char *pos;
  1374. int used;
  1375. long int val;
  1376. u8 tos;
  1377. u8 buf[2 + HWSIM_PACKETLEN];
  1378. struct ether_header *eth;
  1379. struct iphdr *ip;
  1380. u8 *dpos;
  1381. unsigned int i;
  1382. if (hapd->l2_test == NULL)
  1383. return -1;
  1384. /* format: <dst> <src> <tos> */
  1385. pos = cmd;
  1386. used = hwaddr_aton2(pos, dst);
  1387. if (used < 0)
  1388. return -1;
  1389. pos += used;
  1390. while (*pos == ' ')
  1391. pos++;
  1392. used = hwaddr_aton2(pos, src);
  1393. if (used < 0)
  1394. return -1;
  1395. pos += used;
  1396. val = strtol(pos, NULL, 0);
  1397. if (val < 0 || val > 0xff)
  1398. return -1;
  1399. tos = val;
  1400. eth = (struct ether_header *) &buf[2];
  1401. os_memcpy(eth->ether_dhost, dst, ETH_ALEN);
  1402. os_memcpy(eth->ether_shost, src, ETH_ALEN);
  1403. eth->ether_type = htons(ETHERTYPE_IP);
  1404. ip = (struct iphdr *) (eth + 1);
  1405. os_memset(ip, 0, sizeof(*ip));
  1406. ip->ihl = 5;
  1407. ip->version = 4;
  1408. ip->ttl = 64;
  1409. ip->tos = tos;
  1410. ip->tot_len = htons(HWSIM_IP_LEN);
  1411. ip->protocol = 1;
  1412. ip->saddr = htonl(192U << 24 | 168 << 16 | 1 << 8 | 1);
  1413. ip->daddr = htonl(192U << 24 | 168 << 16 | 1 << 8 | 2);
  1414. ip->check = ipv4_hdr_checksum(ip, sizeof(*ip));
  1415. dpos = (u8 *) (ip + 1);
  1416. for (i = 0; i < HWSIM_IP_LEN - sizeof(*ip); i++)
  1417. *dpos++ = i;
  1418. if (l2_packet_send(hapd->l2_test, dst, ETHERTYPE_IP, &buf[2],
  1419. HWSIM_PACKETLEN) < 0)
  1420. return -1;
  1421. wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "test data: TX dst=" MACSTR
  1422. " src=" MACSTR " tos=0x%x", MAC2STR(dst), MAC2STR(src), tos);
  1423. return 0;
  1424. }
  1425. static int hostapd_ctrl_iface_data_test_frame(struct hostapd_data *hapd,
  1426. char *cmd)
  1427. {
  1428. u8 *buf;
  1429. struct ether_header *eth;
  1430. struct l2_packet_data *l2 = NULL;
  1431. size_t len;
  1432. u16 ethertype;
  1433. int res = -1;
  1434. const char *ifname = hapd->conf->iface;
  1435. if (os_strncmp(cmd, "ifname=", 7) == 0) {
  1436. cmd += 7;
  1437. ifname = cmd;
  1438. cmd = os_strchr(cmd, ' ');
  1439. if (cmd == NULL)
  1440. return -1;
  1441. *cmd++ = '\0';
  1442. }
  1443. len = os_strlen(cmd);
  1444. if (len & 1 || len < ETH_HLEN * 2)
  1445. return -1;
  1446. len /= 2;
  1447. buf = os_malloc(len);
  1448. if (buf == NULL)
  1449. return -1;
  1450. if (hexstr2bin(cmd, buf, len) < 0)
  1451. goto done;
  1452. eth = (struct ether_header *) buf;
  1453. ethertype = ntohs(eth->ether_type);
  1454. l2 = l2_packet_init(ifname, hapd->own_addr, ethertype,
  1455. hostapd_data_test_rx, hapd, 1);
  1456. if (l2 == NULL)
  1457. goto done;
  1458. res = l2_packet_send(l2, eth->ether_dhost, ethertype, buf, len);
  1459. wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "test data: TX frame res=%d", res);
  1460. done:
  1461. if (l2)
  1462. l2_packet_deinit(l2);
  1463. os_free(buf);
  1464. return res < 0 ? -1 : 0;
  1465. }
  1466. static int hostapd_ctrl_test_alloc_fail(struct hostapd_data *hapd, char *cmd)
  1467. {
  1468. #ifdef WPA_TRACE_BFD
  1469. char *pos;
  1470. wpa_trace_fail_after = atoi(cmd);
  1471. pos = os_strchr(cmd, ':');
  1472. if (pos) {
  1473. pos++;
  1474. os_strlcpy(wpa_trace_fail_func, pos,
  1475. sizeof(wpa_trace_fail_func));
  1476. } else {
  1477. wpa_trace_fail_after = 0;
  1478. }
  1479. return 0;
  1480. #else /* WPA_TRACE_BFD */
  1481. return -1;
  1482. #endif /* WPA_TRACE_BFD */
  1483. }
  1484. static int hostapd_ctrl_get_alloc_fail(struct hostapd_data *hapd,
  1485. char *buf, size_t buflen)
  1486. {
  1487. #ifdef WPA_TRACE_BFD
  1488. return os_snprintf(buf, buflen, "%u:%s", wpa_trace_fail_after,
  1489. wpa_trace_fail_func);
  1490. #else /* WPA_TRACE_BFD */
  1491. return -1;
  1492. #endif /* WPA_TRACE_BFD */
  1493. }
  1494. static int hostapd_ctrl_test_fail(struct hostapd_data *hapd, char *cmd)
  1495. {
  1496. #ifdef WPA_TRACE_BFD
  1497. char *pos;
  1498. wpa_trace_test_fail_after = atoi(cmd);
  1499. pos = os_strchr(cmd, ':');
  1500. if (pos) {
  1501. pos++;
  1502. os_strlcpy(wpa_trace_test_fail_func, pos,
  1503. sizeof(wpa_trace_test_fail_func));
  1504. } else {
  1505. wpa_trace_test_fail_after = 0;
  1506. }
  1507. return 0;
  1508. #else /* WPA_TRACE_BFD */
  1509. return -1;
  1510. #endif /* WPA_TRACE_BFD */
  1511. }
  1512. static int hostapd_ctrl_get_fail(struct hostapd_data *hapd,
  1513. char *buf, size_t buflen)
  1514. {
  1515. #ifdef WPA_TRACE_BFD
  1516. return os_snprintf(buf, buflen, "%u:%s", wpa_trace_test_fail_after,
  1517. wpa_trace_test_fail_func);
  1518. #else /* WPA_TRACE_BFD */
  1519. return -1;
  1520. #endif /* WPA_TRACE_BFD */
  1521. }
  1522. #endif /* CONFIG_TESTING_OPTIONS */
  1523. static int hostapd_ctrl_iface_chan_switch(struct hostapd_iface *iface,
  1524. char *pos)
  1525. {
  1526. #ifdef NEED_AP_MLME
  1527. struct csa_settings settings;
  1528. int ret;
  1529. unsigned int i;
  1530. ret = hostapd_parse_csa_settings(pos, &settings);
  1531. if (ret)
  1532. return ret;
  1533. for (i = 0; i < iface->num_bss; i++) {
  1534. ret = hostapd_switch_channel(iface->bss[i], &settings);
  1535. if (ret) {
  1536. /* FIX: What do we do if CSA fails in the middle of
  1537. * submitting multi-BSS CSA requests? */
  1538. return ret;
  1539. }
  1540. }
  1541. return 0;
  1542. #else /* NEED_AP_MLME */
  1543. return -1;
  1544. #endif /* NEED_AP_MLME */
  1545. }
  1546. static int hostapd_ctrl_iface_mib(struct hostapd_data *hapd, char *reply,
  1547. int reply_size, const char *param)
  1548. {
  1549. #ifdef RADIUS_SERVER
  1550. if (os_strcmp(param, "radius_server") == 0) {
  1551. return radius_server_get_mib(hapd->radius_srv, reply,
  1552. reply_size);
  1553. }
  1554. #endif /* RADIUS_SERVER */
  1555. return -1;
  1556. }
  1557. static int hostapd_ctrl_iface_vendor(struct hostapd_data *hapd, char *cmd,
  1558. char *buf, size_t buflen)
  1559. {
  1560. int ret;
  1561. char *pos;
  1562. u8 *data = NULL;
  1563. unsigned int vendor_id, subcmd;
  1564. struct wpabuf *reply;
  1565. size_t data_len = 0;
  1566. /* cmd: <vendor id> <subcommand id> [<hex formatted data>] */
  1567. vendor_id = strtoul(cmd, &pos, 16);
  1568. if (!isblank((unsigned char) *pos))
  1569. return -EINVAL;
  1570. subcmd = strtoul(pos, &pos, 10);
  1571. if (*pos != '\0') {
  1572. if (!isblank((unsigned char) *pos++))
  1573. return -EINVAL;
  1574. data_len = os_strlen(pos);
  1575. }
  1576. if (data_len) {
  1577. data_len /= 2;
  1578. data = os_malloc(data_len);
  1579. if (!data)
  1580. return -ENOBUFS;
  1581. if (hexstr2bin(pos, data, data_len)) {
  1582. wpa_printf(MSG_DEBUG,
  1583. "Vendor command: wrong parameter format");
  1584. os_free(data);
  1585. return -EINVAL;
  1586. }
  1587. }
  1588. reply = wpabuf_alloc((buflen - 1) / 2);
  1589. if (!reply) {
  1590. os_free(data);
  1591. return -ENOBUFS;
  1592. }
  1593. ret = hostapd_drv_vendor_cmd(hapd, vendor_id, subcmd, data, data_len,
  1594. reply);
  1595. if (ret == 0)
  1596. ret = wpa_snprintf_hex(buf, buflen, wpabuf_head_u8(reply),
  1597. wpabuf_len(reply));
  1598. wpabuf_free(reply);
  1599. os_free(data);
  1600. return ret;
  1601. }
  1602. static int hostapd_ctrl_iface_eapol_reauth(struct hostapd_data *hapd,
  1603. const char *cmd)
  1604. {
  1605. u8 addr[ETH_ALEN];
  1606. struct sta_info *sta;
  1607. if (hwaddr_aton(cmd, addr))
  1608. return -1;
  1609. sta = ap_get_sta(hapd, addr);
  1610. if (!sta || !sta->eapol_sm)
  1611. return -1;
  1612. eapol_auth_reauthenticate(sta->eapol_sm);
  1613. return 0;
  1614. }
  1615. static int hostapd_ctrl_iface_eapol_set(struct hostapd_data *hapd, char *cmd)
  1616. {
  1617. u8 addr[ETH_ALEN];
  1618. struct sta_info *sta;
  1619. char *pos = cmd, *param;
  1620. if (hwaddr_aton(pos, addr) || pos[17] != ' ')
  1621. return -1;
  1622. pos += 18;
  1623. param = pos;
  1624. pos = os_strchr(pos, ' ');
  1625. if (!pos)
  1626. return -1;
  1627. *pos++ = '\0';
  1628. sta = ap_get_sta(hapd, addr);
  1629. if (!sta || !sta->eapol_sm)
  1630. return -1;
  1631. return eapol_auth_set_conf(sta->eapol_sm, param, pos);
  1632. }
  1633. static int hostapd_ctrl_iface_log_level(struct hostapd_data *hapd, char *cmd,
  1634. char *buf, size_t buflen)
  1635. {
  1636. char *pos, *end, *stamp;
  1637. int ret;
  1638. /* cmd: "LOG_LEVEL [<level>]" */
  1639. if (*cmd == '\0') {
  1640. pos = buf;
  1641. end = buf + buflen;
  1642. ret = os_snprintf(pos, end - pos, "Current level: %s\n"
  1643. "Timestamp: %d\n",
  1644. debug_level_str(wpa_debug_level),
  1645. wpa_debug_timestamp);
  1646. if (os_snprintf_error(end - pos, ret))
  1647. ret = 0;
  1648. return ret;
  1649. }
  1650. while (*cmd == ' ')
  1651. cmd++;
  1652. stamp = os_strchr(cmd, ' ');
  1653. if (stamp) {
  1654. *stamp++ = '\0';
  1655. while (*stamp == ' ') {
  1656. stamp++;
  1657. }
  1658. }
  1659. if (os_strlen(cmd)) {
  1660. int level = str_to_debug_level(cmd);
  1661. if (level < 0)
  1662. return -1;
  1663. wpa_debug_level = level;
  1664. }
  1665. if (stamp && os_strlen(stamp))
  1666. wpa_debug_timestamp = atoi(stamp);
  1667. os_memcpy(buf, "OK\n", 3);
  1668. return 3;
  1669. }
  1670. #ifdef NEED_AP_MLME
  1671. static int hostapd_ctrl_iface_track_sta_list(struct hostapd_data *hapd,
  1672. char *buf, size_t buflen)
  1673. {
  1674. struct hostapd_iface *iface = hapd->iface;
  1675. char *pos, *end;
  1676. struct hostapd_sta_info *info;
  1677. struct os_reltime now;
  1678. sta_track_expire(iface, 0);
  1679. pos = buf;
  1680. end = buf + buflen;
  1681. os_get_reltime(&now);
  1682. dl_list_for_each_reverse(info, &iface->sta_seen,
  1683. struct hostapd_sta_info, list) {
  1684. struct os_reltime age;
  1685. int ret;
  1686. os_reltime_sub(&now, &info->last_seen, &age);
  1687. ret = os_snprintf(pos, end - pos, MACSTR " %u\n",
  1688. MAC2STR(info->addr), (unsigned int) age.sec);
  1689. if (os_snprintf_error(end - pos, ret))
  1690. break;
  1691. pos += ret;
  1692. }
  1693. return pos - buf;
  1694. }
  1695. #endif /* NEED_AP_MLME */
  1696. static int hostapd_ctrl_iface_req_lci(struct hostapd_data *hapd,
  1697. const char *cmd)
  1698. {
  1699. u8 addr[ETH_ALEN];
  1700. if (hwaddr_aton(cmd, addr)) {
  1701. wpa_printf(MSG_INFO, "CTRL: REQ_LCI: Invalid MAC address");
  1702. return -1;
  1703. }
  1704. return hostapd_send_lci_req(hapd, addr);
  1705. }
  1706. static int hostapd_ctrl_iface_req_range(struct hostapd_data *hapd, char *cmd)
  1707. {
  1708. u8 addr[ETH_ALEN];
  1709. char *token, *context = NULL;
  1710. int random_interval, min_ap;
  1711. u8 responders[ETH_ALEN * RRM_RANGE_REQ_MAX_RESPONDERS];
  1712. unsigned int n_responders;
  1713. token = str_token(cmd, " ", &context);
  1714. if (!token || hwaddr_aton(token, addr)) {
  1715. wpa_printf(MSG_INFO,
  1716. "CTRL: REQ_RANGE - Bad destination address");
  1717. return -1;
  1718. }
  1719. token = str_token(cmd, " ", &context);
  1720. if (!token)
  1721. return -1;
  1722. random_interval = atoi(token);
  1723. if (random_interval < 0 || random_interval > 0xffff)
  1724. return -1;
  1725. token = str_token(cmd, " ", &context);
  1726. if (!token)
  1727. return -1;
  1728. min_ap = atoi(token);
  1729. if (min_ap <= 0 || min_ap > WLAN_RRM_RANGE_REQ_MAX_MIN_AP)
  1730. return -1;
  1731. n_responders = 0;
  1732. while ((token = str_token(cmd, " ", &context))) {
  1733. if (n_responders == RRM_RANGE_REQ_MAX_RESPONDERS) {
  1734. wpa_printf(MSG_INFO,
  1735. "CTRL: REQ_RANGE: Too many responders");
  1736. return -1;
  1737. }
  1738. if (hwaddr_aton(token, responders + n_responders * ETH_ALEN)) {
  1739. wpa_printf(MSG_INFO,
  1740. "CTRL: REQ_RANGE: Bad responder address");
  1741. return -1;
  1742. }
  1743. n_responders++;
  1744. }
  1745. if (!n_responders) {
  1746. wpa_printf(MSG_INFO,
  1747. "CTRL: REQ_RANGE - No FTM responder address");
  1748. return -1;
  1749. }
  1750. return hostapd_send_range_req(hapd, addr, random_interval, min_ap,
  1751. responders, n_responders);
  1752. }
  1753. static int hostapd_ctrl_iface_set_neighbor(struct hostapd_data *hapd, char *buf)
  1754. {
  1755. struct wpa_ssid_value ssid;
  1756. u8 bssid[ETH_ALEN];
  1757. struct wpabuf *nr, *lci = NULL, *civic = NULL;
  1758. char *tmp;
  1759. int ret;
  1760. if (!(hapd->conf->radio_measurements[0] &
  1761. WLAN_RRM_CAPS_NEIGHBOR_REPORT)) {
  1762. wpa_printf(MSG_ERROR,
  1763. "CTRL: SET_NEIGHBOR: Neighbor report is not enabled");
  1764. return -1;
  1765. }
  1766. if (hwaddr_aton(buf, bssid)) {
  1767. wpa_printf(MSG_ERROR, "CTRL: SET_NEIGHBOR: Bad BSSID");
  1768. return -1;
  1769. }
  1770. tmp = os_strstr(buf, "ssid=");
  1771. if (!tmp || ssid_parse(tmp + 5, &ssid)) {
  1772. wpa_printf(MSG_ERROR,
  1773. "CTRL: SET_NEIGHBOR: Bad or missing SSID");
  1774. return -1;
  1775. }
  1776. buf = os_strchr(tmp + 6, tmp[5] == '"' ? '"' : ' ');
  1777. if (!buf)
  1778. return -1;
  1779. tmp = os_strstr(buf, "nr=");
  1780. if (!tmp) {
  1781. wpa_printf(MSG_ERROR,
  1782. "CTRL: SET_NEIGHBOR: Missing Neighbor Report element");
  1783. return -1;
  1784. }
  1785. buf = os_strchr(tmp, ' ');
  1786. if (buf)
  1787. *buf++ = '\0';
  1788. nr = wpabuf_parse_bin(tmp + 3);
  1789. if (!nr) {
  1790. wpa_printf(MSG_ERROR,
  1791. "CTRL: SET_NEIGHBOR: Bad Neighbor Report element");
  1792. return -1;
  1793. }
  1794. if (!buf)
  1795. goto set;
  1796. tmp = os_strstr(buf, "lci=");
  1797. if (tmp) {
  1798. buf = os_strchr(tmp, ' ');
  1799. if (buf)
  1800. *buf++ = '\0';
  1801. lci = wpabuf_parse_bin(tmp + 4);
  1802. if (!lci) {
  1803. wpa_printf(MSG_ERROR,
  1804. "CTRL: SET_NEIGHBOR: Bad LCI subelement");
  1805. wpabuf_free(nr);
  1806. return -1;
  1807. }
  1808. }
  1809. if (!buf)
  1810. goto set;
  1811. tmp = os_strstr(buf, "civic=");
  1812. if (tmp) {
  1813. buf = os_strchr(tmp, ' ');
  1814. if (buf)
  1815. *buf++ = '\0';
  1816. civic = wpabuf_parse_bin(tmp + 6);
  1817. if (!civic) {
  1818. wpa_printf(MSG_ERROR,
  1819. "CTRL: SET_NEIGHBOR: Bad civic subelement");
  1820. wpabuf_free(nr);
  1821. wpabuf_free(lci);
  1822. return -1;
  1823. }
  1824. }
  1825. set:
  1826. ret = hostapd_neighbor_set(hapd, bssid, &ssid, nr, lci, civic);
  1827. wpabuf_free(nr);
  1828. wpabuf_free(lci);
  1829. wpabuf_free(civic);
  1830. return ret;
  1831. }
  1832. static int hostapd_ctrl_iface_remove_neighbor(struct hostapd_data *hapd,
  1833. char *buf)
  1834. {
  1835. struct wpa_ssid_value ssid;
  1836. u8 bssid[ETH_ALEN];
  1837. char *tmp;
  1838. if (hwaddr_aton(buf, bssid)) {
  1839. wpa_printf(MSG_ERROR, "CTRL: REMOVE_NEIGHBOR: Bad BSSID");
  1840. return -1;
  1841. }
  1842. tmp = os_strstr(buf, "ssid=");
  1843. if (!tmp || ssid_parse(tmp + 5, &ssid)) {
  1844. wpa_printf(MSG_ERROR,
  1845. "CTRL: REMOVE_NEIGHBORr: Bad or missing SSID");
  1846. return -1;
  1847. }
  1848. return hostapd_neighbor_remove(hapd, bssid, &ssid);
  1849. }
  1850. static int hostapd_ctrl_driver_flags(struct hostapd_iface *iface, char *buf,
  1851. size_t buflen)
  1852. {
  1853. int ret, i;
  1854. char *pos, *end;
  1855. ret = os_snprintf(buf, buflen, "%016llX:\n",
  1856. (long long unsigned) iface->drv_flags);
  1857. if (os_snprintf_error(buflen, ret))
  1858. return -1;
  1859. pos = buf + ret;
  1860. end = buf + buflen;
  1861. for (i = 0; i < 64; i++) {
  1862. if (iface->drv_flags & (1LLU << i)) {
  1863. ret = os_snprintf(pos, end - pos, "%s\n",
  1864. driver_flag_to_string(1LLU << i));
  1865. if (os_snprintf_error(end - pos, ret))
  1866. return -1;
  1867. pos += ret;
  1868. }
  1869. }
  1870. return pos - buf;
  1871. }
  1872. static int hostapd_ctrl_iface_receive_process(struct hostapd_data *hapd,
  1873. char *buf, char *reply,
  1874. int reply_size,
  1875. struct sockaddr_storage *from,
  1876. socklen_t fromlen)
  1877. {
  1878. int reply_len, res;
  1879. os_memcpy(reply, "OK\n", 3);
  1880. reply_len = 3;
  1881. if (os_strcmp(buf, "PING") == 0) {
  1882. os_memcpy(reply, "PONG\n", 5);
  1883. reply_len = 5;
  1884. } else if (os_strncmp(buf, "RELOG", 5) == 0) {
  1885. if (wpa_debug_reopen_file() < 0)
  1886. reply_len = -1;
  1887. } else if (os_strcmp(buf, "STATUS") == 0) {
  1888. reply_len = hostapd_ctrl_iface_status(hapd, reply,
  1889. reply_size);
  1890. } else if (os_strcmp(buf, "STATUS-DRIVER") == 0) {
  1891. reply_len = hostapd_drv_status(hapd, reply, reply_size);
  1892. } else if (os_strcmp(buf, "MIB") == 0) {
  1893. reply_len = ieee802_11_get_mib(hapd, reply, reply_size);
  1894. if (reply_len >= 0) {
  1895. res = wpa_get_mib(hapd->wpa_auth, reply + reply_len,
  1896. reply_size - reply_len);
  1897. if (res < 0)
  1898. reply_len = -1;
  1899. else
  1900. reply_len += res;
  1901. }
  1902. if (reply_len >= 0) {
  1903. res = ieee802_1x_get_mib(hapd, reply + reply_len,
  1904. reply_size - reply_len);
  1905. if (res < 0)
  1906. reply_len = -1;
  1907. else
  1908. reply_len += res;
  1909. }
  1910. #ifndef CONFIG_NO_RADIUS
  1911. if (reply_len >= 0) {
  1912. res = radius_client_get_mib(hapd->radius,
  1913. reply + reply_len,
  1914. reply_size - reply_len);
  1915. if (res < 0)
  1916. reply_len = -1;
  1917. else
  1918. reply_len += res;
  1919. }
  1920. #endif /* CONFIG_NO_RADIUS */
  1921. } else if (os_strncmp(buf, "MIB ", 4) == 0) {
  1922. reply_len = hostapd_ctrl_iface_mib(hapd, reply, reply_size,
  1923. buf + 4);
  1924. } else if (os_strcmp(buf, "STA-FIRST") == 0) {
  1925. reply_len = hostapd_ctrl_iface_sta_first(hapd, reply,
  1926. reply_size);
  1927. } else if (os_strncmp(buf, "STA ", 4) == 0) {
  1928. reply_len = hostapd_ctrl_iface_sta(hapd, buf + 4, reply,
  1929. reply_size);
  1930. } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
  1931. reply_len = hostapd_ctrl_iface_sta_next(hapd, buf + 9, reply,
  1932. reply_size);
  1933. } else if (os_strcmp(buf, "ATTACH") == 0) {
  1934. if (hostapd_ctrl_iface_attach(hapd, from, fromlen))
  1935. reply_len = -1;
  1936. } else if (os_strcmp(buf, "DETACH") == 0) {
  1937. if (hostapd_ctrl_iface_detach(hapd, from, fromlen))
  1938. reply_len = -1;
  1939. } else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
  1940. if (hostapd_ctrl_iface_level(hapd, from, fromlen,
  1941. buf + 6))
  1942. reply_len = -1;
  1943. } else if (os_strncmp(buf, "NEW_STA ", 8) == 0) {
  1944. if (hostapd_ctrl_iface_new_sta(hapd, buf + 8))
  1945. reply_len = -1;
  1946. } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
  1947. if (hostapd_ctrl_iface_deauthenticate(hapd, buf + 15))
  1948. reply_len = -1;
  1949. } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
  1950. if (hostapd_ctrl_iface_disassociate(hapd, buf + 13))
  1951. reply_len = -1;
  1952. } else if (os_strncmp(buf, "POLL_STA ", 9) == 0) {
  1953. if (hostapd_ctrl_iface_poll_sta(hapd, buf + 9))
  1954. reply_len = -1;
  1955. } else if (os_strcmp(buf, "STOP_AP") == 0) {
  1956. if (hostapd_ctrl_iface_stop_ap(hapd))
  1957. reply_len = -1;
  1958. #ifdef CONFIG_IEEE80211W
  1959. #ifdef NEED_AP_MLME
  1960. } else if (os_strncmp(buf, "SA_QUERY ", 9) == 0) {
  1961. if (hostapd_ctrl_iface_sa_query(hapd, buf + 9))
  1962. reply_len = -1;
  1963. #endif /* NEED_AP_MLME */
  1964. #endif /* CONFIG_IEEE80211W */
  1965. #ifdef CONFIG_WPS
  1966. } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
  1967. if (hostapd_ctrl_iface_wps_pin(hapd, buf + 8))
  1968. reply_len = -1;
  1969. } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
  1970. reply_len = hostapd_ctrl_iface_wps_check_pin(
  1971. hapd, buf + 14, reply, reply_size);
  1972. } else if (os_strcmp(buf, "WPS_PBC") == 0) {
  1973. if (hostapd_wps_button_pushed(hapd, NULL))
  1974. reply_len = -1;
  1975. } else if (os_strcmp(buf, "WPS_CANCEL") == 0) {
  1976. if (hostapd_wps_cancel(hapd))
  1977. reply_len = -1;
  1978. } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
  1979. reply_len = hostapd_ctrl_iface_wps_ap_pin(hapd, buf + 11,
  1980. reply, reply_size);
  1981. } else if (os_strncmp(buf, "WPS_CONFIG ", 11) == 0) {
  1982. if (hostapd_ctrl_iface_wps_config(hapd, buf + 11) < 0)
  1983. reply_len = -1;
  1984. } else if (os_strncmp(buf, "WPS_GET_STATUS", 13) == 0) {
  1985. reply_len = hostapd_ctrl_iface_wps_get_status(hapd, reply,
  1986. reply_size);
  1987. #ifdef CONFIG_WPS_NFC
  1988. } else if (os_strncmp(buf, "WPS_NFC_TAG_READ ", 17) == 0) {
  1989. if (hostapd_ctrl_iface_wps_nfc_tag_read(hapd, buf + 17))
  1990. reply_len = -1;
  1991. } else if (os_strncmp(buf, "WPS_NFC_CONFIG_TOKEN ", 21) == 0) {
  1992. reply_len = hostapd_ctrl_iface_wps_nfc_config_token(
  1993. hapd, buf + 21, reply, reply_size);
  1994. } else if (os_strncmp(buf, "WPS_NFC_TOKEN ", 14) == 0) {
  1995. reply_len = hostapd_ctrl_iface_wps_nfc_token(
  1996. hapd, buf + 14, reply, reply_size);
  1997. } else if (os_strncmp(buf, "NFC_GET_HANDOVER_SEL ", 21) == 0) {
  1998. reply_len = hostapd_ctrl_iface_nfc_get_handover_sel(
  1999. hapd, buf + 21, reply, reply_size);
  2000. } else if (os_strncmp(buf, "NFC_REPORT_HANDOVER ", 20) == 0) {
  2001. if (hostapd_ctrl_iface_nfc_report_handover(hapd, buf + 20))
  2002. reply_len = -1;
  2003. #endif /* CONFIG_WPS_NFC */
  2004. #endif /* CONFIG_WPS */
  2005. #ifdef CONFIG_INTERWORKING
  2006. } else if (os_strncmp(buf, "SET_QOS_MAP_SET ", 16) == 0) {
  2007. if (hostapd_ctrl_iface_set_qos_map_set(hapd, buf + 16))
  2008. reply_len = -1;
  2009. } else if (os_strncmp(buf, "SEND_QOS_MAP_CONF ", 18) == 0) {
  2010. if (hostapd_ctrl_iface_send_qos_map_conf(hapd, buf + 18))
  2011. reply_len = -1;
  2012. #endif /* CONFIG_INTERWORKING */
  2013. #ifdef CONFIG_HS20
  2014. } else if (os_strncmp(buf, "HS20_WNM_NOTIF ", 15) == 0) {
  2015. if (hostapd_ctrl_iface_hs20_wnm_notif(hapd, buf + 15))
  2016. reply_len = -1;
  2017. } else if (os_strncmp(buf, "HS20_DEAUTH_REQ ", 16) == 0) {
  2018. if (hostapd_ctrl_iface_hs20_deauth_req(hapd, buf + 16))
  2019. reply_len = -1;
  2020. #endif /* CONFIG_HS20 */
  2021. #ifdef CONFIG_WNM
  2022. } else if (os_strncmp(buf, "DISASSOC_IMMINENT ", 18) == 0) {
  2023. if (hostapd_ctrl_iface_disassoc_imminent(hapd, buf + 18))
  2024. reply_len = -1;
  2025. } else if (os_strncmp(buf, "ESS_DISASSOC ", 13) == 0) {
  2026. if (hostapd_ctrl_iface_ess_disassoc(hapd, buf + 13))
  2027. reply_len = -1;
  2028. } else if (os_strncmp(buf, "BSS_TM_REQ ", 11) == 0) {
  2029. if (hostapd_ctrl_iface_bss_tm_req(hapd, buf + 11))
  2030. reply_len = -1;
  2031. #endif /* CONFIG_WNM */
  2032. } else if (os_strcmp(buf, "GET_CONFIG") == 0) {
  2033. reply_len = hostapd_ctrl_iface_get_config(hapd, reply,
  2034. reply_size);
  2035. } else if (os_strncmp(buf, "SET ", 4) == 0) {
  2036. if (hostapd_ctrl_iface_set(hapd, buf + 4))
  2037. reply_len = -1;
  2038. } else if (os_strncmp(buf, "GET ", 4) == 0) {
  2039. reply_len = hostapd_ctrl_iface_get(hapd, buf + 4, reply,
  2040. reply_size);
  2041. } else if (os_strncmp(buf, "ENABLE", 6) == 0) {
  2042. if (hostapd_ctrl_iface_enable(hapd->iface))
  2043. reply_len = -1;
  2044. } else if (os_strncmp(buf, "RELOAD", 6) == 0) {
  2045. if (hostapd_ctrl_iface_reload(hapd->iface))
  2046. reply_len = -1;
  2047. } else if (os_strncmp(buf, "DISABLE", 7) == 0) {
  2048. if (hostapd_ctrl_iface_disable(hapd->iface))
  2049. reply_len = -1;
  2050. } else if (os_strcmp(buf, "UPDATE_BEACON") == 0) {
  2051. if (ieee802_11_set_beacon(hapd))
  2052. reply_len = -1;
  2053. #ifdef CONFIG_TESTING_OPTIONS
  2054. } else if (os_strncmp(buf, "RADAR ", 6) == 0) {
  2055. if (hostapd_ctrl_iface_radar(hapd, buf + 6))
  2056. reply_len = -1;
  2057. } else if (os_strncmp(buf, "MGMT_TX ", 8) == 0) {
  2058. if (hostapd_ctrl_iface_mgmt_tx(hapd, buf + 8))
  2059. reply_len = -1;
  2060. } else if (os_strncmp(buf, "EAPOL_RX ", 9) == 0) {
  2061. if (hostapd_ctrl_iface_eapol_rx(hapd, buf + 9) < 0)
  2062. reply_len = -1;
  2063. } else if (os_strncmp(buf, "DATA_TEST_CONFIG ", 17) == 0) {
  2064. if (hostapd_ctrl_iface_data_test_config(hapd, buf + 17) < 0)
  2065. reply_len = -1;
  2066. } else if (os_strncmp(buf, "DATA_TEST_TX ", 13) == 0) {
  2067. if (hostapd_ctrl_iface_data_test_tx(hapd, buf + 13) < 0)
  2068. reply_len = -1;
  2069. } else if (os_strncmp(buf, "DATA_TEST_FRAME ", 16) == 0) {
  2070. if (hostapd_ctrl_iface_data_test_frame(hapd, buf + 16) < 0)
  2071. reply_len = -1;
  2072. } else if (os_strncmp(buf, "TEST_ALLOC_FAIL ", 16) == 0) {
  2073. if (hostapd_ctrl_test_alloc_fail(hapd, buf + 16) < 0)
  2074. reply_len = -1;
  2075. } else if (os_strcmp(buf, "GET_ALLOC_FAIL") == 0) {
  2076. reply_len = hostapd_ctrl_get_alloc_fail(hapd, reply,
  2077. reply_size);
  2078. } else if (os_strncmp(buf, "TEST_FAIL ", 10) == 0) {
  2079. if (hostapd_ctrl_test_fail(hapd, buf + 10) < 0)
  2080. reply_len = -1;
  2081. } else if (os_strcmp(buf, "GET_FAIL") == 0) {
  2082. reply_len = hostapd_ctrl_get_fail(hapd, reply, reply_size);
  2083. #endif /* CONFIG_TESTING_OPTIONS */
  2084. } else if (os_strncmp(buf, "CHAN_SWITCH ", 12) == 0) {
  2085. if (hostapd_ctrl_iface_chan_switch(hapd->iface, buf + 12))
  2086. reply_len = -1;
  2087. } else if (os_strncmp(buf, "VENDOR ", 7) == 0) {
  2088. reply_len = hostapd_ctrl_iface_vendor(hapd, buf + 7, reply,
  2089. reply_size);
  2090. } else if (os_strcmp(buf, "ERP_FLUSH") == 0) {
  2091. ieee802_1x_erp_flush(hapd);
  2092. #ifdef RADIUS_SERVER
  2093. radius_server_erp_flush(hapd->radius_srv);
  2094. #endif /* RADIUS_SERVER */
  2095. } else if (os_strncmp(buf, "EAPOL_REAUTH ", 13) == 0) {
  2096. if (hostapd_ctrl_iface_eapol_reauth(hapd, buf + 13))
  2097. reply_len = -1;
  2098. } else if (os_strncmp(buf, "EAPOL_SET ", 10) == 0) {
  2099. if (hostapd_ctrl_iface_eapol_set(hapd, buf + 10))
  2100. reply_len = -1;
  2101. } else if (os_strncmp(buf, "LOG_LEVEL", 9) == 0) {
  2102. reply_len = hostapd_ctrl_iface_log_level(
  2103. hapd, buf + 9, reply, reply_size);
  2104. #ifdef NEED_AP_MLME
  2105. } else if (os_strcmp(buf, "TRACK_STA_LIST") == 0) {
  2106. reply_len = hostapd_ctrl_iface_track_sta_list(
  2107. hapd, reply, reply_size);
  2108. #endif /* NEED_AP_MLME */
  2109. } else if (os_strcmp(buf, "PMKSA") == 0) {
  2110. reply_len = hostapd_ctrl_iface_pmksa_list(hapd, reply,
  2111. reply_size);
  2112. } else if (os_strcmp(buf, "PMKSA_FLUSH") == 0) {
  2113. hostapd_ctrl_iface_pmksa_flush(hapd);
  2114. } else if (os_strncmp(buf, "SET_NEIGHBOR ", 13) == 0) {
  2115. if (hostapd_ctrl_iface_set_neighbor(hapd, buf + 13))
  2116. reply_len = -1;
  2117. } else if (os_strncmp(buf, "REMOVE_NEIGHBOR ", 16) == 0) {
  2118. if (hostapd_ctrl_iface_remove_neighbor(hapd, buf + 16))
  2119. reply_len = -1;
  2120. } else if (os_strncmp(buf, "REQ_LCI ", 8) == 0) {
  2121. if (hostapd_ctrl_iface_req_lci(hapd, buf + 8))
  2122. reply_len = -1;
  2123. } else if (os_strncmp(buf, "REQ_RANGE ", 10) == 0) {
  2124. if (hostapd_ctrl_iface_req_range(hapd, buf + 10))
  2125. reply_len = -1;
  2126. } else if (os_strcmp(buf, "DRIVER_FLAGS") == 0) {
  2127. reply_len = hostapd_ctrl_driver_flags(hapd->iface, reply,
  2128. reply_size);
  2129. } else {
  2130. os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
  2131. reply_len = 16;
  2132. }
  2133. if (reply_len < 0) {
  2134. os_memcpy(reply, "FAIL\n", 5);
  2135. reply_len = 5;
  2136. }
  2137. return reply_len;
  2138. }
  2139. static void hostapd_ctrl_iface_receive(int sock, void *eloop_ctx,
  2140. void *sock_ctx)
  2141. {
  2142. struct hostapd_data *hapd = eloop_ctx;
  2143. char buf[4096];
  2144. int res;
  2145. struct sockaddr_storage from;
  2146. socklen_t fromlen = sizeof(from);
  2147. char *reply, *pos = buf;
  2148. const int reply_size = 4096;
  2149. int reply_len;
  2150. int level = MSG_DEBUG;
  2151. #ifdef CONFIG_CTRL_IFACE_UDP
  2152. unsigned char lcookie[COOKIE_LEN];
  2153. #endif /* CONFIG_CTRL_IFACE_UDP */
  2154. res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
  2155. (struct sockaddr *) &from, &fromlen);
  2156. if (res < 0) {
  2157. wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
  2158. strerror(errno));
  2159. return;
  2160. }
  2161. buf[res] = '\0';
  2162. reply = os_malloc(reply_size);
  2163. if (reply == NULL) {
  2164. if (sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
  2165. fromlen) < 0) {
  2166. wpa_printf(MSG_DEBUG, "CTRL: sendto failed: %s",
  2167. strerror(errno));
  2168. }
  2169. return;
  2170. }
  2171. #ifdef CONFIG_CTRL_IFACE_UDP
  2172. if (os_strcmp(buf, "GET_COOKIE") == 0) {
  2173. os_memcpy(reply, "COOKIE=", 7);
  2174. wpa_snprintf_hex(reply + 7, 2 * COOKIE_LEN + 1,
  2175. cookie, COOKIE_LEN);
  2176. reply_len = 7 + 2 * COOKIE_LEN;
  2177. goto done;
  2178. }
  2179. if (os_strncmp(buf, "COOKIE=", 7) != 0 ||
  2180. hexstr2bin(buf + 7, lcookie, COOKIE_LEN) < 0) {
  2181. wpa_printf(MSG_DEBUG,
  2182. "CTRL: No cookie in the request - drop request");
  2183. os_free(reply);
  2184. return;
  2185. }
  2186. if (os_memcmp(cookie, lcookie, COOKIE_LEN) != 0) {
  2187. wpa_printf(MSG_DEBUG,
  2188. "CTRL: Invalid cookie in the request - drop request");
  2189. os_free(reply);
  2190. return;
  2191. }
  2192. pos = buf + 7 + 2 * COOKIE_LEN;
  2193. while (*pos == ' ')
  2194. pos++;
  2195. #endif /* CONFIG_CTRL_IFACE_UDP */
  2196. if (os_strcmp(pos, "PING") == 0)
  2197. level = MSG_EXCESSIVE;
  2198. wpa_hexdump_ascii(level, "RX ctrl_iface", pos, res);
  2199. reply_len = hostapd_ctrl_iface_receive_process(hapd, pos,
  2200. reply, reply_size,
  2201. &from, fromlen);
  2202. #ifdef CONFIG_CTRL_IFACE_UDP
  2203. done:
  2204. #endif /* CONFIG_CTRL_IFACE_UDP */
  2205. if (sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from,
  2206. fromlen) < 0) {
  2207. wpa_printf(MSG_DEBUG, "CTRL: sendto failed: %s",
  2208. strerror(errno));
  2209. }
  2210. os_free(reply);
  2211. }
  2212. #ifndef CONFIG_CTRL_IFACE_UDP
  2213. static char * hostapd_ctrl_iface_path(struct hostapd_data *hapd)
  2214. {
  2215. char *buf;
  2216. size_t len;
  2217. if (hapd->conf->ctrl_interface == NULL)
  2218. return NULL;
  2219. len = os_strlen(hapd->conf->ctrl_interface) +
  2220. os_strlen(hapd->conf->iface) + 2;
  2221. buf = os_malloc(len);
  2222. if (buf == NULL)
  2223. return NULL;
  2224. os_snprintf(buf, len, "%s/%s",
  2225. hapd->conf->ctrl_interface, hapd->conf->iface);
  2226. buf[len - 1] = '\0';
  2227. return buf;
  2228. }
  2229. #endif /* CONFIG_CTRL_IFACE_UDP */
  2230. static void hostapd_ctrl_iface_msg_cb(void *ctx, int level,
  2231. enum wpa_msg_type type,
  2232. const char *txt, size_t len)
  2233. {
  2234. struct hostapd_data *hapd = ctx;
  2235. if (hapd == NULL)
  2236. return;
  2237. hostapd_ctrl_iface_send(hapd, level, type, txt, len);
  2238. }
  2239. int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
  2240. {
  2241. #ifdef CONFIG_CTRL_IFACE_UDP
  2242. int port = HOSTAPD_CTRL_IFACE_PORT;
  2243. char p[32] = { 0 };
  2244. char port_str[40], *tmp;
  2245. char *pos;
  2246. struct addrinfo hints = { 0 }, *res, *saveres;
  2247. int n;
  2248. if (hapd->ctrl_sock > -1) {
  2249. wpa_printf(MSG_DEBUG, "ctrl_iface already exists!");
  2250. return 0;
  2251. }
  2252. if (hapd->conf->ctrl_interface == NULL)
  2253. return 0;
  2254. pos = os_strstr(hapd->conf->ctrl_interface, "udp:");
  2255. if (pos) {
  2256. pos += 4;
  2257. port = atoi(pos);
  2258. if (port <= 0) {
  2259. wpa_printf(MSG_ERROR, "Invalid ctrl_iface UDP port");
  2260. goto fail;
  2261. }
  2262. }
  2263. dl_list_init(&hapd->ctrl_dst);
  2264. hapd->ctrl_sock = -1;
  2265. os_get_random(cookie, COOKIE_LEN);
  2266. #ifdef CONFIG_CTRL_IFACE_UDP_REMOTE
  2267. hints.ai_flags = AI_PASSIVE;
  2268. #endif /* CONFIG_CTRL_IFACE_UDP_REMOTE */
  2269. #ifdef CONFIG_CTRL_IFACE_UDP_IPV6
  2270. hints.ai_family = AF_INET6;
  2271. #else /* CONFIG_CTRL_IFACE_UDP_IPV6 */
  2272. hints.ai_family = AF_INET;
  2273. #endif /* CONFIG_CTRL_IFACE_UDP_IPV6 */
  2274. hints.ai_socktype = SOCK_DGRAM;
  2275. try_again:
  2276. os_snprintf(p, sizeof(p), "%d", port);
  2277. n = getaddrinfo(NULL, p, &hints, &res);
  2278. if (n) {
  2279. wpa_printf(MSG_ERROR, "getaddrinfo(): %s", gai_strerror(n));
  2280. goto fail;
  2281. }
  2282. saveres = res;
  2283. hapd->ctrl_sock = socket(res->ai_family, res->ai_socktype,
  2284. res->ai_protocol);
  2285. if (hapd->ctrl_sock < 0) {
  2286. wpa_printf(MSG_ERROR, "socket(PF_INET): %s", strerror(errno));
  2287. goto fail;
  2288. }
  2289. if (bind(hapd->ctrl_sock, res->ai_addr, res->ai_addrlen) < 0) {
  2290. port--;
  2291. if ((HOSTAPD_CTRL_IFACE_PORT - port) <
  2292. HOSTAPD_CTRL_IFACE_PORT_LIMIT && !pos)
  2293. goto try_again;
  2294. wpa_printf(MSG_ERROR, "bind(AF_INET): %s", strerror(errno));
  2295. goto fail;
  2296. }
  2297. freeaddrinfo(saveres);
  2298. os_snprintf(port_str, sizeof(port_str), "udp:%d", port);
  2299. tmp = os_strdup(port_str);
  2300. if (tmp) {
  2301. os_free(hapd->conf->ctrl_interface);
  2302. hapd->conf->ctrl_interface = tmp;
  2303. }
  2304. wpa_printf(MSG_DEBUG, "ctrl_iface_init UDP port: %d", port);
  2305. if (eloop_register_read_sock(hapd->ctrl_sock,
  2306. hostapd_ctrl_iface_receive, hapd, NULL) <
  2307. 0) {
  2308. hostapd_ctrl_iface_deinit(hapd);
  2309. return -1;
  2310. }
  2311. hapd->msg_ctx = hapd;
  2312. wpa_msg_register_cb(hostapd_ctrl_iface_msg_cb);
  2313. return 0;
  2314. fail:
  2315. if (hapd->ctrl_sock >= 0)
  2316. close(hapd->ctrl_sock);
  2317. return -1;
  2318. #else /* CONFIG_CTRL_IFACE_UDP */
  2319. struct sockaddr_un addr;
  2320. int s = -1;
  2321. char *fname = NULL;
  2322. if (hapd->ctrl_sock > -1) {
  2323. wpa_printf(MSG_DEBUG, "ctrl_iface already exists!");
  2324. return 0;
  2325. }
  2326. dl_list_init(&hapd->ctrl_dst);
  2327. if (hapd->conf->ctrl_interface == NULL)
  2328. return 0;
  2329. if (mkdir(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
  2330. if (errno == EEXIST) {
  2331. wpa_printf(MSG_DEBUG, "Using existing control "
  2332. "interface directory.");
  2333. } else {
  2334. wpa_printf(MSG_ERROR, "mkdir[ctrl_interface]: %s",
  2335. strerror(errno));
  2336. goto fail;
  2337. }
  2338. }
  2339. if (hapd->conf->ctrl_interface_gid_set &&
  2340. chown(hapd->conf->ctrl_interface, -1,
  2341. hapd->conf->ctrl_interface_gid) < 0) {
  2342. wpa_printf(MSG_ERROR, "chown[ctrl_interface]: %s",
  2343. strerror(errno));
  2344. return -1;
  2345. }
  2346. if (!hapd->conf->ctrl_interface_gid_set &&
  2347. hapd->iface->interfaces->ctrl_iface_group &&
  2348. chown(hapd->conf->ctrl_interface, -1,
  2349. hapd->iface->interfaces->ctrl_iface_group) < 0) {
  2350. wpa_printf(MSG_ERROR, "chown[ctrl_interface]: %s",
  2351. strerror(errno));
  2352. return -1;
  2353. }
  2354. #ifdef ANDROID
  2355. /*
  2356. * Android is using umask 0077 which would leave the control interface
  2357. * directory without group access. This breaks things since Wi-Fi
  2358. * framework assumes that this directory can be accessed by other
  2359. * applications in the wifi group. Fix this by adding group access even
  2360. * if umask value would prevent this.
  2361. */
  2362. if (chmod(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
  2363. wpa_printf(MSG_ERROR, "CTRL: Could not chmod directory: %s",
  2364. strerror(errno));
  2365. /* Try to continue anyway */
  2366. }
  2367. #endif /* ANDROID */
  2368. if (os_strlen(hapd->conf->ctrl_interface) + 1 +
  2369. os_strlen(hapd->conf->iface) >= sizeof(addr.sun_path))
  2370. goto fail;
  2371. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  2372. if (s < 0) {
  2373. wpa_printf(MSG_ERROR, "socket(PF_UNIX): %s", strerror(errno));
  2374. goto fail;
  2375. }
  2376. os_memset(&addr, 0, sizeof(addr));
  2377. #ifdef __FreeBSD__
  2378. addr.sun_len = sizeof(addr);
  2379. #endif /* __FreeBSD__ */
  2380. addr.sun_family = AF_UNIX;
  2381. fname = hostapd_ctrl_iface_path(hapd);
  2382. if (fname == NULL)
  2383. goto fail;
  2384. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  2385. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  2386. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  2387. strerror(errno));
  2388. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  2389. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  2390. " allow connections - assuming it was left"
  2391. "over from forced program termination");
  2392. if (unlink(fname) < 0) {
  2393. wpa_printf(MSG_ERROR,
  2394. "Could not unlink existing ctrl_iface socket '%s': %s",
  2395. fname, strerror(errno));
  2396. goto fail;
  2397. }
  2398. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
  2399. 0) {
  2400. wpa_printf(MSG_ERROR,
  2401. "hostapd-ctrl-iface: bind(PF_UNIX): %s",
  2402. strerror(errno));
  2403. goto fail;
  2404. }
  2405. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  2406. "ctrl_iface socket '%s'", fname);
  2407. } else {
  2408. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  2409. "be in use - cannot override it");
  2410. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  2411. "not used anymore", fname);
  2412. os_free(fname);
  2413. fname = NULL;
  2414. goto fail;
  2415. }
  2416. }
  2417. if (hapd->conf->ctrl_interface_gid_set &&
  2418. chown(fname, -1, hapd->conf->ctrl_interface_gid) < 0) {
  2419. wpa_printf(MSG_ERROR, "chown[ctrl_interface/ifname]: %s",
  2420. strerror(errno));
  2421. goto fail;
  2422. }
  2423. if (!hapd->conf->ctrl_interface_gid_set &&
  2424. hapd->iface->interfaces->ctrl_iface_group &&
  2425. chown(fname, -1, hapd->iface->interfaces->ctrl_iface_group) < 0) {
  2426. wpa_printf(MSG_ERROR, "chown[ctrl_interface/ifname]: %s",
  2427. strerror(errno));
  2428. goto fail;
  2429. }
  2430. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  2431. wpa_printf(MSG_ERROR, "chmod[ctrl_interface/ifname]: %s",
  2432. strerror(errno));
  2433. goto fail;
  2434. }
  2435. os_free(fname);
  2436. hapd->ctrl_sock = s;
  2437. if (eloop_register_read_sock(s, hostapd_ctrl_iface_receive, hapd,
  2438. NULL) < 0) {
  2439. hostapd_ctrl_iface_deinit(hapd);
  2440. return -1;
  2441. }
  2442. hapd->msg_ctx = hapd;
  2443. wpa_msg_register_cb(hostapd_ctrl_iface_msg_cb);
  2444. return 0;
  2445. fail:
  2446. if (s >= 0)
  2447. close(s);
  2448. if (fname) {
  2449. unlink(fname);
  2450. os_free(fname);
  2451. }
  2452. return -1;
  2453. #endif /* CONFIG_CTRL_IFACE_UDP */
  2454. }
  2455. void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd)
  2456. {
  2457. struct wpa_ctrl_dst *dst, *prev;
  2458. if (hapd->ctrl_sock > -1) {
  2459. #ifndef CONFIG_CTRL_IFACE_UDP
  2460. char *fname;
  2461. #endif /* !CONFIG_CTRL_IFACE_UDP */
  2462. eloop_unregister_read_sock(hapd->ctrl_sock);
  2463. close(hapd->ctrl_sock);
  2464. hapd->ctrl_sock = -1;
  2465. #ifndef CONFIG_CTRL_IFACE_UDP
  2466. fname = hostapd_ctrl_iface_path(hapd);
  2467. if (fname)
  2468. unlink(fname);
  2469. os_free(fname);
  2470. if (hapd->conf->ctrl_interface &&
  2471. rmdir(hapd->conf->ctrl_interface) < 0) {
  2472. if (errno == ENOTEMPTY) {
  2473. wpa_printf(MSG_DEBUG, "Control interface "
  2474. "directory not empty - leaving it "
  2475. "behind");
  2476. } else {
  2477. wpa_printf(MSG_ERROR,
  2478. "rmdir[ctrl_interface=%s]: %s",
  2479. hapd->conf->ctrl_interface,
  2480. strerror(errno));
  2481. }
  2482. }
  2483. #endif /* !CONFIG_CTRL_IFACE_UDP */
  2484. }
  2485. dl_list_for_each_safe(dst, prev, &hapd->ctrl_dst, struct wpa_ctrl_dst,
  2486. list)
  2487. os_free(dst);
  2488. #ifdef CONFIG_TESTING_OPTIONS
  2489. l2_packet_deinit(hapd->l2_test);
  2490. hapd->l2_test = NULL;
  2491. #endif /* CONFIG_TESTING_OPTIONS */
  2492. }
  2493. static int hostapd_ctrl_iface_add(struct hapd_interfaces *interfaces,
  2494. char *buf)
  2495. {
  2496. if (hostapd_add_iface(interfaces, buf) < 0) {
  2497. wpa_printf(MSG_ERROR, "Adding interface %s failed", buf);
  2498. return -1;
  2499. }
  2500. return 0;
  2501. }
  2502. static int hostapd_ctrl_iface_remove(struct hapd_interfaces *interfaces,
  2503. char *buf)
  2504. {
  2505. if (hostapd_remove_iface(interfaces, buf) < 0) {
  2506. wpa_printf(MSG_ERROR, "Removing interface %s failed", buf);
  2507. return -1;
  2508. }
  2509. return 0;
  2510. }
  2511. static int hostapd_global_ctrl_iface_attach(struct hapd_interfaces *interfaces,
  2512. struct sockaddr_storage *from,
  2513. socklen_t fromlen)
  2514. {
  2515. return ctrl_iface_attach(&interfaces->global_ctrl_dst, from, fromlen);
  2516. }
  2517. static int hostapd_global_ctrl_iface_detach(struct hapd_interfaces *interfaces,
  2518. struct sockaddr_storage *from,
  2519. socklen_t fromlen)
  2520. {
  2521. return ctrl_iface_detach(&interfaces->global_ctrl_dst, from, fromlen);
  2522. }
  2523. static void hostapd_ctrl_iface_flush(struct hapd_interfaces *interfaces)
  2524. {
  2525. #ifdef CONFIG_WPS_TESTING
  2526. wps_version_number = 0x20;
  2527. wps_testing_dummy_cred = 0;
  2528. wps_corrupt_pkhash = 0;
  2529. #endif /* CONFIG_WPS_TESTING */
  2530. }
  2531. #ifdef CONFIG_FST
  2532. static int
  2533. hostapd_global_ctrl_iface_fst_attach(struct hapd_interfaces *interfaces,
  2534. const char *cmd)
  2535. {
  2536. char ifname[IFNAMSIZ + 1];
  2537. struct fst_iface_cfg cfg;
  2538. struct hostapd_data *hapd;
  2539. struct fst_wpa_obj iface_obj;
  2540. if (!fst_parse_attach_command(cmd, ifname, sizeof(ifname), &cfg)) {
  2541. hapd = hostapd_get_iface(interfaces, ifname);
  2542. if (hapd) {
  2543. if (hapd->iface->fst) {
  2544. wpa_printf(MSG_INFO, "FST: Already attached");
  2545. return -1;
  2546. }
  2547. fst_hostapd_fill_iface_obj(hapd, &iface_obj);
  2548. hapd->iface->fst = fst_attach(ifname, hapd->own_addr,
  2549. &iface_obj, &cfg);
  2550. if (hapd->iface->fst)
  2551. return 0;
  2552. }
  2553. }
  2554. return -EINVAL;
  2555. }
  2556. static int
  2557. hostapd_global_ctrl_iface_fst_detach(struct hapd_interfaces *interfaces,
  2558. const char *cmd)
  2559. {
  2560. char ifname[IFNAMSIZ + 1];
  2561. struct hostapd_data * hapd;
  2562. if (!fst_parse_detach_command(cmd, ifname, sizeof(ifname))) {
  2563. hapd = hostapd_get_iface(interfaces, ifname);
  2564. if (hapd) {
  2565. if (!fst_iface_detach(ifname)) {
  2566. hapd->iface->fst = NULL;
  2567. hapd->iface->fst_ies = NULL;
  2568. return 0;
  2569. }
  2570. }
  2571. }
  2572. return -EINVAL;
  2573. }
  2574. #endif /* CONFIG_FST */
  2575. static struct hostapd_data *
  2576. hostapd_interfaces_get_hapd(struct hapd_interfaces *interfaces,
  2577. const char *ifname)
  2578. {
  2579. size_t i, j;
  2580. for (i = 0; i < interfaces->count; i++) {
  2581. struct hostapd_iface *iface = interfaces->iface[i];
  2582. for (j = 0; j < iface->num_bss; j++) {
  2583. struct hostapd_data *hapd;
  2584. hapd = iface->bss[j];
  2585. if (os_strcmp(ifname, hapd->conf->iface) == 0)
  2586. return hapd;
  2587. }
  2588. }
  2589. return NULL;
  2590. }
  2591. static int hostapd_ctrl_iface_dup_param(struct hostapd_data *src_hapd,
  2592. struct hostapd_data *dst_hapd,
  2593. const char *param)
  2594. {
  2595. int res;
  2596. char *value;
  2597. value = os_zalloc(HOSTAPD_CLI_DUP_VALUE_MAX_LEN);
  2598. if (!value) {
  2599. wpa_printf(MSG_ERROR,
  2600. "DUP: cannot allocate buffer to stringify %s",
  2601. param);
  2602. goto error_return;
  2603. }
  2604. if (os_strcmp(param, "wpa") == 0) {
  2605. os_snprintf(value, HOSTAPD_CLI_DUP_VALUE_MAX_LEN, "%d",
  2606. src_hapd->conf->wpa);
  2607. } else if (os_strcmp(param, "wpa_key_mgmt") == 0 &&
  2608. src_hapd->conf->wpa_key_mgmt) {
  2609. res = hostapd_ctrl_iface_get_key_mgmt(
  2610. src_hapd, value, HOSTAPD_CLI_DUP_VALUE_MAX_LEN);
  2611. if (os_snprintf_error(HOSTAPD_CLI_DUP_VALUE_MAX_LEN, res))
  2612. goto error_stringify;
  2613. } else if (os_strcmp(param, "wpa_pairwise") == 0 &&
  2614. src_hapd->conf->wpa_pairwise) {
  2615. res = wpa_write_ciphers(value,
  2616. value + HOSTAPD_CLI_DUP_VALUE_MAX_LEN,
  2617. src_hapd->conf->wpa_pairwise, " ");
  2618. if (res < 0)
  2619. goto error_stringify;
  2620. } else if (os_strcmp(param, "rsn_pairwise") == 0 &&
  2621. src_hapd->conf->rsn_pairwise) {
  2622. res = wpa_write_ciphers(value,
  2623. value + HOSTAPD_CLI_DUP_VALUE_MAX_LEN,
  2624. src_hapd->conf->rsn_pairwise, " ");
  2625. if (res < 0)
  2626. goto error_stringify;
  2627. } else if (os_strcmp(param, "wpa_passphrase") == 0 &&
  2628. src_hapd->conf->ssid.wpa_passphrase) {
  2629. os_snprintf(value, HOSTAPD_CLI_DUP_VALUE_MAX_LEN, "%s",
  2630. src_hapd->conf->ssid.wpa_passphrase);
  2631. } else if (os_strcmp(param, "wpa_psk") == 0 &&
  2632. src_hapd->conf->ssid.wpa_psk_set) {
  2633. wpa_snprintf_hex(value, HOSTAPD_CLI_DUP_VALUE_MAX_LEN,
  2634. src_hapd->conf->ssid.wpa_psk->psk, PMK_LEN);
  2635. } else {
  2636. wpa_printf(MSG_WARNING, "DUP: %s cannot be duplicated", param);
  2637. goto error_return;
  2638. }
  2639. res = hostapd_set_iface(dst_hapd->iconf, dst_hapd->conf, param, value);
  2640. os_free(value);
  2641. return res;
  2642. error_stringify:
  2643. wpa_printf(MSG_ERROR, "DUP: cannot stringify %s", param);
  2644. error_return:
  2645. os_free(value);
  2646. return -1;
  2647. }
  2648. static int
  2649. hostapd_global_ctrl_iface_interfaces(struct hapd_interfaces *interfaces,
  2650. const char *input,
  2651. char *reply, int reply_size)
  2652. {
  2653. size_t i, j;
  2654. int res;
  2655. char *pos, *end;
  2656. struct hostapd_iface *iface;
  2657. int show_ctrl = 0;
  2658. if (input)
  2659. show_ctrl = !!os_strstr(input, "ctrl");
  2660. pos = reply;
  2661. end = reply + reply_size;
  2662. for (i = 0; i < interfaces->count; i++) {
  2663. iface = interfaces->iface[i];
  2664. for (j = 0; j < iface->num_bss; j++) {
  2665. struct hostapd_bss_config *conf;
  2666. conf = iface->conf->bss[j];
  2667. if (show_ctrl)
  2668. res = os_snprintf(pos, end - pos,
  2669. "%s ctrl_iface=%s\n",
  2670. conf->iface,
  2671. conf->ctrl_interface ?
  2672. conf->ctrl_interface : "N/A");
  2673. else
  2674. res = os_snprintf(pos, end - pos, "%s\n",
  2675. conf->iface);
  2676. if (os_snprintf_error(end - pos, res)) {
  2677. *pos = '\0';
  2678. return pos - reply;
  2679. }
  2680. pos += res;
  2681. }
  2682. }
  2683. return pos - reply;
  2684. }
  2685. static int
  2686. hostapd_global_ctrl_iface_dup_network(struct hapd_interfaces *interfaces,
  2687. char *cmd)
  2688. {
  2689. char *p_start = cmd, *p_end;
  2690. struct hostapd_data *src_hapd, *dst_hapd;
  2691. /* cmd: "<src ifname> <dst ifname> <variable name> */
  2692. p_end = os_strchr(p_start, ' ');
  2693. if (!p_end) {
  2694. wpa_printf(MSG_ERROR, "DUP: no src ifname found in cmd: '%s'",
  2695. cmd);
  2696. return -1;
  2697. }
  2698. *p_end = '\0';
  2699. src_hapd = hostapd_interfaces_get_hapd(interfaces, p_start);
  2700. if (!src_hapd) {
  2701. wpa_printf(MSG_ERROR, "DUP: no src ifname found: '%s'",
  2702. p_start);
  2703. return -1;
  2704. }
  2705. p_start = p_end + 1;
  2706. p_end = os_strchr(p_start, ' ');
  2707. if (!p_end) {
  2708. wpa_printf(MSG_ERROR, "DUP: no dst ifname found in cmd: '%s'",
  2709. cmd);
  2710. return -1;
  2711. }
  2712. *p_end = '\0';
  2713. dst_hapd = hostapd_interfaces_get_hapd(interfaces, p_start);
  2714. if (!dst_hapd) {
  2715. wpa_printf(MSG_ERROR, "DUP: no dst ifname found: '%s'",
  2716. p_start);
  2717. return -1;
  2718. }
  2719. p_start = p_end + 1;
  2720. return hostapd_ctrl_iface_dup_param(src_hapd, dst_hapd, p_start);
  2721. }
  2722. static int hostapd_global_ctrl_iface_ifname(struct hapd_interfaces *interfaces,
  2723. const char *ifname,
  2724. char *buf, char *reply,
  2725. int reply_size,
  2726. struct sockaddr_storage *from,
  2727. socklen_t fromlen)
  2728. {
  2729. struct hostapd_data *hapd;
  2730. hapd = hostapd_interfaces_get_hapd(interfaces, ifname);
  2731. if (hapd == NULL) {
  2732. int res;
  2733. res = os_snprintf(reply, reply_size, "FAIL-NO-IFNAME-MATCH\n");
  2734. if (os_snprintf_error(reply_size, res))
  2735. return -1;
  2736. return res;
  2737. }
  2738. return hostapd_ctrl_iface_receive_process(hapd, buf, reply,reply_size,
  2739. from, fromlen);
  2740. }
  2741. static void hostapd_global_ctrl_iface_receive(int sock, void *eloop_ctx,
  2742. void *sock_ctx)
  2743. {
  2744. void *interfaces = eloop_ctx;
  2745. char buffer[256], *buf = buffer;
  2746. int res;
  2747. struct sockaddr_storage from;
  2748. socklen_t fromlen = sizeof(from);
  2749. char *reply;
  2750. int reply_len;
  2751. const int reply_size = 4096;
  2752. #ifdef CONFIG_CTRL_IFACE_UDP
  2753. unsigned char lcookie[COOKIE_LEN];
  2754. #endif /* CONFIG_CTRL_IFACE_UDP */
  2755. res = recvfrom(sock, buffer, sizeof(buffer) - 1, 0,
  2756. (struct sockaddr *) &from, &fromlen);
  2757. if (res < 0) {
  2758. wpa_printf(MSG_ERROR, "recvfrom(ctrl_iface): %s",
  2759. strerror(errno));
  2760. return;
  2761. }
  2762. buf[res] = '\0';
  2763. wpa_printf(MSG_DEBUG, "Global ctrl_iface command: %s", buf);
  2764. reply = os_malloc(reply_size);
  2765. if (reply == NULL) {
  2766. if (sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
  2767. fromlen) < 0) {
  2768. wpa_printf(MSG_DEBUG, "CTRL: sendto failed: %s",
  2769. strerror(errno));
  2770. }
  2771. return;
  2772. }
  2773. os_memcpy(reply, "OK\n", 3);
  2774. reply_len = 3;
  2775. #ifdef CONFIG_CTRL_IFACE_UDP
  2776. if (os_strcmp(buf, "GET_COOKIE") == 0) {
  2777. os_memcpy(reply, "COOKIE=", 7);
  2778. wpa_snprintf_hex(reply + 7, 2 * COOKIE_LEN + 1,
  2779. gcookie, COOKIE_LEN);
  2780. reply_len = 7 + 2 * COOKIE_LEN;
  2781. goto send_reply;
  2782. }
  2783. if (os_strncmp(buf, "COOKIE=", 7) != 0 ||
  2784. hexstr2bin(buf + 7, lcookie, COOKIE_LEN) < 0) {
  2785. wpa_printf(MSG_DEBUG,
  2786. "CTRL: No cookie in the request - drop request");
  2787. os_free(reply);
  2788. return;
  2789. }
  2790. if (os_memcmp(gcookie, lcookie, COOKIE_LEN) != 0) {
  2791. wpa_printf(MSG_DEBUG,
  2792. "CTRL: Invalid cookie in the request - drop request");
  2793. os_free(reply);
  2794. return;
  2795. }
  2796. buf += 7 + 2 * COOKIE_LEN;
  2797. while (*buf == ' ')
  2798. buf++;
  2799. #endif /* CONFIG_CTRL_IFACE_UDP */
  2800. if (os_strncmp(buf, "IFNAME=", 7) == 0) {
  2801. char *pos = os_strchr(buf + 7, ' ');
  2802. if (pos) {
  2803. *pos++ = '\0';
  2804. reply_len = hostapd_global_ctrl_iface_ifname(
  2805. interfaces, buf + 7, pos, reply, reply_size,
  2806. &from, fromlen);
  2807. goto send_reply;
  2808. }
  2809. }
  2810. if (os_strcmp(buf, "PING") == 0) {
  2811. os_memcpy(reply, "PONG\n", 5);
  2812. reply_len = 5;
  2813. } else if (os_strncmp(buf, "RELOG", 5) == 0) {
  2814. if (wpa_debug_reopen_file() < 0)
  2815. reply_len = -1;
  2816. } else if (os_strcmp(buf, "FLUSH") == 0) {
  2817. hostapd_ctrl_iface_flush(interfaces);
  2818. } else if (os_strncmp(buf, "ADD ", 4) == 0) {
  2819. if (hostapd_ctrl_iface_add(interfaces, buf + 4) < 0)
  2820. reply_len = -1;
  2821. } else if (os_strncmp(buf, "REMOVE ", 7) == 0) {
  2822. if (hostapd_ctrl_iface_remove(interfaces, buf + 7) < 0)
  2823. reply_len = -1;
  2824. } else if (os_strcmp(buf, "ATTACH") == 0) {
  2825. if (hostapd_global_ctrl_iface_attach(interfaces, &from,
  2826. fromlen))
  2827. reply_len = -1;
  2828. } else if (os_strcmp(buf, "DETACH") == 0) {
  2829. if (hostapd_global_ctrl_iface_detach(interfaces, &from,
  2830. fromlen))
  2831. reply_len = -1;
  2832. #ifdef CONFIG_MODULE_TESTS
  2833. } else if (os_strcmp(buf, "MODULE_TESTS") == 0) {
  2834. if (hapd_module_tests() < 0)
  2835. reply_len = -1;
  2836. #endif /* CONFIG_MODULE_TESTS */
  2837. #ifdef CONFIG_FST
  2838. } else if (os_strncmp(buf, "FST-ATTACH ", 11) == 0) {
  2839. if (!hostapd_global_ctrl_iface_fst_attach(interfaces, buf + 11))
  2840. reply_len = os_snprintf(reply, reply_size, "OK\n");
  2841. else
  2842. reply_len = -1;
  2843. } else if (os_strncmp(buf, "FST-DETACH ", 11) == 0) {
  2844. if (!hostapd_global_ctrl_iface_fst_detach(interfaces, buf + 11))
  2845. reply_len = os_snprintf(reply, reply_size, "OK\n");
  2846. else
  2847. reply_len = -1;
  2848. } else if (os_strncmp(buf, "FST-MANAGER ", 12) == 0) {
  2849. reply_len = fst_ctrl_iface_receive(buf + 12, reply, reply_size);
  2850. #endif /* CONFIG_FST */
  2851. } else if (os_strncmp(buf, "DUP_NETWORK ", 12) == 0) {
  2852. if (!hostapd_global_ctrl_iface_dup_network(interfaces,
  2853. buf + 12))
  2854. reply_len = os_snprintf(reply, reply_size, "OK\n");
  2855. else
  2856. reply_len = -1;
  2857. } else if (os_strncmp(buf, "INTERFACES", 10) == 0) {
  2858. reply_len = hostapd_global_ctrl_iface_interfaces(
  2859. interfaces, buf + 10, reply, sizeof(buffer));
  2860. } else if (os_strcmp(buf, "TERMINATE") == 0) {
  2861. eloop_terminate();
  2862. } else {
  2863. wpa_printf(MSG_DEBUG, "Unrecognized global ctrl_iface command "
  2864. "ignored");
  2865. reply_len = -1;
  2866. }
  2867. send_reply:
  2868. if (reply_len < 0) {
  2869. os_memcpy(reply, "FAIL\n", 5);
  2870. reply_len = 5;
  2871. }
  2872. if (sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from,
  2873. fromlen) < 0) {
  2874. wpa_printf(MSG_DEBUG, "CTRL: sendto failed: %s",
  2875. strerror(errno));
  2876. }
  2877. os_free(reply);
  2878. }
  2879. #ifndef CONFIG_CTRL_IFACE_UDP
  2880. static char * hostapd_global_ctrl_iface_path(struct hapd_interfaces *interface)
  2881. {
  2882. char *buf;
  2883. size_t len;
  2884. if (interface->global_iface_path == NULL)
  2885. return NULL;
  2886. len = os_strlen(interface->global_iface_path) +
  2887. os_strlen(interface->global_iface_name) + 2;
  2888. buf = os_malloc(len);
  2889. if (buf == NULL)
  2890. return NULL;
  2891. os_snprintf(buf, len, "%s/%s", interface->global_iface_path,
  2892. interface->global_iface_name);
  2893. buf[len - 1] = '\0';
  2894. return buf;
  2895. }
  2896. #endif /* CONFIG_CTRL_IFACE_UDP */
  2897. int hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface)
  2898. {
  2899. #ifdef CONFIG_CTRL_IFACE_UDP
  2900. int port = HOSTAPD_GLOBAL_CTRL_IFACE_PORT;
  2901. char p[32] = { 0 };
  2902. char *pos;
  2903. struct addrinfo hints = { 0 }, *res, *saveres;
  2904. int n;
  2905. if (interface->global_ctrl_sock > -1) {
  2906. wpa_printf(MSG_DEBUG, "ctrl_iface already exists!");
  2907. return 0;
  2908. }
  2909. if (interface->global_iface_path == NULL)
  2910. return 0;
  2911. pos = os_strstr(interface->global_iface_path, "udp:");
  2912. if (pos) {
  2913. pos += 4;
  2914. port = atoi(pos);
  2915. if (port <= 0) {
  2916. wpa_printf(MSG_ERROR, "Invalid global ctrl UDP port");
  2917. goto fail;
  2918. }
  2919. }
  2920. dl_list_init(&interface->global_ctrl_dst);
  2921. interface->global_ctrl_sock = -1;
  2922. os_get_random(gcookie, COOKIE_LEN);
  2923. #ifdef CONFIG_CTRL_IFACE_UDP_REMOTE
  2924. hints.ai_flags = AI_PASSIVE;
  2925. #endif /* CONFIG_CTRL_IFACE_UDP_REMOTE */
  2926. #ifdef CONFIG_CTRL_IFACE_UDP_IPV6
  2927. hints.ai_family = AF_INET6;
  2928. #else /* CONFIG_CTRL_IFACE_UDP_IPV6 */
  2929. hints.ai_family = AF_INET;
  2930. #endif /* CONFIG_CTRL_IFACE_UDP_IPV6 */
  2931. hints.ai_socktype = SOCK_DGRAM;
  2932. try_again:
  2933. os_snprintf(p, sizeof(p), "%d", port);
  2934. n = getaddrinfo(NULL, p, &hints, &res);
  2935. if (n) {
  2936. wpa_printf(MSG_ERROR, "getaddrinfo(): %s", gai_strerror(n));
  2937. goto fail;
  2938. }
  2939. saveres = res;
  2940. interface->global_ctrl_sock = socket(res->ai_family, res->ai_socktype,
  2941. res->ai_protocol);
  2942. if (interface->global_ctrl_sock < 0) {
  2943. wpa_printf(MSG_ERROR, "socket(PF_INET): %s", strerror(errno));
  2944. goto fail;
  2945. }
  2946. if (bind(interface->global_ctrl_sock, res->ai_addr, res->ai_addrlen) <
  2947. 0) {
  2948. port++;
  2949. if ((port - HOSTAPD_GLOBAL_CTRL_IFACE_PORT) <
  2950. HOSTAPD_GLOBAL_CTRL_IFACE_PORT_LIMIT && !pos)
  2951. goto try_again;
  2952. wpa_printf(MSG_ERROR, "bind(AF_INET): %s", strerror(errno));
  2953. goto fail;
  2954. }
  2955. freeaddrinfo(saveres);
  2956. wpa_printf(MSG_DEBUG, "global ctrl_iface_init UDP port: %d", port);
  2957. if (eloop_register_read_sock(interface->global_ctrl_sock,
  2958. hostapd_global_ctrl_iface_receive,
  2959. interface, NULL) < 0) {
  2960. hostapd_global_ctrl_iface_deinit(interface);
  2961. return -1;
  2962. }
  2963. return 0;
  2964. fail:
  2965. if (interface->global_ctrl_sock >= 0)
  2966. close(interface->global_ctrl_sock);
  2967. return -1;
  2968. #else /* CONFIG_CTRL_IFACE_UDP */
  2969. struct sockaddr_un addr;
  2970. int s = -1;
  2971. char *fname = NULL;
  2972. if (interface->global_iface_path == NULL) {
  2973. wpa_printf(MSG_DEBUG, "ctrl_iface not configured!");
  2974. return 0;
  2975. }
  2976. if (mkdir(interface->global_iface_path, S_IRWXU | S_IRWXG) < 0) {
  2977. if (errno == EEXIST) {
  2978. wpa_printf(MSG_DEBUG, "Using existing control "
  2979. "interface directory.");
  2980. } else {
  2981. wpa_printf(MSG_ERROR, "mkdir[ctrl_interface]: %s",
  2982. strerror(errno));
  2983. goto fail;
  2984. }
  2985. } else if (interface->ctrl_iface_group &&
  2986. chown(interface->global_iface_path, -1,
  2987. interface->ctrl_iface_group) < 0) {
  2988. wpa_printf(MSG_ERROR, "chown[ctrl_interface]: %s",
  2989. strerror(errno));
  2990. goto fail;
  2991. }
  2992. if (os_strlen(interface->global_iface_path) + 1 +
  2993. os_strlen(interface->global_iface_name) >= sizeof(addr.sun_path))
  2994. goto fail;
  2995. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  2996. if (s < 0) {
  2997. wpa_printf(MSG_ERROR, "socket(PF_UNIX): %s", strerror(errno));
  2998. goto fail;
  2999. }
  3000. os_memset(&addr, 0, sizeof(addr));
  3001. #ifdef __FreeBSD__
  3002. addr.sun_len = sizeof(addr);
  3003. #endif /* __FreeBSD__ */
  3004. addr.sun_family = AF_UNIX;
  3005. fname = hostapd_global_ctrl_iface_path(interface);
  3006. if (fname == NULL)
  3007. goto fail;
  3008. os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
  3009. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  3010. wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
  3011. strerror(errno));
  3012. if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  3013. wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
  3014. " allow connections - assuming it was left"
  3015. "over from forced program termination");
  3016. if (unlink(fname) < 0) {
  3017. wpa_printf(MSG_ERROR,
  3018. "Could not unlink existing ctrl_iface socket '%s': %s",
  3019. fname, strerror(errno));
  3020. goto fail;
  3021. }
  3022. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
  3023. 0) {
  3024. wpa_printf(MSG_ERROR, "bind(PF_UNIX): %s",
  3025. strerror(errno));
  3026. goto fail;
  3027. }
  3028. wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
  3029. "ctrl_iface socket '%s'", fname);
  3030. } else {
  3031. wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
  3032. "be in use - cannot override it");
  3033. wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
  3034. "not used anymore", fname);
  3035. os_free(fname);
  3036. fname = NULL;
  3037. goto fail;
  3038. }
  3039. }
  3040. if (interface->ctrl_iface_group &&
  3041. chown(fname, -1, interface->ctrl_iface_group) < 0) {
  3042. wpa_printf(MSG_ERROR, "chown[ctrl_interface]: %s",
  3043. strerror(errno));
  3044. goto fail;
  3045. }
  3046. if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
  3047. wpa_printf(MSG_ERROR, "chmod[ctrl_interface/ifname]: %s",
  3048. strerror(errno));
  3049. goto fail;
  3050. }
  3051. os_free(fname);
  3052. interface->global_ctrl_sock = s;
  3053. eloop_register_read_sock(s, hostapd_global_ctrl_iface_receive,
  3054. interface, NULL);
  3055. return 0;
  3056. fail:
  3057. if (s >= 0)
  3058. close(s);
  3059. if (fname) {
  3060. unlink(fname);
  3061. os_free(fname);
  3062. }
  3063. return -1;
  3064. #endif /* CONFIG_CTRL_IFACE_UDP */
  3065. }
  3066. void hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interfaces)
  3067. {
  3068. #ifndef CONFIG_CTRL_IFACE_UDP
  3069. char *fname = NULL;
  3070. #endif /* CONFIG_CTRL_IFACE_UDP */
  3071. struct wpa_ctrl_dst *dst, *prev;
  3072. if (interfaces->global_ctrl_sock > -1) {
  3073. eloop_unregister_read_sock(interfaces->global_ctrl_sock);
  3074. close(interfaces->global_ctrl_sock);
  3075. interfaces->global_ctrl_sock = -1;
  3076. #ifndef CONFIG_CTRL_IFACE_UDP
  3077. fname = hostapd_global_ctrl_iface_path(interfaces);
  3078. if (fname) {
  3079. unlink(fname);
  3080. os_free(fname);
  3081. }
  3082. if (interfaces->global_iface_path &&
  3083. rmdir(interfaces->global_iface_path) < 0) {
  3084. if (errno == ENOTEMPTY) {
  3085. wpa_printf(MSG_DEBUG, "Control interface "
  3086. "directory not empty - leaving it "
  3087. "behind");
  3088. } else {
  3089. wpa_printf(MSG_ERROR,
  3090. "rmdir[ctrl_interface=%s]: %s",
  3091. interfaces->global_iface_path,
  3092. strerror(errno));
  3093. }
  3094. }
  3095. #endif /* CONFIG_CTRL_IFACE_UDP */
  3096. }
  3097. os_free(interfaces->global_iface_path);
  3098. interfaces->global_iface_path = NULL;
  3099. dl_list_for_each_safe(dst, prev, &interfaces->global_ctrl_dst,
  3100. struct wpa_ctrl_dst, list)
  3101. os_free(dst);
  3102. }
  3103. static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
  3104. enum wpa_msg_type type,
  3105. const char *buf, size_t len)
  3106. {
  3107. struct wpa_ctrl_dst *dst, *next;
  3108. struct dl_list *ctrl_dst;
  3109. struct msghdr msg;
  3110. int idx;
  3111. struct iovec io[2];
  3112. char levelstr[10];
  3113. int s;
  3114. if (type != WPA_MSG_ONLY_GLOBAL) {
  3115. s = hapd->ctrl_sock;
  3116. ctrl_dst = &hapd->ctrl_dst;
  3117. } else {
  3118. s = hapd->iface->interfaces->global_ctrl_sock;
  3119. ctrl_dst = &hapd->iface->interfaces->global_ctrl_dst;
  3120. }
  3121. if (s < 0 || dl_list_empty(ctrl_dst))
  3122. return;
  3123. os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
  3124. io[0].iov_base = levelstr;
  3125. io[0].iov_len = os_strlen(levelstr);
  3126. io[1].iov_base = (char *) buf;
  3127. io[1].iov_len = len;
  3128. os_memset(&msg, 0, sizeof(msg));
  3129. msg.msg_iov = io;
  3130. msg.msg_iovlen = 2;
  3131. idx = 0;
  3132. dl_list_for_each_safe(dst, next, ctrl_dst, struct wpa_ctrl_dst, list) {
  3133. if (level >= dst->debug_level) {
  3134. sockaddr_print(MSG_DEBUG, "CTRL_IFACE monitor send",
  3135. &dst->addr, dst->addrlen);
  3136. msg.msg_name = &dst->addr;
  3137. msg.msg_namelen = dst->addrlen;
  3138. if (sendmsg(s, &msg, 0) < 0) {
  3139. int _errno = errno;
  3140. wpa_printf(MSG_INFO, "CTRL_IFACE monitor[%d]: "
  3141. "%d - %s",
  3142. idx, errno, strerror(errno));
  3143. dst->errors++;
  3144. if (dst->errors > 10 || _errno == ENOENT) {
  3145. if (type != WPA_MSG_ONLY_GLOBAL)
  3146. hostapd_ctrl_iface_detach(
  3147. hapd, &dst->addr,
  3148. dst->addrlen);
  3149. else
  3150. hostapd_global_ctrl_iface_detach(
  3151. hapd->iface->interfaces,
  3152. &dst->addr,
  3153. dst->addrlen);
  3154. }
  3155. } else
  3156. dst->errors = 0;
  3157. }
  3158. idx++;
  3159. }
  3160. }
  3161. #endif /* CONFIG_NATIVE_WINDOWS */