ctrl_iface.c 89 KB

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