ctrl_iface.c 91 KB

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