ctrl_iface.c 108 KB

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